From 057142dbda3c66250e9d53ebcec1ec2b7ec87d5f Mon Sep 17 00:00:00 2001 From: uf0 Date: Mon, 5 Aug 2019 18:25:05 +0200 Subject: [PATCH] first commit --- .babelrc | 14 + .gitignore | 4 + index.html | 33 + index.js | 452 ++++++++ layers/aree_omogenee.json | 1 + layers/aree_omogenee_multi.json | 8 + layers/confini.json | 1 + layers/confini_hole.json | 1 + layers/luoghi_monumentali_buffer.json | 22 + layers/mercati_buffer.json | 92 ++ layers/musei_buffer.json | 33 + layers/ospedali_cliniche_buffer.json | 34 + layers/parchi_buffer.json | 62 + layers/scuole_buffer.json | 225 ++++ layers/stazioni_ferrovie_buffer.json | 36 + layers/stazioni_metro_buffer.json | 93 ++ package.json | 17 + style.css | 89 ++ yarn.lock | 1493 +++++++++++++++++++++++++ 19 files changed, 2710 insertions(+) create mode 100644 .babelrc create mode 100644 .gitignore create mode 100644 index.html create mode 100644 index.js create mode 100644 layers/aree_omogenee.json create mode 100644 layers/aree_omogenee_multi.json create mode 100644 layers/confini.json create mode 100644 layers/confini_hole.json create mode 100644 layers/luoghi_monumentali_buffer.json create mode 100644 layers/mercati_buffer.json create mode 100644 layers/musei_buffer.json create mode 100644 layers/ospedali_cliniche_buffer.json create mode 100644 layers/parchi_buffer.json create mode 100644 layers/scuole_buffer.json create mode 100644 layers/stazioni_ferrovie_buffer.json create mode 100644 layers/stazioni_metro_buffer.json create mode 100644 package.json create mode 100644 style.css create mode 100644 yarn.lock diff --git a/.babelrc b/.babelrc new file mode 100644 index 0000000..6b1b1a1 --- /dev/null +++ b/.babelrc @@ -0,0 +1,14 @@ +{ + "presets": [ + [ + "env", + { + "targets": { + "browsers": "last 2 Firefox versions, last 2 Chrome versions, last 2 Edge versions, last 2 Safari versions" + }, + "exclude": ["/mapbox-gl"] + } + ] + ], + "plugins": ["@babel/plugin-proposal-class-properties"] +} diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..762cd11 --- /dev/null +++ b/.gitignore @@ -0,0 +1,4 @@ +node_modules +.DS_Store +.cache +dist diff --git a/index.html b/index.html new file mode 100644 index 0000000..be24e83 --- /dev/null +++ b/index.html @@ -0,0 +1,33 @@ + + + + + + Daspo free zone + + + + +
+ +
+ +
+ + + diff --git a/index.js b/index.js new file mode 100644 index 0000000..24b6c67 --- /dev/null +++ b/index.js @@ -0,0 +1,452 @@ +import * as mapboxgl from "mapbox-gl"; +import Bbox from "@turf/bbox"; +import BboxPolygon from "@turf/bbox-polygon"; +import Center from "@turf/center"; +import BooleanContains from "@turf/boolean-contains"; +import BooleanOverlap from "@turf/boolean-overlap"; +import Buffer from "@turf/buffer"; +import confini from "./layers/confini.json"; +import confiniHole from "./layers/confini_hole.json"; +import aree_omogenee from "./layers/aree_omogenee.json"; +import scuole_buffer from "./layers/scuole_buffer.json"; +import luoghi_monumentali_buffer from "./layers/luoghi_monumentali_buffer.json"; +import mercati_buffer from "./layers/mercati_buffer.json"; +import musei_buffer from "./layers/musei_buffer.json"; +import ospedali_cliniche_buffer from "./layers/ospedali_cliniche_buffer.json"; +import stazioni_ferrovie_buffer from "./layers/stazioni_ferrovie_buffer.json"; +import stazioni_metro_buffer from "./layers/stazioni_metro_buffer.json"; +import parchi_buffer from "./layers/parchi_buffer.json"; +import "./style.css"; + +mapboxgl.accessToken = + "pk.eyJ1IjoidGVvIiwiYSI6IllvZUo1LUkifQ.dirqtn275pAKdnqtLM2HSw"; + +const bounds = Bbox(confini); +const maxBounds = Bbox(Buffer(confini, 10)); +const map = new mapboxgl.Map({ + container: "map", + zoom: 11, + center: Center(confini).geometry.coordinates, + style: "mapbox://styles/teo/cjyxhh5n92wy51ck4a4uiymtu/draft", + maxBounds: [[maxBounds[0], maxBounds[1]], [maxBounds[2], maxBounds[3]]], + maxZoom: 16 +}); + +const nav = new mapboxgl.NavigationControl(); +map.addControl(nav, "top-left"); + +map.fitBounds([[bounds[0], bounds[1]], [bounds[2], bounds[3]]], { + padding: 20 +}); + +// const slider = document.getElementById("slider"); +// const sliderValue = document.getElementById("slider-value"); + +map.on("load", function() { + map.setLayoutProperty("building", "visibility", "none"); + map.setLayoutProperty("building-outline", "visibility", "none"); + + map.addSource("aree_omogeneeSource", { + type: "geojson", + data: aree_omogenee + }); + + map.addSource("scuoleBufferSource", { + type: "geojson", + data: scuole_buffer + }); + + map.addSource("luoghiMonumentaliBufferSource", { + type: "geojson", + data: luoghi_monumentali_buffer + }); + + map.addSource("mercatiBufferSource", { + type: "geojson", + data: mercati_buffer + }); + + map.addSource("museiBufferSource", { + type: "geojson", + data: musei_buffer + }); + + map.addSource("ospedaliClinicheBufferSource", { + type: "geojson", + data: ospedali_cliniche_buffer + }); + + map.addSource("stazioniFerrovieBufferSource", { + type: "geojson", + data: stazioni_ferrovie_buffer + }); + + map.addSource("stazioniMetroBufferSource", { + type: "geojson", + data: stazioni_metro_buffer + }); + + map.addSource("parchiBufferSource", { + type: "geojson", + data: parchi_buffer + }); + + map.addSource("confiniHoleSource", { + type: "geojson", + data: confiniHole + }); + + map.addSource("confiniSource", { + type: "geojson", + data: confini + }); + + map.addSource("osmbuildings", { + type: "vector", + url: "https://data.osmbuildings.org/0.2/rkc8ywdl/tile.json" + }); + + const layers = map.getStyle().layers; + //console.log(layers); + let labelLayerId = ""; + for (let i = 0; i < layers.length; i++) { + if (layers[i].type === "symbol" && layers[i].layout["text-field"]) { + labelLayerId = layers[i].id; + break; + } + } + + map.addLayer( + { + id: "aree_omogenee", + type: "fill", + source: "aree_omogeneeSource", + paint: { + "fill-color": "#f5553d", + "fill-opacity": 1 + } + }, + "building-outline" + ); + + map.addLayer( + { + id: "parchi_buffer", + type: "fill", + source: "parchiBufferSource", + paint: { + "fill-color": "#f5553d", + "fill-opacity": 1 + } + }, + "building-outline" + ); + + map.addLayer( + { + id: "mercati_buffer", + type: "fill", + source: "mercatiBufferSource", + paint: { + "fill-color": "#f5553d", + "fill-opacity": 1 + } + }, + "building-outline" + ); + + map.addLayer( + { + id: "scuole_buffer", + type: "fill", + source: "scuoleBufferSource", + paint: { + "fill-color": "#f5553d", + "fill-opacity": 1 + } + }, + "building-outline" + ); + + map.addLayer( + { + id: "musei_buffer", + type: "fill", + source: "museiBufferSource", + paint: { + "fill-color": "#f5553d", + "fill-opacity": 1 + } + }, + "building-outline" + ); + + map.addLayer( + { + id: "ospedali_cliniche_buffer", + type: "fill", + source: "ospedaliClinicheBufferSource", + paint: { + "fill-color": "#f5553d", + "fill-opacity": 1 + } + }, + "building-outline" + ); + + map.addLayer( + { + id: "stazioni_ferrovie_buffer", + type: "fill", + source: "stazioniFerrovieBufferSource", + paint: { + "fill-color": "#f5553d", + "fill-opacity": 1 + } + }, + "building-outline" + ); + + map.addLayer( + { + id: "stazioni_metro_buffer", + type: "fill", + source: "stazioniMetroBufferSource", + paint: { + "fill-color": "#f5553d", + "fill-opacity": 1 + } + }, + "building-outline" + ); + + map.addLayer( + { + id: "luoghi_monumentali_buffer", + type: "fill", + source: "luoghiMonumentaliBufferSource", + paint: { + "fill-color": "#f5553d", + "fill-opacity": 1 + } + }, + "building-outline" + ); + + map.addLayer( + { + id: "buildings-base", + type: "fill", + source: "osmbuildings", + "source-layer": "building", + // filter: ["all", ["==", "minHeight", 0]], + // layout: {}, + paint: { + "fill-color": "#fff", + "fill-opacity": { stops: [[16, 0], [17.5, 1]] } + } + }, + labelLayerId + ); + + map.addLayer( + { + id: "buildings-3d", + type: "fill-extrusion", + source: "osmbuildings", + "source-layer": "building", + paint: { + "fill-extrusion-color": "#f5553d", + "fill-extrusion-height": [ + "interpolate", + ["linear"], + ["zoom"], + 15, + 0, + 15.05, + [ + "number", + ["get", "height"], + ["*", ["number", ["get", "levels"], 3], 3] + ] + ], + "fill-extrusion-base": [ + "interpolate", + ["linear"], + ["zoom"], + 15, + 0, + 15.05, + [ + "number", + ["get", "minHeight"], + ["*", ["number", ["get", "minLevel"], 0], 3] + ] + ], + + "fill-extrusion-opacity": { + stops: [[15, 0], [15.5, 1], [16, 1], [17.5, 0.6]] + } + }, + //filter: ["!=", ["string", ["get", "shape"], ""], "none"] + filter: ["match", ["get", "id"], "", true, false] + }, + labelLayerId + ); + + map.addLayer( + { + id: "confiniHole", + source: "confiniHoleSource", + type: "fill", + paint: { + "fill-color": "#fff" + } + }, + "settlement-subdivision-label" + ); + + map.addLayer( + { + id: "confini", + source: "confiniSource", + type: "line", + paint: { + "line-color": "#000" + } + }, + "settlement-subdivision-label" + ); +}); + +map.on("moveend", function() { + if (map.getZoom() >= 15) { + const aulenti = aree_omogenee.features.filter( + f => f.properties.area === "C.so Garibladi, C.so Como, Gae Aulenti" + )[0]; + + let buildings = map.queryRenderedFeatures({ + layers: ["buildings-base"], + filter: ["!=", ["string", ["get", "shape"], ""], "none"] + }); + + let features = map.queryRenderedFeatures({ + layers: [ + "aree_omogenee", + "parchi_buffer", + "luoghi_monumentali_buffer", + "mercati_buffer", + "musei_buffer", + "ospedali_cliniche_buffer", + "scuole_buffer", + "stazioni_ferrovie_buffer", + "stazioni_metro_buffer" + ] + }); + + const filtered = buildings + .filter(b => { + let inside = false; + for (let feature of features) { + //console.log(b, feature); + if (BooleanContains(feature, b)) { + inside = true; + break; + } else { + inside = false; + } + } + return inside; + }) + .map(b => b.properties.id); + + const ids = [...new Set(filtered)].filter(i => i); + + const filter = ["match", ["get", "id"], ids, true, false]; + + if (ids.length) { + map.setFilter("buildings-3d", filter); + } + } +}); + +map.on("zoomend", function() { + if (map.getZoom() >= 15) { + const aulenti = aree_omogenee.features.filter( + f => f.properties.area === "C.so Garibladi, C.so Como, Gae Aulenti" + )[0]; + + let buildings = map.queryRenderedFeatures({ + layers: ["buildings-base"], + filter: ["!=", ["string", ["get", "shape"], ""], "none"] + }); + + let features = map.queryRenderedFeatures({ + layers: [ + "aree_omogenee", + "parchi_buffer", + "luoghi_monumentali_buffer", + "mercati_buffer", + "musei_buffer", + "ospedali_cliniche_buffer", + "scuole_buffer", + "stazioni_ferrovie_buffer", + "stazioni_metro_buffer" + ] + }); + + const filtered = buildings + .filter(b => { + let inside = false; + for (let feature of features) { + //console.log(b, feature); + if (BooleanContains(feature, b)) { + inside = true; + break; + } else { + inside = false; + } + } + return inside; + }) + .map(b => b.properties.id); + + const ids = [...new Set(filtered)].filter(i => i); + + const filter = ["match", ["get", "id"], ids, true, false]; + + if (ids.length) { + map.setFilter("buildings-3d", filter); + } + } +}); + +// var toggleableLayerIds = ["wbbuilding", "aereal"]; +// +// for (var i = 0; i < toggleableLayerIds.length; i++) { +// var id = toggleableLayerIds[i]; +// +// var link = document.createElement("a"); +// link.href = "#"; +// link.className = "active"; +// link.textContent = id; +// +// link.onclick = function(e) { +// var clickedLayer = this.textContent; +// e.preventDefault(); +// e.stopPropagation(); +// +// var visibility = map.getLayoutProperty(clickedLayer, "visibility"); +// +// if (visibility === "visible") { +// map.setLayoutProperty(clickedLayer, "visibility", "none"); +// this.className = ""; +// } else { +// this.className = "active"; +// map.setLayoutProperty(clickedLayer, "visibility", "visible"); +// } +// }; +// +// var layers = document.getElementById("menu"); +// layers.appendChild(link); +// } diff --git a/layers/aree_omogenee.json b/layers/aree_omogenee.json new file mode 100644 index 0000000..ce85191 --- /dev/null +++ b/layers/aree_omogenee.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{"stroke":"#555555","stroke-width":2,"stroke-opacity":1,"fill":"#555555","fill-opacity":0.5,"area":"Porta Venezia, Buenos Aires"},"geometry":{"type":"Polygon","coordinates":[[[9.205352067947388,45.474690142815035],[9.205749034881592,45.474979789898605],[9.207717776298523,45.476160932721704],[9.208104014396667,45.475976615885905],[9.208667278289795,45.47640919526193],[9.210383892059324,45.47666497976548],[9.21480417251587,45.48122000639669],[9.214911460876465,45.483875368111136],[9.215877056121826,45.48495853921601],[9.21677827835083,45.48528950401066],[9.217057228088379,45.485665598008],[9.218130111694336,45.48613195107752],[9.21675682067871,45.48700447225795],[9.2155122756958,45.48619212538591],[9.216091632843018,45.48595142776666],[9.214868545532227,45.484778012144815],[9.21426773071289,45.48416120695326],[9.210796952247618,45.48329992499078],[9.211472868919373,45.48296518739977],[9.204139709472656,45.475194203014524],[9.205352067947388,45.474690142815035]]]}},{"type":"Feature","properties":{"stroke":"#555555","stroke-width":2,"stroke-opacity":1,"fill":"#555555","fill-opacity":0.5,"area":"ex porto di mare"},"geometry":{"type":"Polygon","coordinates":[[[9.238815307617188,45.420172389189],[9.240403175354004,45.4272507047045],[9.240403175354004,45.428726496973376],[9.238858222961426,45.43330421933811],[9.230146408081055,45.43721908205583],[9.223923683166504,45.431738198206574],[9.226155281066895,45.43041306946255],[9.226713180541992,45.42941920248723],[9.228601455688477,45.42752177148328],[9.2319917678833,45.42463032540002],[9.234867095947266,45.42243152247772],[9.238815307617188,45.420172389189]]]}},{"type":"Feature","properties":{"stroke":"#555555","stroke-width":2,"stroke-opacity":1,"fill":"#555555","fill-opacity":0.5,"area":"stadio san siro"},"geometry":{"type":"Polygon","coordinates":[[[9.129188060760498,45.47591643066609],[9.129166603088379,45.47698470876219],[9.130282402038574,45.478970749424704],[9.130690097808838,45.479045976861705],[9.130089282989502,45.480339873057645],[9.127750396728516,45.48086645021183],[9.12508964538574,45.47976815514664],[9.12013292312622,45.481167349233175],[9.119081497192383,45.480716000098525],[9.117729663848877,45.480189421538256],[9.117300510406494,45.47969292867385],[9.117257595062256,45.4761270786542],[9.129188060760498,45.47591643066609]]]}},{"type":"Feature","properties":{"stroke":"#555555","stroke-width":2,"stroke-opacity":1,"fill":"#555555","fill-opacity":0.5,"area":"centro storico"},"geometry":{"type":"Polygon","coordinates":[[[9.192724227905273,45.45727096521167],[9.1935396194458,45.45754188779272],[9.199762344360352,45.46422423274015],[9.200448989868164,45.46563886184068],[9.200577735900879,45.46711365012762],[9.19929027557373,45.46882917162838],[9.195127487182617,45.47238043618144],[9.190492630004883,45.47322307627934],[9.187445640563963,45.47292213483351],[9.182596206665037,45.47183873232273],[9.182982444763184,45.47078540435923],[9.183239936828613,45.4699126319909],[9.18281078338623,45.468738882324715],[9.182295799255371,45.46825733692936],[9.180707931518553,45.467715593442186],[9.179420471191406,45.4676253023548],[9.177746772766112,45.46804665952527],[9.17684555053711,45.4679864658366],[9.175558090209961,45.465939842175736],[9.173583984375,45.46247847129996],[9.173369407653809,45.46160557030758],[9.178004264831543,45.458685768784356],[9.180922508239746,45.457451580410336],[9.187703132629395,45.455916332781364],[9.189763069152832,45.456789321853584],[9.192724227905273,45.45727096521167]]]}},{"type":"Feature","properties":{"stroke":"#555555","stroke-width":2,"stroke-opacity":1,"fill":"#555555","fill-opacity":0.5,"area":"navigli"},"geometry":{"type":"Polygon","coordinates":[[[9.179034233093262,45.44336185760955],[9.18032169342041,45.452484451648175],[9.178133010864258,45.45224361004223],[9.176974296569824,45.45230382054015],[9.172511100769043,45.45522395252797],[9.1701078414917,45.45380906209661],[9.169507026672363,45.45269518720968],[9.169678688049316,45.452333925764975],[9.16907787322998,45.451490973394776],[9.167962074279783,45.45064800842561],[9.166803359985352,45.45028673386771],[9.162039756774902,45.44932332373328],[9.157705307006836,45.44832978979697],[9.157748222351074,45.44814914538288],[9.158177375793457,45.447125482775405],[9.159421920776367,45.44619212714848],[9.162425994873047,45.444897447001615],[9.16658878326416,45.44408449311843],[9.17208194732666,45.44378339611465],[9.179034233093262,45.44336185760955]]]}},{"type":"Feature","properties":{"stroke":"#555555","stroke-width":2,"stroke-opacity":1,"fill":"#555555","fill-opacity":0.5,"area":"Darsena - Ticinese - Conca del Naviglio"},"geometry":{"type":"Polygon","coordinates":[[[9.172554016113281,45.45523900436301],[9.177017211914062,45.45228876792168],[9.178175926208496,45.45224361004223],[9.18034315109253,45.45249950421438],[9.18034315109253,45.45227371529922],[9.181158542633055,45.45219845212662],[9.184570312499998,45.45195760929937],[9.18459177017212,45.45240918875679],[9.183990955352783,45.45368864425056],[9.184184074401855,45.455630350663704],[9.184999465942383,45.45653344714632],[9.180943965911865,45.457451580410336],[9.17783260345459,45.458836277713615],[9.172554016113281,45.45523900436301]]]}},{"type":"Feature","properties":{"stroke":"#555555","stroke-width":2,"stroke-opacity":1,"fill":"#555555","fill-opacity":0.5,"area":"arco della pace"},"geometry":{"type":"Polygon","coordinates":[[[9.169936180114744,45.473975422863255],[9.171438217163086,45.4749985980993],[9.171738624572754,45.4748481323179],[9.172039031982422,45.474757852656204],[9.172446727752686,45.47472775940352],[9.172811508178711,45.47477289927653],[9.173133373260498,45.4748481323179],[9.173369407653809,45.47493841183497],[9.17360544204712,45.47513401695909],[9.173712730407715,45.475329621404256],[9.173841476440428,45.47558541080812],[9.17382001876831,45.475841199050905],[9.173712730407715,45.476066893595096],[9.173498153686523,45.47636781824785],[9.175043106079102,45.4773458122711],[9.174399375915527,45.477827280016676],[9.173712730407715,45.47824856091938],[9.172811508178711,45.47853442830955],[9.172167778015137,45.47863974750878],[9.171159267425537,45.4785645195294],[9.170258045196533,45.47838397196918],[9.169507026672363,45.47800782936065],[9.168949127197264,45.47754140903889],[9.168562889099121,45.47687938646953],[9.16834831237793,45.476322679652405],[9.168498516082762,45.47549513232756],[9.168970584869385,45.47477289927653],[9.169936180114744,45.473975422863255]]]}},{"type":"Feature","properties":{"stroke":"#555555","stroke-width":2,"stroke-opacity":1,"fill":"#555555","fill-opacity":0.5,"area":"C.so Garibladi, C.so Como, Gae Aulenti"},"geometry":{"type":"Polygon","coordinates":[[[9.187949895858765,45.47298232325123],[9.187874794006348,45.47338859338956],[9.188454151153564,45.475329621404256],[9.188507795333862,45.47696966273243],[9.189033508300781,45.47842910891348],[9.189194440841675,45.47855699672595],[9.189419746398924,45.479226522300706],[9.190138578414917,45.47996374350588],[9.189655780792236,45.48000135657404],[9.195513725280762,45.484868275752724],[9.195148944854736,45.48611690749037],[9.194623231887817,45.48608870075365],[9.194376468658447,45.48610562479739],[9.194298684597015,45.486133831525635],[9.194236993789673,45.486301191156045],[9.194089472293854,45.48639521320219],[9.194000959396362,45.486449745917064],[9.19380784034729,45.486917972916835],[9.188601672649384,45.486355723961914],[9.188534617424011,45.486361365283656],[9.18832004070282,45.48564303243895],[9.188239574432373,45.48562234732605],[9.188105463981627,45.48561858639563],[9.187746047973633,45.485684402641944],[9.187625348567963,45.48570696819439],[9.18742686510086,45.48570696819439],[9.187166690826416,45.485656195688655],[9.18692797422409,45.4855772161443],[9.186767041683197,45.48548319273286],[9.186632931232452,45.485364723011],[9.185348153114319,45.48426463512434],[9.185144305229185,45.48411983563168],[9.18495386838913,45.48401452667598],[9.184733927249907,45.483943066915344],[9.184441566467285,45.48392990326535],[9.182682037353516,45.483975035766825],[9.181716442108154,45.48401828771349],[9.181523323059082,45.48255146403347],[9.18231725692749,45.48125009618234],[9.182134866714478,45.481107169557475],[9.180922508239746,45.47748874843745],[9.181544780731201,45.47380238403833],[9.180482625961304,45.47316288811873],[9.18230652809143,45.471793590099466],[9.182606935501099,45.471861303420795],[9.187467098236084,45.47292965838925],[9.187949895858765,45.47298232325123]]]}},{"type":"Feature","properties":{"stroke":"#555555","stroke-width":2,"stroke-opacity":1,"fill":"#555555","fill-opacity":0.5,"area":"Ospedale San Carlo, retro caserma Perrucchetti"},"geometry":{"type":"Polygon","coordinates":[[[9.117203950881958,45.46232044712218],[9.118845462799072,45.46266659474363],[9.119564294815063,45.46133466725163],[9.12410259246826,45.46229787220348],[9.122428894042969,45.467474816887716],[9.121999740600586,45.467429671169256],[9.121248722076416,45.46735442822481],[9.12015438079834,45.46735442822481],[9.118223190307617,45.46705345544263],[9.117729663848877,45.46706850411991],[9.116785526275633,45.4691000386715],[9.116699695587158,45.46994272781477],[9.117000102996826,45.470965976265354],[9.117976427078247,45.47197415877552],[9.115712642669678,45.473245646822996],[9.114704132080078,45.472568526581256],[9.114071130752563,45.47211710856711],[9.113116264343262,45.472034348205646],[9.109114408493042,45.47158292591289],[9.109629392623901,45.46952890882771],[9.110090732574463,45.46785855403479],[9.110112190246582,45.46739204970959],[9.109843969345093,45.46706097978178],[9.109565019607544,45.46683524917066],[9.10939335823059,45.46609785620836],[9.109361171722412,45.46558619011682],[9.110080003738403,45.46347175598964],[9.110723733901978,45.4635846281425],[9.111120700836182,45.463637301736505],[9.111785888671875,45.46368997528127],[9.113706350326536,45.464043639236],[9.116184711456299,45.46448759722998],[9.117203950881958,45.46232044712218]]]}},{"type":"Feature","properties":{"stroke":"#555555","stroke-width":2,"stroke-opacity":1,"fill":"#555555","fill-opacity":0.5,"area":"Ospedale Niguarda"},"geometry":{"type":"Polygon","coordinates":[[[9.190932512283325,45.505918311158865],[9.193282127380371,45.5108130650569],[9.192702770233154,45.51102358255896],[9.193410873413086,45.51225659782997],[9.193582534790039,45.51302345955653],[9.19377565383911,45.513249005134554],[9.19330358505249,45.51347454980866],[9.191694259643555,45.51308360513238],[9.190943241119385,45.51293324107222],[9.188539981842041,45.51282798599106],[9.186952114105223,45.51320389609124],[9.183990955352783,45.51387300985719],[9.181416034698486,45.51442182756925],[9.179731607437134,45.51425643101396],[9.17884111404419,45.51409103397261],[9.178959131240845,45.51376023843158],[9.179924726486204,45.510392027690564],[9.180407524108887,45.50872288428194],[9.181019067764282,45.507813105095856],[9.181534051895142,45.50721159012102],[9.182435274124146,45.50731685570563],[9.184849262237549,45.50671533542782],[9.188185930252073,45.50596342604142],[9.188218116760254,45.50581304295891],[9.188518524169922,45.50516639112636],[9.190417528152466,45.50483554313027],[9.190932512283325,45.505918311158865]]]}},{"type":"Feature","properties":{"stroke":"#555555","stroke-width":2,"stroke-opacity":1,"fill":"#555555","fill-opacity":0.5,"area":"San Paolo"},"geometry":{"type":"Polygon","coordinates":[[[9.154551029205322,45.43581879697441],[9.154540300369263,45.434305546612464],[9.154400825500488,45.43403451241219],[9.154411554336548,45.43368818903973],[9.154422283172607,45.433394565385285],[9.154454469680786,45.43227275838154],[9.154272079467773,45.432069475531335],[9.15434718132019,45.43192642419781],[9.154669046401978,45.43187372098353],[9.155280590057373,45.43154244250977],[9.15561318397522,45.431474680764246],[9.156085252761839,45.43134668613401],[9.158381223678589,45.43069165024724],[9.159185886383057,45.43034530636109],[9.15982961654663,45.43019472139985],[9.159990549087523,45.42976555205624],[9.159153699874878,45.42877920312651],[9.159228801727295,45.428688849691014],[9.159185886383057,45.428508142386136],[9.159539937973022,45.428274727927764],[9.160215854644775,45.42815425557161],[9.160966873168945,45.4281617851014],[9.161428213119505,45.428417788516754],[9.161685705184937,45.42890720357919],[9.162222146987915,45.429773081371096],[9.16257619857788,45.43011189949995],[9.16435718536377,45.4307744712964],[9.164571762084961,45.43113587081616],[9.164679050445557,45.43476479603592],[9.164872169494629,45.434990655037126],[9.164743423461914,45.435261684645376],[9.165022373199463,45.43584891099767],[9.164979457855225,45.43618016419291],[9.154551029205322,45.43581879697441]]]}}]} \ No newline at end of file diff --git a/layers/aree_omogenee_multi.json b/layers/aree_omogenee_multi.json new file mode 100644 index 0000000..de8876e --- /dev/null +++ b/layers/aree_omogenee_multi.json @@ -0,0 +1,8 @@ +{ +"type": "FeatureCollection", +"name": "aree_omogenee_multi", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { }, "geometry": { "type": "MultiPolygon", "coordinates": [ [ [ [ 9.238815307617188, 45.420172389188998 ], [ 9.234867095947266, 45.422431522477723 ], [ 9.231991767883301, 45.424630325400017 ], [ 9.228601455688477, 45.427521771483278 ], [ 9.226713180541992, 45.429419202487232 ], [ 9.226155281066895, 45.430413069462553 ], [ 9.223923683166504, 45.431738198206574 ], [ 9.230146408081055, 45.437219082055833 ], [ 9.238858222961426, 45.433304219338112 ], [ 9.240403175354004, 45.428726496973376 ], [ 9.240403175354004, 45.427250704704498 ], [ 9.238815307617188, 45.420172389188998 ] ] ], [ [ [ 9.154551029205322, 45.435818796974409 ], [ 9.164979457855225, 45.436180164192912 ], [ 9.165022373199463, 45.43584891099767 ], [ 9.164743423461914, 45.435261684645376 ], [ 9.164872169494629, 45.434990655037126 ], [ 9.164679050445557, 45.434764796035921 ], [ 9.164571762084961, 45.431135870816163 ], [ 9.16435718536377, 45.430774471296402 ], [ 9.162576198577881, 45.430111899499948 ], [ 9.162222146987915, 45.429773081371096 ], [ 9.161685705184937, 45.428907203579193 ], [ 9.161428213119505, 45.428417788516754 ], [ 9.160966873168945, 45.428161785101402 ], [ 9.160215854644775, 45.428154255571613 ], [ 9.159539937973022, 45.428274727927764 ], [ 9.159185886383057, 45.428508142386136 ], [ 9.159228801727295, 45.428688849691014 ], [ 9.159153699874878, 45.42877920312651 ], [ 9.159990549087523, 45.429765552056239 ], [ 9.159829616546631, 45.43019472139985 ], [ 9.159185886383057, 45.43034530636109 ], [ 9.158381223678589, 45.43069165024724 ], [ 9.156085252761839, 45.431346686134013 ], [ 9.15561318397522, 45.431474680764246 ], [ 9.155280590057373, 45.431542442509773 ], [ 9.154669046401978, 45.431873720983532 ], [ 9.15434718132019, 45.431926424197812 ], [ 9.154272079467773, 45.432069475531335 ], [ 9.154454469680786, 45.432272758381536 ], [ 9.154422283172607, 45.433394565385285 ], [ 9.154411554336548, 45.433688189039728 ], [ 9.154400825500488, 45.43403451241219 ], [ 9.154540300369263, 45.434305546612464 ], [ 9.154551029205322, 45.435818796974409 ] ] ], [ [ [ 9.169936180114744, 45.473975422863255 ], [ 9.168970584869385, 45.47477289927653 ], [ 9.168498516082762, 45.475495132327559 ], [ 9.16834831237793, 45.476322679652405 ], [ 9.168562889099121, 45.476879386469527 ], [ 9.168949127197264, 45.477541409038892 ], [ 9.169507026672363, 45.478007829360649 ], [ 9.170258045196533, 45.47838397196918 ], [ 9.171159267425537, 45.478564519529399 ], [ 9.172167778015137, 45.47863974750878 ], [ 9.172811508178711, 45.478534428309551 ], [ 9.173712730407715, 45.478248560919383 ], [ 9.174399375915527, 45.477827280016676 ], [ 9.175043106079102, 45.477345812271103 ], [ 9.173498153686523, 45.476367818247851 ], [ 9.173712730407715, 45.476066893595096 ], [ 9.173820018768311, 45.475841199050905 ], [ 9.173841476440428, 45.475585410808122 ], [ 9.173712730407715, 45.475329621404256 ], [ 9.173605442047119, 45.475134016959089 ], [ 9.173369407653809, 45.47493841183497 ], [ 9.173133373260498, 45.474848132317902 ], [ 9.172811508178711, 45.47477289927653 ], [ 9.172446727752686, 45.474727759403521 ], [ 9.172039031982422, 45.474757852656204 ], [ 9.171738624572754, 45.474848132317902 ], [ 9.171438217163086, 45.474998598099297 ], [ 9.169936180114744, 45.473975422863255 ] ] ], [ [ [ 9.129188060760498, 45.475916430666089 ], [ 9.117257595062256, 45.476127078654201 ], [ 9.117300510406494, 45.479692928673849 ], [ 9.117729663848877, 45.480189421538256 ], [ 9.119081497192383, 45.480716000098525 ], [ 9.120132923126221, 45.481167349233175 ], [ 9.12508964538574, 45.479768155146637 ], [ 9.127750396728516, 45.480866450211828 ], [ 9.130089282989502, 45.480339873057645 ], [ 9.130690097808838, 45.479045976861705 ], [ 9.130282402038574, 45.478970749424704 ], [ 9.129166603088379, 45.476984708762188 ], [ 9.129188060760498, 45.475916430666089 ] ] ], [ [ [ 9.205352067947388, 45.474690142815035 ], [ 9.204139709472656, 45.475194203014524 ], [ 9.211472868919373, 45.48296518739977 ], [ 9.210796952247618, 45.483299924990781 ], [ 9.214267730712891, 45.48416120695326 ], [ 9.214868545532227, 45.484778012144815 ], [ 9.216091632843018, 45.485951427766658 ], [ 9.215512275695801, 45.486192125385912 ], [ 9.216756820678709, 45.487004472257951 ], [ 9.218130111694336, 45.486131951077517 ], [ 9.217057228088379, 45.485665598007998 ], [ 9.21677827835083, 45.485289504010659 ], [ 9.215877056121826, 45.484958539216009 ], [ 9.214911460876465, 45.483875368111136 ], [ 9.214804172515869, 45.48122000639669 ], [ 9.210383892059324, 45.476664979765481 ], [ 9.208667278289795, 45.47640919526193 ], [ 9.208104014396667, 45.475976615885905 ], [ 9.207717776298523, 45.476160932721704 ], [ 9.205749034881592, 45.474979789898605 ], [ 9.205352067947388, 45.474690142815035 ] ] ], [ [ [ 9.190932512283325, 45.505918311158865 ], [ 9.190417528152466, 45.50483554313027 ], [ 9.188518524169922, 45.505166391126359 ], [ 9.188218116760254, 45.505813042958913 ], [ 9.188185930252073, 45.505963426041419 ], [ 9.184849262237549, 45.50671533542782 ], [ 9.182435274124146, 45.507316855705632 ], [ 9.181534051895142, 45.507211590121017 ], [ 9.181019067764282, 45.507813105095856 ], [ 9.180407524108887, 45.508722884281937 ], [ 9.179924726486204, 45.510392027690564 ], [ 9.178959131240845, 45.51376023843158 ], [ 9.178841114044189, 45.514091033972612 ], [ 9.179731607437134, 45.514256431013962 ], [ 9.181416034698486, 45.514421827569251 ], [ 9.183990955352783, 45.513873009857193 ], [ 9.186952114105223, 45.513203896091241 ], [ 9.188539981842041, 45.512827985991059 ], [ 9.190943241119385, 45.512933241072218 ], [ 9.191694259643555, 45.51308360513238 ], [ 9.19330358505249, 45.513474549808663 ], [ 9.19377565383911, 45.513249005134554 ], [ 9.193582534790039, 45.513023459556528 ], [ 9.193410873413086, 45.512256597829968 ], [ 9.192702770233154, 45.511023582558963 ], [ 9.193282127380371, 45.510813065056901 ], [ 9.190932512283325, 45.505918311158865 ] ] ], [ [ [ 9.117203950881958, 45.462320447122181 ], [ 9.116184711456299, 45.464487597229983 ], [ 9.113706350326536, 45.464043639236003 ], [ 9.111785888671875, 45.46368997528127 ], [ 9.111120700836182, 45.463637301736505 ], [ 9.110723733901978, 45.463584628142499 ], [ 9.110080003738403, 45.463471755989637 ], [ 9.109361171722412, 45.465586190116817 ], [ 9.109393358230591, 45.466097856208357 ], [ 9.109565019607544, 45.466835249170657 ], [ 9.109843969345093, 45.467060979781778 ], [ 9.110112190246582, 45.467392049709588 ], [ 9.110090732574463, 45.467858554034791 ], [ 9.109629392623901, 45.469528908827712 ], [ 9.109114408493042, 45.471582925912891 ], [ 9.113116264343262, 45.472034348205646 ], [ 9.114071130752563, 45.472117108567112 ], [ 9.114704132080078, 45.472568526581256 ], [ 9.115712642669678, 45.473245646822996 ], [ 9.117976427078247, 45.471974158775517 ], [ 9.117000102996826, 45.470965976265354 ], [ 9.116699695587158, 45.469942727814768 ], [ 9.116785526275633, 45.469100038671499 ], [ 9.117729663848877, 45.467068504119908 ], [ 9.118223190307617, 45.467053455442631 ], [ 9.12015438079834, 45.467354428224809 ], [ 9.121248722076416, 45.467354428224809 ], [ 9.121999740600586, 45.467429671169256 ], [ 9.122428894042969, 45.467474816887716 ], [ 9.12410259246826, 45.462297872203479 ], [ 9.119564294815063, 45.461334667251627 ], [ 9.118845462799072, 45.462666594743631 ], [ 9.117203950881958, 45.462320447122181 ] ] ], [ [ [ 9.178763649364079, 45.452313005208119 ], [ 9.18032169342041, 45.452484451648175 ], [ 9.179034233093262, 45.443361857609553 ], [ 9.17208194732666, 45.443783396114647 ], [ 9.16658878326416, 45.444084493118432 ], [ 9.162425994873047, 45.444897447001615 ], [ 9.159421920776367, 45.446192127148478 ], [ 9.158177375793457, 45.447125482775405 ], [ 9.157748222351074, 45.448149145382878 ], [ 9.157705307006836, 45.448329789796972 ], [ 9.162039756774902, 45.449323323733282 ], [ 9.166803359985352, 45.450286733867713 ], [ 9.167962074279783, 45.45064800842561 ], [ 9.16907787322998, 45.451490973394776 ], [ 9.169678688049316, 45.452333925764975 ], [ 9.169507026672363, 45.452695187209677 ], [ 9.170107841491699, 45.45380906209661 ], [ 9.172511100769043, 45.455223952527973 ], [ 9.176974296569824, 45.452303820540152 ], [ 9.176996158509786, 45.452302684523879 ], [ 9.172554016113281, 45.455239004363008 ], [ 9.177800297125566, 45.458814261464013 ], [ 9.173369407653809, 45.461605570307583 ], [ 9.173583984375, 45.46247847129996 ], [ 9.175558090209961, 45.465939842175736 ], [ 9.176845550537109, 45.467986465836603 ], [ 9.177746772766112, 45.468046659525271 ], [ 9.179420471191406, 45.467625302354797 ], [ 9.180707931518553, 45.467715593442186 ], [ 9.182295799255371, 45.468257336929362 ], [ 9.18281078338623, 45.468738882324715 ], [ 9.183239936828613, 45.469912631990901 ], [ 9.182982444763184, 45.470785404359233 ], [ 9.182596206665037, 45.47183873232273 ], [ 9.187445640563963, 45.47292213483351 ], [ 9.190492630004883, 45.473223076279339 ], [ 9.195127487182617, 45.472380436181439 ], [ 9.19929027557373, 45.468829171628379 ], [ 9.200577735900879, 45.467113650127622 ], [ 9.200448989868164, 45.465638861840681 ], [ 9.199762344360352, 45.46422423274015 ], [ 9.193539619445801, 45.457541887792722 ], [ 9.192724227905273, 45.45727096521167 ], [ 9.189763069152832, 45.456789321853584 ], [ 9.187703132629395, 45.455916332781364 ], [ 9.184995748742733, 45.456529330118165 ], [ 9.184184074401855, 45.455630350663704 ], [ 9.183990955352783, 45.453688644250562 ], [ 9.184591770172119, 45.452409188756789 ], [ 9.184570312499998, 45.45195760929937 ], [ 9.181158542633055, 45.452198452126623 ], [ 9.180343151092529, 45.452273715299221 ], [ 9.180343151092529, 45.45249950421438 ], [ 9.178763649364079, 45.452313005208119 ] ], [ [ 9.178004264763031, 45.452250300101113 ], [ 9.178133010864258, 45.452243610042231 ], [ 9.178144234891745, 45.452244845128973 ], [ 9.178004264763031, 45.452250300101113 ] ] ], [ [ [ 9.187949895858765, 45.47298232325123 ], [ 9.187467098236084, 45.472929658389248 ], [ 9.182606935501099, 45.471861303420795 ], [ 9.182306528091431, 45.471793590099466 ], [ 9.180482625961304, 45.473162888118729 ], [ 9.181544780731201, 45.473802384038329 ], [ 9.180922508239746, 45.477488748437452 ], [ 9.182134866714478, 45.481107169557475 ], [ 9.18231725692749, 45.481250096182343 ], [ 9.181523323059082, 45.48255146403347 ], [ 9.181716442108154, 45.484018287713489 ], [ 9.182682037353516, 45.483975035766825 ], [ 9.184441566467285, 45.483929903265349 ], [ 9.184733927249907, 45.483943066915344 ], [ 9.18495386838913, 45.484014526675978 ], [ 9.185144305229185, 45.484119835631681 ], [ 9.185348153114319, 45.48426463512434 ], [ 9.186632931232452, 45.485364723011003 ], [ 9.186767041683197, 45.485483192732858 ], [ 9.186927974224091, 45.4855772161443 ], [ 9.187166690826416, 45.485656195688655 ], [ 9.187426865100861, 45.485706968194393 ], [ 9.187625348567963, 45.485706968194393 ], [ 9.187746047973633, 45.485684402641944 ], [ 9.188105463981627, 45.485618586395631 ], [ 9.188239574432373, 45.48562234732605 ], [ 9.18832004070282, 45.485643032438951 ], [ 9.188534617424011, 45.486361365283656 ], [ 9.188601672649384, 45.486355723961914 ], [ 9.19380784034729, 45.486917972916835 ], [ 9.194000959396362, 45.486449745917064 ], [ 9.194089472293854, 45.486395213202186 ], [ 9.194236993789673, 45.486301191156045 ], [ 9.194298684597015, 45.486133831525635 ], [ 9.194376468658447, 45.486105624797389 ], [ 9.194623231887817, 45.486088700753648 ], [ 9.195148944854736, 45.48611690749037 ], [ 9.195513725280762, 45.484868275752724 ], [ 9.189655780792236, 45.480001356574043 ], [ 9.190138578414917, 45.479963743505877 ], [ 9.189419746398924, 45.479226522300706 ], [ 9.189194440841675, 45.478556996725949 ], [ 9.189033508300781, 45.478429108913481 ], [ 9.188507795333862, 45.476969662732429 ], [ 9.188454151153564, 45.475329621404256 ], [ 9.187874794006348, 45.473388593389558 ], [ 9.187949895858765, 45.47298232325123 ] ] ] ] } } +] +} diff --git a/layers/confini.json b/layers/confini.json new file mode 100644 index 0000000..e0072d1 --- /dev/null +++ b/layers/confini.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[9.07162376458469,45.479125567242505],[9.071583305317244,45.47916434178404],[9.071581736295185,45.47916809617908],[9.07152277534054,45.479226864453786],[9.071462793422969,45.47928781157477],[9.071457209075772,45.479293350665806],[9.071338992096756,45.47941077022344],[9.071169231774578,45.47957502681927],[9.07110080202087,45.47963398976413],[9.070914889154052,45.47979501562185],[9.070874326346722,45.47984387108885],[9.07081233495821,45.47991562930033],[9.070723568764139,45.48002234585026],[9.07067605866357,45.48006147544773],[9.070565215788717,45.480153974888],[9.070461532615013,45.480242338366466],[9.070351186712967,45.48033376617243],[9.07025643588393,45.48041346502788],[9.070144856645245,45.48051173414396],[9.070057944646411,45.48056747639029],[9.06992740378681,45.48066683698289],[9.069865542041496,45.48062725226902],[9.06982010794826,45.48059701856588],[9.069612681706605,45.48075968454148],[9.069358984764836,45.480951928373365],[9.069194461005575,45.48107491826217],[9.069018051859212,45.481168022752776],[9.068739551602134,45.48131608521996],[9.068607423303577,45.48138632702276],[9.06816127199038,45.481626091275324],[9.067669658708283,45.4819012004838],[9.06700955169301,45.48227498491775],[9.066947771308694,45.48230420218261],[9.066825442963799,45.482355372092556],[9.066721188846978,45.482401805846855],[9.066680763593265,45.48241991232907],[9.066649923044912,45.482438796319464],[9.066591424280315,45.48247342108251],[9.066433579668539,45.482550534026515],[9.066368904440784,45.48258860062813],[9.066133173316995,45.48273214047626],[9.0660504444566,45.48279334984558],[9.06602472608073,45.482815984133],[9.066004570159198,45.48283551887543],[9.0659816265975,45.48285661238801],[9.065971400204775,45.482865286220466],[9.065896130624779,45.482926338173414],[9.065843327201476,45.482973956714694],[9.065802723709742,45.4830044843561],[9.06576445002687,45.48304697296738],[9.065722858825152,45.48308652914106],[9.065672032790628,45.4831292679321],[9.06565850871872,45.48315221019496],[9.065657793597248,45.48316452396125],[9.065688105467082,45.483218971626805],[9.065690772510301,45.483223767629745],[9.065706210231355,45.48324014960271],[9.065692799940814,45.483295108332655],[9.065666784604876,45.48332683370931],[9.065645097190837,45.483350086672075],[9.06567516490159,45.48338141993189],[9.065776314257958,45.483480327933776],[9.065810850632444,45.48351408886473],[9.065833192299406,45.48353645252167],[9.065858134543399,45.48356142497002],[9.065964279610256,45.483664398384775],[9.065970097421424,45.483947233187955],[9.065978130909699,45.48428681794847],[9.06598047963035,45.484447151238825],[9.06600270146838,45.484498165079366],[9.066038881518631,45.48460230373104],[9.066084384472864,45.48481170357787],[9.066107248626022,45.48490865807531],[9.066129801252393,45.48506770156971],[9.06609267202035,45.48519298071363],[9.065989598575968,45.48546770517454],[9.065877407385557,45.485770508842926],[9.065715593944681,45.48620867964527],[9.066268639230826,45.48632957806276],[9.066361464899225,45.48634123473049],[9.06639264124286,45.48634498811957],[9.066427851939483,45.48635172749373],[9.066468307563762,45.48635710467153],[9.06650875342397,45.48636506512395],[9.066605748922377,45.48638601719714],[9.066755344080336,45.48644512080241],[9.066866155986302,45.486495344830224],[9.06691660341281,45.48652046419443],[9.06695843476404,45.4865420781769],[9.067091682517924,45.48661679858441],[9.067209832693667,45.4866822926629],[9.067264166428078,45.48671472739961],[9.067312467431481,45.48674238612385],[9.067341777345927,45.48674746349299],[9.06733651933306,45.48677017606613],[9.067328269489717,45.48680583381216],[9.067261087718146,45.48696769292472],[9.067181328768257,45.487185518483095],[9.067119735957737,45.48735627620571],[9.067105004131456,45.48739711328809],[9.067086649911257,45.48744799758488],[9.067057134062793,45.487528915685324],[9.067023357856915,45.487621537544996],[9.067012886946411,45.48765132791724],[9.066972482632051,45.48776626707027],[9.0669054317287,45.487965011905],[9.066837748365224,45.488105178655545],[9.066808221344537,45.48816631252543],[9.066805546484918,45.48818779043038],[9.066804253409039,45.488198160316664],[9.066794405519527,45.48823560113993],[9.066776876810874,45.48833603531633],[9.06675954479571,45.48844055582058],[9.066748693271382,45.488506062289325],[9.066739010678466,45.48856445729963],[9.066733367176658,45.488564388572286],[9.066688358068177,45.488562254489615],[9.066433967730568,45.48855019664081],[9.066209459844382,45.488539561154155],[9.06602499562441,45.488530810414034],[9.065834900542471,45.48852180157644],[9.065704237406461,45.48851561173938],[9.065269773067582,45.48849501326006],[9.06493672959232,45.48847921634714],[9.064936210802113,45.488506750649904],[9.064935957347394,45.48852011725407],[9.064936165207078,45.48853403265733],[9.064936424799628,45.48854842508347],[9.064938211080833,45.488577389238614],[9.064939242543803,45.48860652483919],[9.064941537847893,45.488677766325665],[9.064955603369247,45.48886953332025],[9.064967888353955,45.48905968113714],[9.064980432155453,45.489274644508775],[9.06500499229931,45.48963479591052],[9.065024426372265,45.48994367159603],[9.065031275529549,45.49002424450265],[9.065043507954817,45.49016804625106],[9.065040359929485,45.49016812904305],[9.063958767062985,45.49019437137916],[9.06395898798446,45.49039059264002],[9.063436616534059,45.490402943709206],[9.063263333124404,45.49040715274855],[9.0631069557301,45.490412099317545],[9.062837042717838,45.49041884503988],[9.062768860879839,45.490420781532535],[9.06266352966677,45.49042378237441],[9.062703736572416,45.49032903410722],[9.062740284822706,45.49023563797027],[9.062775026045216,45.490174727348766],[9.062817111292254,45.490112453551035],[9.06285716372302,45.49005201704992],[9.06286467596864,45.490040707705525],[9.062861676154254,45.489989682784305],[9.06284433843288,45.489887801162894],[9.062840630546548,45.489844499469456],[9.062842379706877,45.48977141954206],[9.062847806137341,45.489702406045176],[9.062869695756655,45.48961578661599],[9.062922716922818,45.48951426250392],[9.062940994368624,45.48947094876289],[9.063017832860814,45.48935993351365],[9.06309653861126,45.48928276087899],[9.063241233816521,45.48922448993553],[9.063388099413094,45.489161915140436],[9.063521441842408,45.489102542985805],[9.063616672138114,45.489052417802135],[9.063680747730423,45.48900772841126],[9.063715528813162,45.4889725242759],[9.063825371692145,45.48888720596545],[9.063865637930219,45.48884793929144],[9.063966308611468,45.48875450705746],[9.064017547374537,45.48869764629461],[9.064068805869464,45.48865837341901],[9.064121899403652,45.48861233075587],[9.06413103599572,45.48858931913954],[9.0641511620386,45.48856360108844],[9.064185946578693,45.48854328443221],[9.064181356658,45.48851298068557],[9.064173027818194,45.48845803433452],[9.064156600791152,45.48846168891209],[9.064154707326136,45.48846210401519],[9.064119907555737,45.48846889219209],[9.064035631528693,45.48848382684685],[9.06395502662301,45.4884974002463],[9.063826798764316,45.48852859699179],[9.063630782070877,45.488567950062695],[9.063354165919906,45.488626294361204],[9.063024437506822,45.488703605218596],[9.062698363638491,45.48877686268558],[9.062242223491662,45.48887589659219],[9.06201872994218,45.48892744011223],[9.06185019404762,45.488962715838746],[9.06171830109479,45.488991202892564],[9.06165052041587,45.48900748606952],[9.061622193604482,45.48901273084206],[9.061562584460809,45.48902377101019],[9.061516369543325,45.48903094255246],[9.061483806695522,45.48903599153774],[9.061489186786087,45.48907642107264],[9.061491199401416,45.48909146963842],[9.061491035066641,45.48909334193084],[9.061482148039245,45.4891943197126],[9.061462131809858,45.489322891459096],[9.061464094988805,45.489446032847965],[9.061462323561212,45.489500165702985],[9.06146979682498,45.48963007287764],[9.061475444903616,45.4897762187969],[9.061506789430783,45.48995753579085],[9.061492385629856,45.49018759958323],[9.061439355774835,45.49029588276066],[9.061397353321572,45.4904244662297],[9.061387173177618,45.490513401359664],[9.06137920449069,45.4905882217683],[9.061388516503177,45.49072624682502],[9.061375870429409,45.490889999413184],[9.061335672577849,45.49099556637651],[9.06126617462449,45.49111875487236],[9.061200299992402,45.49120809771005],[9.061136267999608,45.49129744852856],[9.061052087294865,45.49140575708236],[9.060971577701327,45.49151270447556],[9.060936814851098,45.491556026632914],[9.060971186193552,45.491565270400365],[9.060996625487162,45.4915751039647],[9.061032435107402,45.49158893744909],[9.061062426994608,45.49159564523992],[9.061068061003606,45.49159851355687],[9.06113113636967,45.49163065850349],[9.061242890541878,45.49167167043691],[9.061329525883632,45.491703298654144],[9.061452554665998,45.491743980325936],[9.061585339900232,45.49178881508612],[9.061609191044806,45.491797308219404],[9.061709666782043,45.49184603958279],[9.061790843754554,45.49189466422896],[9.06183192532993,45.49191927779759],[9.061879345950176,45.49195947763061],[9.061916505101946,45.49198993491659],[9.061986222686023,45.49204491128941],[9.062059707737378,45.49210429606275],[9.062110021451675,45.49214495328526],[9.062116280253532,45.492145624973745],[9.06215437061947,45.49214969981136],[9.062226407087481,45.49206635675225],[9.062311011954403,45.492030892032226],[9.062375110207629,45.491967859391195],[9.062433314133662,45.49190985246386],[9.062497407376508,45.491877414081245],[9.062631729387933,45.49188734999463],[9.062756310647849,45.49189565289519],[9.062954725792343,45.49190785763753],[9.06310801368586,45.49191746755813],[9.063233106986662,45.491925769657236],[9.0632859095497,45.49193682977606],[9.063322316285847,45.49193455046148],[9.063426657822863,45.491936707120175],[9.06356815136934,45.49193927517082],[9.063703246113468,45.49194184659609],[9.063825005283562,45.491944020230285],[9.063910368132067,45.49194633100964],[9.063876766721455,45.49207613481025],[9.06383266127962,45.49224280344167],[9.06379060472301,45.4923994168211],[9.063742376781619,45.49257650182895],[9.06369570010177,45.4927334597658],[9.063679027062278,45.49279278545113],[9.063591608968432,45.49287628195007],[9.063558528401064,45.49292370840874],[9.063536984655048,45.49296505281564],[9.063484937836717,45.49300130153048],[9.063392393983941,45.49304502539215],[9.063375471978913,45.493053630664726],[9.063278811925985,45.493136213920835],[9.063215240662977,45.49319007477105],[9.063162410748674,45.49323602682094],[9.063112674868332,45.493279294854815],[9.063046789045691,45.49333512809564],[9.062963975496327,45.493406218233446],[9.062920901095593,45.493444099946416],[9.062869628491887,45.493486828656266],[9.062823414052689,45.49353229987347],[9.062742291172118,45.49362828562188],[9.06254689557167,45.493899780614235],[9.062516227067329,45.49394238992715],[9.062420729884806,45.49401425164993],[9.062197677243459,45.49426481578711],[9.062074701094588,45.49435980659719],[9.061957197763846,45.4944507618846],[9.061864270237088,45.494521505628676],[9.06180415416402,45.494565966802305],[9.061681161355038,45.49464682566343],[9.061618304001257,45.49468928099316],[9.061511704913963,45.49475800656218],[9.061437904771694,45.494800458650765],[9.06137224494976,45.494784337005775],[9.06125183771906,45.494735931035514],[9.061164281873484,45.494697597540764],[9.061035673497363,45.49465121192701],[9.060931706266807,45.494608854536615],[9.060814038597417,45.494560437649135],[9.060715530212653,45.49452413482671],[9.060600620989542,45.49448178291722],[9.060513059642421,45.494449515581216],[9.060411823476295,45.49441118871388],[9.06031057250911,45.494370845546065],[9.060239435841032,45.49434261081249],[9.060173761917063,45.49431234795372],[9.060119032624346,45.494284095547904],[9.060072521953822,45.494269979349156],[9.060028739453143,45.494257886925126],[9.059976766153431,45.49424579876116],[9.059938506030885,45.494276107010556],[9.059894783194487,45.494308452315586],[9.059845582679946,45.49434079145656],[9.059801853317602,45.49437919438487],[9.059725353966872,45.49444790261716],[9.05966247195179,45.494480248790865],[9.059539478384051,45.49456313056675],[9.059468411605534,45.494601538530304],[9.059411011144945,45.49463792316429],[9.059339975833945,45.49470663731043],[9.059257999765785,45.49478948858441],[9.059124108617194,45.49491680433506],[9.058993058452735,45.495143084168625],[9.058913945970273,45.49533499850887],[9.058832071093878,45.495504708802926],[9.058736574686039,45.495732986324214],[9.058646523728765,45.495943088014535],[9.058621524639403,45.496014100439474],[9.05864145599146,45.49624120278498],[9.058519050085536,45.49655191571902],[9.058502196134532,45.49660349986598],[9.058494145513675,45.49662813062148],[9.058471996689686,45.49669588320255],[9.058458715043505,45.49673652934421],[9.058433746519073,45.49681294228493],[9.058425274794367,45.49683885138671],[9.058414225857753,45.49687268265213],[9.05840378927767,45.49690459639827],[9.058404854053773,45.49690700811709],[9.058413629009042,45.49692704881709],[9.05840578248623,45.4969386460561],[9.058387179496862,45.49696980787009],[9.058366601749379,45.49699734329299],[9.05835975500027,45.49701038917702],[9.058349968089022,45.497039368271224],[9.058336005064563,45.49707721544049],[9.058317938413923,45.497132220539896],[9.058295865106485,45.49719912695127],[9.058273788700696,45.497263063039036],[9.05824969916118,45.49733591110266],[9.058221615089531,45.49743255074719],[9.05818151331065,45.497579736912826],[9.058171484698159,45.49762284763307],[9.0581715044818,45.49764217270407],[9.058175574192,45.49767933564549],[9.058183691686775,45.49774473257691],[9.058147777421201,45.4977443367143],[9.056801978363294,45.497729510229874],[9.056747556639008,45.497728916051884],[9.056603554086955,45.49772733089767],[9.056550386672036,45.4977267450088],[9.056557927903008,45.497755130353966],[9.056554134722264,45.49778900286745],[9.056542701961526,45.49782429229206],[9.056496965165637,45.497959806372215],[9.056432185057588,45.49816164892021],[9.056308339299996,45.49854699611308],[9.056169210741862,45.49894646413316],[9.056070110245946,45.49923583061021],[9.05600528960708,45.49939957179956],[9.055938534797605,45.49954920037384],[9.055816470548251,45.499813168049215],[9.05562382343532,45.500215487600144],[9.055492231232417,45.5005034560814],[9.055383969505703,45.500736903315655],[9.055349523402782,45.500813401104004],[9.055311816893935,45.50089359984642],[9.055255071967633,45.50100796638836],[9.05522242158128,45.50107550731237],[9.055152579988988,45.50121401167535],[9.055093917805724,45.5013318354208],[9.055057594942692,45.50138764979899],[9.055015213970815,45.50146605048196],[9.05492163344726,45.501623738106204],[9.054778174394686,45.501877579713586],[9.054591516721784,45.50220064105229],[9.054560505024675,45.50225669576714],[9.05448399407925,45.50239784014008],[9.054469362861191,45.50242370683773],[9.054345060357429,45.502636242374976],[9.05408206050651,45.50311022201277],[9.054006959069412,45.50324193237528],[9.053999675658902,45.50325530222336],[9.053745320728943,45.50371330026924],[9.053722882538613,45.503754715172576],[9.053803294616738,45.503782292506536],[9.053965130567578,45.503837797566625],[9.053997603348648,45.50384951956766],[9.05441835894667,45.50399214835757],[9.054195432366837,45.504346018374385],[9.053891003294419,45.50483621868039],[9.0538770210742,45.504872499095036],[9.053901756087596,45.50487705098435],[9.05402543556084,45.504904382835],[9.05416766644706,45.50493512617463],[9.054246509825632,45.50495335193507],[9.05432381936168,45.50497385560831],[9.054444406974737,45.50500689507325],[9.054575822938265,45.50503878614799],[9.054699508584001,45.5050718238722],[9.05484174246441,45.50510485261334],[9.054968522843398,45.505134459204406],[9.055144764373253,45.50517660726977],[9.055263812375323,45.50520507412099],[9.05547406231509,45.50524377595488],[9.055681214784308,45.50528247890242],[9.055821905836604,45.50530751431949],[9.056027500887986,45.505337081423654],[9.056148090673245,45.50535757175282],[9.056245481194857,45.50537350082562],[9.056373791071723,45.505395121258154],[9.05648509265501,45.50540761393675],[9.05660723276952,45.50542923713951],[9.056684521906067,45.50544061225306],[9.056715380640929,45.50539839153935],[9.056738534431451,45.50535728173941],[9.056767839877777,45.505297923955425],[9.056786365216086,45.50527508837466],[9.056817235423965,45.505231706503054],[9.05685275563673,45.505191742685994],[9.056905239374432,45.50512895303113],[9.0569531076975,45.5050718722462],[9.056996333886492,45.50501935722881],[9.057022869383633,45.50503196340616],[9.0570285171394,45.50503464288867],[9.05708757621276,45.505069960322544],[9.057118252341157,45.50508852305427],[9.057168372520229,45.505119695447775],[9.057187522879033,45.50513303433821],[9.05732833337947,45.505098553510564],[9.057346470248879,45.50510964264072],[9.057799019820084,45.504892222775794],[9.057941430453482,45.50472070080094],[9.058330484602056,45.50447872019982],[9.058395024852556,45.50446650011677],[9.05840398463475,45.504465964505926],[9.058516364887279,45.504458274510114],[9.05852719424922,45.50445843101117],[9.05891871536041,45.50446404551002],[9.059106354238034,45.50446088879955],[9.059170430009276,45.50442075654492],[9.059243124953598,45.50429908012486],[9.059272374789234,45.504263079204115],[9.0595523391873,45.504439929265885],[9.059600334357588,45.504470246606374],[9.059613147136222,45.50446977190835],[9.059700286954742,45.504378978991724],[9.059759528026428,45.50433084706621],[9.059782680278094,45.5043151193459],[9.059804095404484,45.50431510819921],[9.05982471273993,45.504323297337336],[9.05983899633004,45.504333830020485],[9.059855687327827,45.50436952812787],[9.059869182867114,45.50438533577946],[9.059886641600787,45.50439644286305],[9.059905685139048,45.50440521786921],[9.059922347181072,45.50441340905219],[9.059935839035827,45.50442569732296],[9.059966786573732,45.50444616735339],[9.06002152730604,45.50447599494362],[9.06005167757121,45.50449296399461],[9.060098491181533,45.50451928531767],[9.060230184323265,45.504581268949806],[9.06024651462944,45.504566246787704],[9.060257201754897,45.50455296476852],[9.060307096191874,45.504490903979416],[9.060360628912521,45.50441967828025],[9.060468444756447,45.50427307696698],[9.060582969128511,45.50411604889963],[9.060670192787681,45.50399786527438],[9.060781368328012,45.50384641936409],[9.060904901861669,45.5036769738711],[9.06097926583444,45.50357624067892],[9.061057754944368,45.50346706234327],[9.061172788810001,45.503310735466336],[9.06126695061553,45.50318339369645],[9.061329746240679,45.50309849012624],[9.061410281447401,45.50298877038897],[9.061584744923717,45.50275043053982],[9.061723982041947,45.50255994046018],[9.061826383641248,45.50241999243747],[9.061913347074011,45.50230271706486],[9.061937126301343,45.50231157019131],[9.063423361247045,45.50285275193022],[9.064378606568015,45.50320160166227],[9.06475597250479,45.50333941019651],[9.064764680283389,45.5033425916254],[9.065354940928529,45.50355739812614],[9.065387211809112,45.503569729070215],[9.065643868302564,45.503667837099705],[9.06546143795975,45.50384499012931],[9.065120853782833,45.50424180206204],[9.065014125860875,45.50436652582101],[9.06483285734294,45.50457836686058],[9.064900181304397,45.504617320979406],[9.065462947198528,45.504942971204954],[9.065464548339465,45.50494389739069],[9.065865064933128,45.50517483992596],[9.066588340083097,45.50505549307194],[9.066591040439588,45.505055005454025],[9.067277185584365,45.50493122929266],[9.067296791888198,45.50492769842681],[9.067320400571484,45.50493141998256],[9.06732060541266,45.50493144686531],[9.067354302851573,45.50493676466809],[9.067438539434562,45.504954906151404],[9.067680965236004,45.50500480880988],[9.06814936386885,45.50510006786621],[9.068191168566061,45.50510895398888],[9.068217941515176,45.50511465369003],[9.068241820773268,45.505119725038085],[9.068328118809266,45.50514849477005],[9.068387561914323,45.50516723536996],[9.068482897006334,45.50519572057095],[9.068532417050147,45.505233459034685],[9.06855017944652,45.50527179250691],[9.0686255733981,45.505312548798386],[9.068753491016658,45.50536583892922],[9.068768686363663,45.5053771800339],[9.068963869022063,45.50552290544301],[9.06904742923662,45.50555212632217],[9.06908126446169,45.505565040339604],[9.069175856741687,45.50560288640228],[9.069424594035148,45.505639388127534],[9.06966876092897,45.50568562211913],[9.069882717227099,45.5057412799851],[9.069952394833598,45.50575413591266],[9.070272606355864,45.505795749756864],[9.070372258031421,45.50581448269929],[9.070493161116326,45.50582455258557],[9.070516204488392,45.50582613159989],[9.070658086269075,45.505834721265],[9.070666969816953,45.505834562779526],[9.070693542108257,45.50583284523528],[9.070773458429993,45.50579260671434],[9.070805045543791,45.505788437791594],[9.070841969695199,45.50578356349146],[9.071184517412078,45.5057929735704],[9.071303469528265,45.505798786356785],[9.071313659572647,45.50579928407912],[9.071447855611918,45.505813809168906],[9.071748169250833,45.505900589059365],[9.07195080721859,45.50596218175501],[9.072069874007823,45.505977309660835],[9.072172215834572,45.50598681336305],[9.072391914763783,45.50597556780932],[9.072480479528574,45.505992406703314],[9.072722870799936,45.50607832950134],[9.072946053812839,45.50606864684047],[9.07304477369201,45.50605855698186],[9.073090623305285,45.50603636743516],[9.073256780218019,45.50588929387489],[9.073279400425436,45.50585057532056],[9.073290102864425,45.505831513461324],[9.073292849054608,45.50582688521584],[9.073312937859287,45.50579064353419],[9.073355397974547,45.50569158787688],[9.073365879893274,45.50560102255116],[9.073359553958197,45.505529883032914],[9.073335626099835,45.50552731505212],[9.073214889013052,45.50550690596844],[9.073186135754735,45.505494764016674],[9.072088217412006,45.50529201030445],[9.072019678897677,45.50527895694275],[9.072024705821999,45.505265929402945],[9.072143190426772,45.50502564643156],[9.072246308417567,45.504801583727115],[9.072453652722569,45.504391315344954],[9.072745845658858,45.50380975855116],[9.072915770463634,45.50348139470683],[9.072984169708599,45.50334789399005],[9.073854565047974,45.50167069199472],[9.073943275589007,45.50149974258103],[9.074016113176413,45.501308623172584],[9.074159070663434,45.501012480174545],[9.074260633681636,45.50083448343366],[9.074320215050394,45.500726208263295],[9.074448065478952,45.500478454842956],[9.074647896214776,45.50010189565576],[9.074752177428776,45.49990073719614],[9.074792176372386,45.499823572854446],[9.074954282934879,45.49951490495739],[9.075030849989734,45.49935134335869],[9.07516052508838,45.49882380182251],[9.07514651720061,45.49872294615517],[9.075110221957567,45.49859966566306],[9.074934928587158,45.49837956259237],[9.07479980007188,45.498246913480756],[9.074608950057653,45.498059556559326],[9.074790650761035,45.498034793619354],[9.074989106271945,45.49797208935931],[9.075094653916826,45.49793873474872],[9.075541201824988,45.49793191592585],[9.07584384067229,45.49792728780025],[9.075859903924801,45.49792767322365],[9.076181348073346,45.497935282087646],[9.076637594052702,45.49797332236874],[9.076726278353126,45.49801118417754],[9.076964170608235,45.498112771790694],[9.077081109854973,45.49819348597834],[9.077463459104083,45.498430133941966],[9.077659675249265,45.498172555594195],[9.077763695947173,45.498053213299045],[9.078035617276539,45.497741244097824],[9.078655099541965,45.49703049151425],[9.078908770324976,45.497149229125824],[9.078964524038055,45.497150711925975],[9.078997792880543,45.49716329037906],[9.07968368175934,45.49740938856602],[9.08054009493729,45.497717289689604],[9.080813181712402,45.4978130749545],[9.080740927186746,45.49792692508722],[9.08091138772597,45.498001197982134],[9.081259302790254,45.4981527893798],[9.081291479337319,45.49815261356409],[9.081437452556075,45.498081366362705],[9.081496950015245,45.49805991080037],[9.081502046781997,45.49804401146829],[9.081574484234613,45.497818017653955],[9.081758219855093,45.49776030763665],[9.08229103395904,45.4976941115203],[9.082571461156826,45.49773093096756],[9.082675405735221,45.49770754357885],[9.082779334228823,45.49767319292651],[9.082840539375445,45.49762104212485],[9.083558804328263,45.49740526289916],[9.083793714798926,45.49805499749231],[9.084029070929748,45.498146590170535],[9.084173749200408,45.498179661646894],[9.084550945444494,45.49832254458668],[9.08587289108395,45.49879084580677],[9.086027073749978,45.49881855223904],[9.086320444803997,45.4984405881705],[9.086397564397931,45.49836822531692],[9.086474194182674,45.49826015593826],[9.086614736346146,45.498098032438826],[9.08684448700837,45.49781908966859],[9.086870091810901,45.497823570759216],[9.086979089997973,45.497958502670556],[9.08708792284455,45.4979854229756],[9.08717760572361,45.498043861127535],[9.08724160075022,45.498043812458214],[9.087324655689725,45.497953739552145],[9.087778789774042,45.49780487682706],[9.087849232804768,45.497836326272974],[9.087817339943763,45.49790385796964],[9.087862206076034,45.49794882844521],[9.087942892990903,45.497966642516104],[9.088054254910276,45.4979981954597],[9.088214354353317,45.498070080155195],[9.088547318368514,45.49819133659237],[9.088880340241925,45.49834859588461],[9.088950763385148,45.49836654321131],[9.089238965586686,45.49850799451015],[9.089705995733448,45.498703977186445],[9.09013569450295,45.49888428961308],[9.090137839185198,45.49891298301107],[9.08976862996673,45.499355760206484],[9.089695863081566,45.499443018518136],[9.089638988258008,45.499511227315125],[9.089574013849669,45.49958915445339],[9.089613293445339,45.49962049212824],[9.089623187043435,45.4996283872437],[9.089777203103397,45.49965335244675],[9.089892158332775,45.4996719933903],[9.09048377118502,45.499767919379515],[9.090357253324063,45.499891107363474],[9.09009290766096,45.50018988640982],[9.0900250767947,45.50026654690371],[9.09002303130282,45.50026807867382],[9.089912996504122,45.5003505058433],[9.089874831771096,45.500393092327734],[9.089836334819827,45.500436075101895],[9.089924710227768,45.50071503573102],[9.089946622603334,45.50077114855774],[9.08995261155969,45.50078648150273],[9.089963741293172,45.50081499682666],[9.090042248826121,45.50101302842051],[9.090086460837592,45.501126990899984],[9.090111651509304,45.50119194006161],[9.090168507274061,45.50133640583449],[9.090229589519264,45.501498375123056],[9.090298205709669,45.50167295779133],[9.090371224773396,45.5018551247544],[9.090379282487586,45.501875316563336],[9.090449990020833,45.502052426750765],[9.090470911496297,45.50210456182015],[9.090491974355656,45.50215703881014],[9.090510956837258,45.50220524198107],[9.090564485836309,45.50234118624641],[9.090590670147066,45.50240247111225],[9.090599149885756,45.50242232953471],[9.090663257169943,45.50257742843642],[9.09073989483157,45.50276373271563],[9.09079518004064,45.50290062057055],[9.09081391194301,45.50294390035761],[9.09081601896202,45.50294876820862],[9.09084132559504,45.50301315903714],[9.090922195012206,45.5032194869641],[9.09097260628254,45.50335765672354],[9.091023458015162,45.503482999739575],[9.09107722776307,45.503623858067165],[9.091088243827876,45.5036526253845],[9.091127796427234,45.50375596097645],[9.091195257238693,45.50394094006318],[9.091225491618793,45.504052266878276],[9.091234322189928,45.50414666191137],[9.091243952239925,45.50424467469139],[9.091256015820152,45.50436742016668],[9.091276586631317,45.50458237368504],[9.091280245221093,45.50462066084918],[9.091296389382311,45.50477336725284],[9.091318201032388,45.50497173099519],[9.091325535702873,45.505074984139675],[9.091340864454608,45.50522196656547],[9.091345259046605,45.5052641505514],[9.09135272791141,45.505347358450315],[9.091364806139348,45.505439185591314],[9.09136892715486,45.505470451631886],[9.091398857606675,45.505694245567696],[9.091405154293327,45.505741081525976],[9.091422048941109,45.505866613396364],[9.09144460912973,45.506060277980495],[9.091458149673771,45.50616965579777],[9.091474008680528,45.50627993185721],[9.091491047517462,45.50641529263384],[9.091504501623628,45.506550314229415],[9.091515344367975,45.506677390061384],[9.091544210456446,45.50675658442173],[9.091545923162075,45.506762883722665],[9.091553277689885,45.50679084381697],[9.091570128091108,45.50685688836764],[9.091586737043183,45.50692400422154],[9.09161407167341,45.507029707595336],[9.091614883186951,45.50703283027809],[9.091624840882478,45.50707940226012],[9.091775386249228,45.50695586976269],[9.091831827829258,45.50690956866221],[9.091824252967731,45.50690373310964],[9.091870490854935,45.506880392596045],[9.091886051265863,45.506869020921286],[9.091971911256946,45.50680020278341],[9.092021821464135,45.50676021649649],[9.092437361899982,45.50642717090286],[9.092535979861111,45.50634855800974],[9.092557828163809,45.506331141525806],[9.092612779696633,45.50629813564879],[9.09265929177474,45.506270753162866],[9.092660711596935,45.50627009494555],[9.09269664213492,45.50625349514011],[9.09287083239616,45.50617284961738],[9.0929176490083,45.50615177644897],[9.092963811574567,45.506137796544984],[9.093092025126984,45.50609894339095],[9.09331003736026,45.50603736163284],[9.0933314687799,45.50603130454589],[9.093432607709078,45.505999979844674],[9.093619856876682,45.50595270707923],[9.093824792466188,45.505903034279406],[9.093848860204211,45.505896650903125],[9.094154544968655,45.50582829901405],[9.09420571424046,45.50590034563631],[9.094307116529976,45.50604312544],[9.094800701435792,45.50673813215322],[9.094803177880168,45.50674163147675],[9.095169169508662,45.50725912613378],[9.095186273407315,45.507282955460504],[9.095208740609923,45.50731417911456],[9.095265125897203,45.5073957799244],[9.095499280785829,45.5073328934496],[9.096037843104988,45.50720056153307],[9.096557943403502,45.507068017603416],[9.096684695646891,45.50703571434908],[9.097272800526916,45.50690069752552],[9.097469141956005,45.506855615975525],[9.098192094940924,45.50667988536276],[9.098221115018568,45.50667265073382],[9.098837674327171,45.50651869945217],[9.098800656109658,45.506615356622206],[9.09856880810547,45.50722059141161],[9.09831538839581,45.507908913968066],[9.098285131235295,45.50798561003512],[9.098168995900897,45.508279932703736],[9.098136756466669,45.508372760130946],[9.09808229902297,45.50851302357787],[9.098017301167555,45.50866544729442],[9.09795650800869,45.50878441083905],[9.097792782179688,45.509135821773384],[9.097582909034456,45.50958650722695],[9.097487256540743,45.50979563568939],[9.097414608630121,45.509945527266694],[9.097332247497805,45.51011247484067],[9.097276542535198,45.51022915643222],[9.09721237543457,45.51036827553669],[9.097174827465988,45.51044278122776],[9.097031933153117,45.51074166177288],[9.096969330277501,45.51093523514197],[9.096863920124317,45.5112728508176],[9.096731696427693,45.51166770802784],[9.096638879102779,45.5119667707711],[9.096525558368759,45.5123148968462],[9.096495671759062,45.51241653368922],[9.096492615127127,45.512425879244205],[9.09648553380792,45.512447460472416],[9.0964815092272,45.512459759152044],[9.096476149978786,45.51248520033588],[9.096512012872857,45.512517420536064],[9.096268587400736,45.51268924625949],[9.096062645743016,45.51286103105242],[9.096004657770914,45.51293305119047],[9.095782004611431,45.51320173563511],[9.095600520715937,45.51341640664317],[9.095512587834616,45.513527200558634],[9.095478880904501,45.513574051549966],[9.095403678542226,45.51374879548227],[9.095304284481678,45.5139802204145],[9.095241182477785,45.514133846954884],[9.09523600238533,45.51415966596378],[9.095222942012377,45.51434152286699],[9.095221337161808,45.51434645671679],[9.09522095504729,45.51434762715679],[9.095201491620687,45.514452342289765],[9.095181774779428,45.5144519716218],[9.095175836246135,45.51447599106773],[9.095158484130673,45.51455722997978],[9.095152033149018,45.51458106082961],[9.0951216855084,45.514631419286005],[9.09511296902264,45.51464798825257],[9.095103818612396,45.514665376664205],[9.095087993629003,45.51469545293946],[9.095069232800899,45.51474604479477],[9.095040148851254,45.51489346834042],[9.095005420443016,45.515064848059104],[9.094994873897681,45.5151124717812],[9.094982268914558,45.515169431183885],[9.094916288734202,45.51529528299206],[9.09491373773331,45.515331576899996],[9.094911624202123,45.51536152478187],[9.094902821186087,45.51546412479848],[9.09489739460141,45.51552639780161],[9.094857268808628,45.5156862517188],[9.094832350391272,45.51575286129496],[9.094793572243361,45.51585368590061],[9.094795239004505,45.51601580046078],[9.094689789301981,45.516136329191035],[9.09457433083691,45.51627444491449],[9.094500439184987,45.51636376817009],[9.094458859604355,45.516412920566026],[9.094429062078474,45.5165023964523],[9.094386949780516,45.51658540179293],[9.094372314247497,45.51661527895887],[9.094352800562364,45.51666047073564],[9.09404693270707,45.51736332634478],[9.093593536699467,45.518516969484466],[9.093485050697401,45.51874164935967],[9.093411293199296,45.51882215084533],[9.093346837455947,45.518960961771285],[9.093297007982697,45.51907149781817],[9.093227156105566,45.519222734352326],[9.093205187959168,45.51927138426728],[9.093201931337395,45.51927646344225],[9.093173477692167,45.519344389624884],[9.093134050421906,45.51938076743682],[9.092987793717219,45.51945204754923],[9.092978876534533,45.519456384231184],[9.092980404078471,45.5194587502382],[9.09311590637126,45.51966841604632],[9.093151196375667,45.51966987253215],[9.093431075739668,45.51959127364436],[9.093236334144997,45.51979708553817],[9.09311371352616,45.51994682572668],[9.092719899904234,45.520423195283065],[9.09537500718335,45.52173842958329],[9.094820809533926,45.52231336473165],[9.094675110046062,45.522476149962756],[9.094619447345277,45.522536709171426],[9.094617790616052,45.52254141802523],[9.094414265999935,45.52273593390146],[9.09435133094035,45.52280490583403],[9.094471645994822,45.5228679572701],[9.094925450646112,45.523140121536066],[9.09576926123253,45.52360554179571],[9.096209326072598,45.52384026854408],[9.096272438549969,45.523876336280836],[9.09637298371191,45.52392976231072],[9.096417433475741,45.52395467550408],[9.096316383833665,45.524011259276534],[9.096191500529647,45.52408086030058],[9.096016392175283,45.52417845114634],[9.095968662621912,45.524205421889384],[9.095888524498179,45.52425557011105],[9.095585405917697,45.52445315058692],[9.095374580279692,45.524580059234665],[9.095248746210835,45.52465681574871],[9.095014154966998,45.524792636385854],[9.094754027499626,45.52494275311674],[9.094510219603004,45.52508182966401],[9.094442655153635,45.52509450464324],[9.09440063222398,45.52509665447252],[9.094321141271738,45.5250910313168],[9.094265492460346,45.52508476743964],[9.094140112194648,45.525151081278416],[9.09401930811385,45.525212710744526],[9.093837191435089,45.52530461539265],[9.09367297515795,45.52538835028573],[9.093599524715435,45.525442775866956],[9.09353610708977,45.525501108617775],[9.093524170487816,45.525515339818014],[9.093479912929359,45.52556806733034],[9.093123678394337,45.525861013320764],[9.092945021415286,45.52616716272979],[9.092957928229207,45.52622115781068],[9.092766453108625,45.52641917121437],[9.092869909869508,45.52691213104051],[9.092899339564415,45.527015158764485],[9.092924050694206,45.52714562511616],[9.092964131281303,45.52727765415916],[9.092985301841981,45.527341777563834],[9.092996511258917,45.52737569294815],[9.093008305262629,45.52739907677785],[9.093032018271737,45.52742837354177],[9.093073719725194,45.52745549547698],[9.09315834585059,45.52751372571598],[9.093259505728673,45.52758058332839],[9.093405145199489,45.52767379532294],[9.093528268093442,45.527764262218874],[9.093645940770712,45.527857541720365],[9.09377455958428,45.5279643495318],[9.093874500642775,45.52805208972872],[9.093959807401088,45.52814131798304],[9.09401582590968,45.52818335136309],[9.094071928476518,45.528221973297335],[9.094100254618704,45.52824483939217],[9.093410101468987,45.528504891345314],[9.092940328753997,45.528684328450964],[9.092917560375696,45.52869251974192],[9.092908989975399,45.52871398488151],[9.093109243031419,45.52910714462066],[9.093255961185083,45.52939435271823],[9.0954022257342,45.5292550166676],[9.095597794922496,45.529441397794855],[9.095613744247261,45.529452347612555],[9.095650490001983,45.52947801458196],[9.095693039570117,45.52949763707809],[9.095728436723903,45.529513350131595],[9.095736382494112,45.52951687185628],[9.09580797810049,45.529575291011376],[9.095879884748848,45.52962067653047],[9.095931913177184,45.52966421545067],[9.096005331347575,45.52971725940696],[9.096100383451194,45.529802904509964],[9.096161735402859,45.529854131292836],[9.096230649578946,45.52990914108088],[9.096342830096777,45.529983124411046],[9.09644021445028,45.530054050766026],[9.096493473311929,45.53009770540396],[9.096494690505756,45.53009805541516],[9.096634315971652,45.530202240432956],[9.096826058130082,45.530355571283245],[9.096930958140439,45.53043974921817],[9.096964749351136,45.53046686740643],[9.097099975004937,45.530580740557106],[9.097281981180716,45.53073078454301],[9.097437251101018,45.530852615088726],[9.097596232736272,45.530965369336606],[9.097810986429765,45.531129480018016],[9.097844093647625,45.53117531143167],[9.098047877647192,45.531334345507226],[9.098347907453796,45.53157622211315],[9.098591088824794,45.53177272821329],[9.098839622227295,45.53197492675326],[9.098974601064127,45.53208256923452],[9.099008390912587,45.53199060470653],[9.0991694655088,45.53157640534881],[9.099252094776336,45.531357764587604],[9.099283355410924,45.53127730532749],[9.09932062648161,45.53117737186769],[9.099535751967773,45.53123641128387],[9.099764459418392,45.53129917385349],[9.10026173665581,45.53143571587889],[9.100413197870598,45.53147771657389],[9.10041116780183,45.53148120170685],[9.100759491150848,45.5315872148387],[9.100731042533884,45.5316275369443],[9.10097790613153,45.531715321669004],[9.10106832513755,45.53174626812725],[9.101072181784703,45.531740126101965],[9.101191085822343,45.531550578913034],[9.101220854389423,45.53151094859713],[9.101247645935299,45.53147520929873],[9.101336702853157,45.531332007026634],[9.101417082297193,45.53120634614531],[9.101575293354289,45.53095598956083],[9.101594439413144,45.53092764670592],[9.100778097460875,45.53021204741195],[9.10050447513183,45.52997249421628],[9.100483068052132,45.52995365606201],[9.100782052638305,45.529577812221575],[9.100836548353255,45.529508970266164],[9.101026355948301,45.52926918964749],[9.101053575838737,45.52923719438542],[9.100795131422979,45.529090706972795],[9.100760168034784,45.52910350101935],[9.100515047920078,45.52919769484836],[9.10019820478295,45.5293090706215],[9.099673584805533,45.52950998751204],[9.099532757344557,45.52953288221534],[9.099266323581688,45.52963423859353],[9.09904833699758,45.52971492238816],[9.09866447322533,45.5298484310453],[9.098524181605294,45.5299003250017],[9.098432038284157,45.529758972734044],[9.09835925794369,45.52964686576179],[9.098270800683338,45.52951119877554],[9.098268348197669,45.52950744749491],[9.09820610474578,45.52940087595244],[9.098141267539345,45.529290175172925],[9.098079553045995,45.52918558330688],[9.098008021956746,45.52906932560664],[9.097726334017322,45.529154921831925],[9.097537796458559,45.529203174329815],[9.097208288967275,45.52917676651097],[9.097012327339904,45.52916006480101],[9.096910936606319,45.52914215772632],[9.096614346089904,45.52908850157935],[9.096618151678562,45.52908227873633],[9.097270532737824,45.52842739611159],[9.097256895583607,45.5284206029869],[9.097567354573926,45.52811154455907],[9.097822547032756,45.52785817614647],[9.09796799028207,45.52771475725776],[9.098066514181081,45.52761658996272],[9.098080538719504,45.52760311258393],[9.098156613378892,45.52752684565787],[9.0984248750054,45.52725867616548],[9.098547957322694,45.52718190955283],[9.098546894472928,45.52718191946755],[9.098484448570753,45.52717129804399],[9.098405269009778,45.52714044787836],[9.098310821855936,45.52711502030798],[9.09820815192646,45.52707386609177],[9.098114580435407,45.52703635837011],[9.097952966121875,45.52696526328769],[9.09783466310232,45.526903014928244],[9.097830314854628,45.526898869213916],[9.09772748025929,45.52685091000675],[9.097664039086593,45.52681977587863],[9.097568083829154,45.5267955551014],[9.097525309252669,45.52679318825579],[9.097452940013127,45.52679764225567],[9.097450929453432,45.52679758995944],[9.097448203054576,45.52679827634744],[9.09739837715228,45.526813431245266],[9.097265646321496,45.526864822208466],[9.097228967567252,45.526877616634756],[9.097208056973948,45.526885591185575],[9.097152644603401,45.52686161469949],[9.09705669522407,45.526915458494436],[9.096793971082796,45.526785077246444],[9.096877099927587,45.526722441603695],[9.096853815948533,45.526712884296835],[9.096847846198111,45.526704005429295],[9.096904881165267,45.52664366004125],[9.097056443255246,45.526506906794125],[9.097226865353166,45.52635425971734],[9.097661419074777,45.52596135999652],[9.097913618857591,45.525738245943096],[9.098107071582437,45.52573262597017],[9.09822431230144,45.525752129578194],[9.098345610783259,45.525800207520895],[9.09858302394649,45.52585322604492],[9.098722755994007,45.52586076556762],[9.098749918092158,45.525861912290175],[9.098882023989695,45.52588009728095],[9.098913585224047,45.525885191575355],[9.099070178760508,45.52596406645073],[9.099241526901464,45.52602237922569],[9.099430068308878,45.52608530330467],[9.099526738451669,45.52610849579468],[9.09961667019973,45.52613007389306],[9.099688480913212,45.52613626710115],[9.09978349304023,45.52614134195507],[9.099914081906503,45.526148311920444],[9.100076213717026,45.526171599878],[9.100247004962446,45.52618926345514],[9.100392112460183,45.52619461801007],[9.100439022792289,45.52619695315551],[9.100580597462896,45.52617427268778],[9.100758695362387,45.52602337777769],[9.100772964614293,45.526011276990886],[9.100863174447468,45.52593717403554],[9.100913060991497,45.52584921809141],[9.100967297919036,45.525759431104],[9.100977767185078,45.52567736944843],[9.10105325610445,45.525549192747576],[9.101120087482185,45.52542770231936],[9.101179562119157,45.525317037456745],[9.1011806716188,45.525314489215354],[9.101214122208257,45.52523758277363],[9.10130949065586,45.52505608485239],[9.1013404012743,45.52504121499817],[9.101471067691838,45.52489982985106],[9.101573566037377,45.52483192607913],[9.101611867605202,45.524818507750474],[9.101638971798907,45.52483044594837],[9.101729513336805,45.52476446983591],[9.101813845803182,45.52469938125775],[9.101896244169215,45.52451312385938],[9.10196176425649,45.52441177815713],[9.101985796308618,45.52437460094752],[9.102031862314663,45.52425736787372],[9.102140036666254,45.5240645886651],[9.102423552996772,45.52353505407029],[9.102432406617186,45.52350978055133],[9.10244005709564,45.52349187086656],[9.102544956513054,45.523302370513704],[9.102620843977089,45.52309399408845],[9.102632182817068,45.523048223210914],[9.10266804220841,45.5229033571386],[9.102819092372968,45.522730592894916],[9.1028348934443,45.5227095345441],[9.102833566722296,45.52264174973211],[9.102833388907728,45.52261434206012],[9.102863240291873,45.52252483702627],[9.102883240644376,45.52246119149853],[9.102891485128165,45.52243209309068],[9.102927122171325,45.52230637209995],[9.102964298561831,45.52217524015303],[9.103004138891592,45.52203749911357],[9.103039601595226,45.52191475754389],[9.10305146069816,45.52183856300024],[9.103056145221451,45.52180937776906],[9.10306918578184,45.521728069630804],[9.1030736170174,45.521700432786346],[9.1030746911519,45.52169261001091],[9.103079607039763,45.52165688989367],[9.103085331569634,45.52161521943296],[9.103078426714516,45.52159230027095],[9.103048527294089,45.52149310088921],[9.102943402006401,45.52139355505069],[9.10293795797335,45.521392344814814],[9.102855477769523,45.521374047966255],[9.1029091823891,45.52112221668228],[9.102932797005588,45.52101146600541],[9.103534856039971,45.5213429860712],[9.104072309881444,45.521638917943946],[9.104301740778025,45.52176525345614],[9.104459933327691,45.52185235539668],[9.10467430540323,45.52197039602205],[9.104914608257948,45.522102705984096],[9.105043732434861,45.52217381206287],[9.105280614705526,45.52230423419023],[9.10528726024016,45.522304228084764],[9.105284754641866,45.52230642661385],[9.10529025319433,45.522309337863426],[9.105337498599885,45.52233510911369],[9.10539014243691,45.52236500680669],[9.105435338859827,45.522390590881],[9.105476161587463,45.52241220955281],[9.10550595055846,45.522428959864754],[9.105606865612438,45.522485176729646],[9.105697499469512,45.5225348953157],[9.105733696579177,45.522554708974305],[9.10577580371148,45.522578315558846],[9.105854376969857,45.52262173549947],[9.105874168801288,45.52263325640777],[9.105905225340202,45.52264983442615],[9.105985861683791,45.5226939724435],[9.106040798237768,45.522723876715276],[9.106126821178124,45.522772519113694],[9.106230045334872,45.52283035345352],[9.106251107354876,45.522843142249606],[9.106306055664135,45.52287233530871],[9.106338408416686,45.52289034315397],[9.10637820783564,45.5229121514706],[9.106453705505578,45.52295376466474],[9.106488619958828,45.52297213012458],[9.106516343252434,45.522986370831724],[9.106521726862056,45.5229893721378],[9.106657022274598,45.523064791091336],[9.10731521650067,45.522575507112094],[9.107512548607156,45.522596105285295],[9.107611815750436,45.522605994137244],[9.10774417988314,45.522621081328],[9.107810613738765,45.52262971374144],[9.107891941065336,45.52263924118804],[9.107918697658803,45.52264332941696],[9.10793247927535,45.522645359647754],[9.107962795821221,45.52264958852798],[9.108036877322292,45.52265991477985],[9.10821183285587,45.522683296125315],[9.108320610247526,45.52269786486408],[9.108455542270397,45.52271637815705],[9.108549936053532,45.5227287820655],[9.108652309576755,45.522742447460715],[9.108689247760207,45.522747479952834],[9.108765954672236,45.522757911252505],[9.108775176353083,45.5227591356262],[9.108900104517977,45.52277570468827],[9.108886503348119,45.522827589971364],[9.10888523225105,45.52283246068214],[9.10886655921649,45.52290370278024],[9.10883758240217,45.52300368562826],[9.108822551720374,45.523058029513095],[9.108793450914572,45.52311355687603],[9.108763823693247,45.5231683736573],[9.108728584123016,45.52323453692643],[9.108935279996384,45.523242180418265],[9.108996145234055,45.52324443577662],[9.108973801741554,45.52329805755978],[9.108919957755527,45.52345113354385],[9.108849032182858,45.52365100355068],[9.108806941163996,45.52373681337196],[9.108727989438773,45.52388504359044],[9.108659599450137,45.52403228263443],[9.108696314695239,45.52404080769447],[9.108960252309485,45.524102105361415],[9.10899098356144,45.52405524430812],[9.109104860246466,45.523877160588704],[9.109154560788234,45.523793314614345],[9.109374153901408,45.52344335614307],[9.109581248860986,45.52316056511357],[9.10963348383214,45.523083557202696],[9.109647830898354,45.52307994310275],[9.109692337987601,45.52312515717575],[9.109765185463056,45.52308630241039],[9.109772898723604,45.52308219059743],[9.109793340448364,45.52307178393959],[9.10987111613036,45.523032177306796],[9.10988288314268,45.52302532531672],[9.109890801208449,45.52302118629658],[9.109930967222477,45.52300022960825],[9.110102894244434,45.5229270849949],[9.110115406658998,45.52292166341225],[9.110237216465428,45.522868575815025],[9.11026344422624,45.52285739842684],[9.110402003351956,45.52279832691748],[9.110428219050407,45.5227875635457],[9.110490028724428,45.52276220234572],[9.110570493803479,45.52269705700335],[9.110612894443744,45.522660076262426],[9.110625623584923,45.52264766969281],[9.110634083926087,45.52263932666303],[9.11077231574108,45.522465790190225],[9.11081227259035,45.52241684049909],[9.11083225100663,45.52239237464905],[9.110899031821042,45.522310014526155],[9.110909432976765,45.52229892431317],[9.111015848610256,45.52221917202174],[9.111047923227343,45.52219272320862],[9.111055020510165,45.52218802684494],[9.111157910440351,45.522106207622805],[9.111270461260052,45.522014729927214],[9.111310679832046,45.521982053486894],[9.111409224055887,45.52190457670591],[9.111578429796163,45.52177219737508],[9.111579721033575,45.521771179012404],[9.111713357016363,45.52166555787799],[9.11173939890581,45.521644974356335],[9.111752580057614,45.52163476344538],[9.111905460579525,45.521516314985995],[9.111931143489064,45.521495569753924],[9.11200511120094,45.521435830292695],[9.112091372162391,45.52137026415484],[9.112105525224615,45.52135950319496],[9.112231461185146,45.521258983508105],[9.112300719981516,45.52120755632589],[9.11234159007694,45.52117471686253],[9.11249541217736,45.521054529500745],[9.11256619489808,45.52100346069673],[9.112592702044632,45.52098535177747],[9.112654794974121,45.52094295035437],[9.112698589847687,45.52091303318901],[9.11271615865319,45.52090089165],[9.112867526229108,45.52079626880894],[9.113188746371346,45.520739489065605],[9.113567308133197,45.5206725705483],[9.113839773232261,45.52062440617908],[9.113908622220542,45.52061224049384],[9.114871373764458,45.52040819118041],[9.114979642651617,45.52038804649426],[9.115049069665082,45.5203770496624],[9.11509544284394,45.52036917227214],[9.115160262586208,45.52035927811503],[9.115205867858117,45.520351581470514],[9.115309112684365,45.52033544693938],[9.115397766418889,45.52032206329674],[9.115448239348556,45.52031543276338],[9.115494360030711,45.52030936465318],[9.115531024064381,45.52030602434316],[9.115570218883832,45.52030052124428],[9.115601733478217,45.520296105994014],[9.115619668204456,45.52029426070596],[9.115640702591325,45.520292943341445],[9.115657357279312,45.52029127935823],[9.115684023950667,45.520289227223955],[9.115692433114926,45.520281441925604],[9.115710949276302,45.52028843495292],[9.115766816337064,45.52028360801812],[9.115784650922633,45.52028288792208],[9.11581477640555,45.52028167834931],[9.115853476243524,45.520278335877755],[9.115912188338882,45.520274757124525],[9.115958046597603,45.52027188442405],[9.116002176510161,45.52026911246552],[9.116112676683635,45.520263428946095],[9.11627679589275,45.520205764524256],[9.11630865496685,45.52019457102611],[9.116311291687841,45.52019412730342],[9.11634348279801,45.52018874806167],[9.116428134283463,45.520153324396425],[9.116456475196516,45.520143592583665],[9.116467018270047,45.52013997249127],[9.116505403234175,45.520126792098054],[9.1165995193812,45.520092672816205],[9.1166015792852,45.520091923642084],[9.116607017440655,45.52009019892858],[9.116627426548819,45.52008374248549],[9.11670125859521,45.52004224499981],[9.116765371470594,45.520006553974255],[9.11679396347606,45.51998826193323],[9.116816573385629,45.519974908496934],[9.116829221108718,45.51996743382506],[9.116893042820264,45.51992723355626],[9.11698724402097,45.51986639009303],[9.117179520438047,45.51974848836232],[9.117217570316633,45.519728278341766],[9.117234452949193,45.519719314137255],[9.117366540962788,45.51964646933913],[9.117373216923802,45.51964276311525],[9.117470760147135,45.51958866652706],[9.117783920726367,45.51941148560785],[9.117825947553497,45.51937060514747],[9.117894263244043,45.519312541837365],[9.117926181451988,45.51933013281619],[9.117990325633878,45.51926107459941],[9.11801414905204,45.51922205800783],[9.118056264066059,45.51919291459024],[9.11807992167357,45.519166517466864],[9.11811552808476,45.51912922588811],[9.118124458427655,45.51911987370898],[9.11818502235707,45.51905334833487],[9.118196723461383,45.519040338911594],[9.118210470491455,45.51902604924302],[9.118220382443013,45.51901466183185],[9.118220625244307,45.51901443655788],[9.118229302108368,45.51900634476296],[9.118238220643175,45.51899748763838],[9.1182486605455,45.51898753982947],[9.118255806123148,45.518981924870424],[9.118265750077082,45.518973606741255],[9.118281873307998,45.518969053623266],[9.118300579416054,45.5189689622999],[9.118341464812325,45.518970387223504],[9.11838529290075,45.51897689462026],[9.118442443723836,45.518986655565875],[9.11837450846331,45.519073116765924],[9.117640334778843,45.52000753101941],[9.117753534928621,45.520038305923805],[9.117906001707517,45.52007974241894],[9.117852091873022,45.52024959150796],[9.117888525983211,45.520252749351876],[9.11785047190018,45.52059082756271],[9.117819808752238,45.52081977983207],[9.117785338692682,45.521053056445766],[9.117739291693315,45.52135329387092],[9.117710491267111,45.52151785150065],[9.117693627167437,45.52164065053573],[9.117700440294035,45.52164122859649],[9.119448050311558,45.521783443593286],[9.11950255380297,45.521787212144],[9.119553780902256,45.521791704162666],[9.11980133173693,45.52181140960368],[9.119888066473786,45.52175590012806],[9.120005962890474,45.52168037587723],[9.120005966630579,45.521682140055894],[9.120094428770212,45.521626259574425],[9.120160001582096,45.521584813527696],[9.120218674987099,45.52154441879203],[9.120251643903421,45.52138663385638],[9.120269872653388,45.52129407613716],[9.120271474939027,45.521264767419865],[9.120282670251742,45.521206564638504],[9.120337039462173,45.52091250107842],[9.120347463350239,45.52078662108349],[9.120364269462518,45.520651427414045],[9.120432592638558,45.52065756624719],[9.120660997847205,45.520677857014824],[9.120731075424903,45.52068407482984],[9.120792304829505,45.52069004990635],[9.120935425389217,45.52070602856912],[9.121075675959446,45.52072110099183],[9.121567715903172,45.52077552155384],[9.1217607591405,45.520796873751976],[9.122035405436371,45.52082502442876],[9.122384448038,45.52086079978047],[9.12245429820369,45.520868240907966],[9.12253591314168,45.52050198667122],[9.122539205297821,45.52048493538157],[9.122720005387293,45.5205054619698],[9.123765071442964,45.520643446962175],[9.123557575830306,45.5209874796086],[9.123542173789337,45.52126386084915],[9.123683933222352,45.52146455466096],[9.123801277727452,45.521666165773055],[9.12401712705135,45.52203704966734],[9.124022998067991,45.5222854779997],[9.124024592190153,45.52235265921872],[9.124023658498718,45.5223648204867],[9.124022137556137,45.52243037590933],[9.124009297630888,45.52267137171329],[9.123986948138063,45.522721486082645],[9.12395901752924,45.52275485575697],[9.123922591269322,45.522785417325004],[9.123922168678133,45.52278539978033],[9.12392159351566,45.52278587745188],[9.123950228147704,45.52278746663625],[9.124018099073377,45.52279038147921],[9.124195057330352,45.52278375407935],[9.12429826685786,45.52277984373243],[9.124342846119399,45.52277690604867],[9.124476755373703,45.52278784974736],[9.124555465099178,45.52279351577696],[9.124612181592765,45.52278987171738],[9.124703027107868,45.52278254510103],[9.12478939392765,45.5227765554296],[9.124914869110556,45.52277775079533],[9.124964283222571,45.52277822794943],[9.12496519236883,45.522778235958484],[9.124986435692193,45.52277843780282],[9.12514666337592,45.52277996402466],[9.125180967688419,45.52278028657544],[9.1254691085925,45.522808423238914],[9.125594108907693,45.522820626515745],[9.125645220232517,45.52277809507199],[9.12561874682819,45.5228214365834],[9.12602271148449,45.5228347102409],[9.126230533206797,45.52284152911801],[9.126283854024956,45.522848293045456],[9.126523358687859,45.5228569756491],[9.126783836739042,45.52286534650643],[9.1268631441184,45.52286900307699],[9.126984343429804,45.5228704799344],[9.127211812938853,45.52287391789434],[9.127408496891425,45.522881620088555],[9.127463339318902,45.52288166707929],[9.127655684244045,45.522884441167214],[9.1277388339042,45.52288845288442],[9.12782679262461,45.522890028922966],[9.127932075391948,45.52289131551636],[9.128162898320701,45.52289407276688],[9.128437767479316,45.522901676670855],[9.128883920986016,45.5229133087271],[9.128951288213726,45.522914150991966],[9.128842738939023,45.52353660639496],[9.128453359269344,45.52407882763716],[9.128313542012556,45.524869328770215],[9.128519350996536,45.52495627198284],[9.128587155225011,45.52498493583509],[9.128623031242725,45.525000098114994],[9.128670302647828,45.525009099949344],[9.128694544155612,45.52497029672212],[9.128707108008408,45.52495429695869],[9.128719735899988,45.52493830612275],[9.128732414984274,45.524922306226976],[9.128745222235022,45.524906360191196],[9.128758632013353,45.52489071950805],[9.128772452079069,45.52487531238606],[9.12878634898813,45.52485991417692],[9.128800425365379,45.52484460577343],[9.128814783753665,45.524829432064934],[9.12883097594178,45.52481543541318],[9.12884778366621,45.52480183410741],[9.128864655489785,45.52478826873072],[9.128881591453489,45.52477475728482],[9.128898860832313,45.524761461483436],[9.128916643183873,45.524748507137204],[9.128934335727935,45.524735480881866],[9.128951874398295,45.52472236478772],[9.128969708027562,45.52470944637912],[9.128987477520933,45.524696483035314],[9.129004246675082,45.52468284574594],[9.129021144035544,45.52466928031709],[9.129038708316253,45.52465618218248],[9.129056875348398,45.52464348840763],[9.129075683649653,45.52463124395351],[9.12909474833047,45.52461912522025],[9.129116000667697,45.52460613092761],[9.12913541184708,45.524594353832136],[9.129154925622736,45.524582648625035],[9.129174311093726,45.524570835548154],[9.129193927437015,45.52455919322512],[9.129213761785987,45.52454769466762],[9.129233198514294,45.52453590852563],[9.129252737838872,45.52452419427191],[9.129272302765324,45.52451247998599],[9.129291572675417,45.52450055000742],[9.129310945140645,45.52448867391539],[9.129330394551015,45.52447685173873],[9.12934972848213,45.524464930678946],[9.129368639161862,45.52445271306335],[9.129386921443105,45.52444008211188],[9.129404613781944,45.5244270557832],[9.129422318958765,45.52441404743914],[9.129440062562894,45.52440104804978],[9.129457601011815,45.52438793187745],[9.129483228987795,45.52436781283644],[9.129499998006917,45.52435421147733],[9.129516523332521,45.52434043937378],[9.129532202184414,45.52432608316483],[9.129547649447286,45.5243112501665],[9.12956700400842,45.524291606250564],[9.129581490779566,45.52427672932956],[9.129595798088513,45.52426177160137],[9.129609413243477,45.524246517624064],[9.129622861762137,45.52423119182626],[9.129636130839637,45.52421579422255],[9.129649002565666,45.524200226049395],[9.129660848922192,45.52418423599205],[9.129666887455588,45.524176290337394],[9.129679349943363,45.52416095664821],[9.12969220881945,45.5241453794837],[9.129705311249772,45.52412991905389],[9.129717567683102,45.524114081541775],[9.129730298365235,45.52409845051247],[9.129743490470387,45.52408301697939],[9.129756721024277,45.52406760140305],[9.129769323450502,45.52405188950625],[9.129782425755465,45.524036393063774],[9.129795707404085,45.52402093242023],[9.129813556382743,45.523998139843016],[9.129825786693116,45.52398210432817],[9.12983699194657,45.5239657819443],[9.129846813483834,45.52394911909286],[9.129856686234733,45.52393245618244],[9.129866930506445,45.52391587385822],[9.129877430972412,45.523899336247126],[9.129906516608504,45.523840482194785],[9.1299139422775,45.523823245995345],[9.129921022066974,45.52380594718125],[9.12992853742278,45.5237887378818],[9.129932256653511,45.52378011977408],[9.129944275051788,45.52375547959892],[9.129946819956412,45.52373733084002],[9.12995143530084,45.52371188897991],[9.129953481227343,45.52369392080547],[9.129955386279104,45.52367594378993],[9.12995724011049,45.52365796683234],[9.129959029896089,45.52363998094648],[9.129960691632693,45.52362199520579],[9.12996230212846,45.523604000522255],[9.129963874208872,45.523586005882244],[9.129965254175353,45.523567993458286],[9.129966249997874,45.5235499814702],[9.129966810457743,45.5235319699761],[9.129966679460155,45.52351395926661],[9.129965818632837,45.52349596738711],[9.129964087124199,45.52347799449747],[9.129961459242898,45.523460004623],[9.129957686449362,45.52343971180989],[9.129953676114662,45.52342192152428],[9.129949166501122,45.523404176809635],[9.129943696700835,45.523386505191645],[9.129938022028334,45.523368833805755],[9.129932936190718,45.52335108074315],[9.129928554450625,45.52333325487407],[9.129925094487568,45.523315355951574],[9.129923222145727,45.52329738322054],[9.129923500913423,45.52327937204537],[9.129926032957572,45.523261205298176],[9.12993108388065,45.523235870953705],[9.12993593452076,45.52321811561848],[9.129940785137165,45.523200351282036],[9.12994554605572,45.52318256004433],[9.129950306909281,45.523164741803676],[9.12995524708735,45.523146950362054],[9.129960635591276,45.52312923041885],[9.129968189259369,45.523112021071256],[9.129976716615008,45.523095044642275],[9.129985320834855,45.52307808612719],[9.129994040353493,45.523061154483344],[9.13000309299471,45.523044312469956],[9.130012299327706,45.523027488283184],[9.13002145439527,45.52301064615195],[9.130030532567478,45.52299377710443],[9.130035110055134,45.52298533803636],[9.130056575807124,45.522942991291565],[9.130062222628352,45.522931832727274],[9.130124063536941,45.522940529386794],[9.13025240783131,45.52295858337169],[9.13035460902331,45.52297279657169],[9.131293839298323,45.5231416342216],[9.131798427058495,45.523237391581134],[9.132343295297378,45.523478843208096],[9.132361445690597,45.523486887064024],[9.132593076699537,45.52354374801149],[9.132616574226676,45.523549517401726],[9.132704140777484,45.523574474551125],[9.133313061862992,45.52371630603264],[9.133405946359087,45.523737260040356],[9.133761246256805,45.52382555874342],[9.134103828768557,45.52390708453334],[9.134312546792936,45.52395496789148],[9.134617891621128,45.52402464558032],[9.134834902160371,45.524075407532585],[9.135266400420091,45.52417633911773],[9.135323939620529,45.524189799532245],[9.135437326906425,45.52421632623348],[9.135491716393192,45.52422988029779],[9.135744737809421,45.52428670053596],[9.135823271723416,45.523999072781734],[9.135894482661392,45.52372301984227],[9.135823808731553,45.523710682407824],[9.135513377472517,45.5236610860282],[9.135441933713611,45.52364803819496],[9.135364832856109,45.52363607711568],[9.135288782044947,45.52362412374468],[9.135135103811507,45.52359949863695],[9.135280288031195,45.52317237716072],[9.13528485194375,45.52315858234564],[9.135357314498865,45.52293939609499],[9.134974679944056,45.52287801133978],[9.13457368607319,45.522811957394005],[9.134565564746227,45.522810616797905],[9.134553741884543,45.52280885750676],[9.13444374497342,45.52279054379067],[9.134295747769409,45.52276842213999],[9.134310337500326,45.522722086244585],[9.134320148775535,45.522690958522425],[9.134320987830872,45.52268841027509],[9.1344105977196,45.52241484787488],[9.134427657717827,45.522362775469496],[9.134429297566607,45.522357751025325],[9.134457844035,45.52227370282618],[9.134496651864163,45.522159453445674],[9.134519330636461,45.52209028165735],[9.134639330970295,45.521631507182974],[9.134729674586945,45.52126411790229],[9.13480715141019,45.5209461947982],[9.134808843540737,45.52093627377841],[9.13586644818915,45.521038642612226],[9.135888719939741,45.521040803412255],[9.136136866452881,45.52105696238478],[9.136684557864683,45.521100594552905],[9.136761370984342,45.52110607441897],[9.136771303454996,45.52105159791364],[9.136778139640024,45.521019285401444],[9.136821253154782,45.52078167227771],[9.136960495561459,45.52004507644247],[9.136972202257972,45.5199831810177],[9.137444860198471,45.52004055369094],[9.13786275292984,45.52009128465862],[9.13792817521163,45.5200992257083],[9.137979816298435,45.52010549115144],[9.13804387906304,45.52011247967396],[9.138183134898437,45.5201331578772],[9.138403572287862,45.52016065953644],[9.138448126287887,45.52016424205419],[9.13869040644415,45.52019648724354],[9.138752564250627,45.52020455778781],[9.139020527700715,45.52024120861332],[9.139098706126656,45.520250357631895],[9.13965874734351,45.52031969421307],[9.139766595507348,45.520335035229934],[9.140038802484609,45.52036816812217],[9.140337612497552,45.52040477812819],[9.140489849490141,45.52042394345298],[9.14058097912064,45.52043541580866],[9.14148985669407,45.5205498233217],[9.141677713967987,45.52057347051158],[9.141686487743462,45.52057464777843],[9.141517658879703,45.52126321189962],[9.141356882439206,45.521896410020304],[9.142526053817987,45.52202311593321],[9.14254796822942,45.52202549190166],[9.142582997995518,45.52202929168379],[9.142695067615213,45.52204142934403],[9.142886699916053,45.52205693299345],[9.142940628972992,45.52176671166288],[9.143113589776018,45.521796684734994],[9.143189078403507,45.521809434686254],[9.143194496974592,45.521810346004905],[9.143564574894006,45.521872835098534],[9.143642187135153,45.521521611417704],[9.14373468214546,45.52153532977539],[9.143933024462997,45.52157174141284],[9.143941006129968,45.52157353156541],[9.144103900596765,45.52160772822944],[9.144094952759659,45.52164386923036],[9.14407147081258,45.52181030800185],[9.144037011626846,45.52196020786095],[9.144006372648436,45.52209684452972],[9.143981691378448,45.52220980124753],[9.143975435098616,45.52226213152493],[9.143973879563825,45.52231504995214],[9.143937593332732,45.522542243053856],[9.143935922672897,45.522570058028414],[9.143937480249557,45.52259342248513],[9.14394407244672,45.52261270319115],[9.143944631295602,45.522636077904124],[9.143943187363085,45.52266241644074],[9.144024864180846,45.5226710086294],[9.144050518572069,45.52267366763467],[9.144287317419879,45.52270006623185],[9.144593634328185,45.52273209215876],[9.145011779151382,45.52277597392707],[9.145205373599495,45.522796430712106],[9.145340929322758,45.52226040633698],[9.14537566735043,45.52213060481706],[9.145473293036295,45.52174883233615],[9.145495238852309,45.52165387162532],[9.145526517490513,45.52151851186568],[9.145545279470944,45.52144525643512],[9.145867216931,45.52149426185645],[9.146164605458237,45.52153693405319],[9.146485588368693,45.52158281562629],[9.146776062113416,45.521624964022195],[9.146956962339436,45.521649664553394],[9.147293877321006,45.52170128400004],[9.147365468821864,45.521711956989996],[9.147490691784713,45.52173009463863],[9.14760344842106,45.5217452689139],[9.147646012382017,45.52175100163146],[9.147711094394497,45.5217597656006],[9.147955379133483,45.521794976853805],[9.148222233445683,45.52183320068246],[9.148316163829872,45.521846787458465],[9.148380825045964,45.521856136651515],[9.148507585035963,45.52187421718741],[9.148780616536184,45.52101833312137],[9.14882721104561,45.52087227743206],[9.148804221863882,45.520870129087925],[9.148767376060094,45.52086703564538],[9.148653316727795,45.520857453787485],[9.148374492785214,45.520833098908],[9.14821515298037,45.52081671657396],[9.148129822956857,45.52080580986459],[9.148122109379534,45.52077437958513],[9.148161462533928,45.520659296739794],[9.148173381863348,45.520624564714915],[9.14828535758089,45.52029858594718],[9.148210819970366,45.52028684623384],[9.14817457663166,45.52027896332303],[9.148126910730475,45.52027056412455],[9.147927628263288,45.52023624919215],[9.147745900839338,45.52020210927988],[9.147674523870203,45.52018952805085],[9.14770619034672,45.52010204312792],[9.14775874788073,45.519968527460385],[9.147795395808895,45.51987650861028],[9.147809266439513,45.519838803791295],[9.147827185212304,45.519787205301505],[9.14784968490077,45.51973451177982],[9.147853818599788,45.51972395734617],[9.147901744286841,45.519601716755915],[9.147961438890254,45.51946079299467],[9.14798944056041,45.51938231365338],[9.148043295616366,45.51925096538625],[9.14805052056742,45.51923276515318],[9.148115825045117,45.519068368608224],[9.148126852158597,45.51904019041395],[9.148185052981288,45.51889155465236],[9.148251019682604,45.518726095052635],[9.148277816445548,45.518662045691734],[9.148302547067651,45.5185962078138],[9.148459209289792,45.518624114702824],[9.14862440396856,45.51864906699465],[9.148636255547554,45.51865217493394],[9.149569929990813,45.51880852937152],[9.149613010508162,45.518816690936994],[9.149623308586396,45.518789107611504],[9.149777307255938,45.51836176680497],[9.15012557830874,45.518424353215785],[9.150617149862853,45.518511448700146],[9.150728081924267,45.51853110476626],[9.151266961719188,45.518626569036456],[9.151425332275382,45.51818709595653],[9.151434444767984,45.51816180927177],[9.151469903380566,45.51806342712376],[9.151488069823916,45.518067534517435],[9.15188837138244,45.51815750855744],[9.152013614813841,45.51818565927493],[9.152015424054955,45.51818712402536],[9.15260542153679,45.518323081323366],[9.152604605167161,45.518324216529635],[9.15304027449432,45.51841438240423],[9.15312792607414,45.51843251909798],[9.153332100681732,45.51847788956894],[9.153358761235086,45.51848384848176],[9.15340310158561,45.51849377111427],[9.153491011357113,45.51851260025535],[9.153505126971716,45.518514804560375],[9.153535830352315,45.51851959689008],[9.153697178643757,45.51855131570927],[9.153767341806578,45.51856510093451],[9.153857759361275,45.51858791383963],[9.15386718826787,45.51858989937514],[9.153805205522742,45.5186981739218],[9.153701369987651,45.51882634269475],[9.153696354962314,45.51883254207181],[9.153656348193167,45.518881488860636],[9.153575007233554,45.518980995343185],[9.153571433943728,45.5189853295868],[9.153482376815383,45.51907245206358],[9.152894208035615,45.519365760492946],[9.15159678972011,45.52019102636826],[9.151513768591666,45.52026762620809],[9.151234197533348,45.520724748231316],[9.150965573080125,45.52116397924756],[9.15120889243447,45.52115917567507],[9.151336882487342,45.52116346202033],[9.151441382668866,45.52118431400989],[9.151516237990394,45.52119924652402],[9.15150703442636,45.521252850255486],[9.151497578830842,45.52128884849574],[9.151488825559293,45.521319355237],[9.151484905679531,45.521333041840734],[9.15147728370728,45.521360459764196],[9.151439434519695,45.521499304208895],[9.151409350762552,45.52161174763614],[9.15138682092945,45.52170484706366],[9.151381919929278,45.5217203531485],[9.151335937508955,45.52189676018977],[9.151309663506593,45.52199755134189],[9.151269756035669,45.522147496582946],[9.151234887780696,45.52222830800136],[9.151227936335818,45.5222527817138],[9.151177182841893,45.522431409205666],[9.151103439788258,45.52269924822974],[9.151091897904841,45.522740550728535],[9.1510389572092,45.52292999114672],[9.15103727029607,45.522936023995086],[9.151031473951337,45.522956769783754],[9.151019922268587,45.52301842338803],[9.15142451175284,45.52307580095492],[9.151851274997624,45.523136153989924],[9.151861215210213,45.523137553950846],[9.15181733070721,45.523298746788974],[9.151721445876644,45.52365096323307],[9.15167067583923,45.5238041993036],[9.15155169637056,45.52425470929466],[9.152581579692932,45.5243945118789],[9.152466604710128,45.52488898696584],[9.152351799757177,45.525395036858306],[9.152617756014745,45.52542996625253],[9.152609269775887,45.52545978863115],[9.152544450520516,45.52569751745305],[9.15267694717828,45.525716611811966],[9.15277322927805,45.525730497809214],[9.152779644636224,45.525730462245264],[9.15310779684066,45.52577911489781],[9.153531856185712,45.52583997829535],[9.153558875654337,45.52574101288796],[9.15357004616058,45.52570014270418],[9.153581584385506,45.525657939888816],[9.153588811587548,45.52563149447517],[9.153596495200269,45.525603365275536],[9.15360884834524,45.52555476170527],[9.153918572013476,45.52558876524706],[9.154399267309525,45.52564448174555],[9.155092187114699,45.525724085391325],[9.15502193215384,45.52598853771737],[9.154957557986291,45.5262309927695],[9.155495478915995,45.526297662308906],[9.15582862524693,45.52633962167139],[9.156281251559992,45.52639717763322],[9.156349346468808,45.52640482544716],[9.156380217194597,45.52640829364145],[9.156400110021897,45.52641508016517],[9.15622440347363,45.52698425947024],[9.156184614523552,45.52707164071902],[9.156163510616711,45.527145747106644],[9.156057685427621,45.52751718848146],[9.155984508443067,45.52772424641944],[9.155871833113322,45.528110800464106],[9.155791816827522,45.52835987486811],[9.15564829657249,45.52881421154833],[9.155747004066576,45.52882774969917],[9.156158501411994,45.528884173949464],[9.156815627417808,45.52898052162549],[9.15690327280319,45.52899468599217],[9.156857105520876,45.52916959213075],[9.156772826761241,45.52944606281392],[9.156578603649095,45.530087113047834],[9.156985970451268,45.53013743733223],[9.15697893105342,45.53016658295785],[9.156795209172305,45.53093236278942],[9.156778193841657,45.531003268314784],[9.156782560839662,45.53100326233405],[9.157792584641157,45.531141379804616],[9.157766826808695,45.53123637497683],[9.157492814598223,45.53224679904764],[9.157491443751928,45.53224661191437],[9.157454949477671,45.532386401319094],[9.157810152294461,45.532489503737004],[9.15791589326114,45.53251979901298],[9.157987874080302,45.532540419800476],[9.158406845274378,45.53266218124058],[9.158540903601475,45.532697297242834],[9.158529189469197,45.532867799780476],[9.158502921077238,45.533173408176516],[9.158500603303283,45.533447642211684],[9.159960171045515,45.53362404609199],[9.160824142761811,45.53372953236435],[9.16101433615128,45.53375024612619],[9.161058411074228,45.53375671878493],[9.161174492218686,45.53377378314948],[9.16111260556124,45.5339616293023],[9.161079084923685,45.53406352179779],[9.16101577512267,45.53425554631424],[9.160956210637677,45.53459365031536],[9.160895133487669,45.534616472480245],[9.160965802823698,45.53462496899975],[9.160989479030341,45.53462787900268],[9.161016844834382,45.534631170850076],[9.1610552738139,45.53462464513385],[9.161116768589693,45.53463154330456],[9.162591071980401,45.534796947685585],[9.162957301504246,45.53483804712182],[9.16299815736107,45.53484261542046],[9.16430312826479,45.5349890037498],[9.16427154146146,45.53514639400227],[9.164623015815149,45.535185952112556],[9.164909706103925,45.53521958988509],[9.16499369995607,45.53522925283481],[9.1650431789506,45.53523494208653],[9.165125110172758,45.53524437388994],[9.165184095522417,45.53525115647859],[9.165580517545619,45.53529678539054],[9.165597454721718,45.535298732088016],[9.165651853045663,45.53530480999915],[9.165661487414214,45.535305885166174],[9.165566913191554,45.53579437536484],[9.166024062321007,45.53583638652267],[9.166034042934523,45.53583757816777],[9.166104563633041,45.53584265137655],[9.16636931013231,45.53586901758626],[9.166868382710263,45.535916364968315],[9.167099447497584,45.5359389441956],[9.167153621578173,45.53594255546917],[9.167178875361449,45.53577701886733],[9.167195641265243,45.53563437496615],[9.167196755946126,45.535630187914926],[9.167233626710564,45.53563378842091],[9.16727795362332,45.53563811609322],[9.167356135229673,45.535648235844675],[9.167595645763784,45.53567731837904],[9.16781533681186,45.53570423324862],[9.167906931407753,45.53571545807082],[9.167911940988137,45.53571607178479],[9.167989429337196,45.53572556205599],[9.168092260339103,45.53573816537892],[9.168201228409664,45.53575150666649],[9.168636387231583,45.5358059609381],[9.1686448579906,45.53569599334694],[9.168644254265775,45.53569540017643],[9.168709150034745,45.53570822984804],[9.168715645241484,45.53567020043202],[9.16874395601055,45.53550918642764],[9.168745063642394,45.535502677136826],[9.168777616277007,45.53531255692306],[9.1689264435527,45.535322616412635],[9.169189254960079,45.535340410078575],[9.169306859524536,45.5353510642757],[9.169952154228653,45.535407299728604],[9.17018592272014,45.53542209191386],[9.170803153917944,45.53547702314677],[9.170868896970674,45.535155682534615],[9.170883850767913,45.53507766731985],[9.171264129174308,45.53510320157724],[9.171473993735724,45.535120781171194],[9.171601881269286,45.535126764129295],[9.171907849644732,45.53514744812863],[9.171949466403138,45.534917637369354],[9.172333321955307,45.534932037568275],[9.172668489499397,45.53493984926481],[9.172769152751039,45.53494311770507],[9.17294251799351,45.53494875147698],[9.174196755990533,45.5349894957433],[9.174151893954452,45.53558057278581],[9.174029123879189,45.53591018381579],[9.174258103159993,45.53592006945285],[9.174317346268854,45.5359226345067],[9.17461574957315,45.53592638306079],[9.175098754371989,45.53593598718603],[9.175674558119558,45.535943916712846],[9.175727657182255,45.53536670586615],[9.176067982290634,45.53538874810967],[9.176470423719469,45.535414797994505],[9.176786346163183,45.5354352555575],[9.177020687527408,45.53544833169895],[9.177086892231891,45.53545328779192],[9.177173593794697,45.535459787277475],[9.177261875625598,45.535463772995804],[9.177637195992826,45.535491147902334],[9.177653666778008,45.53546272446565],[9.177955563823996,45.534941507771954],[9.178013959033626,45.53487437817412],[9.178083246363679,45.53479289314649],[9.17813382234051,45.53481312949492],[9.178231652173993,45.53485197813308],[9.17867403635054,45.53507637412507],[9.178981245794903,45.535241546859844],[9.179051014760699,45.53528411104503],[9.179065287206038,45.53523310755868],[9.179134179713554,45.534986959856276],[9.17914820868068,45.53498849505469],[9.179216057167507,45.53499900090294],[9.179906366305818,45.53510054622759],[9.179948189330219,45.535106700104656],[9.180055918191666,45.53512454149004],[9.18023505898183,45.534278029836216],[9.18026278901169,45.53413418759113],[9.180547000007213,45.53416022026292],[9.180772065102285,45.53419350139178],[9.18150747862349,45.5342963969464],[9.181571259579933,45.53430464861908],[9.181621997350353,45.534311210783024],[9.18166202665096,45.534317267870044],[9.181871039895954,45.53434083332479],[9.181899508633283,45.534284559382904],[9.181955351534747,45.53417419143716],[9.181980247067907,45.53417764420673],[9.18298709246887,45.5343219795461],[9.183160349097951,45.53366591391055],[9.183286327859909,45.53319049099705],[9.183383308176507,45.5332041160349],[9.183593569215217,45.533242257822884],[9.18400613722409,45.53333373756755],[9.184229319552351,45.53335557475578],[9.18424664019695,45.533357275046804],[9.184287345651141,45.533358721658566],[9.184285099933673,45.53333377474278],[9.184283440318508,45.533315757586465],[9.184284812338769,45.53328877063832],[9.184287417612847,45.5332708006196],[9.18428995864518,45.53325276769773],[9.1842913976927,45.533234556532115],[9.184292358422502,45.533214977997794],[9.184293503026415,45.533196803309856],[9.184295621219734,45.53317870806224],[9.184299328144379,45.53316081727692],[9.184317001714476,45.53310973563055],[9.1843269929525,45.533086722203485],[9.184334992578293,45.53306956257752],[9.184343248542552,45.53305246554441],[9.184352632623487,45.5330357087281],[9.18436318327026,45.533019301067306],[9.184374682559563,45.53300317990638],[9.18438595108364,45.53298698710877],[9.184396847820215,45.532970677897154],[9.184407693264301,45.532954350765294],[9.184417179882235,45.53293762978182],[9.18442633319312,45.53292081032461],[9.18443499936805,45.53290384763703],[9.184442703966399,45.53288656246565],[9.184451728664264,45.53286958119706],[9.184464709380078,45.53285219751094],[9.184477003423822,45.53283631808288],[9.184488489777854,45.532820178929036],[9.184500104311201,45.53280407557098],[9.184512551987138,45.53278818689037],[9.184524576501857,45.53277213687421],[9.184536241977892,45.532755952421965],[9.184547022895032,45.53273949936751],[9.184556855249186,45.53272278681519],[9.184566123539348,45.5327059041543],[9.18457437923372,45.532688762099234],[9.184585085916034,45.532665270445534],[9.184591932057089,45.53264788763792],[9.184597906920278,45.53263038022245],[9.184604983604839,45.532613006042936],[9.184611710073577,45.532586433493144],[9.184614520179116,45.53256848113612],[9.184618583955606,45.532546179314686],[9.184620753747716,45.53252823699124],[9.18462408921904,45.532510373795354],[9.18462768085297,45.53249251918698],[9.184631259648489,45.53247465559826],[9.184634338831236,45.53245674781079],[9.184637494764363,45.53243881289663],[9.184639024003202,45.53242080859954],[9.184640322543276,45.53240275066915],[9.184643167587968,45.53237589634953],[9.18464558075264,45.532357971634205],[9.184648233427104,45.53233103661637],[9.184648725226817,45.532313006989945],[9.184649217026237,45.53229497736352],[9.18465078479533,45.53227700900732],[9.18465205792086,45.532259014123696],[9.184652703399292,45.53224098424909],[9.184652260013475,45.53222286612214],[9.184652866924367,45.53220479130507],[9.184654396122788,45.5321867780062],[9.184656860473366,45.53216884420656],[9.184659068541626,45.53215086581579],[9.184661417423218,45.53213286919584],[9.18466366349705,45.5321147647307],[9.184665846258047,45.53209296099136],[9.184667964762074,45.532075009747466],[9.184670928739974,45.53205712914642],[9.184675596472577,45.53203938981052],[9.184680200110162,45.532021632576026],[9.18468349320303,45.53199473252596],[9.184683241909232,45.531976614088364],[9.184687072715178,45.53195358356398],[9.18469214995261,45.53193575355705],[9.18469675316492,45.531917870309385],[9.184701176963864,45.53189995134739],[9.184704832185963,45.531881979620145],[9.184706924880173,45.53186397441098],[9.184708607731862,45.531845960862306],[9.18470959896651,45.531827930427994],[9.184710334068331,45.53180990040703],[9.184710633686272,45.53179185308706],[9.18471048507297,45.53177380649047],[9.184709747268046,45.531755733842076],[9.184708827024465,45.53173669839007],[9.184708319886251,45.531718670373806],[9.184708107329262,45.531700650882954],[9.184709863336364,45.53167367230325],[9.184711610390972,45.5316557126558],[9.184713481683596,45.53162874289064],[9.184714383384776,45.5316107486038],[9.184715541246026,45.531592762904324],[9.184716827201532,45.531574785998956],[9.18471862544776,45.53155681726753],[9.18472125620676,45.531538874195],[9.184723835649686,45.531520904202445],[9.184725761839776,45.531502899260566],[9.18472786714369,45.53148484002396],[9.184730983162284,45.531466473124595],[9.18473485876428,45.53144932912359],[9.184696110725708,45.53131750123542],[9.184727280530787,45.53121518251003],[9.184770837457028,45.53105902729229],[9.184906823456421,45.53057159699278],[9.184933270971689,45.53057621673259],[9.185235149484047,45.5306093469317],[9.185366577687327,45.53062376961557],[9.185409584277298,45.530628488434765],[9.1856689306876,45.53065694290418],[9.18581734657504,45.53067323670049],[9.185979816241833,45.53069106462416],[9.186182410231115,45.53071329150001],[9.186577887824166,45.530768300080005],[9.186576843484366,45.53074289219236],[9.18660177027089,45.53050012379998],[9.186629025983722,45.53027626252323],[9.18665832451906,45.530073865090145],[9.186659095618019,45.530063053729116],[9.186595410594482,45.53005547980374],[9.186584700354217,45.530054210135276],[9.18652854840078,45.53004753298293],[9.18658023524169,45.529919698684054],[9.18660899808444,45.52984986766093],[9.186611221336436,45.52984446348416],[9.186639564768635,45.52977562323743],[9.186698220709287,45.52963319602346],[9.186711519256843,45.52960003294188],[9.186691782033764,45.52959139725704],[9.186651491371215,45.52957126491599],[9.186722717396929,45.52949314675404],[9.18680734325607,45.52940098324069],[9.186862636975546,45.52933028975184],[9.187091946967438,45.529037313178456],[9.187100939198388,45.52902642536518],[9.187116733300718,45.529012232092775],[9.187132514559348,45.528998029838256],[9.187148385570987,45.52898386343841],[9.187162730161914,45.528968943455524],[9.18717697214858,45.52895397863398],[9.187191188456175,45.52893899585079],[9.187205520248256,45.528924084884196],[9.18722000588301,45.528909227669665],[9.187234478734005,45.52889437947507],[9.1872571371713,45.52887256917396],[9.187277410929033,45.52885379608106],[9.187293204551084,45.528839485772636],[9.187307984975702,45.528824718073466],[9.187322778168687,45.52880994135051],[9.187337609712054,45.52879514656093],[9.187350530630079,45.52877958981914],[9.187362848917127,45.52876380903951],[9.18737478251277,45.528747875872696],[9.187386716131504,45.52873195170552],[9.187401604058987,45.52871486158036],[9.187415050758819,45.52869953799398],[9.187428959060533,45.52868439366836],[9.187443239262924,45.528669410748456],[9.187457519427891,45.528654418825845],[9.187476702004284,45.5286310210109],[9.18748845598876,45.52861500711783],[9.187500068892938,45.5285989304482],[9.187511668984646,45.528582853798326],[9.187523666559327,45.52856692951158],[9.187536292480674,45.52855126522051],[9.187548931200878,45.52853560090698],[9.187561198006605,45.52851977518507],[9.18757526019382,45.528504720598164],[9.187589719862759,45.528489818373586],[9.187602922788429,45.528474387153025],[9.18761565126325,45.5284587676894],[9.187634923498017,45.52843541470472],[9.187653092722849,45.52841541186812],[9.187666692953231,45.52840008799955],[9.187679138589738,45.52838414495929],[9.18768999339815,45.52836733143744],[9.187703837246309,45.52835210617491],[9.187719592591108,45.52833791288104],[9.18773501437897,45.52832354011374],[9.187749050620269,45.52830841354012],[9.187763497357407,45.5282935023133],[9.187777944086918,45.528278591084636],[9.187792262481688,45.528263599056416],[9.187807029909056,45.52824885831525],[9.18782182297021,45.52823412653097],[9.18784589209498,45.528213078873485],[9.187862635265358,45.52819944199521],[9.187880379103541,45.52818635252775],[9.187897430164819,45.5281728861563],[9.187914481158133,45.528159401780556],[9.187931840020495,45.52814607891321],[9.187994630598752,45.52808936898225],[9.188029811287183,45.52805178633946],[9.188057357394259,45.528025071343876],[9.188095991541605,45.52799782506436],[9.188113734902926,45.527984627549934],[9.18812961806957,45.52797042498753],[9.188145411018967,45.527956051553744],[9.188164121344245,45.52793712785516],[9.188177606099249,45.52792181311525],[9.18819064204746,45.527906319093326],[9.188203383037516,45.527890699542084],[9.188215444418692,45.52787481107946],[9.188227467316027,45.52785890467696],[9.188240669920042,45.52784347338152],[9.188254834233392,45.527828427542076],[9.188267716260667,45.527812870757835],[9.18828097009569,45.52779744837427],[9.188294659796684,45.52778216928663],[9.188307118495171,45.527766397172286],[9.188325067741205,45.52774584553213],[9.188340193903008,45.52773123914413],[9.188365404544658,45.52771085556487],[9.188382481137968,45.52769744308341],[9.188397748344292,45.527682899461944],[9.188413041124088,45.527668346795366],[9.18842934764341,45.527654422522055],[9.18844783591741,45.52764193480126],[9.188465477149458,45.52762889041522],[9.188483220998643,45.52761589986292],[9.188501349819516,45.52760315169862],[9.188522283809698,45.52758678053934],[9.188538140850246,45.52757248795299],[9.18854932999491,45.52755621385157],[9.188560685786543,45.52753999347995],[9.188572567293189,45.52752397926212],[9.188584820636775,45.52750810844497],[9.188598112760637,45.527492694961566],[9.188611443354153,45.52747729941502],[9.188625440853713,45.527462208798944],[9.188640836500605,45.52744781794837],[9.18865817408773,45.527432073755804],[9.188675776248104,45.527418867384576],[9.188692352119123,45.52740511364659],[9.188708132562475,45.527390920172635],[9.188723913027946,45.5273767356973],[9.188739424087151,45.52736240764937],[9.188754614427667,45.52734790911072],[9.188769817626074,45.527333428550676],[9.188785033622278,45.52731894796743],[9.188800403548212,45.527304548136506],[9.188816671329972,45.52729058786726],[9.1888338366967,45.52727698615143],[9.188851075185676,45.52725460841231],[9.188862174538286,45.52723833442754],[9.18887314558829,45.527221988646005],[9.188883693416908,45.52720545454253],[9.188895023370824,45.52718921617747],[9.188907584395837,45.52717349783261],[9.188919555426123,45.52715750143167],[9.188931026040677,45.527141208825164],[9.188945857175835,45.527126548836954],[9.1889635999143,45.52711330618489],[9.188980225945114,45.52709928229383],[9.189001146021809,45.527082677044284],[9.189074009517013,45.52709021646579],[9.189133896445052,45.52709640914829],[9.189260521816427,45.527108936103545],[9.189548436211291,45.52713741553904],[9.189811960902675,45.52716348645522],[9.190325839800312,45.52721354215333],[9.190377950228227,45.52721862200166],[9.190391014433718,45.527215548953706],[9.190390688432203,45.527225216487594],[9.190388128819656,45.52730171959176],[9.190388023784182,45.527304753077544],[9.190370111299456,45.52762878909574],[9.190414747258785,45.52765017303088],[9.19045781205387,45.52765371073414],[9.190477320597605,45.527655316431364],[9.190503760910186,45.52768087104147],[9.190488706987137,45.527762354449145],[9.1905014684617,45.52777961497629],[9.190503603972676,45.52778250971824],[9.190857251036732,45.527817564089766],[9.190965123892134,45.52782805921753],[9.191173452752816,45.52784833248358],[9.191181929500024,45.527851918690786],[9.1912291411139,45.52788501720436],[9.19135557028,45.52789945035904],[9.191550230349977,45.527921906015244],[9.191731715967832,45.52794134110255],[9.191821299461962,45.527950929968064],[9.192179285051422,45.527973353680444],[9.192571425482937,45.527996204848314],[9.192581659353358,45.5279967996885],[9.192683587102254,45.527998644311324],[9.192654186733288,45.527728603140645],[9.192631011049658,45.52751142289184],[9.19262732345673,45.527443904176494],[9.19262281482135,45.52738722395359],[9.192613019331375,45.52725967936054],[9.192611076261723,45.52723436303428],[9.192684076008105,45.52723283599391],[9.192743989352573,45.52723159197666],[9.193010799578662,45.52726298752635],[9.193264685443955,45.52730077693526],[9.193613540674374,45.527346694983514],[9.193853594765633,45.52738004202734],[9.194020265886213,45.52740397203517],[9.194125618843582,45.52741907692415],[9.194199881726645,45.52743105715757],[9.194235287378602,45.527434183391634],[9.194301744444376,45.52743661782819],[9.194388957878692,45.52744601968581],[9.194523714103376,45.52747636682255],[9.19462130968523,45.52749594889875],[9.194725803196791,45.52751425002333],[9.19507210713512,45.52756971793613],[9.1953147669893,45.527604335597],[9.195565174164782,45.527635123110635],[9.195720604723189,45.52765205812806],[9.195808674489069,45.52766081837127],[9.195869113674075,45.52766708758553],[9.195984807549383,45.5276764484713],[9.196069408844174,45.52768203712833],[9.196065308225894,45.52769600458532],[9.196057664096196,45.52772211135701],[9.196039566288635,45.52778394269694],[9.195836677240397,45.52847679402861],[9.195641952099681,45.52845508386566],[9.195603555560222,45.52864996544372],[9.195527295568322,45.52904598326986],[9.1954713351497,45.52932803269993],[9.195468293091855,45.52934822695973],[9.195631337999497,45.52936597717126],[9.195709392388501,45.529373683501284],[9.195812716200692,45.52938592800731],[9.196282492928516,45.529443998164865],[9.19639823329519,45.52945830005436],[9.196572715158652,45.529479863683335],[9.196605602874186,45.529384568449785],[9.196623985366022,45.52933466276725],[9.196752175213257,45.52898530573079],[9.196852033219953,45.52871585344298],[9.196925085402842,45.52851564627259],[9.19700501611015,45.528301394769464],[9.197099760831712,45.52804257212377],[9.197089738516594,45.52804023114513],[9.197090740473856,45.52803744813448],[9.19709383520073,45.52802887392633],[9.197096625513502,45.528010120199646],[9.197109147873729,45.5279765701951],[9.197109744439251,45.52797504801167],[9.197120255280057,45.527948558193614],[9.197355866540521,45.527984470790486],[9.197427947836195,45.527994724509824],[9.197493007054417,45.52800368516981],[9.19749853942633,45.52796710487494],[9.197548698937585,45.52782028525601],[9.19755766084161,45.527794023094174],[9.197561070750869,45.527784053185854],[9.19764352665791,45.52754219101839],[9.19774054694689,45.527265164009336],[9.197899232698616,45.5272939086502],[9.198179655540226,45.52734637574779],[9.19852993434476,45.52741356349883],[9.198986758490923,45.52749925985795],[9.199130827904366,45.52752621001746],[9.199077380384427,45.52762902154806],[9.199009719984899,45.527761416801084],[9.198955146316788,45.527868208636384],[9.1989214174296,45.527934154027385],[9.198893246378253,45.52798923463521],[9.199117234249798,45.52805508286663],[9.199282385461775,45.52810437243678],[9.199289377152004,45.52810428825247],[9.199286559168906,45.528107722511635],[9.199171014335539,45.52826464773937],[9.199161480483415,45.52828467338253],[9.200283006455495,45.52845816177738],[9.200476289741404,45.52848805739361],[9.200459641541517,45.52853847371794],[9.200454484488558,45.52855397333781],[9.200446508780383,45.52857992796459],[9.200394738016643,45.52873268326544],[9.20030139793232,45.52900811285288],[9.200217055202998,45.529256982894445],[9.200174738339712,45.52937838033189],[9.200066056006051,45.52972665397219],[9.200678651140247,45.529816130481116],[9.201152894456035,45.52988539691772],[9.201302541209863,45.52937640177645],[9.20130275891264,45.52937640139347],[9.201444348792952,45.52891075062688],[9.201495586878027,45.528742235180545],[9.201500776561012,45.52872518729832],[9.201504643736516,45.52870716064438],[9.201516301964958,45.52864743700415],[9.201979200870948,45.52873755713458],[9.202105620059129,45.52876938618793],[9.20209633125928,45.52881112186243],[9.202082926663671,45.52886935449161],[9.20200806289288,45.52909157539755],[9.203015987321917,45.52920505728718],[9.203055870174369,45.529081592900994],[9.20307130320329,45.52902860409636],[9.203076708585243,45.529011123716316],[9.203089149899014,45.52896663708738],[9.203202209135766,45.52899368214651],[9.203441762526554,45.5290373879826],[9.203625596015767,45.52906301063059],[9.203832394652157,45.52908966318372],[9.204116041998818,45.52912676337915],[9.204266105522844,45.52914503747625],[9.204533963632782,45.52918216481994],[9.20490878680528,45.529228632001214],[9.20512204597583,45.529253146431735],[9.20528215519989,45.529269285967985],[9.20568997230785,45.52930986779027],[9.205732337268792,45.52931403105671],[9.205883347492879,45.52874109386844],[9.206031120857753,45.528187388220346],[9.206113772604978,45.52789313423396],[9.207150475872703,45.52797989409152],[9.20735105907553,45.52799544439441],[9.207507446375793,45.52827874392217],[9.208025123227754,45.52832030624151],[9.210354169076915,45.52849604840995],[9.210193137502861,45.528207567789714],[9.210200105717837,45.52820805903971],[9.210459083515948,45.52822656590297],[9.210481115217515,45.52822807353339],[9.21072393149577,45.52824639350414],[9.211099244084286,45.52827333448184],[9.211266687759869,45.528285446689964],[9.211335179298295,45.52829039671888],[9.211425072693743,45.52829620725251],[9.211462615798041,45.528298631125836],[9.211577474450035,45.52830619557966],[9.211588029591715,45.528307022146926],[9.211639280976923,45.52831104077624],[9.211722369337686,45.52831888887079],[9.211865181653305,45.52832942561331],[9.211966721712377,45.528336834319205],[9.211941388824584,45.52847951885214],[9.211911166165889,45.528650124289044],[9.211887209835199,45.52877065498614],[9.211870287749019,45.52887171265918],[9.211863957864088,45.52891513582135],[9.211863244086349,45.528919448584105],[9.211851462376172,45.52899115373204],[9.21184302275994,45.52902862218916],[9.211873533164896,45.52903032987378],[9.211930693311803,45.52903213220421],[9.21195324649529,45.52903259447782],[9.211969651569909,45.52903273510336],[9.211962815605895,45.52922804073696],[9.211958292616814,45.52935715831415],[9.211964323067157,45.529500252767534],[9.211934458521293,45.52982454821504],[9.211991369753164,45.529882687729355],[9.21199224212441,45.52988310015523],[9.212101712518482,45.52993499458938],[9.212228578911317,45.529960907001595],[9.212292495347734,45.5299780611869],[9.212387152236921,45.52998982973241],[9.212504873633879,45.53000169937777],[9.21256695379128,45.53001068398555],[9.212638032001472,45.53002180305655],[9.212645204784499,45.53002214076146],[9.212709581292463,45.53002878078481],[9.212795921643941,45.53003570395665],[9.212903949604616,45.53004436888995],[9.213115767453818,45.53006188636286],[9.213324516056893,45.53008049827683],[9.213341929973339,45.52984231048943],[9.213354557657368,45.52966948729182],[9.213368196419934,45.52948295380118],[9.213368173824234,45.52947696823162],[9.214129996222928,45.529516850185225],[9.214435906451095,45.52953286593682],[9.214855354649261,45.52955855071968],[9.21521221905792,45.529577402992594],[9.215297608659988,45.5295836149898],[9.215299068861814,45.52958369325025],[9.215618842205487,45.52960131791264],[9.21563207356962,45.529601995047685],[9.215981097084065,45.52961978858667],[9.216152882773676,45.52963076931902],[9.216452085434614,45.52964722438751],[9.216741053985741,45.52966312200169],[9.216700868256892,45.529482783689154],[9.216696397785137,45.52946578941889],[9.216691603379074,45.52943778763686],[9.216676264404592,45.52934832054039],[9.216667540433118,45.529297427858005],[9.216641661409941,45.52917102293601],[9.21659450074794,45.52897493716578],[9.216534603637111,45.52873006348078],[9.216445213377186,45.52842457034251],[9.21644337075483,45.52841825518156],[9.216436415707957,45.528394469902516],[9.216391251293372,45.528251161650914],[9.216378450933304,45.52818904349604],[9.216337915818915,45.527983755113766],[9.21630837467304,45.52783700592624],[9.21627491480706,45.52767009306741],[9.216237016014341,45.527484259642605],[9.216204074957624,45.527318956937464],[9.216191532541258,45.527257207301936],[9.216109632610573,45.52677954799616],[9.216384313540551,45.52677676958674],[9.21761688177074,45.52678596194797],[9.219119508922109,45.52679909755569],[9.219670862396962,45.526795312961106],[9.219739734544302,45.526766683774106],[9.219766935132672,45.5265167928694],[9.219789091424134,45.52635944114588],[9.219789674340984,45.52635457052567],[9.21980247560094,45.52624482465751],[9.219772798938727,45.526154224352325],[9.219729470691094,45.526089680933836],[9.219669638709055,45.52599606919609],[9.21960458707963,45.525900379230045],[9.219551036038343,45.525821480885035],[9.2195049571283,45.52575084902953],[9.219415285343695,45.52561326187104],[9.219410271582625,45.52552571047788],[9.21941581943274,45.5254935395289],[9.219418279000333,45.52548059147993],[9.219472855479045,45.52519379828844],[9.219475490936897,45.52517998581118],[9.219496091265901,45.52500438321262],[9.219696614306974,45.525029362933864],[9.219752327167287,45.525035358562626],[9.219833548579217,45.52465629049107],[9.219890658242736,45.52439600892445],[9.219914688687222,45.5242566013665],[9.21994873077194,45.523998281289],[9.220014648184026,45.52373121399825],[9.220074917515287,45.523487028883345],[9.220090817949922,45.523440184462004],[9.220098665856037,45.523413508611185],[9.220142604731857,45.5234149722315],[9.220229353925198,45.52341745154735],[9.220237540322351,45.52341851589998],[9.220250551383243,45.52341887789225],[9.22026927403222,45.523419408905085],[9.220422797747325,45.523424558780775],[9.220538452887967,45.523428458318435],[9.220645926520575,45.523432544535964],[9.220750579588364,45.52343572700098],[9.220780201035153,45.52343674995289],[9.220791534795636,45.5234371421232],[9.220886971286724,45.52344105332333],[9.220993415666415,45.52344388107105],[9.221064812052974,45.52344637140609],[9.221107278263334,45.52344779249625],[9.221212193817502,45.523452594198346],[9.221374939897881,45.52345844503614],[9.221510802517951,45.52346270052681],[9.221594220469791,45.52346463619937],[9.221653018298417,45.52348705162339],[9.221692901676455,45.523502473945115],[9.221785432484129,45.523539234416184],[9.221886919594223,45.52357742659145],[9.221983043899664,45.523612937804245],[9.222065759648464,45.523651193243985],[9.222073777243244,45.52365490406576],[9.222193380218354,45.523708524397485],[9.222222320696613,45.52370240156031],[9.22233090202848,45.523678671170025],[9.22241821572569,45.52365851939077],[9.22244875681572,45.52365241138617],[9.222458672759048,45.52365042990257],[9.22248863838745,45.52364126269037],[9.222529871610366,45.52362868020383],[9.222593844707555,45.523609221754846],[9.222669979196032,45.52358571618505],[9.222700102348147,45.52357754771383],[9.222715055169532,45.52357348618924],[9.2227665300015,45.523560361625],[9.222799555856557,45.52355118837223],[9.222858212094325,45.52353429639322],[9.222941178196526,45.52351253251542],[9.22316471297957,45.52345127741054],[9.22319974737027,45.52344167708015],[9.223203415327102,45.52344638641102],[9.223218511598926,45.52346569995432],[9.223263916109833,45.523523739356385],[9.22331601550876,45.523587724286685],[9.223340139523433,45.523581178523195],[9.223396626690176,45.52356627970764],[9.22343123137348,45.523558102292355],[9.223438971034572,45.52355626898876],[9.223467239597166,45.52355838299858],[9.223553793209947,45.523576071742234],[9.223571013741397,45.52357881937777],[9.223662792473545,45.523593446512585],[9.223901214733292,45.52362815577119],[9.22391612897513,45.5235691164893],[9.223938847167181,45.52347923374609],[9.223941356112713,45.52346933681349],[9.223968423614117,45.52336222677083],[9.223983436384314,45.52336363752796],[9.224023032610436,45.52336785344134],[9.224065954027028,45.52337427705707],[9.224130714582296,45.5233824670599],[9.22422913229962,45.523395451565065],[9.224236498804888,45.523396400226],[9.22430366861677,45.52340507145863],[9.224378458873263,45.52341414174878],[9.224465064357041,45.523425529050066],[9.224560815598279,45.523437699416554],[9.224627630375206,45.523447226243825],[9.224724386965482,45.52346103266833],[9.224736148428443,45.52346271074],[9.224877670429489,45.52348290975647],[9.224880191334835,45.52347284176209],[9.225031615451279,45.523494029226946],[9.225033114091596,45.52348771662757],[9.22522175340606,45.52351321408341],[9.225211552043012,45.52355922891507],[9.22551253554497,45.52359938321119],[9.22552111844717,45.52357141840668],[9.225581781929506,45.52357961566309],[9.225683209570995,45.523592628983714],[9.22582169258817,45.5236115996979],[9.22582486267118,45.52359739897494],[9.22583527150236,45.523558566420824],[9.225857837867412,45.52346990772175],[9.225882476179933,45.523380659865445],[9.225883713125475,45.523376174960184],[9.2259285718479,45.52320407861186],[9.225928685398745,45.5232036553439],[9.22595309787728,45.52309961038522],[9.225970188035669,45.523028109244585],[9.22598300882741,45.52297448338057],[9.22599218770598,45.52294193588678],[9.225999717766767,45.52290693439539],[9.226014610709466,45.52284956904699],[9.226377145141006,45.52289026552055],[9.226719887945793,45.522928731833524],[9.226937622322858,45.52295202657257],[9.227127288099993,45.522975088596574],[9.22714599206947,45.52297736469993],[9.227176736751641,45.5229807150039],[9.227301662716828,45.52299433729134],[9.227383289931929,45.52300323901446],[9.227452888312238,45.52301083245813],[9.227607254923425,45.523028266273116],[9.227610957187565,45.523028690951804],[9.22801359953882,45.52308558510738],[9.228075981177426,45.523094398679554],[9.228472191522306,45.52314055693079],[9.228655930160128,45.52316366425691],[9.228884826691852,45.52319198249434],[9.229056000135479,45.52321091988259],[9.229073472973164,45.52321269408317],[9.229130789426668,45.52321962702629],[9.229176327823053,45.523223964265696],[9.229187424984964,45.523175472026686],[9.22920663422729,45.52310653142221],[9.229227236218657,45.523027398969994],[9.229256009253278,45.523030779667785],[9.229261056120437,45.523031228601155],[9.229331302449259,45.52303749646511],[9.229369858197646,45.523040857522766],[9.229494739934077,45.523052884335726],[9.22967746242251,45.52307168061206],[9.230130704856435,45.5231175385754],[9.230821279018206,45.5231873986512],[9.230889906546608,45.52319538800035],[9.230894922050243,45.523163073539855],[9.230913855671297,45.52306792249585],[9.230935075121605,45.52296499902992],[9.230958524598076,45.522837516517605],[9.230982016780718,45.52272051099479],[9.23099841252679,45.52263420396759],[9.231021359623155,45.52251232102853],[9.23102737370313,45.52247999554084],[9.231035229564139,45.52243776530879],[9.231042020803773,45.522398219503536],[9.231060461652712,45.52230793892149],[9.23108014649341,45.52220248925267],[9.231096759801265,45.52211935909293],[9.231109169784062,45.522057317603426],[9.231127070899369,45.5219603504032],[9.231129847807955,45.521944287130275],[9.231148537059486,45.521852196837564],[9.231162876002386,45.52176716306098],[9.231179263318122,45.52167579748647],[9.231181539070285,45.52166243550388],[9.231201697760518,45.52155085520953],[9.23122030407931,45.52143854897154],[9.231235704288277,45.52135946265116],[9.231259134721812,45.52122765063086],[9.231270175925538,45.52115975227372],[9.231271932199485,45.52115087380305],[9.232682814438157,45.52127065049196],[9.232888227080227,45.5212877123094],[9.232998568676853,45.52126145692453],[9.233010504062408,45.52126189166187],[9.233017480363898,45.52123965414824],[9.233098756718762,45.5209216566097],[9.233101870042962,45.5209096970261],[9.233157696403527,45.520695496048035],[9.233328269035425,45.520092616718614],[9.233379361706382,45.5199107476146],[9.2333816541095,45.51990156198399],[9.233385198827794,45.51988247276972],[9.233382834275748,45.519861775442806],[9.233362539015314,45.51983982756123],[9.233300491549896,45.51983375247397],[9.233287872458739,45.519816496413114],[9.233397234378359,45.51944824308507],[9.233535304704272,45.51897860748228],[9.233694318701211,45.519007454785076],[9.233881004828849,45.51903393205352],[9.233927907276023,45.519031369895494],[9.233971630384582,45.518984529613],[9.234005759362129,45.51889340632888],[9.234202768605376,45.51841076895171],[9.234423448958454,45.517863464951944],[9.234536844020877,45.51758432943791],[9.234591379793494,45.5174499776104],[9.234597569238561,45.517448191732434],[9.234751080251733,45.51748163033484],[9.234897428328463,45.517513625287194],[9.235082137066458,45.51755519023324],[9.235212360004807,45.517582672443815],[9.235352306816225,45.51761465297187],[9.23548893702304,45.51764339981785],[9.235627580485849,45.51767593174862],[9.235741697897094,45.51770051222203],[9.235830978929508,45.51771950019735],[9.235844737928865,45.517678463554944],[9.235872771938629,45.51758812633838],[9.235906048054618,45.51747151356325],[9.235945192721944,45.51747875059487],[9.236128394331052,45.51751490739365],[9.236338709510921,45.51755614742074],[9.236579236673544,45.51760243711564],[9.23669053907047,45.51762431318064],[9.236841500889707,45.51765397385307],[9.236889346183663,45.51766283971851],[9.236980682113376,45.51768326269026],[9.237206602294052,45.51773277665574],[9.237515154266232,45.51780001250039],[9.23790354061484,45.517883346202105],[9.237830304596141,45.5180659835102],[9.237771844196278,45.51820921995236],[9.23765695966523,45.51848992790565],[9.237578290570621,45.518687148837216],[9.238172678721993,45.518809171660216],[9.238218974501548,45.51882073147332],[9.238261723508316,45.51882617801798],[9.23837043530487,45.518855429604734],[9.238410866922043,45.51886392323914],[9.238495295754072,45.518882361182925],[9.23852216202348,45.51888634658718],[9.238607898302725,45.51890208144046],[9.238696685696436,45.51891870995642],[9.238810037842653,45.51894004861902],[9.238940803397917,45.51896446512158],[9.239063369320673,45.51898762047769],[9.239125030769921,45.5189993728335],[9.239196423179695,45.519011140812424],[9.23920615723083,45.51901491885309],[9.239252732674327,45.51902288628835],[9.23938298261473,45.51904639426819],[9.239523724364023,45.51907117626603],[9.239658318103936,45.519095412912975],[9.239808018385732,45.51912218300012],[9.239924710865813,45.519142982497996],[9.240093863733152,45.519173554808575],[9.240252509176711,45.51920213272769],[9.240411432595579,45.519229800747596],[9.240567263070837,45.51925874418285],[9.240709030928045,45.519283702580246],[9.240850811752,45.51930866977522],[9.240889956786898,45.51931554507194],[9.24090610991445,45.519314295928304],[9.240985782416516,45.51930392104914],[9.241108769964638,45.51928746920195],[9.241268150894182,45.519266178973226],[9.241538721548508,45.519230234295634],[9.241711427151547,45.51920806022305],[9.24195688015255,45.51917603802916],[9.242158537388699,45.51914848248493],[9.242334559458984,45.51912648946863],[9.242335860110103,45.51912524458396],[9.24234663535042,45.51911498769123],[9.242405288450627,45.5190729280502],[9.242450234231613,45.519062031672036],[9.242864810056226,45.51902972095086],[9.242916616535195,45.51903027701597],[9.24303093127046,45.519057685077854],[9.243046171776433,45.51905861579715],[9.243100141105211,45.519061912469176],[9.243167831959495,45.519067223160015],[9.243372340892643,45.519027175111155],[9.243476009486436,45.51900850258032],[9.243674652712539,45.518971157754834],[9.243758099806135,45.51895449024669],[9.243826461389757,45.51894611769414],[9.243919930607056,45.51893465824876],[9.24399040669503,45.51893563306245],[9.244121100868787,45.51893707339662],[9.24426345011514,45.518960099942944],[9.244338333175195,45.518967563807664],[9.244423472366467,45.518978057026104],[9.244578902196144,45.51900286441627],[9.244606821932415,45.5189986822874],[9.244628477741337,45.51897904093752],[9.24466309755461,45.51889584324376],[9.244686321359866,45.51883913267055],[9.244712374232355,45.51877934672037],[9.24473462026365,45.518727489733045],[9.244771502066019,45.518637464452695],[9.244805605090432,45.518556248022804],[9.24483617670208,45.518481519815275],[9.24485743252903,45.51843758574582],[9.244868865578473,45.51842857833613],[9.244872999845391,45.518425320147415],[9.24488451759657,45.518424044360195],[9.244904291121617,45.518431040760085],[9.244977304880807,45.51845933637823],[9.24499289995325,45.51846529760261],[9.245083038254002,45.51849792192956],[9.24515546919851,45.51852464351819],[9.24524894602197,45.518559429784666],[9.245320083886005,45.5185861360391],[9.245369659654411,45.518606767865975],[9.245448532779404,45.51863976710435],[9.24553253610676,45.51867475348427],[9.245611658946839,45.51870919222351],[9.245666117791698,45.518730893548785],[9.245701806208542,45.51874370623843],[9.245711565080034,45.51874721364353],[9.245810721375166,45.51878648771746],[9.245930661480381,45.518832386716475],[9.246028260220463,45.518869683743645],[9.246105313149606,45.51889909506812],[9.246206498706604,45.518936744262916],[9.246216245623124,45.51894043166924],[9.246260626568416,45.51885297303823],[9.24621672014182,45.51894061066658],[9.246287154349629,45.518967227822316],[9.246400732879186,45.51901926066022],[9.246447236503702,45.51903988963469],[9.246496300934538,45.51906052207269],[9.246557442946882,45.519084908850786],[9.246663780497311,45.51912939624688],[9.24674188299572,45.51916150515836],[9.246879028481821,45.51921223555057],[9.247062666540456,45.51928091224558],[9.247116590522875,45.519300093770305],[9.24720032636659,45.51933201017849],[9.247275046522862,45.51935764535979],[9.247302269877322,45.519366965481936],[9.247443953652848,45.51940707327871],[9.247548691452419,45.519436810775154],[9.247592239564458,45.51944899379916],[9.247693988603638,45.51947745049753],[9.247784864270809,45.5195052285867],[9.247840301271236,45.51952187722855],[9.247947593929606,45.519550168673284],[9.248025876865263,45.519570575096864],[9.248051567902099,45.519580789455325],[9.248122723465805,45.51961093227887],[9.248195177781989,45.51964232336998],[9.24830759153659,45.519670414344496],[9.248383576450578,45.51969227466167],[9.248579643721438,45.51978269518526],[9.248624313380578,45.51979649554621],[9.24870775654422,45.51982264188322],[9.24879119590268,45.519847906075775],[9.248840226104306,45.51986331703617],[9.248959549980267,45.519890321223855],[9.249026530515623,45.51990552201619],[9.249116607518994,45.51992609103345],[9.249227200320954,45.51995041367551],[9.249318792395071,45.51996899902638],[9.2494221880962,45.51999009682972],[9.249425226109302,45.51999088228745],[9.249559068281101,45.520011634543096],[9.249620603387031,45.520020123168585],[9.249678781086722,45.52000769191533],[9.249786488260122,45.5197324061792],[9.249789797589733,45.51971635928522],[9.24981564427913,45.51969796793337],[9.249833331383108,45.519696174121115],[9.249921036454674,45.51971602761052],[9.250163348237031,45.519758819426606],[9.2504687398232,45.51981189570279],[9.250820023026723,45.51987110818918],[9.251206942936907,45.51993376070177],[9.251420790793683,45.51996734139371],[9.251570796434427,45.51999477946183],[9.251792826443179,45.5200225988646],[9.25195923022496,45.52004336663482],[9.25214255067367,45.52006468193422],[9.252438163683145,45.52009772941536],[9.252585321017907,45.520115082388514],[9.252739548007655,45.52013282459334],[9.252791819569971,45.52013978381782],[9.253114523237166,45.520180636490636],[9.253164818732587,45.52018662781611],[9.253731150045569,45.520254140088866],[9.254063944315407,45.520292069393705],[9.254344173049933,45.52032313890295],[9.254503143589162,45.520333442406965],[9.254699118748734,45.52033823573247],[9.25471103906154,45.52033817318473],[9.25475025817571,45.520341065152486],[9.254965100805471,45.52035876834371],[9.25526250916452,45.52038605291512],[9.255298657828593,45.5203894916029],[9.255350189053388,45.520394003054555],[9.255387813517949,45.520398176496094],[9.255350127641577,45.520346397248304],[9.255308326367022,45.520248074338795],[9.255297968216476,45.520219798519264],[9.255294063236049,45.52016882593966],[9.255297279985209,45.52010427305501],[9.255300590661843,45.52003783876446],[9.255295989002,45.51999136820589],[9.255295177929435,45.51992235084433],[9.255305681371727,45.51977869947337],[9.255325910276268,45.51967352339109],[9.255338401528673,45.519604305313635],[9.255342854170536,45.519527085345466],[9.255347171379539,45.51945956868752],[9.255337393764597,45.519409554310855],[9.255324731908065,45.519353119702785],[9.255297039113621,45.519265665411965],[9.25529132966557,45.51923755022889],[9.255304866556004,45.51900864419851],[9.255310764831782,45.5189850215759],[9.255322589101008,45.51894958549676],[9.255360313983893,45.518911013274824],[9.25556815664441,45.5188315748493],[9.256226373922127,45.51854692377647],[9.25653207548314,45.51842021643362],[9.256901609491305,45.51826705517669],[9.256894538578504,45.518257872099284],[9.256877266539364,45.518232519244215],[9.256868213312652,45.518212557493214],[9.256713438678279,45.51793802531647],[9.256711370259307,45.517936472796386],[9.256632952447315,45.51786116689644],[9.256632321403892,45.51786035822782],[9.256714381834419,45.51792579992514],[9.256769397849094,45.51788335402164],[9.256873237704024,45.51797142907555],[9.25693027167402,45.51801240826157],[9.256985732447493,45.5180452811079],[9.257252784324798,45.51815678747987],[9.257394093331511,45.518206496788665],[9.257480036045152,45.518241326006354],[9.257613946476058,45.51829698331518],[9.257744531545345,45.51835336803494],[9.2578271679565,45.518393064947404],[9.257928792667283,45.51844406916492],[9.257993475528034,45.518477478781406],[9.258087948602833,45.51853245039909],[9.258204783323341,45.51859999977572],[9.258324367585486,45.518658370867115],[9.258549948496272,45.518771525010806],[9.258624644477484,45.51881050121534],[9.258717070590551,45.518862776656874],[9.258785520949488,45.518882693896984],[9.258768045585722,45.518936217001524],[9.258762553059523,45.51895306117954],[9.25875134171415,45.518982069559364],[9.258695196057717,45.51903497805281],[9.25868044596585,45.51905173515304],[9.258676259624846,45.51905184363105],[9.258675265017816,45.51905273697316],[9.25863590675658,45.5190528619808],[9.258573146945933,45.51910979078613],[9.258552382984861,45.5191246172624],[9.25844740146094,45.51919953529305],[9.258382378119627,45.519245938011004],[9.258416184354989,45.51928605081931],[9.258452473649132,45.51930355665551],[9.258465626631029,45.51930990859814],[9.2584232043902,45.51937084178091],[9.258541812438624,45.519694058382136],[9.25870459608982,45.52013766145172],[9.258741961469743,45.52013277043308],[9.258806950053602,45.52012336143968],[9.258903939400055,45.52011192677548],[9.259231928256733,45.52011492827435],[9.259231940400147,45.52011478423186],[9.259240404185702,45.52011485505841],[9.259261502008622,45.5197540497484],[9.259267806375588,45.51967973273388],[9.259208189611915,45.519578850350634],[9.259173786156627,45.51955944128473],[9.259122615299141,45.51951054712548],[9.259097327168353,45.519471342328906],[9.259077549877013,45.51929358263298],[9.259086547523241,45.51919226571329],[9.259098046541913,45.51907799977793],[9.259104016193433,45.519042360547324],[9.25911642594515,45.5190066797241],[9.25912373018696,45.51898566399102],[9.259159000764054,45.51900996761887],[9.259177162726118,45.51902249177418],[9.259220340070959,45.51905665149398],[9.259233067952868,45.519065227543294],[9.259262196968729,45.51908485557023],[9.25932715972319,45.51912312429923],[9.259412065030096,45.519154534054074],[9.259455867481316,45.51916024930676],[9.259526254263607,45.519152807863115],[9.259578440716638,45.51914124924972],[9.259599609801354,45.51912826685949],[9.259611225298178,45.5191204366838],[9.259650156413159,45.519094209593355],[9.259688932842108,45.51911792903855],[9.2597369477992,45.519145947941176],[9.259958533120926,45.51928016155747],[9.260015966673999,45.5193153776862],[9.260091556153395,45.51936172266358],[9.260132380549278,45.519388002567005],[9.260178367454133,45.51941761005998],[9.260246948170117,45.51946558204395],[9.26032001243077,45.51953624414281],[9.260348379739291,45.51957939307045],[9.26042264474957,45.51969106963359],[9.260476093957326,45.51977008415226],[9.260510824466193,45.51982143640081],[9.260522381945552,45.51983990699927],[9.260523207488971,45.51984122825641],[9.26093926103821,45.51978054963408],[9.260984297509307,45.519773309138465],[9.260960598846806,45.519634955821545],[9.260921373682944,45.519408815782604],[9.260910827509512,45.51935147687329],[9.260898508321725,45.51928449300292],[9.260896875171492,45.51927464070276],[9.26087567295236,45.519147226800726],[9.260874803816444,45.51914200823976],[9.260853054412262,45.519006980786],[9.260852118354888,45.519001132311836],[9.260837923830433,45.518924494702325],[9.260894714077054,45.51891183587474],[9.260961954130327,45.51889683093563],[9.261050976457629,45.51887696074293],[9.26110137233022,45.51886594557608],[9.261065318157042,45.51876916878965],[9.26104301333513,45.51870801332414],[9.261034713680752,45.518685214889764],[9.261023561047686,45.51865458314908],[9.261049597210954,45.5186503922985],[9.261063031094977,45.5186482284149],[9.26119084484924,45.51862763950041],[9.261340933174116,45.51860347118265],[9.261454337637508,45.51858458006932],[9.261510438573845,45.51857524385647],[9.261764651520412,45.518532897998156],[9.261975045395902,45.51849785269717],[9.261957147116748,45.51844838853326],[9.261831944190954,45.51808437124836],[9.261806311952773,45.51800983914606],[9.261780323009852,45.517930150315614],[9.261761922909667,45.51788283848906],[9.261718523413697,45.517748292761006],[9.261666106873914,45.51760466769282],[9.261586004167693,45.51738516499412],[9.261578962651503,45.517365874082984],[9.26158702283642,45.51736458651682],[9.261708527152365,45.51734523557583],[9.261961246068738,45.517304971905965],[9.262101659512583,45.517282597926055],[9.26237822438286,45.51723824626559],[9.262292817732027,45.51699090730674],[9.262275986508055,45.51695062169162],[9.262263020435272,45.51691553875556],[9.262147065248797,45.51659896247357],[9.262116965310158,45.51651622280228],[9.262098486397166,45.516465679861064],[9.261926109575068,45.51599433540509],[9.261923969938577,45.51598848069186],[9.26190403909547,45.51593398062507],[9.261874953343128,45.5158544428934],[9.261948123712076,45.51584081893346],[9.26217717747897,45.51579817871609],[9.26221209965677,45.51579168099009],[9.262197083244788,45.51575337140167],[9.262188983651809,45.515729546473324],[9.262153171987533,45.515624290533566],[9.262088337200911,45.51543366414325],[9.262176794922851,45.51542030203589],[9.262567228983997,45.515361332330365],[9.262649336236798,45.515350729722556],[9.262685175781717,45.515346101940864],[9.262877592642772,45.515321627345706],[9.263036997094162,45.51530130577808],[9.263134991917605,45.515287803982865],[9.263136305905691,45.51529229243033],[9.263155502262421,45.51529056508913],[9.263154952208676,45.51528516578903],[9.263217622696073,45.51527694773558],[9.263288251720999,45.5152676852205],[9.263325087723045,45.515262613897995],[9.263362279566344,45.51523773967003],[9.263384954756537,45.515229757625505],[9.263420002856154,45.515217417627646],[9.263468227444772,45.51521381418593],[9.263485019023989,45.51521256037773],[9.263561877777438,45.515215920665796],[9.263638984494031,45.51521754314861],[9.26364386289779,45.51521764891599],[9.26366251750762,45.51521232236113],[9.263836305185505,45.51519606194936],[9.263884826402279,45.51517921726042],[9.263898448144575,45.51517361424836],[9.263953650654472,45.51515090350136],[9.264267154676077,45.515430135900374],[9.264452627342232,45.51560173322489],[9.264675215474924,45.51579758290815],[9.264712022267744,45.51582997312686],[9.264718374051423,45.51583575503269],[9.264754247587305,45.51586842642676],[9.264794325810154,45.51590494947913],[9.264856455378846,45.51596153856056],[9.264933832073213,45.515954977687954],[9.265115589226093,45.515939578964066],[9.265369249297716,45.515918927615445],[9.265596539713853,45.51589930904245],[9.265911669626455,45.515876506520584],[9.26617581627832,45.515853443750245],[9.266423074107696,45.51583280496033],[9.266689776676218,45.515808834953354],[9.266880706387958,45.51579210689568],[9.266914502240377,45.51578850866352],[9.267193731360273,45.515763014089615],[9.267444069650256,45.515741465798676],[9.267506766185859,45.51573607162762],[9.267525565751928,45.51573436248209],[9.267719716979881,45.51571671639134],[9.267900927144078,45.515699685344615],[9.268038630287842,45.515687580483515],[9.268072210786348,45.51568449546714],[9.268230335884228,45.51566994825703],[9.268474532616313,45.515646692930495],[9.268467085937075,45.5158148210061],[9.268457036737127,45.516041533313334],[9.268421826966586,45.516836678071414],[9.268436709320572,45.51684041453741],[9.268440968694247,45.516861115704295],[9.268606833308802,45.51690650507441],[9.268623973228758,45.516741378572256],[9.268624214191808,45.51673011782973],[9.26862500843823,45.5166924920327],[9.268628398739871,45.51660035044122],[9.268630892279775,45.51653773404048],[9.2686321941952,45.51650725379685],[9.268632282961176,45.516507073569564],[9.26863304314634,45.516505388608145],[9.26865671603395,45.516262883655294],[9.268655210555714,45.51611582981095],[9.268657645768345,45.516108299303724],[9.268702752431244,45.515968507728516],[9.268705061287696,45.51592362360853],[9.268703416252917,45.51589268223521],[9.268698378875738,45.515797194075645],[9.268687802460276,45.515638037260516],[9.268684791916577,45.51555414654937],[9.268686077206503,45.51543398094762],[9.268687083532004,45.5153736452651],[9.268680836186572,45.515295630768506],[9.26867075698594,45.5151871840828],[9.268664113754218,45.515152474049806],[9.268629385175352,45.51505667757602],[9.268605311895358,45.5149938895287],[9.268588241945546,45.51487723238513],[9.268582288255613,45.51483673311953],[9.268581739082311,45.51483432215626],[9.268557175133866,45.5148353069339],[9.268501226746192,45.51432314056552],[9.268468937597948,45.514322991338666],[9.268430516831193,45.51432302751139],[9.268403982169541,45.51412460995692],[9.268384532126216,45.51397569896417],[9.268356354088953,45.513792415831695],[9.26832745056247,45.513585713928286],[9.268320897113119,45.51353746623287],[9.268302785760497,45.51339538378822],[9.268291679693803,45.51332391532777],[9.268272743178684,45.51317518310939],[9.26824615322333,45.51296757564177],[9.268215507567085,45.51273619716991],[9.26819197877055,45.51255848364141],[9.268189690861925,45.51254577066794],[9.268183103245962,45.5125091612607],[9.268182197583283,45.512493663753176],[9.268178711893718,45.5124740408604],[9.268165769872603,45.51240139755695],[9.267316648225272,45.51241809283699],[9.267309804098733,45.51238667752475],[9.267303448354623,45.51238003167786],[9.267300094154802,45.512363783805874],[9.267265214921792,45.51219463850063],[9.267330041622962,45.51203950867834],[9.267317868426415,45.51192885247263],[9.267279611134773,45.51158128925167],[9.267230111033378,45.51115180762347],[9.267152230768392,45.510475955219],[9.267165496219834,45.51047111772563],[9.267192829883765,45.51046877663348],[9.267251392106836,45.51046205111377],[9.267469962934381,45.51043876777815],[9.267575013497,45.51043038520396],[9.267922576677568,45.51040470193335],[9.26833333314988,45.51037443189519],[9.268602345075802,45.51035442139902],[9.268736087748275,45.510344098173036],[9.268765943802439,45.510344568075205],[9.268767683897847,45.51030127841439],[9.268767924108808,45.5102952562139],[9.268767686737162,45.510137596116984],[9.268767772028152,45.50983236466062],[9.268767300322802,45.50962809817355],[9.268767214641901,45.50944848437976],[9.268766698789177,45.50933996111216],[9.268768673547104,45.50910635475406],[9.268767862871874,45.508884636189855],[9.26876649621601,45.50870484536374],[9.269463015418093,45.508840363006826],[9.269484541849378,45.508844551737255],[9.269523312368998,45.5088542174128],[9.269788232527112,45.5089038721353],[9.27009833645702,45.50896299656116],[9.270107098895297,45.50897233685866],[9.270215434656693,45.508993071178594],[9.270464664371517,45.50902996204548],[9.270891989270222,45.50909359556099],[9.271212068017377,45.509142090213494],[9.271338299366517,45.509151799868306],[9.271378486482131,45.50913643890486],[9.271405059333095,45.509114449529854],[9.271408940837555,45.50901365665182],[9.27141336685132,45.5088689558312],[9.271414636378463,45.50876006828919],[9.271443968595694,45.508672923455855],[9.27144766570827,45.508587072589],[9.271452100333212,45.50838819499526],[9.2714477001222,45.5081702563406],[9.271450088693806,45.50792116726359],[9.27145046089341,45.507676043381466],[9.271450146423463,45.50762920315851],[9.271448626130109,45.50740051049894],[9.271447860252682,45.50719030400261],[9.27146079140677,45.50705207263677],[9.27149235921689,45.50694817167946],[9.271547567666024,45.50685703194658],[9.271573524632828,45.50681632199691],[9.271578844673819,45.5068019168354],[9.271582329362747,45.50677851507549],[9.271581993102174,45.50676713866517],[9.271593402293623,45.50676786765312],[9.27162322218523,45.50676652770226],[9.271674415995639,45.506767072180295],[9.271704547169877,45.506763913275634],[9.271729711822688,45.506755482601484],[9.271758822187191,45.506737024482],[9.271802145809891,45.50670612025943],[9.271870770813765,45.50666862118501],[9.271944912657178,45.50663904779534],[9.272026935833516,45.50661662937458],[9.27217704398964,45.50657225757261],[9.272263740829443,45.50655015189365],[9.272387908472956,45.50652059413126],[9.272546842626362,45.50649089038349],[9.272714448003773,45.50646756541874],[9.272797926482623,45.50645769930827],[9.272823013398883,45.50645444412841],[9.272972161657417,45.506444799261544],[9.273087490823501,45.50644066253313],[9.273151977932931,45.506431894620725],[9.273215606094178,45.506425513977355],[9.273315470998247,45.506421233940536],[9.273439884419956,45.50641355577281],[9.273584584543865,45.50640531588917],[9.273602411834043,45.50640440915139],[9.273848498426798,45.506388914601324],[9.273983024564872,45.50638654919509],[9.274054738429612,45.5063792756212],[9.274143152686584,45.50637101687249],[9.274201729003835,45.506362964609856],[9.274313651718954,45.5063453963815],[9.274440703664999,45.50634073511671],[9.274633650073387,45.506340406976314],[9.274730116161313,45.5063321914449],[9.274763473199116,45.50632912299465],[9.274839033762378,45.50632320783235],[9.274892898900097,45.50632036008867],[9.274883176917307,45.50622957279908],[9.27491632012887,45.50610091446087],[9.274955072816653,45.50604919181059],[9.27501431757169,45.50597074103483],[9.275111231021102,45.50589938238723],[9.275237818092203,45.50580732205343],[9.275342100980929,45.5057326691239],[9.275459885891358,45.505646993409336],[9.27556530178378,45.50557117642143],[9.275582137398686,45.505558588520095],[9.275677724713372,45.505546341875394],[9.275792101772995,45.505533752810585],[9.275910976825296,45.505556292521334],[9.276044474258091,45.5055429099956],[9.276213808430507,45.50552584038641],[9.276340607635554,45.50551439989636],[9.276527019770771,45.505495119326376],[9.27665550602398,45.50547008296046],[9.276801153402905,45.50544151254504],[9.276979089108892,45.505406149037086],[9.277046261974867,45.50539464512957],[9.277209248839704,45.5053807127524],[9.277341744982584,45.505366899091044],[9.277462378991068,45.505353933141826],[9.277553740123324,45.50533883287475],[9.277659182645433,45.505321268090235],[9.277702994460746,45.50530984751199],[9.27782290262408,45.5052794570883],[9.277934546163245,45.50525263300112],[9.27798064995519,45.50524136876355],[9.277968566448273,45.50521018280767],[9.2779627579382,45.505187352491376],[9.277958034511036,45.50517172930561],[9.2779511755143,45.50514351896819],[9.277933480465185,45.50506966409807],[9.277903888391341,45.504942633463635],[9.27788071574953,45.50485333724538],[9.277843190669657,45.504693067319174],[9.277807320590625,45.5045491481002],[9.27777348017668,45.50440144353351],[9.27774273321364,45.50427368656963],[9.277723054263552,45.50419193363029],[9.277687684492728,45.50404550187818],[9.277661269699767,45.503934458151065],[9.277609030557443,45.503720461102944],[9.277567565935021,45.5035474372536],[9.277530139203199,45.503399021215856],[9.277358031672167,45.50341036589652],[9.277196962203343,45.503422592662254],[9.27698006777222,45.50343942789059],[9.276737556180505,45.50345811588718],[9.276552660528841,45.50347201056616],[9.276480959478402,45.50347846659378],[9.276302735188768,45.503492884797964],[9.275911576991856,45.50351749265256],[9.275862576910571,45.50351997810607],[9.275810529179351,45.50353009470267],[9.275682401688405,45.50353862149887],[9.275520703560153,45.50232372821037],[9.275521876953112,45.50230710060424],[9.27548215594262,45.502306557219214],[9.275421410103323,45.50230452528913],[9.275357347401275,45.50230215027498],[9.275205624906768,45.50229601676863],[9.275033660065638,45.50229136289419],[9.2748368393571,45.50228441924238],[9.27477175183963,45.502281866343225],[9.274759190830434,45.50228099642389],[9.274679984746294,45.502275768099786],[9.274529253523939,45.502265499872074],[9.27447982848909,45.50226197310957],[9.274455391562634,45.50226160870875],[9.273845575616676,45.50224851591248],[9.273842381857962,45.502191646471125],[9.27383945862435,45.50214834983448],[9.273832012162563,45.502072327522356],[9.273828524064326,45.50201282150117],[9.273821846766806,45.501939677653404],[9.273817319064165,45.501876942773386],[9.273812165370215,45.501835604682945],[9.273741899610448,45.50183147042322],[9.27365789565511,45.50182652290244],[9.273656938302441,45.50183500410134],[9.273562448930356,45.50182957754471],[9.273539874905627,45.5018279573581],[9.273524528770515,45.50182285451007],[9.27351305782203,45.50181709432317],[9.273506199740147,45.50181234921385],[9.27348924654538,45.50181107561393],[9.273392553390117,45.50181312498684],[9.273341383947516,45.50181404837758],[9.273240196945615,45.50181587433651],[9.273125683746137,45.501820036277444],[9.273008774163234,45.50181831719337],[9.272923100227436,45.50181741455142],[9.272870082562385,45.501814642745266],[9.272799773380617,45.501812101180256],[9.272711031681027,45.50180675922026],[9.272566139710596,45.501812613206496],[9.272472691351739,45.50181600421239],[9.27239459341233,45.50183072680064],[9.27233986214429,45.501838913002906],[9.27228131061835,45.50184321985736],[9.272185012593274,45.50185026280245],[9.272108124863458,45.50185582833417],[9.272041445466552,45.50186015440302],[9.271974981249313,45.5018586562975],[9.271878494851924,45.50185581637357],[9.2717873561163,45.501852414601416],[9.271697006823375,45.501850811074],[9.271639272090193,45.50184930103622],[9.271610303088012,45.50184603947925],[9.271542222559766,45.5018384693096],[9.271432962422555,45.50182772948689],[9.271377956858185,45.50182146033094],[9.271370877569636,45.50182126110518],[9.271372036250938,45.50182799107708],[9.271380356751031,45.50186812463521],[9.27141331491062,45.501985157969095],[9.271461350650759,45.502176674483024],[9.271503553442578,45.502344928326146],[9.271532184882282,45.50245911858177],[9.271561599214065,45.50257638529835],[9.27157309622885,45.5026222359072],[9.271594949991607,45.50271637008807],[9.271662681832755,45.50300820044907],[9.271716089060293,45.503238363194136],[9.271737119816446,45.50332894391304],[9.271852701352797,45.50381265093369],[9.271906812646943,45.50402386486151],[9.271934988768844,45.50414949628586],[9.27216115704971,45.505111889979965],[9.272170382777322,45.505132435216865],[9.272182694310477,45.50513985871225],[9.272204534192506,45.50516952790128],[9.272214687300284,45.50519125905374],[9.27223440946939,45.50525698211684],[9.272253312656737,45.505304138147714],[9.27226572356905,45.50534548601031],[9.27227739210006,45.505381525073005],[9.272299940862284,45.50543875348965],[9.272321744751185,45.505490151053884],[9.272337012853185,45.50552936787807],[9.272344342140281,45.505560115700796],[9.272338753074097,45.5055930185108],[9.272325926648666,45.50561426431056],[9.27230447261206,45.505635530650544],[9.272281567051955,45.50565043676466],[9.27224641649422,45.5056611325713],[9.27220906938885,45.50566492986018],[9.272143717157036,45.505669333835385],[9.272060405623158,45.505673771494386],[9.271972050710644,45.505675574804066],[9.271900218743923,45.505679453990965],[9.271843483868132,45.50568171308152],[9.271725664489342,45.50568411728599],[9.271642345246413,45.50568696148883],[9.271555426516763,45.50568929212174],[9.271429012745942,45.50569330959544],[9.271313364227025,45.50569729239131],[9.271202746374883,45.505701272142225],[9.27111727141319,45.50570571424331],[9.270951334443215,45.50570823170147],[9.270787563175212,45.50571392112919],[9.27071547618595,45.50571536091525],[9.2706206828384,45.50571725942768],[9.27048658206241,45.50571993490208],[9.270350826079929,45.50572715061439],[9.27028330789288,45.505728372305896],[9.27017844499275,45.50573393063422],[9.270050587039863,45.5057384720495],[9.269899741682034,45.505743598626964],[9.26976903154397,45.50575133279683],[9.269631109735535,45.50575537542409],[9.269553532736447,45.50575715145381],[9.26949124059939,45.505756398151405],[9.269391886426465,45.505757532308145],[9.269309261066274,45.505755602667115],[9.269215138221291,45.505753168973584],[9.269087237269485,45.50574869945294],[9.269024726934099,45.50574512910966],[9.26895214255869,45.50574159142309],[9.268858149645578,45.505736861885666],[9.268743057580634,45.50573678133914],[9.268630983084586,45.50573598251358],[9.268225715780908,45.50573162309221],[9.268155418843504,45.50571915058465],[9.268092603854976,45.505708001638965],[9.267987915735963,45.505696455726586],[9.267842387939307,45.505521628974414],[9.2677095933393,45.50536210086046],[9.267702333794274,45.505345547087785],[9.267633014509347,45.50532855348847],[9.267515146150675,45.505298838044766],[9.267414250615335,45.505274330355675],[9.267333128492584,45.50525716614841],[9.26719241803813,45.50522888090611],[9.267159276160916,45.50522596100597],[9.267087807781344,45.50522275256317],[9.267017335461107,45.505221746985114],[9.26693032673225,45.505226594577444],[9.266789536737788,45.50522751713539],[9.266604887736824,45.5052275966625],[9.266547543109416,45.505228081355334],[9.266451529243756,45.505228890136614],[9.266244175552439,45.50519984086429],[9.266043486135112,45.505169713600836],[9.265929029321866,45.50515475915756],[9.265880274884555,45.5051472666947],[9.265595861821545,45.50509637000873],[9.265445466979504,45.50507175049043],[9.265441929151166,45.505084351042626],[9.265433870341745,45.50508281257942],[9.265437989854327,45.50507141680602],[9.265259934403188,45.505041631676896],[9.265064648637392,45.50500892488727],[9.264781256756685,45.50496257829063],[9.26449322328537,45.504914468535425],[9.264195685949092,45.504865002860164],[9.263930265698635,45.5048210158932],[9.263724705786919,45.504786242297016],[9.263537663096274,45.504755800132195],[9.263452611556396,45.50474104547767],[9.263392494957536,45.50473166992014],[9.263390196779893,45.504743934519226],[9.263336072075088,45.504734824163116],[9.263226624301293,45.504712141655965],[9.262924522252943,45.504649532771346],[9.262707036638313,45.50461543282581],[9.262426669026487,45.50456896542678],[9.262300973719356,45.50455085579321],[9.262109553707084,45.504550556540444],[9.26188604434057,45.504509115051206],[9.261774277843221,45.504485815394574],[9.261626554573922,45.504448610390426],[9.261383999387082,45.50438512312655],[9.261290247420803,45.50437650739653],[9.261133741291259,45.50437760290108],[9.261127044603636,45.504440921941125],[9.26110521279047,45.504461583979925],[9.26106629136539,45.5044543100398],[9.261000157909477,45.504380851120594],[9.261055445878652,45.50430935633218],[9.261055687962685,45.504309112753745],[9.261067585608838,45.50429932855702],[9.261104078089222,45.50425739979292],[9.26111778292904,45.50423149074568],[9.261123663625314,45.50419659859931],[9.261130139983868,45.504152101067845],[9.261145567239927,45.50408339751871],[9.261149311391058,45.504065387049096],[9.261168130461124,45.504004947634286],[9.261193793022468,45.50392964100281],[9.261211819181419,45.503872146704204],[9.261232502942967,45.503802522038065],[9.261257086472755,45.503734742657535],[9.261275677555698,45.503666562915726],[9.261287354331685,45.50362009128202],[9.261294601291798,45.50357619504069],[9.261296045863544,45.503542546147365],[9.261298263481255,45.50351275690021],[9.261297694522353,45.503464414036536],[9.261294029063768,45.50340246879264],[9.261289832421971,45.503300353469676],[9.261290730436373,45.50318719132705],[9.261284641306636,45.50301622296364],[9.261287652302926,45.50292543238063],[9.261287912286656,45.502862569065954],[9.2612908847044,45.50277174256472],[9.261286304729134,45.50261711648965],[9.261287582289317,45.50251684284532],[9.261285468030785,45.50250527243691],[9.261277116481494,45.502459656632915],[9.261272533562222,45.502434608420806],[9.261207710048216,45.50229788783428],[9.260954717642258,45.501803925380045],[9.26093178781202,45.50173897273037],[9.260923704698289,45.50172926112813],[9.260857250974185,45.50164945714214],[9.260845718557372,45.50161897917532],[9.260816821038748,45.501553338034924],[9.260739988384945,45.50135721117633],[9.260730785607096,45.50134060737324],[9.260563832914166,45.5010393834974],[9.260527802254764,45.500967241828214],[9.260465559545041,45.50084541150495],[9.260393737672377,45.500708526336126],[9.260327175816087,45.50057143112577],[9.260270344780968,45.5004544218892],[9.260195631097922,45.500336994255186],[9.260178082964394,45.50028969809181],[9.260166822381313,45.500243044694145],[9.260143526189001,45.50019271927259],[9.260155247525963,45.500125275372646],[9.26016774965827,45.50006619159282],[9.26016817502887,45.50004457930402],[9.260191322666493,45.499851149875056],[9.260228438057744,45.499697490934246],[9.26024534667341,45.4993387549021],[9.26027686260338,45.49926452421364],[9.260318261001824,45.4991600277707],[9.260340603338104,45.499103279819224],[9.260388558266891,45.499041261995835],[9.260456138581347,45.49894681397821],[9.260487237166716,45.49890157629688],[9.260517819552634,45.49885543068461],[9.260630343267797,45.49868726125928],[9.260733153806743,45.4985223092048],[9.260835916307487,45.49834706905433],[9.260905002130404,45.498213076066556],[9.260944513543631,45.49814386748338],[9.260987990955924,45.498068763201736],[9.261039354471507,45.497977457160324],[9.261232255250722,45.497482863465585],[9.261248561243498,45.497430251551044],[9.261251878096113,45.49741958682538],[9.261305068152641,45.497294450832456],[9.261310746863982,45.49727419467455],[9.261320744384646,45.49723852798723],[9.261342227748436,45.497145831903545],[9.261351716724002,45.49707212826925],[9.261407195980555,45.49688856168265],[9.261437839891816,45.496789660970734],[9.261486291790348,45.49665309547417],[9.26151645397131,45.49656355684958],[9.261550933228435,45.49646104694322],[9.261563626781765,45.49642447396704],[9.261581601382371,45.4963619571094],[9.261638633282049,45.496190637160616],[9.261711853702215,45.49596093582885],[9.261793708826907,45.495702780601576],[9.261824124320139,45.495612881262005],[9.261898451068193,45.495404077516696],[9.261991553689427,45.49514302505629],[9.262031305119558,45.49498822524125],[9.26159299570051,45.494953926730545],[9.261580331297596,45.494791902141586],[9.261551228029761,45.494578753595505],[9.261507679692073,45.4942556911419],[9.26149084245672,45.49413497254253],[9.261442090925017,45.49376866324049],[9.26142314079369,45.493639308512655],[9.26141727602125,45.49357766522509],[9.261377726637633,45.49327495373635],[9.261374442670201,45.49325112665255],[9.261363055429852,45.49316864971371],[9.26135539916965,45.49310702851356],[9.261312509794553,45.49280145329726],[9.261251193517907,45.49233820498834],[9.261235717170312,45.49222649318249],[9.261223169623081,45.49213099444803],[9.26119502390721,45.49193893282018],[9.261189007828293,45.49189154739989],[9.26117947112381,45.491818931271084],[9.261125521618464,45.49141244417746],[9.261104045133221,45.49125388692884],[9.2610591970154,45.490928126789015],[9.261045928628835,45.49083713915031],[9.261023391912593,45.4907094216532],[9.261161057727993,45.4904719765322],[9.261151413837512,45.49043430243987],[9.258253835293829,45.48972740977484],[9.258280863331976,45.48948360211833],[9.258296856666037,45.48938201690577],[9.258316991406648,45.48924854985244],[9.258342786290536,45.489082315427105],[9.258356994567114,45.488970995165886],[9.258378956735651,45.48880060192573],[9.258395755235428,45.488668042479894],[9.258411231445317,45.488559797676224],[9.25841872729277,45.488497466921864],[9.25843578823009,45.488360766416925],[9.25844844047568,45.48826746961883],[9.258451397880306,45.488133276244724],[9.25845355319695,45.4880504173016],[9.258478034187261,45.48789930743607],[9.258500501854263,45.48774169439851],[9.258510007378245,45.48767953910691],[9.258525713263927,45.48757685635946],[9.258555968887531,45.48737895528406],[9.258571717298045,45.48726601130363],[9.25858464951886,45.487180877734815],[9.258596873365253,45.4871003542703],[9.258632862248907,45.48686345691833],[9.258667443773312,45.486635077662505],[9.25871026607974,45.48635355591427],[9.258744850429643,45.486109136846196],[9.258749029750566,45.48609683204093],[9.258752683326339,45.48605630132385],[9.25875705610664,45.48600794711992],[9.258795057851714,45.48562947755588],[9.258820676210831,45.48544209099024],[9.258825356395056,45.48540781363104],[9.25884671447396,45.48521785340866],[9.25886701072793,45.485030775896114],[9.258890084577063,45.48481594203215],[9.258896986747336,45.48478069653081],[9.258953403002042,45.484492348079826],[9.259001465960994,45.484439520446735],[9.259044274910709,45.484401808356225],[9.25912421079745,45.484334668910535],[9.259314323740298,45.484198701111644],[9.259400463397753,45.48419541844308],[9.259853672218062,45.484185172671246],[9.259971102740309,45.484180189298115],[9.260070035580405,45.4841791182926],[9.260446336780099,45.484170755205646],[9.26096417115187,45.484156424416426],[9.261563022899054,45.48413806260715],[9.261925451540488,45.484132174641374],[9.262319062628123,45.48414263182201],[9.26254314342703,45.48414803132327],[9.263135543726392,45.484162322676426],[9.263240340905112,45.484164844830836],[9.263455668536286,45.484170037662906],[9.263476634835314,45.484171465528696],[9.26385405253315,45.48417489794491],[9.264512723956425,45.48417837207832],[9.264759273103875,45.48418069993491],[9.264877200594501,45.48417536832992],[9.264865619986244,45.48371050289941],[9.264848902437148,45.48324707148228],[9.264833248678425,45.4827046538381],[9.264826344167204,45.48252252570347],[9.264814923558875,45.48217919119906],[9.264797903961826,45.481831504152964],[9.264777392958315,45.4814704586866],[9.26477084086843,45.48130888796925],[9.264763511334728,45.48118625735811],[9.264744654950453,45.48080682797845],[9.264723706872525,45.48043424417014],[9.264722619719244,45.48042612778639],[9.264683861754715,45.480135710275306],[9.264666982853338,45.48003670234962],[9.264639348319433,45.47984568409558],[9.264598611568296,45.47960803496165],[9.264556301261472,45.479345717703424],[9.264545734241281,45.47928306818553],[9.264437669701257,45.479272138846895],[9.264120124300051,45.47924095504507],[9.263846367680122,45.47921353978295],[9.263563397398157,45.479185758054015],[9.263559307881355,45.479200529117406],[9.263217104708259,45.47916866154093],[9.263083517771838,45.47915554840583],[9.26283818471481,45.47913207978942],[9.262449906459636,45.479105284340065],[9.262440510801536,45.47910435179355],[9.262383910895817,45.47909969312041],[9.262313750594457,45.479092707258395],[9.262214382201474,45.47908068475248],[9.262176762169833,45.47909925904764],[9.262137348829185,45.479120159698496],[9.262079743407098,45.47913045384],[9.262017537655533,45.47914200062922],[9.261964052528413,45.479163446512906],[9.261899825371218,45.479188868408414],[9.261871146481397,45.47919590084879],[9.261841957804924,45.47919230426834],[9.2617648605402,45.47918208458923],[9.26164321179597,45.47916628715175],[9.26154846318255,45.47915445152034],[9.261469584161878,45.47914349763432],[9.261455002706237,45.47914171276578],[9.261474282303897,45.47900000195422],[9.261493404991539,45.47884927249234],[9.261511087148886,45.478705243061306],[9.261522245890223,45.47861701674242],[9.261530633010924,45.47856030026129],[9.26153800035702,45.4785071775103],[9.261541301059612,45.4784877278008],[9.26155171299585,45.47840957530343],[9.261565165623741,45.478311091589774],[9.2615737878253,45.47824158414213],[9.261578622914357,45.4782080893596],[9.261586490773347,45.47814147295636],[9.261601967226357,45.47802136419927],[9.261613645515565,45.47793764617433],[9.261622280914603,45.47787101900886],[9.261627353049793,45.47783069191938],[9.26163674113942,45.47776083167011],[9.261644094766503,45.47769924799417],[9.26165349171942,45.477625778319734],[9.261654848746566,45.47761488400261],[9.261656341392632,45.47760288225191],[9.261663521370846,45.47755079502772],[9.261690804087486,45.47735262954413],[9.261720260707053,45.47712935527534],[9.26175607262023,45.4768887845193],[9.261785770825576,45.476659758021114],[9.261792625098407,45.476606456390186],[9.26179236930464,45.47659817605215],[9.261786475116672,45.47659349101926],[9.261773914933439,45.47659152154415],[9.2617344842347,45.476591719796225],[9.261659972806227,45.47659210630797],[9.261608003042427,45.47659213517978],[9.261511209555664,45.47659091637322],[9.261400101091864,45.47659006323912],[9.26132354099713,45.47659010317441],[9.261223167641267,45.47658942336214],[9.261131506273971,45.47658856155351],[9.261074148523818,45.476588233442634],[9.261040090527526,45.476588248171936],[9.260996308155962,45.476588087059866],[9.260977613423522,45.476587553654305],[9.260976218832853,45.47658754783541],[9.260923339865691,45.47658739845028],[9.260843209367685,45.47658725718765],[9.260736940419298,45.4765871214527],[9.260651421894588,45.47658661429613],[9.260554391189078,45.47658666436087],[9.260478344472217,45.47658705359932],[9.26040050158009,45.476586357755046],[9.260346127120359,45.47658651754165],[9.260347261708478,45.47656893599852],[9.260347856979537,45.47645355977487],[9.260347505849902,45.47635495457401],[9.260348650174965,45.4762476870012],[9.26034924453792,45.47612655013025],[9.260349111950555,45.47601982552],[9.2603505854435,45.475861728516705],[9.260349764695235,45.475702736630815],[9.260350455743168,45.47561096980876],[9.260352399583416,45.47544387071781],[9.260354457235044,45.47523475466719],[9.260355406495206,45.47507394953252],[9.26035623134399,45.47494451318397],[9.260357077204056,45.4747528798285],[9.260358792789082,45.47458901259341],[9.260359763266619,45.47443560622015],[9.260359111486004,45.47432726257879],[9.26035998950832,45.47421495500966],[9.260360295893536,45.474170300313446],[9.260360659876795,45.474118696707784],[9.26036049639906,45.47409705865735],[9.260360185256394,45.474057220905074],[9.260359729719665,45.47399989452293],[9.260359717209294,45.47396657281999],[9.26035971302778,45.473926716366094],[9.260378665061689,45.47392775334367],[9.26038253240059,45.47386735677633],[9.260388125902269,45.47378171745124],[9.260391040411998,45.47374781301876],[9.260394015656145,45.473713206369084],[9.260398375118944,45.47364576988985],[9.260404753274285,45.473566627502386],[9.26041722965331,45.473408685398866],[9.260429642492774,45.47323416357549],[9.26043502935408,45.473162035224014],[9.26041901435431,45.47312638268774],[9.26038804402003,45.473051807829],[9.260366073213284,45.4729979508004],[9.260340257256196,45.47293418340686],[9.260315995282303,45.47287727123939],[9.260284309204277,45.47282504748557],[9.260203194385452,45.472693079223625],[9.26017615752863,45.47264752361051],[9.260099388893584,45.47258151378794],[9.260014907763134,45.47251029185954],[9.259983564461649,45.47240723853408],[9.25995144046724,45.47230130664912],[9.25997176970025,45.47225691246372],[9.260054214575952,45.47212443718355],[9.26007733166624,45.4720742759922],[9.260103466893051,45.472012757657204],[9.26010397399757,45.47200896707833],[9.260115767450001,45.47187212488816],[9.26019680108189,45.47177516169573],[9.26017179996048,45.47172708115986],[9.260121151236847,45.47166282112601],[9.2601116073293,45.47165161856967],[9.260103671222708,45.47164230256865],[9.260090454245342,45.47160014488334],[9.260156413826687,45.471505196215176],[9.260166264874472,45.47148023200373],[9.260169856153594,45.471471105809606],[9.260175306754217,45.4714322990495],[9.26089470909539,45.471465818270524],[9.261156607165198,45.47147406856084],[9.261290516803252,45.47148351981684],[9.261348398457521,45.47148760904489],[9.26183078662291,45.471535102218965],[9.262570176378993,45.47158017643455],[9.262963603686583,45.47161392645174],[9.263182046965325,45.4716281496602],[9.26333883653266,45.4716442336155],[9.26478903389653,45.47180086937785],[9.265988595488194,45.47193821366021],[9.266111477168224,45.47199074574797],[9.266191456185103,45.47202807584506],[9.2662311508593,45.47204660654367],[9.26625791041587,45.472059424697136],[9.266394589180152,45.472124012716414],[9.266553956293912,45.47220340836513],[9.26765242286802,45.47251056777229],[9.267862475799111,45.47258913188337],[9.267998216966793,45.47263876949604],[9.26805935088152,45.47265660124534],[9.26813800347668,45.47266190749021],[9.268356915812362,45.4726390085357],[9.269104694113901,45.47245036353695],[9.269367661155384,45.47238361406709],[9.269405186643146,45.4723734895529],[9.269440714844524,45.47236841929872],[9.26945761626769,45.47236606622015],[9.269477266441797,45.47236333762111],[9.26958267336307,45.4723560504233],[9.269686567357983,45.47235075591909],[9.269893569719612,45.47233907935883],[9.269914132584672,45.4723399579361],[9.270007232436788,45.472343419594345],[9.27040435466818,45.472323750262326],[9.27095313571881,45.47229517839436],[9.270977062119078,45.47229315948718],[9.271076309032809,45.47229527356003],[9.271222539496101,45.47230951751069],[9.271286580667523,45.47231986980047],[9.271405207436603,45.47234293697415],[9.271781296696872,45.472459084009245],[9.27196401323641,45.47250777717741],[9.2720605093228,45.47253636890789],[9.272181883064697,45.47256119293758],[9.272311718894876,45.47257389033142],[9.272596791144206,45.47259517368215],[9.272596788457173,45.47259461562594],[9.272596631805055,45.47257005224223],[9.272594206702912,45.472164697509086],[9.27259657071993,45.47171510036122],[9.272597647431644,45.471622540391245],[9.27260371361419,45.47109959412591],[9.272606494891779,45.47082435452586],[9.272616174933372,45.470796923367416],[9.272622040813177,45.47068142638564],[9.272601026106667,45.47052016031463],[9.272627579532568,45.47039969046098],[9.272617705115218,45.470320316056274],[9.272617194952934,45.47029672561501],[9.272615776818792,45.469988912314015],[9.27261520662201,45.46978015314291],[9.272617261808435,45.46975797874473],[9.272628559341756,45.46942090880744],[9.272631406785475,45.46937730110157],[9.272646183039916,45.469212772319075],[9.272665580615854,45.46904893459151],[9.27267310100766,45.46901141842965],[9.272698048924815,45.46888447162385],[9.27270157039811,45.46885599301317],[9.27272486440124,45.46867518805947],[9.272740209616934,45.468559821440834],[9.272756414772104,45.46840788163544],[9.272762240758393,45.46831076477001],[9.272773222618259,45.46815004341901],[9.272775518747395,45.46810355668915],[9.272706187817224,45.468085593978444],[9.272415190143999,45.46809361431006],[9.272243210432249,45.46809876735843],[9.271974462785913,45.468081080701275],[9.271569126277951,45.4680514044335],[9.271572662339244,45.46800185443689],[9.271623640782707,45.46752747874407],[9.271657995319625,45.46719045302002],[9.271660434379147,45.467178907920406],[9.271872407695646,45.467202157909455],[9.27199865674393,45.46720573716354],[9.272042031095339,45.46696537880132],[9.272041238983507,45.46691765728173],[9.27198479496843,45.46688448775698],[9.271890388942385,45.466889545777235],[9.271869891600655,45.46688858639011],[9.271417686150881,45.46687863420505],[9.271336715318514,45.46684975304303],[9.271309946322615,45.466495617426524],[9.271309342948616,45.466487157899174],[9.27131202513569,45.46647562122992],[9.271369559820805,45.46619735320594],[9.271406419567185,45.46599053930228],[9.271573809865908,45.4657152327671],[9.271622275086447,45.46551735623512],[9.271657830857817,45.46536698172858],[9.271602132514253,45.46512352836143],[9.271532946434524,45.4648281440774],[9.271529259974303,45.46481428225401],[9.271526931684855,45.4647395342891],[9.271523282909028,45.464658830781076],[9.271547836007612,45.46443606017556],[9.271549037716587,45.46442524709351],[9.271549071170124,45.464424220897435],[9.271554125286073,45.46427515195182],[9.271559469186016,45.46398112082672],[9.271560351295564,45.46395967829334],[9.271528152215053,45.463825585480066],[9.271537234226994,45.46355351695879],[9.271553687406143,45.4633035284383],[9.27161045392205,45.463303393638675],[9.27166210620167,45.46325839184856],[9.271704588052378,45.46320824523292],[9.271726309343688,45.463110010445135],[9.27173547510414,45.46283162295492],[9.271749327521862,45.46271427067134],[9.271761337376422,45.46262344878561],[9.271825851535064,45.4624414657396],[9.271880938177675,45.46225411344836],[9.271928094223048,45.462101415932246],[9.271982954489257,45.46196028439287],[9.271985911075625,45.46195268949585],[9.27209259202269,45.46173013737102],[9.272109244982534,45.46169538978885],[9.272115272484017,45.461682711002126],[9.272117577201447,45.46167788096774],[9.272139345044753,45.46164284217896],[9.272180606538655,45.46158662258215],[9.27218078448273,45.46158638813194],[9.27222616833127,45.461517656279874],[9.272648109507172,45.460879927427136],[9.272708083135166,45.46078928809227],[9.272756171082316,45.46071660712125],[9.272388643433723,45.46075315413021],[9.271928259859386,45.460750622282326],[9.271681550967962,45.46077642048959],[9.271185967681374,45.46069110578892],[9.270018611114068,45.46062139153724],[9.270196640824405,45.4604627869911],[9.270200601831457,45.46031179436413],[9.270248322090668,45.460099806372625],[9.270350823080046,45.459879749963754],[9.270329192395918,45.459734587469704],[9.270380377417924,45.45949303182644],[9.269966123771276,45.45890771023879],[9.269241932455676,45.45888092912532],[9.26929755348462,45.45847937913861],[9.269494850921625,45.45851387441398],[9.269426025741412,45.45823116111651],[9.268322499679291,45.45810614778934],[9.268315590034772,45.45817030536132],[9.267038756108843,45.45799488425561],[9.266051908937614,45.45785337463827],[9.26605325431858,45.45780760125326],[9.265475258533844,45.45771884400034],[9.265089369584581,45.45764944999316],[9.264467026932836,45.457485109721055],[9.26448843072151,45.45723994406189],[9.264552495810493,45.4565062205394],[9.264624845251168,45.455692755535985],[9.26413993885826,45.45569385845008],[9.264039144159213,45.455712822347714],[9.263950618703111,45.4554856514882],[9.263971019133736,45.45546398391424],[9.263937603833588,45.455434510627036],[9.263842907496482,45.45544193895122],[9.263796314563038,45.45544167738399],[9.263763433825446,45.455414372062734],[9.263744363771451,45.455386665842376],[9.263722482373462,45.45529626487447],[9.26365670895555,45.45524452553698],[9.264182652646335,45.45404770394292],[9.264619840600819,45.453057919988254],[9.264626576120536,45.45295845190096],[9.265078415592477,45.452526084652334],[9.265114049545133,45.45248060080213],[9.265115476571331,45.45245213619959],[9.265107138454798,45.45241936473128],[9.265061947068219,45.45238738976041],[9.265044955617388,45.45236652871823],[9.265031064059052,45.45234674061516],[9.265029936470956,45.452324402641466],[9.265046716510803,45.452297342627325],[9.265090085142026,45.45226229106804],[9.265100252856364,45.452246047622516],[9.2651103871772,45.45221720279411],[9.265122572355825,45.45219482496011],[9.265141960602863,45.452178569137224],[9.265171607593967,45.45216552990152],[9.26522885438545,45.45214197644642],[9.265254846349738,45.452113094829215],[9.265258813105808,45.452083535206576],[9.265239248766798,45.45205943078305],[9.264953987324871,45.45192026978499],[9.264921654013023,45.451903053681235],[9.264906825106214,45.45190703948688],[9.264890501103698,45.45192221704958],[9.264890580938278,45.45194202815988],[9.264883606128018,45.45198745457449],[9.26486525950558,45.45200767740166],[9.264830493772473,45.45202000832756],[9.264790535148876,45.452015771344904],[9.264750016543832,45.451995693809415],[9.264737637540895,45.45197661325044],[9.264741638246917,45.45195426340172],[9.264791612333825,45.4519069462441],[9.264812992794797,45.451879146526835],[9.264851062592545,45.45179942614712],[9.264856096413057,45.45177923415158],[9.26486356857616,45.451766336354986],[9.264890856403152,45.45171920670331],[9.264907115584439,45.45169291300183],[9.264927426631019,45.45165796891078],[9.264975366663682,45.451613329691774],[9.265064727161041,45.451530115003415],[9.265067479411291,45.45152523005924],[9.265087569654362,45.45148959337008],[9.265119046046863,45.45143303886168],[9.265144181080856,45.45133314101775],[9.26515676939878,45.451284911244166],[9.265169465682371,45.451243359993065],[9.265299705687982,45.45120841293793],[9.265437866575637,45.4512973737236],[9.265452518947672,45.45130488259123],[9.265507283877064,45.451305907602915],[9.265525715033556,45.45130654889346],[9.265582747306288,45.45130019675012],[9.265808602329544,45.45131618897774],[9.26581911073732,45.451318126782155],[9.265856130492937,45.45130662741137],[9.265941608787683,45.45127672523855],[9.266129189960685,45.45121145438831],[9.26614193319776,45.45120455693867],[9.266207119543052,45.451131865816016],[9.26621853297425,45.451119570826506],[9.266189489745816,45.45101052776898],[9.26615385514623,45.45093843132637],[9.266143071894145,45.450918807139985],[9.266081751662485,45.450807147844024],[9.266202626463679,45.45076076321449],[9.266214499639576,45.45075651408845],[9.266217946824002,45.45075530892556],[9.266221328248806,45.450753716870736],[9.266227475023626,45.45075005713948],[9.266246959010568,45.45074074070747],[9.26626164783385,45.45073424376169],[9.266268079708485,45.450731384457484],[9.266276895991705,45.450727034429185],[9.266297285723054,45.45071724782545],[9.266311290319129,45.45071210262309],[9.266312120323423,45.450711839660116],[9.266321116099984,45.45070758822194],[9.266332384446217,45.45070253939897],[9.266345644825257,45.45069686486382],[9.266496808166398,45.45062191207376],[9.266507911673372,45.45061716965302],[9.26651142333418,45.45061608134459],[9.266519637648544,45.45061154367828],[9.266532281827542,45.450605375499805],[9.266535114360385,45.4506040007399],[9.266546326263644,45.45059783589773],[9.266559709311887,45.45059106292424],[9.266572173982105,45.450584796148185],[9.266584064919519,45.45057889975095],[9.266595839490638,45.450572733592395],[9.266607321541422,45.45056691015419],[9.266617235307933,45.450562080485774],[9.266625873181658,45.450557874863044],[9.266634675139617,45.4505532098038],[9.26664480303802,45.450547686553314],[9.266654586671502,45.450542380129605],[9.26666505882889,45.450536640049556],[9.266675302365273,45.450531233540275],[9.26668627334028,45.45052551029731],[9.266696938711377,45.45052006679824],[9.266706405301257,45.45051532817528],[9.26671384311109,45.450511557394464],[9.266720438259524,45.45050807661187],[9.266728715337983,45.45050329575581],[9.266739033302763,45.45049740301078],[9.266749301341811,45.450491771411556],[9.266757541195256,45.45048723366846],[9.266767489442868,45.450481584811406],[9.26677397939773,45.45047749219992],[9.26678052041937,45.450473381466914],[9.2667870478043,45.450469090744384],[9.266793625493053,45.45046461988327],[9.266949168531431,45.45036136598932],[9.266958243712466,45.450354990068696],[9.266964411222533,45.45035032213206],[9.266970245689947,45.45034553795894],[9.266972356128633,45.450342904727314],[9.266976912506912,45.450338276554994],[9.266988200253591,45.4503292311576],[9.267006120790784,45.450316560855235],[9.267014442521905,45.45031041171523],[9.26702077393449,45.45030524833532],[9.267025063834685,45.45030106183446],[9.26703049952838,45.450295783531786],[9.267039411772805,45.450287400751876],[9.267049280023206,45.45027835866271],[9.267057941040106,45.45027093957982],[9.267063939530223,45.450265686964464],[9.267067336210959,45.450261916595814],[9.267070868850649,45.450257146793525],[9.267079256899565,45.45024879223768],[9.26708963398641,45.45023918189087],[9.267098123231207,45.45023059307012],[9.267105186702725,45.4502233847385],[9.267109766981783,45.45021840546422],[9.267112561260006,45.45021434846767],[9.26712062543644,45.45020511256269],[9.267139014310542,45.45018329608298],[9.267146104832417,45.450176402722235],[9.26714828428954,45.45017484945156],[9.267151629976782,45.45017111520365],[9.267155188986177,45.450166516356965],[9.267160195434382,45.45015970887289],[9.267165581872764,45.450152126410984],[9.26717141304757,45.4501439398398],[9.267177142553013,45.45013588852154],[9.267183101137995,45.45012760264065],[9.26718515870874,45.450124609486686],[9.267187261446688,45.45012034707972],[9.267191773622265,45.45011177654392],[9.267197974804805,45.450100699771276],[9.26723841008571,45.4500327194091],[9.267288727209635,45.44998030574921],[9.267295135380273,45.44997245086176],[9.267301863673815,45.44996468523615],[9.267308591965513,45.449956919610166],[9.26731523056952,45.449949118189224],[9.267320729426272,45.44994097739209],[9.267326100231626,45.44993280088985],[9.267331407010536,45.44992460653489],[9.267337469256171,45.449916617437836],[9.267344223028331,45.44990883374804],[9.267349657767193,45.44990065709515],[9.267354913302809,45.44989244485676],[9.267360053575157,45.44988419688336],[9.26736520663399,45.44987594887986],[9.267370295666478,45.44986768302367],[9.267374642017831,45.44985921187942],[9.267378194536425,45.44985053556681],[9.267381913467506,45.44984189486923],[9.267385517135809,45.44983321843678],[9.267389492163867,45.44982464914857],[9.267393339098657,45.449816035154434],[9.267397185989799,45.449807412159196],[9.267400917618184,45.44979875342916],[9.26740494375089,45.449790175019814],[9.267408918603088,45.44978156972707],[9.26741262448215,45.44977287505258],[9.267417713498507,45.44976460919418],[9.26742139367176,45.4497558875764],[9.267424471578122,45.449746906336365],[9.26742703664852,45.44973764726294],[9.267429267447145,45.449728010927174],[9.267440099310827,45.44963596790137],[9.26744032528791,45.4496269483244],[9.267440806980915,45.44961791914838],[9.267441288631302,45.44960888097141],[9.267441731960256,45.44959985188509],[9.267442124137405,45.44959082291837],[9.267442682472378,45.449581775560986],[9.26744278056973,45.44957275628293],[9.267443748032624,45.44956368996674],[9.267444395839961,45.449554633399],[9.267444135918108,45.449545623959196],[9.267442623036521,45.44953667145558],[9.267442005138712,45.44952768085489],[9.267441463926035,45.44951868107384],[9.267440296276408,45.44950971876182],[9.267439461027514,45.44950073767039],[9.26743874082747,45.44949174730883],[9.26743823797936,45.449482747438026],[9.267437236531107,45.44947377573621],[9.267435710907183,45.44946483226324],[9.267434223647406,45.44945588870052],[9.267433426721482,45.44944689851828],[9.267432450850421,45.44943792675658],[9.267431142537253,45.449428964773254],[9.267429923782144,45.449420011581516],[9.267428538785028,45.449411058778466],[9.267427294412494,45.449402096645535],[9.26742581990113,45.44939314405177],[9.267424064099565,45.44938420111671],[9.267420697324443,45.449375324955774],[9.267418008009962,45.44936638420338],[9.267418579347002,45.44935738182058],[9.267416823377792,45.44934840288156],[9.267414964978817,45.44933939717889],[9.267412824907707,45.44933032012638],[9.267409264323232,45.44932102136897],[9.267392872401281,45.44924292160501],[9.267391155058146,45.449233996581384],[9.267388913711658,45.44922513579016],[9.267386493421167,45.44921629341935],[9.267383472485655,45.449207533462115],[9.267380566514115,45.44919874623285],[9.26737768616162,45.449189967944726],[9.26737462682294,45.449181199075944],[9.267370634526271,45.44917254940177],[9.26736822702874,45.449163707000565],[9.267367404372104,45.44915468087341],[9.26736664556988,45.449145636594835],[9.267364889912932,45.44913672066131],[9.267362750792035,45.44912784162833],[9.267360675610876,45.44911896244583],[9.267358651539135,45.44911007414277],[9.267357151470836,45.449101121607384],[9.267355970885788,45.4490921233199],[9.267354815876734,45.4490831249726],[9.267353686443647,45.44907412656544],[9.267352148013718,45.44906517411964],[9.267350238950511,45.44905626754541],[9.267347793140287,45.449047434234174],[9.267345181174452,45.44903861931341],[9.267343195428978,45.4490297219193],[9.267341989314586,45.44902073269226],[9.267340834266793,45.44901172534378],[9.267338950782785,45.44900281870947],[9.267336364395979,45.4489940037286],[9.26733448087081,45.44898508809329],[9.267332482383623,45.448976199729735],[9.267330189905609,45.44896733905647],[9.267327501304553,45.44895854231638],[9.267325643357527,45.448949626621044],[9.267323798198861,45.44894071089579],[9.26732187635664,45.44893180435076],[9.26731968614178,45.44892293443713],[9.267317508715376,45.44891406449356],[9.267315011765449,45.44890523130097],[9.26731222091012,45.448896443800486],[9.267309276729948,45.448887683661404],[9.267305961875591,45.44887896039278],[9.267302710961037,45.448870236974585],[9.267298782678733,45.44886159614888],[9.267294790501335,45.44885296447336],[9.267290951608315,45.44884429643529],[9.267288083990826,45.448835500112466],[9.267285587049015,45.448826666919075],[9.267282898419216,45.44881786117675],[9.267278778242563,45.44880920279663],[9.26727426173219,45.44880056334462],[9.267269399911836,45.44879191569834],[9.26726489580992,45.448783195207525],[9.267194348376252,45.44859405900578],[9.267142814810597,45.44850213467045],[9.267059202147122,45.44837606323545],[9.267008993036361,45.44822589895892],[9.266854687313138,45.4480095318458],[9.266727828722656,45.447856422890176],[9.266655494135794,45.447751558318295],[9.266593903766521,45.447668937251194],[9.266555710617132,45.44758540652158],[9.26650087752053,45.44735432433744],[9.266499454233152,45.44734534460595],[9.266497839177426,45.447336374322376],[9.266496057885925,45.44732740442612],[9.266494685749635,45.44731842457535],[9.266493415913006,45.447309444486166],[9.26649238899508,45.44730045482995],[9.266491579463267,45.44729146466717],[9.266490769931714,45.44728247450432],[9.26648993482564,45.44727348440105],[9.266488677735868,45.44726449528104],[9.26648747179607,45.4472555060418],[9.266486240281877,45.44724651686214],[9.266484765850068,45.4472375372495],[9.266483853979004,45.44722853832393],[9.266483197898223,45.44721954780342],[9.266482656861752,45.447210548013764],[9.266482307636146,45.447201547777176],[9.266481779387375,45.44719254795772],[9.266481238351409,45.44718354816803],[9.26648063342109,45.44717455752824],[9.266479414654846,45.44716555931762],[9.266478745745847,45.447156559825814],[9.266478652268562,45.44714755899323],[9.266479057498533,45.44713855699869],[9.266479846349242,45.44712955411028],[9.266480174854744,45.447120552294436],[9.266479697756568,45.447111552355665],[9.266478888187276,45.447102553191506],[9.266478487813595,45.44709355307392],[9.266477767756237,45.44708455370117],[9.266476830314161,45.4470755548349],[9.266476174194054,45.44706655531315],[9.266476234165541,45.44705755412289],[9.266476882354855,45.44704855156211],[9.266477517756623,45.44703954903112],[9.266477897411395,45.447030547095984],[9.266477778359869,45.44702154632278],[9.266477007196578,45.44701255607008],[9.266476005776866,45.44700354835166],[9.26647481258984,45.44699455008114],[9.266473977406099,45.446985541975394],[9.266474382678094,45.44697654898153],[9.266475312188,45.4469675457652],[9.266475576799102,45.44695855309902],[9.266475444960825,45.44694955235555],[9.266475453783114,45.44694055128429],[9.266475462605408,45.44693155021302],[9.266475420278443,45.44692254926092],[9.266475467462694,45.44691354810025],[9.266475322794937,45.44690453838551],[9.266474909636058,45.44689553829739],[9.266474291838064,45.446886529684996],[9.266473060249615,45.44687752250269],[9.26647209711028,45.44686849669275],[9.266471159545867,45.44685947082322],[9.266471718265088,45.446850477471656],[9.266472059600085,45.44684148462662],[9.26647188931619,45.44683246597035],[9.266471565542501,45.4468234386707],[9.266471663834198,45.446814428389786],[9.266470444611809,45.446805331167944],[9.266468329475542,45.44679606501355],[9.266466775837722,45.44678655452248],[9.266467894488592,45.44677698379907],[9.266468292983165,45.44676926896993],[9.266466689890006,45.44676011863609],[9.26646804163183,45.44675116844199],[9.266469418947787,45.44674221818831],[9.266470233453996,45.446733233241694],[9.266470651385262,45.446724213214786],[9.266470685529024,45.446715158077865],[9.266470246416931,45.446706077040446],[9.266469193220004,45.446696934426406],[9.266468101576988,45.446687773899804],[9.266466792423916,45.44667858687678],[9.266466327526627,45.446669460894086],[9.266467257075314,45.446660466678274],[9.266469222856912,45.4466515690597],[9.266471956253971,45.44664275066204],[9.266474177906215,45.44663387945031],[9.266475452878112,45.44662492043377],[9.266476024212448,45.44661589104825],[9.26647626286662,45.446606817432546],[9.266476488733487,45.44659774384666],[9.266476727345195,45.446588661229974],[9.266476953127269,45.446579569642175],[9.266477460355455,45.446570504401684],[9.266478185051117,45.446561456656646],[9.266478807321718,45.446552382147004],[9.266479391188106,45.446543298725814],[9.266480077352137,45.446534215066286],[9.266481057749132,45.44652515772431],[9.26648240922928,45.446516153523966],[9.266484067771637,45.446507184612365],[9.266486519713698,45.44649833986681],[9.266488971654994,45.44648949512114],[9.266491449169962,45.44648065031583],[9.266493939471372,45.44647180548069],[9.26649631460245,45.446462942911715],[9.266498446479499,45.446454017902106],[9.266501167033061,45.44644519053232],[9.266504220391788,45.44643643439538],[9.266507171240285,45.44642763349193],[9.266510339554968,45.446418850083774],[9.266514160439188,45.446410155165346],[9.266515523211432,45.446406272536464],[9.266518460507429,45.44639730964534],[9.26652164109787,45.44638841819557],[9.266524962473442,45.446379553420776],[9.266528424761095,45.44637074232384],[9.266531899792525,45.446361922195976],[9.266535938390486,45.44635329877776],[9.266539964115374,45.44634465738731],[9.266543938647958,45.44633600711494],[9.266547964328064,45.44632735672321],[9.266552028453155,45.44631872424381],[9.266556092534673,45.44631008276335],[9.2665604639729,45.446301539577945],[9.266565168511416,45.446293130631744],[9.266570167576905,45.446284811009356],[9.266575153853754,45.44627649141655],[9.26658017857533,45.44626818973605],[9.266585254486438,45.446259896937015],[9.266590330396069,45.44625160413777],[9.26659554721707,45.446243365016144],[9.26660087929038,45.446235161629765],[9.266606211404502,45.44622696724412],[9.266611812470842,45.44621886224175],[9.266617490427908,45.44621079306406],[9.266623194,45.446202732827416],[9.266628948803799,45.44619469047312],[9.26663480607255,45.44618668388387],[9.266640663382002,45.44617868629529],[9.266646738410103,45.446170760207174],[9.266653261833627,45.44616301309433],[9.266659810872003,45.44615527492244],[9.266666347079099,45.44614752777904],[9.266672819264004,45.44613976278244],[9.26667966290947,45.44613213193508],[9.266686544956864,45.446124509998796],[9.26669283777762,45.44611667341083],[9.266698912791785,45.446108747319876],[9.266704923783882,45.44610080337582],[9.266710358379175,45.446092653751386],[9.26671580571768,45.4460844950959],[9.266721265884106,45.4460763454113],[9.266726726006599,45.446068186725476],[9.266732173382763,45.44606003707015],[9.266736967385665,45.44605162790787],[9.266741530710622,45.446043111270725],[9.266746029886797,45.446034549777785],[9.266750413638652,45.44602591654544],[9.266754899770792,45.44601730107623],[9.266759731577226,45.44600877481104],[9.266764806718584,45.44600032898761],[9.266769753351797,45.445991748447845],[9.266774507160008,45.4459829523324],[9.266779003487406,45.44597378777419],[9.266783381890367,45.445964020420355],[9.26678686700702,45.44595192387759],[9.266818594278186,45.44588991362268],[9.26682122503361,45.44588104144862],[9.266823970956686,45.44587218700796],[9.266826691177602,45.445863305623924],[9.266829283230265,45.44585436153154],[9.266831939175098,45.44584540828895],[9.266834594780029,45.44583638303866],[9.26683728836388,45.44582727669017],[9.266839878590762,45.44581794555649],[9.26684160767564,45.44580768032243],[9.266839695495635,45.44575190526131],[9.266838783635558,45.44574291533724],[9.266838689892465,45.44573386949808],[9.266838302132147,45.445724842347005],[9.266836380477807,45.44571593578834],[9.266833359520028,45.44570711280388],[9.266830543113425,45.44569828034107],[9.266827726665333,45.4456894388772],[9.266824910218128,45.445680597413286],[9.266821556928328,45.4456718022069],[9.266819558556284,45.445662895826885],[9.266818339981727,45.445653942622315],[9.26681704464302,45.44564498059576],[9.266815570413526,45.44563604598962],[9.26681394274023,45.44562711174148],[9.266811880478267,45.44561821451132],[9.266809805429942,45.44560931731096],[9.266807743126911,45.4456004110798],[9.266805680866915,45.4455915138495],[9.266803605820561,45.445582616648956],[9.266801620241559,45.4455737102386],[9.266800171548047,45.44556476657161],[9.266798722854995,45.44555582290454],[9.266797082399721,45.445546888685804],[9.266794559938425,45.44553801953194],[9.266792024690924,45.44552915040783],[9.266789425509236,45.44552028143275],[9.266786813583737,45.445511421488405],[9.266783690264031,45.44550258073903],[9.266780643667264,45.44549373981053],[9.266778888176143,45.44548481486083],[9.266776940923128,45.44547589935951],[9.26677498088374,45.445466983887876],[9.266773020844985,45.44545806841622],[9.266771048019862,45.4454491529744],[9.266769087982356,45.445440237502645],[9.266767191837985,45.445431312880814],[9.266765308481203,45.44542238822905],[9.266763425167394,45.445413472578224],[9.26676168242613,45.44540453859734],[9.26675993968543,45.44539560461645],[9.266757826207941,45.4453866895023],[9.266755469863504,45.4453777929567],[9.266753011224097,45.44536889664961],[9.266750603690951,45.445359991222226],[9.266748464642369,45.44535107616754],[9.26674674747935,45.445342142126684],[9.26674495355278,45.44533319926378],[9.266742763358305,45.44532428432824],[9.266739844435335,45.44531539809536],[9.266737334568601,45.44530648390516],[9.266735182694859,45.44529755987901],[9.266733133074997,45.44528862661323],[9.266731070626484,45.44527968437627],[9.266729008220992,45.445270751140235],[9.266726958560731,45.44526180887332],[9.266724844966436,45.4452528667555],[9.266722283872411,45.445243934682296],[9.266719607696798,45.445235002877375],[9.266716918735096,45.44522607110225],[9.266714191328735,45.445217121414565],[9.266711399988607,45.44520817187586],[9.266708621436294,45.4451992223073],[9.266705830013212,45.44519025476657],[9.266703038548668,45.445181278224794],[9.266700285361045,45.44517228359154],[9.266697570535076,45.44516328886878],[9.26669445923085,45.44515427706835],[9.266691258334506,45.44514524747461],[9.266688031780655,45.44513619993854],[9.266685035307493,45.445127133863735],[9.26668212825895,45.44511804957823],[9.26667925948734,45.44510894720122],[9.266676544074798,45.44509982646447],[9.266673969234342,45.44509068739776],[9.26667335117156,45.445081624777906],[9.266672822659606,45.445072570950245],[9.266672396400649,45.4450635078831],[9.26667202128941,45.44505444469668],[9.26667164617829,45.445045381510255],[9.266671271024952,45.44503630932288],[9.266670870213234,45.445027219193165],[9.266670367064233,45.44501812030099],[9.26666977432251,45.44500900361565],[9.266669155880143,45.44499985998704],[9.266668511779532,45.4449906984161],[9.26666784202066,45.44498151890288],[9.266667146476495,45.44497229444448],[9.266666425231753,45.44496304304284],[9.266665729306869,45.44495373757577],[9.26666537867003,45.444944440304745],[9.266665002120746,45.444935071085624],[9.266664573958238,45.44492560297524],[9.266664055652539,45.444916000059266],[9.26666118434738,45.4447840693044],[9.266656621155445,45.4447627024402],[9.26665521086666,45.444753758680505],[9.266654145695504,45.44474478711297],[9.266653093311508,45.44473581551561],[9.266652040885502,45.444726834917255],[9.266650988502194,45.444717863319866],[9.266650140665922,45.44470888224448],[9.266649663478102,45.44469986430068],[9.266648726134635,45.44469088343391],[9.266647558713613,45.44468192110567],[9.266646378506156,45.4446729588072],[9.266645338911587,45.44466398717983],[9.266644184236128,45.44465501582076],[9.266642748378468,45.44464607212038],[9.266641990009864,45.44463708183516],[9.266641346637988,45.444628073279716],[9.26664043487068,45.44461909235317],[9.266639510316866,45.444610111456406],[9.266638649654965,45.444601121409605],[9.266637558915836,45.44459214990128],[9.266635918556965,45.44458322467959],[9.266634124799545,45.44457430881652],[9.266632663372015,45.44456536517549],[9.266630844042126,45.44455644937196],[9.266628845740257,45.44454754298668],[9.266627230957637,45.44453861770515],[9.266625590559638,45.44452968348227],[9.266623426116206,45.444520795486284],[9.266615844818759,45.44443138768254],[9.266612690069643,45.44439410366719],[9.266611484300434,45.44438514142752],[9.266610240171394,45.44437617927725],[9.266608996000407,45.44436720812597],[9.26659214615117,45.44425373510104],[9.26658686375451,45.44421809423533],[9.266586399071587,45.44420901325397],[9.266585691483849,45.44419994183982],[9.266585034916117,45.444190843303595],[9.266584327032456,45.44418170888275],[9.266582699057466,45.44417269362021],[9.266581632893002,45.44416350602811],[9.266583401394302,45.444080071125704],[9.266582451243057,45.444071081286204],[9.266581181552402,45.444062119194705],[9.266579924648823,45.44405315707336],[9.266578654958984,45.44404419498179],[9.266577385269546,45.4440352328902],[9.266576102793866,45.44402627082835],[9.266574730896659,45.44401732697703],[9.266573422848499,45.444008364974785],[9.266572217051666,45.4439993937331],[9.266571151866067,45.44399041316255],[9.266570150571734,45.443981423442054],[9.266569136491066,45.443972433751334],[9.26656813519738,45.44396344403079],[9.26656713390402,45.44395445431021],[9.266566132610981,45.44394546458958],[9.266565118531629,45.44393647489878],[9.266564117239243,45.44392748517813],[9.26656311590485,45.443918486456504],[9.266562101826473,45.443909496765606],[9.266560538177236,45.44390056236194],[9.266558974486163,45.4438916189572],[9.266557346947117,45.443882693703436],[9.266555642688823,45.443873768628386],[9.266553951217707,45.44386484352348],[9.266552247002837,45.443855927449334],[9.2665505555328,45.44384700234438],[9.266548851276681,45.44383807726918],[9.266547147063436,45.44382916119489],[9.26654546838164,45.443820236060034],[9.266543789700375,45.44381131092509],[9.26654184262782,45.4438024134188],[9.266539550486781,45.44379355272085],[9.266537258346464,45.443784692022895],[9.26653497899347,45.443775831295035],[9.266533159747244,45.443766924489566],[9.266531340501588,45.44375801768406],[9.266529534000787,45.44374910184777],[9.266527714756291,45.44374019504218],[9.266525933829831,45.4437312791462],[9.266525916564785,45.44372217011799],[9.266525030277228,45.443713162126556],[9.266523070424475,45.443704264649575],[9.266520663295793,45.44369542222118],[9.26651826895446,45.443686579762904],[9.266515861784965,45.443677728333455],[9.266513454658556,45.44366888590488],[9.266510613000873,45.44366008949408],[9.266507732984355,45.44365129317258],[9.266504852968731,45.443642496851],[9.266501960167437,45.44363370055909],[9.266499080111297,45.44362489523642],[9.266496148909779,45.44361609003276],[9.266493128203214,45.44360728503759],[9.26649010745527,45.44359847104137],[9.266487073837066,45.443589639072975],[9.266484052964048,45.44358079807366],[9.266480993605333,45.44357193016081],[9.266477908547513,45.44356303530456],[9.266474836023283,45.44355408641267],[9.266471737588356,45.44354506557258],[9.26646812697294,45.44353589290778],[9.266463926400034,45.44352634357305],[9.266447535356486,45.44347498573012],[9.266444398951547,45.44346604598716],[9.266441697247393,45.44345709623031],[9.266439008246003,45.443448128441716],[9.266436319245475,45.44343916065302],[9.266433630161165,45.443430174862335],[9.266431222381273,45.443421188416266],[9.266429939773825,45.443412190347914],[9.266429219773698,45.4434031909689],[9.26642848694497,45.443394182618746],[9.266427766945316,45.44338518323966],[9.266427046903594,45.44337617485967],[9.266430968535385,45.44336719167086],[9.26643145046769,45.44335818949183],[9.266431970759365,45.44334918722338],[9.266432503837393,45.4433401849252],[9.26643237201703,45.443331184175875],[9.266432240196712,45.44332218342656],[9.266432095589941,45.44331318270699],[9.266431963769726,45.443304181957664],[9.266431831949562,45.443295181208306],[9.266431687342951,45.443286180488705],[9.266431504419224,45.44327718885942],[9.266431219161328,45.44326818846747],[9.266430933903532,45.44325918807548],[9.266430635859344,45.44325018771327],[9.266430350601748,45.44324118732127],[9.266429349258937,45.44323217959633],[9.266428079442687,45.44322318149787],[9.266426822371013,45.44321417436862],[9.266425552470952,45.44320515826817],[9.266424282571302,45.44319614216771],[9.266422999800966,45.44318710809511],[9.266422497090334,45.44317809020741],[9.266422390802676,45.443169080397304],[9.266422284472752,45.44316006158622],[9.26642217818518,45.44315105177609],[9.26642207185533,45.443142032964985],[9.266422055030743,45.44313301394535],[9.266422140497825,45.443123994687426],[9.26642222596489,45.44311497542949],[9.266422311389617,45.44310594717057],[9.266421654903953,45.443096857632504],[9.266420051628874,45.443087644285185],[9.266416298052796,45.44302901114371],[9.266418323841542,45.443005702688424],[9.266419291445779,45.44299665437225],[9.266420258965084,45.442987588054095],[9.266421559142687,45.44297856596629],[9.266423422303298,45.44296962357653],[9.266425272676909,45.442960681216526],[9.266427123049935,45.442951738856415],[9.26642898616649,45.44294278746553],[9.266430849240145,45.44293382707368],[9.266432661082945,45.442924848798974],[9.266434229687162,45.44291580808352],[9.266435849394217,45.44290675824788],[9.266438057783231,45.44289781505348],[9.266440547641713,45.44288890720755],[9.266443024628389,45.44287998138943],[9.266445514273737,45.44287102853858],[9.266454199885127,45.44283370792256],[9.26647816802976,45.442720805824685],[9.266479199763184,45.44271180236341],[9.266480218625288,45.44270278093],[9.266481198916384,45.442693714581075],[9.266481961288894,45.44268453172622],[9.26648231238168,45.44267489977669],[9.266482982620198,45.442667877390214],[9.266483054952278,45.44265878615365],[9.266482794966205,45.44264972269453],[9.266482534980218,45.44264065923545],[9.266482262207978,45.44263159580609],[9.26648200217985,45.44262252334603],[9.266481524868642,45.44261346939428],[9.266480791957749,45.44260444304126],[9.266479790660966,45.44259544431672],[9.266478802108521,45.44258643656143],[9.266477800812385,45.44257743783685],[9.266477055073928,45.44256840251257],[9.266476424370367,45.442559357919166],[9.266475793624695,45.44255030432483],[9.266475035058287,45.44254126002932],[9.266474046465262,45.44253224327294],[9.266472700067148,45.44252327235545],[9.266471149172993,45.44251431991654],[9.26646961106565,45.442505367447794],[9.266468060172487,45.4424964150088],[9.266466522066132,45.44248746253998],[9.26646497113164,45.44247850109994],[9.266463113580125,45.44246959438059],[9.2664610259603,45.442460706199356],[9.266458823349016,45.44245183628805],[9.26645633965133,45.4424430120369],[9.266453753706342,45.44243419702494],[9.26645107830037,45.44242539122232],[9.266448402895243,45.44241658541968],[9.266445714746972,45.442407788647714],[9.266443039343523,45.44239898284494],[9.266440172273477,45.44239020449174],[9.266437139067186,45.442381444527626],[9.266434105861839,45.442372684563374],[9.266431034340899,45.442363933689414],[9.266427962778593,45.442355173814356],[9.266424878430968,45.44234641396896],[9.266421794041989,45.44233764512257],[9.266418709653975,45.44232887627605],[9.266415625224608,45.44232009842847],[9.266412527967624,45.44231131160959],[9.266409417840714,45.44230250681852],[9.266406294801573,45.44229367505425],[9.266403133235377,45.44228480737536],[9.26640009910977,45.442275849388956],[9.26637460637938,45.44218950760931],[9.266353502760632,45.442120194604314],[9.266350545961377,45.44211136245106],[9.26634757633453,45.44210252132657],[9.266344606666307,45.44209367120098],[9.266341636999028,45.442084821075326],[9.2663388590414,45.44207595250099],[9.266336311151996,45.442067065388706],[9.266333801579746,45.44205816918605],[9.266331394255717,45.44204926374419],[9.266328999676363,45.442040349271515],[9.266326592269266,45.44203142582755],[9.266324184820638,45.44202249338266],[9.266321764586573,45.44201356096739],[9.26631934426868,45.44200461055012],[9.266316923909272,45.441995651131876],[9.26631472087375,45.441986682206434],[9.266312696718833,45.44197768586122],[9.266311503625063,45.4419686785798],[9.26631031053168,45.44195967129829],[9.266309117354094,45.441950646014895],[9.266307924176894,45.44194162073143],[9.2663067309155,45.44193257744603],[9.266305537569906,45.44192351615871],[9.26630433135393,45.441914436899154],[9.266303137713077,45.44190531260504],[9.266302199711632,45.44189616971353],[9.26630170914215,45.44188700777808],[9.266301793950765,45.441877844502876],[9.26630186546569,45.44186857324589],[9.266301884609438,45.44185904108016],[9.266302104441051,45.44184868034968],[9.266302386286288,45.44184063274689],[9.26630258684692,45.44183161321904],[9.266302889739102,45.441822602453904],[9.266303205417351,45.44181359165902],[9.266303508267056,45.441804571892945],[9.266303823945123,45.44179556109804],[9.266304126836935,45.44178655033288],[9.266304429728665,45.4417775395677],[9.266304783764905,45.44176852868342],[9.266305470325515,45.44175953502697],[9.266306144099762,45.44175054140024],[9.2663068178738,45.44174154777357],[9.266307491647634,45.44173255414681],[9.266308178249693,45.44172356949127],[9.266308852023107,45.44171457586452],[9.266310625700173,45.44170564268401],[9.266312629611713,45.44169672696948],[9.266314300998564,45.44168779402707],[9.266314360867131,45.441678765825486],[9.266314407949562,45.44166973765367],[9.26631482591425,45.44166072662031],[9.266315781065256,45.44165175034035],[9.266317465236439,45.44164281736803],[9.266319162235519,45.44163389336693],[9.266320846405648,45.44162496039451],[9.266322543361378,45.44161602739235],[9.266324227488163,45.441607085418944],[9.266325924485132,45.44159816141766],[9.266327621396979,45.441589219414396],[9.26632930556448,45.44158028644185],[9.266331002517562,45.441571353439485],[9.266332686684017,45.441562420466845],[9.266337964675397,45.44155367714841],[9.26633971277074,45.44154474402678],[9.266341448079435,45.44153581093487],[9.266343183345294,45.441526868841954],[9.26634491865291,45.44151793574998],[9.266346641131591,45.44150899368677],[9.266348312465375,45.44150005174265],[9.266349728034557,45.44149110139304],[9.266351143561005,45.44148214204247],[9.266352546343223,45.441473191722615],[9.26635396186879,45.441464232371914],[9.26635567160066,45.44145529933928],[9.26635730453093,45.44144634848331],[9.266358553836096,45.441437389519685],[9.26635981588464,45.44142842152526],[9.266361077932793,45.44141945353086],[9.266362327236784,45.44141049456715],[9.266363589284158,45.44140152657267],[9.266364838587357,45.44139256760892],[9.266366100633944,45.441383599614376],[9.266367349894074,45.4413746316496],[9.266368611982177,45.44136567265598],[9.266369861241522,45.44135670469116],[9.26637112328653,45.44134773669651],[9.266372385373455,45.44133877770279],[9.266373583445123,45.44132980085605],[9.266374564153555,45.44132082451552],[9.266375327456558,45.44131183968028],[9.266376090759334,45.44130285484501],[9.26637686684791,45.44129386997992],[9.266377630150204,45.44128488514461],[9.266378393452271,45.44127590030928],[9.266379169540132,45.44126691544414],[9.26637993284172,45.44125793060879],[9.266380696143068,45.441248945773395],[9.266381459444181,45.441239960938006],[9.266382235531095,45.4412309760728],[9.266382998831734,45.44122199123738],[9.266383570299451,45.44121299784765],[9.266383937148298,45.44120399593345],[9.26638430403934,45.44119500302019],[9.26638467088797,45.441186001105976],[9.266385165638978,45.44117700789487],[9.266385813822021,45.441168014326415],[9.266386462047162,45.44115902975886],[9.266387097443793,45.44115003622014],[9.266387745626238,45.44114104265159],[9.266388393850793,45.44113205808403],[9.266389029246838,45.44112306454525],[9.26638967747099,45.44111407997762],[9.266390185006628,45.44110508673662],[9.266390577425804,45.44109608476267],[9.26639077801259,45.44108707423445],[9.266390339214947,45.44107804719338],[9.266390552587714,45.44106903663536],[9.266391072908828,45.44106004336452],[9.266391605973467,45.441051041062934],[9.266392126294265,45.441042047792024],[9.2663926466149,45.441033054521114],[9.266393179679053,45.441024052219426],[9.266393699999373,45.441015058948494],[9.2663942330632,45.44100605664682],[9.26639476612687,45.44099705434508],[9.266395299190373,45.44098805204333],[9.266395832253718,45.4409790497416],[9.266396339744952,45.44097004749941],[9.266396399473289,45.44096099229379],[9.266396471945265,45.44095192805743],[9.26639723502856,45.440942898216626],[9.266398061914513,45.44093384122405],[9.266399067465214,45.4409247118068],[9.266399911705633,45.44091662688828],[9.266401480133995,45.44090755916728],[9.266403099747981,45.44089850032807],[9.266404719361452,45.440889441488835],[9.266406326146164,45.44088037367839],[9.266407945716303,45.44087130583815],[9.26640982121641,45.440862282406975],[9.266412016703011,45.44085333023891],[9.266414224974856,45.44084437804095],[9.266416433246011,45.440835425842955],[9.266418641516479,45.44082647364492],[9.266420862529879,45.44081751241607],[9.266423070714335,45.44080854221599],[9.26642527894041,45.440799581016805],[9.266427666295746,45.440790646403435],[9.266430220078972,45.44078175640767],[9.266432786647318,45.44077286638197],[9.266435353172549,45.44076396735531],[9.266437906911063,45.44075506835835],[9.266440473392384,45.44074616033054],[9.266443039872907,45.440737252302675],[9.266445606352631,45.44072834427478],[9.266448454417855,45.44071949859815],[9.266451404896445,45.44071067968603],[9.266454355374119,45.44070186077389],[9.266457305808569,45.44069303286065],[9.266460640284764,45.440684303064245],[9.266464141188266,45.44067561788524],[9.266467693276637,45.44066694158798],[9.2664713733922,45.440658300996525],[9.266475053506637,45.44064966040492],[9.266478733577634,45.44064101081225],[9.266482413647523,45.44063236121944],[9.266486093716289,45.4406237116265],[9.266489773783935,45.44061506203344],[9.266493453850456,45.44060641244025],[9.266497159529964,45.44059777178829],[9.266501018765927,45.440589157781574],[9.266504801243098,45.4405805349525],[9.2665085836768,45.44057190312238],[9.266512378895227,45.44056327126228],[9.266516161326635,45.44055463943186],[9.266519956500446,45.440545998570535],[9.266523738929546,45.440537366739854],[9.266527444472976,45.44052869908395],[9.266531111573016,45.440520013515375],[9.266534778629602,45.44051131894572],[9.266538445685068,45.44050262437593],[9.266542304781337,45.44049398336482],[9.266546279076174,45.44048536908828],[9.266550253369804,45.440476754811584],[9.266554291633843,45.44046814938671],[9.266558432310504,45.44045957072615],[9.266562572943577,45.44045098306446],[9.266566726361255,45.440442395372855],[9.266570879693012,45.440433789679105],[9.26657503298118,45.440425174984256],[9.266579429537826,45.44041663173073],[9.26658396690678,45.440408124152995],[9.266588299192872,45.440399509040425],[9.266592695449189,45.44039090277962],[9.266597732054503,45.44038252005245],[9.266602794145319,45.44037411926355],[9.266607856022949,45.4403656734696],[9.266612930346197,45.44035715563786],[9.266618042474995,45.44034852070405],[9.266623191816512,45.4403396426545],[9.266661826593245,45.44028434907238],[9.266667631936954,45.44027630658994],[9.26667345010717,45.440268273078324],[9.266679255447587,45.440260230595285],[9.266685342624696,45.44025230446851],[9.266691519470163,45.440244414136565],[9.26669769635626,45.44023653280528],[9.266703873198294,45.44022864247265],[9.266710050038604,45.44022075213967],[9.266716419087746,45.440212951368736],[9.26672304435937,45.44020525801263],[9.26672966958684,45.44019755565517],[9.266736294812516,45.44018985329733],[9.266742920078748,45.44018215994006],[9.266749468416627,45.4401744217565],[9.266755875897239,45.44016663889579],[9.266762283333723,45.44015884703373],[9.26676869076845,45.44015105517134],[9.266775098201416,45.44014326330857],[9.266781518460773,45.440135480416565],[9.266787964332286,45.440127706465496],[9.266794666426026,45.440120039929134],[9.266801394131862,45.44011238233362],[9.26680810905012,45.440104724767565],[9.266814823924188,45.440097058200145],[9.26682152605304,45.44008940066307],[9.26682810002577,45.44008168041724],[9.266834699610625,45.440073969112284],[9.266841273579775,45.440066248865605],[9.26684786037527,45.44005853758971],[9.266854459912366,45.44005081728263],[9.266861123588363,45.4400431418308],[9.26686813315613,45.4400356095885],[9.26687514267965,45.44002806834474],[9.266882165029445,45.44002053607169],[9.266889174549238,45.44001299482707],[9.266896171281406,45.440005453611874],[9.266903155183579,45.43999790342511],[9.266910151869649,45.43999035320808],[9.26691695642854,45.439982731430476],[9.26692364565956,45.439975055915276],[9.266930334888777,45.439967380399686],[9.266937011330434,45.43995970491353],[9.266943534002268,45.43995195777735],[9.266949646765626,45.43994404957851],[9.26695574669915,45.43993613240819],[9.266961846673365,45.439928224238514],[9.26696794660348,45.43992030706753],[9.266974046531892,45.43991238989619],[9.266980159244333,45.4399044726947],[9.266985862048617,45.43989639443068],[9.266991244529741,45.43988817289713],[9.266996140091802,45.43987972747349],[9.267001035525205,45.439871255046775],[9.267005943573272,45.439862746586094],[9.267010864151173,45.43985418408958],[9.267015797174086,45.4398455495553],[9.267020767916595,45.43983677991677],[9.267061943005283,45.43976449525936],[9.26706575070174,45.43975582734628],[9.267069161786058,45.43974710635281],[9.267072572869326,45.43973838535927],[9.267075983909143,45.43972965536463],[9.267079394990326,45.43972093437083],[9.267082908355949,45.439712213138115],[9.26708648569133,45.4397035007569],[9.267090075768884,45.43969477934472],[9.26709367863102,45.43968605790258],[9.267097268663953,45.43967732748921],[9.26710025747209,45.439668535472414],[9.267103003224241,45.43965971701994],[9.267105761761215,45.43965089853757],[9.267108520297343,45.43964208005515],[9.267110843907805,45.4396332175831],[9.267112886105622,45.439624328765],[9.267114787575668,45.43961542227345],[9.267116676259453,45.4396065158117],[9.267118577770736,45.439597618321024],[9.267120466453346,45.43958871185918],[9.267122048152363,45.43957977911112],[9.267123553094539,45.43957083754124],[9.26712504529302,45.43956190500216],[9.26712655023426,45.43955296343219],[9.267127594722014,45.43954398693342],[9.267128562410736,45.4395349926119],[9.267129402242709,45.43952599858899],[9.26713013966202,45.43951697780204],[9.267130877123533,45.43950796601607],[9.267131614542393,45.4394989452291],[9.267132070507344,45.43948988909526],[9.267132360131669,45.43948080634674],[9.267132636885423,45.43947170562614],[9.267132734428184,45.439462560318795],[9.2671318978141,45.43945324617317],[9.267131086432196,45.43944385996011],[9.267130261713476,45.43943435676435],[9.267129449017103,45.43942469152135],[9.267128583778693,45.439414729365986],[9.267120004522699,45.439365891636136],[9.26711859306896,45.43935668684562],[9.267117015572513,45.4393475184471],[9.267115399677362,45.43933834113719],[9.267113719897162,45.439329172977494],[9.267112040075094,45.43931999581682],[9.267110360211156,45.43931080965513],[9.267108667477347,45.43930160552131],[9.267106974701685,45.43929239238651],[9.267104962626165,45.43928325200589],[9.267102669607706,45.43927418428983],[9.267100019060168,45.4392652164204],[9.267096193809147,45.439256584333634],[9.267092381302463,45.43924794321587],[9.267088581540118,45.43923929306721],[9.267084769035776,45.43923065194917],[9.26708027983015,45.43922221043464],[9.267075496981787,45.4392138596163],[9.267070714092439,45.43920549979675],[9.26706594403248,45.439197148948146],[9.26706116118837,45.439188798129116],[9.267056391088826,45.439180438279095],[9.26705160824754,45.43917208745967],[9.267046608349956,45.43916380015427],[9.267040982894283,45.43915571233266],[9.267035344654673,45.43914762454063],[9.267029706416679,45.439139536748314],[9.267024055394742,45.43913144898556],[9.26701841715997,45.439123361192614],[9.267012778926823,45.43911527339939],[9.267007140695286,45.439107185605856],[9.267001489679817,45.43909909784192],[9.266995851451515,45.439091010047854],[9.26699020039689,45.439082913282355],[9.26698371947071,45.43907507048357],[9.266977149132344,45.43906724589525],[9.266970821297097,45.4390593307299],[9.266965310678165,45.43905118862997],[9.266959084961085,45.439043237221284],[9.266952923003865,45.43903524965916],[9.266946237392657,45.43902738033276],[9.266939896483947,45.4390194021887],[9.266933529878813,45.439011397101055],[9.26692726526298,45.43900332876754],[9.266921358134992,45.43899515158658],[9.26691633219252,45.43898675632327],[9.266911293338875,45.438978334086656],[9.26690619034722,45.438969866994206],[9.266901138075339,45.43896130977248],[9.266875922218746,45.43891188977048],[9.266872480252076,45.43890318477281],[9.266870379958968,45.438894305624125],[9.266868381908143,45.43888541723572],[9.266866383815582,45.438876519846325],[9.266864424080142,45.43886762236739],[9.266862617644113,45.43885869752751],[9.266861399002273,45.43884969930755],[9.26686023141803,45.43884068296629],[9.26685774777646,45.43883184971707],[9.266854075933008,45.43882319926147],[9.266850480676457,45.43881452162385],[9.266847920409436,45.43880570655525],[9.266847800602005,45.43879655275319],[9.266847795609669,45.43878734467679],[9.266847828592407,45.43877805550219],[9.266847912081422,45.43876863119382],[9.26684768812586,45.43875908158786],[9.266846134279282,45.438711469586586],[9.266845631501885,45.43870244269279],[9.266845282192513,45.43869342444192],[9.266844920097794,45.4386844062209],[9.266844557960834,45.438675378998894],[9.266844848009077,45.43866637725839],[9.266845969238497,45.43865740058177],[9.266847090509929,45.43864843290606],[9.26684821173865,45.43863945622939],[9.266849921182102,45.43863049618234],[9.266852142169759,45.438621561944906],[9.266854363114335,45.43861261870646],[9.266856584058226,45.43860367546792],[9.266858804959044,45.4385947232284],[9.266861025901543,45.43858577998974],[9.266863246800966,45.438576827750104],[9.266865480485118,45.43856787548055],[9.26686770138315,45.4385589232408],[9.266869922280485,45.43854997100095],[9.266872155920172,45.438541009730294],[9.266874389559149,45.43853204845958],[9.266876610412014,45.438523087218634],[9.266878844007213,45.43851411694685],[9.266881077601717,45.43850514667494],[9.266883311195514,45.43849617640302],[9.266885544788616,45.43848720613108],[9.26688779112404,45.43847822682822],[9.266890024673351,45.43846924755518],[9.266892270964986,45.43846025925126],[9.26689433826029,45.438451271365004],[9.26689636719874,45.43844228356819],[9.26689838330878,45.43843328680022],[9.266900412203581,45.438424290002374],[9.266902428312344,45.43841529323431],[9.266904457163488,45.43840628743536],[9.266906485971605,45.438397272635434],[9.266908514821468,45.438388266836434],[9.266910556413693,45.43837925200655],[9.266912585177504,45.4383702282055],[9.26691462672606,45.43836120437457],[9.266916655446202,45.43835217157245],[9.266918709736467,45.43834313871059],[9.26692075119832,45.43833409687762],[9.266921782699816,45.43832507540377],[9.266921778628323,45.43831606534791],[9.266921812955323,45.438307064203464],[9.266921834454573,45.43829805408789],[9.266922750886978,45.438289032882544],[9.266924038009858,45.43827999280989],[9.266925337917694,45.43827095270741],[9.266926624997378,45.438261903633766],[9.266927912119044,45.438252863561075],[9.266929211940889,45.43824380545659],[9.26693049901935,45.43823475638282],[9.266931798797987,45.43822568927729],[9.266933098576217,45.43821662217173],[9.266934385568687,45.43820755509597],[9.266935685303713,45.438198478989406],[9.26693698499594,45.43818939388183],[9.266937696689263,45.43818033714981],[9.266938178288653,45.438171289955875],[9.266938647060178,45.43816223379081],[9.266939103046221,45.43815317765557],[9.266939559032124,45.43814412152033],[9.266940027760839,45.438135056354255],[9.266940470918746,45.438125991247844],[9.26694092681946,45.43811691711061],[9.266941382720034,45.43810784297336],[9.266941838578079,45.43809875983512],[9.266942396676152,45.438089667457135],[9.266942941946356,45.43808056610808],[9.266943282693717,45.43807147423743],[9.266943291107602,45.438062401144535],[9.26694329952148,45.43805332805165],[9.266943307892985,45.43804424595779],[9.2669433162221,45.438035154862945],[9.266943324551216,45.438026063768085],[9.266943332795567,45.43801695467129],[9.266943353782828,45.438007836543655],[9.2669434002983,45.43799870935532],[9.266943459514295,45.43798956413528],[9.266943518645489,45.43798040091325],[9.2669435776919,45.43797121968927],[9.266943483272417,45.43796202982242],[9.266943350454717,45.43795283104409],[9.266943230252794,45.43794359623205],[9.266943122624275,45.43793431638535],[9.266943014783847,45.437924991533805],[9.266942932217312,45.43791560361577],[9.266943002480721,45.437906089326106],[9.266943123207016,45.43789643090162],[9.266943319712379,45.43788657427678],[9.266924912271486,45.4377732938299],[9.266913344734352,45.437689808943446],[9.266901932812642,45.437639366602575],[9.266884451413198,45.43758967651104],[9.266876971330175,45.43756781237571],[9.266805909418604,45.43752414298602],[9.266738332119981,45.437495524207556],[9.266716593751188,45.43749753713746],[9.266699156569635,45.43749252820316],[9.26669405739037,45.43748755350358],[9.266678592719005,45.43747243176974],[9.266670053517409,45.43745913910456],[9.266637010372063,45.43740352655181],[9.26655876560157,45.43742827285169],[9.266489495925713,45.43742851528674],[9.26632883337672,45.43743346207293],[9.26624767996128,45.43742694523062],[9.266207474207645,45.437419639945325],[9.26620973405117,45.43741352296165],[9.266193101350652,45.437413732695575],[9.266180351325849,45.43741307828945],[9.266131678806115,45.437410599251706],[9.266102653560475,45.43741004571492],[9.266070252735476,45.43740943701636],[9.266040466791459,45.43729855916957],[9.26604846778209,45.437172696653725],[9.266055440363376,45.43700206522288],[9.266067264105411,45.436783599833525],[9.266070814534526,45.436774608509204],[9.266070959897387,45.43671024154233],[9.266077825427248,45.436565857456955],[9.266086963199866,45.43636898285737],[9.266097064442166,45.43616220483406],[9.26619840793829,45.4359355021296],[9.26624766290862,45.43581999378214],[9.266283323855424,45.435747299140715],[9.266318099693793,45.43563317462998],[9.266367070068451,45.435506181523806],[9.266434849757866,45.43532542619717],[9.266455925628039,45.43525335954279],[9.266474258347788,45.43519065138602],[9.26647407946358,45.43515259528192],[9.266478873808321,45.43513084652878],[9.266515110325537,45.43500669135077],[9.266248831962182,45.43495554640185],[9.266066914789146,45.434870477597514],[9.266063310574522,45.43486798368487],[9.265960418041548,45.43479691652861],[9.265688714189613,45.43465168570283],[9.265513107844223,45.434526987641064],[9.265438723336672,45.43444435045647],[9.265020652410294,45.43393556234563],[9.264928370377364,45.43381994136073],[9.264782926214986,45.43362941045652],[9.264692659857017,45.43351814112721],[9.264521967878764,45.433346741582405],[9.264376506214644,45.43320673320494],[9.264351323126654,45.43318250652198],[9.264136415201394,45.43295136945073],[9.264104215797314,45.432900137695526],[9.264000817921863,45.43273022913383],[9.263932165392424,45.43261739711236],[9.26384662396637,45.432476826697915],[9.2638112085144,45.4324459086971],[9.263810618102763,45.43244540599886],[9.263692820180292,45.43236474000172],[9.263661834925719,45.4323435148971],[9.263593272494544,45.432296561316164],[9.263523111542723,45.4322549760169],[9.263503356755704,45.43224326613026],[9.263498472538652,45.43224037003628],[9.263484191672255,45.43223190592345],[9.263478910065604,45.43222877671626],[9.263464629205048,45.43222031260098],[9.263459347600561,45.43221718339279],[9.263446438397525,45.43220952621213],[9.26344154140229,45.43220663014517],[9.263425888859967,45.4321973500868],[9.263421004650827,45.4321944539895],[9.263419440654527,45.43219352148004],[9.263414543662062,45.4321906254119],[9.26340026282074,45.43218216128847],[9.263394981223364,45.4321790320773],[9.263380700387884,45.43217056795134],[9.263375418792668,45.43216743873933],[9.263355856328173,45.432155836396966],[9.263160886236415,45.432040270336515],[9.263141528987896,45.43202879350001],[9.263136824284484,45.43202600499037],[9.263136247419107,45.43202566427675],[9.263131542716216,45.432022875766854],[9.263111993177297,45.43201128235379],[9.262997772899089,45.431943577951486],[9.26280482003735,45.43182712453501],[9.262418135062006,45.43160211244792],[9.26226499480899,45.43151350609458],[9.26209918058894,45.43141816877223],[9.261997957391271,45.431365636393686],[9.261945984722843,45.43135881561048],[9.261920488303645,45.43135491352947],[9.261896603769749,45.431351250780764],[9.261817744961746,45.43134409545491],[9.261789772448575,45.43134105411511],[9.261779700168495,45.43133860187393],[9.261768783161118,45.43133593553942],[9.26173659375971,45.431327746221825],[9.261703006114482,45.4313185159699],[9.261674966905339,45.431301019027565],[9.261652409798888,45.431283041480825],[9.261553069813498,45.431195202180426],[9.261533726245963,45.43117824338357],[9.261469418747073,45.43112182765907],[9.261376480896647,45.43104162448065],[9.261295246636301,45.43099048596497],[9.2611166180189,45.43089337626787],[9.261019187270918,45.43084227453097],[9.260794159766569,45.430721318345654],[9.260388203981075,45.43050837772352],[9.260281364975672,45.43044597341861],[9.260270524928924,45.43044052543269],[9.260259135065578,45.43043505169364],[9.260248002281008,45.43042988340502],[9.260236331224181,45.43042441930459],[9.260225044586239,45.430419152352066],[9.260213439765003,45.43041419215887],[9.260201053783561,45.43040893670615],[9.260189257295242,45.43040399494868],[9.260177410046332,45.43039913431518],[9.260164834134855,45.43039427533795],[9.26015286045831,45.430389721026096],[9.260140886824972,45.430385175713965],[9.26012891319356,45.43038063040058],[9.260116939811807,45.43037613909176],[9.260104916082133,45.430371818916726],[9.260092930828893,45.43036752565615],[9.260081161246921,45.430362871860744],[9.259900346404361,45.43033734178611],[9.259732582418081,45.430328235756704],[9.259657594514728,45.430322942371646],[9.259581531289927,45.4303145280043],[9.25954772284329,45.43030991517053],[9.259511805154274,45.430305316113795],[9.259490668819264,45.43030145760303],[9.259465299658487,45.43029449431838],[9.259437794141189,45.43028441250047],[9.259422905022037,45.43027408603383],[9.259406459914606,45.430261755854225],[9.259394766348468,45.43025414046133],[9.25938441888824,45.430247359114546],[9.259374840626029,45.430241053079506],[9.25936536488141,45.43023480081765],[9.259356004726081,45.430228665306856],[9.259346542139694,45.43022249402328],[9.259337130854233,45.4302163586269],[9.25932774517908,45.43021023217271],[9.259318359505958,45.43020410571775],[9.259308999484285,45.430197997206044],[9.259299613856376,45.430191879750495],[9.259235178235938,45.430148649627064],[9.25922617567753,45.43014243228535],[9.259217032131923,45.43013613425275],[9.259208233496786,45.430129781431255],[9.259199523978022,45.430123347397426],[9.259190686255657,45.43011683264377],[9.259182027669263,45.430110353487784],[9.259173509127644,45.43010374799868],[9.259164900856511,45.43009708870582],[9.259156356710708,45.430090474272404],[9.25914781252576,45.430083850837356],[9.259139217044186,45.43007719151352],[9.259130647255086,45.43007055913408],[9.259122051777553,45.43006389980898],[9.259113469167822,45.43005725845622],[9.259104873653202,45.4300505901288],[9.259096278222868,45.43004393980269],[9.25908768275342,45.43003728047492],[9.259079138255526,45.43003058502675],[9.259070631904548,45.43002384448614],[9.259062138380225,45.43001711291688],[9.259053708364215,45.43001029119242],[9.259045355051253,45.43000346929355],[9.259036937534956,45.42999658453194],[9.259028340352717,45.42998954715831],[9.259020063500156,45.429982671077916],[9.259011004060488,45.429975184696],[9.259001337960806,45.4299664215341],[9.258989869019361,45.42995478210904],[9.258971786658412,45.429936604873305],[9.25894897778957,45.42990797908381],[9.25882765665763,45.42975573043986],[9.258820335799287,45.42974263243654],[9.258814829323835,45.429732140639565],[9.258808941031662,45.42972201875046],[9.258802085103202,45.42971275415302],[9.258795537992379,45.42970392990917],[9.258789608349906,45.42969595036911],[9.258783305607011,45.42968744961042],[9.258777375967993,45.42967947006971],[9.258771240440263,45.429671193958946],[9.258765323629156,45.42966322338964],[9.25875929098847,45.429655082061586],[9.258753361397309,45.42964711152057],[9.258747329211873,45.42963906920273],[9.258741374139388,45.42963111672082],[9.258735406244089,45.429623155266555],[9.258729412619365,45.42961515786585],[9.258723457510854,45.429607196381994],[9.258717489620603,45.429599234926755],[9.25871152173204,45.42959127347119],[9.258705553845157,45.429583312015296],[9.258699458331224,45.42957539585315],[9.258693311726438,45.42956748880729],[9.258687088217648,45.42955953692961],[9.258680340878621,45.42955164924394],[9.25867374768136,45.429543923228664],[9.258666859112784,45.42953590084543],[9.258658038159474,45.429527423776904],[9.258623849155452,45.42949811257135],[9.258542335608547,45.429446369643514],[9.258524768787067,45.42943465394418],[9.258514988522165,45.42942885235315],[9.258505169827078,45.42942303284594],[9.258495389566194,45.42941723125318],[9.258485570875134,45.429411411744304],[9.258475790659286,45.429405619150835],[9.258465997538991,45.42939979958251],[9.25845620458481,45.429394016017206],[9.258446386065897,45.429388232508856],[9.258436580332358,45.429382448970735],[9.258426774600816,45.42937666543181],[9.258416981654639,45.42937088186308],[9.258407175968115,45.42936510732343],[9.258397370242575,45.42935932378193],[9.258387577343415,45.42935354921171],[9.258377771621873,45.42934776566847],[9.258367978685692,45.42934198209555],[9.258358173009167,45.42933620755162],[9.258348380117997,45.42933043297796],[9.258338574404457,45.429324649431365],[9.25832878147627,45.42931886585501],[9.258318975807743,45.429313091307684],[9.258309182924558,45.429307316730636],[9.258299377219027,45.42930153318063],[9.25828958429883,45.429295749600875],[9.258279804122989,45.42928995699042],[9.258270023949136,45.42928416437912],[9.25826024377729,45.429278371766976],[9.258250450783109,45.42927257018188],[9.258240670615265,45.429266777568046],[9.258230890449417,45.429260984953345],[9.258221110244586,45.429255183336814],[9.258211330082739,45.42924939072045],[9.258201537098579,45.42924358913112],[9.258191756899752,45.429237787512044],[9.25818197674391,45.42923199489311],[9.258172170982432,45.42922619333008],[9.258162390789614,45.42922039170845],[9.258152584991171,45.42921458114271],[9.258142804843342,45.42920878852042],[9.258132999048913,45.429202977952954],[9.258123206080793,45.429197176356816],[9.258113387466096,45.429191356815565],[9.258103607326282,45.42918556418984],[9.258093763067041,45.42917972670258],[9.25808398293124,45.42917393407518],[9.258074125851751,45.429168087614066],[9.258064345719971,45.42916229498493],[9.25805445025364,45.42915643960763],[9.258044670084914,45.42915063797582],[9.258034748974117,45.429144764652534],[9.258024789392579,45.42913886441189],[9.258014765732758,45.42913292831062],[9.258004665129477,45.429126938375575],[9.257994449150972,45.42912087669127],[9.257982928991115,45.42911475494023],[9.257970348065433,45.429108689587096],[9.257954717592362,45.429101064922776],[9.257940063444599,45.42909449118063],[9.257921898775274,45.42908618814504],[9.257350251931706,45.428771258922694],[9.257060645257921,45.42862186220213],[9.256977677950719,45.428581588792746],[9.256854247353948,45.42852626638424],[9.256764165029159,45.428484271588985],[9.256698630079091,45.42845431008149],[9.256694121037176,45.428452249953075],[9.256512798277791,45.42835231272136],[9.256153913945788,45.42814133963474],[9.255935959287655,45.42800236482171],[9.255090417444652,45.42750829421032],[9.254820870460994,45.42736251047768],[9.254366045939816,45.42711652421365],[9.254186682436304,45.427026894149044],[9.25402640921415,45.42691835513544],[9.25385689951295,45.426725253224],[9.253702711268518,45.42652216187262],[9.253576869702593,45.42644050408223],[9.2535236296104,45.426420576694284],[9.253210668765664,45.42630343679288],[9.253166519221079,45.42628103181686],[9.252949551452478,45.42617091555072],[9.252744352653732,45.42607406746468],[9.252544419416093,45.42600268944986],[9.252501862105415,45.425984655226735],[9.252461008112782,45.425967337314766],[9.251989674963413,45.425720873906606],[9.251923986371304,45.42568668847548],[9.25177722185468,45.42561029540219],[9.25185940767843,45.42553973497868],[9.252738607039085,45.4247847918149],[9.252866070969839,45.42468670428778],[9.252943727310722,45.42462433507337],[9.253174971059375,45.42442035389174],[9.253475402495427,45.42416457969056],[9.253564196326224,45.424089142790834],[9.253763099791293,45.42392016530979],[9.253934948174004,45.423769672773524],[9.253945971972298,45.42375948607059],[9.254094240957217,45.42363001817473],[9.25388235302813,45.42350494153781],[9.253869138542491,45.423514016962706],[9.253853043694573,45.423513548625124],[9.253842055327484,45.42351450912615],[9.253590528111234,45.42342024062568],[9.253559534477896,45.423443802178824],[9.253329729215118,45.42335050206824],[9.253215776542953,45.423313291877115],[9.253105115217451,45.42327746945718],[9.25310466720512,45.4232773264312],[9.253038347458212,45.423255897564864],[9.252946683632944,45.423226495741694],[9.252832781098935,45.423194685709625],[9.252731395015738,45.42316634032961],[9.252656424156653,45.423145380411164],[9.252494142731551,45.42309942817718],[9.252349787201759,45.42306038500363],[9.252236113861207,45.423025351480376],[9.252074063134344,45.42297650879052],[9.25193889671059,45.42293418645056],[9.25185909400102,45.42291015827876],[9.251809612527612,45.42289526241277],[9.25177269182151,45.4228852264675],[9.251691334373373,45.42285933837534],[9.251612871265888,45.422828934312626],[9.251564792189571,45.42281030880457],[9.25145568127321,45.42276911672469],[9.251269725545841,45.422699154883],[9.251101945044482,45.422634697508265],[9.251057388279381,45.42261763924367],[9.2510012483493,45.42258840990603],[9.250982774203989,45.422578792277726],[9.250986200782993,45.422555912991335],[9.250938893671531,45.42253544030167],[9.250891343261857,45.42251486011297],[9.250849363684802,45.42249668897968],[9.250694130821264,45.42256117108913],[9.250671956455204,45.42257037379683],[9.250396524663222,45.4226847868776],[9.25039149778962,45.42268687713393],[9.250390111282174,45.42268840135326],[9.250299214856083,45.42272520773226],[9.250263312129103,45.42274012008921],[9.250127279698017,45.42279662945316],[9.250114954862962,45.42280175102139],[9.250113985186074,45.42280214918972],[9.249948837674053,45.422894069278755],[9.249876229330644,45.422921627239894],[9.249771518288643,45.42296212681982],[9.249632167180255,45.42301702264307],[9.249433719032655,45.423096881191526],[9.249372697876728,45.42313769016681],[9.249239701091275,45.42322513759174],[9.249085250451223,45.423276510217676],[9.248913983855564,45.423334985084935],[9.24881876482703,45.423380476737066],[9.248692727767331,45.423440518071224],[9.248519103641138,45.423527089864805],[9.24848947599055,45.42352741526687],[9.248387835080226,45.423531002445316],[9.248260116720044,45.423534178081205],[9.248111489400284,45.42354089135403],[9.247986592458863,45.42354621182367],[9.247862229979722,45.423550990933286],[9.247749366255402,45.423557509214426],[9.247611422688108,45.42354326216517],[9.24759493903517,45.42354156063844],[9.247492640581276,45.423523365811974],[9.247467064755446,45.423517804471295],[9.247431995584009,45.42351018441067],[9.247309501854597,45.42344811679966],[9.247286276539564,45.42343635758786],[9.247212809268213,45.42342273573429],[9.247196473279827,45.423419710671],[9.247095604053657,45.423400891324654],[9.247051661733394,45.42338977089026],[9.246952135790382,45.423365322835885],[9.246951291275973,45.4233651176342],[9.246866757061609,45.423343193445305],[9.24677555617931,45.42331666601936],[9.24664238919268,45.423277807520485],[9.246525392485225,45.42324499875051],[9.246379423098993,45.42320433131526],[9.246261682213861,45.42317080379072],[9.246167497629697,45.423145830489545],[9.246123447125285,45.423127365042525],[9.245966164241619,45.423065613870456],[9.245908544026246,45.4230452872917],[9.245779477972125,45.422999758162916],[9.24573107507435,45.42298268808405],[9.2456934000183,45.42299892597141],[9.245675130206212,45.42300679616108],[9.245669159370866,45.42300937429576],[9.24563340613921,45.42300009895124],[9.245630540185594,45.42293452317605],[9.245516731411854,45.422890806206794],[9.245479909127619,45.42287667252095],[9.245424385159696,45.42285626018856],[9.245392679203682,45.42283702088026],[9.245383093071904,45.422831199739555],[9.245402623884,45.422792768195016],[9.245370211779463,45.42274915544716],[9.245166413777174,45.422627483684714],[9.24514918888697,45.42261981567162],[9.244944529144103,45.42251444632991],[9.244888139775265,45.42248589860426],[9.244698853508476,45.42237660743377],[9.244530259392553,45.422284535802056],[9.24446347019309,45.42224806213656],[9.244384304661024,45.42220482805394],[9.244237874121286,45.42212435604154],[9.244140750098445,45.42207807276081],[9.244119106598577,45.4220682717635],[9.244011672500989,45.42201713178575],[9.243981544832339,45.421999094861995],[9.243823756292857,45.4219046678498],[9.243814520692501,45.4219000339732],[9.243773940416592,45.42187966999004],[9.243768021585332,45.42187649621845],[9.24367569020468,45.42182692592935],[9.243661914180993,45.421818638269364],[9.243650309807713,45.42181005794686],[9.243639994971005,45.42180412119691],[9.24362946366,45.42179837393],[9.243619265524883,45.42179282397648],[9.243609144081741,45.42178727385871],[9.243599112305484,45.4217817685545],[9.24358909335149,45.421776272223184],[9.243579023582019,45.42177084800797],[9.243568890215375,45.42176549593597],[9.243558960506903,45.421759945405405],[9.243549132667141,45.4217543046462],[9.243539279188738,45.421748645938536],[9.243529400187649,45.42174299628548],[9.243519470061917,45.42173734674035],[9.243509527156514,45.42173169722158],[9.24349955865115,45.42172603875536],[9.243489462679037,45.42172046156942],[9.243479315775499,45.42171492949646],[9.243469168873943,45.42170939742259],[9.243458983590793,45.421703856428365],[9.243448862295127,45.42169833329926],[9.243438550010751,45.42169298159647],[9.243428225062567,45.42168765692294],[9.243417900193565,45.421682350250464],[9.24340777906023,45.421676863121725],[9.243397683492132,45.42167137593765],[9.24338757510573,45.42166587977891],[9.243377479541541,45.42166039259304],[9.243367447694386,45.42165486026526],[9.243357466705397,45.42164926482071],[9.243347472975367,45.42164367840354],[9.243337339112742,45.421638200296655],[9.243327192509051,45.42163273121711],[9.24331704586871,45.421627253135625],[9.24330688644871,45.4216217750804],[9.243296688801612,45.421616324108875],[9.243286656699901,45.42161072876686],[9.243276802770819,45.421604953023184],[9.243266948843749,45.42159917727869],[9.243257094880079,45.42159339253229],[9.2432472281368,45.42158760781221],[9.243237399817595,45.42158184101176],[9.243227456658815,45.4215761194601],[9.243217335292728,45.42157056930723],[9.243207124804654,45.42156510035277],[9.243196914318554,45.42155963139741],[9.24318671661603,45.42155416241389],[9.243176518954066,45.421548702430535],[9.243166346857285,45.42154324239186],[9.243156174839623,45.42153780035431],[9.243146028425715,45.42153236726253],[9.243135894833934,45.42152694314364],[9.243125722783544,45.42152149210233],[9.24311561479744,45.421516076928334],[9.24310544313671,45.42151071589527],[9.243095258696307,45.42150535488849],[9.243085265210349,45.42149981345316],[9.243075233227268,45.42149423609439],[9.243065239668091,45.42148867665528],[9.243055207650396,45.421483090293734],[9.243045201313556,45.42147753088],[9.243035067509838,45.421472052746026],[9.243024908222015,45.42146659266749],[9.2430147488976,45.421461123587015],[9.243004589613696,45.42145566350666],[9.242994417473048,45.42145018545052],[9.242984219771195,45.42144470744777],[9.242974073274763,45.42143924733753],[9.242963888242759,45.42143374230274],[9.242953690354058,45.42142821929221],[9.24294353108193,45.42142275920634],[9.242933027557168,45.42141749787474],[9.242922511214223,45.421412227568304],[9.242666904238686,45.42128407253895],[9.242497170318035,45.42116602315812],[9.242474759458739,45.42114998571836],[9.242465785154975,45.421143631969734],[9.242456593952149,45.42113736869106],[9.24244746688977,45.42113115928228],[9.242438314535649,45.421125012934],[9.242429187746538,45.42111886653076],[9.242420251412689,45.421112422687166],[9.242411366668495,45.42110608674658],[9.242402112262582,45.4210999856171],[9.242392348098383,45.421094236609655],[9.242382494580992,45.42108851479405],[9.242372628207173,45.421082775002574],[9.2423627618738,45.42107704421126],[9.242352869902517,45.42107129547125],[9.242343117952931,45.42106541141733],[9.242333582521818,45.42105934688203],[9.242324378642696,45.42105310162168],[9.242315123485803,45.421046820464866],[9.242305868330973,45.421040539307256],[9.242296613139743,45.421034249147915],[9.24228751121314,45.42102793165986],[9.242278523706903,45.42102146991127],[9.242269548984197,45.421015008134916],[9.242260574301975,45.42100855535878],[9.24225161244174,45.42100211155595],[9.242242650583535,45.42099566775236],[9.242233701508853,45.42098922392097],[9.242224663196442,45.42098283428444],[9.242215599361542,45.42097645370232],[9.242206535490249,45.420970064118464],[9.24219745887795,45.4209636835619],[9.242188382190845,45.42095728500266],[9.242179305544209,45.42095089544363],[9.24217036880416,45.42094434356802],[9.242161547022583,45.42093777344616],[9.242152725281478,45.420931212324625],[9.242144056574254,45.420924569868596],[9.242135642806856,45.420917764852554],[9.242127241899778,45.420910977810884],[9.242118790022525,45.42090422688083],[9.242110325442662,45.42089749397923],[9.242101848044927,45.42089075210299],[9.242093383469095,45.420884019200095],[9.24208462568997,45.42087746693894],[9.242075651204258,45.42087105015213],[9.242066663939132,45.420864633391666],[9.242057676714445,45.420858225631434],[9.242048702273248,45.42085181784346],[9.242039651375801,45.420845464223135],[9.24203061330024,45.42083911957602],[9.242021575226705,45.420832774928215],[9.242012575499533,45.42082643019851],[9.242003614003522,45.42082005838391],[9.241994652547918,45.420813695569656],[9.24198557636852,45.420807405006144],[9.241976984388506,45.42080076237498],[9.241968366732436,45.42079409279419],[9.241959710695687,45.42078741429286],[9.241951041725983,45.42078069981381],[9.24194235997689,45.42077398536119],[9.241933499596886,45.42076734329441],[9.241924919527573,45.42076049360899],[9.241916339421952,45.420753634921894],[9.241907733678783,45.42074675828615],[9.241899191576161,45.42073981850752],[9.241891044701928,45.420732643864056],[9.241882897829765,45.42072546922004],[9.24187512173609,45.420718320794606],[9.241867638158698,45.420710829708625],[9.241860180299645,45.42070337457214],[9.241852825077663,45.42069600922904],[9.241845418501677,45.42068858998746],[9.241838050502121,45.42068122467043],[9.241830274727164,45.42067414824996],[9.24182200116976,45.42066723490102],[9.24181390716804,45.42066046518933],[9.24176944714568,45.42063509508347],[9.241733023155513,45.42061488360528],[9.241701049418147,45.420595202777235],[9.241690202954445,45.42058738574511],[9.24167749743965,45.42057822247609],[9.241664855989304,45.420569095074654],[9.24165498021815,45.420564111332254],[9.241645155727666,45.42055916348511],[9.241635200396075,45.42055350482722],[9.24162589756889,45.42054799780862],[9.241616734111924,45.420542202459885],[9.241607581406369,45.420535930029864],[9.241598990661924,45.42052955740012],[9.241590335782513,45.42052313089862],[9.24158152706853,45.420516596708254],[9.241572820914241,45.42051013430933],[9.241564012242634,45.4205036091186],[9.241555267633242,45.42049711979625],[9.241546471747055,45.42049059457715],[9.24153771432198,45.420484096279445],[9.241528905658466,45.42047757108597],[9.241520109740026,45.42047103686378],[9.241511326719948,45.42046452961695],[9.241502594559108,45.420457959254406],[9.241494079070382,45.420451244416306],[9.24148558922303,45.42044454752555],[9.241477073738338,45.42043783268614],[9.241468558255658,45.420431117846064],[9.24146006841434,45.420424420953395],[9.2414515529357,45.42041770611205],[9.241443037459078,45.420410991269996],[9.241434534804135,45.4204042854014],[9.241426019331554,45.42039757055808],[9.241417503899287,45.42039086471515],[9.241409001250393,45.420384158844584],[9.24140048578386,45.42037744399936],[9.241391970319349,45.42037072915345],[9.241383467676501,45.42036402328093],[9.241374952216022,45.420357308433765],[9.241366436757561,45.42035059358594],[9.241357921301125,45.42034387873746],[9.241349405884998,45.420337172889326],[9.241340903213935,45.42033045801256],[9.241332387763547,45.42032374316216],[9.241323872315187,45.4203170283111],[9.241315356907137,45.42031032246039],[9.241306841462807,45.420303607608055],[9.241298326020502,45.42029689275501],[9.241289823399825,45.42029018687541],[9.241281307961561,45.42028347202115],[9.2412727925253,45.42027675716617],[9.241264277091075,45.420270042310605],[9.24125576165886,45.42026332745436],[9.24124725900999,45.42025661257048],[9.24123875636313,45.42024989768602],[9.241230240936977,45.420243182827825],[9.241221738294154,45.42023646794205],[9.241213222833762,45.420229744081574],[9.241204720194974,45.42022302919449],[9.241196217558203,45.42021631430679],[9.241187714923454,45.420209599418406],[9.241179199509405,45.420202884556346],[9.241170696840422,45.42019616066571],[9.241162181430417,45.42018944580234],[9.241153678803729,45.420182730911385],[9.241145176179066,45.42017601601981],[9.241136660775114,45.420169301154544],[9.24112815811622,45.42016257726066],[9.241119655497602,45.42015586236711],[9.241111140099711,45.42014914749988],[9.241102675714243,45.42014240552122],[9.241094198549504,45.42013566356885],[9.24108573416807,45.420128921588876],[9.241077269788647,45.420122179608306],[9.241068805411247,45.42011543762706],[9.24106034103586,45.420108695645176],[9.241051876662485,45.42010195366264],[9.241043412291138,45.42009521167954],[9.241034947921795,45.42008846969573],[9.24102647077319,45.42008172773822],[9.241018019150923,45.42007497672521],[9.24100956753066,45.42006822571156],[9.241001115912422,45.42006147469725],[9.240992664296199,45.42005472368237],[9.240984212720225,45.42004798166778],[9.240975748326754,45.42004123067852],[9.240967296716578,45.42003447966168],[9.240958845108414,45.4200277286442],[9.240950393540496,45.42002098662708],[9.240941941936356,45.420014235608335],[9.240933490334237,45.420007484588965],[9.240925038734135,45.420000733568905],[9.24091657439301,45.419993991576185],[9.240908135578195,45.41998724052797],[9.240899671202872,45.41998048953297],[9.240891219649047,45.41997374751137],[9.240882780878492,45.419967005462254],[9.240874316509228,45.41996025446532],[9.240865877742694,45.41995351241491],[9.2408574261587,45.41994676138981],[9.240848961795482,45.419940010390945],[9.240840523034985,45.41993326833866],[9.240832071457037,45.41992651731159],[9.240823632738774,45.41991978425903],[9.240815181164855,45.41991303323072],[9.240806729631158,45.419906291202814],[9.240798431092282,45.419899458841186],[9.240790170784507,45.41989259939524],[9.240781910440523,45.41988573094764],[9.240773637317314,45.41987886252638],[9.240765351338467,45.41987197612934],[9.240757027056143,45.41986509881342],[9.24074846050545,45.419858357023216],[9.240739945234502,45.41985165112877],[9.240731378726077,45.41984491833831],[9.240722824962717,45.419838176519214],[9.240714258458363,45.419831443727396],[9.240705691917851,45.41982470193391],[9.240697176657038,45.419817996036265],[9.240688610120593,45.41981125424148],[9.24068004358619,45.41980451244605],[9.240671477053832,45.41979777064992],[9.240662897742292,45.41979102888006],[9.240654153002517,45.419784458478354],[9.240645344320516,45.41977787920943],[9.240636573869667,45.4197712728561],[9.240627930965688,45.41976460322612],[9.240619288063744,45.41975793359546],[9.240610658021403,45.41975128193928],[9.24060204076229,45.419744630255536],[9.240593449105788,45.41973798751839],[9.24058498491975,45.419731263502634],[9.24057653351694,45.41972453945938],[9.240568082154297,45.41971782441649],[9.24055966921359,45.41971112729434],[9.240551217854952,45.41970441225017],[9.240542766498317,45.41969769720536],[9.240534379202314,45.419691018029575],[9.240526119529386,45.419684293579344],[9.240517834563166,45.419677632189355],[9.240509102486277,45.41967102574542],[9.240500267818486,45.41966433850669],[9.24049145879147,45.41965766921551],[9.240482495858126,45.41965087423198],[9.240473533651887,45.41964425026695],[9.240376910786841,45.41955464044852],[9.240336491032668,45.41951717282044],[9.240365122286544,45.41950539323425],[9.240582816532271,45.41941586073966],[9.240878148467667,45.41930046623505],[9.241169665272901,45.419168832033264],[9.241588359538262,45.41897864645515],[9.241829798373693,45.41887740500414],[9.24182996425821,45.41887734164577],[9.242161541898126,45.418747879472754],[9.242291318778186,45.41869346305826],[9.242486232196764,45.41860719756849],[9.242585238641771,45.41856337732847],[9.24299648856043,45.41837697381507],[9.243379595586177,45.41822713714522],[9.243692863730436,45.418133416816985],[9.244084533505022,45.417960516726275],[9.244124602233281,45.41794282506975],[9.244192246044134,45.41790590219701],[9.244201805907327,45.41789990505924],[9.24421137854927,45.41789390789336],[9.244221041080912,45.41788800954682],[9.244230972936938,45.417882326650656],[9.244240879229416,45.41787664380824],[9.24425079833944,45.41787096993867],[9.244260717408716,45.41786528706723],[9.244270636476003,45.417859604194916],[9.244280555580053,45.41785393032277],[9.24429048746289,45.417848256422474],[9.244300419343737,45.417842582521274],[9.244310351261353,45.41783691762025],[9.244320283138226,45.417831243717345],[9.244330215051866,45.41782557881462],[9.24434014692476,45.41781990490997],[9.244350078795652,45.417814231004456],[9.244359997922567,45.41780856612641],[9.244369929789485,45.4178028922192],[9.244379861654416,45.41779721831109],[9.244389819195197,45.41779157135058],[9.244399879367844,45.41778601418079],[9.244409978074673,45.41778050193334],[9.244420089560302,45.417774989657644],[9.24443018826319,45.41776947740834],[9.244440286964126,45.41776396515821],[9.244450398443844,45.41775845287981],[9.244460497140839,45.41775294062784],[9.244470608616625,45.41774742834772],[9.24448070730968,45.417741916093966],[9.244490818781525,45.41773640381198],[9.244500930290194,45.417730900530124],[9.244511080294307,45.417725433169494],[9.244521230296467,45.41771996580791],[9.244531380296655,45.41771449844548],[9.244541530256095,45.417709022081105],[9.244551680252364,45.41770355471682],[9.24456183024668,45.41769808735166],[9.244571980239023,45.41769261998558],[9.24458214301015,45.417687152591284],[9.244592292998574,45.4176816852234],[9.244602442985046,45.41767621785461],[9.244612592930737,45.41767074148394],[9.244622742913286,45.41766527411334],[9.244632892893872,45.41765980674185],[9.244643042872491,45.41765433936946],[9.244653321122236,45.41764897973494],[9.244663612267223,45.41764364707524],[9.244673903371444,45.41763830541357],[9.24468419451255,45.41763297275199],[9.244694485612888,45.41762763108846],[9.244704789492008,45.417622289396654],[9.244715080627284,45.41761695673231],[9.244725371721795,45.41761161506597],[9.244735675595086,45.417606273371376],[9.244745864012831,45.41760083291087],[9.244756001150417,45.417595356554735],[9.244766151066763,45.41758988017039],[9.244776288161587,45.417584394811456],[9.244786258483785,45.41757876579099],[9.244884535015002,45.41752360372977],[9.244905185233048,45.417510930977414],[9.244915245305224,45.41750537376221],[9.244925292594738,45.41749981657349],[9.24493533988227,45.41749425938388],[9.244945387128976,45.417488693192404],[9.244955434412564,45.41748313600103],[9.24496549447487,45.4174775787814],[9.244975541715643,45.417472012587254],[9.244985627490852,45.41746649131517],[9.244995828678974,45.417461059805966],[9.24500601708446,45.417455628323175],[9.245015936005156,45.41744994538605],[9.245025765109213,45.41744418163062],[9.245035581430587,45.41743841790167],[9.245045410530642,45.417432654144484],[9.245055226848015,45.41742689041388],[9.245065055905194,45.41742111765402],[9.245074884921483,45.417415335892315],[9.24508471385799,45.4174095361277],[9.245094580784519,45.41740365527099],[9.245099616434064,45.41740070112169],[9.245109625111553,45.417395089992795],[9.245119197727572,45.417389128754735],[9.24512873184401,45.417383131594015],[9.245138265919527,45.41737712543142],[9.24514780003193,45.41737112826909],[9.245157321361635,45.417365131133344],[9.245166521966931,45.41735885565027],[9.245175530198987,45.417352427560104],[9.245184538390102,45.417345990468206],[9.245193559320914,45.4173395443472],[9.245202567469022,45.4173330982529],[9.245211588395742,45.41732665213048],[9.245220609281494,45.417320197006305],[9.24522978403882,45.41731385856575],[9.24523938215086,45.4173078882618],[9.245248980299785,45.41730192695801],[9.245258604046901,45.417295974599654],[9.245268304787185,45.41729009408415],[9.24527800544762,45.41728419556578],[9.245287706144953,45.41727830604761],[9.245297419581995,45.417272407500164],[9.245307633602643,45.41726700293869],[9.245318296811877,45.417262029465576],[9.245328959980437,45.41725704699043],[9.245339610327553,45.41725205554068],[9.245350260633863,45.41724705508892],[9.245360615737951,45.41724176723432],[9.245370932303558,45.41723643445596],[9.245381235930846,45.41723106570002],[9.245383072254192,45.41723011664525],[9.245393491527809,45.41722489165764],[9.245403808165111,45.41721957687837],[9.2454141248394,45.4172142710991],[9.245424377258177,45.41720888444692],[9.24543442440616,45.41720331821234],[9.245444471552165,45.417197751976865],[9.245454518696194,45.41719218574053],[9.245464540160166,45.417186592555076],[9.24547451030494,45.41718095447346],[9.24548448040878,45.41717530738989],[9.24549445051062,45.41716966030547],[9.245504420610489,45.41716401322019],[9.245514365108171,45.41715835718788],[9.245524309487003,45.417152674151644],[9.245534241083229,45.41714699114197],[9.245544172677459,45.417141308131484],[9.245554117011345,45.41713561609165],[9.24556404860159,45.4171299330794],[9.245573992931481,45.41712424103785],[9.245583924439806,45.417118540021846],[9.245593855907158,45.417112830003944],[9.245603800114152,45.41710711095674],[9.2456137443581,45.41710140090971],[9.24562370134168,45.41709568183331],[9.245634248958932,45.41709059156448],[9.245644860711133,45.417085555163524],[9.245655511076071,45.417080581686314],[9.245666482513169,45.41707596756242],[9.245677325440884,45.41707119169372],[9.24568815558618,45.417066415851515],[9.245698857260992,45.4170614872655],[9.245709430582233,45.41705643293887],[9.24572004224337,45.4170513785289],[9.245724876107497,45.41704906386325],[9.24573537238966,45.41704392868986],[9.245745945665371,45.41703886535885],[9.245756518978185,45.41703381102787],[9.245767079469523,45.41702874772235],[9.245777627022413,45.417023648439255],[9.245787751059266,45.41701814501587],[9.245798093261023,45.417012848147984],[9.245808435460846,45.4170075512792],[9.245818777658734,45.417002254409475],[9.245829107074101,45.416996957566255],[9.245839449307121,45.41699166969566],[9.246043063828807,45.41688678313981],[9.246053791156006,45.4168818904696],[9.246064518481344,45.41687699779838],[9.24607524580484,45.416872105126245],[9.246085973087425,45.41686720345201],[9.246096700407204,45.416862310777766],[9.24610742772512,45.416857418102545],[9.24611815500214,45.41685251642529],[9.246128882316343,45.41684762374808],[9.24613964812654,45.416842766991394],[9.24615042679354,45.416837928208196],[9.246161218239237,45.4168330893965],[9.246171996941602,45.41682825961228],[9.246182788383607,45.41682342079851],[9.246193579823773,45.416818581983726],[9.246204358481547,45.41681374319547],[9.246215149918019,45.41680890437866],[9.246225928533047,45.416804056587345],[9.24623669428755,45.41679919082045],[9.246247460040205,45.416794325052614],[9.246258225830083,45.41678946828473],[9.24626899157903,45.416784602514774],[9.246279770106664,45.41677973671635],[9.246290535851916,45.416774870944444],[9.24630131437584,45.41677000514393],[9.246312118576203,45.416765166290496],[9.246322935555245,45.41676032740843],[9.246333752532438,45.41675548852536],[9.24634458224922,45.41675064061274],[9.2463550398828,45.41674546045986],[9.246365523075504,45.41674028025096],[9.246375993446685,45.41673509106762],[9.246386489416084,45.41672991082923],[9.24639699808588,45.4167247125604],[9.246407545095305,45.41671951420792],[9.246418104414152,45.416714207814806],[9.246428828626591,45.41670861303029],[9.246431404425843,45.416707257316],[9.246441399990008,45.4167016280958],[9.246451485367688,45.41669607969107],[9.246461583523894,45.4166905312579],[9.246471681678125,45.41668498282384],[9.246481779830372,45.41667943438891],[9.246491877941528,45.41667387695206],[9.246501976089819,45.416668328515335],[9.246512074236128,45.41666278007767],[9.246522172380457,45.41665723163915],[9.246532270483696,45.41665167419874],[9.246542342945714,45.41664609881047],[9.246552312809708,45.416640442632584],[9.246562205714891,45.41663472361207],[9.246572098618078,45.416629004590646],[9.24658200429976,45.416623285540865],[9.246591897198941,45.4166175665177],[9.246601802876615,45.416611847466164],[9.246611708552297,45.41660612841378],[9.246621601445487,45.41660040938809],[9.24663140452109,45.41659460954532],[9.246640976841556,45.416588648179506],[9.246650561940486,45.416582686785326],[9.246660146998265,45.41657671638932],[9.246669732093164,45.41657075499353],[9.246679317186043,45.41656479359696],[9.24668891505738,45.41655883217199],[9.246698500146227,45.416552870773785],[9.24670816211162,45.416546954214446],[9.246717824114148,45.41654104665532],[9.246727345059691,45.41653503138643],[9.246736814685585,45.41652897122194],[9.246746284348601,45.41652292005772],[9.246755753970447,45.41651685989169],[9.246765223590263,45.41651079972484],[9.246774693208053,45.41650473955723],[9.246784175604287,45.41649867936127],[9.246793645178867,45.41649261019105],[9.246803127571042,45.41648654999349],[9.246812609922022,45.41648048079414],[9.246822105012276,45.416474402565406],[9.246831625739743,45.41646834228276],[9.246841171947752,45.416462263942094],[9.246968647736972,45.41637471411239],[9.246979117789337,45.416369479868635],[9.246989113239437,45.41636385060041],[9.246998557208649,45.416357781468335],[9.247008001215022,45.41635172133653],[9.247017457960624,45.416345652175295],[9.24702690196295,45.41633959204195],[9.247036345924073,45.41633352290676],[9.247045789922359,45.4163274627718],[9.247055246659858,45.41632139360744],[9.247064600877541,45.416315261656074],[9.247073903736311,45.41630907580828],[9.24708329640881,45.41630297077555],[9.24709268904008,45.41629685674109],[9.24710209448895,45.41629075167924],[9.247111487116166,45.416284637643194],[9.247120892521774,45.416278523578775],[9.247130297964562,45.41627241851455],[9.247139703326898,45.416266295447585],[9.247149134287236,45.416260181325576],[9.247158616484821,45.4162540940954],[9.24716834237088,45.41624820436197],[9.247178106517712,45.41624229654287],[9.247188087576468,45.41623630724423],[9.247189719193862,45.41623532259827],[9.247199278575215,45.416229352212156],[9.247208966190025,45.41622348056016],[9.247218717900948,45.41621765377432],[9.247228572245321,45.416211916776774],[9.247238426626918,45.41620618877938],[9.247248255328044,45.41620043383336],[9.247258007070185,45.41619461604516],[9.247267784449575,45.41618881620291],[9.247277831156829,45.41618323180389],[9.247287877862098,45.41617764740403],[9.24729792456538,45.41617206300325],[9.247308202098456,45.41616665812445],[9.247318530908089,45.41616128913829],[9.247328885355012,45.416155938097944],[9.24733936795704,45.41615066778942],[9.247349876196363,45.4161454154267],[9.247360397214132,45.416140163035315],[9.247370943790708,45.41613491058769],[9.247381374870908,45.416129550375715],[9.247391626395785,45.41612404653356],[9.247401672765314,45.41611839011554],[9.247411744654341,45.416112724640364],[9.247421829321729,45.416107059136614],[9.247431465299961,45.416101079564136],[9.247440908942401,45.41609495638934],[9.247450365363175,45.41608883318613],[9.24745983452302,45.41608270095344],[9.24746918818633,45.41607646095667],[9.247477568065905,45.41606965599683],[9.247485986323841,45.41606285995443],[9.247494391760124,45.41605605493807],[9.247502732978422,45.41604917805119],[9.247510676903927,45.41604204999263],[9.247514229430841,45.41603901793569],[9.24752282715467,45.41603234751755],[9.247530937966117,45.416025390117326],[9.247538984716694,45.416018396850745],[9.247546980186756,45.416011367690224],[9.247555270388514,45.41600451791319],[9.247563560588265,45.41599766813554],[9.247571863605643,45.41599082733065],[9.247580153801389,45.4159839775518],[9.247588456775473,45.41597712774467],[9.247596746967204,45.415970277964604],[9.247605037156939,45.415963428183936],[9.24761334016429,45.41595658737601],[9.247621643169643,45.41594974656747],[9.247629779557117,45.41594279810587],[9.247637915981882,45.415935858644694],[9.247646039585028,45.415928910209566],[9.247654175966517,45.4159219617462],[9.247662299604976,45.41591502231094],[9.24767043598247,45.41590807384641],[9.247678572397279,45.41590113438233],[9.247686695990463,45.415894185944296],[9.247694845181615,45.415887246451334],[9.247702930351238,45.41588028009316],[9.24771084894235,45.41587321508304],[9.247718780311816,45.41586615004474],[9.247726698898976,45.415859085033496],[9.247734630225183,45.41585201099304],[9.2477425488084,45.41584494598073],[9.247750480169959,45.41583788094019],[9.247758411490231,45.41583080689806],[9.247766419765568,45.41582379569641],[9.247774492058413,45.415816811358745],[9.247782577168898,45.41580983599388],[9.247791072348035,45.41580311177084],[9.247799580344774,45.415796396520435],[9.247808088300182,45.415789672268424],[9.247816583473274,45.4157829480435],[9.247825181161991,45.41577628660346],[9.247833855687775,45.4157696610007],[9.24784253021153,45.41576303539728],[9.247851204733259,45.41575640979318],[9.24785989199393,45.41574977515973],[9.247868643232698,45.415743158389134],[9.247877458331564,45.415736532478405],[9.247886439218224,45.41572982519777],[9.247892299668223,45.41572558197962],[9.247901832974959,45.41571953058078],[9.247911186608311,45.415713308549684],[9.247920540200278,45.4157070775168],[9.247929893790182,45.41570084648313],[9.24793936283329,45.41569471421053],[9.247948947368942,45.41568868969996],[9.247958531941906,45.41568267418964],[9.247968308925158,45.4156768202811],[9.247978137342248,45.41567103826906],[9.247987978537607,45.41566525622843],[9.24799781973096,45.41565947418699],[9.248007673702578,45.415653692116976],[9.248017527750875,45.41564792804814],[9.248027394538093,45.41564215494971],[9.248037261323299,45.415636381850405],[9.248047115326221,45.415630608778],[9.2480569821074,45.415624835677],[9.248066861666844,45.41561906254745],[9.24807679262083,45.41561335231326],[9.248086928922962,45.415607839656985],[9.24809707808211,45.415602344974154],[9.248107227239283,45.41559685029042],[9.248117389174743,45.41559135557801],[9.248127538327978,45.41558586089244],[9.24813770025949,45.415580366178254],[9.248147875048037,45.41557488943747],[9.248158062654237,45.415569421669055],[9.248168250219102,45.41556394489871],[9.248178656070015,45.415558701682414],[9.248189164633532,45.41555356625549],[9.24819967323452,45.41554843982864],[9.248210181833608,45.41554331340079],[9.24822069043079,45.41553818697196],[9.248231327379894,45.41553318627908],[9.248241977225518,45.415528212560424],[9.248252639849518,45.41552323881308],[9.248263289691396,45.41551826509248],[9.248274055065645,45.41551340813441],[9.248284820477446,45.41550856017632],[9.248295585887394,45.4155037122172],[9.248306351256103,45.4154988552561],[9.248317116662369,45.415494007294946],[9.248327882027379,45.41548915033178],[9.248338647429948,45.41548430236866],[9.24834941279127,45.41547944540347],[9.248360255265577,45.41547468728191],[9.248371316026544,45.41547016271392],[9.248382351107058,45.415465611197355],[9.248393386185795,45.41546105967964],[9.24840443400358,45.41545649913218],[9.248415507261807,45.415451911525075],[9.248420839820414,45.41544971267587],[9.248431875011198,45.41544518815757],[9.248442871583622,45.415440600714334],[9.248453868114847,45.41543600426907],[9.2484648646837,45.41543141682372],[9.248475848470555,45.41542682940506],[9.24848701200661,45.415422430617966],[9.24849798289142,45.41541781622194],[9.248508915197231,45.4154131479021],[9.248519834721009,45.41540847960892],[9.24853075416413,45.41540379331266],[9.248540889950776,45.41539818160494],[9.24864938659854,45.41535251723859],[9.248661192588347,45.415348909134615],[9.248673011435748,45.4153453190037],[9.248684804484515,45.41534167492096],[9.248696302008856,45.41533767143561],[9.248707812351224,45.4153336769223],[9.24871930987231,45.41532967343465],[9.248730807312839,45.41532565194377],[9.248741726801414,45.415320983629435],[9.248752659028924,45.415316306285206],[9.248763578513888,45.41531163796872],[9.248774497957589,45.41530696065024],[9.248785430179673,45.41530228330289],[9.248796349659234,45.415297614983274],[9.248807269097512,45.41529293766166],[9.248818201353656,45.41528826931218],[9.248829120788326,45.41528359198844],[9.248840040221191,45.41527891466368],[9.248850972471926,45.41527424631104],[9.248861891901178,45.415269568984186],[9.24887282410881,45.41526489162847],[9.248883743534453,45.415260214299515],[9.24889467577796,45.4152555459427],[9.248905607980173,45.41525086858389],[9.248916540180584,45.41524619122395],[9.248927472339687,45.415241504861996],[9.248938417277161,45.41523681847116],[9.248949451950546,45.415232194891686],[9.248960806521566,45.415227660625845],[9.248964787064395,45.41522608576997],[9.248975937545124,45.41522164195786],[9.248987088103117,45.41521721614667],[9.248998251439525,45.41521279030658],[9.249009401994016,45.41520836449323],[9.249020565326935,45.41520393865096],[9.249031715877933,45.415199512835414],[9.249042879167845,45.41519507798995],[9.249054042495525,45.415190652144396],[9.249065193041288,45.41518622632561],[9.24907635636547,45.41518180047789],[9.249087519687901,45.41517737462907],[9.249098683008592,45.415172948779194],[9.249109846327531,45.41516852292818],[9.2491210096052,45.4151640880751],[9.249132172920648,45.41515966222192],[9.249143336234344,45.41515523636764],[9.249154512286928,45.41515080148344],[9.249165791330105,45.41514653739466],[9.249177108988784,45.41514233622839],[9.249188426645778,45.41513813506097],[9.249199744301098,45.41513393389245],[9.249211100492884,45.415129777644324],[9.24922258539395,45.415125828139956],[9.249234070293415,45.41512187863441],[9.24924555519127,45.4151179291277],[9.249257040087521,45.415113979619875],[9.24926852498217,45.41511003011085],[9.249280022655363,45.41510608057287],[9.2492915075468,45.415102131061545],[9.24930299243663,45.41509818154907],[9.249314477324864,45.41509423203546],[9.249325974991626,45.41509028249282],[9.249337459876646,45.41508633297692],[9.249348944760055,45.41508238345981],[9.249360429641865,45.41507843394157],[9.249371914522063,45.41507448442221],[9.2493834121808,45.41507053487379],[9.249394897057794,45.41506658535211],[9.24940638193318,45.41506263582922],[9.249417879587096,45.41505868627736],[9.249429364459276,45.415054736752175],[9.249440913586694,45.41505086809563],[9.249452501409131,45.41504708036348],[9.249464102010142,45.415043292602206],[9.249475689829469,45.41503950486765],[9.249487277607658,45.415035708130915],[9.249498878204014,45.41503192036614],[9.24951047883839,45.4150281416012],[9.249522143886505,45.41502447970885],[9.249533821713234,45.415020817787436],[9.249545499538458,45.41501715586484],[9.24955717736216,45.415013493941075],[9.249568855223949,45.4150098410171],[9.249580520264498,45.41500617911882],[9.249592198083668,45.415002517191425],[9.249603875901316,45.414998855262866],[9.24961555371746,45.41499519333313],[9.249627231532088,45.41499153140217],[9.249638909345197,45.41498786947002],[9.24965060013496,45.41498425251388],[9.249662329342792,45.41498065347481],[9.249674045808634,45.41497706346355],[9.249685775053107,45.414973473423146],[9.249697491515963,45.41496988340945],[9.249709207977336,45.41496629339452],[9.249720937217337,45.414962703350525],[9.249732653636105,45.414959104332176],[9.249744382873121,45.41495551428576],[9.24975607360981,45.414951888317816],[9.249767699889663,45.414948136473996],[9.24977926195039,45.41494431276043],[9.24979075963344,45.41494038117307],[9.249802257314885,45.41493644958455],[9.24981375499474,45.4149325179949],[9.249825265453099,45.41492858637615],[9.24983676312975,45.41492465478417],[9.249848260804804,45.41492072319102],[9.249859758478255,45.41491679159673],[9.249871268930212,45.41491285997332],[9.249882766640106,45.414908937377746],[9.249894315667053,45.41490505967435],[9.249905851951958,45.414901190998776],[9.249917362437177,45.41489726837174],[9.249928885700905,45.414893345715676],[9.249940408923385,45.41488941405741],[9.249951932025295,45.41488545539496],[9.249963390392306,45.414881307849654],[9.249975014700615,45.41487711493504],[9.249982925749617,45.41487423529469],[9.249994230076673,45.41486993506426],[9.25000545740414,45.414865562992205],[9.250016697470299,45.41486118189008],[9.250027911934865,45.41485679184172],[9.250039126358017,45.41485239279123],[9.250050353559514,45.41484799371172],[9.250061567939511,45.41484358565805],[9.250072795137516,45.4148391865763],[9.250084022333773,45.41483478749347],[9.250095082553925,45.4148301997515],[9.250105950277405,45.41482543240737],[9.250116753781182,45.414820593193866],[9.250169848963399,45.41479591306869],[9.25018035724416,45.414790786459605],[9.25019086548333,45.41478565084852],[9.250201360940519,45.41478051526444],[9.25021181785709,45.414775334758154],[9.250222249092506,45.41477012730383],[9.250232680365713,45.41476492884955],[9.2502431115973,45.41475972139333],[9.250253542866663,45.41475452293713],[9.250263974094409,45.414749315478986],[9.25027430264293,45.414744009232436],[9.250284592690491,45.41473866706481],[9.250294882775814,45.41473333389727],[9.250305172859198,45.414728000728815],[9.250315424401895,45.414722622638216],[9.250325342310772,45.41471693923945],[9.250335272957997,45.414711246810846],[9.250345190862884,45.41470556341034],[9.250355108726069,45.41469987100803],[9.250365244722056,45.414694376151516],[9.250375393575581,45.41468889926822],[9.25038554242713,45.414683422383995],[9.250395704056778,45.41467794547087],[9.250405852864683,45.41467245958386],[9.250416014450662,45.414666973667906],[9.25042621437482,45.41466148766713],[9.250436452557691,45.41465598357945],[9.250445441313708,45.41465116631042],[9.25045576954917,45.41464579704032],[9.250465995144959,45.414640337983066],[9.250476220699042,45.41463486992387],[9.25048647181123,45.414629401807815],[9.250496607503662,45.41462384393257],[9.250506755815174,45.41461825002435],[9.250516980924147,45.414612682950356],[9.250527103194623,45.41460698108416],[9.250644299591373,45.41454097127274],[9.250570913600592,45.41449991602213],[9.250427242324486,45.41441952680125],[9.250288418918435,45.41433999989702],[9.250111434094737,45.414240069769654],[9.250062002202101,45.414211401329524],[9.249847424105136,45.41410095867734],[9.249788681891765,45.4140678639109],[9.249603602740155,45.41396359413529],[9.248748766551655,45.413495697871085],[9.248576149508537,45.41339970733553],[9.2484091655559,45.41330585556737],[9.248302890720353,45.413248029210074],[9.248134864820672,45.41314949872637],[9.248059293567687,45.413104711134864],[9.24790767365758,45.413016937056376],[9.247791640156974,45.412948330046405],[9.247644874740008,45.41286287638575],[9.247590608174685,45.412835675515836],[9.247485620791347,45.41277962782522],[9.247303570293255,45.412685113944825],[9.247282823474606,45.41267509556577],[9.247134556050058,45.41259361397987],[9.24681651272792,45.412424413870816],[9.246622080712708,45.412462142848135],[9.246346504796858,45.41251922764315],[9.246236484087287,45.41253092295631],[9.246152379549343,45.41251587411702],[9.246075357156796,45.41248658823368],[9.24602059818206,45.41246640853736],[9.245969434202687,45.41244712119436],[9.245955629106335,45.41244346942903],[9.245789136482449,45.41239943387537],[9.245766887164633,45.41239354995639],[9.24570526126592,45.41237824546007],[9.245599936470166,45.412411910771276],[9.245383138221543,45.41247599589288],[9.245154374133989,45.41254517387169],[9.245004753483391,45.41259049998497],[9.2449518763149,45.412606518189094],[9.24476057676714,45.41266278856465],[9.244676660754644,45.412688450231926],[9.244578484850479,45.41271762575758],[9.244563934593687,45.41272195039626],[9.244306074844092,45.41279841676749],[9.244059455844477,45.41287377843867],[9.243985734587636,45.41289579939992],[9.243955582629141,45.412903676671704],[9.243657467717966,45.412492727606754],[9.24364819103752,45.41247816557792],[9.243618848141667,45.412436318934304],[9.243589496711039,45.412392474055665],[9.243548803540236,45.412332289310335],[9.24351996733897,45.41228936142868],[9.243489303739652,45.412240487699],[9.243436805803244,45.41216917567146],[9.243392755581453,45.4121009060191],[9.24333920932978,45.41202348442499],[9.24327943951097,45.41193114320749],[9.243220737823533,45.41184347125993],[9.2431795135111,45.41177844491163],[9.243119501365433,45.41168609512062],[9.243077001622174,45.41162160250976],[9.243004098635177,45.41150913557365],[9.242932768478331,45.411402795001884],[9.242887451190587,45.41133379874698],[9.242832593308519,45.41125115904826],[9.242766173440748,45.41115433111421],[9.242707196522192,45.41106467923142],[9.242660594544414,45.410996963765704],[9.24259859316387,45.41088132304256],[9.242589909296923,45.410861818058336],[9.242598084335846,45.41085496887916],[9.242606259411282,45.41084812870037],[9.242614357771085,45.41084127968264],[9.24262234088529,45.41083437690212],[9.242630208753909,45.410827420358906],[9.242638025349887,45.410820427919425],[9.242645931051856,45.410813354280435],[9.242653709190918,45.410806334918085],[9.24266146161573,45.410799279605406],[9.242669188403251,45.41079220634431],[9.242676863956646,45.41078510618807],[9.242684552287294,45.41077800600422],[9.242692215096161,45.41077091487514],[9.242699877903096,45.410763823745455],[9.24270751503429,45.41075670566644],[9.242715075103506,45.41074949773936],[9.242722660536652,45.41074224475238],[9.242730296969038,45.41073496465338],[9.242738048642998,45.41072773831591],[9.242745825911825,45.410720520924706],[9.242753539475377,45.41071334867373],[9.24276129122044,45.41070614033671],[9.242769043040546,45.41069895000124],[9.242776769338871,45.41069176872054],[9.242784495673751,45.41068459644026],[9.242792209227526,45.41067742418664],[9.24279993567404,45.41067027890842],[9.242807726168436,45.41066316949814],[9.242815529362995,45.41065604205816],[9.242823307112847,45.41064894167497],[9.24283103355157,45.41064179639464],[9.242838785469594,45.41063463305749],[9.242846550049245,45.41062744268953],[9.242854302001875,45.41062028835234],[9.242862104799457,45.41061307089888],[9.24286997156781,45.41060587131127],[9.242877928019295,45.410598725539295],[9.242885859026083,45.41059160682411],[9.242893777444378,45.41058453314068],[9.242901721418967,45.410577459402376],[9.242909652650976,45.41057039469174],[9.242917519946813,45.41056332111514],[9.24292538716362,45.41055622953605],[9.242933267119056,45.41054912892813],[9.242941172592241,45.410542019264405],[9.242949090842565,45.41053490957297],[9.242957034880378,45.410527853832875],[9.242965004320297,45.410520762033826],[9.242972448581005,45.410513383314346],[9.243095770695541,45.41040955453267],[9.243103765582557,45.41040244466749],[9.243111799229036,45.41039543373152],[9.243120050349468,45.41038847633941],[9.243128416865344,45.410381608712484],[9.243136732417105,45.410374777197696],[9.243145086149848,45.41036790959671],[9.243153427178623,45.41036106002431],[9.243161742724352,45.410354228507686],[9.243170058190934,45.41034737898841],[9.243178386396018,45.410340520440336],[9.243186701935725,45.410333688921874],[9.24319503013678,45.41032683037256],[9.243203422308364,45.41031998968885],[9.243211839997489,45.41031313994913],[9.243220308878032,45.41030630810218],[9.243228752507038,45.41029954831711],[9.243237259720722,45.41029271638732],[9.24324585657876,45.410285929271815],[9.243254581534085,45.41027921389211],[9.243263459604634,45.41027244417942],[9.243272248528296,45.41026574666447],[9.243281037411293,45.410259040147864],[9.243289915900004,45.41025236944439],[9.243299012248109,45.41024584229455],[9.243308095853655,45.4102393241722],[9.243317268678938,45.41023275185267],[9.243326378147165,45.41022630568269],[9.24333546193941,45.41021983256328],[9.243344558431444,45.4102133414139],[9.243353757424003,45.41020691305346],[9.243363135822989,45.410200601325016],[9.243372679922878,45.41019419023099],[9.243382148041213,45.41018794131779],[9.243391693140584,45.41018176424886],[9.243401328038649,45.410175667998026],[9.243410937415161,45.41016958080176],[9.243497089731589,45.410117839080556],[9.243529459457278,45.41009107287805],[9.243538406971277,45.410073699689825],[9.243541951814247,45.41005700408655],[9.243532528267313,45.4100378967949],[9.243523713548662,45.41002963454225],[9.243521416835305,45.41002747916599],[9.243510818692084,45.41001755550416],[9.243500786884287,45.41000857575213],[9.243491975650802,45.41000112358939],[9.24348347231294,45.4099939498049],[9.243475263628032,45.40998694641361],[9.243467132082564,45.40998005087087],[9.243458974903847,45.409973137379836],[9.243450766456679,45.40996618799293],[9.243442596464345,45.409959265526936],[9.243434298684074,45.40995234333224],[9.243425988242677,45.40994544816727],[9.243417703399894,45.40993856194828],[9.24340946971369,45.40993168462094],[9.243401261587454,45.409924807238596],[9.243393079175613,45.409917965805384],[9.24338497336244,45.40991110620638],[9.24337682886686,45.40990416567909],[9.243368761355972,45.409897296996306],[9.243360693808446,45.409890419311914],[9.243352549357413,45.40988348778391],[9.243344481775221,45.40987660109731],[9.243336426549396,45.40986961537164],[9.243328537413625,45.40986262029099],[9.243320635500828,45.40985562523691],[9.243312669502169,45.40984858531312],[9.243304767554696,45.40984158125687],[9.243296814338944,45.40983454130475],[9.24328889957784,45.4098275282736],[9.24328098485728,45.40982052424289],[9.243273069868577,45.40981345720445],[9.243265244411736,45.40980640797722],[9.24325741891827,45.409799349748425],[9.243249554974126,45.409792264597556],[9.243241729523149,45.409785215368686],[9.243233904074119,45.409778166139276],[9.243226065578027,45.40977105392931],[9.243218278392606,45.409763986615225],[9.243210567728513,45.409756883133454],[9.2432028439788,45.40974970767014],[9.243195197174748,45.409742595050396],[9.243187563151562,45.409735482403],[9.243179852186632,45.40972830691086],[9.24317223098481,45.40972120323628],[9.243164788304373,45.40971400917056],[9.24315730682619,45.409706707173484],[9.243149915072458,45.40969946799297],[9.243142497724183,45.40969221986526],[9.243135016251754,45.409684917866706],[9.243127586051232,45.4096776517631],[9.2431201557755,45.40967036765696],[9.243112699828137,45.4096630566015],[9.24310526959479,45.40965578149541],[9.243097915959789,45.40964848822377],[9.243090600277874,45.40964110485989],[9.243083323204537,45.40963378442126],[9.243076007487874,45.409626392055415],[9.243068819677967,45.40961902642057],[9.243061631869937,45.40961166078531],[9.243054392716802,45.409604241252026],[9.243047192095059,45.40959686664192],[9.243039978619185,45.40958947405646],[9.243032790471727,45.409582027410075],[9.2430256662207,45.40957458062748],[9.243018554634808,45.40956710681414],[9.24301144301226,45.409559623999314],[9.243004318651234,45.40955215021225],[9.242997194214997,45.40954465842266],[9.24299008263663,45.409537184607515],[9.242982932569289,45.40952967486925],[9.242975782465304,45.40952215612946],[9.242968645373338,45.40951469136825],[9.242961457283293,45.40950725371827],[9.242954205146544,45.409499780199404],[9.242946991541038,45.409492351603795],[9.242939752186988,45.409484878056844],[9.242932538585286,45.40947744946028],[9.242925299273582,45.409469984913386],[9.242918085675672,45.409462556315916],[9.242910846367778,45.409455091768116],[9.242903632773663,45.40944766316966],[9.24289641918145,45.40944023457076],[9.24288916713891,45.40943277904967],[9.242881902512034,45.40942536856041],[9.24287461217522,45.40941792212085],[9.242867360331024,45.409410511603525],[9.242860108488728,45.40940310108571],[9.242852805340265,45.409395645670834],[9.242845553501779,45.40938823515206],[9.242838224760892,45.40938077078939],[9.242830896368591,45.40937338743554],[9.24282350373726,45.40936592320758],[9.242816162608449,45.40935854888092],[9.242808616788743,45.409351120981626],[9.242801032480399,45.409343657159084],[9.242793576617274,45.40933634608223],[9.242786017639546,45.40932882819826],[9.242778445730941,45.40932127433676],[9.242771053613911,45.4093139271187],[9.242763150190832,45.40930654498089],[9.242754979145602,45.40929933443158],[9.242746859371847,45.40929215977733],[9.242738459274115,45.40928517474068],[9.24273007195729,45.40927818967632],[9.242721248776007,45.40927088149629],[9.242711658096724,45.409263394921936],[9.24270178801785,45.409256313989616],[9.24269188126017,45.40924962018196],[9.242682180698331,45.40924333098587],[9.242672173292686,45.409237006435575],[9.242661809967954,45.40923112369383],[9.242651139799491,45.40922520559766],[9.242639919527845,45.40921914464968],[9.24262755251217,45.409213869229674],[9.242615211171898,45.40920862075718],[9.242603421747617,45.40920393818268],[9.242590879144192,45.40919943722657],[9.242578976715157,45.40919522294691],[9.242566998153594,45.40919113484304],[9.24255470200833,45.40918748846575],[9.242542355095594,45.40918392320477],[9.242529957299924,45.40918041205704],[9.242517432640783,45.409177117203555],[9.242505445347378,45.40917397422826],[9.24249294632563,45.40917069731994],[9.24248046050721,45.4091675193945],[9.242445854197419,45.40915832160878],[9.242273520690071,45.40911715563931],[9.242261266066924,45.40911424723346],[9.242249024377523,45.40911137480335],[9.242236744352946,45.40910850245314],[9.242224515598503,45.40910566599746],[9.242212299739336,45.4091028565165],[9.242200096698584,45.40910005600817],[9.241906858603205,45.40902804659751],[9.24189487141333,45.40902491255896],[9.241882897003558,45.40902177849213],[9.241871012084959,45.409018653235904],[9.241859024860673,45.40901551019259],[9.241847050454863,45.409012376121986],[9.241835178203916,45.40900922383191],[9.241823229166522,45.40900604469962],[9.241811356879865,45.40900288340604],[9.241799471202109,45.408999578121765],[9.241787585525746,45.408996272836255],[9.24177577660013,45.4089929853895],[9.241763890888173,45.40898967110046],[9.24175208188861,45.408986365649184],[9.2417402215836,45.40898301529953],[9.24172842521221,45.40897967381467],[9.241716616063432,45.408976332355614],[9.241704768503045,45.40897297297426],[9.241692946578274,45.408969631539726],[9.241681099020688,45.408966272155915],[9.241669289839146,45.40896292169086],[9.24165746784189,45.40895956225061],[9.241645620173514,45.40895617586],[9.241633810919506,45.40895280738922],[9.241622014407351,45.40894942988922],[9.241610166781516,45.408946052495935],[9.241598357493395,45.408942675020484],[9.241586586428017,45.408939270459726],[9.241574814942586,45.40893576688642],[9.241563081833215,45.40893227223195],[9.241551361542358,45.40892878655033],[9.241539602763407,45.408925264944315],[9.241527907841423,45.4089217342012],[9.241516225699653,45.40891820342984],[9.241504492367676,45.40891465476317],[9.24149281022882,45.40891112398941],[9.241481153648929,45.40890759316055],[9.241469484330025,45.40890407135843],[9.24145773822513,45.40890052271393],[9.241446094466646,45.408897000855454],[9.241434450633024,45.40889346099378],[9.241422832205192,45.408889885072846],[9.241411201000068,45.40888630917764],[9.241399493009014,45.40888270644004],[9.24138786184512,45.40887913954351],[9.24137623064439,45.40887556364475],[9.241364586628102,45.40887197877078],[9.24135294265155,45.408868402896616],[9.241341221850854,45.40886479117895],[9.241329666677794,45.40886106209612],[9.241318111429699,45.40885731501014],[9.241306568923601,45.40885355889495],[9.241295013678547,45.40884981180657],[9.241283458396758,45.408846055715955],[9.241271851963246,45.408842290731044],[9.24126028390577,45.40883853466507],[9.241248741330782,45.408834760541936],[9.241237198642542,45.40883095941455],[9.241225655955848,45.40882715828602],[9.241214100530216,45.408823366184265],[9.241202519472132,45.408819556133196],[9.241190964011334,45.40881575502807],[9.241179408552082,45.40881195392172],[9.241167840315642,45.408808152841246],[9.24115625926376,45.40880434278544],[9.241144703770908,45.40880053267458],[9.241133161096583,45.408796731536626],[9.241121605645064,45.408792930424454],[9.241110037339878,45.408789111335935],[9.241098494708442,45.40878531919558],[9.241087015628043,45.40878144591],[9.241075574808939,45.40877755454044],[9.241064057242559,45.40877364532925],[9.241052616464831,45.408769762958386],[9.241041226459503,45.40876579946942],[9.241029849196261,45.4087618269513],[9.241018459117655,45.40875784545799],[9.241007069002423,45.40875385496251],[9.240995653331344,45.40874986451971],[9.240984237661864,45.408745874075734],[9.240972834619837,45.40874184759963],[9.240961482465005,45.40873776700847],[9.240950155869244,45.40873368636238],[9.240938842130259,45.40872962369028],[9.24092756672905,45.40872556093631],[9.240916329742038,45.40872151610255],[9.240905296337282,45.408717263813344],[9.240894646181063,45.40871298371259],[9.24088393113951,45.40870846971861],[9.240873446574977,45.408704063251584],[9.240862923484919,45.40869961185919],[9.240852476839576,45.40869510629817],[9.240842323571469,45.40869047410291],[9.240832336237268,45.40868579655184],[9.24082261603534,45.4086808304019],[9.240812857460783,45.40867585533077],[9.240802893359227,45.40867062866045],[9.240793363773694,45.408665410075585],[9.240783807028533,45.4086598135005],[9.240774557165082,45.40865426128413],[9.240765025522807,45.408648556641246],[9.24075585126604,45.40864275223312],[9.240746586720206,45.40863674998981],[9.240737539643291,45.40863080129473],[9.240728351658992,45.40862477188547],[9.240719407006369,45.40861886797897],[9.240710346660157,45.4086128022952],[9.240701988494976,45.40860658211418],[9.24069366740791,45.40860006481785],[9.240685359101446,45.40859354749402],[9.240677307210474,45.40858722765449],[9.24066933046654,45.40858054761178],[9.240661736130793,45.40857364173619],[9.24065438554613,45.40856696037503],[9.240646778397174,45.40856004552425],[9.240639145616385,45.40855311272469],[9.240631525387153,45.40854612589152],[9.240624262008655,45.408538913279386],[9.24061707488427,45.40853160149411],[9.24060984931123,45.40852426278594],[9.240602598030078,45.408516888126925],[9.240595269773515,45.40850944162046],[9.240587928702045,45.40850198613935],[9.240580804335654,45.408494404186435],[9.24057355252792,45.408486903511104],[9.240566326393905,45.40847942978462],[9.240559177315308,45.40847204590674],[9.240552271223896,45.40846470652295],[9.240545479341026,45.408457177875185],[9.240538738383838,45.40844960411438],[9.24053195897803,45.408442003430686],[9.24052516668095,45.408434375770334],[9.24051833585901,45.40842670318506],[9.2405113768328,45.40841893185667],[9.240504290517904,45.40841127780998],[9.240502121084855,45.408408960084756],[9.240497089273383,45.40840364200666],[9.240489811435225,45.40839602436617],[9.240482508003586,45.40838839777791],[9.240468555067082,45.408376680661945],[9.240408716628165,45.408326454228465],[9.240391993701861,45.40831242063817],[9.240382271696257,45.40830700439865],[9.240353810230213,45.40829115924467],[9.240304062100526,45.408269913133694],[9.240289192397533,45.4082921591154],[9.240271630572053,45.408318416244725],[9.24026614488234,45.408326618779235],[9.240254842802752,45.408346408959915],[9.240243045372464,45.40836389589528],[9.24023909218671,45.40836583943723],[9.240235496078641,45.408367611207936],[9.240222890800757,45.40836934789295],[9.240210168457018,45.40837059876246],[9.240197433143592,45.408371804652205],[9.240184671853296,45.40837291158284],[9.240171936729256,45.408374162474914],[9.24015921438329,45.40837541333874],[9.240147296234687,45.40840363884338],[9.240135428579508,45.408431720222936],[9.240122663445732,45.408434942415845],[9.239547414525772,45.40858028337411],[9.239533145176377,45.40858136638685],[9.239514532401968,45.40858277353174],[9.239462627875941,45.408583476279546],[9.239445013811594,45.40858534938008],[9.239434198673566,45.40859039463945],[9.239423498731707,45.40859548466223],[9.239412773268507,45.408600583738526],[9.239401805501805,45.40860580033539],[9.239391645182895,45.408611582311316],[9.23938228105173,45.408618289734456],[9.23937299336274,45.40862494299023],[9.239364486387108,45.408631882646986],[9.239356221901017,45.408638749786824],[9.239348084858293,45.40864553564936],[9.239339409931258,45.40865204360235],[9.239330619690211,45.40865847978712],[9.239321829447164,45.40866491597116],[9.23931312888082,45.40867140597358],[9.23930442865408,45.40867797698459],[9.239295741279935,45.40868456597026],[9.239287041125072,45.40869115498206],[9.239278353708942,45.40869773496534],[9.239269666290795,45.40870431494802],[9.239260978870632,45.40871089493003],[9.239252240105888,45.408717421012064],[9.239243475705807,45.40872392914486],[9.239234711303714,45.40873043727698],[9.239225703307063,45.40873675689454],[9.239216567065862,45.40874296876624],[9.239207302618059,45.40874908189313],[9.239197896805548,45.40875500629154],[9.239188401729653,45.408760975881364],[9.239178881208103,45.40876697252696],[9.2391693992104,45.408773014096795],[9.239159930027334,45.40877906464009],[9.239150448101448,45.40878512421038],[9.23914099188272,45.40879121973055],[9.239131561143578,45.40879729719445],[9.239122092179977,45.408803401740826],[9.23911261043559,45.408809506313105],[9.239103192469099,45.40881558374794],[9.239093697979822,45.40882169734642],[9.239084356947183,45.40882783762664],[9.239075157350852,45.40883418463603],[9.23906597053121,45.40884053161797],[9.239057180646949,45.408847066792895],[9.239048339835232,45.408853647079155],[9.239039549984813,45.40886019125378],[9.2390307346886,45.40886676248419],[9.239021944796207,45.40887329765642],[9.239013129457994,45.408879859884415],[9.239004352529843,45.40888644003377],[9.238995665126769,45.40889303799754],[9.23898695227787,45.40889966301717],[9.238978264870742,45.4089062609796],[9.238969526346544,45.4089128590482],[9.238960800523271,45.408919439087335],[9.238952036437476,45.408926037207976],[9.238943285128407,45.40893263530126],[9.238934546520275,45.40893921536508],[9.23892578246626,45.40894582248473],[9.238917031340549,45.40895246558111],[9.238908651820328,45.40895935093067],[9.238900784699506,45.40896653224603],[9.23889291757669,45.408973713560876],[9.238885075971554,45.408980885820746],[9.238877298447772,45.40898810295179],[9.238869597746246,45.40899535592629],[9.23886188433974,45.40900262692908],[9.23885400545108,45.40901005129571],[9.23884612656035,45.409017475661784],[9.238840835119753,45.40902635280448],[9.2388364758474,45.409035065980554],[9.238832333813194,45.4090437787028],[9.238828331700502,45.40905233811391],[9.238824354954804,45.40906085246634],[9.238820378132163,45.40906934881652],[9.238816414011374,45.409077827137835],[9.23881241189389,45.40908638654833],[9.23880839669339,45.409094873977104],[9.238802538995243,45.409102807183544],[9.238796335585887,45.409110579091426],[9.23879013213696,45.40911834199788],[9.238783941503025,45.40912611387841],[9.238777763494722,45.40913384972779],[9.2387715345967,45.409141639689715],[9.238765305242524,45.409149321638914],[9.238759075924529,45.40915701258878],[9.238751105504384,45.409163951079236],[9.238742596932846,45.40917054865019],[9.2387340246924,45.409177200360034],[9.238725503792425,45.40918390596873],[9.2387170085238,45.40919062952555],[9.238708500512205,45.40919736210941],[9.23869999246073,45.409204085691606],[9.238691497261778,45.409210827248515],[9.238683053214,45.4092175776992],[9.23867460923992,45.40922434615133],[9.238666178080507,45.409231123577165],[9.23865779811014,45.40923791889782],[9.238649418137758,45.40924471421786],[9.238641038201221,45.409251518538255],[9.238632722308276,45.409258358728906],[9.238624483237782,45.40926523476313],[9.238616231386438,45.40927211082335],[9.238607992311938,45.40927898685638],[9.238599740456594,45.40928586291543],[9.23859151415695,45.40929273892062],[9.238583275038609,45.40929960595075],[9.23857498476503,45.40930646408593],[9.238566719933631,45.4093132951641],[9.238558455138083,45.40932013524267],[9.238550203043726,45.409326957291945],[9.238541950947383,45.409333779340585],[9.238533237561578,45.40934030531399],[9.238523639292266,45.40934608603984],[9.238513977278,45.409351902902266],[9.238504366263715,45.4093576926542],[9.238494729651919,45.40936347345754],[9.238485067593892,45.409369281316444],[9.238475392490248,45.40937502619399],[9.238465025018508,45.409380223446426],[9.238454400946297,45.409385178202925],[9.2384437513523,45.409390142012676],[9.238433101756433,45.409395105821496],[9.23842243941764,45.40940007865695],[9.238411802748164,45.40940507844123],[9.23840128157826,45.40941019499825],[9.238390760368642,45.40941530255322],[9.238380226302631,45.40942039213182],[9.23836970497579,45.4094254726818],[9.23835918364707,45.40943055323078],[9.23834864957538,45.40943564280647],[9.23833797417803,45.40944055265344],[9.23832726025317,45.40944541757416],[9.238316546326473,45.409450282493815],[9.238305806877959,45.40945515646685],[9.238295080206479,45.409460030412156],[9.238284340754262,45.40946490438312],[9.238273601337989,45.40946978735412],[9.238262861882074,45.40947466132304],[9.238252161025503,45.409479598218326],[9.238241485762641,45.40948454406041],[9.238230810497917,45.409489489901524],[9.23822014801022,45.40949443571498],[9.238209472779545,45.40949939055512],[9.23819878461698,45.40950430941673],[9.238188083560326,45.40950920130086],[9.238177344127346,45.40951408426281],[9.238166540382473,45.409518868345394],[9.238155723894646,45.40952366145465],[9.238144920183894,45.409528454536215],[9.238134103692406,45.409533247643395],[9.23812328719909,45.409538040749574],[9.238112470703939,45.409542833854715],[9.238101654206947,45.40954762695879],[9.238090850524806,45.4095524290363],[9.238080085328603,45.40955726703713],[9.238069320168323,45.409562114037975],[9.238058555006193,45.409566961037804],[9.238047815324533,45.40957178998134],[9.238037050158725,45.409576636979146],[9.238026195198884,45.40958140315279],[9.238015365568545,45.40958611526604],[9.238004433478565,45.40959077358482],[9.237993437190202,45.40959536002718],[9.23798244090006,45.40959994646855],[9.237971444608137,45.4096045329088],[9.23796048657571,45.40960910126624],[9.237949490280224,45.40961368770437],[9.237938506761886,45.40961827411493],[9.23792751046284,45.409622860550975],[9.237916411440034,45.40962733018519],[9.237905299561088,45.40963178184287],[9.23789418768039,45.40963623349946],[9.237335643537417,45.409859793187024],[9.237327429250243,45.40985431955398],[9.237282269942893,45.40982423252369],[9.237008196863327,45.40970180958221],[9.236924890208417,45.409665077616886],[9.236884894385419,45.40964732925534],[9.23681581115784,45.40962902002759],[9.23677001638144,45.40961497408622],[9.23672258086821,45.4096058461277],[9.236685125706497,45.40959669749864],[9.236659304514378,45.40958875793961],[9.2366260127486,45.40957898860166],[9.236586032427143,45.40956492155692],[9.236574357501366,45.40955388334032],[9.236549277228802,45.40952441157],[9.236468257999592,45.40943540509659],[9.236444944122193,45.40942807238091],[9.236412498533443,45.409425070065836],[9.23639473075832,45.40942694301337],[9.236370946752832,45.40942945846816],[9.236275353105505,45.409437036876845],[9.236263749951997,45.409446286981165],[9.236247980877135,45.409455545688544],[9.236291939033947,45.40962703403962],[9.23628942308444,45.40962739928131],[9.236255835003567,45.40963239226704],[9.236143105296103,45.40961563995381],[9.23613953697988,45.4096149272316],[9.236056378243696,45.409570579388394],[9.236011961672125,45.40954372171994],[9.235896641567784,45.409472472789616],[9.23589253359446,45.409471050084974],[9.235813927736178,45.40944898842348],[9.23567819799172,45.40941109445248],[9.235674874025431,45.40941075025779],[9.235624503081803,45.409405516370306],[9.235596841667476,45.40939750835257],[9.23556510753633,45.40939040882652],[9.235479845656949,45.40936872968745],[9.235452901554932,45.40935495944788],[9.2353514854248,45.40932361926848],[9.235333803504473,45.409318462007555],[9.23532587617081,45.40931740718461],[9.235231710559733,45.40929953564457],[9.235208167640893,45.40929547055019],[9.235185406473503,45.40929194391024],[9.235138107825328,45.409287963646655],[9.235007197145706,45.40927489303316],[9.234991327487762,45.409272243305594],[9.234877967824733,45.40924813713007],[9.234866681314491,45.40924439784094],[9.234828268764117,45.40923228020194],[9.234765987477605,45.409208366079675],[9.234759849243714,45.409207316546606],[9.234692268153097,45.40919349450418],[9.234686658283668,45.40919351501518],[9.234516856577171,45.40920396251602],[9.234499465574023,45.40920114481801],[9.23443905414628,45.409187469947256],[9.234382744825231,45.409173804641505],[9.23432383930589,45.40915653518115],[9.234312050759936,45.409151896754565],[9.234246394273217,45.409121337442095],[9.234210213286474,45.409132788932524],[9.23420533939379,45.40913154775753],[9.234182837644418,45.40912892049755],[9.234168912711027,45.40912681574191],[9.234108136679538,45.40911765099859],[9.234102268233535,45.409116942920164],[9.234028156096675,45.40911520433945],[9.234019986797396,45.4091143389442],[9.233949959559764,45.409108442443724],[9.23390763216115,45.40910136412221],[9.233860890705744,45.40909298964845],[9.233807103372486,45.409086573797346],[9.233756821572713,45.409074948115475],[9.233688904408233,45.40906010003932],[9.233645655473492,45.409046443691686],[9.233625876209093,45.40903462962856],[9.233590434661407,45.40901152415022],[9.233566029720315,45.40899666814625],[9.233523684011727,45.4089726856344],[9.233476215604808,45.408949091609436],[9.233441854612167,45.408933904856326],[9.233402608675707,45.40891477657298],[9.23338462445758,45.40890439898271],[9.233353812469963,45.40888523547217],[9.233309614446942,45.40885514490522],[9.233256413307858,45.40881716970518],[9.233240011993672,45.40880948019625],[9.2332158844991,45.40879679281886],[9.23320640361515,45.40879393179291],[9.23320050673441,45.408792512638335],[9.233172548058253,45.40877731275133],[9.233143797818078,45.40876228549183],[9.233061656763427,45.40871593514106],[9.232922284755027,45.408639727582525],[9.232583242905537,45.408454013444924],[9.232342262895633,45.40832341998752],[9.232219022054489,45.40825718803537],[9.231972451564824,45.4081246699033],[9.23162398438434,45.407941870373556],[9.231456393001352,45.40785117235649],[9.231375224019462,45.40792035709378],[9.2313721908348,45.407922352474735],[9.231256690002658,45.40798013014639],[9.231239597496756,45.40798144285842],[9.231122396122721,45.4079888356071],[9.231110403027163,45.4079903270197],[9.231085392973185,45.407992924861624],[9.231029499152074,45.4079992215268],[9.231020555658985,45.407999608635045],[9.230931145945389,45.40800025722987],[9.230782464412538,45.40799983720525],[9.23057962834614,45.407999778192575],[9.230434030761906,45.40800041362912],[9.230418182526922,45.40799975246815],[9.23033077282266,45.40799571598617],[9.230130655988509,45.40798555145325],[9.229873832367678,45.4079734302839],[9.229645868445674,45.40796263677424],[9.229611358510795,45.40796077081092],[9.22957687151485,45.40796141610139],[9.229516511690337,45.40795988102076],[9.229422605573838,45.407957774115026],[9.22920669353435,45.40795367038629],[9.228924327191564,45.40794825008135],[9.228523138582574,45.40794124829121],[9.228247427778399,45.40793526394885],[9.228239503664028,45.407934928716365],[9.228059109654993,45.407938672923876],[9.227883825669538,45.407942064624464],[9.227799754082403,45.407932312850484],[9.227796428046132,45.40793141936271],[9.227622591500163,45.40787194401368],[9.227616189921367,45.40786888737248],[9.22719358987146,45.40768432256962],[9.226926170225958,45.40756558863805],[9.226919516064758,45.407563261548816],[9.226659764197807,45.40743800397571],[9.226657199163768,45.40743566876878],[9.226515570396407,45.40733536186861],[9.226489633388066,45.4073169969481],[9.22648811856706,45.407315253731404],[9.226477878080155,45.40732043164402],[9.226467612070456,45.40732561860738],[9.22645721852609,45.40733086883004],[9.226446926991684,45.40733606484313],[9.226436635491293,45.40734126985638],[9.226426164911572,45.40734643021753],[9.226415668198594,45.40735144661168],[9.226405056118894,45.407356373222065],[9.226394392995454,45.4073613179347],[9.226383768133623,45.407366244568365],[9.226373117748993,45.407371180252696],[9.226362441877441,45.407376133988684],[9.226351765968133,45.40738107872259],[9.22634106457188,45.40738604150819],[9.22633040147315,45.4073909952159],[9.226319687402395,45.407395985027854],[9.22630896065898,45.407401001867285],[9.226298208464462,45.40740604575935],[9.22628757109452,45.40741104441771],[9.226276793411076,45.40741610636037],[9.22626597749804,45.40742119538099],[9.226255352900843,45.407426194011066],[9.226244498684506,45.407431292106516],[9.226233631723654,45.407436399227265],[9.226222752018273,45.407441515373286],[9.22621219162854,45.407446594882344],[9.226201927688097,45.407452312883244],[9.226191676488154,45.40745802185688],[9.226181425286153,45.40746373082963],[9.22617140359203,45.40746931333209],[9.226161177906977,45.407475013251414],[9.226150952148133,45.4074806951678],[9.226140751944149,45.40748637703269],[9.226130730242007,45.40749195953157],[9.226120619734171,45.40749770422515],[9.226110522110316,45.40750347589569],[9.226100602952547,45.40750913919924],[9.226090518067222,45.40751490184173],[9.226080471658639,45.40752070041168],[9.22607057909147,45.40752662469233],[9.226060699300705,45.407532548946854],[9.226050959712492,45.407538382912335],[9.226041067139155,45.40754430719044],[9.226031174563737,45.40755023146763],[9.226021282022103,45.40755616474503],[9.2260114535858,45.40756215190159],[9.226001766212383,45.40756826479416],[9.225992091615359,45.407574377660694],[9.225982493973786,45.40758056238327],[9.22597302454492,45.40758685486508],[9.225963567820758,45.40759312931881],[9.225954111130333,45.4075994127728],[9.225944654401982,45.407605687224915],[9.225935210450011,45.40761196165104],[9.22592576646013,45.40761822707533],[9.22591652746132,45.40762462711069],[9.225907429453684,45.40763113488021],[9.225898344222445,45.40763764262375],[9.22588924624646,45.40764415939287],[9.225880135489883,45.407650676186464],[9.225871101724552,45.40765727383733],[9.225862298722198,45.4076640600552],[9.225853482975056,45.40767085529866],[9.22584465448312,45.40767765956771],[9.225835800467886,45.40768447288756],[9.225827446101292,45.407691609260404],[9.22581950161157,45.40769898785351],[9.225811569826659,45.40770634841877],[9.225803650782396,45.4077136999572],[9.225795629901908,45.407721150708326],[9.225787787238096,45.40772843008596],[9.225779854836256,45.40773563763128],[9.225772011989404,45.40774287200266],[9.2257642202904,45.40775011527363],[9.225756428589403,45.40775735854408],[9.225748649664933,45.40776460178874],[9.225740857959964,45.40777184505809],[9.225733066324596,45.40777910632899],[9.225725261872915,45.40778635862356],[9.225717444712302,45.407793628944816],[9.225709870842792,45.40780102480113],[9.225702527450093,45.40780853721658],[9.225695184019655,45.4078160406306],[9.225687840587275,45.4078235440441],[9.225680509859902,45.40783102942983],[9.225673204651878,45.40783850576361],[9.225665899370348,45.40784596409484],[9.225658645022119,45.40785337731955],[9.225651390815122,45.40786082654797],[9.225644174977633,45.40786828470135],[9.225636971809436,45.407875715825945],[9.225629768675132,45.407883155951104],[9.225622578317491,45.40789059605059],[9.225615387922176,45.40789802714862],[9.225608184782212,45.40790546727239],[9.225601007090129,45.40791288034219],[9.225593803946387,45.407920320465074],[9.225586638993324,45.40792772450767],[9.225579423031489,45.40793515565379],[9.225572206817352,45.40794252379216],[9.225564939630193,45.40794992803501],[9.225557723376527,45.40795728717139],[9.225550456185589,45.407964691413305],[9.225543188992757,45.40797209565472],[9.22553597273345,45.407979454789746],[9.225528718315397,45.40798685900507],[9.225521451116892,45.40799426324512],[9.225514234816172,45.40800161337764],[9.225506980428214,45.40800902659262],[9.225499648866265,45.4080163139437],[9.225492189623951,45.40802362854927],[9.225484730343956,45.408030934153366],[9.225477334776144,45.40803819462577],[9.225469875492324,45.408045500228816],[9.225462416206579,45.408052805831424],[9.225455020633058,45.40806006630242],[9.225447561343488,45.408067371903996],[9.225440102087745,45.408074686506176],[9.225432693694177,45.40808193799979],[9.225425080734025,45.40808916289273],[9.225417365006969,45.408096252970985],[9.225409585635255,45.40810340618188],[9.225401819004421,45.40811055036608],[9.225394103271553,45.40811764044272],[9.225386323893973,45.40812479365207],[9.225378557257283,45.40813193783463],[9.225370854297191,45.40813902788453],[9.225363100506687,45.40814619004291],[9.225355448728626,45.40815329799318],[9.225347720527179,45.4081604691012],[9.225339992323772,45.408167640208724],[9.225332340504185,45.40817473915633],[9.225324612296895,45.408181910262826],[9.22531697325207,45.40818900918427],[9.225309245040888,45.408196180289664],[9.225301605956489,45.408203270209036],[9.225293788076725,45.4082103874833],[9.225285931251763,45.40821735181487],[9.225277985296065,45.40822439733139],[9.22527015395302,45.40823134360942],[9.225262208029132,45.40823839812588],[9.225254376646497,45.40824533540179],[9.22524655804057,45.408252272652],[9.22523852244609,45.408259273336704],[9.225230511728228,45.40826610295071],[9.225222513751344,45.40827292353797],[9.225214515808249,45.4082797531257],[9.225206505048877,45.408286573736966],[9.225198110821356,45.40829336809926],[9.225189805470881,45.4083000182682],[9.225181487375533,45.408306677462676],[9.225173182056864,45.408313336631394],[9.225164863957605,45.40831999582469],[9.225156545856397,45.408326655017376],[9.225148227788933,45.40833332321047],[9.225139896940865,45.40833999142813],[9.225131399575684,45.40834656096065],[9.225122851058224,45.408353121592064],[9.225114302538778,45.40835968222288],[9.225105728531458,45.408366260905396],[9.225097141814881,45.40837285761448],[9.225088350209457,45.40837934671275],[9.225079404865491,45.408385737100595],[9.225070434033563,45.408392145540134],[9.22506148872125,45.40839854492759],[9.225052543442603,45.40840495331542],[9.22504357260461,45.408411361752805],[9.225034627321916,45.40841777013922],[9.225025656515552,45.40842418757622],[9.225016711193117,45.408430586960215],[9.225007753089994,45.4084369863686],[9.224998782277547,45.408443403803496],[9.224989824241739,45.40844982121255],[9.224980878911214,45.40845622059369],[9.224971908057002,45.40846262902543],[9.22496296272243,45.40846902840517],[9.224954004642841,45.40847543681035],[9.22494505930423,45.40848183618868],[9.22493610122059,45.40848824459244],[9.224927168620942,45.40849463494319],[9.224918197754576,45.4085010433707],[9.224909265150897,45.40850743372003],[9.224900307059162,45.408513842120996],[9.224891323408032,45.40852025057149],[9.224882326690862,45.40852658703809],[9.224873266113889,45.40853293263062],[9.224864256542682,45.408539251118825],[9.224855195961661,45.40854559670991],[9.224846186386413,45.40855191519667],[9.224837125801349,45.4085582607863],[9.224828065214252,45.408564606375215],[9.224819055632961,45.408570924859816],[9.224809995041825,45.408577270447296],[9.224800985420847,45.40858357992947],[9.224791924825661,45.40858992551549],[9.224782915236315,45.40859624399724],[9.224773854637073,45.40860258958184],[9.224764845008055,45.4086088990611],[9.224755784440418,45.4086152536453],[9.2247467238351,45.40862159922773],[9.224737714200042,45.40862790870487],[9.224728653626316,45.408634263286885],[9.224719618429802,45.408640572812814],[9.224710532152038,45.40864689143942],[9.224701420065378,45.40865314710825],[9.224692256968723,45.408659429879876],[9.22468314487802,45.40866568554725],[9.22467399455603,45.40867196829229],[9.224664869682577,45.408678223983266],[9.224655719356537,45.40868450672688],[9.224646556249748,45.40869078949482],[9.224637431405855,45.40869705418467],[9.22462826829501,45.408703336951106],[9.224619130703962,45.4087096106656],[9.22460998036779,45.4087158934055],[9.224600829993962,45.40872216714362],[9.22459167965373,45.40872844988204],[9.224582529311473,45.40873473261974],[9.224573378967179,45.40874101535668],[9.224564215842122,45.40874729811801],[9.224555065493774,45.40875358085345],[9.2245459407721,45.40875988154013],[9.224536790455302,45.40876617327518],[9.224527640100858,45.408772456008464],[9.22451848978,45.408778747742026],[9.224509339421502,45.408785030473844],[9.224500189096583,45.40879132220595],[9.224491051512775,45.408797604911186],[9.224481901183793,45.408803896641814],[9.224472750852767,45.40881018837171],[9.224463600484125,45.408816471099875],[9.224454450113448,45.40882275382725],[9.224445312555103,45.408829045529885],[9.224436162180366,45.40883532825575],[9.224427011803606,45.408841610980964],[9.224417874239167,45.40884790268136],[9.224408736601518,45.40885417637897],[9.224399586254261,45.40886046810296],[9.224390448612564,45.4088667417991],[9.224381298225664,45.4088730245206],[9.224372109322509,45.40887926231137],[9.22436290767414,45.40888550912747],[9.224353731545701,45.40889174689167],[9.224344504264574,45.40889797575437],[9.22433528965346,45.40890417758809],[9.22432604955393,45.40891039747331],[9.224316834974351,45.40891660830656],[9.22430763313596,45.40892281011302],[9.224298393030352,45.40892902999595],[9.224289191187928,45.40893523180092],[9.224279976529125,45.40894142462915],[9.224270736453017,45.40894765351088],[9.224261534568972,45.40895384631254],[9.22425231993969,45.40896004813959],[9.224243002900268,45.40896620516106],[9.224233672902221,45.40897231720161],[9.224224330123368,45.40897842926646],[9.224214961820474,45.408984550381646],[9.22420561900203,45.40899065344392],[9.224196276181571,45.4089967565054],[9.224186933359102,45.40900285956613],[9.224177565048128,45.40900898067825],[9.224168235000423,45.409015083712404],[9.224158904915162,45.40902117774475],[9.224149587606698,45.409027271751285],[9.224140283003935,45.40903334772992],[9.224131003921249,45.409039414656725],[9.224121609365234,45.409045364794515],[9.224112112043649,45.40905118011623],[9.224102640206649,45.40905697738505],[9.22409346156956,45.409062594056465],[9.22408409171047,45.40906832811615],[9.224074721778413,45.409074044172996],[9.22406524762398,45.40907925637102],[9.22405548030125,45.40908465816581],[9.224045725933136,45.409090104939914],[9.22403615007576,45.40909545235138],[9.224026306465367,45.409100953305234],[9.224016437402005,45.409106481311404],[9.224006299022253,45.40911176681417],[9.223995981204228,45.4091169176507],[9.22398565064102,45.409122077512365],[9.223975294553808,45.40912724642418],[9.223964925721393,45.40913242436109],[9.223954493135016,45.409137638426344],[9.223944111519966,45.40914281638638],[9.223933729938535,45.40914800334658],[9.223923322833054,45.40915319935682],[9.223912903017844,45.409158413393236],[9.223902483094191,45.40916360042562],[9.223891921997815,45.40916863471442],[9.223881271234676,45.40917361517107],[9.22387064599183,45.40917858657571],[9.22385999522494,45.409183567030404],[9.223849369978367,45.40918853843304],[9.223838731951073,45.40919350985969],[9.223828081178569,45.40919849031139],[9.223817455926383,45.40920346171104],[9.223806805150145,45.40920844216078],[9.223796167115376,45.409213413583494],[9.223785529114227,45.40921839400621],[9.22377489107572,45.40922336542691],[9.223764253035352,45.40922833684664],[9.223753615028592,45.409233317266384],[9.223742900062987,45.409238225826805],[9.22373219783889,45.409243125360156],[9.223721469984275,45.409248006940444],[9.223710742092335,45.40925287951867],[9.223700001455159,45.40925776112188],[9.223689273559522,45.4092626336981],[9.22367853291865,45.409267515299334],[9.223667792275926,45.40927239689955],[9.223657051595886,45.40927726949772],[9.223646323728312,45.4092821510709],[9.223635583080036,45.40928703266809],[9.223624842394436,45.409291905263224],[9.22361410174245,45.40929678685837],[9.223603361088623,45.40930166845252],[9.22359262043293,45.40930655004569],[9.223581879739925,45.40931142263673],[9.22357117759443,45.409316349158146],[9.223560539589593,45.409321338560964],[9.223549901582889,45.40932632796276],[9.22353927642408,45.40933133534069],[9.223528664006817,45.409336333691655],[9.223518038844253,45.40934134106759],[9.22350741364436,45.4093463394415],[9.223496788478048,45.40935134681552],[9.223486176053274,45.4093563451625],[9.223475550883201,45.40936135253448],[9.223464938454677,45.409366350879495],[9.223454313245401,45.40937134924846],[9.223443700813137,45.40937634759155],[9.22343308841443,45.4093813549346],[9.223422488721866,45.409386344249626],[9.223411863540518,45.40939135161574],[9.223401263844215,45.40939634092883],[9.223390664146033,45.40940133024091],[9.22338003895906,45.40940633760402],[9.223369439257146,45.40941132691416],[9.2233588138893,45.409416289270105],[9.22334812444803,45.409421206744575],[9.223337422226004,45.409426124243005],[9.223326681771686,45.4094310688184],[9.22331592864286,45.40943604042088],[9.223305150166828,45.409441066078436],[9.223294116571301,45.4094462092474],[9.223283058442902,45.40945161349536],[9.223272052454876,45.40945727867261],[9.22326098267636,45.4094629709767],[9.223249594414415,45.40946891593222],[9.223238539428309,45.40947512126847],[9.223227867452938,45.40948123584516],[9.223216928959053,45.40948781899854],[9.223172207016919,45.409514981592054],[9.223134087887809,45.4095314019666],[9.223094616376988,45.40954188423355],[9.223075732204562,45.409545953557085],[9.223064496200138,45.409548378763425],[9.223031674969077,45.409550432003506],[9.223014355144667,45.409549349632364],[9.223000844429661,45.40954851186429],[9.222988107853794,45.409546304417],[9.222975523741892,45.40954387164336],[9.222963384029038,45.4095407089123],[9.22295180605957,45.40953741006849],[9.222941645950264,45.40953395544143],[9.22293174053664,45.40953027528943],[9.22292173091315,45.409526091277456],[9.222911426456918,45.40952167381031],[9.222900890214309,45.409516806738395],[9.22289044367333,45.40951200249847],[9.222879970763305,45.40950699128345],[9.22286960005108,45.40950197086725],[9.222859139676254,45.40949689661812],[9.222848653745478,45.40949182241782],[9.222838167781243,45.409486739215524],[9.22282764341149,45.40948163808482],[9.22281717012391,45.40947652785255],[9.222806747706484,45.40947135451247],[9.222796325290954,45.40946618117145],[9.222785877284197,45.40946099887818],[9.222775442058254,45.40945581655904],[9.222765006869533,45.40945064324002],[9.222754571612072,45.409445451917925],[9.222744149135409,45.40944026057],[9.222733713917087,45.40943507824706],[9.222723278630031,45.40942987792106],[9.222712856159099,45.409424686570254],[9.222702433619434,45.40941947721642],[9.222692023895892,45.409414276837765],[9.222681601360051,45.40940906748203],[9.222671178826133,45.4094038581253],[9.22266075632943,45.409398657768634],[9.222650346578225,45.409393448385096],[9.222639924050041,45.409388239025525],[9.222629501559084,45.40938303866597],[9.222619066291148,45.4093778383304],[9.222608631131035,45.40937266499695],[9.222598183158654,45.40936748268639],[9.222587735188172,45.40936230037481],[9.222577287219607,45.409357118062296],[9.222566852067118,45.40935194472502],[9.222556404102368,45.40934676241057],[9.222545956139523,45.409341580095195],[9.222535533701047,45.40933638872804],[9.222525136645759,45.40933115230505],[9.222514752335973,45.40932590685519],[9.222504380806987,45.409320661379525],[9.222493996465762,45.40931540692671],[9.222483612161742,45.409310161474004],[9.222473240638509,45.40930491599547],[9.222462856303054,45.4092996615398],[9.222452472004798,45.40929441608424],[9.222442087673187,45.40928916162669],[9.222431703343496,45.409283907168145],[9.222421319015732,45.40927865270869],[9.222410934725167,45.40927340724932],[9.22240053762239,45.40926815281277],[9.222390153300395,45.409262898350455],[9.222379768980328,45.40925764388717],[9.222369371883323,45.40925238944777],[9.222358974858773,45.409247153009495],[9.222348552278447,45.40924191661995],[9.22233814244363,45.40923667120356],[9.222327758168438,45.40923142573658],[9.222317348337471,45.40922618031828],[9.222306951252015,45.40922092587313],[9.22229655420375,45.40921568042809],[9.222286157192654,45.409210443983106],[9.222275772927075,45.409205198511394],[9.222265375884572,45.40919995306345],[9.222254991622824,45.40919470758975],[9.222244594619411,45.40918947114098],[9.22223422314036,45.40918422564059],[9.22222385159273,45.40917896213714],[9.222213480082273,45.40917370763378],[9.222203121352571,45.40916845310464],[9.22219276262479,45.409163198574554],[9.222182378306018,45.409157935092146],[9.222172019582075,45.40915268056014],[9.222161660860055,45.40914742602723],[9.222151289325891,45.40914216251713],[9.222140892412142,45.409136944060904],[9.22213048275671,45.40913173462962],[9.22212006028913,45.40912651622109],[9.222109650602293,45.409121297786854],[9.222099240917373,45.40911607935162],[9.222088831234375,45.40911086091542],[9.222078421553286,45.40910564247828],[9.222067999060068,45.40910041506395],[9.222057589382818,45.4090951966249],[9.222047166858232,45.4090899602076],[9.222036706104756,45.40908475086688],[9.222026181564756,45.40907956865233],[9.22199920470387,45.40906635337102],[9.221974058745726,45.40905403464166],[9.221963572729575,45.409048897352115],[9.22195308668013,45.40904375106053],[9.221942587888972,45.409038613793825],[9.22193210187853,45.40903347650136],[9.22192156493074,45.40902838431232],[9.221911002532813,45.409023319175],[9.22190044010158,45.40901824503559],[9.221889877707422,45.40901317989629],[9.221879315315151,45.40900811475599],[9.221868727472732,45.409003076667425],[9.221858126853396,45.408998038602626],[9.22184753901473,45.40899300051208],[9.221836963921564,45.40898795339469],[9.22182642699077,45.40898286119679],[9.221815877318255,45.40897777802374],[9.221805340391237,45.40897268582387],[9.221794803466114,45.408967593623],[9.221784253799266,45.408962510447],[9.22177371687793,45.40895741824416],[9.22176317995848,45.40895232604037],[9.221752655749379,45.40894721580875],[9.221742157029409,45.40894208752451],[9.221731658311336,45.40893695923932],[9.22172115959516,45.40893183095314],[9.221710648102107,45.40892670269077],[9.221700149389731,45.40892157440262],[9.22168965067925,45.40891644611354],[9.221679151970676,45.408911317823446],[9.221668640485213,45.40890618955718],[9.22165812903681,45.40890107029097],[9.221647604846678,45.40889596004958],[9.22163709347236,45.40889085878348],[9.221626556507248,45.4088857485649],[9.221616032357947,45.40888064732163],[9.221605508175395,45.40887553707632],[9.221594984029883,45.408870435831076],[9.221584459851117,45.408865325583804],[9.221573935709397,45.40886022433661],[9.221563411569566,45.40885512308847],[9.221552887396488,45.408850012838265],[9.221542363225304,45.40884490258707],[9.221531839091151,45.40883980133598],[9.221521314958899,45.408834700083936],[9.221510790793399,45.40882958982981],[9.221500266664933,45.40882448857576],[9.221489742503225,45.4088193783197],[9.221479218378537,45.40881427706371],[9.221468694220626,45.408809166805696],[9.221458170099726,45.40880406554774],[9.221447645945602,45.40879895528774],[9.22143712182849,45.40879385402786],[9.22142659767816,45.40878874376597],[9.221416073564834,45.40878364250409],[9.221405485770335,45.40877859537118],[9.221394885269195,45.40877356626408],[9.221384284769922,45.408768537156014],[9.221373684237435,45.4087634990459],[9.221363083741927,45.408758469935805],[9.221352483248308,45.408753440824746],[9.221237472161228,45.40869731635564],[9.22122701155451,45.40869210694013],[9.221216525357178,45.40868688857204],[9.221206372040134,45.408681831579294],[9.22119593703166,45.408676631112534],[9.221185502025104,45.4086714306448],[9.221175067055533,45.408666239177194],[9.221164632052803,45.40866103870755],[9.221154197087051,45.408655847237995],[9.221143762088149,45.40865064676642],[9.221133327091152,45.40864544629388],[9.221122892131133,45.40864025482146],[9.221112457137968,45.40863505434701],[9.221102009367998,45.40862985389629],[9.221091574413718,45.40862466242097],[9.221081126717696,45.40861947997041],[9.221070666279928,45.40861430654462],[9.221060205879128,45.40860914211892],[9.221049719992921,45.408603995743704],[9.221039234108618,45.40859884936756],[9.221028748226214,45.40859370299041],[9.221018262345721,45.408588556612294],[9.221007776467127,45.408583410233234],[9.220997290590434,45.408578263853165],[9.220986804715643,45.40857311747216],[9.22097631884276,45.40856797109016],[9.220965832971775,45.408562824707204],[9.220955347102688,45.40855767832326],[9.22094487401421,45.408552531913685],[9.220934388148931,45.408547385527825],[9.220923876798233,45.40854225719238],[9.220913378263175,45.40853713783239],[9.220902866916274,45.40853200949504],[9.220892355571277,45.40852688115671],[9.2208818570419,45.408521761793786],[9.2208713457007,45.408516633453495],[9.220860859883752,45.408511496061834],[9.220850373998655,45.40850634066717],[9.220839888150488,45.40850119427253],[9.220829415047895,45.40849603885123],[9.220818929203531,45.40849089245464],[9.220808456104736,45.4084857370314],[9.220797970264181,45.4084805906329],[9.220787484390518,45.40847543523242],[9.220777011297438,45.40847027980622],[9.220766525462588,45.40846513340481],[9.220756039594635,45.408459978001396],[9.220745566542282,45.408454831573344],[9.220735080678136,45.408449676168],[9.220724594850903,45.408444529762704],[9.220714108990572,45.408439374355396],[9.220703623167143,45.40843422794815],[9.220693150124289,45.408429081515294],[9.22068266426967,45.40842392610505],[9.220672178451954,45.408418779694856],[9.220661692601144,45.40841362428274],[9.220651206787233,45.40840847787064],[9.220640720975227,45.408403331457556],[9.220630235130132,45.40839817604249],[9.220619647512477,45.40839313783717],[9.220609034409339,45.40838811768222],[9.220598408599404,45.40838311555301],[9.220587731921563,45.40837817652868],[9.220577042466932,45.408373237527954],[9.220566365757835,45.40836828950058],[9.220555676306926,45.40836335049785],[9.220544999636536,45.40835841146947],[9.220534322967996,45.40835347244011],[9.220523633522665,45.408348533434385],[9.220512956857847,45.40834359440301],[9.220502267416235,45.40833865539523],[9.220491514362974,45.408333788517965],[9.220480748602835,45.40832893966644],[9.220469982879504,45.40832409981489],[9.220459178926955,45.40831928703932],[9.22044831136269,45.408314546394195],[9.220437443765281,45.40830979674699],[9.220426576204648,45.4083050560998],[9.220415708610881,45.40830030645054],[9.220404802613098,45.40829553887198],[9.220397531972226,45.40829236648643],[9.220386651639632,45.40828762586],[9.22037572047388,45.408282957339374],[9.220364776531296,45.40827828884235],[9.220353845334202,45.40827361131851],[9.220342901395213,45.40826894281939],[9.22033195745803,45.408264274319166],[9.220320924526433,45.40825972300372],[9.220309891631537,45.408255180688265],[9.22029885870348,45.4082506293707],[9.220287813033485,45.408246087077686],[9.220276780143895,45.408241544758994],[9.220265747221136,45.40823699343814],[9.220254650721378,45.408232523248735],[9.220243388939473,45.40822826940309],[9.220232114450488,45.40822403358302],[9.220220839963185,45.40821979776178],[9.220209565477566,45.40821556193948],[9.220198290993627,45.40821132611604],[9.220187016476451,45.40820708129044],[9.220175741995874,45.40820284546473],[9.22016446751699,45.408198609637935],[9.220153142169698,45.4081944369157],[9.220141778662777,45.40819030927133],[9.220130427936116,45.40818618160124],[9.220119064467399,45.40818206295564],[9.220107611968901,45.40817805249354],[9.220096159472021,45.408174042030275],[9.220084706976753,45.408170031565874],[9.22007325448311,45.408166021100314],[9.220061814769684,45.40816201060903],[9.220050362279267,45.408158000141164],[9.220038909790471,45.40815398967212],[9.220027482686046,45.40814993414755],[9.22001606839675,45.40814588759834],[9.220004641295588,45.408141832071514],[9.219993226939774,45.40813776751787],[9.219981799841877,45.40813371198872],[9.219970385524213,45.40812965643388],[9.219958958429572,45.40812560090242],[9.21994753133657,45.4081215453698],[9.219936167894062,45.408117426705935],[9.219924842509982,45.40811323595885],[9.219913529871302,45.408109036184996],[9.219902217234303,45.40810483641009],[9.219890904598975,45.40810063663398],[9.219879592000183,45.40809644585784],[9.219868279368201,45.408092246079505],[9.219856966668159,45.408088028297925],[9.219845768523907,45.40808369328066],[9.219834557602782,45.40807935828683],[9.219823346683365,45.40807502329193],[9.219812173961994,45.40807065221805],[9.219801141144556,45.40806610985315],[9.21979010829403,45.40806155848615],[9.219779075480123,45.40805701611906],[9.219768042667985,45.40805247375097],[9.219757098924372,45.40804783219845],[9.219746167891431,45.408043172618235],[9.219735236825436,45.408038504035936],[9.21972431857467,45.40803384442908],[9.21971338747743,45.408029166843605],[9.219702469160577,45.40802448923255],[9.219691627203444,45.408019730463835],[9.219680823339997,45.40801490861313],[9.219670019478391,45.40801008676137],[9.21966722890648,45.40800884096534],[9.219656412303438,45.40800402813786],[9.21964562118972,45.407999197258206],[9.21963484282158,45.40799435735197],[9.21962405171154,45.40798952647027],[9.219613260568503,45.40798468658649],[9.21960246946214,45.407979855702735],[9.2195917165192,45.40797497973915],[9.219580976321861,45.40797009474895],[9.219570248835288,45.40796519173115],[9.21955953409433,45.4079602796867],[9.21954881935522,45.407955367641286],[9.219538104617962,45.407950455594865],[9.219527377138817,45.40794555257298],[9.219516738763339,45.40794055936798],[9.219506214979065,45.4079354579288],[9.219495691161866,45.407930347487536],[9.219485167381377,45.407925246046375],[9.219474643567978,45.4079201356032],[9.219464119791274,45.4079150341601],[9.219453596016468,45.407909932716],[9.219443059430196,45.407904822294384],[9.21943259934315,45.4078996667195],[9.219422126444659,45.40789450216714],[9.219411666326621,45.4078893375893],[9.219401231593624,45.40788412795624],[9.21939080967588,45.407878927298746],[9.219380387725257,45.407873717639234],[9.219369965811342,45.40786851697985],[9.21935954386455,45.407863307318436],[9.219349134663426,45.4078580886305],[9.219338738173196,45.40785285191508],[9.219328341684882,45.40784761519861],[9.219317945198492,45.407842378481256],[9.219307548714026,45.40783714176293],[9.219297152231471,45.40783190504364],[9.21928675575084,45.407826668323395],[9.219276359272126,45.40782143160219],[9.219265975573867,45.40781619485554],[9.21925557909899,45.40781095813248],[9.21924518266081,45.40780573040947],[9.219234798898768,45.40780047565786],[9.219224440626181,45.40779520285424],[9.219214082320756,45.407789921048646],[9.219203736795789,45.407784639217596],[9.219193378494218,45.40777935741009],[9.21918303297311,45.40777407557717],[9.219172674675395,45.407768793767794],[9.219162329158134,45.40776351193294],[9.219151970864289,45.40775823012169],[9.219141625350879,45.40775294828498],[9.21913126706088,45.4077476664718],[9.219120908772814,45.40774238465765],[9.219110550451928,45.40773709384154],[9.219100192167723,45.407731812025496],[9.219089833850703,45.40772652120748],[9.21907947557035,45.40772123938958],[9.21906910444394,45.40771593959309],[9.219058733354212,45.407710648796694],[9.219048349418426,45.407705340021714],[9.219037927253272,45.40770005832234],[9.219027453976025,45.40769477671986],[9.219016891042813,45.40768944128138],[9.219005969653598,45.40768393550702],[9.219001603640313,45.4076817295917],[9.218991232667314,45.40767646579223],[9.218980849021916,45.40767122901945],[9.21897046534371,45.407665983244684],[9.218960081667422,45.40766073746894],[9.218949685214561,45.407655491716696],[9.21893930154212,45.40765024593904],[9.218928917871592,45.40764500016044],[9.218918534202992,45.40763975438089],[9.218908150536311,45.407634508600346],[9.218897766871546,45.40762926281891],[9.21888738324342,45.40762402603751],[9.218876986804009,45.407618780278604],[9.218866603145011,45.407613534494324],[9.218856219487927,45.40760828870904],[9.218845835867475,45.40760305192389],[9.21883545221423,45.4075978061367],[9.218825055784434,45.40759256037302],[9.218814672169731,45.40758732358498],[9.218804288522254,45.407582077794935],[9.218793892098219,45.407576832028376],[9.218783508489272,45.4075715952375],[9.218773124847553,45.40756634944461],[9.218762741207756,45.40756110365075],[9.218752357569882,45.407555857855975],[9.21874197389924,45.40755060305917],[9.218731603008992,45.40754534823701],[9.21872121937688,45.40754010243937],[9.21871084849047,45.407534847615274],[9.218700464827524,45.4075295928147],[9.218690081166494,45.40752433801313],[9.21867971032053,45.40751909218724],[9.21866933944181,45.40751383735934],[9.21865895578655,45.40750858255497],[9.218648572167886,45.40750333675062],[9.218638226747842,45.407498054867915],[9.218627881295061,45.40749276398319],[9.218617548657337,45.40748748207416],[9.218607203208407,45.40748219118756],[9.218596857796076,45.40747690930105],[9.218586525094798,45.4074716093871],[9.218576217917702,45.40746630042232],[9.218565897929427,45.40746098247999],[9.218555577977737,45.40745567353775],[9.218545270771779,45.407450355569146],[9.218534950823955,45.40744504662499],[9.218524656331004,45.407439710627976],[9.218514387327586,45.40743435657911],[9.218504105582301,45.40742901155478],[9.218493823804316,45.40742365752844],[9.218483554841356,45.40741831247779],[9.218473273101896,45.40741296745068],[9.218462991329721,45.40740761342154],[9.218452709594132,45.40740226839254],[9.218442440604287,45.40739691433715],[9.218432158872574,45.407391569306256],[9.218421877108167,45.40738621527337],[9.218411595345694,45.40738086123958],[9.218401288132197,45.40737553425679],[9.218390968176829,45.407370216298496],[9.218380609818842,45.40736488041035],[9.2183796623448,45.40736439615894],[9.21836935517192,45.407359078174274],[9.218359035222543,45.40735376021305],[9.218348728053538,45.407348442226535],[9.218338408108028,45.40734312426345],[9.218328100942882,45.407337806274995],[9.21831778103586,45.407332497311074],[9.218307473839968,45.40732717031976],[9.218297153902189,45.407321852352894],[9.218286795838782,45.40731658846452],[9.218276424964262,45.40731131559855],[9.218266066870088,45.40730604270725],[9.21825569603404,45.40730077884044],[9.218245337943712,45.40729550594723],[9.2182349670769,45.407290233077454],[9.218224609025034,45.40728496918341],[9.218214098153188,45.407279840596615],[9.218203600096247,45.407274720985505],[9.218193089228196,45.40726959239677],[9.218182565687426,45.407264490834514],[9.21817201666093,45.40725940732218],[9.218161480380134,45.407254314783394],[9.218150931357417,45.40724923126908],[9.218020877058894,45.40718406811112],[9.218025690716583,45.40717641699216],[9.218179625058939,45.40693163527601],[9.218248317041862,45.40682070053919],[9.218365314262307,45.406634208224794],[9.218571691651023,45.406307451704414],[9.218541963765476,45.40629936249051],[9.218507298309495,45.40628993253277],[9.21846642633279,45.40627814712412],[9.218470712760983,45.40626966888949],[9.218474986375073,45.40626118167808],[9.218479196685932,45.40625284760631],[9.218483470332133,45.40624436939561],[9.218487756755238,45.406235891160314],[9.21849203036425,45.40622740394821],[9.218496266053217,45.40621902482173],[9.218500539694327,45.40621054661035],[9.218504762152191,45.40620205049429],[9.218508882522041,45.406193590577544],[9.218513028239101,45.40618507660552],[9.218517109994796,45.406176544753286],[9.218521191749263,45.4061680129009],[9.218525260758998,45.40615949007384],[9.218529342511017,45.40615095822109],[9.218533424261812,45.406142426368255],[9.21853750604604,45.40613390351628],[9.218541600433925,45.406125335634506],[9.218545682215696,45.40611681278223],[9.218549751183442,45.406108280953156],[9.218553858241815,45.40609968604335],[9.218557939985255,45.40609115418953],[9.218562149647532,45.406082658095656],[9.218566487193943,45.40607418876061],[9.21857104179414,45.4060656740051],[9.21857555840516,45.406057249333145],[9.218580075049493,45.406048833662055],[9.2185845788797,45.406040409014096],[9.218589158926758,45.406031867205876],[9.218593675532407,45.406023442533176],[9.218598179358587,45.40601501788465],[9.21860278481915,45.40600644002281],[9.218607288642628,45.40599801537394],[9.218611805277568,45.40598959970153],[9.2186163218765,45.40598117502784],[9.218620939901712,45.40597254313453],[9.218625840292104,45.40596423474151],[9.218630830197212,45.40595594417942],[9.218635972571489,45.405947428297836],[9.218640962473641,45.405939137735295],[9.218646310612115,45.40593096350233],[9.218652169387937,45.40592266227749],[9.218657862948163,45.40591459539714],[9.218663556541445,45.40590653751754],[9.218669389860043,45.40589826334379],[9.218675236995304,45.40589025917681],[9.2186814544857,45.405882200294805],[9.218687557491618,45.40587427664806],[9.218693736886982,45.405866280846],[9.218699865306949,45.40585832114555],[9.218705942786237,45.40585040654772],[9.218711994742332,45.405842500999434],[9.218717726897733,45.405834506051114],[9.21872302390296,45.405826331912166],[9.21872822017339,45.405818545013545],[9.218733174317824,45.40581092959878],[9.21873749994174,45.40580269430861],[9.218741863655843,45.40579439593765],[9.2187462654254,45.40578602548484],[9.218750692611074,45.405777618978746],[9.218754620826216,45.40576905140656],[9.218758510740656,45.405760492908556],[9.218762477495787,45.40575197926908],[9.218766406193042,45.4057435377111],[9.218770296936526,45.40573519523787],[9.2187739708334,45.40572695219142],[9.218776289907805,45.40571862172472],[9.218777369544467,45.40571030262935],[9.218778349627593,45.405702676810265],[9.218778139339165,45.40569453120294],[9.218777084311602,45.40568602716651],[9.21877369114368,45.40567759060929],[9.218769098366433,45.40566955239516],[9.218763474037454,45.40566241626491],[9.21876132425067,45.40565830686616],[9.218760579863195,45.40565746218478],[9.218751361631805,45.405652799232065],[9.218742620039718,45.4056491344911],[9.218733011379962,45.40564594846638],[9.21872180647155,45.40564302652518],[9.218710629339942,45.405640680601145],[9.21869896664361,45.40563833560428],[9.218686717788076,45.40563641477918],[9.218673843398767,45.40563464816743],[9.218661225645942,45.40563316009825],[9.218648646505274,45.40563174396284],[9.218636016149052,45.405630300920585],[9.218623436489638,45.40562874976669],[9.218611009439432,45.40562700929626],[9.218598786492002,45.40562517842341],[9.218586742576559,45.40562338321158],[9.218574942484393,45.40562185756608],[9.218561403089288,45.40561994819438],[9.218547170873979,45.405617311054314],[9.218533587775648,45.405614006589936],[9.21852064198684,45.405610286855236],[9.218509423556053,45.40560716689441],[9.218497579002761,45.40560404812842],[9.21848541465344,45.40560083996075],[9.218473594550282,45.40559743310985],[9.218461952994597,45.40559393590561],[9.218450285295415,45.40559028573113],[9.218438528047592,45.4055866087231],[9.218426681216544,45.40558289588043],[9.218414181703132,45.40557892325031],[9.218402122911792,45.4055732575677],[9.218390493138944,45.40556617788961],[9.218380352545875,45.40555757417908],[9.218372218278667,45.40554901164338],[9.218365948012268,45.40554003149778],[9.218360498137955,45.40553172486956],[9.21835563619254,45.40552345312331],[9.218350416948834,45.405515308074456],[9.21834485325422,45.405507307700645],[9.218339315221057,45.405499334280876],[9.218333802953202,45.40549141481838],[9.218327884006266,45.40548407220313],[9.218319961544754,45.40547741749599],[9.218312462005496,45.405471086021294],[9.218304668919977,45.40546484511747],[9.218297185796631,45.405459458727634],[9.218288590850086,45.40545403845433],[9.218278385877086,45.4054486212524],[9.21826870598077,45.4054435090857],[9.218258488198956,45.4054380829053],[9.218248283231706,45.40543266570065],[9.21823756513947,45.405426727409264],[9.218227525701927,45.405421156868016],[9.21821748626636,45.40541558632587],[9.21820753648631,45.405410069618505],[9.218197497054673,45.40540449907459],[9.218187572869086,45.405398991317796],[9.21817752073257,45.4053934387986],[9.218167482067885,45.40538806627507],[9.218157302570521,45.40538262201036],[9.21814706032668,45.40537747490119],[9.218136767214888,45.40537239089595],[9.218126294901895,45.405367226221344],[9.218116014606387,45.405362151190836],[9.218105696082525,45.40535710323567],[9.218094995777342,45.40535246105761],[9.218084282661346,45.40534780990188],[9.218073569547107,45.4053431587451],[9.21806281806611,45.40533849865934],[9.218051977867152,45.40533402776508],[9.218040767869265,45.40532975559921],[9.218029519573717,45.405325492506286],[9.218018181730352,45.40532120257964],[9.218006843854127,45.40531690365077],[9.217995365249106,45.40531255998332],[9.217983976195335,45.40530824314749],[9.21797277725748,45.405303520897995],[9.217961757178472,45.40529878930555],[9.217950647517302,45.405294021878255],[9.217939907416813,45.40528899271346],[9.21792967729643,45.40528366553929],[9.217919345230706,45.40527841056732],[9.217803538029804,45.40521854866008],[9.217792883672582,45.40521254719762],[9.217782026079107,45.405206861160075],[9.217771463589136,45.4052014895988],[9.217760875683387,45.40519615408945],[9.217749828153478,45.4051909184662],[9.217739037116646,45.4051859253838],[9.217728105213643,45.40518085155846],[9.217717275087326,45.40517566052391],[9.217705754747184,45.40517041679506],[9.217694148001245,45.40516596532776],[9.217681660200805,45.40516167755582],[9.217669419600883,45.40515854145506],[9.217658673813649,45.40515534850221],[9.217648015782117,45.40515171432673],[9.217636831820629,45.40514755008492],[9.217625850616823,45.405142944401604],[9.217614869449303,45.40513834771827],[9.217604093006482,45.40513382265337],[9.217593392818927,45.405129189429076],[9.217583382330737,45.40512447388191],[9.21757402431199,45.40511996411863],[9.217564436361044,45.40511547279408],[9.217556983463528,45.40511127444528],[9.217549502355112,45.40510638306368],[9.217541377557149,45.405100241750446],[9.217532637420133,45.405093579542005],[9.217524254618532,45.40508679963885],[9.21751603744903,45.40507989340458],[9.217508138729256,45.405072725531845],[9.21750012494128,45.40506553987503],[9.217492303617227,45.40505856087751],[9.217484787275215,45.40505114024488],[9.217476682461623,45.40504354070813],[9.217468731778213,45.4050361479035],[9.21746071658668,45.40502859320083],[9.217452203817542,45.40502123746789],[9.217442899923915,45.405014171273855],[9.217433356941495,45.40500806865289],[9.21742348145991,45.405001894654134],[9.217412687695393,45.40499617245552],[9.217400821589289,45.40499071332612],[9.217389111819111,45.404986036995524],[9.217377633087034,45.404981630258206],[9.21736602671565,45.4049772597667],[9.217354753363983,45.40497309566699],[9.21734345566437,45.40496924665153],[9.217332017271636,45.40496536189774],[9.217320820936756,45.404961287659525],[9.217309675060369,45.40495704230315],[9.217298835338172,45.40495266134744],[9.217288442671485,45.404948234535915],[9.217278074631984,45.40494356464656],[9.217268012781174,45.404938768159106],[9.21725830912624,45.40493407900392],[9.217247671447232,45.40492906758139],[9.217237826274445,45.40492412666195],[9.217227736084732,45.404918601134305],[9.217217850205321,45.40491303921336],[9.217207413708028,45.40490717229902],[9.217196951863768,45.40490135943851],[9.217186017860087,45.404895709493594],[9.217176209654642,45.40489040845396],[9.217166541215672,45.404884900122454],[9.217152060072499,45.40487391024441],[9.21711728412003,45.4048486651101],[9.217111655777371,45.40484040376559],[9.217104854007303,45.404832702716966],[9.217097274373026,45.40482541719541],[9.217088674887043,45.404818754685735],[9.217078839220763,45.4048129496272],[9.21707776354008,45.40481233959243],[9.217066998465477,45.40480741840588],[9.217055445226823,45.404803560845565],[9.217043587007526,45.40480014491741],[9.217031576074834,45.40479689129788],[9.217019411430746,45.40479353895634],[9.217015369534014,45.404792475490936],[9.217003194350507,45.40478970824026],[9.216991006562376,45.40478698601786],[9.216978805963151,45.40478425481724],[9.216966605227478,45.40478148761115],[9.216954442207346,45.4047785583121],[9.21694433786709,45.40477600315465],[9.216932288921203,45.40477283060683],[9.216920405091232,45.40476939671217],[9.216908546440068,45.40476586375632],[9.216896954577555,45.40476192524307],[9.216885629538275,45.40475759017371],[9.216876901360692,45.4047540242762],[9.21686618732277,45.40474907597063],[9.216855791598096,45.40474383002376],[9.216846198163104,45.40473787146698],[9.216836604626975,45.40473188590622],[9.216827278258565,45.40472559380027],[9.216817835791572,45.404719013877894],[9.21681508130267,45.40471711986265],[9.216806226790826,45.404710583830564],[9.216798379564246,45.40470347881851],[9.216790443032313,45.404696409979586],[9.21678622434473,45.4046925474937],[9.216778937216578,45.40468488334969],[9.216773296299182,45.40467665801654],[9.216768203523864,45.404668089602055],[9.216766887571572,45.40466478868559],[9.216763263973027,45.40465614547809],[9.216760023435276,45.40464742953569],[9.216757332001071,45.40463862254164],[9.216754819388413,45.40462979720648],[9.216754400145991,45.40462374024901],[9.216754365674293,45.40461471219386],[9.216754190577927,45.40460566640288],[9.216755421315675,45.40459668995715],[9.216756393789156,45.404590351328125],[9.216808165663894,45.40459260251455],[9.21685063368132,45.40459444826131],[9.216943800078768,45.40459850214692],[9.216935122121,45.40459135371386],[9.216927767863542,45.40458284360148],[9.21692157422165,45.40457376421748],[9.216917795276885,45.40456459924449],[9.21691516385903,45.404554784015104],[9.216914859721065,45.40454541442872],[9.216914632525128,45.40453611670542],[9.216915899815268,45.40452668113159],[9.216917116991265,45.40451750668515],[9.216919203434928,45.40450842960273],[9.216921852547731,45.404499468467876],[9.216924476482477,45.40449060639293],[9.216927164993251,45.404481924217876],[9.216929891389395,45.40447312495634],[9.216931940975117,45.404464434991546],[9.216933210978173,45.40445571050055],[9.216934505676466,45.40444676093474],[9.216935750054391,45.40443801849003],[9.216936265135805,45.40442902539701],[9.216936767439293,45.40442003232817],[9.21693728252039,45.40441103923508],[9.216937491760499,45.40440226274877],[9.216937585140727,45.40439326145424],[9.216937678520932,45.40438426015965],[9.216938014059387,45.40437509638575],[9.216938708062921,45.40436611195442],[9.216939427071384,45.404356983457745],[9.21694036357662,45.404347926557584],[9.216941543202822,45.4043389592075],[9.216942722691057,45.4043299558532],[9.216943902282127,45.404320979502],[9.216945082148017,45.404312075159254],[9.216946121458358,45.404303171083],[9.216946879623661,45.40429425853876],[9.21694761226765,45.40428535504403],[9.216947834008309,45.40427650652488],[9.216947953217424,45.40426757719004],[9.216948072392107,45.40425863885417],[9.216947782782544,45.40424972829688],[9.216947429284433,45.40424081786072],[9.216946718491636,45.40423203411772],[9.216945623988927,45.40422315209012],[9.216944529417756,45.40421425206038],[9.216943026028648,45.40420537080811],[9.216941433127182,45.40419647172332],[9.216939827310913,45.40418753665853],[9.216938374346181,45.40417847528815],[9.216936946937343,45.404169413869305],[9.216935826056455,45.40416031586468],[9.216935522949335,45.404151216309344],[9.216935220083094,45.40414217976132],[9.216934891764737,45.4041331702649],[9.216934410286033,45.40412420606445],[9.216933941929147,45.40411533185034],[9.216933128402555,45.40410641328515],[9.216932123210762,45.40409749508338],[9.216931118019293,45.40408857688157],[9.216929844565376,45.40407967719066],[9.216928545900442,45.40407086755876],[9.216926902135114,45.404062031577794],[9.21692495184339,45.40405323218259],[9.21692296345999,45.404044495867325],[9.216920451020204,45.40403571554011],[9.216917938512424,45.404026917210764],[9.216915413158954,45.404018100903436],[9.216912951694665,45.40400928447492],[9.216910490265546,45.4040004770474],[9.216907965086397,45.403991705745156],[9.21690509546116,45.403983079113765],[9.216902212852796,45.40397439850022],[9.216898908926195,45.403965808696576],[9.216895516279138,45.40395740808455],[9.216891548638205,45.40394900856251],[9.216886891658099,45.403940781368476],[9.216882170894213,45.403932581298534],[9.216877156073622,45.40392433678023],[9.216872154032144,45.403916092237495],[9.216867075326196,45.40390784783983],[9.216861919990206,45.40389961258833],[9.21685676458694,45.403891359334466],[9.216851660192635,45.40388307898034],[9.216846747223853,45.40387473525528],[9.2168418342909,45.403866400531044],[9.216836921359397,45.403858065806574],[9.216832110512957,45.40384969488392],[9.216827286855917,45.40384131498423],[9.216822475909199,45.40383291705798],[9.216817958540119,45.40382443756504],[9.216813607144147,45.403815921752894],[9.216809255818221,45.403807423942645],[9.216804981159395,45.40379892598694],[9.21680074490349,45.403790445960546],[9.216796521495226,45.403781983911834],[9.216792068400354,45.40377360330832],[9.216787411036702,45.40376526809728],[9.216782766555168,45.403756959864985],[9.216778019785306,45.40374863382408],[9.216773247495977,45.403740316832454],[9.216768462430435,45.403731999864796],[9.216763447678582,45.4037237643422],[9.216758432928195,45.40371552881941],[9.216753354325586,45.403707302418425],[9.216748097009782,45.40369912136145],[9.216742813968459,45.403690895347324],[9.216737620234444,45.4036826331593],[9.216732656223867,45.40367429852685],[9.216727705026726,45.40366597287107],[9.216722766642986,45.403657656191854],[9.216717917669532,45.4036493303419],[9.216713081543809,45.40364102246965],[9.216708258231467,45.403632723574034],[9.216703141345185,45.40362450624437],[9.216697998870856,45.403616279961845],[9.216692843586076,45.40360804470218],[9.216687739310066,45.40359978234231],[9.216682622154897,45.40359149300323],[9.216677607050109,45.403583158465075],[9.21667282132485,45.40357466147204],[9.216668061362313,45.40356621843674],[9.216663582198688,45.40355769385934],[9.216659486020106,45.403549078545296],[9.216655402654698,45.403540472207894],[9.216651549115044,45.40353182042947],[9.21664782300874,45.403523078398436],[9.216644161031878,45.4035143992536],[9.216641253688104,45.40350591670423],[9.216636813518614,45.40349756307314],[9.216632347554885,45.40348914648287],[9.216627945205497,45.40348065776296],[9.216623938480838,45.4034720422781],[9.216619944500605,45.40346341776783],[9.216615963264802,45.403454784232146],[9.216612479770838,45.40344599673483],[9.216609034954041,45.40343729917537],[9.216605590275686,45.40342863762001],[9.216602120111979,45.40341999411499],[9.21659866279557,45.40341136858782],[9.216594886488132,45.40340286067899],[9.21659104612243,45.403394307885705],[9.216587180168476,45.4033857461396],[9.21658318640601,45.403377175634226],[9.216579179764192,45.403368578149696],[9.216575491806433,45.40335978203711],[9.216572225576968,45.40335100312823],[9.216568972229059,45.403342251198254],[9.21656582110236,45.4033334990746],[9.216562861673832,45.40332475558911],[9.216559902349225,45.40331603910666],[9.216556483446865,45.40330743150754],[9.216552911524346,45.40329890520807],[9.216549288080827,45.403290270992514],[9.216545575092828,45.403281609942994],[9.216541900198166,45.40327288581342],[9.216538812383432,45.40326398055005],[9.216535789075193,45.40325523718467],[9.216533224865477,45.4032462589211],[9.216530699572719,45.40323743360286],[9.216528529853619,45.40322803153988],[9.216526706981588,45.40321911488084],[9.216525112834866,45.403209864747396],[9.216524695179503,45.40320086441853],[9.216524251385673,45.40319171112007],[9.216523756996985,45.403182692934195],[9.216523224378982,45.40317370182399],[9.21652273002495,45.40316469263911],[9.216522363411608,45.40315567421133],[9.216521984089564,45.40314667380982],[9.216521591990164,45.403137673432475],[9.216521199787906,45.40312864605192],[9.216520820397587,45.40311962764827],[9.216520658121473,45.40311058183028],[9.216520482896307,45.40310149103124],[9.216520601759004,45.40309245368227],[9.216520746176615,45.40308341628491],[9.216520941704045,45.403074378790805],[9.216521380209237,45.40306539484355],[9.216521806074153,45.40305644692463],[9.21652179757393,45.403047517830096],[9.21652159741183,45.403038589098294],[9.216521410027248,45.40302966034226],[9.216520788346585,45.40302076841268],[9.216520089726764,45.40301180461976],[9.216519416593417,45.40300282277633],[9.216518832902434,45.40299384076359],[9.216518223862716,45.4029849128055],[9.216517282609633,45.40297598547626],[9.216516341391177,45.402967067147976],[9.216515183128179,45.40295819423604],[9.216513730675498,45.40294924087082],[9.216512265274199,45.40294024252446],[9.216511527466263,45.40293105377753],[9.216510790036187,45.40292196404219],[9.216510563634914,45.40291285533741],[9.216510554278369,45.402903701216225],[9.216510698662884,45.40289465481755],[9.216511060366551,45.40288563501093],[9.216511422310417,45.40287667821163],[9.216511451972572,45.40286770403895],[9.216511443302478,45.40285872993883],[9.216511434632386,45.402849755838695],[9.216511400304489,45.40284075478372],[9.216511365976617,45.402831753728755],[9.216511331648755,45.402822752673785],[9.216511297286582,45.40281374261772],[9.216511275667502,45.40280472353636],[9.21651138182248,45.40279570421323],[9.216511475268685,45.4027867029164],[9.216511555971783,45.402777710644756],[9.216511598377002,45.40276872744667],[9.216511640782214,45.402759744248584],[9.216511568259524,45.40275077927027],[9.216511368065925,45.40274184153692],[9.216511180546805,45.402732876776184],[9.216510814144314,45.402723912354],[9.216510396632398,45.40271494802854],[9.216509979154946,45.402705992704114],[9.216509280575233,45.40269703791167],[9.216508569218364,45.40268808314338],[9.216507832306966,45.40267912842344],[9.216507069806735,45.40267016475078],[9.216506307341072,45.402661210079145],[9.216505366061103,45.40265227374821],[9.2165042842647,45.402643346684265],[9.216503189759921,45.40263443764655],[9.216501916303718,45.40262551094527],[9.216500630036226,45.402616575267075],[9.21649929272836,45.402607657687696],[9.2164978786881,45.40259872225124],[9.216496477357008,45.402589768788516],[9.216495127307406,45.40258086023427],[9.216493790001262,45.40257194265474],[9.216491992951157,45.40256308895308],[9.216490182883994,45.40255417226818],[9.21648858982638,45.40254520116582],[9.21648709874777,45.402536166862596],[9.216485773912405,45.40252716824928],[9.216484691778309,45.40251815117435],[9.21648349482012,45.4025091793223],[9.216482208077727,45.40250011762894],[9.21648139416581,45.40249107304305],[9.216480695215838,45.40248201923844],[9.216480174942795,45.40247291108901],[9.21647989764513,45.40246385648653],[9.216479645833557,45.402454783833555],[9.216479611408218,45.40244575577477],[9.21647957701722,45.40243673671703],[9.216479593804161,45.40242773556464],[9.216479610659748,45.40241875241443],[9.216479550885753,45.402409778410316],[9.216479325178305,45.402400849725716],[9.216479099299315,45.40239187603591],[9.21647861783986,45.40238289382853],[9.216478072082147,45.402373803729425],[9.216477973496048,45.402364703782936],[9.216478181565297,45.40235560325621],[9.216478504012422,45.402346340492834],[9.216479797534303,45.40233707589187],[9.216481064677444,45.40232759531391],[9.216482417176834,45.40231704344105],[9.216479550473625,45.40227563470897],[9.216478928430691,45.402266643766346],[9.216478536756606,45.40225775140011],[9.216478157722628,45.402248823005436],[9.216478110898036,45.402239893982156],[9.216478076644805,45.402230910928324],[9.216478067946149,45.40222192782613],[9.216478071990444,45.40221293569866],[9.216478088846339,45.40220395254807],[9.21647822052604,45.402194924174594],[9.216478403108846,45.40218584169803],[9.216478176750476,45.40217674199305],[9.216477247574097,45.40216762561577],[9.216476344501693,45.402158653206996],[9.216475863147755,45.40214969800243],[9.21647544568026,45.40214074267697],[9.216475040955832,45.40213177832624],[9.216474661683081,45.40212278692398],[9.216474269598878,45.40211378654482],[9.21647387758346,45.402104804167784],[9.216473472825232,45.40209583081593],[9.216473157507858,45.40208685729488],[9.216472982705927,45.402077874506716],[9.21647280786974,45.402068882717536],[9.216472633033613,45.402059890928335],[9.216472445351673,45.40205088116113],[9.21647225766979,45.402041871394005],[9.216472069953658,45.40203285262578],[9.216471741756699,45.40202385212557],[9.216471400816944,45.40201486065058],[9.216471072723165,45.402005887153535],[9.216471000173975,45.401996913172916],[9.216470965956486,45.40198793911974],[9.216470931670372,45.40197894706446],[9.21647089738427,45.401969955009164],[9.216470863063872,45.4019609539528],[9.216470828743484,45.401951952896404],[9.216470794457425,45.40194296084105],[9.216470760171395,45.40193396878567],[9.216470725919697,45.40192498573137],[9.216470819474395,45.40191601143631],[9.216470900148902,45.40190701016225],[9.216471044846683,45.40189804477154],[9.21647124051594,45.40188904327985],[9.216471436185143,45.40188004178815],[9.21647090200971,45.401870636626995],[9.216470241675575,45.40186165475729],[9.21646950443826,45.40185261002517],[9.216468575817904,45.40184363766421],[9.21646763435202,45.40183464732523],[9.216466756806692,45.40182566586644],[9.216465943181882,45.4018166932878],[9.216465142368833,45.401807729686006],[9.21646434155604,45.40179876608423],[9.216463553623647,45.401789829461364],[9.216462752982967,45.401780910864815],[9.2164626424815,45.40177203596797],[9.216462569968408,45.40176307098804],[9.216462484575219,45.4017540790291],[9.216462386267617,45.40174505109006],[9.216462275114251,45.401736005173134],[9.216461780371471,45.401726887972984],[9.216461183651798,45.40171783397364],[9.216460599675159,45.401708770949],[9.216459517458222,45.40169972686936],[9.216458409721646,45.40169069183913],[9.216457174076618,45.401681621046365],[9.216455645003652,45.401672667823355],[9.216454115999804,45.40166373260247],[9.216452817190994,45.401654850952674],[9.216451556611085,45.40164594222718],[9.216450436614464,45.40163704223678],[9.216449661532382,45.401628123591514],[9.216448912245035,45.401619267905296],[9.216448558671694,45.401610312458],[9.216448205132798,45.40160136601174],[9.216447877045328,45.40159239251398],[9.216447549026599,45.40158343701829],[9.216447464116593,45.40157457107385],[9.216447660200462,45.4015656775944],[9.216447984089845,45.401556792874196],[9.2164491008814,45.40154809567736],[9.216450230003622,45.401539281442595],[9.216451985444552,45.40153052903062],[9.216454329593207,45.40152202753615],[9.216456826414518,45.401513354731414],[9.216460358696015,45.401504814984214],[9.216463890907804,45.4014962572348],[9.216467333335581,45.40148760964393],[9.216470711842458,45.401478953172735],[9.216474333731071,45.4014704582611],[9.21647824959495,45.40146198979642],[9.216482140178037,45.40145359338844],[9.216486938242959,45.40144527627308],[9.216491671734525,45.40143677925731],[9.216495663535282,45.401428121624726],[9.216499655197529,45.401419427987776],[9.216503289134309,45.40141074402876],[9.216506846441758,45.40140206921577],[9.216510378262598,45.401393412453174],[9.216513884562522,45.401384764739845],[9.216517403707115,45.40137613500432],[9.216521152975433,45.40136754083765],[9.21652492748783,45.401358865612934],[9.216528407954627,45.40135014593901],[9.216531543233321,45.401341372911645],[9.216534678682693,45.40133264488942],[9.216538069844209,45.40132396138867],[9.2165414737131,45.401315259861555],[9.216544634198682,45.40130639677483],[9.21654759025022,45.401297534074935],[9.216550367318943,45.401288644710405],[9.216552518001738,45.401279675521415],[9.216554668580862,45.40127067932914],[9.216556653366556,45.40126176446085],[9.216558587077726,45.40125285869025],[9.216560559153793,45.40124396184812],[9.216562582337458,45.40123506490919],[9.21656460548616,45.40122615896916],[9.216566411287076,45.401217217436056],[9.216568191636334,45.40120830295445],[9.216570048681636,45.40119939732871],[9.216572020513729,45.40119043747888],[9.21657392846,45.401181477749965],[9.21657519738209,45.40117247422515],[9.21657645390443,45.40116356973614],[9.216578119463167,45.40115470947835],[9.216580155589659,45.40114585752009],[9.216582050859147,45.401136924818324],[9.216583665033433,45.40112799264872],[9.216585317641304,45.40111908740966],[9.216587264669617,45.40111032563112],[9.216589224405688,45.40110154582624],[9.216591439818908,45.40109280154171],[9.216594511738087,45.40108417265012],[9.216597583553316,45.401075516755256],[9.216600693698657,45.40106686078769],[9.216603829294055,45.401058177768505],[9.21660705443059,45.40104952158303],[9.21661065037413,45.40104093670434],[9.216614220831252,45.40103236987603],[9.216617893331625,45.40102375784878],[9.216621642527246,45.40101515467726],[9.216625391618702,45.40100652450243],[9.216628897568256,45.40099779577554],[9.216632390877121,45.40098910307699],[9.216635820231248,45.40098039249712],[9.216639096054331,45.40097162820116],[9.21664242260657,45.40096276479671],[9.216645097428291,45.40095387562298],[9.216647695552913,45.400944977593284],[9.216650140352899,45.40093607985388],[9.216652342252065,45.400927146569956],[9.21665451883701,45.400918276341756],[9.21665678492883,45.40090942394624],[9.216658730805504,45.400900365131264],[9.216660409739049,45.40089166686675],[9.216662995871522,45.40088297588518],[9.216666042111557,45.400874320036586],[9.216669088144563,45.40086561018154],[9.216672031720442,45.400856837512606],[9.216674975329768,45.40084807384465],[9.216677906023817,45.40083927419663],[9.216680683427786,45.40083048383989],[9.216683460865246,45.40082170248418],[9.216686225009594,45.400812786136726],[9.21668875954578,45.400803969236385],[9.216691306823776,45.40079514331077],[9.216693866946642,45.400786335362994],[9.216696465365219,45.400777518341485],[9.216699051006028,45.400768701344106],[9.216701611092171,45.40075988439508],[9.216704107224082,45.40075104956489],[9.216706590612635,45.40074222375987],[9.216709137953835,45.40073341583589],[9.216711736539422,45.40072464381925],[9.216714322381629,45.40071588082781],[9.216717087237544,45.400707153501635],[9.216720120614315,45.400698479673494],[9.216723166801456,45.40068981482209],[9.216726430298511,45.40068117656223],[9.216730153901329,45.40067257343516],[9.216733800394799,45.40066385343941],[9.216736717984121,45.400654972804226],[9.216739648349456,45.400646092144775],[9.21674216916528,45.40063703223871],[9.216744179247312,45.400628063311466],[9.216746189466166,45.400619130388364],[9.216748110349094,45.40061022463789],[9.216750005746336,45.40060133693788],[9.216751952662976,45.40059255715371],[9.21675442353523,45.400583803380094],[9.216756869059108,45.400575103661225],[9.21675977444759,45.40056637606754],[9.2167627051828,45.400557594419034],[9.21676532903101,45.40054875034404],[9.21676796593022,45.40053997825322],[9.21677067959308,45.40053123302026],[9.216773572475269,45.40052257745889],[9.216776784744443,45.40051391229106],[9.216779996978273,45.40050523812209],[9.21678337551685,45.40049661764462],[9.216786753951295,45.40048797016385],[9.216790260222272,45.400479340442956],[9.216793843222206,45.400470728578796],[9.216797426117946,45.40046208971134],[9.216800970716339,45.400453459917465],[9.216804489863026,45.40044485717504],[9.216808303254796,45.40043635288721],[9.216812448740948,45.40042782096653],[9.216816491735907,45.400419217230905],[9.21681995873944,45.40041034455305],[9.216823400497548,45.4004015529331],[9.216826458673708,45.40039269003102],[9.216829082057549,45.40038372894059],[9.216831666491217,45.400374605903686],[9.216833126801363,45.40036554800526],[9.216834587317294,45.40035654411311],[9.216836111648284,45.40034752209774],[9.216837648721254,45.40033849105708],[9.21683913444572,45.400329397105835],[9.21683943151051,45.40032019739411],[9.216839728472086,45.400310970679215],[9.216839181268204,45.40030151153514],[9.21683771533525,45.40029236917181],[9.216836249574657,45.400283271813734],[9.216834107020393,45.40027427475079],[9.216831874925846,45.400265250854105],[9.216829541098615,45.40025635316592],[9.216827015825935,45.40024750984735],[9.21682449062279,45.40023868453076],[9.216822144330376,45.40022986787618],[9.216819810746768,45.400221033195145],[9.216817489940714,45.40021219848988],[9.216815194689033,45.400203363736075],[9.21681291245549,45.40019459196544],[9.216810923848822,45.400185756630414],[9.216809050165354,45.40017690307523],[9.21680716370566,45.400168049544256],[9.216805570975707,45.40015915945207],[9.216804067649525,45.40015026018928],[9.216802564289463,45.400141351925406],[9.216801163178674,45.40013245246882],[9.216799761930854,45.400123517008026],[9.216798399013872,45.400114581474526],[9.216797138277336,45.40010563674624],[9.216795877506838,45.400096683016855],[9.216794552818403,45.40008772040743],[9.216793189834386,45.40007876687168],[9.216791826885178,45.400069822336995],[9.21679052782034,45.40006087768118],[9.216789228824654,45.40005195102746],[9.216787968125367,45.40004301530003],[9.216786950116592,45.40003406111041],[9.216785906417112,45.40002507096494],[9.216784773246161,45.40001607198792],[9.216783359158352,45.40000711854878],[9.216781945174105,45.39999819211281],[9.216780684545922,45.399989274387316],[9.216779666711131,45.39998036520284],[9.216778648945395,45.39997147402048],[9.216777886715297,45.39996258235384],[9.21677760996808,45.399953680766124],[9.216777346478855,45.39994490516903],[9.216777747003169,45.39993602930127],[9.216778557139671,45.39992735068209],[9.216780185984925,45.39991893154409],[9.21678249017617,45.39991003406669],[9.216784283331,45.3999011465588],[9.21678605175661,45.39989247512468],[9.21678893230862,45.399883945601026],[9.216791813134714,45.39987548808579],[9.216795563672145,45.39986726295151],[9.216801541692268,45.39986016773748],[9.216807824909083,45.399852693897515],[9.216815579580313,45.39984577533812],[9.216824139012239,45.3998388102473],[9.216831174366748,45.39983089392537],[9.216837721762692,45.39982233944798],[9.216843375266722,45.399813912680365],[9.216847596434597,45.39980513758361],[9.216851792322748,45.39979643454359],[9.216855464020052,45.399787642485876],[9.216858956704574,45.399778814762804],[9.216862232011836,45.39976994244607],[9.216864804220302,45.39976097244973],[9.2168673386479,45.39975214654292],[9.21687246653652,45.39973322545858],[9.2168765679319,45.3997165115956],[9.216878718848172,45.39970763240877],[9.216880869798151,45.39969876222296],[9.216882931344934,45.399689901207715],[9.216884993028598,45.399681076196664],[9.216887220980645,45.39967229587594],[9.216890049780654,45.39966360442728],[9.216892878476646,45.399654885975345],[9.21689575824416,45.39964615842538],[9.21689867634087,45.39963743080268],[9.216901581728768,45.399628721206206],[9.216904922142124,45.399620172805086],[9.216908402960476,45.39961158813314],[9.216911934850136,45.39960299436312],[9.216915760843138,45.39959446304319],[9.216919574299036,45.399585994754766],[9.216923566764848,45.39957756213127],[9.216927623456762,45.399569219397094],[9.216932064101156,45.39956104695605],[9.21693816918531,45.39955378047216],[9.216944477731655,45.399546261570606],[9.21695170770987,45.39953913697074],[9.2169593601418,45.399532227596225],[9.216966911184052,45.39952553444048],[9.216975933845655,45.39951944156852],[9.216984994766515,45.39951333062099],[9.216994234833907,45.39950729134194],[9.21700394877106,45.39950154820037],[9.21701370089861,45.399495768981055],[9.217023427092393,45.39948989079769],[9.217033024588607,45.3994837698273],[9.217042571113758,45.39947768495723],[9.217051963835269,45.39947147436248],[9.21706129236175,45.39946518287861],[9.217070646370646,45.39945887334335],[9.217079539041492,45.399452204637775],[9.217088060395875,45.399445329610195],[9.217096569040384,45.399438472608374],[9.217104847290203,45.39943150802961],[9.217112984719552,45.3994244717085],[9.217121198565788,45.39941737223393],[9.217128977453442,45.39941012956626],[9.217136615589531,45.39940283315845],[9.217144228170396,45.399395536798664],[9.217151584837902,45.39938814191171],[9.217158941606774,45.39938077402749],[9.217166311253655,45.39937343312169],[9.217173783318247,45.399366146027745],[9.217181255346482,45.399358849932256],[9.217188727200643,45.39935150883097],[9.217196249849477,45.3993440866226],[9.217203606193632,45.39933661072275],[9.217210437833472,45.399328910790494],[9.217217256729278,45.39932121988318],[9.21722401146464,45.39931345708829],[9.217230689538457,45.39930569443851],[9.217237277933073,45.39929786895076],[9.217243277706206,45.399289810551146],[9.217249277546529,45.39928177015335],[9.217255098374851,45.39927369409068],[9.217260638219468,45.399265645564675],[9.217266127197195,45.399257660142936],[9.2172724863258,45.39925002411213],[9.21727940848436,45.39924261203978],[9.21728636879867,45.3992351548889],[9.217293200759554,45.399227544962216],[9.21730003275305,45.39921994403621],[9.217306941542097,45.39921237896839],[9.217313927092217,45.399204840757676],[9.217320938021404,45.39919725749274],[9.21732774424764,45.3991896026072],[9.217334460863643,45.399181902885886],[9.217341152028029,45.39917423021588],[9.217347779342125,45.39916656666791],[9.217354381170184,45.39915892117021],[9.217360970357706,45.399151311700656],[9.217367892389289,45.39914387261965],[9.21737533915476,45.39913666657044],[9.217382824110217,45.399129424443636],[9.217390308960384,45.399122155313165],[9.217397793739693,45.39911486818007],[9.217405265706043,45.39910757206973],[9.217412763327024,45.39910030291348],[9.217420337674424,45.39909305161318],[9.217427924761992,45.39908579128702],[9.217435499071044,45.399078530984625],[9.217442970924349,45.39907120786858],[9.217450391635008,45.39906387584812],[9.217457812412697,45.39905656182935],[9.217465258845008,45.399049274764636],[9.217472718189871,45.39904202367938],[9.21748016479075,45.399034781619],[9.217487816193856,45.39902763818116],[9.217495749092938,45.39902060222115],[9.217503707508682,45.39901355721088],[9.217511653111414,45.399006503223326],[9.217519342594999,45.39899929670304],[9.21752699374699,45.39899209025513],[9.217534619447411,45.39898491085846],[9.217542462967893,45.39897789306737],[9.21755063936627,45.39897105466516],[9.217558854057806,45.398964207188435],[9.217567068505918,45.39895729670368],[9.217575231535456,45.39895030530601],[9.217583432754619,45.39894327783059],[9.217591390631199,45.39893609779829],[9.217598746939396,45.39892863987472],[9.217606039570008,45.398921236078635],[9.217613434893902,45.39891395810244],[9.217621508958795,45.398907092886375],[9.217629710372977,45.398900119413966],[9.217637565749444,45.39889286756437],[9.217644883371376,45.39888531970015],[9.217652277339942,45.39887769068006],[9.217659159762709,45.39886993661698],[9.217666041907554,45.39886211054501],[9.217671720263,45.39885355767192],[9.217676568695541,45.39884515039567],[9.21768222408287,45.3988372726502],[9.217687968628109,45.39882932272577],[9.21769375136322,45.39882133672383],[9.217699521354707,45.39881335974697],[9.21770567522641,45.398805535058415],[9.21771191863547,45.39879773720254],[9.217718162077325,45.39878994834734],[9.217724482141948,45.398782150344815],[9.217730789462852,45.39877436136734],[9.217737237496062,45.39876661712731],[9.217743826172496,45.39875889962258],[9.217750427554584,45.39875116409102],[9.217756747472377,45.39874333008249],[9.217763067422943,45.3987355050746],[9.217769387509861,45.39872771607063],[9.217775873792915,45.398719953753314],[9.217782360108714,45.39871220043664],[9.217788768831664,45.398704204236914],[9.217794794465599,45.398696262772916],[9.217800743956895,45.39868845647044],[9.217807025531336,45.398680622531984],[9.217813192633724,45.39867292382804],[9.21782008892568,45.398665466765806],[9.217827381597191,45.398658089958445],[9.217834609970073,45.39865060525961],[9.217840942537915,45.39864274421876],[9.217847276209127,45.39863517121152],[9.217854915184642,45.39862814478691],[9.217862516243324,45.39862122644749],[9.217870500421279,45.39861426237227],[9.217878714297214,45.39860722584998],[9.217886389971016,45.39859977630037],[9.217893822959224,45.39859234521473],[9.217901102766213,45.39858495042486],[9.217908331569129,45.398577582735044],[9.217915534920905,45.39857024209664],[9.217923263245273,45.39856319749492],[9.217931106901235,45.398556242684215],[9.217938963331708,45.39854928784861],[9.217947216659253,45.398542548283345],[9.217955879487494,45.39853597895873],[9.217964618765059,45.398529355481024],[9.217973100369392,45.3985221744237],[9.217980711964316,45.39851467998408],[9.21798822079282,45.39850704172175],[9.217995218665607,45.398499431435994],[9.218002139877912,45.398491821295856],[9.218009048484731,45.39848425618495],[9.218016085026811,45.39847673583542],[9.218023096014175,45.39846921553417],[9.21802983848735,45.39846164173745],[9.21803633772276,45.39845394238815],[9.218043041586562,45.39844629665525],[9.21805015484709,45.39843879415958],[9.218057267345246,45.39843109364015],[9.218064213678902,45.39842337543473],[9.218070916532804,45.39841546866938],[9.21807732587303,45.39840765247441],[9.218083645914898,45.398399872453815],[9.218090043201233,45.39839224530472],[9.218096491349472,45.39838455505044],[9.218103003516294,45.39837690067823],[9.218109477767063,45.39836935439145],[9.218116156300265,45.398361771710285],[9.218122834762513,45.398354171026604],[9.218129538672041,45.398346543290636],[9.218136370205427,45.39833887930639],[9.218143482990598,45.39833125979107],[9.21815039059073,45.39832344264175],[9.218156902674105,45.39831577026426],[9.218163440931034,45.39830825985682],[9.218170453953217,45.39830127961001],[9.21817770865285,45.398294019866945],[9.218185065388782,45.398286714923174],[9.218192614079891,45.398279490622905],[9.21820030341307,45.39827229305725],[9.218207992744295,45.398265095491105],[9.218215810079526,45.39825796068815],[9.218223665465166,45.398250753803055],[9.21823150803784,45.398243537940665],[9.218239312141009,45.39823628614666],[9.218246987786483,45.39822885457465],[9.218254292880571,45.39822141470789],[9.218261495692587,45.3982139570336],[9.218268634378656,45.39820643647329],[9.218275568191132,45.39819879928876],[9.218282527346854,45.398191108048685],[9.2182892046594,45.39818321932118],[9.218295470946376,45.39817476430654],[9.218301379908707,45.39816641798699],[9.218306828228297,45.39815789252358],[9.21831143240697,45.398149134641535],[9.218315665135544,45.39814013443768],[9.218319464401292,45.39813137809136],[9.218322688384045,45.398122532831536],[9.218325656319694,45.39811355304334],[9.2183284072642,45.39810462767593],[9.21833086410968,45.39809563986184],[9.218332936937301,45.39808646375693],[9.21833440979549,45.398077423813945],[9.21833572954484,45.39806843816991],[9.218337075261791,45.39805956048979],[9.21833871545701,45.39805084426793],[9.218340853617137,45.398042046085465],[9.218343413845435,45.39803336411204],[9.21834603778153,45.3980246370113],[9.218349020250047,45.3980161162521],[9.218352283519868,45.398007522947836],[9.21835585400888,45.39799908207619],[9.218360319289209,45.397990756511184],[9.218364784568228,45.39798243094597],[9.218369634243166,45.39797439268291],[9.218374636955556,45.39796628211846],[9.21837998504237,45.39795827890801],[9.218386177783584,45.39795064313109],[9.218392523388772,45.397942890047354],[9.218398729214526,45.39793533525493],[9.218405178030787,45.39792784300611],[9.218412433414422,45.39792078127113],[9.218419677162574,45.39791401659516],[9.21842772605833,45.39790731338923],[9.218435762972325,45.3979008172316],[9.218444567051032,45.39789447262763],[9.21845385693871,45.39788820810545],[9.21846300552319,45.39788174582752],[9.21847201308149,45.39787515780237],[9.218481058828036,45.397868533699075],[9.218489784888115,45.39786183819662],[9.218498293021833,45.39785495408603],[9.218506698181145,45.39784787214667],[9.21851479715781,45.39784090780621],[9.218522728481938,45.39783353873463],[9.218530404936567,45.397826341170806],[9.218537618498436,45.39781837939488],[9.218544386170368,45.397810751512],[9.218551191614987,45.39780297953853],[9.218557716118267,45.39779524410588],[9.2185642657219,45.39778739161021],[9.218570572401307,45.397779494572696],[9.218576879078956,45.39777159753481],[9.218582942312757,45.397763520939186],[9.21858881407408,45.397755489714676],[9.218594673161439,45.39774748551748],[9.218600583525465,45.397739526227596],[9.218606519544318,45.397731593891805],[9.218612519685397,45.397723724441036],[9.218618826697584,45.39771591741137],[9.218625274316171,45.397708128114914],[9.218631619584325,45.39770030300918],[9.218638003248799,45.397692495831954],[9.218644323446195,45.3976847967892],[9.218650848408467,45.397677187366],[9.218657424751283,45.39766964985323],[9.21866407875506,45.39766237322434],[9.218671192701903,45.39765509571588],[9.218678780165195,45.39764802432774],[9.218687007790637,45.39764130275937],[9.218695299572671,45.39763465307672],[9.218703462654307,45.397627760609105],[9.218711676630878,45.39762081403679],[9.218719941571681,45.39761383136193],[9.218728231057385,45.39760658760682],[9.21873598366186,45.397599272868625],[9.218744197179538,45.39759220928017],[9.218752743778701,45.397585379083495],[9.218761341411355,45.397578530786355],[9.218769478057432,45.39757141333628],[9.218777063728531,45.39756388288742],[9.218784214902051,45.397556326265594],[9.218790444590406,45.39754835735383],[9.218796636121786,45.397540433520305],[9.218802942672063,45.397532518467585],[9.218809529534198,45.39752440485353],[9.218823477224928,45.39750678096887],[9.218780712688146,45.39749625043177],[9.218769407700238,45.3974934636994],[9.218656025423629,45.397465524940706],[9.218626573690907,45.39745827231358],[9.21861032840704,45.397453235723546],[9.218597011138215,45.397452100025994],[9.218585031385867,45.397449926641485],[9.218572296279621,45.397447349648125],[9.218559792116164,45.39744502424377],[9.218547428145442,45.39744260855891],[9.218535153158772,45.397440075688024],[9.218522865951257,45.39743768685726],[9.218510427231664,45.397435766373235],[9.218498052220678,45.39743380076054],[9.218485676760308,45.397431718132694],[9.21847323728134,45.39742959962122],[9.218460797803296,45.39742748110845],[9.218448510463107,45.3974250562654],[9.218436414836077,45.39742264905722],[9.218424560780454,45.39741993534816],[9.218412782205913,45.39741691545537],[9.218400862021275,45.39741361679672],[9.21838877637071,45.39741048047306],[9.218376563409624,45.3974074614058],[9.218364503833323,45.39740446004668],[9.218352482586853,45.39740145861317],[9.218340397529937,45.3973984753024],[9.21832801896813,45.397395582561785],[9.218315373699651,45.39739310438076],[9.218302933197283,45.39739071581883],[9.218290467974079,45.39738854332982],[9.218278117806681,45.39738638862219],[9.218265959040762,45.3973841705401],[9.218253660395149,45.39738212374504],[9.218241488578146,45.39737983367625],[9.218229124773451,45.39737745396109],[9.218216646260906,45.39737514647242],[9.218203810016316,45.397372839664776],[9.218191333027676,45.39737092822009],[9.21817858860475,45.397369242312315],[9.218165984651389,45.39736753813299],[9.218153444372172,45.39736577982407],[9.218141490933453,45.39736379536655],[9.218129102344777,45.39736161371263],[9.218116739171112,45.39735939600441],[9.21810424875525,45.39735731355443],[9.218091656614892,45.39735535731272],[9.218079051837506,45.39735343709829],[9.218066472475048,45.397351480829485],[9.218054046565825,45.3973495602713],[9.21804187566247,45.397347504208845],[9.21802958987811,45.39734547536741],[9.218017418734592,45.397343356294876],[9.218005170658467,45.3973411653586],[9.217992819959226,45.397338866603064],[9.217980353998984,45.39733649605673],[9.217967850402317,45.397334305603394],[9.217955283444018,45.39733225028624],[9.217942818765085,45.39733021277517],[9.217930392588286,45.39732822019502],[9.217918043380287,45.39732630847709],[9.2179056935168,45.39732422573758],[9.217893343308813,45.39732205298609],[9.21788108236225,45.39731983505767],[9.21786879520811,45.3973174461564],[9.21785644424323,45.39731507537754],[9.217843939930841,45.39731269588828],[9.217831474086116,45.39731035232889],[9.217818894361852,45.397308297021084],[9.21780630179327,45.39730622373408],[9.217793837159881,45.39730419520777],[9.217781385510685,45.397302220662134],[9.217768972225365,45.39730025504327],[9.217756647856264,45.397298154236886],[9.217744463922322,45.39729602615842],[9.217732164693185,45.39729381728801],[9.217719890189018,45.397291392342105],[9.217707410991206,45.39728889577539],[9.217694881966677,45.39728673234386],[9.217682328218963,45.397284784985146],[9.217669838456413,45.39728286450667],[9.21765742507564,45.39728087187239],[9.217645049748219,45.39727880715545],[9.21763275097514,45.39727671528813],[9.217620387873714,45.39727450652717],[9.217607961168405,45.39727236989486],[9.217595483600858,45.39727029636589],[9.217582993499503,45.39726828586723],[9.217570605228895,45.39726617616116],[9.217558254908313,45.39726396736911],[9.217545904519724,45.39726174057366],[9.217533579408542,45.397259441719775],[9.217521241522196,45.39725714288881],[9.217508993242333,45.3972548888918],[9.217496681392962,45.39725271602448],[9.21748444544299,45.39725034498674],[9.217472221822023,45.397247856909566],[9.217460048444945,45.39724514370736],[9.217447772997692,45.39724246670239],[9.217435396204081,45.39724001491691],[9.217422968754988,45.39723768024105],[9.21741054116906,45.39723530955957],[9.217398100635716,45.39723289389573],[9.217385443701462,45.397230685667694],[9.217372864596648,45.39722878332873],[9.217360311320622,45.397226952948344],[9.217347835425821,45.3972253114433],[9.217335359703993,45.39722371494219],[9.21732293422621,45.39722189331605],[9.217310521318682,45.3972200176579],[9.217298031651746,45.397218115140795],[9.21728546532877,45.397216212767944],[9.217272707674423,45.397214391767264],[9.217260104161193,45.3972127864995],[9.217247678688198,45.39721096486517],[9.217235622691094,45.39720887249396],[9.217223514419535,45.397206474182425],[9.217211570758277,45.39720368850848],[9.217199396748883,45.397200804258226],[9.217187058028015,45.3971982803645],[9.217174732153232,45.397195774447354],[9.217162508282119,45.39719321432845],[9.2171504375881,45.39719061791298],[9.217138379258268,45.39718791345919],[9.217126371380187,45.39718503788692],[9.217114542472515,45.39718218897712],[9.217102305555565,45.3971795568675],[9.217090349164165,45.39717678020614],[9.217079417136008,45.39717459567428],[9.217064508667896,45.39717161758598],[9.217052259667543,45.3971691655165],[9.2170399971696,45.39716652444759],[9.217027672237053,45.39716426154323],[9.217015283596819,45.39716204376407],[9.217002831248879,45.39715987111],[9.216990150479363,45.397158103938686],[9.216977495331685,45.3971563547196],[9.216964980722242,45.397154605232586],[9.216952478924094,45.39715286472102],[9.216940015592646,45.39715116013966],[9.216927501088659,45.397149437651706],[9.216914998914543,45.39714759812432],[9.21690257267597,45.39714556942792],[9.216890274337104,45.397143576492155],[9.21687801353677,45.39714137645798],[9.216865906016553,45.39713916713076],[9.2168536449431,45.39713689508542],[9.21684138349252,45.39713452402707],[9.216828956365765,45.39713226129496],[9.216816389046294,45.39713008883848],[9.216803860296727,45.39712797931545],[9.216791255406818,45.39712600495228],[9.216778739985028,45.397124039419275],[9.216766161198889,45.397122209021894],[9.216753595361485,45.397120423604264],[9.216740978557798,45.39711867428631],[9.216728412756318,45.39711689786697],[9.216715834248197,45.39711513947257],[9.216703230291666,45.39711340812837],[9.216690639283767,45.39711172176388],[9.216678010497809,45.39711017948766],[9.216665445867894,45.39710870909754],[9.216652945050557,45.39710722058293],[9.216640355281806,45.397105858251194],[9.216627841998683,45.397104450767635],[9.216615302442847,45.39710285430867],[9.216602876671054,45.39710094259343],[9.21659038705382,45.39709903999883],[9.21657793511349,45.39709696631011],[9.216565495847187,45.39709486559265],[9.216553019111643,45.397092989972954],[9.216540568684316,45.39709131232695],[9.21652813048466,45.39708949063837],[9.216515946023423,45.39708720040951],[9.216503887951546,45.397084549895],[9.216491765828618,45.397081854494765],[9.216479860420389,45.397079032667364],[9.216468095413346,45.3970761745685],[9.216456214770522,45.39707314566578],[9.216444334026036,45.397070089758635],[9.21643235093669,45.397066998039364],[9.216420482113218,45.397063717078986],[9.216408370030427,45.39706030156058],[9.216396386876491,45.39705719183537],[9.216383957932035,45.39705444299732],[9.216371721179202,45.397051837812434],[9.21635934502209,45.39704952992716],[9.216346981264852,45.397047123004654],[9.2163347695874,45.39704439175261],[9.216322583531918,45.397041678453014],[9.216310410219421,45.39703895612695],[9.216298236942377,45.39703624280064],[9.216286025303889,45.39703352054438],[9.216273851994886,45.39703079821441],[9.216261665945224,45.397028084908335],[9.216249492638552,45.397025362575725],[9.21623728100473,45.3970226403143],[9.216225107700383,45.397019917979065],[9.216212921655371,45.397017204667776],[9.216200735577255,45.397014482354095],[9.216188536724202,45.39701176006331],[9.216176350648416,45.397009037747],[9.216164177384165,45.3970063244064],[9.216151991310706,45.39700360208754],[9.216139805306945,45.39700089776945],[9.216127543058864,45.39699830160772],[9.216115293690784,45.39699573242368],[9.216103031753244,45.39699321726885],[9.216090757040682,45.396990702136854],[9.21607849507106,45.39698817797834],[9.216066220360675,45.39698566284365],[9.216053932875285,45.39698314773184],[9.216041670943167,45.396980632570425],[9.216029396201797,45.39697810843076],[9.21601713427184,45.39697559326668],[9.216004872342973,45.396973078101304],[9.215992584863011,45.39697056298284],[9.21598032293631,45.396968047814845],[9.215968048200374,45.39696552366857],[9.215955786275842,45.396963008497906],[9.215943511576311,45.396960493350015],[9.215931236877859,45.39695797820086],[9.215918974956582,45.396955463026224],[9.215906713036386,45.39695294785028],[9.215894438306968,45.396950423696076],[9.215882176388941,45.3969479085175],[9.215869901695916,45.396945393361705],[9.215857639780062,45.396942878180475],[9.215845377865284,45.396940362997924],[9.21583310317551,45.396937847838196],[9.215820828589457,45.39693535968028],[9.215808553970259,45.39693286252002],[9.215796279386353,45.39693037435949],[9.215784004803519,45.39692788619764],[9.215771717411476,45.39692538905753],[9.215759442830786,45.396922900893],[9.215747168251172,45.39692041272717],[9.215734893672634,45.396917924560036],[9.21572261906097,45.39691542739052],[9.215710344484577,45.39691293922072],[9.215698057133173,45.396910451073715],[9.215685795335009,45.3969079628772],[9.21567352072764,45.39690546570237],[9.215661233379464,45.396902977551385],[9.215648958808439,45.39690048937496],[9.215636697014567,45.39689800117318],[9.215624409635428,45.396895504017145],[9.215612135067621,45.39689301583683],[9.215599860466712,45.39689051865407],[9.215587623887531,45.39688794038817],[9.215575400051364,45.39688535309583],[9.215563163406062,45.396882756825164],[9.215550926796046,45.39688016955427],[9.215538690152975,45.39687757328102],[9.21552646632126,45.3968749859834],[9.21551422971458,45.3968723987086],[9.21550199307486,45.396869802431354],[9.215489756470408,45.396867215153904],[9.215477545419212,45.39686462782701],[9.215465308816977,45.39686204054692],[9.215453072181717,45.39685944426446],[9.215440835581717,45.396856856981735],[9.215428637311021,45.39685426962556],[9.215416400713249,45.39685168234019],[9.215404202444777,45.39684909498138],[9.215392092517288,45.396846219418784],[9.215380084014287,45.396843136637976],[9.215368152032408,45.39684001770731],[9.21535639768777,45.39683657440036],[9.215344579395977,45.39683311321035],[9.215281666182314,45.39680524710768],[9.215268057650194,45.39680136622549],[9.215189233039165,45.39677887668209],[9.215112835148556,45.39698550626896],[9.215076014591677,45.39706994308144],[9.215027821978145,45.397214816833234],[9.215021329840974,45.3972885662824],[9.21502443697811,45.39733308902584],[9.214922788032041,45.39732945455717],[9.214920270751099,45.397329360273865],[9.214871898560544,45.39732565266212],[9.214859371065417,45.397323866964115],[9.214846856347258,45.39732208124077],[9.214834328887761,45.397320304541104],[9.214821814171163,45.39731851881499],[9.214809286679186,45.3973167331115],[9.214796759187983,45.39731494740667],[9.214784244507777,45.397313170677506],[9.214771729794311,45.397311384945894],[9.214759202305462,45.39730959923691],[9.214746674817398,45.397307813526574],[9.214734147432232,45.397306054818024],[9.214721620115915,45.39730431411023],[9.214709092766325,45.39730256439998],[9.214696552641334,45.39730081471236],[9.2146840378993,45.39729901997011],[9.214671523124016,45.39729721622536],[9.214659008349521,45.39729541247926],[9.214646493575824,45.39729360873181],[9.214633966026751,45.397291805006944],[9.214621451254633,45.397290001256756],[9.214608936483309,45.39728819750514],[9.21459642171278,45.397286393752154],[9.214583894166873,45.3972845900218],[9.214571379397924,45.39728278626611],[9.214558851853601,45.39728098253297],[9.214546324310074,45.39727917879848],[9.214533809509495,45.397277366037585],[9.214521294743713,45.39727556227638],[9.214508754426404,45.397273758561724],[9.214496239662202,45.39727195479776],[9.214483712122632,45.39727015105637],[9.214471146765337,45.39726848240146],[9.21445858168074,45.397266885753695],[9.21444597837035,45.39726531617954],[9.214433387870798,45.39726375558114],[9.214420797371938,45.39726219498136],[9.21440820687376,45.39726063438016],[9.214395616376281,45.39725907377759],[9.2143830258455,45.397257504172586],[9.214370435349391,45.397255943567245],[9.214357844853968,45.397254382960504],[9.214345254359241,45.397252822352364],[9.21433267664135,45.397251261718914],[9.214320086148,45.397249701107995],[9.214307508431487,45.39724814047178],[9.214294917939505,45.39724657985808],[9.214282327414255,45.39724501024197],[9.214269736923647,45.397243449625506],[9.214257159209893,45.39724188898371],[9.214244581496821,45.397240328340544],[9.214231990940373,45.39723874971779],[9.214219413160759,45.397237171069726],[9.214206835381853,45.39723559242027],[9.214194257603637,45.397234013769406],[9.214181667117868,45.39723245314324],[9.214169076768588,45.39723092851992],[9.214156486419977,45.39722940389521],[9.21414388326194,45.397227870291964],[9.214131292914676,45.39722634566448],[9.214118689791931,45.397224821059545],[9.214106099446013,45.3972232964293],[9.214093496324613,45.39722177182155],[9.214080905946107,45.397220238187444],[9.214068302826053,45.397218713576905],[9.214055712550692,45.397217206943246],[9.214043084252905,45.397215781389455],[9.214030455955752,45.397214355834265],[9.214017827659225,45.397212930277675],[9.214005199363342,45.39721150471973],[9.213992583878142,45.39721008813753],[9.213979968359649,45.397208662552885],[9.213967340065645,45.3972072369907],[9.213954711772274,45.39720581142712],[9.213942096289578,45.39720439483931],[9.213929467997463,45.397202969272996],[9.213916839773793,45.39720156170736],[9.213904211550746,45.39720015414036],[9.213891583294416,45.39719873757085],[9.21387896795047,45.397197356980364],[9.213866327224348,45.39719602144155],[9.21385368646492,45.39719467690029],[9.213841032963836,45.39719334138258],[9.213828392239494,45.3971920058396],[9.213815751515735,45.39719067029513],[9.21380312356871,45.39718933472547],[9.21379048284614,45.39718799917826],[9.213777842090263,45.39718665462856],[9.213765201368869,45.39718531907857],[9.213752510695532,45.397184289658895],[9.213739807212615,45.39718325126059],[9.213727090920152,45.39718220388369],[9.213714336299724,45.397181156576984],[9.213645167474098,45.39717481395861],[9.213613409939619,45.397169130540945],[9.21357124552636,45.39716157630591],[9.213368398359169,45.397134636384095],[9.21319698065096,45.397107637535235],[9.212757427150025,45.397039273150504],[9.212208606254721,45.39695890427648],[9.211730686902921,45.39689702490309],[9.210635069938212,45.39675667647904],[9.210534780776214,45.39674383644708],[9.210466496904301,45.39699325736485],[9.210388639885869,45.39698320228979],[9.210377787708765,45.39698180006788],[9.21010553759069,45.39694662890599],[9.209970394704332,45.396930305937666],[9.209862940297395,45.39691464311081],[9.209863192492554,45.39691374253524],[9.209618761950289,45.39687998636167],[9.209576054821039,45.3968740338469],[9.209086810846486,45.39623035812362],[9.209060107477544,45.39619524850805],[9.20879894586989,45.39597437864232],[9.208810349487933,45.395524715327085],[9.208813528789316,45.39530878137802],[9.208826810761703,45.394914858593474],[9.208837681176963,45.39458781860019],[9.208845017071434,45.39427587994012],[9.208847220992084,45.39423596489121],[9.208821400690717,45.394079374296076],[9.2089084280759,45.394048242513634],[9.20891727805492,45.39403341048676],[9.208920490505232,45.394028039944715],[9.208920508461551,45.39401902977698],[9.2089206925647,45.394010037308064],[9.208921081968679,45.394001287494866],[9.208923336055014,45.393992390258326],[9.208925757512572,45.393983843760296],[9.208928496964218,45.393974918633845],[9.20893064606343,45.39396526549359],[9.208932197631297,45.393956405544294],[9.208933698494391,45.39394765370118],[9.208935352827575,45.39393894658344],[9.208936904493347,45.39393011363725],[9.208938520267496,45.39392134358191],[9.208940174102459,45.39391250144799],[9.208941866031317,45.393903596236434],[9.208943532375722,45.39389468207047],[9.20894516045964,45.393885785976614],[9.208946916893147,45.393877051668724],[9.20894897983633,45.39386828979758],[9.208951017724843,45.39385966298915],[9.208953106184444,45.39385089207019],[9.20895527175941,45.39384224702619],[9.20895752639715,45.393833502807006],[9.208959883667852,45.393824875415035],[9.20896231735833,45.393816184875476],[9.208964852919951,45.39380740413847],[9.208967363062508,45.39379865945234],[9.208969988017124,45.39378986955073],[9.208972868677227,45.393781133188824],[9.208976413722288,45.393772413615515],[9.208979920307655,45.39376365810778],[9.20898262098354,45.3937546160358],[9.208985322420391,45.39374578098836],[9.208988139000336,45.39373699073628],[9.208990968189164,45.39372815545538],[9.208993630171166,45.39371901444127],[9.208995448945252,45.393709865966315],[9.208996819852391,45.39370052028449],[9.208998472777585,45.39369143512038],[9.208999500571016,45.393682585127735],[9.209000465679841,45.39367405929038],[9.209001993864526,45.3936657934573],[9.209004620265201,45.39365739960201],[9.20900788457129,45.39364877055174],[9.209011787776248,45.393640176338685],[9.209015665462463,45.39363159117326],[9.209019300349729,45.39362298844897],[9.209022909950246,45.39361445777984],[9.209026558438879,45.393606080058824],[9.209030282717109,45.39359746816974],[9.209034148881221,45.393589225067736],[9.209038307882977,45.3935807113965],[9.209042568423516,45.393572017516924],[9.209046778590338,45.393563521754146],[9.209051014306556,45.39355502594454],[9.209054811916392,45.393545513807084],[9.209057945373791,45.393536047888816],[9.209060429575006,45.39352720423514],[9.209062158408015,45.393517920906135],[9.209063785568075,45.39350878178108],[9.209065183070152,45.39349972408583],[9.209066465660236,45.393490684602824],[9.209067262986895,45.393481700013396],[9.209068060644661,45.393472805434655],[9.209069063866831,45.39346422551999],[9.209070602988815,45.39345546460325],[9.209072269565148,45.39344662244338],[9.209073871469196,45.393437564374416],[9.209075485982355,45.393428461276685],[9.209077202498557,45.393419303985674],[9.20907840773731,45.393410075619954],[9.209079319110797,45.39340083879012],[9.209080115274418,45.39339153916285],[9.209080567697905,45.39338256420461],[9.209080637392846,45.393373733963955],[9.209081001515786,45.39336506520565],[9.209081713454195,45.3933571789104],[9.209082883413718,45.393348778713396],[9.20908515135104,45.393340187485926],[9.209087289115839,45.39333093941344],[9.20908867134924,45.39332120666042],[9.209098196202582,45.3932849956887],[9.209107986324334,45.3932444996908],[9.209130084062442,45.393167193555186],[9.209139819199178,45.39310830833495],[9.209159567918407,45.39306963035772],[9.20916466097533,45.39304418383784],[9.209114457769823,45.39304519372768],[9.209092294266549,45.39304563928783],[9.209064596989545,45.3930489933217],[9.209031588838474,45.393018629798306],[9.209021564604953,45.39300940394713],[9.20879258332334,45.39294767823142],[9.208791200856172,45.392946933660184],[9.208703021629882,45.392928390193774],[9.208494295490151,45.39287865244463],[9.208193097497745,45.39280665179795],[9.207896235654303,45.3927359026357],[9.207617245464956,45.39266820765998],[9.20754855980402,45.392663039616906],[9.207494061107282,45.39266313847127],[9.207449390607646,45.39266784606288],[9.207448166266492,45.39266841535447],[9.207419085391045,45.39269167300995],[9.207390973748485,45.39271097740221],[9.207365123409707,45.392726812251645],[9.207334989183583,45.39274500415516],[9.20730174581264,45.392761896519715],[9.20727059974808,45.39277938815097],[9.20723550203488,45.3927957617897],[9.207200471426912,45.392816527850336],[9.207162207523144,45.39284048615685],[9.207126748511989,45.39286290017824],[9.207092345505208,45.392887634570016],[9.207054600653203,45.39291382418225],[9.207020755492827,45.39293740539731],[9.20698135965481,45.39296279687147],[9.20694370134015,45.39298822119369],[9.206908646136434,45.39300931124945],[9.206872953490304,45.39303077149355],[9.206837709612318,45.39304917953021],[9.20680656500928,45.39306364664989],[9.206776243144182,45.3930760150096],[9.206740323483073,45.39308076051409],[9.206704926583573,45.393081715584835],[9.206664523496919,45.39308665818961],[9.2066269135236,45.39309382801718],[9.206589565816563,45.39310637103646],[9.20654749551275,45.393120092717226],[9.206508364888744,45.39313770656783],[9.206468520266734,45.39315571774346],[9.206426161987787,45.393171069104575],[9.20638237749427,45.39317715185349],[9.206337475516875,45.393178060948294],[9.206288422025114,45.393172064639344],[9.20624267007005,45.39316054466187],[9.206203473004825,45.393145817449046],[9.206166176725278,45.39313033070216],[9.20613039388898,45.393116479422865],[9.206099816794124,45.39310432897031],[9.206074643235667,45.39309558020705],[9.20604954638776,45.39309388819007],[9.206029235940884,45.39310508617508],[9.206010641200935,45.393124382088764],[9.2059938021732,45.39314519603005],[9.205981889403677,45.393168152370876],[9.205965083377993,45.39319102750828],[9.205946079655439,45.393217336031626],[9.205926845862692,45.393243617962426],[9.205907709767835,45.39327218600235],[9.205892593998337,45.39329615622504],[9.205876163537122,45.39332045285229],[9.205864608511598,45.39333286820747],[9.20573480471075,45.3933276560134],[9.20569430873777,45.393328187885686],[9.205648655949286,45.39332288727649],[9.20557152199862,45.39330625678349],[9.205479481064621,45.39328306418161],[9.205252115199864,45.39322923146658],[9.205175284821669,45.39321876593867],[9.205157992461162,45.393223810580736],[9.20513893858303,45.3932469506601],[9.205114515891927,45.393283368034446],[9.205069966159343,45.39336063262683],[9.205024559249988,45.39344113014424],[9.204999823732338,45.39351834119558],[9.204991857756173,45.39353058801068],[9.204966308401588,45.39356993273897],[9.204895974279232,45.39367819835085],[9.204891379863467,45.39368659563607],[9.20479413444932,45.39386409209075],[9.204675520850309,45.39408221279812],[9.204565337173431,45.39428230703361],[9.20443812146074,45.39452106445436],[9.20431748224009,45.39474508412608],[9.204212892137251,45.394970146151024],[9.204102401537778,45.39517464200998],[9.204021086927785,45.395346240601235],[9.203971593236586,45.395406663434954],[9.20384319335888,45.39561233409844],[9.203830728800492,45.39569907320359],[9.203879754983983,45.39583215758307],[9.20387333496996,45.39586237681864],[9.203808772354963,45.39589635410157],[9.203763987343516,45.395980324410445],[9.203649450267156,45.39605497669335],[9.203516719728224,45.396083242394816],[9.203457818190223,45.39613198026297],[9.203431897929343,45.39620750083243],[9.203397409072242,45.39634126493943],[9.20337811468373,45.39640833065448],[9.203351535756529,45.39653545585036],[9.203357480945286,45.39657590536172],[9.203363174490137,45.39661743545537],[9.203376127663558,45.39671325645868],[9.203383918941116,45.396794702830405],[9.203373431373285,45.39692002619423],[9.203382402877446,45.39708129247718],[9.203399401115213,45.3974432066437],[9.203405730239332,45.39754800452951],[9.203403315499216,45.39754799982138],[9.203046456440209,45.39755764382671],[9.202561118454248,45.39757082667042],[9.202176152748196,45.39758090476322],[9.201933448867928,45.39758671605781],[9.201812965629006,45.3975896019771],[9.20174040162317,45.39751922411285],[9.201666926378625,45.397498002969506],[9.201666313119956,45.39749800405045],[9.201603823977612,45.39749793415537],[9.201575716000983,45.39749790267002],[9.201512076357265,45.39755166149854],[9.201512076389196,45.397551670499595],[9.201464721581063,45.39756804593635],[9.201414796147663,45.397576495884906],[9.201378991360063,45.39758213961011],[9.201345065066704,45.39758428758058],[9.201326242383471,45.397590603490734],[9.20131871137561,45.39759618844066],[9.20129008429158,45.39762633858096],[9.201257676632471,45.3976604468594],[9.201243775792573,45.397656789849336],[9.201231729106597,45.39765357963286],[9.201219655625609,45.397650018418275],[9.201207135933922,45.397646728020966],[9.201194348580119,45.39764361811553],[9.201181358178818,45.3976408956142],[9.20116769200836,45.39763856134806],[9.201154895261956,45.39763640557427],[9.201142278818738,45.39763465453283],[9.201129982197056,45.39763301994246],[9.201117927974217,45.397631285912254],[9.201105987590863,45.39762922764007],[9.201093956659022,45.397626854486305],[9.201081478368161,45.39762442811074],[9.201068834146456,45.397622047031035],[9.201056125885211,45.39761962105683],[9.201043367093646,45.39761735719031],[9.201030647046064,45.39761521026896],[9.201018054347722,45.39761294610776],[9.201005857554787,45.39761063624401],[9.200993827013345,45.3976083710926],[9.20098186095936,45.39760627684798],[9.200969920076496,45.39760407454437],[9.200957851113577,45.39760178245323],[9.200945232486411,45.39759941031602],[9.200932269474944,45.39759720080254],[9.20091908926832,45.39759499166895],[9.200905718119627,45.397592980893975],[9.20089215797108,45.39759171754294],[9.20087771597577,45.397590374728416],[9.200864092583986,45.39758929150761],[9.200850447715142,45.39758936046732],[9.20083700726615,45.39758942906652],[9.200823759574863,45.39758981236537],[9.200810384948493,45.39759042991476],[9.200797355248593,45.397591037856095],[9.200784274888974,45.39759177190063],[9.200771130806903,45.39759255106114],[9.200757884673616,45.39759337540487],[9.200744231036468,45.397594578509405],[9.200731190753956,45.397595807539595],[9.200718343259856,45.39759736027072],[9.200705725960162,45.397598975604495],[9.200693555860171,45.397600599153535],[9.200682011382039,45.39760210458928],[9.20067402963135,45.397603081709725],[9.200666922889374,45.397602203062554],[9.200655663962975,45.3976013587004],[9.200640150833152,45.397600602807664],[9.200597415656768,45.397601064790095],[9.200585216630627,45.39760173425875],[9.20057245548113,45.39760241371263],[9.200560868919505,45.39760285707677],[9.200549292336664,45.397602508323004],[9.200537383349042,45.3976020971428],[9.200525052967942,45.39760174970778],[9.200512479234455,45.39760123167647],[9.200500019152669,45.397600335397236],[9.200487622475844,45.397599303988606],[9.200475506273138,45.39759810106575],[9.200464449736732,45.39759668025791],[9.200452676174326,45.397594819649946],[9.200440799957958,45.39759283320484],[9.200429408350171,45.39759059387792],[9.200417620393841,45.397588274234046],[9.20040636678538,45.39758531457286],[9.200395661794206,45.39758213792262],[9.200387372943144,45.397579362090475],[9.200379013192656,45.39757459713255],[9.200370831389916,45.39756957082972],[9.200364489049361,45.39756445129369],[9.200357964571669,45.39755840496005],[9.200351691333028,45.397551143033745],[9.200346071335176,45.39754434802193],[9.200341751656454,45.397536740631416],[9.200338152845942,45.39753066217027],[9.200335584084277,45.397523213733976],[9.200334257760884,45.39751665423385],[9.200333463371607,45.397508770636435],[9.200333192839489,45.3975008951229],[9.200333880714634,45.397493071937966],[9.200335939519084,45.39748634449028],[9.200338248957358,45.397478230429876],[9.20034137578708,45.39747003392803],[9.20034509025829,45.39746181839483],[9.200348842803018,45.39745353078583],[9.20035332492446,45.397445619946474],[9.200358189632293,45.397437510412125],[9.200363246077139,45.39742942754522],[9.200368852500803,45.39742151473629],[9.200374484570593,45.397413628885616],[9.200379911997265,45.397405680385084],[9.200385326550927,45.3973977049035],[9.200390830377653,45.39738968425964],[9.200395962962567,45.39738145723978],[9.200400826420049,45.3973729966617],[9.200405740377324,45.39736436497356],[9.200410231543502,45.397355400983955],[9.20041418512359,45.39734615890086],[9.200418048951414,45.39733682696355],[9.200422305599476,45.39732657622289],[9.200424915992762,45.39731685943245],[9.200426746847562,45.39730709000074],[9.20042845003526,45.397297347795984],[9.200428083418366,45.39728759121484],[9.20042757648606,45.39727789788734],[9.200426315918657,45.39726825088568],[9.200423915985397,45.39725795779862],[9.200421377834145,45.397248322035985],[9.20041766481662,45.39723884135049],[9.200413134888294,45.39722957812289],[9.20040772458166,45.3972206494789],[9.200401509124617,45.39721165023586],[9.200395194414217,45.39720348827134],[9.200388905670838,45.397195443275585],[9.200382642608597,45.39718743423908],[9.200376353297118,45.397179227223305],[9.200369937083444,45.397171263459896],[9.200363865541755,45.397163218082376],[9.20035797286783,45.3971551723913],[9.200352042057688,45.39714718077347],[9.200345881786722,45.397139333575154],[9.20033976000466,45.39713153131473],[9.20033397040389,45.397123728472394],[9.200328449421123,45.39711601517065],[9.200323324627064,45.39710833717954],[9.200318698135357,45.397100667316835],[9.200314225212491,45.397093069194135],[9.200310428822501,45.39708529886535],[9.200306976754067,45.397077347911],[9.200303345249376,45.39706923525039],[9.20029990516536,45.39706105924664],[9.200296897629219,45.39705236042003],[9.200294234573075,45.397043525973366],[9.2002914819897,45.397034664679985],[9.200288869880984,45.397025785138354],[9.200286283420553,45.39701693255511],[9.20028387592175,45.397008106661914],[9.200281570950036,45.396999370600454],[9.200279446146054,45.39699100326989],[9.20027770380059,45.39698240124041],[9.200275986976122,45.396973790165084],[9.200274410467118,45.3969651158362],[9.200273089131457,45.39695634204822],[9.20027175470268,45.39694747827182],[9.200270419988657,45.39693853348576],[9.200269059437177,45.39692950773474],[9.200267724184393,45.39692040993032],[9.200266363221147,45.396911267165265],[9.200264427366077,45.39690213440755],[9.200262248765986,45.39689300207471],[9.20026007013486,45.396883860740665],[9.200257329610722,45.3968747923991],[9.200254218866766,45.39686580571563],[9.200251121090325,45.39685687301611],[9.200247946817091,45.39684798545605],[9.200244798160483,45.39683911585328],[9.200241649473128,45.39683023724933],[9.20023864135528,45.39682136740045],[9.200236016583919,45.396812514882825],[9.20023341793677,45.396803824339706],[9.200231100712942,45.396795232316464],[9.200228886079163,45.39678674812714],[9.200226697252052,45.39677833590169],[9.200224700129947,45.396769941342875],[9.200223022155999,45.396761474216525],[9.200221267145414,45.39675289921144],[9.20021948598031,45.39674415323057],[9.200217870364959,45.396735253940754],[9.200216279857944,45.39672622859117],[9.200214663482015,45.396717113275535],[9.200212983162919,45.39670798006946],[9.200211303034767,45.3966989008698],[9.20020963603225,45.39668992065956],[9.200208109725363,45.396680985208754],[9.200206621651875,45.39667202268763],[9.200205120485515,45.396662970178035],[9.200202993103625,45.39665386475742],[9.200200699253235,45.39664465161446],[9.200198496041581,45.396635780355815],[9.200195422855014,45.39662656857636],[9.20019195431074,45.39661755551351],[9.200188397604567,45.39660890264988],[9.200184815315717,45.39660024082981],[9.200181373532445,45.39659156976264],[9.200178327552942,45.39658282599387],[9.200175333090902,45.39657419914949],[9.200172287145,45.396565464381574],[9.200169534826218,45.39655666609192],[9.200166911378782,45.39654818261629],[9.200164378696643,45.39654007702925],[9.200161920069842,45.396531233219925],[9.200160753723644,45.39652292721756],[9.200159496549912,45.39651422532436],[9.200157816467891,45.396505155124686],[9.200155688528582,45.396495887683585],[9.200153547655349,45.39648657525938],[9.200150896028603,45.396477344738784],[9.200148002103,45.396468240657825],[9.200145120986043,45.396459145555454],[9.200142215301405,45.39645032953103],[9.200139296936854,45.39644154053208],[9.200136365797222,45.39643275155537],[9.200133472986455,45.39642396251155],[9.200130618409368,45.39641514639735],[9.200127712634108,45.39640630336926],[9.200124589699891,45.39639746972202],[9.200121249448232,45.39638860045031],[9.200117716606526,45.39637946148142],[9.200113852795997,45.39637066513419],[9.200109951071088,45.39636198586788],[9.20010608808757,45.39635342354833],[9.200102532077217,45.396344959704194],[9.200099335792874,45.39633706230199],[9.200096674767758,45.39632878591612],[9.200094026614522,45.39632053651107],[9.200091774136142,45.39631217840039],[9.2000898405816,45.39630368471501],[9.200087881031756,45.39629506505922],[9.200086113248622,45.396286481072494],[9.200084625902653,45.39627771657272],[9.200083151491652,45.39626899705597],[9.200082072976832,45.3962602318412],[9.200081594677966,45.39625139356774],[9.200081116030418,45.39624245628243],[9.200080560315154,45.3962334021172],[9.200079799741124,45.39622422229434],[9.200079025884033,45.39621489847663],[9.200077587488465,45.39620552181421],[9.200075612599436,45.39619617309329],[9.200073637806204,45.39618685137558],[9.200070614848626,45.396177378471414],[9.200067401933797,45.39616838295931],[9.200064214857216,45.39615946841206],[9.200060772580324,45.39615064432222],[9.200057266678584,45.39614189235258],[9.200053773648966,45.39613316736369],[9.200050178476529,45.39612446055557],[9.200046532138142,45.396115735834506],[9.20004288570576,45.396106984110055],[9.200038766851254,45.39609831422165],[9.200034316078082,45.39608971692242],[9.200029890984885,45.39608115558259],[9.200025899861576,45.39607247646928],[9.200022036720402,45.396063860139925],[9.200018173612122,45.39605525281151],[9.2000143360885,45.39604665443935],[9.200010498597754,45.39603806506814],[9.200006686755057,45.39602950265535],[9.200002913938556,45.396021138199075],[9.199999128252202,45.39601274676174],[9.199995687262327,45.396004282712745],[9.199992501442523,45.39599571920509],[9.199989277105852,45.39598710175791],[9.199986065355867,45.39597843028186],[9.199983032342399,45.39596972248876],[9.199980152481915,45.395960969422234],[9.19997731101334,45.39595223429077],[9.199974482384912,45.395943517139045],[9.199971679372485,45.395934817944735],[9.19996899121697,45.39592608254504],[9.199966226375395,45.395917338278196],[9.1999632698967,45.39590859434619],[9.199960300547966,45.395899823433204],[9.199957203504939,45.39589107074557],[9.19995406813529,45.39588231812479],[9.199950907183203,45.39587355654748],[9.199947746390547,45.39586483997548],[9.199944559825344,45.39585606044048],[9.199941296606015,45.39584728103932],[9.199937842066843,45.39583859198371],[9.19993441342899,45.39583000189514],[9.199931100186728,45.39582152861953],[9.199928272395844,45.395813045494435],[9.199925508516708,45.39580457125863],[9.199922731767504,45.39579607004191],[9.199920222931512,45.39578746034338],[9.199917828730275,45.395778751432005],[9.199915395853738,45.39576994357576],[9.199912796511942,45.39576102799672],[9.19991003080002,45.39575203169812],[9.199907239157119,45.395742927431165],[9.199904332310908,45.39573376035747],[9.199901042381011,45.39572464795982],[9.199897472999869,45.39571599510798],[9.199894042854908,45.395706972966366],[9.199890587064363,45.395697923866045],[9.199887081375516,45.39568921689578],[9.199883601587842,45.39568060889253],[9.199880415201404,45.395671874360815],[9.199876936904708,45.395663689407954],[9.199874251374393,45.39565569209387],[9.199871691512163,45.39564710048542],[9.199869092943189,45.39563840093099],[9.199866749479263,45.39562958391613],[9.199864546328147,45.395620703648206],[9.199862343146043,45.39561181437912],[9.199860165389534,45.39560288906109],[9.199858013121947,45.39559394569617],[9.199855375596648,45.39558506618677],[9.199852342371102,45.39557628638094],[9.199849628667897,45.395567542021425],[9.199847170702997,45.39555886022299],[9.199844942861334,45.395550223028245],[9.199842664012245,45.39554161292594],[9.199840295638374,45.395532975976565],[9.199838016568984,45.39552430286656],[9.199836209950677,45.39551555692231],[9.199834531629095,45.39550696377313],[9.19983294210501,45.39549819044622],[9.199831352613101,45.39548942612037],[9.199829724794377,45.3954806618614],[9.199828211831377,45.395471861397304],[9.199826877444536,45.395462979611054],[9.199825619459332,45.39545402568232],[9.199824297374041,45.39544500885755],[9.199822873019759,45.39543597420916],[9.19982114204777,45.395426940096186],[9.199819372685731,45.39541788804796],[9.199817449983557,45.395408827266365],[9.19981554002609,45.395399757461355],[9.199813591805327,45.39539070572539],[9.199811452202335,45.39538172633263],[9.199809453259881,45.39537278269869],[9.199807569458084,45.3953638838693],[9.199805685181886,45.395354850023686],[9.199803941851082,45.39534593294666],[9.199802146721225,45.39533681793512],[9.19980028844159,45.39532791005982],[9.19979837909128,45.39531901127481],[9.199796265393225,45.395310130848884],[9.199794241885883,45.39530146629256],[9.199792192067763,45.39529258575495],[9.199790027300436,45.39528371441918],[9.199788055277867,45.395275157786386],[9.199786325867933,45.39526656472536],[9.199784556991501,45.39525764769249],[9.199782878273892,45.39524893752815],[9.199781377973535,45.39524010103646],[9.199779902971775,45.39523119249142],[9.199778376709334,45.39522223903024],[9.199776773666475,45.39521324969858],[9.199775093811573,45.3952042154953],[9.199773426669593,45.395195163267516],[9.199771733976753,45.395186111084335],[9.199769683311544,45.39517698751708],[9.19976777374958,45.39516802572377],[9.199765928161685,45.39515909082214],[9.1997641338038,45.39515019183551],[9.199762313895091,45.395141292893484],[9.19976046843558,45.39513239399599],[9.199758610200966,45.395123495120764],[9.19975676474263,45.39511459622321],[9.199754766039968,45.395105715595406],[9.199752780081969,45.39509682594421],[9.199750794124597,45.3950879362929],[9.19974866757207,45.39507902888477],[9.199746362255713,45.395070148792044],[9.199743980254382,45.39506125983205],[9.199741572480862,45.39505230790906],[9.199739126602681,45.395043419060386],[9.199736527448907,45.39503453948042],[9.199733902807932,45.39502567794708],[9.199731329428708,45.395016861329886],[9.199728819928607,45.39500804460106],[9.199726374149325,45.39499918275535],[9.199723979378485,45.39499029381709],[9.199721635616068,45.39498137778634],[9.199719036467906,45.39497249820583],[9.199716437257266,45.39496360062312],[9.199713965993858,45.39495475682377],[9.199711545865476,45.394945921936234],[9.199709138671748,45.39493713203172],[9.199706820781687,45.394928305966744],[9.19970472001498,45.394919461520445],[9.199702670604694,45.39491068899352],[9.199700595485517,45.39490187150577],[9.199698775753134,45.39489301756771],[9.199697083777671,45.394884163406594],[9.19969540470497,45.39487534522744],[9.19969355939135,45.394866482332745],[9.199691752373546,45.394857610370025],[9.199689970812633,45.39484871135945],[9.19968806136943,45.39483977656749],[9.199685998714315,45.39483086904627],[9.199683897764631,45.39482197059297],[9.19968209065485,45.39481307162682],[9.199680321967422,45.39480419959694],[9.199678604477956,45.39479535448107],[9.199677002032832,45.39478652716664],[9.19967546416247,45.3947778977644],[9.199674385676529,45.39476911454117],[9.199673639261775,45.394760303735],[9.199672906287407,45.394751681929144],[9.199672594275262,45.39474287936598],[9.199672550709073,45.394734121339944],[9.199672520108367,45.39472541729809],[9.199672810258331,45.39471709974517],[9.199673610387743,45.39470848426482],[9.199674410516915,45.39469986878449],[9.199675199072784,45.3946915953674],[9.199677302596427,45.39468305862251],[9.199679508197557,45.39467448569488],[9.19968186697846,45.39466587649536],[9.199685209921654,45.39465739159401],[9.199688629992059,45.39464904157494],[9.199692113338045,45.39464052042374],[9.19969617209037,45.39463214228627],[9.199700665685834,45.394623898406685],[9.199704981466404,45.39461595187461],[9.199710153493985,45.39460808485802],[9.199716579361876,45.394600737718264],[9.199722407371883,45.39459412971463],[9.199728591925242,45.39458718804639],[9.199735267139998,45.394581721707056],[9.199743820583162,45.39457631509623],[9.199751404822976,45.394571405239205],[9.199760969622018,45.39456659093621],[9.19977060003856,45.39456227158015],[9.19978176488245,45.39455833659268],[9.19979286606864,45.39455446472321],[9.199804145984482,45.394550556536004],[9.19981508184537,45.394546900980295],[9.199826388766061,45.394543406795854],[9.199837631839252,45.39453992172291],[9.199848517417188,45.394536500281276],[9.199860169622156,45.394533104502834],[9.199872396187194,45.394529554700554],[9.199884724670028,45.394525923708734],[9.19989682151226,45.394521816060276],[9.199908966920365,45.39451698823502],[9.199920179394335,45.39451207202731],[9.19993082790441,45.39450663473819],[9.199941590917067,45.39450106223105],[9.199952252578834,45.39449573293061],[9.19996323242299,45.39449006102996],[9.19997398236853,45.39448440753239],[9.199985420384674,45.39447823976655],[9.199995516395932,45.394471912324924],[9.200005164848953,45.394465468650054],[9.20001467314924,45.394459133232985],[9.200024195173963,45.39445306782518],[9.20003396018544,45.3944470740007],[9.200044184131299,45.39444080033795],[9.200053845634365,45.3944344376463],[9.200063328087584,45.394428021260154],[9.200072683037027,45.39442167710523],[9.200081808215113,45.39441538735819],[9.20009092077419,45.394409142638054],[9.20010008433824,45.39440287082465],[9.20010940079427,45.39439648172832],[9.200118589334396,45.394390047849356],[9.200127777808992,45.39438359596741],[9.200136914989116,45.3943770901677],[9.200146153705179,45.39437039516584],[9.200155213815583,45.394363772484745],[9.200164299348014,45.39435711375389],[9.20017347383105,45.39435031984968],[9.200181791940116,45.39434341042833],[9.200189483317398,45.39433629507693],[9.200197111132482,45.39432926984752],[9.200204791031313,45.394322523561605],[9.200212482466343,45.39431542621077],[9.200220263042393,45.394308247693196],[9.20022815761229,45.394300789940445],[9.200236026787783,45.3942933772373],[9.20024394693627,45.39428592843984],[9.200251713459343,45.39427838989932],[9.200259287332306,45.39427056365925],[9.200266466146756,45.39426301714531],[9.200273607204139,45.39425563271735],[9.200280952921442,45.39424831993978],[9.200288439294209,45.39424104292],[9.20029595108906,45.394233729850754],[9.20030337281868,45.394226236915934],[9.200310577140883,45.39421868135335],[9.200317794204906,45.39421111676685],[9.200325152051281,45.39420362394247],[9.200332650140234,45.39419604986184],[9.200340046404378,45.39418858397261],[9.200347455442051,45.3941811180605],[9.200354940622576,45.39417350799644],[9.200362349434043,45.39416597907585],[9.200369387246809,45.3941583067863],[9.200376054251517,45.394150545134416],[9.200382670406583,45.394142855580284],[9.200389197258641,45.39413520218664],[9.200395954194319,45.394127584394184],[9.200402812887235,45.39411984040721],[9.200409173081239,45.394112025283924],[9.200415340402886,45.3941038594539],[9.200421367955057,45.39409590989559],[9.200427664171263,45.3940880678799],[9.200433757916148,45.39408077528769],[9.200440297211966,45.39407303185794],[9.200447040659062,45.39406521606105],[9.200453656731035,45.394057508500566],[9.20046025970808,45.39404971095123],[9.200467080533038,45.39404210204364],[9.200474259608683,45.3940346455272],[9.200481477199396,45.39402724294959],[9.20048877102781,45.394019723223195],[9.200495936941032,45.39401215871483],[9.200502936581028,45.394004540490556],[9.200509808528345,45.39399694049188],[9.20051660426613,45.39398946664227],[9.200523195054988,45.393981840132106],[9.200529529825003,45.39397407005215],[9.200535071086646,45.393965896311634],[9.20054135433839,45.39395800930658],[9.200547893160431,45.39395013985545],[9.200555187065486,45.39394264712796],[9.200562289114815,45.393935091728395],[9.200569148079653,45.39392743774203],[9.20057595609991,45.39391982885023],[9.200582981777224,45.393912354593425],[9.20058996947614,45.39390497941526],[9.20059684181304,45.39389749642526],[9.200603765345148,45.39389004034853],[9.200610765686848,45.39388262914235],[9.200617996333778,45.39387531654439],[9.200625112413537,45.393868121161574],[9.200632548035562,45.39386097022364],[9.200640086208702,45.39385391811782],[9.20064756047117,45.3938468571225],[9.20065498423438,45.393839967236765],[9.200663110992448,45.39383317513007],[9.200671403892315,45.39382640073366],[9.20067935109127,45.393819410915775],[9.200686953066429,45.393812340692676],[9.200694567751468,45.393805252444494],[9.200702118621273,45.39379818231],[9.200709861438092,45.393791201849616],[9.200717693776141,45.39378424823508],[9.200725615508153,45.39377728546198],[9.200733741867039,45.39377038533725],[9.200741880744816,45.39376341318096],[9.200749981230826,45.39375642308915],[9.200758030390613,45.39374937007889],[9.200766066677565,45.39374229008722],[9.200774141129543,45.39373516502231],[9.200782483003197,45.393727796456936],[9.200790710246368,45.39372052710458],[9.200798310285043,45.39371291680926],[9.20080552645598,45.39370513616564],[9.200812691714413,45.39369740961769],[9.20081980596492,45.39368971016217],[9.200826690097827,45.39368196610452],[9.200833906802016,45.3936743384774],[9.200841315962222,45.393666944541444],[9.20084895552257,45.3936596762164],[9.200856364806224,45.3936523182838],[9.200863569363962,45.39364487069877],[9.20087018536222,45.39363717211482],[9.200876788551493,45.393629464551815],[9.200883698856737,45.39362190046735],[9.200891146552516,45.39361456946839],[9.20089859427821,45.39360724747001],[9.20090536379434,45.393599611622356],[9.200911352548086,45.39359156309313],[9.200917354011791,45.393583496538966],[9.200923675239379,45.3935755374366],[9.200930098795254,45.39356761415864],[9.200936458281607,45.39355963698606],[9.200942587491717,45.39355157020622],[9.200948627177214,45.39354347657982],[9.200954539043998,45.39353536517533],[9.200960246408304,45.393527227126356],[9.20096591566794,45.393519152151924],[9.200971533983912,45.39351112227236],[9.20097744667218,45.39350324489471],[9.200983628086473,45.393495493060584],[9.20098980946722,45.39348773222499],[9.2009960035579,45.39347995336449],[9.201002261842,45.393472264402206],[9.201008788597123,45.393464628974705],[9.201015302670763,45.39345702057254],[9.201021803967336,45.3934494121924],[9.201028113313951,45.3934417141378],[9.201034141092347,45.39343387255946],[9.201040386240432,45.393426084605615],[9.201046669553403,45.39341825157868],[9.201053170108498,45.39341043617196],[9.20106002865697,45.39340270114592],[9.201066938049848,45.39339489402102],[9.201073911062386,45.39338701477482],[9.20108071770735,45.39337905481036],[9.201087358175997,45.39337106813417],[9.20109393505314,45.393363162579526],[9.201099860548053,45.39335530317509],[9.201105773521011,45.39334751580143],[9.201111699363242,45.39333975540823],[9.201117190270496,45.39333183375884],[9.20112340630741,45.39332304672551],[9.201129036145765,45.393314674774565],[9.201134208271847,45.39330692470625],[9.201139750624531,45.39329910197773],[9.201145535801544,45.3932913058255],[9.20115133352909,45.39328344664288],[9.20115723281962,45.39327540725875],[9.201162850574356,45.39326723335228],[9.201168417194525,45.39325905053424],[9.201173971101587,45.393250885740585],[9.201179512359323,45.39324275697343],[9.20118507922976,45.39323464616323],[9.201190646130486,45.393226544353816],[9.201196277033466,45.39321847843608],[9.201201946164959,45.3932103854475],[9.201207666395849,45.39320229236868],[9.201213808559224,45.393194297560086],[9.201220128968497,45.39318613141604],[9.201225797455562,45.39317785840461],[9.201231171791381,45.3931694958989],[9.201236533382271,45.39316114241648],[9.201241421554046,45.39315258274037],[9.20124605466602,45.393144149528595],[9.201250585670387,45.39313574349962],[9.201254707833913,45.39312732918844],[9.201259072757594,45.39311892345123],[9.20126352713852,45.393110526557635],[9.201268058169521,45.39310212952905],[9.201272576392055,45.39309372352161],[9.201277350309207,45.393085371070946],[9.201282213779132,45.393077054467135],[9.201287154026584,45.39306877373252],[9.201292171051534,45.393060528867146],[9.201297252078733,45.3930523198935],[9.201302371812947,45.3930442188651],[9.201307721531514,45.39303612643294],[9.20131314796365,45.39302805186787],[9.201318548811917,45.393019968346366],[9.201323987984278,45.393011884757165],[9.20132952916533,45.393003746981364],[9.20133507021718,45.39299557320099],[9.20134057275035,45.39298734548131],[9.201345793844547,45.392979010243],[9.201350886929909,45.39297060322063],[9.20135617234379,45.39296239388454],[9.201361509048409,45.39295423846471],[9.201367037570927,45.39294613671387],[9.201372578611755,45.39293796293158],[9.201378106780055,45.39292976216829],[9.201383391930893,45.392921480822245],[9.201388562167317,45.392913217680466],[9.201393655942606,45.39290500867987],[9.201398712093043,45.39289699777025],[9.201404138786227,45.392889004210396],[9.201409629353792,45.392881010537806],[9.201415298836174,45.39287303455225],[9.201421019385759,45.39286504947537],[9.201426752708908,45.39285706437572],[9.201432473574501,45.39284916930901],[9.201438219861151,45.39284123819273],[9.201444094121381,45.3928333698588],[9.201450121905495,45.39282556426218],[9.201456213627646,45.39281777655492],[9.20146235632108,45.39280995275301],[9.20146870335159,45.39280211058871],[9.201495109860355,45.39276972300594],[9.201637180362047,45.39256018730248],[9.201655744115746,45.39252460009715],[9.201659546158332,45.392516006311986],[9.201663370937604,45.39250662038663],[9.201667004600539,45.392497378816195],[9.201670306237695,45.392488173835396],[9.201673147778747,45.392478915658664],[9.201675848952693,45.39246970273498],[9.20167819255116,45.39246052644603],[9.201680204156478,45.39245139574795],[9.201681998648658,45.39244228343483],[9.201683729105056,45.392433126228816],[9.201685281508839,45.392424194365084],[9.201686232205038,45.39241490351652],[9.201687106090674,45.392405567797695],[9.201687596819733,45.39239625975765],[9.201688343433593,45.39238705928017],[9.201689065040439,45.39237801186604],[9.201689825547597,45.39236912640381],[9.201690918909373,45.39236043837976],[9.20169205123527,45.3923519303098],[9.20169331153517,45.39234348502209],[9.201695274494915,45.39233504749678],[9.201697594612288,45.392326456322515],[9.20169997796495,45.392317685014],[9.201702284251033,45.39230879682646],[9.201704615990593,45.392299881590624],[9.201706960536443,45.39229097533323],[9.201709305081557,45.39228206907585],[9.20171148367823,45.39227319911545],[9.201713495783096,45.39226421243379],[9.201715507759465,45.392255189747736],[9.201717417311125,45.39224610423431],[9.201719160658826,45.39223698300927],[9.201720903974003,45.39222785278314],[9.201722660063659,45.39221872253443],[9.201723841212438,45.39220957529711],[9.20172486969986,45.39220060835164],[9.201725910450508,45.39219149736635],[9.201726938617595,45.392182440410046],[9.201727902973191,45.3921734015685],[9.201728867328491,45.39216436272695],[9.201729844458493,45.392155323862816],[9.201730693806066,45.39214627622288],[9.201731504828325,45.392137228650434],[9.201732303139265,45.3921281991027],[9.201733139934825,45.39211921449275],[9.201734027894094,45.39211024779483],[9.201734890622774,45.39210137115279],[9.201735741055723,45.39209262954944],[9.201736630101156,45.39208396888823],[9.201737889621327,45.39207530757374],[9.201739148725512,45.39206652924516],[9.201740420060807,45.39205759787569],[9.201741282180272,45.39204855021299],[9.201742105910556,45.392039484615644],[9.201742929736485,45.392030446021515],[9.20174370246221,45.39202140751751],[9.201744411152903,45.39201232412071],[9.201745132490478,45.392003204697026],[9.20174585424345,45.39199420228736],[9.201746588355553,45.39198508284113],[9.201747296981408,45.391975981442094],[9.201748005798875,45.39196693404951],[9.201748983114369,45.39195794919141],[9.201750203377824,45.39194902691285],[9.201751423704847,45.39194012263641],[9.201752669645373,45.39193123631706],[9.2017541840836,45.391922412532196],[9.201755698681222,45.39191363375267],[9.201757187920293,45.39190490902468],[9.20175897117483,45.391896237785],[9.201760945957272,45.39188753920409],[9.201762933258285,45.39187876859196],[9.201764933109823,45.391869934949725],[9.201767022289483,45.39186107414648],[9.201769111468495,45.391852213343164],[9.201771200614886,45.39184334353871],[9.201773404639212,45.39183444652825],[9.201775723381548,45.39182547730631],[9.201778041899317,45.39181644507674],[9.201780194214233,45.391807377135635],[9.201782180550195,45.39179833649065],[9.201784141591478,45.391789367899364],[9.201786077370077,45.391780480362755],[9.201788345680027,45.39177170025327],[9.201790601502154,45.39176300117599],[9.201792895840248,45.39175435603756],[9.20179519040149,45.39174577390665],[9.201797409335832,45.39173747994545],[9.201800086983491,45.39172885213303],[9.201803108561815,45.39171994467865],[9.201805912613795,45.39171093859536],[9.201808806217235,45.39170196835856],[9.201813373877197,45.39169314818814],[9.201817463980905,45.391672168323204],[9.20181739272485,45.391652113914496],[9.201810540523232,45.39163278255668],[9.2018027123964,45.39160843928612],[9.201797824917373,45.391595558277594],[9.20179308838922,45.39158561137346],[9.201791003315831,45.39158124049805],[9.201758882790317,45.391536885531856],[9.201726792927873,45.39149755313703],[9.201646192303842,45.391428206436025],[9.201546215033174,45.39135962290454],[9.201489981050162,45.3913239514286],[9.201475223198237,45.39130874749182],[9.201436104063983,45.39126845526887],[9.201398681536928,45.39123105841224],[9.201366862410403,45.3912031118775],[9.20133496372467,45.391185147736124],[9.201326665810125,45.39117956362987],[9.201318276591392,45.3911734486165],[9.201310179823032,45.39116694603899],[9.20130240092711,45.39116001984812],[9.201294494380857,45.39115312088474],[9.201286677323859,45.391146239765625],[9.201279242970225,45.39113920495333],[9.201271922570896,45.39113188190366],[9.201264218036837,45.39112430749742],[9.201255901080593,45.391116950195205],[9.201247392281513,45.39110953022186],[9.201239229806907,45.39110250568881],[9.201231118688561,45.391095553073924],[9.201223020410751,45.3910886184382],[9.201214947620702,45.391081665754754],[9.201206797897026,45.39107463219578],[9.201198635815079,45.391067715672754],[9.201190079502572,45.39106130390611],[9.201181792163553,45.39105508969092],[9.201174795875067,45.39104909823353],[9.201167221854446,45.39104229768904],[9.201159480871121,45.39103524540567],[9.20115148410755,45.39102811256125],[9.201143256794639,45.391020809099956],[9.201135029961943,45.39101364065427],[9.201126688222232,45.39100649041227],[9.201118371811052,45.390999277117146],[9.201109505991836,45.39099203778372],[9.201100973402017,45.39098510390263],[9.201092657857629,45.390978133634796],[9.201084610521361,45.39097114489274],[9.201076665703711,45.39096424598128],[9.201068951056522,45.39095740967276],[9.20106137737947,45.39095069913191],[9.20105482708574,45.390944382842314],[9.201048070071835,45.39093740983243],[9.201041108313282,45.3909303381694],[9.201034171022798,45.39092296042423],[9.201026631441879,45.39091505266967],[9.201018760070284,45.39090724451007],[9.20101055703551,45.3908995719497],[9.201002430874338,45.39089196226169],[9.200993999172827,45.39088465014737],[9.200986105827605,45.390877850151604],[9.200978608596436,45.39087107646295],[9.200971583267672,45.3908640859175],[9.200964582948725,45.39085694230837],[9.200957786390237,45.39084961831809],[9.200950835740745,45.39084206956959],[9.20094384670525,45.39083450288574],[9.200936755633077,45.39082698138639],[9.200929677464865,45.39081949586851],[9.200922663331296,45.39081205524338],[9.200916109789741,45.39080481183405],[9.20090958157643,45.39079750537192],[9.200903283245934,45.39079018050341],[9.200897342290602,45.390782764995734],[9.200891490632435,45.390775313326294],[9.200885881217738,45.39076772621417],[9.20088050111258,45.39075995867637],[9.20087541396762,45.3907519475932],[9.20087007056614,45.390743720932356],[9.200864701616819,45.390735494316104],[9.200859090204437,45.39072734013439],[9.200853300107074,45.3907192312717],[9.200847484302844,45.39071107744822],[9.200841681020378,45.390702851593296],[9.20083567359916,45.39069469810552],[9.20082964075759,45.390686580666596],[9.200823723049043,45.39067850803092],[9.200817907635129,45.39067046221882],[9.200812130769664,45.39066247934677],[9.20080648203449,45.390654604263126],[9.200801011414544,45.390646521840424],[9.200795515055884,45.39063838545576],[9.20078994173259,45.390630159194565],[9.200784151114178,45.390621897309785],[9.200778270692973,45.39061352756867],[9.200772326082003,45.39060506792844],[9.200765399382265,45.39059705106708],[9.20075846067332,45.39058925025372],[9.200751714286113,45.39058164712749],[9.200745708608492,45.39057397969324],[9.200740279923512,45.390566914322655],[9.200734811325464,45.39055939896492],[9.200729801662304,45.39055161276752],[9.200724740297549,45.39054365563898],[9.20071961442483,45.390535518600565],[9.200714411301352,45.390527210675764],[9.200709118343392,45.39051878589355],[9.200703352406961,45.39051027192932],[9.200697754164635,45.39050221672878],[9.200692245950648,45.39049433239164],[9.200687184628109,45.39048638426242],[9.200682136113429,45.390478445111626],[9.200676946951933,45.390470470202715],[9.20067184654659,45.39046230611396],[9.200666360868565,45.390453566627784],[9.200660722437174,45.39044498042859],[9.200654625106434,45.390436674069285],[9.200648681867914,45.390428592467785],[9.200643096670428,45.39042060925071],[9.20063776788906,45.39041288661669],[9.200632348987334,45.39040496611539],[9.200627184466878,45.39039673012788],[9.20062236533956,45.39038862855155],[9.200617584505697,45.390380517906756],[9.200612790676049,45.39037234427651],[9.200607702745538,45.39036409015149],[9.200602627718274,45.39035587200821],[9.200597424914573,45.3903476450875],[9.20059194138883,45.39033950867015],[9.200585202520251,45.390330402330264],[9.200579297976251,45.390322419669786],[9.200573457211592,45.39031440989373],[9.200567616448579,45.39030640011735],[9.200561762880842,45.39029838136197],[9.200555858375267,45.39029040770129],[9.20054992819504,45.390282398080736],[9.200543972340187,45.39027435250035],[9.200538029198068,45.39026628889501],[9.20053204789275,45.39025827036197],[9.20052610507177,45.39025029676685],[9.200520162347791,45.3902423501746],[9.200514117460562,45.39023441276229],[9.200508008384379,45.39022638545075],[9.200501477049706,45.390218160853735],[9.200495048644314,45.3902101431022],[9.200488684240709,45.39020216124265],[9.200482256347234,45.39019428750771],[9.200475803255834,45.39018651282908],[9.20046936329022,45.39017883713964],[9.20046325597348,45.390171304885186],[9.20045710988994,45.39016364668238],[9.200451078620375,45.39015594327235],[9.200445213040668,45.39014813155809],[9.200439334560972,45.39014028386154],[9.200433455892341,45.39013238215817],[9.200427615390238,45.39012443538189],[9.200421749181857,45.390116443644686],[9.200415895590904,45.39010840687933],[9.200410016420737,45.390100361157344],[9.200404137284002,45.39009232443612],[9.200398207018972,45.390084278802995],[9.200391944331514,45.39007615274151],[9.200385694706176,45.390068107667055],[9.200379279394527,45.39006017089611],[9.200372889856023,45.39005229708768],[9.20036655163972,45.39004448619691],[9.200360290167671,45.39003670217487],[9.200354195020342,45.39002898987029],[9.200348188788501,45.39002113339143],[9.200342271726107,45.390013204747],[9.20033636712246,45.39000518606904],[9.20033074305231,45.38999702288134],[9.200324978559168,45.38998888694264],[9.200319226937438,45.38998077798448],[9.200313092748091,45.3899728587198],[9.20030697139847,45.38996495743456],[9.20030086285682,45.3899570651277],[9.200294626825558,45.38994924505281],[9.200288339856622,45.389941470072436],[9.200282078533657,45.38993372205024],[9.200275868405678,45.38992600094149],[9.200269875128814,45.389918189441424],[9.200263868888692,45.389910323956855],[9.200257811266596,45.38990237755163],[9.200251612999661,45.389894395387685],[9.200245171162093,45.38988617061894],[9.200238844804625,45.38987808966591],[9.200232467795141,45.389870134817144],[9.200226117097918,45.38986239594935],[9.200219907683381,45.3898548728613],[9.200214285453312,45.389847222729394],[9.200208561568106,45.3898397257945],[9.200202453085405,45.389831842483254],[9.200196255151221,45.389823950327035],[9.200190146608495,45.389816049012936],[9.200184178808922,45.38980821046022],[9.200178274661402,45.389800308787805],[9.20017277872818,45.38979224438039],[9.200167321056549,45.38978416190348],[9.200161940223682,45.3897761332987],[9.200156623296463,45.38976811358299],[9.20015140901061,45.38976021970345],[9.200146208071562,45.38975248782084],[9.20014180003946,45.38974500658289],[9.200137134203974,45.389736868712475],[9.200132710196858,45.3897284783869],[9.20012818355132,45.38971996222471],[9.200123656463191,45.38971132004715],[9.200119256772307,45.38970257863403],[9.200114538069965,45.3896939367912],[9.200110254969161,45.38968565423194],[9.200106342519245,45.3896774250311],[9.200102723883038,45.38966919531622],[9.200099092410017,45.38966094762144],[9.200095384354729,45.38965271806272],[9.200091766831417,45.389644803385444],[9.200087943554541,45.38963650201885],[9.20008464333375,45.38962800171231],[9.200081534064893,45.38961931204775],[9.200078373128534,45.38961046045292],[9.200075007231401,45.389601447195886],[9.200071500182428,45.38959225416272],[9.200067875374847,45.389582269235],[9.200063894658344,45.38956916153362],[9.200052908988502,45.38955114245644],[9.20003757152404,45.38953797360052],[9.2000036680703,45.389523487027546],[9.199970885066351,45.38951520027228],[9.199950833419335,45.38950554108768],[9.199921388659662,45.38949115471179],[9.199911933285211,45.38948688669017],[9.199901979519833,45.389482565531694],[9.199891578271297,45.38947813714048],[9.19988089551215,45.38947357422297],[9.199869764985134,45.38946882306273],[9.199858468202583,45.389464018184896],[9.19984696715802,45.389459249667375],[9.199835236365965,45.38945453555679],[9.199823275858119,45.38944988485417],[9.199810538487833,45.38944591059255],[9.199797711825108,45.38944197249006],[9.199784566880298,45.389438340980604],[9.19977064621202,45.389435709950774],[9.199756814997523,45.3894330877642],[9.199743111338467,45.38943041134646],[9.199729344663165,45.38942797806784],[9.199715490055558,45.3894259679947],[9.199701737739101,45.38942398474473],[9.199687998925764,45.38942220849579],[9.19967438795224,45.38942045902553],[9.199660690659174,45.38941959181611],[9.199647223115972,45.3894186701973],[9.19963401087147,45.38941769412457],[9.199621015823903,45.38941672667252],[9.199608199713305,45.38941578591024],[9.199595524437823,45.389414934912274],[9.19958297712811,45.38941414669762],[9.199570532077217,45.38941337630555],[9.199558137713186,45.38941248880883],[9.199545768487296,45.38941148425214],[9.199533361381281,45.38941060577615],[9.199520890435245,45.389409736411224],[9.199508368360371,45.38940885813298],[9.19949585849128,45.38940781781153],[9.19948343658943,45.38940636328286],[9.199471077738433,45.38940467461325],[9.199458706113766,45.389402985964566],[9.19944633423701,45.38940122530588],[9.199434050802164,45.38939918545627],[9.199421855777823,45.389396857414766],[9.19940964794848,45.389394520393125],[9.199397427250947,45.38939215638917],[9.199385231566144,45.38938963932092],[9.199373035914004,45.38938713125247],[9.199360814682562,45.38938461422613],[9.199348580646214,45.38938208821967],[9.199336409566943,45.38937930106911],[9.199324212497899,45.389376387946534],[9.199311913140214,45.38937344799744],[9.199299524268302,45.38937048119952],[9.19928697008846,45.38936773071558],[9.19927421360357,45.38936557465789],[9.199261520991604,45.38936341848756],[9.199248943476396,45.38936129811995],[9.199236443208301,45.38935934863813],[9.19922404586224,45.38935760600198],[9.199212159776614,45.38935594348455],[9.199200043594855,45.389354236360774],[9.199188053484917,45.389352051955775],[9.19917611283232,45.3893493994041],[9.199164005798215,45.389346657129344],[9.199151451440834,45.389343852623945],[9.199138783882246,45.38934155237814],[9.19912617972334,45.389339117003445],[9.199113727501466,45.38933629431382],[9.199101249795152,45.389333489669504],[9.199088582114726,45.389331153413735],[9.19907521373688,45.38932935844421],[9.199062190425941,45.3893276078785],[9.199048943642616,45.389327702933976],[9.1990359149699,45.38932806764273],[9.199023461018134,45.38932839534572],[9.199010891686823,45.38932860623323],[9.198998396069234,45.389327979885],[9.198986441584111,45.38932502129873],[9.198974372067722,45.38932204490896],[9.198962162601882,45.38931923078182],[9.198949877342114,45.38931665981598],[9.198937745722771,45.38931418759424],[9.198925577641045,45.389312246501916],[9.198913827868264,45.389309377563514],[9.198902217700851,45.38930624734813],[9.198890671469636,45.389303135022686],[9.198878665645713,45.38930010450521],[9.198866507097751,45.38929723627252],[9.198854348519507,45.3892943590374],[9.198842228328632,45.38929149973654],[9.198830222856305,45.38928856822595],[9.198818383609597,45.38928568143092],[9.198807464969532,45.38928303606586],[9.198796329008648,45.389280346071615],[9.198785765470202,45.38927696199392],[9.198776130367568,45.389272406153836],[9.19876722460241,45.389268191089286],[9.198757256581809,45.389263410797454],[9.1987477718789,45.38925802658875],[9.198739167821834,45.389252415821],[9.198730819285267,45.38924681360994],[9.198722456527536,45.38924079737045],[9.198715028346712,45.389235364581396],[9.198708478638594,45.38922908415889],[9.19870118553175,45.38922209393685],[9.19869349541412,45.38921481636728],[9.198685639483692,45.38920761109427],[9.198678167950709,45.389200738195434],[9.198671155194466,45.38919354945955],[9.198664947318616,45.38918638632908],[9.198658483012993,45.38917895360926],[9.198653372286387,45.38917137452064],[9.198648925386522,45.38916366826332],[9.198645233055537,45.389156212727656],[9.198642087661655,45.38914808115671],[9.198639606786237,45.38914002044109],[9.19863750772537,45.38913155401121],[9.198635804260437,45.389122969879566],[9.198634100449809,45.38911428673604],[9.198632421810686,45.389105495535006],[9.198624057364082,45.38907706644866],[9.198619501671985,45.38906747013913],[9.198614730076779,45.38905823424987],[9.198609628962794,45.38904974602718],[9.198604336424365,45.38904131214337],[9.198598865833777,45.38903310359688],[9.198593229304544,45.389024931342725],[9.198587375361875,45.389016687456504],[9.198581559995565,45.38900851551215],[9.198575617045156,45.389000388794614],[9.198569508408017,45.38899237037804],[9.198563438284292,45.388984405901105],[9.198557138224796,45.38897644182286],[9.19855079956102,45.388968396801005],[9.198544154158517,45.388960307305375],[9.198536103993948,45.38895233726175],[9.198526967921975,45.38894434209831],[9.198518067357517,45.388937939727626],[9.198510213941226,45.3889314365269],[9.198502512119802,45.38892444700094],[9.198494605722907,45.38891740382251],[9.19848639287081,45.38891039717974],[9.198478128923599,45.38890339062501],[9.198469621826714,45.38889625847545],[9.198461063949289,45.38888921642478],[9.198452174508622,45.38888233696908],[9.198442508039943,45.38887608894029],[9.198433314347547,45.388869876095285],[9.198424771265088,45.38886341008929],[9.198416342618609,45.38885679086474],[9.1984077859484,45.388850090851335],[9.198398986977653,45.388843508272245],[9.198390367540352,45.38883712340632],[9.19838200362187,45.38883074709778],[9.198374124153148,45.38882409091334],[9.198366155329248,45.388817452885526],[9.198357815770594,45.38881073448959],[9.19834954033667,45.38880408799103],[9.198342083149022,45.388797638098566],[9.198334867165618,45.38879075573259],[9.198328022266052,45.38878405274585],[9.198321034337331,45.38877662991517],[9.198312537508254,45.388768768643466],[9.198301751701674,45.38876022725154],[9.19828873555651,45.38875316591118],[9.19827815312025,45.38874799059168],[9.19827010294097,45.38874365699046],[9.198262971472344,45.38873902475899],[9.198255310763267,45.388732818244264],[9.198247636904664,45.388726503738084],[9.198239564721701,45.38871952383701],[9.19823137706997,45.38871240011716],[9.198222755629942,45.38870543016764],[9.19821398077549,45.38869842447868],[9.198205474967402,45.38869164335151],[9.198197033158165,45.38868489811738],[9.198188757321823,45.38867812559176],[9.198180685906639,45.38867136171256],[9.19817256298824,45.38866448090714],[9.198164414523347,45.38865760014539],[9.19815627892885,45.38865074636416],[9.198148220044501,45.38864391045179],[9.198140276067358,45.38863705633756],[9.198132625554024,45.38863010270201],[9.198124808318402,45.38862296033071],[9.198116901445436,45.38861575510601],[9.198108854026648,45.388608541123006],[9.19810097210978,45.388601164832316],[9.198092707313656,45.3885938882165],[9.198084648539211,45.38858707930282],[9.198077765465342,45.388580403370334],[9.198069435046664,45.388572622802464],[9.19806073803815,45.388565950009074],[9.198052731372556,45.38855942903943],[9.198044710899065,45.38855261105544],[9.198036587951432,45.38854571223799],[9.198028157954155,45.38853867893422],[9.198019944806695,45.38853155524312],[9.198011565973161,45.388524539851886],[9.198003034259123,45.38851764173939],[9.197994553800825,45.3885107885433],[9.197985831324944,45.3885041337905],[9.197976930576996,45.38849764136605],[9.19796805550494,45.38849118490103],[9.197959257080086,45.388484728302714],[9.197950432826557,45.38847819073809],[9.19794173587789,45.38847152693659],[9.197932924214456,45.38846493534198],[9.197924252880982,45.38845828949707],[9.197915798397121,45.38845155326502],[9.197907458726153,45.38844477182795],[9.19789910622028,45.38843797241024],[9.197890740879531,45.38843115501178],[9.197882273472752,45.3884243737938],[9.197873640505303,45.38841773687983],[9.197865033182287,45.38841112692423],[9.197856617254482,45.38840445362904],[9.197848354367965,45.38839770805943],[9.197840014618942,45.38839089961411],[9.197831624245431,45.38838422627285],[9.197823271788916,45.38837743585055],[9.197814868269074,45.38837065451706],[9.197806336852862,45.38836382839831],[9.197797793103302,45.3883571283163],[9.197789376846693,45.38835035600408],[9.19778097336626,45.38834358366915],[9.197772825621751,45.38833688290067],[9.197764587833346,45.38833000226441],[9.197756337304112,45.38832313065069],[9.19774792080684,45.388316286326656],[9.197739466333786,45.38830954108015],[9.19773098625177,45.38830277787503],[9.197722544619545,45.38829605060738],[9.197714077378373,45.38828930538109],[9.197705661329787,45.38828258706908],[9.197697296223168,45.38827582366275],[9.197688930930601,45.388269006249274],[9.197680539966473,45.38826215287491],[9.197672097813841,45.38825527258497],[9.197663528203712,45.38824847352485],[9.197655060788758,45.388241674287556],[9.197646695537628,45.38823486587199],[9.197638458343025,45.388228147246046],[9.197630093346396,45.38822141083795],[9.197621766329716,45.38821457535105],[9.197613221998246,45.388207695233206],[9.197604052581791,45.38820105922512],[9.197594488202641,45.38819472093604],[9.197584949937399,45.388188544621705],[9.19757606359296,45.38818249319679],[9.197567814516713,45.38817602661822],[9.19755956544235,45.388169560039],[9.197551634752593,45.38816281387407],[9.19754358822124,45.38815581587653],[9.197535119426073,45.388148611581215],[9.197525179763035,45.38814087875704],[9.197515026009691,45.388134028413624],[9.197504173844555,45.388128376426906],[9.197494741986345,45.388123406074406],[9.197487825785055,45.3881181883482],[9.197479705501895,45.3881120185786],[9.197471749625636,45.38810537146408],[9.197463627249826,45.38809859862034],[9.197455249018404,45.38809171820387],[9.19744669210796,45.38808488310078],[9.197438135199587,45.38807804799709],[9.19742970590917,45.38807117666792],[9.197421353734596,45.38806444022226],[9.197413116591457,45.38805772157977],[9.197405300057142,45.3880507321767],[9.19739745778891,45.38804368881063],[9.197389398425575,45.38803666382079],[9.19738103261111,45.38802967536366],[9.197372756467534,45.388022758760336],[9.197364301863983,45.38801595047798],[9.197355694129753,45.38800918746483],[9.197347265172255,45.38800240614039],[9.197338721656475,45.38799574202775],[9.197330331744359,45.387989167660976],[9.197322017728338,45.38798237713529],[9.19731371611323,45.38797547857385],[9.197305043895549,45.387968535645165],[9.1972966271928,45.38796160127636],[9.197288414502205,45.38795455854146],[9.19728006142387,45.387947552052545],[9.197271823564305,45.38794061737351],[9.197263624122728,45.38793370963107],[9.197255514445429,45.38792690074589],[9.197247340805985,45.387920064966956],[9.197238950259395,45.387913301570464],[9.197230495656985,45.387906484276904],[9.197221658209688,45.3878997756564],[9.19721278331722,45.38789331913173],[9.197204010650495,45.387886871431284],[9.197195812474734,45.387880323727465],[9.197187613738489,45.387873614003475],[9.197179606271359,45.38786680493665],[9.19717145854149,45.38786006812011],[9.1971632471932,45.38785340342179],[9.197155265311189,45.38784660331032],[9.19714750068366,45.38783982982733],[9.197139684180913,45.3878328314046],[9.197131892978309,45.387825760928614],[9.197124165366775,45.38781860933229],[9.197116807579821,45.38781127707534],[9.197109475436541,45.38780397177716],[9.197102232557292,45.387796621319005],[9.19709505317538,45.38778916273734],[9.197087745930071,45.38778166837087],[9.197080260068793,45.387774237319604],[9.197072570792901,45.387767085653614],[9.197064996297902,45.38775987978254],[9.197057319362804,45.387752602078265],[9.197049412559611,45.387745342771645],[9.197041070161518,45.387737715167695],[9.197032486495232,45.387730502031204],[9.197023240454909,45.38772383010334],[9.197014212074583,45.38771730181821],[9.197005069978712,45.38771113377389],[9.196995876913595,45.38770500182116],[9.196986964660384,45.38769880637619],[9.19697819226791,45.38769242166574],[9.196969483653856,45.38768600984136],[9.196961935854278,45.38767912795863],[9.19695498674998,45.387671758983],[9.196948573407017,45.38766417305728],[9.196944241168241,45.38765627751012],[9.196884557818398,45.38766283404685],[9.196851396158605,45.38766648256181],[9.196810994311537,45.38767091761977],[9.196802525931588,45.38767484768363],[9.196791368678047,45.38767695513941],[9.196781102362095,45.387678124942916],[9.196769354322457,45.38767931529596],[9.196757723111348,45.38767735504661],[9.196746104643884,45.38767538577297],[9.19673485578198,45.38767317283179],[9.196723360349742,45.38766984417159],[9.196711775376103,45.38766647965961],[9.196700470341272,45.387662799625126],[9.196689227900242,45.38765875043506],[9.196678061730916,45.38765459309906],[9.196666971708709,45.38765029161278],[9.196655740987168,45.38764593636036],[9.196644395737485,45.3876417073197],[9.19663303787126,45.38763752330532],[9.196621782292198,45.387633366117434],[9.196610551888975,45.38762910087145],[9.196599244936875,45.38762486275931],[9.196587797721632,45.38762069689624],[9.196576491240089,45.38761659379823],[9.196565286827594,45.38761245451912],[9.196554311352156,45.38760802680909],[9.196543081176983,45.38760382456407],[9.196531659673788,45.38759970365689],[9.196520148972237,45.387595645909755],[9.196508778630596,45.38759154291474],[9.19649743362065,45.38758737686701],[9.196485922519333,45.38758320210226],[9.19647428480045,45.38757935159492],[9.196462660168418,45.3875755910754],[9.196451175740554,45.38757174030249],[9.196439920312335,45.387567619100935],[9.196428651925025,45.387563443913734],[9.19641748485989,45.38755901651939],[9.19640624149489,45.38755468826755],[9.196395036453556,45.387550359948776],[9.19638386970477,45.38754602256202],[9.19637279200221,45.38754157700768],[9.196361727075361,45.38753713143023],[9.19635057301237,45.38753276701504],[9.196339291615693,45.38752851983211],[9.196327958969258,45.38752422773029],[9.196316268653144,45.387519936241034],[9.196304770228368,45.38751572543165],[9.196293081626294,45.387511929],[9.19628149555966,45.38750823140383],[9.196269998663595,45.38750446164433],[9.196258539904395,45.38750063781145],[9.196247182965411,45.38749670578903],[9.196235686353774,45.38749301703589],[9.196224164444402,45.38748940033422],[9.196212794922602,45.387485522336796],[9.196201615892791,45.387481319970384],[9.196190385613342,45.38747707268509],[9.196179027440486,45.387472780612214],[9.196167619012654,45.387468731655275],[9.19615591715817,45.387464791213965],[9.196144368872593,45.38746093151848],[9.196132858755105,45.3874570267507],[9.196121246354258,45.387453095153624],[9.196109761632504,45.387449145334266],[9.196098365926177,45.38744507834629],[9.196086906320609,45.38744100246554],[9.196075434315523,45.38743703461864],[9.196063872956442,45.38743308492593],[9.196052286237435,45.38742918928242],[9.196040725285354,45.38742535660158],[9.1960291514677,45.387421496938174],[9.196017590456632,45.387417646252814],[9.196005851636576,45.38741409290861],[9.195994049414015,45.38741067468899],[9.19598229819553,45.38740722937733],[9.19597061041355,45.387403657939835],[9.195959087856115,45.38739984318722],[9.195947590692908,45.38739598338424],[9.195936246321953,45.38739197930019],[9.195924939808823,45.38738784013295],[9.19591364604024,45.387383691941665],[9.195902352180191,45.38737951674595],[9.195891058166614,45.387375296543716],[9.195879751256644,45.3873710403578],[9.195868418676328,45.387366748210155],[9.19585688239734,45.387362654435236],[9.19584510381848,45.38735867808879],[9.195833389731533,45.38735488165359],[9.195821612583106,45.3873513193549],[9.195809950339576,45.387347738856064],[9.195798364679105,45.38734414022265],[9.195786982565565,45.3873402982089],[9.195775574998748,45.387336483241],[9.19576415469055,45.38733267729487],[9.195752848853058,45.38732872713346],[9.195741555884117,45.38732480395236],[9.195730300990446,45.38732080869585],[9.195719198424262,45.38731653414213],[9.195708070032827,45.38731217862127],[9.195696826708712,45.387307832297054],[9.195685353610603,45.38730353137036],[9.195674033677369,45.38729919417603],[9.195662688415014,45.38729492003192],[9.195651178054264,45.387290925204475],[9.195639667974106,45.387287011385624],[9.195628208867253,45.38728306147392],[9.195616813290695,45.38727901243987],[9.195605340979236,45.3872749365324],[9.195593779716821,45.38727099579301],[9.19558214209136,45.38726713619326],[9.195570491817495,45.38726331261859],[9.195558752530548,45.38725960620967],[9.195546962211417,45.38725591788909],[9.195535095405207,45.38725227470373],[9.195522910987352,45.387249136123934],[9.195510662949063,45.387246069660726],[9.195498363909344,45.387243030286754],[9.19548573550566,45.38724079257609],[9.195473145517626,45.38723858180177],[9.195460593883285,45.387236379961735],[9.195447991928402,45.38723440323486],[9.19543542866771,45.38723253445423],[9.19542291653446,45.38723067458607],[9.195410468178718,45.38722878760418],[9.195398058021702,45.38722686455112],[9.195385647834565,45.387224932495585],[9.195373237524457,45.38722296443436],[9.195360801543572,45.38722096041102],[9.19534835278965,45.38721895640815],[9.195335878581623,45.38721697945079],[9.19532336623841,45.387215056564074],[9.195310841307796,45.38721318770431],[9.195298291077732,45.38721139089551],[9.195285728229248,45.38720963911261],[9.195273228786997,45.38720775220291],[9.19526077991529,45.387205712186145],[9.195248344003991,45.387203726152705],[9.195235895876444,45.3872019021594],[9.19522347332842,45.38720008712221],[9.19521112680607,45.38719809193112],[9.195198767232332,45.387196015750604],[9.19518626705376,45.38719391280518],[9.195173703532268,45.387191962985916],[9.195161178055061,45.387189932090095],[9.195148703705287,45.3871879101068],[9.195136242315803,45.38718594210693],[9.195123819341633,45.387184001043586],[9.195111421885203,45.38718205093431],[9.195099062256755,45.38717995674079],[9.195086664400236,45.38717788961462],[9.195074189870299,45.38717581361662],[9.19506162685111,45.38717400780248],[9.195049076699327,45.38717222896845],[9.195036552096123,45.38717045008948],[9.195024128696138,45.387168383],[9.195011730535889,45.38716622585476],[9.19499930692146,45.387164095754954],[9.194986832644865,45.38716209175616],[9.194974345564361,45.387160078776674],[9.194961833122283,45.38715811984587],[9.194949244284771,45.38715623305309],[9.19493671934846,45.387154355151125],[9.19492422002254,45.38715249520647],[9.19491174615258,45.387150608213666],[9.194899310605127,45.387148721154205],[9.194886925814444,45.387146734994346],[9.194874515692955,45.38714481188431],[9.19486211837707,45.38714289775226],[9.194849720753307,45.38714089360793],[9.194837348431246,45.38713881741],[9.194824988883981,45.387136741189],[9.19481260366637,45.387134629005786],[9.194800307095342,45.3871322916417],[9.194788035887937,45.387129900226235],[9.194775789859031,45.387127400752846],[9.19476359384675,45.38712458615294],[9.19475135960658,45.38712179862024],[9.194739023916977,45.38711922728638],[9.194726586716108,45.38711685414909],[9.194714099006871,45.38711465211818],[9.19470158630608,45.387112612149025],[9.194689150465425,45.387110635055706],[9.194676778032418,45.38710852283601],[9.19466440532275,45.38710632960515],[9.194652007066265,45.387104136416355],[9.194639570581584,45.387101970294744],[9.19462713385117,45.387099732163],[9.194614684532857,45.38709754805818],[9.194602376159862,45.387095489728345],[9.194590271861596,45.38709334103862],[9.194578485585716,45.38709080475759],[9.194566916066144,45.38708815109192],[9.194556227174886,45.387085270898986],[9.194545228629284,45.38708149111709],[9.194534216571558,45.38707749532968],[9.194524479098728,45.38707267827011],[9.194514676371355,45.387067456269094],[9.19450766462243,45.38706033028121],[9.19450159992931,45.38705372474937],[9.194496695133232,45.38704637915168],[9.194492274851935,45.387038771697],[9.194483295180426,45.387027697550124],[9.194328773718047,45.38699179349245],[9.194317293585737,45.3869891216473],[9.194304743190113,45.38698725272041],[9.19429219276453,45.386985374791024],[9.194279642401327,45.38698351486242],[9.194267041374413,45.38698178103453],[9.19425440199591,45.386980038269215],[9.19424177539204,45.38697829548077],[9.19422917455207,45.38697661565529],[9.19421657392823,45.38697499883599],[9.194203986048183,45.38697337299253],[9.194191423778117,45.38697176510655],[9.194178899676489,45.386970112148624],[9.194166452249494,45.38696846806041],[9.194153992049358,45.38696682399251],[9.194141569679365,45.38696503584072],[9.194129134259487,45.38696316669942],[9.194116622166549,45.38696128868573],[9.19410405919429,45.38695947376495],[9.194091432691815,45.38695775796315],[9.194078844542407,45.3869560510961],[9.194066307489166,45.38695434414095],[9.194053821470593,45.38695261909557],[9.194041335452775,45.38695089404886],[9.19402884925127,45.38694911499421],[9.19401637570144,45.38694729991217],[9.194003889163398,45.38694542184277],[9.193991389821592,45.38694353479256],[9.193978890480604,45.38694164774099],[9.193966391171188,45.38693976968913],[9.193953879211657,45.38693792766192],[9.193941367252929,45.38693608563336],[9.193928855264296,45.38693423460234],[9.19391634330719,45.38693239257101],[9.193903831320167,45.38693054153726],[9.193891332138529,45.38692869948153],[9.193878820153135,45.38692684844501],[9.193866308199267,45.38692500640822],[9.19385380902006,45.38692316434838],[9.193841297129227,45.38692134031101],[9.193828785269906,45.3869195252734],[9.193816260637535,45.38691771025603],[9.193803761553657,45.38691589519401],[9.193791236922884,45.38691408017387],[9.19377872506675,45.38691226513074],[9.19376621321141,45.386910450086255],[9.19375370135687,45.38690863504038],[9.193741202276968,45.386906819971465],[9.193728690424019,45.386905004922845],[9.193716178571869,45.38690318987288],[9.193703666720507,45.38690137482149],[9.193691154869947,45.38689955976877],[9.193678643020194,45.38689774471466],[9.19366613117122,45.38689592965918],[9.193653632096888,45.386894114580684],[9.19364110747568,45.3868922995441],[9.19362860840294,45.386890484462874],[9.193616096557157,45.38688866940191],[9.193603584712177,45.38688685433958],[9.19359107286799,45.38688503927586],[9.193578573798437,45.386883224189155],[9.193566061955838,45.38688140912269],[9.193553550083378,45.38687958505377],[9.193541050893561,45.38687773395859],[9.193528551673893,45.38687587386094],[9.193516065259534,45.38687402274143],[9.193503566072152,45.3868721716421],[9.19349106688558,45.38687032054146],[9.19347856769983,45.38686846943943],[9.193466068514878,45.386866618336036],[9.193453582104578,45.38686476720967],[9.193441082890612,45.386862907102426],[9.19342860894931,45.386860965940805],[9.193416147782694,45.386859024756234],[9.193403673843088,45.38685708359187],[9.1933911998737,45.38685513342504],[9.193378725935801,45.386853192257966],[9.193366264772582,45.386851251067924],[9.193353803610208,45.386849309876524],[9.193341342448692,45.38684736868377],[9.193328868514183,45.38684542751121],[9.193316407354361,45.38684348631574],[9.193303933421557,45.386841545140484],[9.193291485037262,45.386839603920706],[9.193279011075534,45.386837653741594],[9.193266549949724,45.38683572154176],[9.193254075989701,45.38683377135996],[9.1932416276088,45.38683183013475],[9.193229153681084,45.386829888951304],[9.193216705332496,45.386827956724424],[9.193204243996657,45.386825961510134],[9.193191846224725,45.38682387617567],[9.193179410132228,45.386821790904605],[9.19316705028574,45.386819588488564],[9.193154664861959,45.386817377113196],[9.1931423177606,45.38681516567186],[9.193129957886379,45.38681295425068],[9.193117572465482,45.386810742871305],[9.193105212593187,45.38680853144747],[9.193092865495666,45.38680632000071],[9.193080480077645,45.386804108617326],[9.193068120208233,45.38680189718948],[9.193055760339767,45.386799685760224],[9.193043374924635,45.38679747437281],[9.193031015058097,45.38679526294089],[9.193018655192523,45.38679305150771],[9.193006282401196,45.38679079508921],[9.192993935127902,45.38678852962523],[9.192981587855591,45.38678626415984],[9.192969227810453,45.38678399871473],[9.19295688050954,45.3867817242456],[9.192944520466368,45.386779458797754],[9.192932160424176,45.38677719334861],[9.192919813126222,45.38677491887547],[9.192907453085992,45.38677265342361],[9.192895093046758,45.386770387970465],[9.192882732977946,45.38676811351482],[9.192870372940678,45.38676584805896],[9.192858025617095,45.386763564578054],[9.192845678263945,45.38676127209469],[9.192833318137982,45.38675897963152],[9.192820970786826,45.38675668714549],[9.19280861066285,45.3867543946797],[9.192796263283132,45.38675209318986],[9.192783915934957,45.38674980069983],[9.192771555783427,45.386747499228875],[9.192759208406708,45.386745197735046],[9.192746848287715,45.38674290526255],[9.192734500912989,45.38674060376604],[9.192722140795986,45.38673831129081],[9.192709793423244,45.386736009791655],[9.192697446051515,45.386733708291175],[9.1926850859375,45.38673141581193],[9.19267272579396,45.38672911433028],[9.192660365651408,45.386726812847265],[9.192648018314188,45.38672452034252],[9.192640732607972,45.38672316443495],[9.192631775751746,45.38674507029968],[9.192619474342173,45.38677516383494],[9.192580667496939,45.386865672662694],[9.192522579553572,45.3870376022708],[9.192512800897672,45.387039427953795],[9.19250675015948,45.387055721204774],[9.192495856031183,45.387086487443234],[9.192486196849462,45.38712357940767],[9.192477763980111,45.38716067830934],[9.192475428334008,45.38719143014801],[9.192471906214696,45.387233939476964],[9.192475707145139,45.38727372714269],[9.192461143790572,45.38730359943442],[9.192451398779111,45.387315371319964],[9.192448638604423,45.387318850404135],[9.192423402792972,45.387350684887764],[9.192428411613133,45.38738504283295],[9.19243587252187,45.387423015113754],[9.192428171198605,45.38747623382851],[9.192424778779214,45.38748539369715],[9.19242124444263,45.3874941397517],[9.192417684069241,45.38750274183163],[9.192414364540797,45.38751079443664],[9.192410905412151,45.387519117310596],[9.19240729378728,45.38752767447062],[9.192403376347775,45.38753645717337],[9.192399127179668,45.38754535744866],[9.192395234493127,45.387553906079724],[9.192391443479153,45.38756230152021],[9.192388048153024,45.387570606283866],[9.192385866477329,45.38757894501137],[9.192383684648586,45.38758723873335],[9.19238207981323,45.38759617056636],[9.192381124775002,45.38760460624392],[9.19238033619476,45.38761315865644],[9.192379624685017,45.38762183695538],[9.192379143533902,45.38763064088301],[9.192379020481582,45.38763957022456],[9.19237892328204,45.38764858953405],[9.192378685598822,45.38765761808089],[9.192379341974627,45.387666609119925],[9.192380547237107,45.387675482221226],[9.192381943317763,45.38768412097194],[9.192383542685878,45.38769243533964],[9.1923854857948,45.38770040708588],[9.192388385950174,45.38770808018519],[9.192391515612057,45.38771562688246],[9.192394619757199,45.38772318262372],[9.19239789011796,45.387730783091115],[9.19240215667109,45.38773832787639],[9.192406564776158,45.38774617846238],[9.192411152999304,45.387754406793356],[9.192415908475182,45.38776298588747],[9.19242081833847,45.38777188876286],[9.192425371841127,45.387781179286506],[9.192428866532689,45.38779089464444],[9.192431978491937,45.387800754664205],[9.192434324680203,45.38781081399685],[9.192436262800983,45.38782108104205],[9.19243654148486,45.38783170192272],[9.192435837847206,45.38784270250345],[9.19243452303635,45.38785428918637],[9.192428775016642,45.38786570330198],[9.192422415577402,45.38787763151075],[9.192411451527668,45.38788781223936],[9.192395904540929,45.38789887378396],[9.192381898305973,45.387904712072746],[9.192367567687514,45.38790906571653],[9.192353129571503,45.38791185334024],[9.192339227355545,45.38791446003846],[9.192325604644294,45.387916616208024],[9.192312237413423,45.38791877194652],[9.192298984873977,45.387920846480405],[9.192285361428487,45.387922786618965],[9.19227247820808,45.38792452748683],[9.192259658278491,45.38792609722521],[9.192246876548571,45.38792763089336],[9.192234043082063,45.387928975623026],[9.192221220561722,45.38792978026424],[9.192208627700273,45.38793050350796],[9.192196354038101,45.38793118120838],[9.192184297595784,45.387931876544954],[9.192172345537957,45.387933219787236],[9.192160227629703,45.38793462631478],[9.19214795649283,45.38793605110067],[9.192135737243108,45.38793770982785],[9.19212367176861,45.38793951231381],[9.192111912718989,45.387941269278265],[9.192100677679713,45.38794310637207],[9.19209017100558,45.38794501425114],[9.192080367087613,45.38794697495642],[9.19207116495047,45.387949348703266],[9.192062283838156,45.38795221697335],[9.192053134712697,45.3879551577018],[9.19204139491252,45.38795883187022],[9.192032337728742,45.3879625195376],[9.192022897595137,45.38796628885714],[9.192013100120585,45.3879701577882],[9.19200172027055,45.38797450643425],[9.191992487377611,45.387979121510995],[9.191983356645443,45.387983727414465],[9.191972886913797,45.38798901064949],[9.191964050164959,45.387993670065015],[9.191954502627546,45.38799968084379],[9.191947494760148,45.3880049852722],[9.191938638723023,45.3880114989536],[9.191931899473552,45.388016910944174],[9.19192434891433,45.388024169529565],[9.191916951916003,45.38803150886714],[9.191909542141664,45.388038848225634],[9.191901582805452,45.38804610749508],[9.191895179931436,45.38805277907936],[9.191887949232166,45.388060190145254],[9.191880833710762,45.388067664025556],[9.191873373408203,45.388075174488144],[9.191866053162881,45.38808254969823],[9.191859090256363,45.38808982529606],[9.191852523223947,45.38809706422515],[9.191846032560974,45.38810422201552],[9.191839708385384,45.388111505542376],[9.191834062634458,45.38811920198405],[9.191828277035334,45.388127096685025],[9.191822325978881,45.388135171685924],[9.19181605587159,45.38814333723284],[9.19180967128161,45.38815164698953],[9.191803223183799,45.38816006486608],[9.191796301833595,45.388168303512636],[9.191789303350422,45.38817639826978],[9.19178267537583,45.388184510407754],[9.191776174624145,45.38819246931268],[9.19176969865932,45.38820020314709],[9.191763030989529,45.38820791029899],[9.191756375119864,45.388215329394114],[9.191750064514816,45.388222855924035],[9.191743562387089,45.3882304097779],[9.191736574900945,45.38823798244697],[9.19172926830232,45.3882456276595],[9.19172188551248,45.38825340801637],[9.191714451897393,45.38826126946817],[9.191706622129713,45.388269086577445],[9.1916997743295,45.38827641597937],[9.191693308203188,45.38828328568318],[9.191687773768649,45.388289910794896],[9.191682646587342,45.38829608516697],[9.19167840130774,45.38830240207971],[9.191675865942456,45.388308176059404],[9.19167185600161,45.38831609478112],[9.19166765399169,45.38832387880723],[9.191663619563101,45.388332112609646],[9.191658757059598,45.38834101388347],[9.191653370206346,45.38834973601254],[9.191647906918961,45.38835852127732],[9.191642021930376,45.3883672622424],[9.191635755749012,45.38837660692215],[9.191630458611712,45.38838541891122],[9.191624700509337,45.38839390763088],[9.191619184568202,45.38840223392412],[9.191614051122313,45.38841034354917],[9.191609389287596,45.388418146345344],[9.19160513449517,45.388425435394566],[9.191602239253998,45.388430561892825],[9.191600743380919,45.388437756310594],[9.19160021995483,45.3884454261605],[9.191600464315846,45.38845349077503],[9.191601284244229,45.38846177045317],[9.191602117463129,45.38847020312843],[9.191603206500162,45.3884787343879],[9.191604397852561,45.38848730148057],[9.191604952134545,45.3884963557017],[9.191605327760003,45.38850546422884],[9.191606546088527,45.38851445432997],[9.191607866337888,45.388523363250094],[9.191609467711361,45.38853229870288],[9.19161158008418,45.38854124230105],[9.191613577702254,45.38855024909931],[9.191615793180913,45.388559462559016],[9.19161790573791,45.388568460163526],[9.191619723881328,45.38857727823822],[9.191621372863663,45.38858517847968],[9.191624019116373,45.38859333808408],[9.191626639487422,45.38860139871915],[9.19162956853563,45.38861007991605],[9.19163252413515,45.38861905810607],[9.191635249920896,45.38862807268544],[9.191637643850703,45.38863716883085],[9.191640331406523,45.388646210477546],[9.191643478319573,45.388655098335406],[9.191646484140051,45.388663815407774],[9.191649310423692,45.38867232575444],[9.191652570273321,45.388680610346334],[9.191655804271754,45.38868880496995],[9.191658974339163,45.38869698169828],[9.191662438063373,45.38870511292895],[9.191666055109952,45.388713252903784],[9.191669417097682,45.388721519321706],[9.191673455878933,45.38872971259669],[9.191678528920558,45.38873776912183],[9.191683232421262,45.38874609630005],[9.191687553788901,45.3887547481593],[9.191691773844557,45.38876366122131],[9.19169510106981,45.388772980830275],[9.191698402990605,45.388782372490645],[9.191701117448027,45.38879181014086],[9.191703231181528,45.38880114978491],[9.191705306046194,45.38881032747344],[9.191707380972273,45.388819523164095],[9.191709469493423,45.3888289618628],[9.191711716470365,45.38883993049004],[9.191711048087104,45.388850066895664],[9.19171003443345,45.38886009586608],[9.191707461557193,45.388869902420275],[9.19170381460714,45.388879404735086],[9.191701383417799,45.388885772615566],[9.19164256669311,45.38888092951422],[9.191625533739114,45.38887952685939],[9.19154189483068,45.388828738439884],[9.191476953187012,45.3887955609101],[9.191442426161863,45.38876583390426],[9.191421106577728,45.38875090067325],[9.191408042031636,45.38873301025591],[9.191354651498049,45.388689327002],[9.191328615299659,45.38867351952932],[9.191283589171924,45.38864036259266],[9.191260961826396,45.388623982333755],[9.191016019882078,45.38849638625362],[9.191009174032544,45.38849293224197],[9.19099763203292,45.3884871007661],[9.190969036092595,45.38847738225598],[9.19096293049745,45.38848513342843],[9.190956735269449,45.38849282174212],[9.19095071909039,45.38850057276465],[9.190944741171798,45.388508305720705],[9.190938750416857,45.3885160206956],[9.19093298977756,45.38852378929306],[9.190927369622743,45.38853154865462],[9.190922067702473,45.38853897444266],[9.190916971952898,45.38854693095384],[9.190912375545716,45.38855522867503],[9.190907831020489,45.38856376033914],[9.190902852987087,45.38857253575722],[9.190898257483145,45.38858110351059],[9.190893380400492,45.388589509712915],[9.190888004032834,45.38859759270687],[9.19088266583511,45.38860563063118],[9.190877736743861,45.38861376688534],[9.190872845973896,45.38862190307536],[9.19086817227376,45.38863001189959],[9.190863639965835,45.388638381520956],[9.190859082259298,45.388646796190166],[9.190854179616741,45.38865520243338],[9.190849263865877,45.388663509685685],[9.190844539787681,45.38867183462038],[9.19084010963666,45.38868019506914],[9.190835679393626,45.38868852851449],[9.19083167036687,45.388696762244614],[9.19082790462416,45.38870516659054],[9.190824394456063,45.38871359751356],[9.190821306169854,45.38872212674544],[9.190818473579457,45.388730718558755],[9.19081630570307,45.38873944428071],[9.190814393401904,45.388748196579755],[9.190812761438554,45.388756741385045],[9.190811602696858,45.3887654564228],[9.190810825278149,45.38877360375276],[9.190810265656626,45.38878193974346],[9.190810736820563,45.388789103866756],[9.190811874211743,45.38879685195329],[9.190813644633142,45.38880290676947],[9.190818177321182,45.388809857093335],[9.190823256673788,45.388816023406],[9.190829948367877,45.38882301513452],[9.1908368578613,45.38883019552335],[9.19084433030163,45.388837636005896],[9.190851931635807,45.388845418316436],[9.190859021033088,45.38885291344379],[9.190866199701032,45.38886036341609],[9.190874028438076,45.38886738924984],[9.190882112541841,45.3888743786525],[9.190890313461122,45.388881916929314],[9.190898104304708,45.388889068840605],[9.190907250223425,45.388896515528174],[9.190914865346633,45.388904594849066],[9.190920603830207,45.3889130283453],[9.190925995564168,45.3889209133501],[9.190931464066441,45.38892883423116],[9.190937137291836,45.38893685378284],[9.190943106687568,45.388945574929096],[9.190948719100417,45.38895450369698],[9.190953161845602,45.38896509062666],[9.190955116566936,45.38897656382016],[9.19095528085815,45.38898743692515],[9.190954238706102,45.38899662882995],[9.1909532204686,45.38900533463321],[9.19095300652882,45.389013895075934],[9.19095291742773,45.3890215912007],[9.190953570992097,45.38902980815229],[9.19095501565712,45.38903775374939],[9.190956362514958,45.389047004675206],[9.190957443169713,45.38905686812287],[9.190957961391229,45.38906662449548],[9.19095856773226,45.3890759936719],[9.190959173831452,45.38908529083959],[9.190959550446625,45.38909472340735],[9.190959033886866,45.38910446350452],[9.190958476795254,45.38911354658598],[9.190956909652925,45.38912237031996],[9.190955405988515,45.38913107693317],[9.190953902172385,45.38913973854086],[9.19095215579443,45.38914844555901],[9.19095086995819,45.38915734983367],[9.19094949557845,45.3891665152892],[9.190947240403087,45.38917587123851],[9.190943925015809,45.389185246959265],[9.190940343332333,45.389195208198494],[9.19093574893349,45.389204117993934],[9.190930834054814,45.38921269528171],[9.190926059057412,45.38922108331192],[9.190921935853842,45.389229560265726],[9.190918490446869,45.389238261117036],[9.190915007078708,45.389247070045236],[9.190911102064401,45.3892558526734],[9.190907593568742,45.389264787659265],[9.190904199980885,45.38927370445103],[9.190900727295704,45.38928189228216],[9.190897430910178,45.38928932372318],[9.190895717518885,45.38929644648435],[9.190895915475695,45.38930213487533],[9.190896261935727,45.38931019931983],[9.190897030948777,45.38931856009695],[9.190897862382188,45.38932648871516],[9.190899474838233,45.38933494709769],[9.190901228145812,45.38934350425766],[9.190902994621531,45.389352178410505],[9.190905374601583,45.38936095055232],[9.190908075243012,45.38937010920811],[9.190909937765804,45.38938075445046],[9.190910074565075,45.389391051527504],[9.190910132600575,45.389400718656134],[9.190909563691909,45.389410089793124],[9.190908266218196,45.389419336129706],[9.190906993597189,45.389428375398516],[9.190905937838348,45.389437324294065],[9.190904971984057,45.38944641705792],[9.19090399399023,45.389455698865866],[9.1909023005378,45.389464954864074],[9.190900184954183,45.38947404054487],[9.190898106997498,45.389482919136526],[9.190896348158867,45.38949172518666],[9.190894947064178,45.389500548642204],[9.190893533406348,45.38950943512664],[9.19089190279445,45.38951838498099],[9.1908901957169,45.3895273889697],[9.190888513945735,45.38953632090705],[9.190886589822638,45.38954536126235],[9.190884205788825,45.38955439338361],[9.190881694009828,45.38956342571805],[9.190879131132256,45.38957245813758],[9.190876478742013,45.38958146370294],[9.190873570589773,45.389590388684624],[9.19087077716474,45.38959924146573],[9.190868200571876,45.3896079948725],[9.190865828067087,45.38961665792734],[9.190863493491806,45.38962520390406],[9.190861567396102,45.38963365918792],[9.190860049628943,45.38964197877354],[9.190858850739064,45.38965015380898],[9.19085772816298,45.389658229704544],[9.190857742695496,45.3896663577103],[9.1908582429602,45.3896745749172],[9.190858743708903,45.38968293614155],[9.190859500612468,45.3896914949637],[9.19086080757467,45.389700277896814],[9.19086212843067,45.38970939384895],[9.190863143758069,45.389718825350585],[9.19086331639352,45.38972838427386],[9.190863488726611,45.38973785318615],[9.190863277401872,45.389747196722446],[9.190862618818837,45.38975649599911],[9.190861960417047,45.389765849282256],[9.190860535817771,45.389775284853705],[9.190857769896295,45.38978472266242],[9.190854799582,45.38979416081199],[9.190851343684637,45.389803554765706],[9.190847069734374,45.3898128060655],[9.190842284409582,45.38982194120317],[9.190837128229584,45.38983095994432],[9.190831306987544,45.38983974576476],[9.190824731019786,45.38984822680481],[9.190817963099855,45.38985660915197],[9.190811080207322,45.3898649916905],[9.190803045399702,45.389872719066204],[9.190795112423233,45.38988033825781],[9.19078730670613,45.38988781321843],[9.190779308553056,45.38989504546859],[9.190771323142222,45.38990226869582],[9.190763299496476,45.38990951898962],[9.190755070610038,45.389916517593065],[9.190747363573003,45.38992294825417],[9.190739835226461,45.38992933361116],[9.190731295544966,45.38993508157249],[9.190722513327014,45.38994088394426],[9.190715471827664,45.38994769154173],[9.19070852222613,45.38995523707908],[9.190702363616435,45.38996247525892],[9.190696652506674,45.38996982970748],[9.190691631069315,45.38997713800061],[9.190686101368364,45.38998525724323],[9.190681450601415,45.38999262792619],[9.190676675380956,45.3900009799406],[9.190671900128878,45.390009322953766],[9.190667494612157,45.390017449323224],[9.19066293676633,45.39002586398276],[9.190658378888939,45.39003426964107],[9.190653949390091,45.390042864109226],[9.19064944266863,45.39005128768417],[9.190645024703173,45.390059513085994],[9.190641412922997,45.390068151196886],[9.190638361500556,45.39007627530901],[9.190635385637218,45.39008407525421],[9.190634364009206,45.390091790933205],[9.190634439936213,45.390099189743694],[9.190634489861027,45.39010645358041],[9.190636630555836,45.39011244477307],[9.190639696728956,45.39012013563918],[9.190643082871306,45.39012800599491],[9.190647337504242,45.39013582089665],[9.190652037345309,45.39014306798459],[9.190657517916915,45.39015075482731],[9.190663292184432,45.390158405175775],[9.19066941305895,45.390166559010275],[9.190676086202982,45.39017559403577],[9.190681022126714,45.39018466796041],[9.190685511243698,45.39019383264086],[9.19069011240264,45.39020212402382],[9.190694736211462,45.39020955125946],[9.190699896856446,45.39021706761156],[9.190706014328086,45.39022420432082],[9.190712591052044,45.39023115124042],[9.190719203714115,45.39023738700968],[9.19072704334327,45.39024380075615],[9.1907353803373,45.39024996164114],[9.190743894122381,45.390255510153274],[9.19075288180852,45.39026142692146],[9.190762790265289,45.39026763919148],[9.190772205230182,45.39027525646119],[9.19078003808123,45.39028345244094],[9.190788737310331,45.390290962888926],[9.190796720891584,45.39029839351936],[9.19080445936897,45.39030511346785],[9.19081234863413,45.390311086069815],[9.190821065045842,45.39031610317098],[9.190828054225475,45.39032033105184],[9.190837420663684,45.39032490601184],[9.190847961551547,45.390329235981454],[9.190860895437353,45.39033479511464],[9.19087403626003,45.3903411099969],[9.190889617692578,45.390351417311976],[9.190894930632982,45.39036242584313],[9.190898395338214,45.39037465261142],[9.190899119317546,45.390384813689984],[9.190899011857267,45.39039465211469],[9.190898661497462,45.39040443693775],[9.190898155543124,45.390413537933846],[9.190897674744678,45.390422521873084],[9.190897844877938,45.390431333704704],[9.19089862825449,45.39044016251548],[9.190899227402197,45.390447389430825],[9.190902110972894,45.39045394645052],[9.190906031901537,45.390457477356584],[9.190912269488123,45.390462327564734],[9.190920080232846,45.390467733218316],[9.190924728592414,45.39047104688264],[9.190933307006125,45.39047300381804],[9.190939493051747,45.390473920612806],[9.190949466632814,45.39047288684058],[9.190956987450962,45.3904718481597],[9.190965831627704,45.39046925907377],[9.190979630823074,45.390466202658885],[9.19099308307393,45.390462543745144],[9.191009778841842,45.390458510368646],[9.19103150624165,45.390457799010946],[9.191057300730995,45.39046229251786],[9.191070551855363,45.39047100149625],[9.191211751332032,45.39057742012431],[9.191267687881718,45.39062174725678],[9.191339328310296,45.390678523681025],[9.191377215172885,45.390704149570375],[9.191402976704206,45.39072156868974],[9.191398559868242,45.39079077683364],[9.191291066069285,45.3908646579155],[9.191287201659135,45.390866545613896],[9.19127961311769,45.39087024876672],[9.191268568439373,45.39088327387487],[9.19125426633157,45.3909001389117],[9.191234635735544,45.391352991985535],[9.191233939258433,45.3914155330555],[9.191233427868532,45.39146095365148],[9.191233271680773,45.39147527472269],[9.19118999630443,45.391579580213886],[9.191161735894557,45.39162069062032],[9.191085949140449,45.39172536542001],[9.190971952918993,45.391875910732246],[9.1909696677387,45.39188017208401],[9.19096512313884,45.39188875775239],[9.19096094892091,45.39189731579904],[9.190957337103013,45.39190596291831],[9.19095377641416,45.39191461895325],[9.190951557852975,45.39192349777678],[9.190949914467609,45.39193246565173],[9.190951928415025,45.39198052836227],[9.19095718573787,45.39200534472423],[9.190980574393684,45.39205400183964],[9.190999408565531,45.392089299864395],[9.19102538472463,45.39212100351036],[9.19105509270242,45.39214554501558],[9.191082405366451,45.39218337619066],[9.191086063421906,45.3921922722059],[9.191089708552067,45.392201123236916],[9.191093174984236,45.392210019571905],[9.191096245663754,45.392218997577935],[9.19109944388271,45.39222791236293],[9.191103331107199,45.39223657396519],[9.191106503687324,45.3922454617894],[9.191109663432838,45.39225433163263],[9.191114248336048,45.39227291132166],[9.191122232963632,45.392322323225265],[9.191122800679764,45.392331584446346],[9.1911222179131,45.3923406315618],[9.191120727783135,45.392349581180305],[9.19111991491324,45.39235858367438],[9.191118092509374,45.392367497843296],[9.191115234930072,45.392376296726354],[9.191112313444206,45.39238508671496],[9.191109660324976,45.39239390325866],[9.191106355372902,45.39240263087959],[9.191103050419821,45.392411358500425],[9.191099694304816,45.39242006820434],[9.191096274283064,45.39242876901371],[9.19109252195652,45.392437425372265],[9.19108838613383,45.392446010362],[9.1910869010467,45.392448866202294],[9.191082141271384,45.39245805530992],[9.191078031510552,45.39246679327507],[9.191074036391294,45.39247543203613],[9.191069977243933,45.39248402589825],[9.191065534569788,45.39249253939041],[9.19106111735369,45.39250102583649],[9.191056815172782,45.39250953009261],[9.191052615252003,45.392518052179994],[9.191048402524581,45.392526565287525],[9.19104234875694,45.39253465841531],[9.191035169778592,45.39254245638391],[9.191027798808301,45.3925501466589],[9.191019417451525,45.39255749657696],[9.191010971944573,45.39256476559132],[9.190979166472617,45.392562379373075],[9.19091321256885,45.39255988810667],[9.19065408605199,45.3925500858688],[9.190565437609992,45.39257251135317],[9.190562202269337,45.392579168580866],[9.19046917646357,45.39277060660647],[9.190458724259967,45.39278523284786],[9.19039804073332,45.39279251674583],[9.190349993968484,45.39273179401252],[9.19034170603873,45.39270987203175],[9.19035133850444,45.3926526717921],[9.190310046900644,45.39257958824411],[9.190308299080089,45.3925764857592],[9.19025295590676,45.39248844766859],[9.190204932608486,45.3924307942195],[9.190160797658208,45.39243175868811],[9.190127093043019,45.39247262584808],[9.190117564125597,45.392579908219425],[9.190112221047887,45.39264007168831],[9.190035861078206,45.39266985727512],[9.190032602663873,45.39266963765827],[9.189951385312224,45.39266422781318],[9.189911438455152,45.392637848783195],[9.18984158314237,45.39258036643261],[9.189637659481017,45.39239871060895],[9.189629001019254,45.392391983107345],[9.189620342589583,45.39238526460617],[9.18961155671164,45.39237863632686],[9.189602783550743,45.392371990023555],[9.189594303407471,45.39236510020334],[9.18958581049119,45.39235821040368],[9.18957721561672,45.392351392781386],[9.189568493324035,45.39234467438204],[9.189559669133244,45.39233804616216],[9.189550832169447,45.39233141796277],[9.189541969717647,45.392324807807185],[9.189532979877665,45.39231830587554],[9.18952393908965,45.39231184903328],[9.189514885498607,45.39230538321033],[9.189505768244528,45.39229898050005],[9.189496459877082,45.39229273112484],[9.189486947771329,45.39228668011129],[9.189477117251984,45.39228091766056],[9.189467235754494,45.392275191297934],[9.18945736706408,45.39226947391439],[9.189447498315614,45.39226373852776],[9.18943762956915,45.3922580031403],[9.18942776085469,45.392252276753105],[9.189417917602277,45.39224652331946],[9.189408290837358,45.392240562500476],[9.189398651269414,45.39223459270071],[9.189389024508555,45.39222863188007],[9.189379372199628,45.39222267110091],[9.189369490722152,45.392216944729725],[9.189359507286394,45.3922112905355],[9.189349536657673,45.392205645320374],[9.18933955322589,45.39219999112439],[9.189329544366021,45.39219437297418],[9.189319471872956,45.39218882693743],[9.189309373831788,45.39218328094202],[9.189299288537631,45.39217772592356],[9.189289203275443,45.39217217990524],[9.189278697818871,45.39216704863338],[9.189267950508373,45.392162178793626],[9.189257203199707,45.39215730895278],[9.189246481352978,45.392152412065435],[9.18923586134849,45.39214740699501],[9.189225317756154,45.39214232978811],[9.189214774135719,45.3921372435792],[9.189204396052817,45.392131995075054],[9.189194017911891,45.392126728567824],[9.189183512532287,45.392121615289334],[9.18917258704774,45.3921169437601],[9.1891619797415,45.39211191165841],[9.189151716253637,45.39210654594525],[9.189141439902782,45.39210115324901],[9.189139392303856,45.39210007649723],[9.18912901411485,45.39209479198186],[9.189118572232516,45.39208956157764],[9.189108181332292,45.392084295083656],[9.189097905049532,45.392078920385686],[9.189087590533584,45.392073572753354],[9.189077212354249,45.39206828823325],[9.18906683417685,45.39206300371219],[9.189056430481331,45.39205772823349],[9.189046052277844,45.3920524347094],[9.189035674076296,45.39204714118442],[9.189025295846728,45.392041838657384],[9.189014892158946,45.39203656317487],[9.189004526678305,45.39203125162371],[9.188994161199616,45.3920259400716],[9.188983821183013,45.39202060147315],[9.188973646794164,45.392015127583115],[9.18896347237733,45.39200964469112],[9.188953310767399,45.39200417077815],[9.188943200049831,45.3919986337723],[9.188933229499893,45.3919929885205],[9.188923258981875,45.391987352268856],[9.188913186475464,45.39198177919273],[9.188903114000965,45.39197621511673],[9.188893079733678,45.39197061497225],[9.18888296905789,45.391965086962124],[9.188872692668415,45.391959667238226],[9.188862135949506,45.391954464003405],[9.188851566487472,45.39194926978977],[9.188840933272159,45.39194411168494],[9.18883026176377,45.39193896264342],[9.188819348101177,45.39193398502211],[9.188809097093863,45.391928511243755],[9.188798909753995,45.39192297435151],[9.188789117483063,45.39191714877014],[9.188779682045924,45.39191106156623],[9.18877033585615,45.3919049202075],[9.188761027903581,45.39189875178152],[9.188751847373732,45.39189248413201],[9.188742679620885,45.391886216460726],[9.188733499095097,45.39187994880978],[9.188724382326544,45.391873645048356],[9.188715316540264,45.391867305197586],[9.18870625072611,45.39186095634496],[9.188697210404104,45.39185458944736],[9.188688335799823,45.391848114262075],[9.188679473972522,45.39184163905503],[9.188670535617096,45.39183519997803],[9.188661533568286,45.3918288150122],[9.188652607991864,45.391822375912724],[9.188643669642522,45.391815936833595],[9.18863452740413,45.391809651109185],[9.188625538078599,45.39180324811719],[9.188616535920383,45.391796827143395],[9.188613001636822,45.39179430364959],[9.188603974080973,45.39178792772231],[9.188594513254857,45.39178187654938],[9.188584147650932,45.39177650195212],[9.188573756528971,45.39177113639711],[9.188563352634034,45.39176577086217],[9.188552757505365,45.39176052265618],[9.188542136798906,45.391755265490225],[9.188531490514668,45.391749999364265],[9.188521749131965,45.3917440926657],[9.18851208422168,45.3917381318335],[9.188502393703823,45.3917321530404],[9.188493072914346,45.39172594860896],[9.188484172773775,45.39171946444861],[9.1884120398294,45.39165238975384],[9.188402426016077,45.39164641982698],[9.18839381915417,45.39163976415499],[9.188385887901916,45.39163266631432],[9.188376248604568,45.39162671442948],[9.188366201258358,45.391620988243965],[9.188353002183085,45.39161637438552],[9.188352451668294,45.3916160152462],[9.188342950573478,45.39160936104233],[9.188332914874628,45.39160329279148],[9.188322802379307,45.39159717966043],[9.188269257949905,45.39158425212661],[9.188239223274383,45.39158017901877],[9.188226997795379,45.39157637364645],[9.188215100141033,45.39157126256863],[9.188212170216255,45.391569917217296],[9.188201639180212,45.39156471387881],[9.18819098069536,45.39155960076037],[9.188180487868593,45.39155436135255],[9.188169854847922,45.39154922118681],[9.188159209024475,45.39154407204002],[9.188148754289681,45.39153876055756],[9.18813861818379,45.3915332235218],[9.188128647676482,45.39152754219463],[9.188118651710809,45.39152188791186],[9.188108617452281,45.39151624269233],[9.188098787117015,45.391510453118514],[9.188088944008882,45.39150466356479],[9.18807865482496,45.39149918978326],[9.188068301887826,45.39149375211013],[9.18805792334332,45.39148829647586],[9.18804790166308,45.39148258822231],[9.18803896343594,45.39147614909529],[9.18803005073078,45.39146970092448],[9.18802112525277,45.39146325277394],[9.188012250786912,45.39145677753547],[9.188003592989453,45.39145014892098],[9.187994947998675,45.391443529285894],[9.187986302980132,45.391436900649076],[9.187977657963602,45.3914302720116],[9.187969178664929,45.39142353508763],[9.187960712143132,45.391416798141975],[9.187952232878267,45.391410070217745],[9.187943613359973,45.39140342353348],[9.187934815382812,45.39139689415651],[9.187929462330608,45.39139292444535],[9.187920191389283,45.39138630583259],[9.187911047543627,45.39137948898533],[9.187901903610854,45.39137264513405],[9.187892734100815,45.39136579232292],[9.187883551758604,45.391358921529815],[9.187874242027362,45.391352158958746],[9.187864792251297,45.391345540635086],[9.187855278752044,45.39133896742096],[9.18784557428715,45.391332592544465],[9.187835475530544,45.39132674038053],[9.18782536394166,45.39132087023439],[9.187815239580031,45.39131500010835],[9.187805089641056,45.3913091210222],[9.187794965015815,45.39130316988456],[9.187784560625756,45.39129760625403],[9.187774003564515,45.39129223189696],[9.187763382928617,45.39128694765463],[9.187752622336777,45.39128183466257],[9.18774158221771,45.39127718118617],[9.18773047843452,45.39127259082108],[9.18771908237873,45.3912684689936],[9.187707572005463,45.39126454537758],[9.187696048888698,45.39126063078235],[9.187684500342828,45.39125675223226],[9.187672469090892,45.39125370257739],[9.187660399664448,45.39125069798954],[9.18764833023928,45.391247693400416],[9.187636095694057,45.391244977117175],[9.187623784828071,45.39124235997035],[9.187611461158674,45.39123973384199],[9.187599162921163,45.391237071666076],[9.187587042491998,45.391234094157525],[9.187574947465146,45.39123107160034],[9.187562839635039,45.391228040061705],[9.187551062406241,45.39122453992071],[9.187539488506253,45.39122071540436],[9.187527927412347,45.39121689986694],[9.18751634082978,45.391213102372376],[9.187504525341916,45.391209620291605],[9.187492684424704,45.3912061742558],[9.187480830763814,45.39120273724077],[9.18746896424043,45.39119927324223],[9.187457072168876,45.39119580928423],[9.18744512896982,45.39119233640764],[9.187433299943656,45.39118862031205],[9.187421317235279,45.39118478745216],[9.187408707167194,45.39118053256498],[9.187405906128465,45.39117952002391],[9.187394075830792,45.39117541687739],[9.187382818530676,45.3911707457196],[9.187372185357225,45.39116551546813],[9.187362316714697,45.39115968988875],[9.187352549916406,45.39115375612806],[9.187343484131343,45.39114733515735],[9.187335706198908,45.391140182985346],[9.187329899149294,45.3911341077228],[9.187322577996628,45.391126009682544],[9.18730930260621,45.391090440913395],[9.187308237190502,45.39108114448152],[9.187305154783626,45.391072283405876],[9.187302123120721,45.3910633142334],[9.187296182013704,45.391055321946055],[9.187290776647867,45.39104708575076],[9.187275900261879,45.391041250357894],[9.18725681822395,45.391053964190675],[9.187249011759935,45.39106140290461],[9.187242460901588,45.39106995570455],[9.187235539068114,45.3910783560918],[9.187227400394127,45.39108577734555],[9.187218659641685,45.39109269552004],[9.187182275820312,45.391119524428454],[9.187172781136505,45.39112638082473],[9.187162067743792,45.391131691017755],[9.18715113679196,45.39113688455086],[9.187139499517615,45.391140954095754],[9.187127218520356,45.391143512500975],[9.187114911942732,45.39114606194556],[9.187102308549314,45.39114770275915],[9.18710150394428,45.39114776708277],[9.187088310596968,45.39114870677066],[9.187074925834656,45.39114970977799],[9.18706174143777,45.39114948830139],[9.187048466817155,45.391149023939995],[9.187035380825646,45.39114765015378],[9.187022979784619,45.391144790058796],[9.187010933653934,45.391141083275414],[9.187005786420642,45.39113751823565],[9.186996360938597,45.39113047674668],[9.186988363510423,45.39112260481865],[9.186982636887192,45.39111378405981],[9.186979439176879,45.39108152020425],[9.186980479812364,45.39107554174792],[9.186982430159087,45.391066501418045],[9.186986016951282,45.39105784546295],[9.186987673061788,45.39104867959783],[9.187001687961404,45.391033426768864],[9.187007742206115,45.391025351854616],[9.187013668405058,45.391017187137926],[9.187018085993998,45.39100866484102],[9.187021621529878,45.39099996396281],[9.187023981193423,45.390991084983575],[9.187024935451449,45.39098603378524],[9.187026893465829,45.3909754452461],[9.187024727957843,45.39096569155137],[9.187023796564636,45.39095440564595],[9.186994921322961,45.39094538869038],[9.186969213949784,45.39094404452259],[9.186956662288457,45.390945865258445],[9.186944177876834,45.390948712012836],[9.186934876955647,45.39095233666425],[9.186924508936178,45.39095778128804],[9.18691408993414,45.390963261998735],[9.18690391433169,45.39096894933709],[9.186893764572854,45.390974726643734],[9.186884101526282,45.39098089020347],[9.186875117020708,45.3909875027112],[9.18686741221047,45.390994788213796],[9.186861370368483,45.391002755086674],[9.186858854079908,45.39100674670012],[9.186853477707876,45.39101507253146],[9.186847986331687,45.3910233895492],[9.186843338651627,45.39103187621064],[9.186839266160854,45.39104046094524],[9.186835730505662,45.391049134814516],[9.186832488817396,45.39105785320939],[9.186828927580923,45.391066518119096],[9.186825187466752,45.39107517431956],[9.186822418679371,45.3910839639511],[9.186819074788762,45.39109268251237],[9.186815730926734,45.391101410074704],[9.186812450967253,45.39111014653364],[9.186809528878651,45.39111893641511],[9.18680710521347,45.391127788490785],[9.186805307719936,45.391136702552124],[9.186803356869017,45.391145598861456],[9.186802479426616,45.39115459243098],[9.186802023730143,45.391163639318776],[9.186799088773592,45.39117240221751],[9.186797607291876,45.39117641014244],[9.186792592703473,45.3911859865383],[9.186787053576536,45.391195329760514],[9.186779337106188,45.3912029663203],[9.186771377409142,45.391210450257205],[9.186762405569745,45.391217044732855],[9.186752818672717,45.391223073139905],[9.186743001087155,45.391228876894104],[9.18673206842124,45.391233566326065],[9.186721122949109,45.39123824677675],[9.186710382582364,45.39124314291903],[9.186699603770952,45.391248003118434],[9.186688773680908,45.39125280939365],[9.186677738659377,45.3912574539817],[9.186666870241181,45.3912622603174],[9.186655989075891,45.391267075673916],[9.186645684550534,45.39127243015716],[9.186635687447215,45.39127803616993],[9.18662598499105,45.3912838937331],[9.18661629536686,45.391289769276824],[9.186606592906687,45.39129562683834],[9.186605891798624,45.39129608703971],[9.186596343550882,45.39130222338416],[9.186586884991016,45.39130844059182],[9.186577976722791,45.39131495393894],[9.186569132533652,45.39132153018885],[9.186560313921715,45.3913281153975],[9.18655150814169,45.39133471858686],[9.186542804765287,45.391341384616545],[9.186534126995642,45.391348068606064],[9.186525666839712,45.39135488725724],[9.18651794880524,45.3913620647437],[9.186510473904749,45.391369367849244],[9.186503011806742,45.39137667993453],[9.186495741625144,45.39138408171797],[9.186488253914483,45.39139137584175],[9.186480855803204,45.39139872382589],[9.186473828692804,45.39140623322535],[9.186467031912173,45.391413859263864],[9.186460235159263,45.3914214943031],[9.186453144080364,45.39142897680211],[9.186447243071175,45.39143706943898],[9.186442220306338,45.3914441795206],[9.186441304799182,45.39144548617725],[9.18644066806447,45.39144609929204],[9.186421952247025,45.39147318720466],[9.186410937320506,45.3914722960343],[9.186398681150438,45.391466879312595],[9.186381498670471,45.39145514281378],[9.186366358275597,45.3914389294211],[9.186359765417773,45.39143083913455],[9.186353146923521,45.391422721885945],[9.186342314822634,45.391415250579485],[9.186334418994177,45.391407180415534],[9.186330111161652,45.39139857334146],[9.186326301313693,45.39138989344715],[9.186323053324385,45.391381140628745],[9.186319818081408,45.391372378788354],[9.186317361839698,45.391363534669225],[9.186315212077066,45.39135465404645],[9.186313075089954,45.39134577340286],[9.186312023640678,45.39133679197918],[9.186310589064504,45.39132784718382],[9.186308337164604,45.39131898472941],[9.186306085235906,45.391310113273924],[9.186304254759468,45.391301205127625],[9.186302641367266,45.39129226962437],[9.186301028005094,45.39128334312223],[9.186299478488072,45.39127440751491],[9.18629798007086,45.39126547182441],[9.186296481624606,45.39125652713278],[9.186294944883869,45.391247591504595],[9.186294100676472,45.39124337134523],[9.186292359509801,45.39123442704868],[9.18629004377192,45.391225573698875],[9.18628757479598,45.39121673860074],[9.186285016426613,45.39120791264919],[9.186282470862384,45.39119909567786],[9.186279925269426,45.39119026970539],[9.186277520141154,45.39118142550191],[9.186275115013638,45.39117258129838],[9.186272556648225,45.391163755346504],[9.186269742935085,45.391154974815876],[9.18626682708343,45.39114621245371],[9.18626391123267,45.391137450091485],[9.186260995382826,45.39112868772915],[9.186257888000464,45.39111995268191],[9.186254652959645,45.39111124484573],[9.186251417890322,45.39110252800844],[9.186248399904912,45.39109378381426],[9.186245675563523,45.3910849851352],[9.186242964027276,45.39107619543637],[9.186240418446047,45.39106736946282],[9.186238013329207,45.39105852525825],[9.186234931474317,45.39104978116762],[9.186231951789114,45.391041027909466],[9.186229074273536,45.391032265483766],[9.186226209504124,45.391023494036126],[9.186223944825365,45.39101462259926],[9.186221578008169,45.391005769330846],[9.18621919841694,45.390996916083175],[9.186216755011635,45.39098808094152],[9.186213902991643,45.3909793004716],[9.186210974382968,45.39097053812851],[9.18620800748042,45.39096178484878],[9.186205359770753,45.39095297704272],[9.18620272480717,45.39094416021473],[9.186200153659177,45.39093532528052],[9.186197837800544,45.390926426922846],[9.186195559883377,45.390917411488644],[9.186194498222601,45.39091310167074],[9.186192488989231,45.39090421181516],[9.186190926725116,45.39089527622653],[9.186189198448815,45.3908863589103],[9.186187214737224,45.39087746001191],[9.186185243830499,45.39086857009379],[9.186183467465934,45.390860570971824],[9.186181394362498,45.390851681219864],[9.186178657298019,45.39084289156066],[9.186175920204883,45.39083409290032],[9.186173195887338,45.390825294219106],[9.186170522640058,45.39081648645357],[9.186167900492526,45.390807678604865],[9.186165291091035,45.390798861734154],[9.186162707239806,45.390790044821834],[9.186160314921702,45.390781200594425],[9.186157948153786,45.39077235632539],[9.186155581386618,45.39076351205627],[9.1861533039842,45.39075464963945],[9.186151013837287,45.3907457962444],[9.186148532129412,45.39073696116326],[9.186146037647617,45.39072812610278],[9.186143862416287,45.39071925451838],[9.186141533889188,45.390710383183304],[9.186140331065861,45.39070587556932],[9.186138334505165,45.39069694968728],[9.186136478407809,45.39068800557444],[9.186134545603872,45.39067904358403],[9.186134077899078,45.390653265082825],[9.186125388302631,45.39061343117481],[9.186092462785986,45.390522213174776],[9.186092372360864,45.39052190728308],[9.186077764924129,45.39047329788254],[9.18604944250916,45.39039111852752],[9.186074286012296,45.3903277101099],[9.186059909020477,45.39021292395203],[9.18602589526432,45.390194994975936],[9.185815159014334,45.390087854764],[9.185780086563991,45.39006255549988],[9.185732992828834,45.39002541223512],[9.185693077583174,45.38999580925835],[9.185655467229193,45.38997177423362],[9.18558156176442,45.38993524147531],[9.185588931136184,45.38992693947331],[9.185605506099312,45.38991323085663],[9.185636888706098,45.38988446631205],[9.185643702690578,45.38987821746742],[9.185610999095957,45.38987019649661],[9.185596540037073,45.38987464851018],[9.185532654681984,45.38989431158799],[9.185404318293033,45.3899325764182],[9.185234629291816,45.38998227649165],[9.185066462509976,45.390032693941855],[9.184907732872492,45.39008218677974],[9.184758131099809,45.390129918438056],[9.184539260051519,45.390199751414485],[9.184525579781864,45.39020411202489],[9.184505773698344,45.39021426124271],[9.184499145291387,45.390218700490784],[9.184489449752666,45.39022276663563],[9.184477219055204,45.390225054641],[9.184464236204505,45.390227820918],[9.184452710211943,45.39023075586683],[9.184441299014226,45.39023363662262],[9.184429797750315,45.390236319497376],[9.184417392059968,45.39023979592884],[9.184405090814586,45.39024396527841],[9.184393084142823,45.3902483681816],[9.184381473657146,45.39025282445196],[9.184369364551147,45.39025715550861],[9.184357523301067,45.390261360116455],[9.184346385645592,45.39026586962832],[9.184335734708451,45.390270774405174],[9.184324993938363,45.39027555330979],[9.184313766738434,45.390280026958166],[9.18430241217024,45.39028461782535],[9.184291082828233,45.390289109638275],[9.184279651579514,45.39029369162555],[9.184268411889745,45.39029825530096],[9.184257287052922,45.390302782785746],[9.184246366345437,45.39030722893052],[9.184235868015893,45.39031192642612],[9.184225817671855,45.39031689323368],[9.184216368054189,45.39032195808584],[9.18420643416669,45.39032738376236],[9.184196433631739,45.39033195443704],[9.184186187459154,45.39033562539224],[9.184175034141141,45.3903392528009],[9.184163753017117,45.39034286241184],[9.184152047819861,45.390345698606154],[9.184139716869051,45.390348598814164],[9.184127181960568,45.3903516343662],[9.184115033060733,45.39035552440394],[9.184102948207384,45.39035946834424],[9.184091348146536,45.39036321347827],[9.18407965755347,45.390366616713436],[9.184067940797314,45.39036983096555],[9.184056274496797,45.39037284711026],[9.184044722670993,45.39037571005027],[9.184033131178873,45.39037815900051],[9.184021307380744,45.39037987923082],[9.184009432337593,45.39038155453667],[9.183997403706623,45.390383140076835],[9.183985195209864,45.39038441086504],[9.183972909598388,45.390385537757666],[9.183960560113245,45.39038666475167],[9.183948120738874,45.390387647870604],[9.183935616849755,45.39038843306685],[9.183923087411022,45.390389218302765],[9.183910544905924,45.39038991354693],[9.183897898775758,45.39039016790035],[9.183885099291594,45.39039040449663],[9.183872108304339,45.39039067740366],[9.1838590550168,45.39039143647087],[9.183845976587442,45.390392321592934],[9.183832910932301,45.39039320669299],[9.18382000008682,45.390394559602115],[9.183807421847186,45.39039605599374],[9.183795035109943,45.39039751607183],[9.183782532119137,45.39039858028518],[9.18376986404754,45.39039995080099],[9.183756966526794,45.39040147470321],[9.183743891354021,45.390403367935996],[9.18373058725574,45.39040557657469],[9.18371627649235,45.39040856992715],[9.18370440868139,45.39041248647334],[9.183693037362628,45.39041587115408],[9.18368211012831,45.39041831900234],[9.183670340465138,45.39042098422912],[9.183658430279799,45.390423649680166],[9.183646262505537,45.390425667461294],[9.183634094352179,45.390427568227004],[9.183621874663046,45.390429334057],[9.183609577568921,45.39043086598024],[9.183597229230118,45.39043235297865],[9.183584816813834,45.390433777070626],[9.183572301588987,45.39043501230221],[9.1835596700249,45.39043582466552],[9.183546987390944,45.39043664611045],[9.18353426643269,45.39043746761546],[9.183521494520859,45.39043833420648],[9.183508722928458,45.39043929980809],[9.18349592604797,45.39044034645903],[9.183483116392374,45.39044139312908],[9.183470294252325,45.39044252982907],[9.183457511075169,45.39044386449023],[9.183444625729296,45.3904452083149],[9.183431906453215,45.39044655187189],[9.183419225762021,45.39044797637585],[9.183406557873884,45.39044940985907],[9.183393928279992,45.39045083427831],[9.183381336515486,45.39045210561622],[9.183369089607826,45.39045335839785],[9.18335662483336,45.39045439549988],[9.183344096214245,45.39045544170399],[9.18333154277153,45.39045671297498],[9.183318899818568,45.390457957384584],[9.183306180246184,45.39045921091668],[9.18329328214757,45.3904605637458],[9.183280563270952,45.39046203330125],[9.183267908237886,45.390463493751874],[9.183255291789424,45.390465035149575],[9.183242701325069,45.39046671152139],[9.183230085310663,45.39046838793268],[9.183217456695017,45.39047011836963],[9.183204675856738,45.390472182091024],[9.18319204828434,45.390474236564465],[9.183179523575776,45.39047649789807],[9.18316702418336,45.39047868718067],[9.183154536955229,45.390480687418496],[9.183142100795823,45.39048267857207],[9.183129817844373,45.390484642475705],[9.183117419281881,45.390486408537974],[9.183105007421767,45.39048801259967],[9.183092608335603,45.39048961663956],[9.183080183090278,45.39049103169606],[9.183067680442257,45.39049221284535],[9.18305519053937,45.390493384971776],[9.183042661992985,45.39049445814615],[9.183030107954796,45.390495549362186],[9.183017477529138,45.39049672170923],[9.183004629991737,45.3904979124044],[9.182991948379406,45.390499057827114],[9.18297889685225,45.390500374861524],[9.18296628006876,45.390501817215295],[9.182953765423932,45.3905032414021],[9.182941135574648,45.39050459376261],[9.182928505695777,45.39050593712062],[9.182915875816306,45.3905072804772],[9.18290322001018,45.39050850685904],[9.18289050015634,45.390509679335004],[9.182877844262203,45.39051087871077],[9.182865137471682,45.3905121411744],[9.182852494466992,45.39051337653132],[9.18283994065264,45.39051453973517],[9.182827463311952,45.390515648808645],[9.182815062010494,45.390516568735364],[9.182803042384544,45.39051700198948],[9.18279049873656,45.39051735506919],[9.182777814480238,45.390517681368664],[9.18276501568615,45.390518142866746],[9.182752268424814,45.39051873929817],[9.182739380641904,45.39051933595259],[9.182726467338341,45.39051994164743],[9.182713593313794,45.39052084431573],[9.182700821515093,45.390521755820465],[9.18268810078569,45.390522658241096],[9.182675418293046,45.390523533595854],[9.18266271016385,45.390524381986744],[9.182649912698436,45.39052525752219],[9.182637191851677,45.39052612393278],[9.182624266812411,45.390527053675854],[9.182611291831337,45.39052834354271],[9.182598291502854,45.39052969645643],[9.182585648719773,45.390531003792596],[9.182560118350624,45.39053297076913],[9.18249107978938,45.390547662734555],[9.182455651963952,45.390558511593305],[9.182432761082007,45.39057089765197],[9.182384871407864,45.39059565511281],[9.182341168952536,45.3906235022733],[9.182301616129692,45.390646707219716],[9.182266220790751,45.390663730749125],[9.182230812684708,45.390680763288984],[9.182191257714415,45.390699341614926],[9.18215168004467,45.39071483257267],[9.182120439306079,45.39072877105391],[9.182097558149117,45.39074423541905],[9.182089285470374,45.390765842315076],[9.18209561640812,45.39079207056048],[9.182095633835713,45.390817435741724],[9.18210205193521,45.39083099924566],[9.182104354690088,45.390839996719876],[9.182106695625654,45.39084894912755],[9.182108921502742,45.39085787471486],[9.182111121715634,45.390866764338405],[9.18211360277163,45.39087559050701],[9.182116109320189,45.39088439863262],[9.182118628557712,45.39089317973461],[9.182121173403235,45.39090197879804],[9.182123718278405,45.390910786862506],[9.182126173846514,45.39091963107356],[9.182128450799643,45.39092854757793],[9.18213077896795,45.39093750000529],[9.182133209450516,45.39094648827432],[9.182136061327876,45.390955421865755],[9.182139066272459,45.390964283204355],[9.182142122057321,45.39097306345164],[9.182145369176084,45.390981753382945],[9.182148501351769,45.390990452498244],[9.182151697459997,45.39099916951395],[9.182155034120594,45.39100789530698],[9.182158524050678,45.39101661185474],[9.182161950136807,45.39102533750518],[9.18216529954645,45.391034054276425],[9.182168674420105,45.391042744003585],[9.182171883193734,45.39105142499392],[9.182175079135844,45.39106008800232],[9.18217818559769,45.39106873315079],[9.182180794190032,45.39107748710541],[9.182183390066136,45.39108625908253],[9.182186011550357,45.39109504902108],[9.182188888444726,45.39110381154947],[9.182191765339985,45.39111257407779],[9.182194629461332,45.39112133662638],[9.182197825612956,45.39113006264165],[9.18220102185217,45.39113881566011],[9.182204192600503,45.391147586721324],[9.182207427166118,45.391156339678524],[9.182210687195754,45.39116506559171],[9.182213666209398,45.391173800953354],[9.182216466434316,45.39118255460188],[9.182219202930375,45.39119135335751],[9.182221734972464,45.39120013443637],[9.182224279819026,45.39120892449587],[9.182226786399667,45.391217732618514],[9.182229408012246,45.39122655856023],[9.182232042573702,45.39123543848799],[9.182235315675266,45.39124425439093],[9.182238831470741,45.39125306090608],[9.182242360099897,45.39126188540296],[9.182246105729071,45.391270655547274],[9.182250029947227,45.3912793443968],[9.182253877373181,45.391287988362755],[9.18225766078173,45.39129658742491],[9.182261392889922,45.391305123560606],[9.182265469486842,45.39131352413042],[9.18226953319461,45.39132188871607],[9.182272971369267,45.391330389315044],[9.182275707476977,45.391339062053746],[9.182278482170004,45.39134781574115],[9.182280989025191,45.391356704872216],[9.182283445128322,45.39136570209772],[9.18228599088729,45.391374771189426],[9.182288907031333,45.39138381268761],[9.182292269170041,45.39139250243086],[9.182296270370651,45.3914012901685],[9.182300641465913,45.39140989729393],[9.182304986752808,45.39141842345012],[9.182309485021701,45.39142685034982],[9.182314047108516,45.39143525914543],[9.182318583473629,45.39144361397496],[9.182322774687362,45.39145189734515],[9.182327017666255,45.39146038765882],[9.182331209604692,45.39146889605595],[9.18233474938994,45.391477207467005],[9.182338328540903,45.39148584285617],[9.182341843905215,45.39149450535029],[9.182345154439064,45.39150303315358],[9.18234851659352,45.391511722895004],[9.182351904240992,45.391520394593385],[9.182355611724082,45.391529209800176],[9.182359331318688,45.39153781796141],[9.182363089874771,45.391546624085436],[9.182366796725656,45.39155524126779],[9.182370733872602,45.39156396609666],[9.182374581654246,45.39157270907011],[9.182378442096402,45.39158141601868],[9.182382544916182,45.39159001456715],[9.182386787972211,45.39159852288056],[9.182391018167914,45.391607004210904],[9.18239582280241,45.391615349608415],[9.182400997708498,45.39162363140755],[9.182405317303719,45.39163210359368],[9.182409075410817,45.391640765698554],[9.18241334399558,45.39164926496907],[9.182417739984006,45.39165765602269],[9.182422046491476,45.39166602921648],[9.182426301871617,45.39167439349047],[9.18243063439395,45.391682910660684],[9.182435005444718,45.39169149077722],[9.182439580924594,45.39170007956878],[9.182444743648052,45.39170854140797],[9.182450084990862,45.391716930953045],[9.182455668625408,45.391725185094494],[9.182461188097799,45.39173334932649],[9.182466490282165,45.391741477900226],[9.182471651683498,45.39174952568795],[9.182476710742192,45.39175752863294],[9.182480773154222,45.39176547015903],[9.182484900569744,45.391773762625654],[9.18248826212567,45.391782254338466],[9.182491138494719,45.391790827835166],[9.182493784250441,45.391799194673425],[9.182495421797583,45.39180787815926],[9.182496880553668,45.391816579932446],[9.182497955367483,45.39182506629066],[9.182498507275723,45.391833823516876],[9.182499059068471,45.391842544738715],[9.182498714792214,45.391850700318],[9.182498268952264,45.391859054084236],[9.18249696669778,45.39186725619696],[9.182493056816611,45.391874985407945],[9.18248952714752,45.39188176889309],[9.18248373717483,45.39188882601668],[9.18247702650626,45.39189560557292],[9.18246953583979,45.39190216134409],[9.182461328905562,45.39190844822265],[9.182452416454852,45.39191383611191],[9.182442839876945,45.39191927906607],[9.18243294322895,45.39192450650244],[9.182422957096449,45.391929716078266],[9.182412753440575,45.39193481798633],[9.182402306422345,45.39193972225643],[9.182391757029034,45.39194457268191],[9.182381130810615,45.39194936922198],[9.182370389355444,45.39195408493453],[9.18235959671185,45.3919587737242],[9.182348752937624,45.3919634535932],[9.182337857946074,45.391968097538204],[9.182326937344982,45.39197272352071],[9.182316016742108,45.39197734950217],[9.182305095993025,45.3919819304772],[9.182294162264986,45.39198644846378],[9.182283253911919,45.39199091240217],[9.18227220451232,45.391995214543634],[9.182261321821333,45.391999714443585],[9.182250273400154,45.39200432262002],[9.182239161217671,45.39200896690149],[9.182227754486524,45.3920133866225],[9.18221619416486,45.392017716575594],[9.182204941711746,45.39202244208732],[9.182193894118697,45.39202731128998],[9.182183281826498,45.39203247683602],[9.1821729507557,45.39203769594023],[9.182162772752191,45.39204284279073],[9.182152555844585,45.39204780967952],[9.182141928576467,45.39205229115915],[9.182131135087227,45.392056727896666],[9.182120214048183,45.39206122784409],[9.182109178118848,45.39206575497678],[9.18209806562422,45.39207030923361],[9.182086927635478,45.392074881532196],[9.182075828200773,45.39207952577747],[9.182064703156524,45.39208415206009],[9.182053565335435,45.39208877836195],[9.182042491791435,45.3920935305764],[9.18203166174969,45.39209852543311],[9.182020857227238,45.3921035112471],[9.182010116664511,45.39210852396169],[9.181999568301977,45.39211371639234],[9.181989096847168,45.392118989709914],[9.181978625361586,45.392124254025454],[9.181968269195282,45.392129626170274],[9.181957682413408,45.39213479165471],[9.181947121122002,45.39213993909536],[9.181936636565343,45.39214511341646],[9.181926369643527,45.3921504314088],[9.181916371053116,45.39215576697583],[9.181906270058795,45.39216103969686],[9.181896194583853,45.392166303375305],[9.1818857218705,45.39217118963647],[9.181875031460997,45.39217591422224],[9.181864264514731,45.3921806749332],[9.181853497883608,45.39218553465511],[9.181842808333066,45.39219052927056],[9.181832131555682,45.39219552386472],[9.181821467407415,45.39220047343214],[9.181810751897839,45.39220534206993],[9.181800074682766,45.392210201644716],[9.181789358967889,45.39221500727288],[9.181778642819172,45.39221967788366],[9.181767811750845,45.392224366678214],[9.181756929494126,45.39222902854962],[9.18174602180071,45.392233726465015],[9.181735127139685,45.392238505368795],[9.18172427103233,45.392243356219495],[9.181713376569153,45.39224819812886],[9.181702328256456,45.392252869259885],[9.18169136968399,45.39225763925987],[9.181680500621445,45.3922624361201],[9.181669874657366,45.39226734960813],[9.181659197274596,45.392272164164304],[9.181648545353791,45.39227695167564],[9.181637829296857,45.392281658277525],[9.181626895400187,45.39228615819807],[9.181615833779917,45.392290667321376],[9.181604721287819,45.39229524853344],[9.181593993772251,45.392300369201685],[9.18158321521203,45.39230550795215],[9.18157260255312,45.392310592431606],[9.18156159245554,45.39231523648492],[9.181550543915883,45.39231984459364],[9.181539572197442,45.3923245065862],[9.181528689931469,45.39232917743698],[9.181517909778004,45.3923338211213],[9.181506950081515,45.39233824906211],[9.181495939398033,45.39234271308731],[9.181485044148602,45.392347320946534],[9.181474149213683,45.392352027816735],[9.18146375198749,45.39235657187616],[9.181454030602596,45.39236072781414],[9.181442442904542,45.39236452666504],[9.181422868266049,45.39237155158307],[9.181412088699462,45.39237638428035],[9.181401309131033,45.39238121697658],[9.181390529560773,45.39238604967175],[9.181379749988663,45.39239088236595],[9.181368970414724,45.39239571505915],[9.18135819086767,45.392400556752385],[9.1813474754241,45.39240547035209],[9.181336977816045,45.392410590631755],[9.181326467459733,45.392415719931826],[9.181315969847892,45.39242084020952],[9.181305459459047,45.39242596050653],[9.181294949097037,45.39243108980362],[9.181284451479488,45.39243621007842],[9.181273851975202,45.39244142952623],[9.18126339279401,45.392446585742725],[9.181252920864537,45.39245175097964],[9.181242461708255,45.39245691619533],[9.181232002550066,45.39246208141009],[9.181221530614868,45.39246724664409],[9.181179676156578,45.39248633231902],[9.181140472891784,45.392507538050026],[9.18107238545415,45.39254494651444],[9.181054046643338,45.392554957790736],[9.181054128545089,45.39258065590427],[9.181054173010187,45.39259460759458],[9.180954820802326,45.392594764743045],[9.180923978737964,45.39260593891329],[9.180786753279218,45.392655914066815],[9.180654326162674,45.3927083657936],[9.180562702627375,45.39274867346717],[9.180456706904627,45.392801074254685],[9.180352155380872,45.39285774820665],[9.180260247307022,45.392897101964586],[9.18021398721689,45.39291696832156],[9.180083968967413,45.39296799341175],[9.180032150737231,45.39298761640958],[9.179967847338927,45.393010112379244],[9.17989250793577,45.39303724324406],[9.179842119670976,45.39305259736945],[9.179773504842368,45.393077233274056],[9.179720168894347,45.393101764132844],[9.179661639213887,45.39313218986309],[9.179583877895052,45.393173249081876],[9.179499175981222,45.393221295013895],[9.179432471460267,45.393256279021536],[9.179396032181096,45.39327119702495],[9.179350970856767,45.39328249207145],[9.179302228298626,45.39329318079096],[9.17925960542256,45.39329991740655],[9.179201007682694,45.39330486079382],[9.17913421489139,45.3933119412473],[9.179051429311771,45.39331964976166],[9.178977666927494,45.393328568258525],[9.178922350099304,45.39333683679135],[9.178869487466981,45.39334147400404],[9.178799403688297,45.3933461290992],[9.178751860322022,45.39335227013704],[9.178688362110023,45.39336298164196],[9.178644525075985,45.393373662420714],[9.178593325272514,45.39338709101836],[9.178544588195193,45.39339959763496],[9.178475764116659,45.39341487190493],[9.178384800338135,45.393430171645655],[9.178296305990337,45.393446691620824],[9.178217236904398,45.3934622787338],[9.178152673920568,45.393475727943745],[9.178064121143091,45.39349403005446],[9.177966244703965,45.39351718920664],[9.177906283055814,45.39353545572946],[9.177855963696976,45.393548648597914],[9.177772690535875,45.39356809442213],[9.177711473033037,45.39358107912755],[9.177626020786246,45.39359823293935],[9.1775681036241,45.393608521106025],[9.17748635806115,45.39362628113887],[9.177369839116654,45.39365267309491],[9.177278422466589,45.393670447967715],[9.177212120053538,45.3936834132788],[9.177125858637941,45.393699280806935],[9.177033782857611,45.393714671203384],[9.176929489892137,45.39373294277533],[9.176771327928202,45.39376929974248],[9.176660571983092,45.39380040766758],[9.176561759968362,45.393827077501456],[9.176474852644226,45.39384488977898],[9.176371362767904,45.393862727548],[9.176257266516178,45.39388794448677],[9.176211015846407,45.393899204120565],[9.176017156086658,45.393947244467675],[9.175856641445836,45.39398334275254],[9.175747847141576,45.394004617539075],[9.175641019315188,45.39402147864836],[9.175546827886551,45.39403881533713],[9.175378990812485,45.39407442911983],[9.175210476215293,45.39410169064106],[9.175105629257697,45.39412302177991],[9.175002387502845,45.39414705970897],[9.174897645302202,45.39416927260758],[9.174833801854973,45.39418457307365],[9.174755193236,45.39420513471126],[9.174640035039086,45.394230297647795],[9.17455662495771,45.394243287521306],[9.174431514807504,45.39426441491656],[9.174308920646022,45.394293639362466],[9.174212129881278,45.39431766675074],[9.17407312492253,45.394344701644904],[9.173946524577447,45.394363274453404],[9.173862131118689,45.3943806668682],[9.173836426653756,45.39438485543782],[9.173770167933089,45.394395928444986],[9.173667519104301,45.39441367247403],[9.17353052458908,45.39444658139632],[9.17344764807069,45.39447132513008],[9.173389584763607,45.39448868628828],[9.173386189018254,45.394489528538365],[9.173353030514487,45.394496014579715],[9.173271238608525,45.39451199844006],[9.173033076621701,45.39455856158959],[9.172937954715936,45.394577157690705],[9.172882017912306,45.39458809756957],[9.172934853016892,45.395018739929775],[9.173060962694759,45.39612598546754],[9.173083568381506,45.3963288817599],[9.173091849214918,45.396396611739476],[9.173165068741445,45.39702526586479],[9.173180378371171,45.39715640714706],[9.173183636737152,45.39717750086187],[9.173241992232189,45.397673941776425],[9.173247548616763,45.39771958708538],[9.173261150659185,45.39783111746884],[9.173293178439076,45.398085728872324],[9.173339630457773,45.39850757734444],[9.173390919808844,45.39896103939266],[9.173410437364664,45.399126756548576],[9.173471500181007,45.399659080558024],[9.173515366097423,45.4000072675626],[9.173553326719308,45.40036287140924],[9.173578362120793,45.400590390841344],[9.173597647025131,45.40074232755144],[9.17353047979291,45.400742861470064],[9.173236883493983,45.40074520550659],[9.172779846899044,45.40075291729305],[9.172278538323841,45.40075239486785],[9.171955500183902,45.40074937925276],[9.17148183342834,45.4007505310102],[9.170945471805494,45.40075236853936],[9.170690561011856,45.4007451430555],[9.170536703307944,45.40074625452932],[9.170504552029755,45.400744835249675],[9.170511802885754,45.40078948801914],[9.170528970805526,45.4008731278767],[9.170547340135181,45.4010036797911],[9.170583158458534,45.401315623311405],[9.17060164681379,45.40148996548716],[9.170622275089487,45.40167056024382],[9.170642223002226,45.40182453968997],[9.170656418506196,45.40195634894395],[9.170668801093683,45.40208437142474],[9.17068524546391,45.40225867160592],[9.1706930984478,45.402350507327455],[9.17069988402809,45.40243154329463],[9.170712611142577,45.402631610210896],[9.170729132549733,45.40275492791184],[9.170749098969257,45.40284683556172],[9.17070119167621,45.4028623709498],[9.170696715046919,45.4028353652667],[9.170647878955403,45.402801188833784],[9.170523111674353,45.40279433592436],[9.170028416793974,45.40277254212515],[9.169958936404031,45.40276947693184],[9.169742901092059,45.40270751879614],[9.169598445747228,45.40266272735108],[9.16871720439362,45.402372825591605],[9.168359895519933,45.40225588713682],[9.16825655766263,45.40223188009453],[9.168201899329183,45.402220033950655],[9.168176327011057,45.40221409478572],[9.168097078424083,45.40219568690089],[9.168072843007188,45.40217519093708],[9.168049343293868,45.40210104720809],[9.1679935498109,45.40200775148811],[9.167942767148915,45.401936717160304],[9.167743053307044,45.40167124293279],[9.167665480209369,45.40155354091886],[9.167374278040786,45.40124682185878],[9.167316461842136,45.401220929155514],[9.167058838455938,45.40114779331557],[9.166920006291603,45.40110569960093],[9.166626441754593,45.40096715903264],[9.166513245851206,45.400891795352074],[9.166503108628623,45.40084649844794],[9.166511578668409,45.40081123772878],[9.166541209932253,45.40067222627905],[9.166599186768437,45.400452613507824],[9.165619998430715,45.40044389935895],[9.165589626792563,45.40044362826438],[9.165459962783164,45.40044247461716],[9.165290241955965,45.40044096462606],[9.165458997939997,45.4006990170246],[9.165603685825982,45.400918444166955],[9.165861439820942,45.40130860262981],[9.166020774597538,45.401563373401025],[9.1661519686985,45.40177222506838],[9.166182059793728,45.40182048139825],[9.166257260304892,45.401940474145285],[9.166299000530499,45.40200483452827],[9.166399431478737,45.40215790563894],[9.166412588600336,45.402178499076015],[9.166244200166755,45.402228006917134],[9.166149537376654,45.40225583182226],[9.16611227228433,45.40226679527081],[9.16606264925347,45.40228137708634],[9.166025235614343,45.402293987927045],[9.166017895964298,45.40229650088506],[9.166011719839863,45.40229928218858],[9.16600694756381,45.402301494384986],[9.166002252161823,45.40230377847867],[9.165997582498262,45.40230612554266],[9.16599295132414,45.402308526557405],[9.165988345809513,45.402310963539215],[9.165983638417769,45.402313517683154],[9.165978969515423,45.40231612577776],[9.165974364578222,45.40231876078281],[9.16596978532678,45.402321440756026],[9.16595777019592,45.40232868607819],[9.16595418633913,45.40233094155478],[9.165950794326204,45.402333259760994],[9.165947619869621,45.402335694666185],[9.165943324898981,45.40233946336172],[9.165939209310169,45.402343402818275],[9.165935209032398,45.40234745012101],[9.165927170616436,45.40235570680105],[9.165916888749313,45.40236580296128],[9.165913716945022,45.40236914697481],[9.165910813701265,45.40237257160907],[9.165907899152156,45.402376500322376],[9.165905214962988,45.40238055471738],[9.16590265886242,45.4023847169401],[9.165897585333989,45.40239315834386],[9.165889611922344,45.402406176519605],[9.16588708182109,45.40241049172334],[9.165880002530498,45.402423409590114],[9.165877842734577,45.40242764324685],[9.165875912930822,45.40243187657022],[9.16587435380166,45.40243615436192],[9.165873001186688,45.40244114294284],[9.16587201932529,45.402446202995364],[9.165870503598347,45.40245659248476],[9.16586967561687,45.402461841337775],[9.16586695881374,45.40247660711212],[9.165866142557608,45.40248149590331],[9.165865428467733,45.40248636654418],[9.165864942241372,45.4024905077641],[9.16586459661862,45.40249466678248],[9.165863624136371,45.402507314765614],[9.165862132144376,45.40252145768744],[9.165861810157226,45.40252495958982],[9.165860220170718,45.40254930092268],[9.165859858980562,45.40255688038922],[9.16585960187882,45.40256072424007],[9.165859229754247,45.40256455925647],[9.165858830629215,45.40256789925039],[9.165856540788477,45.402575733543046],[9.16585512780367,45.402581928361215],[9.165853725677266,45.40258746608182],[9.165852029144821,45.402592824206636],[9.165850377015591,45.4026002615258],[9.165848066904458,45.40260553052842],[9.16584339799368,45.40261252216282],[9.165841567141394,45.40261563920321],[9.165839047623255,45.40261920729738],[9.165836272004844,45.4026225867391],[9.165833483161927,45.40262581318082],[9.16583086026728,45.40262898537533],[9.16582850580296,45.40263219318533],[9.165801194105327,45.402673817926875],[9.165783441090118,45.40270271023427],[9.165777598032898,45.402710180625895],[9.165774708618034,45.40271397428237],[9.165771908723565,45.40271779481246],[9.165769185650895,45.40272166923796],[9.165766704981168,45.40272541729666],[9.16576436491535,45.402729183153845],[9.165759837901781,45.40273664263738],[9.165757523022148,45.402740282442316],[9.165755220157882,45.40274366119732],[9.165748030775124,45.40275390588204],[9.165745689918896,45.40275740170637],[9.165741327194945,45.402764239873996],[9.165739203449231,45.402767699379346],[9.165737143642968,45.40277117679428],[9.165730508542175,45.40278308588238],[9.165728246633252,45.40278736468946],[9.165726138289651,45.40279172428424],[9.165724247477396,45.402796191577394],[9.165722524846368,45.402801369715476],[9.165721185512092,45.402806538297455],[9.165719986493121,45.40281162566616],[9.165718697690393,45.40281659615027],[9.1657170763324,45.40282145010131],[9.165715020593382,45.40282632268349],[9.165712683723857,45.40283118667152],[9.165705060189016,45.40284591453953],[9.165698124295826,45.402859840311876],[9.165695735473372,45.402864416338915],[9.165693295461917,45.40286896543669],[9.165690981491652,45.40287292027802],[9.165685983161332,45.40288088450346],[9.165683490568167,45.40288492961445],[9.165681126064358,45.402889082553315],[9.165679283939635,45.40289272167222],[9.165677607895455,45.40289635154952],[9.165674447179654,45.402903512014746],[9.165670066179738,45.40291285251718],[9.165668668954577,45.40291569889335],[9.165667207736908,45.40291850935766],[9.16566565689303,45.40292125694387],[9.165663685521361,45.40292439218687],[9.16566156076731,45.4029275096496],[9.165657132610152,45.40293382584354],[9.165654944361803,45.40293707841485],[9.165653252885845,45.40293979920104],[9.165650061411828,45.40294517748843],[9.165648471787692,45.402947772111474],[9.16564675412613,45.40295027690858],[9.165644348396926,45.40295343978323],[9.165641789285212,45.402956584877565],[9.165636428498813,45.40296294742599],[9.165633780232605,45.40296619166146],[9.165631934296309,45.402968525622725],[9.165624869671708,45.40297775299228],[9.165623214740744,45.402979861649],[9.16562145764228,45.40298198845579],[9.165619700806145,45.40298420527339],[9.165617995368528,45.40298652102888],[9.165616494659245,45.402988935500424],[9.165614778884736,45.402992088374894],[9.165613229269846,45.40299525901118],[9.165611858644608,45.40299846539295],[9.165610641506541,45.40300172555931],[9.165609616398104,45.40300511146346],[9.16560925225469,45.40300730826346],[9.165609232972265,45.403009459558874],[9.165609512374958,45.403013257626974],[9.165609543073968,45.403015021801956],[9.16560941412186,45.40301900048331],[9.165609304872081,45.40302097188653],[9.165609157184836,45.40302290734087],[9.165608894473896,45.40302483396053],[9.165607902189738,45.40303071312721],[9.165607309993282,45.403033576339986],[9.165606564283099,45.4030363767671],[9.165605614054162,45.40303915048676],[9.165605005090868,45.40304064555366],[9.16560431912138,45.403042023717454],[9.165603530511975,45.403043258011806],[9.165602613576423,45.40304430346835],[9.16560149180721,45.40304521420448],[9.165600050311822,45.40304602639084],[9.16559835284652,45.40304669492966],[9.165596386817521,45.403047282846906],[9.165594152303552,45.40304781714589],[9.165591802818277,45.40304836061229],[9.165589504285519,45.40304884999817],[9.16558719263408,45.403049222388454],[9.165584804160156,45.40304954088314],[9.165582313361256,45.40304982352129],[9.165579809732346,45.403050088175746],[9.16557752316347,45.403050298509385],[9.165575262044612,45.403050472801674],[9.165572962462045,45.40305060214404],[9.165568260971938,45.40305082497207],[9.165565501320637,45.40305092797641],[9.165562728813121,45.40305100399588],[9.165554334441861,45.40305116915734],[9.165511491563999,45.403051258123035],[9.165497027932604,45.40305145005896],[9.165483024763143,45.40305180334748],[9.165465930356289,45.40305247614249],[9.165461957130653,45.403052679911035],[9.165457933030973,45.403052964763084],[9.165453871044495,45.40305340268882],[9.165449298534773,45.403054039377],[9.165444815834519,45.403054801950844],[9.165440397231391,45.40305563644084],[9.165436017170379,45.40305654288385],[9.165431662821524,45.403057503296296],[9.165428355677097,45.40305827317146],[9.165425061546022,45.403059124037824],[9.165421805904655,45.403060028855165],[9.165418575975467,45.40306098764195],[9.16540256174283,45.403064017159544],[9.16539972655267,45.40306450731715],[9.16539774721925,45.40306491522786],[9.165394120741194,45.40306572156798],[9.165392460609375,45.40306604800723],[9.165390876906665,45.40306629332597],[9.165388884166576,45.403066485229004],[9.165386763441758,45.40306660530801],[9.16538446377947,45.40306670764329],[9.165382010918176,45.403066855205466],[9.165379456177556,45.403067119929375],[9.16537622493685,45.403067628660914],[9.165373096047146,45.40306818225007],[9.165370044005849,45.403068798735944],[9.165351732280781,45.4030726776711],[9.16534756953942,45.403073619801276],[9.165343432510147,45.40307461590085],[9.165340802309272,45.40307529478438],[9.165338210598065,45.40307602761897],[9.165335682852923,45.403076787364434],[9.165333193492629,45.40307756505664],[9.165326734074544,45.40307963564356],[9.165318794037137,45.40308224843587],[9.16531482418845,45.40308361333881],[9.165310854496754,45.40308503224814],[9.16530771463555,45.40308620692856],[9.165304626041417,45.40308743554158],[9.165285878251531,45.40309514957274],[9.165282611190392,45.403096522460835],[9.165279331534931,45.403097958374815],[9.165275988384632,45.40309952939717],[9.165269659906189,45.403102688927156],[9.165266597520127,45.40310414252928],[9.16526350905508,45.40310541614659],[9.16526017742431,45.40310655509818],[9.165256653842643,45.40310759531445],[9.165249159335014,45.40310963138697],[9.165245278401574,45.40311081613677],[9.165243555244183,45.403111439701775],[9.165241921660272,45.40311210814305],[9.165239063137115,45.4031133634255],[9.165237710317985,45.40311391444678],[9.165234608812387,45.403115098071],[9.165221781209226,45.40311986017875],[9.165218373566253,45.40312122426676],[9.165211877691533,45.40312394298035],[9.165208750655998,45.40312513564177],[9.165205584764152,45.403126148336845],[9.165202980035717,45.40312680017709],[9.165200298301782,45.40312733511383],[9.16519756511739,45.403127753110255],[9.165194729477209,45.40312809024439],[9.16519188082387,45.4031283463872],[9.165188635779495,45.40312850408968],[9.165185339284728,45.40312854485179],[9.165178388001154,45.40312844687045],[9.16517493804529,45.4031284428481],[9.165171909564272,45.403128375209626],[9.165168740164116,45.40312818175875],[9.165165238705578,45.4031280427937],[9.165161405816832,45.40312817434034],[9.16515744669712,45.40312883713504],[9.165152787090868,45.40313028403775],[9.16514862664508,45.40313201825583],[9.165144824466816,45.40313392297807],[9.165137744066326,45.40313775866964],[9.165134439975063,45.403139581662806],[9.165131212810396,45.403141494556145],[9.165125065245595,45.403145355904364],[9.165122016860916,45.403147232535005],[9.165110562663418,45.403154134915205],[9.165107692979962,45.40315594827984],[9.16510567797751,45.40315727435107],[9.165103701359863,45.40315861836913],[9.165098014070034,45.40316257806426],[9.165090132864695,45.403167855086984],[9.16508746762031,45.40316966815623],[9.165084764461769,45.403171625298015],[9.165082635873198,45.4031734375931],[9.165080852303909,45.40317525839166],[9.165079246913557,45.403176835902926],[9.165077678913914,45.403178089319994],[9.16507600772603,45.40317900984445],[9.165074233297615,45.40317957947414],[9.16507212597325,45.40317991555484],[9.165069583872798,45.403180135247965],[9.165066645642767,45.40318034651123],[9.165063592885804,45.403180719959714],[9.165055431942056,45.403182072895575],[9.165051370727875,45.40318278083941],[9.165047284167787,45.403183560828595],[9.16504318514391,45.403184448849075],[9.165039265266884,45.40318542662225],[9.165035435120128,45.403186503278235],[9.165028081617676,45.403188701153056],[9.165024468583907,45.403189741491154],[9.164999239479517,45.403196420690016],[9.164996111598759,45.40319732531101],[9.164992983953232,45.40319831094165],[9.164990673599085,45.40319913337392],[9.164988401708209,45.403200000756335],[9.1649861555815,45.403200940110494],[9.164983973551557,45.40320195138114],[9.164981817364195,45.40320306162684],[9.16497871770466,45.40320488432083],[9.16497579711343,45.40320676976449],[9.164973055302914,45.40320861894587],[9.164970364288653,45.40321036004053],[9.164967634497174,45.40321194817205],[9.16496505722555,45.40321325704895],[9.164962313636698,45.403214494156565],[9.16495649426879,45.40321697785141],[9.164953533592122,45.403218260277264],[9.164946400358893,45.40322151096031],[9.164944052271716,45.40322254047176],[9.164941704106047,45.40322354297994],[9.164939483375873,45.403224428289846],[9.164937185954257,45.403225304709125],[9.164930191311838,45.40322788010748],[9.164927740298083,45.4032286667367],[9.164925046328044,45.40322939070813],[9.164922033389873,45.40323027715926],[9.164918880944082,45.40323152385605],[9.164915934533045,45.40323331932414],[9.164912468345744,45.40323652871678],[9.164909807378445,45.403239817959175],[9.164907542279478,45.40324302562111],[9.164905365995857,45.40324601712817],[9.164902959062882,45.403248783939524],[9.164899352843552,45.40325217355589],[9.164895439884289,45.40325553661066],[9.164887269179616,45.4032623352255],[9.164883267377082,45.40326590543359],[9.16488135604912,45.40326773541414],[9.164879559849624,45.403269610234446],[9.164877840341436,45.40327149394531],[9.164876197524563,45.40327338654681],[9.164874593118624,45.403275306096305],[9.164872568934614,45.40327787433101],[9.164870672578203,45.403280460383826],[9.164868852782414,45.40328301032183],[9.164867019999896,45.40328548826955],[9.164865123146557,45.40328790330173],[9.164863837002974,45.40328941734227],[9.16486251244827,45.4032909044348],[9.164861111149792,45.403292364634474],[9.164859658662644,45.40329379790453],[9.164858167738263,45.403295195225425],[9.164856663748854,45.403296493552865],[9.164855083041797,45.403297773988484],[9.164853463897503,45.40329901847498],[9.164851780813105,45.40330024505132],[9.164850072069017,45.40330143566012],[9.164848924205009,45.40330216640398],[9.16484773790381,45.40330286119875],[9.16483883322323,45.40330771662553],[9.164837251183195,45.40330853800579],[9.164835630784326,45.40330935044011],[9.164834061312785,45.40331009979327],[9.16483249178897,45.403310831144225],[9.164830896605498,45.40331152652766],[9.16482931409506,45.40331218588833],[9.164827680395986,45.40331281831935],[9.164825701963988,45.40331354125801],[9.164823761812373,45.40331424613919],[9.164821885339547,45.403314878919765],[9.164820046885918,45.40331540363211],[9.164818233647821,45.40331581129351],[9.164815730316986,45.40331618394419],[9.164813098870972,45.403316439764744],[9.164807324589175,45.40331685312976],[9.164804271640312,45.403317163563734],[9.164800963505845,45.40331760038074],[9.164797732141153,45.40331807309158],[9.164788280898762,45.40331951787729],[9.164785560349031,45.40331989084007],[9.164779902030922,45.40332063707808],[9.164776977275123,45.40332109134471],[9.164774027277508,45.403321653660996],[9.164770860557415,45.403322387310496],[9.164767821821757,45.40332319278458],[9.164756957203153,45.4033263408138],[9.164748480264446,45.40332889133135],[9.164734971784487,45.40333242121101],[9.16473217516884,45.403333001307715],[9.164729378788083,45.40333366241407],[9.164726595445874,45.403334413512795],[9.164723825168307,45.40333526360496],[9.16472028941148,45.40333651984903],[9.164716932827536,45.40333787484746],[9.164710564679547,45.403340593348574],[9.164707450633959,45.40334186698764],[9.164704744739504,45.40334288800791],[9.164699141312898,45.4033449393252],[9.164696294969318,45.40334599655185],[9.164693436030758,45.40334711680442],[9.164690079523844,45.40334849880531],[9.164686761427765,45.40334990775416],[9.164677024409395,45.40335415228982],[9.164673974328448,45.40335545283926],[9.164670834778278,45.40335674451621],[9.164667644300353,45.4033580992742],[9.16466444138395,45.40335957106455],[9.164661290021277,45.40336119579965],[9.16465825417843,45.40336300039084],[9.16465542298528,45.40336487669651],[9.16465274522718,45.40336678878587],[9.16464759407331,45.403370585667],[9.164645439360203,45.40337220896796],[9.164639384050313,45.40337706028025],[9.16463736960304,45.40337858436699],[9.16463484496585,45.4033804242267],[9.164624171711498,45.40338788350389],[9.164620920656047,45.4033903814898],[9.164617899674973,45.40339290614801],[9.164615005921563,45.4033952415997],[9.164612021837918,45.403397271143156],[9.164608793962689,45.40339894999359],[9.164604645501592,45.403400423142074],[9.164600151106583,45.40340157274766],[9.164595311168966,45.40340253382647],[9.164590215679587,45.40340349527254],[9.16458504404621,45.403404636850304],[9.164580894462558,45.403405722951454],[9.164572914760374,45.403407903695076],[9.164569007715562,45.40340890843699],[9.164565113109159,45.40340979614632],[9.16456093710898,45.40341058524782],[9.164556645823586,45.4034112755026],[9.164547756407986,45.40341259344497],[9.16454323543871,45.40341339204289],[9.164538880786496,45.403414262410465],[9.164534577374832,45.40341517770981],[9.164530325203733,45.40341613794092],[9.1645260858883,45.40341712515678],[9.164512742621639,45.40342035773571],[9.164508133303134,45.40342153450619],[9.164503536996644,45.403422792267854],[9.164498966584016,45.403424167006655],[9.16449516251343,45.40342543263052],[9.16449140973549,45.40342676118831],[9.164487708380522,45.403428197685535],[9.164484083925482,45.40342971508219],[9.16448049822006,45.403431376440956],[9.164476938590912,45.403433217784496],[9.164473532579294,45.40343515791947],[9.164470280028814,45.40343714283941],[9.16445897991048,45.40344435097057],[9.164456442096036,45.40344605582848],[9.164453942926963,45.40344786864421],[9.164451495389311,45.403449861408056],[9.164450195958246,45.40345120444177],[9.164449177738355,45.4034525830759],[9.164447766175556,45.40345491639373],[9.164447091751713,45.40345588048242],[9.16444608591835,45.40345712408191],[9.164443768084416,45.40345978274205],[9.164442583885807,45.403461206620186],[9.16444146378359,45.40346270241513],[9.164440204118058,45.4034645404531],[9.16443902111801,45.4034663783809],[9.16443790200585,45.403468216216936],[9.164436808500932,45.403470072018386],[9.164435766236616,45.403471972751824],[9.16443476264378,45.4034739904442],[9.164433125539146,45.40347786327715],[9.164432287325239,45.403479628700595],[9.164431320970493,45.403481268292495],[9.16443026462528,45.40348271899013],[9.164429054948833,45.4034841699081],[9.164427717470286,45.403485612008474],[9.16442627779694,45.403487063256755],[9.16442479976467,45.403488505559054],[9.16442287550651,45.403490290544845],[9.16441654067321,45.40349570031611],[9.164414386912787,45.40349765665273],[9.16441215732038,45.40349990113398],[9.164408093980168,45.40350429951657],[9.164406106666668,45.403506372628435],[9.164404016767442,45.40350831987196],[9.16440210460816,45.40350987081094],[9.164400026235711,45.40351138598417],[9.164395486396806,45.40351449789076],[9.164393114581967,45.403516166504325],[9.164391087710253,45.40351781662022],[9.164389265175904,45.40351943043807],[9.164387608229305,45.40352086399567],[9.16438600153336,45.40352200044423],[9.164384279109465,45.40352288502761],[9.164383015324725,45.40352330089412],[9.164381636046546,45.403523545905216],[9.164380026406723,45.4035236652315],[9.164378199234985,45.40352367685676],[9.164376244052718,45.40352360765574],[9.164373573011884,45.40352343146935],[9.164370991153818,45.403523165143596],[9.164368485622793,45.4035227816937],[9.164366018086,45.40352228117458],[9.16436363965387,45.40352166351292],[9.16436159323118,45.40352097336548],[9.16435962303138,45.403520130089575],[9.164357626859683,45.403519142833034],[9.164351369103688,45.403515866410615],[9.164349423860386,45.40351481607292],[9.16434756803434,45.40351375660572],[9.164345839906277,45.40351266995178],[9.164344213816802,45.40351152014345],[9.164342203071014,45.40350991183036],[9.164340256031052,45.40350824041795],[9.164338423859423,45.40350652383496],[9.164336732111307,45.40350476204473],[9.164335180786711,45.40350295504728],[9.164333795388742,45.403501084803764],[9.164332588590812,45.40349911529145],[9.164331432616901,45.403497046693886],[9.164329107318808,45.40349271149326],[9.164319664213977,45.40347048328654],[9.164311263139671,45.403455103434354],[9.164299012403456,45.403442897501414],[9.16428033093323,45.4034338691911],[9.164252659281297,45.40342666300441],[9.164215993518757,45.40341991977152],[9.164191543470078,45.40341769556756],[9.164154258482261,45.40341774904778],[9.164110526042279,45.403419620985254],[9.164087312553193,45.40342082441222],[9.164083530934398,45.40342101885704],[9.164079456013548,45.403372760700016],[9.16408131477782,45.40334830199563],[9.164085765415539,45.40333200359022],[9.164094098382122,45.403323836630086],[9.164110801974637,45.403316116724774],[9.164132013719517,45.40331200880217],[9.164164151600612,45.403308344261966],[9.164202071153662,45.40330240313644],[9.164217492025319,45.403297394392474],[9.16422839851346,45.40329104195616],[9.164229656305567,45.403279716743796],[9.1642199660529,45.40326478879006],[9.164203183644712,45.4032408158847],[9.164187675075603,45.40321548198041],[9.164178590991112,45.40318922974576],[9.164174669370695,45.403167506669426],[9.164162372913152,45.40313944981603],[9.164153338283738,45.40312588008495],[9.164137235678432,45.403120466502074],[9.164110845572166,45.40311009004887],[9.16409537762148,45.40309878881813],[9.16408053649773,45.4030788906178],[9.164076027032056,45.40306597147502],[9.164074699898567,45.40306214790181],[9.164068276714547,45.403063507277146],[9.164017595627008,45.4030837964284],[9.163940916806695,45.403101269442615],[9.163878848015756,45.40311615616881],[9.163754334993074,45.40315313095229],[9.163577266139175,45.40320290830431],[9.163451312007812,45.40323653640021],[9.1633390349154,45.403263069960374],[9.163207595392464,45.403299919014444],[9.16311175908745,45.40332514174657],[9.163046052062503,45.403345820923725],[9.162984799754112,45.40337379362704],[9.162289837038486,45.40318135606821],[9.161459361087672,45.40310601204802],[9.161176693645084,45.40308274648828],[9.160299793766008,45.4030052631244],[9.159971504517015,45.40297044701994],[9.159944261731075,45.402965525473896],[9.159884496387772,45.40295473561861],[9.159740921710824,45.40292522338086],[9.159718711899188,45.402919799695475],[9.159645080891453,45.402903700398944],[9.159429513545977,45.40285895925004],[9.159260801384082,45.40282324364204],[9.159025709909178,45.40277367729031],[9.158797776469832,45.40272491062491],[9.15870433664036,45.40270271743914],[9.158509452100963,45.40265145606655],[9.158444850769774,45.40263825985397],[9.158355130248799,45.40261634926967],[9.158268613489575,45.40260237317284],[9.158223169212436,45.402595037077695],[9.158141868077157,45.402581908781734],[9.158143656383986,45.40257712671637],[9.158182719209014,45.40247237171251],[9.158209829465548,45.40241608624488],[9.158249947830276,45.402337144969465],[9.158297202438025,45.402255979534566],[9.15834970296401,45.40217286257993],[9.158451591881786,45.4020179383105],[9.15852496012056,45.40190378352126],[9.1585725665853,45.40182992638934],[9.158611714568075,45.401765289104766],[9.158650813370715,45.40169679939422],[9.158683790392155,45.40163695923295],[9.158662348379696,45.401604287881696],[9.158355576954747,45.40151155108298],[9.15814289199876,45.40145806341828],[9.157970177597111,45.401414889494625],[9.157874855058177,45.40139019591161],[9.157719100147023,45.401352983961694],[9.15757775126413,45.401317921238736],[9.157452748394993,45.40127964045905],[9.157327972153464,45.401244698647204],[9.157063850953683,45.40115977572742],[9.156852180862753,45.401130488281495],[9.156772168939451,45.4011715800012],[9.156467314004157,45.40134126321585],[9.156291276460806,45.401431784958774],[9.156231450160462,45.40144909477474],[9.156095775415197,45.401493223344495],[9.155907730448707,45.40153407467592],[9.15591132772406,45.40153658108931],[9.15634585613916,45.40183870513366],[9.156707199053752,45.402098604454025],[9.156921784873882,45.40224777409207],[9.157027411169132,45.40232019627533],[9.157121258496685,45.40237931287068],[9.157266216273886,45.402484795958266],[9.157328372445473,45.40252876202708],[9.157371785797993,45.40255946817808],[9.157526621049374,45.40266940190718],[9.157790140694095,45.40286157290425],[9.15792194777235,45.40294683876169],[9.157963612539117,45.40297341558417],[9.15799129946265,45.40299107357347],[9.157952204043157,45.40303841040772],[9.157932277050456,45.40306354202485],[9.157914498629793,45.40308478219081],[9.157858773405614,45.403139135802654],[9.157844662302402,45.40315125276623],[9.157727652753723,45.40325518795885],[9.157712230653797,45.40326916094277],[9.1576772429938,45.403300452027025],[9.157555004362074,45.40341272927885],[9.15751549293621,45.40344851809751],[9.157475994936782,45.40348455891511],[9.157453422240321,45.40350495049703],[9.157426708403742,45.40352953328988],[9.157276985167309,45.40366531395126],[9.157239858101587,45.40369939818552],[9.15698599891649,45.40393814123184],[9.1569088132336,45.403999985728355],[9.156899506060222,45.40400744241031],[9.156866921592814,45.4040671734801],[9.156890178894876,45.404118691006374],[9.156965653153609,45.40424202886112],[9.15716889148,45.4045863127493],[9.15739352734499,45.40497841676926],[9.157421256312533,45.405029396964736],[9.157440369979696,45.40506086558229],[9.157510405638426,45.4051712399289],[9.15759252773669,45.4053177820762],[9.157647980342357,45.40541755509351],[9.15772331476653,45.40554913763375],[9.157843058251844,45.40576056179043],[9.157901488422935,45.40586470511282],[9.157933512578733,45.40592057585731],[9.158083649393467,45.40617055458756],[9.158141080292186,45.4062688754391],[9.158206225694698,45.40637959813414],[9.158491958409146,45.40687309396239],[9.158561419000248,45.40699564693178],[9.158623303241953,45.40710482570086],[9.158679652902816,45.40720423689853],[9.158827280618723,45.40745477614237],[9.159135181273735,45.407998042657056],[9.15907869265453,45.40800926455258],[9.159062498311807,45.408012482452214],[9.158966249264704,45.40804440808648],[9.158807634332206,45.408097113736964],[9.158748294105079,45.408116836474136],[9.158738259372717,45.408120171800576],[9.158630771758325,45.408154624046404],[9.15857025207823,45.40817302516209],[9.15851963358659,45.408190611435394],[9.158492173208856,45.40820015463433],[9.1584950938178,45.40821184303366],[9.158499995228121,45.40824188195557],[9.158503983224936,45.40831093295688],[9.158499747183132,45.40841857410615],[9.158497666816812,45.408556861049796],[9.15849361621962,45.40867601435759],[9.158493127725912,45.408794028590684],[9.158485461268599,45.4088584421486],[9.1584782254808,45.40893981320011],[9.158480968302392,45.408988523409484],[9.158482112668363,45.40907347429934],[9.158479832907037,45.409144910262135],[9.158476524618528,45.40920954280917],[9.158461296234563,45.40927055540939],[9.158420843860252,45.40940090245997],[9.158388100266473,45.40948200276028],[9.158342316367948,45.409597757356735],[9.158320226000104,45.40965440488719],[9.158312917366366,45.4096730922964],[9.158284999228973,45.40975708424628],[9.158279532991898,45.40977198863972],[9.158238477902,45.40988351512987],[9.158196909500719,45.41001726604879],[9.158176079095036,45.410058402896475],[9.158164304010546,45.41008854587633],[9.158156036146528,45.41011616369874],[9.158128534634123,45.410198489823166],[9.158060560268334,45.41038602277432],[9.15799913860842,45.41055424826005],[9.157984635146997,45.41059594340539],[9.157958342115293,45.41065806932945],[9.157956102261135,45.41066141183106],[9.157953053485295,45.41066337827949],[9.157948566176271,45.41066273639178],[9.15794219261141,45.4106593247655],[9.157935799446767,45.41065805542943],[9.157921456706884,45.41065647302085],[9.15790560534421,45.41065464966174],[9.15790436316722,45.41065831482593],[9.157892423320295,45.41069364263957],[9.157854055002142,45.41080680346882],[9.157810041102001,45.410939450461484],[9.157702089916599,45.4112600746341],[9.157623426362925,45.41147879284601],[9.157508723534118,45.411789488881986],[9.157440053406003,45.41197640129239],[9.157423361302643,45.41201717225248],[9.157393985403308,45.41208328976029],[9.157371294314506,45.41213598642339],[9.15736198908477,45.41217227366845],[9.157357421120679,45.41222096692387],[9.157349291054382,45.412298567622294],[9.157350287191319,45.41232138405317],[9.157349968772552,45.41235866706598],[9.157349880418641,45.412368289368146],[9.157258567052029,45.41238575998126],[9.157214674928552,45.412392544097784],[9.157173997128178,45.41239710951233],[9.157140572288101,45.41239954969621],[9.156996914504331,45.41241283442345],[9.15690396182444,45.412419847717985],[9.15679035328028,45.41242544905481],[9.156676283291327,45.412435191418204],[9.15654273910184,45.412445680389744],[9.156415538937127,45.412458113776204],[9.156281729024732,45.41247424649805],[9.15616964716755,45.41248670397455],[9.15608490235046,45.412495001563286],[9.15600902229833,45.41250172981678],[9.155966302321826,45.41250264313597],[9.15588081944919,45.41250745815149],[9.155841644440475,45.412510193820786],[9.15580794558407,45.41251528031238],[9.155771661417319,45.412523637713015],[9.155735303178611,45.41253294931993],[9.155697582955723,45.4125395894398],[9.155660013046028,45.41254978477897],[9.155599509348448,45.41256209053696],[9.155571832318367,45.41256814089252],[9.15555744646686,45.41257429919582],[9.155539441240409,45.412588797437714],[9.155532589501485,45.41259746580966],[9.155526821975633,45.412610048188384],[9.15552705362702,45.41263863538026],[9.155531017552331,45.41269543596214],[9.155538447306208,45.41274848737487],[9.155551127122873,45.41287063312622],[9.15556626420014,45.41301737555],[9.155573469180949,45.41310497349772],[9.155576283491424,45.41314795894225],[9.15557892785555,45.41324552730694],[9.155576182248694,45.41328359670349],[9.155571237337824,45.41333057117955],[9.155563603146229,45.41339886392138],[9.155543611580692,45.413565429490795],[9.15553828562241,45.413608615016685],[9.155524066810873,45.41368052614131],[9.155520094241993,45.41369991991316],[9.155515244392362,45.413720971079435],[9.155506835562033,45.41374911094785],[9.155485531601807,45.41381454189605],[9.155460787755262,45.41389790770662],[9.15544290424115,45.41395236165652],[9.155425081642951,45.4140104069601],[9.155385953135585,45.41412859954221],[9.155361152245314,45.41420523258],[9.15533191427396,45.41429035967109],[9.15530021490019,45.41438675047052],[9.15528186376419,45.414433887129675],[9.155270311853249,45.414457737715466],[9.155265350709037,45.41446618747761],[9.155246429014385,45.414486960679056],[9.155205564941005,45.41452217439276],[9.155167195164598,45.414553523238254],[9.155133816300912,45.41458732260761],[9.155116399669417,45.414607031617436],[9.155102970156582,45.41463131678269],[9.155079607658669,45.41466862199406],[9.155063687882604,45.41469360361283],[9.155051791330113,45.414727022812365],[9.155034878185734,45.41477201521928],[9.155013073914079,45.41483709570225],[9.15497441651499,45.41494580032836],[9.154944077936628,45.41502136062944],[9.154923745086611,45.415073081468144],[9.154911382554788,45.41511845474252],[9.154892079106055,45.4151821276425],[9.154870257254984,45.41524088034406],[9.154838889690907,45.41532351686987],[9.154804710145816,45.41542482546943],[9.154798335543992,45.41544460050469],[9.154786444959887,45.41548032394564],[9.15477597491172,45.415512066978465],[9.15474372919172,45.41560554198517],[9.154707560056428,45.415713190014],[9.154656909159275,45.41585317154119],[9.154627656857842,45.415933734889514],[9.154579549969878,45.41606003127057],[9.154574112773204,45.41608148823069],[9.154575661700132,45.416101180542896],[9.154575199626544,45.41611453879714],[9.154573774513361,45.41611685400386],[9.15455817445335,45.41614214115141],[9.154527798314067,45.41612450400301],[9.154489822978814,45.416089982040326],[9.154457454701568,45.41604473219083],[9.154401631458386,45.4159655348225],[9.154340128493088,45.415870260119924],[9.154291603889439,45.41581012618359],[9.154231745076524,45.41574599300714],[9.154199129571584,45.415713092922964],[9.15410536858771,45.41562218206551],[9.154032891409802,45.41557992943964],[9.15391405728871,45.41554612813026],[9.153759329745272,45.41549583989428],[9.153469640841276,45.415397837612254],[9.15330005633906,45.41534494934978],[9.153094911690532,45.41529945329503],[9.153046355822475,45.41528868989861],[9.152582404620091,45.415221999006874],[9.152541388354802,45.41521564488607],[9.152450600942565,45.4153979570881],[9.152421020594506,45.41545737673161],[9.152291032630439,45.41570553902222],[9.152167827869684,45.41593861529709],[9.152085266316506,45.41610093381218],[9.152003595624334,45.416262017929554],[9.151958806155744,45.41635033316128],[9.151952624860625,45.41634723598736],[9.15159815515795,45.416179277396324],[9.151104354434414,45.41594393944636],[9.150772865372499,45.415793878136476],[9.150351686723248,45.415605751026284],[9.150151729268767,45.41551559742163],[9.149631448692325,45.41529069307643],[9.149616389121478,45.41528418696159],[9.150586720587874,45.41473442365274],[9.150628780860274,45.41471058741034],[9.150608899217472,45.414668848460636],[9.150521218887237,45.414588556945056],[9.150446435755093,45.41450894149734],[9.15039613099967,45.41445987958576],[9.150358085213938,45.41442633745204],[9.150334296880803,45.41440531511753],[9.150312570625212,45.41439080686778],[9.150281269946081,45.414375492082755],[9.150219577189224,45.41434530234853],[9.150151704951865,45.41431738896358],[9.150115681833569,45.41429955101734],[9.150053305856302,45.41427190940055],[9.149951651352849,45.41423737935595],[9.149894962425886,45.41421933437844],[9.149828593852826,45.41420417339298],[9.149772665753137,45.414193526264455],[9.14972438082566,45.41418798173825],[9.149678275580756,45.41418511667008],[9.14963395010732,45.4141835184124],[9.149564872631059,45.41418305061213],[9.149487061512575,45.41418559154152],[9.149408071672879,45.41419186941341],[9.149267991218737,45.41420229539872],[9.149216699131626,45.41420499958791],[9.149169927409208,45.41420626668889],[9.149123614489191,45.41420704711362],[9.149086522767735,45.41420553823271],[9.149056187594026,45.41420246335223],[9.14902541298967,45.41419751680665],[9.148995476157056,45.41419039089584],[9.148955864722344,45.414178353962896],[9.14877313604863,45.414110309213505],[9.148658414043842,45.41406808105373],[9.148583381315976,45.41404322740692],[9.148552183799328,45.41403289862365],[9.148478903173887,45.41401337128687],[9.14819451812838,45.413904124348015],[9.148160629946963,45.413891107611015],[9.148120596828148,45.41394754231668],[9.148061591861781,45.41403100485124],[9.148003824248205,45.41413816565521],[9.14792172535289,45.414270704970235],[9.147866306632837,45.41439176936664],[9.147814169818107,45.414511929386094],[9.147750716056514,45.41466897249434],[9.147672236587155,45.414852192143805],[9.147624876926304,45.41495198541602],[9.14756127557197,45.41505261870233],[9.147497388361458,45.41515153310963],[9.147445297119274,45.41523074688248],[9.147416566128339,45.41527471825031],[9.147367850036881,45.41534953510336],[9.147325096926094,45.415432157215776],[9.147308995185536,45.41549185522539],[9.147305690636601,45.41556297716431],[9.147301271897577,45.41564799823305],[9.14729220111409,45.41573303428673],[9.1472678530457,45.415826136973934],[9.147244764621131,45.415877670959695],[9.147206631227835,45.41594802758179],[9.147171933754613,45.41600284387704],[9.147133728146091,45.416045396172414],[9.147073467589806,45.41609452058835],[9.146977297565416,45.41617476287052],[9.146844003877034,45.41627139868745],[9.146682900991532,45.416388502473296],[9.146564235699284,45.416478494408715],[9.146513240358331,45.4165178044681],[9.146412425097374,45.41660131061066],[9.14634280963561,45.41665606328449],[9.146302553739202,45.4166870155029],[9.14626409677897,45.41671676826269],[9.146148239526884,45.41682074387862],[9.146081068626202,45.41689194727613],[9.145908573746546,45.41709817535293],[9.14581898301407,45.417208498927124],[9.145656947175834,45.41741717058996],[9.145547000890595,45.41756446033922],[9.145404680231508,45.41773675113926],[9.145357301240796,45.4177915469669],[9.145322333479651,45.417831781250435],[9.145300934648244,45.41786033288293],[9.145272099153862,45.41789959625053],[9.145250686157828,45.41792263021958],[9.145226207894641,45.417951509783876],[9.145202166994183,45.41797650031477],[9.145180744496695,45.4180008394413],[9.145130929002,45.41805762750427],[9.145111260739112,45.41808326055139],[9.145086788959052,45.41811473239224],[9.14505458842892,45.418157681415465],[9.145022065889695,45.41819467211209],[9.145002955364394,45.41821352660879],[9.14496115871455,45.418252455267606],[9.1448982358163,45.41832174434065],[9.14487806149366,45.418339466024364],[9.144864541117036,45.41835023944119],[9.1448507862547,45.41836428955162],[9.144839546205773,45.41837714833435],[9.144834470797445,45.418386641909166],[9.144832294670868,45.41839534872082],[9.14483121851096,45.418404369179314],[9.144818699422835,45.41840684231441],[9.14480876080526,45.41840880812299],[9.144798711466004,45.41840243905688],[9.144777038141536,45.418388685789495],[9.14469499151862,45.41834146175413],[9.144599047395353,45.41829239198599],[9.144537101641365,45.41826372070799],[9.14447406656818,45.41823889423853],[9.144374587299778,45.418201773195236],[9.144248804339313,45.41815435195125],[9.14408273600433,45.41809180542636],[9.143946524280128,45.41803933835671],[9.143784846587465,45.41797920717192],[9.143637685765736,45.417923108039126],[9.143522853165193,45.417879119674616],[9.143396319562646,45.41783249052661],[9.143245751157956,45.41778310097174],[9.143173753279635,45.41776155239375],[9.142893124296325,45.417685600687044],[9.142858415576,45.4176719803362],[9.142834318294296,45.41764951666191],[9.14281974910802,45.41763974164396],[9.142781267964011,45.417620194252926],[9.14276048398244,45.417614180434626],[9.142725651739577,45.41761240563985],[9.142685091598645,45.41760980087092],[9.142632084812186,45.417597769444],[9.14250018606996,45.41756190229463],[9.142453220139366,45.41754805404554],[9.142374350781427,45.41752300308456],[9.142264876140747,45.417494722703736],[9.142172421279652,45.41746980549718],[9.142060320202884,45.41743378723842],[9.141895539535382,45.41738349542162],[9.141710771484213,45.41732354292684],[9.141558053194126,45.417271930532884],[9.141541078595258,45.41726610080555],[9.14151711904336,45.41725759738254],[9.141486213268498,45.417246573230145],[9.141461264080123,45.41723584774739],[9.141443848972008,45.417227615256984],[9.141434970707275,45.417224232811016],[9.1414261179117,45.417225944953685],[9.141420515630193,45.41722934528702],[9.141415296186615,45.417232511118705],[9.141401220727609,45.41724636318829],[9.14138747930128,45.417266047554286],[9.141377218166147,45.41728731181426],[9.141369037270866,45.417312497982856],[9.14136015410323,45.41734822530187],[9.141341580844522,45.41740872659897],[9.141325796574842,45.41743440820902],[9.14131914328366,45.41744689194083],[9.141314420337828,45.417449283060684],[9.141306037345615,45.41744977046499],[9.14129098926136,45.41744772778462],[9.14125766083652,45.41743901984214],[9.141220456718917,45.4174290565168],[9.141204546782118,45.417424782616116],[9.141172497667657,45.41741655913022],[9.141134654139496,45.417406434545526],[9.141114868896995,45.417401058274315],[9.141086055306136,45.417393622872844],[9.141049067336223,45.41738318216716],[9.141020022525023,45.417375269975715],[9.140914779602257,45.41734711810458],[9.140800736052674,45.41731591658627],[9.140684537480155,45.4172866528376],[9.140460853043455,45.4172264580954],[9.140392739117088,45.41720880047262],[9.140278570811939,45.41717343107733],[9.140203891379294,45.41714690630387],[9.140169958761948,45.4171366415936],[9.140139646636529,45.4171329882483],[9.140080647150192,45.41711596736216],[9.140038061513929,45.417100312540526],[9.140012588322644,45.417089452365495],[9.139985926872836,45.41706835939024],[9.139948976350354,45.41703145505665],[9.13989656134108,45.416984218344965],[9.13980360188386,45.416904123109454],[9.139716419663076,45.416824074754295],[9.139619220398627,45.41673474041284],[9.139580827326586,45.416703526410664],[9.13955059196059,45.41667378763433],[9.139523900473689,45.41664552071152],[9.139503229281981,45.41662270111268],[9.139487119419512,45.416604529520875],[9.13946306681814,45.41658912193736],[9.139441851265385,45.41657881451617],[9.139409776493348,45.41656504588948],[9.13939280533129,45.41656043998729],[9.139378654279943,45.4165540394313],[9.139361179953356,45.41653188199607],[9.13935870824949,45.41654544965889],[9.139357756658205,45.41655870043306],[9.13935509906747,45.41658505888187],[9.13935382688553,45.4166030806279],[9.139353101867414,45.41662533222389],[9.139351612038649,45.41664320121595],[9.13935174931083,45.41667310269528],[9.139350866785978,45.41670408554727],[9.139348941919991,45.41673217131427],[9.139343798532057,45.416766363742084],[9.13933949387242,45.416803813546075],[9.139337162802708,45.41687470902562],[9.139337835204582,45.41690914640555],[9.13933928598018,45.41695349304606],[9.1393411898328,45.416989765150646],[9.13934233473214,45.41702925157033],[9.139340519888954,45.41707614049328],[9.13933957479221,45.41712329839032],[9.139335264053164,45.4171791194378],[9.13932750497427,45.41724636707247],[9.139315110317604,45.417320398171874],[9.13930015554626,45.41738761855351],[9.139285000840363,45.417461923038545],[9.139258588494652,45.41755801486481],[9.139221362603909,45.417664183057525],[9.139191282229973,45.41775517570336],[9.139179415476086,45.417799619537725],[9.139166755922702,45.417828267410975],[9.139152403064246,45.4178543790316],[9.139139114370387,45.41786621361929],[9.139121857276262,45.41787546971278],[9.139104871588337,45.41788073798848],[9.139085889503752,45.41788495555857],[9.13905959235546,45.417887381790614],[9.139028806390062,45.4178886973313],[9.138998069233434,45.417889067689345],[9.138973758008326,45.4178882690986],[9.13894274366673,45.417885048340985],[9.138908467391259,45.41788067939201],[9.138869045937517,45.41787856694701],[9.138835687652845,45.41787850838767],[9.13880050412527,45.417879442151786],[9.138775288677275,45.41787995877485],[9.138739762527372,45.417881901058216],[9.138667108095442,45.417889171944026],[9.138635545761096,45.41789182948216],[9.13861375445669,45.41789188286776],[9.13858638981762,45.417891582951164],[9.13855959739682,45.417890085189896],[9.13853497535254,45.417887612678044],[9.138514264078202,45.417885063421274],[9.138491354212395,45.41788239980575],[9.138468423505506,45.41788167144642],[9.138448127565415,45.41788172299206],[9.138424997587187,45.417883137125735],[9.138403099308643,45.417886494002616],[9.138395655107631,45.417889392352194],[9.138360259783555,45.41787684259531],[9.138353545731942,45.41787516750324],[9.138327942820807,45.41786878065531],[9.138285713227377,45.41786290894337],[9.138197967054449,45.41785546296258],[9.138141350792262,45.4178462241483],[9.138008969003339,45.417826284336726],[9.137817414672122,45.4177969824594],[9.137545846469855,45.417749450173034],[9.137379289206981,45.417724276036836],[9.13721624566436,45.41769862038894],[9.137068550983535,45.4176725140831],[9.136934029460058,45.41765003727739],[9.13682804511921,45.41763181073788],[9.136618435295782,45.417603572550085],[9.136475702657957,45.41757853068732],[9.136346654577672,45.41755721680821],[9.13623527425729,45.41753780799881],[9.136206132841242,45.417532000954964],[9.136094104757658,45.41750891132993],[9.136124422831502,45.41747241185088],[9.136177902560505,45.41741046572436],[9.13623394525161,45.41735140587485],[9.13631351811032,45.41726076914446],[9.136414530218943,45.4171407902455],[9.136481199574813,45.41705780169677],[9.13655516023599,45.41697220309578],[9.136655869432984,45.416859551231695],[9.136826382102488,45.41666036034499],[9.137004303912557,45.41645487756557],[9.137307213616456,45.41610484006936],[9.137338439420933,45.41606910426392],[9.13756808809421,45.415803656217356],[9.137734717922992,45.41561335268747],[9.137792143175686,45.41555136503433],[9.13781378469016,45.4155268199942],[9.137815389485896,45.415524540784524],[9.13784793139572,45.41547842498435],[9.137877378954117,45.41543170982692],[9.137906339003782,45.415389513800704],[9.137917129336365,45.415354207492534],[9.137904756524343,45.415348344676666],[9.137859694906949,45.41534382638046],[9.137804929870365,45.41533800558445],[9.137752826235078,45.415338725359874],[9.137706015208547,45.41534008682576],[9.137655684739347,45.415344719902755],[9.137600951385993,45.415351968567634],[9.137557682076517,45.41535398279683],[9.137514406422174,45.415353377697194],[9.137476415512428,45.41535016491843],[9.137425187512376,45.415343043535266],[9.137383655016233,45.415333948256944],[9.137318260313009,45.41531900386452],[9.137274077590943,45.41530794948479],[9.13723962368712,45.41530341822627],[9.13720163913179,45.41530281566746],[9.137168071814896,45.41530024556472],[9.137116851609335,45.415301612071005],[9.137070944666387,45.415306887672365],[9.137034772792857,45.41532129672253],[9.136990684670037,45.41534944190934],[9.136984391340302,45.41534719916343],[9.136935371893632,45.415323134848705],[9.136930995850204,45.41532098881908],[9.136921542279765,45.41529608507964],[9.136899814775003,45.41526917076698],[9.136774738150821,45.4151966363563],[9.136625074973548,45.415114463965025],[9.13646424618755,45.41501263727985],[9.13619309087948,45.41484877104079],[9.13609405295614,45.414799076702764],[9.136020346087278,45.41477629248506],[9.135911550986876,45.414750723526836],[9.135704204819989,45.4146970888554],[9.135460023730598,45.41463689057996],[9.135279414276939,45.41459389881001],[9.135110499565588,45.41456191930457],[9.135015864417994,45.4145411933783],[9.134873544547599,45.41450882211739],[9.134819739304437,45.414497688109165],[9.13473918492579,45.41448102287304],[9.134522465545768,45.41443502101542],[9.134232285053116,45.41438842980053],[9.134127600321667,45.414365572655655],[9.133955726252346,45.414329994467046],[9.133767816778674,45.414290429262564],[9.133624915871168,45.41426039740956],[9.133476221320477,45.414223045234344],[9.133347569076447,45.41419240235202],[9.133312801583408,45.41418452186358],[9.133309991392478,45.414190573875324],[9.133256741481144,45.41426336475387],[9.133203478631978,45.414336146620656],[9.133147842496768,45.41441061442708],[9.133100471200486,45.414461660735434],[9.133060183082627,45.41449764895259],[9.133012747033,45.41452110692453],[9.132955786888369,45.414537888117046],[9.132936510524088,45.41453621828931],[9.132898788653312,45.414532940667605],[9.132873100365252,45.41457109914102],[9.132821560864507,45.414654302100764],[9.132750988287835,45.41476346827397],[9.132665668645588,45.41488972657457],[9.132638727180556,45.41492771542377],[9.132544984694672,45.41505938404635],[9.132490765040867,45.4151281341852],[9.13245575198674,45.4151905253089],[9.132416456207707,45.41524689963773],[9.132379587046316,45.41528615105555],[9.132336372867705,45.415328344152385],[9.132276476372205,45.41538531830703],[9.132203083870033,45.41544785268846],[9.132105998014445,45.41553855179416],[9.132059546879422,45.41558489802533],[9.131995086638275,45.41566361494725],[9.13196127075764,45.415697075001],[9.131924224091874,45.41572069156418],[9.13186630848208,45.415750461896494],[9.131796373919519,45.41577795075228],[9.131647059264786,45.415860248528006],[9.131585137760355,45.41589323671439],[9.131554081617839,45.41590994243032],[9.131519117201238,45.41593879510862],[9.131467823900506,45.41599171745888],[9.13142121479986,45.41603646141252],[9.131350564291772,45.4161083082291],[9.131226821273016,45.41624010916113],[9.131164987093682,45.41631673434146],[9.131107140929675,45.41637149125443],[9.131048594071064,45.416427266063494],[9.130993874654457,45.41647462943852],[9.130962391687367,45.41651152494257],[9.13092297703123,45.41656172412733],[9.130890935946088,45.416589403125165],[9.130798050523754,45.41666885392895],[9.130759337891064,45.41670211218848],[9.130582978995866,45.4168693467875],[9.130518095879124,45.416937982111435],[9.130458984886369,45.41699348722274],[9.130397932240985,45.417055052252074],[9.130335015254245,45.417111821785284],[9.130294514896823,45.417151589712304],[9.130259872633072,45.41718777752616],[9.130233453484939,45.41722620625222],[9.130275645227782,45.41723843575911],[9.130419729079138,45.4172801988684],[9.130523002298117,45.417310036858574],[9.130518889515754,45.41734455175023],[9.130449279717343,45.41772606151797],[9.130411595327228,45.41796263523194],[9.130406726428296,45.41801301090687],[9.13041013551514,45.418050487586186],[9.130474256863533,45.41847307897034],[9.130516413440654,45.4187421186533],[9.130644956800568,45.419366152931715],[9.130631321055702,45.41957811722743],[9.130624232571783,45.419747066824904],[9.13052617128707,45.420096132987204],[9.130512397978245,45.42024850116897],[9.130486519825109,45.42055632298854],[9.130872981254761,45.420606225092556],[9.130677137545744,45.421392694014195],[9.130657042780868,45.421597410729326],[9.130661396084612,45.421617343176365],[9.130662003244604,45.421620132821396],[9.130663605075023,45.421627475883],[9.130693570168384,45.421618404595336],[9.130723142914375,45.42161102595259],[9.130748526507197,45.421605065256166],[9.130781803901444,45.42159680026159],[9.130823091099398,45.42158665388072],[9.130862779450307,45.42157602325309],[9.130891258488521,45.42156551343726],[9.1309179623963,45.421550127052974],[9.130943856560409,45.42153279735282],[9.130962353497004,45.42151694328415],[9.130983553946676,45.42149285912402],[9.130997511251882,45.42146501178878],[9.131014933892585,45.42142673722496],[9.131027696791909,45.42139088928308],[9.131036062693719,45.42134946569493],[9.131049722889168,45.42130367051867],[9.131056555976475,45.42128484141917],[9.13108287959438,45.42123213691016],[9.131096275870991,45.42120492928119],[9.131102422244014,45.42117101513712],[9.131098851626776,45.421130289290275],[9.131089199912301,45.421057616532494],[9.13108309944939,45.421022816297906],[9.131080033854886,45.42099045188463],[9.131080875260766,45.420961818451765],[9.131083397021143,45.42092469506666],[9.131086661599184,45.42089375458039],[9.131091012064116,45.42086257882247],[9.131097822769691,45.420834082572945],[9.131110843084262,45.420810160768994],[9.13113177703954,45.42079258467229],[9.131147928037151,45.42078493325168],[9.13117302609249,45.42077727158085],[9.131203965314416,45.420769612213434],[9.131236628825942,45.42076142879831],[9.131267236106558,45.420753940814855],[9.131298166808163,45.42074813565645],[9.131333929309415,45.42074249596909],[9.131381255465996,45.42073528581577],[9.13142358329944,45.42073328400993],[9.131462858995855,45.42073242883079],[9.131507977944763,45.42073247603828],[9.131558338896216,45.42073320128889],[9.131606491380595,45.420735108198286],[9.131654350373408,45.420737222449915],[9.13170975709789,45.4207421903478],[9.131751357859079,45.420746337001965],[9.13178384639071,45.42075091717887],[9.131800428188308,45.42075269831376],[9.131826288528767,45.42075410872182],[9.131860936256414,45.42076380801209],[9.131874155882603,45.420781830975976],[9.13187762634041,45.420806714996246],[9.131875740284613,45.420836654796965],[9.131869482720681,45.420872009287244],[9.131863212588538,45.420901954135786],[9.131850153942892,45.42094777572329],[9.131827942995772,45.42098230247519],[9.13181429002533,45.42100337174264],[9.131802933093267,45.4210279487911],[9.131795842483251,45.42105135078654],[9.131791453485144,45.42108779225264],[9.131796435649086,45.42113070371864],[9.131805266011362,45.421151981134514],[9.131817507376896,45.42117252553503],[9.131836585853685,45.42119811167484],[9.13186444699102,45.42122440778573],[9.131910732976092,45.42125348200675],[9.131938337615674,45.42126287434722],[9.131964786166016,45.42126979271342],[9.132013077065563,45.42128155548564],[9.132047551108245,45.421298860839904],[9.132070482833903,45.42130496413755],[9.13209196940206,45.42131070905398],[9.132111482576889,45.421314295981325],[9.132130024349626,45.421317884026145],[9.132150519181202,45.42132038068223],[9.132168095419184,45.42132649014037],[9.13217657993055,45.421336390547964],[9.13218579616223,45.42134764927491],[9.13219266061528,45.421364419383124],[9.132200556698336,45.42138509477305],[9.132208522562724,45.42140829038701],[9.132213178590295,45.42143175085336],[9.132214064867393,45.421455575715456],[9.132212414025144,45.42148216684131],[9.132209930507077,45.42150795783135],[9.132208953339973,45.42153293698405],[9.132206576262558,45.42156052806889],[9.132203800414754,45.42158703048205],[9.132199348253955,45.42161820639579],[9.132196235863983,45.42164289997796],[9.132190638599994,45.42167084582178],[9.132181130009968,45.42172071383316],[9.132178809189751,45.42175600978423],[9.132178352459771,45.421762968153644],[9.132175616421703,45.42179010959656],[9.132172854547996,45.421811643390356],[9.13216977731497,45.42184046843045],[9.132172755557846,45.42186247265662],[9.132176709407279,45.42188627597441],[9.132175330343935,45.42191981562497],[9.132167589515996,45.421949402138615],[9.132160328694269,45.42197104913698],[9.132156964658478,45.4219919805517],[9.132156523420166,45.42201109037319],[9.13215899561492,45.42202984578987],[9.132158566149261,45.42205401420975],[9.13215471975062,45.422076386355016],[9.13214729028321,45.42210796174788],[9.132144260111858,45.422129558856994],[9.132142924580306,45.422148858732825],[9.13214124891741,45.42217579192447],[9.132141399218487,45.42219644024886],[9.132140716913899,45.42222181510563],[9.132134761408315,45.42224415367892],[9.132131737981993,45.42225766780172],[9.132133325188212,45.42228060974555],[9.132129386687616,45.42230735652445],[9.132125169990575,45.42234089044489],[9.13212349228987,45.42236145986804],[9.132121965847833,45.42238661067068],[9.132122693819472,45.42240832945741],[9.132120276515344,45.422451627481976],[9.132115519787723,45.42247830319493],[9.13211366418827,45.42249383221315],[9.132110392898706,45.42252168535451],[9.132102629604498,45.42254715838924],[9.132101308056956,45.422572479975074],[9.132102210261053,45.422603163644105],[9.132098702854707,45.4226284247436],[9.132093955911118,45.42265382228897],[9.13209170018655,45.422678676895224],[9.132088652376822,45.422703703435616],[9.132083650809195,45.42272954232726],[9.13207768958493,45.42275495027318],[9.132074563733386,45.42277940083326],[9.13207198377784,45.42280224856993],[9.13207054596739,45.422832547889925],[9.13206619382044,45.42286283256862],[9.132060920946653,45.42289293828702],[9.132058080994018,45.42291941376107],[9.13205298138654,45.42294707998426],[9.13205012837992,45.42297893812331],[9.132047041228754,45.42304203030592],[9.13204286747283,45.423066590085234],[9.13203658664937,45.42309749806045],[9.132032827419229,45.42312992431162],[9.132026664828317,45.42319519830094],[9.132023144071841,45.423225743049045],[9.132021148417417,45.42325802324851],[9.13201759474853,45.4232909083167],[9.13201504834977,45.42332271209296],[9.132013308120156,45.42335490198641],[9.132010106274361,45.423390675997155],[9.132011889548123,45.423415489938144],[9.132016105237568,45.42344743893683],[9.132015708634807,45.42348027535888],[9.132013898945107,45.42351008004352],[9.132011352741081,45.42353647416514],[9.13200533102567,45.42356340335699],[9.131996887495546,45.42359326069318],[9.131987104465898,45.42362425370935],[9.13197013372725,45.42365348179394],[9.131954814948578,45.423678531468184],[9.131938034533677,45.42370166559291],[9.131917486288788,45.423726064207564],[9.13188698445567,45.423757594141655],[9.131859906849622,45.423783026389195],[9.131832139371038,45.42380312178021],[9.131795034434973,45.42383147290615],[9.13176992907662,45.42385305939837],[9.131704920004006,45.423892252904174],[9.131639828543696,45.423934542841046],[9.131579452842569,45.42398200294672],[9.131543989149073,45.424012665383515],[9.131501355334175,45.424054704414424],[9.131466115432083,45.42407716658041],[9.131442344237609,45.42408988539848],[9.131422964653762,45.42410023188614],[9.131355848997233,45.42412967943323],[9.131293339178857,45.42416097588395],[9.131169647833532,45.42423979611816],[9.131001496956806,45.42433983763795],[9.130963289954513,45.42436177197779],[9.130709557755516,45.424499580446394],[9.130667709464541,45.42452234694265],[9.130622043055421,45.42455234564986],[9.130599300168424,45.424567718438595],[9.130516103176992,45.42460825516272],[9.130425910137477,45.424658205927734],[9.130382531468038,45.42468260325815],[9.130211780769523,45.424776075775576],[9.13003570829833,45.424873514556324],[9.12985924497517,45.42497358182388],[9.129697353194008,45.425056899299676],[9.129560187008103,45.42513665114882],[9.129487262024547,45.42517561831053],[9.129435082499286,45.425203139604626],[9.129241284845639,45.42531484590131],[9.129127602907646,45.42537382322418],[9.129108200313777,45.42538567252368],[9.129097142527764,45.42539092362005],[9.129076155395452,45.42540299972733],[9.12906586686864,45.42540926707609],[9.129056522551464,45.42541478626994],[9.12904587367436,45.42541998289402],[9.129025318918915,45.425431086387654],[9.12901355768646,45.42543616724782],[9.129003320542793,45.42544255154711],[9.128993872317729,45.425447350766134],[9.128982380555804,45.42545289037481],[9.128972244848468,45.42545891451372],[9.128961786140412,45.42546342683336],[9.128948275031481,45.425469103728815],[9.12893590426706,45.42547596748182],[9.12892570429034,45.42548183867047],[9.12891614266408,45.4254873670985],[9.128906285647135,45.42549228378448],[9.128894576972204,45.42549800365012],[9.12888378857974,45.42550369547564],[9.128871620258176,45.42550964988436],[9.128860500780284,45.42551590014737],[9.128849124361466,45.42552158363012],[9.128836599774033,45.42552826752373],[9.128825989284842,45.42553350008832],[9.128813821685839,45.425539778529064],[9.128803531941395,45.42554553279364],[9.128793024482437,45.42555110728046],[9.12878198207115,45.42555752846969],[9.128772523556558,45.42556344381625],[9.128761352579795,45.42556954110905],[9.128751066273571,45.42557681654816],[9.128741251431347,45.42558343437721],[9.12872960869478,45.425590063261126],[9.128718719455948,45.425596394261206],[9.128708570035018,45.42560203134543],[9.128697743643798,45.425607894216505],[9.128687312715723,45.42561340559994],[9.128677954097194,45.42561828570178],[9.128667546181148,45.42562267192212],[9.128655516503079,45.4256277800501],[9.128644113170944,45.42563288747324],[9.12863308079765,45.42563811149262],[9.128621241731125,45.42564272434332],[9.128609710057061,45.42564760688003],[9.12859598154395,45.42565327497664],[9.12859093577263,45.42565476582107],[9.128571115142693,45.42566273603123],[9.128558892709568,45.4256674033123],[9.128545700832621,45.42567297178852],[9.128534515641777,45.42567845700131],[9.128523290450755,45.42568321317015],[9.128509536232876,45.42568882727869],[9.128499209997136,45.42569542765852],[9.128489312991624,45.42569965126978],[9.128476950281044,45.42570447171787],[9.128465574885405,45.42571064121957],[9.128453457952032,45.42571674854431],[9.128444155598084,45.425723914838905],[9.12843435154313,45.425729677526434],[9.128423589256558,45.425735648312525],[9.12841217859478,45.42574318601306],[9.12840392251499,45.42574951403052],[9.128395650435142,45.42575441989407],[9.128385436145084,45.42575966097444],[9.128374418825562,45.42576591107536],[9.128362904811613,45.42577297182939],[9.128351241451606,45.425781823965195],[9.128342082002309,45.42579001621476],[9.128332947769856,45.42579805541688],[9.128324719679375,45.4258054635271],[9.128316058440884,45.425813520200045],[9.128307641168654,45.42582206265745],[9.128299733715684,45.42582994746399],[9.12829198005914,45.42583801211939],[9.128283691338298,45.42584687847002],[9.128277396080238,45.42585546355359],[9.128270791047475,45.42586272582458],[9.128263497843019,45.4258709159774],[9.128256207807883,45.425880510295165],[9.128251267932091,45.42588928288208],[9.128245827660301,45.425897227929504],[9.128239084163843,45.42590544446845],[9.128231417975178,45.42591262691553],[9.128223244257741,45.42592148413178],[9.128216245345376,45.42592980896828],[9.12820910641079,45.425938394992464],[9.128201227541394,45.42594762992252],[9.128194459137656,45.42595614352238],[9.128187730766424,45.425965404166874],[9.128181704770544,45.42597436698906],[9.128175883844413,45.42598357261067],[9.128170392361278,45.42599149070841],[9.128164760409145,45.425999471970684],[9.128157799420391,45.4260076167394],[9.128150659045241,45.42601557268565],[9.12814436183898,45.42602331166202],[9.128136468478743,45.4260317995138],[9.128129955323482,45.42604014180355],[9.128122915963171,45.42604754856895],[9.128114650516862,45.426055424761806],[9.128106159223378,45.42606518243301],[9.128099689504493,45.42607578394411],[9.128095413821741,45.42608434875617],[9.128090496687175,45.42609188816205],[9.128085156280077,45.42609878896424],[9.128078844202143,45.426105609843084],[9.12807102609595,45.426113467530264],[9.128063092780664,45.42612125333711],[9.128054958877362,45.42613078557764],[9.128048331384857,45.426139452029396],[9.128041984846561,45.42614800115254],[9.128035574555046,45.426156622355265],[9.12802921537223,45.42616523449941],[9.128022803372236,45.42617309961237],[9.128016264070661,45.426181198895385],[9.128008870575878,45.42619029825297],[9.12800248383136,45.4261980283203],[9.127996428361154,45.42620528095964],[9.127989845591403,45.42621111201694],[9.127978833739318,45.42621984637183],[9.127972132449278,45.426229809057354],[9.12796425131015,45.4262380718562],[9.12795826511941,45.426247709702906],[9.127952556395153,45.42625568203902],[9.127946310144521,45.42626336694072],[9.127940061560023,45.426270016720224],[9.127932802791301,45.42627651460944],[9.12792394749375,45.426283599351805],[9.12791463436649,45.42629172873046],[9.127906419013515,45.4262991728],[9.127897999316568,45.42630669810688],[9.12789005282308,45.4263143308977],[9.127881965108857,45.42632169381319],[9.127874398871445,45.42632789500624],[9.127865567725625,45.42633435864242],[9.127853518804377,45.42634237405637],[9.127842529796435,45.42634992022955],[9.127833660943622,45.42635667193995],[9.127824676152168,45.42636302773141],[9.127814593559036,45.426370059828535],[9.127805493515702,45.426376325736314],[9.127795486561164,45.42638288969106],[9.12778664146042,45.42638884027496],[9.12777734742099,45.42639410727676],[9.127767464905798,45.42639916790947],[9.127756418041269,45.42640373478068],[9.127744326549967,45.426409887006464],[9.12773372847621,45.42641507444956],[9.12772297644013,45.426420010033034],[9.12771084513582,45.42642551422173],[9.12769728675087,45.42643306324599],[9.127686782722172,45.42644028482441],[9.127676611286416,45.42644761404402],[9.12766645710306,45.426456932482616],[9.1276583970297,45.426465240464914],[9.127650797296807,45.42647361994217],[9.127643185244219,45.426482206457536],[9.127635242879668,45.42649170244977],[9.127628908192976,45.42649988249187],[9.127622165243409,45.42650841403077],[9.127616049276789,45.426517223904156],[9.127609755380437,45.426526493030636],[9.127604254684247,45.426536058308685],[9.127598739747148,45.426544975524415],[9.127594257345004,45.42655261343584],[9.127586567160632,45.42656056995863],[9.127579982303264,45.426571198570926],[9.127574916658782,45.42658096138662],[9.127571241125947,45.42658929148163],[9.1275665666708,45.42659679458965],[9.127561062058124,45.42660462266107],[9.12755490547885,45.42661243345617],[9.127548750171597,45.42662081131767],[9.127542353464396,45.42662984652661],[9.127536122972526,45.426638899552266],[9.12752998547595,45.42664951866225],[9.127526288490078,45.426659685000274],[9.127522462805208,45.42666946443497],[9.12751884528298,45.42668086383246],[9.12751624569829,45.42669017384542],[9.127511715780287,45.42669943200108],[9.127507608321652,45.42670896871971],[9.127504120208666,45.426715381373306],[9.127497667704018,45.42672234639296],[9.127489939619483,45.42673051897715],[9.127481816617808,45.42673929507287],[9.127473956302609,45.42675120325204],[9.127469377989263,45.42676168560688],[9.127466011784138,45.42677115849128],[9.127462760361098,45.42678051423378],[9.12745885529301,45.42678910561173],[9.127453837426494,45.42679739219116],[9.127448923579104,45.42680646174866],[9.127443933618698,45.42681579242203],[9.12743960685157,45.426824447276076],[9.127434821414223,45.426833777721434],[9.127430357001836,45.42684375588724],[9.127426413898998,45.42685249132358],[9.127422281495495,45.42686231610125],[9.127418277525424,45.42687241076833],[9.127414640097445,45.42688065080465],[9.127410314714425,45.42688992673056],[9.127406168088646,45.42689911244663],[9.127401622990343,45.42690731748793],[9.127397206870809,45.4269160354472],[9.127391906851425,45.42692391728894],[9.127386545985235,45.42693316736243],[9.127380726588209,45.4269431560343],[9.12737557157755,45.426952999949634],[9.127370592658993,45.426961565515384],[9.127365436716213,45.42697099538156],[9.127360782777922,45.426981972875225],[9.127357519753804,45.42699186869215],[9.127354179344646,45.42700145855828],[9.12735032729434,45.427010904975916],[9.127346612483914,45.42701884806026],[9.127341976796897,45.42702656714136],[9.127336434287503,45.42703462927161],[9.127330572364668,45.427042763765336],[9.127323626352917,45.42705199759586],[9.12731694742845,45.42706062805662],[9.127311085459771,45.42706874454721],[9.127304433408954,45.4270779600476],[9.127297664231133,45.427086248566425],[9.127291086391965,45.42709435685053],[9.127284497603988,45.42710328424481],[9.127278343757,45.42711235517265],[9.127271896465047,45.42712167845652],[9.127265155062181,45.427130957061415],[9.127260241962631,45.427140386652674],[9.12725509303953,45.42714726019876],[9.127247840009966,45.427156404354854],[9.127242739295664,45.427167679375415],[9.127239463517828,45.42717760220609],[9.12723658007793,45.427185769389965],[9.127233069041555,45.42719338820506],[9.127228521212388,45.42720039609829],[9.12722165030974,45.42720893675573],[9.127215356231837,45.42721818785736],[9.127210110295328,45.427227410791204],[9.127204584583385,45.42723728211336],[9.12720051479842,45.427246557746855],[9.127196303693651,45.427255518499315],[9.12719223253505,45.42726418206053],[9.127188417861497,45.42727321438103],[9.12718366170107,45.427284236985834],[9.127179947292923,45.4272923780877],[9.127175262928597,45.42730121334971],[9.127169405672047,45.42731145408249],[9.127165321621538,45.42732007265156],[9.127160915999333,45.42732780047052],[9.127154163262327,45.427337745161076],[9.12714940493328,45.42734780465107],[9.127145718762575,45.427357142864096],[9.127142568086315,45.42736585940797],[9.127139109206169,45.42737394621824],[9.12713439930304,45.42738279950897],[9.12712963985837,45.42739236393986],[9.127124168593449,45.427403729376756],[9.12712040529371,45.427412878651815],[9.127116934793206,45.42742148753688],[9.127112964645653,45.427429601917],[9.127109032080382,45.427437374214186],[9.127104000012785,45.42744507572281],[9.127097869812406,45.4274533185147],[9.12709103904177,45.42746267821767],[9.127085104470968,45.42747265800031],[9.127079590106502,45.42748190822885],[9.127074471208592,45.42749079797509],[9.127068298487602,45.42750289327493],[9.127063719353876,45.42751306957628],[9.127059038840349,45.42752364203747],[9.127054825718972,45.42753172068062],[9.127048610854098,45.42754212382294],[9.127043042867758,45.42755026697621],[9.12703594411563,45.42755984299893],[9.12702839865903,45.42756973455444],[9.127022056558634,45.42758040786881],[9.127017813857044,45.42759241101435],[9.127015444807263,45.42760197278904],[9.127013242137819,45.42761162438992],[9.12701065329804,45.42762007927533],[9.127007208133017,45.427628598117856],[9.127003109983686,45.42763664962825],[9.12699848996189,45.42764570083707],[9.12699326257141,45.42765753405293],[9.12698910378375,45.42766705280607],[9.126985145940969,45.42767496914396],[9.126980663326666,45.427682589027896],[9.126975451874351,45.42769011970889],[9.126969780853655,45.427697929932634],[9.126963293766885,45.42770665917093],[9.126956805812775,45.42771500136339],[9.126949987408203,45.42772419902432],[9.12694485614784,45.42773329580291],[9.126939277920323,45.427742591100426],[9.126934975626039,45.427750822856076],[9.126929866184708,45.427758245408874],[9.12692342977465,45.42776677656489],[9.126916304121476,45.427775776540464],[9.126910036160933,45.42778532463109],[9.126903910160184,45.427795475636366],[9.126899994789651,45.42780524614658],[9.126896279964743,45.42781323422054],[9.126891570671129,45.42782239353664],[9.126887218458343,45.427831174411565],[9.12688221555242,45.427840514074084],[9.12687787821156,45.427850231044445],[9.126873717640725,45.427858966701095],[9.126869620199894,45.427867351245524],[9.126864742826568,45.42787566464508],[9.126859726727716,45.427884824299596],[9.126855962468658,45.4278935775187],[9.126850317701289,45.42790171174603],[9.12684444953151,45.427912843580074],[9.126841227608548,45.4279240354906],[9.12683945839764,45.42793318254704],[9.126836909274106,45.42794226745962],[9.126833846110047,45.42795013779567],[9.12682967272186,45.42795886446367],[9.12682515555461,45.42796820358562],[9.126820563938544,45.42797855091071],[9.126816851503401,45.42798761910878],[9.126813190822821,45.427996966282905],[9.126809339298328,45.42800671871677],[9.126805933695419,45.428015804576866],[9.12680274560607,45.42802498020682],[9.126799033627337,45.428034255428585],[9.126795220949829,45.42804423284589],[9.12679209592883,45.42805303036036],[9.126787707483931,45.42806277438674],[9.126782861295405,45.42807361705136],[9.126779723568076,45.42808245058379],[9.126775601917505,45.42809145622581],[9.126772976841247,45.428100883261834],[9.126768907526658,45.42811042891038],[9.12676585061353,45.42812110757426],[9.126764085483549,45.42813209084491],[9.126764430019948,45.428143269804195],[9.126764527355746,45.42815251380502],[9.126764274803342,45.428159633938385],[9.12676186068663,45.428166216399426],[9.12675693487172,45.42817575399439],[9.126752714099732,45.42818617291458],[9.126749310847833,45.428196320897484],[9.126745983811716,45.428206252769975],[9.126742977278566,45.42821659833738],[9.126740750579836,45.42822697004488],[9.126738878354471,45.42823579317443],[9.126736509471982,45.42824546295499],[9.126734307272619,45.42825535757803],[9.126732617144162,45.42826558467429],[9.126731756839055,45.428275324794015],[9.12673084542088,45.42828507397129],[9.126724826411982,45.428320292853186],[9.126721598837959,45.42832897346474],[9.126718988352934,45.42833921958119],[9.126717528618656,45.42834958143834],[9.126716488641447,45.42835900671881],[9.126715578344175,45.42836925995502],[9.126714875972953,45.42838103414358],[9.126714078856168,45.42839045015417],[9.126713192075663,45.42839978525428],[9.126712292732574,45.428409219380086],[9.12671136613548,45.428417897445414],[9.126709992506138,45.428426747025796],[9.126708326930466,45.4284365240403],[9.126708030768825,45.42844701962603],[9.12670780751047,45.42845581392714],[9.126706983017296,45.42846441987077],[9.126705840509105,45.42847372825035],[9.126705427509933,45.428483422869256],[9.126704411086338,45.42849194801542],[9.12670223309273,45.42850123953836],[9.126701454720521,45.428513328848354],[9.12670161767032,45.42852333786776],[9.126701870223576,45.42853340079448],[9.126702158776853,45.42854241055511],[9.1267024100248,45.42855188841315],[9.126702648810912,45.42856151030218],[9.126702915393066,45.42857213128022],[9.126703217412874,45.42858144706256],[9.126703455596719,45.428590798919885],[9.12670377250892,45.42860105979901],[9.126704024359961,45.42861080768861],[9.126704225600152,45.428620789662254],[9.126704374502147,45.42863023162903],[9.12670457505958,45.4286399075667],[9.126704817220752,45.42865104163305],[9.1267050690923,45.42866079852368],[9.126705254978667,45.42866962837611],[9.126704391489442,45.428677946327994],[9.126702316217134,45.42868744476177],[9.126700383669366,45.42869788815087],[9.126699678198088,45.42870827617597],[9.126699073948664,45.428718196032975],[9.126698674412815,45.42872819667318],[9.126698669713571,45.42873754879893],[9.12669876685911,45.42874671178935],[9.126699031453148,45.42875644166248],[9.126699218543974,45.42876581157816],[9.126699433471039,45.42877619858492],[9.126699647393973,45.42878613553885],[9.126699273364181,45.4287961091475],[9.126699501215302,45.428806559147425],[9.12669975252432,45.42881606400818],[9.126700028857835,45.42882532581211],[9.126699947217796,45.428834570009876],[9.126699980447041,45.42884373307084],[9.126700509104804,45.42886868347508],[9.126701356504329,45.42890471385387],[9.126701649277337,45.42891561383569],[9.12670190159149,45.428925568749044],[9.126702298499486,45.42893730571586],[9.12670248484838,45.42894634259221],[9.126702774589008,45.42895588341449],[9.126702987870551,45.4289655323343],[9.126703306110532,45.42897638728244],[9.126703595971975,45.428985982111044],[9.126704192152449,45.42899536057484],[9.12670466106176,45.4290049912096],[9.126705001514805,45.42901434295307],[9.126705394105757,45.429024144692725],[9.126705618283385,45.42903294749903],[9.126705536423097,45.42904209268487],[9.126705368373095,45.42905271414282],[9.126705633431769,45.42906265103965],[9.126705910189322,45.42907210186537],[9.126706520098544,45.42908190336446],[9.126707269319763,45.42909111963941],[9.126707469417523,45.42910058855198],[9.126707618361667,45.42911004852009],[9.126707871039345,45.42912016545212],[9.126708071056974,45.42912959836042],[9.126708359875595,45.42913872513384],[9.12670753767625,45.42916554925538],[9.126706354828864,45.429191158630346],[9.126703905627215,45.4292106846776],[9.126703735105984,45.42922019900545],[9.126703037632184,45.42922844476424],[9.126701957478804,45.429237059990555],[9.126701177800703,45.42924283954503],[9.12670004739677,45.429251850874316],[9.12669890384752,45.42926070019873],[9.126698538831922,45.4292632569086],[9.126697177742866,45.42927200746178],[9.126695663392711,45.42928082119201],[9.126695082745421,45.429284134230926],[9.12669351764245,45.42929311903775],[9.1266920165767,45.42930215778018],[9.12669079377396,45.429309864055256],[9.12667731355472,45.42947314951012],[9.126677873082329,45.429517668219574],[9.126674250626467,45.42956712414443],[9.12667845732001,45.429647751140315],[9.126684508140956,45.42966109304467],[9.126688539649427,45.42967465320827],[9.126690016803467,45.42968926932328],[9.126688318440284,45.429701557672104],[9.126687382489544,45.42971178393081],[9.126684551910907,45.42973800719896],[9.126681697802193,45.42975941491684],[9.126684648628666,45.429781356278205],[9.126693554295114,45.42980798961433],[9.126695482383496,45.42982990510333],[9.12668906357651,45.42985790555258],[9.12668766246111,45.4298945594867],[9.126708638822628,45.42996261142377],[9.126707277448297,45.430017069442805],[9.126680616197408,45.43007679407489],[9.12664355711996,45.43013443294753],[9.126596080541479,45.43019837507546],[9.126527741905273,45.430245571227765],[9.126456411797081,45.43029277964294],[9.126377199985159,45.43035989808941],[9.126374737382289,45.430361989056365],[9.125996767292254,45.430704581384305],[9.125993373642892,45.43070766348545],[9.125852553453567,45.43082575040162],[9.125849427231179,45.43082837314976],[9.12550015590388,45.43112126433749],[9.125424965556743,45.43118115884526],[9.125348879682067,45.431240829256154],[9.125295306897513,45.43128346295844],[9.125055096130133,45.43147461127371],[9.125014950069017,45.43151325170691],[9.124957390658224,45.43155701473434],[9.124902973201724,45.43159949615353],[9.124845903346257,45.431645049803954],[9.12471295825381,45.431759526281674],[9.124615409821143,45.43184985922044],[9.12457350320468,45.43189041864006],[9.124525007632107,45.43194031032011],[9.124489668600503,45.43196770299839],[9.124417050351374,45.43202973629346],[9.124342743339769,45.432102941706894],[9.124216864212919,45.432210857145535],[9.12409222698507,45.43231398252709],[9.123996411975742,45.43239695917393],[9.123735228229302,45.43260673259602],[9.123595289823394,45.43273486993467],[9.123529992340728,45.43280743501275],[9.123465432076303,45.4328604759328],[9.123392034109088,45.432911843136786],[9.123329410317075,45.43296778023791],[9.123258121801936,45.43302517580146],[9.123057024289391,45.433184332955435],[9.122987775265825,45.43324511055971],[9.122914007913078,45.433321158786995],[9.122843421167243,45.433390137713594],[9.122766696691922,45.4334527234131],[9.122663986855473,45.43352971160226],[9.122567334418184,45.43361754850754],[9.122476380734263,45.433698151376504],[9.122370998533523,45.43378720359084],[9.122312226119448,45.433833693888026],[9.122260951178657,45.433876962769794],[9.122065147543353,45.43404527559205],[9.121932114883476,45.43415397919213],[9.121763122401443,45.43430020132219],[9.12169516504538,45.43435649422505],[9.12167076150256,45.434381426109645],[9.12165035882322,45.43440602970129],[9.121639130418735,45.434422297557525],[9.121620244858185,45.43443896058923],[9.12157856447054,45.434467655241896],[9.121548717962495,45.4344882003553],[9.121410594168882,45.43457859156606],[9.121354475111385,45.43460515018428],[9.121325125621526,45.43461904292205],[9.121257422472572,45.43465107741088],[9.121233533367313,45.43466561242132],[9.121223765279398,45.4346833008593],[9.121219506415127,45.434700533412645],[9.121225695327851,45.43472500977051],[9.121237393480262,45.434749030243374],[9.121253263930788,45.43476317212568],[9.121271559672183,45.43477552922635],[9.12129405297081,45.434789835111104],[9.12133301606292,45.43481155842922],[9.121365778366778,45.434827194580755],[9.121392290075038,45.4348373736986],[9.121452903338568,45.43486169333969],[9.12150748760852,45.434888512640306],[9.121509996050227,45.43488974312572],[9.121616853974107,45.434944905279906],[9.121630945569722,45.43495218118258],[9.121653521116377,45.43496303049845],[9.12168088671937,45.43497190348723],[9.121709232201288,45.43497865117608],[9.121738990263339,45.434988313702746],[9.1217636303311,45.43499606443488],[9.121790433709329,45.435005064010056],[9.121834206341527,45.435015863746216],[9.121897138412848,45.43503031551323],[9.121955834802979,45.43504292653645],[9.122003339055144,45.435052984146864],[9.122037702365578,45.435063874836594],[9.122056100943475,45.43507636671743],[9.122076092483454,45.43509241231953],[9.122086886500606,45.43511195113541],[9.12209067407889,45.435137258102465],[9.122088879739172,45.43517085200206],[9.122084606223888,45.435210893308806],[9.122079471014732,45.43523666884042],[9.122071445690906,45.435268046116235],[9.122066586233057,45.435285315343755],[9.122060237433299,45.435305601515985],[9.12204739606188,45.43533282542846],[9.12203606436568,45.43535460208474],[9.122021749776987,45.43538045940139],[9.122006791000787,45.43539807242403],[9.121992985614723,45.43542292107486],[9.121961009568395,45.43549977023982],[9.121942639450761,45.43553629812933],[9.121928832386514,45.435554440978144],[9.121906072779334,45.43558304359335],[9.121883317825445,45.43561382445731],[9.121869091764987,45.43563929461352],[9.121859279330737,45.43566013352361],[9.121844562341712,45.435683236918095],[9.121829783890158,45.43571345121925],[9.121809770006513,45.43574069173279],[9.121792773109643,45.43576782102197],[9.121774923661734,45.43579684143902],[9.121761334899368,45.43582144680097],[9.121743474609755,45.435845426626706],[9.121725625112184,45.435874447035715],[9.121708632187065,45.435903466531556],[9.121684825608826,45.43593880301159],[9.121664436614521,45.435976017079426],[9.121641479820807,45.436008202273875],[9.12160918815135,45.43606938981126],[9.121570908925925,45.43611672205118],[9.121544560011612,45.43615899202032],[9.121520759966941,45.436197478830984],[9.12149783266625,45.43624352560662],[9.121474035269868,45.43628328155452],[9.121452416031689,45.436319272741855],[9.12141370247828,45.43638485054912],[9.121387350627845,45.436425860333834],[9.121362921328375,45.43646912734279],[9.121321059733582,45.436539425010984],[9.121295678404532,45.43656799427223],[9.121275220368181,45.436597053373696],[9.121257307738373,45.43662068213398],[9.12123486689568,45.436649239267304],[9.121219333723658,45.4366735495839],[9.12120304384642,45.4367027392767],[9.121184353039007,45.43673319165642],[9.12117043689609,45.436760380596276],[9.121155779002114,45.436781485598445],[9.12113381173401,45.43681633395507],[9.121120231720106,45.436839292032076],[9.121104794663093,45.43686675260363],[9.121090327458678,45.4368933660475],[9.121060159334801,45.436949636593454],[9.121045635478106,45.43697368478752],[9.12103240869382,45.43699444622021],[9.12101932793512,45.43701174208683],[9.121005402186622,45.43703449349017],[9.120991213241815,45.43705373475427],[9.120978017812023,45.43707122876056],[9.120958446015173,45.43709635340116],[9.120946232365919,45.43711859892931],[9.120932132039469,45.43714945146625],[9.120908719130702,45.43720201539976],[9.120884248146657,45.43725605661923],[9.120855799867206,45.437309615972],[9.120824038874696,45.43735657202999],[9.120765958256943,45.43746014552494],[9.120731886740069,45.43752090262407],[9.120336103200867,45.437411929164064],[9.120302518007923,45.43747311767581],[9.120276752695107,45.43752003127878],[9.12022826598717,45.437608355620924],[9.1201560489377,45.437708505231484],[9.120052235672484,45.43784339601723],[9.119942926711534,45.4380036934623],[9.119790984035369,45.43818523289641],[9.119720588838856,45.43827696432197],[9.119655222172383,45.43836454996087],[9.119571926800024,45.438444557380365],[9.119532996210529,45.43848164638768],[9.119357915575184,45.43864197586607],[9.119322516946553,45.43867460559392],[9.119106283328415,45.4388739521425],[9.11907279928819,45.43890516663409],[9.118953776038738,45.439014194148946],[9.118930819550203,45.43903564051391],[9.118826577255252,45.43913304117635],[9.118824650387435,45.43913484338756],[9.118186407664624,45.43972752148826],[9.117653480171827,45.44023894328548],[9.11750659279177,45.440416900996226],[9.117418232881384,45.44052394219388],[9.117240168769008,45.44066955469403],[9.117079988805607,45.440758081919256],[9.11702879264196,45.44078871983261],[9.116965349660699,45.440826679088296],[9.116840738770073,45.440902307138785],[9.116756137940982,45.44101652682603],[9.116656650823778,45.441172904565995],[9.116469671075082,45.44148695273222],[9.115981949676062,45.44231758810132],[9.11593820606823,45.44239208912321],[9.115783987538277,45.44265471590786],[9.115754259901818,45.4427053498888],[9.115720861962997,45.442768274010966],[9.115657479592906,45.44288771002578],[9.11559200797194,45.44301108157245],[9.11518821749695,45.4437719244436],[9.115049429541088,45.443740056158],[9.115027513414628,45.44373391244316],[9.114914926266097,45.4437023507223],[9.114764612340233,45.443661456592274],[9.114742901335102,45.443655546644614],[9.114739319096993,45.443654578118554],[9.114724759803481,45.44365061423329],[9.114721177547807,45.44364963670563],[9.114698519827629,45.44364347566805],[9.114694937572853,45.44364249813955],[9.11467226705351,45.443636328108525],[9.114598869370251,45.44361635620443],[9.114391411354331,45.44356237719079],[9.114369585817522,45.4435567013139],[9.114365990859769,45.443555759791984],[9.114345598178048,45.4435504515233],[9.114342003239223,45.44354951900171],[9.114322813142962,45.443544524565624],[9.114319205418221,45.44354359205601],[9.11429882553192,45.44353828376629],[9.114295217789854,45.443537342254885],[9.114271230184887,45.44353110144969],[9.114015209178975,45.443464478693464],[9.113993383717517,45.443458802744495],[9.113989788772221,45.44345786121071],[9.113987626708514,45.44345730529649],[9.113984031763414,45.44345636376256],[9.113960044226962,45.443450122891846],[9.113951626206603,45.443447935007754],[9.113574169578516,45.44335498688409],[9.113459058663839,45.44332663960486],[9.113422359000086,45.44338963832628],[9.113413375210081,45.443405057026695],[9.113353311788849,45.44351167996246],[9.11317247655143,45.44383581570526],[9.112844673017333,45.44443294494146],[9.112789749985211,45.4445342428758],[9.112784934173071,45.444543122655475],[9.112781417722921,45.44454953486719],[9.112780041745355,45.4445520565167],[9.112779213601375,45.4445535695089],[9.112777837623609,45.44455609115835],[9.11277176028569,45.44456717743735],[9.11277037150248,45.444569690098255],[9.112762090037663,45.44458481101821],[9.112760714058375,45.444587332667425],[9.112754267216483,45.44459908538707],[9.11275197390453,45.44460328213492],[9.112746355222665,45.44461353086313],[9.112744061909542,45.44461772761082],[9.112737525891989,45.44462965143722],[9.112736137123608,45.4446321730987],[9.112729613889636,45.44464409691204],[9.112728225120556,45.444646618573486],[9.112719943633254,45.44466173949013],[9.11251466293139,45.4450363850791],[9.112506292142225,45.44505166808587],[9.112504903353223,45.445054189744404],[9.112504075194567,45.4450557027345],[9.112502699174533,45.445058215379376],[9.112497246062853,45.44506817589828],[9.112493640966004,45.4450750562423],[9.112382010453729,45.445288373725894],[9.112110453447727,45.44576869287749],[9.112172932961709,45.44578228631688],[9.112171974691096,45.44580208956827],[9.112169689721153,45.445849383329524],[9.113060998542021,45.445953009414794],[9.113055283855362,45.445979298123696],[9.113042002504901,45.446032975495925],[9.112810056786994,45.44600837922098],[9.112699435889343,45.44627325400428],[9.112471101484203,45.44621302733071],[9.112273012498154,45.44616079050103],[9.112210936442281,45.44630624528926],[9.11220710577559,45.446315511122144],[9.112153438375397,45.446445448829714],[9.112152035913462,45.44644754744731],[9.112131148728361,45.446496578611246],[9.111900114418408,45.4470388927265],[9.111813763429312,45.44724159965389],[9.111485591776255,45.44799415508943],[9.11124592668078,45.4479429290568],[9.1110145664531,45.44869210362203],[9.110974518437388,45.4488247368391],[9.11092664937496,45.44898627997152],[9.110800504266276,45.449402970444346],[9.110693925723258,45.44974886662713],[9.110616151571122,45.44999322110129],[9.110504818341601,45.450354702469646],[9.110411879585422,45.450587937112346],[9.11032710997993,45.45058337423181],[9.110197361188781,45.4505773603844],[9.11013546491064,45.45057684383191],[9.109696208745495,45.4505878414471],[9.1095615557496,45.45093631067141],[9.109508176727005,45.450949359207634],[9.109427545007197,45.45094879716921],[9.109405753282696,45.45098178880078],[9.10933611361918,45.45097816484777],[9.109160405183273,45.45090698111178],[9.1091493606518,45.45090937690997],[9.109126415096515,45.45091434033867],[9.109075014519139,45.45092547856703],[9.108875530343793,45.4508528858574],[9.108791226457829,45.45081788886679],[9.108697426016906,45.450785538128834],[9.108613112799109,45.45075892098679],[9.108469524929736,45.45071845329835],[9.108374502818709,45.45068236801806],[9.108251257935942,45.4506132124874],[9.108115598210592,45.45055196245337],[9.1079778748607,45.45050824823593],[9.10789598453795,45.450497803156104],[9.107744732547552,45.45049505614581],[9.107561393043257,45.4504981177309],[9.107360473998819,45.45049671297437],[9.107273075548665,45.45049487760673],[9.107147265145635,45.45047482397987],[9.10698496361393,45.45044462410986],[9.106680799679898,45.45038582483845],[9.106673685018073,45.450383482189444],[9.106648975622509,45.45037533224162],[9.106635680418995,45.450370952105416],[9.10665344208813,45.45034990013463],[9.10668755555562,45.4503061323039],[9.106778894815616,45.45015964523757],[9.10683335833475,45.450063787353386],[9.106872093750766,45.449982309779436],[9.106882186768631,45.449936449043044],[9.106883049427918,45.44989880586857],[9.106873730293607,45.44986665382717],[9.106837478884863,45.44979345513024],[9.106791030352534,45.44971753860804],[9.106761285860257,45.449656656251676],[9.10670922320946,45.449546522950065],[9.106649747513712,45.44943160796608],[9.106593970352977,45.44931805766733],[9.10651407770959,45.44917852573594],[9.106450955889983,45.44909645884794],[9.106411088119614,45.44907186001424],[9.106349950295721,45.44905891026117],[9.106265654854989,45.44903982523769],[9.106173920736117,45.44900911769269],[9.106078476937373,45.448970879632235],[9.105881110116787,45.44889647049803],[9.105725439789937,45.44883980862677],[9.105642981245712,45.44881798513001],[9.105542962371329,45.448808500181755],[9.105474415777861,45.448792820464796],[9.105189678009003,45.44868772494198],[9.105123336924938,45.44866134074474],[9.10507732076867,45.448644559992545],[9.105178463095056,45.44851517616434],[9.105255927152621,45.44842306933003],[9.105359912799265,45.4482965090533],[9.10540978338726,45.44823360887461],[9.10547122394427,45.448100354836875],[9.105436127010796,45.44808946886421],[9.105386037533922,45.44807569833252],[9.105228547461232,45.44803614844155],[9.105053453036593,45.447984985119504],[9.104744924590472,45.44788808323265],[9.104583072521862,45.447833360670245],[9.104433755687188,45.44802360798084],[9.104179288644072,45.44795841098367],[9.103880977385606,45.44787450398854],[9.10370217374598,45.44782196479563],[9.103538618555245,45.447772300882995],[9.103456678084486,45.44773872896779],[9.103374716396496,45.44770749728535],[9.103118406891882,45.44759802342552],[9.102978838502406,45.44753916505459],[9.103044274274238,45.44745552249717],[9.103081954329262,45.44741054637348],[9.103134690331498,45.447382433654965],[9.10323359397858,45.44728653743755],[9.103299238733095,45.44723378614279],[9.103357455731567,45.44716803499308],[9.103419881347529,45.447131281395855],[9.10348234366983,45.447107696266386],[9.103538582478711,45.447093342801296],[9.103473140876266,45.44698369711795],[9.102932625478784,45.44722247766299],[9.102232046028638,45.447192807236625],[9.102102753101297,45.44724349939531],[9.102050830610912,45.4472762194508],[9.101954737520588,45.447343227777914],[9.101870791396511,45.447395427502286],[9.10173785827634,45.44744180197843],[9.101509108281443,45.4475314842432],[9.101376925366424,45.447826502594594],[9.101354897192136,45.44787943023901],[9.101319585958478,45.44791992117317],[9.101202517807907,45.44805078283296],[9.100853180418612,45.448445219647056],[9.100788408986418,45.44847334189171],[9.10063527807114,45.4485111368364],[9.100581078395344,45.44852279576581],[9.10052368366775,45.44852831875777],[9.100271845428734,45.448545650358],[9.100250043149352,45.44854619149136],[9.100230658367781,45.4485470725462],[9.100294307535126,45.44846256003989],[9.100214606306446,45.44844373655992],[9.100302988656058,45.44830951663639],[9.100399408506867,45.44817214823499],[9.100453879477893,45.44809715778158],[9.100504077195321,45.44802102791548],[9.100627282040858,45.44784521034855],[9.100723701416616,45.44770846273497],[9.10087024269558,45.447496899222436],[9.100994340391399,45.447321080457556],[9.101077359143776,45.44720008717599],[9.101123032019196,45.447125959249355],[9.101225660942827,45.44695898019119],[9.101172158546522,45.446951997614754],[9.101168397772053,45.4469512898517],[9.101044268175798,45.446935953557926],[9.100883816487386,45.44692455556325],[9.10073287668724,45.446919215690706],[9.100501368810846,45.446909832817994],[9.100224499678028,45.4469052867122],[9.100057832657116,45.446900643779465],[9.099721700636207,45.446892718777434],[9.099523549049715,45.44689425917288],[9.09931428876531,45.446897861090235],[9.099080012318218,45.44689190713569],[9.099052389778114,45.44689095889765],[9.09890204110291,45.44687979241575],[9.09885431572086,45.44687827640662],[9.098337347901124,45.44728615361409],[9.098228619324876,45.44738448429556],[9.09817872628945,45.44746077492805],[9.09809757661019,45.447527560182756],[9.098004960079544,45.44759656044131],[9.097949805086063,45.44763985762643],[9.097870471325926,45.44770699220677],[9.097747356665476,45.447828566411225],[9.097474670237188,45.44814008187217],[9.097304399852312,45.448325630121765],[9.097126569558862,45.44852543317525],[9.096794351314482,45.448898474551],[9.096715238466677,45.44886439136009],[9.096321064538232,45.448691030069895],[9.09609342566912,45.44858387464451],[9.09600648613575,45.448639735983114],[9.095483028450221,45.44897431006072],[9.095656235335403,45.44906976576568],[9.095723344825233,45.44911432792984],[9.095600816964383,45.449224404964816],[9.095581694942037,45.4493284009931],[9.095552863716907,45.44942299901743],[9.09548480151179,45.44952688279327],[9.09532707727931,45.449780366488255],[9.095272688011411,45.44990144875777],[9.095296099758027,45.44998330280095],[9.095330719343853,45.45003786535154],[9.095368535021898,45.450091822162086],[9.095281176861045,45.45017437137894],[9.095227456612273,45.45022187852604],[9.095030296348002,45.45041783285762],[9.094858791683903,45.45059300920787],[9.094774629062437,45.4506755463846],[9.094647192964663,45.45080559073862],[9.094512556493614,45.45094335477831],[9.094431583986871,45.451014619761],[9.094334600288676,45.45110903054285],[9.094332047037755,45.45111169695266],[9.094289714166976,45.4511559449032],[9.094201956297244,45.4512615902837],[9.094110140102442,45.45134935385492],[9.094035722662536,45.451418002867925],[9.093918969188225,45.451537173371],[9.093842503444407,45.45156612033669],[9.093653977913046,45.451637481754474],[9.093628796143216,45.45172209411757],[9.093592533875576,45.451795590233],[9.093538844325165,45.45186352891214],[9.09342677151234,45.45201500882272],[9.093259821359297,45.452236156329604],[9.093162297294768,45.45237783100173],[9.092983473479016,45.45229996416074],[9.092975282891205,45.4522963973904],[9.092959878105965,45.45229979427432],[9.092880591398915,45.452317293555446],[9.092475745182542,45.45240664113431],[9.092347664257897,45.45243677185039],[9.092022341442958,45.45251331726231],[9.091463468842854,45.452644810637665],[9.091440943678544,45.45265015722157],[9.091118304188415,45.452726787926],[9.090545975456848,45.452859466637236],[9.090541527458303,45.452861036330916],[9.090515991714636,45.45287124567136],[9.090509586212951,45.452872303849915],[9.090022115224823,45.45295276988739],[9.089637010108492,45.45301236145839],[9.089102298220512,45.45309509274901],[9.089088822051398,45.45309718246087],[9.088793819891263,45.45314513480681],[9.088733062817976,45.4531633009344],[9.08867344032902,45.453187361833194],[9.088604550092343,45.45321413917573],[9.088063676717205,45.453350345537935],[9.087884225822016,45.453401906156095],[9.087856407972458,45.45340891228009],[9.08761049370715,45.45344459153315],[9.087525526697108,45.4534130987767],[9.087375841052111,45.45331897205198],[9.087038435870252,45.45310481488934],[9.08700124240396,45.45307748895457],[9.08687098235189,45.4529817986437],[9.086842943334371,45.45296119849924],[9.086698371668371,45.45292318849145],[9.086391314834453,45.452933240367926],[9.086272921899363,45.45293711893877],[9.086235673756153,45.45292400543744],[9.086156267144949,45.452898124127024],[9.086095484362323,45.452857521080645],[9.086064996875903,45.45281597716237],[9.086047324660726,45.45279189463952],[9.085995062267711,45.452710951483276],[9.085922007064822,45.45267330088602],[9.085580770112667,45.452515569789135],[9.085284330066504,45.452372377047894],[9.085194988853603,45.4523301025578],[9.08484013226959,45.452161245068105],[9.084386808594656,45.45194275521658],[9.084196304903406,45.451853172851806],[9.083932755886538,45.451730492812224],[9.083717288253709,45.45162207072922],[9.083645482656886,45.45158863024439],[9.083618339620152,45.45157598557123],[9.08359857654708,45.451564010590516],[9.0834905581923,45.45149856168914],[9.083417571693676,45.45151421360492],[9.083327821917708,45.45141820172207],[9.083302371320247,45.451390983055994],[9.0832095185879,45.45139392179287],[9.08301256365397,45.45139406451802],[9.082854381429263,45.451384124735746],[9.082762522241929,45.451375577061285],[9.082703319543251,45.45136341435338],[9.0826542959368,45.45133329620067],[9.082570516845866,45.45126155522898],[9.082501077874088,45.451227860289634],[9.082489876749564,45.45124653650892],[9.082446296907358,45.45123106804855],[9.082416253416303,45.45121985633967],[9.082247778370801,45.451148950048626],[9.0819108136692,45.45100499448066],[9.081596748140194,45.45086544113911],[9.081583245516647,45.450857835861434],[9.08131265695945,45.451018696627614],[9.081142345958831,45.45112045701429],[9.080743673484374,45.4513586629116],[9.080376507542463,45.451578078161624],[9.079958249897297,45.45128045397454],[9.079848159370789,45.45120220358706],[9.079752547826272,45.45113463626569],[9.079645256339768,45.45105482655415],[9.079565172009952,45.45099756348775],[9.079454980124915,45.4510655527354],[9.07942085091049,45.451085999736506],[9.079399268876054,45.451098571131816],[9.079288973688628,45.451156965177915],[9.0792246519381,45.45120566925641],[9.079162263122017,45.451255803130216],[9.07904912711186,45.4513592761247],[9.07901315580266,45.45139795138337],[9.078939885473986,45.451477057982814],[9.078865938777364,45.451566552201925],[9.078855141458448,45.451582230438994],[9.078838984415029,45.451606166314285],[9.078792020113735,45.45167643371273],[9.07872778101112,45.45177629937248],[9.078617640221447,45.45194775474222],[9.07852632333253,45.45208197781071],[9.078473181742257,45.452161799405296],[9.07846205815975,45.452172896296744],[9.07843788484264,45.45219867380776],[9.078414067908747,45.45222323592933],[9.078321583609176,45.45227197673895],[9.078287719897489,45.452291028054525],[9.078267874834907,45.45230245491576],[9.078240068711759,45.4523184507312],[9.078238266947963,45.45231949608078],[9.077893610924571,45.452393215114434],[9.077847448281412,45.45235917750882],[9.077825751928597,45.452335573497905],[9.07775740630475,45.45224930885955],[9.077689831266845,45.452174636998315],[9.077680072465782,45.452164499433025],[9.077663576716073,45.45214694956978],[9.077650450077552,45.45213356490591],[9.077646351828562,45.45212925618094],[9.077642483713833,45.45212490229491],[9.077638371902777,45.45212002651322],[9.077634387867931,45.45211506963555],[9.077630531670746,45.45211007666708],[9.07762686725426,45.45210504756453],[9.077623369016633,45.45209996434317],[9.077620716106496,45.4520958166581],[9.077618203797718,45.452091614871556],[9.077615883293857,45.4520873949531],[9.077613741744814,45.45208311190626],[9.077607524003573,45.452071936819166],[9.077603416273726,45.45206067929505],[9.077600215159652,45.45204841304088],[9.077597920439727,45.45203497603815],[9.077596089772628,45.452024221031834],[9.077593570808032,45.45201514068468],[9.077590168657277,45.452005493869194],[9.077588641924118,45.45200191248725],[9.077585844254726,45.45199476755234],[9.077584611880825,45.451991347989996],[9.077583597023647,45.451988009289934],[9.077582825235739,45.451984733432724],[9.077582102906588,45.45198021539836],[9.077581572234287,45.451975571219755],[9.07758123326795,45.45197083690111],[9.077581009263753,45.45196600349329],[9.077580836327904,45.451961107043594],[9.077580740774792,45.4519566875968],[9.077580760343476,45.45195228607423],[9.077581159463,45.45193550786275],[9.077440027259593,45.45199375894542],[9.077410891892937,45.45195404801096],[9.07737618220883,45.45191541195246],[9.077354896351308,45.45189246464945],[9.077327412994828,45.45187314893967],[9.077287470295056,45.45184200524749],[9.077256051712439,45.45181593238895],[9.077209891865971,45.45177391059615],[9.077191876410865,45.451757738845785],[9.077170933370162,45.451742289145166],[9.077152939571425,45.451732634128334],[9.077131326294513,45.45171331442307],[9.077102844953036,45.45168409818336],[9.077052416272005,45.45163434729967],[9.07702589262754,45.451605849808864],[9.077011813184088,45.451587497134746],[9.076971544272196,45.451551276961695],[9.076933236630566,45.45151843985096],[9.076912620037248,45.451498399351806],[9.076881835019849,45.451467726431424],[9.07684648162163,45.45143488731135],[9.076811133811525,45.45140615265181],[9.076754164259953,45.45136107755407],[9.076732720536787,45.45134399891826],[9.076710595965762,45.451324643469825],[9.076693615955111,45.45130794888676],[9.076679542680427,45.45129403368061],[9.076672690269714,45.45128618035004],[9.07666805045303,45.45127846955711],[9.076665557976023,45.45126992923319],[9.07666154520716,45.45126252405647],[9.076659343053452,45.451251157211],[9.076662246308285,45.45124188419703],[9.076667491870063,45.45123411279197],[9.076675651744033,45.451225268314865],[9.076685639994158,45.45121615258383],[9.076694456079823,45.45121027801087],[9.076698263358177,45.45120755715078],[9.07670167398895,45.451204683537995],[9.076709911980855,45.45119687412613],[9.076718073009202,45.45118889374529],[9.076725863062144,45.45118083260258],[9.076733179783995,45.451172654762324],[9.076739869616839,45.45116428831899],[9.076747616995446,45.45115304083418],[9.076756667267878,45.45114066734667],[9.076771522078687,45.45111779475846],[9.076789285928665,45.4510899606465],[9.0768090784544,45.45105867777402],[9.076858625290734,45.450986438224746],[9.076869039411044,45.45097076943258],[9.076889394039233,45.450939117126126],[9.076945771270333,45.45084918590953],[9.076954358134037,45.450834643465114],[9.076962459219871,45.450820236361515],[9.07698573848536,45.450776349657076],[9.076993813588068,45.45076165453514],[9.077002349175379,45.450747040112965],[9.077011294496238,45.450732803458884],[9.077020572540158,45.45071873760053],[9.077058504206283,45.4506632747017],[9.077098040197765,45.45060270711979],[9.077159656305257,45.45051008996047],[9.077202389227024,45.45044958319798],[9.077212548122468,45.45043445460736],[9.07722082988168,45.4504213435132],[9.077228791735614,45.450408088617046],[9.077244472015657,45.450381254949285],[9.077252548695483,45.45036781095213],[9.07728409323672,45.45031782491055],[9.077304509111142,45.45028453429517],[9.07731682137998,45.45026368858075],[9.077322740923279,45.45025326138194],[9.077329284636521,45.45024103355325],[9.077341872764077,45.45021617318421],[9.077348454416972,45.45020363929324],[9.07735561160861,45.45019115902007],[9.077361724025756,45.45018151477991],[9.077368207579756,45.45017207731316],[9.07737493430297,45.45016278369873],[9.07739567733488,45.45013504648994],[9.077417558174117,45.4501070744823],[9.077479126236671,45.4500268966187],[9.077489516420634,45.45001268595271],[9.07749670206659,45.45000235690072],[9.077521025333432,45.449965004134114],[9.077545322255103,45.44992711131716],[9.077550119412503,45.449918917123725],[9.077555629718484,45.44990853519406],[9.07756084571155,45.44989801844745],[9.077566940753423,45.44988506182306],[9.077571760187986,45.44987445533355],[9.077573839318001,45.44987054747419],[9.077575777704833,45.449866585703745],[9.077577588087467,45.44986253400933],[9.077579423001726,45.44985771720946],[9.077580951074895,45.44985295462337],[9.077582338687531,45.44984834515001],[9.077583739358362,45.44984393369077],[9.077585332034799,45.44983965711733],[9.077586963837112,45.44983593858216],[9.07758876182307,45.449832174929405],[9.077590674877106,45.449828393196675],[9.077592690235669,45.44982461139474],[9.077597040212002,45.44981672353713],[9.077599336576013,45.44981269851678],[9.077601684165815,45.44980872746799],[9.077604108594459,45.44980483737655],[9.077606648238511,45.44980103721765],[9.077610707292969,45.44979549882905],[9.077619618039757,45.4497842594963],[9.077624124306023,45.44977845077333],[9.077628425666921,45.44977242616368],[9.077634972111062,45.44976228655705],[9.077653230710615,45.449732156702815],[9.077659521851519,45.44972235930719],[9.077668276980003,45.44970955389404],[9.07770470398102,45.44965821426812],[9.077714594703442,45.44964356286781],[9.077733890236257,45.44961429639795],[9.077743666097271,45.449599825093706],[9.077753749149574,45.44958556060448],[9.077758063898116,45.44957999503403],[9.07776273683412,45.449574519231],[9.077777803837021,45.44955778507475],[9.07780220334646,45.449529694269394],[9.077816446420274,45.44950896420246],[9.07783530199564,45.44947599858345],[9.077852511165247,45.4494360852713],[9.077870540321216,45.44939732353351],[9.077889393447252,45.44936262070477],[9.077900034164346,45.44933543032173],[9.077900008799636,45.44931692418885],[9.077889322124953,45.44931057670671],[9.077867951027283,45.44930885401273],[9.077844935829019,45.44931118290094],[9.077814533919442,45.44931698219772],[9.07778330487585,45.44931642730889],[9.077736458541636,45.44931356972626],[9.077682206383608,45.449309556004444],[9.0776263142246,45.44930323909884],[9.077572875772937,45.44929575037084],[9.077530128882136,45.449288839460934],[9.077504644983096,45.44928134080686],[9.077479956487633,45.44926632573667],[9.077451168753598,45.44924610182303],[9.07741660756423,45.449212011186404],[9.077383842587574,45.44918222182755],[9.077381178085727,45.44917883923146],[9.077374751206234,45.449173460940706],[9.077368707868445,45.44916801038254],[9.077364341174265,45.449163602814764],[9.077360217120999,45.449158952054944],[9.077351865928959,45.449149074537466],[9.077347344851297,45.44914398299361],[9.077345321538912,45.449141914117114],[9.077343324023026,45.44914000724201],[9.07733961077957,45.44913652634046],[9.077337984494067,45.44913489824747],[9.077336844701572,45.449133674873565],[9.07733570487239,45.4491324244965],[9.077334603370339,45.449131147090476],[9.077333489006918,45.449129815686845],[9.077326689572887,45.449123177497995],[9.077321325095623,45.44911852757283],[9.077316114062237,45.44911386854292],[9.077311018035449,45.44910914642795],[9.077306011439353,45.44910436124522],[9.077301158287082,45.44909956695777],[9.077297482898546,45.4490957079854],[9.07729393526743,45.44909175891634],[9.077286801190056,45.44908352776536],[9.07728311257502,45.449079344763796],[9.0772561408459,45.44904967747955],[9.077251709850772,45.449044990918225],[9.077247113310683,45.44904081752784],[9.077241683085584,45.449034826487235],[9.077236457456097,45.449028826307575],[9.077233921363161,45.449025821665515],[9.07722986089111,45.44902089182565],[9.077212545766878,45.449001866267565],[9.077203183547555,45.44899137734819],[9.077189673184602,45.448977308802654],[9.07718175889133,45.4489689431542],[9.07716876053172,45.448955225302484],[9.077163229193014,45.44895009842653],[9.07715822251353,45.448945232227764],[9.07714318905709,45.4489301655848],[9.07713792634224,45.44892509253326],[9.077131012243363,45.448918733442035],[9.077117107823637,45.44890638435253],[9.07711039867753,45.44890027715164],[9.077104047532686,45.44889412470442],[9.077098553556102,45.44888825071333],[9.077093276657301,45.44888214254884],[9.077087986727594,45.448875854371956],[9.07708249207089,45.448869476321924],[9.07707657541534,45.448863098555115],[9.077070749289293,45.44885746781401],[9.077065676245766,45.44885080144646],[9.077056315518576,45.44884137463724],[9.07704731032935,45.44883008437187],[9.077040469185304,45.44882092590059],[9.077033091855682,45.44881243386639],[9.07702552234433,45.44880367192932],[9.077018862395912,45.448796106520334],[9.07701184402322,45.448788271320154],[9.077005542138593,45.448780705669996],[9.076999240609267,45.44877340104964],[9.07699387285132,45.44876628482423],[9.076987457368194,45.44875981737694],[9.076979403188032,45.4487519828698],[9.076954243159834,45.44872844400974],[9.076945932866206,45.44872033964058],[9.076938313532944,45.44871254084302],[9.076916517094972,45.44868926074908],[9.076891597350068,45.44866369647838],[9.076882774575404,45.448654863363174],[9.07687378576863,45.44864618337636],[9.076864567112318,45.448637746571016],[9.076854530049918,45.448629319314286],[9.076843930557356,45.44862106345325],[9.076802924921376,45.448586877931966],[9.076794934061622,45.44857854831161],[9.076750865614347,45.44853001715257],[9.076738788169715,45.44851628963374],[9.076718846302311,45.448493143276515],[9.076712084287022,45.448485694931115],[9.076704836191581,45.44847813889769],[9.076681915294575,45.44845536356847],[9.076674334311765,45.44844750171996],[9.076668571199805,45.44844112382889],[9.076652458736012,45.44842227740127],[9.07664704132395,45.448416214314804],[9.07663981855466,45.44840846023723],[9.076609802088505,45.448377381666326],[9.076603271482163,45.44837082426347],[9.076583116816503,45.44835100841156],[9.076576457999124,45.44834419906338],[9.076571745275519,45.44833913461916],[9.076567198781536,45.448334061062795],[9.07655841289621,45.44832405776124],[9.076540752056914,45.44830437525327],[9.076536321240027,45.44829973366871],[9.076531737249566,45.44829529921025],[9.07652712827811,45.44829130581959],[9.076522135747478,45.44828736669084],[9.07651137027212,45.44827921892169],[9.076505942402932,45.44827486603437],[9.076501819999287,45.44827134037267],[9.07649540341724,45.44826397279323],[9.076476171809366,45.448245839502526],[9.076469964656775,45.44824205419888],[9.076460140281757,45.44823954045334],[9.07643815454931,45.4482368727911],[9.076413101467653,45.44823547631534],[9.076412992837465,45.44823076883982],[9.076412019679871,45.448191758948056],[9.0764103409969,45.44815111133519],[9.076409375198951,45.44811757407491],[9.07640750016842,45.4480830653068],[9.076406698835697,45.44805771889002],[9.076406535691369,45.448040995051926],[9.076406613989608,45.44803265102848],[9.076406734679823,45.44802730432569],[9.076406932108256,45.44802196657287],[9.076407231850277,45.448016637752964],[9.07640767229311,45.448011335842466],[9.076408291751385,45.44800602481168],[9.07640916543877,45.44799957947956],[9.07641014145163,45.447993152081374],[9.076411270976973,45.44798676958619],[9.076412656316187,45.447980431925835],[9.076414374171078,45.4479741210471],[9.076416628212671,45.4479671437337],[9.07641915086753,45.44796022024762],[9.076421942135571,45.447953350588826],[9.076425027604156,45.44794654374133],[9.076428432860622,45.44793980868906],[9.076431430556777,45.44793429805075],[9.076434632976106,45.44792887728645],[9.076438116929303,45.44792360935228],[9.07644201034141,45.44791853016718],[9.076446466676458,45.447913648629935],[9.076458280061658,45.44790233544161],[9.07647070764948,45.447891318877254],[9.076519935462839,45.44784980922558],[9.076536030040636,45.44783653094512],[9.076541918335293,45.447831468427836],[9.07655345194406,45.44782133455344],[9.076559302090873,45.447816434079606],[9.07656543381942,45.44781172243953],[9.07657161725527,45.447807424812844],[9.07657806942467,45.447803271023254],[9.076584700753493,45.44779921612514],[9.076598180895171,45.447791178191046],[9.076604122525666,45.44778774482469],[9.07661638964409,45.44778104885449],[9.07662253577753,45.447777543342184],[9.076628451429416,45.44777381295723],[9.076637036929187,45.447768028549646],[9.076645494453796,45.447762172218525],[9.076653785531091,45.447756162980134],[9.07666180777507,45.4477499378956],[9.076669509938071,45.447743424990904],[9.076672843089655,45.44774014638182],[9.076675728455369,45.44773670605308],[9.076678204446724,45.447733139983164],[9.07668030947522,45.44772948415068],[9.076682107442616,45.44772571150975],[9.07668378932545,45.447721200860386],[9.076685010817204,45.44771666351563],[9.076685887067269,45.447712144403695],[9.076688650991557,45.447694518503596],[9.076689169284897,45.44769007163928],[9.076689431753,45.44768557093969],[9.07668932334382,45.44768104348481],[9.076688792154096,45.44767593124439],[9.07668797972202,45.44767088219933],[9.076686885974802,45.44766584234331],[9.07668549819776,45.44766086569119],[9.076683841881193,45.44765588921848],[9.076681596557869,45.44765033707238],[9.076678993327729,45.44764489317799],[9.076676211193044,45.44763953941357],[9.076663250658038,45.44761562328796],[9.076659533247213,45.44760894699395],[9.076655713560777,45.44760228877028],[9.076651740448378,45.44759564865104],[9.076647588601897,45.44758922467624],[9.076639310693244,45.44757652972675],[9.076625776870326,45.44755418916308],[9.076623596222653,45.44754917703541],[9.076621799166464,45.447544137648386],[9.076620487978047,45.447539052931624],[9.076619944942518,45.44753463377942],[9.076619951724487,45.447530178255874],[9.076620303637618,45.44752562349024],[9.076620796092726,45.44752097862029],[9.076621173386764,45.44751627982094],[9.0766217485361,45.44750657630642],[9.076622515559485,45.44749691766897],[9.07662299502034,45.447492119789814],[9.07662346287044,45.447488195020135],[9.076624033008908,45.44748426118112],[9.076626593699338,45.44746764353499],[9.076628684500367,45.44745343848372],[9.07662948378284,45.447448739402425],[9.076631616998,45.44743754067296],[9.076632760354881,45.44743195925906],[9.076634006036262,45.44742639577887],[9.076638088694786,45.447409966137755],[9.07663959041744,45.447404618511634],[9.07664133520036,45.447399342731494],[9.076643450906834,45.44739412971089],[9.076646817025434,45.44738686361574],[9.076650375041323,45.447379660399605],[9.076654252902701,45.44737257398329],[9.076658565770202,45.44736565829613],[9.076663467130604,45.447358940238615],[9.076669901877684,45.44735139305971],[9.076676899614684,45.4473440975335],[9.076684345132202,45.447336963726485],[9.076692072119346,45.44732993774333],[9.07669995263998,45.44732297466444],[9.076707373657788,45.44731664196558],[9.07671505066749,45.447310489116056],[9.076722932385323,45.44730441713856],[9.076738964511936,45.44729239001578],[9.076748775621803,45.44728519161485],[9.076778733565158,45.44726384808512],[9.0767885958151,45.44725664964647],[9.07679493233175,45.44725213587965],[9.076801383995843,45.44724766704062],[9.076807809828486,45.447243009196455],[9.076813915522175,45.44723801852752],[9.07681941954483,45.447232542204425],[9.0768235936774,45.447227075772645],[9.076826859689136,45.44722145693099],[9.076829550201495,45.44721579346941],[9.076831985036174,45.44721018418526],[9.076834483905229,45.44720464686659],[9.076838258409508,45.44719680442489],[9.076840017609793,45.44719275277457],[9.076841533725597,45.44718861127648],[9.07684266605795,45.44718435302186],[9.07684357918959,45.4471787537577],[9.07684403201975,45.447173190806005],[9.076844400848318,45.4471622452832],[9.07684464929736,45.44715684448727],[9.076845629966273,45.44714444938565],[9.076845892857522,45.447140272722756],[9.076846015061982,45.447136078151935],[9.076846088086297,45.44712388168133],[9.076845990311583,45.447117770034374],[9.076845726275245,45.4471116404967],[9.076845283214189,45.44710551107893],[9.07684475233222,45.44710063286582],[9.076844055237423,45.44709577276609],[9.07684317913018,45.44709092178739],[9.076842149597677,45.44708608891345],[9.076840915465686,45.447081256176574],[9.076839476831614,45.447076495585016],[9.07683780810838,45.44707179815492],[9.076836024383317,45.447067163809145],[9.076830866457525,45.44705432276601],[9.076827736642787,45.44704716902769],[9.076826286889853,45.447043641587165],[9.076825041724437,45.44704010500857],[9.07682350025776,45.447034948439516],[9.0768220738299,45.44702975578913],[9.076820788027938,45.44702453604145],[9.076819591714132,45.44701929823176],[9.076817622192504,45.44700965042551],[9.07681682345832,45.44700527645032],[9.076816139847883,45.44700092940116],[9.076815660849064,45.44699659121604],[9.076815450386945,45.446992252851125],[9.07681548156074,45.44698693321003],[9.076815717333817,45.44698161343193],[9.076816196092818,45.44697631149322],[9.076816879450986,45.44697100941759],[9.076817793043986,45.44696575219294],[9.076818378079857,45.44696339352624],[9.07681920613807,45.4469610797021],[9.076820200469573,45.446958792769756],[9.076821399436687,45.44695653270351],[9.076822764640555,45.4469542725259],[9.076824410851911,45.44695177813288],[9.076826146660414,45.44694934668716],[9.076828010513573,45.44694704117037],[9.076830066348606,45.446944861539656],[9.076832378102747,45.44694280775223],[9.076835648392056,45.44694036627765],[9.076839161849403,45.44693807765797],[9.076842905602158,45.44693587889445],[9.07684679012604,45.44693376104594],[9.076857421807917,45.44692822727971],[9.076864053939262,45.44692485644404],[9.076870737389998,45.44692161158828],[9.076877548945669,45.446918537666264],[9.076884527078215,45.446915715661554],[9.076893793577451,45.44691246007232],[9.07690330340228,45.446909474350726],[9.076922770938157,45.446903745633236],[9.076932485298093,45.4469007147668],[9.07698376616527,45.44688419044501],[9.077000740013018,45.446878373376975],[9.077017483171293,45.44687217841716],[9.077038315424492,45.446863856461476],[9.077058840334027,45.4468552106706],[9.077079147558132,45.446846348997084],[9.077119441923161,45.44682834682182],[9.077138138328612,45.44681979225625],[9.077193433872397,45.446793526004825],[9.077212002466625,45.446785034520445],[9.077230852879696,45.44677691188642],[9.077243122395833,45.446772196077085],[9.077255724994194,45.44676793009462],[9.077281570204066,45.446759874750065],[9.077294505367218,45.4467556805477],[9.077323456190696,45.44674636295425],[9.077386306930688,45.44671862434559],[9.077396326587262,45.44671445910141],[9.077407559770048,45.44670935692839],[9.077418472849176,45.44670394893453],[9.077429065824552,45.446698235119996],[9.077439351483495,45.446692215476205],[9.077452050890626,45.44668394393947],[9.077464174236058,45.44667521373672],[9.077488190067957,45.44665725842552],[9.077500735385653,45.44664852793389],[9.077514035253003,45.446639868939386],[9.077527514348258,45.4466313628401],[9.077541134309318,45.446623009661835],[9.077554882275173,45.44661475540691],[9.077568758245837,45.446606600075356],[9.07757977234793,45.44660028289164],[9.077590940067989,45.446594091617705],[9.077602210244294,45.446588017286935],[9.077624955482474,45.446576084508735],[9.077635267693466,45.44657081191639],[9.077645656737364,45.44656562028054],[9.077666626937306,45.44655546190219],[9.077677208044191,45.44655045915548],[9.07768418556248,45.44654725005701],[9.077691252665293,45.44654409490372],[9.07771260786027,45.4465349533749],[9.077721221971343,45.446531608149726],[9.077729938774098,45.44652855088796],[9.077738399816552,45.446525484797775],[9.077746374544747,45.44652213100295],[9.077753709054896,45.44651815656904],[9.077759138581321,45.44651442645422],[9.07776397949491,45.4465104087045],[9.077768167846672,45.44650609436231],[9.077771639687631,45.44650147446996],[9.077774382242882,45.44649655803733],[9.077775923033556,45.446491822440294],[9.077776415187877,45.4464870335479],[9.077776178254206,45.44648209213193],[9.077774847093272,45.44647181383502],[9.077774085706471,45.44646674675988],[9.077772991959852,45.446461760919505],[9.077771642442055,45.44645675725043],[9.077770126664502,45.44645173569192],[9.077768546950539,45.44644671417673],[9.077766813665717,45.4464416027551],[9.077764901407813,45.446436527459],[9.07775878084389,45.44642117581582],[9.077750733270635,45.446399308717794],[9.07774793578482,45.44639210977341],[9.077744869864464,45.44638498301928],[9.077742099936733,45.44637923322512],[9.077739074337064,45.44637353761052],[9.077729409251404,45.44635639715837],[9.077726833007173,45.44635201539232],[9.077721347963662,45.4463431890779],[9.077718822525306,45.44633855524781],[9.077716769959379,45.44633373207528],[9.07771506165432,45.44632817958436],[9.077713826516858,45.44632265377608],[9.077712923861887,45.44631713674357],[9.077712225816269,45.44631162857349],[9.077711642856507,45.44630612032548],[9.077711394889366,45.44630245706587],[9.077711364281763,45.44629877565694],[9.077711499970603,45.44629513914061],[9.077712014429963,45.44628795595376],[9.077712480373444,45.446282699024636],[9.077714338730553,45.44626706294088],[9.07771485595819,45.4462619049885],[9.077715257029467,45.44625596402342],[9.077715816053294,45.44624396524422],[9.077716204189377,45.446237916275294],[9.077716809684631,45.44623184915695],[9.077717607641285,45.44622625896392],[9.07772089287861,45.44620675146152],[9.077722731539302,45.44619541789302],[9.077724085783709,45.44616647859742],[9.077719974673455,45.44607763200996],[9.077720425833514,45.4460709169203],[9.077720698267353,45.446064417977],[9.077721635441065,45.44605777456652],[9.077723308280936,45.446037395053835],[9.077723372216992,45.44602804291859],[9.077723456681635,45.44602435243045],[9.077723426171877,45.44602074302969],[9.07772314004045,45.44601722381262],[9.077722406368075,45.44601371389976],[9.077721159840264,45.4460092052177],[9.077719811100918,45.44600475961228],[9.077718091827352,45.446000530282994],[9.077715784698212,45.44599656238243],[9.077712595582625,45.44599283810767],[9.07770447883076,45.445985786781684],[9.07769546757772,45.44597917711237],[9.07768590682044,45.44597281984391],[9.077676115907538,45.44596647173154],[9.077666567757328,45.4459599794371],[9.07765863271779,45.445954890213905],[9.077650186510471,45.44595003536349],[9.077641701561813,45.44594490150605],[9.077633842168153,45.445939020137416],[9.077627375021876,45.445931994692685],[9.077622980229869,45.44592557091587],[9.07762073387545,45.445919280701006],[9.077619881131225,45.44591284552642],[9.077620434132518,45.445905788328155],[9.077621257176908,45.44589983807645],[9.07762284858453,45.44589471540157],[9.077624889301887,45.445890879572964],[9.07762709630184,45.44588707963605],[9.077629495195659,45.445883342576565],[9.07763203483449,45.445879668429114],[9.07763534062352,45.44587520167065],[9.077638787132749,45.44587077982213],[9.077642412723767,45.44586640285755],[9.077646281344846,45.445862079734646],[9.077650418582637,45.44585781943718],[9.077653611362207,45.44585487393232],[9.077657008945696,45.44585208130663],[9.077660547372497,45.44584942360123],[9.077664201092832,45.44584691883557],[9.077667931646719,45.44584449502723],[9.077671291875802,45.44584244051254],[9.077674805661704,45.445840466903306],[9.077678447454648,45.445838592218834],[9.077682281202907,45.4458368254169],[9.077686217482233,45.44583522956538],[9.07769090802138,45.44583349818715],[9.077695700993136,45.4458318657509],[9.0777006987443,45.445830368191544],[9.077705965321606,45.44582908647514],[9.077711513586125,45.445828074599135],[9.077718916289053,45.445827277491894],[9.07772612777462,45.44582691256414],[9.077739707344572,45.44582658832612],[9.077746241182474,45.44582627786264],[9.077759155091572,45.44582542301138],[9.077765458513454,45.445824932681944],[9.077771569893324,45.445824271462364],[9.077777655366129,45.44582336723163],[9.077783727829843,45.44582230099045],[9.077794185832568,45.44582088973521],[9.077803811287373,45.445818470925886],[9.077811109312183,45.44581593668073],[9.077816690094403,45.445810658279285],[9.077823198191178,45.4458008877239],[9.077828006711353,45.44579193741681],[9.077834039792476,45.44578079002218],[9.07784520122584,45.445760809115995],[9.077861314014681,45.4457334799903],[9.077873410150215,45.44571441655404],[9.077884106287522,45.445700169629504],[9.0778964503846,45.44568476945032],[9.07790415097745,45.44567741936325],[9.077912196969645,45.44567017705369],[9.07792246639518,45.44566181710291],[9.07793318393579,45.44565387089523],[9.077943876207643,45.44564614972991],[9.077963231462146,45.44563353510562],[9.0779767178392,45.4456212395041],[9.077987111610625,45.44561032316428],[9.077997659144884,45.445599640746295],[9.078006593074372,45.445587195218415],[9.078012078363995,45.445577587366266],[9.07801888732446,45.44556346908675],[9.078022912146116,45.445551872994855],[9.078024770715398,45.44554578701985],[9.0780272504172,45.44553574015954],[9.078028023278142,45.44553052802493],[9.078029115792393,45.44552529767075],[9.078030880364999,45.44551594437772],[9.07803153700446,45.44550990422532],[9.078031273489986,45.445504242742985],[9.078030685552827,45.445495125077414],[9.078029586489473,45.44548626879001],[9.078027725932508,45.445481589508525],[9.078024020769496,45.4454745352039],[9.078019586865485,45.4454675714053],[9.07800975961983,45.44545334742524],[9.07800510770844,45.445445924720666],[9.078002454181236,45.44544111996321],[9.07800001806001,45.44543633306],[9.0779977353968,45.445431555053425],[9.077995567805567,45.445426767967504],[9.07799345136312,45.4454219808468],[9.077991142163556,45.44541650077609],[9.07798893521186,45.44541098463161],[9.077972213404761,45.44536709786764],[9.07796976148969,45.44536011471776],[9.077968130430389,45.44535494022139],[9.077966665628201,45.44534978361408],[9.07796503100162,45.44534200781598],[9.077963000284532,45.445334457313415],[9.077960556529792,45.44532409876318],[9.07795887438578,45.44531896930662],[9.077957115568978,45.44531387590638],[9.07795517764699,45.4453087196204],[9.077953534149055,45.445303797161664],[9.0779521209422,45.44529896455692],[9.07795058033388,45.445294474078786],[9.077948490474116,45.44529041602427],[9.077945480402095,45.445286691633854],[9.077939693820431,45.44528171798351],[9.077933063836113,45.4452771409521],[9.07792579489426,45.44527285238802],[9.077918078603505,45.4452687081441],[9.077910234467888,45.44526458198866],[9.077903273578535,45.445261139312784],[9.077896095667594,45.445257957814384],[9.077888662188823,45.44525490250379],[9.077881075266076,45.44525184729687],[9.077832124226424,45.44523162815055],[9.077826059795603,45.44522917497752],[9.077819893118114,45.445226757877734],[9.077813624009153,45.44522424183551],[9.07780736740443,45.44522151876026],[9.07780123825203,45.44521848956245],[9.077793688960954,45.44521489426108],[9.077783796782187,45.445209212303574],[9.077778856077174,45.44520563323457],[9.07777409446543,45.445202108050275],[9.077768475481403,45.44519811539227],[9.077762626257353,45.44519406888372],[9.07775673825437,45.44518971636536],[9.077751118066276,45.44518484160416],[9.077746213092121,45.44517933628436],[9.077742804449642,45.4451740099713],[9.077740380324183,45.44516861998368],[9.077738774520808,45.4451631934373],[9.077737846431058,45.44515776643161],[9.077737404089072,45.445152222083124],[9.077739822696147,45.44514422750967],[9.077742126650035,45.44513654805075],[9.07774427024386,45.445133162202396],[9.077747269017756,45.445128641641865],[9.077750497859329,45.44512404891692],[9.07775434042881,45.445119419771686],[9.077759091086373,45.4451149430287],[9.077764929232035,45.44511089759884],[9.077775355926288,45.44510539088751],[9.077786077730204,45.445100622061446],[9.07779708159841,45.44509640210727],[9.077808252250769,45.44509258708631],[9.077819615039738,45.44508901496225],[9.077831221286084,45.445085811715096],[9.077843007202764,45.44508308540059],[9.077854742438658,45.44508070115932],[9.077866324389548,45.4450784340345],[9.077895407015763,45.445072680620655],[9.077969027055781,45.44505773386698],[9.07801459026377,45.445050610061664],[9.078084386317675,45.445044531870735],[9.078118922110836,45.445043095193334],[9.078157823596806,45.44504552598379],[9.078201687489495,45.44504870946671],[9.07824487340248,45.44505169537208],[9.078309642582296,45.44505377542565],[9.078359765255788,45.445051967992185],[9.078395030390608,45.4450508817741],[9.078424460893052,45.44504708121622],[9.078449465046193,45.44504180750514],[9.078472233890551,45.44502902843986],[9.078486367079915,45.44501305990497],[9.078493787331213,45.444997275982765],[9.078497134934667,45.4449768773069],[9.078491550434808,45.444942317085854],[9.078485755101834,45.44492175364555],[9.078479498584127,45.44490056944775],[9.078471440909388,45.4448714295509],[9.078467603476634,45.44485193589541],[9.07845681603806,45.44482760442671],[9.078444265684738,45.444804489304545],[9.078416377746603,45.44478628123888],[9.078363115022455,45.444764112037205],[9.078202952841268,45.44470440033261],[9.078131042520672,45.4446790393579],[9.078086010635658,45.44466314715564],[9.078003253203539,45.4446349491503],[9.07799074405864,45.44463238335395],[9.07787758664065,45.44460947153648],[9.077814212150786,45.444598335232236],[9.077784986199424,45.44459262138129],[9.077772463584886,45.444589542510066],[9.077765758118911,45.44458580261754],[9.077760378872899,45.44457941551599],[9.077757670258068,45.444571685447144],[9.077757673133629,45.44456443959731],[9.077758418671776,45.44455794033152],[9.077759738253855,45.444550441559684],[9.077761381891552,45.444546146943146],[9.07776575637316,45.44453779100046],[9.077767898576106,45.44453340603534],[9.077770258217607,45.44452906592801],[9.077772809686891,45.44452474369274],[9.077775527410113,45.44452043934676],[9.077778947205408,45.44451525242153],[9.077782482180682,45.4445101374265],[9.077788887592618,45.44450018691942],[9.077793495827517,45.44449445912465],[9.077800046006075,45.444487514870524],[9.077806890121344,45.444480453403045],[9.077814938173884,45.44447483128702],[9.077823575629278,45.444470090873814],[9.077830130927989,45.44446689105273],[9.077836559034957,45.4444641863755],[9.077843536829498,45.44446137331228],[9.077853671541765,45.444457504983],[9.077868422478222,45.44445375053331],[9.077881525865498,45.44445142836767],[9.077897122854315,45.44444922152107],[9.077904845293086,45.44444860420555],[9.077911276059105,45.44444784374986],[9.077917540472095,45.444446993396234],[9.077929864596339,45.44444521181755],[9.077935950004742,45.44444437058556],[9.077942240089472,45.444443592221596],[9.07795502488555,45.44444206235671],[9.077961506711265,45.44444123885609],[9.077968001138489,45.44444028033079],[9.0779749428347,45.444439123477885],[9.077981820448047,45.44443785865549],[9.07800943264991,45.44443240324623],[9.078038604042405,45.444426361701204],[9.078047603706036,45.44442468138286],[9.078065935688265,45.44442146453445],[9.078075229275388,45.44441965799915],[9.078084458494788,45.444417536470006],[9.078093239863716,45.444415190218656],[9.078101816357465,45.44441263708187],[9.07811025198456,45.444409931022484],[9.078118559556568,45.444407090033835],[9.078126803057295,45.444404150076615],[9.0781396855812,45.44439930773678],[9.078177360520657,45.44438418730185],[9.078189949024399,45.444379408164096],[9.078205285798335,45.4443739700745],[9.078252140692076,45.44435813227314],[9.078267720305476,45.444352622001084],[9.078281970305506,45.44434727465319],[9.078323952457897,45.44433078307033],[9.078337959472039,45.44432541787922],[9.07835021585071,45.4443208999811],[9.078387458448427,45.444307606985845],[9.07839988099868,45.44430305296464],[9.078405440348577,45.44430092491645],[9.078410922902455,45.44429874291417],[9.078427076426806,45.444292170103736],[9.078455179288095,45.44428098057989],[9.078475690282756,45.4442723525421],[9.078482475995516,45.444269377552175],[9.078489210311625,45.444266222575955],[9.078495739739214,45.444262851714214],[9.078499304545714,45.44426087804417],[9.078502805206442,45.44425875139993],[9.078506203174399,45.44425633679219],[9.078509319321906,45.44425355333402],[9.078511923398832,45.444250338175614],[9.078514321220114,45.4442459170171],[9.07851590074566,45.44424154142389],[9.078516968897013,45.4442372381891],[9.07851861917524,45.4442285420416],[9.078518644040217,45.444228028964524],[9.078520612571289,45.444218306478966],[9.078521474503772,45.44421282424721],[9.078522016653471,45.4442072612248],[9.078522072717119,45.44420156351933],[9.078521438690029,45.44419615431996],[9.078520203918526,45.444190916551776],[9.078517364366489,45.4441810263371],[9.07851636034282,45.44417621146045],[9.078515236898983,45.444168255297704],[9.078514305145843,45.44416021799431],[9.078512033911116,45.44413593470517],[9.078511056849127,45.44412286584352],[9.078509486181451,45.44409661984494],[9.0785084961599,45.444083424977286],[9.078507096899145,45.44407018538434],[9.07850588495807,45.444062958367304],[9.078504238403038,45.444055830659295],[9.078503904143936,45.44405452573518],[9.078499781298474,45.44404128800589],[9.078481752505606,45.444023199221604],[9.078358139914469,45.443928547626676],[9.078329809549762,45.44390443514768],[9.07832720168274,45.443886335808024],[9.078337448456304,45.44385253885306],[9.078295084766033,45.44383313449763],[9.078238774762685,45.443807348890076],[9.078194161677747,45.443788675116565],[9.078136644189062,45.4437494967123],[9.078072888617783,45.44371160067412],[9.07806971491612,45.44370971261248],[9.078022044061878,45.443689672691946],[9.077897392688627,45.44363835237714],[9.077815627508805,45.44360525698321],[9.07765787132126,45.44353489462228],[9.077383788776558,45.44341287250205],[9.077097400103328,45.443286006423314],[9.076850931727197,45.4431774930451],[9.07632059997777,45.44294354058084],[9.075649037971639,45.44264612239188],[9.075618599346418,45.4426314077279],[9.075579462706768,45.44261426850048],[9.075510297679154,45.44258316138421],[9.075431437444495,45.44255932445279],[9.075355008039885,45.44254614312127],[9.075385838332942,45.442470595003606],[9.075414179047572,45.442436516381065],[9.075454111308227,45.44238849649318],[9.075461112208966,45.4423839283532],[9.07546844334516,45.44237769480008],[9.07547500747408,45.44237159676689],[9.075481200676098,45.44236540896676],[9.075487099753436,45.44235919435661],[9.075492832570287,45.44235295285241],[9.075501463275145,45.442343226032015],[9.07550981254461,45.442333400384555],[9.075575658608624,45.44225344564823],[9.07558620360433,45.44224098123902],[9.075599225898289,45.44222606690902],[9.07563930287437,45.44218133224509],[9.075652555043758,45.44216622873509],[9.075662742551032,45.44215418760401],[9.075682414338713,45.442130132806085],[9.07569229524815,45.44211830789991],[9.075702432228107,45.442106743854545],[9.075713642861977,45.442094882064914],[9.07573752180712,45.44207119352416],[9.075749499223516,45.44205904319091],[9.075760964689369,45.44204652415107],[9.07577311834527,45.44203230345571],[9.075784939466379,45.4420180199713],[9.075856469030116,45.44193382181635],[9.07589187817409,45.441888775110506],[9.075935321919541,45.44183779137905],[9.07596538539358,45.44180165923462],[9.075977012194187,45.44178555764475],[9.076040563030066,45.44171128382008],[9.076053393661885,45.44169664859672],[9.076066480277166,45.441682211225476],[9.076078763627995,45.44166947558527],[9.076090598105292,45.441655732122925],[9.07611741298956,45.4416286391539],[9.07612904335113,45.441615255865216],[9.076143176700388,45.441599548641236],[9.07615605742465,45.441584166285],[9.076177656703766,45.44155800387235],[9.076224747975836,45.44150043783244],[9.076236223004582,45.44148567747384],[9.076247941146422,45.441471051968335],[9.076259992037498,45.44145666026797],[9.076272529365744,45.441442691292615],[9.07628568077571,45.44142898293823],[9.07632718085485,45.44138792851322],[9.076340894444451,45.44137393174453],[9.07635417284971,45.44135960222456],[9.076366568892833,45.44134519228084],[9.076378351011666,45.44133064772852],[9.07641230383291,45.44128715900919],[9.076423907405541,45.44127297461328],[9.07643692877228,45.441257700143545],[9.0764670582729,45.441223593057565],[9.076541581604127,45.44114223680099],[9.076615859334888,45.441059062444765],[9.076651056116447,45.44101857917527],[9.076674215438402,45.44099284767469],[9.07668810544812,45.4409770685357],[9.07670708784891,45.44095442718341],[9.076775395342144,45.440872255829746],[9.076852587814274,45.440779781270805],[9.076926448237966,45.4406912693586],[9.076938958868599,45.44067671525723],[9.076950459079837,45.440661927804676],[9.076963493912656,45.44064736434791],[9.076977115567447,45.44063181938043],[9.07699015133718,45.44061795800258],[9.077004478536827,45.4406041317606],[9.077020455344506,45.44059046642845],[9.077053009842398,45.44056310835056],[9.077068973352743,45.44054908297808],[9.077129925176157,45.440493190441046],[9.077174823171235,45.44045076525578],[9.077188919891482,45.44043675912411],[9.077216013436392,45.44040854057141],[9.07722962442812,45.44039465177535],[9.077243696148138,45.44038108670554],[9.077256364414383,45.44036973683986],[9.077269467655062,45.44035857570199],[9.077310107599175,45.44032546942746],[9.077319980576325,45.44031769485906],[9.077340455443892,45.440302235238896],[9.077350660492268,45.44029419941323],[9.077360481457314,45.44028579480215],[9.077370250161037,45.440276571129],[9.077379494442079,45.44026720379172],[9.077388367817628,45.440257755694404],[9.077405705385502,45.44023884177153],[9.077414092984924,45.44022946600837],[9.077430190398777,45.440210624927026],[9.077438271336213,45.440201402387075],[9.077446684999241,45.44019239564733],[9.077459964123017,45.440179002105594],[9.077473537463751,45.440165716376356],[9.07751539583527,45.440126182447784],[9.0775598992207,45.44008546757649],[9.077590024462376,45.44005856103849],[9.077626698954031,45.44002441320843],[9.077705041875541,45.4399523066813],[9.077731512780646,45.439927274801086],[9.077745558495629,45.43991356566902],[9.077800372894043,45.43985850502465],[9.077814265342294,45.43984494000488],[9.077828426495989,45.43983152781908],[9.07784317569291,45.43981804322406],[9.07785815520038,45.4398046844856],[9.077919339375423,45.43975155468798],[9.077949707347244,45.439724755901395],[9.077964660887679,45.439711145136705],[9.077979358420768,45.43969732751961],[9.077994016280416,45.43968255581519],[9.07800785540875,45.439667469628326],[9.078034459500515,45.439637198968576],[9.078047966522355,45.439622365032406],[9.078062100658737,45.439607980720936],[9.078074934481842,45.439596396622655],[9.078088638215192,45.439585162972136],[9.078102840662794,45.4395739829868],[9.078117055581389,45.43956257796468],[9.078130745634185,45.43955070524304],[9.07814470227728,45.43953744617469],[9.078169293348042,45.439512460477],[9.078200791255977,45.439480026188214],[9.078270070673458,45.43941015770782],[9.07831008772659,45.43937130881972],[9.078337324504746,45.439345745211135],[9.078351282140538,45.4393332782098],[9.078380169319509,45.43930849655596],[9.078394459055106,45.43929580429582],[9.078408172806391,45.43928266237448],[9.078421016477208,45.43926905299107],[9.078433118285067,45.43925523708894],[9.078456478026622,45.43922760585793],[9.078468375668146,45.43921409612776],[9.078480900325024,45.43920096401191],[9.078495303764884,45.43918731754854],[9.078510462001066,45.43917399460503],[9.078541839838024,45.43914747400009],[9.078557342967532,45.43913393478861],[9.078635032224678,45.439062422129986],[9.07865072635891,45.43904835171209],[9.078664671751703,45.43903637973863],[9.078707978680887,45.43900077783593],[9.078722230606344,45.43898858961951],[9.078735983361886,45.438976023699304],[9.078750219821359,45.43896190926267],[9.078763816692444,45.43894757923793],[9.078790447945858,45.4389189915782],[9.078796103049681,45.43891254293339],[9.078811691448422,45.43889604227878],[9.078826273517603,45.43888224263221],[9.078840038348318,45.43886919963465],[9.078881525260993,45.43883055655687],[9.078974862371254,45.43874918573983],[9.07898995598665,45.438735529736846],[9.079004768099152,45.43872172090762],[9.079018787848382,45.438708164652],[9.079032462154924,45.4386944466135],[9.079099808689058,45.43862438092851],[9.07911368717407,45.43861041070956],[9.079130642863266,45.438593486017616],[9.079173735353756,45.4385512503002],[9.079184167659552,45.43854155795584],[9.079198826535812,45.4385279562312],[9.079240864337542,45.43849046477625],[9.079254898916734,45.43847845666372],[9.079269547509236,45.43846667315169],[9.079288527314489,45.43845268138364],[9.079206528742656,45.438384924022884],[9.079186275708533,45.43836601777081],[9.079169280246694,45.43834513803417],[9.0791653471382,45.438339425073416],[9.079157314824863,45.43832808027577],[9.079153215657653,45.43832247544197],[9.079149039815851,45.438316897664144],[9.079097498731079,45.438250631383056],[9.079067730953952,45.43821159629117],[9.079028140776318,45.43816106459947],[9.079018343021438,45.43814892891435],[9.079007970525591,45.438137225675256],[9.078996588821045,45.43812612620147],[9.078986733004005,45.43811820305123],[9.078975919068583,45.438110847626845],[9.078964351231976,45.438103807757535],[9.078952323184604,45.43809681320914],[9.078924875707129,45.4380804861654],[9.078893551796343,45.4380623885715],[9.078791290773498,45.43800488805198],[9.078773684007855,45.43799478294822],[9.078760017702397,45.437986511353344],[9.07873352857969,45.43796970654894],[9.078720246160248,45.4379616597124],[9.078706491394428,45.43795412625902],[9.078691036047566,45.43794650395991],[9.078675133688721,45.43793922400569],[9.078658912109626,45.43793224130318],[9.07864243508779,45.43792544779588],[9.078625843200395,45.43791879838196],[9.078607857346672,45.43791188888996],[9.078589654531143,45.437905258576706],[9.078517663267691,45.437879960878114],[9.078484047371495,45.43786848952303],[9.078467238962666,45.4378624163022],[9.078450621642865,45.43785583888867],[9.078437226978453,45.43784979033197],[9.078424419935882,45.437843372328416],[9.0783997006132,45.43783037368626],[9.078388467348347,45.4378248007031],[9.078387303083929,45.43782422543056],[9.07837520044011,45.43781867104229],[9.078362893368972,45.437813215804034],[9.078325397063248,45.437797021494156],[9.078315891611474,45.43779273447627],[9.078306577867448,45.43778839332031],[9.078297404987108,45.4377842140866],[9.078288194222957,45.43778037691845],[9.078278753942893,45.43777698995941],[9.078266474976061,45.43777336190755],[9.078253812994648,45.43777013016245],[9.07824087009565,45.43776715963839],[9.078202668645213,45.437758796694816],[9.07817857439517,45.43775400654895],[9.078166348016635,45.43775142257394],[9.078154223489134,45.43774852349093],[9.078139630161994,45.43774473498293],[9.078125087829864,45.4377408384256],[9.0781106218657,45.437736689784614],[9.078096244869611,45.437732154035466],[9.078082161271734,45.43772713202734],[9.078071965835928,45.437723133492774],[9.078061961774207,45.43771883779196],[9.078052225576455,45.43771408285371],[9.078042936015496,45.437708706537414],[9.07803428474838,45.43770261870204],[9.078021663475939,45.43769176300217],[9.078010307390377,45.43768049239159],[9.077999743766545,45.43766905022085],[9.077989487081794,45.43765767084782],[9.077969218300158,45.4376361180754],[9.077950267497515,45.43761534749637],[9.077940473066377,45.437605398974],[9.07792991214773,45.437595910025756],[9.07791763755391,45.437586098202075],[9.077904800866097,45.43757661979825],[9.077891453225652,45.43756747477921],[9.077877645724573,45.43755862710592],[9.077863403896549,45.43755004975766],[9.077844441121572,45.43753916233762],[9.077825184722716,45.43752859015079],[9.077805558086451,45.437518405257585],[9.07778552295515,45.43750867969228],[9.077764977119868,45.43749946753031],[9.077745698747837,45.43749150565364],[9.077726062909319,45.43748392206063],[9.077706171751217,45.43747661767012],[9.077665789032835,45.437462369327775],[9.07754677645085,45.437419847798026],[9.077507544366663,45.43740550861119],[9.07742098153417,45.437372695172876],[9.07739865932701,45.437363979202125],[9.077376553974311,45.43735489403709],[9.077354793121021,45.43734528657372],[9.07733349165144,45.43733502171879],[9.077313301810864,45.43732424305005],[9.077293916703741,45.43731291477059],[9.0772751447713,45.43730119902902],[9.077256781657185,45.437289248981365],[9.077220592262046,45.437265222500876],[9.077202357219225,45.43725341637519],[9.07718439118757,45.437241988110365],[9.077077156870661,45.437172806011525],[9.077007106799085,45.43712584048995],[9.076989830518333,45.43711387166737],[9.076972771374377,45.437101740677264],[9.076955954925479,45.437089438501566],[9.076946164243541,45.437082064195145],[9.076936539540593,45.43707451875634],[9.076927234080959,45.437066685068544],[9.076918401189808,45.43705849102056],[9.076910168573146,45.43704982851405],[9.076902894241128,45.437040715311355],[9.076896629650788,45.43703138540582],[9.07689102985672,45.4370220280512],[9.076885698687658,45.43701276952795],[9.076880214280466,45.43700364612315],[9.076875409291606,45.43699585442042],[9.076870129864584,45.43698703691395],[9.076814629762442,45.43690222104413],[9.076782639273093,45.436872376923525],[9.076759328034216,45.4368505829409],[9.076754207285063,45.43684563578083],[9.076760907820828,45.43683698127391],[9.07681487750137,45.43680167897678],[9.076823308262474,45.43679616467957],[9.07681376824493,45.436785009746025],[9.076701340017772,45.43665564964068],[9.076552789257008,45.43648449457734],[9.076532711086697,45.436461357230776],[9.07635972121112,45.43626527625567],[9.076330055227476,45.43622369306716],[9.07622851675949,45.43612853829254],[9.076121125303438,45.436035025503685],[9.07603277770826,45.43598475912103],[9.075762161388619,45.43584337835711],[9.075601147679436,45.43576641742877],[9.075523983321048,45.4357224260258],[9.07539535366142,45.43563522727308],[9.075339182124813,45.43558134777652],[9.075255253394069,45.43548781875598],[9.07520279828273,45.435411389078645],[9.07518135511948,45.4353801334217],[9.075124361355398,45.43538095384521],[9.075083011532742,45.43535883828447],[9.075036864036122,45.43533415154095],[9.074899290100607,45.435239874232174],[9.074869524433124,45.43521846211554],[9.074746930041247,45.43513026856915],[9.074655649923082,45.4350645931948],[9.074448961074252,45.43492008931976],[9.074405772790934,45.43488968472072],[9.07433431767736,45.4348398381104],[9.0742464910076,45.43479423255178],[9.07408232657542,45.43473847802522],[9.073805148959286,45.43464573860692],[9.073655802756267,45.43455044123849],[9.073584015981872,45.434510207510584],[9.073485480680075,45.43445763240206],[9.073341889366748,45.43437285318462],[9.073263971237825,45.434316502257566],[9.073194443413957,45.434262837245136],[9.073147389217091,45.434207771701864],[9.07312438116023,45.43418119720595],[9.073087134442902,45.43413731371661],[9.073041263603693,45.43407771983656],[9.073011160180794,45.43404114964457],[9.072965742626812,45.433985974970135],[9.072937207633561,45.43395612756012],[9.072885335614616,45.43390218110069],[9.072861531466828,45.43388269989933],[9.07281581730666,45.43384528446368],[9.07279608166541,45.43388807907157],[9.07277378206324,45.43394536702462],[9.072754294004408,45.433991869908404],[9.07274189995425,45.433987305221955],[9.072695303608251,45.43397986386119],[9.072681048706958,45.433979746875536],[9.072622349020344,45.43399514886471],[9.072513683118403,45.43402730639578],[9.072279335229965,45.43410210011007],[9.072218746438711,45.434120059385144],[9.071855240669523,45.43422956955121],[9.07112146487282,45.43442033624203],[9.071015361786383,45.43444830525985],[9.070990606242573,45.434454954363254],[9.070939379550085,45.43446629138132],[9.070890747971815,45.43447750975962],[9.070846680085712,45.43448840126158],[9.070830946704186,45.434492029402485],[9.070790698803856,45.43450083027718],[9.070770312534345,45.434505046349045],[9.070749708609467,45.4345090105215],[9.070728759071148,45.434512632862585],[9.070712205903108,45.43451501034371],[9.070695690494775,45.434516910742495],[9.070663630435604,45.434520008851806],[9.070645107678681,45.4345217844642],[9.070611550771625,45.434524046380844],[9.070600007098284,45.43452474656467],[9.070588233167044,45.43452533887613],[9.070565349424298,45.43452597402188],[9.070487694793474,45.43449449999587],[9.070470829467109,45.43448225989731],[9.070059141263224,45.43418354141233],[9.069861274741266,45.43404849295381],[9.069244450965261,45.43363241421363],[9.067965158199103,45.43454977575115],[9.067565094837816,45.4348356068303],[9.06721235572995,45.43508812284601],[9.066898763538514,45.43531047037938],[9.066269139140712,45.43575216689022],[9.066249210925,45.43576614804777],[9.066247542283174,45.43576047833831],[9.066181972329506,45.43580786176863],[9.066030233758468,45.4353832427722],[9.065841533978366,45.4348015220918],[9.065733514364757,45.434468121385464],[9.065706923096773,45.434424508424],[9.065618719520497,45.4341895679477],[9.065610884178032,45.43416877995456],[9.065581740405678,45.43410659921332],[9.065550799974844,45.43406063941765],[9.065475335882391,45.433996657867254],[9.06541984020226,45.43394277309197],[9.065142374468126,45.43360484164849],[9.065067673762572,45.43354788922672],[9.064751676949228,45.43336459003824],[9.06460738880207,45.43327140221832],[9.064608426374182,45.433250672167624],[9.0645871874497,45.43324706568582],[9.064242271811787,45.43353604053775],[9.063913254544119,45.43380044156482],[9.06376751208683,45.433915214228],[9.063742132599794,45.433947479153034],[9.063734649309366,45.434023524346046],[9.06372797926742,45.434049478132486],[9.063738687795414,45.43409075109538],[9.064148267353016,45.43439769351706],[9.064145653655157,45.43444941512141],[9.063975552045113,45.43462961241074],[9.06323201040166,45.43542589871154],[9.063180189110584,45.43538750167608],[9.062607718041278,45.43511659502218],[9.062187112460967,45.43491868303024],[9.061614574912806,45.434648455493964],[9.061435928825388,45.434560214701705],[9.061319262153908,45.43450657666975],[9.061090466815669,45.434398181700544],[9.060962094481743,45.43434863601324],[9.060970300053805,45.43444213476605],[9.060973186326123,45.434475095149395],[9.061008432159126,45.43461693328247],[9.061017363174495,45.434766904347796],[9.061028832737675,45.43485195835314],[9.061029477068212,45.43485671057499],[9.061027048019374,45.43485675687098],[9.060886891668579,45.43485921653725],[9.06086379492001,45.43486413436094],[9.060853699981887,45.43486881126439],[9.060811405541703,45.43495021232515],[9.060775301740538,45.43502238399859],[9.060721649534933,45.43509942551493],[9.060669091486657,45.43517159684925],[9.060550128054677,45.435339079487534],[9.06052822206002,45.435369919690544],[9.060354837443567,45.435614380910245],[9.060323272975905,45.43565194994437],[9.060290457127456,45.43569101380347],[9.06019102610744,45.435809375976724],[9.06010491264614,45.43591187121333],[9.060033942881478,45.43599635633591],[9.05995399516561,45.436102592676484],[9.059882814265636,45.4361934235645],[9.059768925879649,45.436340209261935],[9.05954768837083,45.436604595459805],[9.059525486210392,45.43663440949567],[9.05940925775563,45.43678256419766],[9.059250951696386,45.436978986197914],[9.059200891048839,45.43703416153366],[9.059092238730338,45.43715396764456],[9.059038817781168,45.43721158392464],[9.058955904611095,45.437297289639254],[9.05891474054522,45.43733874265791],[9.058900920901513,45.43735231434872],[9.05887460915187,45.437377413803254],[9.058799260820411,45.43744727365105],[9.058775719417767,45.43746851920879],[9.058754489418392,45.437487126267634],[9.05867753769162,45.43755219828753],[9.058647696274113,45.43757659740866],[9.058615950463588,45.43760162756804],[9.058550310856011,45.43765172495898],[9.058481603809618,45.43770295800736],[9.058391576952403,45.43777283405432],[9.05834743908279,45.4378076185881],[9.058300003595711,45.43784344890149],[9.058204186734926,45.43791551499552],[9.058103541119033,45.43799187695779],[9.058023746663537,45.43805407862983],[9.057945819167577,45.43811672935702],[9.057930233993833,45.43812959973604],[9.057914853581822,45.43814266803305],[9.057899793046507,45.438155979195514],[9.057890034091079,45.43816497617542],[9.057880454293826,45.438174135083386],[9.057841571104724,45.43820938482722],[9.05780238525183,45.43826140369068],[9.057774320842263,45.43831157173033],[9.057755354811551,45.438306522668384],[9.05772591558907,45.438299633647766],[9.057669740886185,45.4383548833799],[9.057628542240234,45.43835122261673],[9.057562485782888,45.43834481996981],[9.057507834377635,45.43833877161932],[9.0574509281943,45.43832822383857],[9.0573489036431,45.43830664525261],[9.057192573925942,45.43826714549922],[9.057008130076387,45.43822858659322],[9.056835103323234,45.438189436673355],[9.0566022523352,45.43813616630396],[9.056374645646375,45.438084738104685],[9.05620393496561,45.43804663021487],[9.056198797158059,45.43806155649101],[9.056195454547161,45.43806883098501],[9.056188079911879,45.43808439742999],[9.056180526240658,45.43809992795773],[9.056172755141477,45.43811538658266],[9.056164792220631,45.43813080929661],[9.056156114081503,45.438147015451946],[9.056102624304208,45.438242578865086],[9.056068688436826,45.43830429771628],[9.05605121523081,45.438334936858276],[9.05604222916596,45.43835011703337],[9.05602318364918,45.43838109897796],[9.055963732393218,45.43847364087123],[9.055944137031176,45.4385046410719],[9.05593455041418,45.438520253581444],[9.055925193940704,45.43853587497923],[9.055871765718715,45.43862979105333],[9.05585346158726,45.438660781608704],[9.055833394215743,45.43869298816114],[9.055770864648217,45.43878926688539],[9.055750464890314,45.43882160859978],[9.055739883556956,45.43883994889659],[9.055730870938207,45.43885429195991],[9.055721476877117,45.438870813464554],[9.055712632742436,45.43888748771981],[9.055704453596519,45.438904305668984],[9.0556968242899,45.43892118635849],[9.05568957859207,45.438938111866825],[9.055668787531959,45.43898880692097],[9.055627266134044,45.43908702861339],[9.055586548676958,45.43918380072918],[9.055579468107865,45.43919968202672],[9.055572412324564,45.43921476221728],[9.055534296755331,45.439292045755806],[9.055518015134618,45.43932587061084],[9.05550956723561,45.43934255365868],[9.055500543824246,45.43935908396572],[9.05549177471055,45.43937416497832],[9.055473456520888,45.439404309375824],[9.05542640144954,45.43947955394964],[9.055417197730154,45.43949478818384],[9.055365349962447,45.439585372850466],[9.055347849797034,45.43961538181664],[9.05529723413241,45.439697828897955],[9.055276246589989,45.43973116092198],[9.055262603688117,45.439757081537415],[9.055252101312973,45.43977807706095],[9.055244764038427,45.439793112359794],[9.05524020929807,45.439803222740444],[9.055235310586614,45.4398146204379],[9.055231471850146,45.43982473047405],[9.05522553073506,45.439842357406036],[9.055223085399636,45.43985220574148],[9.055218530650663,45.43986231612119],[9.055208121352752,45.43988703803468],[9.05520431972527,45.43989586990135],[9.05520111864832,45.43990430543275],[9.055198211636576,45.43991273182174],[9.05518710504572,45.43994359279131],[9.055179949778147,45.4399617693683],[9.055174436690908,45.439972519281454],[9.055165222008066,45.43998978773895],[9.055160319124719,45.439996909931125],[9.055155607148045,45.440003122924345],[9.05514906590832,45.440008427688085],[9.055135951544948,45.4400125204619],[9.055124893068035,45.44001388492684],[9.05510931883817,45.440012839271986],[9.055085954330025,45.440007998901756],[9.055032269230859,45.43999772740805],[9.054983161696573,45.4399876607236],[9.054967085908485,45.439983590932975],[9.054905111214449,45.439968768807255],[9.054863586297953,45.43995926551547],[9.054842651400302,45.43995468496634],[9.054820079905607,45.439950096192945],[9.054752443188319,45.439937400935165],[9.054730255232,45.439932757954935],[9.054708744688254,45.43992786261826],[9.05466577419388,45.43991748683971],[9.054601343695468,45.43990154958555],[9.054579705040107,45.43989636625146],[9.054559575715059,45.43989180326993],[9.05451857423712,45.43988136349382],[9.054494019207576,45.43987491237727],[9.05447569207422,45.439869691449026],[9.054454039142202,45.43986292391118],[9.054440302137387,45.43985770080247],[9.054427103095524,45.43985347655506],[9.054418226997338,45.43985063642281],[9.054399899878822,45.4398454154824],[9.0543803290046,45.43983649569156],[9.054369915456709,45.439830352893665],[9.05435243397567,45.43982697676305],[9.054339519095453,45.43982574972434],[9.054314228479251,45.439825536651924],[9.0543090631609,45.439825710112906],[9.054303923620152,45.439826099586895],[9.054298694810079,45.43982673213149],[9.054292596991353,45.43982781513933],[9.054286857433429,45.43982916800952],[9.054276746393759,45.439831864101876],[9.054272055042935,45.43983297344765],[9.054269063746503,45.43983359593324],[9.05426595735165,45.43983419146994],[9.054262825350747,45.4398347510144],[9.054259718870025,45.43983525654031],[9.054256740179145,45.4398356899974],[9.054252866478887,45.439836123876866],[9.054244159985336,45.439836830068906],[9.054239250674094,45.43983730944194],[9.054234162609426,45.439838049929904],[9.054230378701126,45.439838789802266],[9.054226697199484,45.43983965564106],[9.054223066986776,45.43984067447357],[9.05421948809725,45.43984188230404],[9.054215717685414,45.43984336925764],[9.054213238438573,45.43984463957663],[9.054210938656098,45.43984639586817],[9.054209125035591,45.43984846696751],[9.054207938135786,45.439850762797775],[9.054222615503782,45.43990365510805],[9.054234320157402,45.43994980702429],[9.054258143651992,45.44004734027271],[9.054320897910255,45.44026296703283],[9.054363912309542,45.44041291335482],[9.054392275038051,45.4405102193937],[9.054396663185138,45.44052627520735],[9.054400603222726,45.44054170115869],[9.054415196246534,45.440599616068944],[9.054426609854618,45.440635245859156],[9.05443775259338,45.4406817670582],[9.054445693625096,45.440709459556366],[9.054454515750344,45.440749321068594],[9.054457289663334,45.44076200224681],[9.05446122968226,45.44077737418911],[9.054474225536685,45.44082293139195],[9.054500644158567,45.44091917619337],[9.054504646115225,45.44093244185653],[9.054517163078799,45.44097186055822],[9.05452098586525,45.44098494628454],[9.054523963141733,45.44099633121169],[9.054532000381046,45.44103093646986],[9.054534824444177,45.44104254649582],[9.054553071738884,45.441124204442204],[9.05456184654092,45.44115456084774],[9.054565378105638,45.44117060805866],[9.054569574552277,45.44118665495379],[9.054574922643678,45.44120362841089],[9.054580922642694,45.44122040353482],[9.054592337515881,45.441257113431],[9.054604443944717,45.441294957130616],[9.054617385039284,45.441336499867084],[9.054636190917835,45.44140042544582],[9.054661007739051,45.441492431463445],[9.054663958115826,45.44150237622941],[9.054667818440974,45.441514534822765],[9.054671870535303,45.441526666321536],[9.054685465273888,45.44156971191433],[9.054692568349632,45.44159001492117],[9.054697159715838,45.44160447743628],[9.054705509567876,45.44163154864433],[9.0547244610066,45.44170037971243],[9.054738609962333,45.44174792556253],[9.054821687220668,45.44204511888424],[9.054872163647017,45.44220012900331],[9.054897634513804,45.44228011823347],[9.054915174057415,45.44234289222527],[9.05493063570158,45.44239888941121],[9.05493522243899,45.442421677894295],[9.05493689241112,45.4424296970375],[9.054940298494474,45.44244802156054],[9.054941105884643,45.44246318795491],[9.054938203938779,45.44247704196817],[9.054934070006148,45.442499501580215],[9.054927841774239,45.44252474351947],[9.05492037739909,45.4425542885539],[9.054908345544423,45.44259429499744],[9.0548967192829,45.44263061081264],[9.054862844398006,45.442746452579506],[9.054800122991688,45.442915495331185],[9.054773990099696,45.44298489692779],[9.054746251894501,45.44307369655709],[9.05470631419461,45.44318809198636],[9.05467353659231,45.44327557983937],[9.054655080309178,45.44332348323252],[9.054608806029117,45.44344410136482],[9.054502076009333,45.443725011938916],[9.054431378385793,45.443912546406615],[9.054342337373045,45.44413333939195],[9.0543223130958,45.44420025369113],[9.05430221028184,45.444251902236026],[9.054283728719659,45.444300777686706],[9.054274202276561,45.44432737129799],[9.054271459825767,45.444334429419015],[9.054268896441851,45.4443415414617],[9.054266499715387,45.44434910347832],[9.05426037047379,45.44437140198169],[9.054258126835832,45.44437859488265],[9.05425609891925,45.44438405047838],[9.054253815307625,45.444389551200025],[9.054251391142799,45.44439516000062],[9.05424899267128,45.44440089480378],[9.054246811713409,45.44440677352109],[9.054244886852773,45.444413030161684],[9.054241740108822,45.4444252280742],[9.05424013460196,45.44443115152504],[9.054238286023915,45.444436949075815],[9.054236130448745,45.44444262975769],[9.054233757521732,45.44444833754528],[9.054231243938451,45.44445404539918],[9.054225961083928,45.444465515233674],[9.054222847166342,45.44447190745064],[9.05421615911214,45.44448480911506],[9.054212904802105,45.44449148043066],[9.054209983147766,45.44449835861338],[9.054207713496226,45.44450510147278],[9.05420590410413,45.444511772106644],[9.05420269413992,45.444524735137215],[9.054200833162126,45.4445309467416],[9.054198932778164,45.44453606023598],[9.054192119668151,45.444551932305416],[9.05419000234195,45.44455750495563],[9.054187988021463,45.44456382464472],[9.054169375564612,45.44460972978836],[9.054166427272085,45.444615500852905],[9.054161297473028,45.44462659256778],[9.054158847723597,45.44463221037924],[9.054156564255154,45.44463788211867],[9.05415445988891,45.444643643784154],[9.054152254450598,45.44465069264787],[9.054142653039285,45.444679257512476],[9.054133374334386,45.44469757002476],[9.054113952670482,45.4447397491035],[9.054108220956445,45.44474988698753],[9.054105338286822,45.44475744922894],[9.054101725271899,45.444763445630905],[9.054099516941024,45.444767461139946],[9.054097474840338,45.444771476570686],[9.054095547847691,45.44477551895039],[9.05409376154556,45.44477959726806],[9.054085960977194,45.44480598302492],[9.054073256037132,45.44485198438254],[9.054016878871636,45.44485267696907],[9.053915151140345,45.44485852140914],[9.05379889383825,45.4448741657055],[9.053376715364506,45.44492536248893],[9.052913992073995,45.44498040182887],[9.052639729151492,45.44501431769383],[9.052346478631277,45.44504983473361],[9.052032542111924,45.44508950986945],[9.05143267928305,45.44516341739099],[9.05118515174957,45.445196678724905],[9.050724586824222,45.445253625456246],[9.050086771263674,45.44533072901576],[9.049649924025557,45.44538744505475],[9.049527206731339,45.44540281775909],[9.049364090275871,45.44541287905622],[9.049228710334523,45.4454244674314],[9.049094751056437,45.4454376212227],[9.048904790439268,45.445458134539614],[9.048479519540292,45.445507046267544],[9.047873511313414,45.445582737892714],[9.04760275115892,45.445622670906765],[9.047502821157753,45.44564000323421],[9.047374541359629,45.4456720188662],[9.04726681666946,45.44569615899154],[9.047111593152051,45.44572713227179],[9.046989674309234,45.44573557111259],[9.04685783687415,45.44574924347411],[9.046836088379981,45.44575230368619],[9.046817510743384,45.445754921552314],[9.046321974351104,45.445824754257295],[9.045751272334794,45.445893201556686],[9.045334113533707,45.4459398480819],[9.044941136031511,45.44598815783851],[9.044783077614364,45.44601041604258],[9.044567039259652,45.44604595504187],[9.044238794813078,45.446084615173355],[9.043632377675278,45.44615945635058],[9.043346263700354,45.446195019580145],[9.043238260514704,45.4462095968931],[9.042938725766973,45.44623666714979],[9.041893062748404,45.446383580464655],[9.04179032648713,45.44637971133963],[9.041688303270236,45.4463366512907],[9.04164291398602,45.44634447162435],[9.041625883744791,45.44634786217659],[9.041621920469833,45.446348952736244],[9.041618456471449,45.44635082620672],[9.041617446653841,45.44635134863261],[9.041616526288381,45.44635179001667],[9.041615414152469,45.44635228547637],[9.041597911970632,45.44635731438615],[9.041577264969742,45.446363532567396],[9.04157069338019,45.4463650381153],[9.04156331649042,45.44636695800181],[9.041556220947534,45.44636891379048],[9.041535906133122,45.446374753800214],[9.04151834030846,45.44638020577015],[9.041502002430652,45.44638616135365],[9.041488796836793,45.44639127870865],[9.041472075326181,45.446397225424995],[9.04145750222793,45.4464033693886],[9.041448988440099,45.44640691886708],[9.041443351526976,45.44641008926553],[9.041438046900916,45.446413007514714],[9.041432908307076,45.4464156466714],[9.04142785901498,45.44641799776206],[9.041422426121953,45.44642037599366],[9.041408096984256,45.44642791502595],[9.041384972913889,45.44643926466166],[9.04136247568162,45.44645098311056],[9.041341103524385,45.446462422118614],[9.04132741493869,45.446471626105065],[9.041317727831272,45.44647950549995],[9.041309371400796,45.44648848254479],[9.041302357099148,45.4464967120205],[9.041298996669896,45.44650036765203],[9.041294000422685,45.44650535602538],[9.041277490533409,45.446521086778766],[9.041271816982023,45.44652666946325],[9.041266872055301,45.44653190084537],[9.04125797924261,45.44654185019198],[9.041253775420865,45.44654630721777],[9.041249520162676,45.446550368215554],[9.04124554565993,45.446553646021336],[9.041241046907155,45.44655696901991],[9.041230617663386,45.44656423660161],[9.041225147562969,45.44656824402714],[9.041220061056904,45.44657221531091],[9.041201325610869,45.44658723576672],[9.041184815087261,45.44660215641216],[9.041174887127283,45.446613015228394],[9.041165075626548,45.44662578222473],[9.041157436431961,45.44663640619399],[9.041153313052263,45.44664603879093],[9.041148347189775,45.44665773292915],[9.041145358886425,45.44666320663515],[9.04114381471424,45.44666750968869],[9.041142027256841,45.446671362776605],[9.041139920231137,45.44667537799754],[9.041137570251106,45.44667940230629],[9.041134977355616,45.44668348970907],[9.041132333225821,45.446687460116465],[9.041129343881307,45.44669149365442],[9.041126009315509,45.44669558132191],[9.041122265785933,45.446699993173056],[9.041118343524023,45.446704810135174],[9.041114536626948,45.44671001410109],[9.041108635629682,45.44671943130572],[9.041098469788786,45.446737392028254],[9.041093424771168,45.446745737801635],[9.041087957359121,45.446753516659356],[9.041081671259448,45.4467608907616],[9.041074464477148,45.44676828319397],[9.041066529056325,45.446776017925565],[9.041058351041526,45.446784265802926],[9.04105049318258,45.446793170642216],[9.041045728123052,45.44679963509422],[9.04104170468127,45.446806027273375],[9.041034999814608,45.44681789304596],[9.041031653573308,45.446823546897384],[9.041018459804699,45.44684531613522],[9.041014027605069,45.44685232953135],[9.041009480155697,45.44685911794208],[9.041004715053598,45.44686553738712],[9.040999489660807,45.446872038005225],[9.040993931974413,45.44687879077074],[9.040988297833591,45.446885921607304],[9.040982932479784,45.44689340338884],[9.04097820647747,45.44690085793948],[9.040973927976399,45.44690823132127],[9.04096993076579,45.446915559597585],[9.040959510537384,45.44693552763166],[9.040956675825006,45.44694124430619],[9.040953956179784,45.44694693393658],[9.040948708647907,45.44695824112054],[9.04094627024769,45.44696382263813],[9.040941802386287,45.44697462548581],[9.040939606610692,45.4469797388624],[9.040937270082189,45.446984726274266],[9.04093456295566,45.446990046856705],[9.040931727973325,45.44699539448761],[9.040928803432983,45.447000679142896],[9.040925750959294,45.447005882834205],[9.040922557777689,45.44701102356802],[9.040918227517368,45.44701756886943],[9.040913654306948,45.447024132259095],[9.040880976500521,45.44706958115973],[9.040861853495047,45.44709732017861],[9.040857025121168,45.44710472075398],[9.040852260960573,45.447112508351516],[9.040848864364813,45.447119323350485],[9.040844077725724,45.44713144046025],[9.040841983578119,45.447135635691794],[9.040832142053732,45.44714241697132],[9.040824434140198,45.44714654218423],[9.040812855468436,45.447156060396715],[9.040805996399335,45.44716699910174],[9.040801924888603,45.44717777480001],[9.040799157934098,45.4471888740737],[9.040794024452026,45.44719880404917],[9.04079264498989,45.447201027796865],[9.040789157768852,45.447206303646674],[9.040785312516018,45.44721160662628],[9.040776753119403,45.4472231400008],[9.04077240990343,45.44722949627898],[9.040768360934518,45.44723604147488],[9.04076463153058,45.447242415537595],[9.0407577094234,45.44725464141192],[9.040745179622968,45.447275321254615],[9.040742177882146,45.44727998485983],[9.040739073782737,45.447284567491735],[9.040734985820189,45.44729023959846],[9.040730667726153,45.44729597479374],[9.04071841952801,45.44731706858206],[9.040704548169314,45.447339378084195],[9.040691146665734,45.4473570968837],[9.040682525670853,45.44737196966174],[9.040666248966568,45.447392515803045],[9.040649030580829,45.44741953402834],[9.040642543761987,45.44743254283288],[9.040640526057308,45.4474363779916],[9.040638750752064,45.44743942097244],[9.040634216280116,45.447446605409084],[9.040631623620785,45.447451124850176],[9.040629248766296,45.447456229282515],[9.040627002953375,45.44746297186012],[9.040619090156245,45.447484748187556],[9.040611581168546,45.447498954490094],[9.0406020152268,45.44751576282025],[9.04064818275833,45.44753980633904],[9.04104603871553,45.44774695937958],[9.041083605046108,45.44775950244696],[9.041805121518891,45.448002847144956],[9.042271282296046,45.44815550574458],[9.042543012419452,45.44824605521118],[9.043088264734875,45.44842605340239],[9.043454753313316,45.448547735816035],[9.043543379570027,45.44857320229227],[9.043744799354522,45.44863822149576],[9.043839248185472,45.448668672109065],[9.04385579976828,45.448674012425904],[9.04386875051273,45.448686284918665],[9.04381261533584,45.4488572901792],[9.044062543617065,45.448925737746315],[9.044338231278351,45.44904854116448],[9.044705414024014,45.44921519751115],[9.044941866402162,45.449316061149425],[9.044995356232137,45.44936169355244],[9.04502379175616,45.44937155657842],[9.045054811178508,45.4493823186903],[9.045062736683125,45.44937844513761],[9.04507094415601,45.449375372567005],[9.045079868233023,45.449372902785186],[9.04508957302523,45.44937125179194],[9.045099150727133,45.4493705999637],[9.04510820465478,45.4493706234184],[9.045116747318719,45.44937097111046],[9.045125111007707,45.44937139088042],[9.045131569291424,45.449371820398085],[9.04513811732642,45.44937254691468],[9.0451444609317,45.449373498537206],[9.045150664011706,45.44937463023547],[9.045156675364574,45.44937587902219],[9.04516532159571,45.44937781985503],[9.04517396793441,45.44937989570286],[9.045182652808965,45.44938218756005],[9.045191299548497,45.449384767464984],[9.045199831467913,45.449387689454085],[9.04521443987617,45.44939336337522],[9.045228588133215,45.44939930750681],[9.045351012223401,45.449453112582],[9.045433763888672,45.44948564572312],[9.045465106332118,45.44950039505898],[9.045511505555435,45.449521709195395],[9.045537885308745,45.449535245332676],[9.045560720887627,45.44954640659107],[9.045581317999039,45.44955685764905],[9.045601900998042,45.449565643515456],[9.045622816679998,45.44957466327345],[9.04564371862931,45.449582494895004],[9.045664416891203,45.44959146972636],[9.045684756661338,45.44959990463357],[9.045705288034686,45.449608060428616],[9.04572597269738,45.44961600013398],[9.045812932834982,45.44964945843477],[9.045847344966544,45.44966465649534],[9.045868260535896,45.4496734421811],[9.045888203834144,45.44968175119532],[9.045906715816106,45.44969123091299],[9.04592672341472,45.44969997194501],[9.045967978892953,45.44971722847687],[9.046085313038638,45.44976896455502],[9.046107316858228,45.44977921693131],[9.046126787928678,45.44978858821631],[9.046149303382126,45.4497989573929],[9.046169746369348,45.44980833728176],[9.046191275644716,45.44981684362948],[9.046298857132584,45.4498580881838],[9.046389872320379,45.449892165484286],[9.046439825471342,45.44991121854704],[9.046476321646724,45.44992549746969],[9.046579146280626,45.449966644669125],[9.046598782304565,45.44997426060283],[9.046614197025317,45.449980384070095],[9.046627910109184,45.44998550910891],[9.046642300657773,45.44999025582759],[9.046655667339447,45.44999400384366],[9.046672935431495,45.449999001420814],[9.046693592790847,45.450004492677344],[9.04692440807603,45.45010007087229],[9.047049583132534,45.4501519107707],[9.047341661215565,45.45027021768951],[9.047358611250596,45.450277024503535],[9.04746658128856,45.450322084237484],[9.047505376757984,45.45034797322847],[9.047619857454968,45.45039446129425],[9.047722469228432,45.45043901894489],[9.04784869202171,45.45048802220106],[9.047960550644008,45.45053326887084],[9.04802182741555,45.45055814019316],[9.048384358742002,45.45070463327511],[9.048396385305479,45.4507111719742],[9.048566413807697,45.45078048035141],[9.04873948436403,45.45084746491647],[9.04879391747285,45.45086932337357],[9.048853652546635,45.45089998257304],[9.048940092739283,45.4509340867815],[9.049093663484474,45.45098802759137],[9.049165096939047,45.45101489219411],[9.04920198956953,45.451027567888026],[9.049208231805592,45.45102931141977],[9.049215074909194,45.451030838669034],[9.049222275698948,45.45103191571263],[9.049231599149742,45.451032748818996],[9.049245717332436,45.451032526749685],[9.049259770857175,45.45103147661034],[9.049281239849725,45.451028353052116],[9.049310139276075,45.45102567635652],[9.049334616610544,45.451026106910405],[9.049354899108323,45.45102625122592],[9.049376077728633,45.45102747527824],[9.049384416156048,45.45102793975229],[9.049392767473417,45.45102852123374],[9.04940114450039,45.451029255721274],[9.049409521675889,45.451030161227955],[9.04942021396962,45.45103155179553],[9.049430778512859,45.451033095434695],[9.049441279239748,45.45103478311705],[9.049451677738356,45.45103656085281],[9.049461922816135,45.45103838365887],[9.049775385366235,45.45108969837744],[9.04998017218623,45.45112596477012],[9.04999000924524,45.451129128861474],[9.049998925911794,45.451132716401126],[9.05000729319969,45.45113689824786],[9.05001505991594,45.45114162941873],[9.05002246918256,45.451147071827],[9.050026910710711,45.45115157041633],[9.050029869069062,45.45115639368826],[9.050031676336898,45.451161064443205],[9.050033998445752,45.45116949741002],[9.050034845524292,45.451172962442904],[9.050035373034985,45.45117658963367],[9.05003556805495,45.45118022597007],[9.05003543055251,45.45118383544805],[9.05003499890075,45.45118742705189],[9.050034273067984,45.45119096477754],[9.050033253038356,45.451194430622785],[9.050031938851335,45.45119786959287],[9.050030292102106,45.45120123669929],[9.05002833842277,45.45120459493817],[9.050025707194191,45.45120822350301],[9.050022794398775,45.4512116001611],[9.050017108728774,45.4512174983171],[9.050014527941366,45.45122031676594],[9.050002237892198,45.45123446274845],[9.049998226466581,45.45123918103895],[9.049994317371384,45.45124392628791],[9.049985107001543,45.45125542462312],[9.049980610528715,45.451261187244725],[9.049976203589777,45.451266967829355],[9.049971950111129,45.45127274834713],[9.04996773527323,45.45127884388443],[9.049959574507067,45.4512914398886],[9.049955296008392,45.45129785949057],[9.04995068497775,45.45130424323268],[9.049949075354803,45.45130620615909],[9.049924395144446,45.45133709045199],[9.049912808443693,45.451351272123425],[9.049902997100824,45.45136290572823],[9.04989694142093,45.45136981215545],[9.0498907065987,45.45137660164648],[9.049878275094489,45.451389928581776],[9.049872270349777,45.4513965919574],[9.049845710948846,45.45142838615301],[9.049777884241033,45.45150540144628],[9.049716601794163,45.45157866943579],[9.049696150157386,45.451604763295364],[9.049536920329066,45.451884143322175],[9.049479470086599,45.45198265745026],[9.049410430544048,45.45213714500224],[9.049375725893581,45.452200437226566],[9.049435142131678,45.45221538943491],[9.04986207013159,45.4523228035703],[9.049876614497503,45.4523269647452],[9.04990021551557,45.45233371428861],[9.04986471348743,45.45237679066756],[9.049854186751698,45.45238952270328],[9.049842855536701,45.45240364124696],[9.049837247586419,45.45241082650794],[9.049832227457845,45.452417489453545],[9.049818062013966,45.452437180867015],[9.049813425242625,45.45244350160619],[9.04980858373303,45.45244968741819],[9.049798057065537,45.45246252746101],[9.049792768663961,45.45246953256056],[9.049787928243317,45.45247696951586],[9.049783357406772,45.45248557648954],[9.049779579374366,45.45249407510737],[9.04977308406936,45.4525102707909],[9.049769689081822,45.45251806716138],[9.049764417320857,45.45252949176329],[9.049761749330195,45.45253504655985],[9.04975895327886,45.452540403388824],[9.049755901342538,45.45254563431388],[9.049749490185151,45.45255569124984],[9.049742772088239,45.45256573931712],[9.049735810979563,45.45257576048598],[9.049728683599223,45.452585763724215],[9.049721441031378,45.45259566800033],[9.049714019238072,45.45260536532955],[9.049698191013096,45.45262487742547],[9.049690219594487,45.452634917030096],[9.049682542518223,45.45264519053405],[9.049669311414906,45.45266588064017],[9.049660970516156,45.45267753158849],[9.04963840062916,45.45270948602461],[9.049588374360924,45.45278681754103],[9.049576114189534,45.4528064180913],[9.049563366140829,45.45282384059868],[9.049531972656471,45.4528714066188],[9.049497137664114,45.45291751594267],[9.049475548223555,45.452944744377334],[9.049461332868818,45.45296616396586],[9.049449560792938,45.45298830258523],[9.049435989154501,45.45301467246564],[9.049427203116572,45.45302928492961],[9.049417918051985,45.45304360057305],[9.049408171944505,45.45305717832849],[9.049397837475526,45.45307067532635],[9.04937658039196,45.45309784959259],[9.049366310195449,45.453111742605685],[9.049357816084552,45.45312383464771],[9.049349526607271,45.45313594460332],[9.04934145462276,45.45314815347644],[9.04933361291216,45.453160452260576],[9.049326014303436,45.45317288595548],[9.049319233804672,45.45318488724912],[9.049285748036896,45.45323880882965],[9.049263680559225,45.453275479518],[9.049234239812188,45.45331903915353],[9.049210212745455,45.45335244329255],[9.04918911117109,45.45338220975533],[9.049178817723325,45.453398911085074],[9.049153313334418,45.453439570680956],[9.049138115183158,45.4534635379415],[9.049117997656593,45.45349258388701],[9.049094938335028,45.45352126204198],[9.049082188418597,45.453536875285415],[9.049072865933098,45.45355248706512],[9.04904932839524,45.453590238461864],[9.049037550729283,45.45360622032814],[9.048988989516912,45.453678825399834],[9.048958577948238,45.45372420358455],[9.048900207666328,45.45381206055137],[9.048839397616474,45.45390355494258],[9.048801132052374,45.45396236596759],[9.04876091154781,45.45402335605925],[9.048697442764716,45.45411701174775],[9.048634278543206,45.45420812897791],[9.048572417180957,45.454297571428526],[9.048552440691529,45.45432772433821],[9.048531609616926,45.454360586917204],[9.048471316204335,45.45445943473332],[9.048450651117209,45.454492090203],[9.048440037069186,45.45450826053675],[9.04842957577357,45.45452359370866],[9.04841884580026,45.4545388099792],[9.04835157535983,45.45462996477885],[9.048340589714229,45.45464536116997],[9.048319883978827,45.454675496341544],[9.048274693987695,45.45474421123165],[9.048244629532755,45.45479307247344],[9.048290934536944,45.45478740039161],[9.048342341898243,45.454781096074136],[9.049468414861972,45.45464169525662],[9.049506860531825,45.45465795258884],[9.049382542250711,45.454841402167574],[9.049199476686594,45.45510757827539],[9.04899299544029,45.455407409927076],[9.048962837519882,45.455451374828435],[9.048714648073512,45.45581185468167],[9.048590054629592,45.455993566277414],[9.048452121524496,45.45619106216544],[9.048373510238594,45.45630365319169],[9.048189607802959,45.45657447249814],[9.048131639670165,45.456658791453286],[9.048072992897032,45.45674238157767],[9.047927983298996,45.45695490248903],[9.04778376664186,45.45716869202472],[9.047604867698741,45.45744944541031],[9.04748588631117,45.45763651804218],[9.047419821432687,45.45773787891654],[9.047381352006752,45.457802513178216],[9.047261844025504,45.45800413144966],[9.047237643910611,45.458048588484495],[9.047236865558462,45.458050803057915],[9.047232858910958,45.45806214600313],[9.04722710505691,45.45807954735987],[9.047215820815106,45.45810621304786],[9.047198791766778,45.4581612343416],[9.047180349220161,45.458161988992025],[9.04716444310696,45.45816759415579],[9.047153874760182,45.45817844473108],[9.047150807776106,45.45818160535024],[9.047131884787717,45.45820457473585],[9.047106896711622,45.45823986001307],[9.047086455378645,45.458267312526395],[9.047061469398141,45.45828971731628],[9.047039504468234,45.45829980745444],[9.047050924743907,45.45836028971583],[9.046901045025264,45.45858603376923],[9.04673452014868,45.45883810339313],[9.046565170780902,45.45909461141411],[9.046440705883171,45.45927875078654],[9.046256411586345,45.45921617785487],[9.04620656689439,45.45919897891165],[9.045968858297378,45.459116975726346],[9.04584893832232,45.45907056925366],[9.04541537216037,45.4589211260557],[9.04533511862573,45.45889494669857],[9.045317047493434,45.45892883369507],[9.04526696145813,45.45902578550399],[9.045210347294892,45.459132622985216],[9.045187946529671,45.45917458558476],[9.045146043963038,45.45925305500832],[9.045068688131096,45.45939805591524],[9.045008834352517,45.45951738798728],[9.044983042071436,45.45955709261174],[9.04493412989,45.45963562769906],[9.044822658819404,45.459810255130115],[9.04477998100761,45.459880011716514],[9.044759427745081,45.45991371056306],[9.044755288988954,45.45992049894841],[9.044753896631814,45.45992278575119],[9.04472202302552,45.459955453873874],[9.044717401602242,45.45996654493713],[9.044678510572115,45.460053978032754],[9.044672113112092,45.46006742805292],[9.04465211629874,45.460109542624885],[9.044590554608417,45.46023864124124],[9.044519952093395,45.4603871045306],[9.044493085890409,45.46044475750379],[9.04444889307988,45.46054112158304],[9.04440291174176,45.46064043867061],[9.044356256229387,45.46074475156812],[9.044328189334736,45.46080492524931],[9.044313263959234,45.46083943193501],[9.044288180826857,45.46088783111274],[9.044227270830211,45.461018279418965],[9.04419548546402,45.46108345906447],[9.04417817003433,45.46112048693603],[9.044152489732475,45.46117434993414],[9.044119059440025,45.4612463079608],[9.044074864072533,45.461340997691735],[9.044023987743387,45.46144700424978],[9.043997118906551,45.461502550856395],[9.043929042330062,45.461646467263776],[9.04389261017776,45.461724322035785],[9.043879415632787,45.46176477767739],[9.043873370845152,45.461788236655266],[9.043867327146952,45.46181311779436],[9.043827776402802,45.46186103631996],[9.043812583986918,45.46188169945777],[9.043738797001303,45.462019416208854],[9.043631319521177,45.462225400458756],[9.04356181423845,45.462360010110544],[9.043538199380968,45.462406617351036],[9.043489359109255,45.46250143460717],[9.043338570888581,45.46279349371289],[9.043331546402177,45.46280742094185],[9.043300651413334,45.462868702539204],[9.042860553487522,45.46374175949036],[9.043366488676611,45.46384611689931],[9.043339618093517,45.46396900897938],[9.043281741608565,45.464227216077965],[9.043182146027538,45.46469736784391],[9.04316849518388,45.464761838278186],[9.043048608184746,45.465161492496314],[9.043041587232485,45.465214466127605],[9.04300106051184,45.46549880550205],[9.043073210892876,45.465522955270195],[9.043698078053634,45.46574953647146],[9.043967086210946,45.46584707709655],[9.043981327391526,45.46585223824121],[9.043997486840949,45.46585675957847],[9.044005342283926,45.46585846676931],[9.044015180974014,45.46586085727871],[9.044027501977125,45.46586417394283],[9.044042740414948,45.46586867762395],[9.044061216270377,45.465874611225864],[9.044083198304577,45.46588214566359],[9.04410903204403,45.46589146982395],[9.044140035439776,45.46590309625706],[9.044178639606956,45.4659178971245],[9.044227992194307,45.46593698733557],[9.044289257532334,45.46596069946592],[9.044359582170678,45.465987855462565],[9.044432133261411,45.46601580264603],[9.044498823978603,45.466041429786245],[9.04455439530923,45.46606272270106],[9.044597094246825,45.46607903401273],[9.04462800844414,45.46609084036797],[9.04464219958756,45.466097288595165],[9.044662903404156,45.466105840531945],[9.044680791890219,45.46611293539281],[9.044694368100373,45.4661181867167],[9.044708952760054,45.466120755343475],[9.044719377299016,45.466119770182374],[9.044728981050621,45.46611609403459],[9.044742547378938,45.4661087529308],[9.044756123604149,45.46609773040471],[9.04477200071834,45.46608463674752],[9.04477995144202,45.4660772978236],[9.044791172677652,45.46606463802409],[9.04479990258336,45.46605588563554],[9.044810434102107,45.46604455825338],[9.044823112177259,45.46603010668056],[9.044837923843339,45.4660123148969],[9.044864031051237,45.46597881192992],[9.044872911910193,45.465966855113905],[9.044893126413434,45.46593885406025],[9.044932282874276,45.46587511156181],[9.045097914365426,45.46557315257383],[9.045620199012607,45.46459953132326],[9.046034839535597,45.46384662871216],[9.046170559413468,45.46361528404947],[9.046208317146139,45.46356553823982],[9.046242880438461,45.46352001518103],[9.046297810979654,45.463447588860284],[9.04639735944199,45.46331534172877],[9.046417189059257,45.463288015624286],[9.046438817872678,45.46325536918509],[9.046471136606241,45.463218496944435],[9.046521967968317,45.46317074397388],[9.046620590135172,45.4630644739711],[9.046645507286884,45.463033329330045],[9.046854616145207,45.46278451005946],[9.046873591911329,45.46276150471268],[9.046878089339852,45.46275540918672],[9.046924036735703,45.462773374502895],[9.0471020089773,45.46286348304019],[9.047319003149857,45.46296391743198],[9.047489402240101,45.46303622445194],[9.047732990249557,45.46315162477671],[9.047816719822043,45.4631960100559],[9.047869852382494,45.46322430517854],[9.04797322546873,45.4632792403671],[9.048187155003417,45.46338215866288],[9.048201652662454,45.4633883722959],[9.04821410297511,45.463393686682885],[9.048225401116625,45.4633978584216],[9.04829638064444,45.46342953924698],[9.048456686930706,45.46349808662762],[9.048559026878008,45.46354022226362],[9.048666270758533,45.46358790936413],[9.048728445912428,45.463614337047375],[9.04881380602794,45.463649152813765],[9.048899503148457,45.46368900894577],[9.04901145336049,45.463735046532804],[9.04907951480065,45.46376377577762],[9.049199630295293,45.46381462524215],[9.049340689151002,45.463869876098016],[9.0494821898183,45.46393275945623],[9.049623320942414,45.46399689394005],[9.049715337347955,45.46403591863666],[9.049740111520162,45.464047564248325],[9.049763837160189,45.46405960635331],[9.049783080102058,45.46406507964758],[9.049786866593713,45.46406537504217],[9.049803624369963,45.46406667293444],[9.049826327726679,45.46406524093862],[9.049838899408385,45.464062733206866],[9.049850968949434,45.46405648126608],[9.049870928712254,45.46403331298152],[9.049932993594412,45.46394737129025],[9.050025435045418,45.463829417718195],[9.050142445528545,45.463679490726136],[9.050238209056436,45.463558403171696],[9.050325105721877,45.463449344782354],[9.050393871613396,45.463363138869404],[9.050397713692096,45.4633540281498],[9.050494179914773,45.463233255101684],[9.050570445030049,45.46313731567914],[9.05067737564816,45.46300444049292],[9.050703745804288,45.46297001795312],[9.05077641613982,45.46287432300129],[9.050905115095887,45.462711698596195],[9.05100791806945,45.462584891608515],[9.051134551403413,45.4624167502246],[9.051170151045362,45.46237673383211],[9.051195949986399,45.46234783805848],[9.051199808494468,45.46234299378889],[9.05126118628277,45.46226536860366],[9.051295220845988,45.462220465312114],[9.051427531542668,45.462052195045324],[9.051528338250769,45.46192701765309],[9.051572633969508,45.461871659486064],[9.051580200668107,45.461865616403394],[9.051588333790605,45.46186357852262],[9.05159315584229,45.46186347734764],[9.05160194327842,45.46186362642152],[9.051616232303871,45.461865465217926],[9.051667761373583,45.4618738400303],[9.051718832793117,45.461885302377155],[9.05177231401733,45.4619023802561],[9.051824247074373,45.46191890074427],[9.051861119765197,45.461929307305645],[9.051945146949588,45.46194783848805],[9.052069273772759,45.46196664848843],[9.05222028703579,45.46198542814258],[9.052261094344814,45.46199029715665],[9.05228427477066,45.461993986038536],[9.052309030228118,45.461999582416496],[9.052331019836988,45.46200188567271],[9.052356319986837,45.46200169413303],[9.052364544317522,45.462001483363665],[9.052366846257815,45.462001032263856],[9.052369813148754,45.46200039183957],[9.052372767215642,45.461999715416944],[9.052375682860209,45.461998985005565],[9.052378585672436,45.461998209594874],[9.052380861840293,45.4619975514829],[9.052383125159274,45.46199683036963],[9.052385401227635,45.46199606424532],[9.05238766447195,45.46199526212277],[9.052404760261517,45.46198918763985],[9.052408289128667,45.46198765585686],[9.052413518275882,45.461985142186755],[9.052421175687229,45.46198045816204],[9.052434520798103,45.46197118101968],[9.052444683669973,45.461964821659855],[9.052448007333654,45.461962695901526],[9.05245122865372,45.46196055218774],[9.052454347605288,45.46195836351543],[9.052459562721065,45.4619545086968],[9.052464700999824,45.461950554901755],[9.052475002970926,45.46194246727874],[9.052480281863804,45.461938423408505],[9.052502727276575,45.461921815268475],[9.052508185154256,45.46191768130495],[9.052512824840992,45.461914006767195],[9.052522027210227,45.46190637869448],[9.052526845800728,45.461902524053905],[9.052531920282002,45.46189875030546],[9.052535908497026,45.461896012171096],[9.052539986338868,45.46189337300695],[9.052544166606674,45.461890841808135],[9.05254846206636,45.461888391565765],[9.052552847144584,45.461886031292515],[9.052560466889794,45.46188213936588],[9.052568189068621,45.461878364405216],[9.052575962492869,45.46187467943087],[9.052612401064229,45.461858118874865],[9.052639377694327,45.461845118045346],[9.052738581387404,45.46180157962051],[9.052779942464161,45.46178300952372],[9.052799235035529,45.4617735585882],[9.052819358050595,45.461763081150856],[9.05283963516606,45.461753269715075],[9.052859157659153,45.46174350362779],[9.052878436903002,45.46173350362232],[9.052897485713363,45.46172329669604],[9.05291632968012,45.461712891838296],[9.052934994401499,45.461702307039445],[9.052953492701691,45.461691578297746],[9.052990105214056,45.461669751940285],[9.053110868543023,45.46159339450987],[9.053230392577277,45.46151889173606],[9.053281430731095,45.46149481734806],[9.053329564290143,45.46146961915644],[9.053427943692274,45.461421291966325],[9.053479022557571,45.461399890775596],[9.053532909678763,45.46137246656732],[9.053551947550256,45.46136448278996],[9.053572342214375,45.46135754249614],[9.053590182799034,45.461354923882254],[9.053611078132223,45.461349936570876],[9.053626127946908,45.46134478096344],[9.05363471867225,45.461339862394716],[9.053656016778831,45.46131438855035],[9.053718994118876,45.461337149735414],[9.053729498016178,45.461340034155576],[9.053743008368262,45.46134359224615],[9.05391969876957,45.4613835550651],[9.054060714881873,45.46140879971433],[9.054346097983034,45.461471978353174],[9.054533313604342,45.46152279048279],[9.054542372153936,45.461525603505685],[9.054671319586834,45.461556226739795],[9.054689489411057,45.46152351736648],[9.054733184182645,45.46143202813534],[9.054798217941,45.46133163569945],[9.054856534550993,45.461322264814065],[9.054924880193129,45.46132732675332],[9.054996316275252,45.46132729259174],[9.055067765853385,45.461327987462184],[9.055165085383322,45.461322846208944],[9.055217899610696,45.46132427901216],[9.055258290461824,45.46133517784404],[9.055305929371348,45.46135482217178],[9.055408468159127,45.46138973276803],[9.05550376823356,45.461425375851434],[9.055570053341732,45.46144209472912],[9.055632180767518,45.46144498100326],[9.055710869341564,45.46144494288374],[9.055808195439678,45.461446353826815],[9.055893110326686,45.46145651072092],[9.055950065404618,45.46146740125034],[9.05601119183729,45.461492862380084],[9.056078895234773,45.46152082255298],[9.056084180173153,45.46152321424684],[9.056183080183361,45.46156400359275],[9.056289832780546,45.46160369088119],[9.0563855862201,45.461631241082934],[9.056514711861286,45.4616726273754],[9.056580989877094,45.461694485255144],[9.056610075014213,45.461667638870985],[9.056786815480768,45.46171627421724],[9.05715438281833,45.4618418003036],[9.057346185508932,45.46189678201393],[9.0575289475332,45.46194118272235],[9.057631388214384,45.46197785556972],[9.058053781231713,45.46209120885944],[9.058359317897052,45.46215438528118],[9.058431139119346,45.462167166236085],[9.058541524129218,45.46215429258136],[9.058369498891096,45.46229097966922],[9.05835731905916,45.462300652957666],[9.058269530684703,45.462396441419926],[9.05815623796437,45.46250587027763],[9.058027391327206,45.46264075277432],[9.057972600537695,45.4626967398037],[9.057967189244449,45.46270861488539],[9.05797881599824,45.462720886416186],[9.057987854218595,45.46272849672156],[9.058009068989513,45.462735605822616],[9.058030445522885,45.46273827733292],[9.058683807212683,45.46270952922597],[9.058719903226935,45.46270928575656],[9.059061493252818,45.462714844304216],[9.059257198923664,45.46271773186198],[9.060043662890187,45.46273726974641],[9.060310888332001,45.46274487063327],[9.0603864594373,45.46274646911608],[9.060493984037484,45.46274947288685],[9.061000309059688,45.46276590200734],[9.061264701301374,45.4627792088169],[9.061471273601802,45.46278829749133],[9.061555877575426,45.46279202360844],[9.06155893477863,45.462792156985245],[9.061675572244258,45.462812022678804],[9.061731147202558,45.46282183994234],[9.061983854446517,45.46286374762144],[9.062346929279212,45.462934362152005],[9.062545265728524,45.462979124413415],[9.06297055814672,45.46306150340151],[9.063308048757605,45.46312808744089],[9.063948390134493,45.463246501142024],[9.064790822982811,45.46341076562272],[9.06506484849475,45.46346668704556],[9.065282757367134,45.463509588247106],[9.065367236504294,45.46352595804948],[9.065766118500521,45.46360421918556],[9.065913584393515,45.46363374798684],[9.066137980439507,45.463677273902775],[9.066222736522118,45.463700366676626],[9.066269875758552,45.46371433606747],[9.066474625450134,45.4637472874571],[9.066489834071119,45.46362682696021],[9.06650656583,45.46349632943545],[9.06651974559191,45.46343486281229],[9.066560602337628,45.46332706087703],[9.066579831932263,45.46327627495258],[9.066644198789641,45.463157775132466],[9.066674259969755,45.46309407543405],[9.066697697134277,45.46304284599383],[9.066722588120603,45.46299883452478],[9.066732479826005,45.46299151094285],[9.06678182976879,45.46294960048134],[9.066803003002263,45.46293123507451],[9.066834816743524,45.462911468311034],[9.06686479382282,45.462896185118375],[9.066905317185624,45.46288639539802],[9.066953205158852,45.4628740360765],[9.067008864322164,45.462867648879325],[9.06705961442857,45.462863568784954],[9.067106115562286,45.46285751092638],[9.067130590930306,45.4628518259716],[9.067175624954537,45.462838226084244],[9.06720667910663,45.46281445420545],[9.067215450521728,45.46280089352738],[9.067228077912121,45.462770669694386],[9.067228225702257,45.46274421559686],[9.06721565161343,45.462711333216056],[9.06719379007975,45.46266662892371],[9.06715004749875,45.46258226991161],[9.067149205623796,45.46256258516288],[9.067150219748704,45.462544006454486],[9.067175835109259,45.46251814052522],[9.067242850722993,45.46245636326156],[9.06733475521613,45.462371159696055],[9.067351955527572,45.462346603810616],[9.067365365360352,45.46230758549932],[9.067373801919427,45.46228139656599],[9.067374768119617,45.4622656172017],[9.067371253383381,45.462246366071355],[9.067343937467,45.462186210244305],[9.067286135360636,45.4620781328207],[9.067281658126607,45.46206696517203],[9.067282682245022,45.46205687442217],[9.06728652267557,45.46204874424518],[9.067292036726275,45.46203893889628],[9.067302775235675,45.46202321681044],[9.067318675733974,45.462002838166434],[9.067325180074663,45.46199759575515],[9.067333982908117,45.461989093624084],[9.06734374104344,45.46197720654624],[9.067350241348004,45.46196856174817],[9.067367263205373,45.46194463603518],[9.067372230287358,45.46193741429758],[9.067375896948414,45.46193377573125],[9.067378297774821,45.46193052495189],[9.067381210362445,45.46192738188436],[9.06738863372961,45.46192053674738],[9.06739608314618,45.46191408763978],[9.0674036734523,45.461907800467394],[9.067419008008438,45.461895613074844],[9.067422356206091,45.46189308182018],[9.067425857936087,45.46189058647934],[9.06742950046097,45.46188817206498],[9.067433219858623,45.461885865617646],[9.067437335654155,45.46188345992602],[9.067440071289413,45.4618821081651],[9.067442858386835,45.461881008402585],[9.06744521096982,45.46188022393124],[9.067447001012697,45.46187965581491],[9.067448126178219,45.46187929511277],[9.06744847137033,45.46187915989459],[9.067449532474907,45.46187870921985],[9.06745187212804,45.461877807742596],[9.067455541930817,45.46187682447446],[9.067460018089504,45.46187629078365],[9.067464648517772,45.46187641407693],[9.067468179287607,45.46187683505011],[9.067470840345466,45.46187731054053],[9.067472631477667,45.461877660527826],[9.067474077150766,45.46187792070789],[9.06747753132539,45.461878467740185],[9.067484516515947,45.46187964276854],[9.067511498899036,45.46188512653049],[9.067526134705902,45.461887728219914],[9.067535320829947,45.46188966703769],[9.067562520495667,45.46189500664336],[9.067576222534043,45.4618975728718],[9.067589975565758,45.461899995052164],[9.067603881938771,45.461902291126215],[9.067609625985344,45.46190309783572],[9.067615395399638,45.46190372450952],[9.0676211006993,45.46190421620538],[9.067626767487365,45.46190459091032],[9.06763244699138,45.46190490260033],[9.06763662976467,45.4619050441524],[9.067640850792671,45.46190508667048],[9.067644969365492,45.461905021236475],[9.067649023930597,45.46190491083492],[9.067653040048206,45.46190473744866],[9.067658757207115,45.46190444604644],[9.067664474290973,45.461904091636754],[9.067670191310478,45.46190368322069],[9.06767589545334,45.46190320280369],[9.067705873774164,45.46190034080258],[9.067718164250524,45.461899064408485],[9.067730518455281,45.461897598953904],[9.067742846713038,45.46189582747841],[9.067762758107737,45.461892521351245],[9.067782490149478,45.46188898129983],[9.067802145218328,45.461885252268914],[9.067841135104974,45.46187739834104],[9.067853820423585,45.46187472653999],[9.067866480008902,45.4618719287384],[9.067879113839355,45.461868986934164],[9.06789169625796,45.46186583813535],[9.06790415049815,45.46186246438537],[9.067946475682033,45.461852034155136],[9.067968276173218,45.461845450500526],[9.067993641346053,45.46183556135385],[9.068015884776083,45.461825025977355],[9.068038575079004,45.46181382425575],[9.068071915794176,45.461799006803055],[9.068097991498389,45.46178434666798],[9.068129717443666,45.461766946861744],[9.068138856975064,45.46176202687683],[9.068147932939338,45.46175743096588],[9.06815711170336,45.4617532310383],[9.068171596692698,45.4617473987732],[9.068186747135062,45.46174184514277],[9.068249466623632,45.46171502981751],[9.068308403993852,45.461691556089065],[9.068326698311171,45.4616838133198],[9.068346949169078,45.46167570034064],[9.068450800743232,45.461635835921996],[9.068471665457986,45.46162766854841],[9.068492593795195,45.46161923110226],[9.068501005672642,45.46161553566199],[9.068509071894587,45.46161158839867],[9.068516690427812,45.461607632400984],[9.068531275379206,45.46159990081387],[9.068544173226917,45.46159323235346],[9.06855073070828,45.46158976304247],[9.068557288091132,45.46158621272192],[9.06859355733299,45.46156055613152],[9.068613540885705,45.46154299218691],[9.068676232667285,45.461493593067544],[9.068707705553983,45.461468173336684],[9.068772772356947,45.46141555937554],[9.068830359628688,45.46137611836412],[9.068929553068946,45.4613561755733],[9.069065839476915,45.461336210383614],[9.069084407737458,45.46133303984929],[9.069106146776685,45.461328787279804],[9.069121543529912,45.46132610470422],[9.069138563879449,45.46132274607163],[9.069165316327844,45.4613180494207],[9.069192491664634,45.461314009583546],[9.069235353310672,45.46130349754215],[9.069252229121842,45.46129699762141],[9.069262188432964,45.461293184177904],[9.069279471872601,45.46128531585112],[9.06930356801495,45.461273563965996],[9.06931064828332,45.46126882515072],[9.069326585261694,45.46125814930945],[9.069346969767816,45.4612445004401],[9.06936383970518,45.46123321196013],[9.0693779235314,45.46122377937314],[9.06939644210179,45.461211382765434],[9.069422168941397,45.46119434626638],[9.06943759539455,45.46118460682502],[9.06945130921285,45.46117594854108],[9.069534077727024,45.461123710475626],[9.069562141429174,45.46110361217989],[9.069568465970793,45.46109802770998],[9.069576924367798,45.46109065974289],[9.069595619330174,45.461076147754326],[9.069617032394675,45.46105649452756],[9.069633575895319,45.46103985059412],[9.069636589953156,45.46103614934338],[9.069652600448935,45.461022944122924],[9.06966211746763,45.46101314522961],[9.069671711756369,45.461003778337954],[9.069680080900405,45.46099666244599],[9.069685802890756,45.460989962207925],[9.069687606303395,45.46097947491622],[9.069686075955337,45.46096230188521],[9.069680743865002,45.46092187250745],[9.069670826382733,45.460844946746114],[9.069673516322977,45.46081683490429],[9.069675556155623,45.46080096485446],[9.069680123995385,45.46079183503954],[9.069686451713821,45.4607784466699],[9.069692171772177,45.460770189254625],[9.069698120591273,45.46076073456346],[9.06971072491704,45.46074444405001],[9.069724887862712,45.46072666741872],[9.069736240244207,45.460711637806725],[9.069743517434642,45.46070068813539],[9.069755197919479,45.46067161671877],[9.06976130408008,45.460654898099044],[9.069765516153822,45.460637298529534],[9.06976832040376,45.4606189977354],[9.069768278759051,45.46060591026618],[9.069767012062325,45.460595136805715],[9.069766651980357,45.460583129653344],[9.069765802002854,45.46056798144],[9.069765277442869,45.460547018364664],[9.069764981614762,45.4605456773913],[9.069763235789775,45.4605092692941],[9.069766719461677,45.460471372848495],[9.069770228566316,45.46043335937367],[9.069782484494088,45.460331307265875],[9.069807149048772,45.460251651168726],[9.069833554725465,45.46014213759393],[9.069833469113881,45.46007245168195],[9.069796248773647,45.46002020534725],[9.06972182874082,45.459921950340565],[9.069686354431056,45.45984357292063],[9.069682754125273,45.459786337562136],[9.069703915329248,45.45973903330571],[9.069732147081314,45.4596792853271],[9.069731594584898,45.45963553165886],[9.069731196849757,45.459603245207845],[9.069732553774926,45.45959375729842],[9.06972981458853,45.45952951861469],[9.069733051891914,45.45946806661857],[9.069735940863122,45.459425030940245],[9.069735890820635,45.45941551688217],[9.06973397186448,45.45940475281641],[9.0697320739625,45.45939029831562],[9.069731739222494,45.45937808412151],[9.06973386305345,45.45935775850581],[9.069737282510921,45.45933011426548],[9.069747040281934,45.4592978666473],[9.069761243652819,45.45926122382351],[9.069774871846763,45.45923532857729],[9.069793471346498,45.45920610892645],[9.069809579653487,45.45917926705959],[9.06982846242537,45.45915161340975],[9.069888070431738,45.45907293512895],[9.070014345303658,45.458914917089835],[9.070042440820366,45.45889052515728],[9.070084757238485,45.458854360188006],[9.070159901414204,45.45879383635363],[9.07017387779063,45.458780848322995],[9.070187524751589,45.45877039878278],[9.070211191890538,45.45875405643759],[9.070262227120097,45.458725131897694],[9.070282509981414,45.458712950085605],[9.070315540316868,45.458697322067195],[9.070376215569041,45.45867580841932],[9.070450408255383,45.45865295429016],[9.07048067207706,45.45864460075497],[9.070501743888578,45.45863953823479],[9.070520439464014,45.458636673422355],[9.070550722871394,45.45863381048549],[9.0705893178673,45.45862935824751],[9.070600622104694,45.45862757809133],[9.070622092471888,45.45862418949556],[9.070648294240646,45.45862005089785],[9.070672258176744,45.45861626471227],[9.070691222170922,45.45861327369219],[9.070703472677925,45.45861133992545],[9.07071502022208,45.45860980263592],[9.07072934275494,45.45860789459288],[9.07074140173305,45.458606221970015],[9.070752194704951,45.45860472114594],[9.070763230643053,45.458603184166904],[9.070772399004161,45.45860146831784],[9.070788983886876,45.458598361735106],[9.070806783545287,45.45859502937474],[9.070871322185141,45.45858463835442],[9.070903156267695,45.45858427665315],[9.07094338109159,45.45858426979798],[9.071008219370306,45.45858852319269],[9.071057731697497,45.4585900317249],[9.071235764936816,45.45859638409992],[9.071298250191955,45.458600890819326],[9.07134483175467,45.458611114045844],[9.0713587523967,45.4586151108501],[9.071366493190656,45.45861732929149],[9.071381870809322,45.45862045208686],[9.071387320777285,45.458621555823804],[9.071407968242827,45.458624936367514],[9.071409221931637,45.45862514261116],[9.071414364610487,45.45862598550815],[9.071420620083815,45.45862687271755],[9.071427323425386,45.45862793066742],[9.071435421384754,45.45862938379423],[9.071440589848196,45.458630388692534],[9.071447216891269,45.458631797728984],[9.071456198194019,45.458633907379635],[9.071462978945318,45.45863549634008],[9.071479176373936,45.458639599724236],[9.071480379027475,45.45863990501023],[9.071493480259733,45.458643218230016],[9.07149656361191,45.458643963394785],[9.071508346888843,45.45864681838132],[9.07152304670495,45.45864998658515],[9.071529954873931,45.45865118841789],[9.07153706739018,45.458652156096],[9.071544448283408,45.45865295258679],[9.071552148793264,45.45865364086546],[9.071559862025406,45.45865427512945],[9.0715651831585,45.45865463185268],[9.071570491331546,45.45865485356828],[9.071575991242732,45.458654985153736],[9.071587809529266,45.45865516680402],[9.071592746721654,45.45865533474383],[9.07159722351597,45.45865553897474],[9.071600907199645,45.45865564468895],[9.07160383605223,45.458655579854415],[9.07160650885342,45.45865531715689],[9.07161223758023,45.458654332469976],[9.07161827289486,45.458653050557466],[9.071624333483165,45.45865152560101],[9.071630406600327,45.45864979361266],[9.071636338867272,45.45864793569751],[9.071639394315698,45.45864683566449],[9.071642219440218,45.45864565476587],[9.071644980409934,45.4586443118887],[9.071647779534212,45.45864279796804],[9.071650565664012,45.45864112203684],[9.07165358164085,45.45863914892806],[9.071656405698024,45.45863712193284],[9.0716590122667,45.45863505006824],[9.071661401324198,45.458632915332096],[9.071663496220797,45.45863078978064],[9.07166474775438,45.458629285826966],[9.071665832914597,45.45862770096789],[9.071666828305789,45.458625927143174],[9.071667785008872,45.45862390131378],[9.071668435317248,45.45862232572725],[9.071690826943456,45.45853816110217],[9.07169847396207,45.458516733870745],[9.071700054979532,45.4585128084334],[9.071701815103067,45.45850891888824],[9.071703741542592,45.45850506524329],[9.071705949215566,45.458501094409165],[9.071707353476414,45.45849899629149],[9.071709039232042,45.4584969880082],[9.071710776443048,45.45849521371955],[9.071712501125083,45.45849364646245],[9.071714110969038,45.45849229530183],[9.071716104128551,45.458490637866554],[9.071718314582643,45.458488872283084],[9.071720857475881,45.45848702548255],[9.07172384795281,45.45848512439606],[9.071727311809308,45.45848334002701],[9.07173086560492,45.45848187963881],[9.071734381416409,45.45848072530928],[9.071737871965736,45.45847982302431],[9.07174122208564,45.458479127850715],[9.071744636292085,45.45847854064934],[9.071747961183943,45.458478124523296],[9.071751273547033,45.458477915428695],[9.071754355859545,45.45847784149335],[9.071757182507298,45.458477875730125],[9.071759855697112,45.45847792806485],[9.071764115012947,45.458478105422124],[9.07176831048081,45.45847836382844],[9.071776049214737,45.4584789530568],[9.071779694676211,45.45847918480358],[9.071802539194321,45.45848034064718],[9.071906865232238,45.45848844826372],[9.071961225565609,45.45849045742438],[9.071965049815875,45.458490473028405],[9.071968873940776,45.45849038962106],[9.071972672348775,45.4584901982173],[9.07197647061997,45.45848989880116],[9.0719803710634,45.45848948230738],[9.07198418189657,45.45848900286246],[9.071987851959234,45.45848846049851],[9.07199118940052,45.45848785533582],[9.071994181384762,45.458487151378485],[9.071997032461667,45.45848627648985],[9.07200004945576,45.45848512246507],[9.07200298950414,45.45848380646995],[9.072005750320544,45.458482355571704],[9.072008370275137,45.458480769746345],[9.072010913204148,45.45847895894344],[9.072018988490203,45.45847261715006],[9.072026909951614,45.45846600542168],[9.07203466492376,45.4584592227777],[9.072042304601062,45.45845229618905],[9.072048780770043,45.458445676365415],[9.072170052257242,45.45832177297629],[9.072217038701448,45.458278259434756],[9.07223149102561,45.45826788115084],[9.072247565810235,45.45825603467551],[9.072255603034105,45.45824998092214],[9.072260905678945,45.45824588211395],[9.072275829133648,45.458233865339956],[9.072280697304722,45.45823007283955],[9.072293117197464,45.458220640936155],[9.072299340052494,45.458216019486656],[9.072305575799561,45.45821147903799],[9.072346577075704,45.45817859943162],[9.07235087060449,45.458175527373015],[9.07235512546493,45.458172221311756],[9.072358830401326,45.45816895160122],[9.07236220277477,45.45816566409823],[9.07236528106986,45.45816244878881],[9.072370952143947,45.45815641452132],[9.072375129264715,45.4581523254186],[9.072379638729526,45.458148083088595],[9.072384339607757,45.458143498598375],[9.07238895032486,45.458138419108174],[9.072392920991968,45.45813290797198],[9.072398485188566,45.45812330036089],[9.072403422743392,45.458113747151025],[9.072407822980171,45.4581040862676],[9.072411711502015,45.45809433569653],[9.072415139503459,45.45808452240868],[9.072419431888335,45.458070523095465],[9.072423238206722,45.45805648808459],[9.072426558413095,45.458042381372174],[9.072429366950853,45.45802822097636],[9.072431702018147,45.45801387185759],[9.072432533892632,45.4580042492293],[9.072432560149345,45.45799474412293],[9.072431910294174,45.45797658045041],[9.07243203979963,45.45796780436242],[9.07243338172224,45.457946930122006],[9.072436112642162,45.45793208569632],[9.072441607581773,45.45789826534999],[9.072443465570277,45.457880901185995],[9.07244522556354,45.45786693047297],[9.07244721578587,45.45785296861554],[9.072449436237088,45.457839015613736],[9.072452048252105,45.4578212009218],[9.072460140285088,45.457777945852264],[9.072469982669391,45.45769311390756],[9.072467781964868,45.45764229546752],[9.0724587502769,45.457590536231834],[9.072454455930266,45.45757286091505],[9.072450591292595,45.4575611800145],[9.07244801822441,45.45754933627987],[9.07244809249416,45.457537364859434],[9.072448716795845,45.457525447097915],[9.072450032505731,45.45751412296807],[9.072452064445859,45.457502798385946],[9.072454646164388,45.45749132944019],[9.072462191737099,45.45746089218387],[9.072465392119952,45.457443122124054],[9.072470498700058,45.457425755906876],[9.072480716771919,45.4574049120624],[9.072493083133708,45.45738376082473],[9.07249946651067,45.45737471975505],[9.072502718507717,45.45736734585452],[9.072505217329333,45.45736108855781],[9.072507511536532,45.457354849392374],[9.072509613896235,45.45734861034818],[9.072511549965121,45.457342353406816],[9.072513332510072,45.45733606055841],[9.072514503245923,45.45733141528557],[9.072515533236409,45.457326725096486],[9.07251637135685,45.45732201702656],[9.07251705601111,45.457317318054635],[9.072517599828261,45.45731250215831],[9.072517899777983,45.457307011338564],[9.072519865619778,45.457283994454556],[9.072521552864096,45.457263155996536],[9.072524064099161,45.45722653820641],[9.072520401718108,45.45715284006019],[9.0725205150801,45.45712139937894],[9.072777916771845,45.45712748314331],[9.07280585463608,45.45713140787453],[9.073003305515597,45.457173218247654],[9.073033970945032,45.45717971548332],[9.07307086375803,45.457185245634996],[9.073101119859796,45.457191689107056],[9.073262801785603,45.45721648285537],[9.073428626298154,45.45724015759587],[9.073541056528097,45.45725623345102],[9.07368275139635,45.45727348754529],[9.073769337014232,45.45728235193829],[9.07389896587441,45.45729548204638],[9.074009624968005,45.457306653017696],[9.074116445535706,45.45731657521764],[9.074146172019582,45.45731886027751],[9.074183817749581,45.457322949417794],[9.074237361411564,45.45732719027985],[9.074435877170032,45.45734091426324],[9.07449048664387,45.45735813380485],[9.074503384532099,45.45743081777336],[9.074534934275382,45.4574969728774],[9.074540554002047,45.45751052478228],[9.074596012748078,45.45762895133283],[9.074761207061854,45.45798890311394],[9.074771890432276,45.45801120070993],[9.074672781611804,45.45887793855324],[9.074648272125753,45.45888497530483],[9.074524601205805,45.458941294133325],[9.074501924985855,45.458951624039955],[9.074400060427752,45.4590465519937],[9.074576001790026,45.45909486332188],[9.074451709594971,45.45932170698779],[9.074516336861322,45.45933976610747],[9.074419529553099,45.459409793939415],[9.074334948293432,45.459469102543366],[9.074209232749363,45.45957700724964],[9.07414247437785,45.45964124574663],[9.073980052213376,45.45979032661469],[9.073726412626783,45.460031636427004],[9.073660103009036,45.460087683412475],[9.073401483072148,45.46013917299771],[9.073381236333361,45.46021882704761],[9.073309505167009,45.460316219017955],[9.073140809114562,45.46045349333389],[9.073090532790083,45.46046591078217],[9.072904977978764,45.46052354538636],[9.072620065677244,45.460621072154765],[9.07245140577756,45.460778696745784],[9.072319790101272,45.46087878117956],[9.072187011401734,45.46100009961484],[9.072115235637893,45.4610647451131],[9.072108122524007,45.46112403934836],[9.072070068809735,45.46133467828096],[9.071897873740086,45.46154185490551],[9.07167900673659,45.46178181515636],[9.071792944138886,45.461910944663586],[9.071812238979854,45.462017117692405],[9.071802787202644,45.462118889201605],[9.071793228086168,45.46213571809858],[9.07162461155559,45.46233316193508],[9.071434271427389,45.46240583783042],[9.07136722128503,45.46242623986337],[9.071362247165764,45.462427485097834],[9.07127942362638,45.46244622269532],[9.071025994350862,45.462506092612],[9.071008047990466,45.462515833824675],[9.070972456985743,45.46254135574266],[9.070933797686372,45.46256813968927],[9.070729231906444,45.462712462352954],[9.070672071326763,45.46275562147279],[9.070635274848451,45.46276858759775],[9.070500369524941,45.462821542561],[9.07040379203606,45.46286907324572],[9.07031033573558,45.46294788949655],[9.07017704106264,45.46307312131267],[9.070108113477904,45.46314869102762],[9.07001010648282,45.46328253306641],[9.069907320250389,45.46345174294987],[9.06986905054212,45.463515421489134],[9.069806298027425,45.46363090679457],[9.069778807167651,45.46372263493424],[9.069768194513017,45.46381974442044],[9.069765600227077,45.4638529147663],[9.06976540006354,45.463856578304224],[9.069763359953518,45.46389313269748],[9.069762789795313,45.46390799373247],[9.06992929269026,45.46414598745793],[9.069992160736122,45.464248695806525],[9.069980759542327,45.46425576856085],[9.069954825344404,45.464271608166946],[9.069602967490153,45.46448647844521],[9.069420832151202,45.46459263878363],[9.069375853049205,45.46462049713688],[9.069313667139228,45.46464651165376],[9.06924870684056,45.46467368894228],[9.069174505777081,45.46482266458236],[9.069268309271424,45.46500389757905],[9.06929532858465,45.465027814985206],[9.069297731769428,45.46502648138326],[9.069440945859562,45.46489032639708],[9.069449690608346,45.464886522675485],[9.069671131420588,45.464850411395425],[9.069826930175251,45.464817715021525],[9.070055955132965,45.46474990578491],[9.07025729539047,45.46468968289714],[9.070455065378548,45.46462863375153],[9.070640878119068,45.464559850744386],[9.070683076370022,45.46453870836743],[9.070829507768693,45.46446288349655],[9.070980712198773,45.46437860352557],[9.071197388642705,45.46425841368296],[9.071380447667316,45.464157920575055],[9.071609425379284,45.46403591308917],[9.071791607560463,45.46393100036343],[9.071824934495728,45.463915191716936],[9.072029468487044,45.46380511603348],[9.072341633732785,45.46363986792141],[9.072592926326609,45.46350659310482],[9.072691491934274,45.46345393773291],[9.072734888429116,45.46343081360973],[9.073002718142616,45.463287590273886],[9.073108929442908,45.46323287744217],[9.073173915562716,45.46319867713646],[9.073182671697225,45.4631941800418],[9.073200184193977,45.46318536587084],[9.07320865893133,45.46318087795473],[9.0732168520192,45.463176201196134],[9.073226284312927,45.46317033551114],[9.073235498877326,45.463164253939674],[9.073244598122496,45.46315801942367],[9.073293186108893,45.463124009535534],[9.073313249633856,45.46310964908698],[9.073536348158372,45.46294836100224],[9.073578925227327,45.46291530895169],[9.073597888586635,45.462900958159054],[9.07364077479711,45.462869625082554],[9.073645797047707,45.46286604845275],[9.073650870485196,45.46286248979199],[9.07365602072665,45.46285897608677],[9.0736597525033,45.46285649840965],[9.073663522722766,45.4628540747139],[9.073667356932143,45.46285167798002],[9.073680010273613,45.46284411799668],[9.07370107882057,45.46283555349371],[9.073741982979142,45.46283430307535],[9.073796796560522,45.4628373281855],[9.073814207552308,45.46283915319594],[9.073828125000368,45.46283975631214],[9.073929958362957,45.462862337325795],[9.074037898720904,45.46288919879594],[9.074184137197635,45.46293684577853],[9.074306001705308,45.462969206618915],[9.07441740962875,45.46299667755402],[9.07455025591551,45.463034188597526],[9.074745242961011,45.46309220836155],[9.074868849327135,45.46312579160512],[9.074961983241195,45.46314654116477],[9.07513868448581,45.46319845150475],[9.075318343682056,45.46326217797339],[9.075399329247944,45.46330435758617],[9.075514272059534,45.46337283379026],[9.075574579886604,45.46341899633647],[9.075634686017024,45.46346731022801],[9.075655617215418,45.463499736116376],[9.075661298395103,45.4635203627156],[9.07566476878795,45.463532952858586],[9.075665231488731,45.46353461774279],[9.075665709497029,45.46355738101539],[9.075666255070024,45.46358285355128],[9.075648758778406,45.46366128200189],[9.07559402150163,45.46367782595476],[9.075511940222826,45.46372603547724],[9.075447505228722,45.46379898615107],[9.075363363000868,45.46390411038769],[9.075213037127858,45.46410505784351],[9.07489481201404,45.464530348266535],[9.07482418167557,45.46464019780944],[9.074781234529647,45.4647035029884],[9.07472277539938,45.464867251648236],[9.074624906333936,45.46512927205328],[9.074591272415082,45.46522298554672],[9.07451933319994,45.465428318562445],[9.07448207603603,45.465539370336565],[9.074429351180484,45.46568765134773],[9.074332911148563,45.46597833878466],[9.074168214554934,45.46645644447246],[9.074140045654431,45.46654374555345],[9.07410911743291,45.4666143605202],[9.074083627008047,45.46666635786122],[9.07404628034518,45.46671001890357],[9.074004366918674,45.4667536918797],[9.07395605520691,45.46678581165677],[9.073876714358079,45.466821155756776],[9.073804667616093,45.46684879923982],[9.07385978426571,45.46686547866705],[9.074378446060846,45.466981877847836],[9.074155108142484,45.467440516224755],[9.074125434265374,45.467502237369395],[9.074043333999574,45.46766869217435],[9.073848072306179,45.468050650121555],[9.073582703784167,45.46859873942174],[9.073528362604009,45.46870803757744],[9.073504470450066,45.468760573806875],[9.073500835148792,45.46876871305295],[9.073526215498497,45.4687985531602],[9.073421660168757,45.46905355584566],[9.07332078813873,45.46930855607064],[9.07320994134115,45.46957685705645],[9.073106680829284,45.469846170203795],[9.073013763583818,45.470091650983434],[9.072960756429511,45.470235592889495],[9.072926607905268,45.470331556388864],[9.07299502484864,45.47031268277177],[9.073049750931789,45.470301747721756],[9.073088376972358,45.470295503427415],[9.073114083648102,45.47029027546543],[9.073146362963788,45.47028285606235],[9.073176752959508,45.47027855220526],[9.073207769364862,45.47027391490298],[9.073233248291821,45.47027065828129],[9.073261045519057,45.47026958741987],[9.073292669952185,45.47027020629776],[9.073320508541793,45.47027144865576],[9.073346160402146,45.470273331476534],[9.073373207612693,45.4702759424814],[9.073406116614855,45.47028065596723],[9.073434060427738,45.470284121480326],[9.073457450184899,45.470287706915066],[9.07349901793232,45.47029091166191],[9.07352793335082,45.47029387247303],[9.073585545169808,45.470298597079065],[9.073615561354638,45.47030200721269],[9.073664755105815,45.47030637713838],[9.07369567943163,45.470309669654846],[9.073719489004867,45.4703114275607],[9.07374896748913,45.4703145139683],[9.07378011960344,45.47031588909984],[9.073808200060075,45.47031618607711],[9.073872573463655,45.47031643268581],[9.073932048059529,45.47031730348447],[9.073961562006815,45.470318139561215],[9.074024851057015,45.470320709044266],[9.074056041054988,45.47032169703257],[9.074090033226215,45.47032311525165],[9.074121275583762,45.4703250122906],[9.074143191640397,45.47032660931307],[9.074171506451492,45.470330029400955],[9.074201905776546,45.47033290807315],[9.074228520854001,45.470337625391814],[9.074256210490605,45.47034231500588],[9.07428738194623,45.47034867654746],[9.074311682246886,45.47035392640511],[9.07433973534867,45.47036263021505],[9.074357066171459,45.470369837797755],[9.074373142413943,45.47037636211402],[9.074389243927364,45.47038264338431],[9.074409901572928,45.47039037986186],[9.074415993763157,45.47039254515505],[9.074422085800563,45.470394593434875],[9.07442806245598,45.47039645276793],[9.07443488339796,45.47039828454994],[9.07444211351969,45.470399972049876],[9.074449855410899,45.47040170422242],[9.074458006977395,45.47040367015489],[9.074466338126758,45.47040600501174],[9.074474708245113,45.47040878989333],[9.074482669185,45.4704117190561],[9.074497542025929,45.470417551058006],[9.074504799177785,45.470420336659956],[9.07453705264218,45.4704322960604],[9.074545244094507,45.47043540508933],[9.074553230910833,45.47043855025463],[9.074568705628467,45.470444840907824],[9.074576257316266,45.470447851339124],[9.074583783206618,45.47045069976846],[9.074591654443237,45.470453502967736],[9.074599666330116,45.470456252068935],[9.07462434145633,45.47046436393818],[9.074630740511738,45.470466394005136],[9.074644139872143,45.47047044474581],[9.074651217276836,45.470472726398654],[9.07465835900083,45.47047527803959],[9.074665155569175,45.47047801892597],[9.074671606851728,45.47048085004669],[9.074677789534086,45.47048371734598],[9.074701125265747,45.47049473739724],[9.074718137575157,45.47050287223656],[9.074739757870665,45.470512966292695],[9.07474691334405,45.470516238000094],[9.07475406871165,45.47051942869802],[9.074759598307304,45.47052179236161],[9.074777197857022,45.47052898170328],[9.074783329058928,45.470531606003036],[9.074789716508104,45.470534527168795],[9.074801698125532,45.47054027100531],[9.07480744565298,45.47054297656301],[9.074812988164494,45.47054543022572],[9.074818363907934,45.470547532957454],[9.074830727452962,45.47055186338294],[9.074837575020261,45.47055446020955],[9.074844461618834,45.47055755206593],[9.074850196807997,45.47056059966796],[9.074855471611608,45.47056376458322],[9.074860426797752,45.47056708272392],[9.074865126271034,45.470570509043405],[9.074869698137306,45.47057417847329],[9.074874347532116,45.47057843291823],[9.074878395713844,45.4705827237593],[9.074881931804757,45.47058672690206],[9.074885198713504,45.47059032517487],[9.074888452355214,45.47059356341573],[9.07489270444058,45.47059726005644],[9.07489746838078,45.47060106437498],[9.074902603621327,45.47060510247733],[9.074907918365367,45.47060944649663],[9.074913080012102,45.47061410565104],[9.074918537021896,45.470619619708515],[9.074923597396536,45.470625089019705],[9.074928427501687,45.47063055848096],[9.07493765266442,45.47064142567894],[9.074942137402179,45.47064692236825],[9.074954567696993,45.47066303506141],[9.074958706450172,45.47066809092645],[9.074962691084533,45.47067268784045],[9.074966867647383,45.4706773116319],[9.074979960651708,45.47069150667367],[9.074996167439865,45.47070957911491],[9.075000177333072,45.47071392398267],[9.075005301509881,45.470719258233224],[9.075021339689199,45.47073557558369],[9.075026745906628,45.47074135969946],[9.075030359000843,45.47074553380638],[9.075033690570091,45.47074964509021],[9.075039892597344,45.47075743591058],[9.075042980473935,45.47076107029988],[9.075047221144867,45.47076579305754],[9.07505158974485,45.47077051573138],[9.075075506920836,45.470795432887456],[9.075080579738525,45.47080061415099],[9.07508571647376,45.47080575936838],[9.07509087864094,45.47081078755578],[9.07509524636747,45.47081484415357],[9.07510943744275,45.47082739127638],[9.075114291871474,45.4708318796034],[9.075119005793885,45.470836530040415],[9.0751320851399,45.47085001399339],[9.07513640205819,45.47085434065322],[9.075145317422939,45.47086305679509],[9.075149787762252,45.47086731134583],[9.075154296349817,45.47087146686023],[9.075158855918911,45.47087547832486],[9.075163594421944,45.47087936365792],[9.07516856318519,45.4708832398389],[9.075179089483214,45.470891216839775],[9.075184429610928,45.47089537180815],[9.07520115485764,45.470908781355895],[9.07521218158858,45.47091789215313],[9.075240922752993,45.470943517191664],[9.075253627295705,45.470954085048504],[9.075259275692252,45.470959166915286],[9.075264885806591,45.47096432081501],[9.075270457758016,45.47096963675769],[9.07527533840585,45.470974584112156],[9.075288546799825,45.47098886005127],[9.075292876533576,45.47099318669666],[9.075298230534127,45.4709981427405],[9.075303866014938,45.47100312560238],[9.075341046639478,45.471035423826635],[9.075347604350574,45.471041261176914],[9.075354085436981,45.47104719758819],[9.075360413117451,45.471053215109016],[9.075412536387299,45.47110512569908],[9.07541768567455,45.47111004586778],[9.075433773617766,45.471125129987975],[9.075439166392501,45.47113036503096],[9.075444418505928,45.471135645171266],[9.075464570716642,45.47115742336694],[9.075475472695071,45.47116885648133],[9.075506485873637,45.47120006058424],[9.07554502462664,45.47123373500191],[9.07559280113196,45.471277916501556],[9.075650203783754,45.47132642112068],[9.075687907459342,45.47135731472761],[9.075723497047386,45.47138574344029],[9.075728836817788,45.47138956534565],[9.075734100131097,45.47139361232653],[9.07573935107227,45.47139797435066],[9.075744320592754,45.471402354562386],[9.075777097474255,45.471432054257406],[9.075781708364739,45.47143611066795],[9.07578694661663,45.47144054470635],[9.075797947791537,45.47144952944891],[9.075803531841059,45.47145425129046],[9.075809001054939,45.471459198232864],[9.075813804757887,45.47146393859148],[9.07581830147789,45.47146871515681],[9.075822567876696,45.47147345587012],[9.075830908661368,45.47148284741305],[9.075835329095025,45.471487975067525],[9.075843632418408,45.47149805071104],[9.075847745197379,45.47150271051586],[9.075852100671417,45.47150709112873],[9.075856878062751,45.47151128244126],[9.07586203914871,45.471515401491764],[9.075867545622481,45.4715195023117],[9.075885012236167,45.47153218218577],[9.075890147006447,45.471535752190796],[9.075904603567864,45.47154566174149],[9.075911236987492,45.47155062591071],[9.075916462358858,45.47155497894252],[9.075921585699753,45.47155956606787],[9.075931986393572,45.47156910925738],[9.075937480999222,45.47157389415851],[9.075944191917294,45.47157940733617],[9.075964336677862,45.47159535279207],[9.075970868197805,45.47160064106167],[9.075981306287165,45.471609437138014],[9.075996701447234,45.47162283844739],[9.076002388428746,45.47162797425734],[9.076013749975266,45.471638524915974],[9.076019616303295,45.47164384062646],[9.076025738444905,45.471649120163114],[9.07603086117664,45.471653239231316],[9.076036124475864,45.47165724119299],[9.076081737733379,45.47169040668176],[9.076125572846644,45.47172360033496],[9.076142963908945,45.4717370903102],[9.076168961485605,45.47175771237056],[9.07617577428551,45.4717628474244],[9.076181511177797,45.47176702008409],[9.076187324708549,45.47177110268247],[9.076193214901922,45.4717751132216],[9.07619915619592,45.4717790697204],[9.076205199799027,45.47178299914791],[9.07621316377576,45.47178798041768],[9.076237080551447,45.47180236614449],[9.076244814004728,45.47180715854402],[9.076251625887002,45.47181160051605],[9.076272126206673,45.471825448445394],[9.07627915581732,45.471830070291254],[9.076285749860084,45.471834242375785],[9.07630545470365,45.471846362634054],[9.076311869441554,45.47185038181913],[9.076347209168107,45.471873292882],[9.076364764267407,45.471885018515984],[9.076370807905446,45.47188895693567],[9.076377081759395,45.471892850196724],[9.076382958350559,45.47189623966529],[9.076388898665748,45.471899449071],[9.076400548647165,45.471905589003654],[9.076424028629285,45.4719185438213],[9.076437228109338,45.47192581684535],[9.07644465401697,45.47193020439069],[9.076450492612357,45.47193387291241],[9.076456229033361,45.471937667516094],[9.07647343894332,45.4719495283784],[9.076479278124353,45.47195362894673],[9.076490931217956,45.471962064125606],[9.076497000883535,45.47196631755656],[9.076503287923721,45.47197048983313],[9.076509881853879,45.471974553892565],[9.076516539532257,45.47197845589094],[9.076561426432765,45.47200384479817],[9.076580937555889,45.472014524976224],[9.07658774840928,45.472018165838925],[9.07659498127861,45.47202168940628],[9.076602674336884,45.47202494263566],[9.076610891416118,45.47202782647322],[9.076619171878928,45.47203027821935],[9.076627375195127,45.472032441984155],[9.076657845988526,45.47204010849137],[9.076665166011153,45.47204184979612],[9.076672549902636,45.47204351904966],[9.076679984833357,45.47204508925748],[9.076688033834403,45.47204665905438],[9.07669610826412,45.47204811182056],[9.076704169779562,45.47204947458471],[9.076729147331706,45.47205343632931],[9.076747150894668,45.47205611558942],[9.076756210154608,45.472057387672386],[9.076772933738306,45.47205957272913],[9.076780700443408,45.47206051263774],[9.07678846707575,45.472061398539786],[9.076796284759123,45.472062194397026],[9.076804179079758,45.472062900192284],[9.076813071167086,45.47206353331096],[9.076821899106355,45.47206403145675],[9.07684793488551,45.47206531916685],[9.07689472339744,45.47206827615266],[9.07691142000165,45.472069426091146],[9.076920030398567,45.47206987937012],[9.076928768434282,45.47207011653862],[9.0769373781486,45.472070065760235],[9.076945834028301,45.472069781058075],[9.07696223376957,45.47206899597111],[9.07697024185292,45.472068684564526],[9.077022052592547,45.47206759667528],[9.077033937224966,45.47206745368086],[9.077115980236433,45.472067902620374],[9.07711679884994,45.472067794057985],[9.07716381830335,45.47206181277561],[9.077476863132086,45.472012537292805],[9.077632006670926,45.47199476343269],[9.077714031709018,45.47198215148943],[9.07772016175647,45.471993065561755],[9.07777291549571,45.47208276087822],[9.077791290872247,45.47211400892657],[9.077738366273431,45.472151876045],[9.077678169402228,45.47219494164538],[9.077305614280359,45.4724636213916],[9.077023899279899,45.47266517244335],[9.076595919780326,45.47297368950788],[9.076035777790354,45.47337638014815],[9.075789205765382,45.47355542931188],[9.075278627142374,45.4739290101961],[9.07474593970329,45.47431637471725],[9.074734064360692,45.47433366438433],[9.075552472787546,45.474996124487866],[9.075538851998939,45.475028447064425],[9.075549739648535,45.47509585742368],[9.075585912911036,45.47512854325154],[9.075657069409997,45.475174464485605],[9.075682005692485,45.47520407934804],[9.07570620215702,45.47522574680576],[9.075758817970478,45.475336856482414],[9.0758289298724,45.475385847640055],[9.075857031793163,45.475400320681366],[9.075858923023803,45.47542735844845],[9.075812235046198,45.47553050481327],[9.075727396908984,45.47563481947049],[9.075690534698404,45.47568067690676],[9.075686083520162,45.475700716078045],[9.075679495788826,45.475730387732646],[9.075665447684909,45.475768552253506],[9.075600893005591,45.475819405473786],[9.07557258612378,45.47584330378484],[9.075564945589344,45.47587987089435],[9.075573377863622,45.47592871378778],[9.075569279975209,45.47597392852807],[9.075565059442509,45.47599428257681],[9.075559593335926,45.47601121706429],[9.075529732161403,45.4760401479484],[9.075469917635955,45.47606722632174],[9.075409641612653,45.47608402582104],[9.075352664645274,45.47610913104805],[9.075328390640008,45.47614493497621],[9.075327660382335,45.47618276667249],[9.075323512931968,45.47632582233834],[9.075361064691512,45.476384475218964],[9.075392810962128,45.47647427537127],[9.075400803988515,45.47651032813602],[9.075421887503184,45.47653829839654],[9.075472675276503,45.47658266694691],[9.075488891514583,45.4765968328582],[9.075486214728498,45.47661397252822],[9.075476759027625,45.47664224189676],[9.075454453809206,45.47666738736628],[9.075429507256306,45.47668823208859],[9.075406376388527,45.47669863444933],[9.075360382088617,45.476708880805226],[9.07534714401921,45.47671183282693],[9.075263154445087,45.47671506530409],[9.075202429317967,45.47672178386403],[9.075175222030495,45.47673595126852],[9.075173531310195,45.47676352244648],[9.075207885528878,45.476842159692815],[9.075193216810298,45.47685654390713],[9.075150148299533,45.47686382693092],[9.075079005059344,45.47685826588001],[9.074975637085645,45.47684596609315],[9.074940729917309,45.47686192067097],[9.074906710607769,45.47690112424703],[9.074885391294242,45.47695621529452],[9.074901733346557,45.477007600349346],[9.075092095068335,45.47717871998615],[9.075118764498884,45.47720269019881],[9.07512855787787,45.47723604149887],[9.075126257257327,45.47732486488824],[9.075135847314545,45.477349575358794],[9.075222330899706,45.47740291263426],[9.075251103617619,45.47743054484363],[9.075252181900533,45.47744288450922],[9.075247115572688,45.47746237499956],[9.075225793604519,45.47747673657654],[9.075180344938877,45.47749373325166],[9.075129355580293,45.477519869552836],[9.075079271980464,45.47754404302024],[9.075017145526864,45.477575407138545],[9.074965223740344,45.47760284011986],[9.07493462573106,45.47761721670312],[9.074916073019361,45.477616580745725],[9.074900288937227,45.47761006532437],[9.074877076379993,45.477597686096026],[9.074872244900503,45.47759162257408],[9.074859416477706,45.47757551015129],[9.074835247596214,45.47754616465123],[9.074816661374005,45.477520073868284],[9.07481755592246,45.477499848035414],[9.074823111907747,45.47748287752529],[9.07482030210447,45.47746721761538],[9.07480636465966,45.47745417525086],[9.074786871994029,45.477448967376624],[9.074773892606665,45.47745419641624],[9.07475535626545,45.47746595480075],[9.074734955376162,45.47748032468702],[9.074708980346761,45.477488172473166],[9.074677446546694,45.47749145136262],[9.074635702070857,45.477503881902635],[9.074609747521244,45.4775175983056],[9.074591209467307,45.47753783560755],[9.074573235705902,45.47756884673791],[9.07452520179249,45.477556204535695],[9.074502933506944,45.47755158348083],[9.074478853996409,45.477551212069805],[9.0744495318274,45.47755315731262],[9.074411574234931,45.4775557022143],[9.074377800893402,45.47755862243327],[9.074350104639171,45.47756135868477],[9.074321527031215,45.477565211624515],[9.074296202334184,45.477571465718256],[9.074272824895699,45.47757964476021],[9.074237765296598,45.47759694036897],[9.074227385036593,45.47760366183093],[9.074220264593125,45.47761806803839],[9.074204704602897,45.4776459091967],[9.0741813678469,45.4776852676607],[9.074166457206996,45.477710714127475],[9.07415283842075,45.47772607863646],[9.074130775303209,45.47774143959844],[9.074116488960518,45.47774529225426],[9.074095048659466,45.47774770936785],[9.074065178081845,45.477751086025194],[9.074030752688794,45.4777544656134],[9.073997620149216,45.477758321410526],[9.07396840708121,45.47776554104586],[9.073947624274128,45.47777179213426],[9.073935293900632,45.477784275466654],[9.073915852336555,45.47781835677921],[9.073902244079683,45.477841885158824],[9.07388925991152,45.477853405800104],[9.073865239449814,45.47785918190513],[9.073843645678537,45.47786168908026],[9.073836926467909,45.47786005522188],[9.073817919004082,45.477854126790405],[9.073800038519032,45.47784901672201],[9.07377453318497,45.47784439760719],[9.073752855296338,45.47784124318988],[9.073732035174753,45.477838502263324],[9.073710882645237,45.477835950567496],[9.073687456013518,45.477835947611275],[9.073664060621265,45.47784030111453],[9.073643892119366,45.47784673177329],[9.073624750236721,45.47785552903294],[9.073605289933624,45.47786544261766],[9.073584871486599,45.47787647293754],[9.073546564186033,45.47789568762892],[9.073527293056982,45.477903503845965],[9.073506790346766,45.47790876456444],[9.073464589721535,45.47791518229937],[9.07344697665026,45.477918973994086],[9.073431706078855,45.47792362828317],[9.073416001517373,45.47792907493589],[9.073405848711483,45.477933716946204],[9.073390902076728,45.477941530373755],[9.073374282480128,45.47795175713719],[9.073358585253052,45.477962892409586],[9.073345535590667,45.477973341911614],[9.073334212758141,45.47798346627258],[9.073304456789874,45.47801629393085],[9.073295910726255,45.47802671354712],[9.073289027883744,45.4780370870955],[9.07328334823103,45.478047855919115],[9.073278704650662,45.47805840805682],[9.073276146093756,45.47806858982193],[9.073273500111242,45.47808042782683],[9.073269357845565,45.47809278884503],[9.07326468768296,45.47810257591405],[9.07325082606419,45.47812832762373],[9.073245811082336,45.478138609967004],[9.073240415838614,45.47815166486077],[9.073234201917964,45.47816485529173],[9.07322903300114,45.47817483169844],[9.073223864929632,45.47818546517737],[9.073216742788043,45.47819880920386],[9.073210077126836,45.478208957583604],[9.073201557069828,45.47821973721587],[9.073191614857128,45.478228996585564],[9.073184240084046,45.47823495095004],[9.073172771223554,45.47824103393861],[9.073157796787722,45.478247218172],[9.073140429945662,45.47825353894326],[9.073122680387927,45.47826073305273],[9.073104059893824,45.47826722563624],[9.073086691487473,45.478272340266294],[9.073067250722461,45.478277735244234],[9.073049613635881,45.47828285904069],[9.07303294754193,45.47828690209653],[9.073014888125506,45.4782919451474],[9.072985153283966,45.47830165813956],[9.07297007529875,45.4783069423141],[9.072954637722354,45.47831118259929],[9.072941667189916,45.47831363011532],[9.072924753533284,45.47831420792769],[9.072912098378989,45.478313162852],[9.072901361667004,45.47831154049223],[9.072879452664532,45.47830785499723],[9.072877033976573,45.47830745148825],[9.072793100889118,45.478306802681495],[9.072770023032149,45.47830954462088],[9.072753200919895,45.47831167052178],[9.072735586858858,45.47831482303618],[9.072715441343172,45.4783194353139],[9.072697790576049,45.47832390199169],[9.072680294803511,45.4783295116956],[9.072663261277938,45.47833640824706],[9.072645820728827,45.47834518626264],[9.072632000836657,45.47835380896705],[9.072618514599897,45.478363214545624],[9.072590380580646,45.47838419567363],[9.072530928918503,45.47843796923237],[9.07251756377211,45.478452055242194],[9.072501666648668,45.47846720496799],[9.072488108478028,45.47848043600127],[9.072459118309128,45.478502353741234],[9.072444148524918,45.47851230029566],[9.072427297666785,45.47852204101229],[9.072411161808155,45.47853061114534],[9.072394092180245,45.47853937088611],[9.072377368482863,45.47854850844815],[9.072359660651065,45.47855847472022],[9.072348333959,45.47856579967401],[9.072341903228201,45.47856969215971],[9.072329410365871,45.47857555968477],[9.072308503980764,45.478585617974744],[9.07229323677872,45.47859313442677],[9.072275336964621,45.478603073803626],[9.072254560750155,45.47861489619754],[9.072237709244913,45.47862417783544],[9.07222116391215,45.478632757200245],[9.07220102483181,45.47864255395857],[9.072179569340017,45.478653485667195],[9.072160633557033,45.47866376771549],[9.072141466515017,45.47867330282307],[9.072125240664572,45.47868160294211],[9.072108222513782,45.478690668641526],[9.072077125443032,45.4787060258791],[9.0720620509651,45.47871422625499],[9.072047360504527,45.478722570403775],[9.072030050574975,45.478733625495515],[9.072015758404714,45.478743283536105],[9.072002746127362,45.47875328280985],[9.071989620119671,45.47876440727834],[9.071977108249877,45.47877553136013],[9.071964329922816,45.47878841980347],[9.071953982140641,45.47880096468345],[9.071944604079782,45.47881140272086],[9.071936098981979,45.478824153467016],[9.07192921915564,45.47883718222483],[9.071922759555402,45.47884863554405],[9.071909403710134,45.478870264313024],[9.071901944385777,45.47888035010552],[9.071892235543299,45.47889229151254],[9.07188606723348,45.478901395386345],[9.071878159563154,45.47891106741212],[9.071867616356922,45.47892087610278],[9.071855003198374,45.478932891333216],[9.071846263283156,45.478942104826885],[9.07183503120162,45.47895353412552],[9.071826074840194,45.47896359384697],[9.071817094479567,45.47897491372257],[9.071800740281114,45.478993123975066],[9.071786031150635,45.479007030718755],[9.07177731419727,45.47901418296394],[9.071768417956633,45.47902120930659],[9.071760813262461,45.47902766777801],[9.071750495850196,45.479033938923976],[9.07174038277577,45.47903991290828],[9.071732699022709,45.479044562226534],[9.07172505448227,45.47904986859261],[9.071714353732085,45.479056545019795],[9.071707540890028,45.47906188686903],[9.07169900113538,45.47906752682963],[9.071689618575208,45.47907447246091],[9.071678650535675,45.47908226517551],[9.071664141502024,45.47909255337688],[9.071655130604864,45.479099993828136],[9.07164192674899,45.47911038022271],[9.07162376458469,45.479125567242505]]]}}]} \ No newline at end of file diff --git a/layers/confini_hole.json b/layers/confini_hole.json new file mode 100644 index 0000000..c5f9931 --- /dev/null +++ b/layers/confini_hole.json @@ -0,0 +1 @@ +{"type":"FeatureCollection","features":[{"type":"Feature","properties":{},"geometry":{"type":"Polygon","coordinates":[[[-180,90],[180,90],[180,-90],[-180,-90],[-180,90]],[[9.07162376458469,45.479125567242505],[9.071583305317244,45.47916434178404],[9.071581736295185,45.47916809617908],[9.07152277534054,45.479226864453786],[9.071462793422969,45.47928781157477],[9.071457209075772,45.479293350665806],[9.071338992096756,45.47941077022344],[9.071169231774578,45.47957502681927],[9.07110080202087,45.47963398976413],[9.070914889154052,45.47979501562185],[9.070874326346722,45.47984387108885],[9.07081233495821,45.47991562930033],[9.070723568764139,45.48002234585026],[9.07067605866357,45.48006147544773],[9.070565215788717,45.480153974888],[9.070461532615013,45.480242338366466],[9.070351186712967,45.48033376617243],[9.07025643588393,45.48041346502788],[9.070144856645245,45.48051173414396],[9.070057944646411,45.48056747639029],[9.06992740378681,45.48066683698289],[9.069865542041496,45.48062725226902],[9.06982010794826,45.48059701856588],[9.069612681706605,45.48075968454148],[9.069358984764836,45.480951928373365],[9.069194461005575,45.48107491826217],[9.069018051859212,45.481168022752776],[9.068739551602134,45.48131608521996],[9.068607423303577,45.48138632702276],[9.06816127199038,45.481626091275324],[9.067669658708283,45.4819012004838],[9.06700955169301,45.48227498491775],[9.066947771308694,45.48230420218261],[9.066825442963799,45.482355372092556],[9.066721188846978,45.482401805846855],[9.066680763593265,45.48241991232907],[9.066649923044912,45.482438796319464],[9.066591424280315,45.48247342108251],[9.066433579668539,45.482550534026515],[9.066368904440784,45.48258860062813],[9.066133173316995,45.48273214047626],[9.0660504444566,45.48279334984558],[9.06602472608073,45.482815984133],[9.066004570159198,45.48283551887543],[9.0659816265975,45.48285661238801],[9.065971400204775,45.482865286220466],[9.065896130624779,45.482926338173414],[9.065843327201476,45.482973956714694],[9.065802723709742,45.4830044843561],[9.06576445002687,45.48304697296738],[9.065722858825152,45.48308652914106],[9.065672032790628,45.4831292679321],[9.06565850871872,45.48315221019496],[9.065657793597248,45.48316452396125],[9.065688105467082,45.483218971626805],[9.065690772510301,45.483223767629745],[9.065706210231355,45.48324014960271],[9.065692799940814,45.483295108332655],[9.065666784604876,45.48332683370931],[9.065645097190837,45.483350086672075],[9.06567516490159,45.48338141993189],[9.065776314257958,45.483480327933776],[9.065810850632444,45.48351408886473],[9.065833192299406,45.48353645252167],[9.065858134543399,45.48356142497002],[9.065964279610256,45.483664398384775],[9.065970097421424,45.483947233187955],[9.065978130909699,45.48428681794847],[9.06598047963035,45.484447151238825],[9.06600270146838,45.484498165079366],[9.066038881518631,45.48460230373104],[9.066084384472864,45.48481170357787],[9.066107248626022,45.48490865807531],[9.066129801252393,45.48506770156971],[9.06609267202035,45.48519298071363],[9.065989598575968,45.48546770517454],[9.065877407385557,45.485770508842926],[9.065715593944681,45.48620867964527],[9.066268639230826,45.48632957806276],[9.066361464899225,45.48634123473049],[9.06639264124286,45.48634498811957],[9.066427851939483,45.48635172749373],[9.066468307563762,45.48635710467153],[9.06650875342397,45.48636506512395],[9.066605748922377,45.48638601719714],[9.066755344080336,45.48644512080241],[9.066866155986302,45.486495344830224],[9.06691660341281,45.48652046419443],[9.06695843476404,45.4865420781769],[9.067091682517924,45.48661679858441],[9.067209832693667,45.4866822926629],[9.067264166428078,45.48671472739961],[9.067312467431481,45.48674238612385],[9.067341777345927,45.48674746349299],[9.06733651933306,45.48677017606613],[9.067328269489717,45.48680583381216],[9.067261087718146,45.48696769292472],[9.067181328768257,45.487185518483095],[9.067119735957737,45.48735627620571],[9.067105004131456,45.48739711328809],[9.067086649911257,45.48744799758488],[9.067057134062793,45.487528915685324],[9.067023357856915,45.487621537544996],[9.067012886946411,45.48765132791724],[9.066972482632051,45.48776626707027],[9.0669054317287,45.487965011905],[9.066837748365224,45.488105178655545],[9.066808221344537,45.48816631252543],[9.066805546484918,45.48818779043038],[9.066804253409039,45.488198160316664],[9.066794405519527,45.48823560113993],[9.066776876810874,45.48833603531633],[9.06675954479571,45.48844055582058],[9.066748693271382,45.488506062289325],[9.066739010678466,45.48856445729963],[9.066733367176658,45.488564388572286],[9.066688358068177,45.488562254489615],[9.066433967730568,45.48855019664081],[9.066209459844382,45.488539561154155],[9.06602499562441,45.488530810414034],[9.065834900542471,45.48852180157644],[9.065704237406461,45.48851561173938],[9.065269773067582,45.48849501326006],[9.06493672959232,45.48847921634714],[9.064936210802113,45.488506750649904],[9.064935957347394,45.48852011725407],[9.064936165207078,45.48853403265733],[9.064936424799628,45.48854842508347],[9.064938211080833,45.488577389238614],[9.064939242543803,45.48860652483919],[9.064941537847893,45.488677766325665],[9.064955603369247,45.48886953332025],[9.064967888353955,45.48905968113714],[9.064980432155453,45.489274644508775],[9.06500499229931,45.48963479591052],[9.065024426372265,45.48994367159603],[9.065031275529549,45.49002424450265],[9.065043507954817,45.49016804625106],[9.065040359929485,45.49016812904305],[9.063958767062985,45.49019437137916],[9.06395898798446,45.49039059264002],[9.063436616534059,45.490402943709206],[9.063263333124404,45.49040715274855],[9.0631069557301,45.490412099317545],[9.062837042717838,45.49041884503988],[9.062768860879839,45.490420781532535],[9.06266352966677,45.49042378237441],[9.062703736572416,45.49032903410722],[9.062740284822706,45.49023563797027],[9.062775026045216,45.490174727348766],[9.062817111292254,45.490112453551035],[9.06285716372302,45.49005201704992],[9.06286467596864,45.490040707705525],[9.062861676154254,45.489989682784305],[9.06284433843288,45.489887801162894],[9.062840630546548,45.489844499469456],[9.062842379706877,45.48977141954206],[9.062847806137341,45.489702406045176],[9.062869695756655,45.48961578661599],[9.062922716922818,45.48951426250392],[9.062940994368624,45.48947094876289],[9.063017832860814,45.48935993351365],[9.06309653861126,45.48928276087899],[9.063241233816521,45.48922448993553],[9.063388099413094,45.489161915140436],[9.063521441842408,45.489102542985805],[9.063616672138114,45.489052417802135],[9.063680747730423,45.48900772841126],[9.063715528813162,45.4889725242759],[9.063825371692145,45.48888720596545],[9.063865637930219,45.48884793929144],[9.063966308611468,45.48875450705746],[9.064017547374537,45.48869764629461],[9.064068805869464,45.48865837341901],[9.064121899403652,45.48861233075587],[9.06413103599572,45.48858931913954],[9.0641511620386,45.48856360108844],[9.064185946578693,45.48854328443221],[9.064181356658,45.48851298068557],[9.064173027818194,45.48845803433452],[9.064156600791152,45.48846168891209],[9.064154707326136,45.48846210401519],[9.064119907555737,45.48846889219209],[9.064035631528693,45.48848382684685],[9.06395502662301,45.4884974002463],[9.063826798764316,45.48852859699179],[9.063630782070877,45.488567950062695],[9.063354165919906,45.488626294361204],[9.063024437506822,45.488703605218596],[9.062698363638491,45.48877686268558],[9.062242223491662,45.48887589659219],[9.06201872994218,45.48892744011223],[9.06185019404762,45.488962715838746],[9.06171830109479,45.488991202892564],[9.06165052041587,45.48900748606952],[9.061622193604482,45.48901273084206],[9.061562584460809,45.48902377101019],[9.061516369543325,45.48903094255246],[9.061483806695522,45.48903599153774],[9.061489186786087,45.48907642107264],[9.061491199401416,45.48909146963842],[9.061491035066641,45.48909334193084],[9.061482148039245,45.4891943197126],[9.061462131809858,45.489322891459096],[9.061464094988805,45.489446032847965],[9.061462323561212,45.489500165702985],[9.06146979682498,45.48963007287764],[9.061475444903616,45.4897762187969],[9.061506789430783,45.48995753579085],[9.061492385629856,45.49018759958323],[9.061439355774835,45.49029588276066],[9.061397353321572,45.4904244662297],[9.061387173177618,45.490513401359664],[9.06137920449069,45.4905882217683],[9.061388516503177,45.49072624682502],[9.061375870429409,45.490889999413184],[9.061335672577849,45.49099556637651],[9.06126617462449,45.49111875487236],[9.061200299992402,45.49120809771005],[9.061136267999608,45.49129744852856],[9.061052087294865,45.49140575708236],[9.060971577701327,45.49151270447556],[9.060936814851098,45.491556026632914],[9.060971186193552,45.491565270400365],[9.060996625487162,45.4915751039647],[9.061032435107402,45.49158893744909],[9.061062426994608,45.49159564523992],[9.061068061003606,45.49159851355687],[9.06113113636967,45.49163065850349],[9.061242890541878,45.49167167043691],[9.061329525883632,45.491703298654144],[9.061452554665998,45.491743980325936],[9.061585339900232,45.49178881508612],[9.061609191044806,45.491797308219404],[9.061709666782043,45.49184603958279],[9.061790843754554,45.49189466422896],[9.06183192532993,45.49191927779759],[9.061879345950176,45.49195947763061],[9.061916505101946,45.49198993491659],[9.061986222686023,45.49204491128941],[9.062059707737378,45.49210429606275],[9.062110021451675,45.49214495328526],[9.062116280253532,45.492145624973745],[9.06215437061947,45.49214969981136],[9.062226407087481,45.49206635675225],[9.062311011954403,45.492030892032226],[9.062375110207629,45.491967859391195],[9.062433314133662,45.49190985246386],[9.062497407376508,45.491877414081245],[9.062631729387933,45.49188734999463],[9.062756310647849,45.49189565289519],[9.062954725792343,45.49190785763753],[9.06310801368586,45.49191746755813],[9.063233106986662,45.491925769657236],[9.0632859095497,45.49193682977606],[9.063322316285847,45.49193455046148],[9.063426657822863,45.491936707120175],[9.06356815136934,45.49193927517082],[9.063703246113468,45.49194184659609],[9.063825005283562,45.491944020230285],[9.063910368132067,45.49194633100964],[9.063876766721455,45.49207613481025],[9.06383266127962,45.49224280344167],[9.06379060472301,45.4923994168211],[9.063742376781619,45.49257650182895],[9.06369570010177,45.4927334597658],[9.063679027062278,45.49279278545113],[9.063591608968432,45.49287628195007],[9.063558528401064,45.49292370840874],[9.063536984655048,45.49296505281564],[9.063484937836717,45.49300130153048],[9.063392393983941,45.49304502539215],[9.063375471978913,45.493053630664726],[9.063278811925985,45.493136213920835],[9.063215240662977,45.49319007477105],[9.063162410748674,45.49323602682094],[9.063112674868332,45.493279294854815],[9.063046789045691,45.49333512809564],[9.062963975496327,45.493406218233446],[9.062920901095593,45.493444099946416],[9.062869628491887,45.493486828656266],[9.062823414052689,45.49353229987347],[9.062742291172118,45.49362828562188],[9.06254689557167,45.493899780614235],[9.062516227067329,45.49394238992715],[9.062420729884806,45.49401425164993],[9.062197677243459,45.49426481578711],[9.062074701094588,45.49435980659719],[9.061957197763846,45.4944507618846],[9.061864270237088,45.494521505628676],[9.06180415416402,45.494565966802305],[9.061681161355038,45.49464682566343],[9.061618304001257,45.49468928099316],[9.061511704913963,45.49475800656218],[9.061437904771694,45.494800458650765],[9.06137224494976,45.494784337005775],[9.06125183771906,45.494735931035514],[9.061164281873484,45.494697597540764],[9.061035673497363,45.49465121192701],[9.060931706266807,45.494608854536615],[9.060814038597417,45.494560437649135],[9.060715530212653,45.49452413482671],[9.060600620989542,45.49448178291722],[9.060513059642421,45.494449515581216],[9.060411823476295,45.49441118871388],[9.06031057250911,45.494370845546065],[9.060239435841032,45.49434261081249],[9.060173761917063,45.49431234795372],[9.060119032624346,45.494284095547904],[9.060072521953822,45.494269979349156],[9.060028739453143,45.494257886925126],[9.059976766153431,45.49424579876116],[9.059938506030885,45.494276107010556],[9.059894783194487,45.494308452315586],[9.059845582679946,45.49434079145656],[9.059801853317602,45.49437919438487],[9.059725353966872,45.49444790261716],[9.05966247195179,45.494480248790865],[9.059539478384051,45.49456313056675],[9.059468411605534,45.494601538530304],[9.059411011144945,45.49463792316429],[9.059339975833945,45.49470663731043],[9.059257999765785,45.49478948858441],[9.059124108617194,45.49491680433506],[9.058993058452735,45.495143084168625],[9.058913945970273,45.49533499850887],[9.058832071093878,45.495504708802926],[9.058736574686039,45.495732986324214],[9.058646523728765,45.495943088014535],[9.058621524639403,45.496014100439474],[9.05864145599146,45.49624120278498],[9.058519050085536,45.49655191571902],[9.058502196134532,45.49660349986598],[9.058494145513675,45.49662813062148],[9.058471996689686,45.49669588320255],[9.058458715043505,45.49673652934421],[9.058433746519073,45.49681294228493],[9.058425274794367,45.49683885138671],[9.058414225857753,45.49687268265213],[9.05840378927767,45.49690459639827],[9.058404854053773,45.49690700811709],[9.058413629009042,45.49692704881709],[9.05840578248623,45.4969386460561],[9.058387179496862,45.49696980787009],[9.058366601749379,45.49699734329299],[9.05835975500027,45.49701038917702],[9.058349968089022,45.497039368271224],[9.058336005064563,45.49707721544049],[9.058317938413923,45.497132220539896],[9.058295865106485,45.49719912695127],[9.058273788700696,45.497263063039036],[9.05824969916118,45.49733591110266],[9.058221615089531,45.49743255074719],[9.05818151331065,45.497579736912826],[9.058171484698159,45.49762284763307],[9.0581715044818,45.49764217270407],[9.058175574192,45.49767933564549],[9.058183691686775,45.49774473257691],[9.058147777421201,45.4977443367143],[9.056801978363294,45.497729510229874],[9.056747556639008,45.497728916051884],[9.056603554086955,45.49772733089767],[9.056550386672036,45.4977267450088],[9.056557927903008,45.497755130353966],[9.056554134722264,45.49778900286745],[9.056542701961526,45.49782429229206],[9.056496965165637,45.497959806372215],[9.056432185057588,45.49816164892021],[9.056308339299996,45.49854699611308],[9.056169210741862,45.49894646413316],[9.056070110245946,45.49923583061021],[9.05600528960708,45.49939957179956],[9.055938534797605,45.49954920037384],[9.055816470548251,45.499813168049215],[9.05562382343532,45.500215487600144],[9.055492231232417,45.5005034560814],[9.055383969505703,45.500736903315655],[9.055349523402782,45.500813401104004],[9.055311816893935,45.50089359984642],[9.055255071967633,45.50100796638836],[9.05522242158128,45.50107550731237],[9.055152579988988,45.50121401167535],[9.055093917805724,45.5013318354208],[9.055057594942692,45.50138764979899],[9.055015213970815,45.50146605048196],[9.05492163344726,45.501623738106204],[9.054778174394686,45.501877579713586],[9.054591516721784,45.50220064105229],[9.054560505024675,45.50225669576714],[9.05448399407925,45.50239784014008],[9.054469362861191,45.50242370683773],[9.054345060357429,45.502636242374976],[9.05408206050651,45.50311022201277],[9.054006959069412,45.50324193237528],[9.053999675658902,45.50325530222336],[9.053745320728943,45.50371330026924],[9.053722882538613,45.503754715172576],[9.053803294616738,45.503782292506536],[9.053965130567578,45.503837797566625],[9.053997603348648,45.50384951956766],[9.05441835894667,45.50399214835757],[9.054195432366837,45.504346018374385],[9.053891003294419,45.50483621868039],[9.0538770210742,45.504872499095036],[9.053901756087596,45.50487705098435],[9.05402543556084,45.504904382835],[9.05416766644706,45.50493512617463],[9.054246509825632,45.50495335193507],[9.05432381936168,45.50497385560831],[9.054444406974737,45.50500689507325],[9.054575822938265,45.50503878614799],[9.054699508584001,45.5050718238722],[9.05484174246441,45.50510485261334],[9.054968522843398,45.505134459204406],[9.055144764373253,45.50517660726977],[9.055263812375323,45.50520507412099],[9.05547406231509,45.50524377595488],[9.055681214784308,45.50528247890242],[9.055821905836604,45.50530751431949],[9.056027500887986,45.505337081423654],[9.056148090673245,45.50535757175282],[9.056245481194857,45.50537350082562],[9.056373791071723,45.505395121258154],[9.05648509265501,45.50540761393675],[9.05660723276952,45.50542923713951],[9.056684521906067,45.50544061225306],[9.056715380640929,45.50539839153935],[9.056738534431451,45.50535728173941],[9.056767839877777,45.505297923955425],[9.056786365216086,45.50527508837466],[9.056817235423965,45.505231706503054],[9.05685275563673,45.505191742685994],[9.056905239374432,45.50512895303113],[9.0569531076975,45.5050718722462],[9.056996333886492,45.50501935722881],[9.057022869383633,45.50503196340616],[9.0570285171394,45.50503464288867],[9.05708757621276,45.505069960322544],[9.057118252341157,45.50508852305427],[9.057168372520229,45.505119695447775],[9.057187522879033,45.50513303433821],[9.05732833337947,45.505098553510564],[9.057346470248879,45.50510964264072],[9.057799019820084,45.504892222775794],[9.057941430453482,45.50472070080094],[9.058330484602056,45.50447872019982],[9.058395024852556,45.50446650011677],[9.05840398463475,45.504465964505926],[9.058516364887279,45.504458274510114],[9.05852719424922,45.50445843101117],[9.05891871536041,45.50446404551002],[9.059106354238034,45.50446088879955],[9.059170430009276,45.50442075654492],[9.059243124953598,45.50429908012486],[9.059272374789234,45.504263079204115],[9.0595523391873,45.504439929265885],[9.059600334357588,45.504470246606374],[9.059613147136222,45.50446977190835],[9.059700286954742,45.504378978991724],[9.059759528026428,45.50433084706621],[9.059782680278094,45.5043151193459],[9.059804095404484,45.50431510819921],[9.05982471273993,45.504323297337336],[9.05983899633004,45.504333830020485],[9.059855687327827,45.50436952812787],[9.059869182867114,45.50438533577946],[9.059886641600787,45.50439644286305],[9.059905685139048,45.50440521786921],[9.059922347181072,45.50441340905219],[9.059935839035827,45.50442569732296],[9.059966786573732,45.50444616735339],[9.06002152730604,45.50447599494362],[9.06005167757121,45.50449296399461],[9.060098491181533,45.50451928531767],[9.060230184323265,45.504581268949806],[9.06024651462944,45.504566246787704],[9.060257201754897,45.50455296476852],[9.060307096191874,45.504490903979416],[9.060360628912521,45.50441967828025],[9.060468444756447,45.50427307696698],[9.060582969128511,45.50411604889963],[9.060670192787681,45.50399786527438],[9.060781368328012,45.50384641936409],[9.060904901861669,45.5036769738711],[9.06097926583444,45.50357624067892],[9.061057754944368,45.50346706234327],[9.061172788810001,45.503310735466336],[9.06126695061553,45.50318339369645],[9.061329746240679,45.50309849012624],[9.061410281447401,45.50298877038897],[9.061584744923717,45.50275043053982],[9.061723982041947,45.50255994046018],[9.061826383641248,45.50241999243747],[9.061913347074011,45.50230271706486],[9.061937126301343,45.50231157019131],[9.063423361247045,45.50285275193022],[9.064378606568015,45.50320160166227],[9.06475597250479,45.50333941019651],[9.064764680283389,45.5033425916254],[9.065354940928529,45.50355739812614],[9.065387211809112,45.503569729070215],[9.065643868302564,45.503667837099705],[9.06546143795975,45.50384499012931],[9.065120853782833,45.50424180206204],[9.065014125860875,45.50436652582101],[9.06483285734294,45.50457836686058],[9.064900181304397,45.504617320979406],[9.065462947198528,45.504942971204954],[9.065464548339465,45.50494389739069],[9.065865064933128,45.50517483992596],[9.066588340083097,45.50505549307194],[9.066591040439588,45.505055005454025],[9.067277185584365,45.50493122929266],[9.067296791888198,45.50492769842681],[9.067320400571484,45.50493141998256],[9.06732060541266,45.50493144686531],[9.067354302851573,45.50493676466809],[9.067438539434562,45.504954906151404],[9.067680965236004,45.50500480880988],[9.06814936386885,45.50510006786621],[9.068191168566061,45.50510895398888],[9.068217941515176,45.50511465369003],[9.068241820773268,45.505119725038085],[9.068328118809266,45.50514849477005],[9.068387561914323,45.50516723536996],[9.068482897006334,45.50519572057095],[9.068532417050147,45.505233459034685],[9.06855017944652,45.50527179250691],[9.0686255733981,45.505312548798386],[9.068753491016658,45.50536583892922],[9.068768686363663,45.5053771800339],[9.068963869022063,45.50552290544301],[9.06904742923662,45.50555212632217],[9.06908126446169,45.505565040339604],[9.069175856741687,45.50560288640228],[9.069424594035148,45.505639388127534],[9.06966876092897,45.50568562211913],[9.069882717227099,45.5057412799851],[9.069952394833598,45.50575413591266],[9.070272606355864,45.505795749756864],[9.070372258031421,45.50581448269929],[9.070493161116326,45.50582455258557],[9.070516204488392,45.50582613159989],[9.070658086269075,45.505834721265],[9.070666969816953,45.505834562779526],[9.070693542108257,45.50583284523528],[9.070773458429993,45.50579260671434],[9.070805045543791,45.505788437791594],[9.070841969695199,45.50578356349146],[9.071184517412078,45.5057929735704],[9.071303469528265,45.505798786356785],[9.071313659572647,45.50579928407912],[9.071447855611918,45.505813809168906],[9.071748169250833,45.505900589059365],[9.07195080721859,45.50596218175501],[9.072069874007823,45.505977309660835],[9.072172215834572,45.50598681336305],[9.072391914763783,45.50597556780932],[9.072480479528574,45.505992406703314],[9.072722870799936,45.50607832950134],[9.072946053812839,45.50606864684047],[9.07304477369201,45.50605855698186],[9.073090623305285,45.50603636743516],[9.073256780218019,45.50588929387489],[9.073279400425436,45.50585057532056],[9.073290102864425,45.505831513461324],[9.073292849054608,45.50582688521584],[9.073312937859287,45.50579064353419],[9.073355397974547,45.50569158787688],[9.073365879893274,45.50560102255116],[9.073359553958197,45.505529883032914],[9.073335626099835,45.50552731505212],[9.073214889013052,45.50550690596844],[9.073186135754735,45.505494764016674],[9.072088217412006,45.50529201030445],[9.072019678897677,45.50527895694275],[9.072024705821999,45.505265929402945],[9.072143190426772,45.50502564643156],[9.072246308417567,45.504801583727115],[9.072453652722569,45.504391315344954],[9.072745845658858,45.50380975855116],[9.072915770463634,45.50348139470683],[9.072984169708599,45.50334789399005],[9.073854565047974,45.50167069199472],[9.073943275589007,45.50149974258103],[9.074016113176413,45.501308623172584],[9.074159070663434,45.501012480174545],[9.074260633681636,45.50083448343366],[9.074320215050394,45.500726208263295],[9.074448065478952,45.500478454842956],[9.074647896214776,45.50010189565576],[9.074752177428776,45.49990073719614],[9.074792176372386,45.499823572854446],[9.074954282934879,45.49951490495739],[9.075030849989734,45.49935134335869],[9.07516052508838,45.49882380182251],[9.07514651720061,45.49872294615517],[9.075110221957567,45.49859966566306],[9.074934928587158,45.49837956259237],[9.07479980007188,45.498246913480756],[9.074608950057653,45.498059556559326],[9.074790650761035,45.498034793619354],[9.074989106271945,45.49797208935931],[9.075094653916826,45.49793873474872],[9.075541201824988,45.49793191592585],[9.07584384067229,45.49792728780025],[9.075859903924801,45.49792767322365],[9.076181348073346,45.497935282087646],[9.076637594052702,45.49797332236874],[9.076726278353126,45.49801118417754],[9.076964170608235,45.498112771790694],[9.077081109854973,45.49819348597834],[9.077463459104083,45.498430133941966],[9.077659675249265,45.498172555594195],[9.077763695947173,45.498053213299045],[9.078035617276539,45.497741244097824],[9.078655099541965,45.49703049151425],[9.078908770324976,45.497149229125824],[9.078964524038055,45.497150711925975],[9.078997792880543,45.49716329037906],[9.07968368175934,45.49740938856602],[9.08054009493729,45.497717289689604],[9.080813181712402,45.4978130749545],[9.080740927186746,45.49792692508722],[9.08091138772597,45.498001197982134],[9.081259302790254,45.4981527893798],[9.081291479337319,45.49815261356409],[9.081437452556075,45.498081366362705],[9.081496950015245,45.49805991080037],[9.081502046781997,45.49804401146829],[9.081574484234613,45.497818017653955],[9.081758219855093,45.49776030763665],[9.08229103395904,45.4976941115203],[9.082571461156826,45.49773093096756],[9.082675405735221,45.49770754357885],[9.082779334228823,45.49767319292651],[9.082840539375445,45.49762104212485],[9.083558804328263,45.49740526289916],[9.083793714798926,45.49805499749231],[9.084029070929748,45.498146590170535],[9.084173749200408,45.498179661646894],[9.084550945444494,45.49832254458668],[9.08587289108395,45.49879084580677],[9.086027073749978,45.49881855223904],[9.086320444803997,45.4984405881705],[9.086397564397931,45.49836822531692],[9.086474194182674,45.49826015593826],[9.086614736346146,45.498098032438826],[9.08684448700837,45.49781908966859],[9.086870091810901,45.497823570759216],[9.086979089997973,45.497958502670556],[9.08708792284455,45.4979854229756],[9.08717760572361,45.498043861127535],[9.08724160075022,45.498043812458214],[9.087324655689725,45.497953739552145],[9.087778789774042,45.49780487682706],[9.087849232804768,45.497836326272974],[9.087817339943763,45.49790385796964],[9.087862206076034,45.49794882844521],[9.087942892990903,45.497966642516104],[9.088054254910276,45.4979981954597],[9.088214354353317,45.498070080155195],[9.088547318368514,45.49819133659237],[9.088880340241925,45.49834859588461],[9.088950763385148,45.49836654321131],[9.089238965586686,45.49850799451015],[9.089705995733448,45.498703977186445],[9.09013569450295,45.49888428961308],[9.090137839185198,45.49891298301107],[9.08976862996673,45.499355760206484],[9.089695863081566,45.499443018518136],[9.089638988258008,45.499511227315125],[9.089574013849669,45.49958915445339],[9.089613293445339,45.49962049212824],[9.089623187043435,45.4996283872437],[9.089777203103397,45.49965335244675],[9.089892158332775,45.4996719933903],[9.09048377118502,45.499767919379515],[9.090357253324063,45.499891107363474],[9.09009290766096,45.50018988640982],[9.0900250767947,45.50026654690371],[9.09002303130282,45.50026807867382],[9.089912996504122,45.5003505058433],[9.089874831771096,45.500393092327734],[9.089836334819827,45.500436075101895],[9.089924710227768,45.50071503573102],[9.089946622603334,45.50077114855774],[9.08995261155969,45.50078648150273],[9.089963741293172,45.50081499682666],[9.090042248826121,45.50101302842051],[9.090086460837592,45.501126990899984],[9.090111651509304,45.50119194006161],[9.090168507274061,45.50133640583449],[9.090229589519264,45.501498375123056],[9.090298205709669,45.50167295779133],[9.090371224773396,45.5018551247544],[9.090379282487586,45.501875316563336],[9.090449990020833,45.502052426750765],[9.090470911496297,45.50210456182015],[9.090491974355656,45.50215703881014],[9.090510956837258,45.50220524198107],[9.090564485836309,45.50234118624641],[9.090590670147066,45.50240247111225],[9.090599149885756,45.50242232953471],[9.090663257169943,45.50257742843642],[9.09073989483157,45.50276373271563],[9.09079518004064,45.50290062057055],[9.09081391194301,45.50294390035761],[9.09081601896202,45.50294876820862],[9.09084132559504,45.50301315903714],[9.090922195012206,45.5032194869641],[9.09097260628254,45.50335765672354],[9.091023458015162,45.503482999739575],[9.09107722776307,45.503623858067165],[9.091088243827876,45.5036526253845],[9.091127796427234,45.50375596097645],[9.091195257238693,45.50394094006318],[9.091225491618793,45.504052266878276],[9.091234322189928,45.50414666191137],[9.091243952239925,45.50424467469139],[9.091256015820152,45.50436742016668],[9.091276586631317,45.50458237368504],[9.091280245221093,45.50462066084918],[9.091296389382311,45.50477336725284],[9.091318201032388,45.50497173099519],[9.091325535702873,45.505074984139675],[9.091340864454608,45.50522196656547],[9.091345259046605,45.5052641505514],[9.09135272791141,45.505347358450315],[9.091364806139348,45.505439185591314],[9.09136892715486,45.505470451631886],[9.091398857606675,45.505694245567696],[9.091405154293327,45.505741081525976],[9.091422048941109,45.505866613396364],[9.09144460912973,45.506060277980495],[9.091458149673771,45.50616965579777],[9.091474008680528,45.50627993185721],[9.091491047517462,45.50641529263384],[9.091504501623628,45.506550314229415],[9.091515344367975,45.506677390061384],[9.091544210456446,45.50675658442173],[9.091545923162075,45.506762883722665],[9.091553277689885,45.50679084381697],[9.091570128091108,45.50685688836764],[9.091586737043183,45.50692400422154],[9.09161407167341,45.507029707595336],[9.091614883186951,45.50703283027809],[9.091624840882478,45.50707940226012],[9.091775386249228,45.50695586976269],[9.091831827829258,45.50690956866221],[9.091824252967731,45.50690373310964],[9.091870490854935,45.506880392596045],[9.091886051265863,45.506869020921286],[9.091971911256946,45.50680020278341],[9.092021821464135,45.50676021649649],[9.092437361899982,45.50642717090286],[9.092535979861111,45.50634855800974],[9.092557828163809,45.506331141525806],[9.092612779696633,45.50629813564879],[9.09265929177474,45.506270753162866],[9.092660711596935,45.50627009494555],[9.09269664213492,45.50625349514011],[9.09287083239616,45.50617284961738],[9.0929176490083,45.50615177644897],[9.092963811574567,45.506137796544984],[9.093092025126984,45.50609894339095],[9.09331003736026,45.50603736163284],[9.0933314687799,45.50603130454589],[9.093432607709078,45.505999979844674],[9.093619856876682,45.50595270707923],[9.093824792466188,45.505903034279406],[9.093848860204211,45.505896650903125],[9.094154544968655,45.50582829901405],[9.09420571424046,45.50590034563631],[9.094307116529976,45.50604312544],[9.094800701435792,45.50673813215322],[9.094803177880168,45.50674163147675],[9.095169169508662,45.50725912613378],[9.095186273407315,45.507282955460504],[9.095208740609923,45.50731417911456],[9.095265125897203,45.5073957799244],[9.095499280785829,45.5073328934496],[9.096037843104988,45.50720056153307],[9.096557943403502,45.507068017603416],[9.096684695646891,45.50703571434908],[9.097272800526916,45.50690069752552],[9.097469141956005,45.506855615975525],[9.098192094940924,45.50667988536276],[9.098221115018568,45.50667265073382],[9.098837674327171,45.50651869945217],[9.098800656109658,45.506615356622206],[9.09856880810547,45.50722059141161],[9.09831538839581,45.507908913968066],[9.098285131235295,45.50798561003512],[9.098168995900897,45.508279932703736],[9.098136756466669,45.508372760130946],[9.09808229902297,45.50851302357787],[9.098017301167555,45.50866544729442],[9.09795650800869,45.50878441083905],[9.097792782179688,45.509135821773384],[9.097582909034456,45.50958650722695],[9.097487256540743,45.50979563568939],[9.097414608630121,45.509945527266694],[9.097332247497805,45.51011247484067],[9.097276542535198,45.51022915643222],[9.09721237543457,45.51036827553669],[9.097174827465988,45.51044278122776],[9.097031933153117,45.51074166177288],[9.096969330277501,45.51093523514197],[9.096863920124317,45.5112728508176],[9.096731696427693,45.51166770802784],[9.096638879102779,45.5119667707711],[9.096525558368759,45.5123148968462],[9.096495671759062,45.51241653368922],[9.096492615127127,45.512425879244205],[9.09648553380792,45.512447460472416],[9.0964815092272,45.512459759152044],[9.096476149978786,45.51248520033588],[9.096512012872857,45.512517420536064],[9.096268587400736,45.51268924625949],[9.096062645743016,45.51286103105242],[9.096004657770914,45.51293305119047],[9.095782004611431,45.51320173563511],[9.095600520715937,45.51341640664317],[9.095512587834616,45.513527200558634],[9.095478880904501,45.513574051549966],[9.095403678542226,45.51374879548227],[9.095304284481678,45.5139802204145],[9.095241182477785,45.514133846954884],[9.09523600238533,45.51415966596378],[9.095222942012377,45.51434152286699],[9.095221337161808,45.51434645671679],[9.09522095504729,45.51434762715679],[9.095201491620687,45.514452342289765],[9.095181774779428,45.5144519716218],[9.095175836246135,45.51447599106773],[9.095158484130673,45.51455722997978],[9.095152033149018,45.51458106082961],[9.0951216855084,45.514631419286005],[9.09511296902264,45.51464798825257],[9.095103818612396,45.514665376664205],[9.095087993629003,45.51469545293946],[9.095069232800899,45.51474604479477],[9.095040148851254,45.51489346834042],[9.095005420443016,45.515064848059104],[9.094994873897681,45.5151124717812],[9.094982268914558,45.515169431183885],[9.094916288734202,45.51529528299206],[9.09491373773331,45.515331576899996],[9.094911624202123,45.51536152478187],[9.094902821186087,45.51546412479848],[9.09489739460141,45.51552639780161],[9.094857268808628,45.5156862517188],[9.094832350391272,45.51575286129496],[9.094793572243361,45.51585368590061],[9.094795239004505,45.51601580046078],[9.094689789301981,45.516136329191035],[9.09457433083691,45.51627444491449],[9.094500439184987,45.51636376817009],[9.094458859604355,45.516412920566026],[9.094429062078474,45.5165023964523],[9.094386949780516,45.51658540179293],[9.094372314247497,45.51661527895887],[9.094352800562364,45.51666047073564],[9.09404693270707,45.51736332634478],[9.093593536699467,45.518516969484466],[9.093485050697401,45.51874164935967],[9.093411293199296,45.51882215084533],[9.093346837455947,45.518960961771285],[9.093297007982697,45.51907149781817],[9.093227156105566,45.519222734352326],[9.093205187959168,45.51927138426728],[9.093201931337395,45.51927646344225],[9.093173477692167,45.519344389624884],[9.093134050421906,45.51938076743682],[9.092987793717219,45.51945204754923],[9.092978876534533,45.519456384231184],[9.092980404078471,45.5194587502382],[9.09311590637126,45.51966841604632],[9.093151196375667,45.51966987253215],[9.093431075739668,45.51959127364436],[9.093236334144997,45.51979708553817],[9.09311371352616,45.51994682572668],[9.092719899904234,45.520423195283065],[9.09537500718335,45.52173842958329],[9.094820809533926,45.52231336473165],[9.094675110046062,45.522476149962756],[9.094619447345277,45.522536709171426],[9.094617790616052,45.52254141802523],[9.094414265999935,45.52273593390146],[9.09435133094035,45.52280490583403],[9.094471645994822,45.5228679572701],[9.094925450646112,45.523140121536066],[9.09576926123253,45.52360554179571],[9.096209326072598,45.52384026854408],[9.096272438549969,45.523876336280836],[9.09637298371191,45.52392976231072],[9.096417433475741,45.52395467550408],[9.096316383833665,45.524011259276534],[9.096191500529647,45.52408086030058],[9.096016392175283,45.52417845114634],[9.095968662621912,45.524205421889384],[9.095888524498179,45.52425557011105],[9.095585405917697,45.52445315058692],[9.095374580279692,45.524580059234665],[9.095248746210835,45.52465681574871],[9.095014154966998,45.524792636385854],[9.094754027499626,45.52494275311674],[9.094510219603004,45.52508182966401],[9.094442655153635,45.52509450464324],[9.09440063222398,45.52509665447252],[9.094321141271738,45.5250910313168],[9.094265492460346,45.52508476743964],[9.094140112194648,45.525151081278416],[9.09401930811385,45.525212710744526],[9.093837191435089,45.52530461539265],[9.09367297515795,45.52538835028573],[9.093599524715435,45.525442775866956],[9.09353610708977,45.525501108617775],[9.093524170487816,45.525515339818014],[9.093479912929359,45.52556806733034],[9.093123678394337,45.525861013320764],[9.092945021415286,45.52616716272979],[9.092957928229207,45.52622115781068],[9.092766453108625,45.52641917121437],[9.092869909869508,45.52691213104051],[9.092899339564415,45.527015158764485],[9.092924050694206,45.52714562511616],[9.092964131281303,45.52727765415916],[9.092985301841981,45.527341777563834],[9.092996511258917,45.52737569294815],[9.093008305262629,45.52739907677785],[9.093032018271737,45.52742837354177],[9.093073719725194,45.52745549547698],[9.09315834585059,45.52751372571598],[9.093259505728673,45.52758058332839],[9.093405145199489,45.52767379532294],[9.093528268093442,45.527764262218874],[9.093645940770712,45.527857541720365],[9.09377455958428,45.5279643495318],[9.093874500642775,45.52805208972872],[9.093959807401088,45.52814131798304],[9.09401582590968,45.52818335136309],[9.094071928476518,45.528221973297335],[9.094100254618704,45.52824483939217],[9.093410101468987,45.528504891345314],[9.092940328753997,45.528684328450964],[9.092917560375696,45.52869251974192],[9.092908989975399,45.52871398488151],[9.093109243031419,45.52910714462066],[9.093255961185083,45.52939435271823],[9.0954022257342,45.5292550166676],[9.095597794922496,45.529441397794855],[9.095613744247261,45.529452347612555],[9.095650490001983,45.52947801458196],[9.095693039570117,45.52949763707809],[9.095728436723903,45.529513350131595],[9.095736382494112,45.52951687185628],[9.09580797810049,45.529575291011376],[9.095879884748848,45.52962067653047],[9.095931913177184,45.52966421545067],[9.096005331347575,45.52971725940696],[9.096100383451194,45.529802904509964],[9.096161735402859,45.529854131292836],[9.096230649578946,45.52990914108088],[9.096342830096777,45.529983124411046],[9.09644021445028,45.530054050766026],[9.096493473311929,45.53009770540396],[9.096494690505756,45.53009805541516],[9.096634315971652,45.530202240432956],[9.096826058130082,45.530355571283245],[9.096930958140439,45.53043974921817],[9.096964749351136,45.53046686740643],[9.097099975004937,45.530580740557106],[9.097281981180716,45.53073078454301],[9.097437251101018,45.530852615088726],[9.097596232736272,45.530965369336606],[9.097810986429765,45.531129480018016],[9.097844093647625,45.53117531143167],[9.098047877647192,45.531334345507226],[9.098347907453796,45.53157622211315],[9.098591088824794,45.53177272821329],[9.098839622227295,45.53197492675326],[9.098974601064127,45.53208256923452],[9.099008390912587,45.53199060470653],[9.0991694655088,45.53157640534881],[9.099252094776336,45.531357764587604],[9.099283355410924,45.53127730532749],[9.09932062648161,45.53117737186769],[9.099535751967773,45.53123641128387],[9.099764459418392,45.53129917385349],[9.10026173665581,45.53143571587889],[9.100413197870598,45.53147771657389],[9.10041116780183,45.53148120170685],[9.100759491150848,45.5315872148387],[9.100731042533884,45.5316275369443],[9.10097790613153,45.531715321669004],[9.10106832513755,45.53174626812725],[9.101072181784703,45.531740126101965],[9.101191085822343,45.531550578913034],[9.101220854389423,45.53151094859713],[9.101247645935299,45.53147520929873],[9.101336702853157,45.531332007026634],[9.101417082297193,45.53120634614531],[9.101575293354289,45.53095598956083],[9.101594439413144,45.53092764670592],[9.100778097460875,45.53021204741195],[9.10050447513183,45.52997249421628],[9.100483068052132,45.52995365606201],[9.100782052638305,45.529577812221575],[9.100836548353255,45.529508970266164],[9.101026355948301,45.52926918964749],[9.101053575838737,45.52923719438542],[9.100795131422979,45.529090706972795],[9.100760168034784,45.52910350101935],[9.100515047920078,45.52919769484836],[9.10019820478295,45.5293090706215],[9.099673584805533,45.52950998751204],[9.099532757344557,45.52953288221534],[9.099266323581688,45.52963423859353],[9.09904833699758,45.52971492238816],[9.09866447322533,45.5298484310453],[9.098524181605294,45.5299003250017],[9.098432038284157,45.529758972734044],[9.09835925794369,45.52964686576179],[9.098270800683338,45.52951119877554],[9.098268348197669,45.52950744749491],[9.09820610474578,45.52940087595244],[9.098141267539345,45.529290175172925],[9.098079553045995,45.52918558330688],[9.098008021956746,45.52906932560664],[9.097726334017322,45.529154921831925],[9.097537796458559,45.529203174329815],[9.097208288967275,45.52917676651097],[9.097012327339904,45.52916006480101],[9.096910936606319,45.52914215772632],[9.096614346089904,45.52908850157935],[9.096618151678562,45.52908227873633],[9.097270532737824,45.52842739611159],[9.097256895583607,45.5284206029869],[9.097567354573926,45.52811154455907],[9.097822547032756,45.52785817614647],[9.09796799028207,45.52771475725776],[9.098066514181081,45.52761658996272],[9.098080538719504,45.52760311258393],[9.098156613378892,45.52752684565787],[9.0984248750054,45.52725867616548],[9.098547957322694,45.52718190955283],[9.098546894472928,45.52718191946755],[9.098484448570753,45.52717129804399],[9.098405269009778,45.52714044787836],[9.098310821855936,45.52711502030798],[9.09820815192646,45.52707386609177],[9.098114580435407,45.52703635837011],[9.097952966121875,45.52696526328769],[9.09783466310232,45.526903014928244],[9.097830314854628,45.526898869213916],[9.09772748025929,45.52685091000675],[9.097664039086593,45.52681977587863],[9.097568083829154,45.5267955551014],[9.097525309252669,45.52679318825579],[9.097452940013127,45.52679764225567],[9.097450929453432,45.52679758995944],[9.097448203054576,45.52679827634744],[9.09739837715228,45.526813431245266],[9.097265646321496,45.526864822208466],[9.097228967567252,45.526877616634756],[9.097208056973948,45.526885591185575],[9.097152644603401,45.52686161469949],[9.09705669522407,45.526915458494436],[9.096793971082796,45.526785077246444],[9.096877099927587,45.526722441603695],[9.096853815948533,45.526712884296835],[9.096847846198111,45.526704005429295],[9.096904881165267,45.52664366004125],[9.097056443255246,45.526506906794125],[9.097226865353166,45.52635425971734],[9.097661419074777,45.52596135999652],[9.097913618857591,45.525738245943096],[9.098107071582437,45.52573262597017],[9.09822431230144,45.525752129578194],[9.098345610783259,45.525800207520895],[9.09858302394649,45.52585322604492],[9.098722755994007,45.52586076556762],[9.098749918092158,45.525861912290175],[9.098882023989695,45.52588009728095],[9.098913585224047,45.525885191575355],[9.099070178760508,45.52596406645073],[9.099241526901464,45.52602237922569],[9.099430068308878,45.52608530330467],[9.099526738451669,45.52610849579468],[9.09961667019973,45.52613007389306],[9.099688480913212,45.52613626710115],[9.09978349304023,45.52614134195507],[9.099914081906503,45.526148311920444],[9.100076213717026,45.526171599878],[9.100247004962446,45.52618926345514],[9.100392112460183,45.52619461801007],[9.100439022792289,45.52619695315551],[9.100580597462896,45.52617427268778],[9.100758695362387,45.52602337777769],[9.100772964614293,45.526011276990886],[9.100863174447468,45.52593717403554],[9.100913060991497,45.52584921809141],[9.100967297919036,45.525759431104],[9.100977767185078,45.52567736944843],[9.10105325610445,45.525549192747576],[9.101120087482185,45.52542770231936],[9.101179562119157,45.525317037456745],[9.1011806716188,45.525314489215354],[9.101214122208257,45.52523758277363],[9.10130949065586,45.52505608485239],[9.1013404012743,45.52504121499817],[9.101471067691838,45.52489982985106],[9.101573566037377,45.52483192607913],[9.101611867605202,45.524818507750474],[9.101638971798907,45.52483044594837],[9.101729513336805,45.52476446983591],[9.101813845803182,45.52469938125775],[9.101896244169215,45.52451312385938],[9.10196176425649,45.52441177815713],[9.101985796308618,45.52437460094752],[9.102031862314663,45.52425736787372],[9.102140036666254,45.5240645886651],[9.102423552996772,45.52353505407029],[9.102432406617186,45.52350978055133],[9.10244005709564,45.52349187086656],[9.102544956513054,45.523302370513704],[9.102620843977089,45.52309399408845],[9.102632182817068,45.523048223210914],[9.10266804220841,45.5229033571386],[9.102819092372968,45.522730592894916],[9.1028348934443,45.5227095345441],[9.102833566722296,45.52264174973211],[9.102833388907728,45.52261434206012],[9.102863240291873,45.52252483702627],[9.102883240644376,45.52246119149853],[9.102891485128165,45.52243209309068],[9.102927122171325,45.52230637209995],[9.102964298561831,45.52217524015303],[9.103004138891592,45.52203749911357],[9.103039601595226,45.52191475754389],[9.10305146069816,45.52183856300024],[9.103056145221451,45.52180937776906],[9.10306918578184,45.521728069630804],[9.1030736170174,45.521700432786346],[9.1030746911519,45.52169261001091],[9.103079607039763,45.52165688989367],[9.103085331569634,45.52161521943296],[9.103078426714516,45.52159230027095],[9.103048527294089,45.52149310088921],[9.102943402006401,45.52139355505069],[9.10293795797335,45.521392344814814],[9.102855477769523,45.521374047966255],[9.1029091823891,45.52112221668228],[9.102932797005588,45.52101146600541],[9.103534856039971,45.5213429860712],[9.104072309881444,45.521638917943946],[9.104301740778025,45.52176525345614],[9.104459933327691,45.52185235539668],[9.10467430540323,45.52197039602205],[9.104914608257948,45.522102705984096],[9.105043732434861,45.52217381206287],[9.105280614705526,45.52230423419023],[9.10528726024016,45.522304228084764],[9.105284754641866,45.52230642661385],[9.10529025319433,45.522309337863426],[9.105337498599885,45.52233510911369],[9.10539014243691,45.52236500680669],[9.105435338859827,45.522390590881],[9.105476161587463,45.52241220955281],[9.10550595055846,45.522428959864754],[9.105606865612438,45.522485176729646],[9.105697499469512,45.5225348953157],[9.105733696579177,45.522554708974305],[9.10577580371148,45.522578315558846],[9.105854376969857,45.52262173549947],[9.105874168801288,45.52263325640777],[9.105905225340202,45.52264983442615],[9.105985861683791,45.5226939724435],[9.106040798237768,45.522723876715276],[9.106126821178124,45.522772519113694],[9.106230045334872,45.52283035345352],[9.106251107354876,45.522843142249606],[9.106306055664135,45.52287233530871],[9.106338408416686,45.52289034315397],[9.10637820783564,45.5229121514706],[9.106453705505578,45.52295376466474],[9.106488619958828,45.52297213012458],[9.106516343252434,45.522986370831724],[9.106521726862056,45.5229893721378],[9.106657022274598,45.523064791091336],[9.10731521650067,45.522575507112094],[9.107512548607156,45.522596105285295],[9.107611815750436,45.522605994137244],[9.10774417988314,45.522621081328],[9.107810613738765,45.52262971374144],[9.107891941065336,45.52263924118804],[9.107918697658803,45.52264332941696],[9.10793247927535,45.522645359647754],[9.107962795821221,45.52264958852798],[9.108036877322292,45.52265991477985],[9.10821183285587,45.522683296125315],[9.108320610247526,45.52269786486408],[9.108455542270397,45.52271637815705],[9.108549936053532,45.5227287820655],[9.108652309576755,45.522742447460715],[9.108689247760207,45.522747479952834],[9.108765954672236,45.522757911252505],[9.108775176353083,45.5227591356262],[9.108900104517977,45.52277570468827],[9.108886503348119,45.522827589971364],[9.10888523225105,45.52283246068214],[9.10886655921649,45.52290370278024],[9.10883758240217,45.52300368562826],[9.108822551720374,45.523058029513095],[9.108793450914572,45.52311355687603],[9.108763823693247,45.5231683736573],[9.108728584123016,45.52323453692643],[9.108935279996384,45.523242180418265],[9.108996145234055,45.52324443577662],[9.108973801741554,45.52329805755978],[9.108919957755527,45.52345113354385],[9.108849032182858,45.52365100355068],[9.108806941163996,45.52373681337196],[9.108727989438773,45.52388504359044],[9.108659599450137,45.52403228263443],[9.108696314695239,45.52404080769447],[9.108960252309485,45.524102105361415],[9.10899098356144,45.52405524430812],[9.109104860246466,45.523877160588704],[9.109154560788234,45.523793314614345],[9.109374153901408,45.52344335614307],[9.109581248860986,45.52316056511357],[9.10963348383214,45.523083557202696],[9.109647830898354,45.52307994310275],[9.109692337987601,45.52312515717575],[9.109765185463056,45.52308630241039],[9.109772898723604,45.52308219059743],[9.109793340448364,45.52307178393959],[9.10987111613036,45.523032177306796],[9.10988288314268,45.52302532531672],[9.109890801208449,45.52302118629658],[9.109930967222477,45.52300022960825],[9.110102894244434,45.5229270849949],[9.110115406658998,45.52292166341225],[9.110237216465428,45.522868575815025],[9.11026344422624,45.52285739842684],[9.110402003351956,45.52279832691748],[9.110428219050407,45.5227875635457],[9.110490028724428,45.52276220234572],[9.110570493803479,45.52269705700335],[9.110612894443744,45.522660076262426],[9.110625623584923,45.52264766969281],[9.110634083926087,45.52263932666303],[9.11077231574108,45.522465790190225],[9.11081227259035,45.52241684049909],[9.11083225100663,45.52239237464905],[9.110899031821042,45.522310014526155],[9.110909432976765,45.52229892431317],[9.111015848610256,45.52221917202174],[9.111047923227343,45.52219272320862],[9.111055020510165,45.52218802684494],[9.111157910440351,45.522106207622805],[9.111270461260052,45.522014729927214],[9.111310679832046,45.521982053486894],[9.111409224055887,45.52190457670591],[9.111578429796163,45.52177219737508],[9.111579721033575,45.521771179012404],[9.111713357016363,45.52166555787799],[9.11173939890581,45.521644974356335],[9.111752580057614,45.52163476344538],[9.111905460579525,45.521516314985995],[9.111931143489064,45.521495569753924],[9.11200511120094,45.521435830292695],[9.112091372162391,45.52137026415484],[9.112105525224615,45.52135950319496],[9.112231461185146,45.521258983508105],[9.112300719981516,45.52120755632589],[9.11234159007694,45.52117471686253],[9.11249541217736,45.521054529500745],[9.11256619489808,45.52100346069673],[9.112592702044632,45.52098535177747],[9.112654794974121,45.52094295035437],[9.112698589847687,45.52091303318901],[9.11271615865319,45.52090089165],[9.112867526229108,45.52079626880894],[9.113188746371346,45.520739489065605],[9.113567308133197,45.5206725705483],[9.113839773232261,45.52062440617908],[9.113908622220542,45.52061224049384],[9.114871373764458,45.52040819118041],[9.114979642651617,45.52038804649426],[9.115049069665082,45.5203770496624],[9.11509544284394,45.52036917227214],[9.115160262586208,45.52035927811503],[9.115205867858117,45.520351581470514],[9.115309112684365,45.52033544693938],[9.115397766418889,45.52032206329674],[9.115448239348556,45.52031543276338],[9.115494360030711,45.52030936465318],[9.115531024064381,45.52030602434316],[9.115570218883832,45.52030052124428],[9.115601733478217,45.520296105994014],[9.115619668204456,45.52029426070596],[9.115640702591325,45.520292943341445],[9.115657357279312,45.52029127935823],[9.115684023950667,45.520289227223955],[9.115692433114926,45.520281441925604],[9.115710949276302,45.52028843495292],[9.115766816337064,45.52028360801812],[9.115784650922633,45.52028288792208],[9.11581477640555,45.52028167834931],[9.115853476243524,45.520278335877755],[9.115912188338882,45.520274757124525],[9.115958046597603,45.52027188442405],[9.116002176510161,45.52026911246552],[9.116112676683635,45.520263428946095],[9.11627679589275,45.520205764524256],[9.11630865496685,45.52019457102611],[9.116311291687841,45.52019412730342],[9.11634348279801,45.52018874806167],[9.116428134283463,45.520153324396425],[9.116456475196516,45.520143592583665],[9.116467018270047,45.52013997249127],[9.116505403234175,45.520126792098054],[9.1165995193812,45.520092672816205],[9.1166015792852,45.520091923642084],[9.116607017440655,45.52009019892858],[9.116627426548819,45.52008374248549],[9.11670125859521,45.52004224499981],[9.116765371470594,45.520006553974255],[9.11679396347606,45.51998826193323],[9.116816573385629,45.519974908496934],[9.116829221108718,45.51996743382506],[9.116893042820264,45.51992723355626],[9.11698724402097,45.51986639009303],[9.117179520438047,45.51974848836232],[9.117217570316633,45.519728278341766],[9.117234452949193,45.519719314137255],[9.117366540962788,45.51964646933913],[9.117373216923802,45.51964276311525],[9.117470760147135,45.51958866652706],[9.117783920726367,45.51941148560785],[9.117825947553497,45.51937060514747],[9.117894263244043,45.519312541837365],[9.117926181451988,45.51933013281619],[9.117990325633878,45.51926107459941],[9.11801414905204,45.51922205800783],[9.118056264066059,45.51919291459024],[9.11807992167357,45.519166517466864],[9.11811552808476,45.51912922588811],[9.118124458427655,45.51911987370898],[9.11818502235707,45.51905334833487],[9.118196723461383,45.519040338911594],[9.118210470491455,45.51902604924302],[9.118220382443013,45.51901466183185],[9.118220625244307,45.51901443655788],[9.118229302108368,45.51900634476296],[9.118238220643175,45.51899748763838],[9.1182486605455,45.51898753982947],[9.118255806123148,45.518981924870424],[9.118265750077082,45.518973606741255],[9.118281873307998,45.518969053623266],[9.118300579416054,45.5189689622999],[9.118341464812325,45.518970387223504],[9.11838529290075,45.51897689462026],[9.118442443723836,45.518986655565875],[9.11837450846331,45.519073116765924],[9.117640334778843,45.52000753101941],[9.117753534928621,45.520038305923805],[9.117906001707517,45.52007974241894],[9.117852091873022,45.52024959150796],[9.117888525983211,45.520252749351876],[9.11785047190018,45.52059082756271],[9.117819808752238,45.52081977983207],[9.117785338692682,45.521053056445766],[9.117739291693315,45.52135329387092],[9.117710491267111,45.52151785150065],[9.117693627167437,45.52164065053573],[9.117700440294035,45.52164122859649],[9.119448050311558,45.521783443593286],[9.11950255380297,45.521787212144],[9.119553780902256,45.521791704162666],[9.11980133173693,45.52181140960368],[9.119888066473786,45.52175590012806],[9.120005962890474,45.52168037587723],[9.120005966630579,45.521682140055894],[9.120094428770212,45.521626259574425],[9.120160001582096,45.521584813527696],[9.120218674987099,45.52154441879203],[9.120251643903421,45.52138663385638],[9.120269872653388,45.52129407613716],[9.120271474939027,45.521264767419865],[9.120282670251742,45.521206564638504],[9.120337039462173,45.52091250107842],[9.120347463350239,45.52078662108349],[9.120364269462518,45.520651427414045],[9.120432592638558,45.52065756624719],[9.120660997847205,45.520677857014824],[9.120731075424903,45.52068407482984],[9.120792304829505,45.52069004990635],[9.120935425389217,45.52070602856912],[9.121075675959446,45.52072110099183],[9.121567715903172,45.52077552155384],[9.1217607591405,45.520796873751976],[9.122035405436371,45.52082502442876],[9.122384448038,45.52086079978047],[9.12245429820369,45.520868240907966],[9.12253591314168,45.52050198667122],[9.122539205297821,45.52048493538157],[9.122720005387293,45.5205054619698],[9.123765071442964,45.520643446962175],[9.123557575830306,45.5209874796086],[9.123542173789337,45.52126386084915],[9.123683933222352,45.52146455466096],[9.123801277727452,45.521666165773055],[9.12401712705135,45.52203704966734],[9.124022998067991,45.5222854779997],[9.124024592190153,45.52235265921872],[9.124023658498718,45.5223648204867],[9.124022137556137,45.52243037590933],[9.124009297630888,45.52267137171329],[9.123986948138063,45.522721486082645],[9.12395901752924,45.52275485575697],[9.123922591269322,45.522785417325004],[9.123922168678133,45.52278539978033],[9.12392159351566,45.52278587745188],[9.123950228147704,45.52278746663625],[9.124018099073377,45.52279038147921],[9.124195057330352,45.52278375407935],[9.12429826685786,45.52277984373243],[9.124342846119399,45.52277690604867],[9.124476755373703,45.52278784974736],[9.124555465099178,45.52279351577696],[9.124612181592765,45.52278987171738],[9.124703027107868,45.52278254510103],[9.12478939392765,45.5227765554296],[9.124914869110556,45.52277775079533],[9.124964283222571,45.52277822794943],[9.12496519236883,45.522778235958484],[9.124986435692193,45.52277843780282],[9.12514666337592,45.52277996402466],[9.125180967688419,45.52278028657544],[9.1254691085925,45.522808423238914],[9.125594108907693,45.522820626515745],[9.125645220232517,45.52277809507199],[9.12561874682819,45.5228214365834],[9.12602271148449,45.5228347102409],[9.126230533206797,45.52284152911801],[9.126283854024956,45.522848293045456],[9.126523358687859,45.5228569756491],[9.126783836739042,45.52286534650643],[9.1268631441184,45.52286900307699],[9.126984343429804,45.5228704799344],[9.127211812938853,45.52287391789434],[9.127408496891425,45.522881620088555],[9.127463339318902,45.52288166707929],[9.127655684244045,45.522884441167214],[9.1277388339042,45.52288845288442],[9.12782679262461,45.522890028922966],[9.127932075391948,45.52289131551636],[9.128162898320701,45.52289407276688],[9.128437767479316,45.522901676670855],[9.128883920986016,45.5229133087271],[9.128951288213726,45.522914150991966],[9.128842738939023,45.52353660639496],[9.128453359269344,45.52407882763716],[9.128313542012556,45.524869328770215],[9.128519350996536,45.52495627198284],[9.128587155225011,45.52498493583509],[9.128623031242725,45.525000098114994],[9.128670302647828,45.525009099949344],[9.128694544155612,45.52497029672212],[9.128707108008408,45.52495429695869],[9.128719735899988,45.52493830612275],[9.128732414984274,45.524922306226976],[9.128745222235022,45.524906360191196],[9.128758632013353,45.52489071950805],[9.128772452079069,45.52487531238606],[9.12878634898813,45.52485991417692],[9.128800425365379,45.52484460577343],[9.128814783753665,45.524829432064934],[9.12883097594178,45.52481543541318],[9.12884778366621,45.52480183410741],[9.128864655489785,45.52478826873072],[9.128881591453489,45.52477475728482],[9.128898860832313,45.524761461483436],[9.128916643183873,45.524748507137204],[9.128934335727935,45.524735480881866],[9.128951874398295,45.52472236478772],[9.128969708027562,45.52470944637912],[9.128987477520933,45.524696483035314],[9.129004246675082,45.52468284574594],[9.129021144035544,45.52466928031709],[9.129038708316253,45.52465618218248],[9.129056875348398,45.52464348840763],[9.129075683649653,45.52463124395351],[9.12909474833047,45.52461912522025],[9.129116000667697,45.52460613092761],[9.12913541184708,45.524594353832136],[9.129154925622736,45.524582648625035],[9.129174311093726,45.524570835548154],[9.129193927437015,45.52455919322512],[9.129213761785987,45.52454769466762],[9.129233198514294,45.52453590852563],[9.129252737838872,45.52452419427191],[9.129272302765324,45.52451247998599],[9.129291572675417,45.52450055000742],[9.129310945140645,45.52448867391539],[9.129330394551015,45.52447685173873],[9.12934972848213,45.524464930678946],[9.129368639161862,45.52445271306335],[9.129386921443105,45.52444008211188],[9.129404613781944,45.5244270557832],[9.129422318958765,45.52441404743914],[9.129440062562894,45.52440104804978],[9.129457601011815,45.52438793187745],[9.129483228987795,45.52436781283644],[9.129499998006917,45.52435421147733],[9.129516523332521,45.52434043937378],[9.129532202184414,45.52432608316483],[9.129547649447286,45.5243112501665],[9.12956700400842,45.524291606250564],[9.129581490779566,45.52427672932956],[9.129595798088513,45.52426177160137],[9.129609413243477,45.524246517624064],[9.129622861762137,45.52423119182626],[9.129636130839637,45.52421579422255],[9.129649002565666,45.524200226049395],[9.129660848922192,45.52418423599205],[9.129666887455588,45.524176290337394],[9.129679349943363,45.52416095664821],[9.12969220881945,45.5241453794837],[9.129705311249772,45.52412991905389],[9.129717567683102,45.524114081541775],[9.129730298365235,45.52409845051247],[9.129743490470387,45.52408301697939],[9.129756721024277,45.52406760140305],[9.129769323450502,45.52405188950625],[9.129782425755465,45.524036393063774],[9.129795707404085,45.52402093242023],[9.129813556382743,45.523998139843016],[9.129825786693116,45.52398210432817],[9.12983699194657,45.5239657819443],[9.129846813483834,45.52394911909286],[9.129856686234733,45.52393245618244],[9.129866930506445,45.52391587385822],[9.129877430972412,45.523899336247126],[9.129906516608504,45.523840482194785],[9.1299139422775,45.523823245995345],[9.129921022066974,45.52380594718125],[9.12992853742278,45.5237887378818],[9.129932256653511,45.52378011977408],[9.129944275051788,45.52375547959892],[9.129946819956412,45.52373733084002],[9.12995143530084,45.52371188897991],[9.129953481227343,45.52369392080547],[9.129955386279104,45.52367594378993],[9.12995724011049,45.52365796683234],[9.129959029896089,45.52363998094648],[9.129960691632693,45.52362199520579],[9.12996230212846,45.523604000522255],[9.129963874208872,45.523586005882244],[9.129965254175353,45.523567993458286],[9.129966249997874,45.5235499814702],[9.129966810457743,45.5235319699761],[9.129966679460155,45.52351395926661],[9.129965818632837,45.52349596738711],[9.129964087124199,45.52347799449747],[9.129961459242898,45.523460004623],[9.129957686449362,45.52343971180989],[9.129953676114662,45.52342192152428],[9.129949166501122,45.523404176809635],[9.129943696700835,45.523386505191645],[9.129938022028334,45.523368833805755],[9.129932936190718,45.52335108074315],[9.129928554450625,45.52333325487407],[9.129925094487568,45.523315355951574],[9.129923222145727,45.52329738322054],[9.129923500913423,45.52327937204537],[9.129926032957572,45.523261205298176],[9.12993108388065,45.523235870953705],[9.12993593452076,45.52321811561848],[9.129940785137165,45.523200351282036],[9.12994554605572,45.52318256004433],[9.129950306909281,45.523164741803676],[9.12995524708735,45.523146950362054],[9.129960635591276,45.52312923041885],[9.129968189259369,45.523112021071256],[9.129976716615008,45.523095044642275],[9.129985320834855,45.52307808612719],[9.129994040353493,45.523061154483344],[9.13000309299471,45.523044312469956],[9.130012299327706,45.523027488283184],[9.13002145439527,45.52301064615195],[9.130030532567478,45.52299377710443],[9.130035110055134,45.52298533803636],[9.130056575807124,45.522942991291565],[9.130062222628352,45.522931832727274],[9.130124063536941,45.522940529386794],[9.13025240783131,45.52295858337169],[9.13035460902331,45.52297279657169],[9.131293839298323,45.5231416342216],[9.131798427058495,45.523237391581134],[9.132343295297378,45.523478843208096],[9.132361445690597,45.523486887064024],[9.132593076699537,45.52354374801149],[9.132616574226676,45.523549517401726],[9.132704140777484,45.523574474551125],[9.133313061862992,45.52371630603264],[9.133405946359087,45.523737260040356],[9.133761246256805,45.52382555874342],[9.134103828768557,45.52390708453334],[9.134312546792936,45.52395496789148],[9.134617891621128,45.52402464558032],[9.134834902160371,45.524075407532585],[9.135266400420091,45.52417633911773],[9.135323939620529,45.524189799532245],[9.135437326906425,45.52421632623348],[9.135491716393192,45.52422988029779],[9.135744737809421,45.52428670053596],[9.135823271723416,45.523999072781734],[9.135894482661392,45.52372301984227],[9.135823808731553,45.523710682407824],[9.135513377472517,45.5236610860282],[9.135441933713611,45.52364803819496],[9.135364832856109,45.52363607711568],[9.135288782044947,45.52362412374468],[9.135135103811507,45.52359949863695],[9.135280288031195,45.52317237716072],[9.13528485194375,45.52315858234564],[9.135357314498865,45.52293939609499],[9.134974679944056,45.52287801133978],[9.13457368607319,45.522811957394005],[9.134565564746227,45.522810616797905],[9.134553741884543,45.52280885750676],[9.13444374497342,45.52279054379067],[9.134295747769409,45.52276842213999],[9.134310337500326,45.522722086244585],[9.134320148775535,45.522690958522425],[9.134320987830872,45.52268841027509],[9.1344105977196,45.52241484787488],[9.134427657717827,45.522362775469496],[9.134429297566607,45.522357751025325],[9.134457844035,45.52227370282618],[9.134496651864163,45.522159453445674],[9.134519330636461,45.52209028165735],[9.134639330970295,45.521631507182974],[9.134729674586945,45.52126411790229],[9.13480715141019,45.5209461947982],[9.134808843540737,45.52093627377841],[9.13586644818915,45.521038642612226],[9.135888719939741,45.521040803412255],[9.136136866452881,45.52105696238478],[9.136684557864683,45.521100594552905],[9.136761370984342,45.52110607441897],[9.136771303454996,45.52105159791364],[9.136778139640024,45.521019285401444],[9.136821253154782,45.52078167227771],[9.136960495561459,45.52004507644247],[9.136972202257972,45.5199831810177],[9.137444860198471,45.52004055369094],[9.13786275292984,45.52009128465862],[9.13792817521163,45.5200992257083],[9.137979816298435,45.52010549115144],[9.13804387906304,45.52011247967396],[9.138183134898437,45.5201331578772],[9.138403572287862,45.52016065953644],[9.138448126287887,45.52016424205419],[9.13869040644415,45.52019648724354],[9.138752564250627,45.52020455778781],[9.139020527700715,45.52024120861332],[9.139098706126656,45.520250357631895],[9.13965874734351,45.52031969421307],[9.139766595507348,45.520335035229934],[9.140038802484609,45.52036816812217],[9.140337612497552,45.52040477812819],[9.140489849490141,45.52042394345298],[9.14058097912064,45.52043541580866],[9.14148985669407,45.5205498233217],[9.141677713967987,45.52057347051158],[9.141686487743462,45.52057464777843],[9.141517658879703,45.52126321189962],[9.141356882439206,45.521896410020304],[9.142526053817987,45.52202311593321],[9.14254796822942,45.52202549190166],[9.142582997995518,45.52202929168379],[9.142695067615213,45.52204142934403],[9.142886699916053,45.52205693299345],[9.142940628972992,45.52176671166288],[9.143113589776018,45.521796684734994],[9.143189078403507,45.521809434686254],[9.143194496974592,45.521810346004905],[9.143564574894006,45.521872835098534],[9.143642187135153,45.521521611417704],[9.14373468214546,45.52153532977539],[9.143933024462997,45.52157174141284],[9.143941006129968,45.52157353156541],[9.144103900596765,45.52160772822944],[9.144094952759659,45.52164386923036],[9.14407147081258,45.52181030800185],[9.144037011626846,45.52196020786095],[9.144006372648436,45.52209684452972],[9.143981691378448,45.52220980124753],[9.143975435098616,45.52226213152493],[9.143973879563825,45.52231504995214],[9.143937593332732,45.522542243053856],[9.143935922672897,45.522570058028414],[9.143937480249557,45.52259342248513],[9.14394407244672,45.52261270319115],[9.143944631295602,45.522636077904124],[9.143943187363085,45.52266241644074],[9.144024864180846,45.5226710086294],[9.144050518572069,45.52267366763467],[9.144287317419879,45.52270006623185],[9.144593634328185,45.52273209215876],[9.145011779151382,45.52277597392707],[9.145205373599495,45.522796430712106],[9.145340929322758,45.52226040633698],[9.14537566735043,45.52213060481706],[9.145473293036295,45.52174883233615],[9.145495238852309,45.52165387162532],[9.145526517490513,45.52151851186568],[9.145545279470944,45.52144525643512],[9.145867216931,45.52149426185645],[9.146164605458237,45.52153693405319],[9.146485588368693,45.52158281562629],[9.146776062113416,45.521624964022195],[9.146956962339436,45.521649664553394],[9.147293877321006,45.52170128400004],[9.147365468821864,45.521711956989996],[9.147490691784713,45.52173009463863],[9.14760344842106,45.5217452689139],[9.147646012382017,45.52175100163146],[9.147711094394497,45.5217597656006],[9.147955379133483,45.521794976853805],[9.148222233445683,45.52183320068246],[9.148316163829872,45.521846787458465],[9.148380825045964,45.521856136651515],[9.148507585035963,45.52187421718741],[9.148780616536184,45.52101833312137],[9.14882721104561,45.52087227743206],[9.148804221863882,45.520870129087925],[9.148767376060094,45.52086703564538],[9.148653316727795,45.520857453787485],[9.148374492785214,45.520833098908],[9.14821515298037,45.52081671657396],[9.148129822956857,45.52080580986459],[9.148122109379534,45.52077437958513],[9.148161462533928,45.520659296739794],[9.148173381863348,45.520624564714915],[9.14828535758089,45.52029858594718],[9.148210819970366,45.52028684623384],[9.14817457663166,45.52027896332303],[9.148126910730475,45.52027056412455],[9.147927628263288,45.52023624919215],[9.147745900839338,45.52020210927988],[9.147674523870203,45.52018952805085],[9.14770619034672,45.52010204312792],[9.14775874788073,45.519968527460385],[9.147795395808895,45.51987650861028],[9.147809266439513,45.519838803791295],[9.147827185212304,45.519787205301505],[9.14784968490077,45.51973451177982],[9.147853818599788,45.51972395734617],[9.147901744286841,45.519601716755915],[9.147961438890254,45.51946079299467],[9.14798944056041,45.51938231365338],[9.148043295616366,45.51925096538625],[9.14805052056742,45.51923276515318],[9.148115825045117,45.519068368608224],[9.148126852158597,45.51904019041395],[9.148185052981288,45.51889155465236],[9.148251019682604,45.518726095052635],[9.148277816445548,45.518662045691734],[9.148302547067651,45.5185962078138],[9.148459209289792,45.518624114702824],[9.14862440396856,45.51864906699465],[9.148636255547554,45.51865217493394],[9.149569929990813,45.51880852937152],[9.149613010508162,45.518816690936994],[9.149623308586396,45.518789107611504],[9.149777307255938,45.51836176680497],[9.15012557830874,45.518424353215785],[9.150617149862853,45.518511448700146],[9.150728081924267,45.51853110476626],[9.151266961719188,45.518626569036456],[9.151425332275382,45.51818709595653],[9.151434444767984,45.51816180927177],[9.151469903380566,45.51806342712376],[9.151488069823916,45.518067534517435],[9.15188837138244,45.51815750855744],[9.152013614813841,45.51818565927493],[9.152015424054955,45.51818712402536],[9.15260542153679,45.518323081323366],[9.152604605167161,45.518324216529635],[9.15304027449432,45.51841438240423],[9.15312792607414,45.51843251909798],[9.153332100681732,45.51847788956894],[9.153358761235086,45.51848384848176],[9.15340310158561,45.51849377111427],[9.153491011357113,45.51851260025535],[9.153505126971716,45.518514804560375],[9.153535830352315,45.51851959689008],[9.153697178643757,45.51855131570927],[9.153767341806578,45.51856510093451],[9.153857759361275,45.51858791383963],[9.15386718826787,45.51858989937514],[9.153805205522742,45.5186981739218],[9.153701369987651,45.51882634269475],[9.153696354962314,45.51883254207181],[9.153656348193167,45.518881488860636],[9.153575007233554,45.518980995343185],[9.153571433943728,45.5189853295868],[9.153482376815383,45.51907245206358],[9.152894208035615,45.519365760492946],[9.15159678972011,45.52019102636826],[9.151513768591666,45.52026762620809],[9.151234197533348,45.520724748231316],[9.150965573080125,45.52116397924756],[9.15120889243447,45.52115917567507],[9.151336882487342,45.52116346202033],[9.151441382668866,45.52118431400989],[9.151516237990394,45.52119924652402],[9.15150703442636,45.521252850255486],[9.151497578830842,45.52128884849574],[9.151488825559293,45.521319355237],[9.151484905679531,45.521333041840734],[9.15147728370728,45.521360459764196],[9.151439434519695,45.521499304208895],[9.151409350762552,45.52161174763614],[9.15138682092945,45.52170484706366],[9.151381919929278,45.5217203531485],[9.151335937508955,45.52189676018977],[9.151309663506593,45.52199755134189],[9.151269756035669,45.522147496582946],[9.151234887780696,45.52222830800136],[9.151227936335818,45.5222527817138],[9.151177182841893,45.522431409205666],[9.151103439788258,45.52269924822974],[9.151091897904841,45.522740550728535],[9.1510389572092,45.52292999114672],[9.15103727029607,45.522936023995086],[9.151031473951337,45.522956769783754],[9.151019922268587,45.52301842338803],[9.15142451175284,45.52307580095492],[9.151851274997624,45.523136153989924],[9.151861215210213,45.523137553950846],[9.15181733070721,45.523298746788974],[9.151721445876644,45.52365096323307],[9.15167067583923,45.5238041993036],[9.15155169637056,45.52425470929466],[9.152581579692932,45.5243945118789],[9.152466604710128,45.52488898696584],[9.152351799757177,45.525395036858306],[9.152617756014745,45.52542996625253],[9.152609269775887,45.52545978863115],[9.152544450520516,45.52569751745305],[9.15267694717828,45.525716611811966],[9.15277322927805,45.525730497809214],[9.152779644636224,45.525730462245264],[9.15310779684066,45.52577911489781],[9.153531856185712,45.52583997829535],[9.153558875654337,45.52574101288796],[9.15357004616058,45.52570014270418],[9.153581584385506,45.525657939888816],[9.153588811587548,45.52563149447517],[9.153596495200269,45.525603365275536],[9.15360884834524,45.52555476170527],[9.153918572013476,45.52558876524706],[9.154399267309525,45.52564448174555],[9.155092187114699,45.525724085391325],[9.15502193215384,45.52598853771737],[9.154957557986291,45.5262309927695],[9.155495478915995,45.526297662308906],[9.15582862524693,45.52633962167139],[9.156281251559992,45.52639717763322],[9.156349346468808,45.52640482544716],[9.156380217194597,45.52640829364145],[9.156400110021897,45.52641508016517],[9.15622440347363,45.52698425947024],[9.156184614523552,45.52707164071902],[9.156163510616711,45.527145747106644],[9.156057685427621,45.52751718848146],[9.155984508443067,45.52772424641944],[9.155871833113322,45.528110800464106],[9.155791816827522,45.52835987486811],[9.15564829657249,45.52881421154833],[9.155747004066576,45.52882774969917],[9.156158501411994,45.528884173949464],[9.156815627417808,45.52898052162549],[9.15690327280319,45.52899468599217],[9.156857105520876,45.52916959213075],[9.156772826761241,45.52944606281392],[9.156578603649095,45.530087113047834],[9.156985970451268,45.53013743733223],[9.15697893105342,45.53016658295785],[9.156795209172305,45.53093236278942],[9.156778193841657,45.531003268314784],[9.156782560839662,45.53100326233405],[9.157792584641157,45.531141379804616],[9.157766826808695,45.53123637497683],[9.157492814598223,45.53224679904764],[9.157491443751928,45.53224661191437],[9.157454949477671,45.532386401319094],[9.157810152294461,45.532489503737004],[9.15791589326114,45.53251979901298],[9.157987874080302,45.532540419800476],[9.158406845274378,45.53266218124058],[9.158540903601475,45.532697297242834],[9.158529189469197,45.532867799780476],[9.158502921077238,45.533173408176516],[9.158500603303283,45.533447642211684],[9.159960171045515,45.53362404609199],[9.160824142761811,45.53372953236435],[9.16101433615128,45.53375024612619],[9.161058411074228,45.53375671878493],[9.161174492218686,45.53377378314948],[9.16111260556124,45.5339616293023],[9.161079084923685,45.53406352179779],[9.16101577512267,45.53425554631424],[9.160956210637677,45.53459365031536],[9.160895133487669,45.534616472480245],[9.160965802823698,45.53462496899975],[9.160989479030341,45.53462787900268],[9.161016844834382,45.534631170850076],[9.1610552738139,45.53462464513385],[9.161116768589693,45.53463154330456],[9.162591071980401,45.534796947685585],[9.162957301504246,45.53483804712182],[9.16299815736107,45.53484261542046],[9.16430312826479,45.5349890037498],[9.16427154146146,45.53514639400227],[9.164623015815149,45.535185952112556],[9.164909706103925,45.53521958988509],[9.16499369995607,45.53522925283481],[9.1650431789506,45.53523494208653],[9.165125110172758,45.53524437388994],[9.165184095522417,45.53525115647859],[9.165580517545619,45.53529678539054],[9.165597454721718,45.535298732088016],[9.165651853045663,45.53530480999915],[9.165661487414214,45.535305885166174],[9.165566913191554,45.53579437536484],[9.166024062321007,45.53583638652267],[9.166034042934523,45.53583757816777],[9.166104563633041,45.53584265137655],[9.16636931013231,45.53586901758626],[9.166868382710263,45.535916364968315],[9.167099447497584,45.5359389441956],[9.167153621578173,45.53594255546917],[9.167178875361449,45.53577701886733],[9.167195641265243,45.53563437496615],[9.167196755946126,45.535630187914926],[9.167233626710564,45.53563378842091],[9.16727795362332,45.53563811609322],[9.167356135229673,45.535648235844675],[9.167595645763784,45.53567731837904],[9.16781533681186,45.53570423324862],[9.167906931407753,45.53571545807082],[9.167911940988137,45.53571607178479],[9.167989429337196,45.53572556205599],[9.168092260339103,45.53573816537892],[9.168201228409664,45.53575150666649],[9.168636387231583,45.5358059609381],[9.1686448579906,45.53569599334694],[9.168644254265775,45.53569540017643],[9.168709150034745,45.53570822984804],[9.168715645241484,45.53567020043202],[9.16874395601055,45.53550918642764],[9.168745063642394,45.535502677136826],[9.168777616277007,45.53531255692306],[9.1689264435527,45.535322616412635],[9.169189254960079,45.535340410078575],[9.169306859524536,45.5353510642757],[9.169952154228653,45.535407299728604],[9.17018592272014,45.53542209191386],[9.170803153917944,45.53547702314677],[9.170868896970674,45.535155682534615],[9.170883850767913,45.53507766731985],[9.171264129174308,45.53510320157724],[9.171473993735724,45.535120781171194],[9.171601881269286,45.535126764129295],[9.171907849644732,45.53514744812863],[9.171949466403138,45.534917637369354],[9.172333321955307,45.534932037568275],[9.172668489499397,45.53493984926481],[9.172769152751039,45.53494311770507],[9.17294251799351,45.53494875147698],[9.174196755990533,45.5349894957433],[9.174151893954452,45.53558057278581],[9.174029123879189,45.53591018381579],[9.174258103159993,45.53592006945285],[9.174317346268854,45.5359226345067],[9.17461574957315,45.53592638306079],[9.175098754371989,45.53593598718603],[9.175674558119558,45.535943916712846],[9.175727657182255,45.53536670586615],[9.176067982290634,45.53538874810967],[9.176470423719469,45.535414797994505],[9.176786346163183,45.5354352555575],[9.177020687527408,45.53544833169895],[9.177086892231891,45.53545328779192],[9.177173593794697,45.535459787277475],[9.177261875625598,45.535463772995804],[9.177637195992826,45.535491147902334],[9.177653666778008,45.53546272446565],[9.177955563823996,45.534941507771954],[9.178013959033626,45.53487437817412],[9.178083246363679,45.53479289314649],[9.17813382234051,45.53481312949492],[9.178231652173993,45.53485197813308],[9.17867403635054,45.53507637412507],[9.178981245794903,45.535241546859844],[9.179051014760699,45.53528411104503],[9.179065287206038,45.53523310755868],[9.179134179713554,45.534986959856276],[9.17914820868068,45.53498849505469],[9.179216057167507,45.53499900090294],[9.179906366305818,45.53510054622759],[9.179948189330219,45.535106700104656],[9.180055918191666,45.53512454149004],[9.18023505898183,45.534278029836216],[9.18026278901169,45.53413418759113],[9.180547000007213,45.53416022026292],[9.180772065102285,45.53419350139178],[9.18150747862349,45.5342963969464],[9.181571259579933,45.53430464861908],[9.181621997350353,45.534311210783024],[9.18166202665096,45.534317267870044],[9.181871039895954,45.53434083332479],[9.181899508633283,45.534284559382904],[9.181955351534747,45.53417419143716],[9.181980247067907,45.53417764420673],[9.18298709246887,45.5343219795461],[9.183160349097951,45.53366591391055],[9.183286327859909,45.53319049099705],[9.183383308176507,45.5332041160349],[9.183593569215217,45.533242257822884],[9.18400613722409,45.53333373756755],[9.184229319552351,45.53335557475578],[9.18424664019695,45.533357275046804],[9.184287345651141,45.533358721658566],[9.184285099933673,45.53333377474278],[9.184283440318508,45.533315757586465],[9.184284812338769,45.53328877063832],[9.184287417612847,45.5332708006196],[9.18428995864518,45.53325276769773],[9.1842913976927,45.533234556532115],[9.184292358422502,45.533214977997794],[9.184293503026415,45.533196803309856],[9.184295621219734,45.53317870806224],[9.184299328144379,45.53316081727692],[9.184317001714476,45.53310973563055],[9.1843269929525,45.533086722203485],[9.184334992578293,45.53306956257752],[9.184343248542552,45.53305246554441],[9.184352632623487,45.5330357087281],[9.18436318327026,45.533019301067306],[9.184374682559563,45.53300317990638],[9.18438595108364,45.53298698710877],[9.184396847820215,45.532970677897154],[9.184407693264301,45.532954350765294],[9.184417179882235,45.53293762978182],[9.18442633319312,45.53292081032461],[9.18443499936805,45.53290384763703],[9.184442703966399,45.53288656246565],[9.184451728664264,45.53286958119706],[9.184464709380078,45.53285219751094],[9.184477003423822,45.53283631808288],[9.184488489777854,45.532820178929036],[9.184500104311201,45.53280407557098],[9.184512551987138,45.53278818689037],[9.184524576501857,45.53277213687421],[9.184536241977892,45.532755952421965],[9.184547022895032,45.53273949936751],[9.184556855249186,45.53272278681519],[9.184566123539348,45.5327059041543],[9.18457437923372,45.532688762099234],[9.184585085916034,45.532665270445534],[9.184591932057089,45.53264788763792],[9.184597906920278,45.53263038022245],[9.184604983604839,45.532613006042936],[9.184611710073577,45.532586433493144],[9.184614520179116,45.53256848113612],[9.184618583955606,45.532546179314686],[9.184620753747716,45.53252823699124],[9.18462408921904,45.532510373795354],[9.18462768085297,45.53249251918698],[9.184631259648489,45.53247465559826],[9.184634338831236,45.53245674781079],[9.184637494764363,45.53243881289663],[9.184639024003202,45.53242080859954],[9.184640322543276,45.53240275066915],[9.184643167587968,45.53237589634953],[9.18464558075264,45.532357971634205],[9.184648233427104,45.53233103661637],[9.184648725226817,45.532313006989945],[9.184649217026237,45.53229497736352],[9.18465078479533,45.53227700900732],[9.18465205792086,45.532259014123696],[9.184652703399292,45.53224098424909],[9.184652260013475,45.53222286612214],[9.184652866924367,45.53220479130507],[9.184654396122788,45.5321867780062],[9.184656860473366,45.53216884420656],[9.184659068541626,45.53215086581579],[9.184661417423218,45.53213286919584],[9.18466366349705,45.5321147647307],[9.184665846258047,45.53209296099136],[9.184667964762074,45.532075009747466],[9.184670928739974,45.53205712914642],[9.184675596472577,45.53203938981052],[9.184680200110162,45.532021632576026],[9.18468349320303,45.53199473252596],[9.184683241909232,45.531976614088364],[9.184687072715178,45.53195358356398],[9.18469214995261,45.53193575355705],[9.18469675316492,45.531917870309385],[9.184701176963864,45.53189995134739],[9.184704832185963,45.531881979620145],[9.184706924880173,45.53186397441098],[9.184708607731862,45.531845960862306],[9.18470959896651,45.531827930427994],[9.184710334068331,45.53180990040703],[9.184710633686272,45.53179185308706],[9.18471048507297,45.53177380649047],[9.184709747268046,45.531755733842076],[9.184708827024465,45.53173669839007],[9.184708319886251,45.531718670373806],[9.184708107329262,45.531700650882954],[9.184709863336364,45.53167367230325],[9.184711610390972,45.5316557126558],[9.184713481683596,45.53162874289064],[9.184714383384776,45.5316107486038],[9.184715541246026,45.531592762904324],[9.184716827201532,45.531574785998956],[9.18471862544776,45.53155681726753],[9.18472125620676,45.531538874195],[9.184723835649686,45.531520904202445],[9.184725761839776,45.531502899260566],[9.18472786714369,45.53148484002396],[9.184730983162284,45.531466473124595],[9.18473485876428,45.53144932912359],[9.184696110725708,45.53131750123542],[9.184727280530787,45.53121518251003],[9.184770837457028,45.53105902729229],[9.184906823456421,45.53057159699278],[9.184933270971689,45.53057621673259],[9.185235149484047,45.5306093469317],[9.185366577687327,45.53062376961557],[9.185409584277298,45.530628488434765],[9.1856689306876,45.53065694290418],[9.18581734657504,45.53067323670049],[9.185979816241833,45.53069106462416],[9.186182410231115,45.53071329150001],[9.186577887824166,45.530768300080005],[9.186576843484366,45.53074289219236],[9.18660177027089,45.53050012379998],[9.186629025983722,45.53027626252323],[9.18665832451906,45.530073865090145],[9.186659095618019,45.530063053729116],[9.186595410594482,45.53005547980374],[9.186584700354217,45.530054210135276],[9.18652854840078,45.53004753298293],[9.18658023524169,45.529919698684054],[9.18660899808444,45.52984986766093],[9.186611221336436,45.52984446348416],[9.186639564768635,45.52977562323743],[9.186698220709287,45.52963319602346],[9.186711519256843,45.52960003294188],[9.186691782033764,45.52959139725704],[9.186651491371215,45.52957126491599],[9.186722717396929,45.52949314675404],[9.18680734325607,45.52940098324069],[9.186862636975546,45.52933028975184],[9.187091946967438,45.529037313178456],[9.187100939198388,45.52902642536518],[9.187116733300718,45.529012232092775],[9.187132514559348,45.528998029838256],[9.187148385570987,45.52898386343841],[9.187162730161914,45.528968943455524],[9.18717697214858,45.52895397863398],[9.187191188456175,45.52893899585079],[9.187205520248256,45.528924084884196],[9.18722000588301,45.528909227669665],[9.187234478734005,45.52889437947507],[9.1872571371713,45.52887256917396],[9.187277410929033,45.52885379608106],[9.187293204551084,45.528839485772636],[9.187307984975702,45.528824718073466],[9.187322778168687,45.52880994135051],[9.187337609712054,45.52879514656093],[9.187350530630079,45.52877958981914],[9.187362848917127,45.52876380903951],[9.18737478251277,45.528747875872696],[9.187386716131504,45.52873195170552],[9.187401604058987,45.52871486158036],[9.187415050758819,45.52869953799398],[9.187428959060533,45.52868439366836],[9.187443239262924,45.528669410748456],[9.187457519427891,45.528654418825845],[9.187476702004284,45.5286310210109],[9.18748845598876,45.52861500711783],[9.187500068892938,45.5285989304482],[9.187511668984646,45.528582853798326],[9.187523666559327,45.52856692951158],[9.187536292480674,45.52855126522051],[9.187548931200878,45.52853560090698],[9.187561198006605,45.52851977518507],[9.18757526019382,45.528504720598164],[9.187589719862759,45.528489818373586],[9.187602922788429,45.528474387153025],[9.18761565126325,45.5284587676894],[9.187634923498017,45.52843541470472],[9.187653092722849,45.52841541186812],[9.187666692953231,45.52840008799955],[9.187679138589738,45.52838414495929],[9.18768999339815,45.52836733143744],[9.187703837246309,45.52835210617491],[9.187719592591108,45.52833791288104],[9.18773501437897,45.52832354011374],[9.187749050620269,45.52830841354012],[9.187763497357407,45.5282935023133],[9.187777944086918,45.528278591084636],[9.187792262481688,45.528263599056416],[9.187807029909056,45.52824885831525],[9.18782182297021,45.52823412653097],[9.18784589209498,45.528213078873485],[9.187862635265358,45.52819944199521],[9.187880379103541,45.52818635252775],[9.187897430164819,45.5281728861563],[9.187914481158133,45.528159401780556],[9.187931840020495,45.52814607891321],[9.187994630598752,45.52808936898225],[9.188029811287183,45.52805178633946],[9.188057357394259,45.528025071343876],[9.188095991541605,45.52799782506436],[9.188113734902926,45.527984627549934],[9.18812961806957,45.52797042498753],[9.188145411018967,45.527956051553744],[9.188164121344245,45.52793712785516],[9.188177606099249,45.52792181311525],[9.18819064204746,45.527906319093326],[9.188203383037516,45.527890699542084],[9.188215444418692,45.52787481107946],[9.188227467316027,45.52785890467696],[9.188240669920042,45.52784347338152],[9.188254834233392,45.527828427542076],[9.188267716260667,45.527812870757835],[9.18828097009569,45.52779744837427],[9.188294659796684,45.52778216928663],[9.188307118495171,45.527766397172286],[9.188325067741205,45.52774584553213],[9.188340193903008,45.52773123914413],[9.188365404544658,45.52771085556487],[9.188382481137968,45.52769744308341],[9.188397748344292,45.527682899461944],[9.188413041124088,45.527668346795366],[9.18842934764341,45.527654422522055],[9.18844783591741,45.52764193480126],[9.188465477149458,45.52762889041522],[9.188483220998643,45.52761589986292],[9.188501349819516,45.52760315169862],[9.188522283809698,45.52758678053934],[9.188538140850246,45.52757248795299],[9.18854932999491,45.52755621385157],[9.188560685786543,45.52753999347995],[9.188572567293189,45.52752397926212],[9.188584820636775,45.52750810844497],[9.188598112760637,45.527492694961566],[9.188611443354153,45.52747729941502],[9.188625440853713,45.527462208798944],[9.188640836500605,45.52744781794837],[9.18865817408773,45.527432073755804],[9.188675776248104,45.527418867384576],[9.188692352119123,45.52740511364659],[9.188708132562475,45.527390920172635],[9.188723913027946,45.5273767356973],[9.188739424087151,45.52736240764937],[9.188754614427667,45.52734790911072],[9.188769817626074,45.527333428550676],[9.188785033622278,45.52731894796743],[9.188800403548212,45.527304548136506],[9.188816671329972,45.52729058786726],[9.1888338366967,45.52727698615143],[9.188851075185676,45.52725460841231],[9.188862174538286,45.52723833442754],[9.18887314558829,45.527221988646005],[9.188883693416908,45.52720545454253],[9.188895023370824,45.52718921617747],[9.188907584395837,45.52717349783261],[9.188919555426123,45.52715750143167],[9.188931026040677,45.527141208825164],[9.188945857175835,45.527126548836954],[9.1889635999143,45.52711330618489],[9.188980225945114,45.52709928229383],[9.189001146021809,45.527082677044284],[9.189074009517013,45.52709021646579],[9.189133896445052,45.52709640914829],[9.189260521816427,45.527108936103545],[9.189548436211291,45.52713741553904],[9.189811960902675,45.52716348645522],[9.190325839800312,45.52721354215333],[9.190377950228227,45.52721862200166],[9.190391014433718,45.527215548953706],[9.190390688432203,45.527225216487594],[9.190388128819656,45.52730171959176],[9.190388023784182,45.527304753077544],[9.190370111299456,45.52762878909574],[9.190414747258785,45.52765017303088],[9.19045781205387,45.52765371073414],[9.190477320597605,45.527655316431364],[9.190503760910186,45.52768087104147],[9.190488706987137,45.527762354449145],[9.1905014684617,45.52777961497629],[9.190503603972676,45.52778250971824],[9.190857251036732,45.527817564089766],[9.190965123892134,45.52782805921753],[9.191173452752816,45.52784833248358],[9.191181929500024,45.527851918690786],[9.1912291411139,45.52788501720436],[9.19135557028,45.52789945035904],[9.191550230349977,45.527921906015244],[9.191731715967832,45.52794134110255],[9.191821299461962,45.527950929968064],[9.192179285051422,45.527973353680444],[9.192571425482937,45.527996204848314],[9.192581659353358,45.5279967996885],[9.192683587102254,45.527998644311324],[9.192654186733288,45.527728603140645],[9.192631011049658,45.52751142289184],[9.19262732345673,45.527443904176494],[9.19262281482135,45.52738722395359],[9.192613019331375,45.52725967936054],[9.192611076261723,45.52723436303428],[9.192684076008105,45.52723283599391],[9.192743989352573,45.52723159197666],[9.193010799578662,45.52726298752635],[9.193264685443955,45.52730077693526],[9.193613540674374,45.527346694983514],[9.193853594765633,45.52738004202734],[9.194020265886213,45.52740397203517],[9.194125618843582,45.52741907692415],[9.194199881726645,45.52743105715757],[9.194235287378602,45.527434183391634],[9.194301744444376,45.52743661782819],[9.194388957878692,45.52744601968581],[9.194523714103376,45.52747636682255],[9.19462130968523,45.52749594889875],[9.194725803196791,45.52751425002333],[9.19507210713512,45.52756971793613],[9.1953147669893,45.527604335597],[9.195565174164782,45.527635123110635],[9.195720604723189,45.52765205812806],[9.195808674489069,45.52766081837127],[9.195869113674075,45.52766708758553],[9.195984807549383,45.5276764484713],[9.196069408844174,45.52768203712833],[9.196065308225894,45.52769600458532],[9.196057664096196,45.52772211135701],[9.196039566288635,45.52778394269694],[9.195836677240397,45.52847679402861],[9.195641952099681,45.52845508386566],[9.195603555560222,45.52864996544372],[9.195527295568322,45.52904598326986],[9.1954713351497,45.52932803269993],[9.195468293091855,45.52934822695973],[9.195631337999497,45.52936597717126],[9.195709392388501,45.529373683501284],[9.195812716200692,45.52938592800731],[9.196282492928516,45.529443998164865],[9.19639823329519,45.52945830005436],[9.196572715158652,45.529479863683335],[9.196605602874186,45.529384568449785],[9.196623985366022,45.52933466276725],[9.196752175213257,45.52898530573079],[9.196852033219953,45.52871585344298],[9.196925085402842,45.52851564627259],[9.19700501611015,45.528301394769464],[9.197099760831712,45.52804257212377],[9.197089738516594,45.52804023114513],[9.197090740473856,45.52803744813448],[9.19709383520073,45.52802887392633],[9.197096625513502,45.528010120199646],[9.197109147873729,45.5279765701951],[9.197109744439251,45.52797504801167],[9.197120255280057,45.527948558193614],[9.197355866540521,45.527984470790486],[9.197427947836195,45.527994724509824],[9.197493007054417,45.52800368516981],[9.19749853942633,45.52796710487494],[9.197548698937585,45.52782028525601],[9.19755766084161,45.527794023094174],[9.197561070750869,45.527784053185854],[9.19764352665791,45.52754219101839],[9.19774054694689,45.527265164009336],[9.197899232698616,45.5272939086502],[9.198179655540226,45.52734637574779],[9.19852993434476,45.52741356349883],[9.198986758490923,45.52749925985795],[9.199130827904366,45.52752621001746],[9.199077380384427,45.52762902154806],[9.199009719984899,45.527761416801084],[9.198955146316788,45.527868208636384],[9.1989214174296,45.527934154027385],[9.198893246378253,45.52798923463521],[9.199117234249798,45.52805508286663],[9.199282385461775,45.52810437243678],[9.199289377152004,45.52810428825247],[9.199286559168906,45.528107722511635],[9.199171014335539,45.52826464773937],[9.199161480483415,45.52828467338253],[9.200283006455495,45.52845816177738],[9.200476289741404,45.52848805739361],[9.200459641541517,45.52853847371794],[9.200454484488558,45.52855397333781],[9.200446508780383,45.52857992796459],[9.200394738016643,45.52873268326544],[9.20030139793232,45.52900811285288],[9.200217055202998,45.529256982894445],[9.200174738339712,45.52937838033189],[9.200066056006051,45.52972665397219],[9.200678651140247,45.529816130481116],[9.201152894456035,45.52988539691772],[9.201302541209863,45.52937640177645],[9.20130275891264,45.52937640139347],[9.201444348792952,45.52891075062688],[9.201495586878027,45.528742235180545],[9.201500776561012,45.52872518729832],[9.201504643736516,45.52870716064438],[9.201516301964958,45.52864743700415],[9.201979200870948,45.52873755713458],[9.202105620059129,45.52876938618793],[9.20209633125928,45.52881112186243],[9.202082926663671,45.52886935449161],[9.20200806289288,45.52909157539755],[9.203015987321917,45.52920505728718],[9.203055870174369,45.529081592900994],[9.20307130320329,45.52902860409636],[9.203076708585243,45.529011123716316],[9.203089149899014,45.52896663708738],[9.203202209135766,45.52899368214651],[9.203441762526554,45.5290373879826],[9.203625596015767,45.52906301063059],[9.203832394652157,45.52908966318372],[9.204116041998818,45.52912676337915],[9.204266105522844,45.52914503747625],[9.204533963632782,45.52918216481994],[9.20490878680528,45.529228632001214],[9.20512204597583,45.529253146431735],[9.20528215519989,45.529269285967985],[9.20568997230785,45.52930986779027],[9.205732337268792,45.52931403105671],[9.205883347492879,45.52874109386844],[9.206031120857753,45.528187388220346],[9.206113772604978,45.52789313423396],[9.207150475872703,45.52797989409152],[9.20735105907553,45.52799544439441],[9.207507446375793,45.52827874392217],[9.208025123227754,45.52832030624151],[9.210354169076915,45.52849604840995],[9.210193137502861,45.528207567789714],[9.210200105717837,45.52820805903971],[9.210459083515948,45.52822656590297],[9.210481115217515,45.52822807353339],[9.21072393149577,45.52824639350414],[9.211099244084286,45.52827333448184],[9.211266687759869,45.528285446689964],[9.211335179298295,45.52829039671888],[9.211425072693743,45.52829620725251],[9.211462615798041,45.528298631125836],[9.211577474450035,45.52830619557966],[9.211588029591715,45.528307022146926],[9.211639280976923,45.52831104077624],[9.211722369337686,45.52831888887079],[9.211865181653305,45.52832942561331],[9.211966721712377,45.528336834319205],[9.211941388824584,45.52847951885214],[9.211911166165889,45.528650124289044],[9.211887209835199,45.52877065498614],[9.211870287749019,45.52887171265918],[9.211863957864088,45.52891513582135],[9.211863244086349,45.528919448584105],[9.211851462376172,45.52899115373204],[9.21184302275994,45.52902862218916],[9.211873533164896,45.52903032987378],[9.211930693311803,45.52903213220421],[9.21195324649529,45.52903259447782],[9.211969651569909,45.52903273510336],[9.211962815605895,45.52922804073696],[9.211958292616814,45.52935715831415],[9.211964323067157,45.529500252767534],[9.211934458521293,45.52982454821504],[9.211991369753164,45.529882687729355],[9.21199224212441,45.52988310015523],[9.212101712518482,45.52993499458938],[9.212228578911317,45.529960907001595],[9.212292495347734,45.5299780611869],[9.212387152236921,45.52998982973241],[9.212504873633879,45.53000169937777],[9.21256695379128,45.53001068398555],[9.212638032001472,45.53002180305655],[9.212645204784499,45.53002214076146],[9.212709581292463,45.53002878078481],[9.212795921643941,45.53003570395665],[9.212903949604616,45.53004436888995],[9.213115767453818,45.53006188636286],[9.213324516056893,45.53008049827683],[9.213341929973339,45.52984231048943],[9.213354557657368,45.52966948729182],[9.213368196419934,45.52948295380118],[9.213368173824234,45.52947696823162],[9.214129996222928,45.529516850185225],[9.214435906451095,45.52953286593682],[9.214855354649261,45.52955855071968],[9.21521221905792,45.529577402992594],[9.215297608659988,45.5295836149898],[9.215299068861814,45.52958369325025],[9.215618842205487,45.52960131791264],[9.21563207356962,45.529601995047685],[9.215981097084065,45.52961978858667],[9.216152882773676,45.52963076931902],[9.216452085434614,45.52964722438751],[9.216741053985741,45.52966312200169],[9.216700868256892,45.529482783689154],[9.216696397785137,45.52946578941889],[9.216691603379074,45.52943778763686],[9.216676264404592,45.52934832054039],[9.216667540433118,45.529297427858005],[9.216641661409941,45.52917102293601],[9.21659450074794,45.52897493716578],[9.216534603637111,45.52873006348078],[9.216445213377186,45.52842457034251],[9.21644337075483,45.52841825518156],[9.216436415707957,45.528394469902516],[9.216391251293372,45.528251161650914],[9.216378450933304,45.52818904349604],[9.216337915818915,45.527983755113766],[9.21630837467304,45.52783700592624],[9.21627491480706,45.52767009306741],[9.216237016014341,45.527484259642605],[9.216204074957624,45.527318956937464],[9.216191532541258,45.527257207301936],[9.216109632610573,45.52677954799616],[9.216384313540551,45.52677676958674],[9.21761688177074,45.52678596194797],[9.219119508922109,45.52679909755569],[9.219670862396962,45.526795312961106],[9.219739734544302,45.526766683774106],[9.219766935132672,45.5265167928694],[9.219789091424134,45.52635944114588],[9.219789674340984,45.52635457052567],[9.21980247560094,45.52624482465751],[9.219772798938727,45.526154224352325],[9.219729470691094,45.526089680933836],[9.219669638709055,45.52599606919609],[9.21960458707963,45.525900379230045],[9.219551036038343,45.525821480885035],[9.2195049571283,45.52575084902953],[9.219415285343695,45.52561326187104],[9.219410271582625,45.52552571047788],[9.21941581943274,45.5254935395289],[9.219418279000333,45.52548059147993],[9.219472855479045,45.52519379828844],[9.219475490936897,45.52517998581118],[9.219496091265901,45.52500438321262],[9.219696614306974,45.525029362933864],[9.219752327167287,45.525035358562626],[9.219833548579217,45.52465629049107],[9.219890658242736,45.52439600892445],[9.219914688687222,45.5242566013665],[9.21994873077194,45.523998281289],[9.220014648184026,45.52373121399825],[9.220074917515287,45.523487028883345],[9.220090817949922,45.523440184462004],[9.220098665856037,45.523413508611185],[9.220142604731857,45.5234149722315],[9.220229353925198,45.52341745154735],[9.220237540322351,45.52341851589998],[9.220250551383243,45.52341887789225],[9.22026927403222,45.523419408905085],[9.220422797747325,45.523424558780775],[9.220538452887967,45.523428458318435],[9.220645926520575,45.523432544535964],[9.220750579588364,45.52343572700098],[9.220780201035153,45.52343674995289],[9.220791534795636,45.5234371421232],[9.220886971286724,45.52344105332333],[9.220993415666415,45.52344388107105],[9.221064812052974,45.52344637140609],[9.221107278263334,45.52344779249625],[9.221212193817502,45.523452594198346],[9.221374939897881,45.52345844503614],[9.221510802517951,45.52346270052681],[9.221594220469791,45.52346463619937],[9.221653018298417,45.52348705162339],[9.221692901676455,45.523502473945115],[9.221785432484129,45.523539234416184],[9.221886919594223,45.52357742659145],[9.221983043899664,45.523612937804245],[9.222065759648464,45.523651193243985],[9.222073777243244,45.52365490406576],[9.222193380218354,45.523708524397485],[9.222222320696613,45.52370240156031],[9.22233090202848,45.523678671170025],[9.22241821572569,45.52365851939077],[9.22244875681572,45.52365241138617],[9.222458672759048,45.52365042990257],[9.22248863838745,45.52364126269037],[9.222529871610366,45.52362868020383],[9.222593844707555,45.523609221754846],[9.222669979196032,45.52358571618505],[9.222700102348147,45.52357754771383],[9.222715055169532,45.52357348618924],[9.2227665300015,45.523560361625],[9.222799555856557,45.52355118837223],[9.222858212094325,45.52353429639322],[9.222941178196526,45.52351253251542],[9.22316471297957,45.52345127741054],[9.22319974737027,45.52344167708015],[9.223203415327102,45.52344638641102],[9.223218511598926,45.52346569995432],[9.223263916109833,45.523523739356385],[9.22331601550876,45.523587724286685],[9.223340139523433,45.523581178523195],[9.223396626690176,45.52356627970764],[9.22343123137348,45.523558102292355],[9.223438971034572,45.52355626898876],[9.223467239597166,45.52355838299858],[9.223553793209947,45.523576071742234],[9.223571013741397,45.52357881937777],[9.223662792473545,45.523593446512585],[9.223901214733292,45.52362815577119],[9.22391612897513,45.5235691164893],[9.223938847167181,45.52347923374609],[9.223941356112713,45.52346933681349],[9.223968423614117,45.52336222677083],[9.223983436384314,45.52336363752796],[9.224023032610436,45.52336785344134],[9.224065954027028,45.52337427705707],[9.224130714582296,45.5233824670599],[9.22422913229962,45.523395451565065],[9.224236498804888,45.523396400226],[9.22430366861677,45.52340507145863],[9.224378458873263,45.52341414174878],[9.224465064357041,45.523425529050066],[9.224560815598279,45.523437699416554],[9.224627630375206,45.523447226243825],[9.224724386965482,45.52346103266833],[9.224736148428443,45.52346271074],[9.224877670429489,45.52348290975647],[9.224880191334835,45.52347284176209],[9.225031615451279,45.523494029226946],[9.225033114091596,45.52348771662757],[9.22522175340606,45.52351321408341],[9.225211552043012,45.52355922891507],[9.22551253554497,45.52359938321119],[9.22552111844717,45.52357141840668],[9.225581781929506,45.52357961566309],[9.225683209570995,45.523592628983714],[9.22582169258817,45.5236115996979],[9.22582486267118,45.52359739897494],[9.22583527150236,45.523558566420824],[9.225857837867412,45.52346990772175],[9.225882476179933,45.523380659865445],[9.225883713125475,45.523376174960184],[9.2259285718479,45.52320407861186],[9.225928685398745,45.5232036553439],[9.22595309787728,45.52309961038522],[9.225970188035669,45.523028109244585],[9.22598300882741,45.52297448338057],[9.22599218770598,45.52294193588678],[9.225999717766767,45.52290693439539],[9.226014610709466,45.52284956904699],[9.226377145141006,45.52289026552055],[9.226719887945793,45.522928731833524],[9.226937622322858,45.52295202657257],[9.227127288099993,45.522975088596574],[9.22714599206947,45.52297736469993],[9.227176736751641,45.5229807150039],[9.227301662716828,45.52299433729134],[9.227383289931929,45.52300323901446],[9.227452888312238,45.52301083245813],[9.227607254923425,45.523028266273116],[9.227610957187565,45.523028690951804],[9.22801359953882,45.52308558510738],[9.228075981177426,45.523094398679554],[9.228472191522306,45.52314055693079],[9.228655930160128,45.52316366425691],[9.228884826691852,45.52319198249434],[9.229056000135479,45.52321091988259],[9.229073472973164,45.52321269408317],[9.229130789426668,45.52321962702629],[9.229176327823053,45.523223964265696],[9.229187424984964,45.523175472026686],[9.22920663422729,45.52310653142221],[9.229227236218657,45.523027398969994],[9.229256009253278,45.523030779667785],[9.229261056120437,45.523031228601155],[9.229331302449259,45.52303749646511],[9.229369858197646,45.523040857522766],[9.229494739934077,45.523052884335726],[9.22967746242251,45.52307168061206],[9.230130704856435,45.5231175385754],[9.230821279018206,45.5231873986512],[9.230889906546608,45.52319538800035],[9.230894922050243,45.523163073539855],[9.230913855671297,45.52306792249585],[9.230935075121605,45.52296499902992],[9.230958524598076,45.522837516517605],[9.230982016780718,45.52272051099479],[9.23099841252679,45.52263420396759],[9.231021359623155,45.52251232102853],[9.23102737370313,45.52247999554084],[9.231035229564139,45.52243776530879],[9.231042020803773,45.522398219503536],[9.231060461652712,45.52230793892149],[9.23108014649341,45.52220248925267],[9.231096759801265,45.52211935909293],[9.231109169784062,45.522057317603426],[9.231127070899369,45.5219603504032],[9.231129847807955,45.521944287130275],[9.231148537059486,45.521852196837564],[9.231162876002386,45.52176716306098],[9.231179263318122,45.52167579748647],[9.231181539070285,45.52166243550388],[9.231201697760518,45.52155085520953],[9.23122030407931,45.52143854897154],[9.231235704288277,45.52135946265116],[9.231259134721812,45.52122765063086],[9.231270175925538,45.52115975227372],[9.231271932199485,45.52115087380305],[9.232682814438157,45.52127065049196],[9.232888227080227,45.5212877123094],[9.232998568676853,45.52126145692453],[9.233010504062408,45.52126189166187],[9.233017480363898,45.52123965414824],[9.233098756718762,45.5209216566097],[9.233101870042962,45.5209096970261],[9.233157696403527,45.520695496048035],[9.233328269035425,45.520092616718614],[9.233379361706382,45.5199107476146],[9.2333816541095,45.51990156198399],[9.233385198827794,45.51988247276972],[9.233382834275748,45.519861775442806],[9.233362539015314,45.51983982756123],[9.233300491549896,45.51983375247397],[9.233287872458739,45.519816496413114],[9.233397234378359,45.51944824308507],[9.233535304704272,45.51897860748228],[9.233694318701211,45.519007454785076],[9.233881004828849,45.51903393205352],[9.233927907276023,45.519031369895494],[9.233971630384582,45.518984529613],[9.234005759362129,45.51889340632888],[9.234202768605376,45.51841076895171],[9.234423448958454,45.517863464951944],[9.234536844020877,45.51758432943791],[9.234591379793494,45.5174499776104],[9.234597569238561,45.517448191732434],[9.234751080251733,45.51748163033484],[9.234897428328463,45.517513625287194],[9.235082137066458,45.51755519023324],[9.235212360004807,45.517582672443815],[9.235352306816225,45.51761465297187],[9.23548893702304,45.51764339981785],[9.235627580485849,45.51767593174862],[9.235741697897094,45.51770051222203],[9.235830978929508,45.51771950019735],[9.235844737928865,45.517678463554944],[9.235872771938629,45.51758812633838],[9.235906048054618,45.51747151356325],[9.235945192721944,45.51747875059487],[9.236128394331052,45.51751490739365],[9.236338709510921,45.51755614742074],[9.236579236673544,45.51760243711564],[9.23669053907047,45.51762431318064],[9.236841500889707,45.51765397385307],[9.236889346183663,45.51766283971851],[9.236980682113376,45.51768326269026],[9.237206602294052,45.51773277665574],[9.237515154266232,45.51780001250039],[9.23790354061484,45.517883346202105],[9.237830304596141,45.5180659835102],[9.237771844196278,45.51820921995236],[9.23765695966523,45.51848992790565],[9.237578290570621,45.518687148837216],[9.238172678721993,45.518809171660216],[9.238218974501548,45.51882073147332],[9.238261723508316,45.51882617801798],[9.23837043530487,45.518855429604734],[9.238410866922043,45.51886392323914],[9.238495295754072,45.518882361182925],[9.23852216202348,45.51888634658718],[9.238607898302725,45.51890208144046],[9.238696685696436,45.51891870995642],[9.238810037842653,45.51894004861902],[9.238940803397917,45.51896446512158],[9.239063369320673,45.51898762047769],[9.239125030769921,45.5189993728335],[9.239196423179695,45.519011140812424],[9.23920615723083,45.51901491885309],[9.239252732674327,45.51902288628835],[9.23938298261473,45.51904639426819],[9.239523724364023,45.51907117626603],[9.239658318103936,45.519095412912975],[9.239808018385732,45.51912218300012],[9.239924710865813,45.519142982497996],[9.240093863733152,45.519173554808575],[9.240252509176711,45.51920213272769],[9.240411432595579,45.519229800747596],[9.240567263070837,45.51925874418285],[9.240709030928045,45.519283702580246],[9.240850811752,45.51930866977522],[9.240889956786898,45.51931554507194],[9.24090610991445,45.519314295928304],[9.240985782416516,45.51930392104914],[9.241108769964638,45.51928746920195],[9.241268150894182,45.519266178973226],[9.241538721548508,45.519230234295634],[9.241711427151547,45.51920806022305],[9.24195688015255,45.51917603802916],[9.242158537388699,45.51914848248493],[9.242334559458984,45.51912648946863],[9.242335860110103,45.51912524458396],[9.24234663535042,45.51911498769123],[9.242405288450627,45.5190729280502],[9.242450234231613,45.519062031672036],[9.242864810056226,45.51902972095086],[9.242916616535195,45.51903027701597],[9.24303093127046,45.519057685077854],[9.243046171776433,45.51905861579715],[9.243100141105211,45.519061912469176],[9.243167831959495,45.519067223160015],[9.243372340892643,45.519027175111155],[9.243476009486436,45.51900850258032],[9.243674652712539,45.518971157754834],[9.243758099806135,45.51895449024669],[9.243826461389757,45.51894611769414],[9.243919930607056,45.51893465824876],[9.24399040669503,45.51893563306245],[9.244121100868787,45.51893707339662],[9.24426345011514,45.518960099942944],[9.244338333175195,45.518967563807664],[9.244423472366467,45.518978057026104],[9.244578902196144,45.51900286441627],[9.244606821932415,45.5189986822874],[9.244628477741337,45.51897904093752],[9.24466309755461,45.51889584324376],[9.244686321359866,45.51883913267055],[9.244712374232355,45.51877934672037],[9.24473462026365,45.518727489733045],[9.244771502066019,45.518637464452695],[9.244805605090432,45.518556248022804],[9.24483617670208,45.518481519815275],[9.24485743252903,45.51843758574582],[9.244868865578473,45.51842857833613],[9.244872999845391,45.518425320147415],[9.24488451759657,45.518424044360195],[9.244904291121617,45.518431040760085],[9.244977304880807,45.51845933637823],[9.24499289995325,45.51846529760261],[9.245083038254002,45.51849792192956],[9.24515546919851,45.51852464351819],[9.24524894602197,45.518559429784666],[9.245320083886005,45.5185861360391],[9.245369659654411,45.518606767865975],[9.245448532779404,45.51863976710435],[9.24553253610676,45.51867475348427],[9.245611658946839,45.51870919222351],[9.245666117791698,45.518730893548785],[9.245701806208542,45.51874370623843],[9.245711565080034,45.51874721364353],[9.245810721375166,45.51878648771746],[9.245930661480381,45.518832386716475],[9.246028260220463,45.518869683743645],[9.246105313149606,45.51889909506812],[9.246206498706604,45.518936744262916],[9.246216245623124,45.51894043166924],[9.246260626568416,45.51885297303823],[9.24621672014182,45.51894061066658],[9.246287154349629,45.518967227822316],[9.246400732879186,45.51901926066022],[9.246447236503702,45.51903988963469],[9.246496300934538,45.51906052207269],[9.246557442946882,45.519084908850786],[9.246663780497311,45.51912939624688],[9.24674188299572,45.51916150515836],[9.246879028481821,45.51921223555057],[9.247062666540456,45.51928091224558],[9.247116590522875,45.519300093770305],[9.24720032636659,45.51933201017849],[9.247275046522862,45.51935764535979],[9.247302269877322,45.519366965481936],[9.247443953652848,45.51940707327871],[9.247548691452419,45.519436810775154],[9.247592239564458,45.51944899379916],[9.247693988603638,45.51947745049753],[9.247784864270809,45.5195052285867],[9.247840301271236,45.51952187722855],[9.247947593929606,45.519550168673284],[9.248025876865263,45.519570575096864],[9.248051567902099,45.519580789455325],[9.248122723465805,45.51961093227887],[9.248195177781989,45.51964232336998],[9.24830759153659,45.519670414344496],[9.248383576450578,45.51969227466167],[9.248579643721438,45.51978269518526],[9.248624313380578,45.51979649554621],[9.24870775654422,45.51982264188322],[9.24879119590268,45.519847906075775],[9.248840226104306,45.51986331703617],[9.248959549980267,45.519890321223855],[9.249026530515623,45.51990552201619],[9.249116607518994,45.51992609103345],[9.249227200320954,45.51995041367551],[9.249318792395071,45.51996899902638],[9.2494221880962,45.51999009682972],[9.249425226109302,45.51999088228745],[9.249559068281101,45.520011634543096],[9.249620603387031,45.520020123168585],[9.249678781086722,45.52000769191533],[9.249786488260122,45.5197324061792],[9.249789797589733,45.51971635928522],[9.24981564427913,45.51969796793337],[9.249833331383108,45.519696174121115],[9.249921036454674,45.51971602761052],[9.250163348237031,45.519758819426606],[9.2504687398232,45.51981189570279],[9.250820023026723,45.51987110818918],[9.251206942936907,45.51993376070177],[9.251420790793683,45.51996734139371],[9.251570796434427,45.51999477946183],[9.251792826443179,45.5200225988646],[9.25195923022496,45.52004336663482],[9.25214255067367,45.52006468193422],[9.252438163683145,45.52009772941536],[9.252585321017907,45.520115082388514],[9.252739548007655,45.52013282459334],[9.252791819569971,45.52013978381782],[9.253114523237166,45.520180636490636],[9.253164818732587,45.52018662781611],[9.253731150045569,45.520254140088866],[9.254063944315407,45.520292069393705],[9.254344173049933,45.52032313890295],[9.254503143589162,45.520333442406965],[9.254699118748734,45.52033823573247],[9.25471103906154,45.52033817318473],[9.25475025817571,45.520341065152486],[9.254965100805471,45.52035876834371],[9.25526250916452,45.52038605291512],[9.255298657828593,45.5203894916029],[9.255350189053388,45.520394003054555],[9.255387813517949,45.520398176496094],[9.255350127641577,45.520346397248304],[9.255308326367022,45.520248074338795],[9.255297968216476,45.520219798519264],[9.255294063236049,45.52016882593966],[9.255297279985209,45.52010427305501],[9.255300590661843,45.52003783876446],[9.255295989002,45.51999136820589],[9.255295177929435,45.51992235084433],[9.255305681371727,45.51977869947337],[9.255325910276268,45.51967352339109],[9.255338401528673,45.519604305313635],[9.255342854170536,45.519527085345466],[9.255347171379539,45.51945956868752],[9.255337393764597,45.519409554310855],[9.255324731908065,45.519353119702785],[9.255297039113621,45.519265665411965],[9.25529132966557,45.51923755022889],[9.255304866556004,45.51900864419851],[9.255310764831782,45.5189850215759],[9.255322589101008,45.51894958549676],[9.255360313983893,45.518911013274824],[9.25556815664441,45.5188315748493],[9.256226373922127,45.51854692377647],[9.25653207548314,45.51842021643362],[9.256901609491305,45.51826705517669],[9.256894538578504,45.518257872099284],[9.256877266539364,45.518232519244215],[9.256868213312652,45.518212557493214],[9.256713438678279,45.51793802531647],[9.256711370259307,45.517936472796386],[9.256632952447315,45.51786116689644],[9.256632321403892,45.51786035822782],[9.256714381834419,45.51792579992514],[9.256769397849094,45.51788335402164],[9.256873237704024,45.51797142907555],[9.25693027167402,45.51801240826157],[9.256985732447493,45.5180452811079],[9.257252784324798,45.51815678747987],[9.257394093331511,45.518206496788665],[9.257480036045152,45.518241326006354],[9.257613946476058,45.51829698331518],[9.257744531545345,45.51835336803494],[9.2578271679565,45.518393064947404],[9.257928792667283,45.51844406916492],[9.257993475528034,45.518477478781406],[9.258087948602833,45.51853245039909],[9.258204783323341,45.51859999977572],[9.258324367585486,45.518658370867115],[9.258549948496272,45.518771525010806],[9.258624644477484,45.51881050121534],[9.258717070590551,45.518862776656874],[9.258785520949488,45.518882693896984],[9.258768045585722,45.518936217001524],[9.258762553059523,45.51895306117954],[9.25875134171415,45.518982069559364],[9.258695196057717,45.51903497805281],[9.25868044596585,45.51905173515304],[9.258676259624846,45.51905184363105],[9.258675265017816,45.51905273697316],[9.25863590675658,45.5190528619808],[9.258573146945933,45.51910979078613],[9.258552382984861,45.5191246172624],[9.25844740146094,45.51919953529305],[9.258382378119627,45.519245938011004],[9.258416184354989,45.51928605081931],[9.258452473649132,45.51930355665551],[9.258465626631029,45.51930990859814],[9.2584232043902,45.51937084178091],[9.258541812438624,45.519694058382136],[9.25870459608982,45.52013766145172],[9.258741961469743,45.52013277043308],[9.258806950053602,45.52012336143968],[9.258903939400055,45.52011192677548],[9.259231928256733,45.52011492827435],[9.259231940400147,45.52011478423186],[9.259240404185702,45.52011485505841],[9.259261502008622,45.5197540497484],[9.259267806375588,45.51967973273388],[9.259208189611915,45.519578850350634],[9.259173786156627,45.51955944128473],[9.259122615299141,45.51951054712548],[9.259097327168353,45.519471342328906],[9.259077549877013,45.51929358263298],[9.259086547523241,45.51919226571329],[9.259098046541913,45.51907799977793],[9.259104016193433,45.519042360547324],[9.25911642594515,45.5190066797241],[9.25912373018696,45.51898566399102],[9.259159000764054,45.51900996761887],[9.259177162726118,45.51902249177418],[9.259220340070959,45.51905665149398],[9.259233067952868,45.519065227543294],[9.259262196968729,45.51908485557023],[9.25932715972319,45.51912312429923],[9.259412065030096,45.519154534054074],[9.259455867481316,45.51916024930676],[9.259526254263607,45.519152807863115],[9.259578440716638,45.51914124924972],[9.259599609801354,45.51912826685949],[9.259611225298178,45.5191204366838],[9.259650156413159,45.519094209593355],[9.259688932842108,45.51911792903855],[9.2597369477992,45.519145947941176],[9.259958533120926,45.51928016155747],[9.260015966673999,45.5193153776862],[9.260091556153395,45.51936172266358],[9.260132380549278,45.519388002567005],[9.260178367454133,45.51941761005998],[9.260246948170117,45.51946558204395],[9.26032001243077,45.51953624414281],[9.260348379739291,45.51957939307045],[9.26042264474957,45.51969106963359],[9.260476093957326,45.51977008415226],[9.260510824466193,45.51982143640081],[9.260522381945552,45.51983990699927],[9.260523207488971,45.51984122825641],[9.26093926103821,45.51978054963408],[9.260984297509307,45.519773309138465],[9.260960598846806,45.519634955821545],[9.260921373682944,45.519408815782604],[9.260910827509512,45.51935147687329],[9.260898508321725,45.51928449300292],[9.260896875171492,45.51927464070276],[9.26087567295236,45.519147226800726],[9.260874803816444,45.51914200823976],[9.260853054412262,45.519006980786],[9.260852118354888,45.519001132311836],[9.260837923830433,45.518924494702325],[9.260894714077054,45.51891183587474],[9.260961954130327,45.51889683093563],[9.261050976457629,45.51887696074293],[9.26110137233022,45.51886594557608],[9.261065318157042,45.51876916878965],[9.26104301333513,45.51870801332414],[9.261034713680752,45.518685214889764],[9.261023561047686,45.51865458314908],[9.261049597210954,45.5186503922985],[9.261063031094977,45.5186482284149],[9.26119084484924,45.51862763950041],[9.261340933174116,45.51860347118265],[9.261454337637508,45.51858458006932],[9.261510438573845,45.51857524385647],[9.261764651520412,45.518532897998156],[9.261975045395902,45.51849785269717],[9.261957147116748,45.51844838853326],[9.261831944190954,45.51808437124836],[9.261806311952773,45.51800983914606],[9.261780323009852,45.517930150315614],[9.261761922909667,45.51788283848906],[9.261718523413697,45.517748292761006],[9.261666106873914,45.51760466769282],[9.261586004167693,45.51738516499412],[9.261578962651503,45.517365874082984],[9.26158702283642,45.51736458651682],[9.261708527152365,45.51734523557583],[9.261961246068738,45.517304971905965],[9.262101659512583,45.517282597926055],[9.26237822438286,45.51723824626559],[9.262292817732027,45.51699090730674],[9.262275986508055,45.51695062169162],[9.262263020435272,45.51691553875556],[9.262147065248797,45.51659896247357],[9.262116965310158,45.51651622280228],[9.262098486397166,45.516465679861064],[9.261926109575068,45.51599433540509],[9.261923969938577,45.51598848069186],[9.26190403909547,45.51593398062507],[9.261874953343128,45.5158544428934],[9.261948123712076,45.51584081893346],[9.26217717747897,45.51579817871609],[9.26221209965677,45.51579168099009],[9.262197083244788,45.51575337140167],[9.262188983651809,45.515729546473324],[9.262153171987533,45.515624290533566],[9.262088337200911,45.51543366414325],[9.262176794922851,45.51542030203589],[9.262567228983997,45.515361332330365],[9.262649336236798,45.515350729722556],[9.262685175781717,45.515346101940864],[9.262877592642772,45.515321627345706],[9.263036997094162,45.51530130577808],[9.263134991917605,45.515287803982865],[9.263136305905691,45.51529229243033],[9.263155502262421,45.51529056508913],[9.263154952208676,45.51528516578903],[9.263217622696073,45.51527694773558],[9.263288251720999,45.5152676852205],[9.263325087723045,45.515262613897995],[9.263362279566344,45.51523773967003],[9.263384954756537,45.515229757625505],[9.263420002856154,45.515217417627646],[9.263468227444772,45.51521381418593],[9.263485019023989,45.51521256037773],[9.263561877777438,45.515215920665796],[9.263638984494031,45.51521754314861],[9.26364386289779,45.51521764891599],[9.26366251750762,45.51521232236113],[9.263836305185505,45.51519606194936],[9.263884826402279,45.51517921726042],[9.263898448144575,45.51517361424836],[9.263953650654472,45.51515090350136],[9.264267154676077,45.515430135900374],[9.264452627342232,45.51560173322489],[9.264675215474924,45.51579758290815],[9.264712022267744,45.51582997312686],[9.264718374051423,45.51583575503269],[9.264754247587305,45.51586842642676],[9.264794325810154,45.51590494947913],[9.264856455378846,45.51596153856056],[9.264933832073213,45.515954977687954],[9.265115589226093,45.515939578964066],[9.265369249297716,45.515918927615445],[9.265596539713853,45.51589930904245],[9.265911669626455,45.515876506520584],[9.26617581627832,45.515853443750245],[9.266423074107696,45.51583280496033],[9.266689776676218,45.515808834953354],[9.266880706387958,45.51579210689568],[9.266914502240377,45.51578850866352],[9.267193731360273,45.515763014089615],[9.267444069650256,45.515741465798676],[9.267506766185859,45.51573607162762],[9.267525565751928,45.51573436248209],[9.267719716979881,45.51571671639134],[9.267900927144078,45.515699685344615],[9.268038630287842,45.515687580483515],[9.268072210786348,45.51568449546714],[9.268230335884228,45.51566994825703],[9.268474532616313,45.515646692930495],[9.268467085937075,45.5158148210061],[9.268457036737127,45.516041533313334],[9.268421826966586,45.516836678071414],[9.268436709320572,45.51684041453741],[9.268440968694247,45.516861115704295],[9.268606833308802,45.51690650507441],[9.268623973228758,45.516741378572256],[9.268624214191808,45.51673011782973],[9.26862500843823,45.5166924920327],[9.268628398739871,45.51660035044122],[9.268630892279775,45.51653773404048],[9.2686321941952,45.51650725379685],[9.268632282961176,45.516507073569564],[9.26863304314634,45.516505388608145],[9.26865671603395,45.516262883655294],[9.268655210555714,45.51611582981095],[9.268657645768345,45.516108299303724],[9.268702752431244,45.515968507728516],[9.268705061287696,45.51592362360853],[9.268703416252917,45.51589268223521],[9.268698378875738,45.515797194075645],[9.268687802460276,45.515638037260516],[9.268684791916577,45.51555414654937],[9.268686077206503,45.51543398094762],[9.268687083532004,45.5153736452651],[9.268680836186572,45.515295630768506],[9.26867075698594,45.5151871840828],[9.268664113754218,45.515152474049806],[9.268629385175352,45.51505667757602],[9.268605311895358,45.5149938895287],[9.268588241945546,45.51487723238513],[9.268582288255613,45.51483673311953],[9.268581739082311,45.51483432215626],[9.268557175133866,45.5148353069339],[9.268501226746192,45.51432314056552],[9.268468937597948,45.514322991338666],[9.268430516831193,45.51432302751139],[9.268403982169541,45.51412460995692],[9.268384532126216,45.51397569896417],[9.268356354088953,45.513792415831695],[9.26832745056247,45.513585713928286],[9.268320897113119,45.51353746623287],[9.268302785760497,45.51339538378822],[9.268291679693803,45.51332391532777],[9.268272743178684,45.51317518310939],[9.26824615322333,45.51296757564177],[9.268215507567085,45.51273619716991],[9.26819197877055,45.51255848364141],[9.268189690861925,45.51254577066794],[9.268183103245962,45.5125091612607],[9.268182197583283,45.512493663753176],[9.268178711893718,45.5124740408604],[9.268165769872603,45.51240139755695],[9.267316648225272,45.51241809283699],[9.267309804098733,45.51238667752475],[9.267303448354623,45.51238003167786],[9.267300094154802,45.512363783805874],[9.267265214921792,45.51219463850063],[9.267330041622962,45.51203950867834],[9.267317868426415,45.51192885247263],[9.267279611134773,45.51158128925167],[9.267230111033378,45.51115180762347],[9.267152230768392,45.510475955219],[9.267165496219834,45.51047111772563],[9.267192829883765,45.51046877663348],[9.267251392106836,45.51046205111377],[9.267469962934381,45.51043876777815],[9.267575013497,45.51043038520396],[9.267922576677568,45.51040470193335],[9.26833333314988,45.51037443189519],[9.268602345075802,45.51035442139902],[9.268736087748275,45.510344098173036],[9.268765943802439,45.510344568075205],[9.268767683897847,45.51030127841439],[9.268767924108808,45.5102952562139],[9.268767686737162,45.510137596116984],[9.268767772028152,45.50983236466062],[9.268767300322802,45.50962809817355],[9.268767214641901,45.50944848437976],[9.268766698789177,45.50933996111216],[9.268768673547104,45.50910635475406],[9.268767862871874,45.508884636189855],[9.26876649621601,45.50870484536374],[9.269463015418093,45.508840363006826],[9.269484541849378,45.508844551737255],[9.269523312368998,45.5088542174128],[9.269788232527112,45.5089038721353],[9.27009833645702,45.50896299656116],[9.270107098895297,45.50897233685866],[9.270215434656693,45.508993071178594],[9.270464664371517,45.50902996204548],[9.270891989270222,45.50909359556099],[9.271212068017377,45.509142090213494],[9.271338299366517,45.509151799868306],[9.271378486482131,45.50913643890486],[9.271405059333095,45.509114449529854],[9.271408940837555,45.50901365665182],[9.27141336685132,45.5088689558312],[9.271414636378463,45.50876006828919],[9.271443968595694,45.508672923455855],[9.27144766570827,45.508587072589],[9.271452100333212,45.50838819499526],[9.2714477001222,45.5081702563406],[9.271450088693806,45.50792116726359],[9.27145046089341,45.507676043381466],[9.271450146423463,45.50762920315851],[9.271448626130109,45.50740051049894],[9.271447860252682,45.50719030400261],[9.27146079140677,45.50705207263677],[9.27149235921689,45.50694817167946],[9.271547567666024,45.50685703194658],[9.271573524632828,45.50681632199691],[9.271578844673819,45.5068019168354],[9.271582329362747,45.50677851507549],[9.271581993102174,45.50676713866517],[9.271593402293623,45.50676786765312],[9.27162322218523,45.50676652770226],[9.271674415995639,45.506767072180295],[9.271704547169877,45.506763913275634],[9.271729711822688,45.506755482601484],[9.271758822187191,45.506737024482],[9.271802145809891,45.50670612025943],[9.271870770813765,45.50666862118501],[9.271944912657178,45.50663904779534],[9.272026935833516,45.50661662937458],[9.27217704398964,45.50657225757261],[9.272263740829443,45.50655015189365],[9.272387908472956,45.50652059413126],[9.272546842626362,45.50649089038349],[9.272714448003773,45.50646756541874],[9.272797926482623,45.50645769930827],[9.272823013398883,45.50645444412841],[9.272972161657417,45.506444799261544],[9.273087490823501,45.50644066253313],[9.273151977932931,45.506431894620725],[9.273215606094178,45.506425513977355],[9.273315470998247,45.506421233940536],[9.273439884419956,45.50641355577281],[9.273584584543865,45.50640531588917],[9.273602411834043,45.50640440915139],[9.273848498426798,45.506388914601324],[9.273983024564872,45.50638654919509],[9.274054738429612,45.5063792756212],[9.274143152686584,45.50637101687249],[9.274201729003835,45.506362964609856],[9.274313651718954,45.5063453963815],[9.274440703664999,45.50634073511671],[9.274633650073387,45.506340406976314],[9.274730116161313,45.5063321914449],[9.274763473199116,45.50632912299465],[9.274839033762378,45.50632320783235],[9.274892898900097,45.50632036008867],[9.274883176917307,45.50622957279908],[9.27491632012887,45.50610091446087],[9.274955072816653,45.50604919181059],[9.27501431757169,45.50597074103483],[9.275111231021102,45.50589938238723],[9.275237818092203,45.50580732205343],[9.275342100980929,45.5057326691239],[9.275459885891358,45.505646993409336],[9.27556530178378,45.50557117642143],[9.275582137398686,45.505558588520095],[9.275677724713372,45.505546341875394],[9.275792101772995,45.505533752810585],[9.275910976825296,45.505556292521334],[9.276044474258091,45.5055429099956],[9.276213808430507,45.50552584038641],[9.276340607635554,45.50551439989636],[9.276527019770771,45.505495119326376],[9.27665550602398,45.50547008296046],[9.276801153402905,45.50544151254504],[9.276979089108892,45.505406149037086],[9.277046261974867,45.50539464512957],[9.277209248839704,45.5053807127524],[9.277341744982584,45.505366899091044],[9.277462378991068,45.505353933141826],[9.277553740123324,45.50533883287475],[9.277659182645433,45.505321268090235],[9.277702994460746,45.50530984751199],[9.27782290262408,45.5052794570883],[9.277934546163245,45.50525263300112],[9.27798064995519,45.50524136876355],[9.277968566448273,45.50521018280767],[9.2779627579382,45.505187352491376],[9.277958034511036,45.50517172930561],[9.2779511755143,45.50514351896819],[9.277933480465185,45.50506966409807],[9.277903888391341,45.504942633463635],[9.27788071574953,45.50485333724538],[9.277843190669657,45.504693067319174],[9.277807320590625,45.5045491481002],[9.27777348017668,45.50440144353351],[9.27774273321364,45.50427368656963],[9.277723054263552,45.50419193363029],[9.277687684492728,45.50404550187818],[9.277661269699767,45.503934458151065],[9.277609030557443,45.503720461102944],[9.277567565935021,45.5035474372536],[9.277530139203199,45.503399021215856],[9.277358031672167,45.50341036589652],[9.277196962203343,45.503422592662254],[9.27698006777222,45.50343942789059],[9.276737556180505,45.50345811588718],[9.276552660528841,45.50347201056616],[9.276480959478402,45.50347846659378],[9.276302735188768,45.503492884797964],[9.275911576991856,45.50351749265256],[9.275862576910571,45.50351997810607],[9.275810529179351,45.50353009470267],[9.275682401688405,45.50353862149887],[9.275520703560153,45.50232372821037],[9.275521876953112,45.50230710060424],[9.27548215594262,45.502306557219214],[9.275421410103323,45.50230452528913],[9.275357347401275,45.50230215027498],[9.275205624906768,45.50229601676863],[9.275033660065638,45.50229136289419],[9.2748368393571,45.50228441924238],[9.27477175183963,45.502281866343225],[9.274759190830434,45.50228099642389],[9.274679984746294,45.502275768099786],[9.274529253523939,45.502265499872074],[9.27447982848909,45.50226197310957],[9.274455391562634,45.50226160870875],[9.273845575616676,45.50224851591248],[9.273842381857962,45.502191646471125],[9.27383945862435,45.50214834983448],[9.273832012162563,45.502072327522356],[9.273828524064326,45.50201282150117],[9.273821846766806,45.501939677653404],[9.273817319064165,45.501876942773386],[9.273812165370215,45.501835604682945],[9.273741899610448,45.50183147042322],[9.27365789565511,45.50182652290244],[9.273656938302441,45.50183500410134],[9.273562448930356,45.50182957754471],[9.273539874905627,45.5018279573581],[9.273524528770515,45.50182285451007],[9.27351305782203,45.50181709432317],[9.273506199740147,45.50181234921385],[9.27348924654538,45.50181107561393],[9.273392553390117,45.50181312498684],[9.273341383947516,45.50181404837758],[9.273240196945615,45.50181587433651],[9.273125683746137,45.501820036277444],[9.273008774163234,45.50181831719337],[9.272923100227436,45.50181741455142],[9.272870082562385,45.501814642745266],[9.272799773380617,45.501812101180256],[9.272711031681027,45.50180675922026],[9.272566139710596,45.501812613206496],[9.272472691351739,45.50181600421239],[9.27239459341233,45.50183072680064],[9.27233986214429,45.501838913002906],[9.27228131061835,45.50184321985736],[9.272185012593274,45.50185026280245],[9.272108124863458,45.50185582833417],[9.272041445466552,45.50186015440302],[9.271974981249313,45.5018586562975],[9.271878494851924,45.50185581637357],[9.2717873561163,45.501852414601416],[9.271697006823375,45.501850811074],[9.271639272090193,45.50184930103622],[9.271610303088012,45.50184603947925],[9.271542222559766,45.5018384693096],[9.271432962422555,45.50182772948689],[9.271377956858185,45.50182146033094],[9.271370877569636,45.50182126110518],[9.271372036250938,45.50182799107708],[9.271380356751031,45.50186812463521],[9.27141331491062,45.501985157969095],[9.271461350650759,45.502176674483024],[9.271503553442578,45.502344928326146],[9.271532184882282,45.50245911858177],[9.271561599214065,45.50257638529835],[9.27157309622885,45.5026222359072],[9.271594949991607,45.50271637008807],[9.271662681832755,45.50300820044907],[9.271716089060293,45.503238363194136],[9.271737119816446,45.50332894391304],[9.271852701352797,45.50381265093369],[9.271906812646943,45.50402386486151],[9.271934988768844,45.50414949628586],[9.27216115704971,45.505111889979965],[9.272170382777322,45.505132435216865],[9.272182694310477,45.50513985871225],[9.272204534192506,45.50516952790128],[9.272214687300284,45.50519125905374],[9.27223440946939,45.50525698211684],[9.272253312656737,45.505304138147714],[9.27226572356905,45.50534548601031],[9.27227739210006,45.505381525073005],[9.272299940862284,45.50543875348965],[9.272321744751185,45.505490151053884],[9.272337012853185,45.50552936787807],[9.272344342140281,45.505560115700796],[9.272338753074097,45.5055930185108],[9.272325926648666,45.50561426431056],[9.27230447261206,45.505635530650544],[9.272281567051955,45.50565043676466],[9.27224641649422,45.5056611325713],[9.27220906938885,45.50566492986018],[9.272143717157036,45.505669333835385],[9.272060405623158,45.505673771494386],[9.271972050710644,45.505675574804066],[9.271900218743923,45.505679453990965],[9.271843483868132,45.50568171308152],[9.271725664489342,45.50568411728599],[9.271642345246413,45.50568696148883],[9.271555426516763,45.50568929212174],[9.271429012745942,45.50569330959544],[9.271313364227025,45.50569729239131],[9.271202746374883,45.505701272142225],[9.27111727141319,45.50570571424331],[9.270951334443215,45.50570823170147],[9.270787563175212,45.50571392112919],[9.27071547618595,45.50571536091525],[9.2706206828384,45.50571725942768],[9.27048658206241,45.50571993490208],[9.270350826079929,45.50572715061439],[9.27028330789288,45.505728372305896],[9.27017844499275,45.50573393063422],[9.270050587039863,45.5057384720495],[9.269899741682034,45.505743598626964],[9.26976903154397,45.50575133279683],[9.269631109735535,45.50575537542409],[9.269553532736447,45.50575715145381],[9.26949124059939,45.505756398151405],[9.269391886426465,45.505757532308145],[9.269309261066274,45.505755602667115],[9.269215138221291,45.505753168973584],[9.269087237269485,45.50574869945294],[9.269024726934099,45.50574512910966],[9.26895214255869,45.50574159142309],[9.268858149645578,45.505736861885666],[9.268743057580634,45.50573678133914],[9.268630983084586,45.50573598251358],[9.268225715780908,45.50573162309221],[9.268155418843504,45.50571915058465],[9.268092603854976,45.505708001638965],[9.267987915735963,45.505696455726586],[9.267842387939307,45.505521628974414],[9.2677095933393,45.50536210086046],[9.267702333794274,45.505345547087785],[9.267633014509347,45.50532855348847],[9.267515146150675,45.505298838044766],[9.267414250615335,45.505274330355675],[9.267333128492584,45.50525716614841],[9.26719241803813,45.50522888090611],[9.267159276160916,45.50522596100597],[9.267087807781344,45.50522275256317],[9.267017335461107,45.505221746985114],[9.26693032673225,45.505226594577444],[9.266789536737788,45.50522751713539],[9.266604887736824,45.5052275966625],[9.266547543109416,45.505228081355334],[9.266451529243756,45.505228890136614],[9.266244175552439,45.50519984086429],[9.266043486135112,45.505169713600836],[9.265929029321866,45.50515475915756],[9.265880274884555,45.5051472666947],[9.265595861821545,45.50509637000873],[9.265445466979504,45.50507175049043],[9.265441929151166,45.505084351042626],[9.265433870341745,45.50508281257942],[9.265437989854327,45.50507141680602],[9.265259934403188,45.505041631676896],[9.265064648637392,45.50500892488727],[9.264781256756685,45.50496257829063],[9.26449322328537,45.504914468535425],[9.264195685949092,45.504865002860164],[9.263930265698635,45.5048210158932],[9.263724705786919,45.504786242297016],[9.263537663096274,45.504755800132195],[9.263452611556396,45.50474104547767],[9.263392494957536,45.50473166992014],[9.263390196779893,45.504743934519226],[9.263336072075088,45.504734824163116],[9.263226624301293,45.504712141655965],[9.262924522252943,45.504649532771346],[9.262707036638313,45.50461543282581],[9.262426669026487,45.50456896542678],[9.262300973719356,45.50455085579321],[9.262109553707084,45.504550556540444],[9.26188604434057,45.504509115051206],[9.261774277843221,45.504485815394574],[9.261626554573922,45.504448610390426],[9.261383999387082,45.50438512312655],[9.261290247420803,45.50437650739653],[9.261133741291259,45.50437760290108],[9.261127044603636,45.504440921941125],[9.26110521279047,45.504461583979925],[9.26106629136539,45.5044543100398],[9.261000157909477,45.504380851120594],[9.261055445878652,45.50430935633218],[9.261055687962685,45.504309112753745],[9.261067585608838,45.50429932855702],[9.261104078089222,45.50425739979292],[9.26111778292904,45.50423149074568],[9.261123663625314,45.50419659859931],[9.261130139983868,45.504152101067845],[9.261145567239927,45.50408339751871],[9.261149311391058,45.504065387049096],[9.261168130461124,45.504004947634286],[9.261193793022468,45.50392964100281],[9.261211819181419,45.503872146704204],[9.261232502942967,45.503802522038065],[9.261257086472755,45.503734742657535],[9.261275677555698,45.503666562915726],[9.261287354331685,45.50362009128202],[9.261294601291798,45.50357619504069],[9.261296045863544,45.503542546147365],[9.261298263481255,45.50351275690021],[9.261297694522353,45.503464414036536],[9.261294029063768,45.50340246879264],[9.261289832421971,45.503300353469676],[9.261290730436373,45.50318719132705],[9.261284641306636,45.50301622296364],[9.261287652302926,45.50292543238063],[9.261287912286656,45.502862569065954],[9.2612908847044,45.50277174256472],[9.261286304729134,45.50261711648965],[9.261287582289317,45.50251684284532],[9.261285468030785,45.50250527243691],[9.261277116481494,45.502459656632915],[9.261272533562222,45.502434608420806],[9.261207710048216,45.50229788783428],[9.260954717642258,45.501803925380045],[9.26093178781202,45.50173897273037],[9.260923704698289,45.50172926112813],[9.260857250974185,45.50164945714214],[9.260845718557372,45.50161897917532],[9.260816821038748,45.501553338034924],[9.260739988384945,45.50135721117633],[9.260730785607096,45.50134060737324],[9.260563832914166,45.5010393834974],[9.260527802254764,45.500967241828214],[9.260465559545041,45.50084541150495],[9.260393737672377,45.500708526336126],[9.260327175816087,45.50057143112577],[9.260270344780968,45.5004544218892],[9.260195631097922,45.500336994255186],[9.260178082964394,45.50028969809181],[9.260166822381313,45.500243044694145],[9.260143526189001,45.50019271927259],[9.260155247525963,45.500125275372646],[9.26016774965827,45.50006619159282],[9.26016817502887,45.50004457930402],[9.260191322666493,45.499851149875056],[9.260228438057744,45.499697490934246],[9.26024534667341,45.4993387549021],[9.26027686260338,45.49926452421364],[9.260318261001824,45.4991600277707],[9.260340603338104,45.499103279819224],[9.260388558266891,45.499041261995835],[9.260456138581347,45.49894681397821],[9.260487237166716,45.49890157629688],[9.260517819552634,45.49885543068461],[9.260630343267797,45.49868726125928],[9.260733153806743,45.4985223092048],[9.260835916307487,45.49834706905433],[9.260905002130404,45.498213076066556],[9.260944513543631,45.49814386748338],[9.260987990955924,45.498068763201736],[9.261039354471507,45.497977457160324],[9.261232255250722,45.497482863465585],[9.261248561243498,45.497430251551044],[9.261251878096113,45.49741958682538],[9.261305068152641,45.497294450832456],[9.261310746863982,45.49727419467455],[9.261320744384646,45.49723852798723],[9.261342227748436,45.497145831903545],[9.261351716724002,45.49707212826925],[9.261407195980555,45.49688856168265],[9.261437839891816,45.496789660970734],[9.261486291790348,45.49665309547417],[9.26151645397131,45.49656355684958],[9.261550933228435,45.49646104694322],[9.261563626781765,45.49642447396704],[9.261581601382371,45.4963619571094],[9.261638633282049,45.496190637160616],[9.261711853702215,45.49596093582885],[9.261793708826907,45.495702780601576],[9.261824124320139,45.495612881262005],[9.261898451068193,45.495404077516696],[9.261991553689427,45.49514302505629],[9.262031305119558,45.49498822524125],[9.26159299570051,45.494953926730545],[9.261580331297596,45.494791902141586],[9.261551228029761,45.494578753595505],[9.261507679692073,45.4942556911419],[9.26149084245672,45.49413497254253],[9.261442090925017,45.49376866324049],[9.26142314079369,45.493639308512655],[9.26141727602125,45.49357766522509],[9.261377726637633,45.49327495373635],[9.261374442670201,45.49325112665255],[9.261363055429852,45.49316864971371],[9.26135539916965,45.49310702851356],[9.261312509794553,45.49280145329726],[9.261251193517907,45.49233820498834],[9.261235717170312,45.49222649318249],[9.261223169623081,45.49213099444803],[9.26119502390721,45.49193893282018],[9.261189007828293,45.49189154739989],[9.26117947112381,45.491818931271084],[9.261125521618464,45.49141244417746],[9.261104045133221,45.49125388692884],[9.2610591970154,45.490928126789015],[9.261045928628835,45.49083713915031],[9.261023391912593,45.4907094216532],[9.261161057727993,45.4904719765322],[9.261151413837512,45.49043430243987],[9.258253835293829,45.48972740977484],[9.258280863331976,45.48948360211833],[9.258296856666037,45.48938201690577],[9.258316991406648,45.48924854985244],[9.258342786290536,45.489082315427105],[9.258356994567114,45.488970995165886],[9.258378956735651,45.48880060192573],[9.258395755235428,45.488668042479894],[9.258411231445317,45.488559797676224],[9.25841872729277,45.488497466921864],[9.25843578823009,45.488360766416925],[9.25844844047568,45.48826746961883],[9.258451397880306,45.488133276244724],[9.25845355319695,45.4880504173016],[9.258478034187261,45.48789930743607],[9.258500501854263,45.48774169439851],[9.258510007378245,45.48767953910691],[9.258525713263927,45.48757685635946],[9.258555968887531,45.48737895528406],[9.258571717298045,45.48726601130363],[9.25858464951886,45.487180877734815],[9.258596873365253,45.4871003542703],[9.258632862248907,45.48686345691833],[9.258667443773312,45.486635077662505],[9.25871026607974,45.48635355591427],[9.258744850429643,45.486109136846196],[9.258749029750566,45.48609683204093],[9.258752683326339,45.48605630132385],[9.25875705610664,45.48600794711992],[9.258795057851714,45.48562947755588],[9.258820676210831,45.48544209099024],[9.258825356395056,45.48540781363104],[9.25884671447396,45.48521785340866],[9.25886701072793,45.485030775896114],[9.258890084577063,45.48481594203215],[9.258896986747336,45.48478069653081],[9.258953403002042,45.484492348079826],[9.259001465960994,45.484439520446735],[9.259044274910709,45.484401808356225],[9.25912421079745,45.484334668910535],[9.259314323740298,45.484198701111644],[9.259400463397753,45.48419541844308],[9.259853672218062,45.484185172671246],[9.259971102740309,45.484180189298115],[9.260070035580405,45.4841791182926],[9.260446336780099,45.484170755205646],[9.26096417115187,45.484156424416426],[9.261563022899054,45.48413806260715],[9.261925451540488,45.484132174641374],[9.262319062628123,45.48414263182201],[9.26254314342703,45.48414803132327],[9.263135543726392,45.484162322676426],[9.263240340905112,45.484164844830836],[9.263455668536286,45.484170037662906],[9.263476634835314,45.484171465528696],[9.26385405253315,45.48417489794491],[9.264512723956425,45.48417837207832],[9.264759273103875,45.48418069993491],[9.264877200594501,45.48417536832992],[9.264865619986244,45.48371050289941],[9.264848902437148,45.48324707148228],[9.264833248678425,45.4827046538381],[9.264826344167204,45.48252252570347],[9.264814923558875,45.48217919119906],[9.264797903961826,45.481831504152964],[9.264777392958315,45.4814704586866],[9.26477084086843,45.48130888796925],[9.264763511334728,45.48118625735811],[9.264744654950453,45.48080682797845],[9.264723706872525,45.48043424417014],[9.264722619719244,45.48042612778639],[9.264683861754715,45.480135710275306],[9.264666982853338,45.48003670234962],[9.264639348319433,45.47984568409558],[9.264598611568296,45.47960803496165],[9.264556301261472,45.479345717703424],[9.264545734241281,45.47928306818553],[9.264437669701257,45.479272138846895],[9.264120124300051,45.47924095504507],[9.263846367680122,45.47921353978295],[9.263563397398157,45.479185758054015],[9.263559307881355,45.479200529117406],[9.263217104708259,45.47916866154093],[9.263083517771838,45.47915554840583],[9.26283818471481,45.47913207978942],[9.262449906459636,45.479105284340065],[9.262440510801536,45.47910435179355],[9.262383910895817,45.47909969312041],[9.262313750594457,45.479092707258395],[9.262214382201474,45.47908068475248],[9.262176762169833,45.47909925904764],[9.262137348829185,45.479120159698496],[9.262079743407098,45.47913045384],[9.262017537655533,45.47914200062922],[9.261964052528413,45.479163446512906],[9.261899825371218,45.479188868408414],[9.261871146481397,45.47919590084879],[9.261841957804924,45.47919230426834],[9.2617648605402,45.47918208458923],[9.26164321179597,45.47916628715175],[9.26154846318255,45.47915445152034],[9.261469584161878,45.47914349763432],[9.261455002706237,45.47914171276578],[9.261474282303897,45.47900000195422],[9.261493404991539,45.47884927249234],[9.261511087148886,45.478705243061306],[9.261522245890223,45.47861701674242],[9.261530633010924,45.47856030026129],[9.26153800035702,45.4785071775103],[9.261541301059612,45.4784877278008],[9.26155171299585,45.47840957530343],[9.261565165623741,45.478311091589774],[9.2615737878253,45.47824158414213],[9.261578622914357,45.4782080893596],[9.261586490773347,45.47814147295636],[9.261601967226357,45.47802136419927],[9.261613645515565,45.47793764617433],[9.261622280914603,45.47787101900886],[9.261627353049793,45.47783069191938],[9.26163674113942,45.47776083167011],[9.261644094766503,45.47769924799417],[9.26165349171942,45.477625778319734],[9.261654848746566,45.47761488400261],[9.261656341392632,45.47760288225191],[9.261663521370846,45.47755079502772],[9.261690804087486,45.47735262954413],[9.261720260707053,45.47712935527534],[9.26175607262023,45.4768887845193],[9.261785770825576,45.476659758021114],[9.261792625098407,45.476606456390186],[9.26179236930464,45.47659817605215],[9.261786475116672,45.47659349101926],[9.261773914933439,45.47659152154415],[9.2617344842347,45.476591719796225],[9.261659972806227,45.47659210630797],[9.261608003042427,45.47659213517978],[9.261511209555664,45.47659091637322],[9.261400101091864,45.47659006323912],[9.26132354099713,45.47659010317441],[9.261223167641267,45.47658942336214],[9.261131506273971,45.47658856155351],[9.261074148523818,45.476588233442634],[9.261040090527526,45.476588248171936],[9.260996308155962,45.476588087059866],[9.260977613423522,45.476587553654305],[9.260976218832853,45.47658754783541],[9.260923339865691,45.47658739845028],[9.260843209367685,45.47658725718765],[9.260736940419298,45.4765871214527],[9.260651421894588,45.47658661429613],[9.260554391189078,45.47658666436087],[9.260478344472217,45.47658705359932],[9.26040050158009,45.476586357755046],[9.260346127120359,45.47658651754165],[9.260347261708478,45.47656893599852],[9.260347856979537,45.47645355977487],[9.260347505849902,45.47635495457401],[9.260348650174965,45.4762476870012],[9.26034924453792,45.47612655013025],[9.260349111950555,45.47601982552],[9.2603505854435,45.475861728516705],[9.260349764695235,45.475702736630815],[9.260350455743168,45.47561096980876],[9.260352399583416,45.47544387071781],[9.260354457235044,45.47523475466719],[9.260355406495206,45.47507394953252],[9.26035623134399,45.47494451318397],[9.260357077204056,45.4747528798285],[9.260358792789082,45.47458901259341],[9.260359763266619,45.47443560622015],[9.260359111486004,45.47432726257879],[9.26035998950832,45.47421495500966],[9.260360295893536,45.474170300313446],[9.260360659876795,45.474118696707784],[9.26036049639906,45.47409705865735],[9.260360185256394,45.474057220905074],[9.260359729719665,45.47399989452293],[9.260359717209294,45.47396657281999],[9.26035971302778,45.473926716366094],[9.260378665061689,45.47392775334367],[9.26038253240059,45.47386735677633],[9.260388125902269,45.47378171745124],[9.260391040411998,45.47374781301876],[9.260394015656145,45.473713206369084],[9.260398375118944,45.47364576988985],[9.260404753274285,45.473566627502386],[9.26041722965331,45.473408685398866],[9.260429642492774,45.47323416357549],[9.26043502935408,45.473162035224014],[9.26041901435431,45.47312638268774],[9.26038804402003,45.473051807829],[9.260366073213284,45.4729979508004],[9.260340257256196,45.47293418340686],[9.260315995282303,45.47287727123939],[9.260284309204277,45.47282504748557],[9.260203194385452,45.472693079223625],[9.26017615752863,45.47264752361051],[9.260099388893584,45.47258151378794],[9.260014907763134,45.47251029185954],[9.259983564461649,45.47240723853408],[9.25995144046724,45.47230130664912],[9.25997176970025,45.47225691246372],[9.260054214575952,45.47212443718355],[9.26007733166624,45.4720742759922],[9.260103466893051,45.472012757657204],[9.26010397399757,45.47200896707833],[9.260115767450001,45.47187212488816],[9.26019680108189,45.47177516169573],[9.26017179996048,45.47172708115986],[9.260121151236847,45.47166282112601],[9.2601116073293,45.47165161856967],[9.260103671222708,45.47164230256865],[9.260090454245342,45.47160014488334],[9.260156413826687,45.471505196215176],[9.260166264874472,45.47148023200373],[9.260169856153594,45.471471105809606],[9.260175306754217,45.4714322990495],[9.26089470909539,45.471465818270524],[9.261156607165198,45.47147406856084],[9.261290516803252,45.47148351981684],[9.261348398457521,45.47148760904489],[9.26183078662291,45.471535102218965],[9.262570176378993,45.47158017643455],[9.262963603686583,45.47161392645174],[9.263182046965325,45.4716281496602],[9.26333883653266,45.4716442336155],[9.26478903389653,45.47180086937785],[9.265988595488194,45.47193821366021],[9.266111477168224,45.47199074574797],[9.266191456185103,45.47202807584506],[9.2662311508593,45.47204660654367],[9.26625791041587,45.472059424697136],[9.266394589180152,45.472124012716414],[9.266553956293912,45.47220340836513],[9.26765242286802,45.47251056777229],[9.267862475799111,45.47258913188337],[9.267998216966793,45.47263876949604],[9.26805935088152,45.47265660124534],[9.26813800347668,45.47266190749021],[9.268356915812362,45.4726390085357],[9.269104694113901,45.47245036353695],[9.269367661155384,45.47238361406709],[9.269405186643146,45.4723734895529],[9.269440714844524,45.47236841929872],[9.26945761626769,45.47236606622015],[9.269477266441797,45.47236333762111],[9.26958267336307,45.4723560504233],[9.269686567357983,45.47235075591909],[9.269893569719612,45.47233907935883],[9.269914132584672,45.4723399579361],[9.270007232436788,45.472343419594345],[9.27040435466818,45.472323750262326],[9.27095313571881,45.47229517839436],[9.270977062119078,45.47229315948718],[9.271076309032809,45.47229527356003],[9.271222539496101,45.47230951751069],[9.271286580667523,45.47231986980047],[9.271405207436603,45.47234293697415],[9.271781296696872,45.472459084009245],[9.27196401323641,45.47250777717741],[9.2720605093228,45.47253636890789],[9.272181883064697,45.47256119293758],[9.272311718894876,45.47257389033142],[9.272596791144206,45.47259517368215],[9.272596788457173,45.47259461562594],[9.272596631805055,45.47257005224223],[9.272594206702912,45.472164697509086],[9.27259657071993,45.47171510036122],[9.272597647431644,45.471622540391245],[9.27260371361419,45.47109959412591],[9.272606494891779,45.47082435452586],[9.272616174933372,45.470796923367416],[9.272622040813177,45.47068142638564],[9.272601026106667,45.47052016031463],[9.272627579532568,45.47039969046098],[9.272617705115218,45.470320316056274],[9.272617194952934,45.47029672561501],[9.272615776818792,45.469988912314015],[9.27261520662201,45.46978015314291],[9.272617261808435,45.46975797874473],[9.272628559341756,45.46942090880744],[9.272631406785475,45.46937730110157],[9.272646183039916,45.469212772319075],[9.272665580615854,45.46904893459151],[9.27267310100766,45.46901141842965],[9.272698048924815,45.46888447162385],[9.27270157039811,45.46885599301317],[9.27272486440124,45.46867518805947],[9.272740209616934,45.468559821440834],[9.272756414772104,45.46840788163544],[9.272762240758393,45.46831076477001],[9.272773222618259,45.46815004341901],[9.272775518747395,45.46810355668915],[9.272706187817224,45.468085593978444],[9.272415190143999,45.46809361431006],[9.272243210432249,45.46809876735843],[9.271974462785913,45.468081080701275],[9.271569126277951,45.4680514044335],[9.271572662339244,45.46800185443689],[9.271623640782707,45.46752747874407],[9.271657995319625,45.46719045302002],[9.271660434379147,45.467178907920406],[9.271872407695646,45.467202157909455],[9.27199865674393,45.46720573716354],[9.272042031095339,45.46696537880132],[9.272041238983507,45.46691765728173],[9.27198479496843,45.46688448775698],[9.271890388942385,45.466889545777235],[9.271869891600655,45.46688858639011],[9.271417686150881,45.46687863420505],[9.271336715318514,45.46684975304303],[9.271309946322615,45.466495617426524],[9.271309342948616,45.466487157899174],[9.27131202513569,45.46647562122992],[9.271369559820805,45.46619735320594],[9.271406419567185,45.46599053930228],[9.271573809865908,45.4657152327671],[9.271622275086447,45.46551735623512],[9.271657830857817,45.46536698172858],[9.271602132514253,45.46512352836143],[9.271532946434524,45.4648281440774],[9.271529259974303,45.46481428225401],[9.271526931684855,45.4647395342891],[9.271523282909028,45.464658830781076],[9.271547836007612,45.46443606017556],[9.271549037716587,45.46442524709351],[9.271549071170124,45.464424220897435],[9.271554125286073,45.46427515195182],[9.271559469186016,45.46398112082672],[9.271560351295564,45.46395967829334],[9.271528152215053,45.463825585480066],[9.271537234226994,45.46355351695879],[9.271553687406143,45.4633035284383],[9.27161045392205,45.463303393638675],[9.27166210620167,45.46325839184856],[9.271704588052378,45.46320824523292],[9.271726309343688,45.463110010445135],[9.27173547510414,45.46283162295492],[9.271749327521862,45.46271427067134],[9.271761337376422,45.46262344878561],[9.271825851535064,45.4624414657396],[9.271880938177675,45.46225411344836],[9.271928094223048,45.462101415932246],[9.271982954489257,45.46196028439287],[9.271985911075625,45.46195268949585],[9.27209259202269,45.46173013737102],[9.272109244982534,45.46169538978885],[9.272115272484017,45.461682711002126],[9.272117577201447,45.46167788096774],[9.272139345044753,45.46164284217896],[9.272180606538655,45.46158662258215],[9.27218078448273,45.46158638813194],[9.27222616833127,45.461517656279874],[9.272648109507172,45.460879927427136],[9.272708083135166,45.46078928809227],[9.272756171082316,45.46071660712125],[9.272388643433723,45.46075315413021],[9.271928259859386,45.460750622282326],[9.271681550967962,45.46077642048959],[9.271185967681374,45.46069110578892],[9.270018611114068,45.46062139153724],[9.270196640824405,45.4604627869911],[9.270200601831457,45.46031179436413],[9.270248322090668,45.460099806372625],[9.270350823080046,45.459879749963754],[9.270329192395918,45.459734587469704],[9.270380377417924,45.45949303182644],[9.269966123771276,45.45890771023879],[9.269241932455676,45.45888092912532],[9.26929755348462,45.45847937913861],[9.269494850921625,45.45851387441398],[9.269426025741412,45.45823116111651],[9.268322499679291,45.45810614778934],[9.268315590034772,45.45817030536132],[9.267038756108843,45.45799488425561],[9.266051908937614,45.45785337463827],[9.26605325431858,45.45780760125326],[9.265475258533844,45.45771884400034],[9.265089369584581,45.45764944999316],[9.264467026932836,45.457485109721055],[9.26448843072151,45.45723994406189],[9.264552495810493,45.4565062205394],[9.264624845251168,45.455692755535985],[9.26413993885826,45.45569385845008],[9.264039144159213,45.455712822347714],[9.263950618703111,45.4554856514882],[9.263971019133736,45.45546398391424],[9.263937603833588,45.455434510627036],[9.263842907496482,45.45544193895122],[9.263796314563038,45.45544167738399],[9.263763433825446,45.455414372062734],[9.263744363771451,45.455386665842376],[9.263722482373462,45.45529626487447],[9.26365670895555,45.45524452553698],[9.264182652646335,45.45404770394292],[9.264619840600819,45.453057919988254],[9.264626576120536,45.45295845190096],[9.265078415592477,45.452526084652334],[9.265114049545133,45.45248060080213],[9.265115476571331,45.45245213619959],[9.265107138454798,45.45241936473128],[9.265061947068219,45.45238738976041],[9.265044955617388,45.45236652871823],[9.265031064059052,45.45234674061516],[9.265029936470956,45.452324402641466],[9.265046716510803,45.452297342627325],[9.265090085142026,45.45226229106804],[9.265100252856364,45.452246047622516],[9.2651103871772,45.45221720279411],[9.265122572355825,45.45219482496011],[9.265141960602863,45.452178569137224],[9.265171607593967,45.45216552990152],[9.26522885438545,45.45214197644642],[9.265254846349738,45.452113094829215],[9.265258813105808,45.452083535206576],[9.265239248766798,45.45205943078305],[9.264953987324871,45.45192026978499],[9.264921654013023,45.451903053681235],[9.264906825106214,45.45190703948688],[9.264890501103698,45.45192221704958],[9.264890580938278,45.45194202815988],[9.264883606128018,45.45198745457449],[9.26486525950558,45.45200767740166],[9.264830493772473,45.45202000832756],[9.264790535148876,45.452015771344904],[9.264750016543832,45.451995693809415],[9.264737637540895,45.45197661325044],[9.264741638246917,45.45195426340172],[9.264791612333825,45.4519069462441],[9.264812992794797,45.451879146526835],[9.264851062592545,45.45179942614712],[9.264856096413057,45.45177923415158],[9.26486356857616,45.451766336354986],[9.264890856403152,45.45171920670331],[9.264907115584439,45.45169291300183],[9.264927426631019,45.45165796891078],[9.264975366663682,45.451613329691774],[9.265064727161041,45.451530115003415],[9.265067479411291,45.45152523005924],[9.265087569654362,45.45148959337008],[9.265119046046863,45.45143303886168],[9.265144181080856,45.45133314101775],[9.26515676939878,45.451284911244166],[9.265169465682371,45.451243359993065],[9.265299705687982,45.45120841293793],[9.265437866575637,45.4512973737236],[9.265452518947672,45.45130488259123],[9.265507283877064,45.451305907602915],[9.265525715033556,45.45130654889346],[9.265582747306288,45.45130019675012],[9.265808602329544,45.45131618897774],[9.26581911073732,45.451318126782155],[9.265856130492937,45.45130662741137],[9.265941608787683,45.45127672523855],[9.266129189960685,45.45121145438831],[9.26614193319776,45.45120455693867],[9.266207119543052,45.451131865816016],[9.26621853297425,45.451119570826506],[9.266189489745816,45.45101052776898],[9.26615385514623,45.45093843132637],[9.266143071894145,45.450918807139985],[9.266081751662485,45.450807147844024],[9.266202626463679,45.45076076321449],[9.266214499639576,45.45075651408845],[9.266217946824002,45.45075530892556],[9.266221328248806,45.450753716870736],[9.266227475023626,45.45075005713948],[9.266246959010568,45.45074074070747],[9.26626164783385,45.45073424376169],[9.266268079708485,45.450731384457484],[9.266276895991705,45.450727034429185],[9.266297285723054,45.45071724782545],[9.266311290319129,45.45071210262309],[9.266312120323423,45.450711839660116],[9.266321116099984,45.45070758822194],[9.266332384446217,45.45070253939897],[9.266345644825257,45.45069686486382],[9.266496808166398,45.45062191207376],[9.266507911673372,45.45061716965302],[9.26651142333418,45.45061608134459],[9.266519637648544,45.45061154367828],[9.266532281827542,45.450605375499805],[9.266535114360385,45.4506040007399],[9.266546326263644,45.45059783589773],[9.266559709311887,45.45059106292424],[9.266572173982105,45.450584796148185],[9.266584064919519,45.45057889975095],[9.266595839490638,45.450572733592395],[9.266607321541422,45.45056691015419],[9.266617235307933,45.450562080485774],[9.266625873181658,45.450557874863044],[9.266634675139617,45.4505532098038],[9.26664480303802,45.450547686553314],[9.266654586671502,45.450542380129605],[9.26666505882889,45.450536640049556],[9.266675302365273,45.450531233540275],[9.26668627334028,45.45052551029731],[9.266696938711377,45.45052006679824],[9.266706405301257,45.45051532817528],[9.26671384311109,45.450511557394464],[9.266720438259524,45.45050807661187],[9.266728715337983,45.45050329575581],[9.266739033302763,45.45049740301078],[9.266749301341811,45.450491771411556],[9.266757541195256,45.45048723366846],[9.266767489442868,45.450481584811406],[9.26677397939773,45.45047749219992],[9.26678052041937,45.450473381466914],[9.2667870478043,45.450469090744384],[9.266793625493053,45.45046461988327],[9.266949168531431,45.45036136598932],[9.266958243712466,45.450354990068696],[9.266964411222533,45.45035032213206],[9.266970245689947,45.45034553795894],[9.266972356128633,45.450342904727314],[9.266976912506912,45.450338276554994],[9.266988200253591,45.4503292311576],[9.267006120790784,45.450316560855235],[9.267014442521905,45.45031041171523],[9.26702077393449,45.45030524833532],[9.267025063834685,45.45030106183446],[9.26703049952838,45.450295783531786],[9.267039411772805,45.450287400751876],[9.267049280023206,45.45027835866271],[9.267057941040106,45.45027093957982],[9.267063939530223,45.450265686964464],[9.267067336210959,45.450261916595814],[9.267070868850649,45.450257146793525],[9.267079256899565,45.45024879223768],[9.26708963398641,45.45023918189087],[9.267098123231207,45.45023059307012],[9.267105186702725,45.4502233847385],[9.267109766981783,45.45021840546422],[9.267112561260006,45.45021434846767],[9.26712062543644,45.45020511256269],[9.267139014310542,45.45018329608298],[9.267146104832417,45.450176402722235],[9.26714828428954,45.45017484945156],[9.267151629976782,45.45017111520365],[9.267155188986177,45.450166516356965],[9.267160195434382,45.45015970887289],[9.267165581872764,45.450152126410984],[9.26717141304757,45.4501439398398],[9.267177142553013,45.45013588852154],[9.267183101137995,45.45012760264065],[9.26718515870874,45.450124609486686],[9.267187261446688,45.45012034707972],[9.267191773622265,45.45011177654392],[9.267197974804805,45.450100699771276],[9.26723841008571,45.4500327194091],[9.267288727209635,45.44998030574921],[9.267295135380273,45.44997245086176],[9.267301863673815,45.44996468523615],[9.267308591965513,45.449956919610166],[9.26731523056952,45.449949118189224],[9.267320729426272,45.44994097739209],[9.267326100231626,45.44993280088985],[9.267331407010536,45.44992460653489],[9.267337469256171,45.449916617437836],[9.267344223028331,45.44990883374804],[9.267349657767193,45.44990065709515],[9.267354913302809,45.44989244485676],[9.267360053575157,45.44988419688336],[9.26736520663399,45.44987594887986],[9.267370295666478,45.44986768302367],[9.267374642017831,45.44985921187942],[9.267378194536425,45.44985053556681],[9.267381913467506,45.44984189486923],[9.267385517135809,45.44983321843678],[9.267389492163867,45.44982464914857],[9.267393339098657,45.449816035154434],[9.267397185989799,45.449807412159196],[9.267400917618184,45.44979875342916],[9.26740494375089,45.449790175019814],[9.267408918603088,45.44978156972707],[9.26741262448215,45.44977287505258],[9.267417713498507,45.44976460919418],[9.26742139367176,45.4497558875764],[9.267424471578122,45.449746906336365],[9.26742703664852,45.44973764726294],[9.267429267447145,45.449728010927174],[9.267440099310827,45.44963596790137],[9.26744032528791,45.4496269483244],[9.267440806980915,45.44961791914838],[9.267441288631302,45.44960888097141],[9.267441731960256,45.44959985188509],[9.267442124137405,45.44959082291837],[9.267442682472378,45.449581775560986],[9.26744278056973,45.44957275628293],[9.267443748032624,45.44956368996674],[9.267444395839961,45.449554633399],[9.267444135918108,45.449545623959196],[9.267442623036521,45.44953667145558],[9.267442005138712,45.44952768085489],[9.267441463926035,45.44951868107384],[9.267440296276408,45.44950971876182],[9.267439461027514,45.44950073767039],[9.26743874082747,45.44949174730883],[9.26743823797936,45.449482747438026],[9.267437236531107,45.44947377573621],[9.267435710907183,45.44946483226324],[9.267434223647406,45.44945588870052],[9.267433426721482,45.44944689851828],[9.267432450850421,45.44943792675658],[9.267431142537253,45.449428964773254],[9.267429923782144,45.449420011581516],[9.267428538785028,45.449411058778466],[9.267427294412494,45.449402096645535],[9.26742581990113,45.44939314405177],[9.267424064099565,45.44938420111671],[9.267420697324443,45.449375324955774],[9.267418008009962,45.44936638420338],[9.267418579347002,45.44935738182058],[9.267416823377792,45.44934840288156],[9.267414964978817,45.44933939717889],[9.267412824907707,45.44933032012638],[9.267409264323232,45.44932102136897],[9.267392872401281,45.44924292160501],[9.267391155058146,45.449233996581384],[9.267388913711658,45.44922513579016],[9.267386493421167,45.44921629341935],[9.267383472485655,45.449207533462115],[9.267380566514115,45.44919874623285],[9.26737768616162,45.449189967944726],[9.26737462682294,45.449181199075944],[9.267370634526271,45.44917254940177],[9.26736822702874,45.449163707000565],[9.267367404372104,45.44915468087341],[9.26736664556988,45.449145636594835],[9.267364889912932,45.44913672066131],[9.267362750792035,45.44912784162833],[9.267360675610876,45.44911896244583],[9.267358651539135,45.44911007414277],[9.267357151470836,45.449101121607384],[9.267355970885788,45.4490921233199],[9.267354815876734,45.4490831249726],[9.267353686443647,45.44907412656544],[9.267352148013718,45.44906517411964],[9.267350238950511,45.44905626754541],[9.267347793140287,45.449047434234174],[9.267345181174452,45.44903861931341],[9.267343195428978,45.4490297219193],[9.267341989314586,45.44902073269226],[9.267340834266793,45.44901172534378],[9.267338950782785,45.44900281870947],[9.267336364395979,45.4489940037286],[9.26733448087081,45.44898508809329],[9.267332482383623,45.448976199729735],[9.267330189905609,45.44896733905647],[9.267327501304553,45.44895854231638],[9.267325643357527,45.448949626621044],[9.267323798198861,45.44894071089579],[9.26732187635664,45.44893180435076],[9.26731968614178,45.44892293443713],[9.267317508715376,45.44891406449356],[9.267315011765449,45.44890523130097],[9.26731222091012,45.448896443800486],[9.267309276729948,45.448887683661404],[9.267305961875591,45.44887896039278],[9.267302710961037,45.448870236974585],[9.267298782678733,45.44886159614888],[9.267294790501335,45.44885296447336],[9.267290951608315,45.44884429643529],[9.267288083990826,45.448835500112466],[9.267285587049015,45.448826666919075],[9.267282898419216,45.44881786117675],[9.267278778242563,45.44880920279663],[9.26727426173219,45.44880056334462],[9.267269399911836,45.44879191569834],[9.26726489580992,45.448783195207525],[9.267194348376252,45.44859405900578],[9.267142814810597,45.44850213467045],[9.267059202147122,45.44837606323545],[9.267008993036361,45.44822589895892],[9.266854687313138,45.4480095318458],[9.266727828722656,45.447856422890176],[9.266655494135794,45.447751558318295],[9.266593903766521,45.447668937251194],[9.266555710617132,45.44758540652158],[9.26650087752053,45.44735432433744],[9.266499454233152,45.44734534460595],[9.266497839177426,45.447336374322376],[9.266496057885925,45.44732740442612],[9.266494685749635,45.44731842457535],[9.266493415913006,45.447309444486166],[9.26649238899508,45.44730045482995],[9.266491579463267,45.44729146466717],[9.266490769931714,45.44728247450432],[9.26648993482564,45.44727348440105],[9.266488677735868,45.44726449528104],[9.26648747179607,45.4472555060418],[9.266486240281877,45.44724651686214],[9.266484765850068,45.4472375372495],[9.266483853979004,45.44722853832393],[9.266483197898223,45.44721954780342],[9.266482656861752,45.447210548013764],[9.266482307636146,45.447201547777176],[9.266481779387375,45.44719254795772],[9.266481238351409,45.44718354816803],[9.26648063342109,45.44717455752824],[9.266479414654846,45.44716555931762],[9.266478745745847,45.447156559825814],[9.266478652268562,45.44714755899323],[9.266479057498533,45.44713855699869],[9.266479846349242,45.44712955411028],[9.266480174854744,45.447120552294436],[9.266479697756568,45.447111552355665],[9.266478888187276,45.447102553191506],[9.266478487813595,45.44709355307392],[9.266477767756237,45.44708455370117],[9.266476830314161,45.4470755548349],[9.266476174194054,45.44706655531315],[9.266476234165541,45.44705755412289],[9.266476882354855,45.44704855156211],[9.266477517756623,45.44703954903112],[9.266477897411395,45.447030547095984],[9.266477778359869,45.44702154632278],[9.266477007196578,45.44701255607008],[9.266476005776866,45.44700354835166],[9.26647481258984,45.44699455008114],[9.266473977406099,45.446985541975394],[9.266474382678094,45.44697654898153],[9.266475312188,45.4469675457652],[9.266475576799102,45.44695855309902],[9.266475444960825,45.44694955235555],[9.266475453783114,45.44694055128429],[9.266475462605408,45.44693155021302],[9.266475420278443,45.44692254926092],[9.266475467462694,45.44691354810025],[9.266475322794937,45.44690453838551],[9.266474909636058,45.44689553829739],[9.266474291838064,45.446886529684996],[9.266473060249615,45.44687752250269],[9.26647209711028,45.44686849669275],[9.266471159545867,45.44685947082322],[9.266471718265088,45.446850477471656],[9.266472059600085,45.44684148462662],[9.26647188931619,45.44683246597035],[9.266471565542501,45.4468234386707],[9.266471663834198,45.446814428389786],[9.266470444611809,45.446805331167944],[9.266468329475542,45.44679606501355],[9.266466775837722,45.44678655452248],[9.266467894488592,45.44677698379907],[9.266468292983165,45.44676926896993],[9.266466689890006,45.44676011863609],[9.26646804163183,45.44675116844199],[9.266469418947787,45.44674221818831],[9.266470233453996,45.446733233241694],[9.266470651385262,45.446724213214786],[9.266470685529024,45.446715158077865],[9.266470246416931,45.446706077040446],[9.266469193220004,45.446696934426406],[9.266468101576988,45.446687773899804],[9.266466792423916,45.44667858687678],[9.266466327526627,45.446669460894086],[9.266467257075314,45.446660466678274],[9.266469222856912,45.4466515690597],[9.266471956253971,45.44664275066204],[9.266474177906215,45.44663387945031],[9.266475452878112,45.44662492043377],[9.266476024212448,45.44661589104825],[9.26647626286662,45.446606817432546],[9.266476488733487,45.44659774384666],[9.266476727345195,45.446588661229974],[9.266476953127269,45.446579569642175],[9.266477460355455,45.446570504401684],[9.266478185051117,45.446561456656646],[9.266478807321718,45.446552382147004],[9.266479391188106,45.446543298725814],[9.266480077352137,45.446534215066286],[9.266481057749132,45.44652515772431],[9.26648240922928,45.446516153523966],[9.266484067771637,45.446507184612365],[9.266486519713698,45.44649833986681],[9.266488971654994,45.44648949512114],[9.266491449169962,45.44648065031583],[9.266493939471372,45.44647180548069],[9.26649631460245,45.446462942911715],[9.266498446479499,45.446454017902106],[9.266501167033061,45.44644519053232],[9.266504220391788,45.44643643439538],[9.266507171240285,45.44642763349193],[9.266510339554968,45.446418850083774],[9.266514160439188,45.446410155165346],[9.266515523211432,45.446406272536464],[9.266518460507429,45.44639730964534],[9.26652164109787,45.44638841819557],[9.266524962473442,45.446379553420776],[9.266528424761095,45.44637074232384],[9.266531899792525,45.446361922195976],[9.266535938390486,45.44635329877776],[9.266539964115374,45.44634465738731],[9.266543938647958,45.44633600711494],[9.266547964328064,45.44632735672321],[9.266552028453155,45.44631872424381],[9.266556092534673,45.44631008276335],[9.2665604639729,45.446301539577945],[9.266565168511416,45.446293130631744],[9.266570167576905,45.446284811009356],[9.266575153853754,45.44627649141655],[9.26658017857533,45.44626818973605],[9.266585254486438,45.446259896937015],[9.266590330396069,45.44625160413777],[9.26659554721707,45.446243365016144],[9.26660087929038,45.446235161629765],[9.266606211404502,45.44622696724412],[9.266611812470842,45.44621886224175],[9.266617490427908,45.44621079306406],[9.266623194,45.446202732827416],[9.266628948803799,45.44619469047312],[9.26663480607255,45.44618668388387],[9.266640663382002,45.44617868629529],[9.266646738410103,45.446170760207174],[9.266653261833627,45.44616301309433],[9.266659810872003,45.44615527492244],[9.266666347079099,45.44614752777904],[9.266672819264004,45.44613976278244],[9.26667966290947,45.44613213193508],[9.266686544956864,45.446124509998796],[9.26669283777762,45.44611667341083],[9.266698912791785,45.446108747319876],[9.266704923783882,45.44610080337582],[9.266710358379175,45.446092653751386],[9.26671580571768,45.4460844950959],[9.266721265884106,45.4460763454113],[9.266726726006599,45.446068186725476],[9.266732173382763,45.44606003707015],[9.266736967385665,45.44605162790787],[9.266741530710622,45.446043111270725],[9.266746029886797,45.446034549777785],[9.266750413638652,45.44602591654544],[9.266754899770792,45.44601730107623],[9.266759731577226,45.44600877481104],[9.266764806718584,45.44600032898761],[9.266769753351797,45.445991748447845],[9.266774507160008,45.4459829523324],[9.266779003487406,45.44597378777419],[9.266783381890367,45.445964020420355],[9.26678686700702,45.44595192387759],[9.266818594278186,45.44588991362268],[9.26682122503361,45.44588104144862],[9.266823970956686,45.44587218700796],[9.266826691177602,45.445863305623924],[9.266829283230265,45.44585436153154],[9.266831939175098,45.44584540828895],[9.266834594780029,45.44583638303866],[9.26683728836388,45.44582727669017],[9.266839878590762,45.44581794555649],[9.26684160767564,45.44580768032243],[9.266839695495635,45.44575190526131],[9.266838783635558,45.44574291533724],[9.266838689892465,45.44573386949808],[9.266838302132147,45.445724842347005],[9.266836380477807,45.44571593578834],[9.266833359520028,45.44570711280388],[9.266830543113425,45.44569828034107],[9.266827726665333,45.4456894388772],[9.266824910218128,45.445680597413286],[9.266821556928328,45.4456718022069],[9.266819558556284,45.445662895826885],[9.266818339981727,45.445653942622315],[9.26681704464302,45.44564498059576],[9.266815570413526,45.44563604598962],[9.26681394274023,45.44562711174148],[9.266811880478267,45.44561821451132],[9.266809805429942,45.44560931731096],[9.266807743126911,45.4456004110798],[9.266805680866915,45.4455915138495],[9.266803605820561,45.445582616648956],[9.266801620241559,45.4455737102386],[9.266800171548047,45.44556476657161],[9.266798722854995,45.44555582290454],[9.266797082399721,45.445546888685804],[9.266794559938425,45.44553801953194],[9.266792024690924,45.44552915040783],[9.266789425509236,45.44552028143275],[9.266786813583737,45.445511421488405],[9.266783690264031,45.44550258073903],[9.266780643667264,45.44549373981053],[9.266778888176143,45.44548481486083],[9.266776940923128,45.44547589935951],[9.26677498088374,45.445466983887876],[9.266773020844985,45.44545806841622],[9.266771048019862,45.4454491529744],[9.266769087982356,45.445440237502645],[9.266767191837985,45.445431312880814],[9.266765308481203,45.44542238822905],[9.266763425167394,45.445413472578224],[9.26676168242613,45.44540453859734],[9.26675993968543,45.44539560461645],[9.266757826207941,45.4453866895023],[9.266755469863504,45.4453777929567],[9.266753011224097,45.44536889664961],[9.266750603690951,45.445359991222226],[9.266748464642369,45.44535107616754],[9.26674674747935,45.445342142126684],[9.26674495355278,45.44533319926378],[9.266742763358305,45.44532428432824],[9.266739844435335,45.44531539809536],[9.266737334568601,45.44530648390516],[9.266735182694859,45.44529755987901],[9.266733133074997,45.44528862661323],[9.266731070626484,45.44527968437627],[9.266729008220992,45.445270751140235],[9.266726958560731,45.44526180887332],[9.266724844966436,45.4452528667555],[9.266722283872411,45.445243934682296],[9.266719607696798,45.445235002877375],[9.266716918735096,45.44522607110225],[9.266714191328735,45.445217121414565],[9.266711399988607,45.44520817187586],[9.266708621436294,45.4451992223073],[9.266705830013212,45.44519025476657],[9.266703038548668,45.445181278224794],[9.266700285361045,45.44517228359154],[9.266697570535076,45.44516328886878],[9.26669445923085,45.44515427706835],[9.266691258334506,45.44514524747461],[9.266688031780655,45.44513619993854],[9.266685035307493,45.445127133863735],[9.26668212825895,45.44511804957823],[9.26667925948734,45.44510894720122],[9.266676544074798,45.44509982646447],[9.266673969234342,45.44509068739776],[9.26667335117156,45.445081624777906],[9.266672822659606,45.445072570950245],[9.266672396400649,45.4450635078831],[9.26667202128941,45.44505444469668],[9.26667164617829,45.445045381510255],[9.266671271024952,45.44503630932288],[9.266670870213234,45.445027219193165],[9.266670367064233,45.44501812030099],[9.26666977432251,45.44500900361565],[9.266669155880143,45.44499985998704],[9.266668511779532,45.4449906984161],[9.26666784202066,45.44498151890288],[9.266667146476495,45.44497229444448],[9.266666425231753,45.44496304304284],[9.266665729306869,45.44495373757577],[9.26666537867003,45.444944440304745],[9.266665002120746,45.444935071085624],[9.266664573958238,45.44492560297524],[9.266664055652539,45.444916000059266],[9.26666118434738,45.4447840693044],[9.266656621155445,45.4447627024402],[9.26665521086666,45.444753758680505],[9.266654145695504,45.44474478711297],[9.266653093311508,45.44473581551561],[9.266652040885502,45.444726834917255],[9.266650988502194,45.444717863319866],[9.266650140665922,45.44470888224448],[9.266649663478102,45.44469986430068],[9.266648726134635,45.44469088343391],[9.266647558713613,45.44468192110567],[9.266646378506156,45.4446729588072],[9.266645338911587,45.44466398717983],[9.266644184236128,45.44465501582076],[9.266642748378468,45.44464607212038],[9.266641990009864,45.44463708183516],[9.266641346637988,45.444628073279716],[9.26664043487068,45.44461909235317],[9.266639510316866,45.444610111456406],[9.266638649654965,45.444601121409605],[9.266637558915836,45.44459214990128],[9.266635918556965,45.44458322467959],[9.266634124799545,45.44457430881652],[9.266632663372015,45.44456536517549],[9.266630844042126,45.44455644937196],[9.266628845740257,45.44454754298668],[9.266627230957637,45.44453861770515],[9.266625590559638,45.44452968348227],[9.266623426116206,45.444520795486284],[9.266615844818759,45.44443138768254],[9.266612690069643,45.44439410366719],[9.266611484300434,45.44438514142752],[9.266610240171394,45.44437617927725],[9.266608996000407,45.44436720812597],[9.26659214615117,45.44425373510104],[9.26658686375451,45.44421809423533],[9.266586399071587,45.44420901325397],[9.266585691483849,45.44419994183982],[9.266585034916117,45.444190843303595],[9.266584327032456,45.44418170888275],[9.266582699057466,45.44417269362021],[9.266581632893002,45.44416350602811],[9.266583401394302,45.444080071125704],[9.266582451243057,45.444071081286204],[9.266581181552402,45.444062119194705],[9.266579924648823,45.44405315707336],[9.266578654958984,45.44404419498179],[9.266577385269546,45.4440352328902],[9.266576102793866,45.44402627082835],[9.266574730896659,45.44401732697703],[9.266573422848499,45.444008364974785],[9.266572217051666,45.4439993937331],[9.266571151866067,45.44399041316255],[9.266570150571734,45.443981423442054],[9.266569136491066,45.443972433751334],[9.26656813519738,45.44396344403079],[9.26656713390402,45.44395445431021],[9.266566132610981,45.44394546458958],[9.266565118531629,45.44393647489878],[9.266564117239243,45.44392748517813],[9.26656311590485,45.443918486456504],[9.266562101826473,45.443909496765606],[9.266560538177236,45.44390056236194],[9.266558974486163,45.4438916189572],[9.266557346947117,45.443882693703436],[9.266555642688823,45.443873768628386],[9.266553951217707,45.44386484352348],[9.266552247002837,45.443855927449334],[9.2665505555328,45.44384700234438],[9.266548851276681,45.44383807726918],[9.266547147063436,45.44382916119489],[9.26654546838164,45.443820236060034],[9.266543789700375,45.44381131092509],[9.26654184262782,45.4438024134188],[9.266539550486781,45.44379355272085],[9.266537258346464,45.443784692022895],[9.26653497899347,45.443775831295035],[9.266533159747244,45.443766924489566],[9.266531340501588,45.44375801768406],[9.266529534000787,45.44374910184777],[9.266527714756291,45.44374019504218],[9.266525933829831,45.4437312791462],[9.266525916564785,45.44372217011799],[9.266525030277228,45.443713162126556],[9.266523070424475,45.443704264649575],[9.266520663295793,45.44369542222118],[9.26651826895446,45.443686579762904],[9.266515861784965,45.443677728333455],[9.266513454658556,45.44366888590488],[9.266510613000873,45.44366008949408],[9.266507732984355,45.44365129317258],[9.266504852968731,45.443642496851],[9.266501960167437,45.44363370055909],[9.266499080111297,45.44362489523642],[9.266496148909779,45.44361609003276],[9.266493128203214,45.44360728503759],[9.26649010745527,45.44359847104137],[9.266487073837066,45.443589639072975],[9.266484052964048,45.44358079807366],[9.266480993605333,45.44357193016081],[9.266477908547513,45.44356303530456],[9.266474836023283,45.44355408641267],[9.266471737588356,45.44354506557258],[9.26646812697294,45.44353589290778],[9.266463926400034,45.44352634357305],[9.266447535356486,45.44347498573012],[9.266444398951547,45.44346604598716],[9.266441697247393,45.44345709623031],[9.266439008246003,45.443448128441716],[9.266436319245475,45.44343916065302],[9.266433630161165,45.443430174862335],[9.266431222381273,45.443421188416266],[9.266429939773825,45.443412190347914],[9.266429219773698,45.4434031909689],[9.26642848694497,45.443394182618746],[9.266427766945316,45.44338518323966],[9.266427046903594,45.44337617485967],[9.266430968535385,45.44336719167086],[9.26643145046769,45.44335818949183],[9.266431970759365,45.44334918722338],[9.266432503837393,45.4433401849252],[9.26643237201703,45.443331184175875],[9.266432240196712,45.44332218342656],[9.266432095589941,45.44331318270699],[9.266431963769726,45.443304181957664],[9.266431831949562,45.443295181208306],[9.266431687342951,45.443286180488705],[9.266431504419224,45.44327718885942],[9.266431219161328,45.44326818846747],[9.266430933903532,45.44325918807548],[9.266430635859344,45.44325018771327],[9.266430350601748,45.44324118732127],[9.266429349258937,45.44323217959633],[9.266428079442687,45.44322318149787],[9.266426822371013,45.44321417436862],[9.266425552470952,45.44320515826817],[9.266424282571302,45.44319614216771],[9.266422999800966,45.44318710809511],[9.266422497090334,45.44317809020741],[9.266422390802676,45.443169080397304],[9.266422284472752,45.44316006158622],[9.26642217818518,45.44315105177609],[9.26642207185533,45.443142032964985],[9.266422055030743,45.44313301394535],[9.266422140497825,45.443123994687426],[9.26642222596489,45.44311497542949],[9.266422311389617,45.44310594717057],[9.266421654903953,45.443096857632504],[9.266420051628874,45.443087644285185],[9.266416298052796,45.44302901114371],[9.266418323841542,45.443005702688424],[9.266419291445779,45.44299665437225],[9.266420258965084,45.442987588054095],[9.266421559142687,45.44297856596629],[9.266423422303298,45.44296962357653],[9.266425272676909,45.442960681216526],[9.266427123049935,45.442951738856415],[9.26642898616649,45.44294278746553],[9.266430849240145,45.44293382707368],[9.266432661082945,45.442924848798974],[9.266434229687162,45.44291580808352],[9.266435849394217,45.44290675824788],[9.266438057783231,45.44289781505348],[9.266440547641713,45.44288890720755],[9.266443024628389,45.44287998138943],[9.266445514273737,45.44287102853858],[9.266454199885127,45.44283370792256],[9.26647816802976,45.442720805824685],[9.266479199763184,45.44271180236341],[9.266480218625288,45.44270278093],[9.266481198916384,45.442693714581075],[9.266481961288894,45.44268453172622],[9.26648231238168,45.44267489977669],[9.266482982620198,45.442667877390214],[9.266483054952278,45.44265878615365],[9.266482794966205,45.44264972269453],[9.266482534980218,45.44264065923545],[9.266482262207978,45.44263159580609],[9.26648200217985,45.44262252334603],[9.266481524868642,45.44261346939428],[9.266480791957749,45.44260444304126],[9.266479790660966,45.44259544431672],[9.266478802108521,45.44258643656143],[9.266477800812385,45.44257743783685],[9.266477055073928,45.44256840251257],[9.266476424370367,45.442559357919166],[9.266475793624695,45.44255030432483],[9.266475035058287,45.44254126002932],[9.266474046465262,45.44253224327294],[9.266472700067148,45.44252327235545],[9.266471149172993,45.44251431991654],[9.26646961106565,45.442505367447794],[9.266468060172487,45.4424964150088],[9.266466522066132,45.44248746253998],[9.26646497113164,45.44247850109994],[9.266463113580125,45.44246959438059],[9.2664610259603,45.442460706199356],[9.266458823349016,45.44245183628805],[9.26645633965133,45.4424430120369],[9.266453753706342,45.44243419702494],[9.26645107830037,45.44242539122232],[9.266448402895243,45.44241658541968],[9.266445714746972,45.442407788647714],[9.266443039343523,45.44239898284494],[9.266440172273477,45.44239020449174],[9.266437139067186,45.442381444527626],[9.266434105861839,45.442372684563374],[9.266431034340899,45.442363933689414],[9.266427962778593,45.442355173814356],[9.266424878430968,45.44234641396896],[9.266421794041989,45.44233764512257],[9.266418709653975,45.44232887627605],[9.266415625224608,45.44232009842847],[9.266412527967624,45.44231131160959],[9.266409417840714,45.44230250681852],[9.266406294801573,45.44229367505425],[9.266403133235377,45.44228480737536],[9.26640009910977,45.442275849388956],[9.26637460637938,45.44218950760931],[9.266353502760632,45.442120194604314],[9.266350545961377,45.44211136245106],[9.26634757633453,45.44210252132657],[9.266344606666307,45.44209367120098],[9.266341636999028,45.442084821075326],[9.2663388590414,45.44207595250099],[9.266336311151996,45.442067065388706],[9.266333801579746,45.44205816918605],[9.266331394255717,45.44204926374419],[9.266328999676363,45.442040349271515],[9.266326592269266,45.44203142582755],[9.266324184820638,45.44202249338266],[9.266321764586573,45.44201356096739],[9.26631934426868,45.44200461055012],[9.266316923909272,45.441995651131876],[9.26631472087375,45.441986682206434],[9.266312696718833,45.44197768586122],[9.266311503625063,45.4419686785798],[9.26631031053168,45.44195967129829],[9.266309117354094,45.441950646014895],[9.266307924176894,45.44194162073143],[9.2663067309155,45.44193257744603],[9.266305537569906,45.44192351615871],[9.26630433135393,45.441914436899154],[9.266303137713077,45.44190531260504],[9.266302199711632,45.44189616971353],[9.26630170914215,45.44188700777808],[9.266301793950765,45.441877844502876],[9.26630186546569,45.44186857324589],[9.266301884609438,45.44185904108016],[9.266302104441051,45.44184868034968],[9.266302386286288,45.44184063274689],[9.26630258684692,45.44183161321904],[9.266302889739102,45.441822602453904],[9.266303205417351,45.44181359165902],[9.266303508267056,45.441804571892945],[9.266303823945123,45.44179556109804],[9.266304126836935,45.44178655033288],[9.266304429728665,45.4417775395677],[9.266304783764905,45.44176852868342],[9.266305470325515,45.44175953502697],[9.266306144099762,45.44175054140024],[9.2663068178738,45.44174154777357],[9.266307491647634,45.44173255414681],[9.266308178249693,45.44172356949127],[9.266308852023107,45.44171457586452],[9.266310625700173,45.44170564268401],[9.266312629611713,45.44169672696948],[9.266314300998564,45.44168779402707],[9.266314360867131,45.441678765825486],[9.266314407949562,45.44166973765367],[9.26631482591425,45.44166072662031],[9.266315781065256,45.44165175034035],[9.266317465236439,45.44164281736803],[9.266319162235519,45.44163389336693],[9.266320846405648,45.44162496039451],[9.266322543361378,45.44161602739235],[9.266324227488163,45.441607085418944],[9.266325924485132,45.44159816141766],[9.266327621396979,45.441589219414396],[9.26632930556448,45.44158028644185],[9.266331002517562,45.441571353439485],[9.266332686684017,45.441562420466845],[9.266337964675397,45.44155367714841],[9.26633971277074,45.44154474402678],[9.266341448079435,45.44153581093487],[9.266343183345294,45.441526868841954],[9.26634491865291,45.44151793574998],[9.266346641131591,45.44150899368677],[9.266348312465375,45.44150005174265],[9.266349728034557,45.44149110139304],[9.266351143561005,45.44148214204247],[9.266352546343223,45.441473191722615],[9.26635396186879,45.441464232371914],[9.26635567160066,45.44145529933928],[9.26635730453093,45.44144634848331],[9.266358553836096,45.441437389519685],[9.26635981588464,45.44142842152526],[9.266361077932793,45.44141945353086],[9.266362327236784,45.44141049456715],[9.266363589284158,45.44140152657267],[9.266364838587357,45.44139256760892],[9.266366100633944,45.441383599614376],[9.266367349894074,45.4413746316496],[9.266368611982177,45.44136567265598],[9.266369861241522,45.44135670469116],[9.26637112328653,45.44134773669651],[9.266372385373455,45.44133877770279],[9.266373583445123,45.44132980085605],[9.266374564153555,45.44132082451552],[9.266375327456558,45.44131183968028],[9.266376090759334,45.44130285484501],[9.26637686684791,45.44129386997992],[9.266377630150204,45.44128488514461],[9.266378393452271,45.44127590030928],[9.266379169540132,45.44126691544414],[9.26637993284172,45.44125793060879],[9.266380696143068,45.441248945773395],[9.266381459444181,45.441239960938006],[9.266382235531095,45.4412309760728],[9.266382998831734,45.44122199123738],[9.266383570299451,45.44121299784765],[9.266383937148298,45.44120399593345],[9.26638430403934,45.44119500302019],[9.26638467088797,45.441186001105976],[9.266385165638978,45.44117700789487],[9.266385813822021,45.441168014326415],[9.266386462047162,45.44115902975886],[9.266387097443793,45.44115003622014],[9.266387745626238,45.44114104265159],[9.266388393850793,45.44113205808403],[9.266389029246838,45.44112306454525],[9.26638967747099,45.44111407997762],[9.266390185006628,45.44110508673662],[9.266390577425804,45.44109608476267],[9.26639077801259,45.44108707423445],[9.266390339214947,45.44107804719338],[9.266390552587714,45.44106903663536],[9.266391072908828,45.44106004336452],[9.266391605973467,45.441051041062934],[9.266392126294265,45.441042047792024],[9.2663926466149,45.441033054521114],[9.266393179679053,45.441024052219426],[9.266393699999373,45.441015058948494],[9.2663942330632,45.44100605664682],[9.26639476612687,45.44099705434508],[9.266395299190373,45.44098805204333],[9.266395832253718,45.4409790497416],[9.266396339744952,45.44097004749941],[9.266396399473289,45.44096099229379],[9.266396471945265,45.44095192805743],[9.26639723502856,45.440942898216626],[9.266398061914513,45.44093384122405],[9.266399067465214,45.4409247118068],[9.266399911705633,45.44091662688828],[9.266401480133995,45.44090755916728],[9.266403099747981,45.44089850032807],[9.266404719361452,45.440889441488835],[9.266406326146164,45.44088037367839],[9.266407945716303,45.44087130583815],[9.26640982121641,45.440862282406975],[9.266412016703011,45.44085333023891],[9.266414224974856,45.44084437804095],[9.266416433246011,45.440835425842955],[9.266418641516479,45.44082647364492],[9.266420862529879,45.44081751241607],[9.266423070714335,45.44080854221599],[9.26642527894041,45.440799581016805],[9.266427666295746,45.440790646403435],[9.266430220078972,45.44078175640767],[9.266432786647318,45.44077286638197],[9.266435353172549,45.44076396735531],[9.266437906911063,45.44075506835835],[9.266440473392384,45.44074616033054],[9.266443039872907,45.440737252302675],[9.266445606352631,45.44072834427478],[9.266448454417855,45.44071949859815],[9.266451404896445,45.44071067968603],[9.266454355374119,45.44070186077389],[9.266457305808569,45.44069303286065],[9.266460640284764,45.440684303064245],[9.266464141188266,45.44067561788524],[9.266467693276637,45.44066694158798],[9.2664713733922,45.440658300996525],[9.266475053506637,45.44064966040492],[9.266478733577634,45.44064101081225],[9.266482413647523,45.44063236121944],[9.266486093716289,45.4406237116265],[9.266489773783935,45.44061506203344],[9.266493453850456,45.44060641244025],[9.266497159529964,45.44059777178829],[9.266501018765927,45.440589157781574],[9.266504801243098,45.4405805349525],[9.2665085836768,45.44057190312238],[9.266512378895227,45.44056327126228],[9.266516161326635,45.44055463943186],[9.266519956500446,45.440545998570535],[9.266523738929546,45.440537366739854],[9.266527444472976,45.44052869908395],[9.266531111573016,45.440520013515375],[9.266534778629602,45.44051131894572],[9.266538445685068,45.44050262437593],[9.266542304781337,45.44049398336482],[9.266546279076174,45.44048536908828],[9.266550253369804,45.440476754811584],[9.266554291633843,45.44046814938671],[9.266558432310504,45.44045957072615],[9.266562572943577,45.44045098306446],[9.266566726361255,45.440442395372855],[9.266570879693012,45.440433789679105],[9.26657503298118,45.440425174984256],[9.266579429537826,45.44041663173073],[9.26658396690678,45.440408124152995],[9.266588299192872,45.440399509040425],[9.266592695449189,45.44039090277962],[9.266597732054503,45.44038252005245],[9.266602794145319,45.44037411926355],[9.266607856022949,45.4403656734696],[9.266612930346197,45.44035715563786],[9.266618042474995,45.44034852070405],[9.266623191816512,45.4403396426545],[9.266661826593245,45.44028434907238],[9.266667631936954,45.44027630658994],[9.26667345010717,45.440268273078324],[9.266679255447587,45.440260230595285],[9.266685342624696,45.44025230446851],[9.266691519470163,45.440244414136565],[9.26669769635626,45.44023653280528],[9.266703873198294,45.44022864247265],[9.266710050038604,45.44022075213967],[9.266716419087746,45.440212951368736],[9.26672304435937,45.44020525801263],[9.26672966958684,45.44019755565517],[9.266736294812516,45.44018985329733],[9.266742920078748,45.44018215994006],[9.266749468416627,45.4401744217565],[9.266755875897239,45.44016663889579],[9.266762283333723,45.44015884703373],[9.26676869076845,45.44015105517134],[9.266775098201416,45.44014326330857],[9.266781518460773,45.440135480416565],[9.266787964332286,45.440127706465496],[9.266794666426026,45.440120039929134],[9.266801394131862,45.44011238233362],[9.26680810905012,45.440104724767565],[9.266814823924188,45.440097058200145],[9.26682152605304,45.44008940066307],[9.26682810002577,45.44008168041724],[9.266834699610625,45.440073969112284],[9.266841273579775,45.440066248865605],[9.26684786037527,45.44005853758971],[9.266854459912366,45.44005081728263],[9.266861123588363,45.4400431418308],[9.26686813315613,45.4400356095885],[9.26687514267965,45.44002806834474],[9.266882165029445,45.44002053607169],[9.266889174549238,45.44001299482707],[9.266896171281406,45.440005453611874],[9.266903155183579,45.43999790342511],[9.266910151869649,45.43999035320808],[9.26691695642854,45.439982731430476],[9.26692364565956,45.439975055915276],[9.266930334888777,45.439967380399686],[9.266937011330434,45.43995970491353],[9.266943534002268,45.43995195777735],[9.266949646765626,45.43994404957851],[9.26695574669915,45.43993613240819],[9.266961846673365,45.439928224238514],[9.26696794660348,45.43992030706753],[9.266974046531892,45.43991238989619],[9.266980159244333,45.4399044726947],[9.266985862048617,45.43989639443068],[9.266991244529741,45.43988817289713],[9.266996140091802,45.43987972747349],[9.267001035525205,45.439871255046775],[9.267005943573272,45.439862746586094],[9.267010864151173,45.43985418408958],[9.267015797174086,45.4398455495553],[9.267020767916595,45.43983677991677],[9.267061943005283,45.43976449525936],[9.26706575070174,45.43975582734628],[9.267069161786058,45.43974710635281],[9.267072572869326,45.43973838535927],[9.267075983909143,45.43972965536463],[9.267079394990326,45.43972093437083],[9.267082908355949,45.439712213138115],[9.26708648569133,45.4397035007569],[9.267090075768884,45.43969477934472],[9.26709367863102,45.43968605790258],[9.267097268663953,45.43967732748921],[9.26710025747209,45.439668535472414],[9.267103003224241,45.43965971701994],[9.267105761761215,45.43965089853757],[9.267108520297343,45.43964208005515],[9.267110843907805,45.4396332175831],[9.267112886105622,45.439624328765],[9.267114787575668,45.43961542227345],[9.267116676259453,45.4396065158117],[9.267118577770736,45.439597618321024],[9.267120466453346,45.43958871185918],[9.267122048152363,45.43957977911112],[9.267123553094539,45.43957083754124],[9.26712504529302,45.43956190500216],[9.26712655023426,45.43955296343219],[9.267127594722014,45.43954398693342],[9.267128562410736,45.4395349926119],[9.267129402242709,45.43952599858899],[9.26713013966202,45.43951697780204],[9.267130877123533,45.43950796601607],[9.267131614542393,45.4394989452291],[9.267132070507344,45.43948988909526],[9.267132360131669,45.43948080634674],[9.267132636885423,45.43947170562614],[9.267132734428184,45.439462560318795],[9.2671318978141,45.43945324617317],[9.267131086432196,45.43944385996011],[9.267130261713476,45.43943435676435],[9.267129449017103,45.43942469152135],[9.267128583778693,45.439414729365986],[9.267120004522699,45.439365891636136],[9.26711859306896,45.43935668684562],[9.267117015572513,45.4393475184471],[9.267115399677362,45.43933834113719],[9.267113719897162,45.439329172977494],[9.267112040075094,45.43931999581682],[9.267110360211156,45.43931080965513],[9.267108667477347,45.43930160552131],[9.267106974701685,45.43929239238651],[9.267104962626165,45.43928325200589],[9.267102669607706,45.43927418428983],[9.267100019060168,45.4392652164204],[9.267096193809147,45.439256584333634],[9.267092381302463,45.43924794321587],[9.267088581540118,45.43923929306721],[9.267084769035776,45.43923065194917],[9.26708027983015,45.43922221043464],[9.267075496981787,45.4392138596163],[9.267070714092439,45.43920549979675],[9.26706594403248,45.439197148948146],[9.26706116118837,45.439188798129116],[9.267056391088826,45.439180438279095],[9.26705160824754,45.43917208745967],[9.267046608349956,45.43916380015427],[9.267040982894283,45.43915571233266],[9.267035344654673,45.43914762454063],[9.267029706416679,45.439139536748314],[9.267024055394742,45.43913144898556],[9.26701841715997,45.439123361192614],[9.267012778926823,45.43911527339939],[9.267007140695286,45.439107185605856],[9.267001489679817,45.43909909784192],[9.266995851451515,45.439091010047854],[9.26699020039689,45.439082913282355],[9.26698371947071,45.43907507048357],[9.266977149132344,45.43906724589525],[9.266970821297097,45.4390593307299],[9.266965310678165,45.43905118862997],[9.266959084961085,45.439043237221284],[9.266952923003865,45.43903524965916],[9.266946237392657,45.43902738033276],[9.266939896483947,45.4390194021887],[9.266933529878813,45.439011397101055],[9.26692726526298,45.43900332876754],[9.266921358134992,45.43899515158658],[9.26691633219252,45.43898675632327],[9.266911293338875,45.438978334086656],[9.26690619034722,45.438969866994206],[9.266901138075339,45.43896130977248],[9.266875922218746,45.43891188977048],[9.266872480252076,45.43890318477281],[9.266870379958968,45.438894305624125],[9.266868381908143,45.43888541723572],[9.266866383815582,45.438876519846325],[9.266864424080142,45.43886762236739],[9.266862617644113,45.43885869752751],[9.266861399002273,45.43884969930755],[9.26686023141803,45.43884068296629],[9.26685774777646,45.43883184971707],[9.266854075933008,45.43882319926147],[9.266850480676457,45.43881452162385],[9.266847920409436,45.43880570655525],[9.266847800602005,45.43879655275319],[9.266847795609669,45.43878734467679],[9.266847828592407,45.43877805550219],[9.266847912081422,45.43876863119382],[9.26684768812586,45.43875908158786],[9.266846134279282,45.438711469586586],[9.266845631501885,45.43870244269279],[9.266845282192513,45.43869342444192],[9.266844920097794,45.4386844062209],[9.266844557960834,45.438675378998894],[9.266844848009077,45.43866637725839],[9.266845969238497,45.43865740058177],[9.266847090509929,45.43864843290606],[9.26684821173865,45.43863945622939],[9.266849921182102,45.43863049618234],[9.266852142169759,45.438621561944906],[9.266854363114335,45.43861261870646],[9.266856584058226,45.43860367546792],[9.266858804959044,45.4385947232284],[9.266861025901543,45.43858577998974],[9.266863246800966,45.438576827750104],[9.266865480485118,45.43856787548055],[9.26686770138315,45.4385589232408],[9.266869922280485,45.43854997100095],[9.266872155920172,45.438541009730294],[9.266874389559149,45.43853204845958],[9.266876610412014,45.438523087218634],[9.266878844007213,45.43851411694685],[9.266881077601717,45.43850514667494],[9.266883311195514,45.43849617640302],[9.266885544788616,45.43848720613108],[9.26688779112404,45.43847822682822],[9.266890024673351,45.43846924755518],[9.266892270964986,45.43846025925126],[9.26689433826029,45.438451271365004],[9.26689636719874,45.43844228356819],[9.26689838330878,45.43843328680022],[9.266900412203581,45.438424290002374],[9.266902428312344,45.43841529323431],[9.266904457163488,45.43840628743536],[9.266906485971605,45.438397272635434],[9.266908514821468,45.438388266836434],[9.266910556413693,45.43837925200655],[9.266912585177504,45.4383702282055],[9.26691462672606,45.43836120437457],[9.266916655446202,45.43835217157245],[9.266918709736467,45.43834313871059],[9.26692075119832,45.43833409687762],[9.266921782699816,45.43832507540377],[9.266921778628323,45.43831606534791],[9.266921812955323,45.438307064203464],[9.266921834454573,45.43829805408789],[9.266922750886978,45.438289032882544],[9.266924038009858,45.43827999280989],[9.266925337917694,45.43827095270741],[9.266926624997378,45.438261903633766],[9.266927912119044,45.438252863561075],[9.266929211940889,45.43824380545659],[9.26693049901935,45.43823475638282],[9.266931798797987,45.43822568927729],[9.266933098576217,45.43821662217173],[9.266934385568687,45.43820755509597],[9.266935685303713,45.438198478989406],[9.26693698499594,45.43818939388183],[9.266937696689263,45.43818033714981],[9.266938178288653,45.438171289955875],[9.266938647060178,45.43816223379081],[9.266939103046221,45.43815317765557],[9.266939559032124,45.43814412152033],[9.266940027760839,45.438135056354255],[9.266940470918746,45.438125991247844],[9.26694092681946,45.43811691711061],[9.266941382720034,45.43810784297336],[9.266941838578079,45.43809875983512],[9.266942396676152,45.438089667457135],[9.266942941946356,45.43808056610808],[9.266943282693717,45.43807147423743],[9.266943291107602,45.438062401144535],[9.26694329952148,45.43805332805165],[9.266943307892985,45.43804424595779],[9.2669433162221,45.438035154862945],[9.266943324551216,45.438026063768085],[9.266943332795567,45.43801695467129],[9.266943353782828,45.438007836543655],[9.2669434002983,45.43799870935532],[9.266943459514295,45.43798956413528],[9.266943518645489,45.43798040091325],[9.2669435776919,45.43797121968927],[9.266943483272417,45.43796202982242],[9.266943350454717,45.43795283104409],[9.266943230252794,45.43794359623205],[9.266943122624275,45.43793431638535],[9.266943014783847,45.437924991533805],[9.266942932217312,45.43791560361577],[9.266943002480721,45.437906089326106],[9.266943123207016,45.43789643090162],[9.266943319712379,45.43788657427678],[9.266924912271486,45.4377732938299],[9.266913344734352,45.437689808943446],[9.266901932812642,45.437639366602575],[9.266884451413198,45.43758967651104],[9.266876971330175,45.43756781237571],[9.266805909418604,45.43752414298602],[9.266738332119981,45.437495524207556],[9.266716593751188,45.43749753713746],[9.266699156569635,45.43749252820316],[9.26669405739037,45.43748755350358],[9.266678592719005,45.43747243176974],[9.266670053517409,45.43745913910456],[9.266637010372063,45.43740352655181],[9.26655876560157,45.43742827285169],[9.266489495925713,45.43742851528674],[9.26632883337672,45.43743346207293],[9.26624767996128,45.43742694523062],[9.266207474207645,45.437419639945325],[9.26620973405117,45.43741352296165],[9.266193101350652,45.437413732695575],[9.266180351325849,45.43741307828945],[9.266131678806115,45.437410599251706],[9.266102653560475,45.43741004571492],[9.266070252735476,45.43740943701636],[9.266040466791459,45.43729855916957],[9.26604846778209,45.437172696653725],[9.266055440363376,45.43700206522288],[9.266067264105411,45.436783599833525],[9.266070814534526,45.436774608509204],[9.266070959897387,45.43671024154233],[9.266077825427248,45.436565857456955],[9.266086963199866,45.43636898285737],[9.266097064442166,45.43616220483406],[9.26619840793829,45.4359355021296],[9.26624766290862,45.43581999378214],[9.266283323855424,45.435747299140715],[9.266318099693793,45.43563317462998],[9.266367070068451,45.435506181523806],[9.266434849757866,45.43532542619717],[9.266455925628039,45.43525335954279],[9.266474258347788,45.43519065138602],[9.26647407946358,45.43515259528192],[9.266478873808321,45.43513084652878],[9.266515110325537,45.43500669135077],[9.266248831962182,45.43495554640185],[9.266066914789146,45.434870477597514],[9.266063310574522,45.43486798368487],[9.265960418041548,45.43479691652861],[9.265688714189613,45.43465168570283],[9.265513107844223,45.434526987641064],[9.265438723336672,45.43444435045647],[9.265020652410294,45.43393556234563],[9.264928370377364,45.43381994136073],[9.264782926214986,45.43362941045652],[9.264692659857017,45.43351814112721],[9.264521967878764,45.433346741582405],[9.264376506214644,45.43320673320494],[9.264351323126654,45.43318250652198],[9.264136415201394,45.43295136945073],[9.264104215797314,45.432900137695526],[9.264000817921863,45.43273022913383],[9.263932165392424,45.43261739711236],[9.26384662396637,45.432476826697915],[9.2638112085144,45.4324459086971],[9.263810618102763,45.43244540599886],[9.263692820180292,45.43236474000172],[9.263661834925719,45.4323435148971],[9.263593272494544,45.432296561316164],[9.263523111542723,45.4322549760169],[9.263503356755704,45.43224326613026],[9.263498472538652,45.43224037003628],[9.263484191672255,45.43223190592345],[9.263478910065604,45.43222877671626],[9.263464629205048,45.43222031260098],[9.263459347600561,45.43221718339279],[9.263446438397525,45.43220952621213],[9.26344154140229,45.43220663014517],[9.263425888859967,45.4321973500868],[9.263421004650827,45.4321944539895],[9.263419440654527,45.43219352148004],[9.263414543662062,45.4321906254119],[9.26340026282074,45.43218216128847],[9.263394981223364,45.4321790320773],[9.263380700387884,45.43217056795134],[9.263375418792668,45.43216743873933],[9.263355856328173,45.432155836396966],[9.263160886236415,45.432040270336515],[9.263141528987896,45.43202879350001],[9.263136824284484,45.43202600499037],[9.263136247419107,45.43202566427675],[9.263131542716216,45.432022875766854],[9.263111993177297,45.43201128235379],[9.262997772899089,45.431943577951486],[9.26280482003735,45.43182712453501],[9.262418135062006,45.43160211244792],[9.26226499480899,45.43151350609458],[9.26209918058894,45.43141816877223],[9.261997957391271,45.431365636393686],[9.261945984722843,45.43135881561048],[9.261920488303645,45.43135491352947],[9.261896603769749,45.431351250780764],[9.261817744961746,45.43134409545491],[9.261789772448575,45.43134105411511],[9.261779700168495,45.43133860187393],[9.261768783161118,45.43133593553942],[9.26173659375971,45.431327746221825],[9.261703006114482,45.4313185159699],[9.261674966905339,45.431301019027565],[9.261652409798888,45.431283041480825],[9.261553069813498,45.431195202180426],[9.261533726245963,45.43117824338357],[9.261469418747073,45.43112182765907],[9.261376480896647,45.43104162448065],[9.261295246636301,45.43099048596497],[9.2611166180189,45.43089337626787],[9.261019187270918,45.43084227453097],[9.260794159766569,45.430721318345654],[9.260388203981075,45.43050837772352],[9.260281364975672,45.43044597341861],[9.260270524928924,45.43044052543269],[9.260259135065578,45.43043505169364],[9.260248002281008,45.43042988340502],[9.260236331224181,45.43042441930459],[9.260225044586239,45.430419152352066],[9.260213439765003,45.43041419215887],[9.260201053783561,45.43040893670615],[9.260189257295242,45.43040399494868],[9.260177410046332,45.43039913431518],[9.260164834134855,45.43039427533795],[9.26015286045831,45.430389721026096],[9.260140886824972,45.430385175713965],[9.26012891319356,45.43038063040058],[9.260116939811807,45.43037613909176],[9.260104916082133,45.430371818916726],[9.260092930828893,45.43036752565615],[9.260081161246921,45.430362871860744],[9.259900346404361,45.43033734178611],[9.259732582418081,45.430328235756704],[9.259657594514728,45.430322942371646],[9.259581531289927,45.4303145280043],[9.25954772284329,45.43030991517053],[9.259511805154274,45.430305316113795],[9.259490668819264,45.43030145760303],[9.259465299658487,45.43029449431838],[9.259437794141189,45.43028441250047],[9.259422905022037,45.43027408603383],[9.259406459914606,45.430261755854225],[9.259394766348468,45.43025414046133],[9.25938441888824,45.430247359114546],[9.259374840626029,45.430241053079506],[9.25936536488141,45.43023480081765],[9.259356004726081,45.430228665306856],[9.259346542139694,45.43022249402328],[9.259337130854233,45.4302163586269],[9.25932774517908,45.43021023217271],[9.259318359505958,45.43020410571775],[9.259308999484285,45.430197997206044],[9.259299613856376,45.430191879750495],[9.259235178235938,45.430148649627064],[9.25922617567753,45.43014243228535],[9.259217032131923,45.43013613425275],[9.259208233496786,45.430129781431255],[9.259199523978022,45.430123347397426],[9.259190686255657,45.43011683264377],[9.259182027669263,45.430110353487784],[9.259173509127644,45.43010374799868],[9.259164900856511,45.43009708870582],[9.259156356710708,45.430090474272404],[9.25914781252576,45.430083850837356],[9.259139217044186,45.43007719151352],[9.259130647255086,45.43007055913408],[9.259122051777553,45.43006389980898],[9.259113469167822,45.43005725845622],[9.259104873653202,45.4300505901288],[9.259096278222868,45.43004393980269],[9.25908768275342,45.43003728047492],[9.259079138255526,45.43003058502675],[9.259070631904548,45.43002384448614],[9.259062138380225,45.43001711291688],[9.259053708364215,45.43001029119242],[9.259045355051253,45.43000346929355],[9.259036937534956,45.42999658453194],[9.259028340352717,45.42998954715831],[9.259020063500156,45.429982671077916],[9.259011004060488,45.429975184696],[9.259001337960806,45.4299664215341],[9.258989869019361,45.42995478210904],[9.258971786658412,45.429936604873305],[9.25894897778957,45.42990797908381],[9.25882765665763,45.42975573043986],[9.258820335799287,45.42974263243654],[9.258814829323835,45.429732140639565],[9.258808941031662,45.42972201875046],[9.258802085103202,45.42971275415302],[9.258795537992379,45.42970392990917],[9.258789608349906,45.42969595036911],[9.258783305607011,45.42968744961042],[9.258777375967993,45.42967947006971],[9.258771240440263,45.429671193958946],[9.258765323629156,45.42966322338964],[9.25875929098847,45.429655082061586],[9.258753361397309,45.42964711152057],[9.258747329211873,45.42963906920273],[9.258741374139388,45.42963111672082],[9.258735406244089,45.429623155266555],[9.258729412619365,45.42961515786585],[9.258723457510854,45.429607196381994],[9.258717489620603,45.429599234926755],[9.25871152173204,45.42959127347119],[9.258705553845157,45.429583312015296],[9.258699458331224,45.42957539585315],[9.258693311726438,45.42956748880729],[9.258687088217648,45.42955953692961],[9.258680340878621,45.42955164924394],[9.25867374768136,45.429543923228664],[9.258666859112784,45.42953590084543],[9.258658038159474,45.429527423776904],[9.258623849155452,45.42949811257135],[9.258542335608547,45.429446369643514],[9.258524768787067,45.42943465394418],[9.258514988522165,45.42942885235315],[9.258505169827078,45.42942303284594],[9.258495389566194,45.42941723125318],[9.258485570875134,45.429411411744304],[9.258475790659286,45.429405619150835],[9.258465997538991,45.42939979958251],[9.25845620458481,45.429394016017206],[9.258446386065897,45.429388232508856],[9.258436580332358,45.429382448970735],[9.258426774600816,45.42937666543181],[9.258416981654639,45.42937088186308],[9.258407175968115,45.42936510732343],[9.258397370242575,45.42935932378193],[9.258387577343415,45.42935354921171],[9.258377771621873,45.42934776566847],[9.258367978685692,45.42934198209555],[9.258358173009167,45.42933620755162],[9.258348380117997,45.42933043297796],[9.258338574404457,45.429324649431365],[9.25832878147627,45.42931886585501],[9.258318975807743,45.429313091307684],[9.258309182924558,45.429307316730636],[9.258299377219027,45.42930153318063],[9.25828958429883,45.429295749600875],[9.258279804122989,45.42928995699042],[9.258270023949136,45.42928416437912],[9.25826024377729,45.429278371766976],[9.258250450783109,45.42927257018188],[9.258240670615265,45.429266777568046],[9.258230890449417,45.429260984953345],[9.258221110244586,45.429255183336814],[9.258211330082739,45.42924939072045],[9.258201537098579,45.42924358913112],[9.258191756899752,45.429237787512044],[9.25818197674391,45.42923199489311],[9.258172170982432,45.42922619333008],[9.258162390789614,45.42922039170845],[9.258152584991171,45.42921458114271],[9.258142804843342,45.42920878852042],[9.258132999048913,45.429202977952954],[9.258123206080793,45.429197176356816],[9.258113387466096,45.429191356815565],[9.258103607326282,45.42918556418984],[9.258093763067041,45.42917972670258],[9.25808398293124,45.42917393407518],[9.258074125851751,45.429168087614066],[9.258064345719971,45.42916229498493],[9.25805445025364,45.42915643960763],[9.258044670084914,45.42915063797582],[9.258034748974117,45.429144764652534],[9.258024789392579,45.42913886441189],[9.258014765732758,45.42913292831062],[9.258004665129477,45.429126938375575],[9.257994449150972,45.42912087669127],[9.257982928991115,45.42911475494023],[9.257970348065433,45.429108689587096],[9.257954717592362,45.429101064922776],[9.257940063444599,45.42909449118063],[9.257921898775274,45.42908618814504],[9.257350251931706,45.428771258922694],[9.257060645257921,45.42862186220213],[9.256977677950719,45.428581588792746],[9.256854247353948,45.42852626638424],[9.256764165029159,45.428484271588985],[9.256698630079091,45.42845431008149],[9.256694121037176,45.428452249953075],[9.256512798277791,45.42835231272136],[9.256153913945788,45.42814133963474],[9.255935959287655,45.42800236482171],[9.255090417444652,45.42750829421032],[9.254820870460994,45.42736251047768],[9.254366045939816,45.42711652421365],[9.254186682436304,45.427026894149044],[9.25402640921415,45.42691835513544],[9.25385689951295,45.426725253224],[9.253702711268518,45.42652216187262],[9.253576869702593,45.42644050408223],[9.2535236296104,45.426420576694284],[9.253210668765664,45.42630343679288],[9.253166519221079,45.42628103181686],[9.252949551452478,45.42617091555072],[9.252744352653732,45.42607406746468],[9.252544419416093,45.42600268944986],[9.252501862105415,45.425984655226735],[9.252461008112782,45.425967337314766],[9.251989674963413,45.425720873906606],[9.251923986371304,45.42568668847548],[9.25177722185468,45.42561029540219],[9.25185940767843,45.42553973497868],[9.252738607039085,45.4247847918149],[9.252866070969839,45.42468670428778],[9.252943727310722,45.42462433507337],[9.253174971059375,45.42442035389174],[9.253475402495427,45.42416457969056],[9.253564196326224,45.424089142790834],[9.253763099791293,45.42392016530979],[9.253934948174004,45.423769672773524],[9.253945971972298,45.42375948607059],[9.254094240957217,45.42363001817473],[9.25388235302813,45.42350494153781],[9.253869138542491,45.423514016962706],[9.253853043694573,45.423513548625124],[9.253842055327484,45.42351450912615],[9.253590528111234,45.42342024062568],[9.253559534477896,45.423443802178824],[9.253329729215118,45.42335050206824],[9.253215776542953,45.423313291877115],[9.253105115217451,45.42327746945718],[9.25310466720512,45.4232773264312],[9.253038347458212,45.423255897564864],[9.252946683632944,45.423226495741694],[9.252832781098935,45.423194685709625],[9.252731395015738,45.42316634032961],[9.252656424156653,45.423145380411164],[9.252494142731551,45.42309942817718],[9.252349787201759,45.42306038500363],[9.252236113861207,45.423025351480376],[9.252074063134344,45.42297650879052],[9.25193889671059,45.42293418645056],[9.25185909400102,45.42291015827876],[9.251809612527612,45.42289526241277],[9.25177269182151,45.4228852264675],[9.251691334373373,45.42285933837534],[9.251612871265888,45.422828934312626],[9.251564792189571,45.42281030880457],[9.25145568127321,45.42276911672469],[9.251269725545841,45.422699154883],[9.251101945044482,45.422634697508265],[9.251057388279381,45.42261763924367],[9.2510012483493,45.42258840990603],[9.250982774203989,45.422578792277726],[9.250986200782993,45.422555912991335],[9.250938893671531,45.42253544030167],[9.250891343261857,45.42251486011297],[9.250849363684802,45.42249668897968],[9.250694130821264,45.42256117108913],[9.250671956455204,45.42257037379683],[9.250396524663222,45.4226847868776],[9.25039149778962,45.42268687713393],[9.250390111282174,45.42268840135326],[9.250299214856083,45.42272520773226],[9.250263312129103,45.42274012008921],[9.250127279698017,45.42279662945316],[9.250114954862962,45.42280175102139],[9.250113985186074,45.42280214918972],[9.249948837674053,45.422894069278755],[9.249876229330644,45.422921627239894],[9.249771518288643,45.42296212681982],[9.249632167180255,45.42301702264307],[9.249433719032655,45.423096881191526],[9.249372697876728,45.42313769016681],[9.249239701091275,45.42322513759174],[9.249085250451223,45.423276510217676],[9.248913983855564,45.423334985084935],[9.24881876482703,45.423380476737066],[9.248692727767331,45.423440518071224],[9.248519103641138,45.423527089864805],[9.24848947599055,45.42352741526687],[9.248387835080226,45.423531002445316],[9.248260116720044,45.423534178081205],[9.248111489400284,45.42354089135403],[9.247986592458863,45.42354621182367],[9.247862229979722,45.423550990933286],[9.247749366255402,45.423557509214426],[9.247611422688108,45.42354326216517],[9.24759493903517,45.42354156063844],[9.247492640581276,45.423523365811974],[9.247467064755446,45.423517804471295],[9.247431995584009,45.42351018441067],[9.247309501854597,45.42344811679966],[9.247286276539564,45.42343635758786],[9.247212809268213,45.42342273573429],[9.247196473279827,45.423419710671],[9.247095604053657,45.423400891324654],[9.247051661733394,45.42338977089026],[9.246952135790382,45.423365322835885],[9.246951291275973,45.4233651176342],[9.246866757061609,45.423343193445305],[9.24677555617931,45.42331666601936],[9.24664238919268,45.423277807520485],[9.246525392485225,45.42324499875051],[9.246379423098993,45.42320433131526],[9.246261682213861,45.42317080379072],[9.246167497629697,45.423145830489545],[9.246123447125285,45.423127365042525],[9.245966164241619,45.423065613870456],[9.245908544026246,45.4230452872917],[9.245779477972125,45.422999758162916],[9.24573107507435,45.42298268808405],[9.2456934000183,45.42299892597141],[9.245675130206212,45.42300679616108],[9.245669159370866,45.42300937429576],[9.24563340613921,45.42300009895124],[9.245630540185594,45.42293452317605],[9.245516731411854,45.422890806206794],[9.245479909127619,45.42287667252095],[9.245424385159696,45.42285626018856],[9.245392679203682,45.42283702088026],[9.245383093071904,45.422831199739555],[9.245402623884,45.422792768195016],[9.245370211779463,45.42274915544716],[9.245166413777174,45.422627483684714],[9.24514918888697,45.42261981567162],[9.244944529144103,45.42251444632991],[9.244888139775265,45.42248589860426],[9.244698853508476,45.42237660743377],[9.244530259392553,45.422284535802056],[9.24446347019309,45.42224806213656],[9.244384304661024,45.42220482805394],[9.244237874121286,45.42212435604154],[9.244140750098445,45.42207807276081],[9.244119106598577,45.4220682717635],[9.244011672500989,45.42201713178575],[9.243981544832339,45.421999094861995],[9.243823756292857,45.4219046678498],[9.243814520692501,45.4219000339732],[9.243773940416592,45.42187966999004],[9.243768021585332,45.42187649621845],[9.24367569020468,45.42182692592935],[9.243661914180993,45.421818638269364],[9.243650309807713,45.42181005794686],[9.243639994971005,45.42180412119691],[9.24362946366,45.42179837393],[9.243619265524883,45.42179282397648],[9.243609144081741,45.42178727385871],[9.243599112305484,45.4217817685545],[9.24358909335149,45.421776272223184],[9.243579023582019,45.42177084800797],[9.243568890215375,45.42176549593597],[9.243558960506903,45.421759945405405],[9.243549132667141,45.4217543046462],[9.243539279188738,45.421748645938536],[9.243529400187649,45.42174299628548],[9.243519470061917,45.42173734674035],[9.243509527156514,45.42173169722158],[9.24349955865115,45.42172603875536],[9.243489462679037,45.42172046156942],[9.243479315775499,45.42171492949646],[9.243469168873943,45.42170939742259],[9.243458983590793,45.421703856428365],[9.243448862295127,45.42169833329926],[9.243438550010751,45.42169298159647],[9.243428225062567,45.42168765692294],[9.243417900193565,45.421682350250464],[9.24340777906023,45.421676863121725],[9.243397683492132,45.42167137593765],[9.24338757510573,45.42166587977891],[9.243377479541541,45.42166039259304],[9.243367447694386,45.42165486026526],[9.243357466705397,45.42164926482071],[9.243347472975367,45.42164367840354],[9.243337339112742,45.421638200296655],[9.243327192509051,45.42163273121711],[9.24331704586871,45.421627253135625],[9.24330688644871,45.4216217750804],[9.243296688801612,45.421616324108875],[9.243286656699901,45.42161072876686],[9.243276802770819,45.421604953023184],[9.243266948843749,45.42159917727869],[9.243257094880079,45.42159339253229],[9.2432472281368,45.42158760781221],[9.243237399817595,45.42158184101176],[9.243227456658815,45.4215761194601],[9.243217335292728,45.42157056930723],[9.243207124804654,45.42156510035277],[9.243196914318554,45.42155963139741],[9.24318671661603,45.42155416241389],[9.243176518954066,45.421548702430535],[9.243166346857285,45.42154324239186],[9.243156174839623,45.42153780035431],[9.243146028425715,45.42153236726253],[9.243135894833934,45.42152694314364],[9.243125722783544,45.42152149210233],[9.24311561479744,45.421516076928334],[9.24310544313671,45.42151071589527],[9.243095258696307,45.42150535488849],[9.243085265210349,45.42149981345316],[9.243075233227268,45.42149423609439],[9.243065239668091,45.42148867665528],[9.243055207650396,45.421483090293734],[9.243045201313556,45.42147753088],[9.243035067509838,45.421472052746026],[9.243024908222015,45.42146659266749],[9.2430147488976,45.421461123587015],[9.243004589613696,45.42145566350666],[9.242994417473048,45.42145018545052],[9.242984219771195,45.42144470744777],[9.242974073274763,45.42143924733753],[9.242963888242759,45.42143374230274],[9.242953690354058,45.42142821929221],[9.24294353108193,45.42142275920634],[9.242933027557168,45.42141749787474],[9.242922511214223,45.421412227568304],[9.242666904238686,45.42128407253895],[9.242497170318035,45.42116602315812],[9.242474759458739,45.42114998571836],[9.242465785154975,45.421143631969734],[9.242456593952149,45.42113736869106],[9.24244746688977,45.42113115928228],[9.242438314535649,45.421125012934],[9.242429187746538,45.42111886653076],[9.242420251412689,45.421112422687166],[9.242411366668495,45.42110608674658],[9.242402112262582,45.4210999856171],[9.242392348098383,45.421094236609655],[9.242382494580992,45.42108851479405],[9.242372628207173,45.421082775002574],[9.2423627618738,45.42107704421126],[9.242352869902517,45.42107129547125],[9.242343117952931,45.42106541141733],[9.242333582521818,45.42105934688203],[9.242324378642696,45.42105310162168],[9.242315123485803,45.421046820464866],[9.242305868330973,45.421040539307256],[9.242296613139743,45.421034249147915],[9.24228751121314,45.42102793165986],[9.242278523706903,45.42102146991127],[9.242269548984197,45.421015008134916],[9.242260574301975,45.42100855535878],[9.24225161244174,45.42100211155595],[9.242242650583535,45.42099566775236],[9.242233701508853,45.42098922392097],[9.242224663196442,45.42098283428444],[9.242215599361542,45.42097645370232],[9.242206535490249,45.420970064118464],[9.24219745887795,45.4209636835619],[9.242188382190845,45.42095728500266],[9.242179305544209,45.42095089544363],[9.24217036880416,45.42094434356802],[9.242161547022583,45.42093777344616],[9.242152725281478,45.420931212324625],[9.242144056574254,45.420924569868596],[9.242135642806856,45.420917764852554],[9.242127241899778,45.420910977810884],[9.242118790022525,45.42090422688083],[9.242110325442662,45.42089749397923],[9.242101848044927,45.42089075210299],[9.242093383469095,45.420884019200095],[9.24208462568997,45.42087746693894],[9.242075651204258,45.42087105015213],[9.242066663939132,45.420864633391666],[9.242057676714445,45.420858225631434],[9.242048702273248,45.42085181784346],[9.242039651375801,45.420845464223135],[9.24203061330024,45.42083911957602],[9.242021575226705,45.420832774928215],[9.242012575499533,45.42082643019851],[9.242003614003522,45.42082005838391],[9.241994652547918,45.420813695569656],[9.24198557636852,45.420807405006144],[9.241976984388506,45.42080076237498],[9.241968366732436,45.42079409279419],[9.241959710695687,45.42078741429286],[9.241951041725983,45.42078069981381],[9.24194235997689,45.42077398536119],[9.241933499596886,45.42076734329441],[9.241924919527573,45.42076049360899],[9.241916339421952,45.420753634921894],[9.241907733678783,45.42074675828615],[9.241899191576161,45.42073981850752],[9.241891044701928,45.420732643864056],[9.241882897829765,45.42072546922004],[9.24187512173609,45.420718320794606],[9.241867638158698,45.420710829708625],[9.241860180299645,45.42070337457214],[9.241852825077663,45.42069600922904],[9.241845418501677,45.42068858998746],[9.241838050502121,45.42068122467043],[9.241830274727164,45.42067414824996],[9.24182200116976,45.42066723490102],[9.24181390716804,45.42066046518933],[9.24176944714568,45.42063509508347],[9.241733023155513,45.42061488360528],[9.241701049418147,45.420595202777235],[9.241690202954445,45.42058738574511],[9.24167749743965,45.42057822247609],[9.241664855989304,45.420569095074654],[9.24165498021815,45.420564111332254],[9.241645155727666,45.42055916348511],[9.241635200396075,45.42055350482722],[9.24162589756889,45.42054799780862],[9.241616734111924,45.420542202459885],[9.241607581406369,45.420535930029864],[9.241598990661924,45.42052955740012],[9.241590335782513,45.42052313089862],[9.24158152706853,45.420516596708254],[9.241572820914241,45.42051013430933],[9.241564012242634,45.4205036091186],[9.241555267633242,45.42049711979625],[9.241546471747055,45.42049059457715],[9.24153771432198,45.420484096279445],[9.241528905658466,45.42047757108597],[9.241520109740026,45.42047103686378],[9.241511326719948,45.42046452961695],[9.241502594559108,45.420457959254406],[9.241494079070382,45.420451244416306],[9.24148558922303,45.42044454752555],[9.241477073738338,45.42043783268614],[9.241468558255658,45.420431117846064],[9.24146006841434,45.420424420953395],[9.2414515529357,45.42041770611205],[9.241443037459078,45.420410991269996],[9.241434534804135,45.4204042854014],[9.241426019331554,45.42039757055808],[9.241417503899287,45.42039086471515],[9.241409001250393,45.420384158844584],[9.24140048578386,45.42037744399936],[9.241391970319349,45.42037072915345],[9.241383467676501,45.42036402328093],[9.241374952216022,45.420357308433765],[9.241366436757561,45.42035059358594],[9.241357921301125,45.42034387873746],[9.241349405884998,45.420337172889326],[9.241340903213935,45.42033045801256],[9.241332387763547,45.42032374316216],[9.241323872315187,45.4203170283111],[9.241315356907137,45.42031032246039],[9.241306841462807,45.420303607608055],[9.241298326020502,45.42029689275501],[9.241289823399825,45.42029018687541],[9.241281307961561,45.42028347202115],[9.2412727925253,45.42027675716617],[9.241264277091075,45.420270042310605],[9.24125576165886,45.42026332745436],[9.24124725900999,45.42025661257048],[9.24123875636313,45.42024989768602],[9.241230240936977,45.420243182827825],[9.241221738294154,45.42023646794205],[9.241213222833762,45.420229744081574],[9.241204720194974,45.42022302919449],[9.241196217558203,45.42021631430679],[9.241187714923454,45.420209599418406],[9.241179199509405,45.420202884556346],[9.241170696840422,45.42019616066571],[9.241162181430417,45.42018944580234],[9.241153678803729,45.420182730911385],[9.241145176179066,45.42017601601981],[9.241136660775114,45.420169301154544],[9.24112815811622,45.42016257726066],[9.241119655497602,45.42015586236711],[9.241111140099711,45.42014914749988],[9.241102675714243,45.42014240552122],[9.241094198549504,45.42013566356885],[9.24108573416807,45.420128921588876],[9.241077269788647,45.420122179608306],[9.241068805411247,45.42011543762706],[9.24106034103586,45.420108695645176],[9.241051876662485,45.42010195366264],[9.241043412291138,45.42009521167954],[9.241034947921795,45.42008846969573],[9.24102647077319,45.42008172773822],[9.241018019150923,45.42007497672521],[9.24100956753066,45.42006822571156],[9.241001115912422,45.42006147469725],[9.240992664296199,45.42005472368237],[9.240984212720225,45.42004798166778],[9.240975748326754,45.42004123067852],[9.240967296716578,45.42003447966168],[9.240958845108414,45.4200277286442],[9.240950393540496,45.42002098662708],[9.240941941936356,45.420014235608335],[9.240933490334237,45.420007484588965],[9.240925038734135,45.420000733568905],[9.24091657439301,45.419993991576185],[9.240908135578195,45.41998724052797],[9.240899671202872,45.41998048953297],[9.240891219649047,45.41997374751137],[9.240882780878492,45.419967005462254],[9.240874316509228,45.41996025446532],[9.240865877742694,45.41995351241491],[9.2408574261587,45.41994676138981],[9.240848961795482,45.419940010390945],[9.240840523034985,45.41993326833866],[9.240832071457037,45.41992651731159],[9.240823632738774,45.41991978425903],[9.240815181164855,45.41991303323072],[9.240806729631158,45.419906291202814],[9.240798431092282,45.419899458841186],[9.240790170784507,45.41989259939524],[9.240781910440523,45.41988573094764],[9.240773637317314,45.41987886252638],[9.240765351338467,45.41987197612934],[9.240757027056143,45.41986509881342],[9.24074846050545,45.419858357023216],[9.240739945234502,45.41985165112877],[9.240731378726077,45.41984491833831],[9.240722824962717,45.419838176519214],[9.240714258458363,45.419831443727396],[9.240705691917851,45.41982470193391],[9.240697176657038,45.419817996036265],[9.240688610120593,45.41981125424148],[9.24068004358619,45.41980451244605],[9.240671477053832,45.41979777064992],[9.240662897742292,45.41979102888006],[9.240654153002517,45.419784458478354],[9.240645344320516,45.41977787920943],[9.240636573869667,45.4197712728561],[9.240627930965688,45.41976460322612],[9.240619288063744,45.41975793359546],[9.240610658021403,45.41975128193928],[9.24060204076229,45.419744630255536],[9.240593449105788,45.41973798751839],[9.24058498491975,45.419731263502634],[9.24057653351694,45.41972453945938],[9.240568082154297,45.41971782441649],[9.24055966921359,45.41971112729434],[9.240551217854952,45.41970441225017],[9.240542766498317,45.41969769720536],[9.240534379202314,45.419691018029575],[9.240526119529386,45.419684293579344],[9.240517834563166,45.419677632189355],[9.240509102486277,45.41967102574542],[9.240500267818486,45.41966433850669],[9.24049145879147,45.41965766921551],[9.240482495858126,45.41965087423198],[9.240473533651887,45.41964425026695],[9.240376910786841,45.41955464044852],[9.240336491032668,45.41951717282044],[9.240365122286544,45.41950539323425],[9.240582816532271,45.41941586073966],[9.240878148467667,45.41930046623505],[9.241169665272901,45.419168832033264],[9.241588359538262,45.41897864645515],[9.241829798373693,45.41887740500414],[9.24182996425821,45.41887734164577],[9.242161541898126,45.418747879472754],[9.242291318778186,45.41869346305826],[9.242486232196764,45.41860719756849],[9.242585238641771,45.41856337732847],[9.24299648856043,45.41837697381507],[9.243379595586177,45.41822713714522],[9.243692863730436,45.418133416816985],[9.244084533505022,45.417960516726275],[9.244124602233281,45.41794282506975],[9.244192246044134,45.41790590219701],[9.244201805907327,45.41789990505924],[9.24421137854927,45.41789390789336],[9.244221041080912,45.41788800954682],[9.244230972936938,45.417882326650656],[9.244240879229416,45.41787664380824],[9.24425079833944,45.41787096993867],[9.244260717408716,45.41786528706723],[9.244270636476003,45.417859604194916],[9.244280555580053,45.41785393032277],[9.24429048746289,45.417848256422474],[9.244300419343737,45.417842582521274],[9.244310351261353,45.41783691762025],[9.244320283138226,45.417831243717345],[9.244330215051866,45.41782557881462],[9.24434014692476,45.41781990490997],[9.244350078795652,45.417814231004456],[9.244359997922567,45.41780856612641],[9.244369929789485,45.4178028922192],[9.244379861654416,45.41779721831109],[9.244389819195197,45.41779157135058],[9.244399879367844,45.41778601418079],[9.244409978074673,45.41778050193334],[9.244420089560302,45.417774989657644],[9.24443018826319,45.41776947740834],[9.244440286964126,45.41776396515821],[9.244450398443844,45.41775845287981],[9.244460497140839,45.41775294062784],[9.244470608616625,45.41774742834772],[9.24448070730968,45.417741916093966],[9.244490818781525,45.41773640381198],[9.244500930290194,45.417730900530124],[9.244511080294307,45.417725433169494],[9.244521230296467,45.41771996580791],[9.244531380296655,45.41771449844548],[9.244541530256095,45.417709022081105],[9.244551680252364,45.41770355471682],[9.24456183024668,45.41769808735166],[9.244571980239023,45.41769261998558],[9.24458214301015,45.417687152591284],[9.244592292998574,45.4176816852234],[9.244602442985046,45.41767621785461],[9.244612592930737,45.41767074148394],[9.244622742913286,45.41766527411334],[9.244632892893872,45.41765980674185],[9.244643042872491,45.41765433936946],[9.244653321122236,45.41764897973494],[9.244663612267223,45.41764364707524],[9.244673903371444,45.41763830541357],[9.24468419451255,45.41763297275199],[9.244694485612888,45.41762763108846],[9.244704789492008,45.417622289396654],[9.244715080627284,45.41761695673231],[9.244725371721795,45.41761161506597],[9.244735675595086,45.417606273371376],[9.244745864012831,45.41760083291087],[9.244756001150417,45.417595356554735],[9.244766151066763,45.41758988017039],[9.244776288161587,45.417584394811456],[9.244786258483785,45.41757876579099],[9.244884535015002,45.41752360372977],[9.244905185233048,45.417510930977414],[9.244915245305224,45.41750537376221],[9.244925292594738,45.41749981657349],[9.24493533988227,45.41749425938388],[9.244945387128976,45.417488693192404],[9.244955434412564,45.41748313600103],[9.24496549447487,45.4174775787814],[9.244975541715643,45.417472012587254],[9.244985627490852,45.41746649131517],[9.244995828678974,45.417461059805966],[9.24500601708446,45.417455628323175],[9.245015936005156,45.41744994538605],[9.245025765109213,45.41744418163062],[9.245035581430587,45.41743841790167],[9.245045410530642,45.417432654144484],[9.245055226848015,45.41742689041388],[9.245065055905194,45.41742111765402],[9.245074884921483,45.417415335892315],[9.24508471385799,45.4174095361277],[9.245094580784519,45.41740365527099],[9.245099616434064,45.41740070112169],[9.245109625111553,45.417395089992795],[9.245119197727572,45.417389128754735],[9.24512873184401,45.417383131594015],[9.245138265919527,45.41737712543142],[9.24514780003193,45.41737112826909],[9.245157321361635,45.417365131133344],[9.245166521966931,45.41735885565027],[9.245175530198987,45.417352427560104],[9.245184538390102,45.417345990468206],[9.245193559320914,45.4173395443472],[9.245202567469022,45.4173330982529],[9.245211588395742,45.41732665213048],[9.245220609281494,45.417320197006305],[9.24522978403882,45.41731385856575],[9.24523938215086,45.4173078882618],[9.245248980299785,45.41730192695801],[9.245258604046901,45.417295974599654],[9.245268304787185,45.41729009408415],[9.24527800544762,45.41728419556578],[9.245287706144953,45.41727830604761],[9.245297419581995,45.417272407500164],[9.245307633602643,45.41726700293869],[9.245318296811877,45.417262029465576],[9.245328959980437,45.41725704699043],[9.245339610327553,45.41725205554068],[9.245350260633863,45.41724705508892],[9.245360615737951,45.41724176723432],[9.245370932303558,45.41723643445596],[9.245381235930846,45.41723106570002],[9.245383072254192,45.41723011664525],[9.245393491527809,45.41722489165764],[9.245403808165111,45.41721957687837],[9.2454141248394,45.4172142710991],[9.245424377258177,45.41720888444692],[9.24543442440616,45.41720331821234],[9.245444471552165,45.417197751976865],[9.245454518696194,45.41719218574053],[9.245464540160166,45.417186592555076],[9.24547451030494,45.41718095447346],[9.24548448040878,45.41717530738989],[9.24549445051062,45.41716966030547],[9.245504420610489,45.41716401322019],[9.245514365108171,45.41715835718788],[9.245524309487003,45.417152674151644],[9.245534241083229,45.41714699114197],[9.245544172677459,45.417141308131484],[9.245554117011345,45.41713561609165],[9.24556404860159,45.4171299330794],[9.245573992931481,45.41712424103785],[9.245583924439806,45.417118540021846],[9.245593855907158,45.417112830003944],[9.245603800114152,45.41710711095674],[9.2456137443581,45.41710140090971],[9.24562370134168,45.41709568183331],[9.245634248958932,45.41709059156448],[9.245644860711133,45.417085555163524],[9.245655511076071,45.417080581686314],[9.245666482513169,45.41707596756242],[9.245677325440884,45.41707119169372],[9.24568815558618,45.417066415851515],[9.245698857260992,45.4170614872655],[9.245709430582233,45.41705643293887],[9.24572004224337,45.4170513785289],[9.245724876107497,45.41704906386325],[9.24573537238966,45.41704392868986],[9.245745945665371,45.41703886535885],[9.245756518978185,45.41703381102787],[9.245767079469523,45.41702874772235],[9.245777627022413,45.417023648439255],[9.245787751059266,45.41701814501587],[9.245798093261023,45.417012848147984],[9.245808435460846,45.4170075512792],[9.245818777658734,45.417002254409475],[9.245829107074101,45.416996957566255],[9.245839449307121,45.41699166969566],[9.246043063828807,45.41688678313981],[9.246053791156006,45.4168818904696],[9.246064518481344,45.41687699779838],[9.24607524580484,45.416872105126245],[9.246085973087425,45.41686720345201],[9.246096700407204,45.416862310777766],[9.24610742772512,45.416857418102545],[9.24611815500214,45.41685251642529],[9.246128882316343,45.41684762374808],[9.24613964812654,45.416842766991394],[9.24615042679354,45.416837928208196],[9.246161218239237,45.4168330893965],[9.246171996941602,45.41682825961228],[9.246182788383607,45.41682342079851],[9.246193579823773,45.416818581983726],[9.246204358481547,45.41681374319547],[9.246215149918019,45.41680890437866],[9.246225928533047,45.416804056587345],[9.24623669428755,45.41679919082045],[9.246247460040205,45.416794325052614],[9.246258225830083,45.41678946828473],[9.24626899157903,45.416784602514774],[9.246279770106664,45.41677973671635],[9.246290535851916,45.416774870944444],[9.24630131437584,45.41677000514393],[9.246312118576203,45.416765166290496],[9.246322935555245,45.41676032740843],[9.246333752532438,45.41675548852536],[9.24634458224922,45.41675064061274],[9.2463550398828,45.41674546045986],[9.246365523075504,45.41674028025096],[9.246375993446685,45.41673509106762],[9.246386489416084,45.41672991082923],[9.24639699808588,45.4167247125604],[9.246407545095305,45.41671951420792],[9.246418104414152,45.416714207814806],[9.246428828626591,45.41670861303029],[9.246431404425843,45.416707257316],[9.246441399990008,45.4167016280958],[9.246451485367688,45.41669607969107],[9.246461583523894,45.4166905312579],[9.246471681678125,45.41668498282384],[9.246481779830372,45.41667943438891],[9.246491877941528,45.41667387695206],[9.246501976089819,45.416668328515335],[9.246512074236128,45.41666278007767],[9.246522172380457,45.41665723163915],[9.246532270483696,45.41665167419874],[9.246542342945714,45.41664609881047],[9.246552312809708,45.416640442632584],[9.246562205714891,45.41663472361207],[9.246572098618078,45.416629004590646],[9.24658200429976,45.416623285540865],[9.246591897198941,45.4166175665177],[9.246601802876615,45.416611847466164],[9.246611708552297,45.41660612841378],[9.246621601445487,45.41660040938809],[9.24663140452109,45.41659460954532],[9.246640976841556,45.416588648179506],[9.246650561940486,45.416582686785326],[9.246660146998265,45.41657671638932],[9.246669732093164,45.41657075499353],[9.246679317186043,45.41656479359696],[9.24668891505738,45.41655883217199],[9.246698500146227,45.416552870773785],[9.24670816211162,45.416546954214446],[9.246717824114148,45.41654104665532],[9.246727345059691,45.41653503138643],[9.246736814685585,45.41652897122194],[9.246746284348601,45.41652292005772],[9.246755753970447,45.41651685989169],[9.246765223590263,45.41651079972484],[9.246774693208053,45.41650473955723],[9.246784175604287,45.41649867936127],[9.246793645178867,45.41649261019105],[9.246803127571042,45.41648654999349],[9.246812609922022,45.41648048079414],[9.246822105012276,45.416474402565406],[9.246831625739743,45.41646834228276],[9.246841171947752,45.416462263942094],[9.246968647736972,45.41637471411239],[9.246979117789337,45.416369479868635],[9.246989113239437,45.41636385060041],[9.246998557208649,45.416357781468335],[9.247008001215022,45.41635172133653],[9.247017457960624,45.416345652175295],[9.24702690196295,45.41633959204195],[9.247036345924073,45.41633352290676],[9.247045789922359,45.4163274627718],[9.247055246659858,45.41632139360744],[9.247064600877541,45.416315261656074],[9.247073903736311,45.41630907580828],[9.24708329640881,45.41630297077555],[9.24709268904008,45.41629685674109],[9.24710209448895,45.41629075167924],[9.247111487116166,45.416284637643194],[9.247120892521774,45.416278523578775],[9.247130297964562,45.41627241851455],[9.247139703326898,45.416266295447585],[9.247149134287236,45.416260181325576],[9.247158616484821,45.4162540940954],[9.24716834237088,45.41624820436197],[9.247178106517712,45.41624229654287],[9.247188087576468,45.41623630724423],[9.247189719193862,45.41623532259827],[9.247199278575215,45.416229352212156],[9.247208966190025,45.41622348056016],[9.247218717900948,45.41621765377432],[9.247228572245321,45.416211916776774],[9.247238426626918,45.41620618877938],[9.247248255328044,45.41620043383336],[9.247258007070185,45.41619461604516],[9.247267784449575,45.41618881620291],[9.247277831156829,45.41618323180389],[9.247287877862098,45.41617764740403],[9.24729792456538,45.41617206300325],[9.247308202098456,45.41616665812445],[9.247318530908089,45.41616128913829],[9.247328885355012,45.416155938097944],[9.24733936795704,45.41615066778942],[9.247349876196363,45.4161454154267],[9.247360397214132,45.416140163035315],[9.247370943790708,45.41613491058769],[9.247381374870908,45.416129550375715],[9.247391626395785,45.41612404653356],[9.247401672765314,45.41611839011554],[9.247411744654341,45.416112724640364],[9.247421829321729,45.416107059136614],[9.247431465299961,45.416101079564136],[9.247440908942401,45.41609495638934],[9.247450365363175,45.41608883318613],[9.24745983452302,45.41608270095344],[9.24746918818633,45.41607646095667],[9.247477568065905,45.41606965599683],[9.247485986323841,45.41606285995443],[9.247494391760124,45.41605605493807],[9.247502732978422,45.41604917805119],[9.247510676903927,45.41604204999263],[9.247514229430841,45.41603901793569],[9.24752282715467,45.41603234751755],[9.247530937966117,45.416025390117326],[9.247538984716694,45.416018396850745],[9.247546980186756,45.416011367690224],[9.247555270388514,45.41600451791319],[9.247563560588265,45.41599766813554],[9.247571863605643,45.41599082733065],[9.247580153801389,45.4159839775518],[9.247588456775473,45.41597712774467],[9.247596746967204,45.415970277964604],[9.247605037156939,45.415963428183936],[9.24761334016429,45.41595658737601],[9.247621643169643,45.41594974656747],[9.247629779557117,45.41594279810587],[9.247637915981882,45.415935858644694],[9.247646039585028,45.415928910209566],[9.247654175966517,45.4159219617462],[9.247662299604976,45.41591502231094],[9.24767043598247,45.41590807384641],[9.247678572397279,45.41590113438233],[9.247686695990463,45.415894185944296],[9.247694845181615,45.415887246451334],[9.247702930351238,45.41588028009316],[9.24771084894235,45.41587321508304],[9.247718780311816,45.41586615004474],[9.247726698898976,45.415859085033496],[9.247734630225183,45.41585201099304],[9.2477425488084,45.41584494598073],[9.247750480169959,45.41583788094019],[9.247758411490231,45.41583080689806],[9.247766419765568,45.41582379569641],[9.247774492058413,45.415816811358745],[9.247782577168898,45.41580983599388],[9.247791072348035,45.41580311177084],[9.247799580344774,45.415796396520435],[9.247808088300182,45.415789672268424],[9.247816583473274,45.4157829480435],[9.247825181161991,45.41577628660346],[9.247833855687775,45.4157696610007],[9.24784253021153,45.41576303539728],[9.247851204733259,45.41575640979318],[9.24785989199393,45.41574977515973],[9.247868643232698,45.415743158389134],[9.247877458331564,45.415736532478405],[9.247886439218224,45.41572982519777],[9.247892299668223,45.41572558197962],[9.247901832974959,45.41571953058078],[9.247911186608311,45.415713308549684],[9.247920540200278,45.4157070775168],[9.247929893790182,45.41570084648313],[9.24793936283329,45.41569471421053],[9.247948947368942,45.41568868969996],[9.247958531941906,45.41568267418964],[9.247968308925158,45.4156768202811],[9.247978137342248,45.41567103826906],[9.247987978537607,45.41566525622843],[9.24799781973096,45.41565947418699],[9.248007673702578,45.415653692116976],[9.248017527750875,45.41564792804814],[9.248027394538093,45.41564215494971],[9.248037261323299,45.415636381850405],[9.248047115326221,45.415630608778],[9.2480569821074,45.415624835677],[9.248066861666844,45.41561906254745],[9.24807679262083,45.41561335231326],[9.248086928922962,45.415607839656985],[9.24809707808211,45.415602344974154],[9.248107227239283,45.41559685029042],[9.248117389174743,45.41559135557801],[9.248127538327978,45.41558586089244],[9.24813770025949,45.415580366178254],[9.248147875048037,45.41557488943747],[9.248158062654237,45.415569421669055],[9.248168250219102,45.41556394489871],[9.248178656070015,45.415558701682414],[9.248189164633532,45.41555356625549],[9.24819967323452,45.41554843982864],[9.248210181833608,45.41554331340079],[9.24822069043079,45.41553818697196],[9.248231327379894,45.41553318627908],[9.248241977225518,45.415528212560424],[9.248252639849518,45.41552323881308],[9.248263289691396,45.41551826509248],[9.248274055065645,45.41551340813441],[9.248284820477446,45.41550856017632],[9.248295585887394,45.4155037122172],[9.248306351256103,45.4154988552561],[9.248317116662369,45.415494007294946],[9.248327882027379,45.41548915033178],[9.248338647429948,45.41548430236866],[9.24834941279127,45.41547944540347],[9.248360255265577,45.41547468728191],[9.248371316026544,45.41547016271392],[9.248382351107058,45.415465611197355],[9.248393386185795,45.41546105967964],[9.24840443400358,45.41545649913218],[9.248415507261807,45.415451911525075],[9.248420839820414,45.41544971267587],[9.248431875011198,45.41544518815757],[9.248442871583622,45.415440600714334],[9.248453868114847,45.41543600426907],[9.2484648646837,45.41543141682372],[9.248475848470555,45.41542682940506],[9.24848701200661,45.415422430617966],[9.24849798289142,45.41541781622194],[9.248508915197231,45.4154131479021],[9.248519834721009,45.41540847960892],[9.24853075416413,45.41540379331266],[9.248540889950776,45.41539818160494],[9.24864938659854,45.41535251723859],[9.248661192588347,45.415348909134615],[9.248673011435748,45.4153453190037],[9.248684804484515,45.41534167492096],[9.248696302008856,45.41533767143561],[9.248707812351224,45.4153336769223],[9.24871930987231,45.41532967343465],[9.248730807312839,45.41532565194377],[9.248741726801414,45.415320983629435],[9.248752659028924,45.415316306285206],[9.248763578513888,45.41531163796872],[9.248774497957589,45.41530696065024],[9.248785430179673,45.41530228330289],[9.248796349659234,45.415297614983274],[9.248807269097512,45.41529293766166],[9.248818201353656,45.41528826931218],[9.248829120788326,45.41528359198844],[9.248840040221191,45.41527891466368],[9.248850972471926,45.41527424631104],[9.248861891901178,45.415269568984186],[9.24887282410881,45.41526489162847],[9.248883743534453,45.415260214299515],[9.24889467577796,45.4152555459427],[9.248905607980173,45.41525086858389],[9.248916540180584,45.41524619122395],[9.248927472339687,45.415241504861996],[9.248938417277161,45.41523681847116],[9.248949451950546,45.415232194891686],[9.248960806521566,45.415227660625845],[9.248964787064395,45.41522608576997],[9.248975937545124,45.41522164195786],[9.248987088103117,45.41521721614667],[9.248998251439525,45.41521279030658],[9.249009401994016,45.41520836449323],[9.249020565326935,45.41520393865096],[9.249031715877933,45.415199512835414],[9.249042879167845,45.41519507798995],[9.249054042495525,45.415190652144396],[9.249065193041288,45.41518622632561],[9.24907635636547,45.41518180047789],[9.249087519687901,45.41517737462907],[9.249098683008592,45.415172948779194],[9.249109846327531,45.41516852292818],[9.2491210096052,45.4151640880751],[9.249132172920648,45.41515966222192],[9.249143336234344,45.41515523636764],[9.249154512286928,45.41515080148344],[9.249165791330105,45.41514653739466],[9.249177108988784,45.41514233622839],[9.249188426645778,45.41513813506097],[9.249199744301098,45.41513393389245],[9.249211100492884,45.415129777644324],[9.24922258539395,45.415125828139956],[9.249234070293415,45.41512187863441],[9.24924555519127,45.4151179291277],[9.249257040087521,45.415113979619875],[9.24926852498217,45.41511003011085],[9.249280022655363,45.41510608057287],[9.2492915075468,45.415102131061545],[9.24930299243663,45.41509818154907],[9.249314477324864,45.41509423203546],[9.249325974991626,45.41509028249282],[9.249337459876646,45.41508633297692],[9.249348944760055,45.41508238345981],[9.249360429641865,45.41507843394157],[9.249371914522063,45.41507448442221],[9.2493834121808,45.41507053487379],[9.249394897057794,45.41506658535211],[9.24940638193318,45.41506263582922],[9.249417879587096,45.41505868627736],[9.249429364459276,45.415054736752175],[9.249440913586694,45.41505086809563],[9.249452501409131,45.41504708036348],[9.249464102010142,45.415043292602206],[9.249475689829469,45.41503950486765],[9.249487277607658,45.415035708130915],[9.249498878204014,45.41503192036614],[9.24951047883839,45.4150281416012],[9.249522143886505,45.41502447970885],[9.249533821713234,45.415020817787436],[9.249545499538458,45.41501715586484],[9.24955717736216,45.415013493941075],[9.249568855223949,45.4150098410171],[9.249580520264498,45.41500617911882],[9.249592198083668,45.415002517191425],[9.249603875901316,45.414998855262866],[9.24961555371746,45.41499519333313],[9.249627231532088,45.41499153140217],[9.249638909345197,45.41498786947002],[9.24965060013496,45.41498425251388],[9.249662329342792,45.41498065347481],[9.249674045808634,45.41497706346355],[9.249685775053107,45.414973473423146],[9.249697491515963,45.41496988340945],[9.249709207977336,45.41496629339452],[9.249720937217337,45.414962703350525],[9.249732653636105,45.414959104332176],[9.249744382873121,45.41495551428576],[9.24975607360981,45.414951888317816],[9.249767699889663,45.414948136473996],[9.24977926195039,45.41494431276043],[9.24979075963344,45.41494038117307],[9.249802257314885,45.41493644958455],[9.24981375499474,45.4149325179949],[9.249825265453099,45.41492858637615],[9.24983676312975,45.41492465478417],[9.249848260804804,45.41492072319102],[9.249859758478255,45.41491679159673],[9.249871268930212,45.41491285997332],[9.249882766640106,45.414908937377746],[9.249894315667053,45.41490505967435],[9.249905851951958,45.414901190998776],[9.249917362437177,45.41489726837174],[9.249928885700905,45.414893345715676],[9.249940408923385,45.41488941405741],[9.249951932025295,45.41488545539496],[9.249963390392306,45.414881307849654],[9.249975014700615,45.41487711493504],[9.249982925749617,45.41487423529469],[9.249994230076673,45.41486993506426],[9.25000545740414,45.414865562992205],[9.250016697470299,45.41486118189008],[9.250027911934865,45.41485679184172],[9.250039126358017,45.41485239279123],[9.250050353559514,45.41484799371172],[9.250061567939511,45.41484358565805],[9.250072795137516,45.4148391865763],[9.250084022333773,45.41483478749347],[9.250095082553925,45.4148301997515],[9.250105950277405,45.41482543240737],[9.250116753781182,45.414820593193866],[9.250169848963399,45.41479591306869],[9.25018035724416,45.414790786459605],[9.25019086548333,45.41478565084852],[9.250201360940519,45.41478051526444],[9.25021181785709,45.414775334758154],[9.250222249092506,45.41477012730383],[9.250232680365713,45.41476492884955],[9.2502431115973,45.41475972139333],[9.250253542866663,45.41475452293713],[9.250263974094409,45.414749315478986],[9.25027430264293,45.414744009232436],[9.250284592690491,45.41473866706481],[9.250294882775814,45.41473333389727],[9.250305172859198,45.414728000728815],[9.250315424401895,45.414722622638216],[9.250325342310772,45.41471693923945],[9.250335272957997,45.414711246810846],[9.250345190862884,45.41470556341034],[9.250355108726069,45.41469987100803],[9.250365244722056,45.414694376151516],[9.250375393575581,45.41468889926822],[9.25038554242713,45.414683422383995],[9.250395704056778,45.41467794547087],[9.250405852864683,45.41467245958386],[9.250416014450662,45.414666973667906],[9.25042621437482,45.41466148766713],[9.250436452557691,45.41465598357945],[9.250445441313708,45.41465116631042],[9.25045576954917,45.41464579704032],[9.250465995144959,45.414640337983066],[9.250476220699042,45.41463486992387],[9.25048647181123,45.414629401807815],[9.250496607503662,45.41462384393257],[9.250506755815174,45.41461825002435],[9.250516980924147,45.414612682950356],[9.250527103194623,45.41460698108416],[9.250644299591373,45.41454097127274],[9.250570913600592,45.41449991602213],[9.250427242324486,45.41441952680125],[9.250288418918435,45.41433999989702],[9.250111434094737,45.414240069769654],[9.250062002202101,45.414211401329524],[9.249847424105136,45.41410095867734],[9.249788681891765,45.4140678639109],[9.249603602740155,45.41396359413529],[9.248748766551655,45.413495697871085],[9.248576149508537,45.41339970733553],[9.2484091655559,45.41330585556737],[9.248302890720353,45.413248029210074],[9.248134864820672,45.41314949872637],[9.248059293567687,45.413104711134864],[9.24790767365758,45.413016937056376],[9.247791640156974,45.412948330046405],[9.247644874740008,45.41286287638575],[9.247590608174685,45.412835675515836],[9.247485620791347,45.41277962782522],[9.247303570293255,45.412685113944825],[9.247282823474606,45.41267509556577],[9.247134556050058,45.41259361397987],[9.24681651272792,45.412424413870816],[9.246622080712708,45.412462142848135],[9.246346504796858,45.41251922764315],[9.246236484087287,45.41253092295631],[9.246152379549343,45.41251587411702],[9.246075357156796,45.41248658823368],[9.24602059818206,45.41246640853736],[9.245969434202687,45.41244712119436],[9.245955629106335,45.41244346942903],[9.245789136482449,45.41239943387537],[9.245766887164633,45.41239354995639],[9.24570526126592,45.41237824546007],[9.245599936470166,45.412411910771276],[9.245383138221543,45.41247599589288],[9.245154374133989,45.41254517387169],[9.245004753483391,45.41259049998497],[9.2449518763149,45.412606518189094],[9.24476057676714,45.41266278856465],[9.244676660754644,45.412688450231926],[9.244578484850479,45.41271762575758],[9.244563934593687,45.41272195039626],[9.244306074844092,45.41279841676749],[9.244059455844477,45.41287377843867],[9.243985734587636,45.41289579939992],[9.243955582629141,45.412903676671704],[9.243657467717966,45.412492727606754],[9.24364819103752,45.41247816557792],[9.243618848141667,45.412436318934304],[9.243589496711039,45.412392474055665],[9.243548803540236,45.412332289310335],[9.24351996733897,45.41228936142868],[9.243489303739652,45.412240487699],[9.243436805803244,45.41216917567146],[9.243392755581453,45.4121009060191],[9.24333920932978,45.41202348442499],[9.24327943951097,45.41193114320749],[9.243220737823533,45.41184347125993],[9.2431795135111,45.41177844491163],[9.243119501365433,45.41168609512062],[9.243077001622174,45.41162160250976],[9.243004098635177,45.41150913557365],[9.242932768478331,45.411402795001884],[9.242887451190587,45.41133379874698],[9.242832593308519,45.41125115904826],[9.242766173440748,45.41115433111421],[9.242707196522192,45.41106467923142],[9.242660594544414,45.410996963765704],[9.24259859316387,45.41088132304256],[9.242589909296923,45.410861818058336],[9.242598084335846,45.41085496887916],[9.242606259411282,45.41084812870037],[9.242614357771085,45.41084127968264],[9.24262234088529,45.41083437690212],[9.242630208753909,45.410827420358906],[9.242638025349887,45.410820427919425],[9.242645931051856,45.410813354280435],[9.242653709190918,45.410806334918085],[9.24266146161573,45.410799279605406],[9.242669188403251,45.41079220634431],[9.242676863956646,45.41078510618807],[9.242684552287294,45.41077800600422],[9.242692215096161,45.41077091487514],[9.242699877903096,45.410763823745455],[9.24270751503429,45.41075670566644],[9.242715075103506,45.41074949773936],[9.242722660536652,45.41074224475238],[9.242730296969038,45.41073496465338],[9.242738048642998,45.41072773831591],[9.242745825911825,45.410720520924706],[9.242753539475377,45.41071334867373],[9.24276129122044,45.41070614033671],[9.242769043040546,45.41069895000124],[9.242776769338871,45.41069176872054],[9.242784495673751,45.41068459644026],[9.242792209227526,45.41067742418664],[9.24279993567404,45.41067027890842],[9.242807726168436,45.41066316949814],[9.242815529362995,45.41065604205816],[9.242823307112847,45.41064894167497],[9.24283103355157,45.41064179639464],[9.242838785469594,45.41063463305749],[9.242846550049245,45.41062744268953],[9.242854302001875,45.41062028835234],[9.242862104799457,45.41061307089888],[9.24286997156781,45.41060587131127],[9.242877928019295,45.410598725539295],[9.242885859026083,45.41059160682411],[9.242893777444378,45.41058453314068],[9.242901721418967,45.410577459402376],[9.242909652650976,45.41057039469174],[9.242917519946813,45.41056332111514],[9.24292538716362,45.41055622953605],[9.242933267119056,45.41054912892813],[9.242941172592241,45.410542019264405],[9.242949090842565,45.41053490957297],[9.242957034880378,45.410527853832875],[9.242965004320297,45.410520762033826],[9.242972448581005,45.410513383314346],[9.243095770695541,45.41040955453267],[9.243103765582557,45.41040244466749],[9.243111799229036,45.41039543373152],[9.243120050349468,45.41038847633941],[9.243128416865344,45.410381608712484],[9.243136732417105,45.410374777197696],[9.243145086149848,45.41036790959671],[9.243153427178623,45.41036106002431],[9.243161742724352,45.410354228507686],[9.243170058190934,45.41034737898841],[9.243178386396018,45.410340520440336],[9.243186701935725,45.410333688921874],[9.24319503013678,45.41032683037256],[9.243203422308364,45.41031998968885],[9.243211839997489,45.41031313994913],[9.243220308878032,45.41030630810218],[9.243228752507038,45.41029954831711],[9.243237259720722,45.41029271638732],[9.24324585657876,45.410285929271815],[9.243254581534085,45.41027921389211],[9.243263459604634,45.41027244417942],[9.243272248528296,45.41026574666447],[9.243281037411293,45.410259040147864],[9.243289915900004,45.41025236944439],[9.243299012248109,45.41024584229455],[9.243308095853655,45.4102393241722],[9.243317268678938,45.41023275185267],[9.243326378147165,45.41022630568269],[9.24333546193941,45.41021983256328],[9.243344558431444,45.4102133414139],[9.243353757424003,45.41020691305346],[9.243363135822989,45.410200601325016],[9.243372679922878,45.41019419023099],[9.243382148041213,45.41018794131779],[9.243391693140584,45.41018176424886],[9.243401328038649,45.410175667998026],[9.243410937415161,45.41016958080176],[9.243497089731589,45.410117839080556],[9.243529459457278,45.41009107287805],[9.243538406971277,45.410073699689825],[9.243541951814247,45.41005700408655],[9.243532528267313,45.4100378967949],[9.243523713548662,45.41002963454225],[9.243521416835305,45.41002747916599],[9.243510818692084,45.41001755550416],[9.243500786884287,45.41000857575213],[9.243491975650802,45.41000112358939],[9.24348347231294,45.4099939498049],[9.243475263628032,45.40998694641361],[9.243467132082564,45.40998005087087],[9.243458974903847,45.409973137379836],[9.243450766456679,45.40996618799293],[9.243442596464345,45.409959265526936],[9.243434298684074,45.40995234333224],[9.243425988242677,45.40994544816727],[9.243417703399894,45.40993856194828],[9.24340946971369,45.40993168462094],[9.243401261587454,45.409924807238596],[9.243393079175613,45.409917965805384],[9.24338497336244,45.40991110620638],[9.24337682886686,45.40990416567909],[9.243368761355972,45.409897296996306],[9.243360693808446,45.409890419311914],[9.243352549357413,45.40988348778391],[9.243344481775221,45.40987660109731],[9.243336426549396,45.40986961537164],[9.243328537413625,45.40986262029099],[9.243320635500828,45.40985562523691],[9.243312669502169,45.40984858531312],[9.243304767554696,45.40984158125687],[9.243296814338944,45.40983454130475],[9.24328889957784,45.4098275282736],[9.24328098485728,45.40982052424289],[9.243273069868577,45.40981345720445],[9.243265244411736,45.40980640797722],[9.24325741891827,45.409799349748425],[9.243249554974126,45.409792264597556],[9.243241729523149,45.409785215368686],[9.243233904074119,45.409778166139276],[9.243226065578027,45.40977105392931],[9.243218278392606,45.409763986615225],[9.243210567728513,45.409756883133454],[9.2432028439788,45.40974970767014],[9.243195197174748,45.409742595050396],[9.243187563151562,45.409735482403],[9.243179852186632,45.40972830691086],[9.24317223098481,45.40972120323628],[9.243164788304373,45.40971400917056],[9.24315730682619,45.409706707173484],[9.243149915072458,45.40969946799297],[9.243142497724183,45.40969221986526],[9.243135016251754,45.409684917866706],[9.243127586051232,45.4096776517631],[9.2431201557755,45.40967036765696],[9.243112699828137,45.4096630566015],[9.24310526959479,45.40965578149541],[9.243097915959789,45.40964848822377],[9.243090600277874,45.40964110485989],[9.243083323204537,45.40963378442126],[9.243076007487874,45.409626392055415],[9.243068819677967,45.40961902642057],[9.243061631869937,45.40961166078531],[9.243054392716802,45.409604241252026],[9.243047192095059,45.40959686664192],[9.243039978619185,45.40958947405646],[9.243032790471727,45.409582027410075],[9.2430256662207,45.40957458062748],[9.243018554634808,45.40956710681414],[9.24301144301226,45.409559623999314],[9.243004318651234,45.40955215021225],[9.242997194214997,45.40954465842266],[9.24299008263663,45.409537184607515],[9.242982932569289,45.40952967486925],[9.242975782465304,45.40952215612946],[9.242968645373338,45.40951469136825],[9.242961457283293,45.40950725371827],[9.242954205146544,45.409499780199404],[9.242946991541038,45.409492351603795],[9.242939752186988,45.409484878056844],[9.242932538585286,45.40947744946028],[9.242925299273582,45.409469984913386],[9.242918085675672,45.409462556315916],[9.242910846367778,45.409455091768116],[9.242903632773663,45.40944766316966],[9.24289641918145,45.40944023457076],[9.24288916713891,45.40943277904967],[9.242881902512034,45.40942536856041],[9.24287461217522,45.40941792212085],[9.242867360331024,45.409410511603525],[9.242860108488728,45.40940310108571],[9.242852805340265,45.409395645670834],[9.242845553501779,45.40938823515206],[9.242838224760892,45.40938077078939],[9.242830896368591,45.40937338743554],[9.24282350373726,45.40936592320758],[9.242816162608449,45.40935854888092],[9.242808616788743,45.409351120981626],[9.242801032480399,45.409343657159084],[9.242793576617274,45.40933634608223],[9.242786017639546,45.40932882819826],[9.242778445730941,45.40932127433676],[9.242771053613911,45.4093139271187],[9.242763150190832,45.40930654498089],[9.242754979145602,45.40929933443158],[9.242746859371847,45.40929215977733],[9.242738459274115,45.40928517474068],[9.24273007195729,45.40927818967632],[9.242721248776007,45.40927088149629],[9.242711658096724,45.409263394921936],[9.24270178801785,45.409256313989616],[9.24269188126017,45.40924962018196],[9.242682180698331,45.40924333098587],[9.242672173292686,45.409237006435575],[9.242661809967954,45.40923112369383],[9.242651139799491,45.40922520559766],[9.242639919527845,45.40921914464968],[9.24262755251217,45.409213869229674],[9.242615211171898,45.40920862075718],[9.242603421747617,45.40920393818268],[9.242590879144192,45.40919943722657],[9.242578976715157,45.40919522294691],[9.242566998153594,45.40919113484304],[9.24255470200833,45.40918748846575],[9.242542355095594,45.40918392320477],[9.242529957299924,45.40918041205704],[9.242517432640783,45.409177117203555],[9.242505445347378,45.40917397422826],[9.24249294632563,45.40917069731994],[9.24248046050721,45.4091675193945],[9.242445854197419,45.40915832160878],[9.242273520690071,45.40911715563931],[9.242261266066924,45.40911424723346],[9.242249024377523,45.40911137480335],[9.242236744352946,45.40910850245314],[9.242224515598503,45.40910566599746],[9.242212299739336,45.4091028565165],[9.242200096698584,45.40910005600817],[9.241906858603205,45.40902804659751],[9.24189487141333,45.40902491255896],[9.241882897003558,45.40902177849213],[9.241871012084959,45.409018653235904],[9.241859024860673,45.40901551019259],[9.241847050454863,45.409012376121986],[9.241835178203916,45.40900922383191],[9.241823229166522,45.40900604469962],[9.241811356879865,45.40900288340604],[9.241799471202109,45.408999578121765],[9.241787585525746,45.408996272836255],[9.24177577660013,45.4089929853895],[9.241763890888173,45.40898967110046],[9.24175208188861,45.408986365649184],[9.2417402215836,45.40898301529953],[9.24172842521221,45.40897967381467],[9.241716616063432,45.408976332355614],[9.241704768503045,45.40897297297426],[9.241692946578274,45.408969631539726],[9.241681099020688,45.408966272155915],[9.241669289839146,45.40896292169086],[9.24165746784189,45.40895956225061],[9.241645620173514,45.40895617586],[9.241633810919506,45.40895280738922],[9.241622014407351,45.40894942988922],[9.241610166781516,45.408946052495935],[9.241598357493395,45.408942675020484],[9.241586586428017,45.408939270459726],[9.241574814942586,45.40893576688642],[9.241563081833215,45.40893227223195],[9.241551361542358,45.40892878655033],[9.241539602763407,45.408925264944315],[9.241527907841423,45.4089217342012],[9.241516225699653,45.40891820342984],[9.241504492367676,45.40891465476317],[9.24149281022882,45.40891112398941],[9.241481153648929,45.40890759316055],[9.241469484330025,45.40890407135843],[9.24145773822513,45.40890052271393],[9.241446094466646,45.408897000855454],[9.241434450633024,45.40889346099378],[9.241422832205192,45.408889885072846],[9.241411201000068,45.40888630917764],[9.241399493009014,45.40888270644004],[9.24138786184512,45.40887913954351],[9.24137623064439,45.40887556364475],[9.241364586628102,45.40887197877078],[9.24135294265155,45.408868402896616],[9.241341221850854,45.40886479117895],[9.241329666677794,45.40886106209612],[9.241318111429699,45.40885731501014],[9.241306568923601,45.40885355889495],[9.241295013678547,45.40884981180657],[9.241283458396758,45.408846055715955],[9.241271851963246,45.408842290731044],[9.24126028390577,45.40883853466507],[9.241248741330782,45.408834760541936],[9.241237198642542,45.40883095941455],[9.241225655955848,45.40882715828602],[9.241214100530216,45.408823366184265],[9.241202519472132,45.408819556133196],[9.241190964011334,45.40881575502807],[9.241179408552082,45.40881195392172],[9.241167840315642,45.408808152841246],[9.24115625926376,45.40880434278544],[9.241144703770908,45.40880053267458],[9.241133161096583,45.408796731536626],[9.241121605645064,45.408792930424454],[9.241110037339878,45.408789111335935],[9.241098494708442,45.40878531919558],[9.241087015628043,45.40878144591],[9.241075574808939,45.40877755454044],[9.241064057242559,45.40877364532925],[9.241052616464831,45.408769762958386],[9.241041226459503,45.40876579946942],[9.241029849196261,45.4087618269513],[9.241018459117655,45.40875784545799],[9.241007069002423,45.40875385496251],[9.240995653331344,45.40874986451971],[9.240984237661864,45.408745874075734],[9.240972834619837,45.40874184759963],[9.240961482465005,45.40873776700847],[9.240950155869244,45.40873368636238],[9.240938842130259,45.40872962369028],[9.24092756672905,45.40872556093631],[9.240916329742038,45.40872151610255],[9.240905296337282,45.408717263813344],[9.240894646181063,45.40871298371259],[9.24088393113951,45.40870846971861],[9.240873446574977,45.408704063251584],[9.240862923484919,45.40869961185919],[9.240852476839576,45.40869510629817],[9.240842323571469,45.40869047410291],[9.240832336237268,45.40868579655184],[9.24082261603534,45.4086808304019],[9.240812857460783,45.40867585533077],[9.240802893359227,45.40867062866045],[9.240793363773694,45.408665410075585],[9.240783807028533,45.4086598135005],[9.240774557165082,45.40865426128413],[9.240765025522807,45.408648556641246],[9.24075585126604,45.40864275223312],[9.240746586720206,45.40863674998981],[9.240737539643291,45.40863080129473],[9.240728351658992,45.40862477188547],[9.240719407006369,45.40861886797897],[9.240710346660157,45.4086128022952],[9.240701988494976,45.40860658211418],[9.24069366740791,45.40860006481785],[9.240685359101446,45.40859354749402],[9.240677307210474,45.40858722765449],[9.24066933046654,45.40858054761178],[9.240661736130793,45.40857364173619],[9.24065438554613,45.40856696037503],[9.240646778397174,45.40856004552425],[9.240639145616385,45.40855311272469],[9.240631525387153,45.40854612589152],[9.240624262008655,45.408538913279386],[9.24061707488427,45.40853160149411],[9.24060984931123,45.40852426278594],[9.240602598030078,45.408516888126925],[9.240595269773515,45.40850944162046],[9.240587928702045,45.40850198613935],[9.240580804335654,45.408494404186435],[9.24057355252792,45.408486903511104],[9.240566326393905,45.40847942978462],[9.240559177315308,45.40847204590674],[9.240552271223896,45.40846470652295],[9.240545479341026,45.408457177875185],[9.240538738383838,45.40844960411438],[9.24053195897803,45.408442003430686],[9.24052516668095,45.408434375770334],[9.24051833585901,45.40842670318506],[9.2405113768328,45.40841893185667],[9.240504290517904,45.40841127780998],[9.240502121084855,45.408408960084756],[9.240497089273383,45.40840364200666],[9.240489811435225,45.40839602436617],[9.240482508003586,45.40838839777791],[9.240468555067082,45.408376680661945],[9.240408716628165,45.408326454228465],[9.240391993701861,45.40831242063817],[9.240382271696257,45.40830700439865],[9.240353810230213,45.40829115924467],[9.240304062100526,45.408269913133694],[9.240289192397533,45.4082921591154],[9.240271630572053,45.408318416244725],[9.24026614488234,45.408326618779235],[9.240254842802752,45.408346408959915],[9.240243045372464,45.40836389589528],[9.24023909218671,45.40836583943723],[9.240235496078641,45.408367611207936],[9.240222890800757,45.40836934789295],[9.240210168457018,45.40837059876246],[9.240197433143592,45.408371804652205],[9.240184671853296,45.40837291158284],[9.240171936729256,45.408374162474914],[9.24015921438329,45.40837541333874],[9.240147296234687,45.40840363884338],[9.240135428579508,45.408431720222936],[9.240122663445732,45.408434942415845],[9.239547414525772,45.40858028337411],[9.239533145176377,45.40858136638685],[9.239514532401968,45.40858277353174],[9.239462627875941,45.408583476279546],[9.239445013811594,45.40858534938008],[9.239434198673566,45.40859039463945],[9.239423498731707,45.40859548466223],[9.239412773268507,45.408600583738526],[9.239401805501805,45.40860580033539],[9.239391645182895,45.408611582311316],[9.23938228105173,45.408618289734456],[9.23937299336274,45.40862494299023],[9.239364486387108,45.408631882646986],[9.239356221901017,45.408638749786824],[9.239348084858293,45.40864553564936],[9.239339409931258,45.40865204360235],[9.239330619690211,45.40865847978712],[9.239321829447164,45.40866491597116],[9.23931312888082,45.40867140597358],[9.23930442865408,45.40867797698459],[9.239295741279935,45.40868456597026],[9.239287041125072,45.40869115498206],[9.239278353708942,45.40869773496534],[9.239269666290795,45.40870431494802],[9.239260978870632,45.40871089493003],[9.239252240105888,45.408717421012064],[9.239243475705807,45.40872392914486],[9.239234711303714,45.40873043727698],[9.239225703307063,45.40873675689454],[9.239216567065862,45.40874296876624],[9.239207302618059,45.40874908189313],[9.239197896805548,45.40875500629154],[9.239188401729653,45.408760975881364],[9.239178881208103,45.40876697252696],[9.2391693992104,45.408773014096795],[9.239159930027334,45.40877906464009],[9.239150448101448,45.40878512421038],[9.23914099188272,45.40879121973055],[9.239131561143578,45.40879729719445],[9.239122092179977,45.408803401740826],[9.23911261043559,45.408809506313105],[9.239103192469099,45.40881558374794],[9.239093697979822,45.40882169734642],[9.239084356947183,45.40882783762664],[9.239075157350852,45.40883418463603],[9.23906597053121,45.40884053161797],[9.239057180646949,45.408847066792895],[9.239048339835232,45.408853647079155],[9.239039549984813,45.40886019125378],[9.2390307346886,45.40886676248419],[9.239021944796207,45.40887329765642],[9.239013129457994,45.408879859884415],[9.239004352529843,45.40888644003377],[9.238995665126769,45.40889303799754],[9.23898695227787,45.40889966301717],[9.238978264870742,45.4089062609796],[9.238969526346544,45.4089128590482],[9.238960800523271,45.408919439087335],[9.238952036437476,45.408926037207976],[9.238943285128407,45.40893263530126],[9.238934546520275,45.40893921536508],[9.23892578246626,45.40894582248473],[9.238917031340549,45.40895246558111],[9.238908651820328,45.40895935093067],[9.238900784699506,45.40896653224603],[9.23889291757669,45.408973713560876],[9.238885075971554,45.408980885820746],[9.238877298447772,45.40898810295179],[9.238869597746246,45.40899535592629],[9.23886188433974,45.40900262692908],[9.23885400545108,45.40901005129571],[9.23884612656035,45.409017475661784],[9.238840835119753,45.40902635280448],[9.2388364758474,45.409035065980554],[9.238832333813194,45.4090437787028],[9.238828331700502,45.40905233811391],[9.238824354954804,45.40906085246634],[9.238820378132163,45.40906934881652],[9.238816414011374,45.409077827137835],[9.23881241189389,45.40908638654833],[9.23880839669339,45.409094873977104],[9.238802538995243,45.409102807183544],[9.238796335585887,45.409110579091426],[9.23879013213696,45.40911834199788],[9.238783941503025,45.40912611387841],[9.238777763494722,45.40913384972779],[9.2387715345967,45.409141639689715],[9.238765305242524,45.409149321638914],[9.238759075924529,45.40915701258878],[9.238751105504384,45.409163951079236],[9.238742596932846,45.40917054865019],[9.2387340246924,45.409177200360034],[9.238725503792425,45.40918390596873],[9.2387170085238,45.40919062952555],[9.238708500512205,45.40919736210941],[9.23869999246073,45.409204085691606],[9.238691497261778,45.409210827248515],[9.238683053214,45.4092175776992],[9.23867460923992,45.40922434615133],[9.238666178080507,45.409231123577165],[9.23865779811014,45.40923791889782],[9.238649418137758,45.40924471421786],[9.238641038201221,45.409251518538255],[9.238632722308276,45.409258358728906],[9.238624483237782,45.40926523476313],[9.238616231386438,45.40927211082335],[9.238607992311938,45.40927898685638],[9.238599740456594,45.40928586291543],[9.23859151415695,45.40929273892062],[9.238583275038609,45.40929960595075],[9.23857498476503,45.40930646408593],[9.238566719933631,45.4093132951641],[9.238558455138083,45.40932013524267],[9.238550203043726,45.409326957291945],[9.238541950947383,45.409333779340585],[9.238533237561578,45.40934030531399],[9.238523639292266,45.40934608603984],[9.238513977278,45.409351902902266],[9.238504366263715,45.4093576926542],[9.238494729651919,45.40936347345754],[9.238485067593892,45.409369281316444],[9.238475392490248,45.40937502619399],[9.238465025018508,45.409380223446426],[9.238454400946297,45.409385178202925],[9.2384437513523,45.409390142012676],[9.238433101756433,45.409395105821496],[9.23842243941764,45.40940007865695],[9.238411802748164,45.40940507844123],[9.23840128157826,45.40941019499825],[9.238390760368642,45.40941530255322],[9.238380226302631,45.40942039213182],[9.23836970497579,45.4094254726818],[9.23835918364707,45.40943055323078],[9.23834864957538,45.40943564280647],[9.23833797417803,45.40944055265344],[9.23832726025317,45.40944541757416],[9.238316546326473,45.409450282493815],[9.238305806877959,45.40945515646685],[9.238295080206479,45.409460030412156],[9.238284340754262,45.40946490438312],[9.238273601337989,45.40946978735412],[9.238262861882074,45.40947466132304],[9.238252161025503,45.409479598218326],[9.238241485762641,45.40948454406041],[9.238230810497917,45.409489489901524],[9.23822014801022,45.40949443571498],[9.238209472779545,45.40949939055512],[9.23819878461698,45.40950430941673],[9.238188083560326,45.40950920130086],[9.238177344127346,45.40951408426281],[9.238166540382473,45.409518868345394],[9.238155723894646,45.40952366145465],[9.238144920183894,45.409528454536215],[9.238134103692406,45.409533247643395],[9.23812328719909,45.409538040749574],[9.238112470703939,45.409542833854715],[9.238101654206947,45.40954762695879],[9.238090850524806,45.4095524290363],[9.238080085328603,45.40955726703713],[9.238069320168323,45.409562114037975],[9.238058555006193,45.409566961037804],[9.238047815324533,45.40957178998134],[9.238037050158725,45.409576636979146],[9.238026195198884,45.40958140315279],[9.238015365568545,45.40958611526604],[9.238004433478565,45.40959077358482],[9.237993437190202,45.40959536002718],[9.23798244090006,45.40959994646855],[9.237971444608137,45.4096045329088],[9.23796048657571,45.40960910126624],[9.237949490280224,45.40961368770437],[9.237938506761886,45.40961827411493],[9.23792751046284,45.409622860550975],[9.237916411440034,45.40962733018519],[9.237905299561088,45.40963178184287],[9.23789418768039,45.40963623349946],[9.237335643537417,45.409859793187024],[9.237327429250243,45.40985431955398],[9.237282269942893,45.40982423252369],[9.237008196863327,45.40970180958221],[9.236924890208417,45.409665077616886],[9.236884894385419,45.40964732925534],[9.23681581115784,45.40962902002759],[9.23677001638144,45.40961497408622],[9.23672258086821,45.4096058461277],[9.236685125706497,45.40959669749864],[9.236659304514378,45.40958875793961],[9.2366260127486,45.40957898860166],[9.236586032427143,45.40956492155692],[9.236574357501366,45.40955388334032],[9.236549277228802,45.40952441157],[9.236468257999592,45.40943540509659],[9.236444944122193,45.40942807238091],[9.236412498533443,45.409425070065836],[9.23639473075832,45.40942694301337],[9.236370946752832,45.40942945846816],[9.236275353105505,45.409437036876845],[9.236263749951997,45.409446286981165],[9.236247980877135,45.409455545688544],[9.236291939033947,45.40962703403962],[9.23628942308444,45.40962739928131],[9.236255835003567,45.40963239226704],[9.236143105296103,45.40961563995381],[9.23613953697988,45.4096149272316],[9.236056378243696,45.409570579388394],[9.236011961672125,45.40954372171994],[9.235896641567784,45.409472472789616],[9.23589253359446,45.409471050084974],[9.235813927736178,45.40944898842348],[9.23567819799172,45.40941109445248],[9.235674874025431,45.40941075025779],[9.235624503081803,45.409405516370306],[9.235596841667476,45.40939750835257],[9.23556510753633,45.40939040882652],[9.235479845656949,45.40936872968745],[9.235452901554932,45.40935495944788],[9.2353514854248,45.40932361926848],[9.235333803504473,45.409318462007555],[9.23532587617081,45.40931740718461],[9.235231710559733,45.40929953564457],[9.235208167640893,45.40929547055019],[9.235185406473503,45.40929194391024],[9.235138107825328,45.409287963646655],[9.235007197145706,45.40927489303316],[9.234991327487762,45.409272243305594],[9.234877967824733,45.40924813713007],[9.234866681314491,45.40924439784094],[9.234828268764117,45.40923228020194],[9.234765987477605,45.409208366079675],[9.234759849243714,45.409207316546606],[9.234692268153097,45.40919349450418],[9.234686658283668,45.40919351501518],[9.234516856577171,45.40920396251602],[9.234499465574023,45.40920114481801],[9.23443905414628,45.409187469947256],[9.234382744825231,45.409173804641505],[9.23432383930589,45.40915653518115],[9.234312050759936,45.409151896754565],[9.234246394273217,45.409121337442095],[9.234210213286474,45.409132788932524],[9.23420533939379,45.40913154775753],[9.234182837644418,45.40912892049755],[9.234168912711027,45.40912681574191],[9.234108136679538,45.40911765099859],[9.234102268233535,45.409116942920164],[9.234028156096675,45.40911520433945],[9.234019986797396,45.4091143389442],[9.233949959559764,45.409108442443724],[9.23390763216115,45.40910136412221],[9.233860890705744,45.40909298964845],[9.233807103372486,45.409086573797346],[9.233756821572713,45.409074948115475],[9.233688904408233,45.40906010003932],[9.233645655473492,45.409046443691686],[9.233625876209093,45.40903462962856],[9.233590434661407,45.40901152415022],[9.233566029720315,45.40899666814625],[9.233523684011727,45.4089726856344],[9.233476215604808,45.408949091609436],[9.233441854612167,45.408933904856326],[9.233402608675707,45.40891477657298],[9.23338462445758,45.40890439898271],[9.233353812469963,45.40888523547217],[9.233309614446942,45.40885514490522],[9.233256413307858,45.40881716970518],[9.233240011993672,45.40880948019625],[9.2332158844991,45.40879679281886],[9.23320640361515,45.40879393179291],[9.23320050673441,45.408792512638335],[9.233172548058253,45.40877731275133],[9.233143797818078,45.40876228549183],[9.233061656763427,45.40871593514106],[9.232922284755027,45.408639727582525],[9.232583242905537,45.408454013444924],[9.232342262895633,45.40832341998752],[9.232219022054489,45.40825718803537],[9.231972451564824,45.4081246699033],[9.23162398438434,45.407941870373556],[9.231456393001352,45.40785117235649],[9.231375224019462,45.40792035709378],[9.2313721908348,45.407922352474735],[9.231256690002658,45.40798013014639],[9.231239597496756,45.40798144285842],[9.231122396122721,45.4079888356071],[9.231110403027163,45.4079903270197],[9.231085392973185,45.407992924861624],[9.231029499152074,45.4079992215268],[9.231020555658985,45.407999608635045],[9.230931145945389,45.40800025722987],[9.230782464412538,45.40799983720525],[9.23057962834614,45.407999778192575],[9.230434030761906,45.40800041362912],[9.230418182526922,45.40799975246815],[9.23033077282266,45.40799571598617],[9.230130655988509,45.40798555145325],[9.229873832367678,45.4079734302839],[9.229645868445674,45.40796263677424],[9.229611358510795,45.40796077081092],[9.22957687151485,45.40796141610139],[9.229516511690337,45.40795988102076],[9.229422605573838,45.407957774115026],[9.22920669353435,45.40795367038629],[9.228924327191564,45.40794825008135],[9.228523138582574,45.40794124829121],[9.228247427778399,45.40793526394885],[9.228239503664028,45.407934928716365],[9.228059109654993,45.407938672923876],[9.227883825669538,45.407942064624464],[9.227799754082403,45.407932312850484],[9.227796428046132,45.40793141936271],[9.227622591500163,45.40787194401368],[9.227616189921367,45.40786888737248],[9.22719358987146,45.40768432256962],[9.226926170225958,45.40756558863805],[9.226919516064758,45.407563261548816],[9.226659764197807,45.40743800397571],[9.226657199163768,45.40743566876878],[9.226515570396407,45.40733536186861],[9.226489633388066,45.4073169969481],[9.22648811856706,45.407315253731404],[9.226477878080155,45.40732043164402],[9.226467612070456,45.40732561860738],[9.22645721852609,45.40733086883004],[9.226446926991684,45.40733606484313],[9.226436635491293,45.40734126985638],[9.226426164911572,45.40734643021753],[9.226415668198594,45.40735144661168],[9.226405056118894,45.407356373222065],[9.226394392995454,45.4073613179347],[9.226383768133623,45.407366244568365],[9.226373117748993,45.407371180252696],[9.226362441877441,45.407376133988684],[9.226351765968133,45.40738107872259],[9.22634106457188,45.40738604150819],[9.22633040147315,45.4073909952159],[9.226319687402395,45.407395985027854],[9.22630896065898,45.407401001867285],[9.226298208464462,45.40740604575935],[9.22628757109452,45.40741104441771],[9.226276793411076,45.40741610636037],[9.22626597749804,45.40742119538099],[9.226255352900843,45.407426194011066],[9.226244498684506,45.407431292106516],[9.226233631723654,45.407436399227265],[9.226222752018273,45.407441515373286],[9.22621219162854,45.407446594882344],[9.226201927688097,45.407452312883244],[9.226191676488154,45.40745802185688],[9.226181425286153,45.40746373082963],[9.22617140359203,45.40746931333209],[9.226161177906977,45.407475013251414],[9.226150952148133,45.4074806951678],[9.226140751944149,45.40748637703269],[9.226130730242007,45.40749195953157],[9.226120619734171,45.40749770422515],[9.226110522110316,45.40750347589569],[9.226100602952547,45.40750913919924],[9.226090518067222,45.40751490184173],[9.226080471658639,45.40752070041168],[9.22607057909147,45.40752662469233],[9.226060699300705,45.407532548946854],[9.226050959712492,45.407538382912335],[9.226041067139155,45.40754430719044],[9.226031174563737,45.40755023146763],[9.226021282022103,45.40755616474503],[9.2260114535858,45.40756215190159],[9.226001766212383,45.40756826479416],[9.225992091615359,45.407574377660694],[9.225982493973786,45.40758056238327],[9.22597302454492,45.40758685486508],[9.225963567820758,45.40759312931881],[9.225954111130333,45.4075994127728],[9.225944654401982,45.407605687224915],[9.225935210450011,45.40761196165104],[9.22592576646013,45.40761822707533],[9.22591652746132,45.40762462711069],[9.225907429453684,45.40763113488021],[9.225898344222445,45.40763764262375],[9.22588924624646,45.40764415939287],[9.225880135489883,45.407650676186464],[9.225871101724552,45.40765727383733],[9.225862298722198,45.4076640600552],[9.225853482975056,45.40767085529866],[9.22584465448312,45.40767765956771],[9.225835800467886,45.40768447288756],[9.225827446101292,45.407691609260404],[9.22581950161157,45.40769898785351],[9.225811569826659,45.40770634841877],[9.225803650782396,45.4077136999572],[9.225795629901908,45.407721150708326],[9.225787787238096,45.40772843008596],[9.225779854836256,45.40773563763128],[9.225772011989404,45.40774287200266],[9.2257642202904,45.40775011527363],[9.225756428589403,45.40775735854408],[9.225748649664933,45.40776460178874],[9.225740857959964,45.40777184505809],[9.225733066324596,45.40777910632899],[9.225725261872915,45.40778635862356],[9.225717444712302,45.407793628944816],[9.225709870842792,45.40780102480113],[9.225702527450093,45.40780853721658],[9.225695184019655,45.4078160406306],[9.225687840587275,45.4078235440441],[9.225680509859902,45.40783102942983],[9.225673204651878,45.40783850576361],[9.225665899370348,45.40784596409484],[9.225658645022119,45.40785337731955],[9.225651390815122,45.40786082654797],[9.225644174977633,45.40786828470135],[9.225636971809436,45.407875715825945],[9.225629768675132,45.407883155951104],[9.225622578317491,45.40789059605059],[9.225615387922176,45.40789802714862],[9.225608184782212,45.40790546727239],[9.225601007090129,45.40791288034219],[9.225593803946387,45.407920320465074],[9.225586638993324,45.40792772450767],[9.225579423031489,45.40793515565379],[9.225572206817352,45.40794252379216],[9.225564939630193,45.40794992803501],[9.225557723376527,45.40795728717139],[9.225550456185589,45.407964691413305],[9.225543188992757,45.40797209565472],[9.22553597273345,45.407979454789746],[9.225528718315397,45.40798685900507],[9.225521451116892,45.40799426324512],[9.225514234816172,45.40800161337764],[9.225506980428214,45.40800902659262],[9.225499648866265,45.4080163139437],[9.225492189623951,45.40802362854927],[9.225484730343956,45.408030934153366],[9.225477334776144,45.40803819462577],[9.225469875492324,45.408045500228816],[9.225462416206579,45.408052805831424],[9.225455020633058,45.40806006630242],[9.225447561343488,45.408067371903996],[9.225440102087745,45.408074686506176],[9.225432693694177,45.40808193799979],[9.225425080734025,45.40808916289273],[9.225417365006969,45.408096252970985],[9.225409585635255,45.40810340618188],[9.225401819004421,45.40811055036608],[9.225394103271553,45.40811764044272],[9.225386323893973,45.40812479365207],[9.225378557257283,45.40813193783463],[9.225370854297191,45.40813902788453],[9.225363100506687,45.40814619004291],[9.225355448728626,45.40815329799318],[9.225347720527179,45.4081604691012],[9.225339992323772,45.408167640208724],[9.225332340504185,45.40817473915633],[9.225324612296895,45.408181910262826],[9.22531697325207,45.40818900918427],[9.225309245040888,45.408196180289664],[9.225301605956489,45.408203270209036],[9.225293788076725,45.4082103874833],[9.225285931251763,45.40821735181487],[9.225277985296065,45.40822439733139],[9.22527015395302,45.40823134360942],[9.225262208029132,45.40823839812588],[9.225254376646497,45.40824533540179],[9.22524655804057,45.408252272652],[9.22523852244609,45.408259273336704],[9.225230511728228,45.40826610295071],[9.225222513751344,45.40827292353797],[9.225214515808249,45.4082797531257],[9.225206505048877,45.408286573736966],[9.225198110821356,45.40829336809926],[9.225189805470881,45.4083000182682],[9.225181487375533,45.408306677462676],[9.225173182056864,45.408313336631394],[9.225164863957605,45.40831999582469],[9.225156545856397,45.408326655017376],[9.225148227788933,45.40833332321047],[9.225139896940865,45.40833999142813],[9.225131399575684,45.40834656096065],[9.225122851058224,45.408353121592064],[9.225114302538778,45.40835968222288],[9.225105728531458,45.408366260905396],[9.225097141814881,45.40837285761448],[9.225088350209457,45.40837934671275],[9.225079404865491,45.408385737100595],[9.225070434033563,45.408392145540134],[9.22506148872125,45.40839854492759],[9.225052543442603,45.40840495331542],[9.22504357260461,45.408411361752805],[9.225034627321916,45.40841777013922],[9.225025656515552,45.40842418757622],[9.225016711193117,45.408430586960215],[9.225007753089994,45.4084369863686],[9.224998782277547,45.408443403803496],[9.224989824241739,45.40844982121255],[9.224980878911214,45.40845622059369],[9.224971908057002,45.40846262902543],[9.22496296272243,45.40846902840517],[9.224954004642841,45.40847543681035],[9.22494505930423,45.40848183618868],[9.22493610122059,45.40848824459244],[9.224927168620942,45.40849463494319],[9.224918197754576,45.4085010433707],[9.224909265150897,45.40850743372003],[9.224900307059162,45.408513842120996],[9.224891323408032,45.40852025057149],[9.224882326690862,45.40852658703809],[9.224873266113889,45.40853293263062],[9.224864256542682,45.408539251118825],[9.224855195961661,45.40854559670991],[9.224846186386413,45.40855191519667],[9.224837125801349,45.4085582607863],[9.224828065214252,45.408564606375215],[9.224819055632961,45.408570924859816],[9.224809995041825,45.408577270447296],[9.224800985420847,45.40858357992947],[9.224791924825661,45.40858992551549],[9.224782915236315,45.40859624399724],[9.224773854637073,45.40860258958184],[9.224764845008055,45.4086088990611],[9.224755784440418,45.4086152536453],[9.2247467238351,45.40862159922773],[9.224737714200042,45.40862790870487],[9.224728653626316,45.408634263286885],[9.224719618429802,45.408640572812814],[9.224710532152038,45.40864689143942],[9.224701420065378,45.40865314710825],[9.224692256968723,45.408659429879876],[9.22468314487802,45.40866568554725],[9.22467399455603,45.40867196829229],[9.224664869682577,45.408678223983266],[9.224655719356537,45.40868450672688],[9.224646556249748,45.40869078949482],[9.224637431405855,45.40869705418467],[9.22462826829501,45.408703336951106],[9.224619130703962,45.4087096106656],[9.22460998036779,45.4087158934055],[9.224600829993962,45.40872216714362],[9.22459167965373,45.40872844988204],[9.224582529311473,45.40873473261974],[9.224573378967179,45.40874101535668],[9.224564215842122,45.40874729811801],[9.224555065493774,45.40875358085345],[9.2245459407721,45.40875988154013],[9.224536790455302,45.40876617327518],[9.224527640100858,45.408772456008464],[9.22451848978,45.408778747742026],[9.224509339421502,45.408785030473844],[9.224500189096583,45.40879132220595],[9.224491051512775,45.408797604911186],[9.224481901183793,45.408803896641814],[9.224472750852767,45.40881018837171],[9.224463600484125,45.408816471099875],[9.224454450113448,45.40882275382725],[9.224445312555103,45.408829045529885],[9.224436162180366,45.40883532825575],[9.224427011803606,45.408841610980964],[9.224417874239167,45.40884790268136],[9.224408736601518,45.40885417637897],[9.224399586254261,45.40886046810296],[9.224390448612564,45.4088667417991],[9.224381298225664,45.4088730245206],[9.224372109322509,45.40887926231137],[9.22436290767414,45.40888550912747],[9.224353731545701,45.40889174689167],[9.224344504264574,45.40889797575437],[9.22433528965346,45.40890417758809],[9.22432604955393,45.40891039747331],[9.224316834974351,45.40891660830656],[9.22430763313596,45.40892281011302],[9.224298393030352,45.40892902999595],[9.224289191187928,45.40893523180092],[9.224279976529125,45.40894142462915],[9.224270736453017,45.40894765351088],[9.224261534568972,45.40895384631254],[9.22425231993969,45.40896004813959],[9.224243002900268,45.40896620516106],[9.224233672902221,45.40897231720161],[9.224224330123368,45.40897842926646],[9.224214961820474,45.408984550381646],[9.22420561900203,45.40899065344392],[9.224196276181571,45.4089967565054],[9.224186933359102,45.40900285956613],[9.224177565048128,45.40900898067825],[9.224168235000423,45.409015083712404],[9.224158904915162,45.40902117774475],[9.224149587606698,45.409027271751285],[9.224140283003935,45.40903334772992],[9.224131003921249,45.409039414656725],[9.224121609365234,45.409045364794515],[9.224112112043649,45.40905118011623],[9.224102640206649,45.40905697738505],[9.22409346156956,45.409062594056465],[9.22408409171047,45.40906832811615],[9.224074721778413,45.409074044172996],[9.22406524762398,45.40907925637102],[9.22405548030125,45.40908465816581],[9.224045725933136,45.409090104939914],[9.22403615007576,45.40909545235138],[9.224026306465367,45.409100953305234],[9.224016437402005,45.409106481311404],[9.224006299022253,45.40911176681417],[9.223995981204228,45.4091169176507],[9.22398565064102,45.409122077512365],[9.223975294553808,45.40912724642418],[9.223964925721393,45.40913242436109],[9.223954493135016,45.409137638426344],[9.223944111519966,45.40914281638638],[9.223933729938535,45.40914800334658],[9.223923322833054,45.40915319935682],[9.223912903017844,45.409158413393236],[9.223902483094191,45.40916360042562],[9.223891921997815,45.40916863471442],[9.223881271234676,45.40917361517107],[9.22387064599183,45.40917858657571],[9.22385999522494,45.409183567030404],[9.223849369978367,45.40918853843304],[9.223838731951073,45.40919350985969],[9.223828081178569,45.40919849031139],[9.223817455926383,45.40920346171104],[9.223806805150145,45.40920844216078],[9.223796167115376,45.409213413583494],[9.223785529114227,45.40921839400621],[9.22377489107572,45.40922336542691],[9.223764253035352,45.40922833684664],[9.223753615028592,45.409233317266384],[9.223742900062987,45.409238225826805],[9.22373219783889,45.409243125360156],[9.223721469984275,45.409248006940444],[9.223710742092335,45.40925287951867],[9.223700001455159,45.40925776112188],[9.223689273559522,45.4092626336981],[9.22367853291865,45.409267515299334],[9.223667792275926,45.40927239689955],[9.223657051595886,45.40927726949772],[9.223646323728312,45.4092821510709],[9.223635583080036,45.40928703266809],[9.223624842394436,45.409291905263224],[9.22361410174245,45.40929678685837],[9.223603361088623,45.40930166845252],[9.22359262043293,45.40930655004569],[9.223581879739925,45.40931142263673],[9.22357117759443,45.409316349158146],[9.223560539589593,45.409321338560964],[9.223549901582889,45.40932632796276],[9.22353927642408,45.40933133534069],[9.223528664006817,45.409336333691655],[9.223518038844253,45.40934134106759],[9.22350741364436,45.4093463394415],[9.223496788478048,45.40935134681552],[9.223486176053274,45.4093563451625],[9.223475550883201,45.40936135253448],[9.223464938454677,45.409366350879495],[9.223454313245401,45.40937134924846],[9.223443700813137,45.40937634759155],[9.22343308841443,45.4093813549346],[9.223422488721866,45.409386344249626],[9.223411863540518,45.40939135161574],[9.223401263844215,45.40939634092883],[9.223390664146033,45.40940133024091],[9.22338003895906,45.40940633760402],[9.223369439257146,45.40941132691416],[9.2233588138893,45.409416289270105],[9.22334812444803,45.409421206744575],[9.223337422226004,45.409426124243005],[9.223326681771686,45.4094310688184],[9.22331592864286,45.40943604042088],[9.223305150166828,45.409441066078436],[9.223294116571301,45.4094462092474],[9.223283058442902,45.40945161349536],[9.223272052454876,45.40945727867261],[9.22326098267636,45.4094629709767],[9.223249594414415,45.40946891593222],[9.223238539428309,45.40947512126847],[9.223227867452938,45.40948123584516],[9.223216928959053,45.40948781899854],[9.223172207016919,45.409514981592054],[9.223134087887809,45.4095314019666],[9.223094616376988,45.40954188423355],[9.223075732204562,45.409545953557085],[9.223064496200138,45.409548378763425],[9.223031674969077,45.409550432003506],[9.223014355144667,45.409549349632364],[9.223000844429661,45.40954851186429],[9.222988107853794,45.409546304417],[9.222975523741892,45.40954387164336],[9.222963384029038,45.4095407089123],[9.22295180605957,45.40953741006849],[9.222941645950264,45.40953395544143],[9.22293174053664,45.40953027528943],[9.22292173091315,45.409526091277456],[9.222911426456918,45.40952167381031],[9.222900890214309,45.409516806738395],[9.22289044367333,45.40951200249847],[9.222879970763305,45.40950699128345],[9.22286960005108,45.40950197086725],[9.222859139676254,45.40949689661812],[9.222848653745478,45.40949182241782],[9.222838167781243,45.409486739215524],[9.22282764341149,45.40948163808482],[9.22281717012391,45.40947652785255],[9.222806747706484,45.40947135451247],[9.222796325290954,45.40946618117145],[9.222785877284197,45.40946099887818],[9.222775442058254,45.40945581655904],[9.222765006869533,45.40945064324002],[9.222754571612072,45.409445451917925],[9.222744149135409,45.40944026057],[9.222733713917087,45.40943507824706],[9.222723278630031,45.40942987792106],[9.222712856159099,45.409424686570254],[9.222702433619434,45.40941947721642],[9.222692023895892,45.409414276837765],[9.222681601360051,45.40940906748203],[9.222671178826133,45.4094038581253],[9.22266075632943,45.409398657768634],[9.222650346578225,45.409393448385096],[9.222639924050041,45.409388239025525],[9.222629501559084,45.40938303866597],[9.222619066291148,45.4093778383304],[9.222608631131035,45.40937266499695],[9.222598183158654,45.40936748268639],[9.222587735188172,45.40936230037481],[9.222577287219607,45.409357118062296],[9.222566852067118,45.40935194472502],[9.222556404102368,45.40934676241057],[9.222545956139523,45.409341580095195],[9.222535533701047,45.40933638872804],[9.222525136645759,45.40933115230505],[9.222514752335973,45.40932590685519],[9.222504380806987,45.409320661379525],[9.222493996465762,45.40931540692671],[9.222483612161742,45.409310161474004],[9.222473240638509,45.40930491599547],[9.222462856303054,45.4092996615398],[9.222452472004798,45.40929441608424],[9.222442087673187,45.40928916162669],[9.222431703343496,45.409283907168145],[9.222421319015732,45.40927865270869],[9.222410934725167,45.40927340724932],[9.22240053762239,45.40926815281277],[9.222390153300395,45.409262898350455],[9.222379768980328,45.40925764388717],[9.222369371883323,45.40925238944777],[9.222358974858773,45.409247153009495],[9.222348552278447,45.40924191661995],[9.22233814244363,45.40923667120356],[9.222327758168438,45.40923142573658],[9.222317348337471,45.40922618031828],[9.222306951252015,45.40922092587313],[9.22229655420375,45.40921568042809],[9.222286157192654,45.409210443983106],[9.222275772927075,45.409205198511394],[9.222265375884572,45.40919995306345],[9.222254991622824,45.40919470758975],[9.222244594619411,45.40918947114098],[9.22223422314036,45.40918422564059],[9.22222385159273,45.40917896213714],[9.222213480082273,45.40917370763378],[9.222203121352571,45.40916845310464],[9.22219276262479,45.409163198574554],[9.222182378306018,45.409157935092146],[9.222172019582075,45.40915268056014],[9.222161660860055,45.40914742602723],[9.222151289325891,45.40914216251713],[9.222140892412142,45.409136944060904],[9.22213048275671,45.40913173462962],[9.22212006028913,45.40912651622109],[9.222109650602293,45.409121297786854],[9.222099240917373,45.40911607935162],[9.222088831234375,45.40911086091542],[9.222078421553286,45.40910564247828],[9.222067999060068,45.40910041506395],[9.222057589382818,45.4090951966249],[9.222047166858232,45.4090899602076],[9.222036706104756,45.40908475086688],[9.222026181564756,45.40907956865233],[9.22199920470387,45.40906635337102],[9.221974058745726,45.40905403464166],[9.221963572729575,45.409048897352115],[9.22195308668013,45.40904375106053],[9.221942587888972,45.409038613793825],[9.22193210187853,45.40903347650136],[9.22192156493074,45.40902838431232],[9.221911002532813,45.409023319175],[9.22190044010158,45.40901824503559],[9.221889877707422,45.40901317989629],[9.221879315315151,45.40900811475599],[9.221868727472732,45.409003076667425],[9.221858126853396,45.408998038602626],[9.22184753901473,45.40899300051208],[9.221836963921564,45.40898795339469],[9.22182642699077,45.40898286119679],[9.221815877318255,45.40897777802374],[9.221805340391237,45.40897268582387],[9.221794803466114,45.408967593623],[9.221784253799266,45.408962510447],[9.22177371687793,45.40895741824416],[9.22176317995848,45.40895232604037],[9.221752655749379,45.40894721580875],[9.221742157029409,45.40894208752451],[9.221731658311336,45.40893695923932],[9.22172115959516,45.40893183095314],[9.221710648102107,45.40892670269077],[9.221700149389731,45.40892157440262],[9.22168965067925,45.40891644611354],[9.221679151970676,45.408911317823446],[9.221668640485213,45.40890618955718],[9.22165812903681,45.40890107029097],[9.221647604846678,45.40889596004958],[9.22163709347236,45.40889085878348],[9.221626556507248,45.4088857485649],[9.221616032357947,45.40888064732163],[9.221605508175395,45.40887553707632],[9.221594984029883,45.408870435831076],[9.221584459851117,45.408865325583804],[9.221573935709397,45.40886022433661],[9.221563411569566,45.40885512308847],[9.221552887396488,45.408850012838265],[9.221542363225304,45.40884490258707],[9.221531839091151,45.40883980133598],[9.221521314958899,45.408834700083936],[9.221510790793399,45.40882958982981],[9.221500266664933,45.40882448857576],[9.221489742503225,45.4088193783197],[9.221479218378537,45.40881427706371],[9.221468694220626,45.408809166805696],[9.221458170099726,45.40880406554774],[9.221447645945602,45.40879895528774],[9.22143712182849,45.40879385402786],[9.22142659767816,45.40878874376597],[9.221416073564834,45.40878364250409],[9.221405485770335,45.40877859537118],[9.221394885269195,45.40877356626408],[9.221384284769922,45.408768537156014],[9.221373684237435,45.4087634990459],[9.221363083741927,45.408758469935805],[9.221352483248308,45.408753440824746],[9.221237472161228,45.40869731635564],[9.22122701155451,45.40869210694013],[9.221216525357178,45.40868688857204],[9.221206372040134,45.408681831579294],[9.22119593703166,45.408676631112534],[9.221185502025104,45.4086714306448],[9.221175067055533,45.408666239177194],[9.221164632052803,45.40866103870755],[9.221154197087051,45.408655847237995],[9.221143762088149,45.40865064676642],[9.221133327091152,45.40864544629388],[9.221122892131133,45.40864025482146],[9.221112457137968,45.40863505434701],[9.221102009367998,45.40862985389629],[9.221091574413718,45.40862466242097],[9.221081126717696,45.40861947997041],[9.221070666279928,45.40861430654462],[9.221060205879128,45.40860914211892],[9.221049719992921,45.408603995743704],[9.221039234108618,45.40859884936756],[9.221028748226214,45.40859370299041],[9.221018262345721,45.408588556612294],[9.221007776467127,45.408583410233234],[9.220997290590434,45.408578263853165],[9.220986804715643,45.40857311747216],[9.22097631884276,45.40856797109016],[9.220965832971775,45.408562824707204],[9.220955347102688,45.40855767832326],[9.22094487401421,45.408552531913685],[9.220934388148931,45.408547385527825],[9.220923876798233,45.40854225719238],[9.220913378263175,45.40853713783239],[9.220902866916274,45.40853200949504],[9.220892355571277,45.40852688115671],[9.2208818570419,45.408521761793786],[9.2208713457007,45.408516633453495],[9.220860859883752,45.408511496061834],[9.220850373998655,45.40850634066717],[9.220839888150488,45.40850119427253],[9.220829415047895,45.40849603885123],[9.220818929203531,45.40849089245464],[9.220808456104736,45.4084857370314],[9.220797970264181,45.4084805906329],[9.220787484390518,45.40847543523242],[9.220777011297438,45.40847027980622],[9.220766525462588,45.40846513340481],[9.220756039594635,45.408459978001396],[9.220745566542282,45.408454831573344],[9.220735080678136,45.408449676168],[9.220724594850903,45.408444529762704],[9.220714108990572,45.408439374355396],[9.220703623167143,45.40843422794815],[9.220693150124289,45.408429081515294],[9.22068266426967,45.40842392610505],[9.220672178451954,45.408418779694856],[9.220661692601144,45.40841362428274],[9.220651206787233,45.40840847787064],[9.220640720975227,45.408403331457556],[9.220630235130132,45.40839817604249],[9.220619647512477,45.40839313783717],[9.220609034409339,45.40838811768222],[9.220598408599404,45.40838311555301],[9.220587731921563,45.40837817652868],[9.220577042466932,45.408373237527954],[9.220566365757835,45.40836828950058],[9.220555676306926,45.40836335049785],[9.220544999636536,45.40835841146947],[9.220534322967996,45.40835347244011],[9.220523633522665,45.408348533434385],[9.220512956857847,45.40834359440301],[9.220502267416235,45.40833865539523],[9.220491514362974,45.408333788517965],[9.220480748602835,45.40832893966644],[9.220469982879504,45.40832409981489],[9.220459178926955,45.40831928703932],[9.22044831136269,45.408314546394195],[9.220437443765281,45.40830979674699],[9.220426576204648,45.4083050560998],[9.220415708610881,45.40830030645054],[9.220404802613098,45.40829553887198],[9.220397531972226,45.40829236648643],[9.220386651639632,45.40828762586],[9.22037572047388,45.408282957339374],[9.220364776531296,45.40827828884235],[9.220353845334202,45.40827361131851],[9.220342901395213,45.40826894281939],[9.22033195745803,45.408264274319166],[9.220320924526433,45.40825972300372],[9.220309891631537,45.408255180688265],[9.22029885870348,45.4082506293707],[9.220287813033485,45.408246087077686],[9.220276780143895,45.408241544758994],[9.220265747221136,45.40823699343814],[9.220254650721378,45.408232523248735],[9.220243388939473,45.40822826940309],[9.220232114450488,45.40822403358302],[9.220220839963185,45.40821979776178],[9.220209565477566,45.40821556193948],[9.220198290993627,45.40821132611604],[9.220187016476451,45.40820708129044],[9.220175741995874,45.40820284546473],[9.22016446751699,45.408198609637935],[9.220153142169698,45.4081944369157],[9.220141778662777,45.40819030927133],[9.220130427936116,45.40818618160124],[9.220119064467399,45.40818206295564],[9.220107611968901,45.40817805249354],[9.220096159472021,45.408174042030275],[9.220084706976753,45.408170031565874],[9.22007325448311,45.408166021100314],[9.220061814769684,45.40816201060903],[9.220050362279267,45.408158000141164],[9.220038909790471,45.40815398967212],[9.220027482686046,45.40814993414755],[9.22001606839675,45.40814588759834],[9.220004641295588,45.408141832071514],[9.219993226939774,45.40813776751787],[9.219981799841877,45.40813371198872],[9.219970385524213,45.40812965643388],[9.219958958429572,45.40812560090242],[9.21994753133657,45.4081215453698],[9.219936167894062,45.408117426705935],[9.219924842509982,45.40811323595885],[9.219913529871302,45.408109036184996],[9.219902217234303,45.40810483641009],[9.219890904598975,45.40810063663398],[9.219879592000183,45.40809644585784],[9.219868279368201,45.408092246079505],[9.219856966668159,45.408088028297925],[9.219845768523907,45.40808369328066],[9.219834557602782,45.40807935828683],[9.219823346683365,45.40807502329193],[9.219812173961994,45.40807065221805],[9.219801141144556,45.40806610985315],[9.21979010829403,45.40806155848615],[9.219779075480123,45.40805701611906],[9.219768042667985,45.40805247375097],[9.219757098924372,45.40804783219845],[9.219746167891431,45.408043172618235],[9.219735236825436,45.408038504035936],[9.21972431857467,45.40803384442908],[9.21971338747743,45.408029166843605],[9.219702469160577,45.40802448923255],[9.219691627203444,45.408019730463835],[9.219680823339997,45.40801490861313],[9.219670019478391,45.40801008676137],[9.21966722890648,45.40800884096534],[9.219656412303438,45.40800402813786],[9.21964562118972,45.407999197258206],[9.21963484282158,45.40799435735197],[9.21962405171154,45.40798952647027],[9.219613260568503,45.40798468658649],[9.21960246946214,45.407979855702735],[9.2195917165192,45.40797497973915],[9.219580976321861,45.40797009474895],[9.219570248835288,45.40796519173115],[9.21955953409433,45.4079602796867],[9.21954881935522,45.407955367641286],[9.219538104617962,45.407950455594865],[9.219527377138817,45.40794555257298],[9.219516738763339,45.40794055936798],[9.219506214979065,45.4079354579288],[9.219495691161866,45.407930347487536],[9.219485167381377,45.407925246046375],[9.219474643567978,45.4079201356032],[9.219464119791274,45.4079150341601],[9.219453596016468,45.407909932716],[9.219443059430196,45.407904822294384],[9.21943259934315,45.4078996667195],[9.219422126444659,45.40789450216714],[9.219411666326621,45.4078893375893],[9.219401231593624,45.40788412795624],[9.21939080967588,45.407878927298746],[9.219380387725257,45.407873717639234],[9.219369965811342,45.40786851697985],[9.21935954386455,45.407863307318436],[9.219349134663426,45.4078580886305],[9.219338738173196,45.40785285191508],[9.219328341684882,45.40784761519861],[9.219317945198492,45.407842378481256],[9.219307548714026,45.40783714176293],[9.219297152231471,45.40783190504364],[9.21928675575084,45.407826668323395],[9.219276359272126,45.40782143160219],[9.219265975573867,45.40781619485554],[9.21925557909899,45.40781095813248],[9.21924518266081,45.40780573040947],[9.219234798898768,45.40780047565786],[9.219224440626181,45.40779520285424],[9.219214082320756,45.407789921048646],[9.219203736795789,45.407784639217596],[9.219193378494218,45.40777935741009],[9.21918303297311,45.40777407557717],[9.219172674675395,45.407768793767794],[9.219162329158134,45.40776351193294],[9.219151970864289,45.40775823012169],[9.219141625350879,45.40775294828498],[9.21913126706088,45.4077476664718],[9.219120908772814,45.40774238465765],[9.219110550451928,45.40773709384154],[9.219100192167723,45.407731812025496],[9.219089833850703,45.40772652120748],[9.21907947557035,45.40772123938958],[9.21906910444394,45.40771593959309],[9.219058733354212,45.407710648796694],[9.219048349418426,45.407705340021714],[9.219037927253272,45.40770005832234],[9.219027453976025,45.40769477671986],[9.219016891042813,45.40768944128138],[9.219005969653598,45.40768393550702],[9.219001603640313,45.4076817295917],[9.218991232667314,45.40767646579223],[9.218980849021916,45.40767122901945],[9.21897046534371,45.407665983244684],[9.218960081667422,45.40766073746894],[9.218949685214561,45.407655491716696],[9.21893930154212,45.40765024593904],[9.218928917871592,45.40764500016044],[9.218918534202992,45.40763975438089],[9.218908150536311,45.407634508600346],[9.218897766871546,45.40762926281891],[9.21888738324342,45.40762402603751],[9.218876986804009,45.407618780278604],[9.218866603145011,45.407613534494324],[9.218856219487927,45.40760828870904],[9.218845835867475,45.40760305192389],[9.21883545221423,45.4075978061367],[9.218825055784434,45.40759256037302],[9.218814672169731,45.40758732358498],[9.218804288522254,45.407582077794935],[9.218793892098219,45.407576832028376],[9.218783508489272,45.4075715952375],[9.218773124847553,45.40756634944461],[9.218762741207756,45.40756110365075],[9.218752357569882,45.407555857855975],[9.21874197389924,45.40755060305917],[9.218731603008992,45.40754534823701],[9.21872121937688,45.40754010243937],[9.21871084849047,45.407534847615274],[9.218700464827524,45.4075295928147],[9.218690081166494,45.40752433801313],[9.21867971032053,45.40751909218724],[9.21866933944181,45.40751383735934],[9.21865895578655,45.40750858255497],[9.218648572167886,45.40750333675062],[9.218638226747842,45.407498054867915],[9.218627881295061,45.40749276398319],[9.218617548657337,45.40748748207416],[9.218607203208407,45.40748219118756],[9.218596857796076,45.40747690930105],[9.218586525094798,45.4074716093871],[9.218576217917702,45.40746630042232],[9.218565897929427,45.40746098247999],[9.218555577977737,45.40745567353775],[9.218545270771779,45.407450355569146],[9.218534950823955,45.40744504662499],[9.218524656331004,45.407439710627976],[9.218514387327586,45.40743435657911],[9.218504105582301,45.40742901155478],[9.218493823804316,45.40742365752844],[9.218483554841356,45.40741831247779],[9.218473273101896,45.40741296745068],[9.218462991329721,45.40740761342154],[9.218452709594132,45.40740226839254],[9.218442440604287,45.40739691433715],[9.218432158872574,45.407391569306256],[9.218421877108167,45.40738621527337],[9.218411595345694,45.40738086123958],[9.218401288132197,45.40737553425679],[9.218390968176829,45.407370216298496],[9.218380609818842,45.40736488041035],[9.2183796623448,45.40736439615894],[9.21836935517192,45.407359078174274],[9.218359035222543,45.40735376021305],[9.218348728053538,45.407348442226535],[9.218338408108028,45.40734312426345],[9.218328100942882,45.407337806274995],[9.21831778103586,45.407332497311074],[9.218307473839968,45.40732717031976],[9.218297153902189,45.407321852352894],[9.218286795838782,45.40731658846452],[9.218276424964262,45.40731131559855],[9.218266066870088,45.40730604270725],[9.21825569603404,45.40730077884044],[9.218245337943712,45.40729550594723],[9.2182349670769,45.407290233077454],[9.218224609025034,45.40728496918341],[9.218214098153188,45.407279840596615],[9.218203600096247,45.407274720985505],[9.218193089228196,45.40726959239677],[9.218182565687426,45.407264490834514],[9.21817201666093,45.40725940732218],[9.218161480380134,45.407254314783394],[9.218150931357417,45.40724923126908],[9.218020877058894,45.40718406811112],[9.218025690716583,45.40717641699216],[9.218179625058939,45.40693163527601],[9.218248317041862,45.40682070053919],[9.218365314262307,45.406634208224794],[9.218571691651023,45.406307451704414],[9.218541963765476,45.40629936249051],[9.218507298309495,45.40628993253277],[9.21846642633279,45.40627814712412],[9.218470712760983,45.40626966888949],[9.218474986375073,45.40626118167808],[9.218479196685932,45.40625284760631],[9.218483470332133,45.40624436939561],[9.218487756755238,45.406235891160314],[9.21849203036425,45.40622740394821],[9.218496266053217,45.40621902482173],[9.218500539694327,45.40621054661035],[9.218504762152191,45.40620205049429],[9.218508882522041,45.406193590577544],[9.218513028239101,45.40618507660552],[9.218517109994796,45.406176544753286],[9.218521191749263,45.4061680129009],[9.218525260758998,45.40615949007384],[9.218529342511017,45.40615095822109],[9.218533424261812,45.406142426368255],[9.21853750604604,45.40613390351628],[9.218541600433925,45.406125335634506],[9.218545682215696,45.40611681278223],[9.218549751183442,45.406108280953156],[9.218553858241815,45.40609968604335],[9.218557939985255,45.40609115418953],[9.218562149647532,45.406082658095656],[9.218566487193943,45.40607418876061],[9.21857104179414,45.4060656740051],[9.21857555840516,45.406057249333145],[9.218580075049493,45.406048833662055],[9.2185845788797,45.406040409014096],[9.218589158926758,45.406031867205876],[9.218593675532407,45.406023442533176],[9.218598179358587,45.40601501788465],[9.21860278481915,45.40600644002281],[9.218607288642628,45.40599801537394],[9.218611805277568,45.40598959970153],[9.2186163218765,45.40598117502784],[9.218620939901712,45.40597254313453],[9.218625840292104,45.40596423474151],[9.218630830197212,45.40595594417942],[9.218635972571489,45.405947428297836],[9.218640962473641,45.405939137735295],[9.218646310612115,45.40593096350233],[9.218652169387937,45.40592266227749],[9.218657862948163,45.40591459539714],[9.218663556541445,45.40590653751754],[9.218669389860043,45.40589826334379],[9.218675236995304,45.40589025917681],[9.2186814544857,45.405882200294805],[9.218687557491618,45.40587427664806],[9.218693736886982,45.405866280846],[9.218699865306949,45.40585832114555],[9.218705942786237,45.40585040654772],[9.218711994742332,45.405842500999434],[9.218717726897733,45.405834506051114],[9.21872302390296,45.405826331912166],[9.21872822017339,45.405818545013545],[9.218733174317824,45.40581092959878],[9.21873749994174,45.40580269430861],[9.218741863655843,45.40579439593765],[9.2187462654254,45.40578602548484],[9.218750692611074,45.405777618978746],[9.218754620826216,45.40576905140656],[9.218758510740656,45.405760492908556],[9.218762477495787,45.40575197926908],[9.218766406193042,45.4057435377111],[9.218770296936526,45.40573519523787],[9.2187739708334,45.40572695219142],[9.218776289907805,45.40571862172472],[9.218777369544467,45.40571030262935],[9.218778349627593,45.405702676810265],[9.218778139339165,45.40569453120294],[9.218777084311602,45.40568602716651],[9.21877369114368,45.40567759060929],[9.218769098366433,45.40566955239516],[9.218763474037454,45.40566241626491],[9.21876132425067,45.40565830686616],[9.218760579863195,45.40565746218478],[9.218751361631805,45.405652799232065],[9.218742620039718,45.4056491344911],[9.218733011379962,45.40564594846638],[9.21872180647155,45.40564302652518],[9.218710629339942,45.405640680601145],[9.21869896664361,45.40563833560428],[9.218686717788076,45.40563641477918],[9.218673843398767,45.40563464816743],[9.218661225645942,45.40563316009825],[9.218648646505274,45.40563174396284],[9.218636016149052,45.405630300920585],[9.218623436489638,45.40562874976669],[9.218611009439432,45.40562700929626],[9.218598786492002,45.40562517842341],[9.218586742576559,45.40562338321158],[9.218574942484393,45.40562185756608],[9.218561403089288,45.40561994819438],[9.218547170873979,45.405617311054314],[9.218533587775648,45.405614006589936],[9.21852064198684,45.405610286855236],[9.218509423556053,45.40560716689441],[9.218497579002761,45.40560404812842],[9.21848541465344,45.40560083996075],[9.218473594550282,45.40559743310985],[9.218461952994597,45.40559393590561],[9.218450285295415,45.40559028573113],[9.218438528047592,45.4055866087231],[9.218426681216544,45.40558289588043],[9.218414181703132,45.40557892325031],[9.218402122911792,45.4055732575677],[9.218390493138944,45.40556617788961],[9.218380352545875,45.40555757417908],[9.218372218278667,45.40554901164338],[9.218365948012268,45.40554003149778],[9.218360498137955,45.40553172486956],[9.21835563619254,45.40552345312331],[9.218350416948834,45.405515308074456],[9.21834485325422,45.405507307700645],[9.218339315221057,45.405499334280876],[9.218333802953202,45.40549141481838],[9.218327884006266,45.40548407220313],[9.218319961544754,45.40547741749599],[9.218312462005496,45.405471086021294],[9.218304668919977,45.40546484511747],[9.218297185796631,45.405459458727634],[9.218288590850086,45.40545403845433],[9.218278385877086,45.4054486212524],[9.21826870598077,45.4054435090857],[9.218258488198956,45.4054380829053],[9.218248283231706,45.40543266570065],[9.21823756513947,45.405426727409264],[9.218227525701927,45.405421156868016],[9.21821748626636,45.40541558632587],[9.21820753648631,45.405410069618505],[9.218197497054673,45.40540449907459],[9.218187572869086,45.405398991317796],[9.21817752073257,45.4053934387986],[9.218167482067885,45.40538806627507],[9.218157302570521,45.40538262201036],[9.21814706032668,45.40537747490119],[9.218136767214888,45.40537239089595],[9.218126294901895,45.405367226221344],[9.218116014606387,45.405362151190836],[9.218105696082525,45.40535710323567],[9.218094995777342,45.40535246105761],[9.218084282661346,45.40534780990188],[9.218073569547107,45.4053431587451],[9.21806281806611,45.40533849865934],[9.218051977867152,45.40533402776508],[9.218040767869265,45.40532975559921],[9.218029519573717,45.405325492506286],[9.218018181730352,45.40532120257964],[9.218006843854127,45.40531690365077],[9.217995365249106,45.40531255998332],[9.217983976195335,45.40530824314749],[9.21797277725748,45.405303520897995],[9.217961757178472,45.40529878930555],[9.217950647517302,45.405294021878255],[9.217939907416813,45.40528899271346],[9.21792967729643,45.40528366553929],[9.217919345230706,45.40527841056732],[9.217803538029804,45.40521854866008],[9.217792883672582,45.40521254719762],[9.217782026079107,45.405206861160075],[9.217771463589136,45.4052014895988],[9.217760875683387,45.40519615408945],[9.217749828153478,45.4051909184662],[9.217739037116646,45.4051859253838],[9.217728105213643,45.40518085155846],[9.217717275087326,45.40517566052391],[9.217705754747184,45.40517041679506],[9.217694148001245,45.40516596532776],[9.217681660200805,45.40516167755582],[9.217669419600883,45.40515854145506],[9.217658673813649,45.40515534850221],[9.217648015782117,45.40515171432673],[9.217636831820629,45.40514755008492],[9.217625850616823,45.405142944401604],[9.217614869449303,45.40513834771827],[9.217604093006482,45.40513382265337],[9.217593392818927,45.405129189429076],[9.217583382330737,45.40512447388191],[9.21757402431199,45.40511996411863],[9.217564436361044,45.40511547279408],[9.217556983463528,45.40511127444528],[9.217549502355112,45.40510638306368],[9.217541377557149,45.405100241750446],[9.217532637420133,45.405093579542005],[9.217524254618532,45.40508679963885],[9.21751603744903,45.40507989340458],[9.217508138729256,45.405072725531845],[9.21750012494128,45.40506553987503],[9.217492303617227,45.40505856087751],[9.217484787275215,45.40505114024488],[9.217476682461623,45.40504354070813],[9.217468731778213,45.4050361479035],[9.21746071658668,45.40502859320083],[9.217452203817542,45.40502123746789],[9.217442899923915,45.405014171273855],[9.217433356941495,45.40500806865289],[9.21742348145991,45.405001894654134],[9.217412687695393,45.40499617245552],[9.217400821589289,45.40499071332612],[9.217389111819111,45.404986036995524],[9.217377633087034,45.404981630258206],[9.21736602671565,45.4049772597667],[9.217354753363983,45.40497309566699],[9.21734345566437,45.40496924665153],[9.217332017271636,45.40496536189774],[9.217320820936756,45.404961287659525],[9.217309675060369,45.40495704230315],[9.217298835338172,45.40495266134744],[9.217288442671485,45.404948234535915],[9.217278074631984,45.40494356464656],[9.217268012781174,45.404938768159106],[9.21725830912624,45.40493407900392],[9.217247671447232,45.40492906758139],[9.217237826274445,45.40492412666195],[9.217227736084732,45.404918601134305],[9.217217850205321,45.40491303921336],[9.217207413708028,45.40490717229902],[9.217196951863768,45.40490135943851],[9.217186017860087,45.404895709493594],[9.217176209654642,45.40489040845396],[9.217166541215672,45.404884900122454],[9.217152060072499,45.40487391024441],[9.21711728412003,45.4048486651101],[9.217111655777371,45.40484040376559],[9.217104854007303,45.404832702716966],[9.217097274373026,45.40482541719541],[9.217088674887043,45.404818754685735],[9.217078839220763,45.4048129496272],[9.21707776354008,45.40481233959243],[9.217066998465477,45.40480741840588],[9.217055445226823,45.404803560845565],[9.217043587007526,45.40480014491741],[9.217031576074834,45.40479689129788],[9.217019411430746,45.40479353895634],[9.217015369534014,45.404792475490936],[9.217003194350507,45.40478970824026],[9.216991006562376,45.40478698601786],[9.216978805963151,45.40478425481724],[9.216966605227478,45.40478148761115],[9.216954442207346,45.4047785583121],[9.21694433786709,45.40477600315465],[9.216932288921203,45.40477283060683],[9.216920405091232,45.40476939671217],[9.216908546440068,45.40476586375632],[9.216896954577555,45.40476192524307],[9.216885629538275,45.40475759017371],[9.216876901360692,45.4047540242762],[9.21686618732277,45.40474907597063],[9.216855791598096,45.40474383002376],[9.216846198163104,45.40473787146698],[9.216836604626975,45.40473188590622],[9.216827278258565,45.40472559380027],[9.216817835791572,45.404719013877894],[9.21681508130267,45.40471711986265],[9.216806226790826,45.404710583830564],[9.216798379564246,45.40470347881851],[9.216790443032313,45.404696409979586],[9.21678622434473,45.4046925474937],[9.216778937216578,45.40468488334969],[9.216773296299182,45.40467665801654],[9.216768203523864,45.404668089602055],[9.216766887571572,45.40466478868559],[9.216763263973027,45.40465614547809],[9.216760023435276,45.40464742953569],[9.216757332001071,45.40463862254164],[9.216754819388413,45.40462979720648],[9.216754400145991,45.40462374024901],[9.216754365674293,45.40461471219386],[9.216754190577927,45.40460566640288],[9.216755421315675,45.40459668995715],[9.216756393789156,45.404590351328125],[9.216808165663894,45.40459260251455],[9.21685063368132,45.40459444826131],[9.216943800078768,45.40459850214692],[9.216935122121,45.40459135371386],[9.216927767863542,45.40458284360148],[9.21692157422165,45.40457376421748],[9.216917795276885,45.40456459924449],[9.21691516385903,45.404554784015104],[9.216914859721065,45.40454541442872],[9.216914632525128,45.40453611670542],[9.216915899815268,45.40452668113159],[9.216917116991265,45.40451750668515],[9.216919203434928,45.40450842960273],[9.216921852547731,45.404499468467876],[9.216924476482477,45.40449060639293],[9.216927164993251,45.404481924217876],[9.216929891389395,45.40447312495634],[9.216931940975117,45.404464434991546],[9.216933210978173,45.40445571050055],[9.216934505676466,45.40444676093474],[9.216935750054391,45.40443801849003],[9.216936265135805,45.40442902539701],[9.216936767439293,45.40442003232817],[9.21693728252039,45.40441103923508],[9.216937491760499,45.40440226274877],[9.216937585140727,45.40439326145424],[9.216937678520932,45.40438426015965],[9.216938014059387,45.40437509638575],[9.216938708062921,45.40436611195442],[9.216939427071384,45.404356983457745],[9.21694036357662,45.404347926557584],[9.216941543202822,45.4043389592075],[9.216942722691057,45.4043299558532],[9.216943902282127,45.404320979502],[9.216945082148017,45.404312075159254],[9.216946121458358,45.404303171083],[9.216946879623661,45.40429425853876],[9.21694761226765,45.40428535504403],[9.216947834008309,45.40427650652488],[9.216947953217424,45.40426757719004],[9.216948072392107,45.40425863885417],[9.216947782782544,45.40424972829688],[9.216947429284433,45.40424081786072],[9.216946718491636,45.40423203411772],[9.216945623988927,45.40422315209012],[9.216944529417756,45.40421425206038],[9.216943026028648,45.40420537080811],[9.216941433127182,45.40419647172332],[9.216939827310913,45.40418753665853],[9.216938374346181,45.40417847528815],[9.216936946937343,45.404169413869305],[9.216935826056455,45.40416031586468],[9.216935522949335,45.404151216309344],[9.216935220083094,45.40414217976132],[9.216934891764737,45.4041331702649],[9.216934410286033,45.40412420606445],[9.216933941929147,45.40411533185034],[9.216933128402555,45.40410641328515],[9.216932123210762,45.40409749508338],[9.216931118019293,45.40408857688157],[9.216929844565376,45.40407967719066],[9.216928545900442,45.40407086755876],[9.216926902135114,45.404062031577794],[9.21692495184339,45.40405323218259],[9.21692296345999,45.404044495867325],[9.216920451020204,45.40403571554011],[9.216917938512424,45.404026917210764],[9.216915413158954,45.404018100903436],[9.216912951694665,45.40400928447492],[9.216910490265546,45.4040004770474],[9.216907965086397,45.403991705745156],[9.21690509546116,45.403983079113765],[9.216902212852796,45.40397439850022],[9.216898908926195,45.403965808696576],[9.216895516279138,45.40395740808455],[9.216891548638205,45.40394900856251],[9.216886891658099,45.403940781368476],[9.216882170894213,45.403932581298534],[9.216877156073622,45.40392433678023],[9.216872154032144,45.403916092237495],[9.216867075326196,45.40390784783983],[9.216861919990206,45.40389961258833],[9.21685676458694,45.403891359334466],[9.216851660192635,45.40388307898034],[9.216846747223853,45.40387473525528],[9.2168418342909,45.403866400531044],[9.216836921359397,45.403858065806574],[9.216832110512957,45.40384969488392],[9.216827286855917,45.40384131498423],[9.216822475909199,45.40383291705798],[9.216817958540119,45.40382443756504],[9.216813607144147,45.403815921752894],[9.216809255818221,45.403807423942645],[9.216804981159395,45.40379892598694],[9.21680074490349,45.403790445960546],[9.216796521495226,45.403781983911834],[9.216792068400354,45.40377360330832],[9.216787411036702,45.40376526809728],[9.216782766555168,45.403756959864985],[9.216778019785306,45.40374863382408],[9.216773247495977,45.403740316832454],[9.216768462430435,45.403731999864796],[9.216763447678582,45.4037237643422],[9.216758432928195,45.40371552881941],[9.216753354325586,45.403707302418425],[9.216748097009782,45.40369912136145],[9.216742813968459,45.403690895347324],[9.216737620234444,45.4036826331593],[9.216732656223867,45.40367429852685],[9.216727705026726,45.40366597287107],[9.216722766642986,45.403657656191854],[9.216717917669532,45.4036493303419],[9.216713081543809,45.40364102246965],[9.216708258231467,45.403632723574034],[9.216703141345185,45.40362450624437],[9.216697998870856,45.403616279961845],[9.216692843586076,45.40360804470218],[9.216687739310066,45.40359978234231],[9.216682622154897,45.40359149300323],[9.216677607050109,45.403583158465075],[9.21667282132485,45.40357466147204],[9.216668061362313,45.40356621843674],[9.216663582198688,45.40355769385934],[9.216659486020106,45.403549078545296],[9.216655402654698,45.403540472207894],[9.216651549115044,45.40353182042947],[9.21664782300874,45.403523078398436],[9.216644161031878,45.4035143992536],[9.216641253688104,45.40350591670423],[9.216636813518614,45.40349756307314],[9.216632347554885,45.40348914648287],[9.216627945205497,45.40348065776296],[9.216623938480838,45.4034720422781],[9.216619944500605,45.40346341776783],[9.216615963264802,45.403454784232146],[9.216612479770838,45.40344599673483],[9.216609034954041,45.40343729917537],[9.216605590275686,45.40342863762001],[9.216602120111979,45.40341999411499],[9.21659866279557,45.40341136858782],[9.216594886488132,45.40340286067899],[9.21659104612243,45.403394307885705],[9.216587180168476,45.4033857461396],[9.21658318640601,45.403377175634226],[9.216579179764192,45.403368578149696],[9.216575491806433,45.40335978203711],[9.216572225576968,45.40335100312823],[9.216568972229059,45.403342251198254],[9.21656582110236,45.4033334990746],[9.216562861673832,45.40332475558911],[9.216559902349225,45.40331603910666],[9.216556483446865,45.40330743150754],[9.216552911524346,45.40329890520807],[9.216549288080827,45.403290270992514],[9.216545575092828,45.403281609942994],[9.216541900198166,45.40327288581342],[9.216538812383432,45.40326398055005],[9.216535789075193,45.40325523718467],[9.216533224865477,45.4032462589211],[9.216530699572719,45.40323743360286],[9.216528529853619,45.40322803153988],[9.216526706981588,45.40321911488084],[9.216525112834866,45.403209864747396],[9.216524695179503,45.40320086441853],[9.216524251385673,45.40319171112007],[9.216523756996985,45.403182692934195],[9.216523224378982,45.40317370182399],[9.21652273002495,45.40316469263911],[9.216522363411608,45.40315567421133],[9.216521984089564,45.40314667380982],[9.216521591990164,45.403137673432475],[9.216521199787906,45.40312864605192],[9.216520820397587,45.40311962764827],[9.216520658121473,45.40311058183028],[9.216520482896307,45.40310149103124],[9.216520601759004,45.40309245368227],[9.216520746176615,45.40308341628491],[9.216520941704045,45.403074378790805],[9.216521380209237,45.40306539484355],[9.216521806074153,45.40305644692463],[9.21652179757393,45.403047517830096],[9.21652159741183,45.403038589098294],[9.216521410027248,45.40302966034226],[9.216520788346585,45.40302076841268],[9.216520089726764,45.40301180461976],[9.216519416593417,45.40300282277633],[9.216518832902434,45.40299384076359],[9.216518223862716,45.4029849128055],[9.216517282609633,45.40297598547626],[9.216516341391177,45.402967067147976],[9.216515183128179,45.40295819423604],[9.216513730675498,45.40294924087082],[9.216512265274199,45.40294024252446],[9.216511527466263,45.40293105377753],[9.216510790036187,45.40292196404219],[9.216510563634914,45.40291285533741],[9.216510554278369,45.402903701216225],[9.216510698662884,45.40289465481755],[9.216511060366551,45.40288563501093],[9.216511422310417,45.40287667821163],[9.216511451972572,45.40286770403895],[9.216511443302478,45.40285872993883],[9.216511434632386,45.402849755838695],[9.216511400304489,45.40284075478372],[9.216511365976617,45.402831753728755],[9.216511331648755,45.402822752673785],[9.216511297286582,45.40281374261772],[9.216511275667502,45.40280472353636],[9.21651138182248,45.40279570421323],[9.216511475268685,45.4027867029164],[9.216511555971783,45.402777710644756],[9.216511598377002,45.40276872744667],[9.216511640782214,45.402759744248584],[9.216511568259524,45.40275077927027],[9.216511368065925,45.40274184153692],[9.216511180546805,45.402732876776184],[9.216510814144314,45.402723912354],[9.216510396632398,45.40271494802854],[9.216509979154946,45.402705992704114],[9.216509280575233,45.40269703791167],[9.216508569218364,45.40268808314338],[9.216507832306966,45.40267912842344],[9.216507069806735,45.40267016475078],[9.216506307341072,45.402661210079145],[9.216505366061103,45.40265227374821],[9.2165042842647,45.402643346684265],[9.216503189759921,45.40263443764655],[9.216501916303718,45.40262551094527],[9.216500630036226,45.402616575267075],[9.21649929272836,45.402607657687696],[9.2164978786881,45.40259872225124],[9.216496477357008,45.402589768788516],[9.216495127307406,45.40258086023427],[9.216493790001262,45.40257194265474],[9.216491992951157,45.40256308895308],[9.216490182883994,45.40255417226818],[9.21648858982638,45.40254520116582],[9.21648709874777,45.402536166862596],[9.216485773912405,45.40252716824928],[9.216484691778309,45.40251815117435],[9.21648349482012,45.4025091793223],[9.216482208077727,45.40250011762894],[9.21648139416581,45.40249107304305],[9.216480695215838,45.40248201923844],[9.216480174942795,45.40247291108901],[9.21647989764513,45.40246385648653],[9.216479645833557,45.402454783833555],[9.216479611408218,45.40244575577477],[9.21647957701722,45.40243673671703],[9.216479593804161,45.40242773556464],[9.216479610659748,45.40241875241443],[9.216479550885753,45.402409778410316],[9.216479325178305,45.402400849725716],[9.216479099299315,45.40239187603591],[9.21647861783986,45.40238289382853],[9.216478072082147,45.402373803729425],[9.216477973496048,45.402364703782936],[9.216478181565297,45.40235560325621],[9.216478504012422,45.402346340492834],[9.216479797534303,45.40233707589187],[9.216481064677444,45.40232759531391],[9.216482417176834,45.40231704344105],[9.216479550473625,45.40227563470897],[9.216478928430691,45.402266643766346],[9.216478536756606,45.40225775140011],[9.216478157722628,45.402248823005436],[9.216478110898036,45.402239893982156],[9.216478076644805,45.402230910928324],[9.216478067946149,45.40222192782613],[9.216478071990444,45.40221293569866],[9.216478088846339,45.40220395254807],[9.21647822052604,45.402194924174594],[9.216478403108846,45.40218584169803],[9.216478176750476,45.40217674199305],[9.216477247574097,45.40216762561577],[9.216476344501693,45.402158653206996],[9.216475863147755,45.40214969800243],[9.21647544568026,45.40214074267697],[9.216475040955832,45.40213177832624],[9.216474661683081,45.40212278692398],[9.216474269598878,45.40211378654482],[9.21647387758346,45.402104804167784],[9.216473472825232,45.40209583081593],[9.216473157507858,45.40208685729488],[9.216472982705927,45.402077874506716],[9.21647280786974,45.402068882717536],[9.216472633033613,45.402059890928335],[9.216472445351673,45.40205088116113],[9.21647225766979,45.402041871394005],[9.216472069953658,45.40203285262578],[9.216471741756699,45.40202385212557],[9.216471400816944,45.40201486065058],[9.216471072723165,45.402005887153535],[9.216471000173975,45.401996913172916],[9.216470965956486,45.40198793911974],[9.216470931670372,45.40197894706446],[9.21647089738427,45.401969955009164],[9.216470863063872,45.4019609539528],[9.216470828743484,45.401951952896404],[9.216470794457425,45.40194296084105],[9.216470760171395,45.40193396878567],[9.216470725919697,45.40192498573137],[9.216470819474395,45.40191601143631],[9.216470900148902,45.40190701016225],[9.216471044846683,45.40189804477154],[9.21647124051594,45.40188904327985],[9.216471436185143,45.40188004178815],[9.21647090200971,45.401870636626995],[9.216470241675575,45.40186165475729],[9.21646950443826,45.40185261002517],[9.216468575817904,45.40184363766421],[9.21646763435202,45.40183464732523],[9.216466756806692,45.40182566586644],[9.216465943181882,45.4018166932878],[9.216465142368833,45.401807729686006],[9.21646434155604,45.40179876608423],[9.216463553623647,45.401789829461364],[9.216462752982967,45.401780910864815],[9.2164626424815,45.40177203596797],[9.216462569968408,45.40176307098804],[9.216462484575219,45.4017540790291],[9.216462386267617,45.40174505109006],[9.216462275114251,45.401736005173134],[9.216461780371471,45.401726887972984],[9.216461183651798,45.40171783397364],[9.216460599675159,45.401708770949],[9.216459517458222,45.40169972686936],[9.216458409721646,45.40169069183913],[9.216457174076618,45.401681621046365],[9.216455645003652,45.401672667823355],[9.216454115999804,45.40166373260247],[9.216452817190994,45.401654850952674],[9.216451556611085,45.40164594222718],[9.216450436614464,45.40163704223678],[9.216449661532382,45.401628123591514],[9.216448912245035,45.401619267905296],[9.216448558671694,45.401610312458],[9.216448205132798,45.40160136601174],[9.216447877045328,45.40159239251398],[9.216447549026599,45.40158343701829],[9.216447464116593,45.40157457107385],[9.216447660200462,45.4015656775944],[9.216447984089845,45.401556792874196],[9.2164491008814,45.40154809567736],[9.216450230003622,45.401539281442595],[9.216451985444552,45.40153052903062],[9.216454329593207,45.40152202753615],[9.216456826414518,45.401513354731414],[9.216460358696015,45.401504814984214],[9.216463890907804,45.4014962572348],[9.216467333335581,45.40148760964393],[9.216470711842458,45.401478953172735],[9.216474333731071,45.4014704582611],[9.21647824959495,45.40146198979642],[9.216482140178037,45.40145359338844],[9.216486938242959,45.40144527627308],[9.216491671734525,45.40143677925731],[9.216495663535282,45.401428121624726],[9.216499655197529,45.401419427987776],[9.216503289134309,45.40141074402876],[9.216506846441758,45.40140206921577],[9.216510378262598,45.401393412453174],[9.216513884562522,45.401384764739845],[9.216517403707115,45.40137613500432],[9.216521152975433,45.40136754083765],[9.21652492748783,45.401358865612934],[9.216528407954627,45.40135014593901],[9.216531543233321,45.401341372911645],[9.216534678682693,45.40133264488942],[9.216538069844209,45.40132396138867],[9.2165414737131,45.401315259861555],[9.216544634198682,45.40130639677483],[9.21654759025022,45.401297534074935],[9.216550367318943,45.401288644710405],[9.216552518001738,45.401279675521415],[9.216554668580862,45.40127067932914],[9.216556653366556,45.40126176446085],[9.216558587077726,45.40125285869025],[9.216560559153793,45.40124396184812],[9.216562582337458,45.40123506490919],[9.21656460548616,45.40122615896916],[9.216566411287076,45.401217217436056],[9.216568191636334,45.40120830295445],[9.216570048681636,45.40119939732871],[9.216572020513729,45.40119043747888],[9.21657392846,45.401181477749965],[9.21657519738209,45.40117247422515],[9.21657645390443,45.40116356973614],[9.216578119463167,45.40115470947835],[9.216580155589659,45.40114585752009],[9.216582050859147,45.401136924818324],[9.216583665033433,45.40112799264872],[9.216585317641304,45.40111908740966],[9.216587264669617,45.40111032563112],[9.216589224405688,45.40110154582624],[9.216591439818908,45.40109280154171],[9.216594511738087,45.40108417265012],[9.216597583553316,45.401075516755256],[9.216600693698657,45.40106686078769],[9.216603829294055,45.401058177768505],[9.21660705443059,45.40104952158303],[9.21661065037413,45.40104093670434],[9.216614220831252,45.40103236987603],[9.216617893331625,45.40102375784878],[9.216621642527246,45.40101515467726],[9.216625391618702,45.40100652450243],[9.216628897568256,45.40099779577554],[9.216632390877121,45.40098910307699],[9.216635820231248,45.40098039249712],[9.216639096054331,45.40097162820116],[9.21664242260657,45.40096276479671],[9.216645097428291,45.40095387562298],[9.216647695552913,45.400944977593284],[9.216650140352899,45.40093607985388],[9.216652342252065,45.400927146569956],[9.21665451883701,45.400918276341756],[9.21665678492883,45.40090942394624],[9.216658730805504,45.400900365131264],[9.216660409739049,45.40089166686675],[9.216662995871522,45.40088297588518],[9.216666042111557,45.400874320036586],[9.216669088144563,45.40086561018154],[9.216672031720442,45.400856837512606],[9.216674975329768,45.40084807384465],[9.216677906023817,45.40083927419663],[9.216680683427786,45.40083048383989],[9.216683460865246,45.40082170248418],[9.216686225009594,45.400812786136726],[9.21668875954578,45.400803969236385],[9.216691306823776,45.40079514331077],[9.216693866946642,45.400786335362994],[9.216696465365219,45.400777518341485],[9.216699051006028,45.400768701344106],[9.216701611092171,45.40075988439508],[9.216704107224082,45.40075104956489],[9.216706590612635,45.40074222375987],[9.216709137953835,45.40073341583589],[9.216711736539422,45.40072464381925],[9.216714322381629,45.40071588082781],[9.216717087237544,45.400707153501635],[9.216720120614315,45.400698479673494],[9.216723166801456,45.40068981482209],[9.216726430298511,45.40068117656223],[9.216730153901329,45.40067257343516],[9.216733800394799,45.40066385343941],[9.216736717984121,45.400654972804226],[9.216739648349456,45.400646092144775],[9.21674216916528,45.40063703223871],[9.216744179247312,45.400628063311466],[9.216746189466166,45.400619130388364],[9.216748110349094,45.40061022463789],[9.216750005746336,45.40060133693788],[9.216751952662976,45.40059255715371],[9.21675442353523,45.400583803380094],[9.216756869059108,45.400575103661225],[9.21675977444759,45.40056637606754],[9.2167627051828,45.400557594419034],[9.21676532903101,45.40054875034404],[9.21676796593022,45.40053997825322],[9.21677067959308,45.40053123302026],[9.216773572475269,45.40052257745889],[9.216776784744443,45.40051391229106],[9.216779996978273,45.40050523812209],[9.21678337551685,45.40049661764462],[9.216786753951295,45.40048797016385],[9.216790260222272,45.400479340442956],[9.216793843222206,45.400470728578796],[9.216797426117946,45.40046208971134],[9.216800970716339,45.400453459917465],[9.216804489863026,45.40044485717504],[9.216808303254796,45.40043635288721],[9.216812448740948,45.40042782096653],[9.216816491735907,45.400419217230905],[9.21681995873944,45.40041034455305],[9.216823400497548,45.4004015529331],[9.216826458673708,45.40039269003102],[9.216829082057549,45.40038372894059],[9.216831666491217,45.400374605903686],[9.216833126801363,45.40036554800526],[9.216834587317294,45.40035654411311],[9.216836111648284,45.40034752209774],[9.216837648721254,45.40033849105708],[9.21683913444572,45.400329397105835],[9.21683943151051,45.40032019739411],[9.216839728472086,45.400310970679215],[9.216839181268204,45.40030151153514],[9.21683771533525,45.40029236917181],[9.216836249574657,45.400283271813734],[9.216834107020393,45.40027427475079],[9.216831874925846,45.400265250854105],[9.216829541098615,45.40025635316592],[9.216827015825935,45.40024750984735],[9.21682449062279,45.40023868453076],[9.216822144330376,45.40022986787618],[9.216819810746768,45.400221033195145],[9.216817489940714,45.40021219848988],[9.216815194689033,45.400203363736075],[9.21681291245549,45.40019459196544],[9.216810923848822,45.400185756630414],[9.216809050165354,45.40017690307523],[9.21680716370566,45.400168049544256],[9.216805570975707,45.40015915945207],[9.216804067649525,45.40015026018928],[9.216802564289463,45.400141351925406],[9.216801163178674,45.40013245246882],[9.216799761930854,45.400123517008026],[9.216798399013872,45.400114581474526],[9.216797138277336,45.40010563674624],[9.216795877506838,45.400096683016855],[9.216794552818403,45.40008772040743],[9.216793189834386,45.40007876687168],[9.216791826885178,45.400069822336995],[9.21679052782034,45.40006087768118],[9.216789228824654,45.40005195102746],[9.216787968125367,45.40004301530003],[9.216786950116592,45.40003406111041],[9.216785906417112,45.40002507096494],[9.216784773246161,45.40001607198792],[9.216783359158352,45.40000711854878],[9.216781945174105,45.39999819211281],[9.216780684545922,45.399989274387316],[9.216779666711131,45.39998036520284],[9.216778648945395,45.39997147402048],[9.216777886715297,45.39996258235384],[9.21677760996808,45.399953680766124],[9.216777346478855,45.39994490516903],[9.216777747003169,45.39993602930127],[9.216778557139671,45.39992735068209],[9.216780185984925,45.39991893154409],[9.21678249017617,45.39991003406669],[9.216784283331,45.3999011465588],[9.21678605175661,45.39989247512468],[9.21678893230862,45.399883945601026],[9.216791813134714,45.39987548808579],[9.216795563672145,45.39986726295151],[9.216801541692268,45.39986016773748],[9.216807824909083,45.399852693897515],[9.216815579580313,45.39984577533812],[9.216824139012239,45.3998388102473],[9.216831174366748,45.39983089392537],[9.216837721762692,45.39982233944798],[9.216843375266722,45.399813912680365],[9.216847596434597,45.39980513758361],[9.216851792322748,45.39979643454359],[9.216855464020052,45.399787642485876],[9.216858956704574,45.399778814762804],[9.216862232011836,45.39976994244607],[9.216864804220302,45.39976097244973],[9.2168673386479,45.39975214654292],[9.21687246653652,45.39973322545858],[9.2168765679319,45.3997165115956],[9.216878718848172,45.39970763240877],[9.216880869798151,45.39969876222296],[9.216882931344934,45.399689901207715],[9.216884993028598,45.399681076196664],[9.216887220980645,45.39967229587594],[9.216890049780654,45.39966360442728],[9.216892878476646,45.399654885975345],[9.21689575824416,45.39964615842538],[9.21689867634087,45.39963743080268],[9.216901581728768,45.399628721206206],[9.216904922142124,45.399620172805086],[9.216908402960476,45.39961158813314],[9.216911934850136,45.39960299436312],[9.216915760843138,45.39959446304319],[9.216919574299036,45.399585994754766],[9.216923566764848,45.39957756213127],[9.216927623456762,45.399569219397094],[9.216932064101156,45.39956104695605],[9.21693816918531,45.39955378047216],[9.216944477731655,45.399546261570606],[9.21695170770987,45.39953913697074],[9.2169593601418,45.399532227596225],[9.216966911184052,45.39952553444048],[9.216975933845655,45.39951944156852],[9.216984994766515,45.39951333062099],[9.216994234833907,45.39950729134194],[9.21700394877106,45.39950154820037],[9.21701370089861,45.399495768981055],[9.217023427092393,45.39948989079769],[9.217033024588607,45.3994837698273],[9.217042571113758,45.39947768495723],[9.217051963835269,45.39947147436248],[9.21706129236175,45.39946518287861],[9.217070646370646,45.39945887334335],[9.217079539041492,45.399452204637775],[9.217088060395875,45.399445329610195],[9.217096569040384,45.399438472608374],[9.217104847290203,45.39943150802961],[9.217112984719552,45.3994244717085],[9.217121198565788,45.39941737223393],[9.217128977453442,45.39941012956626],[9.217136615589531,45.39940283315845],[9.217144228170396,45.399395536798664],[9.217151584837902,45.39938814191171],[9.217158941606774,45.39938077402749],[9.217166311253655,45.39937343312169],[9.217173783318247,45.399366146027745],[9.217181255346482,45.399358849932256],[9.217188727200643,45.39935150883097],[9.217196249849477,45.3993440866226],[9.217203606193632,45.39933661072275],[9.217210437833472,45.399328910790494],[9.217217256729278,45.39932121988318],[9.21722401146464,45.39931345708829],[9.217230689538457,45.39930569443851],[9.217237277933073,45.39929786895076],[9.217243277706206,45.399289810551146],[9.217249277546529,45.39928177015335],[9.217255098374851,45.39927369409068],[9.217260638219468,45.399265645564675],[9.217266127197195,45.399257660142936],[9.2172724863258,45.39925002411213],[9.21727940848436,45.39924261203978],[9.21728636879867,45.3992351548889],[9.217293200759554,45.399227544962216],[9.21730003275305,45.39921994403621],[9.217306941542097,45.39921237896839],[9.217313927092217,45.399204840757676],[9.217320938021404,45.39919725749274],[9.21732774424764,45.3991896026072],[9.217334460863643,45.399181902885886],[9.217341152028029,45.39917423021588],[9.217347779342125,45.39916656666791],[9.217354381170184,45.39915892117021],[9.217360970357706,45.399151311700656],[9.217367892389289,45.39914387261965],[9.21737533915476,45.39913666657044],[9.217382824110217,45.399129424443636],[9.217390308960384,45.399122155313165],[9.217397793739693,45.39911486818007],[9.217405265706043,45.39910757206973],[9.217412763327024,45.39910030291348],[9.217420337674424,45.39909305161318],[9.217427924761992,45.39908579128702],[9.217435499071044,45.399078530984625],[9.217442970924349,45.39907120786858],[9.217450391635008,45.39906387584812],[9.217457812412697,45.39905656182935],[9.217465258845008,45.399049274764636],[9.217472718189871,45.39904202367938],[9.21748016479075,45.399034781619],[9.217487816193856,45.39902763818116],[9.217495749092938,45.39902060222115],[9.217503707508682,45.39901355721088],[9.217511653111414,45.399006503223326],[9.217519342594999,45.39899929670304],[9.21752699374699,45.39899209025513],[9.217534619447411,45.39898491085846],[9.217542462967893,45.39897789306737],[9.21755063936627,45.39897105466516],[9.217558854057806,45.398964207188435],[9.217567068505918,45.39895729670368],[9.217575231535456,45.39895030530601],[9.217583432754619,45.39894327783059],[9.217591390631199,45.39893609779829],[9.217598746939396,45.39892863987472],[9.217606039570008,45.398921236078635],[9.217613434893902,45.39891395810244],[9.217621508958795,45.398907092886375],[9.217629710372977,45.398900119413966],[9.217637565749444,45.39889286756437],[9.217644883371376,45.39888531970015],[9.217652277339942,45.39887769068006],[9.217659159762709,45.39886993661698],[9.217666041907554,45.39886211054501],[9.217671720263,45.39885355767192],[9.217676568695541,45.39884515039567],[9.21768222408287,45.3988372726502],[9.217687968628109,45.39882932272577],[9.21769375136322,45.39882133672383],[9.217699521354707,45.39881335974697],[9.21770567522641,45.398805535058415],[9.21771191863547,45.39879773720254],[9.217718162077325,45.39878994834734],[9.217724482141948,45.398782150344815],[9.217730789462852,45.39877436136734],[9.217737237496062,45.39876661712731],[9.217743826172496,45.39875889962258],[9.217750427554584,45.39875116409102],[9.217756747472377,45.39874333008249],[9.217763067422943,45.3987355050746],[9.217769387509861,45.39872771607063],[9.217775873792915,45.398719953753314],[9.217782360108714,45.39871220043664],[9.217788768831664,45.398704204236914],[9.217794794465599,45.398696262772916],[9.217800743956895,45.39868845647044],[9.217807025531336,45.398680622531984],[9.217813192633724,45.39867292382804],[9.21782008892568,45.398665466765806],[9.217827381597191,45.398658089958445],[9.217834609970073,45.39865060525961],[9.217840942537915,45.39864274421876],[9.217847276209127,45.39863517121152],[9.217854915184642,45.39862814478691],[9.217862516243324,45.39862122644749],[9.217870500421279,45.39861426237227],[9.217878714297214,45.39860722584998],[9.217886389971016,45.39859977630037],[9.217893822959224,45.39859234521473],[9.217901102766213,45.39858495042486],[9.217908331569129,45.398577582735044],[9.217915534920905,45.39857024209664],[9.217923263245273,45.39856319749492],[9.217931106901235,45.398556242684215],[9.217938963331708,45.39854928784861],[9.217947216659253,45.398542548283345],[9.217955879487494,45.39853597895873],[9.217964618765059,45.398529355481024],[9.217973100369392,45.3985221744237],[9.217980711964316,45.39851467998408],[9.21798822079282,45.39850704172175],[9.217995218665607,45.398499431435994],[9.218002139877912,45.398491821295856],[9.218009048484731,45.39848425618495],[9.218016085026811,45.39847673583542],[9.218023096014175,45.39846921553417],[9.21802983848735,45.39846164173745],[9.21803633772276,45.39845394238815],[9.218043041586562,45.39844629665525],[9.21805015484709,45.39843879415958],[9.218057267345246,45.39843109364015],[9.218064213678902,45.39842337543473],[9.218070916532804,45.39841546866938],[9.21807732587303,45.39840765247441],[9.218083645914898,45.398399872453815],[9.218090043201233,45.39839224530472],[9.218096491349472,45.39838455505044],[9.218103003516294,45.39837690067823],[9.218109477767063,45.39836935439145],[9.218116156300265,45.398361771710285],[9.218122834762513,45.398354171026604],[9.218129538672041,45.398346543290636],[9.218136370205427,45.39833887930639],[9.218143482990598,45.39833125979107],[9.21815039059073,45.39832344264175],[9.218156902674105,45.39831577026426],[9.218163440931034,45.39830825985682],[9.218170453953217,45.39830127961001],[9.21817770865285,45.398294019866945],[9.218185065388782,45.398286714923174],[9.218192614079891,45.398279490622905],[9.21820030341307,45.39827229305725],[9.218207992744295,45.398265095491105],[9.218215810079526,45.39825796068815],[9.218223665465166,45.398250753803055],[9.21823150803784,45.398243537940665],[9.218239312141009,45.39823628614666],[9.218246987786483,45.39822885457465],[9.218254292880571,45.39822141470789],[9.218261495692587,45.3982139570336],[9.218268634378656,45.39820643647329],[9.218275568191132,45.39819879928876],[9.218282527346854,45.398191108048685],[9.2182892046594,45.39818321932118],[9.218295470946376,45.39817476430654],[9.218301379908707,45.39816641798699],[9.218306828228297,45.39815789252358],[9.21831143240697,45.398149134641535],[9.218315665135544,45.39814013443768],[9.218319464401292,45.39813137809136],[9.218322688384045,45.398122532831536],[9.218325656319694,45.39811355304334],[9.2183284072642,45.39810462767593],[9.21833086410968,45.39809563986184],[9.218332936937301,45.39808646375693],[9.21833440979549,45.398077423813945],[9.21833572954484,45.39806843816991],[9.218337075261791,45.39805956048979],[9.21833871545701,45.39805084426793],[9.218340853617137,45.398042046085465],[9.218343413845435,45.39803336411204],[9.21834603778153,45.3980246370113],[9.218349020250047,45.3980161162521],[9.218352283519868,45.398007522947836],[9.21835585400888,45.39799908207619],[9.218360319289209,45.397990756511184],[9.218364784568228,45.39798243094597],[9.218369634243166,45.39797439268291],[9.218374636955556,45.39796628211846],[9.21837998504237,45.39795827890801],[9.218386177783584,45.39795064313109],[9.218392523388772,45.397942890047354],[9.218398729214526,45.39793533525493],[9.218405178030787,45.39792784300611],[9.218412433414422,45.39792078127113],[9.218419677162574,45.39791401659516],[9.21842772605833,45.39790731338923],[9.218435762972325,45.3979008172316],[9.218444567051032,45.39789447262763],[9.21845385693871,45.39788820810545],[9.21846300552319,45.39788174582752],[9.21847201308149,45.39787515780237],[9.218481058828036,45.397868533699075],[9.218489784888115,45.39786183819662],[9.218498293021833,45.39785495408603],[9.218506698181145,45.39784787214667],[9.21851479715781,45.39784090780621],[9.218522728481938,45.39783353873463],[9.218530404936567,45.397826341170806],[9.218537618498436,45.39781837939488],[9.218544386170368,45.397810751512],[9.218551191614987,45.39780297953853],[9.218557716118267,45.39779524410588],[9.2185642657219,45.39778739161021],[9.218570572401307,45.397779494572696],[9.218576879078956,45.39777159753481],[9.218582942312757,45.397763520939186],[9.21858881407408,45.397755489714676],[9.218594673161439,45.39774748551748],[9.218600583525465,45.397739526227596],[9.218606519544318,45.397731593891805],[9.218612519685397,45.397723724441036],[9.218618826697584,45.39771591741137],[9.218625274316171,45.397708128114914],[9.218631619584325,45.39770030300918],[9.218638003248799,45.397692495831954],[9.218644323446195,45.3976847967892],[9.218650848408467,45.397677187366],[9.218657424751283,45.39766964985323],[9.21866407875506,45.39766237322434],[9.218671192701903,45.39765509571588],[9.218678780165195,45.39764802432774],[9.218687007790637,45.39764130275937],[9.218695299572671,45.39763465307672],[9.218703462654307,45.397627760609105],[9.218711676630878,45.39762081403679],[9.218719941571681,45.39761383136193],[9.218728231057385,45.39760658760682],[9.21873598366186,45.397599272868625],[9.218744197179538,45.39759220928017],[9.218752743778701,45.397585379083495],[9.218761341411355,45.397578530786355],[9.218769478057432,45.39757141333628],[9.218777063728531,45.39756388288742],[9.218784214902051,45.397556326265594],[9.218790444590406,45.39754835735383],[9.218796636121786,45.397540433520305],[9.218802942672063,45.397532518467585],[9.218809529534198,45.39752440485353],[9.218823477224928,45.39750678096887],[9.218780712688146,45.39749625043177],[9.218769407700238,45.3974934636994],[9.218656025423629,45.397465524940706],[9.218626573690907,45.39745827231358],[9.21861032840704,45.397453235723546],[9.218597011138215,45.397452100025994],[9.218585031385867,45.397449926641485],[9.218572296279621,45.397447349648125],[9.218559792116164,45.39744502424377],[9.218547428145442,45.39744260855891],[9.218535153158772,45.397440075688024],[9.218522865951257,45.39743768685726],[9.218510427231664,45.397435766373235],[9.218498052220678,45.39743380076054],[9.218485676760308,45.397431718132694],[9.21847323728134,45.39742959962122],[9.218460797803296,45.39742748110845],[9.218448510463107,45.3974250562654],[9.218436414836077,45.39742264905722],[9.218424560780454,45.39741993534816],[9.218412782205913,45.39741691545537],[9.218400862021275,45.39741361679672],[9.21838877637071,45.39741048047306],[9.218376563409624,45.3974074614058],[9.218364503833323,45.39740446004668],[9.218352482586853,45.39740145861317],[9.218340397529937,45.3973984753024],[9.21832801896813,45.397395582561785],[9.218315373699651,45.39739310438076],[9.218302933197283,45.39739071581883],[9.218290467974079,45.39738854332982],[9.218278117806681,45.39738638862219],[9.218265959040762,45.3973841705401],[9.218253660395149,45.39738212374504],[9.218241488578146,45.39737983367625],[9.218229124773451,45.39737745396109],[9.218216646260906,45.39737514647242],[9.218203810016316,45.397372839664776],[9.218191333027676,45.39737092822009],[9.21817858860475,45.397369242312315],[9.218165984651389,45.39736753813299],[9.218153444372172,45.39736577982407],[9.218141490933453,45.39736379536655],[9.218129102344777,45.39736161371263],[9.218116739171112,45.39735939600441],[9.21810424875525,45.39735731355443],[9.218091656614892,45.39735535731272],[9.218079051837506,45.39735343709829],[9.218066472475048,45.397351480829485],[9.218054046565825,45.3973495602713],[9.21804187566247,45.397347504208845],[9.21802958987811,45.39734547536741],[9.218017418734592,45.397343356294876],[9.218005170658467,45.3973411653586],[9.217992819959226,45.397338866603064],[9.217980353998984,45.39733649605673],[9.217967850402317,45.397334305603394],[9.217955283444018,45.39733225028624],[9.217942818765085,45.39733021277517],[9.217930392588286,45.39732822019502],[9.217918043380287,45.39732630847709],[9.2179056935168,45.39732422573758],[9.217893343308813,45.39732205298609],[9.21788108236225,45.39731983505767],[9.21786879520811,45.3973174461564],[9.21785644424323,45.39731507537754],[9.217843939930841,45.39731269588828],[9.217831474086116,45.39731035232889],[9.217818894361852,45.397308297021084],[9.21780630179327,45.39730622373408],[9.217793837159881,45.39730419520777],[9.217781385510685,45.397302220662134],[9.217768972225365,45.39730025504327],[9.217756647856264,45.397298154236886],[9.217744463922322,45.39729602615842],[9.217732164693185,45.39729381728801],[9.217719890189018,45.397291392342105],[9.217707410991206,45.39728889577539],[9.217694881966677,45.39728673234386],[9.217682328218963,45.397284784985146],[9.217669838456413,45.39728286450667],[9.21765742507564,45.39728087187239],[9.217645049748219,45.39727880715545],[9.21763275097514,45.39727671528813],[9.217620387873714,45.39727450652717],[9.217607961168405,45.39727236989486],[9.217595483600858,45.39727029636589],[9.217582993499503,45.39726828586723],[9.217570605228895,45.39726617616116],[9.217558254908313,45.39726396736911],[9.217545904519724,45.39726174057366],[9.217533579408542,45.397259441719775],[9.217521241522196,45.39725714288881],[9.217508993242333,45.3972548888918],[9.217496681392962,45.39725271602448],[9.21748444544299,45.39725034498674],[9.217472221822023,45.397247856909566],[9.217460048444945,45.39724514370736],[9.217447772997692,45.39724246670239],[9.217435396204081,45.39724001491691],[9.217422968754988,45.39723768024105],[9.21741054116906,45.39723530955957],[9.217398100635716,45.39723289389573],[9.217385443701462,45.397230685667694],[9.217372864596648,45.39722878332873],[9.217360311320622,45.397226952948344],[9.217347835425821,45.3972253114433],[9.217335359703993,45.39722371494219],[9.21732293422621,45.39722189331605],[9.217310521318682,45.3972200176579],[9.217298031651746,45.397218115140795],[9.21728546532877,45.397216212767944],[9.217272707674423,45.397214391767264],[9.217260104161193,45.3972127864995],[9.217247678688198,45.39721096486517],[9.217235622691094,45.39720887249396],[9.217223514419535,45.397206474182425],[9.217211570758277,45.39720368850848],[9.217199396748883,45.397200804258226],[9.217187058028015,45.3971982803645],[9.217174732153232,45.397195774447354],[9.217162508282119,45.39719321432845],[9.2171504375881,45.39719061791298],[9.217138379258268,45.39718791345919],[9.217126371380187,45.39718503788692],[9.217114542472515,45.39718218897712],[9.217102305555565,45.3971795568675],[9.217090349164165,45.39717678020614],[9.217079417136008,45.39717459567428],[9.217064508667896,45.39717161758598],[9.217052259667543,45.3971691655165],[9.2170399971696,45.39716652444759],[9.217027672237053,45.39716426154323],[9.217015283596819,45.39716204376407],[9.217002831248879,45.39715987111],[9.216990150479363,45.397158103938686],[9.216977495331685,45.3971563547196],[9.216964980722242,45.397154605232586],[9.216952478924094,45.39715286472102],[9.216940015592646,45.39715116013966],[9.216927501088659,45.397149437651706],[9.216914998914543,45.39714759812432],[9.21690257267597,45.39714556942792],[9.216890274337104,45.397143576492155],[9.21687801353677,45.39714137645798],[9.216865906016553,45.39713916713076],[9.2168536449431,45.39713689508542],[9.21684138349252,45.39713452402707],[9.216828956365765,45.39713226129496],[9.216816389046294,45.39713008883848],[9.216803860296727,45.39712797931545],[9.216791255406818,45.39712600495228],[9.216778739985028,45.397124039419275],[9.216766161198889,45.397122209021894],[9.216753595361485,45.397120423604264],[9.216740978557798,45.39711867428631],[9.216728412756318,45.39711689786697],[9.216715834248197,45.39711513947257],[9.216703230291666,45.39711340812837],[9.216690639283767,45.39711172176388],[9.216678010497809,45.39711017948766],[9.216665445867894,45.39710870909754],[9.216652945050557,45.39710722058293],[9.216640355281806,45.397105858251194],[9.216627841998683,45.397104450767635],[9.216615302442847,45.39710285430867],[9.216602876671054,45.39710094259343],[9.21659038705382,45.39709903999883],[9.21657793511349,45.39709696631011],[9.216565495847187,45.39709486559265],[9.216553019111643,45.397092989972954],[9.216540568684316,45.39709131232695],[9.21652813048466,45.39708949063837],[9.216515946023423,45.39708720040951],[9.216503887951546,45.397084549895],[9.216491765828618,45.397081854494765],[9.216479860420389,45.397079032667364],[9.216468095413346,45.3970761745685],[9.216456214770522,45.39707314566578],[9.216444334026036,45.397070089758635],[9.21643235093669,45.397066998039364],[9.216420482113218,45.397063717078986],[9.216408370030427,45.39706030156058],[9.216396386876491,45.39705719183537],[9.216383957932035,45.39705444299732],[9.216371721179202,45.397051837812434],[9.21635934502209,45.39704952992716],[9.216346981264852,45.397047123004654],[9.2163347695874,45.39704439175261],[9.216322583531918,45.397041678453014],[9.216310410219421,45.39703895612695],[9.216298236942377,45.39703624280064],[9.216286025303889,45.39703352054438],[9.216273851994886,45.39703079821441],[9.216261665945224,45.397028084908335],[9.216249492638552,45.397025362575725],[9.21623728100473,45.3970226403143],[9.216225107700383,45.397019917979065],[9.216212921655371,45.397017204667776],[9.216200735577255,45.397014482354095],[9.216188536724202,45.39701176006331],[9.216176350648416,45.397009037747],[9.216164177384165,45.3970063244064],[9.216151991310706,45.39700360208754],[9.216139805306945,45.39700089776945],[9.216127543058864,45.39699830160772],[9.216115293690784,45.39699573242368],[9.216103031753244,45.39699321726885],[9.216090757040682,45.396990702136854],[9.21607849507106,45.39698817797834],[9.216066220360675,45.39698566284365],[9.216053932875285,45.39698314773184],[9.216041670943167,45.396980632570425],[9.216029396201797,45.39697810843076],[9.21601713427184,45.39697559326668],[9.216004872342973,45.396973078101304],[9.215992584863011,45.39697056298284],[9.21598032293631,45.396968047814845],[9.215968048200374,45.39696552366857],[9.215955786275842,45.396963008497906],[9.215943511576311,45.396960493350015],[9.215931236877859,45.39695797820086],[9.215918974956582,45.396955463026224],[9.215906713036386,45.39695294785028],[9.215894438306968,45.396950423696076],[9.215882176388941,45.3969479085175],[9.215869901695916,45.396945393361705],[9.215857639780062,45.396942878180475],[9.215845377865284,45.396940362997924],[9.21583310317551,45.396937847838196],[9.215820828589457,45.39693535968028],[9.215808553970259,45.39693286252002],[9.215796279386353,45.39693037435949],[9.215784004803519,45.39692788619764],[9.215771717411476,45.39692538905753],[9.215759442830786,45.396922900893],[9.215747168251172,45.39692041272717],[9.215734893672634,45.396917924560036],[9.21572261906097,45.39691542739052],[9.215710344484577,45.39691293922072],[9.215698057133173,45.396910451073715],[9.215685795335009,45.3969079628772],[9.21567352072764,45.39690546570237],[9.215661233379464,45.396902977551385],[9.215648958808439,45.39690048937496],[9.215636697014567,45.39689800117318],[9.215624409635428,45.396895504017145],[9.215612135067621,45.39689301583683],[9.215599860466712,45.39689051865407],[9.215587623887531,45.39688794038817],[9.215575400051364,45.39688535309583],[9.215563163406062,45.396882756825164],[9.215550926796046,45.39688016955427],[9.215538690152975,45.39687757328102],[9.21552646632126,45.3968749859834],[9.21551422971458,45.3968723987086],[9.21550199307486,45.396869802431354],[9.215489756470408,45.396867215153904],[9.215477545419212,45.39686462782701],[9.215465308816977,45.39686204054692],[9.215453072181717,45.39685944426446],[9.215440835581717,45.396856856981735],[9.215428637311021,45.39685426962556],[9.215416400713249,45.39685168234019],[9.215404202444777,45.39684909498138],[9.215392092517288,45.396846219418784],[9.215380084014287,45.396843136637976],[9.215368152032408,45.39684001770731],[9.21535639768777,45.39683657440036],[9.215344579395977,45.39683311321035],[9.215281666182314,45.39680524710768],[9.215268057650194,45.39680136622549],[9.215189233039165,45.39677887668209],[9.215112835148556,45.39698550626896],[9.215076014591677,45.39706994308144],[9.215027821978145,45.397214816833234],[9.215021329840974,45.3972885662824],[9.21502443697811,45.39733308902584],[9.214922788032041,45.39732945455717],[9.214920270751099,45.397329360273865],[9.214871898560544,45.39732565266212],[9.214859371065417,45.397323866964115],[9.214846856347258,45.39732208124077],[9.214834328887761,45.397320304541104],[9.214821814171163,45.39731851881499],[9.214809286679186,45.3973167331115],[9.214796759187983,45.39731494740667],[9.214784244507777,45.397313170677506],[9.214771729794311,45.397311384945894],[9.214759202305462,45.39730959923691],[9.214746674817398,45.397307813526574],[9.214734147432232,45.397306054818024],[9.214721620115915,45.39730431411023],[9.214709092766325,45.39730256439998],[9.214696552641334,45.39730081471236],[9.2146840378993,45.39729901997011],[9.214671523124016,45.39729721622536],[9.214659008349521,45.39729541247926],[9.214646493575824,45.39729360873181],[9.214633966026751,45.397291805006944],[9.214621451254633,45.397290001256756],[9.214608936483309,45.39728819750514],[9.21459642171278,45.397286393752154],[9.214583894166873,45.3972845900218],[9.214571379397924,45.39728278626611],[9.214558851853601,45.39728098253297],[9.214546324310074,45.39727917879848],[9.214533809509495,45.397277366037585],[9.214521294743713,45.39727556227638],[9.214508754426404,45.397273758561724],[9.214496239662202,45.39727195479776],[9.214483712122632,45.39727015105637],[9.214471146765337,45.39726848240146],[9.21445858168074,45.397266885753695],[9.21444597837035,45.39726531617954],[9.214433387870798,45.39726375558114],[9.214420797371938,45.39726219498136],[9.21440820687376,45.39726063438016],[9.214395616376281,45.39725907377759],[9.2143830258455,45.397257504172586],[9.214370435349391,45.397255943567245],[9.214357844853968,45.397254382960504],[9.214345254359241,45.397252822352364],[9.21433267664135,45.397251261718914],[9.214320086148,45.397249701107995],[9.214307508431487,45.39724814047178],[9.214294917939505,45.39724657985808],[9.214282327414255,45.39724501024197],[9.214269736923647,45.397243449625506],[9.214257159209893,45.39724188898371],[9.214244581496821,45.397240328340544],[9.214231990940373,45.39723874971779],[9.214219413160759,45.397237171069726],[9.214206835381853,45.39723559242027],[9.214194257603637,45.397234013769406],[9.214181667117868,45.39723245314324],[9.214169076768588,45.39723092851992],[9.214156486419977,45.39722940389521],[9.21414388326194,45.397227870291964],[9.214131292914676,45.39722634566448],[9.214118689791931,45.397224821059545],[9.214106099446013,45.3972232964293],[9.214093496324613,45.39722177182155],[9.214080905946107,45.397220238187444],[9.214068302826053,45.397218713576905],[9.214055712550692,45.397217206943246],[9.214043084252905,45.397215781389455],[9.214030455955752,45.397214355834265],[9.214017827659225,45.397212930277675],[9.214005199363342,45.39721150471973],[9.213992583878142,45.39721008813753],[9.213979968359649,45.397208662552885],[9.213967340065645,45.3972072369907],[9.213954711772274,45.39720581142712],[9.213942096289578,45.39720439483931],[9.213929467997463,45.397202969272996],[9.213916839773793,45.39720156170736],[9.213904211550746,45.39720015414036],[9.213891583294416,45.39719873757085],[9.21387896795047,45.397197356980364],[9.213866327224348,45.39719602144155],[9.21385368646492,45.39719467690029],[9.213841032963836,45.39719334138258],[9.213828392239494,45.3971920058396],[9.213815751515735,45.39719067029513],[9.21380312356871,45.39718933472547],[9.21379048284614,45.39718799917826],[9.213777842090263,45.39718665462856],[9.213765201368869,45.39718531907857],[9.213752510695532,45.397184289658895],[9.213739807212615,45.39718325126059],[9.213727090920152,45.39718220388369],[9.213714336299724,45.397181156576984],[9.213645167474098,45.39717481395861],[9.213613409939619,45.397169130540945],[9.21357124552636,45.39716157630591],[9.213368398359169,45.397134636384095],[9.21319698065096,45.397107637535235],[9.212757427150025,45.397039273150504],[9.212208606254721,45.39695890427648],[9.211730686902921,45.39689702490309],[9.210635069938212,45.39675667647904],[9.210534780776214,45.39674383644708],[9.210466496904301,45.39699325736485],[9.210388639885869,45.39698320228979],[9.210377787708765,45.39698180006788],[9.21010553759069,45.39694662890599],[9.209970394704332,45.396930305937666],[9.209862940297395,45.39691464311081],[9.209863192492554,45.39691374253524],[9.209618761950289,45.39687998636167],[9.209576054821039,45.3968740338469],[9.209086810846486,45.39623035812362],[9.209060107477544,45.39619524850805],[9.20879894586989,45.39597437864232],[9.208810349487933,45.395524715327085],[9.208813528789316,45.39530878137802],[9.208826810761703,45.394914858593474],[9.208837681176963,45.39458781860019],[9.208845017071434,45.39427587994012],[9.208847220992084,45.39423596489121],[9.208821400690717,45.394079374296076],[9.2089084280759,45.394048242513634],[9.20891727805492,45.39403341048676],[9.208920490505232,45.394028039944715],[9.208920508461551,45.39401902977698],[9.2089206925647,45.394010037308064],[9.208921081968679,45.394001287494866],[9.208923336055014,45.393992390258326],[9.208925757512572,45.393983843760296],[9.208928496964218,45.393974918633845],[9.20893064606343,45.39396526549359],[9.208932197631297,45.393956405544294],[9.208933698494391,45.39394765370118],[9.208935352827575,45.39393894658344],[9.208936904493347,45.39393011363725],[9.208938520267496,45.39392134358191],[9.208940174102459,45.39391250144799],[9.208941866031317,45.393903596236434],[9.208943532375722,45.39389468207047],[9.20894516045964,45.393885785976614],[9.208946916893147,45.393877051668724],[9.20894897983633,45.39386828979758],[9.208951017724843,45.39385966298915],[9.208953106184444,45.39385089207019],[9.20895527175941,45.39384224702619],[9.20895752639715,45.393833502807006],[9.208959883667852,45.393824875415035],[9.20896231735833,45.393816184875476],[9.208964852919951,45.39380740413847],[9.208967363062508,45.39379865945234],[9.208969988017124,45.39378986955073],[9.208972868677227,45.393781133188824],[9.208976413722288,45.393772413615515],[9.208979920307655,45.39376365810778],[9.20898262098354,45.3937546160358],[9.208985322420391,45.39374578098836],[9.208988139000336,45.39373699073628],[9.208990968189164,45.39372815545538],[9.208993630171166,45.39371901444127],[9.208995448945252,45.393709865966315],[9.208996819852391,45.39370052028449],[9.208998472777585,45.39369143512038],[9.208999500571016,45.393682585127735],[9.209000465679841,45.39367405929038],[9.209001993864526,45.3936657934573],[9.209004620265201,45.39365739960201],[9.20900788457129,45.39364877055174],[9.209011787776248,45.393640176338685],[9.209015665462463,45.39363159117326],[9.209019300349729,45.39362298844897],[9.209022909950246,45.39361445777984],[9.209026558438879,45.393606080058824],[9.209030282717109,45.39359746816974],[9.209034148881221,45.393589225067736],[9.209038307882977,45.3935807113965],[9.209042568423516,45.393572017516924],[9.209046778590338,45.393563521754146],[9.209051014306556,45.39355502594454],[9.209054811916392,45.393545513807084],[9.209057945373791,45.393536047888816],[9.209060429575006,45.39352720423514],[9.209062158408015,45.393517920906135],[9.209063785568075,45.39350878178108],[9.209065183070152,45.39349972408583],[9.209066465660236,45.393490684602824],[9.209067262986895,45.393481700013396],[9.209068060644661,45.393472805434655],[9.209069063866831,45.39346422551999],[9.209070602988815,45.39345546460325],[9.209072269565148,45.39344662244338],[9.209073871469196,45.393437564374416],[9.209075485982355,45.393428461276685],[9.209077202498557,45.393419303985674],[9.20907840773731,45.393410075619954],[9.209079319110797,45.39340083879012],[9.209080115274418,45.39339153916285],[9.209080567697905,45.39338256420461],[9.209080637392846,45.393373733963955],[9.209081001515786,45.39336506520565],[9.209081713454195,45.3933571789104],[9.209082883413718,45.393348778713396],[9.20908515135104,45.393340187485926],[9.209087289115839,45.39333093941344],[9.20908867134924,45.39332120666042],[9.209098196202582,45.3932849956887],[9.209107986324334,45.3932444996908],[9.209130084062442,45.393167193555186],[9.209139819199178,45.39310830833495],[9.209159567918407,45.39306963035772],[9.20916466097533,45.39304418383784],[9.209114457769823,45.39304519372768],[9.209092294266549,45.39304563928783],[9.209064596989545,45.3930489933217],[9.209031588838474,45.393018629798306],[9.209021564604953,45.39300940394713],[9.20879258332334,45.39294767823142],[9.208791200856172,45.392946933660184],[9.208703021629882,45.392928390193774],[9.208494295490151,45.39287865244463],[9.208193097497745,45.39280665179795],[9.207896235654303,45.3927359026357],[9.207617245464956,45.39266820765998],[9.20754855980402,45.392663039616906],[9.207494061107282,45.39266313847127],[9.207449390607646,45.39266784606288],[9.207448166266492,45.39266841535447],[9.207419085391045,45.39269167300995],[9.207390973748485,45.39271097740221],[9.207365123409707,45.392726812251645],[9.207334989183583,45.39274500415516],[9.20730174581264,45.392761896519715],[9.20727059974808,45.39277938815097],[9.20723550203488,45.3927957617897],[9.207200471426912,45.392816527850336],[9.207162207523144,45.39284048615685],[9.207126748511989,45.39286290017824],[9.207092345505208,45.392887634570016],[9.207054600653203,45.39291382418225],[9.207020755492827,45.39293740539731],[9.20698135965481,45.39296279687147],[9.20694370134015,45.39298822119369],[9.206908646136434,45.39300931124945],[9.206872953490304,45.39303077149355],[9.206837709612318,45.39304917953021],[9.20680656500928,45.39306364664989],[9.206776243144182,45.3930760150096],[9.206740323483073,45.39308076051409],[9.206704926583573,45.393081715584835],[9.206664523496919,45.39308665818961],[9.2066269135236,45.39309382801718],[9.206589565816563,45.39310637103646],[9.20654749551275,45.393120092717226],[9.206508364888744,45.39313770656783],[9.206468520266734,45.39315571774346],[9.206426161987787,45.393171069104575],[9.20638237749427,45.39317715185349],[9.206337475516875,45.393178060948294],[9.206288422025114,45.393172064639344],[9.20624267007005,45.39316054466187],[9.206203473004825,45.393145817449046],[9.206166176725278,45.39313033070216],[9.20613039388898,45.393116479422865],[9.206099816794124,45.39310432897031],[9.206074643235667,45.39309558020705],[9.20604954638776,45.39309388819007],[9.206029235940884,45.39310508617508],[9.206010641200935,45.393124382088764],[9.2059938021732,45.39314519603005],[9.205981889403677,45.393168152370876],[9.205965083377993,45.39319102750828],[9.205946079655439,45.393217336031626],[9.205926845862692,45.393243617962426],[9.205907709767835,45.39327218600235],[9.205892593998337,45.39329615622504],[9.205876163537122,45.39332045285229],[9.205864608511598,45.39333286820747],[9.20573480471075,45.3933276560134],[9.20569430873777,45.393328187885686],[9.205648655949286,45.39332288727649],[9.20557152199862,45.39330625678349],[9.205479481064621,45.39328306418161],[9.205252115199864,45.39322923146658],[9.205175284821669,45.39321876593867],[9.205157992461162,45.393223810580736],[9.20513893858303,45.3932469506601],[9.205114515891927,45.393283368034446],[9.205069966159343,45.39336063262683],[9.205024559249988,45.39344113014424],[9.204999823732338,45.39351834119558],[9.204991857756173,45.39353058801068],[9.204966308401588,45.39356993273897],[9.204895974279232,45.39367819835085],[9.204891379863467,45.39368659563607],[9.20479413444932,45.39386409209075],[9.204675520850309,45.39408221279812],[9.204565337173431,45.39428230703361],[9.20443812146074,45.39452106445436],[9.20431748224009,45.39474508412608],[9.204212892137251,45.394970146151024],[9.204102401537778,45.39517464200998],[9.204021086927785,45.395346240601235],[9.203971593236586,45.395406663434954],[9.20384319335888,45.39561233409844],[9.203830728800492,45.39569907320359],[9.203879754983983,45.39583215758307],[9.20387333496996,45.39586237681864],[9.203808772354963,45.39589635410157],[9.203763987343516,45.395980324410445],[9.203649450267156,45.39605497669335],[9.203516719728224,45.396083242394816],[9.203457818190223,45.39613198026297],[9.203431897929343,45.39620750083243],[9.203397409072242,45.39634126493943],[9.20337811468373,45.39640833065448],[9.203351535756529,45.39653545585036],[9.203357480945286,45.39657590536172],[9.203363174490137,45.39661743545537],[9.203376127663558,45.39671325645868],[9.203383918941116,45.396794702830405],[9.203373431373285,45.39692002619423],[9.203382402877446,45.39708129247718],[9.203399401115213,45.3974432066437],[9.203405730239332,45.39754800452951],[9.203403315499216,45.39754799982138],[9.203046456440209,45.39755764382671],[9.202561118454248,45.39757082667042],[9.202176152748196,45.39758090476322],[9.201933448867928,45.39758671605781],[9.201812965629006,45.3975896019771],[9.20174040162317,45.39751922411285],[9.201666926378625,45.397498002969506],[9.201666313119956,45.39749800405045],[9.201603823977612,45.39749793415537],[9.201575716000983,45.39749790267002],[9.201512076357265,45.39755166149854],[9.201512076389196,45.397551670499595],[9.201464721581063,45.39756804593635],[9.201414796147663,45.397576495884906],[9.201378991360063,45.39758213961011],[9.201345065066704,45.39758428758058],[9.201326242383471,45.397590603490734],[9.20131871137561,45.39759618844066],[9.20129008429158,45.39762633858096],[9.201257676632471,45.3976604468594],[9.201243775792573,45.397656789849336],[9.201231729106597,45.39765357963286],[9.201219655625609,45.397650018418275],[9.201207135933922,45.397646728020966],[9.201194348580119,45.39764361811553],[9.201181358178818,45.3976408956142],[9.20116769200836,45.39763856134806],[9.201154895261956,45.39763640557427],[9.201142278818738,45.39763465453283],[9.201129982197056,45.39763301994246],[9.201117927974217,45.397631285912254],[9.201105987590863,45.39762922764007],[9.201093956659022,45.397626854486305],[9.201081478368161,45.39762442811074],[9.201068834146456,45.397622047031035],[9.201056125885211,45.39761962105683],[9.201043367093646,45.39761735719031],[9.201030647046064,45.39761521026896],[9.201018054347722,45.39761294610776],[9.201005857554787,45.39761063624401],[9.200993827013345,45.3976083710926],[9.20098186095936,45.39760627684798],[9.200969920076496,45.39760407454437],[9.200957851113577,45.39760178245323],[9.200945232486411,45.39759941031602],[9.200932269474944,45.39759720080254],[9.20091908926832,45.39759499166895],[9.200905718119627,45.397592980893975],[9.20089215797108,45.39759171754294],[9.20087771597577,45.397590374728416],[9.200864092583986,45.39758929150761],[9.200850447715142,45.39758936046732],[9.20083700726615,45.39758942906652],[9.200823759574863,45.39758981236537],[9.200810384948493,45.39759042991476],[9.200797355248593,45.397591037856095],[9.200784274888974,45.39759177190063],[9.200771130806903,45.39759255106114],[9.200757884673616,45.39759337540487],[9.200744231036468,45.397594578509405],[9.200731190753956,45.397595807539595],[9.200718343259856,45.39759736027072],[9.200705725960162,45.397598975604495],[9.200693555860171,45.397600599153535],[9.200682011382039,45.39760210458928],[9.20067402963135,45.397603081709725],[9.200666922889374,45.397602203062554],[9.200655663962975,45.3976013587004],[9.200640150833152,45.397600602807664],[9.200597415656768,45.397601064790095],[9.200585216630627,45.39760173425875],[9.20057245548113,45.39760241371263],[9.200560868919505,45.39760285707677],[9.200549292336664,45.397602508323004],[9.200537383349042,45.3976020971428],[9.200525052967942,45.39760174970778],[9.200512479234455,45.39760123167647],[9.200500019152669,45.397600335397236],[9.200487622475844,45.397599303988606],[9.200475506273138,45.39759810106575],[9.200464449736732,45.39759668025791],[9.200452676174326,45.397594819649946],[9.200440799957958,45.39759283320484],[9.200429408350171,45.39759059387792],[9.200417620393841,45.397588274234046],[9.20040636678538,45.39758531457286],[9.200395661794206,45.39758213792262],[9.200387372943144,45.397579362090475],[9.200379013192656,45.39757459713255],[9.200370831389916,45.39756957082972],[9.200364489049361,45.39756445129369],[9.200357964571669,45.39755840496005],[9.200351691333028,45.397551143033745],[9.200346071335176,45.39754434802193],[9.200341751656454,45.397536740631416],[9.200338152845942,45.39753066217027],[9.200335584084277,45.397523213733976],[9.200334257760884,45.39751665423385],[9.200333463371607,45.397508770636435],[9.200333192839489,45.3975008951229],[9.200333880714634,45.397493071937966],[9.200335939519084,45.39748634449028],[9.200338248957358,45.397478230429876],[9.20034137578708,45.39747003392803],[9.20034509025829,45.39746181839483],[9.200348842803018,45.39745353078583],[9.20035332492446,45.397445619946474],[9.200358189632293,45.397437510412125],[9.200363246077139,45.39742942754522],[9.200368852500803,45.39742151473629],[9.200374484570593,45.397413628885616],[9.200379911997265,45.397405680385084],[9.200385326550927,45.3973977049035],[9.200390830377653,45.39738968425964],[9.200395962962567,45.39738145723978],[9.200400826420049,45.3973729966617],[9.200405740377324,45.39736436497356],[9.200410231543502,45.397355400983955],[9.20041418512359,45.39734615890086],[9.200418048951414,45.39733682696355],[9.200422305599476,45.39732657622289],[9.200424915992762,45.39731685943245],[9.200426746847562,45.39730709000074],[9.20042845003526,45.397297347795984],[9.200428083418366,45.39728759121484],[9.20042757648606,45.39727789788734],[9.200426315918657,45.39726825088568],[9.200423915985397,45.39725795779862],[9.200421377834145,45.397248322035985],[9.20041766481662,45.39723884135049],[9.200413134888294,45.39722957812289],[9.20040772458166,45.3972206494789],[9.200401509124617,45.39721165023586],[9.200395194414217,45.39720348827134],[9.200388905670838,45.397195443275585],[9.200382642608597,45.39718743423908],[9.200376353297118,45.397179227223305],[9.200369937083444,45.397171263459896],[9.200363865541755,45.397163218082376],[9.20035797286783,45.3971551723913],[9.200352042057688,45.39714718077347],[9.200345881786722,45.397139333575154],[9.20033976000466,45.39713153131473],[9.20033397040389,45.397123728472394],[9.200328449421123,45.39711601517065],[9.200323324627064,45.39710833717954],[9.200318698135357,45.397100667316835],[9.200314225212491,45.397093069194135],[9.200310428822501,45.39708529886535],[9.200306976754067,45.397077347911],[9.200303345249376,45.39706923525039],[9.20029990516536,45.39706105924664],[9.200296897629219,45.39705236042003],[9.200294234573075,45.397043525973366],[9.2002914819897,45.397034664679985],[9.200288869880984,45.397025785138354],[9.200286283420553,45.39701693255511],[9.20028387592175,45.397008106661914],[9.200281570950036,45.396999370600454],[9.200279446146054,45.39699100326989],[9.20027770380059,45.39698240124041],[9.200275986976122,45.396973790165084],[9.200274410467118,45.3969651158362],[9.200273089131457,45.39695634204822],[9.20027175470268,45.39694747827182],[9.200270419988657,45.39693853348576],[9.200269059437177,45.39692950773474],[9.200267724184393,45.39692040993032],[9.200266363221147,45.396911267165265],[9.200264427366077,45.39690213440755],[9.200262248765986,45.39689300207471],[9.20026007013486,45.396883860740665],[9.200257329610722,45.3968747923991],[9.200254218866766,45.39686580571563],[9.200251121090325,45.39685687301611],[9.200247946817091,45.39684798545605],[9.200244798160483,45.39683911585328],[9.200241649473128,45.39683023724933],[9.20023864135528,45.39682136740045],[9.200236016583919,45.396812514882825],[9.20023341793677,45.396803824339706],[9.200231100712942,45.396795232316464],[9.200228886079163,45.39678674812714],[9.200226697252052,45.39677833590169],[9.200224700129947,45.396769941342875],[9.200223022155999,45.396761474216525],[9.200221267145414,45.39675289921144],[9.20021948598031,45.39674415323057],[9.200217870364959,45.396735253940754],[9.200216279857944,45.39672622859117],[9.200214663482015,45.396717113275535],[9.200212983162919,45.39670798006946],[9.200211303034767,45.3966989008698],[9.20020963603225,45.39668992065956],[9.200208109725363,45.396680985208754],[9.200206621651875,45.39667202268763],[9.200205120485515,45.396662970178035],[9.200202993103625,45.39665386475742],[9.200200699253235,45.39664465161446],[9.200198496041581,45.396635780355815],[9.200195422855014,45.39662656857636],[9.20019195431074,45.39661755551351],[9.200188397604567,45.39660890264988],[9.200184815315717,45.39660024082981],[9.200181373532445,45.39659156976264],[9.200178327552942,45.39658282599387],[9.200175333090902,45.39657419914949],[9.200172287145,45.396565464381574],[9.200169534826218,45.39655666609192],[9.200166911378782,45.39654818261629],[9.200164378696643,45.39654007702925],[9.200161920069842,45.396531233219925],[9.200160753723644,45.39652292721756],[9.200159496549912,45.39651422532436],[9.200157816467891,45.396505155124686],[9.200155688528582,45.396495887683585],[9.200153547655349,45.39648657525938],[9.200150896028603,45.396477344738784],[9.200148002103,45.396468240657825],[9.200145120986043,45.396459145555454],[9.200142215301405,45.39645032953103],[9.200139296936854,45.39644154053208],[9.200136365797222,45.39643275155537],[9.200133472986455,45.39642396251155],[9.200130618409368,45.39641514639735],[9.200127712634108,45.39640630336926],[9.200124589699891,45.39639746972202],[9.200121249448232,45.39638860045031],[9.200117716606526,45.39637946148142],[9.200113852795997,45.39637066513419],[9.200109951071088,45.39636198586788],[9.20010608808757,45.39635342354833],[9.200102532077217,45.396344959704194],[9.200099335792874,45.39633706230199],[9.200096674767758,45.39632878591612],[9.200094026614522,45.39632053651107],[9.200091774136142,45.39631217840039],[9.2000898405816,45.39630368471501],[9.200087881031756,45.39629506505922],[9.200086113248622,45.396286481072494],[9.200084625902653,45.39627771657272],[9.200083151491652,45.39626899705597],[9.200082072976832,45.3962602318412],[9.200081594677966,45.39625139356774],[9.200081116030418,45.39624245628243],[9.200080560315154,45.3962334021172],[9.200079799741124,45.39622422229434],[9.200079025884033,45.39621489847663],[9.200077587488465,45.39620552181421],[9.200075612599436,45.39619617309329],[9.200073637806204,45.39618685137558],[9.200070614848626,45.396177378471414],[9.200067401933797,45.39616838295931],[9.200064214857216,45.39615946841206],[9.200060772580324,45.39615064432222],[9.200057266678584,45.39614189235258],[9.200053773648966,45.39613316736369],[9.200050178476529,45.39612446055557],[9.200046532138142,45.396115735834506],[9.20004288570576,45.396106984110055],[9.200038766851254,45.39609831422165],[9.200034316078082,45.39608971692242],[9.200029890984885,45.39608115558259],[9.200025899861576,45.39607247646928],[9.200022036720402,45.396063860139925],[9.200018173612122,45.39605525281151],[9.2000143360885,45.39604665443935],[9.200010498597754,45.39603806506814],[9.200006686755057,45.39602950265535],[9.200002913938556,45.396021138199075],[9.199999128252202,45.39601274676174],[9.199995687262327,45.396004282712745],[9.199992501442523,45.39599571920509],[9.199989277105852,45.39598710175791],[9.199986065355867,45.39597843028186],[9.199983032342399,45.39596972248876],[9.199980152481915,45.395960969422234],[9.19997731101334,45.39595223429077],[9.199974482384912,45.395943517139045],[9.199971679372485,45.395934817944735],[9.19996899121697,45.39592608254504],[9.199966226375395,45.395917338278196],[9.1999632698967,45.39590859434619],[9.199960300547966,45.395899823433204],[9.199957203504939,45.39589107074557],[9.19995406813529,45.39588231812479],[9.199950907183203,45.39587355654748],[9.199947746390547,45.39586483997548],[9.199944559825344,45.39585606044048],[9.199941296606015,45.39584728103932],[9.199937842066843,45.39583859198371],[9.19993441342899,45.39583000189514],[9.199931100186728,45.39582152861953],[9.199928272395844,45.395813045494435],[9.199925508516708,45.39580457125863],[9.199922731767504,45.39579607004191],[9.199920222931512,45.39578746034338],[9.199917828730275,45.395778751432005],[9.199915395853738,45.39576994357576],[9.199912796511942,45.39576102799672],[9.19991003080002,45.39575203169812],[9.199907239157119,45.395742927431165],[9.199904332310908,45.39573376035747],[9.199901042381011,45.39572464795982],[9.199897472999869,45.39571599510798],[9.199894042854908,45.395706972966366],[9.199890587064363,45.395697923866045],[9.199887081375516,45.39568921689578],[9.199883601587842,45.39568060889253],[9.199880415201404,45.395671874360815],[9.199876936904708,45.395663689407954],[9.199874251374393,45.39565569209387],[9.199871691512163,45.39564710048542],[9.199869092943189,45.39563840093099],[9.199866749479263,45.39562958391613],[9.199864546328147,45.395620703648206],[9.199862343146043,45.39561181437912],[9.199860165389534,45.39560288906109],[9.199858013121947,45.39559394569617],[9.199855375596648,45.39558506618677],[9.199852342371102,45.39557628638094],[9.199849628667897,45.395567542021425],[9.199847170702997,45.39555886022299],[9.199844942861334,45.395550223028245],[9.199842664012245,45.39554161292594],[9.199840295638374,45.395532975976565],[9.199838016568984,45.39552430286656],[9.199836209950677,45.39551555692231],[9.199834531629095,45.39550696377313],[9.19983294210501,45.39549819044622],[9.199831352613101,45.39548942612037],[9.199829724794377,45.3954806618614],[9.199828211831377,45.395471861397304],[9.199826877444536,45.395462979611054],[9.199825619459332,45.39545402568232],[9.199824297374041,45.39544500885755],[9.199822873019759,45.39543597420916],[9.19982114204777,45.395426940096186],[9.199819372685731,45.39541788804796],[9.199817449983557,45.395408827266365],[9.19981554002609,45.395399757461355],[9.199813591805327,45.39539070572539],[9.199811452202335,45.39538172633263],[9.199809453259881,45.39537278269869],[9.199807569458084,45.3953638838693],[9.199805685181886,45.395354850023686],[9.199803941851082,45.39534593294666],[9.199802146721225,45.39533681793512],[9.19980028844159,45.39532791005982],[9.19979837909128,45.39531901127481],[9.199796265393225,45.395310130848884],[9.199794241885883,45.39530146629256],[9.199792192067763,45.39529258575495],[9.199790027300436,45.39528371441918],[9.199788055277867,45.395275157786386],[9.199786325867933,45.39526656472536],[9.199784556991501,45.39525764769249],[9.199782878273892,45.39524893752815],[9.199781377973535,45.39524010103646],[9.199779902971775,45.39523119249142],[9.199778376709334,45.39522223903024],[9.199776773666475,45.39521324969858],[9.199775093811573,45.3952042154953],[9.199773426669593,45.395195163267516],[9.199771733976753,45.395186111084335],[9.199769683311544,45.39517698751708],[9.19976777374958,45.39516802572377],[9.199765928161685,45.39515909082214],[9.1997641338038,45.39515019183551],[9.199762313895091,45.395141292893484],[9.19976046843558,45.39513239399599],[9.199758610200966,45.395123495120764],[9.19975676474263,45.39511459622321],[9.199754766039968,45.395105715595406],[9.199752780081969,45.39509682594421],[9.199750794124597,45.3950879362929],[9.19974866757207,45.39507902888477],[9.199746362255713,45.395070148792044],[9.199743980254382,45.39506125983205],[9.199741572480862,45.39505230790906],[9.199739126602681,45.395043419060386],[9.199736527448907,45.39503453948042],[9.199733902807932,45.39502567794708],[9.199731329428708,45.395016861329886],[9.199728819928607,45.39500804460106],[9.199726374149325,45.39499918275535],[9.199723979378485,45.39499029381709],[9.199721635616068,45.39498137778634],[9.199719036467906,45.39497249820583],[9.199716437257266,45.39496360062312],[9.199713965993858,45.39495475682377],[9.199711545865476,45.394945921936234],[9.199709138671748,45.39493713203172],[9.199706820781687,45.394928305966744],[9.19970472001498,45.394919461520445],[9.199702670604694,45.39491068899352],[9.199700595485517,45.39490187150577],[9.199698775753134,45.39489301756771],[9.199697083777671,45.394884163406594],[9.19969540470497,45.39487534522744],[9.19969355939135,45.394866482332745],[9.199691752373546,45.394857610370025],[9.199689970812633,45.39484871135945],[9.19968806136943,45.39483977656749],[9.199685998714315,45.39483086904627],[9.199683897764631,45.39482197059297],[9.19968209065485,45.39481307162682],[9.199680321967422,45.39480419959694],[9.199678604477956,45.39479535448107],[9.199677002032832,45.39478652716664],[9.19967546416247,45.3947778977644],[9.199674385676529,45.39476911454117],[9.199673639261775,45.394760303735],[9.199672906287407,45.394751681929144],[9.199672594275262,45.39474287936598],[9.199672550709073,45.394734121339944],[9.199672520108367,45.39472541729809],[9.199672810258331,45.39471709974517],[9.199673610387743,45.39470848426482],[9.199674410516915,45.39469986878449],[9.199675199072784,45.3946915953674],[9.199677302596427,45.39468305862251],[9.199679508197557,45.39467448569488],[9.19968186697846,45.39466587649536],[9.199685209921654,45.39465739159401],[9.199688629992059,45.39464904157494],[9.199692113338045,45.39464052042374],[9.19969617209037,45.39463214228627],[9.199700665685834,45.394623898406685],[9.199704981466404,45.39461595187461],[9.199710153493985,45.39460808485802],[9.199716579361876,45.394600737718264],[9.199722407371883,45.39459412971463],[9.199728591925242,45.39458718804639],[9.199735267139998,45.394581721707056],[9.199743820583162,45.39457631509623],[9.199751404822976,45.394571405239205],[9.199760969622018,45.39456659093621],[9.19977060003856,45.39456227158015],[9.19978176488245,45.39455833659268],[9.19979286606864,45.39455446472321],[9.199804145984482,45.394550556536004],[9.19981508184537,45.394546900980295],[9.199826388766061,45.394543406795854],[9.199837631839252,45.39453992172291],[9.199848517417188,45.394536500281276],[9.199860169622156,45.394533104502834],[9.199872396187194,45.394529554700554],[9.199884724670028,45.394525923708734],[9.19989682151226,45.394521816060276],[9.199908966920365,45.39451698823502],[9.199920179394335,45.39451207202731],[9.19993082790441,45.39450663473819],[9.199941590917067,45.39450106223105],[9.199952252578834,45.39449573293061],[9.19996323242299,45.39449006102996],[9.19997398236853,45.39448440753239],[9.199985420384674,45.39447823976655],[9.199995516395932,45.394471912324924],[9.200005164848953,45.394465468650054],[9.20001467314924,45.394459133232985],[9.200024195173963,45.39445306782518],[9.20003396018544,45.3944470740007],[9.200044184131299,45.39444080033795],[9.200053845634365,45.3944344376463],[9.200063328087584,45.394428021260154],[9.200072683037027,45.39442167710523],[9.200081808215113,45.39441538735819],[9.20009092077419,45.394409142638054],[9.20010008433824,45.39440287082465],[9.20010940079427,45.39439648172832],[9.200118589334396,45.394390047849356],[9.200127777808992,45.39438359596741],[9.200136914989116,45.3943770901677],[9.200146153705179,45.39437039516584],[9.200155213815583,45.394363772484745],[9.200164299348014,45.39435711375389],[9.20017347383105,45.39435031984968],[9.200181791940116,45.39434341042833],[9.200189483317398,45.39433629507693],[9.200197111132482,45.39432926984752],[9.200204791031313,45.394322523561605],[9.200212482466343,45.39431542621077],[9.200220263042393,45.394308247693196],[9.20022815761229,45.394300789940445],[9.200236026787783,45.3942933772373],[9.20024394693627,45.39428592843984],[9.200251713459343,45.39427838989932],[9.200259287332306,45.39427056365925],[9.200266466146756,45.39426301714531],[9.200273607204139,45.39425563271735],[9.200280952921442,45.39424831993978],[9.200288439294209,45.39424104292],[9.20029595108906,45.394233729850754],[9.20030337281868,45.394226236915934],[9.200310577140883,45.39421868135335],[9.200317794204906,45.39421111676685],[9.200325152051281,45.39420362394247],[9.200332650140234,45.39419604986184],[9.200340046404378,45.39418858397261],[9.200347455442051,45.3941811180605],[9.200354940622576,45.39417350799644],[9.200362349434043,45.39416597907585],[9.200369387246809,45.3941583067863],[9.200376054251517,45.394150545134416],[9.200382670406583,45.394142855580284],[9.200389197258641,45.39413520218664],[9.200395954194319,45.394127584394184],[9.200402812887235,45.39411984040721],[9.200409173081239,45.394112025283924],[9.200415340402886,45.3941038594539],[9.200421367955057,45.39409590989559],[9.200427664171263,45.3940880678799],[9.200433757916148,45.39408077528769],[9.200440297211966,45.39407303185794],[9.200447040659062,45.39406521606105],[9.200453656731035,45.394057508500566],[9.20046025970808,45.39404971095123],[9.200467080533038,45.39404210204364],[9.200474259608683,45.3940346455272],[9.200481477199396,45.39402724294959],[9.20048877102781,45.394019723223195],[9.200495936941032,45.39401215871483],[9.200502936581028,45.394004540490556],[9.200509808528345,45.39399694049188],[9.20051660426613,45.39398946664227],[9.200523195054988,45.393981840132106],[9.200529529825003,45.39397407005215],[9.200535071086646,45.393965896311634],[9.20054135433839,45.39395800930658],[9.200547893160431,45.39395013985545],[9.200555187065486,45.39394264712796],[9.200562289114815,45.393935091728395],[9.200569148079653,45.39392743774203],[9.20057595609991,45.39391982885023],[9.200582981777224,45.393912354593425],[9.20058996947614,45.39390497941526],[9.20059684181304,45.39389749642526],[9.200603765345148,45.39389004034853],[9.200610765686848,45.39388262914235],[9.200617996333778,45.39387531654439],[9.200625112413537,45.393868121161574],[9.200632548035562,45.39386097022364],[9.200640086208702,45.39385391811782],[9.20064756047117,45.3938468571225],[9.20065498423438,45.393839967236765],[9.200663110992448,45.39383317513007],[9.200671403892315,45.39382640073366],[9.20067935109127,45.393819410915775],[9.200686953066429,45.393812340692676],[9.200694567751468,45.393805252444494],[9.200702118621273,45.39379818231],[9.200709861438092,45.393791201849616],[9.200717693776141,45.39378424823508],[9.200725615508153,45.39377728546198],[9.200733741867039,45.39377038533725],[9.200741880744816,45.39376341318096],[9.200749981230826,45.39375642308915],[9.200758030390613,45.39374937007889],[9.200766066677565,45.39374229008722],[9.200774141129543,45.39373516502231],[9.200782483003197,45.393727796456936],[9.200790710246368,45.39372052710458],[9.200798310285043,45.39371291680926],[9.20080552645598,45.39370513616564],[9.200812691714413,45.39369740961769],[9.20081980596492,45.39368971016217],[9.200826690097827,45.39368196610452],[9.200833906802016,45.3936743384774],[9.200841315962222,45.393666944541444],[9.20084895552257,45.3936596762164],[9.200856364806224,45.3936523182838],[9.200863569363962,45.39364487069877],[9.20087018536222,45.39363717211482],[9.200876788551493,45.393629464551815],[9.200883698856737,45.39362190046735],[9.200891146552516,45.39361456946839],[9.20089859427821,45.39360724747001],[9.20090536379434,45.393599611622356],[9.200911352548086,45.39359156309313],[9.200917354011791,45.393583496538966],[9.200923675239379,45.3935755374366],[9.200930098795254,45.39356761415864],[9.200936458281607,45.39355963698606],[9.200942587491717,45.39355157020622],[9.200948627177214,45.39354347657982],[9.200954539043998,45.39353536517533],[9.200960246408304,45.393527227126356],[9.20096591566794,45.393519152151924],[9.200971533983912,45.39351112227236],[9.20097744667218,45.39350324489471],[9.200983628086473,45.393495493060584],[9.20098980946722,45.39348773222499],[9.2009960035579,45.39347995336449],[9.201002261842,45.393472264402206],[9.201008788597123,45.393464628974705],[9.201015302670763,45.39345702057254],[9.201021803967336,45.3934494121924],[9.201028113313951,45.3934417141378],[9.201034141092347,45.39343387255946],[9.201040386240432,45.393426084605615],[9.201046669553403,45.39341825157868],[9.201053170108498,45.39341043617196],[9.20106002865697,45.39340270114592],[9.201066938049848,45.39339489402102],[9.201073911062386,45.39338701477482],[9.20108071770735,45.39337905481036],[9.201087358175997,45.39337106813417],[9.20109393505314,45.393363162579526],[9.201099860548053,45.39335530317509],[9.201105773521011,45.39334751580143],[9.201111699363242,45.39333975540823],[9.201117190270496,45.39333183375884],[9.20112340630741,45.39332304672551],[9.201129036145765,45.393314674774565],[9.201134208271847,45.39330692470625],[9.201139750624531,45.39329910197773],[9.201145535801544,45.3932913058255],[9.20115133352909,45.39328344664288],[9.20115723281962,45.39327540725875],[9.201162850574356,45.39326723335228],[9.201168417194525,45.39325905053424],[9.201173971101587,45.393250885740585],[9.201179512359323,45.39324275697343],[9.20118507922976,45.39323464616323],[9.201190646130486,45.393226544353816],[9.201196277033466,45.39321847843608],[9.201201946164959,45.3932103854475],[9.201207666395849,45.39320229236868],[9.201213808559224,45.393194297560086],[9.201220128968497,45.39318613141604],[9.201225797455562,45.39317785840461],[9.201231171791381,45.3931694958989],[9.201236533382271,45.39316114241648],[9.201241421554046,45.39315258274037],[9.20124605466602,45.393144149528595],[9.201250585670387,45.39313574349962],[9.201254707833913,45.39312732918844],[9.201259072757594,45.39311892345123],[9.20126352713852,45.393110526557635],[9.201268058169521,45.39310212952905],[9.201272576392055,45.39309372352161],[9.201277350309207,45.393085371070946],[9.201282213779132,45.393077054467135],[9.201287154026584,45.39306877373252],[9.201292171051534,45.393060528867146],[9.201297252078733,45.3930523198935],[9.201302371812947,45.3930442188651],[9.201307721531514,45.39303612643294],[9.20131314796365,45.39302805186787],[9.201318548811917,45.393019968346366],[9.201323987984278,45.393011884757165],[9.20132952916533,45.393003746981364],[9.20133507021718,45.39299557320099],[9.20134057275035,45.39298734548131],[9.201345793844547,45.392979010243],[9.201350886929909,45.39297060322063],[9.20135617234379,45.39296239388454],[9.201361509048409,45.39295423846471],[9.201367037570927,45.39294613671387],[9.201372578611755,45.39293796293158],[9.201378106780055,45.39292976216829],[9.201383391930893,45.392921480822245],[9.201388562167317,45.392913217680466],[9.201393655942606,45.39290500867987],[9.201398712093043,45.39289699777025],[9.201404138786227,45.392889004210396],[9.201409629353792,45.392881010537806],[9.201415298836174,45.39287303455225],[9.201421019385759,45.39286504947537],[9.201426752708908,45.39285706437572],[9.201432473574501,45.39284916930901],[9.201438219861151,45.39284123819273],[9.201444094121381,45.3928333698588],[9.201450121905495,45.39282556426218],[9.201456213627646,45.39281777655492],[9.20146235632108,45.39280995275301],[9.20146870335159,45.39280211058871],[9.201495109860355,45.39276972300594],[9.201637180362047,45.39256018730248],[9.201655744115746,45.39252460009715],[9.201659546158332,45.392516006311986],[9.201663370937604,45.39250662038663],[9.201667004600539,45.392497378816195],[9.201670306237695,45.392488173835396],[9.201673147778747,45.392478915658664],[9.201675848952693,45.39246970273498],[9.20167819255116,45.39246052644603],[9.201680204156478,45.39245139574795],[9.201681998648658,45.39244228343483],[9.201683729105056,45.392433126228816],[9.201685281508839,45.392424194365084],[9.201686232205038,45.39241490351652],[9.201687106090674,45.392405567797695],[9.201687596819733,45.39239625975765],[9.201688343433593,45.39238705928017],[9.201689065040439,45.39237801186604],[9.201689825547597,45.39236912640381],[9.201690918909373,45.39236043837976],[9.20169205123527,45.3923519303098],[9.20169331153517,45.39234348502209],[9.201695274494915,45.39233504749678],[9.201697594612288,45.392326456322515],[9.20169997796495,45.392317685014],[9.201702284251033,45.39230879682646],[9.201704615990593,45.392299881590624],[9.201706960536443,45.39229097533323],[9.201709305081557,45.39228206907585],[9.20171148367823,45.39227319911545],[9.201713495783096,45.39226421243379],[9.201715507759465,45.392255189747736],[9.201717417311125,45.39224610423431],[9.201719160658826,45.39223698300927],[9.201720903974003,45.39222785278314],[9.201722660063659,45.39221872253443],[9.201723841212438,45.39220957529711],[9.20172486969986,45.39220060835164],[9.201725910450508,45.39219149736635],[9.201726938617595,45.392182440410046],[9.201727902973191,45.3921734015685],[9.201728867328491,45.39216436272695],[9.201729844458493,45.392155323862816],[9.201730693806066,45.39214627622288],[9.201731504828325,45.392137228650434],[9.201732303139265,45.3921281991027],[9.201733139934825,45.39211921449275],[9.201734027894094,45.39211024779483],[9.201734890622774,45.39210137115279],[9.201735741055723,45.39209262954944],[9.201736630101156,45.39208396888823],[9.201737889621327,45.39207530757374],[9.201739148725512,45.39206652924516],[9.201740420060807,45.39205759787569],[9.201741282180272,45.39204855021299],[9.201742105910556,45.392039484615644],[9.201742929736485,45.392030446021515],[9.20174370246221,45.39202140751751],[9.201744411152903,45.39201232412071],[9.201745132490478,45.392003204697026],[9.20174585424345,45.39199420228736],[9.201746588355553,45.39198508284113],[9.201747296981408,45.391975981442094],[9.201748005798875,45.39196693404951],[9.201748983114369,45.39195794919141],[9.201750203377824,45.39194902691285],[9.201751423704847,45.39194012263641],[9.201752669645373,45.39193123631706],[9.2017541840836,45.391922412532196],[9.201755698681222,45.39191363375267],[9.201757187920293,45.39190490902468],[9.20175897117483,45.391896237785],[9.201760945957272,45.39188753920409],[9.201762933258285,45.39187876859196],[9.201764933109823,45.391869934949725],[9.201767022289483,45.39186107414648],[9.201769111468495,45.391852213343164],[9.201771200614886,45.39184334353871],[9.201773404639212,45.39183444652825],[9.201775723381548,45.39182547730631],[9.201778041899317,45.39181644507674],[9.201780194214233,45.391807377135635],[9.201782180550195,45.39179833649065],[9.201784141591478,45.391789367899364],[9.201786077370077,45.391780480362755],[9.201788345680027,45.39177170025327],[9.201790601502154,45.39176300117599],[9.201792895840248,45.39175435603756],[9.20179519040149,45.39174577390665],[9.201797409335832,45.39173747994545],[9.201800086983491,45.39172885213303],[9.201803108561815,45.39171994467865],[9.201805912613795,45.39171093859536],[9.201808806217235,45.39170196835856],[9.201813373877197,45.39169314818814],[9.201817463980905,45.391672168323204],[9.20181739272485,45.391652113914496],[9.201810540523232,45.39163278255668],[9.2018027123964,45.39160843928612],[9.201797824917373,45.391595558277594],[9.20179308838922,45.39158561137346],[9.201791003315831,45.39158124049805],[9.201758882790317,45.391536885531856],[9.201726792927873,45.39149755313703],[9.201646192303842,45.391428206436025],[9.201546215033174,45.39135962290454],[9.201489981050162,45.3913239514286],[9.201475223198237,45.39130874749182],[9.201436104063983,45.39126845526887],[9.201398681536928,45.39123105841224],[9.201366862410403,45.3912031118775],[9.20133496372467,45.391185147736124],[9.201326665810125,45.39117956362987],[9.201318276591392,45.3911734486165],[9.201310179823032,45.39116694603899],[9.20130240092711,45.39116001984812],[9.201294494380857,45.39115312088474],[9.201286677323859,45.391146239765625],[9.201279242970225,45.39113920495333],[9.201271922570896,45.39113188190366],[9.201264218036837,45.39112430749742],[9.201255901080593,45.391116950195205],[9.201247392281513,45.39110953022186],[9.201239229806907,45.39110250568881],[9.201231118688561,45.391095553073924],[9.201223020410751,45.3910886184382],[9.201214947620702,45.391081665754754],[9.201206797897026,45.39107463219578],[9.201198635815079,45.391067715672754],[9.201190079502572,45.39106130390611],[9.201181792163553,45.39105508969092],[9.201174795875067,45.39104909823353],[9.201167221854446,45.39104229768904],[9.201159480871121,45.39103524540567],[9.20115148410755,45.39102811256125],[9.201143256794639,45.391020809099956],[9.201135029961943,45.39101364065427],[9.201126688222232,45.39100649041227],[9.201118371811052,45.390999277117146],[9.201109505991836,45.39099203778372],[9.201100973402017,45.39098510390263],[9.201092657857629,45.390978133634796],[9.201084610521361,45.39097114489274],[9.201076665703711,45.39096424598128],[9.201068951056522,45.39095740967276],[9.20106137737947,45.39095069913191],[9.20105482708574,45.390944382842314],[9.201048070071835,45.39093740983243],[9.201041108313282,45.3909303381694],[9.201034171022798,45.39092296042423],[9.201026631441879,45.39091505266967],[9.201018760070284,45.39090724451007],[9.20101055703551,45.3908995719497],[9.201002430874338,45.39089196226169],[9.200993999172827,45.39088465014737],[9.200986105827605,45.390877850151604],[9.200978608596436,45.39087107646295],[9.200971583267672,45.3908640859175],[9.200964582948725,45.39085694230837],[9.200957786390237,45.39084961831809],[9.200950835740745,45.39084206956959],[9.20094384670525,45.39083450288574],[9.200936755633077,45.39082698138639],[9.200929677464865,45.39081949586851],[9.200922663331296,45.39081205524338],[9.200916109789741,45.39080481183405],[9.20090958157643,45.39079750537192],[9.200903283245934,45.39079018050341],[9.200897342290602,45.390782764995734],[9.200891490632435,45.390775313326294],[9.200885881217738,45.39076772621417],[9.20088050111258,45.39075995867637],[9.20087541396762,45.3907519475932],[9.20087007056614,45.390743720932356],[9.200864701616819,45.390735494316104],[9.200859090204437,45.39072734013439],[9.200853300107074,45.3907192312717],[9.200847484302844,45.39071107744822],[9.200841681020378,45.390702851593296],[9.20083567359916,45.39069469810552],[9.20082964075759,45.390686580666596],[9.200823723049043,45.39067850803092],[9.200817907635129,45.39067046221882],[9.200812130769664,45.39066247934677],[9.20080648203449,45.390654604263126],[9.200801011414544,45.390646521840424],[9.200795515055884,45.39063838545576],[9.20078994173259,45.390630159194565],[9.200784151114178,45.390621897309785],[9.200778270692973,45.39061352756867],[9.200772326082003,45.39060506792844],[9.200765399382265,45.39059705106708],[9.20075846067332,45.39058925025372],[9.200751714286113,45.39058164712749],[9.200745708608492,45.39057397969324],[9.200740279923512,45.390566914322655],[9.200734811325464,45.39055939896492],[9.200729801662304,45.39055161276752],[9.200724740297549,45.39054365563898],[9.20071961442483,45.390535518600565],[9.200714411301352,45.390527210675764],[9.200709118343392,45.39051878589355],[9.200703352406961,45.39051027192932],[9.200697754164635,45.39050221672878],[9.200692245950648,45.39049433239164],[9.200687184628109,45.39048638426242],[9.200682136113429,45.390478445111626],[9.200676946951933,45.390470470202715],[9.20067184654659,45.39046230611396],[9.200666360868565,45.390453566627784],[9.200660722437174,45.39044498042859],[9.200654625106434,45.390436674069285],[9.200648681867914,45.390428592467785],[9.200643096670428,45.39042060925071],[9.20063776788906,45.39041288661669],[9.200632348987334,45.39040496611539],[9.200627184466878,45.39039673012788],[9.20062236533956,45.39038862855155],[9.200617584505697,45.390380517906756],[9.200612790676049,45.39037234427651],[9.200607702745538,45.39036409015149],[9.200602627718274,45.39035587200821],[9.200597424914573,45.3903476450875],[9.20059194138883,45.39033950867015],[9.200585202520251,45.390330402330264],[9.200579297976251,45.390322419669786],[9.200573457211592,45.39031440989373],[9.200567616448579,45.39030640011735],[9.200561762880842,45.39029838136197],[9.200555858375267,45.39029040770129],[9.20054992819504,45.390282398080736],[9.200543972340187,45.39027435250035],[9.200538029198068,45.39026628889501],[9.20053204789275,45.39025827036197],[9.20052610507177,45.39025029676685],[9.200520162347791,45.3902423501746],[9.200514117460562,45.39023441276229],[9.200508008384379,45.39022638545075],[9.200501477049706,45.390218160853735],[9.200495048644314,45.3902101431022],[9.200488684240709,45.39020216124265],[9.200482256347234,45.39019428750771],[9.200475803255834,45.39018651282908],[9.20046936329022,45.39017883713964],[9.20046325597348,45.390171304885186],[9.20045710988994,45.39016364668238],[9.200451078620375,45.39015594327235],[9.200445213040668,45.39014813155809],[9.200439334560972,45.39014028386154],[9.200433455892341,45.39013238215817],[9.200427615390238,45.39012443538189],[9.200421749181857,45.390116443644686],[9.200415895590904,45.39010840687933],[9.200410016420737,45.390100361157344],[9.200404137284002,45.39009232443612],[9.200398207018972,45.390084278802995],[9.200391944331514,45.39007615274151],[9.200385694706176,45.390068107667055],[9.200379279394527,45.39006017089611],[9.200372889856023,45.39005229708768],[9.20036655163972,45.39004448619691],[9.200360290167671,45.39003670217487],[9.200354195020342,45.39002898987029],[9.200348188788501,45.39002113339143],[9.200342271726107,45.390013204747],[9.20033636712246,45.39000518606904],[9.20033074305231,45.38999702288134],[9.200324978559168,45.38998888694264],[9.200319226937438,45.38998077798448],[9.200313092748091,45.3899728587198],[9.20030697139847,45.38996495743456],[9.20030086285682,45.3899570651277],[9.200294626825558,45.38994924505281],[9.200288339856622,45.389941470072436],[9.200282078533657,45.38993372205024],[9.200275868405678,45.38992600094149],[9.200269875128814,45.389918189441424],[9.200263868888692,45.389910323956855],[9.200257811266596,45.38990237755163],[9.200251612999661,45.389894395387685],[9.200245171162093,45.38988617061894],[9.200238844804625,45.38987808966591],[9.200232467795141,45.389870134817144],[9.200226117097918,45.38986239594935],[9.200219907683381,45.3898548728613],[9.200214285453312,45.389847222729394],[9.200208561568106,45.3898397257945],[9.200202453085405,45.389831842483254],[9.200196255151221,45.389823950327035],[9.200190146608495,45.389816049012936],[9.200184178808922,45.38980821046022],[9.200178274661402,45.389800308787805],[9.20017277872818,45.38979224438039],[9.200167321056549,45.38978416190348],[9.200161940223682,45.3897761332987],[9.200156623296463,45.38976811358299],[9.20015140901061,45.38976021970345],[9.200146208071562,45.38975248782084],[9.20014180003946,45.38974500658289],[9.200137134203974,45.389736868712475],[9.200132710196858,45.3897284783869],[9.20012818355132,45.38971996222471],[9.200123656463191,45.38971132004715],[9.200119256772307,45.38970257863403],[9.200114538069965,45.3896939367912],[9.200110254969161,45.38968565423194],[9.200106342519245,45.3896774250311],[9.200102723883038,45.38966919531622],[9.200099092410017,45.38966094762144],[9.200095384354729,45.38965271806272],[9.200091766831417,45.389644803385444],[9.200087943554541,45.38963650201885],[9.20008464333375,45.38962800171231],[9.200081534064893,45.38961931204775],[9.200078373128534,45.38961046045292],[9.200075007231401,45.389601447195886],[9.200071500182428,45.38959225416272],[9.200067875374847,45.389582269235],[9.200063894658344,45.38956916153362],[9.200052908988502,45.38955114245644],[9.20003757152404,45.38953797360052],[9.2000036680703,45.389523487027546],[9.199970885066351,45.38951520027228],[9.199950833419335,45.38950554108768],[9.199921388659662,45.38949115471179],[9.199911933285211,45.38948688669017],[9.199901979519833,45.389482565531694],[9.199891578271297,45.38947813714048],[9.19988089551215,45.38947357422297],[9.199869764985134,45.38946882306273],[9.199858468202583,45.389464018184896],[9.19984696715802,45.389459249667375],[9.199835236365965,45.38945453555679],[9.199823275858119,45.38944988485417],[9.199810538487833,45.38944591059255],[9.199797711825108,45.38944197249006],[9.199784566880298,45.389438340980604],[9.19977064621202,45.389435709950774],[9.199756814997523,45.3894330877642],[9.199743111338467,45.38943041134646],[9.199729344663165,45.38942797806784],[9.199715490055558,45.3894259679947],[9.199701737739101,45.38942398474473],[9.199687998925764,45.38942220849579],[9.19967438795224,45.38942045902553],[9.199660690659174,45.38941959181611],[9.199647223115972,45.3894186701973],[9.19963401087147,45.38941769412457],[9.199621015823903,45.38941672667252],[9.199608199713305,45.38941578591024],[9.199595524437823,45.389414934912274],[9.19958297712811,45.38941414669762],[9.199570532077217,45.38941337630555],[9.199558137713186,45.38941248880883],[9.199545768487296,45.38941148425214],[9.199533361381281,45.38941060577615],[9.199520890435245,45.389409736411224],[9.199508368360371,45.38940885813298],[9.19949585849128,45.38940781781153],[9.19948343658943,45.38940636328286],[9.199471077738433,45.38940467461325],[9.199458706113766,45.389402985964566],[9.19944633423701,45.38940122530588],[9.199434050802164,45.38939918545627],[9.199421855777823,45.389396857414766],[9.19940964794848,45.389394520393125],[9.199397427250947,45.38939215638917],[9.199385231566144,45.38938963932092],[9.199373035914004,45.38938713125247],[9.199360814682562,45.38938461422613],[9.199348580646214,45.38938208821967],[9.199336409566943,45.38937930106911],[9.199324212497899,45.389376387946534],[9.199311913140214,45.38937344799744],[9.199299524268302,45.38937048119952],[9.19928697008846,45.38936773071558],[9.19927421360357,45.38936557465789],[9.199261520991604,45.38936341848756],[9.199248943476396,45.38936129811995],[9.199236443208301,45.38935934863813],[9.19922404586224,45.38935760600198],[9.199212159776614,45.38935594348455],[9.199200043594855,45.389354236360774],[9.199188053484917,45.389352051955775],[9.19917611283232,45.3893493994041],[9.199164005798215,45.389346657129344],[9.199151451440834,45.389343852623945],[9.199138783882246,45.38934155237814],[9.19912617972334,45.389339117003445],[9.199113727501466,45.38933629431382],[9.199101249795152,45.389333489669504],[9.199088582114726,45.389331153413735],[9.19907521373688,45.38932935844421],[9.199062190425941,45.3893276078785],[9.199048943642616,45.389327702933976],[9.1990359149699,45.38932806764273],[9.199023461018134,45.38932839534572],[9.199010891686823,45.38932860623323],[9.198998396069234,45.389327979885],[9.198986441584111,45.38932502129873],[9.198974372067722,45.38932204490896],[9.198962162601882,45.38931923078182],[9.198949877342114,45.38931665981598],[9.198937745722771,45.38931418759424],[9.198925577641045,45.389312246501916],[9.198913827868264,45.389309377563514],[9.198902217700851,45.38930624734813],[9.198890671469636,45.389303135022686],[9.198878665645713,45.38930010450521],[9.198866507097751,45.38929723627252],[9.198854348519507,45.3892943590374],[9.198842228328632,45.38929149973654],[9.198830222856305,45.38928856822595],[9.198818383609597,45.38928568143092],[9.198807464969532,45.38928303606586],[9.198796329008648,45.389280346071615],[9.198785765470202,45.38927696199392],[9.198776130367568,45.389272406153836],[9.19876722460241,45.389268191089286],[9.198757256581809,45.389263410797454],[9.1987477718789,45.38925802658875],[9.198739167821834,45.389252415821],[9.198730819285267,45.38924681360994],[9.198722456527536,45.38924079737045],[9.198715028346712,45.389235364581396],[9.198708478638594,45.38922908415889],[9.19870118553175,45.38922209393685],[9.19869349541412,45.38921481636728],[9.198685639483692,45.38920761109427],[9.198678167950709,45.389200738195434],[9.198671155194466,45.38919354945955],[9.198664947318616,45.38918638632908],[9.198658483012993,45.38917895360926],[9.198653372286387,45.38917137452064],[9.198648925386522,45.38916366826332],[9.198645233055537,45.389156212727656],[9.198642087661655,45.38914808115671],[9.198639606786237,45.38914002044109],[9.19863750772537,45.38913155401121],[9.198635804260437,45.389122969879566],[9.198634100449809,45.38911428673604],[9.198632421810686,45.389105495535006],[9.198624057364082,45.38907706644866],[9.198619501671985,45.38906747013913],[9.198614730076779,45.38905823424987],[9.198609628962794,45.38904974602718],[9.198604336424365,45.38904131214337],[9.198598865833777,45.38903310359688],[9.198593229304544,45.389024931342725],[9.198587375361875,45.389016687456504],[9.198581559995565,45.38900851551215],[9.198575617045156,45.389000388794614],[9.198569508408017,45.38899237037804],[9.198563438284292,45.388984405901105],[9.198557138224796,45.38897644182286],[9.19855079956102,45.388968396801005],[9.198544154158517,45.388960307305375],[9.198536103993948,45.38895233726175],[9.198526967921975,45.38894434209831],[9.198518067357517,45.388937939727626],[9.198510213941226,45.3889314365269],[9.198502512119802,45.38892444700094],[9.198494605722907,45.38891740382251],[9.19848639287081,45.38891039717974],[9.198478128923599,45.38890339062501],[9.198469621826714,45.38889625847545],[9.198461063949289,45.38888921642478],[9.198452174508622,45.38888233696908],[9.198442508039943,45.38887608894029],[9.198433314347547,45.388869876095285],[9.198424771265088,45.38886341008929],[9.198416342618609,45.38885679086474],[9.1984077859484,45.388850090851335],[9.198398986977653,45.388843508272245],[9.198390367540352,45.38883712340632],[9.19838200362187,45.38883074709778],[9.198374124153148,45.38882409091334],[9.198366155329248,45.388817452885526],[9.198357815770594,45.38881073448959],[9.19834954033667,45.38880408799103],[9.198342083149022,45.388797638098566],[9.198334867165618,45.38879075573259],[9.198328022266052,45.38878405274585],[9.198321034337331,45.38877662991517],[9.198312537508254,45.388768768643466],[9.198301751701674,45.38876022725154],[9.19828873555651,45.38875316591118],[9.19827815312025,45.38874799059168],[9.19827010294097,45.38874365699046],[9.198262971472344,45.38873902475899],[9.198255310763267,45.388732818244264],[9.198247636904664,45.388726503738084],[9.198239564721701,45.38871952383701],[9.19823137706997,45.38871240011716],[9.198222755629942,45.38870543016764],[9.19821398077549,45.38869842447868],[9.198205474967402,45.38869164335151],[9.198197033158165,45.38868489811738],[9.198188757321823,45.38867812559176],[9.198180685906639,45.38867136171256],[9.19817256298824,45.38866448090714],[9.198164414523347,45.38865760014539],[9.19815627892885,45.38865074636416],[9.198148220044501,45.38864391045179],[9.198140276067358,45.38863705633756],[9.198132625554024,45.38863010270201],[9.198124808318402,45.38862296033071],[9.198116901445436,45.38861575510601],[9.198108854026648,45.388608541123006],[9.19810097210978,45.388601164832316],[9.198092707313656,45.3885938882165],[9.198084648539211,45.38858707930282],[9.198077765465342,45.388580403370334],[9.198069435046664,45.388572622802464],[9.19806073803815,45.388565950009074],[9.198052731372556,45.38855942903943],[9.198044710899065,45.38855261105544],[9.198036587951432,45.38854571223799],[9.198028157954155,45.38853867893422],[9.198019944806695,45.38853155524312],[9.198011565973161,45.388524539851886],[9.198003034259123,45.38851764173939],[9.197994553800825,45.3885107885433],[9.197985831324944,45.3885041337905],[9.197976930576996,45.38849764136605],[9.19796805550494,45.38849118490103],[9.197959257080086,45.388484728302714],[9.197950432826557,45.38847819073809],[9.19794173587789,45.38847152693659],[9.197932924214456,45.38846493534198],[9.197924252880982,45.38845828949707],[9.197915798397121,45.38845155326502],[9.197907458726153,45.38844477182795],[9.19789910622028,45.38843797241024],[9.197890740879531,45.38843115501178],[9.197882273472752,45.3884243737938],[9.197873640505303,45.38841773687983],[9.197865033182287,45.38841112692423],[9.197856617254482,45.38840445362904],[9.197848354367965,45.38839770805943],[9.197840014618942,45.38839089961411],[9.197831624245431,45.38838422627285],[9.197823271788916,45.38837743585055],[9.197814868269074,45.38837065451706],[9.197806336852862,45.38836382839831],[9.197797793103302,45.3883571283163],[9.197789376846693,45.38835035600408],[9.19778097336626,45.38834358366915],[9.197772825621751,45.38833688290067],[9.197764587833346,45.38833000226441],[9.197756337304112,45.38832313065069],[9.19774792080684,45.388316286326656],[9.197739466333786,45.38830954108015],[9.19773098625177,45.38830277787503],[9.197722544619545,45.38829605060738],[9.197714077378373,45.38828930538109],[9.197705661329787,45.38828258706908],[9.197697296223168,45.38827582366275],[9.197688930930601,45.388269006249274],[9.197680539966473,45.38826215287491],[9.197672097813841,45.38825527258497],[9.197663528203712,45.38824847352485],[9.197655060788758,45.388241674287556],[9.197646695537628,45.38823486587199],[9.197638458343025,45.388228147246046],[9.197630093346396,45.38822141083795],[9.197621766329716,45.38821457535105],[9.197613221998246,45.388207695233206],[9.197604052581791,45.38820105922512],[9.197594488202641,45.38819472093604],[9.197584949937399,45.388188544621705],[9.19757606359296,45.38818249319679],[9.197567814516713,45.38817602661822],[9.19755956544235,45.388169560039],[9.197551634752593,45.38816281387407],[9.19754358822124,45.38815581587653],[9.197535119426073,45.388148611581215],[9.197525179763035,45.38814087875704],[9.197515026009691,45.388134028413624],[9.197504173844555,45.388128376426906],[9.197494741986345,45.388123406074406],[9.197487825785055,45.3881181883482],[9.197479705501895,45.3881120185786],[9.197471749625636,45.38810537146408],[9.197463627249826,45.38809859862034],[9.197455249018404,45.38809171820387],[9.19744669210796,45.38808488310078],[9.197438135199587,45.38807804799709],[9.19742970590917,45.38807117666792],[9.197421353734596,45.38806444022226],[9.197413116591457,45.38805772157977],[9.197405300057142,45.3880507321767],[9.19739745778891,45.38804368881063],[9.197389398425575,45.38803666382079],[9.19738103261111,45.38802967536366],[9.197372756467534,45.388022758760336],[9.197364301863983,45.38801595047798],[9.197355694129753,45.38800918746483],[9.197347265172255,45.38800240614039],[9.197338721656475,45.38799574202775],[9.197330331744359,45.387989167660976],[9.197322017728338,45.38798237713529],[9.19731371611323,45.38797547857385],[9.197305043895549,45.387968535645165],[9.1972966271928,45.38796160127636],[9.197288414502205,45.38795455854146],[9.19728006142387,45.387947552052545],[9.197271823564305,45.38794061737351],[9.197263624122728,45.38793370963107],[9.197255514445429,45.38792690074589],[9.197247340805985,45.387920064966956],[9.197238950259395,45.387913301570464],[9.197230495656985,45.387906484276904],[9.197221658209688,45.3878997756564],[9.19721278331722,45.38789331913173],[9.197204010650495,45.387886871431284],[9.197195812474734,45.387880323727465],[9.197187613738489,45.387873614003475],[9.197179606271359,45.38786680493665],[9.19717145854149,45.38786006812011],[9.1971632471932,45.38785340342179],[9.197155265311189,45.38784660331032],[9.19714750068366,45.38783982982733],[9.197139684180913,45.3878328314046],[9.197131892978309,45.387825760928614],[9.197124165366775,45.38781860933229],[9.197116807579821,45.38781127707534],[9.197109475436541,45.38780397177716],[9.197102232557292,45.387796621319005],[9.19709505317538,45.38778916273734],[9.197087745930071,45.38778166837087],[9.197080260068793,45.387774237319604],[9.197072570792901,45.387767085653614],[9.197064996297902,45.38775987978254],[9.197057319362804,45.387752602078265],[9.197049412559611,45.387745342771645],[9.197041070161518,45.387737715167695],[9.197032486495232,45.387730502031204],[9.197023240454909,45.38772383010334],[9.197014212074583,45.38771730181821],[9.197005069978712,45.38771113377389],[9.196995876913595,45.38770500182116],[9.196986964660384,45.38769880637619],[9.19697819226791,45.38769242166574],[9.196969483653856,45.38768600984136],[9.196961935854278,45.38767912795863],[9.19695498674998,45.387671758983],[9.196948573407017,45.38766417305728],[9.196944241168241,45.38765627751012],[9.196884557818398,45.38766283404685],[9.196851396158605,45.38766648256181],[9.196810994311537,45.38767091761977],[9.196802525931588,45.38767484768363],[9.196791368678047,45.38767695513941],[9.196781102362095,45.387678124942916],[9.196769354322457,45.38767931529596],[9.196757723111348,45.38767735504661],[9.196746104643884,45.38767538577297],[9.19673485578198,45.38767317283179],[9.196723360349742,45.38766984417159],[9.196711775376103,45.38766647965961],[9.196700470341272,45.387662799625126],[9.196689227900242,45.38765875043506],[9.196678061730916,45.38765459309906],[9.196666971708709,45.38765029161278],[9.196655740987168,45.38764593636036],[9.196644395737485,45.3876417073197],[9.19663303787126,45.38763752330532],[9.196621782292198,45.387633366117434],[9.196610551888975,45.38762910087145],[9.196599244936875,45.38762486275931],[9.196587797721632,45.38762069689624],[9.196576491240089,45.38761659379823],[9.196565286827594,45.38761245451912],[9.196554311352156,45.38760802680909],[9.196543081176983,45.38760382456407],[9.196531659673788,45.38759970365689],[9.196520148972237,45.387595645909755],[9.196508778630596,45.38759154291474],[9.19649743362065,45.38758737686701],[9.196485922519333,45.38758320210226],[9.19647428480045,45.38757935159492],[9.196462660168418,45.3875755910754],[9.196451175740554,45.38757174030249],[9.196439920312335,45.387567619100935],[9.196428651925025,45.387563443913734],[9.19641748485989,45.38755901651939],[9.19640624149489,45.38755468826755],[9.196395036453556,45.387550359948776],[9.19638386970477,45.38754602256202],[9.19637279200221,45.38754157700768],[9.196361727075361,45.38753713143023],[9.19635057301237,45.38753276701504],[9.196339291615693,45.38752851983211],[9.196327958969258,45.38752422773029],[9.196316268653144,45.387519936241034],[9.196304770228368,45.38751572543165],[9.196293081626294,45.387511929],[9.19628149555966,45.38750823140383],[9.196269998663595,45.38750446164433],[9.196258539904395,45.38750063781145],[9.196247182965411,45.38749670578903],[9.196235686353774,45.38749301703589],[9.196224164444402,45.38748940033422],[9.196212794922602,45.387485522336796],[9.196201615892791,45.387481319970384],[9.196190385613342,45.38747707268509],[9.196179027440486,45.387472780612214],[9.196167619012654,45.387468731655275],[9.19615591715817,45.387464791213965],[9.196144368872593,45.38746093151848],[9.196132858755105,45.3874570267507],[9.196121246354258,45.387453095153624],[9.196109761632504,45.387449145334266],[9.196098365926177,45.38744507834629],[9.196086906320609,45.38744100246554],[9.196075434315523,45.38743703461864],[9.196063872956442,45.38743308492593],[9.196052286237435,45.38742918928242],[9.196040725285354,45.38742535660158],[9.1960291514677,45.387421496938174],[9.196017590456632,45.387417646252814],[9.196005851636576,45.38741409290861],[9.195994049414015,45.38741067468899],[9.19598229819553,45.38740722937733],[9.19597061041355,45.387403657939835],[9.195959087856115,45.38739984318722],[9.195947590692908,45.38739598338424],[9.195936246321953,45.38739197930019],[9.195924939808823,45.38738784013295],[9.19591364604024,45.387383691941665],[9.195902352180191,45.38737951674595],[9.195891058166614,45.387375296543716],[9.195879751256644,45.3873710403578],[9.195868418676328,45.387366748210155],[9.19585688239734,45.387362654435236],[9.19584510381848,45.38735867808879],[9.195833389731533,45.38735488165359],[9.195821612583106,45.3873513193549],[9.195809950339576,45.387347738856064],[9.195798364679105,45.38734414022265],[9.195786982565565,45.3873402982089],[9.195775574998748,45.387336483241],[9.19576415469055,45.38733267729487],[9.195752848853058,45.38732872713346],[9.195741555884117,45.38732480395236],[9.195730300990446,45.38732080869585],[9.195719198424262,45.38731653414213],[9.195708070032827,45.38731217862127],[9.195696826708712,45.387307832297054],[9.195685353610603,45.38730353137036],[9.195674033677369,45.38729919417603],[9.195662688415014,45.38729492003192],[9.195651178054264,45.387290925204475],[9.195639667974106,45.387287011385624],[9.195628208867253,45.38728306147392],[9.195616813290695,45.38727901243987],[9.195605340979236,45.3872749365324],[9.195593779716821,45.38727099579301],[9.19558214209136,45.38726713619326],[9.195570491817495,45.38726331261859],[9.195558752530548,45.38725960620967],[9.195546962211417,45.38725591788909],[9.195535095405207,45.38725227470373],[9.195522910987352,45.387249136123934],[9.195510662949063,45.387246069660726],[9.195498363909344,45.387243030286754],[9.19548573550566,45.38724079257609],[9.195473145517626,45.38723858180177],[9.195460593883285,45.387236379961735],[9.195447991928402,45.38723440323486],[9.19543542866771,45.38723253445423],[9.19542291653446,45.38723067458607],[9.195410468178718,45.38722878760418],[9.195398058021702,45.38722686455112],[9.195385647834565,45.387224932495585],[9.195373237524457,45.38722296443436],[9.195360801543572,45.38722096041102],[9.19534835278965,45.38721895640815],[9.195335878581623,45.38721697945079],[9.19532336623841,45.387215056564074],[9.195310841307796,45.38721318770431],[9.195298291077732,45.38721139089551],[9.195285728229248,45.38720963911261],[9.195273228786997,45.38720775220291],[9.19526077991529,45.387205712186145],[9.195248344003991,45.387203726152705],[9.195235895876444,45.3872019021594],[9.19522347332842,45.38720008712221],[9.19521112680607,45.38719809193112],[9.195198767232332,45.387196015750604],[9.19518626705376,45.38719391280518],[9.195173703532268,45.387191962985916],[9.195161178055061,45.387189932090095],[9.195148703705287,45.3871879101068],[9.195136242315803,45.38718594210693],[9.195123819341633,45.387184001043586],[9.195111421885203,45.38718205093431],[9.195099062256755,45.38717995674079],[9.195086664400236,45.38717788961462],[9.195074189870299,45.38717581361662],[9.19506162685111,45.38717400780248],[9.195049076699327,45.38717222896845],[9.195036552096123,45.38717045008948],[9.195024128696138,45.387168383],[9.195011730535889,45.38716622585476],[9.19499930692146,45.387164095754954],[9.194986832644865,45.38716209175616],[9.194974345564361,45.387160078776674],[9.194961833122283,45.38715811984587],[9.194949244284771,45.38715623305309],[9.19493671934846,45.387154355151125],[9.19492422002254,45.38715249520647],[9.19491174615258,45.387150608213666],[9.194899310605127,45.387148721154205],[9.194886925814444,45.387146734994346],[9.194874515692955,45.38714481188431],[9.19486211837707,45.38714289775226],[9.194849720753307,45.38714089360793],[9.194837348431246,45.38713881741],[9.194824988883981,45.387136741189],[9.19481260366637,45.387134629005786],[9.194800307095342,45.3871322916417],[9.194788035887937,45.387129900226235],[9.194775789859031,45.387127400752846],[9.19476359384675,45.38712458615294],[9.19475135960658,45.38712179862024],[9.194739023916977,45.38711922728638],[9.194726586716108,45.38711685414909],[9.194714099006871,45.38711465211818],[9.19470158630608,45.387112612149025],[9.194689150465425,45.387110635055706],[9.194676778032418,45.38710852283601],[9.19466440532275,45.38710632960515],[9.194652007066265,45.387104136416355],[9.194639570581584,45.387101970294744],[9.19462713385117,45.387099732163],[9.194614684532857,45.38709754805818],[9.194602376159862,45.387095489728345],[9.194590271861596,45.38709334103862],[9.194578485585716,45.38709080475759],[9.194566916066144,45.38708815109192],[9.194556227174886,45.387085270898986],[9.194545228629284,45.38708149111709],[9.194534216571558,45.38707749532968],[9.194524479098728,45.38707267827011],[9.194514676371355,45.387067456269094],[9.19450766462243,45.38706033028121],[9.19450159992931,45.38705372474937],[9.194496695133232,45.38704637915168],[9.194492274851935,45.387038771697],[9.194483295180426,45.387027697550124],[9.194328773718047,45.38699179349245],[9.194317293585737,45.3869891216473],[9.194304743190113,45.38698725272041],[9.19429219276453,45.386985374791024],[9.194279642401327,45.38698351486242],[9.194267041374413,45.38698178103453],[9.19425440199591,45.386980038269215],[9.19424177539204,45.38697829548077],[9.19422917455207,45.38697661565529],[9.19421657392823,45.38697499883599],[9.194203986048183,45.38697337299253],[9.194191423778117,45.38697176510655],[9.194178899676489,45.386970112148624],[9.194166452249494,45.38696846806041],[9.194153992049358,45.38696682399251],[9.194141569679365,45.38696503584072],[9.194129134259487,45.38696316669942],[9.194116622166549,45.38696128868573],[9.19410405919429,45.38695947376495],[9.194091432691815,45.38695775796315],[9.194078844542407,45.3869560510961],[9.194066307489166,45.38695434414095],[9.194053821470593,45.38695261909557],[9.194041335452775,45.38695089404886],[9.19402884925127,45.38694911499421],[9.19401637570144,45.38694729991217],[9.194003889163398,45.38694542184277],[9.193991389821592,45.38694353479256],[9.193978890480604,45.38694164774099],[9.193966391171188,45.38693976968913],[9.193953879211657,45.38693792766192],[9.193941367252929,45.38693608563336],[9.193928855264296,45.38693423460234],[9.19391634330719,45.38693239257101],[9.193903831320167,45.38693054153726],[9.193891332138529,45.38692869948153],[9.193878820153135,45.38692684844501],[9.193866308199267,45.38692500640822],[9.19385380902006,45.38692316434838],[9.193841297129227,45.38692134031101],[9.193828785269906,45.3869195252734],[9.193816260637535,45.38691771025603],[9.193803761553657,45.38691589519401],[9.193791236922884,45.38691408017387],[9.19377872506675,45.38691226513074],[9.19376621321141,45.386910450086255],[9.19375370135687,45.38690863504038],[9.193741202276968,45.386906819971465],[9.193728690424019,45.386905004922845],[9.193716178571869,45.38690318987288],[9.193703666720507,45.38690137482149],[9.193691154869947,45.38689955976877],[9.193678643020194,45.38689774471466],[9.19366613117122,45.38689592965918],[9.193653632096888,45.386894114580684],[9.19364110747568,45.3868922995441],[9.19362860840294,45.386890484462874],[9.193616096557157,45.38688866940191],[9.193603584712177,45.38688685433958],[9.19359107286799,45.38688503927586],[9.193578573798437,45.386883224189155],[9.193566061955838,45.38688140912269],[9.193553550083378,45.38687958505377],[9.193541050893561,45.38687773395859],[9.193528551673893,45.38687587386094],[9.193516065259534,45.38687402274143],[9.193503566072152,45.3868721716421],[9.19349106688558,45.38687032054146],[9.19347856769983,45.38686846943943],[9.193466068514878,45.386866618336036],[9.193453582104578,45.38686476720967],[9.193441082890612,45.386862907102426],[9.19342860894931,45.386860965940805],[9.193416147782694,45.386859024756234],[9.193403673843088,45.38685708359187],[9.1933911998737,45.38685513342504],[9.193378725935801,45.386853192257966],[9.193366264772582,45.386851251067924],[9.193353803610208,45.386849309876524],[9.193341342448692,45.38684736868377],[9.193328868514183,45.38684542751121],[9.193316407354361,45.38684348631574],[9.193303933421557,45.386841545140484],[9.193291485037262,45.386839603920706],[9.193279011075534,45.386837653741594],[9.193266549949724,45.38683572154176],[9.193254075989701,45.38683377135996],[9.1932416276088,45.38683183013475],[9.193229153681084,45.386829888951304],[9.193216705332496,45.386827956724424],[9.193204243996657,45.386825961510134],[9.193191846224725,45.38682387617567],[9.193179410132228,45.386821790904605],[9.19316705028574,45.386819588488564],[9.193154664861959,45.386817377113196],[9.1931423177606,45.38681516567186],[9.193129957886379,45.38681295425068],[9.193117572465482,45.386810742871305],[9.193105212593187,45.38680853144747],[9.193092865495666,45.38680632000071],[9.193080480077645,45.386804108617326],[9.193068120208233,45.38680189718948],[9.193055760339767,45.386799685760224],[9.193043374924635,45.38679747437281],[9.193031015058097,45.38679526294089],[9.193018655192523,45.38679305150771],[9.193006282401196,45.38679079508921],[9.192993935127902,45.38678852962523],[9.192981587855591,45.38678626415984],[9.192969227810453,45.38678399871473],[9.19295688050954,45.3867817242456],[9.192944520466368,45.386779458797754],[9.192932160424176,45.38677719334861],[9.192919813126222,45.38677491887547],[9.192907453085992,45.38677265342361],[9.192895093046758,45.386770387970465],[9.192882732977946,45.38676811351482],[9.192870372940678,45.38676584805896],[9.192858025617095,45.386763564578054],[9.192845678263945,45.38676127209469],[9.192833318137982,45.38675897963152],[9.192820970786826,45.38675668714549],[9.19280861066285,45.3867543946797],[9.192796263283132,45.38675209318986],[9.192783915934957,45.38674980069983],[9.192771555783427,45.386747499228875],[9.192759208406708,45.386745197735046],[9.192746848287715,45.38674290526255],[9.192734500912989,45.38674060376604],[9.192722140795986,45.38673831129081],[9.192709793423244,45.386736009791655],[9.192697446051515,45.386733708291175],[9.1926850859375,45.38673141581193],[9.19267272579396,45.38672911433028],[9.192660365651408,45.386726812847265],[9.192648018314188,45.38672452034252],[9.192640732607972,45.38672316443495],[9.192631775751746,45.38674507029968],[9.192619474342173,45.38677516383494],[9.192580667496939,45.386865672662694],[9.192522579553572,45.3870376022708],[9.192512800897672,45.387039427953795],[9.19250675015948,45.387055721204774],[9.192495856031183,45.387086487443234],[9.192486196849462,45.38712357940767],[9.192477763980111,45.38716067830934],[9.192475428334008,45.38719143014801],[9.192471906214696,45.387233939476964],[9.192475707145139,45.38727372714269],[9.192461143790572,45.38730359943442],[9.192451398779111,45.387315371319964],[9.192448638604423,45.387318850404135],[9.192423402792972,45.387350684887764],[9.192428411613133,45.38738504283295],[9.19243587252187,45.387423015113754],[9.192428171198605,45.38747623382851],[9.192424778779214,45.38748539369715],[9.19242124444263,45.3874941397517],[9.192417684069241,45.38750274183163],[9.192414364540797,45.38751079443664],[9.192410905412151,45.387519117310596],[9.19240729378728,45.38752767447062],[9.192403376347775,45.38753645717337],[9.192399127179668,45.38754535744866],[9.192395234493127,45.387553906079724],[9.192391443479153,45.38756230152021],[9.192388048153024,45.387570606283866],[9.192385866477329,45.38757894501137],[9.192383684648586,45.38758723873335],[9.19238207981323,45.38759617056636],[9.192381124775002,45.38760460624392],[9.19238033619476,45.38761315865644],[9.192379624685017,45.38762183695538],[9.192379143533902,45.38763064088301],[9.192379020481582,45.38763957022456],[9.19237892328204,45.38764858953405],[9.192378685598822,45.38765761808089],[9.192379341974627,45.387666609119925],[9.192380547237107,45.387675482221226],[9.192381943317763,45.38768412097194],[9.192383542685878,45.38769243533964],[9.1923854857948,45.38770040708588],[9.192388385950174,45.38770808018519],[9.192391515612057,45.38771562688246],[9.192394619757199,45.38772318262372],[9.19239789011796,45.387730783091115],[9.19240215667109,45.38773832787639],[9.192406564776158,45.38774617846238],[9.192411152999304,45.387754406793356],[9.192415908475182,45.38776298588747],[9.19242081833847,45.38777188876286],[9.192425371841127,45.387781179286506],[9.192428866532689,45.38779089464444],[9.192431978491937,45.387800754664205],[9.192434324680203,45.38781081399685],[9.192436262800983,45.38782108104205],[9.19243654148486,45.38783170192272],[9.192435837847206,45.38784270250345],[9.19243452303635,45.38785428918637],[9.192428775016642,45.38786570330198],[9.192422415577402,45.38787763151075],[9.192411451527668,45.38788781223936],[9.192395904540929,45.38789887378396],[9.192381898305973,45.387904712072746],[9.192367567687514,45.38790906571653],[9.192353129571503,45.38791185334024],[9.192339227355545,45.38791446003846],[9.192325604644294,45.387916616208024],[9.192312237413423,45.38791877194652],[9.192298984873977,45.387920846480405],[9.192285361428487,45.387922786618965],[9.19227247820808,45.38792452748683],[9.192259658278491,45.38792609722521],[9.192246876548571,45.38792763089336],[9.192234043082063,45.387928975623026],[9.192221220561722,45.38792978026424],[9.192208627700273,45.38793050350796],[9.192196354038101,45.38793118120838],[9.192184297595784,45.387931876544954],[9.192172345537957,45.387933219787236],[9.192160227629703,45.38793462631478],[9.19214795649283,45.38793605110067],[9.192135737243108,45.38793770982785],[9.19212367176861,45.38793951231381],[9.192111912718989,45.387941269278265],[9.192100677679713,45.38794310637207],[9.19209017100558,45.38794501425114],[9.192080367087613,45.38794697495642],[9.19207116495047,45.387949348703266],[9.192062283838156,45.38795221697335],[9.192053134712697,45.3879551577018],[9.19204139491252,45.38795883187022],[9.192032337728742,45.3879625195376],[9.192022897595137,45.38796628885714],[9.192013100120585,45.3879701577882],[9.19200172027055,45.38797450643425],[9.191992487377611,45.387979121510995],[9.191983356645443,45.387983727414465],[9.191972886913797,45.38798901064949],[9.191964050164959,45.387993670065015],[9.191954502627546,45.38799968084379],[9.191947494760148,45.3880049852722],[9.191938638723023,45.3880114989536],[9.191931899473552,45.388016910944174],[9.19192434891433,45.388024169529565],[9.191916951916003,45.38803150886714],[9.191909542141664,45.388038848225634],[9.191901582805452,45.38804610749508],[9.191895179931436,45.38805277907936],[9.191887949232166,45.388060190145254],[9.191880833710762,45.388067664025556],[9.191873373408203,45.388075174488144],[9.191866053162881,45.38808254969823],[9.191859090256363,45.38808982529606],[9.191852523223947,45.38809706422515],[9.191846032560974,45.38810422201552],[9.191839708385384,45.388111505542376],[9.191834062634458,45.38811920198405],[9.191828277035334,45.388127096685025],[9.191822325978881,45.388135171685924],[9.19181605587159,45.38814333723284],[9.19180967128161,45.38815164698953],[9.191803223183799,45.38816006486608],[9.191796301833595,45.388168303512636],[9.191789303350422,45.38817639826978],[9.19178267537583,45.388184510407754],[9.191776174624145,45.38819246931268],[9.19176969865932,45.38820020314709],[9.191763030989529,45.38820791029899],[9.191756375119864,45.388215329394114],[9.191750064514816,45.388222855924035],[9.191743562387089,45.3882304097779],[9.191736574900945,45.38823798244697],[9.19172926830232,45.3882456276595],[9.19172188551248,45.38825340801637],[9.191714451897393,45.38826126946817],[9.191706622129713,45.388269086577445],[9.1916997743295,45.38827641597937],[9.191693308203188,45.38828328568318],[9.191687773768649,45.388289910794896],[9.191682646587342,45.38829608516697],[9.19167840130774,45.38830240207971],[9.191675865942456,45.388308176059404],[9.19167185600161,45.38831609478112],[9.19166765399169,45.38832387880723],[9.191663619563101,45.388332112609646],[9.191658757059598,45.38834101388347],[9.191653370206346,45.38834973601254],[9.191647906918961,45.38835852127732],[9.191642021930376,45.3883672622424],[9.191635755749012,45.38837660692215],[9.191630458611712,45.38838541891122],[9.191624700509337,45.38839390763088],[9.191619184568202,45.38840223392412],[9.191614051122313,45.38841034354917],[9.191609389287596,45.388418146345344],[9.19160513449517,45.388425435394566],[9.191602239253998,45.388430561892825],[9.191600743380919,45.388437756310594],[9.19160021995483,45.3884454261605],[9.191600464315846,45.38845349077503],[9.191601284244229,45.38846177045317],[9.191602117463129,45.38847020312843],[9.191603206500162,45.3884787343879],[9.191604397852561,45.38848730148057],[9.191604952134545,45.3884963557017],[9.191605327760003,45.38850546422884],[9.191606546088527,45.38851445432997],[9.191607866337888,45.388523363250094],[9.191609467711361,45.38853229870288],[9.19161158008418,45.38854124230105],[9.191613577702254,45.38855024909931],[9.191615793180913,45.388559462559016],[9.19161790573791,45.388568460163526],[9.191619723881328,45.38857727823822],[9.191621372863663,45.38858517847968],[9.191624019116373,45.38859333808408],[9.191626639487422,45.38860139871915],[9.19162956853563,45.38861007991605],[9.19163252413515,45.38861905810607],[9.191635249920896,45.38862807268544],[9.191637643850703,45.38863716883085],[9.191640331406523,45.388646210477546],[9.191643478319573,45.388655098335406],[9.191646484140051,45.388663815407774],[9.191649310423692,45.38867232575444],[9.191652570273321,45.388680610346334],[9.191655804271754,45.38868880496995],[9.191658974339163,45.38869698169828],[9.191662438063373,45.38870511292895],[9.191666055109952,45.388713252903784],[9.191669417097682,45.388721519321706],[9.191673455878933,45.38872971259669],[9.191678528920558,45.38873776912183],[9.191683232421262,45.38874609630005],[9.191687553788901,45.3887547481593],[9.191691773844557,45.38876366122131],[9.19169510106981,45.388772980830275],[9.191698402990605,45.388782372490645],[9.191701117448027,45.38879181014086],[9.191703231181528,45.38880114978491],[9.191705306046194,45.38881032747344],[9.191707380972273,45.388819523164095],[9.191709469493423,45.3888289618628],[9.191711716470365,45.38883993049004],[9.191711048087104,45.388850066895664],[9.19171003443345,45.38886009586608],[9.191707461557193,45.388869902420275],[9.19170381460714,45.388879404735086],[9.191701383417799,45.388885772615566],[9.19164256669311,45.38888092951422],[9.191625533739114,45.38887952685939],[9.19154189483068,45.388828738439884],[9.191476953187012,45.3887955609101],[9.191442426161863,45.38876583390426],[9.191421106577728,45.38875090067325],[9.191408042031636,45.38873301025591],[9.191354651498049,45.388689327002],[9.191328615299659,45.38867351952932],[9.191283589171924,45.38864036259266],[9.191260961826396,45.388623982333755],[9.191016019882078,45.38849638625362],[9.191009174032544,45.38849293224197],[9.19099763203292,45.3884871007661],[9.190969036092595,45.38847738225598],[9.19096293049745,45.38848513342843],[9.190956735269449,45.38849282174212],[9.19095071909039,45.38850057276465],[9.190944741171798,45.388508305720705],[9.190938750416857,45.3885160206956],[9.19093298977756,45.38852378929306],[9.190927369622743,45.38853154865462],[9.190922067702473,45.38853897444266],[9.190916971952898,45.38854693095384],[9.190912375545716,45.38855522867503],[9.190907831020489,45.38856376033914],[9.190902852987087,45.38857253575722],[9.190898257483145,45.38858110351059],[9.190893380400492,45.388589509712915],[9.190888004032834,45.38859759270687],[9.19088266583511,45.38860563063118],[9.190877736743861,45.38861376688534],[9.190872845973896,45.38862190307536],[9.19086817227376,45.38863001189959],[9.190863639965835,45.388638381520956],[9.190859082259298,45.388646796190166],[9.190854179616741,45.38865520243338],[9.190849263865877,45.388663509685685],[9.190844539787681,45.38867183462038],[9.19084010963666,45.38868019506914],[9.190835679393626,45.38868852851449],[9.19083167036687,45.388696762244614],[9.19082790462416,45.38870516659054],[9.190824394456063,45.38871359751356],[9.190821306169854,45.38872212674544],[9.190818473579457,45.388730718558755],[9.19081630570307,45.38873944428071],[9.190814393401904,45.388748196579755],[9.190812761438554,45.388756741385045],[9.190811602696858,45.3887654564228],[9.190810825278149,45.38877360375276],[9.190810265656626,45.38878193974346],[9.190810736820563,45.388789103866756],[9.190811874211743,45.38879685195329],[9.190813644633142,45.38880290676947],[9.190818177321182,45.388809857093335],[9.190823256673788,45.388816023406],[9.190829948367877,45.38882301513452],[9.1908368578613,45.38883019552335],[9.19084433030163,45.388837636005896],[9.190851931635807,45.388845418316436],[9.190859021033088,45.38885291344379],[9.190866199701032,45.38886036341609],[9.190874028438076,45.38886738924984],[9.190882112541841,45.3888743786525],[9.190890313461122,45.388881916929314],[9.190898104304708,45.388889068840605],[9.190907250223425,45.388896515528174],[9.190914865346633,45.388904594849066],[9.190920603830207,45.3889130283453],[9.190925995564168,45.3889209133501],[9.190931464066441,45.38892883423116],[9.190937137291836,45.38893685378284],[9.190943106687568,45.388945574929096],[9.190948719100417,45.38895450369698],[9.190953161845602,45.38896509062666],[9.190955116566936,45.38897656382016],[9.19095528085815,45.38898743692515],[9.190954238706102,45.38899662882995],[9.1909532204686,45.38900533463321],[9.19095300652882,45.389013895075934],[9.19095291742773,45.3890215912007],[9.190953570992097,45.38902980815229],[9.19095501565712,45.38903775374939],[9.190956362514958,45.389047004675206],[9.190957443169713,45.38905686812287],[9.190957961391229,45.38906662449548],[9.19095856773226,45.3890759936719],[9.190959173831452,45.38908529083959],[9.190959550446625,45.38909472340735],[9.190959033886866,45.38910446350452],[9.190958476795254,45.38911354658598],[9.190956909652925,45.38912237031996],[9.190955405988515,45.38913107693317],[9.190953902172385,45.38913973854086],[9.19095215579443,45.38914844555901],[9.19095086995819,45.38915734983367],[9.19094949557845,45.3891665152892],[9.190947240403087,45.38917587123851],[9.190943925015809,45.389185246959265],[9.190940343332333,45.389195208198494],[9.19093574893349,45.389204117993934],[9.190930834054814,45.38921269528171],[9.190926059057412,45.38922108331192],[9.190921935853842,45.389229560265726],[9.190918490446869,45.389238261117036],[9.190915007078708,45.389247070045236],[9.190911102064401,45.3892558526734],[9.190907593568742,45.389264787659265],[9.190904199980885,45.38927370445103],[9.190900727295704,45.38928189228216],[9.190897430910178,45.38928932372318],[9.190895717518885,45.38929644648435],[9.190895915475695,45.38930213487533],[9.190896261935727,45.38931019931983],[9.190897030948777,45.38931856009695],[9.190897862382188,45.38932648871516],[9.190899474838233,45.38933494709769],[9.190901228145812,45.38934350425766],[9.190902994621531,45.389352178410505],[9.190905374601583,45.38936095055232],[9.190908075243012,45.38937010920811],[9.190909937765804,45.38938075445046],[9.190910074565075,45.389391051527504],[9.190910132600575,45.389400718656134],[9.190909563691909,45.389410089793124],[9.190908266218196,45.389419336129706],[9.190906993597189,45.389428375398516],[9.190905937838348,45.389437324294065],[9.190904971984057,45.38944641705792],[9.19090399399023,45.389455698865866],[9.1909023005378,45.389464954864074],[9.190900184954183,45.38947404054487],[9.190898106997498,45.389482919136526],[9.190896348158867,45.38949172518666],[9.190894947064178,45.389500548642204],[9.190893533406348,45.38950943512664],[9.19089190279445,45.38951838498099],[9.1908901957169,45.3895273889697],[9.190888513945735,45.38953632090705],[9.190886589822638,45.38954536126235],[9.190884205788825,45.38955439338361],[9.190881694009828,45.38956342571805],[9.190879131132256,45.38957245813758],[9.190876478742013,45.38958146370294],[9.190873570589773,45.389590388684624],[9.19087077716474,45.38959924146573],[9.190868200571876,45.3896079948725],[9.190865828067087,45.38961665792734],[9.190863493491806,45.38962520390406],[9.190861567396102,45.38963365918792],[9.190860049628943,45.38964197877354],[9.190858850739064,45.38965015380898],[9.19085772816298,45.389658229704544],[9.190857742695496,45.3896663577103],[9.1908582429602,45.3896745749172],[9.190858743708903,45.38968293614155],[9.190859500612468,45.3896914949637],[9.19086080757467,45.389700277896814],[9.19086212843067,45.38970939384895],[9.190863143758069,45.389718825350585],[9.19086331639352,45.38972838427386],[9.190863488726611,45.38973785318615],[9.190863277401872,45.389747196722446],[9.190862618818837,45.38975649599911],[9.190861960417047,45.389765849282256],[9.190860535817771,45.389775284853705],[9.190857769896295,45.38978472266242],[9.190854799582,45.38979416081199],[9.190851343684637,45.389803554765706],[9.190847069734374,45.3898128060655],[9.190842284409582,45.38982194120317],[9.190837128229584,45.38983095994432],[9.190831306987544,45.38983974576476],[9.190824731019786,45.38984822680481],[9.190817963099855,45.38985660915197],[9.190811080207322,45.3898649916905],[9.190803045399702,45.389872719066204],[9.190795112423233,45.38988033825781],[9.19078730670613,45.38988781321843],[9.190779308553056,45.38989504546859],[9.190771323142222,45.38990226869582],[9.190763299496476,45.38990951898962],[9.190755070610038,45.389916517593065],[9.190747363573003,45.38992294825417],[9.190739835226461,45.38992933361116],[9.190731295544966,45.38993508157249],[9.190722513327014,45.38994088394426],[9.190715471827664,45.38994769154173],[9.19070852222613,45.38995523707908],[9.190702363616435,45.38996247525892],[9.190696652506674,45.38996982970748],[9.190691631069315,45.38997713800061],[9.190686101368364,45.38998525724323],[9.190681450601415,45.38999262792619],[9.190676675380956,45.3900009799406],[9.190671900128878,45.390009322953766],[9.190667494612157,45.390017449323224],[9.19066293676633,45.39002586398276],[9.190658378888939,45.39003426964107],[9.190653949390091,45.390042864109226],[9.19064944266863,45.39005128768417],[9.190645024703173,45.390059513085994],[9.190641412922997,45.390068151196886],[9.190638361500556,45.39007627530901],[9.190635385637218,45.39008407525421],[9.190634364009206,45.390091790933205],[9.190634439936213,45.390099189743694],[9.190634489861027,45.39010645358041],[9.190636630555836,45.39011244477307],[9.190639696728956,45.39012013563918],[9.190643082871306,45.39012800599491],[9.190647337504242,45.39013582089665],[9.190652037345309,45.39014306798459],[9.190657517916915,45.39015075482731],[9.190663292184432,45.390158405175775],[9.19066941305895,45.390166559010275],[9.190676086202982,45.39017559403577],[9.190681022126714,45.39018466796041],[9.190685511243698,45.39019383264086],[9.19069011240264,45.39020212402382],[9.190694736211462,45.39020955125946],[9.190699896856446,45.39021706761156],[9.190706014328086,45.39022420432082],[9.190712591052044,45.39023115124042],[9.190719203714115,45.39023738700968],[9.19072704334327,45.39024380075615],[9.1907353803373,45.39024996164114],[9.190743894122381,45.390255510153274],[9.19075288180852,45.39026142692146],[9.190762790265289,45.39026763919148],[9.190772205230182,45.39027525646119],[9.19078003808123,45.39028345244094],[9.190788737310331,45.390290962888926],[9.190796720891584,45.39029839351936],[9.19080445936897,45.39030511346785],[9.19081234863413,45.390311086069815],[9.190821065045842,45.39031610317098],[9.190828054225475,45.39032033105184],[9.190837420663684,45.39032490601184],[9.190847961551547,45.390329235981454],[9.190860895437353,45.39033479511464],[9.19087403626003,45.3903411099969],[9.190889617692578,45.390351417311976],[9.190894930632982,45.39036242584313],[9.190898395338214,45.39037465261142],[9.190899119317546,45.390384813689984],[9.190899011857267,45.39039465211469],[9.190898661497462,45.39040443693775],[9.190898155543124,45.390413537933846],[9.190897674744678,45.390422521873084],[9.190897844877938,45.390431333704704],[9.19089862825449,45.39044016251548],[9.190899227402197,45.390447389430825],[9.190902110972894,45.39045394645052],[9.190906031901537,45.390457477356584],[9.190912269488123,45.390462327564734],[9.190920080232846,45.390467733218316],[9.190924728592414,45.39047104688264],[9.190933307006125,45.39047300381804],[9.190939493051747,45.390473920612806],[9.190949466632814,45.39047288684058],[9.190956987450962,45.3904718481597],[9.190965831627704,45.39046925907377],[9.190979630823074,45.390466202658885],[9.19099308307393,45.390462543745144],[9.191009778841842,45.390458510368646],[9.19103150624165,45.390457799010946],[9.191057300730995,45.39046229251786],[9.191070551855363,45.39047100149625],[9.191211751332032,45.39057742012431],[9.191267687881718,45.39062174725678],[9.191339328310296,45.390678523681025],[9.191377215172885,45.390704149570375],[9.191402976704206,45.39072156868974],[9.191398559868242,45.39079077683364],[9.191291066069285,45.3908646579155],[9.191287201659135,45.390866545613896],[9.19127961311769,45.39087024876672],[9.191268568439373,45.39088327387487],[9.19125426633157,45.3909001389117],[9.191234635735544,45.391352991985535],[9.191233939258433,45.3914155330555],[9.191233427868532,45.39146095365148],[9.191233271680773,45.39147527472269],[9.19118999630443,45.391579580213886],[9.191161735894557,45.39162069062032],[9.191085949140449,45.39172536542001],[9.190971952918993,45.391875910732246],[9.1909696677387,45.39188017208401],[9.19096512313884,45.39188875775239],[9.19096094892091,45.39189731579904],[9.190957337103013,45.39190596291831],[9.19095377641416,45.39191461895325],[9.190951557852975,45.39192349777678],[9.190949914467609,45.39193246565173],[9.190951928415025,45.39198052836227],[9.19095718573787,45.39200534472423],[9.190980574393684,45.39205400183964],[9.190999408565531,45.392089299864395],[9.19102538472463,45.39212100351036],[9.19105509270242,45.39214554501558],[9.191082405366451,45.39218337619066],[9.191086063421906,45.3921922722059],[9.191089708552067,45.392201123236916],[9.191093174984236,45.392210019571905],[9.191096245663754,45.392218997577935],[9.19109944388271,45.39222791236293],[9.191103331107199,45.39223657396519],[9.191106503687324,45.3922454617894],[9.191109663432838,45.39225433163263],[9.191114248336048,45.39227291132166],[9.191122232963632,45.392322323225265],[9.191122800679764,45.392331584446346],[9.1911222179131,45.3923406315618],[9.191120727783135,45.392349581180305],[9.19111991491324,45.39235858367438],[9.191118092509374,45.392367497843296],[9.191115234930072,45.392376296726354],[9.191112313444206,45.39238508671496],[9.191109660324976,45.39239390325866],[9.191106355372902,45.39240263087959],[9.191103050419821,45.392411358500425],[9.191099694304816,45.39242006820434],[9.191096274283064,45.39242876901371],[9.19109252195652,45.392437425372265],[9.19108838613383,45.392446010362],[9.1910869010467,45.392448866202294],[9.191082141271384,45.39245805530992],[9.191078031510552,45.39246679327507],[9.191074036391294,45.39247543203613],[9.191069977243933,45.39248402589825],[9.191065534569788,45.39249253939041],[9.19106111735369,45.39250102583649],[9.191056815172782,45.39250953009261],[9.191052615252003,45.392518052179994],[9.191048402524581,45.392526565287525],[9.19104234875694,45.39253465841531],[9.191035169778592,45.39254245638391],[9.191027798808301,45.3925501466589],[9.191019417451525,45.39255749657696],[9.191010971944573,45.39256476559132],[9.190979166472617,45.392562379373075],[9.19091321256885,45.39255988810667],[9.19065408605199,45.3925500858688],[9.190565437609992,45.39257251135317],[9.190562202269337,45.392579168580866],[9.19046917646357,45.39277060660647],[9.190458724259967,45.39278523284786],[9.19039804073332,45.39279251674583],[9.190349993968484,45.39273179401252],[9.19034170603873,45.39270987203175],[9.19035133850444,45.3926526717921],[9.190310046900644,45.39257958824411],[9.190308299080089,45.3925764857592],[9.19025295590676,45.39248844766859],[9.190204932608486,45.3924307942195],[9.190160797658208,45.39243175868811],[9.190127093043019,45.39247262584808],[9.190117564125597,45.392579908219425],[9.190112221047887,45.39264007168831],[9.190035861078206,45.39266985727512],[9.190032602663873,45.39266963765827],[9.189951385312224,45.39266422781318],[9.189911438455152,45.392637848783195],[9.18984158314237,45.39258036643261],[9.189637659481017,45.39239871060895],[9.189629001019254,45.392391983107345],[9.189620342589583,45.39238526460617],[9.18961155671164,45.39237863632686],[9.189602783550743,45.392371990023555],[9.189594303407471,45.39236510020334],[9.18958581049119,45.39235821040368],[9.18957721561672,45.392351392781386],[9.189568493324035,45.39234467438204],[9.189559669133244,45.39233804616216],[9.189550832169447,45.39233141796277],[9.189541969717647,45.392324807807185],[9.189532979877665,45.39231830587554],[9.18952393908965,45.39231184903328],[9.189514885498607,45.39230538321033],[9.189505768244528,45.39229898050005],[9.189496459877082,45.39229273112484],[9.189486947771329,45.39228668011129],[9.189477117251984,45.39228091766056],[9.189467235754494,45.392275191297934],[9.18945736706408,45.39226947391439],[9.189447498315614,45.39226373852776],[9.18943762956915,45.3922580031403],[9.18942776085469,45.392252276753105],[9.189417917602277,45.39224652331946],[9.189408290837358,45.392240562500476],[9.189398651269414,45.39223459270071],[9.189389024508555,45.39222863188007],[9.189379372199628,45.39222267110091],[9.189369490722152,45.392216944729725],[9.189359507286394,45.3922112905355],[9.189349536657673,45.392205645320374],[9.18933955322589,45.39219999112439],[9.189329544366021,45.39219437297418],[9.189319471872956,45.39218882693743],[9.189309373831788,45.39218328094202],[9.189299288537631,45.39217772592356],[9.189289203275443,45.39217217990524],[9.189278697818871,45.39216704863338],[9.189267950508373,45.392162178793626],[9.189257203199707,45.39215730895278],[9.189246481352978,45.392152412065435],[9.18923586134849,45.39214740699501],[9.189225317756154,45.39214232978811],[9.189214774135719,45.3921372435792],[9.189204396052817,45.392131995075054],[9.189194017911891,45.392126728567824],[9.189183512532287,45.392121615289334],[9.18917258704774,45.3921169437601],[9.1891619797415,45.39211191165841],[9.189151716253637,45.39210654594525],[9.189141439902782,45.39210115324901],[9.189139392303856,45.39210007649723],[9.18912901411485,45.39209479198186],[9.189118572232516,45.39208956157764],[9.189108181332292,45.392084295083656],[9.189097905049532,45.392078920385686],[9.189087590533584,45.392073572753354],[9.189077212354249,45.39206828823325],[9.18906683417685,45.39206300371219],[9.189056430481331,45.39205772823349],[9.189046052277844,45.3920524347094],[9.189035674076296,45.39204714118442],[9.189025295846728,45.392041838657384],[9.189014892158946,45.39203656317487],[9.189004526678305,45.39203125162371],[9.188994161199616,45.3920259400716],[9.188983821183013,45.39202060147315],[9.188973646794164,45.392015127583115],[9.18896347237733,45.39200964469112],[9.188953310767399,45.39200417077815],[9.188943200049831,45.3919986337723],[9.188933229499893,45.3919929885205],[9.188923258981875,45.391987352268856],[9.188913186475464,45.39198177919273],[9.188903114000965,45.39197621511673],[9.188893079733678,45.39197061497225],[9.18888296905789,45.391965086962124],[9.188872692668415,45.391959667238226],[9.188862135949506,45.391954464003405],[9.188851566487472,45.39194926978977],[9.188840933272159,45.39194411168494],[9.18883026176377,45.39193896264342],[9.188819348101177,45.39193398502211],[9.188809097093863,45.391928511243755],[9.188798909753995,45.39192297435151],[9.188789117483063,45.39191714877014],[9.188779682045924,45.39191106156623],[9.18877033585615,45.3919049202075],[9.188761027903581,45.39189875178152],[9.188751847373732,45.39189248413201],[9.188742679620885,45.391886216460726],[9.188733499095097,45.39187994880978],[9.188724382326544,45.391873645048356],[9.188715316540264,45.391867305197586],[9.18870625072611,45.39186095634496],[9.188697210404104,45.39185458944736],[9.188688335799823,45.391848114262075],[9.188679473972522,45.39184163905503],[9.188670535617096,45.39183519997803],[9.188661533568286,45.3918288150122],[9.188652607991864,45.391822375912724],[9.188643669642522,45.391815936833595],[9.18863452740413,45.391809651109185],[9.188625538078599,45.39180324811719],[9.188616535920383,45.391796827143395],[9.188613001636822,45.39179430364959],[9.188603974080973,45.39178792772231],[9.188594513254857,45.39178187654938],[9.188584147650932,45.39177650195212],[9.188573756528971,45.39177113639711],[9.188563352634034,45.39176577086217],[9.188552757505365,45.39176052265618],[9.188542136798906,45.391755265490225],[9.188531490514668,45.391749999364265],[9.188521749131965,45.3917440926657],[9.18851208422168,45.3917381318335],[9.188502393703823,45.3917321530404],[9.188493072914346,45.39172594860896],[9.188484172773775,45.39171946444861],[9.1884120398294,45.39165238975384],[9.188402426016077,45.39164641982698],[9.18839381915417,45.39163976415499],[9.188385887901916,45.39163266631432],[9.188376248604568,45.39162671442948],[9.188366201258358,45.391620988243965],[9.188353002183085,45.39161637438552],[9.188352451668294,45.3916160152462],[9.188342950573478,45.39160936104233],[9.188332914874628,45.39160329279148],[9.188322802379307,45.39159717966043],[9.188269257949905,45.39158425212661],[9.188239223274383,45.39158017901877],[9.188226997795379,45.39157637364645],[9.188215100141033,45.39157126256863],[9.188212170216255,45.391569917217296],[9.188201639180212,45.39156471387881],[9.18819098069536,45.39155960076037],[9.188180487868593,45.39155436135255],[9.188169854847922,45.39154922118681],[9.188159209024475,45.39154407204002],[9.188148754289681,45.39153876055756],[9.18813861818379,45.3915332235218],[9.188128647676482,45.39152754219463],[9.188118651710809,45.39152188791186],[9.188108617452281,45.39151624269233],[9.188098787117015,45.391510453118514],[9.188088944008882,45.39150466356479],[9.18807865482496,45.39149918978326],[9.188068301887826,45.39149375211013],[9.18805792334332,45.39148829647586],[9.18804790166308,45.39148258822231],[9.18803896343594,45.39147614909529],[9.18803005073078,45.39146970092448],[9.18802112525277,45.39146325277394],[9.188012250786912,45.39145677753547],[9.188003592989453,45.39145014892098],[9.187994947998675,45.391443529285894],[9.187986302980132,45.391436900649076],[9.187977657963602,45.3914302720116],[9.187969178664929,45.39142353508763],[9.187960712143132,45.391416798141975],[9.187952232878267,45.391410070217745],[9.187943613359973,45.39140342353348],[9.187934815382812,45.39139689415651],[9.187929462330608,45.39139292444535],[9.187920191389283,45.39138630583259],[9.187911047543627,45.39137948898533],[9.187901903610854,45.39137264513405],[9.187892734100815,45.39136579232292],[9.187883551758604,45.391358921529815],[9.187874242027362,45.391352158958746],[9.187864792251297,45.391345540635086],[9.187855278752044,45.39133896742096],[9.18784557428715,45.391332592544465],[9.187835475530544,45.39132674038053],[9.18782536394166,45.39132087023439],[9.187815239580031,45.39131500010835],[9.187805089641056,45.3913091210222],[9.187794965015815,45.39130316988456],[9.187784560625756,45.39129760625403],[9.187774003564515,45.39129223189696],[9.187763382928617,45.39128694765463],[9.187752622336777,45.39128183466257],[9.18774158221771,45.39127718118617],[9.18773047843452,45.39127259082108],[9.18771908237873,45.3912684689936],[9.187707572005463,45.39126454537758],[9.187696048888698,45.39126063078235],[9.187684500342828,45.39125675223226],[9.187672469090892,45.39125370257739],[9.187660399664448,45.39125069798954],[9.18764833023928,45.391247693400416],[9.187636095694057,45.391244977117175],[9.187623784828071,45.39124235997035],[9.187611461158674,45.39123973384199],[9.187599162921163,45.391237071666076],[9.187587042491998,45.391234094157525],[9.187574947465146,45.39123107160034],[9.187562839635039,45.391228040061705],[9.187551062406241,45.39122453992071],[9.187539488506253,45.39122071540436],[9.187527927412347,45.39121689986694],[9.18751634082978,45.391213102372376],[9.187504525341916,45.391209620291605],[9.187492684424704,45.3912061742558],[9.187480830763814,45.39120273724077],[9.18746896424043,45.39119927324223],[9.187457072168876,45.39119580928423],[9.18744512896982,45.39119233640764],[9.187433299943656,45.39118862031205],[9.187421317235279,45.39118478745216],[9.187408707167194,45.39118053256498],[9.187405906128465,45.39117952002391],[9.187394075830792,45.39117541687739],[9.187382818530676,45.3911707457196],[9.187372185357225,45.39116551546813],[9.187362316714697,45.39115968988875],[9.187352549916406,45.39115375612806],[9.187343484131343,45.39114733515735],[9.187335706198908,45.391140182985346],[9.187329899149294,45.3911341077228],[9.187322577996628,45.391126009682544],[9.18730930260621,45.391090440913395],[9.187308237190502,45.39108114448152],[9.187305154783626,45.391072283405876],[9.187302123120721,45.3910633142334],[9.187296182013704,45.391055321946055],[9.187290776647867,45.39104708575076],[9.187275900261879,45.391041250357894],[9.18725681822395,45.391053964190675],[9.187249011759935,45.39106140290461],[9.187242460901588,45.39106995570455],[9.187235539068114,45.3910783560918],[9.187227400394127,45.39108577734555],[9.187218659641685,45.39109269552004],[9.187182275820312,45.391119524428454],[9.187172781136505,45.39112638082473],[9.187162067743792,45.391131691017755],[9.18715113679196,45.39113688455086],[9.187139499517615,45.391140954095754],[9.187127218520356,45.391143512500975],[9.187114911942732,45.39114606194556],[9.187102308549314,45.39114770275915],[9.18710150394428,45.39114776708277],[9.187088310596968,45.39114870677066],[9.187074925834656,45.39114970977799],[9.18706174143777,45.39114948830139],[9.187048466817155,45.391149023939995],[9.187035380825646,45.39114765015378],[9.187022979784619,45.391144790058796],[9.187010933653934,45.391141083275414],[9.187005786420642,45.39113751823565],[9.186996360938597,45.39113047674668],[9.186988363510423,45.39112260481865],[9.186982636887192,45.39111378405981],[9.186979439176879,45.39108152020425],[9.186980479812364,45.39107554174792],[9.186982430159087,45.391066501418045],[9.186986016951282,45.39105784546295],[9.186987673061788,45.39104867959783],[9.187001687961404,45.391033426768864],[9.187007742206115,45.391025351854616],[9.187013668405058,45.391017187137926],[9.187018085993998,45.39100866484102],[9.187021621529878,45.39099996396281],[9.187023981193423,45.390991084983575],[9.187024935451449,45.39098603378524],[9.187026893465829,45.3909754452461],[9.187024727957843,45.39096569155137],[9.187023796564636,45.39095440564595],[9.186994921322961,45.39094538869038],[9.186969213949784,45.39094404452259],[9.186956662288457,45.390945865258445],[9.186944177876834,45.390948712012836],[9.186934876955647,45.39095233666425],[9.186924508936178,45.39095778128804],[9.18691408993414,45.390963261998735],[9.18690391433169,45.39096894933709],[9.186893764572854,45.390974726643734],[9.186884101526282,45.39098089020347],[9.186875117020708,45.3909875027112],[9.18686741221047,45.390994788213796],[9.186861370368483,45.391002755086674],[9.186858854079908,45.39100674670012],[9.186853477707876,45.39101507253146],[9.186847986331687,45.3910233895492],[9.186843338651627,45.39103187621064],[9.186839266160854,45.39104046094524],[9.186835730505662,45.391049134814516],[9.186832488817396,45.39105785320939],[9.186828927580923,45.391066518119096],[9.186825187466752,45.39107517431956],[9.186822418679371,45.3910839639511],[9.186819074788762,45.39109268251237],[9.186815730926734,45.391101410074704],[9.186812450967253,45.39111014653364],[9.186809528878651,45.39111893641511],[9.18680710521347,45.391127788490785],[9.186805307719936,45.391136702552124],[9.186803356869017,45.391145598861456],[9.186802479426616,45.39115459243098],[9.186802023730143,45.391163639318776],[9.186799088773592,45.39117240221751],[9.186797607291876,45.39117641014244],[9.186792592703473,45.3911859865383],[9.186787053576536,45.391195329760514],[9.186779337106188,45.3912029663203],[9.186771377409142,45.391210450257205],[9.186762405569745,45.391217044732855],[9.186752818672717,45.391223073139905],[9.186743001087155,45.391228876894104],[9.18673206842124,45.391233566326065],[9.186721122949109,45.39123824677675],[9.186710382582364,45.39124314291903],[9.186699603770952,45.391248003118434],[9.186688773680908,45.39125280939365],[9.186677738659377,45.3912574539817],[9.186666870241181,45.3912622603174],[9.186655989075891,45.391267075673916],[9.186645684550534,45.39127243015716],[9.186635687447215,45.39127803616993],[9.18662598499105,45.3912838937331],[9.18661629536686,45.391289769276824],[9.186606592906687,45.39129562683834],[9.186605891798624,45.39129608703971],[9.186596343550882,45.39130222338416],[9.186586884991016,45.39130844059182],[9.186577976722791,45.39131495393894],[9.186569132533652,45.39132153018885],[9.186560313921715,45.3913281153975],[9.18655150814169,45.39133471858686],[9.186542804765287,45.391341384616545],[9.186534126995642,45.391348068606064],[9.186525666839712,45.39135488725724],[9.18651794880524,45.3913620647437],[9.186510473904749,45.391369367849244],[9.186503011806742,45.39137667993453],[9.186495741625144,45.39138408171797],[9.186488253914483,45.39139137584175],[9.186480855803204,45.39139872382589],[9.186473828692804,45.39140623322535],[9.186467031912173,45.391413859263864],[9.186460235159263,45.3914214943031],[9.186453144080364,45.39142897680211],[9.186447243071175,45.39143706943898],[9.186442220306338,45.3914441795206],[9.186441304799182,45.39144548617725],[9.18644066806447,45.39144609929204],[9.186421952247025,45.39147318720466],[9.186410937320506,45.3914722960343],[9.186398681150438,45.391466879312595],[9.186381498670471,45.39145514281378],[9.186366358275597,45.3914389294211],[9.186359765417773,45.39143083913455],[9.186353146923521,45.391422721885945],[9.186342314822634,45.391415250579485],[9.186334418994177,45.391407180415534],[9.186330111161652,45.39139857334146],[9.186326301313693,45.39138989344715],[9.186323053324385,45.391381140628745],[9.186319818081408,45.391372378788354],[9.186317361839698,45.391363534669225],[9.186315212077066,45.39135465404645],[9.186313075089954,45.39134577340286],[9.186312023640678,45.39133679197918],[9.186310589064504,45.39132784718382],[9.186308337164604,45.39131898472941],[9.186306085235906,45.391310113273924],[9.186304254759468,45.391301205127625],[9.186302641367266,45.39129226962437],[9.186301028005094,45.39128334312223],[9.186299478488072,45.39127440751491],[9.18629798007086,45.39126547182441],[9.186296481624606,45.39125652713278],[9.186294944883869,45.391247591504595],[9.186294100676472,45.39124337134523],[9.186292359509801,45.39123442704868],[9.18629004377192,45.391225573698875],[9.18628757479598,45.39121673860074],[9.186285016426613,45.39120791264919],[9.186282470862384,45.39119909567786],[9.186279925269426,45.39119026970539],[9.186277520141154,45.39118142550191],[9.186275115013638,45.39117258129838],[9.186272556648225,45.391163755346504],[9.186269742935085,45.391154974815876],[9.18626682708343,45.39114621245371],[9.18626391123267,45.391137450091485],[9.186260995382826,45.39112868772915],[9.186257888000464,45.39111995268191],[9.186254652959645,45.39111124484573],[9.186251417890322,45.39110252800844],[9.186248399904912,45.39109378381426],[9.186245675563523,45.3910849851352],[9.186242964027276,45.39107619543637],[9.186240418446047,45.39106736946282],[9.186238013329207,45.39105852525825],[9.186234931474317,45.39104978116762],[9.186231951789114,45.391041027909466],[9.186229074273536,45.391032265483766],[9.186226209504124,45.391023494036126],[9.186223944825365,45.39101462259926],[9.186221578008169,45.391005769330846],[9.18621919841694,45.390996916083175],[9.186216755011635,45.39098808094152],[9.186213902991643,45.3909793004716],[9.186210974382968,45.39097053812851],[9.18620800748042,45.39096178484878],[9.186205359770753,45.39095297704272],[9.18620272480717,45.39094416021473],[9.186200153659177,45.39093532528052],[9.186197837800544,45.390926426922846],[9.186195559883377,45.390917411488644],[9.186194498222601,45.39091310167074],[9.186192488989231,45.39090421181516],[9.186190926725116,45.39089527622653],[9.186189198448815,45.3908863589103],[9.186187214737224,45.39087746001191],[9.186185243830499,45.39086857009379],[9.186183467465934,45.390860570971824],[9.186181394362498,45.390851681219864],[9.186178657298019,45.39084289156066],[9.186175920204883,45.39083409290032],[9.186173195887338,45.390825294219106],[9.186170522640058,45.39081648645357],[9.186167900492526,45.390807678604865],[9.186165291091035,45.390798861734154],[9.186162707239806,45.390790044821834],[9.186160314921702,45.390781200594425],[9.186157948153786,45.39077235632539],[9.186155581386618,45.39076351205627],[9.1861533039842,45.39075464963945],[9.186151013837287,45.3907457962444],[9.186148532129412,45.39073696116326],[9.186146037647617,45.39072812610278],[9.186143862416287,45.39071925451838],[9.186141533889188,45.390710383183304],[9.186140331065861,45.39070587556932],[9.186138334505165,45.39069694968728],[9.186136478407809,45.39068800557444],[9.186134545603872,45.39067904358403],[9.186134077899078,45.390653265082825],[9.186125388302631,45.39061343117481],[9.186092462785986,45.390522213174776],[9.186092372360864,45.39052190728308],[9.186077764924129,45.39047329788254],[9.18604944250916,45.39039111852752],[9.186074286012296,45.3903277101099],[9.186059909020477,45.39021292395203],[9.18602589526432,45.390194994975936],[9.185815159014334,45.390087854764],[9.185780086563991,45.39006255549988],[9.185732992828834,45.39002541223512],[9.185693077583174,45.38999580925835],[9.185655467229193,45.38997177423362],[9.18558156176442,45.38993524147531],[9.185588931136184,45.38992693947331],[9.185605506099312,45.38991323085663],[9.185636888706098,45.38988446631205],[9.185643702690578,45.38987821746742],[9.185610999095957,45.38987019649661],[9.185596540037073,45.38987464851018],[9.185532654681984,45.38989431158799],[9.185404318293033,45.3899325764182],[9.185234629291816,45.38998227649165],[9.185066462509976,45.390032693941855],[9.184907732872492,45.39008218677974],[9.184758131099809,45.390129918438056],[9.184539260051519,45.390199751414485],[9.184525579781864,45.39020411202489],[9.184505773698344,45.39021426124271],[9.184499145291387,45.390218700490784],[9.184489449752666,45.39022276663563],[9.184477219055204,45.390225054641],[9.184464236204505,45.390227820918],[9.184452710211943,45.39023075586683],[9.184441299014226,45.39023363662262],[9.184429797750315,45.390236319497376],[9.184417392059968,45.39023979592884],[9.184405090814586,45.39024396527841],[9.184393084142823,45.3902483681816],[9.184381473657146,45.39025282445196],[9.184369364551147,45.39025715550861],[9.184357523301067,45.390261360116455],[9.184346385645592,45.39026586962832],[9.184335734708451,45.390270774405174],[9.184324993938363,45.39027555330979],[9.184313766738434,45.390280026958166],[9.18430241217024,45.39028461782535],[9.184291082828233,45.390289109638275],[9.184279651579514,45.39029369162555],[9.184268411889745,45.39029825530096],[9.184257287052922,45.390302782785746],[9.184246366345437,45.39030722893052],[9.184235868015893,45.39031192642612],[9.184225817671855,45.39031689323368],[9.184216368054189,45.39032195808584],[9.18420643416669,45.39032738376236],[9.184196433631739,45.39033195443704],[9.184186187459154,45.39033562539224],[9.184175034141141,45.3903392528009],[9.184163753017117,45.39034286241184],[9.184152047819861,45.390345698606154],[9.184139716869051,45.390348598814164],[9.184127181960568,45.3903516343662],[9.184115033060733,45.39035552440394],[9.184102948207384,45.39035946834424],[9.184091348146536,45.39036321347827],[9.18407965755347,45.390366616713436],[9.184067940797314,45.39036983096555],[9.184056274496797,45.39037284711026],[9.184044722670993,45.39037571005027],[9.184033131178873,45.39037815900051],[9.184021307380744,45.39037987923082],[9.184009432337593,45.39038155453667],[9.183997403706623,45.390383140076835],[9.183985195209864,45.39038441086504],[9.183972909598388,45.390385537757666],[9.183960560113245,45.39038666475167],[9.183948120738874,45.390387647870604],[9.183935616849755,45.39038843306685],[9.183923087411022,45.390389218302765],[9.183910544905924,45.39038991354693],[9.183897898775758,45.39039016790035],[9.183885099291594,45.39039040449663],[9.183872108304339,45.39039067740366],[9.1838590550168,45.39039143647087],[9.183845976587442,45.390392321592934],[9.183832910932301,45.39039320669299],[9.18382000008682,45.390394559602115],[9.183807421847186,45.39039605599374],[9.183795035109943,45.39039751607183],[9.183782532119137,45.39039858028518],[9.18376986404754,45.39039995080099],[9.183756966526794,45.39040147470321],[9.183743891354021,45.390403367935996],[9.18373058725574,45.39040557657469],[9.18371627649235,45.39040856992715],[9.18370440868139,45.39041248647334],[9.183693037362628,45.39041587115408],[9.18368211012831,45.39041831900234],[9.183670340465138,45.39042098422912],[9.183658430279799,45.390423649680166],[9.183646262505537,45.390425667461294],[9.183634094352179,45.390427568227004],[9.183621874663046,45.390429334057],[9.183609577568921,45.39043086598024],[9.183597229230118,45.39043235297865],[9.183584816813834,45.390433777070626],[9.183572301588987,45.39043501230221],[9.1835596700249,45.39043582466552],[9.183546987390944,45.39043664611045],[9.18353426643269,45.39043746761546],[9.183521494520859,45.39043833420648],[9.183508722928458,45.39043929980809],[9.18349592604797,45.39044034645903],[9.183483116392374,45.39044139312908],[9.183470294252325,45.39044252982907],[9.183457511075169,45.39044386449023],[9.183444625729296,45.3904452083149],[9.183431906453215,45.39044655187189],[9.183419225762021,45.39044797637585],[9.183406557873884,45.39044940985907],[9.183393928279992,45.39045083427831],[9.183381336515486,45.39045210561622],[9.183369089607826,45.39045335839785],[9.18335662483336,45.39045439549988],[9.183344096214245,45.39045544170399],[9.18333154277153,45.39045671297498],[9.183318899818568,45.390457957384584],[9.183306180246184,45.39045921091668],[9.18329328214757,45.3904605637458],[9.183280563270952,45.39046203330125],[9.183267908237886,45.390463493751874],[9.183255291789424,45.390465035149575],[9.183242701325069,45.39046671152139],[9.183230085310663,45.39046838793268],[9.183217456695017,45.39047011836963],[9.183204675856738,45.390472182091024],[9.18319204828434,45.390474236564465],[9.183179523575776,45.39047649789807],[9.18316702418336,45.39047868718067],[9.183154536955229,45.390480687418496],[9.183142100795823,45.39048267857207],[9.183129817844373,45.390484642475705],[9.183117419281881,45.390486408537974],[9.183105007421767,45.39048801259967],[9.183092608335603,45.39048961663956],[9.183080183090278,45.39049103169606],[9.183067680442257,45.39049221284535],[9.18305519053937,45.390493384971776],[9.183042661992985,45.39049445814615],[9.183030107954796,45.390495549362186],[9.183017477529138,45.39049672170923],[9.183004629991737,45.3904979124044],[9.182991948379406,45.390499057827114],[9.18297889685225,45.390500374861524],[9.18296628006876,45.390501817215295],[9.182953765423932,45.3905032414021],[9.182941135574648,45.39050459376261],[9.182928505695777,45.39050593712062],[9.182915875816306,45.3905072804772],[9.18290322001018,45.39050850685904],[9.18289050015634,45.390509679335004],[9.182877844262203,45.39051087871077],[9.182865137471682,45.3905121411744],[9.182852494466992,45.39051337653132],[9.18283994065264,45.39051453973517],[9.182827463311952,45.390515648808645],[9.182815062010494,45.390516568735364],[9.182803042384544,45.39051700198948],[9.18279049873656,45.39051735506919],[9.182777814480238,45.390517681368664],[9.18276501568615,45.390518142866746],[9.182752268424814,45.39051873929817],[9.182739380641904,45.39051933595259],[9.182726467338341,45.39051994164743],[9.182713593313794,45.39052084431573],[9.182700821515093,45.390521755820465],[9.18268810078569,45.390522658241096],[9.182675418293046,45.390523533595854],[9.18266271016385,45.390524381986744],[9.182649912698436,45.39052525752219],[9.182637191851677,45.39052612393278],[9.182624266812411,45.390527053675854],[9.182611291831337,45.39052834354271],[9.182598291502854,45.39052969645643],[9.182585648719773,45.390531003792596],[9.182560118350624,45.39053297076913],[9.18249107978938,45.390547662734555],[9.182455651963952,45.390558511593305],[9.182432761082007,45.39057089765197],[9.182384871407864,45.39059565511281],[9.182341168952536,45.3906235022733],[9.182301616129692,45.390646707219716],[9.182266220790751,45.390663730749125],[9.182230812684708,45.390680763288984],[9.182191257714415,45.390699341614926],[9.18215168004467,45.39071483257267],[9.182120439306079,45.39072877105391],[9.182097558149117,45.39074423541905],[9.182089285470374,45.390765842315076],[9.18209561640812,45.39079207056048],[9.182095633835713,45.390817435741724],[9.18210205193521,45.39083099924566],[9.182104354690088,45.390839996719876],[9.182106695625654,45.39084894912755],[9.182108921502742,45.39085787471486],[9.182111121715634,45.390866764338405],[9.18211360277163,45.39087559050701],[9.182116109320189,45.39088439863262],[9.182118628557712,45.39089317973461],[9.182121173403235,45.39090197879804],[9.182123718278405,45.390910786862506],[9.182126173846514,45.39091963107356],[9.182128450799643,45.39092854757793],[9.18213077896795,45.39093750000529],[9.182133209450516,45.39094648827432],[9.182136061327876,45.390955421865755],[9.182139066272459,45.390964283204355],[9.182142122057321,45.39097306345164],[9.182145369176084,45.390981753382945],[9.182148501351769,45.390990452498244],[9.182151697459997,45.39099916951395],[9.182155034120594,45.39100789530698],[9.182158524050678,45.39101661185474],[9.182161950136807,45.39102533750518],[9.18216529954645,45.391034054276425],[9.182168674420105,45.391042744003585],[9.182171883193734,45.39105142499392],[9.182175079135844,45.39106008800232],[9.18217818559769,45.39106873315079],[9.182180794190032,45.39107748710541],[9.182183390066136,45.39108625908253],[9.182186011550357,45.39109504902108],[9.182188888444726,45.39110381154947],[9.182191765339985,45.39111257407779],[9.182194629461332,45.39112133662638],[9.182197825612956,45.39113006264165],[9.18220102185217,45.39113881566011],[9.182204192600503,45.391147586721324],[9.182207427166118,45.391156339678524],[9.182210687195754,45.39116506559171],[9.182213666209398,45.391173800953354],[9.182216466434316,45.39118255460188],[9.182219202930375,45.39119135335751],[9.182221734972464,45.39120013443637],[9.182224279819026,45.39120892449587],[9.182226786399667,45.391217732618514],[9.182229408012246,45.39122655856023],[9.182232042573702,45.39123543848799],[9.182235315675266,45.39124425439093],[9.182238831470741,45.39125306090608],[9.182242360099897,45.39126188540296],[9.182246105729071,45.391270655547274],[9.182250029947227,45.3912793443968],[9.182253877373181,45.391287988362755],[9.18225766078173,45.39129658742491],[9.182261392889922,45.391305123560606],[9.182265469486842,45.39131352413042],[9.18226953319461,45.39132188871607],[9.182272971369267,45.391330389315044],[9.182275707476977,45.391339062053746],[9.182278482170004,45.39134781574115],[9.182280989025191,45.391356704872216],[9.182283445128322,45.39136570209772],[9.18228599088729,45.391374771189426],[9.182288907031333,45.39138381268761],[9.182292269170041,45.39139250243086],[9.182296270370651,45.3914012901685],[9.182300641465913,45.39140989729393],[9.182304986752808,45.39141842345012],[9.182309485021701,45.39142685034982],[9.182314047108516,45.39143525914543],[9.182318583473629,45.39144361397496],[9.182322774687362,45.39145189734515],[9.182327017666255,45.39146038765882],[9.182331209604692,45.39146889605595],[9.18233474938994,45.391477207467005],[9.182338328540903,45.39148584285617],[9.182341843905215,45.39149450535029],[9.182345154439064,45.39150303315358],[9.18234851659352,45.391511722895004],[9.182351904240992,45.391520394593385],[9.182355611724082,45.391529209800176],[9.182359331318688,45.39153781796141],[9.182363089874771,45.391546624085436],[9.182366796725656,45.39155524126779],[9.182370733872602,45.39156396609666],[9.182374581654246,45.39157270907011],[9.182378442096402,45.39158141601868],[9.182382544916182,45.39159001456715],[9.182386787972211,45.39159852288056],[9.182391018167914,45.391607004210904],[9.18239582280241,45.391615349608415],[9.182400997708498,45.39162363140755],[9.182405317303719,45.39163210359368],[9.182409075410817,45.391640765698554],[9.18241334399558,45.39164926496907],[9.182417739984006,45.39165765602269],[9.182422046491476,45.39166602921648],[9.182426301871617,45.39167439349047],[9.18243063439395,45.391682910660684],[9.182435005444718,45.39169149077722],[9.182439580924594,45.39170007956878],[9.182444743648052,45.39170854140797],[9.182450084990862,45.391716930953045],[9.182455668625408,45.391725185094494],[9.182461188097799,45.39173334932649],[9.182466490282165,45.391741477900226],[9.182471651683498,45.39174952568795],[9.182476710742192,45.39175752863294],[9.182480773154222,45.39176547015903],[9.182484900569744,45.391773762625654],[9.18248826212567,45.391782254338466],[9.182491138494719,45.391790827835166],[9.182493784250441,45.391799194673425],[9.182495421797583,45.39180787815926],[9.182496880553668,45.391816579932446],[9.182497955367483,45.39182506629066],[9.182498507275723,45.391833823516876],[9.182499059068471,45.391842544738715],[9.182498714792214,45.391850700318],[9.182498268952264,45.391859054084236],[9.18249696669778,45.39186725619696],[9.182493056816611,45.391874985407945],[9.18248952714752,45.39188176889309],[9.18248373717483,45.39188882601668],[9.18247702650626,45.39189560557292],[9.18246953583979,45.39190216134409],[9.182461328905562,45.39190844822265],[9.182452416454852,45.39191383611191],[9.182442839876945,45.39191927906607],[9.18243294322895,45.39192450650244],[9.182422957096449,45.391929716078266],[9.182412753440575,45.39193481798633],[9.182402306422345,45.39193972225643],[9.182391757029034,45.39194457268191],[9.182381130810615,45.39194936922198],[9.182370389355444,45.39195408493453],[9.18235959671185,45.3919587737242],[9.182348752937624,45.3919634535932],[9.182337857946074,45.391968097538204],[9.182326937344982,45.39197272352071],[9.182316016742108,45.39197734950217],[9.182305095993025,45.3919819304772],[9.182294162264986,45.39198644846378],[9.182283253911919,45.39199091240217],[9.18227220451232,45.391995214543634],[9.182261321821333,45.391999714443585],[9.182250273400154,45.39200432262002],[9.182239161217671,45.39200896690149],[9.182227754486524,45.3920133866225],[9.18221619416486,45.392017716575594],[9.182204941711746,45.39202244208732],[9.182193894118697,45.39202731128998],[9.182183281826498,45.39203247683602],[9.1821729507557,45.39203769594023],[9.182162772752191,45.39204284279073],[9.182152555844585,45.39204780967952],[9.182141928576467,45.39205229115915],[9.182131135087227,45.392056727896666],[9.182120214048183,45.39206122784409],[9.182109178118848,45.39206575497678],[9.18209806562422,45.39207030923361],[9.182086927635478,45.392074881532196],[9.182075828200773,45.39207952577747],[9.182064703156524,45.39208415206009],[9.182053565335435,45.39208877836195],[9.182042491791435,45.3920935305764],[9.18203166174969,45.39209852543311],[9.182020857227238,45.3921035112471],[9.182010116664511,45.39210852396169],[9.181999568301977,45.39211371639234],[9.181989096847168,45.392118989709914],[9.181978625361586,45.392124254025454],[9.181968269195282,45.392129626170274],[9.181957682413408,45.39213479165471],[9.181947121122002,45.39213993909536],[9.181936636565343,45.39214511341646],[9.181926369643527,45.3921504314088],[9.181916371053116,45.39215576697583],[9.181906270058795,45.39216103969686],[9.181896194583853,45.392166303375305],[9.1818857218705,45.39217118963647],[9.181875031460997,45.39217591422224],[9.181864264514731,45.3921806749332],[9.181853497883608,45.39218553465511],[9.181842808333066,45.39219052927056],[9.181832131555682,45.39219552386472],[9.181821467407415,45.39220047343214],[9.181810751897839,45.39220534206993],[9.181800074682766,45.392210201644716],[9.181789358967889,45.39221500727288],[9.181778642819172,45.39221967788366],[9.181767811750845,45.392224366678214],[9.181756929494126,45.39222902854962],[9.18174602180071,45.392233726465015],[9.181735127139685,45.392238505368795],[9.18172427103233,45.392243356219495],[9.181713376569153,45.39224819812886],[9.181702328256456,45.392252869259885],[9.18169136968399,45.39225763925987],[9.181680500621445,45.3922624361201],[9.181669874657366,45.39226734960813],[9.181659197274596,45.392272164164304],[9.181648545353791,45.39227695167564],[9.181637829296857,45.392281658277525],[9.181626895400187,45.39228615819807],[9.181615833779917,45.392290667321376],[9.181604721287819,45.39229524853344],[9.181593993772251,45.392300369201685],[9.18158321521203,45.39230550795215],[9.18157260255312,45.392310592431606],[9.18156159245554,45.39231523648492],[9.181550543915883,45.39231984459364],[9.181539572197442,45.3923245065862],[9.181528689931469,45.39232917743698],[9.181517909778004,45.3923338211213],[9.181506950081515,45.39233824906211],[9.181495939398033,45.39234271308731],[9.181485044148602,45.392347320946534],[9.181474149213683,45.392352027816735],[9.18146375198749,45.39235657187616],[9.181454030602596,45.39236072781414],[9.181442442904542,45.39236452666504],[9.181422868266049,45.39237155158307],[9.181412088699462,45.39237638428035],[9.181401309131033,45.39238121697658],[9.181390529560773,45.39238604967175],[9.181379749988663,45.39239088236595],[9.181368970414724,45.39239571505915],[9.18135819086767,45.392400556752385],[9.1813474754241,45.39240547035209],[9.181336977816045,45.392410590631755],[9.181326467459733,45.392415719931826],[9.181315969847892,45.39242084020952],[9.181305459459047,45.39242596050653],[9.181294949097037,45.39243108980362],[9.181284451479488,45.39243621007842],[9.181273851975202,45.39244142952623],[9.18126339279401,45.392446585742725],[9.181252920864537,45.39245175097964],[9.181242461708255,45.39245691619533],[9.181232002550066,45.39246208141009],[9.181221530614868,45.39246724664409],[9.181179676156578,45.39248633231902],[9.181140472891784,45.392507538050026],[9.18107238545415,45.39254494651444],[9.181054046643338,45.392554957790736],[9.181054128545089,45.39258065590427],[9.181054173010187,45.39259460759458],[9.180954820802326,45.392594764743045],[9.180923978737964,45.39260593891329],[9.180786753279218,45.392655914066815],[9.180654326162674,45.3927083657936],[9.180562702627375,45.39274867346717],[9.180456706904627,45.392801074254685],[9.180352155380872,45.39285774820665],[9.180260247307022,45.392897101964586],[9.18021398721689,45.39291696832156],[9.180083968967413,45.39296799341175],[9.180032150737231,45.39298761640958],[9.179967847338927,45.393010112379244],[9.17989250793577,45.39303724324406],[9.179842119670976,45.39305259736945],[9.179773504842368,45.393077233274056],[9.179720168894347,45.393101764132844],[9.179661639213887,45.39313218986309],[9.179583877895052,45.393173249081876],[9.179499175981222,45.393221295013895],[9.179432471460267,45.393256279021536],[9.179396032181096,45.39327119702495],[9.179350970856767,45.39328249207145],[9.179302228298626,45.39329318079096],[9.17925960542256,45.39329991740655],[9.179201007682694,45.39330486079382],[9.17913421489139,45.3933119412473],[9.179051429311771,45.39331964976166],[9.178977666927494,45.393328568258525],[9.178922350099304,45.39333683679135],[9.178869487466981,45.39334147400404],[9.178799403688297,45.3933461290992],[9.178751860322022,45.39335227013704],[9.178688362110023,45.39336298164196],[9.178644525075985,45.393373662420714],[9.178593325272514,45.39338709101836],[9.178544588195193,45.39339959763496],[9.178475764116659,45.39341487190493],[9.178384800338135,45.393430171645655],[9.178296305990337,45.393446691620824],[9.178217236904398,45.3934622787338],[9.178152673920568,45.393475727943745],[9.178064121143091,45.39349403005446],[9.177966244703965,45.39351718920664],[9.177906283055814,45.39353545572946],[9.177855963696976,45.393548648597914],[9.177772690535875,45.39356809442213],[9.177711473033037,45.39358107912755],[9.177626020786246,45.39359823293935],[9.1775681036241,45.393608521106025],[9.17748635806115,45.39362628113887],[9.177369839116654,45.39365267309491],[9.177278422466589,45.393670447967715],[9.177212120053538,45.3936834132788],[9.177125858637941,45.393699280806935],[9.177033782857611,45.393714671203384],[9.176929489892137,45.39373294277533],[9.176771327928202,45.39376929974248],[9.176660571983092,45.39380040766758],[9.176561759968362,45.393827077501456],[9.176474852644226,45.39384488977898],[9.176371362767904,45.393862727548],[9.176257266516178,45.39388794448677],[9.176211015846407,45.393899204120565],[9.176017156086658,45.393947244467675],[9.175856641445836,45.39398334275254],[9.175747847141576,45.394004617539075],[9.175641019315188,45.39402147864836],[9.175546827886551,45.39403881533713],[9.175378990812485,45.39407442911983],[9.175210476215293,45.39410169064106],[9.175105629257697,45.39412302177991],[9.175002387502845,45.39414705970897],[9.174897645302202,45.39416927260758],[9.174833801854973,45.39418457307365],[9.174755193236,45.39420513471126],[9.174640035039086,45.394230297647795],[9.17455662495771,45.394243287521306],[9.174431514807504,45.39426441491656],[9.174308920646022,45.394293639362466],[9.174212129881278,45.39431766675074],[9.17407312492253,45.394344701644904],[9.173946524577447,45.394363274453404],[9.173862131118689,45.3943806668682],[9.173836426653756,45.39438485543782],[9.173770167933089,45.394395928444986],[9.173667519104301,45.39441367247403],[9.17353052458908,45.39444658139632],[9.17344764807069,45.39447132513008],[9.173389584763607,45.39448868628828],[9.173386189018254,45.394489528538365],[9.173353030514487,45.394496014579715],[9.173271238608525,45.39451199844006],[9.173033076621701,45.39455856158959],[9.172937954715936,45.394577157690705],[9.172882017912306,45.39458809756957],[9.172934853016892,45.395018739929775],[9.173060962694759,45.39612598546754],[9.173083568381506,45.3963288817599],[9.173091849214918,45.396396611739476],[9.173165068741445,45.39702526586479],[9.173180378371171,45.39715640714706],[9.173183636737152,45.39717750086187],[9.173241992232189,45.397673941776425],[9.173247548616763,45.39771958708538],[9.173261150659185,45.39783111746884],[9.173293178439076,45.398085728872324],[9.173339630457773,45.39850757734444],[9.173390919808844,45.39896103939266],[9.173410437364664,45.399126756548576],[9.173471500181007,45.399659080558024],[9.173515366097423,45.4000072675626],[9.173553326719308,45.40036287140924],[9.173578362120793,45.400590390841344],[9.173597647025131,45.40074232755144],[9.17353047979291,45.400742861470064],[9.173236883493983,45.40074520550659],[9.172779846899044,45.40075291729305],[9.172278538323841,45.40075239486785],[9.171955500183902,45.40074937925276],[9.17148183342834,45.4007505310102],[9.170945471805494,45.40075236853936],[9.170690561011856,45.4007451430555],[9.170536703307944,45.40074625452932],[9.170504552029755,45.400744835249675],[9.170511802885754,45.40078948801914],[9.170528970805526,45.4008731278767],[9.170547340135181,45.4010036797911],[9.170583158458534,45.401315623311405],[9.17060164681379,45.40148996548716],[9.170622275089487,45.40167056024382],[9.170642223002226,45.40182453968997],[9.170656418506196,45.40195634894395],[9.170668801093683,45.40208437142474],[9.17068524546391,45.40225867160592],[9.1706930984478,45.402350507327455],[9.17069988402809,45.40243154329463],[9.170712611142577,45.402631610210896],[9.170729132549733,45.40275492791184],[9.170749098969257,45.40284683556172],[9.17070119167621,45.4028623709498],[9.170696715046919,45.4028353652667],[9.170647878955403,45.402801188833784],[9.170523111674353,45.40279433592436],[9.170028416793974,45.40277254212515],[9.169958936404031,45.40276947693184],[9.169742901092059,45.40270751879614],[9.169598445747228,45.40266272735108],[9.16871720439362,45.402372825591605],[9.168359895519933,45.40225588713682],[9.16825655766263,45.40223188009453],[9.168201899329183,45.402220033950655],[9.168176327011057,45.40221409478572],[9.168097078424083,45.40219568690089],[9.168072843007188,45.40217519093708],[9.168049343293868,45.40210104720809],[9.1679935498109,45.40200775148811],[9.167942767148915,45.401936717160304],[9.167743053307044,45.40167124293279],[9.167665480209369,45.40155354091886],[9.167374278040786,45.40124682185878],[9.167316461842136,45.401220929155514],[9.167058838455938,45.40114779331557],[9.166920006291603,45.40110569960093],[9.166626441754593,45.40096715903264],[9.166513245851206,45.400891795352074],[9.166503108628623,45.40084649844794],[9.166511578668409,45.40081123772878],[9.166541209932253,45.40067222627905],[9.166599186768437,45.400452613507824],[9.165619998430715,45.40044389935895],[9.165589626792563,45.40044362826438],[9.165459962783164,45.40044247461716],[9.165290241955965,45.40044096462606],[9.165458997939997,45.4006990170246],[9.165603685825982,45.400918444166955],[9.165861439820942,45.40130860262981],[9.166020774597538,45.401563373401025],[9.1661519686985,45.40177222506838],[9.166182059793728,45.40182048139825],[9.166257260304892,45.401940474145285],[9.166299000530499,45.40200483452827],[9.166399431478737,45.40215790563894],[9.166412588600336,45.402178499076015],[9.166244200166755,45.402228006917134],[9.166149537376654,45.40225583182226],[9.16611227228433,45.40226679527081],[9.16606264925347,45.40228137708634],[9.166025235614343,45.402293987927045],[9.166017895964298,45.40229650088506],[9.166011719839863,45.40229928218858],[9.16600694756381,45.402301494384986],[9.166002252161823,45.40230377847867],[9.165997582498262,45.40230612554266],[9.16599295132414,45.402308526557405],[9.165988345809513,45.402310963539215],[9.165983638417769,45.402313517683154],[9.165978969515423,45.40231612577776],[9.165974364578222,45.40231876078281],[9.16596978532678,45.402321440756026],[9.16595777019592,45.40232868607819],[9.16595418633913,45.40233094155478],[9.165950794326204,45.402333259760994],[9.165947619869621,45.402335694666185],[9.165943324898981,45.40233946336172],[9.165939209310169,45.402343402818275],[9.165935209032398,45.40234745012101],[9.165927170616436,45.40235570680105],[9.165916888749313,45.40236580296128],[9.165913716945022,45.40236914697481],[9.165910813701265,45.40237257160907],[9.165907899152156,45.402376500322376],[9.165905214962988,45.40238055471738],[9.16590265886242,45.4023847169401],[9.165897585333989,45.40239315834386],[9.165889611922344,45.402406176519605],[9.16588708182109,45.40241049172334],[9.165880002530498,45.402423409590114],[9.165877842734577,45.40242764324685],[9.165875912930822,45.40243187657022],[9.16587435380166,45.40243615436192],[9.165873001186688,45.40244114294284],[9.16587201932529,45.402446202995364],[9.165870503598347,45.40245659248476],[9.16586967561687,45.402461841337775],[9.16586695881374,45.40247660711212],[9.165866142557608,45.40248149590331],[9.165865428467733,45.40248636654418],[9.165864942241372,45.4024905077641],[9.16586459661862,45.40249466678248],[9.165863624136371,45.402507314765614],[9.165862132144376,45.40252145768744],[9.165861810157226,45.40252495958982],[9.165860220170718,45.40254930092268],[9.165859858980562,45.40255688038922],[9.16585960187882,45.40256072424007],[9.165859229754247,45.40256455925647],[9.165858830629215,45.40256789925039],[9.165856540788477,45.402575733543046],[9.16585512780367,45.402581928361215],[9.165853725677266,45.40258746608182],[9.165852029144821,45.402592824206636],[9.165850377015591,45.4026002615258],[9.165848066904458,45.40260553052842],[9.16584339799368,45.40261252216282],[9.165841567141394,45.40261563920321],[9.165839047623255,45.40261920729738],[9.165836272004844,45.4026225867391],[9.165833483161927,45.40262581318082],[9.16583086026728,45.40262898537533],[9.16582850580296,45.40263219318533],[9.165801194105327,45.402673817926875],[9.165783441090118,45.40270271023427],[9.165777598032898,45.402710180625895],[9.165774708618034,45.40271397428237],[9.165771908723565,45.40271779481246],[9.165769185650895,45.40272166923796],[9.165766704981168,45.40272541729666],[9.16576436491535,45.402729183153845],[9.165759837901781,45.40273664263738],[9.165757523022148,45.402740282442316],[9.165755220157882,45.40274366119732],[9.165748030775124,45.40275390588204],[9.165745689918896,45.40275740170637],[9.165741327194945,45.402764239873996],[9.165739203449231,45.402767699379346],[9.165737143642968,45.40277117679428],[9.165730508542175,45.40278308588238],[9.165728246633252,45.40278736468946],[9.165726138289651,45.40279172428424],[9.165724247477396,45.402796191577394],[9.165722524846368,45.402801369715476],[9.165721185512092,45.402806538297455],[9.165719986493121,45.40281162566616],[9.165718697690393,45.40281659615027],[9.1657170763324,45.40282145010131],[9.165715020593382,45.40282632268349],[9.165712683723857,45.40283118667152],[9.165705060189016,45.40284591453953],[9.165698124295826,45.402859840311876],[9.165695735473372,45.402864416338915],[9.165693295461917,45.40286896543669],[9.165690981491652,45.40287292027802],[9.165685983161332,45.40288088450346],[9.165683490568167,45.40288492961445],[9.165681126064358,45.402889082553315],[9.165679283939635,45.40289272167222],[9.165677607895455,45.40289635154952],[9.165674447179654,45.402903512014746],[9.165670066179738,45.40291285251718],[9.165668668954577,45.40291569889335],[9.165667207736908,45.40291850935766],[9.16566565689303,45.40292125694387],[9.165663685521361,45.40292439218687],[9.16566156076731,45.4029275096496],[9.165657132610152,45.40293382584354],[9.165654944361803,45.40293707841485],[9.165653252885845,45.40293979920104],[9.165650061411828,45.40294517748843],[9.165648471787692,45.402947772111474],[9.16564675412613,45.40295027690858],[9.165644348396926,45.40295343978323],[9.165641789285212,45.402956584877565],[9.165636428498813,45.40296294742599],[9.165633780232605,45.40296619166146],[9.165631934296309,45.402968525622725],[9.165624869671708,45.40297775299228],[9.165623214740744,45.402979861649],[9.16562145764228,45.40298198845579],[9.165619700806145,45.40298420527339],[9.165617995368528,45.40298652102888],[9.165616494659245,45.402988935500424],[9.165614778884736,45.402992088374894],[9.165613229269846,45.40299525901118],[9.165611858644608,45.40299846539295],[9.165610641506541,45.40300172555931],[9.165609616398104,45.40300511146346],[9.16560925225469,45.40300730826346],[9.165609232972265,45.403009459558874],[9.165609512374958,45.403013257626974],[9.165609543073968,45.403015021801956],[9.16560941412186,45.40301900048331],[9.165609304872081,45.40302097188653],[9.165609157184836,45.40302290734087],[9.165608894473896,45.40302483396053],[9.165607902189738,45.40303071312721],[9.165607309993282,45.403033576339986],[9.165606564283099,45.4030363767671],[9.165605614054162,45.40303915048676],[9.165605005090868,45.40304064555366],[9.16560431912138,45.403042023717454],[9.165603530511975,45.403043258011806],[9.165602613576423,45.40304430346835],[9.16560149180721,45.40304521420448],[9.165600050311822,45.40304602639084],[9.16559835284652,45.40304669492966],[9.165596386817521,45.403047282846906],[9.165594152303552,45.40304781714589],[9.165591802818277,45.40304836061229],[9.165589504285519,45.40304884999817],[9.16558719263408,45.403049222388454],[9.165584804160156,45.40304954088314],[9.165582313361256,45.40304982352129],[9.165579809732346,45.403050088175746],[9.16557752316347,45.403050298509385],[9.165575262044612,45.403050472801674],[9.165572962462045,45.40305060214404],[9.165568260971938,45.40305082497207],[9.165565501320637,45.40305092797641],[9.165562728813121,45.40305100399588],[9.165554334441861,45.40305116915734],[9.165511491563999,45.403051258123035],[9.165497027932604,45.40305145005896],[9.165483024763143,45.40305180334748],[9.165465930356289,45.40305247614249],[9.165461957130653,45.403052679911035],[9.165457933030973,45.403052964763084],[9.165453871044495,45.40305340268882],[9.165449298534773,45.403054039377],[9.165444815834519,45.403054801950844],[9.165440397231391,45.40305563644084],[9.165436017170379,45.40305654288385],[9.165431662821524,45.403057503296296],[9.165428355677097,45.40305827317146],[9.165425061546022,45.403059124037824],[9.165421805904655,45.403060028855165],[9.165418575975467,45.40306098764195],[9.16540256174283,45.403064017159544],[9.16539972655267,45.40306450731715],[9.16539774721925,45.40306491522786],[9.165394120741194,45.40306572156798],[9.165392460609375,45.40306604800723],[9.165390876906665,45.40306629332597],[9.165388884166576,45.403066485229004],[9.165386763441758,45.40306660530801],[9.16538446377947,45.40306670764329],[9.165382010918176,45.403066855205466],[9.165379456177556,45.403067119929375],[9.16537622493685,45.403067628660914],[9.165373096047146,45.40306818225007],[9.165370044005849,45.403068798735944],[9.165351732280781,45.4030726776711],[9.16534756953942,45.403073619801276],[9.165343432510147,45.40307461590085],[9.165340802309272,45.40307529478438],[9.165338210598065,45.40307602761897],[9.165335682852923,45.403076787364434],[9.165333193492629,45.40307756505664],[9.165326734074544,45.40307963564356],[9.165318794037137,45.40308224843587],[9.16531482418845,45.40308361333881],[9.165310854496754,45.40308503224814],[9.16530771463555,45.40308620692856],[9.165304626041417,45.40308743554158],[9.165285878251531,45.40309514957274],[9.165282611190392,45.403096522460835],[9.165279331534931,45.403097958374815],[9.165275988384632,45.40309952939717],[9.165269659906189,45.403102688927156],[9.165266597520127,45.40310414252928],[9.16526350905508,45.40310541614659],[9.16526017742431,45.40310655509818],[9.165256653842643,45.40310759531445],[9.165249159335014,45.40310963138697],[9.165245278401574,45.40311081613677],[9.165243555244183,45.403111439701775],[9.165241921660272,45.40311210814305],[9.165239063137115,45.4031133634255],[9.165237710317985,45.40311391444678],[9.165234608812387,45.403115098071],[9.165221781209226,45.40311986017875],[9.165218373566253,45.40312122426676],[9.165211877691533,45.40312394298035],[9.165208750655998,45.40312513564177],[9.165205584764152,45.403126148336845],[9.165202980035717,45.40312680017709],[9.165200298301782,45.40312733511383],[9.16519756511739,45.403127753110255],[9.165194729477209,45.40312809024439],[9.16519188082387,45.4031283463872],[9.165188635779495,45.40312850408968],[9.165185339284728,45.40312854485179],[9.165178388001154,45.40312844687045],[9.16517493804529,45.4031284428481],[9.165171909564272,45.403128375209626],[9.165168740164116,45.40312818175875],[9.165165238705578,45.4031280427937],[9.165161405816832,45.40312817434034],[9.16515744669712,45.40312883713504],[9.165152787090868,45.40313028403775],[9.16514862664508,45.40313201825583],[9.165144824466816,45.40313392297807],[9.165137744066326,45.40313775866964],[9.165134439975063,45.403139581662806],[9.165131212810396,45.403141494556145],[9.165125065245595,45.403145355904364],[9.165122016860916,45.403147232535005],[9.165110562663418,45.403154134915205],[9.165107692979962,45.40315594827984],[9.16510567797751,45.40315727435107],[9.165103701359863,45.40315861836913],[9.165098014070034,45.40316257806426],[9.165090132864695,45.403167855086984],[9.16508746762031,45.40316966815623],[9.165084764461769,45.403171625298015],[9.165082635873198,45.4031734375931],[9.165080852303909,45.40317525839166],[9.165079246913557,45.403176835902926],[9.165077678913914,45.403178089319994],[9.16507600772603,45.40317900984445],[9.165074233297615,45.40317957947414],[9.16507212597325,45.40317991555484],[9.165069583872798,45.403180135247965],[9.165066645642767,45.40318034651123],[9.165063592885804,45.403180719959714],[9.165055431942056,45.403182072895575],[9.165051370727875,45.40318278083941],[9.165047284167787,45.403183560828595],[9.16504318514391,45.403184448849075],[9.165039265266884,45.40318542662225],[9.165035435120128,45.403186503278235],[9.165028081617676,45.403188701153056],[9.165024468583907,45.403189741491154],[9.164999239479517,45.403196420690016],[9.164996111598759,45.40319732531101],[9.164992983953232,45.40319831094165],[9.164990673599085,45.40319913337392],[9.164988401708209,45.403200000756335],[9.1649861555815,45.403200940110494],[9.164983973551557,45.40320195138114],[9.164981817364195,45.40320306162684],[9.16497871770466,45.40320488432083],[9.16497579711343,45.40320676976449],[9.164973055302914,45.40320861894587],[9.164970364288653,45.40321036004053],[9.164967634497174,45.40321194817205],[9.16496505722555,45.40321325704895],[9.164962313636698,45.403214494156565],[9.16495649426879,45.40321697785141],[9.164953533592122,45.403218260277264],[9.164946400358893,45.40322151096031],[9.164944052271716,45.40322254047176],[9.164941704106047,45.40322354297994],[9.164939483375873,45.403224428289846],[9.164937185954257,45.403225304709125],[9.164930191311838,45.40322788010748],[9.164927740298083,45.4032286667367],[9.164925046328044,45.40322939070813],[9.164922033389873,45.40323027715926],[9.164918880944082,45.40323152385605],[9.164915934533045,45.40323331932414],[9.164912468345744,45.40323652871678],[9.164909807378445,45.403239817959175],[9.164907542279478,45.40324302562111],[9.164905365995857,45.40324601712817],[9.164902959062882,45.403248783939524],[9.164899352843552,45.40325217355589],[9.164895439884289,45.40325553661066],[9.164887269179616,45.4032623352255],[9.164883267377082,45.40326590543359],[9.16488135604912,45.40326773541414],[9.164879559849624,45.403269610234446],[9.164877840341436,45.40327149394531],[9.164876197524563,45.40327338654681],[9.164874593118624,45.403275306096305],[9.164872568934614,45.40327787433101],[9.164870672578203,45.403280460383826],[9.164868852782414,45.40328301032183],[9.164867019999896,45.40328548826955],[9.164865123146557,45.40328790330173],[9.164863837002974,45.40328941734227],[9.16486251244827,45.4032909044348],[9.164861111149792,45.403292364634474],[9.164859658662644,45.40329379790453],[9.164858167738263,45.403295195225425],[9.164856663748854,45.403296493552865],[9.164855083041797,45.403297773988484],[9.164853463897503,45.40329901847498],[9.164851780813105,45.40330024505132],[9.164850072069017,45.40330143566012],[9.164848924205009,45.40330216640398],[9.16484773790381,45.40330286119875],[9.16483883322323,45.40330771662553],[9.164837251183195,45.40330853800579],[9.164835630784326,45.40330935044011],[9.164834061312785,45.40331009979327],[9.16483249178897,45.403310831144225],[9.164830896605498,45.40331152652766],[9.16482931409506,45.40331218588833],[9.164827680395986,45.40331281831935],[9.164825701963988,45.40331354125801],[9.164823761812373,45.40331424613919],[9.164821885339547,45.403314878919765],[9.164820046885918,45.40331540363211],[9.164818233647821,45.40331581129351],[9.164815730316986,45.40331618394419],[9.164813098870972,45.403316439764744],[9.164807324589175,45.40331685312976],[9.164804271640312,45.403317163563734],[9.164800963505845,45.40331760038074],[9.164797732141153,45.40331807309158],[9.164788280898762,45.40331951787729],[9.164785560349031,45.40331989084007],[9.164779902030922,45.40332063707808],[9.164776977275123,45.40332109134471],[9.164774027277508,45.403321653660996],[9.164770860557415,45.403322387310496],[9.164767821821757,45.40332319278458],[9.164756957203153,45.4033263408138],[9.164748480264446,45.40332889133135],[9.164734971784487,45.40333242121101],[9.16473217516884,45.403333001307715],[9.164729378788083,45.40333366241407],[9.164726595445874,45.403334413512795],[9.164723825168307,45.40333526360496],[9.16472028941148,45.40333651984903],[9.164716932827536,45.40333787484746],[9.164710564679547,45.403340593348574],[9.164707450633959,45.40334186698764],[9.164704744739504,45.40334288800791],[9.164699141312898,45.4033449393252],[9.164696294969318,45.40334599655185],[9.164693436030758,45.40334711680442],[9.164690079523844,45.40334849880531],[9.164686761427765,45.40334990775416],[9.164677024409395,45.40335415228982],[9.164673974328448,45.40335545283926],[9.164670834778278,45.40335674451621],[9.164667644300353,45.4033580992742],[9.16466444138395,45.40335957106455],[9.164661290021277,45.40336119579965],[9.16465825417843,45.40336300039084],[9.16465542298528,45.40336487669651],[9.16465274522718,45.40336678878587],[9.16464759407331,45.403370585667],[9.164645439360203,45.40337220896796],[9.164639384050313,45.40337706028025],[9.16463736960304,45.40337858436699],[9.16463484496585,45.4033804242267],[9.164624171711498,45.40338788350389],[9.164620920656047,45.4033903814898],[9.164617899674973,45.40339290614801],[9.164615005921563,45.4033952415997],[9.164612021837918,45.403397271143156],[9.164608793962689,45.40339894999359],[9.164604645501592,45.403400423142074],[9.164600151106583,45.40340157274766],[9.164595311168966,45.40340253382647],[9.164590215679587,45.40340349527254],[9.16458504404621,45.403404636850304],[9.164580894462558,45.403405722951454],[9.164572914760374,45.403407903695076],[9.164569007715562,45.40340890843699],[9.164565113109159,45.40340979614632],[9.16456093710898,45.40341058524782],[9.164556645823586,45.4034112755026],[9.164547756407986,45.40341259344497],[9.16454323543871,45.40341339204289],[9.164538880786496,45.403414262410465],[9.164534577374832,45.40341517770981],[9.164530325203733,45.40341613794092],[9.1645260858883,45.40341712515678],[9.164512742621639,45.40342035773571],[9.164508133303134,45.40342153450619],[9.164503536996644,45.403422792267854],[9.164498966584016,45.403424167006655],[9.16449516251343,45.40342543263052],[9.16449140973549,45.40342676118831],[9.164487708380522,45.403428197685535],[9.164484083925482,45.40342971508219],[9.16448049822006,45.403431376440956],[9.164476938590912,45.403433217784496],[9.164473532579294,45.40343515791947],[9.164470280028814,45.40343714283941],[9.16445897991048,45.40344435097057],[9.164456442096036,45.40344605582848],[9.164453942926963,45.40344786864421],[9.164451495389311,45.403449861408056],[9.164450195958246,45.40345120444177],[9.164449177738355,45.4034525830759],[9.164447766175556,45.40345491639373],[9.164447091751713,45.40345588048242],[9.16444608591835,45.40345712408191],[9.164443768084416,45.40345978274205],[9.164442583885807,45.403461206620186],[9.16444146378359,45.40346270241513],[9.164440204118058,45.4034645404531],[9.16443902111801,45.4034663783809],[9.16443790200585,45.403468216216936],[9.164436808500932,45.403470072018386],[9.164435766236616,45.403471972751824],[9.16443476264378,45.4034739904442],[9.164433125539146,45.40347786327715],[9.164432287325239,45.403479628700595],[9.164431320970493,45.403481268292495],[9.16443026462528,45.40348271899013],[9.164429054948833,45.4034841699081],[9.164427717470286,45.403485612008474],[9.16442627779694,45.403487063256755],[9.16442479976467,45.403488505559054],[9.16442287550651,45.403490290544845],[9.16441654067321,45.40349570031611],[9.164414386912787,45.40349765665273],[9.16441215732038,45.40349990113398],[9.164408093980168,45.40350429951657],[9.164406106666668,45.403506372628435],[9.164404016767442,45.40350831987196],[9.16440210460816,45.40350987081094],[9.164400026235711,45.40351138598417],[9.164395486396806,45.40351449789076],[9.164393114581967,45.403516166504325],[9.164391087710253,45.40351781662022],[9.164389265175904,45.40351943043807],[9.164387608229305,45.40352086399567],[9.16438600153336,45.40352200044423],[9.164384279109465,45.40352288502761],[9.164383015324725,45.40352330089412],[9.164381636046546,45.403523545905216],[9.164380026406723,45.4035236652315],[9.164378199234985,45.40352367685676],[9.164376244052718,45.40352360765574],[9.164373573011884,45.40352343146935],[9.164370991153818,45.403523165143596],[9.164368485622793,45.4035227816937],[9.164366018086,45.40352228117458],[9.16436363965387,45.40352166351292],[9.16436159323118,45.40352097336548],[9.16435962303138,45.403520130089575],[9.164357626859683,45.403519142833034],[9.164351369103688,45.403515866410615],[9.164349423860386,45.40351481607292],[9.16434756803434,45.40351375660572],[9.164345839906277,45.40351266995178],[9.164344213816802,45.40351152014345],[9.164342203071014,45.40350991183036],[9.164340256031052,45.40350824041795],[9.164338423859423,45.40350652383496],[9.164336732111307,45.40350476204473],[9.164335180786711,45.40350295504728],[9.164333795388742,45.403501084803764],[9.164332588590812,45.40349911529145],[9.164331432616901,45.403497046693886],[9.164329107318808,45.40349271149326],[9.164319664213977,45.40347048328654],[9.164311263139671,45.403455103434354],[9.164299012403456,45.403442897501414],[9.16428033093323,45.4034338691911],[9.164252659281297,45.40342666300441],[9.164215993518757,45.40341991977152],[9.164191543470078,45.40341769556756],[9.164154258482261,45.40341774904778],[9.164110526042279,45.403419620985254],[9.164087312553193,45.40342082441222],[9.164083530934398,45.40342101885704],[9.164079456013548,45.403372760700016],[9.16408131477782,45.40334830199563],[9.164085765415539,45.40333200359022],[9.164094098382122,45.403323836630086],[9.164110801974637,45.403316116724774],[9.164132013719517,45.40331200880217],[9.164164151600612,45.403308344261966],[9.164202071153662,45.40330240313644],[9.164217492025319,45.403297394392474],[9.16422839851346,45.40329104195616],[9.164229656305567,45.403279716743796],[9.1642199660529,45.40326478879006],[9.164203183644712,45.4032408158847],[9.164187675075603,45.40321548198041],[9.164178590991112,45.40318922974576],[9.164174669370695,45.403167506669426],[9.164162372913152,45.40313944981603],[9.164153338283738,45.40312588008495],[9.164137235678432,45.403120466502074],[9.164110845572166,45.40311009004887],[9.16409537762148,45.40309878881813],[9.16408053649773,45.4030788906178],[9.164076027032056,45.40306597147502],[9.164074699898567,45.40306214790181],[9.164068276714547,45.403063507277146],[9.164017595627008,45.4030837964284],[9.163940916806695,45.403101269442615],[9.163878848015756,45.40311615616881],[9.163754334993074,45.40315313095229],[9.163577266139175,45.40320290830431],[9.163451312007812,45.40323653640021],[9.1633390349154,45.403263069960374],[9.163207595392464,45.403299919014444],[9.16311175908745,45.40332514174657],[9.163046052062503,45.403345820923725],[9.162984799754112,45.40337379362704],[9.162289837038486,45.40318135606821],[9.161459361087672,45.40310601204802],[9.161176693645084,45.40308274648828],[9.160299793766008,45.4030052631244],[9.159971504517015,45.40297044701994],[9.159944261731075,45.402965525473896],[9.159884496387772,45.40295473561861],[9.159740921710824,45.40292522338086],[9.159718711899188,45.402919799695475],[9.159645080891453,45.402903700398944],[9.159429513545977,45.40285895925004],[9.159260801384082,45.40282324364204],[9.159025709909178,45.40277367729031],[9.158797776469832,45.40272491062491],[9.15870433664036,45.40270271743914],[9.158509452100963,45.40265145606655],[9.158444850769774,45.40263825985397],[9.158355130248799,45.40261634926967],[9.158268613489575,45.40260237317284],[9.158223169212436,45.402595037077695],[9.158141868077157,45.402581908781734],[9.158143656383986,45.40257712671637],[9.158182719209014,45.40247237171251],[9.158209829465548,45.40241608624488],[9.158249947830276,45.402337144969465],[9.158297202438025,45.402255979534566],[9.15834970296401,45.40217286257993],[9.158451591881786,45.4020179383105],[9.15852496012056,45.40190378352126],[9.1585725665853,45.40182992638934],[9.158611714568075,45.401765289104766],[9.158650813370715,45.40169679939422],[9.158683790392155,45.40163695923295],[9.158662348379696,45.401604287881696],[9.158355576954747,45.40151155108298],[9.15814289199876,45.40145806341828],[9.157970177597111,45.401414889494625],[9.157874855058177,45.40139019591161],[9.157719100147023,45.401352983961694],[9.15757775126413,45.401317921238736],[9.157452748394993,45.40127964045905],[9.157327972153464,45.401244698647204],[9.157063850953683,45.40115977572742],[9.156852180862753,45.401130488281495],[9.156772168939451,45.4011715800012],[9.156467314004157,45.40134126321585],[9.156291276460806,45.401431784958774],[9.156231450160462,45.40144909477474],[9.156095775415197,45.401493223344495],[9.155907730448707,45.40153407467592],[9.15591132772406,45.40153658108931],[9.15634585613916,45.40183870513366],[9.156707199053752,45.402098604454025],[9.156921784873882,45.40224777409207],[9.157027411169132,45.40232019627533],[9.157121258496685,45.40237931287068],[9.157266216273886,45.402484795958266],[9.157328372445473,45.40252876202708],[9.157371785797993,45.40255946817808],[9.157526621049374,45.40266940190718],[9.157790140694095,45.40286157290425],[9.15792194777235,45.40294683876169],[9.157963612539117,45.40297341558417],[9.15799129946265,45.40299107357347],[9.157952204043157,45.40303841040772],[9.157932277050456,45.40306354202485],[9.157914498629793,45.40308478219081],[9.157858773405614,45.403139135802654],[9.157844662302402,45.40315125276623],[9.157727652753723,45.40325518795885],[9.157712230653797,45.40326916094277],[9.1576772429938,45.403300452027025],[9.157555004362074,45.40341272927885],[9.15751549293621,45.40344851809751],[9.157475994936782,45.40348455891511],[9.157453422240321,45.40350495049703],[9.157426708403742,45.40352953328988],[9.157276985167309,45.40366531395126],[9.157239858101587,45.40369939818552],[9.15698599891649,45.40393814123184],[9.1569088132336,45.403999985728355],[9.156899506060222,45.40400744241031],[9.156866921592814,45.4040671734801],[9.156890178894876,45.404118691006374],[9.156965653153609,45.40424202886112],[9.15716889148,45.4045863127493],[9.15739352734499,45.40497841676926],[9.157421256312533,45.405029396964736],[9.157440369979696,45.40506086558229],[9.157510405638426,45.4051712399289],[9.15759252773669,45.4053177820762],[9.157647980342357,45.40541755509351],[9.15772331476653,45.40554913763375],[9.157843058251844,45.40576056179043],[9.157901488422935,45.40586470511282],[9.157933512578733,45.40592057585731],[9.158083649393467,45.40617055458756],[9.158141080292186,45.4062688754391],[9.158206225694698,45.40637959813414],[9.158491958409146,45.40687309396239],[9.158561419000248,45.40699564693178],[9.158623303241953,45.40710482570086],[9.158679652902816,45.40720423689853],[9.158827280618723,45.40745477614237],[9.159135181273735,45.407998042657056],[9.15907869265453,45.40800926455258],[9.159062498311807,45.408012482452214],[9.158966249264704,45.40804440808648],[9.158807634332206,45.408097113736964],[9.158748294105079,45.408116836474136],[9.158738259372717,45.408120171800576],[9.158630771758325,45.408154624046404],[9.15857025207823,45.40817302516209],[9.15851963358659,45.408190611435394],[9.158492173208856,45.40820015463433],[9.1584950938178,45.40821184303366],[9.158499995228121,45.40824188195557],[9.158503983224936,45.40831093295688],[9.158499747183132,45.40841857410615],[9.158497666816812,45.408556861049796],[9.15849361621962,45.40867601435759],[9.158493127725912,45.408794028590684],[9.158485461268599,45.4088584421486],[9.1584782254808,45.40893981320011],[9.158480968302392,45.408988523409484],[9.158482112668363,45.40907347429934],[9.158479832907037,45.409144910262135],[9.158476524618528,45.40920954280917],[9.158461296234563,45.40927055540939],[9.158420843860252,45.40940090245997],[9.158388100266473,45.40948200276028],[9.158342316367948,45.409597757356735],[9.158320226000104,45.40965440488719],[9.158312917366366,45.4096730922964],[9.158284999228973,45.40975708424628],[9.158279532991898,45.40977198863972],[9.158238477902,45.40988351512987],[9.158196909500719,45.41001726604879],[9.158176079095036,45.410058402896475],[9.158164304010546,45.41008854587633],[9.158156036146528,45.41011616369874],[9.158128534634123,45.410198489823166],[9.158060560268334,45.41038602277432],[9.15799913860842,45.41055424826005],[9.157984635146997,45.41059594340539],[9.157958342115293,45.41065806932945],[9.157956102261135,45.41066141183106],[9.157953053485295,45.41066337827949],[9.157948566176271,45.41066273639178],[9.15794219261141,45.4106593247655],[9.157935799446767,45.41065805542943],[9.157921456706884,45.41065647302085],[9.15790560534421,45.41065464966174],[9.15790436316722,45.41065831482593],[9.157892423320295,45.41069364263957],[9.157854055002142,45.41080680346882],[9.157810041102001,45.410939450461484],[9.157702089916599,45.4112600746341],[9.157623426362925,45.41147879284601],[9.157508723534118,45.411789488881986],[9.157440053406003,45.41197640129239],[9.157423361302643,45.41201717225248],[9.157393985403308,45.41208328976029],[9.157371294314506,45.41213598642339],[9.15736198908477,45.41217227366845],[9.157357421120679,45.41222096692387],[9.157349291054382,45.412298567622294],[9.157350287191319,45.41232138405317],[9.157349968772552,45.41235866706598],[9.157349880418641,45.412368289368146],[9.157258567052029,45.41238575998126],[9.157214674928552,45.412392544097784],[9.157173997128178,45.41239710951233],[9.157140572288101,45.41239954969621],[9.156996914504331,45.41241283442345],[9.15690396182444,45.412419847717985],[9.15679035328028,45.41242544905481],[9.156676283291327,45.412435191418204],[9.15654273910184,45.412445680389744],[9.156415538937127,45.412458113776204],[9.156281729024732,45.41247424649805],[9.15616964716755,45.41248670397455],[9.15608490235046,45.412495001563286],[9.15600902229833,45.41250172981678],[9.155966302321826,45.41250264313597],[9.15588081944919,45.41250745815149],[9.155841644440475,45.412510193820786],[9.15580794558407,45.41251528031238],[9.155771661417319,45.412523637713015],[9.155735303178611,45.41253294931993],[9.155697582955723,45.4125395894398],[9.155660013046028,45.41254978477897],[9.155599509348448,45.41256209053696],[9.155571832318367,45.41256814089252],[9.15555744646686,45.41257429919582],[9.155539441240409,45.412588797437714],[9.155532589501485,45.41259746580966],[9.155526821975633,45.412610048188384],[9.15552705362702,45.41263863538026],[9.155531017552331,45.41269543596214],[9.155538447306208,45.41274848737487],[9.155551127122873,45.41287063312622],[9.15556626420014,45.41301737555],[9.155573469180949,45.41310497349772],[9.155576283491424,45.41314795894225],[9.15557892785555,45.41324552730694],[9.155576182248694,45.41328359670349],[9.155571237337824,45.41333057117955],[9.155563603146229,45.41339886392138],[9.155543611580692,45.413565429490795],[9.15553828562241,45.413608615016685],[9.155524066810873,45.41368052614131],[9.155520094241993,45.41369991991316],[9.155515244392362,45.413720971079435],[9.155506835562033,45.41374911094785],[9.155485531601807,45.41381454189605],[9.155460787755262,45.41389790770662],[9.15544290424115,45.41395236165652],[9.155425081642951,45.4140104069601],[9.155385953135585,45.41412859954221],[9.155361152245314,45.41420523258],[9.15533191427396,45.41429035967109],[9.15530021490019,45.41438675047052],[9.15528186376419,45.414433887129675],[9.155270311853249,45.414457737715466],[9.155265350709037,45.41446618747761],[9.155246429014385,45.414486960679056],[9.155205564941005,45.41452217439276],[9.155167195164598,45.414553523238254],[9.155133816300912,45.41458732260761],[9.155116399669417,45.414607031617436],[9.155102970156582,45.41463131678269],[9.155079607658669,45.41466862199406],[9.155063687882604,45.41469360361283],[9.155051791330113,45.414727022812365],[9.155034878185734,45.41477201521928],[9.155013073914079,45.41483709570225],[9.15497441651499,45.41494580032836],[9.154944077936628,45.41502136062944],[9.154923745086611,45.415073081468144],[9.154911382554788,45.41511845474252],[9.154892079106055,45.4151821276425],[9.154870257254984,45.41524088034406],[9.154838889690907,45.41532351686987],[9.154804710145816,45.41542482546943],[9.154798335543992,45.41544460050469],[9.154786444959887,45.41548032394564],[9.15477597491172,45.415512066978465],[9.15474372919172,45.41560554198517],[9.154707560056428,45.415713190014],[9.154656909159275,45.41585317154119],[9.154627656857842,45.415933734889514],[9.154579549969878,45.41606003127057],[9.154574112773204,45.41608148823069],[9.154575661700132,45.416101180542896],[9.154575199626544,45.41611453879714],[9.154573774513361,45.41611685400386],[9.15455817445335,45.41614214115141],[9.154527798314067,45.41612450400301],[9.154489822978814,45.416089982040326],[9.154457454701568,45.41604473219083],[9.154401631458386,45.4159655348225],[9.154340128493088,45.415870260119924],[9.154291603889439,45.41581012618359],[9.154231745076524,45.41574599300714],[9.154199129571584,45.415713092922964],[9.15410536858771,45.41562218206551],[9.154032891409802,45.41557992943964],[9.15391405728871,45.41554612813026],[9.153759329745272,45.41549583989428],[9.153469640841276,45.415397837612254],[9.15330005633906,45.41534494934978],[9.153094911690532,45.41529945329503],[9.153046355822475,45.41528868989861],[9.152582404620091,45.415221999006874],[9.152541388354802,45.41521564488607],[9.152450600942565,45.4153979570881],[9.152421020594506,45.41545737673161],[9.152291032630439,45.41570553902222],[9.152167827869684,45.41593861529709],[9.152085266316506,45.41610093381218],[9.152003595624334,45.416262017929554],[9.151958806155744,45.41635033316128],[9.151952624860625,45.41634723598736],[9.15159815515795,45.416179277396324],[9.151104354434414,45.41594393944636],[9.150772865372499,45.415793878136476],[9.150351686723248,45.415605751026284],[9.150151729268767,45.41551559742163],[9.149631448692325,45.41529069307643],[9.149616389121478,45.41528418696159],[9.150586720587874,45.41473442365274],[9.150628780860274,45.41471058741034],[9.150608899217472,45.414668848460636],[9.150521218887237,45.414588556945056],[9.150446435755093,45.41450894149734],[9.15039613099967,45.41445987958576],[9.150358085213938,45.41442633745204],[9.150334296880803,45.41440531511753],[9.150312570625212,45.41439080686778],[9.150281269946081,45.414375492082755],[9.150219577189224,45.41434530234853],[9.150151704951865,45.41431738896358],[9.150115681833569,45.41429955101734],[9.150053305856302,45.41427190940055],[9.149951651352849,45.41423737935595],[9.149894962425886,45.41421933437844],[9.149828593852826,45.41420417339298],[9.149772665753137,45.414193526264455],[9.14972438082566,45.41418798173825],[9.149678275580756,45.41418511667008],[9.14963395010732,45.4141835184124],[9.149564872631059,45.41418305061213],[9.149487061512575,45.41418559154152],[9.149408071672879,45.41419186941341],[9.149267991218737,45.41420229539872],[9.149216699131626,45.41420499958791],[9.149169927409208,45.41420626668889],[9.149123614489191,45.41420704711362],[9.149086522767735,45.41420553823271],[9.149056187594026,45.41420246335223],[9.14902541298967,45.41419751680665],[9.148995476157056,45.41419039089584],[9.148955864722344,45.414178353962896],[9.14877313604863,45.414110309213505],[9.148658414043842,45.41406808105373],[9.148583381315976,45.41404322740692],[9.148552183799328,45.41403289862365],[9.148478903173887,45.41401337128687],[9.14819451812838,45.413904124348015],[9.148160629946963,45.413891107611015],[9.148120596828148,45.41394754231668],[9.148061591861781,45.41403100485124],[9.148003824248205,45.41413816565521],[9.14792172535289,45.414270704970235],[9.147866306632837,45.41439176936664],[9.147814169818107,45.414511929386094],[9.147750716056514,45.41466897249434],[9.147672236587155,45.414852192143805],[9.147624876926304,45.41495198541602],[9.14756127557197,45.41505261870233],[9.147497388361458,45.41515153310963],[9.147445297119274,45.41523074688248],[9.147416566128339,45.41527471825031],[9.147367850036881,45.41534953510336],[9.147325096926094,45.415432157215776],[9.147308995185536,45.41549185522539],[9.147305690636601,45.41556297716431],[9.147301271897577,45.41564799823305],[9.14729220111409,45.41573303428673],[9.1472678530457,45.415826136973934],[9.147244764621131,45.415877670959695],[9.147206631227835,45.41594802758179],[9.147171933754613,45.41600284387704],[9.147133728146091,45.416045396172414],[9.147073467589806,45.41609452058835],[9.146977297565416,45.41617476287052],[9.146844003877034,45.41627139868745],[9.146682900991532,45.416388502473296],[9.146564235699284,45.416478494408715],[9.146513240358331,45.4165178044681],[9.146412425097374,45.41660131061066],[9.14634280963561,45.41665606328449],[9.146302553739202,45.4166870155029],[9.14626409677897,45.41671676826269],[9.146148239526884,45.41682074387862],[9.146081068626202,45.41689194727613],[9.145908573746546,45.41709817535293],[9.14581898301407,45.417208498927124],[9.145656947175834,45.41741717058996],[9.145547000890595,45.41756446033922],[9.145404680231508,45.41773675113926],[9.145357301240796,45.4177915469669],[9.145322333479651,45.417831781250435],[9.145300934648244,45.41786033288293],[9.145272099153862,45.41789959625053],[9.145250686157828,45.41792263021958],[9.145226207894641,45.417951509783876],[9.145202166994183,45.41797650031477],[9.145180744496695,45.4180008394413],[9.145130929002,45.41805762750427],[9.145111260739112,45.41808326055139],[9.145086788959052,45.41811473239224],[9.14505458842892,45.418157681415465],[9.145022065889695,45.41819467211209],[9.145002955364394,45.41821352660879],[9.14496115871455,45.418252455267606],[9.1448982358163,45.41832174434065],[9.14487806149366,45.418339466024364],[9.144864541117036,45.41835023944119],[9.1448507862547,45.41836428955162],[9.144839546205773,45.41837714833435],[9.144834470797445,45.418386641909166],[9.144832294670868,45.41839534872082],[9.14483121851096,45.418404369179314],[9.144818699422835,45.41840684231441],[9.14480876080526,45.41840880812299],[9.144798711466004,45.41840243905688],[9.144777038141536,45.418388685789495],[9.14469499151862,45.41834146175413],[9.144599047395353,45.41829239198599],[9.144537101641365,45.41826372070799],[9.14447406656818,45.41823889423853],[9.144374587299778,45.418201773195236],[9.144248804339313,45.41815435195125],[9.14408273600433,45.41809180542636],[9.143946524280128,45.41803933835671],[9.143784846587465,45.41797920717192],[9.143637685765736,45.417923108039126],[9.143522853165193,45.417879119674616],[9.143396319562646,45.41783249052661],[9.143245751157956,45.41778310097174],[9.143173753279635,45.41776155239375],[9.142893124296325,45.417685600687044],[9.142858415576,45.4176719803362],[9.142834318294296,45.41764951666191],[9.14281974910802,45.41763974164396],[9.142781267964011,45.417620194252926],[9.14276048398244,45.417614180434626],[9.142725651739577,45.41761240563985],[9.142685091598645,45.41760980087092],[9.142632084812186,45.417597769444],[9.14250018606996,45.41756190229463],[9.142453220139366,45.41754805404554],[9.142374350781427,45.41752300308456],[9.142264876140747,45.417494722703736],[9.142172421279652,45.41746980549718],[9.142060320202884,45.41743378723842],[9.141895539535382,45.41738349542162],[9.141710771484213,45.41732354292684],[9.141558053194126,45.417271930532884],[9.141541078595258,45.41726610080555],[9.14151711904336,45.41725759738254],[9.141486213268498,45.417246573230145],[9.141461264080123,45.41723584774739],[9.141443848972008,45.417227615256984],[9.141434970707275,45.417224232811016],[9.1414261179117,45.417225944953685],[9.141420515630193,45.41722934528702],[9.141415296186615,45.417232511118705],[9.141401220727609,45.41724636318829],[9.14138747930128,45.417266047554286],[9.141377218166147,45.41728731181426],[9.141369037270866,45.417312497982856],[9.14136015410323,45.41734822530187],[9.141341580844522,45.41740872659897],[9.141325796574842,45.41743440820902],[9.14131914328366,45.41744689194083],[9.141314420337828,45.417449283060684],[9.141306037345615,45.41744977046499],[9.14129098926136,45.41744772778462],[9.14125766083652,45.41743901984214],[9.141220456718917,45.4174290565168],[9.141204546782118,45.417424782616116],[9.141172497667657,45.41741655913022],[9.141134654139496,45.417406434545526],[9.141114868896995,45.417401058274315],[9.141086055306136,45.417393622872844],[9.141049067336223,45.41738318216716],[9.141020022525023,45.417375269975715],[9.140914779602257,45.41734711810458],[9.140800736052674,45.41731591658627],[9.140684537480155,45.4172866528376],[9.140460853043455,45.4172264580954],[9.140392739117088,45.41720880047262],[9.140278570811939,45.41717343107733],[9.140203891379294,45.41714690630387],[9.140169958761948,45.4171366415936],[9.140139646636529,45.4171329882483],[9.140080647150192,45.41711596736216],[9.140038061513929,45.417100312540526],[9.140012588322644,45.417089452365495],[9.139985926872836,45.41706835939024],[9.139948976350354,45.41703145505665],[9.13989656134108,45.416984218344965],[9.13980360188386,45.416904123109454],[9.139716419663076,45.416824074754295],[9.139619220398627,45.41673474041284],[9.139580827326586,45.416703526410664],[9.13955059196059,45.41667378763433],[9.139523900473689,45.41664552071152],[9.139503229281981,45.41662270111268],[9.139487119419512,45.416604529520875],[9.13946306681814,45.41658912193736],[9.139441851265385,45.41657881451617],[9.139409776493348,45.41656504588948],[9.13939280533129,45.41656043998729],[9.139378654279943,45.4165540394313],[9.139361179953356,45.41653188199607],[9.13935870824949,45.41654544965889],[9.139357756658205,45.41655870043306],[9.13935509906747,45.41658505888187],[9.13935382688553,45.4166030806279],[9.139353101867414,45.41662533222389],[9.139351612038649,45.41664320121595],[9.13935174931083,45.41667310269528],[9.139350866785978,45.41670408554727],[9.139348941919991,45.41673217131427],[9.139343798532057,45.416766363742084],[9.13933949387242,45.416803813546075],[9.139337162802708,45.41687470902562],[9.139337835204582,45.41690914640555],[9.13933928598018,45.41695349304606],[9.1393411898328,45.416989765150646],[9.13934233473214,45.41702925157033],[9.139340519888954,45.41707614049328],[9.13933957479221,45.41712329839032],[9.139335264053164,45.4171791194378],[9.13932750497427,45.41724636707247],[9.139315110317604,45.417320398171874],[9.13930015554626,45.41738761855351],[9.139285000840363,45.417461923038545],[9.139258588494652,45.41755801486481],[9.139221362603909,45.417664183057525],[9.139191282229973,45.41775517570336],[9.139179415476086,45.417799619537725],[9.139166755922702,45.417828267410975],[9.139152403064246,45.4178543790316],[9.139139114370387,45.41786621361929],[9.139121857276262,45.41787546971278],[9.139104871588337,45.41788073798848],[9.139085889503752,45.41788495555857],[9.13905959235546,45.417887381790614],[9.139028806390062,45.4178886973313],[9.138998069233434,45.417889067689345],[9.138973758008326,45.4178882690986],[9.13894274366673,45.417885048340985],[9.138908467391259,45.41788067939201],[9.138869045937517,45.41787856694701],[9.138835687652845,45.41787850838767],[9.13880050412527,45.417879442151786],[9.138775288677275,45.41787995877485],[9.138739762527372,45.417881901058216],[9.138667108095442,45.417889171944026],[9.138635545761096,45.41789182948216],[9.13861375445669,45.41789188286776],[9.13858638981762,45.417891582951164],[9.13855959739682,45.417890085189896],[9.13853497535254,45.417887612678044],[9.138514264078202,45.417885063421274],[9.138491354212395,45.41788239980575],[9.138468423505506,45.41788167144642],[9.138448127565415,45.41788172299206],[9.138424997587187,45.417883137125735],[9.138403099308643,45.417886494002616],[9.138395655107631,45.417889392352194],[9.138360259783555,45.41787684259531],[9.138353545731942,45.41787516750324],[9.138327942820807,45.41786878065531],[9.138285713227377,45.41786290894337],[9.138197967054449,45.41785546296258],[9.138141350792262,45.4178462241483],[9.138008969003339,45.417826284336726],[9.137817414672122,45.4177969824594],[9.137545846469855,45.417749450173034],[9.137379289206981,45.417724276036836],[9.13721624566436,45.41769862038894],[9.137068550983535,45.4176725140831],[9.136934029460058,45.41765003727739],[9.13682804511921,45.41763181073788],[9.136618435295782,45.417603572550085],[9.136475702657957,45.41757853068732],[9.136346654577672,45.41755721680821],[9.13623527425729,45.41753780799881],[9.136206132841242,45.417532000954964],[9.136094104757658,45.41750891132993],[9.136124422831502,45.41747241185088],[9.136177902560505,45.41741046572436],[9.13623394525161,45.41735140587485],[9.13631351811032,45.41726076914446],[9.136414530218943,45.4171407902455],[9.136481199574813,45.41705780169677],[9.13655516023599,45.41697220309578],[9.136655869432984,45.416859551231695],[9.136826382102488,45.41666036034499],[9.137004303912557,45.41645487756557],[9.137307213616456,45.41610484006936],[9.137338439420933,45.41606910426392],[9.13756808809421,45.415803656217356],[9.137734717922992,45.41561335268747],[9.137792143175686,45.41555136503433],[9.13781378469016,45.4155268199942],[9.137815389485896,45.415524540784524],[9.13784793139572,45.41547842498435],[9.137877378954117,45.41543170982692],[9.137906339003782,45.415389513800704],[9.137917129336365,45.415354207492534],[9.137904756524343,45.415348344676666],[9.137859694906949,45.41534382638046],[9.137804929870365,45.41533800558445],[9.137752826235078,45.415338725359874],[9.137706015208547,45.41534008682576],[9.137655684739347,45.415344719902755],[9.137600951385993,45.415351968567634],[9.137557682076517,45.41535398279683],[9.137514406422174,45.415353377697194],[9.137476415512428,45.41535016491843],[9.137425187512376,45.415343043535266],[9.137383655016233,45.415333948256944],[9.137318260313009,45.41531900386452],[9.137274077590943,45.41530794948479],[9.13723962368712,45.41530341822627],[9.13720163913179,45.41530281566746],[9.137168071814896,45.41530024556472],[9.137116851609335,45.415301612071005],[9.137070944666387,45.415306887672365],[9.137034772792857,45.41532129672253],[9.136990684670037,45.41534944190934],[9.136984391340302,45.41534719916343],[9.136935371893632,45.415323134848705],[9.136930995850204,45.41532098881908],[9.136921542279765,45.41529608507964],[9.136899814775003,45.41526917076698],[9.136774738150821,45.4151966363563],[9.136625074973548,45.415114463965025],[9.13646424618755,45.41501263727985],[9.13619309087948,45.41484877104079],[9.13609405295614,45.414799076702764],[9.136020346087278,45.41477629248506],[9.135911550986876,45.414750723526836],[9.135704204819989,45.4146970888554],[9.135460023730598,45.41463689057996],[9.135279414276939,45.41459389881001],[9.135110499565588,45.41456191930457],[9.135015864417994,45.4145411933783],[9.134873544547599,45.41450882211739],[9.134819739304437,45.414497688109165],[9.13473918492579,45.41448102287304],[9.134522465545768,45.41443502101542],[9.134232285053116,45.41438842980053],[9.134127600321667,45.414365572655655],[9.133955726252346,45.414329994467046],[9.133767816778674,45.414290429262564],[9.133624915871168,45.41426039740956],[9.133476221320477,45.414223045234344],[9.133347569076447,45.41419240235202],[9.133312801583408,45.41418452186358],[9.133309991392478,45.414190573875324],[9.133256741481144,45.41426336475387],[9.133203478631978,45.414336146620656],[9.133147842496768,45.41441061442708],[9.133100471200486,45.414461660735434],[9.133060183082627,45.41449764895259],[9.133012747033,45.41452110692453],[9.132955786888369,45.414537888117046],[9.132936510524088,45.41453621828931],[9.132898788653312,45.414532940667605],[9.132873100365252,45.41457109914102],[9.132821560864507,45.414654302100764],[9.132750988287835,45.41476346827397],[9.132665668645588,45.41488972657457],[9.132638727180556,45.41492771542377],[9.132544984694672,45.41505938404635],[9.132490765040867,45.4151281341852],[9.13245575198674,45.4151905253089],[9.132416456207707,45.41524689963773],[9.132379587046316,45.41528615105555],[9.132336372867705,45.415328344152385],[9.132276476372205,45.41538531830703],[9.132203083870033,45.41544785268846],[9.132105998014445,45.41553855179416],[9.132059546879422,45.41558489802533],[9.131995086638275,45.41566361494725],[9.13196127075764,45.415697075001],[9.131924224091874,45.41572069156418],[9.13186630848208,45.415750461896494],[9.131796373919519,45.41577795075228],[9.131647059264786,45.415860248528006],[9.131585137760355,45.41589323671439],[9.131554081617839,45.41590994243032],[9.131519117201238,45.41593879510862],[9.131467823900506,45.41599171745888],[9.13142121479986,45.41603646141252],[9.131350564291772,45.4161083082291],[9.131226821273016,45.41624010916113],[9.131164987093682,45.41631673434146],[9.131107140929675,45.41637149125443],[9.131048594071064,45.416427266063494],[9.130993874654457,45.41647462943852],[9.130962391687367,45.41651152494257],[9.13092297703123,45.41656172412733],[9.130890935946088,45.416589403125165],[9.130798050523754,45.41666885392895],[9.130759337891064,45.41670211218848],[9.130582978995866,45.4168693467875],[9.130518095879124,45.416937982111435],[9.130458984886369,45.41699348722274],[9.130397932240985,45.417055052252074],[9.130335015254245,45.417111821785284],[9.130294514896823,45.417151589712304],[9.130259872633072,45.41718777752616],[9.130233453484939,45.41722620625222],[9.130275645227782,45.41723843575911],[9.130419729079138,45.4172801988684],[9.130523002298117,45.417310036858574],[9.130518889515754,45.41734455175023],[9.130449279717343,45.41772606151797],[9.130411595327228,45.41796263523194],[9.130406726428296,45.41801301090687],[9.13041013551514,45.418050487586186],[9.130474256863533,45.41847307897034],[9.130516413440654,45.4187421186533],[9.130644956800568,45.419366152931715],[9.130631321055702,45.41957811722743],[9.130624232571783,45.419747066824904],[9.13052617128707,45.420096132987204],[9.130512397978245,45.42024850116897],[9.130486519825109,45.42055632298854],[9.130872981254761,45.420606225092556],[9.130677137545744,45.421392694014195],[9.130657042780868,45.421597410729326],[9.130661396084612,45.421617343176365],[9.130662003244604,45.421620132821396],[9.130663605075023,45.421627475883],[9.130693570168384,45.421618404595336],[9.130723142914375,45.42161102595259],[9.130748526507197,45.421605065256166],[9.130781803901444,45.42159680026159],[9.130823091099398,45.42158665388072],[9.130862779450307,45.42157602325309],[9.130891258488521,45.42156551343726],[9.1309179623963,45.421550127052974],[9.130943856560409,45.42153279735282],[9.130962353497004,45.42151694328415],[9.130983553946676,45.42149285912402],[9.130997511251882,45.42146501178878],[9.131014933892585,45.42142673722496],[9.131027696791909,45.42139088928308],[9.131036062693719,45.42134946569493],[9.131049722889168,45.42130367051867],[9.131056555976475,45.42128484141917],[9.13108287959438,45.42123213691016],[9.131096275870991,45.42120492928119],[9.131102422244014,45.42117101513712],[9.131098851626776,45.421130289290275],[9.131089199912301,45.421057616532494],[9.13108309944939,45.421022816297906],[9.131080033854886,45.42099045188463],[9.131080875260766,45.420961818451765],[9.131083397021143,45.42092469506666],[9.131086661599184,45.42089375458039],[9.131091012064116,45.42086257882247],[9.131097822769691,45.420834082572945],[9.131110843084262,45.420810160768994],[9.13113177703954,45.42079258467229],[9.131147928037151,45.42078493325168],[9.13117302609249,45.42077727158085],[9.131203965314416,45.420769612213434],[9.131236628825942,45.42076142879831],[9.131267236106558,45.420753940814855],[9.131298166808163,45.42074813565645],[9.131333929309415,45.42074249596909],[9.131381255465996,45.42073528581577],[9.13142358329944,45.42073328400993],[9.131462858995855,45.42073242883079],[9.131507977944763,45.42073247603828],[9.131558338896216,45.42073320128889],[9.131606491380595,45.420735108198286],[9.131654350373408,45.420737222449915],[9.13170975709789,45.4207421903478],[9.131751357859079,45.420746337001965],[9.13178384639071,45.42075091717887],[9.131800428188308,45.42075269831376],[9.131826288528767,45.42075410872182],[9.131860936256414,45.42076380801209],[9.131874155882603,45.420781830975976],[9.13187762634041,45.420806714996246],[9.131875740284613,45.420836654796965],[9.131869482720681,45.420872009287244],[9.131863212588538,45.420901954135786],[9.131850153942892,45.42094777572329],[9.131827942995772,45.42098230247519],[9.13181429002533,45.42100337174264],[9.131802933093267,45.4210279487911],[9.131795842483251,45.42105135078654],[9.131791453485144,45.42108779225264],[9.131796435649086,45.42113070371864],[9.131805266011362,45.421151981134514],[9.131817507376896,45.42117252553503],[9.131836585853685,45.42119811167484],[9.13186444699102,45.42122440778573],[9.131910732976092,45.42125348200675],[9.131938337615674,45.42126287434722],[9.131964786166016,45.42126979271342],[9.132013077065563,45.42128155548564],[9.132047551108245,45.421298860839904],[9.132070482833903,45.42130496413755],[9.13209196940206,45.42131070905398],[9.132111482576889,45.421314295981325],[9.132130024349626,45.421317884026145],[9.132150519181202,45.42132038068223],[9.132168095419184,45.42132649014037],[9.13217657993055,45.421336390547964],[9.13218579616223,45.42134764927491],[9.13219266061528,45.421364419383124],[9.132200556698336,45.42138509477305],[9.132208522562724,45.42140829038701],[9.132213178590295,45.42143175085336],[9.132214064867393,45.421455575715456],[9.132212414025144,45.42148216684131],[9.132209930507077,45.42150795783135],[9.132208953339973,45.42153293698405],[9.132206576262558,45.42156052806889],[9.132203800414754,45.42158703048205],[9.132199348253955,45.42161820639579],[9.132196235863983,45.42164289997796],[9.132190638599994,45.42167084582178],[9.132181130009968,45.42172071383316],[9.132178809189751,45.42175600978423],[9.132178352459771,45.421762968153644],[9.132175616421703,45.42179010959656],[9.132172854547996,45.421811643390356],[9.13216977731497,45.42184046843045],[9.132172755557846,45.42186247265662],[9.132176709407279,45.42188627597441],[9.132175330343935,45.42191981562497],[9.132167589515996,45.421949402138615],[9.132160328694269,45.42197104913698],[9.132156964658478,45.4219919805517],[9.132156523420166,45.42201109037319],[9.13215899561492,45.42202984578987],[9.132158566149261,45.42205401420975],[9.13215471975062,45.422076386355016],[9.13214729028321,45.42210796174788],[9.132144260111858,45.422129558856994],[9.132142924580306,45.422148858732825],[9.13214124891741,45.42217579192447],[9.132141399218487,45.42219644024886],[9.132140716913899,45.42222181510563],[9.132134761408315,45.42224415367892],[9.132131737981993,45.42225766780172],[9.132133325188212,45.42228060974555],[9.132129386687616,45.42230735652445],[9.132125169990575,45.42234089044489],[9.13212349228987,45.42236145986804],[9.132121965847833,45.42238661067068],[9.132122693819472,45.42240832945741],[9.132120276515344,45.422451627481976],[9.132115519787723,45.42247830319493],[9.13211366418827,45.42249383221315],[9.132110392898706,45.42252168535451],[9.132102629604498,45.42254715838924],[9.132101308056956,45.422572479975074],[9.132102210261053,45.422603163644105],[9.132098702854707,45.4226284247436],[9.132093955911118,45.42265382228897],[9.13209170018655,45.422678676895224],[9.132088652376822,45.422703703435616],[9.132083650809195,45.42272954232726],[9.13207768958493,45.42275495027318],[9.132074563733386,45.42277940083326],[9.13207198377784,45.42280224856993],[9.13207054596739,45.422832547889925],[9.13206619382044,45.42286283256862],[9.132060920946653,45.42289293828702],[9.132058080994018,45.42291941376107],[9.13205298138654,45.42294707998426],[9.13205012837992,45.42297893812331],[9.132047041228754,45.42304203030592],[9.13204286747283,45.423066590085234],[9.13203658664937,45.42309749806045],[9.132032827419229,45.42312992431162],[9.132026664828317,45.42319519830094],[9.132023144071841,45.423225743049045],[9.132021148417417,45.42325802324851],[9.13201759474853,45.4232909083167],[9.13201504834977,45.42332271209296],[9.132013308120156,45.42335490198641],[9.132010106274361,45.423390675997155],[9.132011889548123,45.423415489938144],[9.132016105237568,45.42344743893683],[9.132015708634807,45.42348027535888],[9.132013898945107,45.42351008004352],[9.132011352741081,45.42353647416514],[9.13200533102567,45.42356340335699],[9.131996887495546,45.42359326069318],[9.131987104465898,45.42362425370935],[9.13197013372725,45.42365348179394],[9.131954814948578,45.423678531468184],[9.131938034533677,45.42370166559291],[9.131917486288788,45.423726064207564],[9.13188698445567,45.423757594141655],[9.131859906849622,45.423783026389195],[9.131832139371038,45.42380312178021],[9.131795034434973,45.42383147290615],[9.13176992907662,45.42385305939837],[9.131704920004006,45.423892252904174],[9.131639828543696,45.423934542841046],[9.131579452842569,45.42398200294672],[9.131543989149073,45.424012665383515],[9.131501355334175,45.424054704414424],[9.131466115432083,45.42407716658041],[9.131442344237609,45.42408988539848],[9.131422964653762,45.42410023188614],[9.131355848997233,45.42412967943323],[9.131293339178857,45.42416097588395],[9.131169647833532,45.42423979611816],[9.131001496956806,45.42433983763795],[9.130963289954513,45.42436177197779],[9.130709557755516,45.424499580446394],[9.130667709464541,45.42452234694265],[9.130622043055421,45.42455234564986],[9.130599300168424,45.424567718438595],[9.130516103176992,45.42460825516272],[9.130425910137477,45.424658205927734],[9.130382531468038,45.42468260325815],[9.130211780769523,45.424776075775576],[9.13003570829833,45.424873514556324],[9.12985924497517,45.42497358182388],[9.129697353194008,45.425056899299676],[9.129560187008103,45.42513665114882],[9.129487262024547,45.42517561831053],[9.129435082499286,45.425203139604626],[9.129241284845639,45.42531484590131],[9.129127602907646,45.42537382322418],[9.129108200313777,45.42538567252368],[9.129097142527764,45.42539092362005],[9.129076155395452,45.42540299972733],[9.12906586686864,45.42540926707609],[9.129056522551464,45.42541478626994],[9.12904587367436,45.42541998289402],[9.129025318918915,45.425431086387654],[9.12901355768646,45.42543616724782],[9.129003320542793,45.42544255154711],[9.128993872317729,45.425447350766134],[9.128982380555804,45.42545289037481],[9.128972244848468,45.42545891451372],[9.128961786140412,45.42546342683336],[9.128948275031481,45.425469103728815],[9.12893590426706,45.42547596748182],[9.12892570429034,45.42548183867047],[9.12891614266408,45.4254873670985],[9.128906285647135,45.42549228378448],[9.128894576972204,45.42549800365012],[9.12888378857974,45.42550369547564],[9.128871620258176,45.42550964988436],[9.128860500780284,45.42551590014737],[9.128849124361466,45.42552158363012],[9.128836599774033,45.42552826752373],[9.128825989284842,45.42553350008832],[9.128813821685839,45.425539778529064],[9.128803531941395,45.42554553279364],[9.128793024482437,45.42555110728046],[9.12878198207115,45.42555752846969],[9.128772523556558,45.42556344381625],[9.128761352579795,45.42556954110905],[9.128751066273571,45.42557681654816],[9.128741251431347,45.42558343437721],[9.12872960869478,45.425590063261126],[9.128718719455948,45.425596394261206],[9.128708570035018,45.42560203134543],[9.128697743643798,45.425607894216505],[9.128687312715723,45.42561340559994],[9.128677954097194,45.42561828570178],[9.128667546181148,45.42562267192212],[9.128655516503079,45.4256277800501],[9.128644113170944,45.42563288747324],[9.12863308079765,45.42563811149262],[9.128621241731125,45.42564272434332],[9.128609710057061,45.42564760688003],[9.12859598154395,45.42565327497664],[9.12859093577263,45.42565476582107],[9.128571115142693,45.42566273603123],[9.128558892709568,45.4256674033123],[9.128545700832621,45.42567297178852],[9.128534515641777,45.42567845700131],[9.128523290450755,45.42568321317015],[9.128509536232876,45.42568882727869],[9.128499209997136,45.42569542765852],[9.128489312991624,45.42569965126978],[9.128476950281044,45.42570447171787],[9.128465574885405,45.42571064121957],[9.128453457952032,45.42571674854431],[9.128444155598084,45.425723914838905],[9.12843435154313,45.425729677526434],[9.128423589256558,45.425735648312525],[9.12841217859478,45.42574318601306],[9.12840392251499,45.42574951403052],[9.128395650435142,45.42575441989407],[9.128385436145084,45.42575966097444],[9.128374418825562,45.42576591107536],[9.128362904811613,45.42577297182939],[9.128351241451606,45.425781823965195],[9.128342082002309,45.42579001621476],[9.128332947769856,45.42579805541688],[9.128324719679375,45.4258054635271],[9.128316058440884,45.425813520200045],[9.128307641168654,45.42582206265745],[9.128299733715684,45.42582994746399],[9.12829198005914,45.42583801211939],[9.128283691338298,45.42584687847002],[9.128277396080238,45.42585546355359],[9.128270791047475,45.42586272582458],[9.128263497843019,45.4258709159774],[9.128256207807883,45.425880510295165],[9.128251267932091,45.42588928288208],[9.128245827660301,45.425897227929504],[9.128239084163843,45.42590544446845],[9.128231417975178,45.42591262691553],[9.128223244257741,45.42592148413178],[9.128216245345376,45.42592980896828],[9.12820910641079,45.425938394992464],[9.128201227541394,45.42594762992252],[9.128194459137656,45.42595614352238],[9.128187730766424,45.425965404166874],[9.128181704770544,45.42597436698906],[9.128175883844413,45.42598357261067],[9.128170392361278,45.42599149070841],[9.128164760409145,45.425999471970684],[9.128157799420391,45.4260076167394],[9.128150659045241,45.42601557268565],[9.12814436183898,45.42602331166202],[9.128136468478743,45.4260317995138],[9.128129955323482,45.42604014180355],[9.128122915963171,45.42604754856895],[9.128114650516862,45.426055424761806],[9.128106159223378,45.42606518243301],[9.128099689504493,45.42607578394411],[9.128095413821741,45.42608434875617],[9.128090496687175,45.42609188816205],[9.128085156280077,45.42609878896424],[9.128078844202143,45.426105609843084],[9.12807102609595,45.426113467530264],[9.128063092780664,45.42612125333711],[9.128054958877362,45.42613078557764],[9.128048331384857,45.426139452029396],[9.128041984846561,45.42614800115254],[9.128035574555046,45.426156622355265],[9.12802921537223,45.42616523449941],[9.128022803372236,45.42617309961237],[9.128016264070661,45.426181198895385],[9.128008870575878,45.42619029825297],[9.12800248383136,45.4261980283203],[9.127996428361154,45.42620528095964],[9.127989845591403,45.42621111201694],[9.127978833739318,45.42621984637183],[9.127972132449278,45.426229809057354],[9.12796425131015,45.4262380718562],[9.12795826511941,45.426247709702906],[9.127952556395153,45.42625568203902],[9.127946310144521,45.42626336694072],[9.127940061560023,45.426270016720224],[9.127932802791301,45.42627651460944],[9.12792394749375,45.426283599351805],[9.12791463436649,45.42629172873046],[9.127906419013515,45.4262991728],[9.127897999316568,45.42630669810688],[9.12789005282308,45.4263143308977],[9.127881965108857,45.42632169381319],[9.127874398871445,45.42632789500624],[9.127865567725625,45.42633435864242],[9.127853518804377,45.42634237405637],[9.127842529796435,45.42634992022955],[9.127833660943622,45.42635667193995],[9.127824676152168,45.42636302773141],[9.127814593559036,45.426370059828535],[9.127805493515702,45.426376325736314],[9.127795486561164,45.42638288969106],[9.12778664146042,45.42638884027496],[9.12777734742099,45.42639410727676],[9.127767464905798,45.42639916790947],[9.127756418041269,45.42640373478068],[9.127744326549967,45.426409887006464],[9.12773372847621,45.42641507444956],[9.12772297644013,45.426420010033034],[9.12771084513582,45.42642551422173],[9.12769728675087,45.42643306324599],[9.127686782722172,45.42644028482441],[9.127676611286416,45.42644761404402],[9.12766645710306,45.426456932482616],[9.1276583970297,45.426465240464914],[9.127650797296807,45.42647361994217],[9.127643185244219,45.426482206457536],[9.127635242879668,45.42649170244977],[9.127628908192976,45.42649988249187],[9.127622165243409,45.42650841403077],[9.127616049276789,45.426517223904156],[9.127609755380437,45.426526493030636],[9.127604254684247,45.426536058308685],[9.127598739747148,45.426544975524415],[9.127594257345004,45.42655261343584],[9.127586567160632,45.42656056995863],[9.127579982303264,45.426571198570926],[9.127574916658782,45.42658096138662],[9.127571241125947,45.42658929148163],[9.1275665666708,45.42659679458965],[9.127561062058124,45.42660462266107],[9.12755490547885,45.42661243345617],[9.127548750171597,45.42662081131767],[9.127542353464396,45.42662984652661],[9.127536122972526,45.426638899552266],[9.12752998547595,45.42664951866225],[9.127526288490078,45.426659685000274],[9.127522462805208,45.42666946443497],[9.12751884528298,45.42668086383246],[9.12751624569829,45.42669017384542],[9.127511715780287,45.42669943200108],[9.127507608321652,45.42670896871971],[9.127504120208666,45.426715381373306],[9.127497667704018,45.42672234639296],[9.127489939619483,45.42673051897715],[9.127481816617808,45.42673929507287],[9.127473956302609,45.42675120325204],[9.127469377989263,45.42676168560688],[9.127466011784138,45.42677115849128],[9.127462760361098,45.42678051423378],[9.12745885529301,45.42678910561173],[9.127453837426494,45.42679739219116],[9.127448923579104,45.42680646174866],[9.127443933618698,45.42681579242203],[9.12743960685157,45.426824447276076],[9.127434821414223,45.426833777721434],[9.127430357001836,45.42684375588724],[9.127426413898998,45.42685249132358],[9.127422281495495,45.42686231610125],[9.127418277525424,45.42687241076833],[9.127414640097445,45.42688065080465],[9.127410314714425,45.42688992673056],[9.127406168088646,45.42689911244663],[9.127401622990343,45.42690731748793],[9.127397206870809,45.4269160354472],[9.127391906851425,45.42692391728894],[9.127386545985235,45.42693316736243],[9.127380726588209,45.4269431560343],[9.12737557157755,45.426952999949634],[9.127370592658993,45.426961565515384],[9.127365436716213,45.42697099538156],[9.127360782777922,45.426981972875225],[9.127357519753804,45.42699186869215],[9.127354179344646,45.42700145855828],[9.12735032729434,45.427010904975916],[9.127346612483914,45.42701884806026],[9.127341976796897,45.42702656714136],[9.127336434287503,45.42703462927161],[9.127330572364668,45.427042763765336],[9.127323626352917,45.42705199759586],[9.12731694742845,45.42706062805662],[9.127311085459771,45.42706874454721],[9.127304433408954,45.4270779600476],[9.127297664231133,45.427086248566425],[9.127291086391965,45.42709435685053],[9.127284497603988,45.42710328424481],[9.127278343757,45.42711235517265],[9.127271896465047,45.42712167845652],[9.127265155062181,45.427130957061415],[9.127260241962631,45.427140386652674],[9.12725509303953,45.42714726019876],[9.127247840009966,45.427156404354854],[9.127242739295664,45.427167679375415],[9.127239463517828,45.42717760220609],[9.12723658007793,45.427185769389965],[9.127233069041555,45.42719338820506],[9.127228521212388,45.42720039609829],[9.12722165030974,45.42720893675573],[9.127215356231837,45.42721818785736],[9.127210110295328,45.427227410791204],[9.127204584583385,45.42723728211336],[9.12720051479842,45.427246557746855],[9.127196303693651,45.427255518499315],[9.12719223253505,45.42726418206053],[9.127188417861497,45.42727321438103],[9.12718366170107,45.427284236985834],[9.127179947292923,45.4272923780877],[9.127175262928597,45.42730121334971],[9.127169405672047,45.42731145408249],[9.127165321621538,45.42732007265156],[9.127160915999333,45.42732780047052],[9.127154163262327,45.427337745161076],[9.12714940493328,45.42734780465107],[9.127145718762575,45.427357142864096],[9.127142568086315,45.42736585940797],[9.127139109206169,45.42737394621824],[9.12713439930304,45.42738279950897],[9.12712963985837,45.42739236393986],[9.127124168593449,45.427403729376756],[9.12712040529371,45.427412878651815],[9.127116934793206,45.42742148753688],[9.127112964645653,45.427429601917],[9.127109032080382,45.427437374214186],[9.127104000012785,45.42744507572281],[9.127097869812406,45.4274533185147],[9.12709103904177,45.42746267821767],[9.127085104470968,45.42747265800031],[9.127079590106502,45.42748190822885],[9.127074471208592,45.42749079797509],[9.127068298487602,45.42750289327493],[9.127063719353876,45.42751306957628],[9.127059038840349,45.42752364203747],[9.127054825718972,45.42753172068062],[9.127048610854098,45.42754212382294],[9.127043042867758,45.42755026697621],[9.12703594411563,45.42755984299893],[9.12702839865903,45.42756973455444],[9.127022056558634,45.42758040786881],[9.127017813857044,45.42759241101435],[9.127015444807263,45.42760197278904],[9.127013242137819,45.42761162438992],[9.12701065329804,45.42762007927533],[9.127007208133017,45.427628598117856],[9.127003109983686,45.42763664962825],[9.12699848996189,45.42764570083707],[9.12699326257141,45.42765753405293],[9.12698910378375,45.42766705280607],[9.126985145940969,45.42767496914396],[9.126980663326666,45.427682589027896],[9.126975451874351,45.42769011970889],[9.126969780853655,45.427697929932634],[9.126963293766885,45.42770665917093],[9.126956805812775,45.42771500136339],[9.126949987408203,45.42772419902432],[9.12694485614784,45.42773329580291],[9.126939277920323,45.427742591100426],[9.126934975626039,45.427750822856076],[9.126929866184708,45.427758245408874],[9.12692342977465,45.42776677656489],[9.126916304121476,45.427775776540464],[9.126910036160933,45.42778532463109],[9.126903910160184,45.427795475636366],[9.126899994789651,45.42780524614658],[9.126896279964743,45.42781323422054],[9.126891570671129,45.42782239353664],[9.126887218458343,45.427831174411565],[9.12688221555242,45.427840514074084],[9.12687787821156,45.427850231044445],[9.126873717640725,45.427858966701095],[9.126869620199894,45.427867351245524],[9.126864742826568,45.42787566464508],[9.126859726727716,45.427884824299596],[9.126855962468658,45.4278935775187],[9.126850317701289,45.42790171174603],[9.12684444953151,45.427912843580074],[9.126841227608548,45.4279240354906],[9.12683945839764,45.42793318254704],[9.126836909274106,45.42794226745962],[9.126833846110047,45.42795013779567],[9.12682967272186,45.42795886446367],[9.12682515555461,45.42796820358562],[9.126820563938544,45.42797855091071],[9.126816851503401,45.42798761910878],[9.126813190822821,45.427996966282905],[9.126809339298328,45.42800671871677],[9.126805933695419,45.428015804576866],[9.12680274560607,45.42802498020682],[9.126799033627337,45.428034255428585],[9.126795220949829,45.42804423284589],[9.12679209592883,45.42805303036036],[9.126787707483931,45.42806277438674],[9.126782861295405,45.42807361705136],[9.126779723568076,45.42808245058379],[9.126775601917505,45.42809145622581],[9.126772976841247,45.428100883261834],[9.126768907526658,45.42811042891038],[9.12676585061353,45.42812110757426],[9.126764085483549,45.42813209084491],[9.126764430019948,45.428143269804195],[9.126764527355746,45.42815251380502],[9.126764274803342,45.428159633938385],[9.12676186068663,45.428166216399426],[9.12675693487172,45.42817575399439],[9.126752714099732,45.42818617291458],[9.126749310847833,45.428196320897484],[9.126745983811716,45.428206252769975],[9.126742977278566,45.42821659833738],[9.126740750579836,45.42822697004488],[9.126738878354471,45.42823579317443],[9.126736509471982,45.42824546295499],[9.126734307272619,45.42825535757803],[9.126732617144162,45.42826558467429],[9.126731756839055,45.428275324794015],[9.12673084542088,45.42828507397129],[9.126724826411982,45.428320292853186],[9.126721598837959,45.42832897346474],[9.126718988352934,45.42833921958119],[9.126717528618656,45.42834958143834],[9.126716488641447,45.42835900671881],[9.126715578344175,45.42836925995502],[9.126714875972953,45.42838103414358],[9.126714078856168,45.42839045015417],[9.126713192075663,45.42839978525428],[9.126712292732574,45.428409219380086],[9.12671136613548,45.428417897445414],[9.126709992506138,45.428426747025796],[9.126708326930466,45.4284365240403],[9.126708030768825,45.42844701962603],[9.12670780751047,45.42845581392714],[9.126706983017296,45.42846441987077],[9.126705840509105,45.42847372825035],[9.126705427509933,45.428483422869256],[9.126704411086338,45.42849194801542],[9.12670223309273,45.42850123953836],[9.126701454720521,45.428513328848354],[9.12670161767032,45.42852333786776],[9.126701870223576,45.42853340079448],[9.126702158776853,45.42854241055511],[9.1267024100248,45.42855188841315],[9.126702648810912,45.42856151030218],[9.126702915393066,45.42857213128022],[9.126703217412874,45.42858144706256],[9.126703455596719,45.428590798919885],[9.12670377250892,45.42860105979901],[9.126704024359961,45.42861080768861],[9.126704225600152,45.428620789662254],[9.126704374502147,45.42863023162903],[9.12670457505958,45.4286399075667],[9.126704817220752,45.42865104163305],[9.1267050690923,45.42866079852368],[9.126705254978667,45.42866962837611],[9.126704391489442,45.428677946327994],[9.126702316217134,45.42868744476177],[9.126700383669366,45.42869788815087],[9.126699678198088,45.42870827617597],[9.126699073948664,45.428718196032975],[9.126698674412815,45.42872819667318],[9.126698669713571,45.42873754879893],[9.12669876685911,45.42874671178935],[9.126699031453148,45.42875644166248],[9.126699218543974,45.42876581157816],[9.126699433471039,45.42877619858492],[9.126699647393973,45.42878613553885],[9.126699273364181,45.4287961091475],[9.126699501215302,45.428806559147425],[9.12669975252432,45.42881606400818],[9.126700028857835,45.42882532581211],[9.126699947217796,45.428834570009876],[9.126699980447041,45.42884373307084],[9.126700509104804,45.42886868347508],[9.126701356504329,45.42890471385387],[9.126701649277337,45.42891561383569],[9.12670190159149,45.428925568749044],[9.126702298499486,45.42893730571586],[9.12670248484838,45.42894634259221],[9.126702774589008,45.42895588341449],[9.126702987870551,45.4289655323343],[9.126703306110532,45.42897638728244],[9.126703595971975,45.428985982111044],[9.126704192152449,45.42899536057484],[9.12670466106176,45.4290049912096],[9.126705001514805,45.42901434295307],[9.126705394105757,45.429024144692725],[9.126705618283385,45.42903294749903],[9.126705536423097,45.42904209268487],[9.126705368373095,45.42905271414282],[9.126705633431769,45.42906265103965],[9.126705910189322,45.42907210186537],[9.126706520098544,45.42908190336446],[9.126707269319763,45.42909111963941],[9.126707469417523,45.42910058855198],[9.126707618361667,45.42911004852009],[9.126707871039345,45.42912016545212],[9.126708071056974,45.42912959836042],[9.126708359875595,45.42913872513384],[9.12670753767625,45.42916554925538],[9.126706354828864,45.429191158630346],[9.126703905627215,45.4292106846776],[9.126703735105984,45.42922019900545],[9.126703037632184,45.42922844476424],[9.126701957478804,45.429237059990555],[9.126701177800703,45.42924283954503],[9.12670004739677,45.429251850874316],[9.12669890384752,45.42926070019873],[9.126698538831922,45.4292632569086],[9.126697177742866,45.42927200746178],[9.126695663392711,45.42928082119201],[9.126695082745421,45.429284134230926],[9.12669351764245,45.42929311903775],[9.1266920165767,45.42930215778018],[9.12669079377396,45.429309864055256],[9.12667731355472,45.42947314951012],[9.126677873082329,45.429517668219574],[9.126674250626467,45.42956712414443],[9.12667845732001,45.429647751140315],[9.126684508140956,45.42966109304467],[9.126688539649427,45.42967465320827],[9.126690016803467,45.42968926932328],[9.126688318440284,45.429701557672104],[9.126687382489544,45.42971178393081],[9.126684551910907,45.42973800719896],[9.126681697802193,45.42975941491684],[9.126684648628666,45.429781356278205],[9.126693554295114,45.42980798961433],[9.126695482383496,45.42982990510333],[9.12668906357651,45.42985790555258],[9.12668766246111,45.4298945594867],[9.126708638822628,45.42996261142377],[9.126707277448297,45.430017069442805],[9.126680616197408,45.43007679407489],[9.12664355711996,45.43013443294753],[9.126596080541479,45.43019837507546],[9.126527741905273,45.430245571227765],[9.126456411797081,45.43029277964294],[9.126377199985159,45.43035989808941],[9.126374737382289,45.430361989056365],[9.125996767292254,45.430704581384305],[9.125993373642892,45.43070766348545],[9.125852553453567,45.43082575040162],[9.125849427231179,45.43082837314976],[9.12550015590388,45.43112126433749],[9.125424965556743,45.43118115884526],[9.125348879682067,45.431240829256154],[9.125295306897513,45.43128346295844],[9.125055096130133,45.43147461127371],[9.125014950069017,45.43151325170691],[9.124957390658224,45.43155701473434],[9.124902973201724,45.43159949615353],[9.124845903346257,45.431645049803954],[9.12471295825381,45.431759526281674],[9.124615409821143,45.43184985922044],[9.12457350320468,45.43189041864006],[9.124525007632107,45.43194031032011],[9.124489668600503,45.43196770299839],[9.124417050351374,45.43202973629346],[9.124342743339769,45.432102941706894],[9.124216864212919,45.432210857145535],[9.12409222698507,45.43231398252709],[9.123996411975742,45.43239695917393],[9.123735228229302,45.43260673259602],[9.123595289823394,45.43273486993467],[9.123529992340728,45.43280743501275],[9.123465432076303,45.4328604759328],[9.123392034109088,45.432911843136786],[9.123329410317075,45.43296778023791],[9.123258121801936,45.43302517580146],[9.123057024289391,45.433184332955435],[9.122987775265825,45.43324511055971],[9.122914007913078,45.433321158786995],[9.122843421167243,45.433390137713594],[9.122766696691922,45.4334527234131],[9.122663986855473,45.43352971160226],[9.122567334418184,45.43361754850754],[9.122476380734263,45.433698151376504],[9.122370998533523,45.43378720359084],[9.122312226119448,45.433833693888026],[9.122260951178657,45.433876962769794],[9.122065147543353,45.43404527559205],[9.121932114883476,45.43415397919213],[9.121763122401443,45.43430020132219],[9.12169516504538,45.43435649422505],[9.12167076150256,45.434381426109645],[9.12165035882322,45.43440602970129],[9.121639130418735,45.434422297557525],[9.121620244858185,45.43443896058923],[9.12157856447054,45.434467655241896],[9.121548717962495,45.4344882003553],[9.121410594168882,45.43457859156606],[9.121354475111385,45.43460515018428],[9.121325125621526,45.43461904292205],[9.121257422472572,45.43465107741088],[9.121233533367313,45.43466561242132],[9.121223765279398,45.4346833008593],[9.121219506415127,45.434700533412645],[9.121225695327851,45.43472500977051],[9.121237393480262,45.434749030243374],[9.121253263930788,45.43476317212568],[9.121271559672183,45.43477552922635],[9.12129405297081,45.434789835111104],[9.12133301606292,45.43481155842922],[9.121365778366778,45.434827194580755],[9.121392290075038,45.4348373736986],[9.121452903338568,45.43486169333969],[9.12150748760852,45.434888512640306],[9.121509996050227,45.43488974312572],[9.121616853974107,45.434944905279906],[9.121630945569722,45.43495218118258],[9.121653521116377,45.43496303049845],[9.12168088671937,45.43497190348723],[9.121709232201288,45.43497865117608],[9.121738990263339,45.434988313702746],[9.1217636303311,45.43499606443488],[9.121790433709329,45.435005064010056],[9.121834206341527,45.435015863746216],[9.121897138412848,45.43503031551323],[9.121955834802979,45.43504292653645],[9.122003339055144,45.435052984146864],[9.122037702365578,45.435063874836594],[9.122056100943475,45.43507636671743],[9.122076092483454,45.43509241231953],[9.122086886500606,45.43511195113541],[9.12209067407889,45.435137258102465],[9.122088879739172,45.43517085200206],[9.122084606223888,45.435210893308806],[9.122079471014732,45.43523666884042],[9.122071445690906,45.435268046116235],[9.122066586233057,45.435285315343755],[9.122060237433299,45.435305601515985],[9.12204739606188,45.43533282542846],[9.12203606436568,45.43535460208474],[9.122021749776987,45.43538045940139],[9.122006791000787,45.43539807242403],[9.121992985614723,45.43542292107486],[9.121961009568395,45.43549977023982],[9.121942639450761,45.43553629812933],[9.121928832386514,45.435554440978144],[9.121906072779334,45.43558304359335],[9.121883317825445,45.43561382445731],[9.121869091764987,45.43563929461352],[9.121859279330737,45.43566013352361],[9.121844562341712,45.435683236918095],[9.121829783890158,45.43571345121925],[9.121809770006513,45.43574069173279],[9.121792773109643,45.43576782102197],[9.121774923661734,45.43579684143902],[9.121761334899368,45.43582144680097],[9.121743474609755,45.435845426626706],[9.121725625112184,45.435874447035715],[9.121708632187065,45.435903466531556],[9.121684825608826,45.43593880301159],[9.121664436614521,45.435976017079426],[9.121641479820807,45.436008202273875],[9.12160918815135,45.43606938981126],[9.121570908925925,45.43611672205118],[9.121544560011612,45.43615899202032],[9.121520759966941,45.436197478830984],[9.12149783266625,45.43624352560662],[9.121474035269868,45.43628328155452],[9.121452416031689,45.436319272741855],[9.12141370247828,45.43638485054912],[9.121387350627845,45.436425860333834],[9.121362921328375,45.43646912734279],[9.121321059733582,45.436539425010984],[9.121295678404532,45.43656799427223],[9.121275220368181,45.436597053373696],[9.121257307738373,45.43662068213398],[9.12123486689568,45.436649239267304],[9.121219333723658,45.4366735495839],[9.12120304384642,45.4367027392767],[9.121184353039007,45.43673319165642],[9.12117043689609,45.436760380596276],[9.121155779002114,45.436781485598445],[9.12113381173401,45.43681633395507],[9.121120231720106,45.436839292032076],[9.121104794663093,45.43686675260363],[9.121090327458678,45.4368933660475],[9.121060159334801,45.436949636593454],[9.121045635478106,45.43697368478752],[9.12103240869382,45.43699444622021],[9.12101932793512,45.43701174208683],[9.121005402186622,45.43703449349017],[9.120991213241815,45.43705373475427],[9.120978017812023,45.43707122876056],[9.120958446015173,45.43709635340116],[9.120946232365919,45.43711859892931],[9.120932132039469,45.43714945146625],[9.120908719130702,45.43720201539976],[9.120884248146657,45.43725605661923],[9.120855799867206,45.437309615972],[9.120824038874696,45.43735657202999],[9.120765958256943,45.43746014552494],[9.120731886740069,45.43752090262407],[9.120336103200867,45.437411929164064],[9.120302518007923,45.43747311767581],[9.120276752695107,45.43752003127878],[9.12022826598717,45.437608355620924],[9.1201560489377,45.437708505231484],[9.120052235672484,45.43784339601723],[9.119942926711534,45.4380036934623],[9.119790984035369,45.43818523289641],[9.119720588838856,45.43827696432197],[9.119655222172383,45.43836454996087],[9.119571926800024,45.438444557380365],[9.119532996210529,45.43848164638768],[9.119357915575184,45.43864197586607],[9.119322516946553,45.43867460559392],[9.119106283328415,45.4388739521425],[9.11907279928819,45.43890516663409],[9.118953776038738,45.439014194148946],[9.118930819550203,45.43903564051391],[9.118826577255252,45.43913304117635],[9.118824650387435,45.43913484338756],[9.118186407664624,45.43972752148826],[9.117653480171827,45.44023894328548],[9.11750659279177,45.440416900996226],[9.117418232881384,45.44052394219388],[9.117240168769008,45.44066955469403],[9.117079988805607,45.440758081919256],[9.11702879264196,45.44078871983261],[9.116965349660699,45.440826679088296],[9.116840738770073,45.440902307138785],[9.116756137940982,45.44101652682603],[9.116656650823778,45.441172904565995],[9.116469671075082,45.44148695273222],[9.115981949676062,45.44231758810132],[9.11593820606823,45.44239208912321],[9.115783987538277,45.44265471590786],[9.115754259901818,45.4427053498888],[9.115720861962997,45.442768274010966],[9.115657479592906,45.44288771002578],[9.11559200797194,45.44301108157245],[9.11518821749695,45.4437719244436],[9.115049429541088,45.443740056158],[9.115027513414628,45.44373391244316],[9.114914926266097,45.4437023507223],[9.114764612340233,45.443661456592274],[9.114742901335102,45.443655546644614],[9.114739319096993,45.443654578118554],[9.114724759803481,45.44365061423329],[9.114721177547807,45.44364963670563],[9.114698519827629,45.44364347566805],[9.114694937572853,45.44364249813955],[9.11467226705351,45.443636328108525],[9.114598869370251,45.44361635620443],[9.114391411354331,45.44356237719079],[9.114369585817522,45.4435567013139],[9.114365990859769,45.443555759791984],[9.114345598178048,45.4435504515233],[9.114342003239223,45.44354951900171],[9.114322813142962,45.443544524565624],[9.114319205418221,45.44354359205601],[9.11429882553192,45.44353828376629],[9.114295217789854,45.443537342254885],[9.114271230184887,45.44353110144969],[9.114015209178975,45.443464478693464],[9.113993383717517,45.443458802744495],[9.113989788772221,45.44345786121071],[9.113987626708514,45.44345730529649],[9.113984031763414,45.44345636376256],[9.113960044226962,45.443450122891846],[9.113951626206603,45.443447935007754],[9.113574169578516,45.44335498688409],[9.113459058663839,45.44332663960486],[9.113422359000086,45.44338963832628],[9.113413375210081,45.443405057026695],[9.113353311788849,45.44351167996246],[9.11317247655143,45.44383581570526],[9.112844673017333,45.44443294494146],[9.112789749985211,45.4445342428758],[9.112784934173071,45.444543122655475],[9.112781417722921,45.44454953486719],[9.112780041745355,45.4445520565167],[9.112779213601375,45.4445535695089],[9.112777837623609,45.44455609115835],[9.11277176028569,45.44456717743735],[9.11277037150248,45.444569690098255],[9.112762090037663,45.44458481101821],[9.112760714058375,45.444587332667425],[9.112754267216483,45.44459908538707],[9.11275197390453,45.44460328213492],[9.112746355222665,45.44461353086313],[9.112744061909542,45.44461772761082],[9.112737525891989,45.44462965143722],[9.112736137123608,45.4446321730987],[9.112729613889636,45.44464409691204],[9.112728225120556,45.444646618573486],[9.112719943633254,45.44466173949013],[9.11251466293139,45.4450363850791],[9.112506292142225,45.44505166808587],[9.112504903353223,45.445054189744404],[9.112504075194567,45.4450557027345],[9.112502699174533,45.445058215379376],[9.112497246062853,45.44506817589828],[9.112493640966004,45.4450750562423],[9.112382010453729,45.445288373725894],[9.112110453447727,45.44576869287749],[9.112172932961709,45.44578228631688],[9.112171974691096,45.44580208956827],[9.112169689721153,45.445849383329524],[9.113060998542021,45.445953009414794],[9.113055283855362,45.445979298123696],[9.113042002504901,45.446032975495925],[9.112810056786994,45.44600837922098],[9.112699435889343,45.44627325400428],[9.112471101484203,45.44621302733071],[9.112273012498154,45.44616079050103],[9.112210936442281,45.44630624528926],[9.11220710577559,45.446315511122144],[9.112153438375397,45.446445448829714],[9.112152035913462,45.44644754744731],[9.112131148728361,45.446496578611246],[9.111900114418408,45.4470388927265],[9.111813763429312,45.44724159965389],[9.111485591776255,45.44799415508943],[9.11124592668078,45.4479429290568],[9.1110145664531,45.44869210362203],[9.110974518437388,45.4488247368391],[9.11092664937496,45.44898627997152],[9.110800504266276,45.449402970444346],[9.110693925723258,45.44974886662713],[9.110616151571122,45.44999322110129],[9.110504818341601,45.450354702469646],[9.110411879585422,45.450587937112346],[9.11032710997993,45.45058337423181],[9.110197361188781,45.4505773603844],[9.11013546491064,45.45057684383191],[9.109696208745495,45.4505878414471],[9.1095615557496,45.45093631067141],[9.109508176727005,45.450949359207634],[9.109427545007197,45.45094879716921],[9.109405753282696,45.45098178880078],[9.10933611361918,45.45097816484777],[9.109160405183273,45.45090698111178],[9.1091493606518,45.45090937690997],[9.109126415096515,45.45091434033867],[9.109075014519139,45.45092547856703],[9.108875530343793,45.4508528858574],[9.108791226457829,45.45081788886679],[9.108697426016906,45.450785538128834],[9.108613112799109,45.45075892098679],[9.108469524929736,45.45071845329835],[9.108374502818709,45.45068236801806],[9.108251257935942,45.4506132124874],[9.108115598210592,45.45055196245337],[9.1079778748607,45.45050824823593],[9.10789598453795,45.450497803156104],[9.107744732547552,45.45049505614581],[9.107561393043257,45.4504981177309],[9.107360473998819,45.45049671297437],[9.107273075548665,45.45049487760673],[9.107147265145635,45.45047482397987],[9.10698496361393,45.45044462410986],[9.106680799679898,45.45038582483845],[9.106673685018073,45.450383482189444],[9.106648975622509,45.45037533224162],[9.106635680418995,45.450370952105416],[9.10665344208813,45.45034990013463],[9.10668755555562,45.4503061323039],[9.106778894815616,45.45015964523757],[9.10683335833475,45.450063787353386],[9.106872093750766,45.449982309779436],[9.106882186768631,45.449936449043044],[9.106883049427918,45.44989880586857],[9.106873730293607,45.44986665382717],[9.106837478884863,45.44979345513024],[9.106791030352534,45.44971753860804],[9.106761285860257,45.449656656251676],[9.10670922320946,45.449546522950065],[9.106649747513712,45.44943160796608],[9.106593970352977,45.44931805766733],[9.10651407770959,45.44917852573594],[9.106450955889983,45.44909645884794],[9.106411088119614,45.44907186001424],[9.106349950295721,45.44905891026117],[9.106265654854989,45.44903982523769],[9.106173920736117,45.44900911769269],[9.106078476937373,45.448970879632235],[9.105881110116787,45.44889647049803],[9.105725439789937,45.44883980862677],[9.105642981245712,45.44881798513001],[9.105542962371329,45.448808500181755],[9.105474415777861,45.448792820464796],[9.105189678009003,45.44868772494198],[9.105123336924938,45.44866134074474],[9.10507732076867,45.448644559992545],[9.105178463095056,45.44851517616434],[9.105255927152621,45.44842306933003],[9.105359912799265,45.4482965090533],[9.10540978338726,45.44823360887461],[9.10547122394427,45.448100354836875],[9.105436127010796,45.44808946886421],[9.105386037533922,45.44807569833252],[9.105228547461232,45.44803614844155],[9.105053453036593,45.447984985119504],[9.104744924590472,45.44788808323265],[9.104583072521862,45.447833360670245],[9.104433755687188,45.44802360798084],[9.104179288644072,45.44795841098367],[9.103880977385606,45.44787450398854],[9.10370217374598,45.44782196479563],[9.103538618555245,45.447772300882995],[9.103456678084486,45.44773872896779],[9.103374716396496,45.44770749728535],[9.103118406891882,45.44759802342552],[9.102978838502406,45.44753916505459],[9.103044274274238,45.44745552249717],[9.103081954329262,45.44741054637348],[9.103134690331498,45.447382433654965],[9.10323359397858,45.44728653743755],[9.103299238733095,45.44723378614279],[9.103357455731567,45.44716803499308],[9.103419881347529,45.447131281395855],[9.10348234366983,45.447107696266386],[9.103538582478711,45.447093342801296],[9.103473140876266,45.44698369711795],[9.102932625478784,45.44722247766299],[9.102232046028638,45.447192807236625],[9.102102753101297,45.44724349939531],[9.102050830610912,45.4472762194508],[9.101954737520588,45.447343227777914],[9.101870791396511,45.447395427502286],[9.10173785827634,45.44744180197843],[9.101509108281443,45.4475314842432],[9.101376925366424,45.447826502594594],[9.101354897192136,45.44787943023901],[9.101319585958478,45.44791992117317],[9.101202517807907,45.44805078283296],[9.100853180418612,45.448445219647056],[9.100788408986418,45.44847334189171],[9.10063527807114,45.4485111368364],[9.100581078395344,45.44852279576581],[9.10052368366775,45.44852831875777],[9.100271845428734,45.448545650358],[9.100250043149352,45.44854619149136],[9.100230658367781,45.4485470725462],[9.100294307535126,45.44846256003989],[9.100214606306446,45.44844373655992],[9.100302988656058,45.44830951663639],[9.100399408506867,45.44817214823499],[9.100453879477893,45.44809715778158],[9.100504077195321,45.44802102791548],[9.100627282040858,45.44784521034855],[9.100723701416616,45.44770846273497],[9.10087024269558,45.447496899222436],[9.100994340391399,45.447321080457556],[9.101077359143776,45.44720008717599],[9.101123032019196,45.447125959249355],[9.101225660942827,45.44695898019119],[9.101172158546522,45.446951997614754],[9.101168397772053,45.4469512898517],[9.101044268175798,45.446935953557926],[9.100883816487386,45.44692455556325],[9.10073287668724,45.446919215690706],[9.100501368810846,45.446909832817994],[9.100224499678028,45.4469052867122],[9.100057832657116,45.446900643779465],[9.099721700636207,45.446892718777434],[9.099523549049715,45.44689425917288],[9.09931428876531,45.446897861090235],[9.099080012318218,45.44689190713569],[9.099052389778114,45.44689095889765],[9.09890204110291,45.44687979241575],[9.09885431572086,45.44687827640662],[9.098337347901124,45.44728615361409],[9.098228619324876,45.44738448429556],[9.09817872628945,45.44746077492805],[9.09809757661019,45.447527560182756],[9.098004960079544,45.44759656044131],[9.097949805086063,45.44763985762643],[9.097870471325926,45.44770699220677],[9.097747356665476,45.447828566411225],[9.097474670237188,45.44814008187217],[9.097304399852312,45.448325630121765],[9.097126569558862,45.44852543317525],[9.096794351314482,45.448898474551],[9.096715238466677,45.44886439136009],[9.096321064538232,45.448691030069895],[9.09609342566912,45.44858387464451],[9.09600648613575,45.448639735983114],[9.095483028450221,45.44897431006072],[9.095656235335403,45.44906976576568],[9.095723344825233,45.44911432792984],[9.095600816964383,45.449224404964816],[9.095581694942037,45.4493284009931],[9.095552863716907,45.44942299901743],[9.09548480151179,45.44952688279327],[9.09532707727931,45.449780366488255],[9.095272688011411,45.44990144875777],[9.095296099758027,45.44998330280095],[9.095330719343853,45.45003786535154],[9.095368535021898,45.450091822162086],[9.095281176861045,45.45017437137894],[9.095227456612273,45.45022187852604],[9.095030296348002,45.45041783285762],[9.094858791683903,45.45059300920787],[9.094774629062437,45.4506755463846],[9.094647192964663,45.45080559073862],[9.094512556493614,45.45094335477831],[9.094431583986871,45.451014619761],[9.094334600288676,45.45110903054285],[9.094332047037755,45.45111169695266],[9.094289714166976,45.4511559449032],[9.094201956297244,45.4512615902837],[9.094110140102442,45.45134935385492],[9.094035722662536,45.451418002867925],[9.093918969188225,45.451537173371],[9.093842503444407,45.45156612033669],[9.093653977913046,45.451637481754474],[9.093628796143216,45.45172209411757],[9.093592533875576,45.451795590233],[9.093538844325165,45.45186352891214],[9.09342677151234,45.45201500882272],[9.093259821359297,45.452236156329604],[9.093162297294768,45.45237783100173],[9.092983473479016,45.45229996416074],[9.092975282891205,45.4522963973904],[9.092959878105965,45.45229979427432],[9.092880591398915,45.452317293555446],[9.092475745182542,45.45240664113431],[9.092347664257897,45.45243677185039],[9.092022341442958,45.45251331726231],[9.091463468842854,45.452644810637665],[9.091440943678544,45.45265015722157],[9.091118304188415,45.452726787926],[9.090545975456848,45.452859466637236],[9.090541527458303,45.452861036330916],[9.090515991714636,45.45287124567136],[9.090509586212951,45.452872303849915],[9.090022115224823,45.45295276988739],[9.089637010108492,45.45301236145839],[9.089102298220512,45.45309509274901],[9.089088822051398,45.45309718246087],[9.088793819891263,45.45314513480681],[9.088733062817976,45.4531633009344],[9.08867344032902,45.453187361833194],[9.088604550092343,45.45321413917573],[9.088063676717205,45.453350345537935],[9.087884225822016,45.453401906156095],[9.087856407972458,45.45340891228009],[9.08761049370715,45.45344459153315],[9.087525526697108,45.4534130987767],[9.087375841052111,45.45331897205198],[9.087038435870252,45.45310481488934],[9.08700124240396,45.45307748895457],[9.08687098235189,45.4529817986437],[9.086842943334371,45.45296119849924],[9.086698371668371,45.45292318849145],[9.086391314834453,45.452933240367926],[9.086272921899363,45.45293711893877],[9.086235673756153,45.45292400543744],[9.086156267144949,45.452898124127024],[9.086095484362323,45.452857521080645],[9.086064996875903,45.45281597716237],[9.086047324660726,45.45279189463952],[9.085995062267711,45.452710951483276],[9.085922007064822,45.45267330088602],[9.085580770112667,45.452515569789135],[9.085284330066504,45.452372377047894],[9.085194988853603,45.4523301025578],[9.08484013226959,45.452161245068105],[9.084386808594656,45.45194275521658],[9.084196304903406,45.451853172851806],[9.083932755886538,45.451730492812224],[9.083717288253709,45.45162207072922],[9.083645482656886,45.45158863024439],[9.083618339620152,45.45157598557123],[9.08359857654708,45.451564010590516],[9.0834905581923,45.45149856168914],[9.083417571693676,45.45151421360492],[9.083327821917708,45.45141820172207],[9.083302371320247,45.451390983055994],[9.0832095185879,45.45139392179287],[9.08301256365397,45.45139406451802],[9.082854381429263,45.451384124735746],[9.082762522241929,45.451375577061285],[9.082703319543251,45.45136341435338],[9.0826542959368,45.45133329620067],[9.082570516845866,45.45126155522898],[9.082501077874088,45.451227860289634],[9.082489876749564,45.45124653650892],[9.082446296907358,45.45123106804855],[9.082416253416303,45.45121985633967],[9.082247778370801,45.451148950048626],[9.0819108136692,45.45100499448066],[9.081596748140194,45.45086544113911],[9.081583245516647,45.450857835861434],[9.08131265695945,45.451018696627614],[9.081142345958831,45.45112045701429],[9.080743673484374,45.4513586629116],[9.080376507542463,45.451578078161624],[9.079958249897297,45.45128045397454],[9.079848159370789,45.45120220358706],[9.079752547826272,45.45113463626569],[9.079645256339768,45.45105482655415],[9.079565172009952,45.45099756348775],[9.079454980124915,45.4510655527354],[9.07942085091049,45.451085999736506],[9.079399268876054,45.451098571131816],[9.079288973688628,45.451156965177915],[9.0792246519381,45.45120566925641],[9.079162263122017,45.451255803130216],[9.07904912711186,45.4513592761247],[9.07901315580266,45.45139795138337],[9.078939885473986,45.451477057982814],[9.078865938777364,45.451566552201925],[9.078855141458448,45.451582230438994],[9.078838984415029,45.451606166314285],[9.078792020113735,45.45167643371273],[9.07872778101112,45.45177629937248],[9.078617640221447,45.45194775474222],[9.07852632333253,45.45208197781071],[9.078473181742257,45.452161799405296],[9.07846205815975,45.452172896296744],[9.07843788484264,45.45219867380776],[9.078414067908747,45.45222323592933],[9.078321583609176,45.45227197673895],[9.078287719897489,45.452291028054525],[9.078267874834907,45.45230245491576],[9.078240068711759,45.4523184507312],[9.078238266947963,45.45231949608078],[9.077893610924571,45.452393215114434],[9.077847448281412,45.45235917750882],[9.077825751928597,45.452335573497905],[9.07775740630475,45.45224930885955],[9.077689831266845,45.452174636998315],[9.077680072465782,45.452164499433025],[9.077663576716073,45.45214694956978],[9.077650450077552,45.45213356490591],[9.077646351828562,45.45212925618094],[9.077642483713833,45.45212490229491],[9.077638371902777,45.45212002651322],[9.077634387867931,45.45211506963555],[9.077630531670746,45.45211007666708],[9.07762686725426,45.45210504756453],[9.077623369016633,45.45209996434317],[9.077620716106496,45.4520958166581],[9.077618203797718,45.452091614871556],[9.077615883293857,45.4520873949531],[9.077613741744814,45.45208311190626],[9.077607524003573,45.452071936819166],[9.077603416273726,45.45206067929505],[9.077600215159652,45.45204841304088],[9.077597920439727,45.45203497603815],[9.077596089772628,45.452024221031834],[9.077593570808032,45.45201514068468],[9.077590168657277,45.452005493869194],[9.077588641924118,45.45200191248725],[9.077585844254726,45.45199476755234],[9.077584611880825,45.451991347989996],[9.077583597023647,45.451988009289934],[9.077582825235739,45.451984733432724],[9.077582102906588,45.45198021539836],[9.077581572234287,45.451975571219755],[9.07758123326795,45.45197083690111],[9.077581009263753,45.45196600349329],[9.077580836327904,45.451961107043594],[9.077580740774792,45.4519566875968],[9.077580760343476,45.45195228607423],[9.077581159463,45.45193550786275],[9.077440027259593,45.45199375894542],[9.077410891892937,45.45195404801096],[9.07737618220883,45.45191541195246],[9.077354896351308,45.45189246464945],[9.077327412994828,45.45187314893967],[9.077287470295056,45.45184200524749],[9.077256051712439,45.45181593238895],[9.077209891865971,45.45177391059615],[9.077191876410865,45.451757738845785],[9.077170933370162,45.451742289145166],[9.077152939571425,45.451732634128334],[9.077131326294513,45.45171331442307],[9.077102844953036,45.45168409818336],[9.077052416272005,45.45163434729967],[9.07702589262754,45.451605849808864],[9.077011813184088,45.451587497134746],[9.076971544272196,45.451551276961695],[9.076933236630566,45.45151843985096],[9.076912620037248,45.451498399351806],[9.076881835019849,45.451467726431424],[9.07684648162163,45.45143488731135],[9.076811133811525,45.45140615265181],[9.076754164259953,45.45136107755407],[9.076732720536787,45.45134399891826],[9.076710595965762,45.451324643469825],[9.076693615955111,45.45130794888676],[9.076679542680427,45.45129403368061],[9.076672690269714,45.45128618035004],[9.07666805045303,45.45127846955711],[9.076665557976023,45.45126992923319],[9.07666154520716,45.45126252405647],[9.076659343053452,45.451251157211],[9.076662246308285,45.45124188419703],[9.076667491870063,45.45123411279197],[9.076675651744033,45.451225268314865],[9.076685639994158,45.45121615258383],[9.076694456079823,45.45121027801087],[9.076698263358177,45.45120755715078],[9.07670167398895,45.451204683537995],[9.076709911980855,45.45119687412613],[9.076718073009202,45.45118889374529],[9.076725863062144,45.45118083260258],[9.076733179783995,45.451172654762324],[9.076739869616839,45.45116428831899],[9.076747616995446,45.45115304083418],[9.076756667267878,45.45114066734667],[9.076771522078687,45.45111779475846],[9.076789285928665,45.4510899606465],[9.0768090784544,45.45105867777402],[9.076858625290734,45.450986438224746],[9.076869039411044,45.45097076943258],[9.076889394039233,45.450939117126126],[9.076945771270333,45.45084918590953],[9.076954358134037,45.450834643465114],[9.076962459219871,45.450820236361515],[9.07698573848536,45.450776349657076],[9.076993813588068,45.45076165453514],[9.077002349175379,45.450747040112965],[9.077011294496238,45.450732803458884],[9.077020572540158,45.45071873760053],[9.077058504206283,45.4506632747017],[9.077098040197765,45.45060270711979],[9.077159656305257,45.45051008996047],[9.077202389227024,45.45044958319798],[9.077212548122468,45.45043445460736],[9.07722082988168,45.4504213435132],[9.077228791735614,45.450408088617046],[9.077244472015657,45.450381254949285],[9.077252548695483,45.45036781095213],[9.07728409323672,45.45031782491055],[9.077304509111142,45.45028453429517],[9.07731682137998,45.45026368858075],[9.077322740923279,45.45025326138194],[9.077329284636521,45.45024103355325],[9.077341872764077,45.45021617318421],[9.077348454416972,45.45020363929324],[9.07735561160861,45.45019115902007],[9.077361724025756,45.45018151477991],[9.077368207579756,45.45017207731316],[9.07737493430297,45.45016278369873],[9.07739567733488,45.45013504648994],[9.077417558174117,45.4501070744823],[9.077479126236671,45.4500268966187],[9.077489516420634,45.45001268595271],[9.07749670206659,45.45000235690072],[9.077521025333432,45.449965004134114],[9.077545322255103,45.44992711131716],[9.077550119412503,45.449918917123725],[9.077555629718484,45.44990853519406],[9.07756084571155,45.44989801844745],[9.077566940753423,45.44988506182306],[9.077571760187986,45.44987445533355],[9.077573839318001,45.44987054747419],[9.077575777704833,45.449866585703745],[9.077577588087467,45.44986253400933],[9.077579423001726,45.44985771720946],[9.077580951074895,45.44985295462337],[9.077582338687531,45.44984834515001],[9.077583739358362,45.44984393369077],[9.077585332034799,45.44983965711733],[9.077586963837112,45.44983593858216],[9.07758876182307,45.449832174929405],[9.077590674877106,45.449828393196675],[9.077592690235669,45.44982461139474],[9.077597040212002,45.44981672353713],[9.077599336576013,45.44981269851678],[9.077601684165815,45.44980872746799],[9.077604108594459,45.44980483737655],[9.077606648238511,45.44980103721765],[9.077610707292969,45.44979549882905],[9.077619618039757,45.4497842594963],[9.077624124306023,45.44977845077333],[9.077628425666921,45.44977242616368],[9.077634972111062,45.44976228655705],[9.077653230710615,45.449732156702815],[9.077659521851519,45.44972235930719],[9.077668276980003,45.44970955389404],[9.07770470398102,45.44965821426812],[9.077714594703442,45.44964356286781],[9.077733890236257,45.44961429639795],[9.077743666097271,45.449599825093706],[9.077753749149574,45.44958556060448],[9.077758063898116,45.44957999503403],[9.07776273683412,45.449574519231],[9.077777803837021,45.44955778507475],[9.07780220334646,45.449529694269394],[9.077816446420274,45.44950896420246],[9.07783530199564,45.44947599858345],[9.077852511165247,45.4494360852713],[9.077870540321216,45.44939732353351],[9.077889393447252,45.44936262070477],[9.077900034164346,45.44933543032173],[9.077900008799636,45.44931692418885],[9.077889322124953,45.44931057670671],[9.077867951027283,45.44930885401273],[9.077844935829019,45.44931118290094],[9.077814533919442,45.44931698219772],[9.07778330487585,45.44931642730889],[9.077736458541636,45.44931356972626],[9.077682206383608,45.449309556004444],[9.0776263142246,45.44930323909884],[9.077572875772937,45.44929575037084],[9.077530128882136,45.449288839460934],[9.077504644983096,45.44928134080686],[9.077479956487633,45.44926632573667],[9.077451168753598,45.44924610182303],[9.07741660756423,45.449212011186404],[9.077383842587574,45.44918222182755],[9.077381178085727,45.44917883923146],[9.077374751206234,45.449173460940706],[9.077368707868445,45.44916801038254],[9.077364341174265,45.449163602814764],[9.077360217120999,45.449158952054944],[9.077351865928959,45.449149074537466],[9.077347344851297,45.44914398299361],[9.077345321538912,45.449141914117114],[9.077343324023026,45.44914000724201],[9.07733961077957,45.44913652634046],[9.077337984494067,45.44913489824747],[9.077336844701572,45.449133674873565],[9.07733570487239,45.4491324244965],[9.077334603370339,45.449131147090476],[9.077333489006918,45.449129815686845],[9.077326689572887,45.449123177497995],[9.077321325095623,45.44911852757283],[9.077316114062237,45.44911386854292],[9.077311018035449,45.44910914642795],[9.077306011439353,45.44910436124522],[9.077301158287082,45.44909956695777],[9.077297482898546,45.4490957079854],[9.07729393526743,45.44909175891634],[9.077286801190056,45.44908352776536],[9.07728311257502,45.449079344763796],[9.0772561408459,45.44904967747955],[9.077251709850772,45.449044990918225],[9.077247113310683,45.44904081752784],[9.077241683085584,45.449034826487235],[9.077236457456097,45.449028826307575],[9.077233921363161,45.449025821665515],[9.07722986089111,45.44902089182565],[9.077212545766878,45.449001866267565],[9.077203183547555,45.44899137734819],[9.077189673184602,45.448977308802654],[9.07718175889133,45.4489689431542],[9.07716876053172,45.448955225302484],[9.077163229193014,45.44895009842653],[9.07715822251353,45.448945232227764],[9.07714318905709,45.4489301655848],[9.07713792634224,45.44892509253326],[9.077131012243363,45.448918733442035],[9.077117107823637,45.44890638435253],[9.07711039867753,45.44890027715164],[9.077104047532686,45.44889412470442],[9.077098553556102,45.44888825071333],[9.077093276657301,45.44888214254884],[9.077087986727594,45.448875854371956],[9.07708249207089,45.448869476321924],[9.07707657541534,45.448863098555115],[9.077070749289293,45.44885746781401],[9.077065676245766,45.44885080144646],[9.077056315518576,45.44884137463724],[9.07704731032935,45.44883008437187],[9.077040469185304,45.44882092590059],[9.077033091855682,45.44881243386639],[9.07702552234433,45.44880367192932],[9.077018862395912,45.448796106520334],[9.07701184402322,45.448788271320154],[9.077005542138593,45.448780705669996],[9.076999240609267,45.44877340104964],[9.07699387285132,45.44876628482423],[9.076987457368194,45.44875981737694],[9.076979403188032,45.4487519828698],[9.076954243159834,45.44872844400974],[9.076945932866206,45.44872033964058],[9.076938313532944,45.44871254084302],[9.076916517094972,45.44868926074908],[9.076891597350068,45.44866369647838],[9.076882774575404,45.448654863363174],[9.07687378576863,45.44864618337636],[9.076864567112318,45.448637746571016],[9.076854530049918,45.448629319314286],[9.076843930557356,45.44862106345325],[9.076802924921376,45.448586877931966],[9.076794934061622,45.44857854831161],[9.076750865614347,45.44853001715257],[9.076738788169715,45.44851628963374],[9.076718846302311,45.448493143276515],[9.076712084287022,45.448485694931115],[9.076704836191581,45.44847813889769],[9.076681915294575,45.44845536356847],[9.076674334311765,45.44844750171996],[9.076668571199805,45.44844112382889],[9.076652458736012,45.44842227740127],[9.07664704132395,45.448416214314804],[9.07663981855466,45.44840846023723],[9.076609802088505,45.448377381666326],[9.076603271482163,45.44837082426347],[9.076583116816503,45.44835100841156],[9.076576457999124,45.44834419906338],[9.076571745275519,45.44833913461916],[9.076567198781536,45.448334061062795],[9.07655841289621,45.44832405776124],[9.076540752056914,45.44830437525327],[9.076536321240027,45.44829973366871],[9.076531737249566,45.44829529921025],[9.07652712827811,45.44829130581959],[9.076522135747478,45.44828736669084],[9.07651137027212,45.44827921892169],[9.076505942402932,45.44827486603437],[9.076501819999287,45.44827134037267],[9.07649540341724,45.44826397279323],[9.076476171809366,45.448245839502526],[9.076469964656775,45.44824205419888],[9.076460140281757,45.44823954045334],[9.07643815454931,45.4482368727911],[9.076413101467653,45.44823547631534],[9.076412992837465,45.44823076883982],[9.076412019679871,45.448191758948056],[9.0764103409969,45.44815111133519],[9.076409375198951,45.44811757407491],[9.07640750016842,45.4480830653068],[9.076406698835697,45.44805771889002],[9.076406535691369,45.448040995051926],[9.076406613989608,45.44803265102848],[9.076406734679823,45.44802730432569],[9.076406932108256,45.44802196657287],[9.076407231850277,45.448016637752964],[9.07640767229311,45.448011335842466],[9.076408291751385,45.44800602481168],[9.07640916543877,45.44799957947956],[9.07641014145163,45.447993152081374],[9.076411270976973,45.44798676958619],[9.076412656316187,45.447980431925835],[9.076414374171078,45.4479741210471],[9.076416628212671,45.4479671437337],[9.07641915086753,45.44796022024762],[9.076421942135571,45.447953350588826],[9.076425027604156,45.44794654374133],[9.076428432860622,45.44793980868906],[9.076431430556777,45.44793429805075],[9.076434632976106,45.44792887728645],[9.076438116929303,45.44792360935228],[9.07644201034141,45.44791853016718],[9.076446466676458,45.447913648629935],[9.076458280061658,45.44790233544161],[9.07647070764948,45.447891318877254],[9.076519935462839,45.44784980922558],[9.076536030040636,45.44783653094512],[9.076541918335293,45.447831468427836],[9.07655345194406,45.44782133455344],[9.076559302090873,45.447816434079606],[9.07656543381942,45.44781172243953],[9.07657161725527,45.447807424812844],[9.07657806942467,45.447803271023254],[9.076584700753493,45.44779921612514],[9.076598180895171,45.447791178191046],[9.076604122525666,45.44778774482469],[9.07661638964409,45.44778104885449],[9.07662253577753,45.447777543342184],[9.076628451429416,45.44777381295723],[9.076637036929187,45.447768028549646],[9.076645494453796,45.447762172218525],[9.076653785531091,45.447756162980134],[9.07666180777507,45.4477499378956],[9.076669509938071,45.447743424990904],[9.076672843089655,45.44774014638182],[9.076675728455369,45.44773670605308],[9.076678204446724,45.447733139983164],[9.07668030947522,45.44772948415068],[9.076682107442616,45.44772571150975],[9.07668378932545,45.447721200860386],[9.076685010817204,45.44771666351563],[9.076685887067269,45.447712144403695],[9.076688650991557,45.447694518503596],[9.076689169284897,45.44769007163928],[9.076689431753,45.44768557093969],[9.07668932334382,45.44768104348481],[9.076688792154096,45.44767593124439],[9.07668797972202,45.44767088219933],[9.076686885974802,45.44766584234331],[9.07668549819776,45.44766086569119],[9.076683841881193,45.44765588921848],[9.076681596557869,45.44765033707238],[9.076678993327729,45.44764489317799],[9.076676211193044,45.44763953941357],[9.076663250658038,45.44761562328796],[9.076659533247213,45.44760894699395],[9.076655713560777,45.44760228877028],[9.076651740448378,45.44759564865104],[9.076647588601897,45.44758922467624],[9.076639310693244,45.44757652972675],[9.076625776870326,45.44755418916308],[9.076623596222653,45.44754917703541],[9.076621799166464,45.447544137648386],[9.076620487978047,45.447539052931624],[9.076619944942518,45.44753463377942],[9.076619951724487,45.447530178255874],[9.076620303637618,45.44752562349024],[9.076620796092726,45.44752097862029],[9.076621173386764,45.44751627982094],[9.0766217485361,45.44750657630642],[9.076622515559485,45.44749691766897],[9.07662299502034,45.447492119789814],[9.07662346287044,45.447488195020135],[9.076624033008908,45.44748426118112],[9.076626593699338,45.44746764353499],[9.076628684500367,45.44745343848372],[9.07662948378284,45.447448739402425],[9.076631616998,45.44743754067296],[9.076632760354881,45.44743195925906],[9.076634006036262,45.44742639577887],[9.076638088694786,45.447409966137755],[9.07663959041744,45.447404618511634],[9.07664133520036,45.447399342731494],[9.076643450906834,45.44739412971089],[9.076646817025434,45.44738686361574],[9.076650375041323,45.447379660399605],[9.076654252902701,45.44737257398329],[9.076658565770202,45.44736565829613],[9.076663467130604,45.447358940238615],[9.076669901877684,45.44735139305971],[9.076676899614684,45.4473440975335],[9.076684345132202,45.447336963726485],[9.076692072119346,45.44732993774333],[9.07669995263998,45.44732297466444],[9.076707373657788,45.44731664196558],[9.07671505066749,45.447310489116056],[9.076722932385323,45.44730441713856],[9.076738964511936,45.44729239001578],[9.076748775621803,45.44728519161485],[9.076778733565158,45.44726384808512],[9.0767885958151,45.44725664964647],[9.07679493233175,45.44725213587965],[9.076801383995843,45.44724766704062],[9.076807809828486,45.447243009196455],[9.076813915522175,45.44723801852752],[9.07681941954483,45.447232542204425],[9.0768235936774,45.447227075772645],[9.076826859689136,45.44722145693099],[9.076829550201495,45.44721579346941],[9.076831985036174,45.44721018418526],[9.076834483905229,45.44720464686659],[9.076838258409508,45.44719680442489],[9.076840017609793,45.44719275277457],[9.076841533725597,45.44718861127648],[9.07684266605795,45.44718435302186],[9.07684357918959,45.4471787537577],[9.07684403201975,45.447173190806005],[9.076844400848318,45.4471622452832],[9.07684464929736,45.44715684448727],[9.076845629966273,45.44714444938565],[9.076845892857522,45.447140272722756],[9.076846015061982,45.447136078151935],[9.076846088086297,45.44712388168133],[9.076845990311583,45.447117770034374],[9.076845726275245,45.4471116404967],[9.076845283214189,45.44710551107893],[9.07684475233222,45.44710063286582],[9.076844055237423,45.44709577276609],[9.07684317913018,45.44709092178739],[9.076842149597677,45.44708608891345],[9.076840915465686,45.447081256176574],[9.076839476831614,45.447076495585016],[9.07683780810838,45.44707179815492],[9.076836024383317,45.447067163809145],[9.076830866457525,45.44705432276601],[9.076827736642787,45.44704716902769],[9.076826286889853,45.447043641587165],[9.076825041724437,45.44704010500857],[9.07682350025776,45.447034948439516],[9.0768220738299,45.44702975578913],[9.076820788027938,45.44702453604145],[9.076819591714132,45.44701929823176],[9.076817622192504,45.44700965042551],[9.07681682345832,45.44700527645032],[9.076816139847883,45.44700092940116],[9.076815660849064,45.44699659121604],[9.076815450386945,45.446992252851125],[9.07681548156074,45.44698693321003],[9.076815717333817,45.44698161343193],[9.076816196092818,45.44697631149322],[9.076816879450986,45.44697100941759],[9.076817793043986,45.44696575219294],[9.076818378079857,45.44696339352624],[9.07681920613807,45.4469610797021],[9.076820200469573,45.446958792769756],[9.076821399436687,45.44695653270351],[9.076822764640555,45.4469542725259],[9.076824410851911,45.44695177813288],[9.076826146660414,45.44694934668716],[9.076828010513573,45.44694704117037],[9.076830066348606,45.446944861539656],[9.076832378102747,45.44694280775223],[9.076835648392056,45.44694036627765],[9.076839161849403,45.44693807765797],[9.076842905602158,45.44693587889445],[9.07684679012604,45.44693376104594],[9.076857421807917,45.44692822727971],[9.076864053939262,45.44692485644404],[9.076870737389998,45.44692161158828],[9.076877548945669,45.446918537666264],[9.076884527078215,45.446915715661554],[9.076893793577451,45.44691246007232],[9.07690330340228,45.446909474350726],[9.076922770938157,45.446903745633236],[9.076932485298093,45.4469007147668],[9.07698376616527,45.44688419044501],[9.077000740013018,45.446878373376975],[9.077017483171293,45.44687217841716],[9.077038315424492,45.446863856461476],[9.077058840334027,45.4468552106706],[9.077079147558132,45.446846348997084],[9.077119441923161,45.44682834682182],[9.077138138328612,45.44681979225625],[9.077193433872397,45.446793526004825],[9.077212002466625,45.446785034520445],[9.077230852879696,45.44677691188642],[9.077243122395833,45.446772196077085],[9.077255724994194,45.44676793009462],[9.077281570204066,45.446759874750065],[9.077294505367218,45.4467556805477],[9.077323456190696,45.44674636295425],[9.077386306930688,45.44671862434559],[9.077396326587262,45.44671445910141],[9.077407559770048,45.44670935692839],[9.077418472849176,45.44670394893453],[9.077429065824552,45.446698235119996],[9.077439351483495,45.446692215476205],[9.077452050890626,45.44668394393947],[9.077464174236058,45.44667521373672],[9.077488190067957,45.44665725842552],[9.077500735385653,45.44664852793389],[9.077514035253003,45.446639868939386],[9.077527514348258,45.4466313628401],[9.077541134309318,45.446623009661835],[9.077554882275173,45.44661475540691],[9.077568758245837,45.446606600075356],[9.07757977234793,45.44660028289164],[9.077590940067989,45.446594091617705],[9.077602210244294,45.446588017286935],[9.077624955482474,45.446576084508735],[9.077635267693466,45.44657081191639],[9.077645656737364,45.44656562028054],[9.077666626937306,45.44655546190219],[9.077677208044191,45.44655045915548],[9.07768418556248,45.44654725005701],[9.077691252665293,45.44654409490372],[9.07771260786027,45.4465349533749],[9.077721221971343,45.446531608149726],[9.077729938774098,45.44652855088796],[9.077738399816552,45.446525484797775],[9.077746374544747,45.44652213100295],[9.077753709054896,45.44651815656904],[9.077759138581321,45.44651442645422],[9.07776397949491,45.4465104087045],[9.077768167846672,45.44650609436231],[9.077771639687631,45.44650147446996],[9.077774382242882,45.44649655803733],[9.077775923033556,45.446491822440294],[9.077776415187877,45.4464870335479],[9.077776178254206,45.44648209213193],[9.077774847093272,45.44647181383502],[9.077774085706471,45.44646674675988],[9.077772991959852,45.446461760919505],[9.077771642442055,45.44645675725043],[9.077770126664502,45.44645173569192],[9.077768546950539,45.44644671417673],[9.077766813665717,45.4464416027551],[9.077764901407813,45.446436527459],[9.07775878084389,45.44642117581582],[9.077750733270635,45.446399308717794],[9.07774793578482,45.44639210977341],[9.077744869864464,45.44638498301928],[9.077742099936733,45.44637923322512],[9.077739074337064,45.44637353761052],[9.077729409251404,45.44635639715837],[9.077726833007173,45.44635201539232],[9.077721347963662,45.4463431890779],[9.077718822525306,45.44633855524781],[9.077716769959379,45.44633373207528],[9.07771506165432,45.44632817958436],[9.077713826516858,45.44632265377608],[9.077712923861887,45.44631713674357],[9.077712225816269,45.44631162857349],[9.077711642856507,45.44630612032548],[9.077711394889366,45.44630245706587],[9.077711364281763,45.44629877565694],[9.077711499970603,45.44629513914061],[9.077712014429963,45.44628795595376],[9.077712480373444,45.446282699024636],[9.077714338730553,45.44626706294088],[9.07771485595819,45.4462619049885],[9.077715257029467,45.44625596402342],[9.077715816053294,45.44624396524422],[9.077716204189377,45.446237916275294],[9.077716809684631,45.44623184915695],[9.077717607641285,45.44622625896392],[9.07772089287861,45.44620675146152],[9.077722731539302,45.44619541789302],[9.077724085783709,45.44616647859742],[9.077719974673455,45.44607763200996],[9.077720425833514,45.4460709169203],[9.077720698267353,45.446064417977],[9.077721635441065,45.44605777456652],[9.077723308280936,45.446037395053835],[9.077723372216992,45.44602804291859],[9.077723456681635,45.44602435243045],[9.077723426171877,45.44602074302969],[9.07772314004045,45.44601722381262],[9.077722406368075,45.44601371389976],[9.077721159840264,45.4460092052177],[9.077719811100918,45.44600475961228],[9.077718091827352,45.446000530282994],[9.077715784698212,45.44599656238243],[9.077712595582625,45.44599283810767],[9.07770447883076,45.445985786781684],[9.07769546757772,45.44597917711237],[9.07768590682044,45.44597281984391],[9.077676115907538,45.44596647173154],[9.077666567757328,45.4459599794371],[9.07765863271779,45.445954890213905],[9.077650186510471,45.44595003536349],[9.077641701561813,45.44594490150605],[9.077633842168153,45.445939020137416],[9.077627375021876,45.445931994692685],[9.077622980229869,45.44592557091587],[9.07762073387545,45.445919280701006],[9.077619881131225,45.44591284552642],[9.077620434132518,45.445905788328155],[9.077621257176908,45.44589983807645],[9.07762284858453,45.44589471540157],[9.077624889301887,45.445890879572964],[9.07762709630184,45.44588707963605],[9.077629495195659,45.445883342576565],[9.07763203483449,45.445879668429114],[9.07763534062352,45.44587520167065],[9.077638787132749,45.44587077982213],[9.077642412723767,45.44586640285755],[9.077646281344846,45.445862079734646],[9.077650418582637,45.44585781943718],[9.077653611362207,45.44585487393232],[9.077657008945696,45.44585208130663],[9.077660547372497,45.44584942360123],[9.077664201092832,45.44584691883557],[9.077667931646719,45.44584449502723],[9.077671291875802,45.44584244051254],[9.077674805661704,45.445840466903306],[9.077678447454648,45.445838592218834],[9.077682281202907,45.4458368254169],[9.077686217482233,45.44583522956538],[9.07769090802138,45.44583349818715],[9.077695700993136,45.4458318657509],[9.0777006987443,45.445830368191544],[9.077705965321606,45.44582908647514],[9.077711513586125,45.445828074599135],[9.077718916289053,45.445827277491894],[9.07772612777462,45.44582691256414],[9.077739707344572,45.44582658832612],[9.077746241182474,45.44582627786264],[9.077759155091572,45.44582542301138],[9.077765458513454,45.445824932681944],[9.077771569893324,45.445824271462364],[9.077777655366129,45.44582336723163],[9.077783727829843,45.44582230099045],[9.077794185832568,45.44582088973521],[9.077803811287373,45.445818470925886],[9.077811109312183,45.44581593668073],[9.077816690094403,45.445810658279285],[9.077823198191178,45.4458008877239],[9.077828006711353,45.44579193741681],[9.077834039792476,45.44578079002218],[9.07784520122584,45.445760809115995],[9.077861314014681,45.4457334799903],[9.077873410150215,45.44571441655404],[9.077884106287522,45.445700169629504],[9.0778964503846,45.44568476945032],[9.07790415097745,45.44567741936325],[9.077912196969645,45.44567017705369],[9.07792246639518,45.44566181710291],[9.07793318393579,45.44565387089523],[9.077943876207643,45.44564614972991],[9.077963231462146,45.44563353510562],[9.0779767178392,45.4456212395041],[9.077987111610625,45.44561032316428],[9.077997659144884,45.445599640746295],[9.078006593074372,45.445587195218415],[9.078012078363995,45.445577587366266],[9.07801888732446,45.44556346908675],[9.078022912146116,45.445551872994855],[9.078024770715398,45.44554578701985],[9.0780272504172,45.44553574015954],[9.078028023278142,45.44553052802493],[9.078029115792393,45.44552529767075],[9.078030880364999,45.44551594437772],[9.07803153700446,45.44550990422532],[9.078031273489986,45.445504242742985],[9.078030685552827,45.445495125077414],[9.078029586489473,45.44548626879001],[9.078027725932508,45.445481589508525],[9.078024020769496,45.4454745352039],[9.078019586865485,45.4454675714053],[9.07800975961983,45.44545334742524],[9.07800510770844,45.445445924720666],[9.078002454181236,45.44544111996321],[9.07800001806001,45.44543633306],[9.0779977353968,45.445431555053425],[9.077995567805567,45.445426767967504],[9.07799345136312,45.4454219808468],[9.077991142163556,45.44541650077609],[9.07798893521186,45.44541098463161],[9.077972213404761,45.44536709786764],[9.07796976148969,45.44536011471776],[9.077968130430389,45.44535494022139],[9.077966665628201,45.44534978361408],[9.07796503100162,45.44534200781598],[9.077963000284532,45.445334457313415],[9.077960556529792,45.44532409876318],[9.07795887438578,45.44531896930662],[9.077957115568978,45.44531387590638],[9.07795517764699,45.4453087196204],[9.077953534149055,45.445303797161664],[9.0779521209422,45.44529896455692],[9.07795058033388,45.445294474078786],[9.077948490474116,45.44529041602427],[9.077945480402095,45.445286691633854],[9.077939693820431,45.44528171798351],[9.077933063836113,45.4452771409521],[9.07792579489426,45.44527285238802],[9.077918078603505,45.4452687081441],[9.077910234467888,45.44526458198866],[9.077903273578535,45.445261139312784],[9.077896095667594,45.445257957814384],[9.077888662188823,45.44525490250379],[9.077881075266076,45.44525184729687],[9.077832124226424,45.44523162815055],[9.077826059795603,45.44522917497752],[9.077819893118114,45.445226757877734],[9.077813624009153,45.44522424183551],[9.07780736740443,45.44522151876026],[9.07780123825203,45.44521848956245],[9.077793688960954,45.44521489426108],[9.077783796782187,45.445209212303574],[9.077778856077174,45.44520563323457],[9.07777409446543,45.445202108050275],[9.077768475481403,45.44519811539227],[9.077762626257353,45.44519406888372],[9.07775673825437,45.44518971636536],[9.077751118066276,45.44518484160416],[9.077746213092121,45.44517933628436],[9.077742804449642,45.4451740099713],[9.077740380324183,45.44516861998368],[9.077738774520808,45.4451631934373],[9.077737846431058,45.44515776643161],[9.077737404089072,45.445152222083124],[9.077739822696147,45.44514422750967],[9.077742126650035,45.44513654805075],[9.07774427024386,45.445133162202396],[9.077747269017756,45.445128641641865],[9.077750497859329,45.44512404891692],[9.07775434042881,45.445119419771686],[9.077759091086373,45.4451149430287],[9.077764929232035,45.44511089759884],[9.077775355926288,45.44510539088751],[9.077786077730204,45.445100622061446],[9.07779708159841,45.44509640210727],[9.077808252250769,45.44509258708631],[9.077819615039738,45.44508901496225],[9.077831221286084,45.445085811715096],[9.077843007202764,45.44508308540059],[9.077854742438658,45.44508070115932],[9.077866324389548,45.4450784340345],[9.077895407015763,45.445072680620655],[9.077969027055781,45.44505773386698],[9.07801459026377,45.445050610061664],[9.078084386317675,45.445044531870735],[9.078118922110836,45.445043095193334],[9.078157823596806,45.44504552598379],[9.078201687489495,45.44504870946671],[9.07824487340248,45.44505169537208],[9.078309642582296,45.44505377542565],[9.078359765255788,45.445051967992185],[9.078395030390608,45.4450508817741],[9.078424460893052,45.44504708121622],[9.078449465046193,45.44504180750514],[9.078472233890551,45.44502902843986],[9.078486367079915,45.44501305990497],[9.078493787331213,45.444997275982765],[9.078497134934667,45.4449768773069],[9.078491550434808,45.444942317085854],[9.078485755101834,45.44492175364555],[9.078479498584127,45.44490056944775],[9.078471440909388,45.4448714295509],[9.078467603476634,45.44485193589541],[9.07845681603806,45.44482760442671],[9.078444265684738,45.444804489304545],[9.078416377746603,45.44478628123888],[9.078363115022455,45.444764112037205],[9.078202952841268,45.44470440033261],[9.078131042520672,45.4446790393579],[9.078086010635658,45.44466314715564],[9.078003253203539,45.4446349491503],[9.07799074405864,45.44463238335395],[9.07787758664065,45.44460947153648],[9.077814212150786,45.444598335232236],[9.077784986199424,45.44459262138129],[9.077772463584886,45.444589542510066],[9.077765758118911,45.44458580261754],[9.077760378872899,45.44457941551599],[9.077757670258068,45.444571685447144],[9.077757673133629,45.44456443959731],[9.077758418671776,45.44455794033152],[9.077759738253855,45.444550441559684],[9.077761381891552,45.444546146943146],[9.07776575637316,45.44453779100046],[9.077767898576106,45.44453340603534],[9.077770258217607,45.44452906592801],[9.077772809686891,45.44452474369274],[9.077775527410113,45.44452043934676],[9.077778947205408,45.44451525242153],[9.077782482180682,45.4445101374265],[9.077788887592618,45.44450018691942],[9.077793495827517,45.44449445912465],[9.077800046006075,45.444487514870524],[9.077806890121344,45.444480453403045],[9.077814938173884,45.44447483128702],[9.077823575629278,45.444470090873814],[9.077830130927989,45.44446689105273],[9.077836559034957,45.4444641863755],[9.077843536829498,45.44446137331228],[9.077853671541765,45.444457504983],[9.077868422478222,45.44445375053331],[9.077881525865498,45.44445142836767],[9.077897122854315,45.44444922152107],[9.077904845293086,45.44444860420555],[9.077911276059105,45.44444784374986],[9.077917540472095,45.444446993396234],[9.077929864596339,45.44444521181755],[9.077935950004742,45.44444437058556],[9.077942240089472,45.444443592221596],[9.07795502488555,45.44444206235671],[9.077961506711265,45.44444123885609],[9.077968001138489,45.44444028033079],[9.0779749428347,45.444439123477885],[9.077981820448047,45.44443785865549],[9.07800943264991,45.44443240324623],[9.078038604042405,45.444426361701204],[9.078047603706036,45.44442468138286],[9.078065935688265,45.44442146453445],[9.078075229275388,45.44441965799915],[9.078084458494788,45.444417536470006],[9.078093239863716,45.444415190218656],[9.078101816357465,45.44441263708187],[9.07811025198456,45.444409931022484],[9.078118559556568,45.444407090033835],[9.078126803057295,45.444404150076615],[9.0781396855812,45.44439930773678],[9.078177360520657,45.44438418730185],[9.078189949024399,45.444379408164096],[9.078205285798335,45.4443739700745],[9.078252140692076,45.44435813227314],[9.078267720305476,45.444352622001084],[9.078281970305506,45.44434727465319],[9.078323952457897,45.44433078307033],[9.078337959472039,45.44432541787922],[9.07835021585071,45.4443208999811],[9.078387458448427,45.444307606985845],[9.07839988099868,45.44430305296464],[9.078405440348577,45.44430092491645],[9.078410922902455,45.44429874291417],[9.078427076426806,45.444292170103736],[9.078455179288095,45.44428098057989],[9.078475690282756,45.4442723525421],[9.078482475995516,45.444269377552175],[9.078489210311625,45.444266222575955],[9.078495739739214,45.444262851714214],[9.078499304545714,45.44426087804417],[9.078502805206442,45.44425875139993],[9.078506203174399,45.44425633679219],[9.078509319321906,45.44425355333402],[9.078511923398832,45.444250338175614],[9.078514321220114,45.4442459170171],[9.07851590074566,45.44424154142389],[9.078516968897013,45.4442372381891],[9.07851861917524,45.4442285420416],[9.078518644040217,45.444228028964524],[9.078520612571289,45.444218306478966],[9.078521474503772,45.44421282424721],[9.078522016653471,45.4442072612248],[9.078522072717119,45.44420156351933],[9.078521438690029,45.44419615431996],[9.078520203918526,45.444190916551776],[9.078517364366489,45.4441810263371],[9.07851636034282,45.44417621146045],[9.078515236898983,45.444168255297704],[9.078514305145843,45.44416021799431],[9.078512033911116,45.44413593470517],[9.078511056849127,45.44412286584352],[9.078509486181451,45.44409661984494],[9.0785084961599,45.444083424977286],[9.078507096899145,45.44407018538434],[9.07850588495807,45.444062958367304],[9.078504238403038,45.444055830659295],[9.078503904143936,45.44405452573518],[9.078499781298474,45.44404128800589],[9.078481752505606,45.444023199221604],[9.078358139914469,45.443928547626676],[9.078329809549762,45.44390443514768],[9.07832720168274,45.443886335808024],[9.078337448456304,45.44385253885306],[9.078295084766033,45.44383313449763],[9.078238774762685,45.443807348890076],[9.078194161677747,45.443788675116565],[9.078136644189062,45.4437494967123],[9.078072888617783,45.44371160067412],[9.07806971491612,45.44370971261248],[9.078022044061878,45.443689672691946],[9.077897392688627,45.44363835237714],[9.077815627508805,45.44360525698321],[9.07765787132126,45.44353489462228],[9.077383788776558,45.44341287250205],[9.077097400103328,45.443286006423314],[9.076850931727197,45.4431774930451],[9.07632059997777,45.44294354058084],[9.075649037971639,45.44264612239188],[9.075618599346418,45.4426314077279],[9.075579462706768,45.44261426850048],[9.075510297679154,45.44258316138421],[9.075431437444495,45.44255932445279],[9.075355008039885,45.44254614312127],[9.075385838332942,45.442470595003606],[9.075414179047572,45.442436516381065],[9.075454111308227,45.44238849649318],[9.075461112208966,45.4423839283532],[9.07546844334516,45.44237769480008],[9.07547500747408,45.44237159676689],[9.075481200676098,45.44236540896676],[9.075487099753436,45.44235919435661],[9.075492832570287,45.44235295285241],[9.075501463275145,45.442343226032015],[9.07550981254461,45.442333400384555],[9.075575658608624,45.44225344564823],[9.07558620360433,45.44224098123902],[9.075599225898289,45.44222606690902],[9.07563930287437,45.44218133224509],[9.075652555043758,45.44216622873509],[9.075662742551032,45.44215418760401],[9.075682414338713,45.442130132806085],[9.07569229524815,45.44211830789991],[9.075702432228107,45.442106743854545],[9.075713642861977,45.442094882064914],[9.07573752180712,45.44207119352416],[9.075749499223516,45.44205904319091],[9.075760964689369,45.44204652415107],[9.07577311834527,45.44203230345571],[9.075784939466379,45.4420180199713],[9.075856469030116,45.44193382181635],[9.07589187817409,45.441888775110506],[9.075935321919541,45.44183779137905],[9.07596538539358,45.44180165923462],[9.075977012194187,45.44178555764475],[9.076040563030066,45.44171128382008],[9.076053393661885,45.44169664859672],[9.076066480277166,45.441682211225476],[9.076078763627995,45.44166947558527],[9.076090598105292,45.441655732122925],[9.07611741298956,45.4416286391539],[9.07612904335113,45.441615255865216],[9.076143176700388,45.441599548641236],[9.07615605742465,45.441584166285],[9.076177656703766,45.44155800387235],[9.076224747975836,45.44150043783244],[9.076236223004582,45.44148567747384],[9.076247941146422,45.441471051968335],[9.076259992037498,45.44145666026797],[9.076272529365744,45.441442691292615],[9.07628568077571,45.44142898293823],[9.07632718085485,45.44138792851322],[9.076340894444451,45.44137393174453],[9.07635417284971,45.44135960222456],[9.076366568892833,45.44134519228084],[9.076378351011666,45.44133064772852],[9.07641230383291,45.44128715900919],[9.076423907405541,45.44127297461328],[9.07643692877228,45.441257700143545],[9.0764670582729,45.441223593057565],[9.076541581604127,45.44114223680099],[9.076615859334888,45.441059062444765],[9.076651056116447,45.44101857917527],[9.076674215438402,45.44099284767469],[9.07668810544812,45.4409770685357],[9.07670708784891,45.44095442718341],[9.076775395342144,45.440872255829746],[9.076852587814274,45.440779781270805],[9.076926448237966,45.4406912693586],[9.076938958868599,45.44067671525723],[9.076950459079837,45.440661927804676],[9.076963493912656,45.44064736434791],[9.076977115567447,45.44063181938043],[9.07699015133718,45.44061795800258],[9.077004478536827,45.4406041317606],[9.077020455344506,45.44059046642845],[9.077053009842398,45.44056310835056],[9.077068973352743,45.44054908297808],[9.077129925176157,45.440493190441046],[9.077174823171235,45.44045076525578],[9.077188919891482,45.44043675912411],[9.077216013436392,45.44040854057141],[9.07722962442812,45.44039465177535],[9.077243696148138,45.44038108670554],[9.077256364414383,45.44036973683986],[9.077269467655062,45.44035857570199],[9.077310107599175,45.44032546942746],[9.077319980576325,45.44031769485906],[9.077340455443892,45.440302235238896],[9.077350660492268,45.44029419941323],[9.077360481457314,45.44028579480215],[9.077370250161037,45.440276571129],[9.077379494442079,45.44026720379172],[9.077388367817628,45.440257755694404],[9.077405705385502,45.44023884177153],[9.077414092984924,45.44022946600837],[9.077430190398777,45.440210624927026],[9.077438271336213,45.440201402387075],[9.077446684999241,45.44019239564733],[9.077459964123017,45.440179002105594],[9.077473537463751,45.440165716376356],[9.07751539583527,45.440126182447784],[9.0775598992207,45.44008546757649],[9.077590024462376,45.44005856103849],[9.077626698954031,45.44002441320843],[9.077705041875541,45.4399523066813],[9.077731512780646,45.439927274801086],[9.077745558495629,45.43991356566902],[9.077800372894043,45.43985850502465],[9.077814265342294,45.43984494000488],[9.077828426495989,45.43983152781908],[9.07784317569291,45.43981804322406],[9.07785815520038,45.4398046844856],[9.077919339375423,45.43975155468798],[9.077949707347244,45.439724755901395],[9.077964660887679,45.439711145136705],[9.077979358420768,45.43969732751961],[9.077994016280416,45.43968255581519],[9.07800785540875,45.439667469628326],[9.078034459500515,45.439637198968576],[9.078047966522355,45.439622365032406],[9.078062100658737,45.439607980720936],[9.078074934481842,45.439596396622655],[9.078088638215192,45.439585162972136],[9.078102840662794,45.4395739829868],[9.078117055581389,45.43956257796468],[9.078130745634185,45.43955070524304],[9.07814470227728,45.43953744617469],[9.078169293348042,45.439512460477],[9.078200791255977,45.439480026188214],[9.078270070673458,45.43941015770782],[9.07831008772659,45.43937130881972],[9.078337324504746,45.439345745211135],[9.078351282140538,45.4393332782098],[9.078380169319509,45.43930849655596],[9.078394459055106,45.43929580429582],[9.078408172806391,45.43928266237448],[9.078421016477208,45.43926905299107],[9.078433118285067,45.43925523708894],[9.078456478026622,45.43922760585793],[9.078468375668146,45.43921409612776],[9.078480900325024,45.43920096401191],[9.078495303764884,45.43918731754854],[9.078510462001066,45.43917399460503],[9.078541839838024,45.43914747400009],[9.078557342967532,45.43913393478861],[9.078635032224678,45.439062422129986],[9.07865072635891,45.43904835171209],[9.078664671751703,45.43903637973863],[9.078707978680887,45.43900077783593],[9.078722230606344,45.43898858961951],[9.078735983361886,45.438976023699304],[9.078750219821359,45.43896190926267],[9.078763816692444,45.43894757923793],[9.078790447945858,45.4389189915782],[9.078796103049681,45.43891254293339],[9.078811691448422,45.43889604227878],[9.078826273517603,45.43888224263221],[9.078840038348318,45.43886919963465],[9.078881525260993,45.43883055655687],[9.078974862371254,45.43874918573983],[9.07898995598665,45.438735529736846],[9.079004768099152,45.43872172090762],[9.079018787848382,45.438708164652],[9.079032462154924,45.4386944466135],[9.079099808689058,45.43862438092851],[9.07911368717407,45.43861041070956],[9.079130642863266,45.438593486017616],[9.079173735353756,45.4385512503002],[9.079184167659552,45.43854155795584],[9.079198826535812,45.4385279562312],[9.079240864337542,45.43849046477625],[9.079254898916734,45.43847845666372],[9.079269547509236,45.43846667315169],[9.079288527314489,45.43845268138364],[9.079206528742656,45.438384924022884],[9.079186275708533,45.43836601777081],[9.079169280246694,45.43834513803417],[9.0791653471382,45.438339425073416],[9.079157314824863,45.43832808027577],[9.079153215657653,45.43832247544197],[9.079149039815851,45.438316897664144],[9.079097498731079,45.438250631383056],[9.079067730953952,45.43821159629117],[9.079028140776318,45.43816106459947],[9.079018343021438,45.43814892891435],[9.079007970525591,45.438137225675256],[9.078996588821045,45.43812612620147],[9.078986733004005,45.43811820305123],[9.078975919068583,45.438110847626845],[9.078964351231976,45.438103807757535],[9.078952323184604,45.43809681320914],[9.078924875707129,45.4380804861654],[9.078893551796343,45.4380623885715],[9.078791290773498,45.43800488805198],[9.078773684007855,45.43799478294822],[9.078760017702397,45.437986511353344],[9.07873352857969,45.43796970654894],[9.078720246160248,45.4379616597124],[9.078706491394428,45.43795412625902],[9.078691036047566,45.43794650395991],[9.078675133688721,45.43793922400569],[9.078658912109626,45.43793224130318],[9.07864243508779,45.43792544779588],[9.078625843200395,45.43791879838196],[9.078607857346672,45.43791188888996],[9.078589654531143,45.437905258576706],[9.078517663267691,45.437879960878114],[9.078484047371495,45.43786848952303],[9.078467238962666,45.4378624163022],[9.078450621642865,45.43785583888867],[9.078437226978453,45.43784979033197],[9.078424419935882,45.437843372328416],[9.0783997006132,45.43783037368626],[9.078388467348347,45.4378248007031],[9.078387303083929,45.43782422543056],[9.07837520044011,45.43781867104229],[9.078362893368972,45.437813215804034],[9.078325397063248,45.437797021494156],[9.078315891611474,45.43779273447627],[9.078306577867448,45.43778839332031],[9.078297404987108,45.4377842140866],[9.078288194222957,45.43778037691845],[9.078278753942893,45.43777698995941],[9.078266474976061,45.43777336190755],[9.078253812994648,45.43777013016245],[9.07824087009565,45.43776715963839],[9.078202668645213,45.437758796694816],[9.07817857439517,45.43775400654895],[9.078166348016635,45.43775142257394],[9.078154223489134,45.43774852349093],[9.078139630161994,45.43774473498293],[9.078125087829864,45.4377408384256],[9.0781106218657,45.437736689784614],[9.078096244869611,45.437732154035466],[9.078082161271734,45.43772713202734],[9.078071965835928,45.437723133492774],[9.078061961774207,45.43771883779196],[9.078052225576455,45.43771408285371],[9.078042936015496,45.437708706537414],[9.07803428474838,45.43770261870204],[9.078021663475939,45.43769176300217],[9.078010307390377,45.43768049239159],[9.077999743766545,45.43766905022085],[9.077989487081794,45.43765767084782],[9.077969218300158,45.4376361180754],[9.077950267497515,45.43761534749637],[9.077940473066377,45.437605398974],[9.07792991214773,45.437595910025756],[9.07791763755391,45.437586098202075],[9.077904800866097,45.43757661979825],[9.077891453225652,45.43756747477921],[9.077877645724573,45.43755862710592],[9.077863403896549,45.43755004975766],[9.077844441121572,45.43753916233762],[9.077825184722716,45.43752859015079],[9.077805558086451,45.437518405257585],[9.07778552295515,45.43750867969228],[9.077764977119868,45.43749946753031],[9.077745698747837,45.43749150565364],[9.077726062909319,45.43748392206063],[9.077706171751217,45.43747661767012],[9.077665789032835,45.437462369327775],[9.07754677645085,45.437419847798026],[9.077507544366663,45.43740550861119],[9.07742098153417,45.437372695172876],[9.07739865932701,45.437363979202125],[9.077376553974311,45.43735489403709],[9.077354793121021,45.43734528657372],[9.07733349165144,45.43733502171879],[9.077313301810864,45.43732424305005],[9.077293916703741,45.43731291477059],[9.0772751447713,45.43730119902902],[9.077256781657185,45.437289248981365],[9.077220592262046,45.437265222500876],[9.077202357219225,45.43725341637519],[9.07718439118757,45.437241988110365],[9.077077156870661,45.437172806011525],[9.077007106799085,45.43712584048995],[9.076989830518333,45.43711387166737],[9.076972771374377,45.437101740677264],[9.076955954925479,45.437089438501566],[9.076946164243541,45.437082064195145],[9.076936539540593,45.43707451875634],[9.076927234080959,45.437066685068544],[9.076918401189808,45.43705849102056],[9.076910168573146,45.43704982851405],[9.076902894241128,45.437040715311355],[9.076896629650788,45.43703138540582],[9.07689102985672,45.4370220280512],[9.076885698687658,45.43701276952795],[9.076880214280466,45.43700364612315],[9.076875409291606,45.43699585442042],[9.076870129864584,45.43698703691395],[9.076814629762442,45.43690222104413],[9.076782639273093,45.436872376923525],[9.076759328034216,45.4368505829409],[9.076754207285063,45.43684563578083],[9.076760907820828,45.43683698127391],[9.07681487750137,45.43680167897678],[9.076823308262474,45.43679616467957],[9.07681376824493,45.436785009746025],[9.076701340017772,45.43665564964068],[9.076552789257008,45.43648449457734],[9.076532711086697,45.436461357230776],[9.07635972121112,45.43626527625567],[9.076330055227476,45.43622369306716],[9.07622851675949,45.43612853829254],[9.076121125303438,45.436035025503685],[9.07603277770826,45.43598475912103],[9.075762161388619,45.43584337835711],[9.075601147679436,45.43576641742877],[9.075523983321048,45.4357224260258],[9.07539535366142,45.43563522727308],[9.075339182124813,45.43558134777652],[9.075255253394069,45.43548781875598],[9.07520279828273,45.435411389078645],[9.07518135511948,45.4353801334217],[9.075124361355398,45.43538095384521],[9.075083011532742,45.43535883828447],[9.075036864036122,45.43533415154095],[9.074899290100607,45.435239874232174],[9.074869524433124,45.43521846211554],[9.074746930041247,45.43513026856915],[9.074655649923082,45.4350645931948],[9.074448961074252,45.43492008931976],[9.074405772790934,45.43488968472072],[9.07433431767736,45.4348398381104],[9.0742464910076,45.43479423255178],[9.07408232657542,45.43473847802522],[9.073805148959286,45.43464573860692],[9.073655802756267,45.43455044123849],[9.073584015981872,45.434510207510584],[9.073485480680075,45.43445763240206],[9.073341889366748,45.43437285318462],[9.073263971237825,45.434316502257566],[9.073194443413957,45.434262837245136],[9.073147389217091,45.434207771701864],[9.07312438116023,45.43418119720595],[9.073087134442902,45.43413731371661],[9.073041263603693,45.43407771983656],[9.073011160180794,45.43404114964457],[9.072965742626812,45.433985974970135],[9.072937207633561,45.43395612756012],[9.072885335614616,45.43390218110069],[9.072861531466828,45.43388269989933],[9.07281581730666,45.43384528446368],[9.07279608166541,45.43388807907157],[9.07277378206324,45.43394536702462],[9.072754294004408,45.433991869908404],[9.07274189995425,45.433987305221955],[9.072695303608251,45.43397986386119],[9.072681048706958,45.433979746875536],[9.072622349020344,45.43399514886471],[9.072513683118403,45.43402730639578],[9.072279335229965,45.43410210011007],[9.072218746438711,45.434120059385144],[9.071855240669523,45.43422956955121],[9.07112146487282,45.43442033624203],[9.071015361786383,45.43444830525985],[9.070990606242573,45.434454954363254],[9.070939379550085,45.43446629138132],[9.070890747971815,45.43447750975962],[9.070846680085712,45.43448840126158],[9.070830946704186,45.434492029402485],[9.070790698803856,45.43450083027718],[9.070770312534345,45.434505046349045],[9.070749708609467,45.4345090105215],[9.070728759071148,45.434512632862585],[9.070712205903108,45.43451501034371],[9.070695690494775,45.434516910742495],[9.070663630435604,45.434520008851806],[9.070645107678681,45.4345217844642],[9.070611550771625,45.434524046380844],[9.070600007098284,45.43452474656467],[9.070588233167044,45.43452533887613],[9.070565349424298,45.43452597402188],[9.070487694793474,45.43449449999587],[9.070470829467109,45.43448225989731],[9.070059141263224,45.43418354141233],[9.069861274741266,45.43404849295381],[9.069244450965261,45.43363241421363],[9.067965158199103,45.43454977575115],[9.067565094837816,45.4348356068303],[9.06721235572995,45.43508812284601],[9.066898763538514,45.43531047037938],[9.066269139140712,45.43575216689022],[9.066249210925,45.43576614804777],[9.066247542283174,45.43576047833831],[9.066181972329506,45.43580786176863],[9.066030233758468,45.4353832427722],[9.065841533978366,45.4348015220918],[9.065733514364757,45.434468121385464],[9.065706923096773,45.434424508424],[9.065618719520497,45.4341895679477],[9.065610884178032,45.43416877995456],[9.065581740405678,45.43410659921332],[9.065550799974844,45.43406063941765],[9.065475335882391,45.433996657867254],[9.06541984020226,45.43394277309197],[9.065142374468126,45.43360484164849],[9.065067673762572,45.43354788922672],[9.064751676949228,45.43336459003824],[9.06460738880207,45.43327140221832],[9.064608426374182,45.433250672167624],[9.0645871874497,45.43324706568582],[9.064242271811787,45.43353604053775],[9.063913254544119,45.43380044156482],[9.06376751208683,45.433915214228],[9.063742132599794,45.433947479153034],[9.063734649309366,45.434023524346046],[9.06372797926742,45.434049478132486],[9.063738687795414,45.43409075109538],[9.064148267353016,45.43439769351706],[9.064145653655157,45.43444941512141],[9.063975552045113,45.43462961241074],[9.06323201040166,45.43542589871154],[9.063180189110584,45.43538750167608],[9.062607718041278,45.43511659502218],[9.062187112460967,45.43491868303024],[9.061614574912806,45.434648455493964],[9.061435928825388,45.434560214701705],[9.061319262153908,45.43450657666975],[9.061090466815669,45.434398181700544],[9.060962094481743,45.43434863601324],[9.060970300053805,45.43444213476605],[9.060973186326123,45.434475095149395],[9.061008432159126,45.43461693328247],[9.061017363174495,45.434766904347796],[9.061028832737675,45.43485195835314],[9.061029477068212,45.43485671057499],[9.061027048019374,45.43485675687098],[9.060886891668579,45.43485921653725],[9.06086379492001,45.43486413436094],[9.060853699981887,45.43486881126439],[9.060811405541703,45.43495021232515],[9.060775301740538,45.43502238399859],[9.060721649534933,45.43509942551493],[9.060669091486657,45.43517159684925],[9.060550128054677,45.435339079487534],[9.06052822206002,45.435369919690544],[9.060354837443567,45.435614380910245],[9.060323272975905,45.43565194994437],[9.060290457127456,45.43569101380347],[9.06019102610744,45.435809375976724],[9.06010491264614,45.43591187121333],[9.060033942881478,45.43599635633591],[9.05995399516561,45.436102592676484],[9.059882814265636,45.4361934235645],[9.059768925879649,45.436340209261935],[9.05954768837083,45.436604595459805],[9.059525486210392,45.43663440949567],[9.05940925775563,45.43678256419766],[9.059250951696386,45.436978986197914],[9.059200891048839,45.43703416153366],[9.059092238730338,45.43715396764456],[9.059038817781168,45.43721158392464],[9.058955904611095,45.437297289639254],[9.05891474054522,45.43733874265791],[9.058900920901513,45.43735231434872],[9.05887460915187,45.437377413803254],[9.058799260820411,45.43744727365105],[9.058775719417767,45.43746851920879],[9.058754489418392,45.437487126267634],[9.05867753769162,45.43755219828753],[9.058647696274113,45.43757659740866],[9.058615950463588,45.43760162756804],[9.058550310856011,45.43765172495898],[9.058481603809618,45.43770295800736],[9.058391576952403,45.43777283405432],[9.05834743908279,45.4378076185881],[9.058300003595711,45.43784344890149],[9.058204186734926,45.43791551499552],[9.058103541119033,45.43799187695779],[9.058023746663537,45.43805407862983],[9.057945819167577,45.43811672935702],[9.057930233993833,45.43812959973604],[9.057914853581822,45.43814266803305],[9.057899793046507,45.438155979195514],[9.057890034091079,45.43816497617542],[9.057880454293826,45.438174135083386],[9.057841571104724,45.43820938482722],[9.05780238525183,45.43826140369068],[9.057774320842263,45.43831157173033],[9.057755354811551,45.438306522668384],[9.05772591558907,45.438299633647766],[9.057669740886185,45.4383548833799],[9.057628542240234,45.43835122261673],[9.057562485782888,45.43834481996981],[9.057507834377635,45.43833877161932],[9.0574509281943,45.43832822383857],[9.0573489036431,45.43830664525261],[9.057192573925942,45.43826714549922],[9.057008130076387,45.43822858659322],[9.056835103323234,45.438189436673355],[9.0566022523352,45.43813616630396],[9.056374645646375,45.438084738104685],[9.05620393496561,45.43804663021487],[9.056198797158059,45.43806155649101],[9.056195454547161,45.43806883098501],[9.056188079911879,45.43808439742999],[9.056180526240658,45.43809992795773],[9.056172755141477,45.43811538658266],[9.056164792220631,45.43813080929661],[9.056156114081503,45.438147015451946],[9.056102624304208,45.438242578865086],[9.056068688436826,45.43830429771628],[9.05605121523081,45.438334936858276],[9.05604222916596,45.43835011703337],[9.05602318364918,45.43838109897796],[9.055963732393218,45.43847364087123],[9.055944137031176,45.4385046410719],[9.05593455041418,45.438520253581444],[9.055925193940704,45.43853587497923],[9.055871765718715,45.43862979105333],[9.05585346158726,45.438660781608704],[9.055833394215743,45.43869298816114],[9.055770864648217,45.43878926688539],[9.055750464890314,45.43882160859978],[9.055739883556956,45.43883994889659],[9.055730870938207,45.43885429195991],[9.055721476877117,45.438870813464554],[9.055712632742436,45.43888748771981],[9.055704453596519,45.438904305668984],[9.0556968242899,45.43892118635849],[9.05568957859207,45.438938111866825],[9.055668787531959,45.43898880692097],[9.055627266134044,45.43908702861339],[9.055586548676958,45.43918380072918],[9.055579468107865,45.43919968202672],[9.055572412324564,45.43921476221728],[9.055534296755331,45.439292045755806],[9.055518015134618,45.43932587061084],[9.05550956723561,45.43934255365868],[9.055500543824246,45.43935908396572],[9.05549177471055,45.43937416497832],[9.055473456520888,45.439404309375824],[9.05542640144954,45.43947955394964],[9.055417197730154,45.43949478818384],[9.055365349962447,45.439585372850466],[9.055347849797034,45.43961538181664],[9.05529723413241,45.439697828897955],[9.055276246589989,45.43973116092198],[9.055262603688117,45.439757081537415],[9.055252101312973,45.43977807706095],[9.055244764038427,45.439793112359794],[9.05524020929807,45.439803222740444],[9.055235310586614,45.4398146204379],[9.055231471850146,45.43982473047405],[9.05522553073506,45.439842357406036],[9.055223085399636,45.43985220574148],[9.055218530650663,45.43986231612119],[9.055208121352752,45.43988703803468],[9.05520431972527,45.43989586990135],[9.05520111864832,45.43990430543275],[9.055198211636576,45.43991273182174],[9.05518710504572,45.43994359279131],[9.055179949778147,45.4399617693683],[9.055174436690908,45.439972519281454],[9.055165222008066,45.43998978773895],[9.055160319124719,45.439996909931125],[9.055155607148045,45.440003122924345],[9.05514906590832,45.440008427688085],[9.055135951544948,45.4400125204619],[9.055124893068035,45.44001388492684],[9.05510931883817,45.440012839271986],[9.055085954330025,45.440007998901756],[9.055032269230859,45.43999772740805],[9.054983161696573,45.4399876607236],[9.054967085908485,45.439983590932975],[9.054905111214449,45.439968768807255],[9.054863586297953,45.43995926551547],[9.054842651400302,45.43995468496634],[9.054820079905607,45.439950096192945],[9.054752443188319,45.439937400935165],[9.054730255232,45.439932757954935],[9.054708744688254,45.43992786261826],[9.05466577419388,45.43991748683971],[9.054601343695468,45.43990154958555],[9.054579705040107,45.43989636625146],[9.054559575715059,45.43989180326993],[9.05451857423712,45.43988136349382],[9.054494019207576,45.43987491237727],[9.05447569207422,45.439869691449026],[9.054454039142202,45.43986292391118],[9.054440302137387,45.43985770080247],[9.054427103095524,45.43985347655506],[9.054418226997338,45.43985063642281],[9.054399899878822,45.4398454154824],[9.0543803290046,45.43983649569156],[9.054369915456709,45.439830352893665],[9.05435243397567,45.43982697676305],[9.054339519095453,45.43982574972434],[9.054314228479251,45.439825536651924],[9.0543090631609,45.439825710112906],[9.054303923620152,45.439826099586895],[9.054298694810079,45.43982673213149],[9.054292596991353,45.43982781513933],[9.054286857433429,45.43982916800952],[9.054276746393759,45.439831864101876],[9.054272055042935,45.43983297344765],[9.054269063746503,45.43983359593324],[9.05426595735165,45.43983419146994],[9.054262825350747,45.4398347510144],[9.054259718870025,45.43983525654031],[9.054256740179145,45.4398356899974],[9.054252866478887,45.439836123876866],[9.054244159985336,45.439836830068906],[9.054239250674094,45.43983730944194],[9.054234162609426,45.439838049929904],[9.054230378701126,45.439838789802266],[9.054226697199484,45.43983965564106],[9.054223066986776,45.43984067447357],[9.05421948809725,45.43984188230404],[9.054215717685414,45.43984336925764],[9.054213238438573,45.43984463957663],[9.054210938656098,45.43984639586817],[9.054209125035591,45.43984846696751],[9.054207938135786,45.439850762797775],[9.054222615503782,45.43990365510805],[9.054234320157402,45.43994980702429],[9.054258143651992,45.44004734027271],[9.054320897910255,45.44026296703283],[9.054363912309542,45.44041291335482],[9.054392275038051,45.4405102193937],[9.054396663185138,45.44052627520735],[9.054400603222726,45.44054170115869],[9.054415196246534,45.440599616068944],[9.054426609854618,45.440635245859156],[9.05443775259338,45.4406817670582],[9.054445693625096,45.440709459556366],[9.054454515750344,45.440749321068594],[9.054457289663334,45.44076200224681],[9.05446122968226,45.44077737418911],[9.054474225536685,45.44082293139195],[9.054500644158567,45.44091917619337],[9.054504646115225,45.44093244185653],[9.054517163078799,45.44097186055822],[9.05452098586525,45.44098494628454],[9.054523963141733,45.44099633121169],[9.054532000381046,45.44103093646986],[9.054534824444177,45.44104254649582],[9.054553071738884,45.441124204442204],[9.05456184654092,45.44115456084774],[9.054565378105638,45.44117060805866],[9.054569574552277,45.44118665495379],[9.054574922643678,45.44120362841089],[9.054580922642694,45.44122040353482],[9.054592337515881,45.441257113431],[9.054604443944717,45.441294957130616],[9.054617385039284,45.441336499867084],[9.054636190917835,45.44140042544582],[9.054661007739051,45.441492431463445],[9.054663958115826,45.44150237622941],[9.054667818440974,45.441514534822765],[9.054671870535303,45.441526666321536],[9.054685465273888,45.44156971191433],[9.054692568349632,45.44159001492117],[9.054697159715838,45.44160447743628],[9.054705509567876,45.44163154864433],[9.0547244610066,45.44170037971243],[9.054738609962333,45.44174792556253],[9.054821687220668,45.44204511888424],[9.054872163647017,45.44220012900331],[9.054897634513804,45.44228011823347],[9.054915174057415,45.44234289222527],[9.05493063570158,45.44239888941121],[9.05493522243899,45.442421677894295],[9.05493689241112,45.4424296970375],[9.054940298494474,45.44244802156054],[9.054941105884643,45.44246318795491],[9.054938203938779,45.44247704196817],[9.054934070006148,45.442499501580215],[9.054927841774239,45.44252474351947],[9.05492037739909,45.4425542885539],[9.054908345544423,45.44259429499744],[9.0548967192829,45.44263061081264],[9.054862844398006,45.442746452579506],[9.054800122991688,45.442915495331185],[9.054773990099696,45.44298489692779],[9.054746251894501,45.44307369655709],[9.05470631419461,45.44318809198636],[9.05467353659231,45.44327557983937],[9.054655080309178,45.44332348323252],[9.054608806029117,45.44344410136482],[9.054502076009333,45.443725011938916],[9.054431378385793,45.443912546406615],[9.054342337373045,45.44413333939195],[9.0543223130958,45.44420025369113],[9.05430221028184,45.444251902236026],[9.054283728719659,45.444300777686706],[9.054274202276561,45.44432737129799],[9.054271459825767,45.444334429419015],[9.054268896441851,45.4443415414617],[9.054266499715387,45.44434910347832],[9.05426037047379,45.44437140198169],[9.054258126835832,45.44437859488265],[9.05425609891925,45.44438405047838],[9.054253815307625,45.444389551200025],[9.054251391142799,45.44439516000062],[9.05424899267128,45.44440089480378],[9.054246811713409,45.44440677352109],[9.054244886852773,45.444413030161684],[9.054241740108822,45.4444252280742],[9.05424013460196,45.44443115152504],[9.054238286023915,45.444436949075815],[9.054236130448745,45.44444262975769],[9.054233757521732,45.44444833754528],[9.054231243938451,45.44445404539918],[9.054225961083928,45.444465515233674],[9.054222847166342,45.44447190745064],[9.05421615911214,45.44448480911506],[9.054212904802105,45.44449148043066],[9.054209983147766,45.44449835861338],[9.054207713496226,45.44450510147278],[9.05420590410413,45.444511772106644],[9.05420269413992,45.444524735137215],[9.054200833162126,45.4445309467416],[9.054198932778164,45.44453606023598],[9.054192119668151,45.444551932305416],[9.05419000234195,45.44455750495563],[9.054187988021463,45.44456382464472],[9.054169375564612,45.44460972978836],[9.054166427272085,45.444615500852905],[9.054161297473028,45.44462659256778],[9.054158847723597,45.44463221037924],[9.054156564255154,45.44463788211867],[9.05415445988891,45.444643643784154],[9.054152254450598,45.44465069264787],[9.054142653039285,45.444679257512476],[9.054133374334386,45.44469757002476],[9.054113952670482,45.4447397491035],[9.054108220956445,45.44474988698753],[9.054105338286822,45.44475744922894],[9.054101725271899,45.444763445630905],[9.054099516941024,45.444767461139946],[9.054097474840338,45.444771476570686],[9.054095547847691,45.44477551895039],[9.05409376154556,45.44477959726806],[9.054085960977194,45.44480598302492],[9.054073256037132,45.44485198438254],[9.054016878871636,45.44485267696907],[9.053915151140345,45.44485852140914],[9.05379889383825,45.4448741657055],[9.053376715364506,45.44492536248893],[9.052913992073995,45.44498040182887],[9.052639729151492,45.44501431769383],[9.052346478631277,45.44504983473361],[9.052032542111924,45.44508950986945],[9.05143267928305,45.44516341739099],[9.05118515174957,45.445196678724905],[9.050724586824222,45.445253625456246],[9.050086771263674,45.44533072901576],[9.049649924025557,45.44538744505475],[9.049527206731339,45.44540281775909],[9.049364090275871,45.44541287905622],[9.049228710334523,45.4454244674314],[9.049094751056437,45.4454376212227],[9.048904790439268,45.445458134539614],[9.048479519540292,45.445507046267544],[9.047873511313414,45.445582737892714],[9.04760275115892,45.445622670906765],[9.047502821157753,45.44564000323421],[9.047374541359629,45.4456720188662],[9.04726681666946,45.44569615899154],[9.047111593152051,45.44572713227179],[9.046989674309234,45.44573557111259],[9.04685783687415,45.44574924347411],[9.046836088379981,45.44575230368619],[9.046817510743384,45.445754921552314],[9.046321974351104,45.445824754257295],[9.045751272334794,45.445893201556686],[9.045334113533707,45.4459398480819],[9.044941136031511,45.44598815783851],[9.044783077614364,45.44601041604258],[9.044567039259652,45.44604595504187],[9.044238794813078,45.446084615173355],[9.043632377675278,45.44615945635058],[9.043346263700354,45.446195019580145],[9.043238260514704,45.4462095968931],[9.042938725766973,45.44623666714979],[9.041893062748404,45.446383580464655],[9.04179032648713,45.44637971133963],[9.041688303270236,45.4463366512907],[9.04164291398602,45.44634447162435],[9.041625883744791,45.44634786217659],[9.041621920469833,45.446348952736244],[9.041618456471449,45.44635082620672],[9.041617446653841,45.44635134863261],[9.041616526288381,45.44635179001667],[9.041615414152469,45.44635228547637],[9.041597911970632,45.44635731438615],[9.041577264969742,45.446363532567396],[9.04157069338019,45.4463650381153],[9.04156331649042,45.44636695800181],[9.041556220947534,45.44636891379048],[9.041535906133122,45.446374753800214],[9.04151834030846,45.44638020577015],[9.041502002430652,45.44638616135365],[9.041488796836793,45.44639127870865],[9.041472075326181,45.446397225424995],[9.04145750222793,45.4464033693886],[9.041448988440099,45.44640691886708],[9.041443351526976,45.44641008926553],[9.041438046900916,45.446413007514714],[9.041432908307076,45.4464156466714],[9.04142785901498,45.44641799776206],[9.041422426121953,45.44642037599366],[9.041408096984256,45.44642791502595],[9.041384972913889,45.44643926466166],[9.04136247568162,45.44645098311056],[9.041341103524385,45.446462422118614],[9.04132741493869,45.446471626105065],[9.041317727831272,45.44647950549995],[9.041309371400796,45.44648848254479],[9.041302357099148,45.4464967120205],[9.041298996669896,45.44650036765203],[9.041294000422685,45.44650535602538],[9.041277490533409,45.446521086778766],[9.041271816982023,45.44652666946325],[9.041266872055301,45.44653190084537],[9.04125797924261,45.44654185019198],[9.041253775420865,45.44654630721777],[9.041249520162676,45.446550368215554],[9.04124554565993,45.446553646021336],[9.041241046907155,45.44655696901991],[9.041230617663386,45.44656423660161],[9.041225147562969,45.44656824402714],[9.041220061056904,45.44657221531091],[9.041201325610869,45.44658723576672],[9.041184815087261,45.44660215641216],[9.041174887127283,45.446613015228394],[9.041165075626548,45.44662578222473],[9.041157436431961,45.44663640619399],[9.041153313052263,45.44664603879093],[9.041148347189775,45.44665773292915],[9.041145358886425,45.44666320663515],[9.04114381471424,45.44666750968869],[9.041142027256841,45.446671362776605],[9.041139920231137,45.44667537799754],[9.041137570251106,45.44667940230629],[9.041134977355616,45.44668348970907],[9.041132333225821,45.446687460116465],[9.041129343881307,45.44669149365442],[9.041126009315509,45.44669558132191],[9.041122265785933,45.446699993173056],[9.041118343524023,45.446704810135174],[9.041114536626948,45.44671001410109],[9.041108635629682,45.44671943130572],[9.041098469788786,45.446737392028254],[9.041093424771168,45.446745737801635],[9.041087957359121,45.446753516659356],[9.041081671259448,45.4467608907616],[9.041074464477148,45.44676828319397],[9.041066529056325,45.446776017925565],[9.041058351041526,45.446784265802926],[9.04105049318258,45.446793170642216],[9.041045728123052,45.44679963509422],[9.04104170468127,45.446806027273375],[9.041034999814608,45.44681789304596],[9.041031653573308,45.446823546897384],[9.041018459804699,45.44684531613522],[9.041014027605069,45.44685232953135],[9.041009480155697,45.44685911794208],[9.041004715053598,45.44686553738712],[9.040999489660807,45.446872038005225],[9.040993931974413,45.44687879077074],[9.040988297833591,45.446885921607304],[9.040982932479784,45.44689340338884],[9.04097820647747,45.44690085793948],[9.040973927976399,45.44690823132127],[9.04096993076579,45.446915559597585],[9.040959510537384,45.44693552763166],[9.040956675825006,45.44694124430619],[9.040953956179784,45.44694693393658],[9.040948708647907,45.44695824112054],[9.04094627024769,45.44696382263813],[9.040941802386287,45.44697462548581],[9.040939606610692,45.4469797388624],[9.040937270082189,45.446984726274266],[9.04093456295566,45.446990046856705],[9.040931727973325,45.44699539448761],[9.040928803432983,45.447000679142896],[9.040925750959294,45.447005882834205],[9.040922557777689,45.44701102356802],[9.040918227517368,45.44701756886943],[9.040913654306948,45.447024132259095],[9.040880976500521,45.44706958115973],[9.040861853495047,45.44709732017861],[9.040857025121168,45.44710472075398],[9.040852260960573,45.447112508351516],[9.040848864364813,45.447119323350485],[9.040844077725724,45.44713144046025],[9.040841983578119,45.447135635691794],[9.040832142053732,45.44714241697132],[9.040824434140198,45.44714654218423],[9.040812855468436,45.447156060396715],[9.040805996399335,45.44716699910174],[9.040801924888603,45.44717777480001],[9.040799157934098,45.4471888740737],[9.040794024452026,45.44719880404917],[9.04079264498989,45.447201027796865],[9.040789157768852,45.447206303646674],[9.040785312516018,45.44721160662628],[9.040776753119403,45.4472231400008],[9.04077240990343,45.44722949627898],[9.040768360934518,45.44723604147488],[9.04076463153058,45.447242415537595],[9.0407577094234,45.44725464141192],[9.040745179622968,45.447275321254615],[9.040742177882146,45.44727998485983],[9.040739073782737,45.447284567491735],[9.040734985820189,45.44729023959846],[9.040730667726153,45.44729597479374],[9.04071841952801,45.44731706858206],[9.040704548169314,45.447339378084195],[9.040691146665734,45.4473570968837],[9.040682525670853,45.44737196966174],[9.040666248966568,45.447392515803045],[9.040649030580829,45.44741953402834],[9.040642543761987,45.44743254283288],[9.040640526057308,45.4474363779916],[9.040638750752064,45.44743942097244],[9.040634216280116,45.447446605409084],[9.040631623620785,45.447451124850176],[9.040629248766296,45.447456229282515],[9.040627002953375,45.44746297186012],[9.040619090156245,45.447484748187556],[9.040611581168546,45.447498954490094],[9.0406020152268,45.44751576282025],[9.04064818275833,45.44753980633904],[9.04104603871553,45.44774695937958],[9.041083605046108,45.44775950244696],[9.041805121518891,45.448002847144956],[9.042271282296046,45.44815550574458],[9.042543012419452,45.44824605521118],[9.043088264734875,45.44842605340239],[9.043454753313316,45.448547735816035],[9.043543379570027,45.44857320229227],[9.043744799354522,45.44863822149576],[9.043839248185472,45.448668672109065],[9.04385579976828,45.448674012425904],[9.04386875051273,45.448686284918665],[9.04381261533584,45.4488572901792],[9.044062543617065,45.448925737746315],[9.044338231278351,45.44904854116448],[9.044705414024014,45.44921519751115],[9.044941866402162,45.449316061149425],[9.044995356232137,45.44936169355244],[9.04502379175616,45.44937155657842],[9.045054811178508,45.4493823186903],[9.045062736683125,45.44937844513761],[9.04507094415601,45.449375372567005],[9.045079868233023,45.449372902785186],[9.04508957302523,45.44937125179194],[9.045099150727133,45.4493705999637],[9.04510820465478,45.4493706234184],[9.045116747318719,45.44937097111046],[9.045125111007707,45.44937139088042],[9.045131569291424,45.449371820398085],[9.04513811732642,45.44937254691468],[9.0451444609317,45.449373498537206],[9.045150664011706,45.44937463023547],[9.045156675364574,45.44937587902219],[9.04516532159571,45.44937781985503],[9.04517396793441,45.44937989570286],[9.045182652808965,45.44938218756005],[9.045191299548497,45.449384767464984],[9.045199831467913,45.449387689454085],[9.04521443987617,45.44939336337522],[9.045228588133215,45.44939930750681],[9.045351012223401,45.449453112582],[9.045433763888672,45.44948564572312],[9.045465106332118,45.44950039505898],[9.045511505555435,45.449521709195395],[9.045537885308745,45.449535245332676],[9.045560720887627,45.44954640659107],[9.045581317999039,45.44955685764905],[9.045601900998042,45.449565643515456],[9.045622816679998,45.44957466327345],[9.04564371862931,45.449582494895004],[9.045664416891203,45.44959146972636],[9.045684756661338,45.44959990463357],[9.045705288034686,45.449608060428616],[9.04572597269738,45.44961600013398],[9.045812932834982,45.44964945843477],[9.045847344966544,45.44966465649534],[9.045868260535896,45.4496734421811],[9.045888203834144,45.44968175119532],[9.045906715816106,45.44969123091299],[9.04592672341472,45.44969997194501],[9.045967978892953,45.44971722847687],[9.046085313038638,45.44976896455502],[9.046107316858228,45.44977921693131],[9.046126787928678,45.44978858821631],[9.046149303382126,45.4497989573929],[9.046169746369348,45.44980833728176],[9.046191275644716,45.44981684362948],[9.046298857132584,45.4498580881838],[9.046389872320379,45.449892165484286],[9.046439825471342,45.44991121854704],[9.046476321646724,45.44992549746969],[9.046579146280626,45.449966644669125],[9.046598782304565,45.44997426060283],[9.046614197025317,45.449980384070095],[9.046627910109184,45.44998550910891],[9.046642300657773,45.44999025582759],[9.046655667339447,45.44999400384366],[9.046672935431495,45.449999001420814],[9.046693592790847,45.450004492677344],[9.04692440807603,45.45010007087229],[9.047049583132534,45.4501519107707],[9.047341661215565,45.45027021768951],[9.047358611250596,45.450277024503535],[9.04746658128856,45.450322084237484],[9.047505376757984,45.45034797322847],[9.047619857454968,45.45039446129425],[9.047722469228432,45.45043901894489],[9.04784869202171,45.45048802220106],[9.047960550644008,45.45053326887084],[9.04802182741555,45.45055814019316],[9.048384358742002,45.45070463327511],[9.048396385305479,45.4507111719742],[9.048566413807697,45.45078048035141],[9.04873948436403,45.45084746491647],[9.04879391747285,45.45086932337357],[9.048853652546635,45.45089998257304],[9.048940092739283,45.4509340867815],[9.049093663484474,45.45098802759137],[9.049165096939047,45.45101489219411],[9.04920198956953,45.451027567888026],[9.049208231805592,45.45102931141977],[9.049215074909194,45.451030838669034],[9.049222275698948,45.45103191571263],[9.049231599149742,45.451032748818996],[9.049245717332436,45.451032526749685],[9.049259770857175,45.45103147661034],[9.049281239849725,45.451028353052116],[9.049310139276075,45.45102567635652],[9.049334616610544,45.451026106910405],[9.049354899108323,45.45102625122592],[9.049376077728633,45.45102747527824],[9.049384416156048,45.45102793975229],[9.049392767473417,45.45102852123374],[9.04940114450039,45.451029255721274],[9.049409521675889,45.451030161227955],[9.04942021396962,45.45103155179553],[9.049430778512859,45.451033095434695],[9.049441279239748,45.45103478311705],[9.049451677738356,45.45103656085281],[9.049461922816135,45.45103838365887],[9.049775385366235,45.45108969837744],[9.04998017218623,45.45112596477012],[9.04999000924524,45.451129128861474],[9.049998925911794,45.451132716401126],[9.05000729319969,45.45113689824786],[9.05001505991594,45.45114162941873],[9.05002246918256,45.451147071827],[9.050026910710711,45.45115157041633],[9.050029869069062,45.45115639368826],[9.050031676336898,45.451161064443205],[9.050033998445752,45.45116949741002],[9.050034845524292,45.451172962442904],[9.050035373034985,45.45117658963367],[9.05003556805495,45.45118022597007],[9.05003543055251,45.45118383544805],[9.05003499890075,45.45118742705189],[9.050034273067984,45.45119096477754],[9.050033253038356,45.451194430622785],[9.050031938851335,45.45119786959287],[9.050030292102106,45.45120123669929],[9.05002833842277,45.45120459493817],[9.050025707194191,45.45120822350301],[9.050022794398775,45.4512116001611],[9.050017108728774,45.4512174983171],[9.050014527941366,45.45122031676594],[9.050002237892198,45.45123446274845],[9.049998226466581,45.45123918103895],[9.049994317371384,45.45124392628791],[9.049985107001543,45.45125542462312],[9.049980610528715,45.451261187244725],[9.049976203589777,45.451266967829355],[9.049971950111129,45.45127274834713],[9.04996773527323,45.45127884388443],[9.049959574507067,45.4512914398886],[9.049955296008392,45.45129785949057],[9.04995068497775,45.45130424323268],[9.049949075354803,45.45130620615909],[9.049924395144446,45.45133709045199],[9.049912808443693,45.451351272123425],[9.049902997100824,45.45136290572823],[9.04989694142093,45.45136981215545],[9.0498907065987,45.45137660164648],[9.049878275094489,45.451389928581776],[9.049872270349777,45.4513965919574],[9.049845710948846,45.45142838615301],[9.049777884241033,45.45150540144628],[9.049716601794163,45.45157866943579],[9.049696150157386,45.451604763295364],[9.049536920329066,45.451884143322175],[9.049479470086599,45.45198265745026],[9.049410430544048,45.45213714500224],[9.049375725893581,45.452200437226566],[9.049435142131678,45.45221538943491],[9.04986207013159,45.4523228035703],[9.049876614497503,45.4523269647452],[9.04990021551557,45.45233371428861],[9.04986471348743,45.45237679066756],[9.049854186751698,45.45238952270328],[9.049842855536701,45.45240364124696],[9.049837247586419,45.45241082650794],[9.049832227457845,45.452417489453545],[9.049818062013966,45.452437180867015],[9.049813425242625,45.45244350160619],[9.04980858373303,45.45244968741819],[9.049798057065537,45.45246252746101],[9.049792768663961,45.45246953256056],[9.049787928243317,45.45247696951586],[9.049783357406772,45.45248557648954],[9.049779579374366,45.45249407510737],[9.04977308406936,45.4525102707909],[9.049769689081822,45.45251806716138],[9.049764417320857,45.45252949176329],[9.049761749330195,45.45253504655985],[9.04975895327886,45.452540403388824],[9.049755901342538,45.45254563431388],[9.049749490185151,45.45255569124984],[9.049742772088239,45.45256573931712],[9.049735810979563,45.45257576048598],[9.049728683599223,45.452585763724215],[9.049721441031378,45.45259566800033],[9.049714019238072,45.45260536532955],[9.049698191013096,45.45262487742547],[9.049690219594487,45.452634917030096],[9.049682542518223,45.45264519053405],[9.049669311414906,45.45266588064017],[9.049660970516156,45.45267753158849],[9.04963840062916,45.45270948602461],[9.049588374360924,45.45278681754103],[9.049576114189534,45.4528064180913],[9.049563366140829,45.45282384059868],[9.049531972656471,45.4528714066188],[9.049497137664114,45.45291751594267],[9.049475548223555,45.452944744377334],[9.049461332868818,45.45296616396586],[9.049449560792938,45.45298830258523],[9.049435989154501,45.45301467246564],[9.049427203116572,45.45302928492961],[9.049417918051985,45.45304360057305],[9.049408171944505,45.45305717832849],[9.049397837475526,45.45307067532635],[9.04937658039196,45.45309784959259],[9.049366310195449,45.453111742605685],[9.049357816084552,45.45312383464771],[9.049349526607271,45.45313594460332],[9.04934145462276,45.45314815347644],[9.04933361291216,45.453160452260576],[9.049326014303436,45.45317288595548],[9.049319233804672,45.45318488724912],[9.049285748036896,45.45323880882965],[9.049263680559225,45.453275479518],[9.049234239812188,45.45331903915353],[9.049210212745455,45.45335244329255],[9.04918911117109,45.45338220975533],[9.049178817723325,45.453398911085074],[9.049153313334418,45.453439570680956],[9.049138115183158,45.4534635379415],[9.049117997656593,45.45349258388701],[9.049094938335028,45.45352126204198],[9.049082188418597,45.453536875285415],[9.049072865933098,45.45355248706512],[9.04904932839524,45.453590238461864],[9.049037550729283,45.45360622032814],[9.048988989516912,45.453678825399834],[9.048958577948238,45.45372420358455],[9.048900207666328,45.45381206055137],[9.048839397616474,45.45390355494258],[9.048801132052374,45.45396236596759],[9.04876091154781,45.45402335605925],[9.048697442764716,45.45411701174775],[9.048634278543206,45.45420812897791],[9.048572417180957,45.454297571428526],[9.048552440691529,45.45432772433821],[9.048531609616926,45.454360586917204],[9.048471316204335,45.45445943473332],[9.048450651117209,45.454492090203],[9.048440037069186,45.45450826053675],[9.04842957577357,45.45452359370866],[9.04841884580026,45.4545388099792],[9.04835157535983,45.45462996477885],[9.048340589714229,45.45464536116997],[9.048319883978827,45.454675496341544],[9.048274693987695,45.45474421123165],[9.048244629532755,45.45479307247344],[9.048290934536944,45.45478740039161],[9.048342341898243,45.454781096074136],[9.049468414861972,45.45464169525662],[9.049506860531825,45.45465795258884],[9.049382542250711,45.454841402167574],[9.049199476686594,45.45510757827539],[9.04899299544029,45.455407409927076],[9.048962837519882,45.455451374828435],[9.048714648073512,45.45581185468167],[9.048590054629592,45.455993566277414],[9.048452121524496,45.45619106216544],[9.048373510238594,45.45630365319169],[9.048189607802959,45.45657447249814],[9.048131639670165,45.456658791453286],[9.048072992897032,45.45674238157767],[9.047927983298996,45.45695490248903],[9.04778376664186,45.45716869202472],[9.047604867698741,45.45744944541031],[9.04748588631117,45.45763651804218],[9.047419821432687,45.45773787891654],[9.047381352006752,45.457802513178216],[9.047261844025504,45.45800413144966],[9.047237643910611,45.458048588484495],[9.047236865558462,45.458050803057915],[9.047232858910958,45.45806214600313],[9.04722710505691,45.45807954735987],[9.047215820815106,45.45810621304786],[9.047198791766778,45.4581612343416],[9.047180349220161,45.458161988992025],[9.04716444310696,45.45816759415579],[9.047153874760182,45.45817844473108],[9.047150807776106,45.45818160535024],[9.047131884787717,45.45820457473585],[9.047106896711622,45.45823986001307],[9.047086455378645,45.458267312526395],[9.047061469398141,45.45828971731628],[9.047039504468234,45.45829980745444],[9.047050924743907,45.45836028971583],[9.046901045025264,45.45858603376923],[9.04673452014868,45.45883810339313],[9.046565170780902,45.45909461141411],[9.046440705883171,45.45927875078654],[9.046256411586345,45.45921617785487],[9.04620656689439,45.45919897891165],[9.045968858297378,45.459116975726346],[9.04584893832232,45.45907056925366],[9.04541537216037,45.4589211260557],[9.04533511862573,45.45889494669857],[9.045317047493434,45.45892883369507],[9.04526696145813,45.45902578550399],[9.045210347294892,45.459132622985216],[9.045187946529671,45.45917458558476],[9.045146043963038,45.45925305500832],[9.045068688131096,45.45939805591524],[9.045008834352517,45.45951738798728],[9.044983042071436,45.45955709261174],[9.04493412989,45.45963562769906],[9.044822658819404,45.459810255130115],[9.04477998100761,45.459880011716514],[9.044759427745081,45.45991371056306],[9.044755288988954,45.45992049894841],[9.044753896631814,45.45992278575119],[9.04472202302552,45.459955453873874],[9.044717401602242,45.45996654493713],[9.044678510572115,45.460053978032754],[9.044672113112092,45.46006742805292],[9.04465211629874,45.460109542624885],[9.044590554608417,45.46023864124124],[9.044519952093395,45.4603871045306],[9.044493085890409,45.46044475750379],[9.04444889307988,45.46054112158304],[9.04440291174176,45.46064043867061],[9.044356256229387,45.46074475156812],[9.044328189334736,45.46080492524931],[9.044313263959234,45.46083943193501],[9.044288180826857,45.46088783111274],[9.044227270830211,45.461018279418965],[9.04419548546402,45.46108345906447],[9.04417817003433,45.46112048693603],[9.044152489732475,45.46117434993414],[9.044119059440025,45.4612463079608],[9.044074864072533,45.461340997691735],[9.044023987743387,45.46144700424978],[9.043997118906551,45.461502550856395],[9.043929042330062,45.461646467263776],[9.04389261017776,45.461724322035785],[9.043879415632787,45.46176477767739],[9.043873370845152,45.461788236655266],[9.043867327146952,45.46181311779436],[9.043827776402802,45.46186103631996],[9.043812583986918,45.46188169945777],[9.043738797001303,45.462019416208854],[9.043631319521177,45.462225400458756],[9.04356181423845,45.462360010110544],[9.043538199380968,45.462406617351036],[9.043489359109255,45.46250143460717],[9.043338570888581,45.46279349371289],[9.043331546402177,45.46280742094185],[9.043300651413334,45.462868702539204],[9.042860553487522,45.46374175949036],[9.043366488676611,45.46384611689931],[9.043339618093517,45.46396900897938],[9.043281741608565,45.464227216077965],[9.043182146027538,45.46469736784391],[9.04316849518388,45.464761838278186],[9.043048608184746,45.465161492496314],[9.043041587232485,45.465214466127605],[9.04300106051184,45.46549880550205],[9.043073210892876,45.465522955270195],[9.043698078053634,45.46574953647146],[9.043967086210946,45.46584707709655],[9.043981327391526,45.46585223824121],[9.043997486840949,45.46585675957847],[9.044005342283926,45.46585846676931],[9.044015180974014,45.46586085727871],[9.044027501977125,45.46586417394283],[9.044042740414948,45.46586867762395],[9.044061216270377,45.465874611225864],[9.044083198304577,45.46588214566359],[9.04410903204403,45.46589146982395],[9.044140035439776,45.46590309625706],[9.044178639606956,45.4659178971245],[9.044227992194307,45.46593698733557],[9.044289257532334,45.46596069946592],[9.044359582170678,45.465987855462565],[9.044432133261411,45.46601580264603],[9.044498823978603,45.466041429786245],[9.04455439530923,45.46606272270106],[9.044597094246825,45.46607903401273],[9.04462800844414,45.46609084036797],[9.04464219958756,45.466097288595165],[9.044662903404156,45.466105840531945],[9.044680791890219,45.46611293539281],[9.044694368100373,45.4661181867167],[9.044708952760054,45.466120755343475],[9.044719377299016,45.466119770182374],[9.044728981050621,45.46611609403459],[9.044742547378938,45.4661087529308],[9.044756123604149,45.46609773040471],[9.04477200071834,45.46608463674752],[9.04477995144202,45.4660772978236],[9.044791172677652,45.46606463802409],[9.04479990258336,45.46605588563554],[9.044810434102107,45.46604455825338],[9.044823112177259,45.46603010668056],[9.044837923843339,45.4660123148969],[9.044864031051237,45.46597881192992],[9.044872911910193,45.465966855113905],[9.044893126413434,45.46593885406025],[9.044932282874276,45.46587511156181],[9.045097914365426,45.46557315257383],[9.045620199012607,45.46459953132326],[9.046034839535597,45.46384662871216],[9.046170559413468,45.46361528404947],[9.046208317146139,45.46356553823982],[9.046242880438461,45.46352001518103],[9.046297810979654,45.463447588860284],[9.04639735944199,45.46331534172877],[9.046417189059257,45.463288015624286],[9.046438817872678,45.46325536918509],[9.046471136606241,45.463218496944435],[9.046521967968317,45.46317074397388],[9.046620590135172,45.4630644739711],[9.046645507286884,45.463033329330045],[9.046854616145207,45.46278451005946],[9.046873591911329,45.46276150471268],[9.046878089339852,45.46275540918672],[9.046924036735703,45.462773374502895],[9.0471020089773,45.46286348304019],[9.047319003149857,45.46296391743198],[9.047489402240101,45.46303622445194],[9.047732990249557,45.46315162477671],[9.047816719822043,45.4631960100559],[9.047869852382494,45.46322430517854],[9.04797322546873,45.4632792403671],[9.048187155003417,45.46338215866288],[9.048201652662454,45.4633883722959],[9.04821410297511,45.463393686682885],[9.048225401116625,45.4633978584216],[9.04829638064444,45.46342953924698],[9.048456686930706,45.46349808662762],[9.048559026878008,45.46354022226362],[9.048666270758533,45.46358790936413],[9.048728445912428,45.463614337047375],[9.04881380602794,45.463649152813765],[9.048899503148457,45.46368900894577],[9.04901145336049,45.463735046532804],[9.04907951480065,45.46376377577762],[9.049199630295293,45.46381462524215],[9.049340689151002,45.463869876098016],[9.0494821898183,45.46393275945623],[9.049623320942414,45.46399689394005],[9.049715337347955,45.46403591863666],[9.049740111520162,45.464047564248325],[9.049763837160189,45.46405960635331],[9.049783080102058,45.46406507964758],[9.049786866593713,45.46406537504217],[9.049803624369963,45.46406667293444],[9.049826327726679,45.46406524093862],[9.049838899408385,45.464062733206866],[9.049850968949434,45.46405648126608],[9.049870928712254,45.46403331298152],[9.049932993594412,45.46394737129025],[9.050025435045418,45.463829417718195],[9.050142445528545,45.463679490726136],[9.050238209056436,45.463558403171696],[9.050325105721877,45.463449344782354],[9.050393871613396,45.463363138869404],[9.050397713692096,45.4633540281498],[9.050494179914773,45.463233255101684],[9.050570445030049,45.46313731567914],[9.05067737564816,45.46300444049292],[9.050703745804288,45.46297001795312],[9.05077641613982,45.46287432300129],[9.050905115095887,45.462711698596195],[9.05100791806945,45.462584891608515],[9.051134551403413,45.4624167502246],[9.051170151045362,45.46237673383211],[9.051195949986399,45.46234783805848],[9.051199808494468,45.46234299378889],[9.05126118628277,45.46226536860366],[9.051295220845988,45.462220465312114],[9.051427531542668,45.462052195045324],[9.051528338250769,45.46192701765309],[9.051572633969508,45.461871659486064],[9.051580200668107,45.461865616403394],[9.051588333790605,45.46186357852262],[9.05159315584229,45.46186347734764],[9.05160194327842,45.46186362642152],[9.051616232303871,45.461865465217926],[9.051667761373583,45.4618738400303],[9.051718832793117,45.461885302377155],[9.05177231401733,45.4619023802561],[9.051824247074373,45.46191890074427],[9.051861119765197,45.461929307305645],[9.051945146949588,45.46194783848805],[9.052069273772759,45.46196664848843],[9.05222028703579,45.46198542814258],[9.052261094344814,45.46199029715665],[9.05228427477066,45.461993986038536],[9.052309030228118,45.461999582416496],[9.052331019836988,45.46200188567271],[9.052356319986837,45.46200169413303],[9.052364544317522,45.462001483363665],[9.052366846257815,45.462001032263856],[9.052369813148754,45.46200039183957],[9.052372767215642,45.461999715416944],[9.052375682860209,45.461998985005565],[9.052378585672436,45.461998209594874],[9.052380861840293,45.4619975514829],[9.052383125159274,45.46199683036963],[9.052385401227635,45.46199606424532],[9.05238766447195,45.46199526212277],[9.052404760261517,45.46198918763985],[9.052408289128667,45.46198765585686],[9.052413518275882,45.461985142186755],[9.052421175687229,45.46198045816204],[9.052434520798103,45.46197118101968],[9.052444683669973,45.461964821659855],[9.052448007333654,45.461962695901526],[9.05245122865372,45.46196055218774],[9.052454347605288,45.46195836351543],[9.052459562721065,45.4619545086968],[9.052464700999824,45.461950554901755],[9.052475002970926,45.46194246727874],[9.052480281863804,45.461938423408505],[9.052502727276575,45.461921815268475],[9.052508185154256,45.46191768130495],[9.052512824840992,45.461914006767195],[9.052522027210227,45.46190637869448],[9.052526845800728,45.461902524053905],[9.052531920282002,45.46189875030546],[9.052535908497026,45.461896012171096],[9.052539986338868,45.46189337300695],[9.052544166606674,45.461890841808135],[9.05254846206636,45.461888391565765],[9.052552847144584,45.461886031292515],[9.052560466889794,45.46188213936588],[9.052568189068621,45.461878364405216],[9.052575962492869,45.46187467943087],[9.052612401064229,45.461858118874865],[9.052639377694327,45.461845118045346],[9.052738581387404,45.46180157962051],[9.052779942464161,45.46178300952372],[9.052799235035529,45.4617735585882],[9.052819358050595,45.461763081150856],[9.05283963516606,45.461753269715075],[9.052859157659153,45.46174350362779],[9.052878436903002,45.46173350362232],[9.052897485713363,45.46172329669604],[9.05291632968012,45.461712891838296],[9.052934994401499,45.461702307039445],[9.052953492701691,45.461691578297746],[9.052990105214056,45.461669751940285],[9.053110868543023,45.46159339450987],[9.053230392577277,45.46151889173606],[9.053281430731095,45.46149481734806],[9.053329564290143,45.46146961915644],[9.053427943692274,45.461421291966325],[9.053479022557571,45.461399890775596],[9.053532909678763,45.46137246656732],[9.053551947550256,45.46136448278996],[9.053572342214375,45.46135754249614],[9.053590182799034,45.461354923882254],[9.053611078132223,45.461349936570876],[9.053626127946908,45.46134478096344],[9.05363471867225,45.461339862394716],[9.053656016778831,45.46131438855035],[9.053718994118876,45.461337149735414],[9.053729498016178,45.461340034155576],[9.053743008368262,45.46134359224615],[9.05391969876957,45.4613835550651],[9.054060714881873,45.46140879971433],[9.054346097983034,45.461471978353174],[9.054533313604342,45.46152279048279],[9.054542372153936,45.461525603505685],[9.054671319586834,45.461556226739795],[9.054689489411057,45.46152351736648],[9.054733184182645,45.46143202813534],[9.054798217941,45.46133163569945],[9.054856534550993,45.461322264814065],[9.054924880193129,45.46132732675332],[9.054996316275252,45.46132729259174],[9.055067765853385,45.461327987462184],[9.055165085383322,45.461322846208944],[9.055217899610696,45.46132427901216],[9.055258290461824,45.46133517784404],[9.055305929371348,45.46135482217178],[9.055408468159127,45.46138973276803],[9.05550376823356,45.461425375851434],[9.055570053341732,45.46144209472912],[9.055632180767518,45.46144498100326],[9.055710869341564,45.46144494288374],[9.055808195439678,45.461446353826815],[9.055893110326686,45.46145651072092],[9.055950065404618,45.46146740125034],[9.05601119183729,45.461492862380084],[9.056078895234773,45.46152082255298],[9.056084180173153,45.46152321424684],[9.056183080183361,45.46156400359275],[9.056289832780546,45.46160369088119],[9.0563855862201,45.461631241082934],[9.056514711861286,45.4616726273754],[9.056580989877094,45.461694485255144],[9.056610075014213,45.461667638870985],[9.056786815480768,45.46171627421724],[9.05715438281833,45.4618418003036],[9.057346185508932,45.46189678201393],[9.0575289475332,45.46194118272235],[9.057631388214384,45.46197785556972],[9.058053781231713,45.46209120885944],[9.058359317897052,45.46215438528118],[9.058431139119346,45.462167166236085],[9.058541524129218,45.46215429258136],[9.058369498891096,45.46229097966922],[9.05835731905916,45.462300652957666],[9.058269530684703,45.462396441419926],[9.05815623796437,45.46250587027763],[9.058027391327206,45.46264075277432],[9.057972600537695,45.4626967398037],[9.057967189244449,45.46270861488539],[9.05797881599824,45.462720886416186],[9.057987854218595,45.46272849672156],[9.058009068989513,45.462735605822616],[9.058030445522885,45.46273827733292],[9.058683807212683,45.46270952922597],[9.058719903226935,45.46270928575656],[9.059061493252818,45.462714844304216],[9.059257198923664,45.46271773186198],[9.060043662890187,45.46273726974641],[9.060310888332001,45.46274487063327],[9.0603864594373,45.46274646911608],[9.060493984037484,45.46274947288685],[9.061000309059688,45.46276590200734],[9.061264701301374,45.4627792088169],[9.061471273601802,45.46278829749133],[9.061555877575426,45.46279202360844],[9.06155893477863,45.462792156985245],[9.061675572244258,45.462812022678804],[9.061731147202558,45.46282183994234],[9.061983854446517,45.46286374762144],[9.062346929279212,45.462934362152005],[9.062545265728524,45.462979124413415],[9.06297055814672,45.46306150340151],[9.063308048757605,45.46312808744089],[9.063948390134493,45.463246501142024],[9.064790822982811,45.46341076562272],[9.06506484849475,45.46346668704556],[9.065282757367134,45.463509588247106],[9.065367236504294,45.46352595804948],[9.065766118500521,45.46360421918556],[9.065913584393515,45.46363374798684],[9.066137980439507,45.463677273902775],[9.066222736522118,45.463700366676626],[9.066269875758552,45.46371433606747],[9.066474625450134,45.4637472874571],[9.066489834071119,45.46362682696021],[9.06650656583,45.46349632943545],[9.06651974559191,45.46343486281229],[9.066560602337628,45.46332706087703],[9.066579831932263,45.46327627495258],[9.066644198789641,45.463157775132466],[9.066674259969755,45.46309407543405],[9.066697697134277,45.46304284599383],[9.066722588120603,45.46299883452478],[9.066732479826005,45.46299151094285],[9.06678182976879,45.46294960048134],[9.066803003002263,45.46293123507451],[9.066834816743524,45.462911468311034],[9.06686479382282,45.462896185118375],[9.066905317185624,45.46288639539802],[9.066953205158852,45.4628740360765],[9.067008864322164,45.462867648879325],[9.06705961442857,45.462863568784954],[9.067106115562286,45.46285751092638],[9.067130590930306,45.4628518259716],[9.067175624954537,45.462838226084244],[9.06720667910663,45.46281445420545],[9.067215450521728,45.46280089352738],[9.067228077912121,45.462770669694386],[9.067228225702257,45.46274421559686],[9.06721565161343,45.462711333216056],[9.06719379007975,45.46266662892371],[9.06715004749875,45.46258226991161],[9.067149205623796,45.46256258516288],[9.067150219748704,45.462544006454486],[9.067175835109259,45.46251814052522],[9.067242850722993,45.46245636326156],[9.06733475521613,45.462371159696055],[9.067351955527572,45.462346603810616],[9.067365365360352,45.46230758549932],[9.067373801919427,45.46228139656599],[9.067374768119617,45.4622656172017],[9.067371253383381,45.462246366071355],[9.067343937467,45.462186210244305],[9.067286135360636,45.4620781328207],[9.067281658126607,45.46206696517203],[9.067282682245022,45.46205687442217],[9.06728652267557,45.46204874424518],[9.067292036726275,45.46203893889628],[9.067302775235675,45.46202321681044],[9.067318675733974,45.462002838166434],[9.067325180074663,45.46199759575515],[9.067333982908117,45.461989093624084],[9.06734374104344,45.46197720654624],[9.067350241348004,45.46196856174817],[9.067367263205373,45.46194463603518],[9.067372230287358,45.46193741429758],[9.067375896948414,45.46193377573125],[9.067378297774821,45.46193052495189],[9.067381210362445,45.46192738188436],[9.06738863372961,45.46192053674738],[9.06739608314618,45.46191408763978],[9.0674036734523,45.461907800467394],[9.067419008008438,45.461895613074844],[9.067422356206091,45.46189308182018],[9.067425857936087,45.46189058647934],[9.06742950046097,45.46188817206498],[9.067433219858623,45.461885865617646],[9.067437335654155,45.46188345992602],[9.067440071289413,45.4618821081651],[9.067442858386835,45.461881008402585],[9.06744521096982,45.46188022393124],[9.067447001012697,45.46187965581491],[9.067448126178219,45.46187929511277],[9.06744847137033,45.46187915989459],[9.067449532474907,45.46187870921985],[9.06745187212804,45.461877807742596],[9.067455541930817,45.46187682447446],[9.067460018089504,45.46187629078365],[9.067464648517772,45.46187641407693],[9.067468179287607,45.46187683505011],[9.067470840345466,45.46187731054053],[9.067472631477667,45.461877660527826],[9.067474077150766,45.46187792070789],[9.06747753132539,45.461878467740185],[9.067484516515947,45.46187964276854],[9.067511498899036,45.46188512653049],[9.067526134705902,45.461887728219914],[9.067535320829947,45.46188966703769],[9.067562520495667,45.46189500664336],[9.067576222534043,45.4618975728718],[9.067589975565758,45.461899995052164],[9.067603881938771,45.461902291126215],[9.067609625985344,45.46190309783572],[9.067615395399638,45.46190372450952],[9.0676211006993,45.46190421620538],[9.067626767487365,45.46190459091032],[9.06763244699138,45.46190490260033],[9.06763662976467,45.4619050441524],[9.067640850792671,45.46190508667048],[9.067644969365492,45.461905021236475],[9.067649023930597,45.46190491083492],[9.067653040048206,45.46190473744866],[9.067658757207115,45.46190444604644],[9.067664474290973,45.461904091636754],[9.067670191310478,45.46190368322069],[9.06767589545334,45.46190320280369],[9.067705873774164,45.46190034080258],[9.067718164250524,45.461899064408485],[9.067730518455281,45.461897598953904],[9.067742846713038,45.46189582747841],[9.067762758107737,45.461892521351245],[9.067782490149478,45.46188898129983],[9.067802145218328,45.461885252268914],[9.067841135104974,45.46187739834104],[9.067853820423585,45.46187472653999],[9.067866480008902,45.4618719287384],[9.067879113839355,45.461868986934164],[9.06789169625796,45.46186583813535],[9.06790415049815,45.46186246438537],[9.067946475682033,45.461852034155136],[9.067968276173218,45.461845450500526],[9.067993641346053,45.46183556135385],[9.068015884776083,45.461825025977355],[9.068038575079004,45.46181382425575],[9.068071915794176,45.461799006803055],[9.068097991498389,45.46178434666798],[9.068129717443666,45.461766946861744],[9.068138856975064,45.46176202687683],[9.068147932939338,45.46175743096588],[9.06815711170336,45.4617532310383],[9.068171596692698,45.4617473987732],[9.068186747135062,45.46174184514277],[9.068249466623632,45.46171502981751],[9.068308403993852,45.461691556089065],[9.068326698311171,45.4616838133198],[9.068346949169078,45.46167570034064],[9.068450800743232,45.461635835921996],[9.068471665457986,45.46162766854841],[9.068492593795195,45.46161923110226],[9.068501005672642,45.46161553566199],[9.068509071894587,45.46161158839867],[9.068516690427812,45.461607632400984],[9.068531275379206,45.46159990081387],[9.068544173226917,45.46159323235346],[9.06855073070828,45.46158976304247],[9.068557288091132,45.46158621272192],[9.06859355733299,45.46156055613152],[9.068613540885705,45.46154299218691],[9.068676232667285,45.461493593067544],[9.068707705553983,45.461468173336684],[9.068772772356947,45.46141555937554],[9.068830359628688,45.46137611836412],[9.068929553068946,45.4613561755733],[9.069065839476915,45.461336210383614],[9.069084407737458,45.46133303984929],[9.069106146776685,45.461328787279804],[9.069121543529912,45.46132610470422],[9.069138563879449,45.46132274607163],[9.069165316327844,45.4613180494207],[9.069192491664634,45.461314009583546],[9.069235353310672,45.46130349754215],[9.069252229121842,45.46129699762141],[9.069262188432964,45.461293184177904],[9.069279471872601,45.46128531585112],[9.06930356801495,45.461273563965996],[9.06931064828332,45.46126882515072],[9.069326585261694,45.46125814930945],[9.069346969767816,45.4612445004401],[9.06936383970518,45.46123321196013],[9.0693779235314,45.46122377937314],[9.06939644210179,45.461211382765434],[9.069422168941397,45.46119434626638],[9.06943759539455,45.46118460682502],[9.06945130921285,45.46117594854108],[9.069534077727024,45.461123710475626],[9.069562141429174,45.46110361217989],[9.069568465970793,45.46109802770998],[9.069576924367798,45.46109065974289],[9.069595619330174,45.461076147754326],[9.069617032394675,45.46105649452756],[9.069633575895319,45.46103985059412],[9.069636589953156,45.46103614934338],[9.069652600448935,45.461022944122924],[9.06966211746763,45.46101314522961],[9.069671711756369,45.461003778337954],[9.069680080900405,45.46099666244599],[9.069685802890756,45.460989962207925],[9.069687606303395,45.46097947491622],[9.069686075955337,45.46096230188521],[9.069680743865002,45.46092187250745],[9.069670826382733,45.460844946746114],[9.069673516322977,45.46081683490429],[9.069675556155623,45.46080096485446],[9.069680123995385,45.46079183503954],[9.069686451713821,45.4607784466699],[9.069692171772177,45.460770189254625],[9.069698120591273,45.46076073456346],[9.06971072491704,45.46074444405001],[9.069724887862712,45.46072666741872],[9.069736240244207,45.460711637806725],[9.069743517434642,45.46070068813539],[9.069755197919479,45.46067161671877],[9.06976130408008,45.460654898099044],[9.069765516153822,45.460637298529534],[9.06976832040376,45.4606189977354],[9.069768278759051,45.46060591026618],[9.069767012062325,45.460595136805715],[9.069766651980357,45.460583129653344],[9.069765802002854,45.46056798144],[9.069765277442869,45.460547018364664],[9.069764981614762,45.4605456773913],[9.069763235789775,45.4605092692941],[9.069766719461677,45.460471372848495],[9.069770228566316,45.46043335937367],[9.069782484494088,45.460331307265875],[9.069807149048772,45.460251651168726],[9.069833554725465,45.46014213759393],[9.069833469113881,45.46007245168195],[9.069796248773647,45.46002020534725],[9.06972182874082,45.459921950340565],[9.069686354431056,45.45984357292063],[9.069682754125273,45.459786337562136],[9.069703915329248,45.45973903330571],[9.069732147081314,45.4596792853271],[9.069731594584898,45.45963553165886],[9.069731196849757,45.459603245207845],[9.069732553774926,45.45959375729842],[9.06972981458853,45.45952951861469],[9.069733051891914,45.45946806661857],[9.069735940863122,45.459425030940245],[9.069735890820635,45.45941551688217],[9.06973397186448,45.45940475281641],[9.0697320739625,45.45939029831562],[9.069731739222494,45.45937808412151],[9.06973386305345,45.45935775850581],[9.069737282510921,45.45933011426548],[9.069747040281934,45.4592978666473],[9.069761243652819,45.45926122382351],[9.069774871846763,45.45923532857729],[9.069793471346498,45.45920610892645],[9.069809579653487,45.45917926705959],[9.06982846242537,45.45915161340975],[9.069888070431738,45.45907293512895],[9.070014345303658,45.458914917089835],[9.070042440820366,45.45889052515728],[9.070084757238485,45.458854360188006],[9.070159901414204,45.45879383635363],[9.07017387779063,45.458780848322995],[9.070187524751589,45.45877039878278],[9.070211191890538,45.45875405643759],[9.070262227120097,45.458725131897694],[9.070282509981414,45.458712950085605],[9.070315540316868,45.458697322067195],[9.070376215569041,45.45867580841932],[9.070450408255383,45.45865295429016],[9.07048067207706,45.45864460075497],[9.070501743888578,45.45863953823479],[9.070520439464014,45.458636673422355],[9.070550722871394,45.45863381048549],[9.0705893178673,45.45862935824751],[9.070600622104694,45.45862757809133],[9.070622092471888,45.45862418949556],[9.070648294240646,45.45862005089785],[9.070672258176744,45.45861626471227],[9.070691222170922,45.45861327369219],[9.070703472677925,45.45861133992545],[9.07071502022208,45.45860980263592],[9.07072934275494,45.45860789459288],[9.07074140173305,45.458606221970015],[9.070752194704951,45.45860472114594],[9.070763230643053,45.458603184166904],[9.070772399004161,45.45860146831784],[9.070788983886876,45.458598361735106],[9.070806783545287,45.45859502937474],[9.070871322185141,45.45858463835442],[9.070903156267695,45.45858427665315],[9.07094338109159,45.45858426979798],[9.071008219370306,45.45858852319269],[9.071057731697497,45.4585900317249],[9.071235764936816,45.45859638409992],[9.071298250191955,45.458600890819326],[9.07134483175467,45.458611114045844],[9.0713587523967,45.4586151108501],[9.071366493190656,45.45861732929149],[9.071381870809322,45.45862045208686],[9.071387320777285,45.458621555823804],[9.071407968242827,45.458624936367514],[9.071409221931637,45.45862514261116],[9.071414364610487,45.45862598550815],[9.071420620083815,45.45862687271755],[9.071427323425386,45.45862793066742],[9.071435421384754,45.45862938379423],[9.071440589848196,45.458630388692534],[9.071447216891269,45.458631797728984],[9.071456198194019,45.458633907379635],[9.071462978945318,45.45863549634008],[9.071479176373936,45.458639599724236],[9.071480379027475,45.45863990501023],[9.071493480259733,45.458643218230016],[9.07149656361191,45.458643963394785],[9.071508346888843,45.45864681838132],[9.07152304670495,45.45864998658515],[9.071529954873931,45.45865118841789],[9.07153706739018,45.458652156096],[9.071544448283408,45.45865295258679],[9.071552148793264,45.45865364086546],[9.071559862025406,45.45865427512945],[9.0715651831585,45.45865463185268],[9.071570491331546,45.45865485356828],[9.071575991242732,45.458654985153736],[9.071587809529266,45.45865516680402],[9.071592746721654,45.45865533474383],[9.07159722351597,45.45865553897474],[9.071600907199645,45.45865564468895],[9.07160383605223,45.458655579854415],[9.07160650885342,45.45865531715689],[9.07161223758023,45.458654332469976],[9.07161827289486,45.458653050557466],[9.071624333483165,45.45865152560101],[9.071630406600327,45.45864979361266],[9.071636338867272,45.45864793569751],[9.071639394315698,45.45864683566449],[9.071642219440218,45.45864565476587],[9.071644980409934,45.4586443118887],[9.071647779534212,45.45864279796804],[9.071650565664012,45.45864112203684],[9.07165358164085,45.45863914892806],[9.071656405698024,45.45863712193284],[9.0716590122667,45.45863505006824],[9.071661401324198,45.458632915332096],[9.071663496220797,45.45863078978064],[9.07166474775438,45.458629285826966],[9.071665832914597,45.45862770096789],[9.071666828305789,45.458625927143174],[9.071667785008872,45.45862390131378],[9.071668435317248,45.45862232572725],[9.071690826943456,45.45853816110217],[9.07169847396207,45.458516733870745],[9.071700054979532,45.4585128084334],[9.071701815103067,45.45850891888824],[9.071703741542592,45.45850506524329],[9.071705949215566,45.458501094409165],[9.071707353476414,45.45849899629149],[9.071709039232042,45.4584969880082],[9.071710776443048,45.45849521371955],[9.071712501125083,45.45849364646245],[9.071714110969038,45.45849229530183],[9.071716104128551,45.458490637866554],[9.071718314582643,45.458488872283084],[9.071720857475881,45.45848702548255],[9.07172384795281,45.45848512439606],[9.071727311809308,45.45848334002701],[9.07173086560492,45.45848187963881],[9.071734381416409,45.45848072530928],[9.071737871965736,45.45847982302431],[9.07174122208564,45.458479127850715],[9.071744636292085,45.45847854064934],[9.071747961183943,45.458478124523296],[9.071751273547033,45.458477915428695],[9.071754355859545,45.45847784149335],[9.071757182507298,45.458477875730125],[9.071759855697112,45.45847792806485],[9.071764115012947,45.458478105422124],[9.07176831048081,45.45847836382844],[9.071776049214737,45.4584789530568],[9.071779694676211,45.45847918480358],[9.071802539194321,45.45848034064718],[9.071906865232238,45.45848844826372],[9.071961225565609,45.45849045742438],[9.071965049815875,45.458490473028405],[9.071968873940776,45.45849038962106],[9.071972672348775,45.4584901982173],[9.07197647061997,45.45848989880116],[9.0719803710634,45.45848948230738],[9.07198418189657,45.45848900286246],[9.071987851959234,45.45848846049851],[9.07199118940052,45.45848785533582],[9.071994181384762,45.458487151378485],[9.071997032461667,45.45848627648985],[9.07200004945576,45.45848512246507],[9.07200298950414,45.45848380646995],[9.072005750320544,45.458482355571704],[9.072008370275137,45.458480769746345],[9.072010913204148,45.45847895894344],[9.072018988490203,45.45847261715006],[9.072026909951614,45.45846600542168],[9.07203466492376,45.4584592227777],[9.072042304601062,45.45845229618905],[9.072048780770043,45.458445676365415],[9.072170052257242,45.45832177297629],[9.072217038701448,45.458278259434756],[9.07223149102561,45.45826788115084],[9.072247565810235,45.45825603467551],[9.072255603034105,45.45824998092214],[9.072260905678945,45.45824588211395],[9.072275829133648,45.458233865339956],[9.072280697304722,45.45823007283955],[9.072293117197464,45.458220640936155],[9.072299340052494,45.458216019486656],[9.072305575799561,45.45821147903799],[9.072346577075704,45.45817859943162],[9.07235087060449,45.458175527373015],[9.07235512546493,45.458172221311756],[9.072358830401326,45.45816895160122],[9.07236220277477,45.45816566409823],[9.07236528106986,45.45816244878881],[9.072370952143947,45.45815641452132],[9.072375129264715,45.4581523254186],[9.072379638729526,45.458148083088595],[9.072384339607757,45.458143498598375],[9.07238895032486,45.458138419108174],[9.072392920991968,45.45813290797198],[9.072398485188566,45.45812330036089],[9.072403422743392,45.458113747151025],[9.072407822980171,45.4581040862676],[9.072411711502015,45.45809433569653],[9.072415139503459,45.45808452240868],[9.072419431888335,45.458070523095465],[9.072423238206722,45.45805648808459],[9.072426558413095,45.458042381372174],[9.072429366950853,45.45802822097636],[9.072431702018147,45.45801387185759],[9.072432533892632,45.4580042492293],[9.072432560149345,45.45799474412293],[9.072431910294174,45.45797658045041],[9.07243203979963,45.45796780436242],[9.07243338172224,45.457946930122006],[9.072436112642162,45.45793208569632],[9.072441607581773,45.45789826534999],[9.072443465570277,45.457880901185995],[9.07244522556354,45.45786693047297],[9.07244721578587,45.45785296861554],[9.072449436237088,45.457839015613736],[9.072452048252105,45.4578212009218],[9.072460140285088,45.457777945852264],[9.072469982669391,45.45769311390756],[9.072467781964868,45.45764229546752],[9.0724587502769,45.457590536231834],[9.072454455930266,45.45757286091505],[9.072450591292595,45.4575611800145],[9.07244801822441,45.45754933627987],[9.07244809249416,45.457537364859434],[9.072448716795845,45.457525447097915],[9.072450032505731,45.45751412296807],[9.072452064445859,45.457502798385946],[9.072454646164388,45.45749132944019],[9.072462191737099,45.45746089218387],[9.072465392119952,45.457443122124054],[9.072470498700058,45.457425755906876],[9.072480716771919,45.4574049120624],[9.072493083133708,45.45738376082473],[9.07249946651067,45.45737471975505],[9.072502718507717,45.45736734585452],[9.072505217329333,45.45736108855781],[9.072507511536532,45.457354849392374],[9.072509613896235,45.45734861034818],[9.072511549965121,45.457342353406816],[9.072513332510072,45.45733606055841],[9.072514503245923,45.45733141528557],[9.072515533236409,45.457326725096486],[9.07251637135685,45.45732201702656],[9.07251705601111,45.457317318054635],[9.072517599828261,45.45731250215831],[9.072517899777983,45.457307011338564],[9.072519865619778,45.457283994454556],[9.072521552864096,45.457263155996536],[9.072524064099161,45.45722653820641],[9.072520401718108,45.45715284006019],[9.0725205150801,45.45712139937894],[9.072777916771845,45.45712748314331],[9.07280585463608,45.45713140787453],[9.073003305515597,45.457173218247654],[9.073033970945032,45.45717971548332],[9.07307086375803,45.457185245634996],[9.073101119859796,45.457191689107056],[9.073262801785603,45.45721648285537],[9.073428626298154,45.45724015759587],[9.073541056528097,45.45725623345102],[9.07368275139635,45.45727348754529],[9.073769337014232,45.45728235193829],[9.07389896587441,45.45729548204638],[9.074009624968005,45.457306653017696],[9.074116445535706,45.45731657521764],[9.074146172019582,45.45731886027751],[9.074183817749581,45.457322949417794],[9.074237361411564,45.45732719027985],[9.074435877170032,45.45734091426324],[9.07449048664387,45.45735813380485],[9.074503384532099,45.45743081777336],[9.074534934275382,45.4574969728774],[9.074540554002047,45.45751052478228],[9.074596012748078,45.45762895133283],[9.074761207061854,45.45798890311394],[9.074771890432276,45.45801120070993],[9.074672781611804,45.45887793855324],[9.074648272125753,45.45888497530483],[9.074524601205805,45.458941294133325],[9.074501924985855,45.458951624039955],[9.074400060427752,45.4590465519937],[9.074576001790026,45.45909486332188],[9.074451709594971,45.45932170698779],[9.074516336861322,45.45933976610747],[9.074419529553099,45.459409793939415],[9.074334948293432,45.459469102543366],[9.074209232749363,45.45957700724964],[9.07414247437785,45.45964124574663],[9.073980052213376,45.45979032661469],[9.073726412626783,45.460031636427004],[9.073660103009036,45.460087683412475],[9.073401483072148,45.46013917299771],[9.073381236333361,45.46021882704761],[9.073309505167009,45.460316219017955],[9.073140809114562,45.46045349333389],[9.073090532790083,45.46046591078217],[9.072904977978764,45.46052354538636],[9.072620065677244,45.460621072154765],[9.07245140577756,45.460778696745784],[9.072319790101272,45.46087878117956],[9.072187011401734,45.46100009961484],[9.072115235637893,45.4610647451131],[9.072108122524007,45.46112403934836],[9.072070068809735,45.46133467828096],[9.071897873740086,45.46154185490551],[9.07167900673659,45.46178181515636],[9.071792944138886,45.461910944663586],[9.071812238979854,45.462017117692405],[9.071802787202644,45.462118889201605],[9.071793228086168,45.46213571809858],[9.07162461155559,45.46233316193508],[9.071434271427389,45.46240583783042],[9.07136722128503,45.46242623986337],[9.071362247165764,45.462427485097834],[9.07127942362638,45.46244622269532],[9.071025994350862,45.462506092612],[9.071008047990466,45.462515833824675],[9.070972456985743,45.46254135574266],[9.070933797686372,45.46256813968927],[9.070729231906444,45.462712462352954],[9.070672071326763,45.46275562147279],[9.070635274848451,45.46276858759775],[9.070500369524941,45.462821542561],[9.07040379203606,45.46286907324572],[9.07031033573558,45.46294788949655],[9.07017704106264,45.46307312131267],[9.070108113477904,45.46314869102762],[9.07001010648282,45.46328253306641],[9.069907320250389,45.46345174294987],[9.06986905054212,45.463515421489134],[9.069806298027425,45.46363090679457],[9.069778807167651,45.46372263493424],[9.069768194513017,45.46381974442044],[9.069765600227077,45.4638529147663],[9.06976540006354,45.463856578304224],[9.069763359953518,45.46389313269748],[9.069762789795313,45.46390799373247],[9.06992929269026,45.46414598745793],[9.069992160736122,45.464248695806525],[9.069980759542327,45.46425576856085],[9.069954825344404,45.464271608166946],[9.069602967490153,45.46448647844521],[9.069420832151202,45.46459263878363],[9.069375853049205,45.46462049713688],[9.069313667139228,45.46464651165376],[9.06924870684056,45.46467368894228],[9.069174505777081,45.46482266458236],[9.069268309271424,45.46500389757905],[9.06929532858465,45.465027814985206],[9.069297731769428,45.46502648138326],[9.069440945859562,45.46489032639708],[9.069449690608346,45.464886522675485],[9.069671131420588,45.464850411395425],[9.069826930175251,45.464817715021525],[9.070055955132965,45.46474990578491],[9.07025729539047,45.46468968289714],[9.070455065378548,45.46462863375153],[9.070640878119068,45.464559850744386],[9.070683076370022,45.46453870836743],[9.070829507768693,45.46446288349655],[9.070980712198773,45.46437860352557],[9.071197388642705,45.46425841368296],[9.071380447667316,45.464157920575055],[9.071609425379284,45.46403591308917],[9.071791607560463,45.46393100036343],[9.071824934495728,45.463915191716936],[9.072029468487044,45.46380511603348],[9.072341633732785,45.46363986792141],[9.072592926326609,45.46350659310482],[9.072691491934274,45.46345393773291],[9.072734888429116,45.46343081360973],[9.073002718142616,45.463287590273886],[9.073108929442908,45.46323287744217],[9.073173915562716,45.46319867713646],[9.073182671697225,45.4631941800418],[9.073200184193977,45.46318536587084],[9.07320865893133,45.46318087795473],[9.0732168520192,45.463176201196134],[9.073226284312927,45.46317033551114],[9.073235498877326,45.463164253939674],[9.073244598122496,45.46315801942367],[9.073293186108893,45.463124009535534],[9.073313249633856,45.46310964908698],[9.073536348158372,45.46294836100224],[9.073578925227327,45.46291530895169],[9.073597888586635,45.462900958159054],[9.07364077479711,45.462869625082554],[9.073645797047707,45.46286604845275],[9.073650870485196,45.46286248979199],[9.07365602072665,45.46285897608677],[9.0736597525033,45.46285649840965],[9.073663522722766,45.4628540747139],[9.073667356932143,45.46285167798002],[9.073680010273613,45.46284411799668],[9.07370107882057,45.46283555349371],[9.073741982979142,45.46283430307535],[9.073796796560522,45.4628373281855],[9.073814207552308,45.46283915319594],[9.073828125000368,45.46283975631214],[9.073929958362957,45.462862337325795],[9.074037898720904,45.46288919879594],[9.074184137197635,45.46293684577853],[9.074306001705308,45.462969206618915],[9.07441740962875,45.46299667755402],[9.07455025591551,45.463034188597526],[9.074745242961011,45.46309220836155],[9.074868849327135,45.46312579160512],[9.074961983241195,45.46314654116477],[9.07513868448581,45.46319845150475],[9.075318343682056,45.46326217797339],[9.075399329247944,45.46330435758617],[9.075514272059534,45.46337283379026],[9.075574579886604,45.46341899633647],[9.075634686017024,45.46346731022801],[9.075655617215418,45.463499736116376],[9.075661298395103,45.4635203627156],[9.07566476878795,45.463532952858586],[9.075665231488731,45.46353461774279],[9.075665709497029,45.46355738101539],[9.075666255070024,45.46358285355128],[9.075648758778406,45.46366128200189],[9.07559402150163,45.46367782595476],[9.075511940222826,45.46372603547724],[9.075447505228722,45.46379898615107],[9.075363363000868,45.46390411038769],[9.075213037127858,45.46410505784351],[9.07489481201404,45.464530348266535],[9.07482418167557,45.46464019780944],[9.074781234529647,45.4647035029884],[9.07472277539938,45.464867251648236],[9.074624906333936,45.46512927205328],[9.074591272415082,45.46522298554672],[9.07451933319994,45.465428318562445],[9.07448207603603,45.465539370336565],[9.074429351180484,45.46568765134773],[9.074332911148563,45.46597833878466],[9.074168214554934,45.46645644447246],[9.074140045654431,45.46654374555345],[9.07410911743291,45.4666143605202],[9.074083627008047,45.46666635786122],[9.07404628034518,45.46671001890357],[9.074004366918674,45.4667536918797],[9.07395605520691,45.46678581165677],[9.073876714358079,45.466821155756776],[9.073804667616093,45.46684879923982],[9.07385978426571,45.46686547866705],[9.074378446060846,45.466981877847836],[9.074155108142484,45.467440516224755],[9.074125434265374,45.467502237369395],[9.074043333999574,45.46766869217435],[9.073848072306179,45.468050650121555],[9.073582703784167,45.46859873942174],[9.073528362604009,45.46870803757744],[9.073504470450066,45.468760573806875],[9.073500835148792,45.46876871305295],[9.073526215498497,45.4687985531602],[9.073421660168757,45.46905355584566],[9.07332078813873,45.46930855607064],[9.07320994134115,45.46957685705645],[9.073106680829284,45.469846170203795],[9.073013763583818,45.470091650983434],[9.072960756429511,45.470235592889495],[9.072926607905268,45.470331556388864],[9.07299502484864,45.47031268277177],[9.073049750931789,45.470301747721756],[9.073088376972358,45.470295503427415],[9.073114083648102,45.47029027546543],[9.073146362963788,45.47028285606235],[9.073176752959508,45.47027855220526],[9.073207769364862,45.47027391490298],[9.073233248291821,45.47027065828129],[9.073261045519057,45.47026958741987],[9.073292669952185,45.47027020629776],[9.073320508541793,45.47027144865576],[9.073346160402146,45.470273331476534],[9.073373207612693,45.4702759424814],[9.073406116614855,45.47028065596723],[9.073434060427738,45.470284121480326],[9.073457450184899,45.470287706915066],[9.07349901793232,45.47029091166191],[9.07352793335082,45.47029387247303],[9.073585545169808,45.470298597079065],[9.073615561354638,45.47030200721269],[9.073664755105815,45.47030637713838],[9.07369567943163,45.470309669654846],[9.073719489004867,45.4703114275607],[9.07374896748913,45.4703145139683],[9.07378011960344,45.47031588909984],[9.073808200060075,45.47031618607711],[9.073872573463655,45.47031643268581],[9.073932048059529,45.47031730348447],[9.073961562006815,45.470318139561215],[9.074024851057015,45.470320709044266],[9.074056041054988,45.47032169703257],[9.074090033226215,45.47032311525165],[9.074121275583762,45.4703250122906],[9.074143191640397,45.47032660931307],[9.074171506451492,45.470330029400955],[9.074201905776546,45.47033290807315],[9.074228520854001,45.470337625391814],[9.074256210490605,45.47034231500588],[9.07428738194623,45.47034867654746],[9.074311682246886,45.47035392640511],[9.07433973534867,45.47036263021505],[9.074357066171459,45.470369837797755],[9.074373142413943,45.47037636211402],[9.074389243927364,45.47038264338431],[9.074409901572928,45.47039037986186],[9.074415993763157,45.47039254515505],[9.074422085800563,45.470394593434875],[9.07442806245598,45.47039645276793],[9.07443488339796,45.47039828454994],[9.07444211351969,45.470399972049876],[9.074449855410899,45.47040170422242],[9.074458006977395,45.47040367015489],[9.074466338126758,45.47040600501174],[9.074474708245113,45.47040878989333],[9.074482669185,45.4704117190561],[9.074497542025929,45.470417551058006],[9.074504799177785,45.470420336659956],[9.07453705264218,45.4704322960604],[9.074545244094507,45.47043540508933],[9.074553230910833,45.47043855025463],[9.074568705628467,45.470444840907824],[9.074576257316266,45.470447851339124],[9.074583783206618,45.47045069976846],[9.074591654443237,45.470453502967736],[9.074599666330116,45.470456252068935],[9.07462434145633,45.47046436393818],[9.074630740511738,45.470466394005136],[9.074644139872143,45.47047044474581],[9.074651217276836,45.470472726398654],[9.07465835900083,45.47047527803959],[9.074665155569175,45.47047801892597],[9.074671606851728,45.47048085004669],[9.074677789534086,45.47048371734598],[9.074701125265747,45.47049473739724],[9.074718137575157,45.47050287223656],[9.074739757870665,45.470512966292695],[9.07474691334405,45.470516238000094],[9.07475406871165,45.47051942869802],[9.074759598307304,45.47052179236161],[9.074777197857022,45.47052898170328],[9.074783329058928,45.470531606003036],[9.074789716508104,45.470534527168795],[9.074801698125532,45.47054027100531],[9.07480744565298,45.47054297656301],[9.074812988164494,45.47054543022572],[9.074818363907934,45.470547532957454],[9.074830727452962,45.47055186338294],[9.074837575020261,45.47055446020955],[9.074844461618834,45.47055755206593],[9.074850196807997,45.47056059966796],[9.074855471611608,45.47056376458322],[9.074860426797752,45.47056708272392],[9.074865126271034,45.470570509043405],[9.074869698137306,45.47057417847329],[9.074874347532116,45.47057843291823],[9.074878395713844,45.4705827237593],[9.074881931804757,45.47058672690206],[9.074885198713504,45.47059032517487],[9.074888452355214,45.47059356341573],[9.07489270444058,45.47059726005644],[9.07489746838078,45.47060106437498],[9.074902603621327,45.47060510247733],[9.074907918365367,45.47060944649663],[9.074913080012102,45.47061410565104],[9.074918537021896,45.470619619708515],[9.074923597396536,45.470625089019705],[9.074928427501687,45.47063055848096],[9.07493765266442,45.47064142567894],[9.074942137402179,45.47064692236825],[9.074954567696993,45.47066303506141],[9.074958706450172,45.47066809092645],[9.074962691084533,45.47067268784045],[9.074966867647383,45.4706773116319],[9.074979960651708,45.47069150667367],[9.074996167439865,45.47070957911491],[9.075000177333072,45.47071392398267],[9.075005301509881,45.470719258233224],[9.075021339689199,45.47073557558369],[9.075026745906628,45.47074135969946],[9.075030359000843,45.47074553380638],[9.075033690570091,45.47074964509021],[9.075039892597344,45.47075743591058],[9.075042980473935,45.47076107029988],[9.075047221144867,45.47076579305754],[9.07505158974485,45.47077051573138],[9.075075506920836,45.470795432887456],[9.075080579738525,45.47080061415099],[9.07508571647376,45.47080575936838],[9.07509087864094,45.47081078755578],[9.07509524636747,45.47081484415357],[9.07510943744275,45.47082739127638],[9.075114291871474,45.4708318796034],[9.075119005793885,45.470836530040415],[9.0751320851399,45.47085001399339],[9.07513640205819,45.47085434065322],[9.075145317422939,45.47086305679509],[9.075149787762252,45.47086731134583],[9.075154296349817,45.47087146686023],[9.075158855918911,45.47087547832486],[9.075163594421944,45.47087936365792],[9.07516856318519,45.4708832398389],[9.075179089483214,45.470891216839775],[9.075184429610928,45.47089537180815],[9.07520115485764,45.470908781355895],[9.07521218158858,45.47091789215313],[9.075240922752993,45.470943517191664],[9.075253627295705,45.470954085048504],[9.075259275692252,45.470959166915286],[9.075264885806591,45.47096432081501],[9.075270457758016,45.47096963675769],[9.07527533840585,45.470974584112156],[9.075288546799825,45.47098886005127],[9.075292876533576,45.47099318669666],[9.075298230534127,45.4709981427405],[9.075303866014938,45.47100312560238],[9.075341046639478,45.471035423826635],[9.075347604350574,45.471041261176914],[9.075354085436981,45.47104719758819],[9.075360413117451,45.471053215109016],[9.075412536387299,45.47110512569908],[9.07541768567455,45.47111004586778],[9.075433773617766,45.471125129987975],[9.075439166392501,45.47113036503096],[9.075444418505928,45.471135645171266],[9.075464570716642,45.47115742336694],[9.075475472695071,45.47116885648133],[9.075506485873637,45.47120006058424],[9.07554502462664,45.47123373500191],[9.07559280113196,45.471277916501556],[9.075650203783754,45.47132642112068],[9.075687907459342,45.47135731472761],[9.075723497047386,45.47138574344029],[9.075728836817788,45.47138956534565],[9.075734100131097,45.47139361232653],[9.07573935107227,45.47139797435066],[9.075744320592754,45.471402354562386],[9.075777097474255,45.471432054257406],[9.075781708364739,45.47143611066795],[9.07578694661663,45.47144054470635],[9.075797947791537,45.47144952944891],[9.075803531841059,45.47145425129046],[9.075809001054939,45.471459198232864],[9.075813804757887,45.47146393859148],[9.07581830147789,45.47146871515681],[9.075822567876696,45.47147345587012],[9.075830908661368,45.47148284741305],[9.075835329095025,45.471487975067525],[9.075843632418408,45.47149805071104],[9.075847745197379,45.47150271051586],[9.075852100671417,45.47150709112873],[9.075856878062751,45.47151128244126],[9.07586203914871,45.471515401491764],[9.075867545622481,45.4715195023117],[9.075885012236167,45.47153218218577],[9.075890147006447,45.471535752190796],[9.075904603567864,45.47154566174149],[9.075911236987492,45.47155062591071],[9.075916462358858,45.47155497894252],[9.075921585699753,45.47155956606787],[9.075931986393572,45.47156910925738],[9.075937480999222,45.47157389415851],[9.075944191917294,45.47157940733617],[9.075964336677862,45.47159535279207],[9.075970868197805,45.47160064106167],[9.075981306287165,45.471609437138014],[9.075996701447234,45.47162283844739],[9.076002388428746,45.47162797425734],[9.076013749975266,45.471638524915974],[9.076019616303295,45.47164384062646],[9.076025738444905,45.471649120163114],[9.07603086117664,45.471653239231316],[9.076036124475864,45.47165724119299],[9.076081737733379,45.47169040668176],[9.076125572846644,45.47172360033496],[9.076142963908945,45.4717370903102],[9.076168961485605,45.47175771237056],[9.07617577428551,45.4717628474244],[9.076181511177797,45.47176702008409],[9.076187324708549,45.47177110268247],[9.076193214901922,45.4717751132216],[9.07619915619592,45.4717790697204],[9.076205199799027,45.47178299914791],[9.07621316377576,45.47178798041768],[9.076237080551447,45.47180236614449],[9.076244814004728,45.47180715854402],[9.076251625887002,45.47181160051605],[9.076272126206673,45.471825448445394],[9.07627915581732,45.471830070291254],[9.076285749860084,45.471834242375785],[9.07630545470365,45.471846362634054],[9.076311869441554,45.47185038181913],[9.076347209168107,45.471873292882],[9.076364764267407,45.471885018515984],[9.076370807905446,45.47188895693567],[9.076377081759395,45.471892850196724],[9.076382958350559,45.47189623966529],[9.076388898665748,45.471899449071],[9.076400548647165,45.471905589003654],[9.076424028629285,45.4719185438213],[9.076437228109338,45.47192581684535],[9.07644465401697,45.47193020439069],[9.076450492612357,45.47193387291241],[9.076456229033361,45.471937667516094],[9.07647343894332,45.4719495283784],[9.076479278124353,45.47195362894673],[9.076490931217956,45.471962064125606],[9.076497000883535,45.47196631755656],[9.076503287923721,45.47197048983313],[9.076509881853879,45.471974553892565],[9.076516539532257,45.47197845589094],[9.076561426432765,45.47200384479817],[9.076580937555889,45.472014524976224],[9.07658774840928,45.472018165838925],[9.07659498127861,45.47202168940628],[9.076602674336884,45.47202494263566],[9.076610891416118,45.47202782647322],[9.076619171878928,45.47203027821935],[9.076627375195127,45.472032441984155],[9.076657845988526,45.47204010849137],[9.076665166011153,45.47204184979612],[9.076672549902636,45.47204351904966],[9.076679984833357,45.47204508925748],[9.076688033834403,45.47204665905438],[9.07669610826412,45.47204811182056],[9.076704169779562,45.47204947458471],[9.076729147331706,45.47205343632931],[9.076747150894668,45.47205611558942],[9.076756210154608,45.472057387672386],[9.076772933738306,45.47205957272913],[9.076780700443408,45.47206051263774],[9.07678846707575,45.472061398539786],[9.076796284759123,45.472062194397026],[9.076804179079758,45.472062900192284],[9.076813071167086,45.47206353331096],[9.076821899106355,45.47206403145675],[9.07684793488551,45.47206531916685],[9.07689472339744,45.47206827615266],[9.07691142000165,45.472069426091146],[9.076920030398567,45.47206987937012],[9.076928768434282,45.47207011653862],[9.0769373781486,45.472070065760235],[9.076945834028301,45.472069781058075],[9.07696223376957,45.47206899597111],[9.07697024185292,45.472068684564526],[9.077022052592547,45.47206759667528],[9.077033937224966,45.47206745368086],[9.077115980236433,45.472067902620374],[9.07711679884994,45.472067794057985],[9.07716381830335,45.47206181277561],[9.077476863132086,45.472012537292805],[9.077632006670926,45.47199476343269],[9.077714031709018,45.47198215148943],[9.07772016175647,45.471993065561755],[9.07777291549571,45.47208276087822],[9.077791290872247,45.47211400892657],[9.077738366273431,45.472151876045],[9.077678169402228,45.47219494164538],[9.077305614280359,45.4724636213916],[9.077023899279899,45.47266517244335],[9.076595919780326,45.47297368950788],[9.076035777790354,45.47337638014815],[9.075789205765382,45.47355542931188],[9.075278627142374,45.4739290101961],[9.07474593970329,45.47431637471725],[9.074734064360692,45.47433366438433],[9.075552472787546,45.474996124487866],[9.075538851998939,45.475028447064425],[9.075549739648535,45.47509585742368],[9.075585912911036,45.47512854325154],[9.075657069409997,45.475174464485605],[9.075682005692485,45.47520407934804],[9.07570620215702,45.47522574680576],[9.075758817970478,45.475336856482414],[9.0758289298724,45.475385847640055],[9.075857031793163,45.475400320681366],[9.075858923023803,45.47542735844845],[9.075812235046198,45.47553050481327],[9.075727396908984,45.47563481947049],[9.075690534698404,45.47568067690676],[9.075686083520162,45.475700716078045],[9.075679495788826,45.475730387732646],[9.075665447684909,45.475768552253506],[9.075600893005591,45.475819405473786],[9.07557258612378,45.47584330378484],[9.075564945589344,45.47587987089435],[9.075573377863622,45.47592871378778],[9.075569279975209,45.47597392852807],[9.075565059442509,45.47599428257681],[9.075559593335926,45.47601121706429],[9.075529732161403,45.4760401479484],[9.075469917635955,45.47606722632174],[9.075409641612653,45.47608402582104],[9.075352664645274,45.47610913104805],[9.075328390640008,45.47614493497621],[9.075327660382335,45.47618276667249],[9.075323512931968,45.47632582233834],[9.075361064691512,45.476384475218964],[9.075392810962128,45.47647427537127],[9.075400803988515,45.47651032813602],[9.075421887503184,45.47653829839654],[9.075472675276503,45.47658266694691],[9.075488891514583,45.4765968328582],[9.075486214728498,45.47661397252822],[9.075476759027625,45.47664224189676],[9.075454453809206,45.47666738736628],[9.075429507256306,45.47668823208859],[9.075406376388527,45.47669863444933],[9.075360382088617,45.476708880805226],[9.07534714401921,45.47671183282693],[9.075263154445087,45.47671506530409],[9.075202429317967,45.47672178386403],[9.075175222030495,45.47673595126852],[9.075173531310195,45.47676352244648],[9.075207885528878,45.476842159692815],[9.075193216810298,45.47685654390713],[9.075150148299533,45.47686382693092],[9.075079005059344,45.47685826588001],[9.074975637085645,45.47684596609315],[9.074940729917309,45.47686192067097],[9.074906710607769,45.47690112424703],[9.074885391294242,45.47695621529452],[9.074901733346557,45.477007600349346],[9.075092095068335,45.47717871998615],[9.075118764498884,45.47720269019881],[9.07512855787787,45.47723604149887],[9.075126257257327,45.47732486488824],[9.075135847314545,45.477349575358794],[9.075222330899706,45.47740291263426],[9.075251103617619,45.47743054484363],[9.075252181900533,45.47744288450922],[9.075247115572688,45.47746237499956],[9.075225793604519,45.47747673657654],[9.075180344938877,45.47749373325166],[9.075129355580293,45.477519869552836],[9.075079271980464,45.47754404302024],[9.075017145526864,45.477575407138545],[9.074965223740344,45.47760284011986],[9.07493462573106,45.47761721670312],[9.074916073019361,45.477616580745725],[9.074900288937227,45.47761006532437],[9.074877076379993,45.477597686096026],[9.074872244900503,45.47759162257408],[9.074859416477706,45.47757551015129],[9.074835247596214,45.47754616465123],[9.074816661374005,45.477520073868284],[9.07481755592246,45.477499848035414],[9.074823111907747,45.47748287752529],[9.07482030210447,45.47746721761538],[9.07480636465966,45.47745417525086],[9.074786871994029,45.477448967376624],[9.074773892606665,45.47745419641624],[9.07475535626545,45.47746595480075],[9.074734955376162,45.47748032468702],[9.074708980346761,45.477488172473166],[9.074677446546694,45.47749145136262],[9.074635702070857,45.477503881902635],[9.074609747521244,45.4775175983056],[9.074591209467307,45.47753783560755],[9.074573235705902,45.47756884673791],[9.07452520179249,45.477556204535695],[9.074502933506944,45.47755158348083],[9.074478853996409,45.477551212069805],[9.0744495318274,45.47755315731262],[9.074411574234931,45.4775557022143],[9.074377800893402,45.47755862243327],[9.074350104639171,45.47756135868477],[9.074321527031215,45.477565211624515],[9.074296202334184,45.477571465718256],[9.074272824895699,45.47757964476021],[9.074237765296598,45.47759694036897],[9.074227385036593,45.47760366183093],[9.074220264593125,45.47761806803839],[9.074204704602897,45.4776459091967],[9.0741813678469,45.4776852676607],[9.074166457206996,45.477710714127475],[9.07415283842075,45.47772607863646],[9.074130775303209,45.47774143959844],[9.074116488960518,45.47774529225426],[9.074095048659466,45.47774770936785],[9.074065178081845,45.477751086025194],[9.074030752688794,45.4777544656134],[9.073997620149216,45.477758321410526],[9.07396840708121,45.47776554104586],[9.073947624274128,45.47777179213426],[9.073935293900632,45.477784275466654],[9.073915852336555,45.47781835677921],[9.073902244079683,45.477841885158824],[9.07388925991152,45.477853405800104],[9.073865239449814,45.47785918190513],[9.073843645678537,45.47786168908026],[9.073836926467909,45.47786005522188],[9.073817919004082,45.477854126790405],[9.073800038519032,45.47784901672201],[9.07377453318497,45.47784439760719],[9.073752855296338,45.47784124318988],[9.073732035174753,45.477838502263324],[9.073710882645237,45.477835950567496],[9.073687456013518,45.477835947611275],[9.073664060621265,45.47784030111453],[9.073643892119366,45.47784673177329],[9.073624750236721,45.47785552903294],[9.073605289933624,45.47786544261766],[9.073584871486599,45.47787647293754],[9.073546564186033,45.47789568762892],[9.073527293056982,45.477903503845965],[9.073506790346766,45.47790876456444],[9.073464589721535,45.47791518229937],[9.07344697665026,45.477918973994086],[9.073431706078855,45.47792362828317],[9.073416001517373,45.47792907493589],[9.073405848711483,45.477933716946204],[9.073390902076728,45.477941530373755],[9.073374282480128,45.47795175713719],[9.073358585253052,45.477962892409586],[9.073345535590667,45.477973341911614],[9.073334212758141,45.47798346627258],[9.073304456789874,45.47801629393085],[9.073295910726255,45.47802671354712],[9.073289027883744,45.4780370870955],[9.07328334823103,45.478047855919115],[9.073278704650662,45.47805840805682],[9.073276146093756,45.47806858982193],[9.073273500111242,45.47808042782683],[9.073269357845565,45.47809278884503],[9.07326468768296,45.47810257591405],[9.07325082606419,45.47812832762373],[9.073245811082336,45.478138609967004],[9.073240415838614,45.47815166486077],[9.073234201917964,45.47816485529173],[9.07322903300114,45.47817483169844],[9.073223864929632,45.47818546517737],[9.073216742788043,45.47819880920386],[9.073210077126836,45.478208957583604],[9.073201557069828,45.47821973721587],[9.073191614857128,45.478228996585564],[9.073184240084046,45.47823495095004],[9.073172771223554,45.47824103393861],[9.073157796787722,45.478247218172],[9.073140429945662,45.47825353894326],[9.073122680387927,45.47826073305273],[9.073104059893824,45.47826722563624],[9.073086691487473,45.478272340266294],[9.073067250722461,45.478277735244234],[9.073049613635881,45.47828285904069],[9.07303294754193,45.47828690209653],[9.073014888125506,45.4782919451474],[9.072985153283966,45.47830165813956],[9.07297007529875,45.4783069423141],[9.072954637722354,45.47831118259929],[9.072941667189916,45.47831363011532],[9.072924753533284,45.47831420792769],[9.072912098378989,45.478313162852],[9.072901361667004,45.47831154049223],[9.072879452664532,45.47830785499723],[9.072877033976573,45.47830745148825],[9.072793100889118,45.478306802681495],[9.072770023032149,45.47830954462088],[9.072753200919895,45.47831167052178],[9.072735586858858,45.47831482303618],[9.072715441343172,45.4783194353139],[9.072697790576049,45.47832390199169],[9.072680294803511,45.4783295116956],[9.072663261277938,45.47833640824706],[9.072645820728827,45.47834518626264],[9.072632000836657,45.47835380896705],[9.072618514599897,45.478363214545624],[9.072590380580646,45.47838419567363],[9.072530928918503,45.47843796923237],[9.07251756377211,45.478452055242194],[9.072501666648668,45.47846720496799],[9.072488108478028,45.47848043600127],[9.072459118309128,45.478502353741234],[9.072444148524918,45.47851230029566],[9.072427297666785,45.47852204101229],[9.072411161808155,45.47853061114534],[9.072394092180245,45.47853937088611],[9.072377368482863,45.47854850844815],[9.072359660651065,45.47855847472022],[9.072348333959,45.47856579967401],[9.072341903228201,45.47856969215971],[9.072329410365871,45.47857555968477],[9.072308503980764,45.478585617974744],[9.07229323677872,45.47859313442677],[9.072275336964621,45.478603073803626],[9.072254560750155,45.47861489619754],[9.072237709244913,45.47862417783544],[9.07222116391215,45.478632757200245],[9.07220102483181,45.47864255395857],[9.072179569340017,45.478653485667195],[9.072160633557033,45.47866376771549],[9.072141466515017,45.47867330282307],[9.072125240664572,45.47868160294211],[9.072108222513782,45.478690668641526],[9.072077125443032,45.4787060258791],[9.0720620509651,45.47871422625499],[9.072047360504527,45.478722570403775],[9.072030050574975,45.478733625495515],[9.072015758404714,45.478743283536105],[9.072002746127362,45.47875328280985],[9.071989620119671,45.47876440727834],[9.071977108249877,45.47877553136013],[9.071964329922816,45.47878841980347],[9.071953982140641,45.47880096468345],[9.071944604079782,45.47881140272086],[9.071936098981979,45.478824153467016],[9.07192921915564,45.47883718222483],[9.071922759555402,45.47884863554405],[9.071909403710134,45.478870264313024],[9.071901944385777,45.47888035010552],[9.071892235543299,45.47889229151254],[9.07188606723348,45.478901395386345],[9.071878159563154,45.47891106741212],[9.071867616356922,45.47892087610278],[9.071855003198374,45.478932891333216],[9.071846263283156,45.478942104826885],[9.07183503120162,45.47895353412552],[9.071826074840194,45.47896359384697],[9.071817094479567,45.47897491372257],[9.071800740281114,45.478993123975066],[9.071786031150635,45.479007030718755],[9.07177731419727,45.47901418296394],[9.071768417956633,45.47902120930659],[9.071760813262461,45.47902766777801],[9.071750495850196,45.479033938923976],[9.07174038277577,45.47903991290828],[9.071732699022709,45.479044562226534],[9.07172505448227,45.47904986859261],[9.071714353732085,45.479056545019795],[9.071707540890028,45.47906188686903],[9.07169900113538,45.47906752682963],[9.071689618575208,45.47907447246091],[9.071678650535675,45.47908226517551],[9.071664141502024,45.47909255337688],[9.071655130604864,45.479099993828136],[9.07164192674899,45.47911038022271],[9.07162376458469,45.479125567242505]]]}}]} \ No newline at end of file diff --git a/layers/luoghi_monumentali_buffer.json b/layers/luoghi_monumentali_buffer.json new file mode 100644 index 0000000..9ffa0bf --- /dev/null +++ b/layers/luoghi_monumentali_buffer.json @@ -0,0 +1,22 @@ +{ +"type": "FeatureCollection", +"name": "luoghi_monumentali_buffer", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.182366905755323, 45.453952970141295 ], [ 9.182303417520998, 45.453674923892294 ], [ 9.182120958237366, 45.453424294000506 ], [ 9.181837389330369, 45.453225613359329 ], [ 9.181480468488346, 45.453098329592009 ], [ 9.181085132550738, 45.453054901620426 ], [ 9.180690078051466, 45.453099580290065 ], [ 9.180333973982673, 45.453227992338945 ], [ 9.180051677251672, 45.453427568407662 ], [ 9.179870821041227, 45.453678773222272 ], [ 9.179809109876619, 45.453957017605411 ], [ 9.179872586178785, 45.454235065245285 ], [ 9.180055038139885, 45.454485698704048 ], [ 9.180338607130942, 45.454684383725883 ], [ 9.180695535431511, 45.454811671014262 ], [ 9.181090883353232, 45.45485510030236 ], [ 9.181485949784671, 45.454810420241898 ], [ 9.18184206117599, 45.454682004626015 ], [ 9.18212435782293, 45.454482424176653 ], [ 9.182305206574837, 45.454231215840984 ], [ 9.182366905755323, 45.453952970141295 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.193804008175331, 45.458520841921491 ], [ 9.193740458554494, 45.458242802353645 ], [ 9.193557933868714, 45.457992191039686 ], [ 9.193274301945573, 45.45779353905418 ], [ 9.192917326641123, 45.457666291215276 ], [ 9.192521950125103, 45.457622902928065 ], [ 9.192126872902888, 45.457667621153732 ], [ 9.191770766190743, 45.45779606875864 ], [ 9.19148848715508, 45.45799567290323 ], [ 9.191307667247292, 45.458246895565381 ], [ 9.191246007439956, 45.458525145820545 ], [ 9.19130954512744, 45.458803186781786 ], [ 9.191492062493253, 45.459053801664759 ], [ 9.191775694505788, 45.459252458031578 ], [ 9.19213267727485, 45.459379709390639 ], [ 9.192528065779475, 45.459423098992247 ], [ 9.192923154935043, 45.459378379373192 ], [ 9.19327926896716, 45.459249928199277 ], [ 9.193561547913422, 45.459050319673331 ], [ 9.193742360356602, 45.458799093491045 ], [ 9.193804008175331, 45.458520841921491 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.171928100522456, 45.46253608673684 ], [ 9.171864653818087, 45.462258035044279 ], [ 9.17168221293441, 45.462007388829086 ], [ 9.171398637497273, 45.461808682582465 ], [ 9.17104168583492, 45.46168136643395 ], [ 9.170646297803769, 45.461637902474791 ], [ 9.170251175036471, 45.46168254507279 ], [ 9.169894993206736, 45.461810924496696 ], [ 9.169668659180196, 45.461970870673227 ], [ 9.169514315787337, 45.461953902472054 ], [ 9.169119189908701, 45.46199854115639 ], [ 9.168763003511959, 45.462126917049957 ], [ 9.168480621562123, 45.462326464332442 ], [ 9.168299685583033, 45.462577650547871 ], [ 9.168237907908157, 45.462855888339874 ], [ 9.168301337469476, 45.463133942042198 ], [ 9.168483767035509, 45.463384593623921 ], [ 9.168767340170568, 45.463583307055217 ], [ 9.169124298749326, 45.463710630258461 ], [ 9.169519700119706, 45.463754099450902 ], [ 9.169562517382596, 45.463749262307431 ], [ 9.169681306631537, 45.4637916321498 ], [ 9.17007670899079, 45.463835099412066 ], [ 9.17047184692929, 45.463790457412451 ], [ 9.170828039896564, 45.463662076218256 ], [ 9.171110420202055, 45.46346252318186 ], [ 9.171199901276447, 45.463338291665416 ], [ 9.171403041968999, 45.463265072470236 ], [ 9.17168541826387, 45.463065518004314 ], [ 9.171866340746256, 45.462814326467111 ], [ 9.171928100522456, 45.46253608673684 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.187860032539326, 45.459578908438914 ], [ 9.187796510915963, 45.459300865571102 ], [ 9.18761400910198, 45.459050244769237 ], [ 9.187330392686496, 45.458851578036715 ], [ 9.186973424007951, 45.458724311635201 ], [ 9.186578044587742, 45.458680902786682 ], [ 9.186182955215569, 45.458725600464867 ], [ 9.185826828296788, 45.458854029547297 ], [ 9.185544522975407, 45.459053619007399 ], [ 9.18536367327545, 45.459304832260486 ], [ 9.185301983085516, 45.459583079303236 ], [ 9.185330442471789, 45.459707674324719 ], [ 9.185118964165946, 45.459731596894066 ], [ 9.18476282849535, 45.459860022650304 ], [ 9.184480514402662, 45.460059609459258 ], [ 9.184299656770435, 45.460310820995808 ], [ 9.184237960263724, 45.46058906742465 ], [ 9.184301465869328, 45.460867112233579 ], [ 9.184483958911482, 45.461117738261784 ], [ 9.184767576740036, 45.461316411980526 ], [ 9.18512455685369, 45.461443685199612 ], [ 9.185519954491664, 45.461487099029412 ], [ 9.18591506367526, 45.461442403634813 ], [ 9.186271206669263, 45.461313974310187 ], [ 9.186553520675803, 45.461114383119558 ], [ 9.186734370845237, 45.460863168061685 ], [ 9.186796055363034, 45.460584920316961 ], [ 9.186767592302365, 45.460460325685631 ], [ 9.186979072624519, 45.46043640006387 ], [ 9.187335206865921, 45.460307967413065 ], [ 9.187617512100667, 45.460108373571465 ], [ 9.187798354337819, 45.459857156797312 ], [ 9.187860032539326, 45.459578908438914 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.179916056287814, 45.456945953617037 ], [ 9.179903498519955, 45.456890949463421 ], [ 9.179721039439993, 45.456640315879348 ], [ 9.179437462788499, 45.456441629404317 ], [ 9.179080527012072, 45.456314338232588 ], [ 9.178685170411979, 45.456270902010736 ], [ 9.178290091544492, 45.456315572391709 ], [ 9.177933961786751, 45.456443976924866 ], [ 9.177651640560365, 45.45664354698652 ], [ 9.177470763445729, 45.456894747890779 ], [ 9.17740903701443, 45.457172990843176 ], [ 9.17747250518204, 45.457451039672016 ], [ 9.17765495693733, 45.457701676823163 ], [ 9.17793853367178, 45.457900367679336 ], [ 9.178290939340199, 45.458026044176059 ], [ 9.178303495796138, 45.458081048497988 ], [ 9.178485953269242, 45.458331684285376 ], [ 9.178769536080654, 45.458530373047317 ], [ 9.179126485157189, 45.458657665121038 ], [ 9.179521858776672, 45.45870109977124 ], [ 9.179916953311867, 45.458656425124616 ], [ 9.180273092461583, 45.458528014444461 ], [ 9.180295686446961, 45.458512042552336 ], [ 9.180451964564282, 45.458726702011489 ], [ 9.180735556249864, 45.458925385865072 ], [ 9.181092512226179, 45.45905267177563 ], [ 9.181487890095536, 45.459096099611216 ], [ 9.181882985814616, 45.4590514181656 ], [ 9.182225642675016, 45.458927862154646 ], [ 9.182099693452106, 45.45910279743449 ], [ 9.18203798741976, 45.459381042748838 ], [ 9.182101480841341, 45.459659088858707 ], [ 9.182159537222391, 45.459738827718212 ], [ 9.182036471636753, 45.459652612748968 ], [ 9.181679509755927, 45.459525329810788 ], [ 9.181284128740584, 45.459481902646623 ], [ 9.180889029536592, 45.459526582022818 ], [ 9.180532885511528, 45.459654994608364 ], [ 9.18025055748357, 45.459854570991382 ], [ 9.180069681699059, 45.460105775867355 ], [ 9.180055589971449, 45.460169306985094 ], [ 9.179897150743175, 45.460151902683954 ], [ 9.179502045751095, 45.460196577266295 ], [ 9.179145894350881, 45.460324985523492 ], [ 9.178863558082526, 45.460524558467419 ], [ 9.178682673998912, 45.46077576113013 ], [ 9.17862094935407, 45.461054004545076 ], [ 9.178684427889079, 45.46133205249528 ], [ 9.178866897578205, 45.461582687512561 ], [ 9.179150498057572, 45.461781375188373 ], [ 9.179507468524505, 45.461908665966298 ], [ 9.179902865162795, 45.46195209923777 ], [ 9.180297982091663, 45.461907423264471 ], [ 9.180654140817584, 45.461779011439553 ], [ 9.180936477002406, 45.461579434113908 ], [ 9.181117353625147, 45.461328227929094 ], [ 9.181131444444553, 45.461264696694698 ], [ 9.181289887165123, 45.461282099275017 ], [ 9.181684998305283, 45.461237418507601 ], [ 9.182041149655275, 45.461109002354249 ], [ 9.182323477599052, 45.460909421589584 ], [ 9.182504345922426, 45.460658213191785 ], [ 9.182566051033602, 45.460379967689356 ], [ 9.182502554509211, 45.460101921877715 ], [ 9.182444497270966, 45.460022183198959 ], [ 9.182567564282827, 45.460108397720809 ], [ 9.18292453183644, 45.460235677861924 ], [ 9.183319919363386, 45.460279099332119 ], [ 9.183715021874864, 45.460234411548392 ], [ 9.184071162288838, 45.460105989060033 ], [ 9.184353478059926, 45.459906403261812 ], [ 9.184534334165615, 45.459655191624577 ], [ 9.184596028210116, 45.45937694499392 ], [ 9.184532522853297, 45.459098900275592 ], [ 9.184350036137175, 45.458848274226213 ], [ 9.184066432173152, 45.458649599362943 ], [ 9.183709472081043, 45.458522322743256 ], [ 9.183314096541938, 45.458478902589377 ], [ 9.182919005965701, 45.458523588981535 ], [ 9.18257635307207, 45.458647147075077 ], [ 9.182702299809366, 45.458472211259519 ], [ 9.182764001595942, 45.458193965548517 ], [ 9.18270050658624, 45.457915919737815 ], [ 9.182518031809364, 45.457665290691025 ], [ 9.182234440208049, 45.457466611218742 ], [ 9.181877491692076, 45.457339328829683 ], [ 9.181482125809566, 45.457295902310783 ], [ 9.181087042025247, 45.457340582365248 ], [ 9.180730912197539, 45.457468995595647 ], [ 9.180708318750952, 45.457484967575979 ], [ 9.180552043106745, 45.457270308416938 ], [ 9.180268460378679, 45.457071624036274 ], [ 9.179916056287814, 45.456945953617037 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.190081067511597, 45.461132883513422 ], [ 9.190017533205777, 45.460854841977103 ], [ 9.189835016527722, 45.460604224816187 ], [ 9.189551384521506, 45.460405563677654 ], [ 9.189194401051553, 45.460278304275505 ], [ 9.188799009086958, 45.460234903146635 ], [ 9.188403910645148, 45.460279608509111 ], [ 9.188047779019195, 45.460408044488368 ], [ 9.187765473813915, 45.4606076393828 ], [ 9.187584629042108, 45.460858856075845 ], [ 9.187522948110177, 45.461137104227348 ], [ 9.187586470480463, 45.461415147156458 ], [ 9.187768979836141, 45.461665767886196 ], [ 9.188052611930029, 45.461864433406504 ], [ 9.188409602864223, 45.461991696329591 ], [ 9.188805006818544, 45.462035098773761 ], [ 9.189200117195888, 45.461990392018514 ], [ 9.189556256144224, 45.461861952470393 ], [ 9.189838561261832, 45.461662353194228 ], [ 9.190019398569394, 45.461411132980224 ], [ 9.190081067511597, 45.461132883513422 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.19692499801041, 45.463724928589613 ], [ 9.196892308024518, 45.463713278502773 ], [ 9.196496886223517, 45.463669904096101 ], [ 9.196101769970948, 45.463714636087616 ], [ 9.195745634303178, 45.463843095996339 ], [ 9.195463339220884, 45.464042709778482 ], [ 9.195289034089301, 45.464284884873926 ], [ 9.195115335753435, 45.464407706659699 ], [ 9.194934511569986, 45.464658934787401 ], [ 9.194872862725468, 45.464937186668912 ], [ 9.194936425541755, 45.465215225258056 ], [ 9.195118979743089, 45.465465834002501 ], [ 9.195402656692286, 45.465664481065104 ], [ 9.195759688100205, 45.465791720864843 ], [ 9.196155124184212, 45.465835097783511 ], [ 9.196550255201648, 45.465790365599439 ], [ 9.196906401279895, 45.465661903208563 ], [ 9.197131973330167, 45.465502397903023 ], [ 9.197344264987095, 45.465478362861624 ], [ 9.197700407291229, 45.465349897994408 ], [ 9.19798270096827, 45.465150278731812 ], [ 9.198163513159326, 45.464899045820623 ], [ 9.198225145768285, 45.464620792188619 ], [ 9.1981615674695, 45.464342755426586 ], [ 9.197979003445248, 45.464092151511878 ], [ 9.197695325373937, 45.463893510794584 ], [ 9.197338301628616, 45.463766276989695 ], [ 9.196942879120183, 45.463722904128538 ], [ 9.19692499801041, 45.463724928589613 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.180656278622541, 45.470436988729787 ], [ 9.180592780038458, 45.470158942350757 ], [ 9.180410274920954, 45.469908310522271 ], [ 9.180126629183492, 45.469709626327067 ], [ 9.179769608035235, 45.469582337735901 ], [ 9.179374158133459, 45.46953890414256 ], [ 9.178978987166255, 45.469583576942597 ], [ 9.178622775524953, 45.469711983448732 ], [ 9.178340390645815, 45.46991155484433 ], [ 9.178159474340063, 45.470162756313279 ], [ 9.178097737016353, 45.470440999006023 ], [ 9.178161223657687, 45.470719046776374 ], [ 9.178343721445668, 45.470969682173646 ], [ 9.178627367266447, 45.471168370752032 ], [ 9.178984395879066, 45.471295662866517 ], [ 9.179379857775098, 45.471339097777538 ], [ 9.179775040685053, 45.471294423586194 ], [ 9.180131259655884, 45.471166013511251 ], [ 9.18041364445169, 45.470966437732443 ], [ 9.180594553293082, 45.470715232740183 ], [ 9.180656278622541, 45.470436988729787 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.185495355628698, 45.473855934415184 ], [ 9.18543182936561, 45.473577890936738 ], [ 9.185249291741195, 45.473327267041462 ], [ 9.184965611850851, 45.473128595035355 ], [ 9.184608558246529, 45.473001321695968 ], [ 9.18421308076209, 45.472957904924151 ], [ 9.183817889785198, 45.473002594469001 ], [ 9.183461667665679, 45.47313101600426 ], [ 9.183179282865545, 45.473330599242317 ], [ 9.182998377188598, 45.473581808207889 ], [ 9.182936660003529, 45.47386005331758 ], [ 9.183000174322421, 45.474138098188483 ], [ 9.18318270461782, 45.474388725653618 ], [ 9.183466384593762, 45.47458740204344 ], [ 9.183823445665594, 45.47471467890594 ], [ 9.184218935147127, 45.474758096994591 ], [ 9.184614138068206, 45.474713406057298 ], [ 9.184970367516735, 45.474584980952159 ], [ 9.185252752231278, 45.474385393330415 ], [ 9.185433650440718, 45.474134180841716 ], [ 9.185495355628698, 45.473855934415184 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.18775921282713, 45.467550909284284 ], [ 9.187695682619482, 45.467272866763309 ], [ 9.187513155414493, 45.467022246191668 ], [ 9.18722949928717, 45.466823579550038 ], [ 9.186872480463231, 45.466696313091035 ], [ 9.186477045372218, 45.466652904042149 ], [ 9.186081900252558, 45.466697601396604 ], [ 9.185725722965849, 45.4668260300637 ], [ 9.185601176603585, 45.466914071726073 ], [ 9.185299064097281, 45.466880904018197 ], [ 9.184903916441289, 45.466925597299841 ], [ 9.184547735033714, 45.467054022295116 ], [ 9.184265384351797, 45.467253608377682 ], [ 9.184084502859672, 45.46750481929358 ], [ 9.184022797558374, 45.467783065268442 ], [ 9.184086310296209, 45.468061109834586 ], [ 9.184268825699911, 45.468311735854918 ], [ 9.18455247893082, 45.468510409801318 ], [ 9.184909504022224, 45.468637683461147 ], [ 9.185108669428914, 45.468659549118101 ], [ 9.185135300168216, 45.468776120979555 ], [ 9.185317822533126, 45.469026745281333 ], [ 9.185601483035335, 45.469225416586404 ], [ 9.185958514996292, 45.46935268694066 ], [ 9.186353968579565, 45.469396097734766 ], [ 9.18674913232941, 45.469351399430764 ], [ 9.187105323168607, 45.469222967607891 ], [ 9.187387673615465, 45.46902337457486 ], [ 9.187568545253377, 45.46877215851098 ], [ 9.187630234166809, 45.468493910695152 ], [ 9.187566703518776, 45.468215868149208 ], [ 9.187484551198025, 45.46810306996543 ], [ 9.187516657500355, 45.468080373517239 ], [ 9.187697525562186, 45.467829157213188 ], [ 9.18775921282713, 45.467550909284284 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.195065250665877, 45.469247827402839 ], [ 9.195001682617724, 45.468969789090913 ], [ 9.194819117572914, 45.468719180331135 ], [ 9.194535427310191, 45.468520531947874 ], [ 9.194178381396185, 45.468393288406439 ], [ 9.19378292891173, 45.468349904691053 ], [ 9.193387777797536, 45.468394627315341 ], [ 9.193031606502005, 45.468523078715265 ], [ 9.192749278512901, 45.468722685679921 ], [ 9.192568430073599, 45.468973909911433 ], [ 9.192552378246022, 45.469046340548665 ], [ 9.192511949067766, 45.46904190473321 ], [ 9.192116792100485, 45.469086622964838 ], [ 9.191760613551887, 45.469215070397887 ], [ 9.191478277619634, 45.469414674209787 ], [ 9.191297421324544, 45.469665896411222 ], [ 9.191235749201679, 45.469944146122984 ], [ 9.191299299851948, 45.470222186511378 ], [ 9.191481854191004, 45.470472800848029 ], [ 9.191765543568652, 45.470671456748413 ], [ 9.192122598479408, 45.470798707766235 ], [ 9.192518066839927, 45.470842097185049 ], [ 9.192913235747726, 45.47079737755945 ], [ 9.193269421620686, 45.470668926555959 ], [ 9.193551757463505, 45.470469318360976 ], [ 9.193732606289513, 45.470218092637964 ], [ 9.193748656932501, 45.470145661851738 ], [ 9.193789086995702, 45.470150097227183 ], [ 9.194184250049792, 45.470105373208682 ], [ 9.194540428668947, 45.469976918238302 ], [ 9.194822756568026, 45.469777306890641 ], [ 9.195003597538037, 45.4695260791378 ], [ 9.195065250665877, 45.469247827402839 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.17664909203716, 45.462175033884016 ], [ 9.176585622544682, 45.461896984830332 ], [ 9.176403161934331, 45.46164634616909 ], [ 9.176119571762674, 45.461447651652023 ], [ 9.175762611799955, 45.46132035026055 ], [ 9.175367222714874, 45.461276902641437 ], [ 9.174972106243166, 45.461321561563132 ], [ 9.174615937442425, 45.461449955696672 ], [ 9.174333579555617, 45.461649517436399 ], [ 9.174152671751491, 45.46190071291111 ], [ 9.174090923605835, 45.462178953857965 ], [ 9.174154381160159, 45.462457004301733 ], [ 9.174336834442649, 45.462707646530262 ], [ 9.174620424695743, 45.462906345429225 ], [ 9.17497739211808, 45.463033650343526 ], [ 9.175372793191649, 45.463077099280753 ], [ 9.17576792160151, 45.463032438968959 ], [ 9.176124097730108, 45.462904041268132 ], [ 9.176377226372349, 45.462725133964007 ], [ 9.176217639204127, 45.462946735017546 ], [ 9.176155900093116, 45.463224977016026 ], [ 9.176219368983833, 45.463503026244545 ], [ 9.176401834794824, 45.463753665109856 ], [ 9.176685437542096, 45.463952358826781 ], [ 9.177042416201132, 45.464079657247417 ], [ 9.177437826153826, 45.464123099015076 ], [ 9.177832960215959, 45.464078431559649 ], [ 9.178189138216634, 45.463950027440461 ], [ 9.178471493930697, 45.463750456254068 ], [ 9.178652388425355, 45.463499254041189 ], [ 9.178714115546926, 45.463221010724958 ], [ 9.178650634717702, 45.462942962886984 ], [ 9.178468161579232, 45.462692327589366 ], [ 9.178184558914364, 45.462493638254543 ], [ 9.177827587716127, 45.46236634335655 ], [ 9.177432189752867, 45.462322902906607 ], [ 9.177037067629243, 45.46236756897148 ], [ 9.176680896956045, 45.462495969523005 ], [ 9.176427770299654, 45.462674877504305 ], [ 9.176587355879988, 45.462453276148985 ], [ 9.17664909203716, 45.462175033884016 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.191539035381425, 45.463499717770667 ], [ 9.191501579078402, 45.463335826232289 ], [ 9.191319047791488, 45.46308521157561 ], [ 9.191035398116487, 45.462886554237272 ], [ 9.190678395647259, 45.462759299559274 ], [ 9.190282985212457, 45.462715903616001 ], [ 9.189887870637257, 45.46276061411799 ], [ 9.189531726793788, 45.462889054687643 ], [ 9.189249414482747, 45.463088653174069 ], [ 9.189068568412589, 45.463339872109152 ], [ 9.189006892117032, 45.463618120933297 ], [ 9.189070424604825, 45.463896162899765 ], [ 9.18913214744598, 45.463980912980119 ], [ 9.189101399080032, 45.464002651940319 ], [ 9.188920549442539, 45.464253870606477 ], [ 9.188858871436485, 45.464532119308778 ], [ 9.188922404238138, 45.464810161312442 ], [ 9.189104930509853, 45.465060779731068 ], [ 9.189388584348706, 45.465259441780653 ], [ 9.189745599728152, 45.465386700413113 ], [ 9.190141028434883, 45.465430098166756 ], [ 9.190536161448525, 45.46538538678017 ], [ 9.190892318700969, 45.46525694311336 ], [ 9.190907602315482, 45.465246137427272 ], [ 9.190946604290025, 45.465273451968187 ], [ 9.191303623247586, 45.465400705724967 ], [ 9.191699053229993, 45.465444098082841 ], [ 9.192094185091968, 45.465399381308714 ], [ 9.192450338878162, 45.465270932789956 ], [ 9.192732650734397, 45.465071326469619 ], [ 9.192913486021922, 45.46482010182752 ], [ 9.192975144383515, 45.464541850982179 ], [ 9.192911591972559, 45.464263811251698 ], [ 9.192729051437352, 45.464013198904198 ], [ 9.192445392157307, 45.463814545115298 ], [ 9.192088380666405, 45.463687294879549 ], [ 9.191754566286876, 45.463650663979791 ], [ 9.191539035381425, 45.463499717770667 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.182239109689743, 45.462972971260747 ], [ 9.182175611821215, 45.462694925396065 ], [ 9.181993123884846, 45.462444295741449 ], [ 9.181709510111808, 45.462245615166957 ], [ 9.181352532582238, 45.462118331289091 ], [ 9.180957133684066, 45.462074903040424 ], [ 9.180562016113411, 45.462119581293422 ], [ 9.18020585503549, 45.462247992827038 ], [ 9.179923512937554, 45.462447568332394 ], [ 9.179742627443209, 45.46269877259094 ], [ 9.179680905944748, 45.462977016479883 ], [ 9.179720526486067, 45.463150541598559 ], [ 9.179446025457381, 45.463181577550301 ], [ 9.179089855155656, 45.463309985594307 ], [ 9.178807503822092, 45.46350955831798 ], [ 9.178626609984272, 45.463760760775081 ], [ 9.178564881851196, 45.46403900401917 ], [ 9.178598832530184, 45.464187707370556 ], [ 9.178473173004569, 45.464173903250042 ], [ 9.178078038788065, 45.464218572919577 ], [ 9.177721858844892, 45.464346976689249 ], [ 9.177439497508713, 45.464546546010183 ], [ 9.177258594286146, 45.464797746269241 ], [ 9.177196858304823, 45.465075988735187 ], [ 9.177260334415847, 45.465354037284058 ], [ 9.177442810831145, 45.465604674389041 ], [ 9.177460174659265, 45.465616838928746 ], [ 9.177436843711327, 45.465721991444482 ], [ 9.177500321736439, 45.466000039825566 ], [ 9.177682801307043, 45.46625067651398 ], [ 9.17796642109233, 45.466449366937589 ], [ 9.178323418399904, 45.466576661270864 ], [ 9.178718846785992, 45.466620098557094 ], [ 9.179113997261743, 45.466575426664967 ], [ 9.179470188049383, 45.466447018588056 ], [ 9.179752551672015, 45.466247444310476 ], [ 9.179903357729517, 45.466038026101423 ], [ 9.180202449858209, 45.46614466774556 ], [ 9.180597876645898, 45.466188098532747 ], [ 9.18099302260007, 45.466143420143972 ], [ 9.181349206385642, 45.466015006208764 ], [ 9.181631561211244, 45.465815427284781 ], [ 9.181691753416551, 45.465731835551352 ], [ 9.181693848464336, 45.465734712769425 ], [ 9.181977479716547, 45.465933393234025 ], [ 9.182334482752117, 45.466060675034008 ], [ 9.182729910566406, 45.466104098439637 ], [ 9.183125054226492, 45.466059412678376 ], [ 9.183193966453219, 45.466034566418976 ], [ 9.183207918166444, 45.466036098426372 ], [ 9.18360306096873, 45.46599141101234 ], [ 9.183959237846304, 45.465862988945851 ], [ 9.184009476274664, 45.4658274763026 ], [ 9.184010065957652, 45.465827409610867 ], [ 9.184366240875429, 45.465698986274667 ], [ 9.18464858345696, 45.465499399901056 ], [ 9.184829456055359, 45.465248188017384 ], [ 9.184891154660741, 45.464969941493429 ], [ 9.184827641487036, 45.464691897224562 ], [ 9.184645135341922, 45.464441271923306 ], [ 9.184361502238934, 45.464242598033479 ], [ 9.184004506150192, 45.464115322517245 ], [ 9.183609091280056, 45.46407190348863 ], [ 9.183213961887883, 45.464116590917719 ], [ 9.182857794295927, 45.464245010685254 ], [ 9.182807556545331, 45.464280522830798 ], [ 9.182806966877024, 45.464280589516321 ], [ 9.182738056614163, 45.464305435546812 ], [ 9.182724105340535, 45.464303903480904 ], [ 9.182328973619429, 45.464348587850445 ], [ 9.182233461428448, 45.464383024810978 ], [ 9.182117155159931, 45.464223294737167 ], [ 9.181833532012453, 45.464024614547178 ], [ 9.181476542964926, 45.463897331114445 ], [ 9.181116233936923, 45.463857758660758 ], [ 9.181358011730863, 45.46383041923653 ], [ 9.181714180134835, 45.463702004134824 ], [ 9.181996522148729, 45.463502424247409 ], [ 9.182177400181052, 45.463251216466688 ], [ 9.182239109689743, 45.462972971260747 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.186742114203915, 45.463186920828903 ], [ 9.186678593964867, 45.462908877513378 ], [ 9.186496085406114, 45.46265825509488 ], [ 9.186212454777248, 45.462459585734976 ], [ 9.185855465808098, 45.46233231595248 ], [ 9.18546006200611, 45.462288903300255 ], [ 9.185064946547323, 45.462333597124235 ], [ 9.184708794390302, 45.462462022679276 ], [ 9.184426467149294, 45.462661609284105 ], [ 9.184245600993886, 45.462912820633647 ], [ 9.184183901423602, 45.463191066910952 ], [ 9.184247409725337, 45.463469111618672 ], [ 9.184413745489193, 45.463697537929406 ], [ 9.184395888164445, 45.46377806930542 ], [ 9.184459398176108, 45.464056113863947 ], [ 9.184641902250945, 45.464306739482147 ], [ 9.18492553665901, 45.464505412671436 ], [ 9.185282537276077, 45.46463268529331 ], [ 9.185677957334159, 45.464676098516534 ], [ 9.186073088659633, 45.464631402565402 ], [ 9.186429251349606, 45.464502972788779 ], [ 9.186711580678063, 45.464303381294975 ], [ 9.186892440295548, 45.464052166112523 ], [ 9.18695412746289, 45.463773918434008 ], [ 9.186890605513575, 45.463495875267746 ], [ 9.186724260354238, 45.463267452570634 ], [ 9.186742114203915, 45.463186920828903 ] ] ] } } +] +} diff --git a/layers/mercati_buffer.json b/layers/mercati_buffer.json new file mode 100644 index 0000000..710e4b0 --- /dev/null +++ b/layers/mercati_buffer.json @@ -0,0 +1,92 @@ +{ +"type": "FeatureCollection", +"name": "mercati", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.171887192933202, 45.394621970042934 ], [ 9.171903729458341, 45.394716553161821 ], [ 9.172064214166761, 45.394702624954327 ], [ 9.172098369102889, 45.394761854882738 ], [ 9.172292106432794, 45.395055236198587 ], [ 9.1727767918462, 45.395247427934038 ], [ 9.172885676463446, 45.39529064263273 ], [ 9.173452136776435, 45.394582159710637 ], [ 9.174439681336418, 45.394496434844704 ], [ 9.174421179007552, 45.394390635051515 ], [ 9.174409011673177, 45.394321203016119 ], [ 9.174367317118703, 45.394185111754858 ], [ 9.174365619690946, 45.394170441787402 ], [ 9.174450107332497, 45.394167145876928 ], [ 9.174442216539505, 45.394066737450039 ], [ 9.17445359562878, 45.394063479924228 ], [ 9.174440124854781, 45.394040121208107 ], [ 9.174357580932268, 45.392989746939087 ], [ 9.174229584905683, 45.392994740108385 ], [ 9.174227910982504, 45.392980272658178 ], [ 9.173439282747626, 45.393025566872964 ], [ 9.171806432545495, 45.393089240896252 ], [ 9.171808785156795, 45.393119195668675 ], [ 9.171681301449897, 45.393126515228872 ], [ 9.171834293061739, 45.394449279433005 ], [ 9.171887192933202, 45.394621970042934 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.172080835039655, 45.39868201492024 ], [ 9.172123724741596, 45.39904199632813 ], [ 9.172134341229476, 45.399130751381207 ], [ 9.172191513761694, 45.399610511305724 ], [ 9.172210590286644, 45.399770145179929 ], [ 9.172336997234154, 45.400838571467496 ], [ 9.172346381876977, 45.400922170165515 ], [ 9.173620107879952, 45.400851201037973 ], [ 9.172356114498355, 45.400982711637759 ], [ 9.172406909216752, 45.401225012202083 ], [ 9.174934900637108, 45.400961975892059 ], [ 9.1748904184049, 45.400749832320216 ], [ 9.174884023184623, 45.40069288403587 ], [ 9.174757066365659, 45.399620217096718 ], [ 9.174737886173006, 45.399459772570495 ], [ 9.174680687874689, 45.39897997723002 ], [ 9.174670069974148, 45.398891243733914 ], [ 9.174627179568514, 45.398531392046152 ], [ 9.174596969369054, 45.398278054196879 ], [ 9.172050642964519, 45.398428733692455 ], [ 9.172080835039655, 45.39868201492024 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.17727335730323, 45.428478963791029 ], [ 9.177367801734182, 45.428470078423558 ], [ 9.177029219405792, 45.42668572324834 ], [ 9.176934620868622, 45.426694623107316 ], [ 9.176290316752016, 45.426755351721638 ], [ 9.176459907882361, 45.42764750103543 ], [ 9.176284820766961, 45.426755878276552 ], [ 9.175494575345903, 45.426832816600168 ], [ 9.175246988131445, 45.426863985389119 ], [ 9.174955345611004, 45.426949902824148 ], [ 9.174757267745976, 45.427038634074982 ], [ 9.174604465946523, 45.427133349433596 ], [ 9.174506954879115, 45.427207523593516 ], [ 9.174401360825403, 45.427304993368686 ], [ 9.174284309035789, 45.427457702171196 ], [ 9.174214266483498, 45.42758931537022 ], [ 9.17416867631972, 45.42773051424841 ], [ 9.174141937985071, 45.427890922519964 ], [ 9.174197811007803, 45.428234603593332 ], [ 9.17426110459316, 45.428715854134701 ], [ 9.174267583222509, 45.428765299538448 ], [ 9.175540507882866, 45.428682601035355 ], [ 9.174267622531229, 45.428765598998559 ], [ 9.174276122070706, 45.428830231945661 ], [ 9.172864777910121, 45.428827773980188 ], [ 9.172863558984771, 45.429173534077108 ], [ 9.172867664974602, 45.429809571143835 ], [ 9.172869358787104, 45.430075642765374 ], [ 9.174435236748076, 45.430070689990337 ], [ 9.174437310207988, 45.430091080801333 ], [ 9.174869126880433, 45.430069313824447 ], [ 9.175426056754503, 45.430067544998849 ], [ 9.175425888148199, 45.430041246217662 ], [ 9.176987502620138, 45.429962507038702 ], [ 9.176986564669631, 45.429953285903373 ], [ 9.176984609032502, 45.429901000145954 ], [ 9.176960404784824, 45.429717414392563 ], [ 9.176867803005278, 45.429013221211136 ], [ 9.175594907910089, 45.429096201033545 ], [ 9.176867798673706, 45.429013188277757 ], [ 9.176813409157127, 45.428599738617869 ], [ 9.176806927677873, 45.428550288424475 ], [ 9.176803372012369, 45.428523262481178 ], [ 9.17727335730323, 45.428478963791029 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.203195474329275, 45.427218183464973 ], [ 9.203102533930032, 45.427540108392876 ], [ 9.203075444031841, 45.427633521578024 ], [ 9.204327907871123, 45.427813601033385 ], [ 9.203068816919011, 45.427658113070187 ], [ 9.202983822526532, 45.427999340541433 ], [ 9.202963764630866, 45.42807459575959 ], [ 9.202884439892591, 45.428357090912023 ], [ 9.202815773827767, 45.42863073532321 ], [ 9.202744959287493, 45.428679599380871 ], [ 9.202549566879618, 45.428814313337256 ], [ 9.202423899822422, 45.428967753990314 ], [ 9.202918062000691, 45.42916840362075 ], [ 9.202503086509305, 45.429139008579433 ], [ 9.202487967916582, 45.429244822121234 ], [ 9.202472328427463, 45.429296984851625 ], [ 9.203675026071979, 45.429475754418 ], [ 9.204075972203654, 45.429638547539277 ], [ 9.204016494513445, 45.429692565138083 ], [ 9.204463686234119, 45.430014127465142 ], [ 9.204533886263063, 45.429965726920869 ], [ 9.204669767255815, 45.429871963115119 ], [ 9.204647689595953, 45.429856101133844 ], [ 9.204676732873262, 45.429820636910009 ], [ 9.204496447075037, 45.429747438626158 ], [ 9.204233926028508, 45.429558824882918 ], [ 9.204426414234231, 45.429587434115795 ], [ 9.204782378936557, 45.429783243761392 ], [ 9.20491849023851, 45.429660569025735 ], [ 9.204973895482224, 45.429668803498153 ], [ 9.205000230949835, 45.429580952511841 ], [ 9.205112115268856, 45.429462745481018 ], [ 9.205261723816976, 45.429229807723004 ], [ 9.2053975827833, 45.428688298022074 ], [ 9.205474241939971, 45.428415252001322 ], [ 9.205499411877359, 45.428320801185031 ], [ 9.2055839354797, 45.427981403362452 ], [ 9.205607577638851, 45.427899866444029 ], [ 9.205721379854314, 45.427505621613804 ], [ 9.205759717112729, 45.427295237294075 ], [ 9.205749173481212, 45.42707146064182 ], [ 9.205700148286324, 45.426839179177797 ], [ 9.205689902871381, 45.426800501536775 ], [ 9.205953231432416, 45.425856426720863 ], [ 9.20597228146381, 45.425779876920856 ], [ 9.203454141138602, 45.425469111251381 ], [ 9.203439597018047, 45.425527542239955 ], [ 9.203156306585369, 45.426543020424148 ], [ 9.203125534868997, 45.426727407608446 ], [ 9.203135863399188, 45.426976526568765 ], [ 9.203178261518886, 45.42713661176515 ], [ 9.203195474329275, 45.427218183464973 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.158676455531515, 45.43208303181332 ], [ 9.158736936049545, 45.432061044208773 ], [ 9.158057499780321, 45.431134550198713 ], [ 9.156163119062475, 45.431796213018792 ], [ 9.155559943930282, 45.432006768708085 ], [ 9.155660144108435, 45.432149066405628 ], [ 9.155660050309942, 45.432149099302407 ], [ 9.155559829931802, 45.432006808507104 ], [ 9.155077535098515, 45.432175206125905 ], [ 9.155178176135404, 45.432318095883701 ], [ 9.155178106150542, 45.432318120427652 ], [ 9.155077449969339, 45.43217523585205 ], [ 9.153426931826843, 45.432751613706657 ], [ 9.153782333100974, 45.43324975874134 ], [ 9.153708283354648, 45.433311113041881 ], [ 9.153499412349268, 45.43355225660936 ], [ 9.154354935686809, 45.433919585577435 ], [ 9.154159026396714, 45.434258202660111 ], [ 9.154261239169966, 45.434287516361515 ], [ 9.154439643870617, 45.434336433828754 ], [ 9.154693523972888, 45.434386824603692 ], [ 9.154722614568737, 45.43462571646257 ], [ 9.155015061997579, 45.434608063722337 ], [ 9.155463740040476, 45.434479560590312 ], [ 9.155418472839052, 45.43440121536733 ], [ 9.155458143659422, 45.434393244301368 ], [ 9.155682421485626, 45.434489534970893 ], [ 9.155786751635494, 45.434369079759222 ], [ 9.155844839288745, 45.434320949350813 ], [ 9.155965024122949, 45.434263363558486 ], [ 9.156017782706577, 45.43424467646836 ], [ 9.156433406396827, 45.434096289243719 ], [ 9.15631424798497, 45.433930848233615 ], [ 9.156322290979567, 45.433928027506333 ], [ 9.156443476828592, 45.434092654297586 ], [ 9.156868246710049, 45.433937656008546 ], [ 9.15699782454732, 45.433995522080856 ], [ 9.156968654480469, 45.434591171796328 ], [ 9.158442142855684, 45.434626931286786 ], [ 9.158475127891036, 45.434119322371309 ], [ 9.158698217021046, 45.434210585259237 ], [ 9.160437664894674, 45.433760350198817 ], [ 9.160460859019754, 45.433711047472087 ], [ 9.160705929530209, 45.433665420820418 ], [ 9.160865520818266, 45.433623475325902 ], [ 9.160918305038019, 45.433679443778132 ], [ 9.161863321070719, 45.433881947268695 ], [ 9.162407250428599, 45.433698933073359 ], [ 9.161598163599137, 45.432506916433155 ], [ 9.161929885246792, 45.43248932468493 ], [ 9.16226201224231, 45.432663442403424 ], [ 9.16279451190921, 45.432414481284034 ], [ 9.162635669056431, 45.43224606013905 ], [ 9.162399795099944, 45.43210180405346 ], [ 9.162186426980073, 45.431977652084157 ], [ 9.161843973774815, 45.431848722152999 ], [ 9.161486727618078, 45.431772919517144 ], [ 9.16111690848623, 45.431737223649037 ], [ 9.160719979531661, 45.431756186065712 ], [ 9.160667824270055, 45.431610805504278 ], [ 9.160531378067292, 45.431635071930998 ], [ 9.160265887342936, 45.431674012937457 ], [ 9.160303070798383, 45.431799687993795 ], [ 9.160167791046721, 45.431664883006853 ], [ 9.160132098383668, 45.431682639564528 ], [ 9.159984116050321, 45.431738622631066 ], [ 9.159598086199246, 45.431847810131011 ], [ 9.159059461671575, 45.431998946813955 ], [ 9.158703792396699, 45.432098043211205 ], [ 9.158676455531515, 45.43208303181332 ] ], [ [ 9.158123607950181, 45.432737405140763 ], [ 9.158221702105363, 45.432696157396272 ], [ 9.158218316381529, 45.432699915790238 ], [ 9.158124500224954, 45.432739062221508 ], [ 9.158123607950181, 45.432737405140763 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.239864154107334, 45.432304842752011 ], [ 9.239873238638246, 45.43229741200728 ], [ 9.23945117445977, 45.431959421394325 ], [ 9.239430174515403, 45.431972421240538 ], [ 9.239852238666066, 45.432310411930409 ], [ 9.239864154107334, 45.432304842752011 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.25270959223962, 45.426113536387341 ], [ 9.252795564628322, 45.426056240767494 ], [ 9.251038271361802, 45.424748754415361 ], [ 9.250865736274267, 45.424863736450391 ], [ 9.250726583624864, 45.424968792950096 ], [ 9.250575494985684, 45.425097834742068 ], [ 9.249986225819022, 45.425637559001665 ], [ 9.249487341674914, 45.426080883754764 ], [ 9.24956473713091, 45.426124069270898 ], [ 9.249474451771611, 45.426185058767601 ], [ 9.249410866048629, 45.426156557309859 ], [ 9.249268471863516, 45.426314072872401 ], [ 9.249208759400322, 45.426387115587929 ], [ 9.248711509594347, 45.426808979556803 ], [ 9.248673580113302, 45.426827909380364 ], [ 9.248377212570391, 45.427019491597136 ], [ 9.248237225754872, 45.427121253850792 ], [ 9.248329416618326, 45.427184133701402 ], [ 9.248318703431593, 45.427193284973171 ], [ 9.248250077612823, 45.427250152890096 ], [ 9.2481475529219, 45.427193829380613 ], [ 9.247794157525982, 45.427512777084637 ], [ 9.247423788297022, 45.427818778960308 ], [ 9.247181865682192, 45.428013556447823 ], [ 9.247051900337434, 45.428096507051393 ], [ 9.246809013728285, 45.42820605339616 ], [ 9.246901211437523, 45.428307405990907 ], [ 9.24688858038618, 45.428315122015746 ], [ 9.246843399172857, 45.428334740837897 ], [ 9.246742742914359, 45.428238054570301 ], [ 9.246680600724517, 45.428270129725128 ], [ 9.24666917478231, 45.428275118840581 ], [ 9.246618007067928, 45.428289184391389 ], [ 9.246561873398006, 45.428303254633818 ], [ 9.246499660682986, 45.428312706732925 ], [ 9.246444532109841, 45.428318154736004 ], [ 9.246407357629856, 45.428318970936893 ], [ 9.246348800877943, 45.428317423862012 ], [ 9.246336386303142, 45.428316421915397 ], [ 9.246166907533107, 45.42827921444443 ], [ 9.245909715110745, 45.428202790110142 ], [ 9.245771000225821, 45.428151337484039 ], [ 9.245684729385777, 45.428266652646592 ], [ 9.245566402572337, 45.428251783410936 ], [ 9.245279379056313, 45.428259672044447 ], [ 9.245108639134752, 45.428283736114217 ], [ 9.245020296214671, 45.42829737241442 ], [ 9.245204390264377, 45.428888730563976 ], [ 9.245084604539731, 45.429010555773445 ], [ 9.245028525676242, 45.429091368499506 ], [ 9.245059698783452, 45.429102092824209 ], [ 9.244976581047439, 45.429213189101155 ], [ 9.244960763530928, 45.429209587983387 ], [ 9.244931336806902, 45.429273662948916 ], [ 9.24481645754372, 45.429427210915598 ], [ 9.244468174580105, 45.429592716882723 ], [ 9.244421571590561, 45.429614898647237 ], [ 9.245137507854977, 45.430360601030223 ], [ 9.244420176651554, 45.429615563552609 ], [ 9.243826880838952, 45.429898759854943 ], [ 9.243419786957592, 45.430093151250773 ], [ 9.243368521634192, 45.430117658703736 ], [ 9.242574538986421, 45.430477323999241 ], [ 9.243186278402524, 45.431146825803744 ], [ 9.243183847360193, 45.431148366275139 ], [ 9.242551133658854, 45.430488183478623 ], [ 9.241973033813137, 45.430762851434672 ], [ 9.241695041791683, 45.430893431676068 ], [ 9.24214052103706, 45.43136359260879 ], [ 9.242137132980837, 45.431365410992036 ], [ 9.241685559846788, 45.430897928843542 ], [ 9.240999164659732, 45.431226624556231 ], [ 9.241718107856697, 45.431970901030425 ], [ 9.240985799192746, 45.43123311260225 ], [ 9.240665186250165, 45.431390871946704 ], [ 9.24060953396862, 45.431418201827846 ], [ 9.240357932086754, 45.431476837175332 ], [ 9.240099075881783, 45.431543009194328 ], [ 9.239940406100649, 45.43158305499783 ], [ 9.239742889962644, 45.431596914678465 ], [ 9.239445510846805, 45.431719930961457 ], [ 9.240093107857298, 45.432496001030344 ], [ 9.23906136526576, 45.431964508438561 ], [ 9.238865314367251, 45.432153168885698 ], [ 9.238731143731231, 45.432627453008067 ], [ 9.238933180019314, 45.433070029879794 ], [ 9.239243968126365, 45.433323428841319 ], [ 9.23953404499156, 45.433460658350782 ], [ 9.239701998378134, 45.433505625306147 ], [ 9.240037906659442, 45.432883704704594 ], [ 9.24013922535813, 45.432792654197947 ], [ 9.240036442094832, 45.43356043249311 ], [ 9.240251692599688, 45.433574717908193 ], [ 9.240626744743544, 45.433528306735745 ], [ 9.240987885987312, 45.433405208530701 ], [ 9.241115422252053, 45.433326257004857 ], [ 9.241263183627416, 45.433269016098187 ], [ 9.241245154567224, 45.43324594563807 ], [ 9.241273641302088, 45.433228310747822 ], [ 9.241306848951123, 45.433191981290065 ], [ 9.241345873758402, 45.433234059032053 ], [ 9.241887477865658, 45.432985055742279 ], [ 9.241613008722663, 45.432689116119597 ], [ 9.241621123465997, 45.432667448488459 ], [ 9.241920604270684, 45.432969300086427 ], [ 9.242067034162721, 45.432897281660949 ], [ 9.242128363302486, 45.432867163595397 ], [ 9.242196035125311, 45.432833865134675 ], [ 9.243223866296706, 45.433682248309459 ], [ 9.245169129336837, 45.432513945450296 ], [ 9.244331073970907, 45.4318222273291 ], [ 9.244765201526098, 45.431625568880619 ], [ 9.244073507855473, 45.430868601030213 ], [ 9.244791610406519, 45.431613277473943 ], [ 9.244855129312512, 45.431582911670233 ], [ 9.245261652177827, 45.431388790590717 ], [ 9.245854160784035, 45.431105966652758 ], [ 9.245898861764269, 45.431084689639782 ], [ 9.246679513133035, 45.430713712585479 ], [ 9.24676839631929, 45.430664836546057 ], [ 9.246973548130404, 45.430584827027907 ], [ 9.24716624691357, 45.430441381684638 ], [ 9.247203222014196, 45.430412302512828 ], [ 9.247255200025849, 45.430391772199812 ], [ 9.247404306282602, 45.430293854769381 ], [ 9.24731524851261, 45.430226620186303 ], [ 9.247397327300066, 45.430174387051515 ], [ 9.247408027289026, 45.430114064126322 ], [ 9.24743972529954, 45.430108702067216 ], [ 9.247426969060605, 45.430071316101113 ], [ 9.247583734702445, 45.430147670725276 ], [ 9.247674900902206, 45.430054875568366 ], [ 9.247677864619289, 45.430050159577924 ], [ 9.247678003178114, 45.430050370387427 ], [ 9.248019113083897, 45.429939217547648 ], [ 9.248407255732102, 45.429770674471534 ], [ 9.248758978588182, 45.429555810936826 ], [ 9.249080737658335, 45.429334119230958 ], [ 9.249667755437699, 45.42886342026636 ], [ 9.249582420733747, 45.428810657528935 ], [ 9.24961555251541, 45.428783282975687 ], [ 9.249703806830679, 45.428833200887901 ], [ 9.249847187727907, 45.428707519429075 ], [ 9.250166289256189, 45.428442386152057 ], [ 9.250273149519561, 45.428353832160042 ], [ 9.250179834043539, 45.42829800218631 ], [ 9.250192676640218, 45.428289700145726 ], [ 9.250285405619096, 45.428343520523065 ], [ 9.250375775641448, 45.428266323590094 ], [ 9.250640066585882, 45.42802627054855 ], [ 9.250686061762432, 45.427952524348179 ], [ 9.251213949282524, 45.427504653940638 ], [ 9.251460159447667, 45.427338330450574 ], [ 9.251410707084499, 45.427302034392895 ], [ 9.251455761863934, 45.427246918864938 ], [ 9.251506903219202, 45.427190344371319 ], [ 9.251590733578688, 45.427235470497038 ], [ 9.252086130140235, 45.426779166143724 ], [ 9.252009562445229, 45.426737949725336 ], [ 9.25201118534908, 45.426736463242847 ], [ 9.252087876587241, 45.426777553732464 ], [ 9.252770271758754, 45.426146047725801 ], [ 9.25270959223962, 45.426113536387341 ] ], [ [ 9.243113588624764, 45.431962293726947 ], [ 9.243110266125472, 45.431958787310393 ], [ 9.243113298958999, 45.4319568655349 ], [ 9.243116706659848, 45.431960421083787 ], [ 9.243113588624764, 45.431962293726947 ] ], [ [ 9.249587807852789, 45.427474901030109 ], [ 9.249587807852798, 45.427474901030124 ], [ 9.249587807852793, 45.427474901030124 ], [ 9.249587807852789, 45.427474901030109 ] ], [ [ 9.250281076574522, 45.426945285158091 ], [ 9.250282274162565, 45.426944240860841 ], [ 9.250468699892263, 45.427045459980128 ], [ 9.250532038549032, 45.427091949313805 ], [ 9.250281076574522, 45.426945285158091 ] ], [ [ 9.240121075068283, 45.432729719494375 ], [ 9.240156407857292, 45.432664301030336 ], [ 9.240145554245041, 45.432745377517236 ], [ 9.240140629675663, 45.432742227534156 ], [ 9.240139361298324, 45.432743367370612 ], [ 9.240131930028225, 45.432736662834621 ], [ 9.240121075068283, 45.432729719494375 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.240053236255001, 45.432900593944673 ], [ 9.239897122683724, 45.433342488959489 ], [ 9.23993652325478, 45.4333493890637 ], [ 9.240090816739567, 45.432912645165551 ], [ 9.240053236255001, 45.432900593944673 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.173027285237229, 45.432267025675692 ], [ 9.172895348156432, 45.432337214653728 ], [ 9.172582970878361, 45.432578931580977 ], [ 9.172468752527461, 45.432820443466937 ], [ 9.173571933408383, 45.433079066851199 ], [ 9.173543137066472, 45.433819969267262 ], [ 9.173651922311944, 45.433822065127025 ], [ 9.173820696113102, 45.433825356810189 ], [ 9.173855469918076, 45.43382604313593 ], [ 9.174442027111034, 45.433844487623993 ], [ 9.174513730719237, 45.43384503728425 ], [ 9.17459323083307, 45.433846966077169 ], [ 9.1775700668149, 45.433919969796449 ], [ 9.177641925508187, 45.433922998003091 ], [ 9.177659582093588, 45.433923733896677 ], [ 9.177735107882556, 45.433025201034816 ], [ 9.177679290490859, 45.433924447651044 ], [ 9.177701848237017, 45.433925140212381 ], [ 9.177772791563779, 45.433926592620253 ], [ 9.178243410355178, 45.433944665775861 ], [ 9.178243841054455, 45.433962613692067 ], [ 9.1786009984635, 45.433958364601466 ], [ 9.179447952212259, 45.433986878843555 ], [ 9.179450575321116, 45.433948252721883 ], [ 9.179466722326309, 45.43394806047489 ], [ 9.179464790188671, 45.433987367370449 ], [ 9.180564907647614, 45.434014167765163 ], [ 9.180638853614312, 45.434015952028865 ], [ 9.180751985101688, 45.434018814864075 ], [ 9.182903815447672, 45.434074205284197 ], [ 9.182936074491952, 45.433452755368016 ], [ 9.183001132590656, 45.433409538532231 ], [ 9.18314235163384, 45.434064613749776 ], [ 9.183250265108327, 45.434053081722986 ], [ 9.183387292798304, 45.434037519713847 ], [ 9.183211417189728, 45.433269849837146 ], [ 9.184118176002285, 45.432667492114845 ], [ 9.183851049432651, 45.43246815611181 ], [ 9.183457683899174, 45.432348459117911 ], [ 9.183124631980721, 45.432891037937182 ], [ 9.18299467693058, 45.432323782720204 ], [ 9.182997198874643, 45.432275196625717 ], [ 9.182983465289139, 45.432274843236627 ], [ 9.182980129395093, 45.432260281843405 ], [ 9.182876212572749, 45.432272083380248 ], [ 9.180845033024125, 45.43221979744429 ], [ 9.180729627264899, 45.432216876871436 ], [ 9.180685195531819, 45.433087259583651 ], [ 9.180685126305743, 45.433087259615874 ], [ 9.180727493076997, 45.432216824120395 ], [ 9.180653100497565, 45.432215029123206 ], [ 9.179561645222268, 45.432188439730069 ], [ 9.178724850724423, 45.432160267445539 ], [ 9.177879562052231, 45.432127806993627 ], [ 9.177797783239976, 45.432126132648051 ], [ 9.177794259743564, 45.432125985835427 ], [ 9.177690959377975, 45.432121632403437 ], [ 9.174682033520961, 45.432047841968739 ], [ 9.17458673508257, 45.432045529804498 ], [ 9.174542707883836, 45.432945101035038 ], [ 9.174556630880989, 45.432045049250121 ], [ 9.174512997531419, 45.432044714641606 ], [ 9.173958952075155, 45.432027292366158 ], [ 9.173901907884094, 45.432926501035084 ], [ 9.173937730249863, 45.43202674928758 ], [ 9.173892130973966, 45.432025849300672 ], [ 9.173722508844079, 45.432022541013744 ], [ 9.173613077633208, 45.432020432651662 ], [ 9.173588435272453, 45.432654481175042 ], [ 9.173096427121406, 45.432227527779176 ], [ 9.173027285237229, 45.432267025675692 ] ], [ [ 9.178631176757825, 45.433424953203094 ], [ 9.178631955712005, 45.433414897039683 ], [ 9.178635347839339, 45.433414895521587 ], [ 9.178634667502564, 45.433424911667032 ], [ 9.178631176757825, 45.433424953203094 ] ], [ [ 9.179486803965652, 45.433414768977286 ], [ 9.179486821466391, 45.433414511268339 ], [ 9.179492948913619, 45.433414508480141 ], [ 9.179492939700024, 45.433414695922671 ], [ 9.179486803965652, 45.433414768977286 ] ], [ [ 9.178657262756349, 45.433088185569602 ], [ 9.178659507882186, 45.433059201034737 ], [ 9.1786575391684, 45.433088185445847 ], [ 9.178657262756349, 45.433088185569602 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.136941323896968, 45.440512727037095 ], [ 9.136933108137891, 45.440511253519929 ], [ 9.136683904732756, 45.440925705433173 ], [ 9.136794839790795, 45.440958762327703 ], [ 9.136713824215164, 45.441089311394727 ], [ 9.1377953106162, 45.441413397292621 ], [ 9.137738072509093, 45.441509258560572 ], [ 9.137670403169215, 45.441566534046821 ], [ 9.137689703242598, 45.441577834183484 ], [ 9.137704711012939, 45.441565131581704 ], [ 9.137541851663277, 45.441837882726112 ], [ 9.137985631542939, 45.44196919611008 ], [ 9.138213070439182, 45.441993526896098 ], [ 9.139182462178089, 45.442043664189931 ], [ 9.139296431665773, 45.441863210725799 ], [ 9.140501228605014, 45.442224210664477 ], [ 9.14056331880686, 45.442122889810022 ], [ 9.140733985518363, 45.44217334812862 ], [ 9.141230504654928, 45.441341101156929 ], [ 9.141460075890764, 45.441418144925763 ], [ 9.142113171007859, 45.440453716986362 ], [ 9.138126556071427, 45.439220734318575 ], [ 9.137973553753179, 45.43935516055452 ], [ 9.137501590459266, 45.439214523673982 ], [ 9.137165751511198, 45.439191159697224 ], [ 9.136992826068624, 45.440422996012082 ], [ 9.136985944747096, 45.440434440413974 ], [ 9.136991007671341, 45.440435949100156 ], [ 9.13698823856263, 45.440455674431128 ], [ 9.136975619041591, 45.440452134659012 ], [ 9.136941323896968, 45.440512727037095 ] ], [ [ 9.140071207964677, 45.440959770289005 ], [ 9.140075082821289, 45.440953333078625 ], [ 9.140075084776887, 45.440953333734946 ], [ 9.140071208193179, 45.440959770355775 ], [ 9.140071207964677, 45.440959770289005 ] ], [ [ 9.139916352364379, 45.440903690186488 ], [ 9.139916351496716, 45.44090368854377 ], [ 9.139918167918214, 45.440900669967213 ], [ 9.139918169968743, 45.440900670655417 ], [ 9.139916352364379, 45.440903690186488 ] ], [ [ 9.137982268147834, 45.440236112829439 ], [ 9.137932505724885, 45.440316967358086 ], [ 9.137932461740949, 45.440316953764615 ], [ 9.137980933693527, 45.44023536008519 ], [ 9.137982268147834, 45.440236112829439 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.141173971989126, 45.450656038042226 ], [ 9.141034788045742, 45.450628435382427 ], [ 9.140770264367021, 45.45103816909149 ], [ 9.14139217152724, 45.451237071934543 ], [ 9.142383276352806, 45.451554022960586 ], [ 9.142485841038056, 45.451584447840659 ], [ 9.143479160224654, 45.449925551968107 ], [ 9.143409122362229, 45.449904776018933 ], [ 9.142450214141114, 45.449598122844094 ], [ 9.141650155024234, 45.449342242532438 ], [ 9.141106727145912, 45.449295044753164 ], [ 9.140787982490858, 45.449362203028485 ], [ 9.141334199514155, 45.45064653768631 ], [ 9.141173971989126, 45.450656038042226 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.179400131654035, 45.448247322486907 ], [ 9.179482406654303, 45.448254524013876 ], [ 9.18013026965021, 45.448311229326471 ], [ 9.181129751116208, 45.448407665251466 ], [ 9.181683524686187, 45.448461072341765 ], [ 9.181752878491322, 45.448467735272672 ], [ 9.181925807882795, 45.44757590103319 ], [ 9.181772190257387, 45.448469485235172 ], [ 9.181857535915801, 45.448476754425947 ], [ 9.182728493276361, 45.44856051163201 ], [ 9.182806383662468, 45.448568559685803 ], [ 9.182992107882374, 45.447678001033111 ], [ 9.182814469005491, 45.448569376544818 ], [ 9.185020559367354, 45.448787175571532 ], [ 9.185069116615599, 45.448791971348633 ], [ 9.185108037437006, 45.448795811404054 ], [ 9.185154317781249, 45.448801194445892 ], [ 9.185270436709907, 45.448811257181376 ], [ 9.185426707881422, 45.447917901032909 ], [ 9.185297602265976, 45.448813404303458 ], [ 9.185358848858991, 45.448817779060214 ], [ 9.185398798615232, 45.448820898778948 ], [ 9.185553098661419, 45.448832983115551 ], [ 9.185559582577239, 45.448791965228907 ], [ 9.185561754690545, 45.448793004745191 ], [ 9.185555515251256, 45.448833170737423 ], [ 9.185971321749884, 45.44886517122805 ], [ 9.186058860297539, 45.448301615540935 ], [ 9.186163933190107, 45.448192837405216 ], [ 9.18632425009771, 45.448857817024496 ], [ 9.186572557978113, 45.44882815789353 ], [ 9.186842193364823, 45.448750197616263 ], [ 9.186383983475384, 45.447965025694302 ], [ 9.18701509078373, 45.447311645957576 ], [ 9.186897175273899, 45.447255215620686 ], [ 9.186788981723968, 45.447207526904975 ], [ 9.186277469099014, 45.447782503095077 ], [ 9.186168498580644, 45.447595770329841 ], [ 9.186249289662298, 45.447075630534876 ], [ 9.185834704547071, 45.447043724025285 ], [ 9.185681415088482, 45.447031718827212 ], [ 9.185629143785793, 45.447027636514441 ], [ 9.185569418660537, 45.447023369732392 ], [ 9.185519185088181, 45.447019016158066 ], [ 9.185509139594508, 45.44701784742913 ], [ 9.185300607881473, 45.447905901032946 ], [ 9.185382504620943, 45.447459561193334 ], [ 9.185388268764296, 45.447460107561852 ], [ 9.185477028260067, 45.447014413989109 ], [ 9.185424411413237, 45.447009222193472 ], [ 9.185375894344739, 45.447004430383721 ], [ 9.183173785891487, 45.446787024471448 ], [ 9.183087328396198, 45.446778091182345 ], [ 9.182184280863698, 45.446691247917123 ], [ 9.182089086768073, 45.446683139799681 ], [ 9.18203035931203, 45.4466774978575 ], [ 9.181477026715996, 45.446624133283684 ], [ 9.180469674805217, 45.446526937912182 ], [ 9.180296007883431, 45.447418701033328 ], [ 9.18045379406084, 45.446525476828171 ], [ 9.179798004256817, 45.446468077709504 ], [ 9.179715329306228, 45.446460841253 ], [ 9.179681053196331, 45.446457882099757 ], [ 9.17936995770294, 45.448244719622465 ], [ 9.179400131654035, 45.448247322486907 ] ], [ [ 9.185598514999764, 45.4485456736587 ], [ 9.185694507881347, 45.447938401032715 ], [ 9.185600526448495, 45.44854341274926 ], [ 9.185598514999764, 45.4485456736587 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.176792747352245, 45.446669124001808 ], [ 9.176787988540879, 45.446513506667692 ], [ 9.176721989589746, 45.446514506650367 ], [ 9.175721743023077, 45.446530014990259 ], [ 9.175189718782587, 45.446538209191885 ], [ 9.175090600518187, 45.446539704938132 ], [ 9.175095433433048, 45.446698391514282 ], [ 9.17508149136574, 45.446698631307754 ], [ 9.175073675750184, 45.446540039253435 ], [ 9.174983577180384, 45.446542239216676 ], [ 9.172977093742414, 45.446591341215594 ], [ 9.172871951002664, 45.44659396202519 ], [ 9.172918459060904, 45.447518369321877 ], [ 9.172952796664969, 45.448535149579044 ], [ 9.173054398279342, 45.448533449549899 ], [ 9.175077253167395, 45.448499446908812 ], [ 9.17515896446597, 45.44849804168431 ], [ 9.175259888182447, 45.448496347996695 ], [ 9.176819366005081, 45.448469433019277 ], [ 9.176882039604825, 45.44846831416374 ], [ 9.176817177239567, 45.446668687750346 ], [ 9.176792747352245, 45.446669124001808 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.20167902981961, 45.447841956409583 ], [ 9.201678354783613, 45.447849285502713 ], [ 9.201298992906514, 45.447826209408781 ], [ 9.201289036540887, 45.447907304543058 ], [ 9.201236715008907, 45.448584424279254 ], [ 9.202237666037323, 45.44862273977936 ], [ 9.202237142819973, 45.448630304437152 ], [ 9.201234979606483, 45.448619436415314 ], [ 9.201227574281141, 45.44895760482229 ], [ 9.201375344943418, 45.449117754820982 ], [ 9.201282693607626, 45.450048026167899 ], [ 9.201275702418782, 45.450158074082573 ], [ 9.201264354171828, 45.450291334154038 ], [ 9.201214701048835, 45.450811909653353 ], [ 9.201189986958148, 45.450854281303847 ], [ 9.201166006136816, 45.450908480032453 ], [ 9.201204681379661, 45.450916957169738 ], [ 9.201200746022192, 45.450958215864382 ], [ 9.201445729949207, 45.450969791696856 ], [ 9.202996484920106, 45.451309681288215 ], [ 9.202985825832624, 45.451330511475852 ], [ 9.203577347354495, 45.451501418845851 ], [ 9.203632836215101, 45.451406277624024 ], [ 9.203638449795697, 45.45139675040452 ], [ 9.203738710360017, 45.451225219631432 ], [ 9.203816557350111, 45.450408671259368 ], [ 9.202540607874834, 45.450348401031462 ], [ 9.203817138090079, 45.450402234564542 ], [ 9.203829334868145, 45.450258934435155 ], [ 9.202552807874808, 45.450205101031443 ], [ 9.203830348709163, 45.450245288222632 ], [ 9.203836324102706, 45.450151164626384 ], [ 9.20393069685219, 45.449203178950761 ], [ 9.203987776787194, 45.449152119583694 ], [ 9.204088394751988, 45.448966356683442 ], [ 9.203957762755834, 45.448931301526116 ], [ 9.203963763313558, 45.448871032218129 ], [ 9.203681240084368, 45.448857095900387 ], [ 9.202911117236905, 45.448650426735696 ], [ 9.202911227452205, 45.448648518134057 ], [ 9.203132195328916, 45.448656974084543 ], [ 9.203151522947797, 45.448704227978546 ], [ 9.203790838164949, 45.448711151347005 ], [ 9.203791456151526, 45.448682871337809 ], [ 9.2041700833352, 45.448698542368533 ], [ 9.204226141197703, 45.448027478588948 ], [ 9.204230060530087, 45.447970788254047 ], [ 9.204234394360558, 45.447923711319788 ], [ 9.204297149872483, 45.447238045266594 ], [ 9.204299877538919, 45.447207233087738 ], [ 9.204305274124888, 45.447148641257236 ], [ 9.20390835200045, 45.447130527097336 ], [ 9.203909179660865, 45.447118400294812 ], [ 9.203001357126114, 45.447087697839152 ], [ 9.203005240735909, 45.447020441553413 ], [ 9.202947233219739, 45.447018781939917 ], [ 9.202655709855689, 45.447005483354076 ], [ 9.202649487229156, 45.447073067638421 ], [ 9.201753144200646, 45.447032146545567 ], [ 9.20175192016244, 45.447045430167499 ], [ 9.201354637988473, 45.447031987482539 ], [ 9.201352937427684, 45.447056887464683 ], [ 9.201350978226808, 45.447086153608872 ], [ 9.201304079877477, 45.447789100324883 ], [ 9.201300357447876, 45.447815800392476 ], [ 9.20167902981961, 45.447841956409583 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.128484484329455, 45.444232001464663 ], [ 9.128322643344216, 45.444507536491969 ], [ 9.128269942691883, 45.444773800957066 ], [ 9.129082195065703, 45.444853458838324 ], [ 9.128937046720601, 45.445050108148088 ], [ 9.128886506198354, 45.445017535695285 ], [ 9.128347299881991, 45.445259367802812 ], [ 9.128412682797356, 45.44533160363406 ], [ 9.129393938937447, 45.446801497734022 ], [ 9.129401265566933, 45.44681248801453 ], [ 9.129440046126794, 45.446870954445018 ], [ 9.129477650766839, 45.446927809652983 ], [ 9.131796149455855, 45.446167980648042 ], [ 9.131758248538368, 45.446110681029879 ], [ 9.130599007903383, 45.446490601037013 ], [ 9.131757658936683, 45.446109790922677 ], [ 9.131716662195302, 45.446047987749843 ], [ 9.131709008863819, 45.44603651409269 ], [ 9.130720550100197, 45.444555918758418 ], [ 9.130696395012148, 45.444519260995349 ], [ 9.12990334785623, 45.444778195621488 ], [ 9.129861188585657, 45.444752332924551 ], [ 9.130614798860456, 45.444414323033513 ], [ 9.130319716281116, 45.444088325325701 ], [ 9.129789941455048, 45.443894570381559 ], [ 9.129376361906342, 45.444454912107219 ], [ 9.128712624103946, 45.444047728386543 ], [ 9.128484484329455, 45.444232001464663 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.266579510076275, 45.445204459382055 ], [ 9.266432953767968, 45.443860983830433 ], [ 9.266396612573873, 45.443482347820598 ], [ 9.266391676238158, 45.443482582594704 ], [ 9.266383708789542, 45.443409542440399 ], [ 9.266339351584593, 45.443411940125713 ], [ 9.266059798333087, 45.44342703759186 ], [ 9.266067535066231, 45.443498028020734 ], [ 9.266066841566381, 45.443498063444906 ], [ 9.26605904552317, 45.443427078404312 ], [ 9.265774588471384, 45.443442559008361 ], [ 9.265492687227637, 45.44348763329895 ], [ 9.265457560019133, 45.443488923897519 ], [ 9.265457877008103, 45.443493199187657 ], [ 9.265431769033388, 45.443497373646068 ], [ 9.265431013343171, 45.443490094255374 ], [ 9.265131848528396, 45.443505483549529 ], [ 9.26389578887099, 45.443603564185466 ], [ 9.264039007849219, 45.444498001027561 ], [ 9.263860570163502, 45.443606707679521 ], [ 9.263359829982269, 45.44365638187989 ], [ 9.26330850295146, 45.443661458799447 ], [ 9.263272572043681, 45.44366337916022 ], [ 9.263252837685785, 45.443663004237685 ], [ 9.26320703822892, 45.443660600058806 ], [ 9.262977855268849, 45.443648533323461 ], [ 9.26284558651213, 45.443635888249126 ], [ 9.262516767977047, 45.443604515065502 ], [ 9.262455685691915, 45.443598644462462 ], [ 9.262415391651212, 45.443593592486124 ], [ 9.26227502175842, 45.443575933629347 ], [ 9.262445685699898, 45.443438277158023 ], [ 9.262803876254319, 45.443116987737859 ], [ 9.262916893182572, 45.44272875498892 ], [ 9.262928678904116, 45.442516525910946 ], [ 9.262921084557192, 45.442355879634114 ], [ 9.262943611732108, 45.442060435973971 ], [ 9.262952985875383, 45.442016600907714 ], [ 9.26168860784982, 45.441882601027963 ], [ 9.262957587367925, 45.441992958598597 ], [ 9.262997073963085, 45.441767934298383 ], [ 9.262996682731298, 45.441289487331275 ], [ 9.262911304353793, 45.440699903195984 ], [ 9.262910747962085, 45.440668201895946 ], [ 9.262920633891927, 45.440630743235594 ], [ 9.263084343753548, 45.440274981585347 ], [ 9.263225623510438, 45.440033690509686 ], [ 9.263375273549137, 45.439710359895692 ], [ 9.260943954074239, 45.439152629182274 ], [ 9.260824406338434, 45.439410897307724 ], [ 9.260682285654619, 45.439653606571547 ], [ 9.260436792194769, 45.440187043769654 ], [ 9.260372059315408, 45.440432281175667 ], [ 9.260352283071919, 45.440606802121472 ], [ 9.260355708625429, 45.440802482074893 ], [ 9.260439530559834, 45.441381499133804 ], [ 9.2604396294346, 45.441509487896084 ], [ 9.260146989299644, 45.441493571796272 ], [ 9.260119603345563, 45.441743098224954 ], [ 9.260198687768982, 45.442061640776423 ], [ 9.260367362577284, 45.442261079005156 ], [ 9.260361531550465, 45.442337507095317 ], [ 9.260363535539518, 45.442379941604997 ], [ 9.260342185887016, 45.442397161575322 ], [ 9.260316857461126, 45.442403016119485 ], [ 9.259854156270347, 45.442543111617262 ], [ 9.259305755411219, 45.442949829783998 ], [ 9.259239717916737, 45.443390202200455 ], [ 9.259261168468608, 45.444013974308582 ], [ 9.259256907114509, 45.444041785232137 ], [ 9.259240589180573, 45.444115715923196 ], [ 9.259804461756081, 45.444177385830919 ], [ 9.259043088634842, 45.444858778743928 ], [ 9.259294188634247, 45.444997806645056 ], [ 9.259699771362826, 45.445111877003541 ], [ 9.260325950258341, 45.445146877046888 ], [ 9.260429678756317, 45.445161664666308 ], [ 9.26048129916445, 45.445166856368346 ], [ 9.260563927002925, 45.44518036515651 ], [ 9.260853207850479, 45.444303601027812 ], [ 9.260599195492581, 45.445185763064842 ], [ 9.260837499058828, 45.445219763581584 ], [ 9.261068645125112, 45.445252655645319 ], [ 9.261322007850289, 45.44437040102779 ], [ 9.261097036758127, 45.445256461154308 ], [ 9.261965849939896, 45.445365762819009 ], [ 9.262032785280837, 45.44537415517059 ], [ 9.262257007849938, 45.444488001027693 ], [ 9.262084025842466, 45.445379827351744 ], [ 9.262171427195112, 45.445388227479761 ], [ 9.262501593255053, 45.445419729617086 ], [ 9.262710142815093, 45.445439667711369 ], [ 9.263016433760757, 45.445455794371675 ], [ 9.263123177944459, 45.445461398041651 ], [ 9.263335040209897, 45.445465423017716 ], [ 9.263583510136149, 45.445452143350415 ], [ 9.263715939277152, 45.445439044682701 ], [ 9.264199872191046, 45.445391037849227 ], [ 9.265368371362854, 45.445298318189522 ], [ 9.265604140264747, 45.445286189962651 ], [ 9.265634932734406, 45.44528505860967 ], [ 9.265954639038185, 45.44530872866126 ], [ 9.266254676941889, 45.445293403225165 ], [ 9.266569005922792, 45.445278454021327 ], [ 9.266561994445361, 45.445205406175575 ], [ 9.266579510076275, 45.445204459382055 ] ], [ [ 9.265454806124566, 45.443719283740897 ], [ 9.265480557278771, 45.443799090543685 ], [ 9.2655242078486, 45.444387801027474 ], [ 9.265454806124566, 45.443719283740897 ] ], [ [ 9.261625693698866, 45.441967422316019 ], [ 9.261627776370966, 45.441964614447905 ], [ 9.261670107849888, 45.441969101027965 ], [ 9.261625693698866, 45.441967422316019 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.214610586890391, 45.441737720847037 ], [ 9.214708625065848, 45.441547269791457 ], [ 9.212304403657463, 45.440933919580246 ], [ 9.21225624298598, 45.441027470053122 ], [ 9.211973069716727, 45.441427738646723 ], [ 9.213117607869432, 45.441829001031451 ], [ 9.211923100472868, 45.441507923536165 ], [ 9.211870699634423, 45.441604529677846 ], [ 9.211622858101565, 45.442098147844511 ], [ 9.211548986158325, 45.442245485352451 ], [ 9.211528087164853, 45.442287029791679 ], [ 9.211493161868971, 45.442352735666383 ], [ 9.211149950022991, 45.443030247788123 ], [ 9.211119263187991, 45.44309072222984 ], [ 9.212323407869956, 45.443393501031373 ], [ 9.211117789967458, 45.443093641344518 ], [ 9.211091612265522, 45.443145795465931 ], [ 9.210716428989631, 45.443891891106738 ], [ 9.210701109840754, 45.443924071337655 ], [ 9.210684954263003, 45.443957996531573 ], [ 9.210582133097226, 45.444158034207966 ], [ 9.210458653063244, 45.444396812266902 ], [ 9.211614154553819, 45.4446929005342 ], [ 9.21160978240446, 45.444698760783275 ], [ 9.210399058310452, 45.444556127345244 ], [ 9.210352871608332, 45.444750386402056 ], [ 9.210377232420099, 45.445038152561807 ], [ 9.210476354821909, 45.445258325695626 ], [ 9.211335254833628, 45.445066723471093 ], [ 9.211189568950008, 45.445261991149088 ], [ 9.211281079663546, 45.445295821296739 ], [ 9.211861195394537, 45.44551045390579 ], [ 9.212331762236573, 45.44488023645048 ], [ 9.212356770826398, 45.444883182356676 ], [ 9.212861775709818, 45.445012577116024 ], [ 9.212895849496459, 45.444946682139133 ], [ 9.212899066035204, 45.444947061017352 ], [ 9.212901969678528, 45.444934846359004 ], [ 9.212985671287644, 45.444772975833651 ], [ 9.212915179288604, 45.444754914216183 ], [ 9.212915027924668, 45.444753127154222 ], [ 9.212986517739916, 45.444771333919824 ], [ 9.213094913837649, 45.444560432797175 ], [ 9.212654327026751, 45.444448224901095 ], [ 9.212663384061617, 45.444436094691028 ], [ 9.213104894534183, 45.444540269318125 ], [ 9.213125893694047, 45.444496169098954 ], [ 9.213134410553533, 45.444478275754783 ], [ 9.213502492749665, 45.443746239388183 ], [ 9.21352830493932, 45.443694809559091 ], [ 9.21355836426482, 45.443635566780074 ], [ 9.213895248617305, 45.442970489970754 ], [ 9.21392717128693, 45.44291042966951 ], [ 9.212729607869688, 45.442595001031442 ], [ 9.213934920030525, 45.442895447961817 ], [ 9.213959743575396, 45.442846098963038 ], [ 9.214034066304553, 45.442697850378345 ], [ 9.214271133494387, 45.442225651257694 ], [ 9.214289918978716, 45.442191015450859 ], [ 9.214610586890391, 45.441737720847037 ] ], [ [ 9.212881601831619, 45.444746310905778 ], [ 9.21283035462676, 45.444733180178773 ], [ 9.212833739859299, 45.444732424937236 ], [ 9.212887321120828, 45.444746070871176 ], [ 9.212881601831619, 45.444746310905778 ] ], [ [ 9.212569778112869, 45.444666413958501 ], [ 9.212503999515421, 45.444649559717504 ], [ 9.212504697689521, 45.444648624651229 ], [ 9.212572320227537, 45.444665846821316 ], [ 9.212569778112869, 45.444666413958501 ] ], [ [ 9.211933636688363, 45.444264676086142 ], [ 9.211892507870253, 45.444254201031349 ], [ 9.211934125325508, 45.444264021125626 ], [ 9.211933636688363, 45.444264676086142 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.150442211304872, 45.440163499926882 ], [ 9.150471171839321, 45.440009924946942 ], [ 9.15018227631505, 45.439982925362585 ], [ 9.15014865416425, 45.440161215550233 ], [ 9.150005432799121, 45.440167636823112 ], [ 9.149954272698507, 45.44016894638817 ], [ 9.149813493793479, 45.44016500692392 ], [ 9.149789648425337, 45.44058730055238 ], [ 9.149314103552799, 45.440522790701834 ], [ 9.149269199968321, 45.440686833436317 ], [ 9.149266106740154, 45.440953655679749 ], [ 9.149371792559343, 45.441226891221291 ], [ 9.149450132148765, 45.441345943394694 ], [ 9.149752375401821, 45.441247381136222 ], [ 9.149711920419238, 45.441963794985675 ], [ 9.149949937315203, 45.441970455454282 ], [ 9.150115770814832, 45.441966210836306 ], [ 9.150115432769585, 45.441959666476492 ], [ 9.150197311568919, 45.441981249620007 ], [ 9.151270039195063, 45.442273865247202 ], [ 9.151359686093947, 45.442301791847711 ], [ 9.152054660925048, 45.442467292709907 ], [ 9.152771632458846, 45.442658357544943 ], [ 9.152870090141199, 45.442685820567817 ], [ 9.154492481269497, 45.443123979203946 ], [ 9.154765170781801, 45.443123318476665 ], [ 9.154934843879126, 45.443168334608096 ], [ 9.155089527354024, 45.443209794200691 ], [ 9.155633891865467, 45.443355518909357 ], [ 9.155859398151685, 45.443415893935175 ], [ 9.156003831999216, 45.443454576292382 ], [ 9.157152313747735, 45.443762025546306 ], [ 9.15803529675089, 45.443998092115621 ], [ 9.158182995892851, 45.444061667269168 ], [ 9.158489345132889, 45.444168877194308 ], [ 9.158612611595256, 45.44420908631659 ], [ 9.158669659467007, 45.444122423721183 ], [ 9.158707846850637, 45.444128795743282 ], [ 9.158760921047193, 45.444137666806988 ], [ 9.158819013448218, 45.444151023234298 ], [ 9.15922066330087, 45.443285367302941 ], [ 9.159687788699781, 45.442575713127553 ], [ 9.159596405542711, 45.442545905109831 ], [ 9.159568312483422, 45.442536073772601 ], [ 9.159612990364211, 45.44243977734407 ], [ 9.159454467119467, 45.442403330971203 ], [ 9.159298396612201, 45.442377245018385 ], [ 9.159123358817945, 45.442348037363345 ], [ 9.158978873178416, 45.442324690707785 ], [ 9.158061037827835, 45.442079307492001 ], [ 9.156913086730286, 45.441772001481077 ], [ 9.156768672139254, 45.441733324429435 ], [ 9.15654293906473, 45.441672888911171 ], [ 9.155999231874961, 45.441527340804576 ], [ 9.155842776931907, 45.441485406567125 ], [ 9.155805704579105, 45.441553950825892 ], [ 9.155802751290574, 45.441551547548542 ], [ 9.15583873755943, 45.441484329396189 ], [ 9.155642034646673, 45.441432142110173 ], [ 9.155343204736518, 45.441272834149949 ], [ 9.153863447160097, 45.440869821201886 ], [ 9.153767507036076, 45.440844156413839 ], [ 9.152365903111635, 45.440465968749045 ], [ 9.152287574006685, 45.440444814942893 ], [ 9.152204085898912, 45.440598020953303 ], [ 9.152184635472732, 45.44059271546098 ], [ 9.152263671832459, 45.440438551627139 ], [ 9.151200463880778, 45.440168410913572 ], [ 9.151157485588172, 45.440154084844025 ], [ 9.151155529171517, 45.440156993592041 ], [ 9.151142786435669, 45.440153755825591 ], [ 9.151094946644745, 45.44024706590956 ], [ 9.151067223658858, 45.440288283522364 ], [ 9.15098137059692, 45.440265652824749 ], [ 9.150863623441722, 45.440487026997928 ], [ 9.151055122225534, 45.440123721965001 ], [ 9.150778517239962, 45.440051465528718 ], [ 9.150555427760253, 45.440019825618464 ], [ 9.150511594834365, 45.440172992200729 ], [ 9.150442211304872, 45.440163499926882 ] ], [ [ 9.15572265814995, 45.44170115157727 ], [ 9.155727775974404, 45.441698034933886 ], [ 9.155387807892819, 45.442326601035596 ], [ 9.15572265814995, 45.44170115157727 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.241387414250845, 45.446444722246035 ], [ 9.241390481171726, 45.44644520428816 ], [ 9.2413868166526, 45.446558167592521 ], [ 9.241622339552231, 45.44656195286376 ], [ 9.242049898483698, 45.446525201306578 ], [ 9.243077614943665, 45.446575344125165 ], [ 9.243340427022014, 45.446588188617916 ], [ 9.243639828302429, 45.446602522165513 ], [ 9.243979319644144, 45.446618816937395 ], [ 9.24422984382632, 45.446630818094278 ], [ 9.2445314049906, 45.446645311410272 ], [ 9.24468432265307, 45.446652648916604 ], [ 9.244847539203951, 45.446709648179599 ], [ 9.246592486704921, 45.446776786070423 ], [ 9.247219518075958, 45.446804056892887 ], [ 9.248338706795977, 45.446853637024596 ], [ 9.248591876170165, 45.446874307472299 ], [ 9.248600602998486, 45.446821348072454 ], [ 9.248633290035929, 45.446822710029707 ], [ 9.248626490131471, 45.446876798102132 ], [ 9.248827855116172, 45.446889340900618 ], [ 9.250383619773919, 45.446946220034484 ], [ 9.250915953829375, 45.446973261343828 ], [ 9.252131237055947, 45.447035143198441 ], [ 9.252162350900935, 45.447037757371497 ], [ 9.25217113462806, 45.44698595905421 ], [ 9.252175418098563, 45.446986154058166 ], [ 9.252166870438954, 45.447038131360543 ], [ 9.252431974573904, 45.447059731689485 ], [ 9.252442063244123, 45.446998381926655 ], [ 9.252491752437905, 45.447000676386217 ], [ 9.252485211318671, 45.447063276992893 ], [ 9.252566592004801, 45.447067490355835 ], [ 9.253246211782463, 45.447096638242044 ], [ 9.253505425622405, 45.447267992184941 ], [ 9.253810896619042, 45.447479776803803 ], [ 9.253885769214813, 45.447528713733128 ], [ 9.254071741747802, 45.44765033157617 ], [ 9.254379171815488, 45.447851338167347 ], [ 9.254499493959665, 45.447934097710814 ], [ 9.254551307477854, 45.447968135840568 ], [ 9.254666982460094, 45.447880895692712 ], [ 9.254692599061068, 45.447898028000971 ], [ 9.255435336654337, 45.447347789351078 ], [ 9.255455707853047, 45.447334701027941 ], [ 9.25665141459392, 45.44701563160163 ], [ 9.256610913237211, 45.446940432024356 ], [ 9.256502282768205, 45.446739031395211 ], [ 9.25638038114648, 45.446647654193889 ], [ 9.256454196337083, 45.44659296723237 ], [ 9.256377166491935, 45.446541450984959 ], [ 9.255687051668815, 45.446076967231434 ], [ 9.255347252041073, 45.445866359363563 ], [ 9.255284273889083, 45.4458273534132 ], [ 9.254993456272086, 45.445624655453599 ], [ 9.254731135297414, 45.44545789296842 ], [ 9.254353069430833, 45.445302661235978 ], [ 9.254119197639049, 45.445256945421896 ], [ 9.253914405956241, 45.44521675175627 ], [ 9.252756308808292, 45.445167164527994 ], [ 9.252692848133835, 45.445163620176146 ], [ 9.252688108823405, 45.445205666293134 ], [ 9.252676020088073, 45.445205111756579 ], [ 9.252680173117215, 45.445162956861978 ], [ 9.252422555706396, 45.445150380721067 ], [ 9.252415289231363, 45.445149955983375 ], [ 9.252169100035827, 45.445122495600458 ], [ 9.251206852371514, 45.445080343377107 ], [ 9.251160167885427, 45.445078292213672 ], [ 9.250546367024485, 45.445044448999958 ], [ 9.250539439232346, 45.44510670426439 ], [ 9.25052138762077, 45.445105873354741 ], [ 9.250526976164545, 45.445043484120269 ], [ 9.249013200105333, 45.44497628512552 ], [ 9.248827352267931, 45.444968069708587 ], [ 9.248817326985346, 45.445080443709408 ], [ 9.248817127663958, 45.445080427435549 ], [ 9.248827123691475, 45.44496805961866 ], [ 9.248636046290786, 45.444959636930811 ], [ 9.248544810771095, 45.444955208852711 ], [ 9.246761040047094, 45.444873022568025 ], [ 9.246755503565961, 45.444932554355539 ], [ 9.246752531808639, 45.444932417588447 ], [ 9.246748119817402, 45.444979919966165 ], [ 9.246745668454457, 45.444979813344361 ], [ 9.246703311981694, 45.445462345929343 ], [ 9.246700844207632, 45.445488915115746 ], [ 9.246751792033198, 45.444872620079316 ], [ 9.245536211274207, 45.444822820821855 ], [ 9.245531028350172, 45.444885500851946 ], [ 9.245284575530841, 45.444875638274297 ], [ 9.245275205013231, 45.444830946125343 ], [ 9.244974459994797, 45.444862190744765 ], [ 9.244705539859599, 45.44484928716939 ], [ 9.244403912786016, 45.44483479066303 ], [ 9.244316807857343, 45.445732801028861 ], [ 9.244403625529291, 45.444834776879638 ], [ 9.244153211364479, 45.444822780982342 ], [ 9.243813698735275, 45.444806485163177 ], [ 9.243726707857579, 45.445704501028899 ], [ 9.243813470812725, 45.444806474237488 ], [ 9.243515674763872, 45.444792217503533 ], [ 9.243254678044503, 45.444779461639413 ], [ 9.242200888411547, 45.444728046493594 ], [ 9.241711196467186, 45.444651079418009 ], [ 9.241454323214398, 45.444645092729942 ], [ 9.241448989110721, 45.444758495250461 ], [ 9.241445198195491, 45.444758434317869 ], [ 9.241436768645793, 45.445018299488417 ], [ 9.241369691216629, 45.446444309173224 ], [ 9.241387414250845, 45.446444722246035 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.223449303756807, 45.438507974898556 ], [ 9.223579395996204, 45.438497798967283 ], [ 9.223297024248778, 45.436708602771319 ], [ 9.223166626282662, 45.436718802607892 ], [ 9.220257252125888, 45.436947347514376 ], [ 9.220540768138765, 45.438736454223331 ], [ 9.223449303756807, 45.438507974898556 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.193695453384345, 45.438554541985233 ], [ 9.19374109536666, 45.438586263279134 ], [ 9.193870015727819, 45.43867636989296 ], [ 9.194118307230541, 45.43850030381391 ], [ 9.194118946772852, 45.43850075393059 ], [ 9.19387090211525, 45.438676988811679 ], [ 9.194202138791917, 45.438908047164269 ], [ 9.194441275459019, 45.439074904797344 ], [ 9.19468686867253, 45.438900459147312 ], [ 9.194687023027186, 45.438900567781459 ], [ 9.194441488674938, 45.439075053533188 ], [ 9.194503149494706, 45.439118056937076 ], [ 9.194899810448474, 45.43939486293074 ], [ 9.195727110081318, 45.438807303855931 ], [ 9.195727112371754, 45.438807305269052 ], [ 9.194899837142009, 45.439394881557895 ], [ 9.195026237173717, 45.439483082543951 ], [ 9.195088675639523, 45.439526619106942 ], [ 9.195927091568013, 45.438930684559139 ], [ 9.195955563129143, 45.438948250318809 ], [ 9.19601310402191, 45.438902026761276 ], [ 9.196057721335791, 45.438866688626177 ], [ 9.196036131769558, 45.438853178902136 ], [ 9.196888119785081, 45.438247575834176 ], [ 9.196826189053915, 45.438204394330484 ], [ 9.196699971794333, 45.438116322806103 ], [ 9.196303185075664, 45.43783943510023 ], [ 9.195419307916438, 45.438467195395162 ], [ 9.195419302637408, 45.438467192091728 ], [ 9.19630290673418, 45.43783924092466 ], [ 9.196241213358773, 45.437796215755682 ], [ 9.196002120026957, 45.437629392005086 ], [ 9.195102107880299, 45.438268701030218 ], [ 9.196001993224945, 45.437629303542863 ], [ 9.195671136721458, 45.437398515428676 ], [ 9.195541379726036, 45.437307826048276 ], [ 9.194640607876901, 45.43794660103277 ], [ 9.195538812973242, 45.437306037157299 ], [ 9.195493844353054, 45.437274784796088 ], [ 9.194857673989526, 45.436830838386697 ], [ 9.19396029054772, 45.437468195725849 ], [ 9.193736034487637, 45.437310494160442 ], [ 9.193669829832674, 45.437357155954935 ], [ 9.193082125230175, 45.437771013724273 ], [ 9.193309041421468, 45.437930725280253 ], [ 9.193057521437661, 45.438109356549077 ], [ 9.193695453384345, 45.438554541985233 ] ], [ [ 9.194770413896387, 45.43803788041653 ], [ 9.194770807879461, 45.438037601030942 ], [ 9.194770414282713, 45.438037880688199 ], [ 9.194770413896387, 45.43803788041653 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.187863108171015, 45.438148607395128 ], [ 9.187822843341348, 45.437195284214873 ], [ 9.187799806071308, 45.436449609725997 ], [ 9.187791355272775, 45.436449739131511 ], [ 9.187787108840928, 45.436349194515472 ], [ 9.187619911495329, 45.436352694456183 ], [ 9.187624068740757, 45.436451134253197 ], [ 9.187573638328773, 45.436450256194412 ], [ 9.187566720775095, 45.436450011199504 ], [ 9.187555942101742, 45.43635516403711 ], [ 9.187410567388303, 45.436363352672636 ], [ 9.187048990526355, 45.436390065727394 ], [ 9.186839879458395, 45.436419803629171 ], [ 9.186321918403248, 45.436425506869504 ], [ 9.185679734971547, 45.436432607774876 ], [ 9.185545652649013, 45.436434110914668 ], [ 9.185566007879963, 45.437334101033848 ], [ 9.18552081589541, 45.436434559311934 ], [ 9.185428161029975, 45.436436866456148 ], [ 9.184902581608654, 45.436445463275319 ], [ 9.183638596994333, 45.436459628909283 ], [ 9.183564928310011, 45.436459137231253 ], [ 9.183559681308436, 45.436848783002638 ], [ 9.183551435271122, 45.436857237362858 ], [ 9.183550346595574, 45.436459098451074 ], [ 9.183468844583485, 45.436459209815112 ], [ 9.183413596700289, 45.436458200103544 ], [ 9.183394002791571, 45.436989425018446 ], [ 9.183392086324663, 45.436989470840587 ], [ 9.183408924154131, 45.436458120697665 ], [ 9.183333901416367, 45.436456941987714 ], [ 9.183055930769791, 45.436458010173894 ], [ 9.183060002953546, 45.436983351477544 ], [ 9.18305333295106, 45.436983379970684 ], [ 9.183039912227283, 45.436458142375905 ], [ 9.182811107855045, 45.436461039893508 ], [ 9.181685329885566, 45.436475051599402 ], [ 9.181295394127947, 45.436456215822865 ], [ 9.180748810683159, 45.436463461596652 ], [ 9.18053067983544, 45.436471894086928 ], [ 9.178983779605364, 45.436498241788897 ], [ 9.17840334873538, 45.43651119667723 ], [ 9.178352551413052, 45.436511196689352 ], [ 9.178226326513979, 45.436497939790499 ], [ 9.177945077571612, 45.436488298723567 ], [ 9.176566753404675, 45.436488196623806 ], [ 9.176566661845136, 45.437054500002283 ], [ 9.176532959454573, 45.43705539670713 ], [ 9.17653010811973, 45.437055396706747 ], [ 9.176530107691059, 45.4388556052198 ], [ 9.176581218486572, 45.438855605705648 ], [ 9.176655242227456, 45.438853636919276 ], [ 9.177931702273929, 45.438839445409464 ], [ 9.178124778967444, 45.438842125765312 ], [ 9.178271230920334, 45.43884421084033 ], [ 9.178284336101727, 45.438844407911077 ], [ 9.178328427875314, 45.438845691657676 ], [ 9.178503140193268, 45.438841812656669 ], [ 9.179653279700631, 45.438825113655824 ], [ 9.179638904206401, 45.438334567662757 ], [ 9.17963897254517, 45.43833456626011 ], [ 9.179653429957758, 45.438825111467253 ], [ 9.179954442361995, 45.438820714201263 ], [ 9.18003065121861, 45.438819616951605 ], [ 9.18001633493768, 45.438326820207358 ], [ 9.180017518917206, 45.43832679590205 ], [ 9.180033268819351, 45.438819577375014 ], [ 9.181941938003689, 45.438789326979148 ], [ 9.182060714607832, 45.438787857198534 ], [ 9.183206529539831, 45.43878296685061 ], [ 9.18334319203073, 45.438795661144447 ], [ 9.183497380482789, 45.438788222778356 ], [ 9.18349858776933, 45.438788170740196 ], [ 9.183573212254267, 45.438786386234355 ], [ 9.183547781185915, 45.43825931362322 ], [ 9.183547979115266, 45.438259313354962 ], [ 9.183554280981349, 45.438259355408448 ], [ 9.183588873160652, 45.438785944055503 ], [ 9.18366325188739, 45.438783522424764 ], [ 9.183894300069166, 45.438778964121312 ], [ 9.184757538571827, 45.438762524323614 ], [ 9.184937286920459, 45.438761685234724 ], [ 9.184934988355973, 45.438517686693189 ], [ 9.185539674238301, 45.438516400936386 ], [ 9.185538467417127, 45.438235453544642 ], [ 9.185598783636232, 45.438233951776596 ], [ 9.185720023699936, 45.438232592573712 ], [ 9.186361944742698, 45.438225494537114 ], [ 9.186915873315252, 45.438219395146916 ], [ 9.187145308585437, 45.438237570591092 ], [ 9.187477792002902, 45.438249346319736 ], [ 9.187626198884496, 45.438251929919041 ], [ 9.187629524125537, 45.438157269929192 ], [ 9.187646029252702, 45.438156050519801 ], [ 9.187682580376213, 45.438153991707949 ], [ 9.187685607919349, 45.438251992236161 ], [ 9.187855410616784, 45.43824939219094 ], [ 9.187852303744769, 45.438148833571994 ], [ 9.187863108171015, 45.438148607395128 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.217320608551272, 45.438683418748212 ], [ 9.216806948236243, 45.438498069853715 ], [ 9.216764825271186, 45.438482916947457 ], [ 9.216671396439475, 45.438449167878666 ], [ 9.215504002812967, 45.440050831119279 ], [ 9.215599275615791, 45.440085247554428 ], [ 9.215641319910093, 45.440100370569354 ], [ 9.216154400175473, 45.440285511502623 ], [ 9.216220865034503, 45.440309474805026 ], [ 9.21630212752887, 45.440346862796311 ], [ 9.216737197595439, 45.440547004123495 ], [ 9.21695159777704, 45.440645712669664 ], [ 9.217651407867345, 45.439892401031308 ], [ 9.216951885088331, 45.44064584490679 ], [ 9.217103586251772, 45.440715645824426 ], [ 9.217237530756565, 45.440777212702557 ], [ 9.217678171457743, 45.440980048421515 ], [ 9.218709198345833, 45.441454409427521 ], [ 9.21897478282016, 45.441576656921541 ], [ 9.219066751589962, 45.441618962834966 ], [ 9.219312798325449, 45.441736036463318 ], [ 9.220028807866528, 45.44099030103105 ], [ 9.219335156548167, 45.441746436259969 ], [ 9.219600428960456, 45.44186703344235 ], [ 9.219793903660168, 45.441955072048835 ], [ 9.220048025462049, 45.442075390435846 ], [ 9.220258680408353, 45.442175117023879 ], [ 9.220615446488491, 45.441801659592386 ], [ 9.22052686075577, 45.441747381721015 ], [ 9.221951740714891, 45.440848971008194 ], [ 9.221818169430374, 45.440743984231204 ], [ 9.221475144604289, 45.440581594390324 ], [ 9.221211373379383, 45.440456708733741 ], [ 9.220497807866371, 45.441203601030992 ], [ 9.221191896256984, 45.440447667588721 ], [ 9.220988397848545, 45.440355068810049 ], [ 9.220733697220856, 45.440239278905977 ], [ 9.220490500394515, 45.440123562623057 ], [ 9.219774507866612, 45.440869301031064 ], [ 9.220473904015201, 45.4401157977574 ], [ 9.220374059535125, 45.44006986954809 ], [ 9.220108516347233, 45.439947642397101 ], [ 9.219077507425988, 45.439473294858516 ], [ 9.218636629054014, 45.439270351957823 ], [ 9.218502357773847, 45.439208635429551 ], [ 9.218351055694987, 45.439139018901564 ], [ 9.21813660099855, 45.439040286339093 ], [ 9.217701035480816, 45.438839919216427 ], [ 9.21756327066516, 45.438776535751337 ], [ 9.216863807867615, 45.439530001031407 ], [ 9.217446616647123, 45.43872884940108 ], [ 9.217320608551272, 45.438683418748212 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.159347330699228, 45.437882546102642 ], [ 9.159355641458367, 45.437748452025794 ], [ 9.159173344349073, 45.437742852109977 ], [ 9.159164969687485, 45.437877970229728 ], [ 9.158535292269612, 45.437862261183952 ], [ 9.158401507443372, 45.437858951619859 ], [ 9.158363554980733, 45.438619319953482 ], [ 9.15802253575265, 45.438608981664522 ], [ 9.158014332731987, 45.438743081577776 ], [ 9.15835685923277, 45.438753465557447 ], [ 9.158311706950844, 45.43965805029363 ], [ 9.1584449156076, 45.439661345557028 ], [ 9.159242775794739, 45.439681249757413 ], [ 9.160132931731228, 45.439707044124944 ], [ 9.160140667193778, 45.439574726696016 ], [ 9.16014413054298, 45.439574833989816 ], [ 9.160136993226468, 45.439707157248129 ], [ 9.160421994908065, 45.439714775526028 ], [ 9.160837438228199, 45.439728999656587 ], [ 9.161391738082214, 45.439748749751153 ], [ 9.162140504474763, 45.439775544949811 ], [ 9.162150523447426, 45.439636779136514 ], [ 9.162150700162567, 45.439636784591094 ], [ 9.162140713375795, 45.439775552412769 ], [ 9.162435118039587, 45.439786052571399 ], [ 9.162534681374435, 45.439789572572124 ], [ 9.162598193540271, 45.438899213556923 ], [ 9.163479716710411, 45.438949957528742 ], [ 9.163495813610401, 45.438811357355277 ], [ 9.162608105556119, 45.438760257329136 ], [ 9.16266293240766, 45.43799162932347 ], [ 9.162564214858634, 45.437988139306647 ], [ 9.162485188300458, 45.437985320836951 ], [ 9.162493932539089, 45.43784546725788 ], [ 9.1622777359672, 45.437838767358542 ], [ 9.162269054279154, 45.437977612037706 ], [ 9.162268863883384, 45.437977605224852 ], [ 9.16227751073837, 45.43783876039253 ], [ 9.160962625251891, 45.43779816698224 ], [ 9.160744122403813, 45.43779137310645 ], [ 9.16073585308153, 45.437923185015386 ], [ 9.16053941875073, 45.437916459199521 ], [ 9.160486416791596, 45.438683653338558 ], [ 9.160484421914093, 45.438683592902322 ], [ 9.160525816421861, 45.437916044545943 ], [ 9.160401443119536, 45.437912720056552 ], [ 9.160409563228658, 45.437781043527515 ], [ 9.160259440762752, 45.437776455063158 ], [ 9.15935613023386, 45.437748467105898 ], [ 9.159347746639137, 45.437882558157142 ], [ 9.159347330699228, 45.437882546102642 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.091424386167102, 45.462701700399798 ], [ 9.091486470922815, 45.462823502660562 ], [ 9.091413406014617, 45.462900479268654 ], [ 9.090934017899569, 45.462880290259704 ], [ 9.090920317226045, 45.46290785289176 ], [ 9.090929918441711, 45.462928490281989 ], [ 9.091369256144501, 45.46294699268023 ], [ 9.091368031349273, 45.462948283042934 ], [ 9.090929707921596, 45.462947101038424 ], [ 9.090887975065378, 45.462841777790636 ], [ 9.091513349404782, 45.462213768369359 ], [ 9.091470276213782, 45.462192528281761 ], [ 9.091210661086908, 45.462064233141064 ], [ 9.090768020499608, 45.461832199944531 ], [ 9.090457687702251, 45.461691965528054 ], [ 9.090113276624017, 45.461558928792158 ], [ 9.08998799893803, 45.461510498501269 ], [ 9.089774389067918, 45.461413922745464 ], [ 9.089428700807893, 45.461792562425963 ], [ 9.089467425062537, 45.46181440323727 ], [ 9.088123938633508, 45.462769651109383 ], [ 9.088278655766461, 45.462877406644779 ], [ 9.088679202753262, 45.463058501130149 ], [ 9.088881733840966, 45.463136797108518 ], [ 9.088969949382093, 45.463170872815347 ], [ 9.088868304509518, 45.463593688518401 ], [ 9.090999831602053, 45.464165750979397 ], [ 9.091004292856534, 45.464161289764753 ], [ 9.091604836494939, 45.464443554170465 ], [ 9.0916907018869, 45.4644818226136 ], [ 9.09305949556301, 45.462960975275124 ], [ 9.092999927347217, 45.462934427824557 ], [ 9.091981563633915, 45.462455783283637 ], [ 9.091866963590393, 45.462376287719181 ], [ 9.091417988299961, 45.462696795268208 ], [ 9.091424386167102, 45.462701700399798 ] ], [ [ 9.091133031888695, 45.463195861490284 ], [ 9.091122615371665, 45.463190703483271 ], [ 9.091170107921531, 45.463156801038387 ], [ 9.091133031888695, 45.463195861490284 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.245152716609029, 45.460346098759395 ], [ 9.245412989642267, 45.46021021682936 ], [ 9.245541135954522, 45.460150261107891 ], [ 9.24518706955811, 45.459775481633706 ], [ 9.245091748250646, 45.459811312264769 ], [ 9.245027609417694, 45.459825967049014 ], [ 9.244963141898133, 45.459828531038916 ], [ 9.245190591660689, 45.45850693201141 ], [ 9.244814480067875, 45.45847487438111 ], [ 9.244466496284678, 45.458533102896524 ], [ 9.24422761672257, 45.458603077515171 ], [ 9.243941859104787, 45.458736773282226 ], [ 9.243614069290711, 45.458907901572474 ], [ 9.2443761078592, 45.459630801027636 ], [ 9.243585279807119, 45.458923381185201 ], [ 9.243416580601343, 45.459016780027177 ], [ 9.243138355794866, 45.459170820172695 ], [ 9.243065993389582, 45.459219787469884 ], [ 9.243020394191593, 45.459250689291693 ], [ 9.242648649574571, 45.459526325871906 ], [ 9.242444974627757, 45.459735908899461 ], [ 9.242350331535638, 45.459899259692506 ], [ 9.242210142798292, 45.460256805260506 ], [ 9.242202614956689, 45.460358579317983 ], [ 9.242142226219377, 45.460545277602833 ], [ 9.242107334721332, 45.460668428831568 ], [ 9.242079721582611, 45.460779784226361 ], [ 9.242053932012325, 45.460888272004802 ], [ 9.24198839145992, 45.461207428218557 ], [ 9.241951385698423, 45.461418570693539 ], [ 9.241929755824845, 45.461555985792728 ], [ 9.241919241106958, 45.461663975587321 ], [ 9.241915976945645, 45.461774730144036 ], [ 9.241916541590859, 45.461869582163764 ], [ 9.244474673897891, 45.461862005569046 ], [ 9.244474239366848, 45.461789625644769 ], [ 9.244475576127487, 45.461744199036083 ], [ 9.244478259420429, 45.461716627907805 ], [ 9.244492233932668, 45.461627822094073 ], [ 9.244524031009492, 45.461446352170164 ], [ 9.244581688470308, 45.46116552223652 ], [ 9.244601300804801, 45.461083004441036 ], [ 9.244622085784391, 45.460999169894144 ], [ 9.244644200860375, 45.460921101445585 ], [ 9.244699769250978, 45.460749282254184 ], [ 9.244720266440666, 45.460686908050491 ], [ 9.243474107859662, 45.460484101027589 ], [ 9.244099984045668, 45.460507017097157 ], [ 9.244096696639511, 45.460521298860257 ], [ 9.244468956830143, 45.460593575263914 ], [ 9.244633579974792, 45.460672800298674 ], [ 9.244644789741603, 45.460661264933258 ], [ 9.244680648976109, 45.460634675856873 ], [ 9.244713188015442, 45.460640993357728 ], [ 9.244730015284286, 45.460598071431598 ], [ 9.244825533852689, 45.460527245557202 ], [ 9.244998261929148, 45.46043161253791 ], [ 9.245152716609029, 45.460346098759395 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.097708557210986, 45.460264099981806 ], [ 9.098309752496913, 45.460455978078841 ], [ 9.098349451488003, 45.46039437767886 ], [ 9.097767027791473, 45.460208490847997 ], [ 9.097708557210986, 45.460264099981806 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.13295300208361, 45.462266583651093 ], [ 9.133032424806871, 45.4622783850605 ], [ 9.133117798141708, 45.462305281676841 ], [ 9.133432684021717, 45.46191356142824 ], [ 9.129655916772007, 45.460410041272489 ], [ 9.129589091992854, 45.460384640602669 ], [ 9.129530815106353, 45.460362439970588 ], [ 9.128312983681637, 45.461945558763631 ], [ 9.128371784264685, 45.461967959073334 ], [ 9.128418094986626, 45.46198556259705 ], [ 9.132277916169281, 45.463522155802906 ], [ 9.132581161324024, 45.46359455222737 ], [ 9.132782763640147, 45.463607230067694 ], [ 9.13295300208361, 45.462266583651093 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.112122172465398, 45.475938991453361 ], [ 9.112216975651762, 45.475907688417855 ], [ 9.112381680630142, 45.475853349019545 ], [ 9.112804913928819, 45.475608415677058 ], [ 9.112840929946211, 45.475593468735596 ], [ 9.111540903721982, 45.474042929514475 ], [ 9.111411358504633, 45.474096690824481 ], [ 9.111258499436708, 45.474172371619872 ], [ 9.111004148218427, 45.474319567985638 ], [ 9.11066836276523, 45.474430638608787 ], [ 9.110378437339614, 45.474526569574657 ], [ 9.110238501214495, 45.474573729990162 ], [ 9.111343930504363, 45.476197269276369 ], [ 9.111475727633728, 45.476152851856334 ], [ 9.111757140680988, 45.476059736949793 ], [ 9.112122172465398, 45.475938991453361 ] ], [ [ 9.111313194520847, 45.474727026586734 ], [ 9.111578207915521, 45.475124301036772 ], [ 9.111312826949817, 45.474727189947174 ], [ 9.111313194520847, 45.474727026586734 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.135458687887366, 45.472283437986448 ], [ 9.135357697371214, 45.47232082171962 ], [ 9.135221775690596, 45.472390835698505 ], [ 9.135977507904744, 45.473117101034227 ], [ 9.135185836953367, 45.47241004173042 ], [ 9.135071295480721, 45.472473526524446 ], [ 9.134948106742955, 45.472555804108033 ], [ 9.135828907904822, 45.473208601034237 ], [ 9.134889359801917, 45.472597693833052 ], [ 9.134745960936661, 45.472706863204209 ], [ 9.134697462479394, 45.472743733494596 ], [ 9.134075886807153, 45.473217013191856 ], [ 9.134030291578243, 45.473251681024195 ], [ 9.13590834453459, 45.474474313235959 ], [ 9.135954244449449, 45.474439412862445 ], [ 9.136575713334889, 45.473966202506162 ], [ 9.136624173542089, 45.473929360369517 ], [ 9.13673429411757, 45.473845523908935 ], [ 9.136842552543657, 45.473805898985333 ], [ 9.137065206606568, 45.473715163600545 ], [ 9.137234745366413, 45.473588008248072 ], [ 9.137835846013404, 45.473109230608976 ], [ 9.137995077419538, 45.472918937248465 ], [ 9.138047515645097, 45.472812492352723 ], [ 9.138059548438685, 45.472791194573396 ], [ 9.136297496965481, 45.472298380236275 ], [ 9.136316301486652, 45.472280151068496 ], [ 9.135836900120104, 45.471982199069288 ], [ 9.135458687887366, 45.472283437986448 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.169529818602532, 45.472575380131673 ], [ 9.169154220842174, 45.472329738035967 ], [ 9.167412174633244, 45.473648257338631 ], [ 9.167789800218666, 45.47389523058694 ], [ 9.16807748098622, 45.474082570986148 ], [ 9.168946507891473, 45.473422001031828 ], [ 9.168083422708293, 45.474086415855751 ], [ 9.168331973920786, 45.474246236130028 ], [ 9.168565559282122, 45.474395161326584 ], [ 9.168640636255427, 45.474445575567501 ], [ 9.168888734145241, 45.474599509558089 ], [ 9.168971102084431, 45.474650954203497 ], [ 9.169008488855592, 45.474674538064889 ], [ 9.169129163518404, 45.474753160406017 ], [ 9.169131547817482, 45.474754849794543 ], [ 9.170232244515033, 45.475472569946646 ], [ 9.171101907890788, 45.474812401031528 ], [ 9.170242069291392, 45.475478909533997 ], [ 9.17055114628204, 45.475676269018493 ], [ 9.170695022998048, 45.475768227187537 ], [ 9.172415572513364, 45.474435768348044 ], [ 9.172271472816483, 45.474343669422083 ], [ 9.171966662224182, 45.474149037825633 ], [ 9.170890352790657, 45.473447233595607 ], [ 9.170455532878908, 45.473777318147135 ], [ 9.170467204636676, 45.47378525067402 ], [ 9.170013507891138, 45.474102301031692 ], [ 9.170865678462894, 45.473430948564079 ], [ 9.170862987200332, 45.473429257609787 ], [ 9.170739456030418, 45.473348775961277 ], [ 9.169870207891179, 45.474009201031677 ], [ 9.170724244579093, 45.473339024251715 ], [ 9.170674485015516, 45.473307635953304 ], [ 9.170584268879654, 45.473251290590511 ], [ 9.170370784075052, 45.473118835266497 ], [ 9.170308229538508, 45.473076829594923 ], [ 9.170054075305064, 45.472914793736926 ], [ 9.169812552265448, 45.47275949543387 ], [ 9.169529818602532, 45.472575380131673 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.132397550903463, 45.474611975051147 ], [ 9.132865876865779, 45.474918539013878 ], [ 9.133026114540641, 45.474833666527054 ], [ 9.133142950423796, 45.474805455029973 ], [ 9.133241408751335, 45.476150508981448 ], [ 9.133386556105659, 45.476145250117568 ], [ 9.133706450476371, 45.476101498866726 ], [ 9.134115806070181, 45.475955486040668 ], [ 9.135858182487572, 45.474637906364038 ], [ 9.133984853633972, 45.473411687934473 ], [ 9.132397550903463, 45.474611975051147 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.230134359816423, 45.46957239635065 ], [ 9.230229534765478, 45.469520147012972 ], [ 9.228655700730524, 45.468100849494675 ], [ 9.228622259717563, 45.4681192081175 ], [ 9.228282360015623, 45.468283315414787 ], [ 9.227446290721891, 45.468686601662462 ], [ 9.228169607867015, 45.469429001027898 ], [ 9.227438793669505, 45.46869024556932 ], [ 9.226585443035116, 45.469108172936394 ], [ 9.226413642963546, 45.469252906813708 ], [ 9.226313406898692, 45.469338763184325 ], [ 9.227969950924386, 45.470296207861438 ], [ 9.228188036416782, 45.470516656199848 ], [ 9.228276454184284, 45.470473353541749 ], [ 9.228290428799546, 45.470481430221092 ], [ 9.228331105574483, 45.470446587921025 ], [ 9.22889670182453, 45.470169583071716 ], [ 9.229729249801009, 45.469767990424721 ], [ 9.229005907866627, 45.469025601027859 ], [ 9.229729699588077, 45.469767773360452 ], [ 9.230134359816423, 45.46957239635065 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.161397863586975, 45.46726129944156 ], [ 9.160693489045014, 45.466810163786583 ], [ 9.15950584729341, 45.467728234729847 ], [ 9.159452318399715, 45.467715312656196 ], [ 9.15940982922797, 45.467802456778479 ], [ 9.158971306477808, 45.468141431737877 ], [ 9.159675119898877, 45.468592216561674 ], [ 9.159791066666255, 45.468666537416354 ], [ 9.160116114989119, 45.46888369922717 ], [ 9.160219732244336, 45.468958568026551 ], [ 9.161072757104565, 45.468374078054488 ], [ 9.161084912179756, 45.468374185109404 ], [ 9.160320289145217, 45.469023846383891 ], [ 9.160411749236498, 45.469077139787842 ], [ 9.160632363055818, 45.469219701244057 ], [ 9.161730499849559, 45.469932787950761 ], [ 9.161820581959956, 45.469991311935608 ], [ 9.162688407893455, 45.469330001032645 ], [ 9.161837744052413, 45.470002260791368 ], [ 9.161897244073817, 45.470039534704298 ], [ 9.161917750931588, 45.470052435503483 ], [ 9.162802993932315, 45.47062358151463 ], [ 9.163661767400184, 45.471179597303305 ], [ 9.163730102644692, 45.471224619728766 ], [ 9.164604507892848, 45.470567601032386 ], [ 9.163756158318456, 45.471241318413156 ], [ 9.163847758556958, 45.471298419086345 ], [ 9.164127673252455, 45.471472902156293 ], [ 9.16514069887392, 45.47216215097064 ], [ 9.165237997297643, 45.472228350595998 ], [ 9.16701659813627, 45.47093424450005 ], [ 9.166919298212918, 45.470868045249929 ], [ 9.165866123000701, 45.470151493713288 ], [ 9.16554442919162, 45.469950971747139 ], [ 9.165466033295775, 45.469902103150318 ], [ 9.165402518144894, 45.469860256410684 ], [ 9.164534631837528, 45.46929835150334 ], [ 9.163668407893143, 45.469960701032505 ], [ 9.16453296995353, 45.469297277417979 ], [ 9.163635062578502, 45.468717971734691 ], [ 9.163600462642409, 45.468696205431748 ], [ 9.163547703750069, 45.468663155021417 ], [ 9.163466013692947, 45.468610084166095 ], [ 9.162366379526171, 45.46789603907051 ], [ 9.161905468048795, 45.468247454201162 ], [ 9.161905569150026, 45.468245854546119 ], [ 9.16236408278184, 45.467894551301782 ], [ 9.162094047105944, 45.467720056504632 ], [ 9.162004868491344, 45.467668093430142 ], [ 9.161914076110433, 45.467602492827574 ], [ 9.16154310851476, 45.467354657975363 ], [ 9.160662307894102, 45.468007401032892 ], [ 9.16152376332963, 45.467341998501851 ], [ 9.161397863586975, 45.46726129944156 ] ], [ [ 9.161498807893853, 45.468557501032763 ], [ 9.161730652124755, 45.468379870555502 ], [ 9.161731777381315, 45.468379880459693 ], [ 9.161498807893853, 45.468557501032763 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.143120676734723, 45.467779104150068 ], [ 9.142394553957464, 45.467308508645559 ], [ 9.142265948966278, 45.467225124237238 ], [ 9.142119864790795, 45.467133756004166 ], [ 9.141802649490769, 45.467384865625206 ], [ 9.141669875690299, 45.467371070713682 ], [ 9.141319271991508, 45.467433544776782 ], [ 9.141412814327342, 45.467693457315114 ], [ 9.140420130797876, 45.468479239686076 ], [ 9.140485298772075, 45.46851999972187 ], [ 9.140295830510242, 45.468662671120889 ], [ 9.140426330707593, 45.468748472108558 ], [ 9.140574993263487, 45.468846179941906 ], [ 9.140767275644764, 45.468701338527431 ], [ 9.14077935416139, 45.468709166761798 ], [ 9.140590500231283, 45.468856204909251 ], [ 9.140768079125845, 45.468969123531757 ], [ 9.141272453797805, 45.469300208542208 ], [ 9.142077151392993, 45.469833454473665 ], [ 9.142153431252497, 45.469883938987898 ], [ 9.142362825589666, 45.469727306037448 ], [ 9.142363372297217, 45.469727649547011 ], [ 9.142154132759584, 45.469884402915511 ], [ 9.142285196721446, 45.469971013891517 ], [ 9.143205361793957, 45.470579430813757 ], [ 9.143264490430978, 45.470618510524424 ], [ 9.143288246502644, 45.47063622051455 ], [ 9.143318805943691, 45.470660146627758 ], [ 9.143552384074884, 45.470512454421531 ], [ 9.143633392827537, 45.470565995617655 ], [ 9.143867075453752, 45.470700031797421 ], [ 9.144057955697106, 45.47075764346927 ], [ 9.144129448237743, 45.470782792010283 ], [ 9.144415480102722, 45.470380246891949 ], [ 9.144331683791442, 45.470343055111137 ], [ 9.144288434255818, 45.470313856871655 ], [ 9.144620426576497, 45.470115805515654 ], [ 9.14553813604309, 45.469846248036269 ], [ 9.145441565217293, 45.469683484505914 ], [ 9.145409279875187, 45.469645202450714 ], [ 9.145748549740368, 45.469442801489144 ], [ 9.145634386632066, 45.469348064163519 ], [ 9.145387385401609, 45.469212650389444 ], [ 9.145249110971706, 45.469164010820293 ], [ 9.144124281179053, 45.468420572991363 ], [ 9.144003628965596, 45.468344766015463 ], [ 9.143928223264997, 45.468296506825965 ], [ 9.143120676734723, 45.467779104150068 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.207379688665844, 45.46802757869775 ], [ 9.20734959099091, 45.469175400083316 ], [ 9.207291423668972, 45.470647696559581 ], [ 9.207289042682442, 45.470708672297341 ], [ 9.207286275117132, 45.470775156567591 ], [ 9.207231225771915, 45.472121015023021 ], [ 9.207870616683648, 45.472133959815835 ], [ 9.207876369007188, 45.472101640805157 ], [ 9.20906448605097, 45.472255405012405 ], [ 9.209751981450266, 45.472363761895593 ], [ 9.209785257406063, 45.472259257805824 ], [ 9.209843751316397, 45.470827601667793 ], [ 9.209846540252244, 45.470760531145274 ], [ 9.208567807875108, 45.470734201029188 ], [ 9.209846606014185, 45.470758899008217 ], [ 9.209848998926066, 45.470697545084953 ], [ 9.209907259793129, 45.469221190594055 ], [ 9.208628507874879, 45.469196201029312 ], [ 9.209907535691167, 45.469212783820787 ], [ 9.209937526994512, 45.468067043653257 ], [ 9.209938512050041, 45.468039803274806 ], [ 9.2073809046842, 45.467993984465558 ], [ 9.207379688665844, 45.46802757869775 ] ], [ [ 9.207879120936955, 45.472086179275166 ], [ 9.207882170009055, 45.472069048261368 ], [ 9.208503607875382, 45.472167001029092 ], [ 9.207879120936955, 45.472086179275166 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.117972553023048, 45.468720655910246 ], [ 9.116794635530253, 45.468468009254721 ], [ 9.116847561956535, 45.468368469049437 ], [ 9.116746340917537, 45.468341823163534 ], [ 9.116557672839868, 45.468302229866289 ], [ 9.116302369207824, 45.468274509223662 ], [ 9.116198781906983, 45.468274184550779 ], [ 9.116072015991191, 45.468266258750788 ], [ 9.11594431304974, 45.46828561813691 ], [ 9.115525274134702, 45.468195733030477 ], [ 9.115432624429122, 45.468409574930831 ], [ 9.115364547992195, 45.468430924137948 ], [ 9.115085418206835, 45.468597587691399 ], [ 9.114923292938986, 45.468742687558837 ], [ 9.114817161075232, 45.468876626081631 ], [ 9.114394884576196, 45.469607659928712 ], [ 9.11448575742442, 45.46995359352664 ], [ 9.114542504465033, 45.470071596629758 ], [ 9.114622900264516, 45.47019545346317 ], [ 9.114856828504827, 45.470435793297504 ], [ 9.115919468657045, 45.469923750501984 ], [ 9.115865959999109, 45.470035008885183 ], [ 9.115980250139001, 45.470062220779589 ], [ 9.1159826639083, 45.470062856201103 ], [ 9.115986365389702, 45.470063676785344 ], [ 9.116312570207745, 45.470141343678861 ], [ 9.116793623741087, 45.470596460415756 ], [ 9.117070384623691, 45.470451639236224 ], [ 9.117305318536861, 45.470275139994968 ], [ 9.117472420756227, 45.4700941407879 ], [ 9.11766536351192, 45.46986002742797 ], [ 9.117135690583773, 45.469643917896107 ], [ 9.117157826728178, 45.469605593179125 ], [ 9.116983071381778, 45.469555621823972 ], [ 9.116978752886197, 45.469539185068292 ], [ 9.116942211974257, 45.469543938010077 ], [ 9.116795014349485, 45.4695018464489 ], [ 9.116857072175758, 45.469471941805935 ], [ 9.116945068088615, 45.469450990113103 ], [ 9.116938767840329, 45.469437890179528 ], [ 9.116916960772615, 45.469443082416781 ], [ 9.116967768324477, 45.469418598995063 ], [ 9.116863182044222, 45.46931115038231 ], [ 9.117644167914756, 45.469478659378282 ], [ 9.117972553023048, 45.468720655910246 ] ], [ [ 9.116420507912137, 45.469216201036012 ], [ 9.116717938800745, 45.469279997327178 ], [ 9.116500529266908, 45.469384763077855 ], [ 9.116369048175056, 45.469331116189224 ], [ 9.116420507912137, 45.469216201036012 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.211591200641305, 45.463791694386231 ], [ 9.211604206247792, 45.463469177195904 ], [ 9.211648639301249, 45.462370548360383 ], [ 9.211649602337799, 45.462345159004933 ], [ 9.211650561073418, 45.462321848924788 ], [ 9.20909345579931, 45.462269738821632 ], [ 9.209092394428939, 45.462295614963764 ], [ 9.209091405635073, 45.46232154586621 ], [ 9.209047012140573, 45.463417972601007 ], [ 9.209034008959197, 45.463740070869392 ], [ 9.209031314734082, 45.463805893331802 ], [ 9.210309907873487, 45.463831801029677 ], [ 9.209030935077875, 45.463817996243456 ], [ 9.209029940465486, 45.463863601617319 ], [ 9.209008685486767, 45.464798296710555 ], [ 9.209008662337403, 45.464810593867988 ], [ 9.209008662007664, 45.464825174128251 ], [ 9.209008577683417, 45.4648677715372 ], [ 9.209007883051497, 45.464893619314935 ], [ 9.209007022238909, 45.464929370911783 ], [ 9.209003625873965, 45.465341401132335 ], [ 9.208990808282589, 45.465782706192478 ], [ 9.208991010472927, 45.46584275376474 ], [ 9.208990161779575, 45.465874668328873 ], [ 9.208974329648257, 45.466501257784564 ], [ 9.208972718142869, 45.466563861860188 ], [ 9.20897104178235, 45.466610026139215 ], [ 9.208943928354225, 45.467350835286787 ], [ 9.210222707873992, 45.467374001029377 ], [ 9.208943658593732, 45.467360031159693 ], [ 9.20893885367102, 45.46757773111522 ], [ 9.211496962656934, 45.467605656620179 ], [ 9.211501656449286, 45.467392554999094 ], [ 9.211528571645793, 45.466656252183746 ], [ 9.211530377121322, 45.466606470999423 ], [ 9.210251607873877, 45.466583501029426 ], [ 9.21153058441133, 45.466599780215233 ], [ 9.211532282916876, 45.466533680199078 ], [ 9.211548065825108, 45.465907899487824 ], [ 9.211549153741316, 45.465866919398437 ], [ 9.210270207873773, 45.465850101029496 ], [ 9.211549373218148, 45.465847957738703 ], [ 9.211549206705858, 45.465798915728946 ], [ 9.211561599398193, 45.465371571485669 ], [ 9.210282707873704, 45.465353201029529 ], [ 9.211561844347472, 45.465358400417841 ], [ 9.21156519389077, 45.464949814253593 ], [ 9.211565751979766, 45.464926591864106 ], [ 9.21156662808708, 45.464893856221217 ], [ 9.210287707873636, 45.464876901029612 ], [ 9.21156685367281, 45.464878133345614 ], [ 9.211566950893586, 45.464828034099298 ], [ 9.211566953520112, 45.464817756245061 ], [ 9.211587870612425, 45.463892017521275 ], [ 9.211588749457801, 45.463851645340924 ], [ 9.211591200641305, 45.463791694386231 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.111738002798155, 45.469421965735812 ], [ 9.112001111009009, 45.469372969589074 ], [ 9.112295003365244, 45.469408723782742 ], [ 9.11229259804494, 45.46941435125445 ], [ 9.112295633540993, 45.469408800447461 ], [ 9.112424354468589, 45.469424460053624 ], [ 9.112426071047803, 45.469417474455838 ], [ 9.11291070666984, 45.468494927744281 ], [ 9.112915923782205, 45.468484877780391 ], [ 9.113937880918346, 45.466542264707947 ], [ 9.113958589448979, 45.466513828894819 ], [ 9.113976969974406, 45.466483088755133 ], [ 9.113863052656917, 45.466449247866237 ], [ 9.113888341940942, 45.466400769386318 ], [ 9.113287923283352, 45.46624568679313 ], [ 9.113241999050773, 45.46630225102524 ], [ 9.112920774387984, 45.466117106648213 ], [ 9.112126332249641, 45.465363168050217 ], [ 9.111856748610046, 45.465503818554673 ], [ 9.111773143684944, 45.465455628974539 ], [ 9.111561104321998, 45.465637776424494 ], [ 9.110415649278648, 45.467833308921691 ], [ 9.110411158176261, 45.467841939758912 ], [ 9.109870230348335, 45.468831037930634 ], [ 9.109786293330695, 45.469027396273034 ], [ 9.109747460946943, 45.469256933734179 ], [ 9.109760155730145, 45.469475877146735 ], [ 9.109809716473977, 45.469671768 ], [ 9.109876741563097, 45.469849973434712 ], [ 9.109958806327096, 45.469974828374262 ], [ 9.110080583766898, 45.469935202275138 ], [ 9.11011812280405, 45.469988200052988 ], [ 9.110184523766954, 45.470067330642472 ], [ 9.111738002798155, 45.469421965735812 ] ], [ [ 9.112416791995212, 45.469254184400484 ], [ 9.112437967472411, 45.469249007150296 ], [ 9.112439585596116, 45.469253876534935 ], [ 9.112416791995212, 45.469254184400484 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.222134527760788, 45.456173433248424 ], [ 9.223064815079313, 45.455967848290449 ], [ 9.223022467981242, 45.45587293646679 ], [ 9.222947232160795, 45.455758777234536 ], [ 9.221993210647106, 45.456070192949518 ], [ 9.22189900357257, 45.456014988090928 ], [ 9.221909555770388, 45.456003444929763 ], [ 9.222498509322854, 45.455535282749594 ], [ 9.222395944082242, 45.455471373414738 ], [ 9.2224789872753, 45.45538052932045 ], [ 9.222353160058221, 45.455323555466123 ], [ 9.222130714776688, 45.45523577754156 ], [ 9.221914135430719, 45.455166679364119 ], [ 9.221712755606916, 45.455109495492557 ], [ 9.221484374741875, 45.455061147538515 ], [ 9.22124970275623, 45.455019835146466 ], [ 9.221233655552689, 45.455016719186077 ], [ 9.221191795607325, 45.455123501102179 ], [ 9.221102466941971, 45.455110280192905 ], [ 9.221017803097899, 45.455103094369647 ], [ 9.221035812091419, 45.454989889953985 ], [ 9.220843621620919, 45.454974745549016 ], [ 9.220599745310277, 45.454964314951532 ], [ 9.220342416327835, 45.454971507369642 ], [ 9.220127747308386, 45.454992846440078 ], [ 9.220149487130337, 45.455101176587291 ], [ 9.220094489525486, 45.45510590641117 ], [ 9.220086893994505, 45.455106755429547 ], [ 9.220057087241369, 45.455001297722269 ], [ 9.219991718626215, 45.455010449736264 ], [ 9.219704714188609, 45.455057484256542 ], [ 9.219449752328609, 45.455105869732513 ], [ 9.219187970060261, 45.455185983146691 ], [ 9.218989723996065, 45.455258698765455 ], [ 9.2190558519302, 45.45534799949894 ], [ 9.218898694757787, 45.455403561455967 ], [ 9.218812594116905, 45.455463982527483 ], [ 9.218719069262825, 45.45539179748242 ], [ 9.218518369649134, 45.45552059598262 ], [ 9.219207868314552, 45.456052765225643 ], [ 9.219186879333959, 45.456066789126744 ], [ 9.219171606195648, 45.456070702131342 ], [ 9.219174024792949, 45.456075377952615 ], [ 9.219100739012823, 45.456124344135674 ], [ 9.21906054347609, 45.456153069408266 ], [ 9.218114413355618, 45.456056451927488 ], [ 9.218089244052718, 45.456178528583884 ], [ 9.218051456611168, 45.456881059568971 ], [ 9.218256249862275, 45.45688651529278 ], [ 9.218256055513152, 45.456907374202345 ], [ 9.218050608242322, 45.456905894220064 ], [ 9.218043384837383, 45.457402476953355 ], [ 9.218041759351602, 45.457423537100581 ], [ 9.218037301109518, 45.457440731699734 ], [ 9.218040401489519, 45.45744112984513 ], [ 9.21803741002828, 45.457479887803352 ], [ 9.218471403682468, 45.457496477517672 ], [ 9.218866528503431, 45.457547216428516 ], [ 9.218974444471739, 45.457652583271567 ], [ 9.218998480073157, 45.457676550442955 ], [ 9.219012402551639, 45.457691024593842 ], [ 9.218810623570343, 45.45786016207294 ], [ 9.218439726022552, 45.45804722643765 ], [ 9.218450825925894, 45.458058126537829 ], [ 9.218761207660211, 45.457901583831891 ], [ 9.218499616551107, 45.458120855240523 ], [ 9.218598766045119, 45.458179439009072 ], [ 9.218675990598188, 45.45822330685791 ], [ 9.2190776517185, 45.457873104656088 ], [ 9.21897272205155, 45.45779490442434 ], [ 9.219311105105088, 45.457624235879813 ], [ 9.219512848110563, 45.457907951243982 ], [ 9.219500591158097, 45.458308792647486 ], [ 9.21963699124227, 45.45831085827465 ], [ 9.219647162800641, 45.458420591962238 ], [ 9.219650942852811, 45.458420418427593 ], [ 9.220173630187714, 45.458423144435478 ], [ 9.220705003117912, 45.458429483070034 ], [ 9.221413746067789, 45.458437387953381 ], [ 9.221415989423388, 45.458337744073113 ], [ 9.221435405252706, 45.458338035874753 ], [ 9.221435578858172, 45.458437500230019 ], [ 9.221648614168172, 45.45843731587415 ], [ 9.221804055141142, 45.458440272370893 ], [ 9.221829432947388, 45.457779423497627 ], [ 9.221939237387042, 45.457853124026492 ], [ 9.222068014314994, 45.45775809989059 ], [ 9.222276281850027, 45.457578774999796 ], [ 9.222294049390948, 45.457548780076984 ], [ 9.223117162474946, 45.457563738070498 ], [ 9.223121315086496, 45.457450551197887 ], [ 9.223120098955233, 45.456961572851782 ], [ 9.223121545079335, 45.456913628139759 ], [ 9.223123457104103, 45.456283229521958 ], [ 9.223123557409224, 45.45623894015138 ], [ 9.222929036085327, 45.456238722192097 ], [ 9.222929329395646, 45.456229623187745 ], [ 9.222179163597147, 45.456217643267898 ], [ 9.222134527760788, 45.456173433248424 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.173467471248941, 45.456927640169816 ], [ 9.173507607130791, 45.456904085169647 ], [ 9.171869428668263, 45.455521510909662 ], [ 9.171714262833257, 45.455612573099692 ], [ 9.171138838190949, 45.455943565968816 ], [ 9.171646675434777, 45.456380859039868 ], [ 9.171632294301233, 45.456369156878694 ], [ 9.171137621963528, 45.455944266431494 ], [ 9.170639923955827, 45.456231262931851 ], [ 9.170837628769682, 45.456401080440536 ], [ 9.170827194550727, 45.456407434286625 ], [ 9.170822239176477, 45.456410408692896 ], [ 9.170619324350698, 45.456243398237554 ], [ 9.170118277493859, 45.456544918449524 ], [ 9.170013744662112, 45.456607054171862 ], [ 9.170214775279071, 45.456774564126924 ], [ 9.170190733346669, 45.45678949761011 ], [ 9.169981812854552, 45.456626682160554 ], [ 9.169445662411384, 45.456967430533503 ], [ 9.169161316633561, 45.457146884820304 ], [ 9.16936115249892, 45.457303713883114 ], [ 9.169352727365439, 45.457308932750784 ], [ 9.16915046586851, 45.457153812157848 ], [ 9.168702047715037, 45.457443400592204 ], [ 9.168593595643454, 45.457510001246661 ], [ 9.168781798608297, 45.457661789806522 ], [ 9.168777809050463, 45.457664283247645 ], [ 9.168588428299303, 45.457513191772122 ], [ 9.168495831560406, 45.45757067430727 ], [ 9.168478592236745, 45.457582811808379 ], [ 9.167343170824397, 45.458280234211415 ], [ 9.167265883779679, 45.458326100421793 ], [ 9.167669305597006, 45.458662776020937 ], [ 9.167453770139533, 45.458502873288936 ], [ 9.167421886163563, 45.458524158201435 ], [ 9.167204625768051, 45.458364898316653 ], [ 9.167134084962736, 45.458412558198262 ], [ 9.166440001256845, 45.458859305571409 ], [ 9.166651755908845, 45.459022242520227 ], [ 9.166645094136319, 45.459026560397909 ], [ 9.16663461695248, 45.459033268344164 ], [ 9.166417552803468, 45.45887410714689 ], [ 9.166349431596208, 45.458920118366024 ], [ 9.165749978164605, 45.459304972305439 ], [ 9.165717998227992, 45.459323493349963 ], [ 9.165668207511507, 45.459349964164069 ], [ 9.164725991350553, 45.459850716016497 ], [ 9.164905187954071, 45.460017702386828 ], [ 9.164903136738934, 45.460018779283835 ], [ 9.164723333282808, 45.45985213248661 ], [ 9.163830881696363, 45.460328996904757 ], [ 9.163776757915668, 45.460358748801383 ], [ 9.163954209426544, 45.46051862335959 ], [ 9.163950252656178, 45.460520880060507 ], [ 9.163904000133718, 45.460546498827171 ], [ 9.163713444937649, 45.460395923914035 ], [ 9.163586971489988, 45.460475187540439 ], [ 9.163469158404853, 45.460562385314603 ], [ 9.164215340454271, 45.461061652411985 ], [ 9.163285487071526, 45.461044454447602 ], [ 9.163279751884629, 45.461197971744987 ], [ 9.163320040394044, 45.461388374775865 ], [ 9.163449416974302, 45.461640775260186 ], [ 9.163689760492677, 45.461837079830246 ], [ 9.163921831376705, 45.461974379333562 ], [ 9.164264271927886, 45.462083898910571 ], [ 9.164501476815639, 45.462109557005036 ], [ 9.164589451066698, 45.462117315279919 ], [ 9.164703891598565, 45.461474727232009 ], [ 9.165342435595205, 45.462041162979538 ], [ 9.165447827511898, 45.461982327707737 ], [ 9.165539613626056, 45.461931487408435 ], [ 9.165362799292314, 45.461773408955835 ], [ 9.165367667922748, 45.461769805406128 ], [ 9.1653730575814, 45.461766427524076 ], [ 9.165553918771915, 45.461923446431101 ], [ 9.165561650140257, 45.461919036446979 ], [ 9.166444963890743, 45.46145529330208 ], [ 9.167421499248345, 45.460942776112269 ], [ 9.167488317926136, 45.46090771853298 ], [ 9.167027304688244, 45.460472573093668 ], [ 9.167216368581553, 45.460634240253185 ], [ 9.16750636123081, 45.460898075645595 ], [ 9.167618966956267, 45.460836781261946 ], [ 9.168369447556877, 45.460356288165272 ], [ 9.16815869945718, 45.460193275344537 ], [ 9.168162963880498, 45.460190394982149 ], [ 9.168375219900419, 45.460352569611558 ], [ 9.168889657434958, 45.460019123602613 ], [ 9.169093474824715, 45.459889561082491 ], [ 9.169198751089743, 45.459819279515479 ], [ 9.169231449072763, 45.459798868258538 ], [ 9.170078514811157, 45.45926979740716 ], [ 9.169879342915818, 45.459111871619434 ], [ 9.169889687086584, 45.459105517623549 ], [ 9.170091844453399, 45.459261353368007 ], [ 9.170359892349808, 45.459089140517996 ], [ 9.170416132745054, 45.459053716685347 ], [ 9.17048000545045, 45.459008050919152 ], [ 9.170576778026179, 45.458947567466929 ], [ 9.170726284758491, 45.458856281741085 ], [ 9.170536266440161, 45.458702151828206 ], [ 9.170541471366599, 45.458698790436387 ], [ 9.170733162194526, 45.45885205212457 ], [ 9.171069770844882, 45.458643540408332 ], [ 9.171344978204026, 45.458473628223111 ], [ 9.171144851261715, 45.458313089542834 ], [ 9.171147027950093, 45.458311715774016 ], [ 9.171347855888801, 45.458471846162887 ], [ 9.171906126328926, 45.458125077232154 ], [ 9.171983184342583, 45.458079600295761 ], [ 9.172490578796902, 45.457775039980639 ], [ 9.172288243338173, 45.457608087787037 ], [ 9.172293569170737, 45.457605016630637 ], [ 9.172497482794897, 45.457770865905182 ], [ 9.17268518335416, 45.45765656454283 ], [ 9.172884627506194, 45.457535036608249 ], [ 9.172975502519931, 45.457479720900416 ], [ 9.173587359712846, 45.457126124221261 ], [ 9.173654101412243, 45.457087542002604 ], [ 9.173467471248941, 45.456927640169816 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.098329213107473, 45.458324115347224 ], [ 9.099579928823569, 45.458377907706101 ], [ 9.099587126959561, 45.45829500762801 ], [ 9.098035768014331, 45.458228282766399 ], [ 9.097160745076561, 45.45791848812766 ], [ 9.097156104085892, 45.457924980400243 ], [ 9.097154217330857, 45.457927004139947 ], [ 9.097072895713213, 45.458008251009751 ], [ 9.09699186557479, 45.457987877750433 ], [ 9.096935806852722, 45.458098303579625 ], [ 9.096901144380448, 45.458214791334001 ], [ 9.09688545756261, 45.45825724966862 ], [ 9.096189112865405, 45.459440262240754 ], [ 9.096133073659887, 45.459475025816765 ], [ 9.095980078635693, 45.459712412082176 ], [ 9.096029314007541, 45.45972812731511 ], [ 9.095973502657499, 45.459772092451743 ], [ 9.095903715877812, 45.459841881120553 ], [ 9.096266524595867, 45.460021561654273 ], [ 9.095878780817914, 45.459893228619883 ], [ 9.0958650804908, 45.459913728482704 ], [ 9.096254564000468, 45.460042637328151 ], [ 9.095983681490468, 45.460060231792028 ], [ 9.095995140007094, 45.460147600347788 ], [ 9.095730120215199, 45.460088656917691 ], [ 9.095703219051861, 45.460148556634266 ], [ 9.095860188186078, 45.46018346845576 ], [ 9.095849399197727, 45.460217357910217 ], [ 9.095687359069208, 45.460186796404088 ], [ 9.095494348789011, 45.460693594345742 ], [ 9.095661054925063, 45.460725035894349 ], [ 9.095659714526843, 45.460728626839625 ], [ 9.095799549894741, 45.460754475888081 ], [ 9.095816022083412, 45.46077666628829 ], [ 9.095850676738651, 45.460763926812248 ], [ 9.095929384734701, 45.46077847613001 ], [ 9.095851166786233, 45.460816525361139 ], [ 9.095873366567417, 45.460839125563751 ], [ 9.095979137681429, 45.460787673021812 ], [ 9.09654866371155, 45.460892948832182 ], [ 9.096428839020541, 45.461141942512747 ], [ 9.096493039877883, 45.461157242740335 ], [ 9.096614381438314, 45.460905096421655 ], [ 9.096684811467334, 45.460918115008539 ], [ 9.096725837906332, 45.460925852321175 ], [ 9.096618980831146, 45.461200383368521 ], [ 9.095754907973292, 45.461028618077592 ], [ 9.095685938676235, 45.46120043234248 ], [ 9.095499286678798, 45.461169127139854 ], [ 9.095473643314962, 45.461244842747526 ], [ 9.095328661825917, 45.461605752693664 ], [ 9.095508825027853, 45.461641592955097 ], [ 9.095508750365049, 45.461641773478171 ], [ 9.095328576723469, 45.461605964641251 ], [ 9.09523401664511, 45.461841575583655 ], [ 9.095083070535376, 45.4621550518223 ], [ 9.095080833165747, 45.462158887173771 ], [ 9.095672468757074, 45.46232979564212 ], [ 9.095903036491581, 45.462175389295588 ], [ 9.096251531964342, 45.462246763747665 ], [ 9.095531883833717, 45.46330035556435 ], [ 9.096105576663561, 45.463494397280357 ], [ 9.096643522147636, 45.463361011488551 ], [ 9.09723011724185, 45.46321499556705 ], [ 9.097480151382731, 45.462786353110765 ], [ 9.097606358696893, 45.462524230464894 ], [ 9.097792350314503, 45.462562319832934 ], [ 9.09796724190382, 45.462139417978207 ], [ 9.097787487460312, 45.462102605950967 ], [ 9.09778983482286, 45.462096756485728 ], [ 9.097970030808682, 45.46213257333693 ], [ 9.098216718492582, 45.461517970715192 ], [ 9.098023909059791, 45.461479646753311 ], [ 9.098061391760236, 45.461368958673134 ], [ 9.097983971111226, 45.461158248346045 ], [ 9.098133911291834, 45.461185961821315 ], [ 9.098322800980387, 45.460679859804493 ], [ 9.098170568130135, 45.460651722586498 ], [ 9.098161420430106, 45.460648695179678 ], [ 9.09816930729836, 45.460631132114656 ], [ 9.098040089101511, 45.460602395557615 ], [ 9.098038933612912, 45.460601473144798 ], [ 9.098333826990249, 45.460647960097724 ], [ 9.098371324520162, 45.460530159694102 ], [ 9.09784582998601, 45.460447320227274 ], [ 9.097666464138237, 45.460304133007632 ], [ 9.09760750721337, 45.460360204442189 ], [ 9.097684843043352, 45.4604219415572 ], [ 9.097286536171696, 45.460359149684884 ], [ 9.097140365524819, 45.460310773139192 ], [ 9.097149887345781, 45.460286309327792 ], [ 9.097441847796436, 45.460178975301844 ], [ 9.097554872226549, 45.460215049008255 ], [ 9.097488294654219, 45.460161899840699 ], [ 9.097665897582347, 45.46009660663114 ], [ 9.098438987128736, 45.46032196008165 ], [ 9.099228366825288, 45.458980802135983 ], [ 9.099269819360776, 45.458939386071904 ], [ 9.099375327713076, 45.458826212739496 ], [ 9.099445887084189, 45.458727502477799 ], [ 9.099365319234945, 45.458698980020856 ], [ 9.099392276545727, 45.458626008139497 ], [ 9.099421564230333, 45.45852757102476 ], [ 9.098795635056481, 45.458435337748099 ], [ 9.098793436582346, 45.458440826394792 ], [ 9.098329213107473, 45.458324115347224 ] ], [ [ 9.096209376121472, 45.459785600334534 ], [ 9.096886148336324, 45.460001611884636 ], [ 9.096518787942356, 45.460025474724716 ], [ 9.096545581224705, 45.459996968003587 ], [ 9.096209376121472, 45.459785600334534 ] ], [ [ 9.096123099111185, 45.460175728597108 ], [ 9.096525095773066, 45.460149617280635 ], [ 9.096790183730121, 45.460280899084935 ], [ 9.096123099111185, 45.460175728597108 ] ], [ [ 9.096632380063022, 45.460142648486887 ], [ 9.096918677805412, 45.460124051134606 ], [ 9.096871624554062, 45.460221830090525 ], [ 9.096632380063022, 45.460142648486887 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.143663995299955, 45.457039623599528 ], [ 9.142691194015473, 45.458677946969395 ], [ 9.142362873251139, 45.459257726822784 ], [ 9.142260408580187, 45.459378739876584 ], [ 9.142130100227662, 45.459624905594268 ], [ 9.142087075144655, 45.459722168034155 ], [ 9.142205847370468, 45.459748187911657 ], [ 9.142192566151177, 45.459818158358964 ], [ 9.14230471668186, 45.46011792404547 ], [ 9.142468159242226, 45.460337536132194 ], [ 9.142613931606377, 45.460454750361464 ], [ 9.142639172598237, 45.460476356634715 ], [ 9.142681088446539, 45.46051195812597 ], [ 9.143503490893698, 45.460032457933742 ], [ 9.144529552177255, 45.460257220952258 ], [ 9.144551730881297, 45.460207078328814 ], [ 9.144576623435688, 45.460160050097237 ], [ 9.144612281597116, 45.460117934906151 ], [ 9.14388204622519, 45.45981173723245 ], [ 9.143941319479644, 45.459777177062684 ], [ 9.144701676500658, 45.459990407340371 ], [ 9.145059635394643, 45.459358243820169 ], [ 9.146019680378195, 45.457741290011029 ], [ 9.146052897044418, 45.457686737960145 ], [ 9.143701733463351, 45.456977651970938 ], [ 9.143663995299955, 45.457039623599528 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.111835357565555, 45.459204609822336 ], [ 9.11321586895235, 45.459502600629101 ], [ 9.113235183229385, 45.459508653727106 ], [ 9.114275817487783, 45.457864145872861 ], [ 9.114114527116973, 45.457813598167625 ], [ 9.112366683391485, 45.457436316970913 ], [ 9.11204455127665, 45.457400189999078 ], [ 9.111770591039958, 45.457398589472653 ], [ 9.110206197207084, 45.457519472769619 ], [ 9.110066818268445, 45.45753532070767 ], [ 9.11047480399181, 45.459312480858074 ], [ 9.110550010391945, 45.45930392990519 ], [ 9.111835357565555, 45.459204609822336 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.081049609049746, 45.453864070202691 ], [ 9.081963688634286, 45.45392481879118 ], [ 9.082489966776329, 45.453959738565928 ], [ 9.08252832646116, 45.453958888061742 ], [ 9.082645692899217, 45.453974056351207 ], [ 9.082711236576724, 45.453987163371906 ], [ 9.083794812712659, 45.454060439504552 ], [ 9.083909269815548, 45.454077254474377 ], [ 9.084086449073046, 45.454154872525088 ], [ 9.084490570767784, 45.454272266071285 ], [ 9.084754864911103, 45.454291523073529 ], [ 9.084790622708299, 45.45431901192206 ], [ 9.084825317823618, 45.454296656308799 ], [ 9.085028814155908, 45.454311482906448 ], [ 9.085476946345, 45.454270186283409 ], [ 9.085411590436715, 45.453918890389339 ], [ 9.08573556177952, 45.453710135349624 ], [ 9.086054494815869, 45.454011289333273 ], [ 9.086177595154878, 45.453946711674668 ], [ 9.0867645784556, 45.453659820019411 ], [ 9.0868758893058, 45.453605414378863 ], [ 9.086513129756435, 45.453237768565451 ], [ 9.086572659035014, 45.453230839315026 ], [ 9.086560391814558, 45.453178634536862 ], [ 9.086677172869193, 45.453103382317551 ], [ 9.086599727018777, 45.453043847191772 ], [ 9.086353228283077, 45.452853245769056 ], [ 9.086303828156263, 45.452810414706633 ], [ 9.086168021627261, 45.452888006400812 ], [ 9.085416945608275, 45.45212678293192 ], [ 9.085305651733254, 45.452181179600984 ], [ 9.084907177856284, 45.45237593428687 ], [ 9.084839583260385, 45.452373713527237 ], [ 9.084550754014073, 45.452239694076809 ], [ 9.084011607393217, 45.452167065926531 ], [ 9.08296175030123, 45.452104651526334 ], [ 9.082757962325745, 45.452117289564619 ], [ 9.082679535651426, 45.452129342102921 ], [ 9.082514704808514, 45.452153191161095 ], [ 9.082204033962807, 45.452132577078487 ], [ 9.08136563656576, 45.452076858495296 ], [ 9.081029177251208, 45.452006346235493 ], [ 9.080865317055583, 45.451976339492788 ], [ 9.080588928367213, 45.451953902011297 ], [ 9.080270692930585, 45.451965558991297 ], [ 9.07996562485758, 45.452011723071813 ], [ 9.079654705062419, 45.452107390444958 ], [ 9.079389707648042, 45.452238412054733 ], [ 9.079139079109352, 45.452413026191081 ], [ 9.078876834955979, 45.452674179148126 ], [ 9.078583548295979, 45.453151494590159 ], [ 9.078468461670399, 45.453180161113728 ], [ 9.078122778949576, 45.453254393719774 ], [ 9.077863330325709, 45.45336558557733 ], [ 9.077623757356989, 45.453499438335854 ], [ 9.077504756570875, 45.453607575976555 ], [ 9.077354199884054, 45.453743697210655 ], [ 9.077174645568469, 45.454101393149536 ], [ 9.077195983746869, 45.45438509034998 ], [ 9.079082009445315, 45.454314806568114 ], [ 9.079073196562799, 45.454357782394709 ], [ 9.079012468896879, 45.454435924176465 ], [ 9.078958770851372, 45.454474173181922 ], [ 9.078836823305773, 45.454512661415578 ], [ 9.079023441529712, 45.45494312145167 ], [ 9.079268771498043, 45.454890438231885 ], [ 9.080108022137818, 45.454681388652872 ], [ 9.080430001200124, 45.454513181315484 ], [ 9.080618476425292, 45.454361795375057 ], [ 9.080699946381525, 45.454276104242709 ], [ 9.080780559639114, 45.454228828663865 ], [ 9.081049609049746, 45.453864070202691 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.204408028690009, 45.452449256613832 ], [ 9.204900544177576, 45.45306297746361 ], [ 9.204949904558889, 45.453124778176822 ], [ 9.206064707873725, 45.452683701030985 ], [ 9.204953202346493, 45.453128881905045 ], [ 9.205000501572709, 45.453187382362103 ], [ 9.205496336096672, 45.453799634115008 ], [ 9.206607407873594, 45.453353901030923 ], [ 9.205501724850937, 45.453806223169785 ], [ 9.20596841757078, 45.45437132765516 ], [ 9.206015111792386, 45.454427843053146 ], [ 9.206047385014116, 45.454466911556565 ], [ 9.206464283864609, 45.454970564975149 ], [ 9.206859639384158, 45.45545773945328 ], [ 9.206901027179876, 45.455509158951607 ], [ 9.209126571088836, 45.454621832265531 ], [ 9.209083106849656, 45.454567834095386 ], [ 9.208682633919826, 45.454074377515241 ], [ 9.207572107873354, 45.454520801030732 ], [ 9.208677153455701, 45.454067691235387 ], [ 9.208258330202751, 45.453561737440992 ], [ 9.208226312523459, 45.45352298010922 ], [ 9.207120707873468, 45.453975401030803 ], [ 9.208226259835612, 45.453522916336667 ], [ 9.208179719791087, 45.453466590225808 ], [ 9.207715787424709, 45.452904854651145 ], [ 9.207223275491506, 45.452296735350217 ], [ 9.207177852226518, 45.452240557830535 ], [ 9.207128852457112, 45.452179211730801 ], [ 9.206668778216617, 45.451605944196871 ], [ 9.206647724715715, 45.45157607574653 ], [ 9.204356474803877, 45.452376114825881 ], [ 9.204408028690009, 45.452449256613832 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.122063584724335, 45.451592071063864 ], [ 9.120827260597835, 45.451259303988685 ], [ 9.120601217437953, 45.451200251258953 ], [ 9.119711185128239, 45.45288794897025 ], [ 9.119925379266308, 45.452943906204048 ], [ 9.121150008104022, 45.453273526533856 ], [ 9.121205108387363, 45.453288356193639 ], [ 9.121300559133246, 45.453317793172197 ], [ 9.122600720810222, 45.453671573257701 ], [ 9.122670359041766, 45.453690078197447 ], [ 9.123122107907252, 45.452848001036983 ], [ 9.12267619909489, 45.453691618722388 ], [ 9.1227712290417, 45.453716500426417 ], [ 9.123807371190278, 45.453987885775263 ], [ 9.123959924048407, 45.454027825876658 ], [ 9.124851678492709, 45.452340574345591 ], [ 9.124699355951666, 45.45230069469887 ], [ 9.123663244673326, 45.452029318437802 ], [ 9.123570926120983, 45.452005146742927 ], [ 9.123513454832249, 45.451989874064559 ], [ 9.12227545090213, 45.451653009047206 ], [ 9.122203662484351, 45.451630869427682 ], [ 9.121690407907776, 45.452455301037133 ], [ 9.122147174329935, 45.451614568222254 ], [ 9.122063584724335, 45.451592071063864 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.142724244986763, 45.451655124489008 ], [ 9.143594869923049, 45.451933505334679 ], [ 9.144745502438798, 45.452301384781514 ], [ 9.144832000145902, 45.452329052138822 ], [ 9.145361107898088, 45.451509601035475 ], [ 9.144841527443306, 45.452332066576098 ], [ 9.144923964760824, 45.452357865374083 ], [ 9.147050781932681, 45.453026384138902 ], [ 9.147087475364646, 45.453037528099436 ], [ 9.147131201563942, 45.453050672855554 ], [ 9.147202224598583, 45.453074435926169 ], [ 9.147868584610951, 45.453283530362995 ], [ 9.148464630548263, 45.453474337055653 ], [ 9.148994107896772, 45.452655001035126 ], [ 9.14847299383934, 45.453476988852657 ], [ 9.149338503929352, 45.453748792749039 ], [ 9.149401016831638, 45.453768373400834 ], [ 9.149543926455236, 45.453814839586116 ], [ 9.151672230351519, 45.454479798339229 ], [ 9.151780938636454, 45.454513807168027 ], [ 9.15281986207747, 45.452868792439922 ], [ 9.152710863351501, 45.452834692929052 ], [ 9.150599246790486, 45.452174951467072 ], [ 9.150465534023835, 45.452131476155529 ], [ 9.149929207896433, 45.45294860103504 ], [ 9.150449168747182, 45.452126253017461 ], [ 9.150380133275741, 45.45210462989602 ], [ 9.150037155565988, 45.451996923203048 ], [ 9.150127672390729, 45.451838100887009 ], [ 9.149422039177125, 45.451160024055696 ], [ 9.148726019744446, 45.450957432625621 ], [ 9.148421088227632, 45.450956310568557 ], [ 9.148417166921782, 45.451484660058235 ], [ 9.148272181624613, 45.451439165506486 ], [ 9.148206157007465, 45.451417074934191 ], [ 9.147969651967893, 45.451767249208714 ], [ 9.147942561909968, 45.451759600242838 ], [ 9.148159417270971, 45.451402237721389 ], [ 9.148096397673882, 45.451383293227209 ], [ 9.148078994684486, 45.45137800788865 ], [ 9.145965473849184, 45.450713671877949 ], [ 9.145885450514177, 45.450688628099805 ], [ 9.14580360134666, 45.450662447778228 ], [ 9.144652719288462, 45.450294490578585 ], [ 9.143781740608011, 45.450015998168944 ], [ 9.143681971459213, 45.449984152535293 ], [ 9.1426256290593, 45.451623646994477 ], [ 9.142724244986763, 45.451655124489008 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.158986267078944, 45.447400182642923 ], [ 9.158647549333844, 45.447330720069459 ], [ 9.158541497802739, 45.447308912312288 ], [ 9.157824307065855, 45.449036888515217 ], [ 9.157930808554791, 45.449058788844248 ], [ 9.158270472555678, 45.449128445844487 ], [ 9.159855822283731, 45.449453812350697 ], [ 9.159942287125368, 45.449472035475011 ], [ 9.160065215366908, 45.449497975026055 ], [ 9.161813898898032, 45.44985587264518 ], [ 9.162516011325804, 45.450000146573132 ], [ 9.163057589993041, 45.450112056307844 ], [ 9.163380600429942, 45.450178779194104 ], [ 9.163508328032579, 45.450205160995367 ], [ 9.163607069790558, 45.450225629560236 ], [ 9.163717293415745, 45.450249147736571 ], [ 9.163768434882755, 45.450260162855486 ], [ 9.163813588338465, 45.450269838704436 ], [ 9.164803371554806, 45.450482767289571 ], [ 9.165761434081796, 45.450693523356207 ], [ 9.165815854254427, 45.450570964624809 ], [ 9.165824977034667, 45.450573627834153 ], [ 9.165772390565712, 45.450695895638198 ], [ 9.167348012383318, 45.451031600667022 ], [ 9.167446492087889, 45.450802612096055 ], [ 9.167455569655562, 45.450803848559019 ], [ 9.167360031418665, 45.451034116159981 ], [ 9.167574930350522, 45.451078286684073 ], [ 9.168605479133932, 45.451301569164571 ], [ 9.168981707888404, 45.450441301033891 ], [ 9.168609016398102, 45.451302331601617 ], [ 9.169160724023893, 45.451420633372756 ], [ 9.169531605466798, 45.450563765334678 ], [ 9.169531653769321, 45.450563776091698 ], [ 9.169170755467126, 45.451422752812562 ], [ 9.170911979735992, 45.45178515825026 ], [ 9.171008731020118, 45.451805268509851 ], [ 9.171107434286856, 45.451826783423641 ], [ 9.173438656779723, 45.452305748666909 ], [ 9.173826016863355, 45.452384829956934 ], [ 9.174350096784972, 45.452497399990243 ], [ 9.176864801665328, 45.453037601659602 ], [ 9.177051456190718, 45.452607151513 ], [ 9.176848062478344, 45.452506348878025 ], [ 9.178392845686728, 45.451763732711179 ], [ 9.178380263570487, 45.451749179100865 ], [ 9.178346147696658, 45.451716939845014 ], [ 9.178013071275053, 45.451402078070934 ], [ 9.175096737527312, 45.450775607158548 ], [ 9.174564085463766, 45.450661196106246 ], [ 9.174427166339104, 45.450976981317993 ], [ 9.174416957104819, 45.450973328057536 ], [ 9.174547054638401, 45.450657628764596 ], [ 9.174153296639671, 45.450577241576887 ], [ 9.17184416633461, 45.450102816512036 ], [ 9.171757320064836, 45.450083886196538 ], [ 9.1713790078875, 45.450943701033644 ], [ 9.171741193430691, 45.450080452764091 ], [ 9.171637009960026, 45.450058797793801 ], [ 9.169901071028484, 45.449697493220505 ], [ 9.169739133371097, 45.449662769590724 ], [ 9.169717878922294, 45.449650249931281 ], [ 9.16899449733209, 45.449292779223057 ], [ 9.168727716123898, 45.449191529867022 ], [ 9.168525539785794, 45.449141215265456 ], [ 9.168338092098393, 45.449094136190631 ], [ 9.168049647146894, 45.449051293756824 ], [ 9.167979500306544, 45.449285272427005 ], [ 9.167964307066999, 45.449282035439062 ], [ 9.168028570270145, 45.449048293260411 ], [ 9.167840120513015, 45.44902262442379 ], [ 9.167456823355257, 45.448974879199376 ], [ 9.166702236273402, 45.44888082538548 ], [ 9.166695095924727, 45.448878740937907 ], [ 9.166561241967843, 45.4488557841198 ], [ 9.166558579704745, 45.448863474799552 ], [ 9.166556629433593, 45.448863244123046 ], [ 9.166552117887598, 45.448882141528081 ], [ 9.166520198030364, 45.44897435059152 ], [ 9.166518899588061, 45.448974073932995 ], [ 9.165558625984442, 45.448762831948002 ], [ 9.16455957627845, 45.448547910425951 ], [ 9.164513841559106, 45.448538110350547 ], [ 9.16446205682808, 45.448526955847292 ], [ 9.164344183210313, 45.448501805701632 ], [ 9.163973207890283, 45.449363201034323 ], [ 9.164334475028168, 45.448499763810297 ], [ 9.164230276481977, 45.448478164134535 ], [ 9.164100791737109, 45.448451419009359 ], [ 9.163777961805355, 45.448384733553205 ], [ 9.163234671405984, 45.448272470361829 ], [ 9.162529974067757, 45.448127665469308 ], [ 9.162171607890965, 45.448991701034487 ], [ 9.162528637670638, 45.448127391410324 ], [ 9.160789449233953, 45.447771437988102 ], [ 9.160676525585641, 45.447747609207831 ], [ 9.160585010649269, 45.447728321724249 ], [ 9.160218207891697, 45.448590601034681 ], [ 9.160576144838938, 45.447726477740275 ], [ 9.158986267078944, 45.447400182642923 ] ], [ [ 9.165849433891283, 45.450495340226098 ], [ 9.16614290788945, 45.449834401034181 ], [ 9.165883543910992, 45.450437454446842 ], [ 9.165849433891283, 45.450495340226098 ] ], [ [ 9.174190807886424, 45.451522101033426 ], [ 9.174191646063294, 45.451520067136585 ], [ 9.174191685982642, 45.45152007587739 ], [ 9.174190807886424, 45.451522101033426 ] ], [ [ 9.174206653753309, 45.451483649864841 ], [ 9.174206898665162, 45.451483055567678 ], [ 9.174207664642015, 45.45148322421911 ], [ 9.174207408434954, 45.451483815111068 ], [ 9.174206653753309, 45.451483649864841 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.185271228727801, 45.453860324407884 ], [ 9.185291525723796, 45.453819808412149 ], [ 9.185269854801644, 45.453814430747371 ], [ 9.185266319726811, 45.453696347238008 ], [ 9.185061293374408, 45.453699387457235 ], [ 9.185055357139657, 45.453567753761362 ], [ 9.184340186062773, 45.453583727516204 ], [ 9.184085407882716, 45.453520501032514 ], [ 9.18377239844683, 45.452647775415144 ], [ 9.183710193269215, 45.452658828294986 ], [ 9.183264967763307, 45.452739398896476 ], [ 9.183002246252931, 45.452880225519884 ], [ 9.183551782469271, 45.453388072716457 ], [ 9.182879302766731, 45.45322118088184 ], [ 9.182803338232059, 45.453372804823211 ], [ 9.182704177728704, 45.45356972670848 ], [ 9.182705687001514, 45.453620218143151 ], [ 9.182498857291442, 45.453624834001225 ], [ 9.182506853330988, 45.453802321782412 ], [ 9.182563574138042, 45.454293998221971 ], [ 9.182622870445819, 45.454727115383392 ], [ 9.18262809422998, 45.454765380397291 ], [ 9.182689023188139, 45.455420106933616 ], [ 9.182698557916334, 45.455512151275983 ], [ 9.185249654853497, 45.455381236548725 ], [ 9.185249068495272, 45.455375578156691 ], [ 9.185446928862781, 45.455365235102192 ], [ 9.185438129041392, 45.455281854604564 ], [ 9.185367716128415, 45.454614274825282 ], [ 9.184092307883095, 45.45468090103239 ], [ 9.185365936846861, 45.454599136719978 ], [ 9.185359235693245, 45.454547436795742 ], [ 9.185271676342198, 45.453875276186537 ], [ 9.185271228727801, 45.453860324407884 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.238932941460167, 45.485031248725264 ], [ 9.238878781037654, 45.485026627805802 ], [ 9.238673947242848, 45.485013256871419 ], [ 9.238655121910519, 45.485155953136193 ], [ 9.238633170759011, 45.48515583548766 ], [ 9.238511724231318, 45.485157597388273 ], [ 9.238514852888425, 45.485264312498657 ], [ 9.238469428831516, 45.485267887273189 ], [ 9.238525246295762, 45.485618817273362 ], [ 9.238537757737953, 45.486045558951361 ], [ 9.238437464794773, 45.486805744924048 ], [ 9.238560280835578, 45.486813761839365 ], [ 9.238564492397556, 45.486957404512978 ], [ 9.238595801922855, 45.486956950321861 ], [ 9.238580876666411, 45.487047277415314 ], [ 9.239049158537062, 45.487085559570616 ], [ 9.239400574337013, 45.487114375465751 ], [ 9.24026431243869, 45.487189526205114 ], [ 9.240596478291977, 45.487219551924817 ], [ 9.241337463862756, 45.487286550602654 ], [ 9.241362930380909, 45.48714719567959 ], [ 9.241371505567125, 45.487147997924069 ], [ 9.241347635505599, 45.487287441157726 ], [ 9.242329808288886, 45.487370620292943 ], [ 9.24181163717534, 45.488124699632316 ], [ 9.241876773255537, 45.488146843973333 ], [ 9.241951455023415, 45.488172252021492 ], [ 9.242248393423159, 45.488285574892693 ], [ 9.242153315844078, 45.488267101632175 ], [ 9.242000914500183, 45.488246731624812 ], [ 9.241759140247437, 45.48914161481548 ], [ 9.241260162666189, 45.489209300509003 ], [ 9.241154317036093, 45.48922649553667 ], [ 9.241615423324665, 45.490630668132397 ], [ 9.241581144193841, 45.490733115479095 ], [ 9.241481355560765, 45.491013772366216 ], [ 9.241455278534779, 45.491096675935687 ], [ 9.242818281105341, 45.491308756565104 ], [ 9.242810842314157, 45.491722881414162 ], [ 9.242790119077878, 45.491839665760871 ], [ 9.242808715214956, 45.491841298134204 ], [ 9.242808641118275, 45.491845423127316 ], [ 9.242861008591172, 45.491845888442541 ], [ 9.24399172210615, 45.491945136342423 ], [ 9.244512575945691, 45.490372055512779 ], [ 9.243864722465382, 45.490265939310156 ], [ 9.244340935114094, 45.490343257444401 ], [ 9.244342014137384, 45.490339969676221 ], [ 9.244514070415093, 45.490367487990206 ], [ 9.244685561621848, 45.489837041876818 ], [ 9.245070917952946, 45.489898718123484 ], [ 9.245228568281185, 45.489411413577237 ], [ 9.245175523985063, 45.489157216907081 ], [ 9.245201070518114, 45.489078754775356 ], [ 9.245215911569451, 45.489033513349739 ], [ 9.245309331938858, 45.488761883439295 ], [ 9.245470201988523, 45.488263491634314 ], [ 9.245490218029808, 45.488128901904219 ], [ 9.245506901824678, 45.488073642369173 ], [ 9.245616539207237, 45.487765263837289 ], [ 9.245768720801744, 45.487800225455658 ], [ 9.245908702478635, 45.487832454519122 ], [ 9.246160940144785, 45.48785634483302 ], [ 9.246181412312039, 45.487749405325204 ], [ 9.246183576362078, 45.48775008383754 ], [ 9.246163498961, 45.487856585338079 ], [ 9.246545204886143, 45.487892185882117 ], [ 9.246831074998525, 45.487918776205724 ], [ 9.24696378724909, 45.487931685996671 ], [ 9.247089543785389, 45.487942788210027 ], [ 9.247107624339934, 45.487841464966145 ], [ 9.247176489037564, 45.487847527451656 ], [ 9.247203471604195, 45.487695886970641 ], [ 9.247566262423407, 45.487735987909836 ], [ 9.247790168932237, 45.487762346407628 ], [ 9.247874023375184, 45.487773037539561 ], [ 9.247927846380083, 45.487782278937473 ], [ 9.248226140929216, 45.487842421570292 ], [ 9.248458980300748, 45.487874869097027 ], [ 9.248611311645424, 45.487889503471983 ], [ 9.249576798011971, 45.487982392518823 ], [ 9.249605599633258, 45.487834276929952 ], [ 9.249646483814423, 45.487837275449706 ], [ 9.249625763860243, 45.487986429060953 ], [ 9.251290773568627, 45.488100850406532 ], [ 9.251709074264445, 45.488123361777369 ], [ 9.252132175189539, 45.488137518765662 ], [ 9.252719154131906, 45.488150578269156 ], [ 9.252941589055741, 45.488159571590529 ], [ 9.255449592897646, 45.488318658473304 ], [ 9.255460785271806, 45.488231347433413 ], [ 9.255477236331503, 45.488232303824091 ], [ 9.255467818707794, 45.488319722068951 ], [ 9.256347982789174, 45.488366630165089 ], [ 9.258121399870094, 45.488494130546023 ], [ 9.258139024383059, 45.488372836730719 ], [ 9.258142690397003, 45.488373063367732 ], [ 9.258125635052671, 45.488494429996933 ], [ 9.258373038937943, 45.488511630258344 ], [ 9.258390367529296, 45.488388315343848 ], [ 9.258392853699288, 45.488388468370502 ], [ 9.258412218270403, 45.48823281883363 ], [ 9.258624772848899, 45.486720171519011 ], [ 9.258600612242542, 45.48671849182346 ], [ 9.258615958537849, 45.486595133435294 ], [ 9.25839200360983, 45.486581348511905 ], [ 9.258103383396783, 45.486563505118191 ], [ 9.256581044828641, 45.486490144291629 ], [ 9.25645652023243, 45.486482905909355 ], [ 9.256068080386136, 45.485917190786246 ], [ 9.255834241438684, 45.485996632631846 ], [ 9.255821797129055, 45.485999381612245 ], [ 9.25494750043959, 45.485954772871203 ], [ 9.254734511756775, 45.485961816587974 ], [ 9.254577202580446, 45.485979815361823 ], [ 9.254481189889763, 45.485995395948557 ], [ 9.254464560520736, 45.485989378744122 ], [ 9.254306791678248, 45.485952617156912 ], [ 9.254188385962451, 45.48593288288064 ], [ 9.254050070561973, 45.485918623547221 ], [ 9.253919316001214, 45.485915927587975 ], [ 9.253788599930864, 45.485919929080289 ], [ 9.253648841255972, 45.485935778004588 ], [ 9.253526534638219, 45.485957664427907 ], [ 9.253398090270728, 45.485989775453483 ], [ 9.253277503363055, 45.486030422600521 ], [ 9.253210798325448, 45.486058216252864 ], [ 9.253062144223568, 45.486048819477993 ], [ 9.253050846958315, 45.486137244962052 ], [ 9.252960130569051, 45.48619440816816 ], [ 9.252881790537536, 45.486253755942812 ], [ 9.252774337900616, 45.486246314116769 ], [ 9.252021018567847, 45.486172498621855 ], [ 9.251124525013772, 45.486118759642963 ], [ 9.250479581212732, 45.486088426769378 ], [ 9.249661061999671, 45.486028396300291 ], [ 9.249324357894288, 45.485995791267911 ], [ 9.248381682342949, 45.485894857479771 ], [ 9.248357803950404, 45.486005195714881 ], [ 9.248341362422302, 45.486003099490475 ], [ 9.248362821171364, 45.485892938871544 ], [ 9.24787622871149, 45.485846039588402 ], [ 9.247856790958997, 45.48594582082805 ], [ 9.24784891391621, 45.485944950147164 ], [ 9.247867332437506, 45.485845204464979 ], [ 9.247449238934529, 45.485807005048656 ], [ 9.247432270142516, 45.485898896038393 ], [ 9.247423433574404, 45.485897919262783 ], [ 9.247439351339009, 45.48580612916831 ], [ 9.246797620086108, 45.485751065083782 ], [ 9.246638328959792, 45.48572910172981 ], [ 9.246439242407167, 45.485700497938836 ], [ 9.24610341328502, 45.485670349093994 ], [ 9.246086549204874, 45.48576329252537 ], [ 9.246079678629981, 45.485762725416855 ], [ 9.246095751039814, 45.485669677727685 ], [ 9.245830155179965, 45.485646978074406 ], [ 9.244597678225869, 45.485541901649015 ], [ 9.243913537885613, 45.485481267962719 ], [ 9.24349508260663, 45.485439383355228 ], [ 9.2434782773559, 45.485522454730962 ], [ 9.243460235912899, 45.485520836687897 ], [ 9.243460039010118, 45.485520818033045 ], [ 9.243474985882203, 45.485437485911824 ], [ 9.243275286559911, 45.485419762839982 ], [ 9.243184976797645, 45.485411086381106 ], [ 9.24316877283589, 45.485494537479404 ], [ 9.243161189396313, 45.485493928520398 ], [ 9.243176630872398, 45.485410304212941 ], [ 9.242860716064438, 45.485381440407451 ], [ 9.242709746404547, 45.485367207242248 ], [ 9.24171281093879, 45.485272932236015 ], [ 9.241695732303222, 45.48536228859971 ], [ 9.241695653327955, 45.485362281211238 ], [ 9.241712723188593, 45.485272923939711 ], [ 9.241267330097388, 45.485230824583496 ], [ 9.241223314264394, 45.485461228492461 ], [ 9.241223186223605, 45.485461216915141 ], [ 9.241267157602913, 45.485230808287056 ], [ 9.240967475519669, 45.485202509972709 ], [ 9.240823490467378, 45.485188911381421 ], [ 9.240806605577848, 45.485277370505429 ], [ 9.240788226268746, 45.485275985336443 ], [ 9.24080313309188, 45.4851871054817 ], [ 9.240489837981523, 45.485161105878888 ], [ 9.240095576565556, 45.485128400772254 ], [ 9.239541709356082, 45.485082570333184 ], [ 9.239502792284002, 45.485079367496674 ], [ 9.239018591575819, 45.485038436485866 ], [ 9.238932941460167, 45.485031248725264 ] ], [ [ 9.244807348767406, 45.487613873835357 ], [ 9.244911966333005, 45.487623887622249 ], [ 9.24456446550071, 45.487782431334402 ], [ 9.244566945154087, 45.487772561626642 ], [ 9.244807348767406, 45.487613873835357 ] ], [ [ 9.24353916650975, 45.488809786613452 ], [ 9.243549707875921, 45.488811497545896 ], [ 9.243549363143506, 45.488811932203859 ], [ 9.243539400303401, 45.488810327252395 ], [ 9.24353916650975, 45.488809786613452 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.188312593090174, 45.488471865099321 ], [ 9.189230064383368, 45.489347585152771 ], [ 9.189282792175147, 45.489419637761372 ], [ 9.191558406979389, 45.488595752959874 ], [ 9.19141193339272, 45.488395606905264 ], [ 9.190387601316996, 45.487417925581397 ], [ 9.190343440413177, 45.487374023722317 ], [ 9.188254156122449, 45.488413768765732 ], [ 9.188312593090174, 45.488471865099321 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.165048559895739, 45.483696396890352 ], [ 9.164068288957658, 45.484433116602737 ], [ 9.163992170798755, 45.484490320414054 ], [ 9.163903800226375, 45.484554938392399 ], [ 9.163509438774396, 45.48485916504896 ], [ 9.163046085806132, 45.485207935874108 ], [ 9.162885781628454, 45.485328636325953 ], [ 9.162795119881682, 45.485396731204439 ], [ 9.163729107895257, 45.486012001031064 ], [ 9.162782943173303, 45.485406006487764 ], [ 9.162690071323338, 45.485477752058515 ], [ 9.162587495807527, 45.485556872387868 ], [ 9.162151406847572, 45.48588935369316 ], [ 9.163091907895575, 45.48649970103105 ], [ 9.162151016114729, 45.485889651726403 ], [ 9.160902497942972, 45.486842371992488 ], [ 9.16075729820589, 45.48701644273627 ], [ 9.160680665767694, 45.487141837652054 ], [ 9.162425044087318, 45.487669256319961 ], [ 9.162407062532353, 45.487686327451406 ], [ 9.16287752224609, 45.487991351910772 ], [ 9.164032624665934, 45.487109891543852 ], [ 9.164471028405108, 45.48677563695734 ], [ 9.163530507895359, 45.486165301031072 ], [ 9.164476036354754, 45.486771796437353 ], [ 9.164581436120697, 45.486690495573882 ], [ 9.164669246820067, 45.486622658481252 ], [ 9.164754411641685, 45.486558691527179 ], [ 9.164916021104661, 45.486437005155132 ], [ 9.165384649551989, 45.486084254644076 ], [ 9.164449707894891, 45.485469701031057 ], [ 9.1653952745549, 45.486076158035814 ], [ 9.165771857605234, 45.485785639127748 ], [ 9.165842608193683, 45.485733903205087 ], [ 9.164920407894655, 45.485109901031038 ], [ 9.165854641775244, 45.485724982534904 ], [ 9.165936741644986, 45.485663281870302 ], [ 9.166916163705984, 45.484927181664105 ], [ 9.167001676090772, 45.484862996751055 ], [ 9.165134360029116, 45.483631997584482 ], [ 9.165048559895739, 45.483696396890352 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.227809517100404, 45.481028749925748 ], [ 9.227813893371071, 45.480623233963009 ], [ 9.227861836166205, 45.480548717824853 ], [ 9.22791514520569, 45.480286324864842 ], [ 9.227885764938216, 45.480089087325396 ], [ 9.22787577653976, 45.480060955131968 ], [ 9.227886505940429, 45.479367809110357 ], [ 9.225327710186063, 45.479348178613215 ], [ 9.225315279972222, 45.480148855930508 ], [ 9.225313961637909, 45.48025216149211 ], [ 9.225343683665399, 45.480365193148018 ], [ 9.225257624877115, 45.480365473330053 ], [ 9.225257765499091, 45.480386850867568 ], [ 9.225257057308337, 45.480419629328331 ], [ 9.225358282457346, 45.480420711586767 ], [ 9.225359935687459, 45.480426998726934 ], [ 9.225256946728177, 45.480426446443587 ], [ 9.225250533333638, 45.481018246398214 ], [ 9.226013461810467, 45.481022335419709 ], [ 9.226015631016855, 45.481024913522184 ], [ 9.225250496333203, 45.48102463032383 ], [ 9.225250393442607, 45.481160963521859 ], [ 9.225250335365557, 45.481197319880394 ], [ 9.225238754251583, 45.481331092583908 ], [ 9.226311931752848, 45.481377064425068 ], [ 9.226318218834766, 45.481384536512174 ], [ 9.225236441050731, 45.481377610878141 ], [ 9.225235642757086, 45.481439270858715 ], [ 9.225233342241737, 45.481607130827783 ], [ 9.226512807869309, 45.481615801026933 ], [ 9.225233339765529, 45.481607313428306 ], [ 9.225223623373815, 45.482331513352023 ], [ 9.226503107870165, 45.482340001026849 ], [ 9.22522361086884, 45.482332503041768 ], [ 9.225217106691302, 45.482881206305464 ], [ 9.225197077822035, 45.484306238489999 ], [ 9.22519481053577, 45.484370769199174 ], [ 9.226474007869689, 45.48439300102666 ], [ 9.225194465065018, 45.484400569745425 ], [ 9.225195067768077, 45.484451033980584 ], [ 9.225174641193258, 45.485970698119743 ], [ 9.22517384285845, 45.486033047227401 ], [ 9.225173566305475, 45.48605164011687 ], [ 9.225173182807138, 45.486073088830089 ], [ 9.225172172505937, 45.486133398819241 ], [ 9.225141235884102, 45.487910990259856 ], [ 9.226420807870175, 45.487922001026334 ], [ 9.225141211269115, 45.487912509304927 ], [ 9.225131696912408, 45.488546609226908 ], [ 9.225129190381598, 45.488716889492991 ], [ 9.227688425724686, 45.488735498224152 ], [ 9.227690920550495, 45.488565488345323 ], [ 9.227700393483211, 45.487932237942694 ], [ 9.227731240051506, 45.486155197193533 ], [ 9.227732239794042, 45.486095339747251 ], [ 9.227732632881832, 45.486073298885934 ], [ 9.226453107869919, 45.486062001026511 ], [ 9.227732663954297, 45.486071396294534 ], [ 9.227732975178156, 45.486050479970743 ], [ 9.227733777587844, 45.485987487137848 ], [ 9.227754347360865, 45.484451992829918 ], [ 9.22775372872723, 45.484400322780957 ], [ 9.227755938900259, 45.484337322582597 ], [ 9.227776099602572, 45.482898278093188 ], [ 9.22649660786948, 45.482889401026767 ], [ 9.227776117589523, 45.482896884727289 ], [ 9.227782599310046, 45.482347979528242 ], [ 9.227792275080564, 45.481624365588544 ], [ 9.2277945700286, 45.481456356875874 ], [ 9.227795074574964, 45.481417257962399 ], [ 9.227806960287152, 45.481279895038263 ], [ 9.226595869674494, 45.481228030474512 ], [ 9.226593562302609, 45.481225250693853 ], [ 9.227809323296457, 45.481226191004474 ], [ 9.227809421859098, 45.481162691006148 ], [ 9.227809517100404, 45.481028749925748 ] ], [ [ 9.2264269699415, 45.481024549544514 ], [ 9.226530007869039, 45.481025101026979 ], [ 9.226427396804507, 45.481025063807323 ], [ 9.2264269699415, 45.481024549544514 ] ], [ [ 9.22599007320413, 45.48030757486007 ], [ 9.225992432920888, 45.480219285293238 ], [ 9.226014194677898, 45.480166742583357 ], [ 9.226537107869138, 45.480361301027017 ], [ 9.226007216422158, 45.480363030704034 ], [ 9.225999903747487, 45.480346788128237 ], [ 9.22599007320413, 45.48030757486007 ] ], [ [ 9.225877580292297, 45.480429773215093 ], [ 9.225890008822459, 45.480426395116382 ], [ 9.226536407869137, 45.480433301027034 ], [ 9.225877580292297, 45.480429773215093 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.203808796047435, 45.491916465167016 ], [ 9.202724853536878, 45.492465942049222 ], [ 9.202018332259804, 45.492805313512022 ], [ 9.202740107880501, 45.493548601027548 ], [ 9.201998116312463, 45.492815226031766 ], [ 9.200874210602704, 45.493377688178434 ], [ 9.200754055551451, 45.493445176459026 ], [ 9.200697334785513, 45.493477056437108 ], [ 9.202295300873601, 45.494883339908689 ], [ 9.202351540619102, 45.4948517297316 ], [ 9.202416038966733, 45.4948155014959 ], [ 9.203472078474414, 45.494286995915203 ], [ 9.204181807529778, 45.49394607934002 ], [ 9.20346000788016, 45.493202801027536 ], [ 9.204208319823648, 45.493932995009466 ], [ 9.205168425740714, 45.493446288771928 ], [ 9.204794264390635, 45.493081195528404 ], [ 9.204740582039417, 45.493101496600453 ], [ 9.204065401545513, 45.491848089555972 ], [ 9.203808796047435, 45.491916465167016 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.127755695681481, 45.501559162955125 ], [ 9.127850207911937, 45.50245680103216 ], [ 9.127741362875653, 45.501559966143525 ], [ 9.126825222116176, 45.501614944573163 ], [ 9.126741846071267, 45.501619915742083 ], [ 9.126644933990626, 45.501624417350861 ], [ 9.124862369975236, 45.501696776333972 ], [ 9.124586710930728, 45.501707776938247 ], [ 9.124467321234727, 45.501715275727605 ], [ 9.124695098237222, 45.503508326078588 ], [ 9.124773139355325, 45.503503423805618 ], [ 9.125008034018794, 45.503494050050499 ], [ 9.124935507913136, 45.502595401032373 ], [ 9.125009261350773, 45.50349400065528 ], [ 9.126803117904078, 45.503421183137753 ], [ 9.126922478147829, 45.503415638617533 ], [ 9.126838107912359, 45.502517501032258 ], [ 9.126946250842236, 45.503414377894892 ], [ 9.127041852348864, 45.503408677803655 ], [ 9.127951892885179, 45.503354065591182 ], [ 9.128655334405321, 45.503317438291752 ], [ 9.128466284453506, 45.501522163549438 ], [ 9.127755695681481, 45.501559162955125 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.166311571542062, 45.501068448406549 ], [ 9.166078362755627, 45.500203361091053 ], [ 9.163563245536507, 45.500538627129345 ], [ 9.163795236515512, 45.501399338848358 ], [ 9.163844313647019, 45.501586479809298 ], [ 9.163977510227946, 45.502095453599402 ], [ 9.163992874565807, 45.502186815126336 ], [ 9.166535136430069, 45.501975372792465 ], [ 9.166510098659595, 45.501826531245769 ], [ 9.166361938478088, 45.501260475107649 ], [ 9.165103107896748, 45.501423401029548 ], [ 9.166361851112317, 45.501260141670059 ], [ 9.166311571542062, 45.501068448406549 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.198445441550492, 45.508283731963687 ], [ 9.198384167928641, 45.508156342224275 ], [ 9.198078726430536, 45.50822897474206 ], [ 9.197977521930218, 45.508213862847576 ], [ 9.197948108425557, 45.508205265380454 ], [ 9.197910429823287, 45.508268994436172 ], [ 9.197171507884727, 45.508444701026612 ], [ 9.196760666966306, 45.50759222317204 ], [ 9.19535632502458, 45.507926818170304 ], [ 9.19502996910418, 45.508004217853276 ], [ 9.195439107885482, 45.508857101026706 ], [ 9.195025371919339, 45.508005314960158 ], [ 9.194957706300594, 45.508021563842625 ], [ 9.194938537875855, 45.508025650209674 ], [ 9.192349435211272, 45.508645619453183 ], [ 9.192299817970463, 45.508657892600752 ], [ 9.192279712817211, 45.508662036486406 ], [ 9.192239584963687, 45.50867040808977 ], [ 9.192603807886725, 45.509533301026835 ], [ 9.192157153860355, 45.508689772877204 ], [ 9.192102986065988, 45.508703952512022 ], [ 9.192006314695156, 45.508726956737739 ], [ 9.190896209476081, 45.508995158186615 ], [ 9.191312207887284, 45.509846401026891 ], [ 9.190887749969614, 45.508997225242844 ], [ 9.190481855309621, 45.509097523740948 ], [ 9.191330773267515, 45.510795876588375 ], [ 9.191732453884363, 45.510696619048517 ], [ 9.192832626885496, 45.510430816302289 ], [ 9.192960253492576, 45.510400444966777 ], [ 9.193009421167561, 45.510387574179767 ], [ 9.193085429416538, 45.51037190323261 ], [ 9.193186982040087, 45.510346783569652 ], [ 9.195722957912121, 45.509739534023353 ], [ 9.195743229662968, 45.509735210951 ], [ 9.195850560819503, 45.509709436696255 ], [ 9.196175463434672, 45.509632381418804 ], [ 9.195773719541553, 45.508794950789408 ], [ 9.195775209982653, 45.508797973157151 ], [ 9.196177142503345, 45.509631982290351 ], [ 9.196185513631152, 45.509629987862574 ], [ 9.196281991508316, 45.509825622123891 ], [ 9.196576371943548, 45.509753852892658 ], [ 9.197213681035308, 45.509940137663079 ], [ 9.198521784992788, 45.510135459724061 ], [ 9.199053622528336, 45.508374541587564 ], [ 9.198445441550492, 45.508283731963687 ] ], [ [ 9.197262673271521, 45.508633861700289 ], [ 9.197765382345962, 45.508514324229935 ], [ 9.197762315191369, 45.508519511915956 ], [ 9.19726267391189, 45.508633863028983 ], [ 9.197262673271521, 45.508633861700289 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.246054219228203, 45.501166797734605 ], [ 9.245978837279214, 45.501217647604527 ], [ 9.245901221909238, 45.501270006637718 ], [ 9.245855561544728, 45.501299422932036 ], [ 9.244446871164886, 45.502207501145598 ], [ 9.246176764889679, 45.50353449423276 ], [ 9.24758502098037, 45.502626678084077 ], [ 9.247641374609493, 45.502590372026702 ], [ 9.246776707863823, 45.501926701023628 ], [ 9.247662822800923, 45.502576231908549 ], [ 9.247751010707503, 45.502516739439933 ], [ 9.248304842355386, 45.502143133700407 ], [ 9.248547019678258, 45.501597492672516 ], [ 9.248694735668497, 45.500981527915428 ], [ 9.248731222007622, 45.500829470681012 ], [ 9.246207000354458, 45.500529917403426 ], [ 9.246170497049556, 45.50068201701103 ], [ 9.246054219228203, 45.501166797734605 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.21177917039331, 45.498102205065251 ], [ 9.211774180242102, 45.498096759079175 ], [ 9.21121404828402, 45.49831441438473 ], [ 9.211222848130356, 45.49832561447046 ], [ 9.211782980165273, 45.498107959122052 ], [ 9.21177917039331, 45.498102205065251 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.193406002432882, 45.500537352777613 ], [ 9.19334498906281, 45.500510032116651 ], [ 9.192938365239716, 45.500857561745271 ], [ 9.193437230290789, 45.501146207622597 ], [ 9.193675519231247, 45.50123988022311 ], [ 9.19385030850786, 45.501283457415781 ], [ 9.194278007884837, 45.500435101027549 ], [ 9.19392785633265, 45.501300859751957 ], [ 9.194966676597723, 45.501508623312496 ], [ 9.195473507866238, 45.501538876025016 ], [ 9.195777935347746, 45.501472767344659 ], [ 9.195866451623303, 45.501450230845371 ], [ 9.195218440644092, 45.500191611926063 ], [ 9.195387834563988, 45.500178766582373 ], [ 9.195441960396034, 45.499730332077725 ], [ 9.195429333353289, 45.499729578369845 ], [ 9.194800551790598, 45.499603822348455 ], [ 9.194444170499088, 45.499397620362686 ], [ 9.194065092289428, 45.499270316071723 ], [ 9.193863591752002, 45.499235296623112 ], [ 9.193406002432882, 45.500537352777613 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.178714448003388, 45.526812246181741 ], [ 9.178748947872341, 45.526558404972363 ], [ 9.178872332436608, 45.525649220552289 ], [ 9.178880032203169, 45.525588150574684 ], [ 9.176328987135047, 45.525429237229218 ], [ 9.176322066059205, 45.525484121953504 ], [ 9.176199463284215, 45.52638724506037 ], [ 9.176164968836098, 45.526640962055865 ], [ 9.176156470213934, 45.526703441547092 ], [ 9.178705949402758, 45.526874746273542 ], [ 9.178714448003388, 45.526812246181741 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.208113888924665, 45.524984035137727 ], [ 9.208227195943904, 45.524952431118258 ], [ 9.207282633859325, 45.523279168830484 ], [ 9.20717291036555, 45.523309773251576 ], [ 9.205044414239113, 45.523898273154572 ], [ 9.205981815476591, 45.525573526823976 ], [ 9.208113888924665, 45.524984035137727 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.173980945512737, 45.519969667208301 ], [ 9.1742022362697, 45.519288462334792 ], [ 9.174229418089006, 45.519205626338135 ], [ 9.171734206607651, 45.518800962070415 ], [ 9.171706416642699, 45.518885638877244 ], [ 9.171525135532407, 45.519443606678315 ], [ 9.170684094084988, 45.520078481049836 ], [ 9.170642307593804, 45.52011003964347 ], [ 9.170602584256049, 45.520139856299629 ], [ 9.170575579899364, 45.52016025671449 ], [ 9.170466838554225, 45.520243399578106 ], [ 9.172351997580405, 45.521461794604228 ], [ 9.172455600262531, 45.521382579498265 ], [ 9.17247449099885, 45.521368308152155 ], [ 9.172514082740166, 45.521338589867867 ], [ 9.172558251946638, 45.521305230279921 ], [ 9.173722740156569, 45.520426169339999 ], [ 9.173867938526106, 45.520204814390851 ], [ 9.172705207896135, 45.519827901027355 ], [ 9.173932696496777, 45.520083968049427 ], [ 9.173980945512737, 45.519969667208301 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.168490410564345, 45.521302574735174 ], [ 9.168370573825268, 45.521069201853187 ], [ 9.168122962428015, 45.520586999650476 ], [ 9.165914189110083, 45.52114745706006 ], [ 9.165107328347577, 45.520875426587999 ], [ 9.165002413471308, 45.520840086884711 ], [ 9.163895786440232, 45.52246351239711 ], [ 9.164000079569162, 45.522498642822804 ], [ 9.165574856584943, 45.523029569284844 ], [ 9.165956228519592, 45.523158160219289 ], [ 9.166042307539211, 45.523187182781449 ], [ 9.166279375177321, 45.523270600251152 ], [ 9.166343447338228, 45.523298296652939 ], [ 9.166449394462681, 45.523351005081047 ], [ 9.166556621637412, 45.52324450554049 ], [ 9.166644567370886, 45.523266665930329 ], [ 9.166760220565093, 45.52327551785708 ], [ 9.166742118596762, 45.523376303047193 ], [ 9.166982180472679, 45.523397608709111 ], [ 9.167341677025121, 45.523384154171652 ], [ 9.167497206341961, 45.523362245501353 ], [ 9.167720460349557, 45.523330760628589 ], [ 9.167975762835185, 45.523243532238233 ], [ 9.167908113744518, 45.523145697865672 ], [ 9.168243087888209, 45.522951764038737 ], [ 9.168469733157808, 45.522760810845142 ], [ 9.168691011650754, 45.522469136685409 ], [ 9.168753492155728, 45.522156226004547 ], [ 9.168728085963888, 45.521856724425227 ], [ 9.168626519779769, 45.521652179375245 ], [ 9.168022065431366, 45.521800491800292 ], [ 9.168039078191802, 45.521872593425684 ], [ 9.167909415510426, 45.521871947679209 ], [ 9.167755337472933, 45.521795295096268 ], [ 9.167738526704769, 45.521788028475271 ], [ 9.16862236178234, 45.52156308017247 ], [ 9.168528621230122, 45.521381081216795 ], [ 9.168490410564345, 45.521302574735174 ] ], [ [ 9.166128607914054, 45.522218001005697 ], [ 9.166167078105444, 45.522161614732049 ], [ 9.166167080435889, 45.522161619425738 ], [ 9.166128607914054, 45.522218001005697 ] ], [ [ 9.167439360435662, 45.52186960547548 ], [ 9.16741840789855, 45.52186950102756 ], [ 9.167445478720266, 45.521862611351395 ], [ 9.167439360435662, 45.52186960547548 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.142892541122054, 45.513230593170995 ], [ 9.142724026918966, 45.513770358079618 ], [ 9.142424461136134, 45.514706679643737 ], [ 9.142316950569077, 45.514791294816092 ], [ 9.14213497543397, 45.515099005949892 ], [ 9.142103554300963, 45.515427329827119 ], [ 9.14216417207526, 45.515588078694613 ], [ 9.143401707907731, 45.515357401029789 ], [ 9.142166646739772, 45.515594543529751 ], [ 9.142185530398692, 45.515643154873544 ], [ 9.142129279553258, 45.515635243709902 ], [ 9.142046397625103, 45.515926514806957 ], [ 9.142028777784173, 45.515989614937396 ], [ 9.142697135532879, 45.516081856829366 ], [ 9.142696672558831, 45.516082286877257 ], [ 9.142028494992543, 45.515990630733604 ], [ 9.142017367960056, 45.516030721621554 ], [ 9.141922652182995, 45.516358123291361 ], [ 9.14169084827525, 45.517073467486007 ], [ 9.141566437522894, 45.517452555808624 ], [ 9.142814007907846, 45.517654901029708 ], [ 9.141562075715083, 45.517466339110818 ], [ 9.14154737549147, 45.517514573466471 ], [ 9.141521913763421, 45.517592429422066 ], [ 9.141907961262634, 45.517654824994992 ], [ 9.141570517183913, 45.51782534603813 ], [ 9.141490238204007, 45.517827437262433 ], [ 9.141492213576097, 45.517864915009106 ], [ 9.141086101931537, 45.518070132661265 ], [ 9.14149137722365, 45.51846649656175 ], [ 9.141443151229558, 45.518673844411971 ], [ 9.140671752273605, 45.518422495285769 ], [ 9.140637830014922, 45.51847394560226 ], [ 9.140558884153164, 45.518591528553685 ], [ 9.140496676025997, 45.518751591776692 ], [ 9.140396030458353, 45.51916372285487 ], [ 9.140380273785995, 45.519227734717063 ], [ 9.141288623027732, 45.519338228627689 ], [ 9.141217898902896, 45.519642297238534 ], [ 9.141626805168523, 45.519689297963239 ], [ 9.141696908043185, 45.5193878909595 ], [ 9.142538140590769, 45.519490210604474 ], [ 9.142580733246579, 45.519531864391972 ], [ 9.142638908898267, 45.519502466676599 ], [ 9.142903548857719, 45.519534653395667 ], [ 9.142919740606651, 45.519468858334349 ], [ 9.14294990661773, 45.519345310173598 ], [ 9.143770352960075, 45.518930705680802 ], [ 9.143978517177411, 45.518536017335045 ], [ 9.144074925190189, 45.518128041813803 ], [ 9.144059745715236, 45.517961110260487 ], [ 9.144055370059855, 45.51787816488816 ], [ 9.144063845458914, 45.51785035066591 ], [ 9.144186379240535, 45.517476931267751 ], [ 9.142938807907822, 45.517274601029754 ], [ 9.144187168807575, 45.517474509808785 ], [ 9.144422653557793, 45.516747707279393 ], [ 9.143174307907627, 45.516547801029795 ], [ 9.144428949548836, 45.516727171138378 ], [ 9.144528665777564, 45.516382431469701 ], [ 9.144541588170247, 45.516335863059609 ], [ 9.144558201384724, 45.51627635982976 ], [ 9.144640144080675, 45.515988344537263 ], [ 9.144262887860252, 45.515935295110964 ], [ 9.143642907907285, 45.515396101029864 ], [ 9.144728505795168, 45.515873254080638 ], [ 9.144868091839257, 45.515716287627654 ], [ 9.144974288416583, 45.515388485444021 ], [ 9.144945815378847, 45.515205384134461 ], [ 9.143673107907304, 45.515303201029838 ], [ 9.144430742272535, 45.515050618703292 ], [ 9.144914490241909, 45.515127107915873 ], [ 9.145222869977623, 45.514163104602019 ], [ 9.14397380790696, 45.513965601029966 ], [ 9.145224308268741, 45.514158553356722 ], [ 9.145393490027409, 45.51361657334192 ], [ 9.14541668164048, 45.513542294933814 ], [ 9.142915742689434, 45.513156293420536 ], [ 9.142892541122054, 45.513230593170995 ] ], [ [ 9.14274541716447, 45.515721896161502 ], [ 9.143432907907378, 45.515398401029884 ], [ 9.143040046447338, 45.515763331008301 ], [ 9.142957001694214, 45.515751652189074 ], [ 9.143195209474957, 45.515587972359604 ], [ 9.143186535728312, 45.515579217256089 ], [ 9.14318840743671, 45.515577925720649 ], [ 9.143163251460097, 45.515565048372828 ], [ 9.142903687505093, 45.515744154429008 ], [ 9.14274541716447, 45.515721896161502 ] ], [ [ 9.143841712892588, 45.515876068279574 ], [ 9.143606307907296, 45.515416901029838 ], [ 9.144190698380514, 45.515925143738542 ], [ 9.144028177877292, 45.515902289727329 ], [ 9.143800962002365, 45.515622921555391 ], [ 9.143764459205066, 45.51564379068855 ], [ 9.143967795473818, 45.515893798549612 ], [ 9.143841712892588, 45.515876068279574 ] ], [ [ 9.143173866507, 45.514851873594417 ], [ 9.143274884320197, 45.514867847730272 ], [ 9.143345051423726, 45.51500471555461 ], [ 9.143391910650013, 45.514998703259913 ], [ 9.143329231523648, 45.514876441714513 ], [ 9.143392143069283, 45.51488638995221 ], [ 9.143487007907327, 45.515236901029859 ], [ 9.143173866507, 45.514851873594417 ] ], [ [ 9.144041719024731, 45.51498910552683 ], [ 9.144043090233492, 45.514989322347809 ], [ 9.143641607908094, 45.515265201029315 ], [ 9.144041719024731, 45.51498910552683 ] ], [ [ 9.143426807906073, 45.515268901029081 ], [ 9.14345962871478, 45.51528933264364 ], [ 9.143460373262839, 45.515289980186601 ], [ 9.143426807906073, 45.515268901029081 ] ], [ [ 9.141999600632412, 45.517669636149414 ], [ 9.142769707907958, 45.517794101029729 ], [ 9.142143548476806, 45.517810417237598 ], [ 9.141999600632412, 45.517669636149414 ] ], [ [ 9.142305908745445, 45.518018878681595 ], [ 9.142780907907959, 45.51800650102966 ], [ 9.142295693129356, 45.518028299951617 ], [ 9.142305908745445, 45.518018878681595 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.190415256261923, 45.515139479489768 ], [ 9.190488425234628, 45.51476089599452 ], [ 9.190500912268325, 45.514696037297959 ], [ 9.187963508890579, 45.514454550653262 ], [ 9.187951151623427, 45.514518721228818 ], [ 9.18787798758761, 45.514897191166995 ], [ 9.187863263727182, 45.514973505730843 ], [ 9.187659986462112, 45.516024965883936 ], [ 9.187647107874284, 45.516091447624056 ], [ 9.188915707889102, 45.516212901026499 ], [ 9.187647032588174, 45.516091836900259 ], [ 9.187634239833958, 45.51615809165687 ], [ 9.187436765029974, 45.517180034800901 ], [ 9.187426433936693, 45.517218035335127 ], [ 9.189941589326123, 45.517555952855922 ], [ 9.18996486024658, 45.517470337666381 ], [ 9.190171572622607, 45.516400341429858 ], [ 9.190184351005666, 45.516334145727491 ], [ 9.190197211847201, 45.51626774018964 ], [ 9.190400534347484, 45.515215801736417 ], [ 9.189131907888861, 45.515094601026576 ], [ 9.190400580570044, 45.515215562347478 ], [ 9.190415256261923, 45.515139479489768 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.144016373892971, 45.51524282111567 ], [ 9.144018006655745, 45.51524251674725 ], [ 9.144024634729677, 45.5152527247444 ], [ 9.144642158950502, 45.515134145121301 ], [ 9.144638013231832, 45.515123474335077 ], [ 9.144632633240018, 45.515109210032435 ], [ 9.144013871841636, 45.515224557206622 ], [ 9.144016373892971, 45.51524282111567 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.143902369565101, 45.515564945364979 ], [ 9.144385343517284, 45.515865598740476 ], [ 9.144405243458518, 45.515849798575239 ], [ 9.143925973150884, 45.515551450818862 ], [ 9.143902369565101, 45.515564945364979 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.143902175790991, 45.515567431271705 ], [ 9.143893420593075, 45.515577215428287 ], [ 9.144370838348163, 45.515877027809431 ], [ 9.144381638318659, 45.515868527720073 ], [ 9.143902175790991, 45.515567431271705 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.246329628579792, 45.509230695020172 ], [ 9.247340007864638, 45.509783401022901 ], [ 9.246179746915638, 45.509403072328411 ], [ 9.246107962117467, 45.509511333815823 ], [ 9.246022544108948, 45.50967480287013 ], [ 9.245957785921709, 45.509853712483306 ], [ 9.247198407864751, 45.510075701022856 ], [ 9.245953082070743, 45.509867138497185 ], [ 9.245817057406228, 45.510268639774281 ], [ 9.245813468643297, 45.510407651430448 ], [ 9.245800653477923, 45.510443690425248 ], [ 9.245812484556829, 45.51044577016269 ], [ 9.245812429342033, 45.510447908914472 ], [ 9.245799930541242, 45.51044573362968 ], [ 9.245670746704805, 45.510812669174896 ], [ 9.245649863587714, 45.510863014855595 ], [ 9.245258211837463, 45.511788925354232 ], [ 9.245216912555582, 45.511886655166393 ], [ 9.246444107865308, 45.512143001022721 ], [ 9.245215753834104, 45.511889413272037 ], [ 9.245183052274704, 45.511967712927138 ], [ 9.24510400944046, 45.512157237679453 ], [ 9.245084040989482, 45.512199971209142 ], [ 9.244945647708171, 45.512496357249326 ], [ 9.24492115944112, 45.512548843938056 ], [ 9.24481382434924, 45.512778865589745 ], [ 9.244795472215818, 45.512818018887288 ], [ 9.244688332506174, 45.513047503406192 ], [ 9.244445079466214, 45.513222496059143 ], [ 9.24424316380769, 45.513442541183139 ], [ 9.244154089428493, 45.513608714984223 ], [ 9.243993758701162, 45.513917093056897 ], [ 9.243855582644072, 45.51418303824326 ], [ 9.243791471246897, 45.514308508129915 ], [ 9.243409404532251, 45.515055711849826 ], [ 9.243349967830266, 45.515171978785887 ], [ 9.243610152315135, 45.515237719942142 ], [ 9.243609940423852, 45.515238126664428 ], [ 9.243349702290992, 45.51517249871992 ], [ 9.243305407137766, 45.515259313598975 ], [ 9.24283492976323, 45.516140058216301 ], [ 9.243087962041303, 45.516206863922569 ], [ 9.243076247065211, 45.516227700146032 ], [ 9.242821339204513, 45.516166771359707 ], [ 9.242486782779499, 45.516858547477632 ], [ 9.242456013049257, 45.516951722603473 ], [ 9.242399860750396, 45.517074941711854 ], [ 9.242083056669346, 45.517654174024713 ], [ 9.242462748673951, 45.51775680801326 ], [ 9.242356300534995, 45.517731937810979 ], [ 9.242305864337945, 45.517838626505771 ], [ 9.242023292364767, 45.517798349653354 ], [ 9.241996648935816, 45.517890728325142 ], [ 9.241947408518829, 45.518089762090597 ], [ 9.241954104345748, 45.518175923473521 ], [ 9.241947132548031, 45.518232034312163 ], [ 9.241956044832875, 45.518414184081536 ], [ 9.241928975823985, 45.51850151463595 ], [ 9.241865137749691, 45.518605900938311 ], [ 9.244217692758905, 45.519316888941169 ], [ 9.244301177024857, 45.519180368329884 ], [ 9.244464865570995, 45.518979499209593 ], [ 9.244573930636024, 45.518748976260376 ], [ 9.244783966086326, 45.518304646604484 ], [ 9.244807041180273, 45.518257673944397 ], [ 9.244994613767835, 45.518307979766554 ], [ 9.245667469479489, 45.517020641848013 ], [ 9.245419803048403, 45.516956665607879 ], [ 9.245419860440744, 45.516956563522669 ], [ 9.245667537275846, 45.517020512103095 ], [ 9.245898121498294, 45.516579124320032 ], [ 9.246580493774944, 45.515273013001845 ], [ 9.246341718849692, 45.515215455406434 ], [ 9.24646044925271, 45.514982319886791 ], [ 9.246962290563522, 45.513996931147034 ], [ 9.247041137059863, 45.513780249234024 ], [ 9.247058723264033, 45.513742570882158 ], [ 9.247227474188875, 45.513381087725996 ], [ 9.247246392169879, 45.513340719013911 ], [ 9.247354059845854, 45.513109963296095 ], [ 9.247378427976571, 45.513057729196717 ], [ 9.247516630592607, 45.512761724108763 ], [ 9.247549412042929, 45.512691564585502 ], [ 9.247639843396174, 45.512474710746162 ], [ 9.247671896706073, 45.512397955245696 ], [ 9.247712463687872, 45.512301948345751 ], [ 9.248104996570367, 45.511373859337546 ], [ 9.246877907865004, 45.511117301022807 ], [ 9.248106912497432, 45.511369285001493 ], [ 9.248143481774566, 45.511281111532661 ], [ 9.248284934863701, 45.510879276952366 ], [ 9.24834426833328, 45.510712397453474 ], [ 9.247102307864838, 45.510494101022836 ], [ 9.247724059279056, 45.510448471458453 ], [ 9.247717177385748, 45.510486677738463 ], [ 9.248339849192703, 45.510590951053153 ], [ 9.248441464495491, 45.510290975702709 ], [ 9.248471282499235, 45.510208586995411 ], [ 9.248474063205894, 45.510203264971956 ], [ 9.248500284403029, 45.51016371787405 ], [ 9.247800587243658, 45.509934372319577 ], [ 9.246399229029155, 45.509167795628755 ], [ 9.246329628579792, 45.509230695020172 ] ], [ [ 9.246381693372127, 45.510546981700323 ], [ 9.246386325968045, 45.510546641762488 ], [ 9.247042607865909, 45.510662001023007 ], [ 9.246381693372127, 45.510546981700323 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.12763154706375, 45.512454708990496 ], [ 9.127529395157371, 45.512759554310712 ], [ 9.126789841493796, 45.512665044796087 ], [ 9.126477443158013, 45.512697929395557 ], [ 9.126744183262392, 45.513950498299316 ], [ 9.126421006210309, 45.514063703544409 ], [ 9.126584284477989, 45.514294099873105 ], [ 9.12654064601708, 45.514462883163119 ], [ 9.127143615678161, 45.514539937505539 ], [ 9.127149360426547, 45.514542068618169 ], [ 9.128023640146555, 45.514693485699127 ], [ 9.128168460910826, 45.514717452069817 ], [ 9.128277828945809, 45.514737846695802 ], [ 9.129624531703652, 45.514951231926581 ], [ 9.130854714177126, 45.515165890724617 ], [ 9.130976233078579, 45.515187063779557 ], [ 9.131592173243533, 45.513439737328319 ], [ 9.131471283596815, 45.513418673994209 ], [ 9.130214473360647, 45.513199368966305 ], [ 9.130022770360299, 45.51316899474579 ], [ 9.130127284006372, 45.512857060279487 ], [ 9.130163831853995, 45.512741857498725 ], [ 9.127664792615898, 45.512349930879537 ], [ 9.12763154706375, 45.512454708990496 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.107000895023569, 45.497349689513285 ], [ 9.107003385554076, 45.49734889878723 ], [ 9.106792066371563, 45.496924096114846 ], [ 9.106787230620526, 45.496925285861558 ], [ 9.106684141460793, 45.496720516436149 ], [ 9.106558011039187, 45.496751920014937 ], [ 9.106345928684297, 45.496834908410712 ], [ 9.106156697468528, 45.496941984737731 ], [ 9.10599355898098, 45.497071368698201 ], [ 9.105866016537046, 45.497217392347991 ], [ 9.105832778131273, 45.497274804023625 ], [ 9.105666591231625, 45.497412024345763 ], [ 9.105521278381207, 45.497531972248773 ], [ 9.105504751858339, 45.497537121277468 ], [ 9.105462748050446, 45.497544184789859 ], [ 9.105078556080082, 45.497608946122789 ], [ 9.104309302417565, 45.497736152006063 ], [ 9.104169553127502, 45.497768795251922 ], [ 9.103847086820789, 45.497840942455106 ], [ 9.103671941823604, 45.497880104245432 ], [ 9.102682037243419, 45.498171489872107 ], [ 9.102424620373275, 45.498268598089986 ], [ 9.10240853607317, 45.498274450801716 ], [ 9.102279345573365, 45.498321563741555 ], [ 9.10154473046782, 45.498561632563877 ], [ 9.101588664531286, 45.498628121292661 ], [ 9.101463598084884, 45.498684902516224 ], [ 9.102043830094992, 45.499316947373728 ], [ 9.102081284161375, 45.499373627756356 ], [ 9.101359736002976, 45.498737406768164 ], [ 9.101333959952722, 45.49875186387348 ], [ 9.101259347363262, 45.498689594787514 ], [ 9.101020877986674, 45.498830908650191 ], [ 9.100693625573175, 45.499065839009724 ], [ 9.100501586680961, 45.499233172233239 ], [ 9.100092208946306, 45.49955824499245 ], [ 9.099733615804199, 45.499843062335735 ], [ 9.099451448900647, 45.500048187146518 ], [ 9.101291387327713, 45.501299807426911 ], [ 9.101593187089431, 45.501080405020616 ], [ 9.100673207922656, 45.500454601034328 ], [ 9.101631539432324, 45.501051263791254 ], [ 9.102008682700644, 45.500751704839068 ], [ 9.102331049956, 45.500495717685631 ], [ 9.102487123485249, 45.500421177552774 ], [ 9.102779024443555, 45.500243995571395 ], [ 9.102905835828176, 45.500172869564238 ], [ 9.103487081869192, 45.499908973421718 ], [ 9.103589866691326, 45.499871490089618 ], [ 9.103617692790591, 45.499861370601451 ], [ 9.103783795828345, 45.49979870904329 ], [ 9.104555688562694, 45.499571495624899 ], [ 9.104622833530634, 45.499556482146446 ], [ 9.104953352657393, 45.499482533027432 ], [ 9.104565307920838, 45.498624801034218 ], [ 9.104968765260034, 45.499479008919174 ], [ 9.105007124257245, 45.499470048849027 ], [ 9.105546190636847, 45.499380907245872 ], [ 9.105692283583975, 45.499377069725071 ], [ 9.106188315018354, 45.49936391480847 ], [ 9.106848465523798, 45.499206404119164 ], [ 9.107328420569974, 45.498956334667703 ], [ 9.107846415375258, 45.498556537077874 ], [ 9.107864615885291, 45.498549350171558 ], [ 9.107861226775904, 45.498545105257776 ], [ 9.10788473419206, 45.498526961615653 ], [ 9.107915124925988, 45.498511442809949 ], [ 9.107814975216799, 45.498414447421275 ], [ 9.107905225497991, 45.498339925326341 ], [ 9.108046860908678, 45.498462073050476 ], [ 9.108156135213301, 45.498399410263048 ], [ 9.10831977465096, 45.498265353484669 ], [ 9.108449367618809, 45.498112448916224 ], [ 9.108537955149984, 45.497945524698139 ], [ 9.108584226967949, 45.497771528087675 ], [ 9.108585265693447, 45.497672321964437 ], [ 9.107305407919599, 45.497665701034087 ], [ 9.108565593955545, 45.497508367148477 ], [ 9.108538427430988, 45.497400754592761 ], [ 9.10843788905062, 45.497219233874901 ], [ 9.108289633507127, 45.497053265794882 ], [ 9.108098588618828, 45.496911614718478 ], [ 9.107876712135132, 45.496799307599233 ], [ 9.107738141596254, 45.496754311618041 ], [ 9.107201607919638, 45.497571501034088 ], [ 9.107528069737183, 45.496701178169985 ], [ 9.107415397675897, 45.496680274754056 ], [ 9.107208496557671, 45.496663940454802 ], [ 9.106997810679841, 45.496668540576344 ], [ 9.106880584950119, 45.496683650799888 ], [ 9.107111307919673, 45.497569001034115 ], [ 9.107000895023569, 45.497349689513285 ] ], [ [ 9.107307620665475, 45.497851694769167 ], [ 9.107238007919648, 45.497764501034098 ], [ 9.107386570491457, 45.497892626283885 ], [ 9.107307620665475, 45.497851694769167 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.107320887587317, 45.49735534596563 ], [ 9.107330017607017, 45.497357310517025 ], [ 9.107554723947201, 45.496935919529761 ], [ 9.107536524180787, 45.496931119600461 ], [ 9.107311817723815, 45.497352510552368 ], [ 9.107320887587317, 45.49735534596563 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.154666613455277, 45.496649641780913 ], [ 9.155455857814648, 45.497158675337474 ], [ 9.155806494194493, 45.497384800996031 ], [ 9.156100090882839, 45.49757410070594 ], [ 9.156264791031486, 45.497680337331403 ], [ 9.156339421722647, 45.49772845622514 ], [ 9.156416299921801, 45.497779017113558 ], [ 9.156574032538469, 45.497882705362031 ], [ 9.156757648513151, 45.498003451316627 ], [ 9.157530064924257, 45.498511367194901 ], [ 9.159278330530494, 45.497196428128007 ], [ 9.158505939227362, 45.496688538932716 ], [ 9.158322247218896, 45.496567745397535 ], [ 9.158164587204853, 45.496464106964524 ], [ 9.158083195656603, 45.496410578825866 ], [ 9.157209007899358, 45.497068001030513 ], [ 9.158073909087596, 45.496404531643073 ], [ 9.157994906836388, 45.496353595161573 ], [ 9.157830204769747, 45.49624735936289 ], [ 9.157536453139043, 45.496057963410415 ], [ 9.157185919730846, 45.495831908550485 ], [ 9.156396760716243, 45.495322939928258 ], [ 9.156301282215987, 45.495261354394458 ], [ 9.15457111327342, 45.496588041065102 ], [ 9.154666613455277, 45.496649641780913 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.230585511625412, 45.493505595856504 ], [ 9.230581527672054, 45.493482619703265 ], [ 9.230581572164745, 45.493481600005609 ], [ 9.230575456439388, 45.49352456189915 ], [ 9.230340694762425, 45.493967364351782 ], [ 9.230060654902751, 45.494447428385712 ], [ 9.229779654988089, 45.494799886025397 ], [ 9.229060276199787, 45.495638402942063 ], [ 9.229227100552851, 45.495709193279275 ], [ 9.229394134625437, 45.495800121248031 ], [ 9.229057765555224, 45.495644888758655 ], [ 9.229042109608727, 45.495661667999677 ], [ 9.229041256512081, 45.495661329714991 ], [ 9.229012956034806, 45.495696629442435 ], [ 9.229570379775147, 45.495917666602509 ], [ 9.229582142014397, 45.495904084825177 ], [ 9.229588276629494, 45.495898037837101 ], [ 9.229605585306411, 45.495885104889808 ], [ 9.229584633074564, 45.495876796713354 ], [ 9.229452254336453, 45.49580473448907 ], [ 9.230156107869721, 45.496103401025316 ], [ 9.229676048062775, 45.495913045399774 ], [ 9.230884905076101, 45.496883843219273 ], [ 9.231024630221265, 45.496797789368323 ], [ 9.231149574189235, 45.496684263274538 ], [ 9.231221515945171, 45.496607156678628 ], [ 9.231261705189366, 45.496557026239586 ], [ 9.231992377259571, 45.495705306764471 ], [ 9.232369576835092, 45.495232161967408 ], [ 9.232724533295482, 45.494623627786716 ], [ 9.233002025573125, 45.49410018583567 ], [ 9.233031321874535, 45.494061449570623 ], [ 9.233064180764144, 45.494026751027242 ], [ 9.232543557432168, 45.493782882158989 ], [ 9.232546227409674, 45.493780253641617 ], [ 9.233105844689357, 45.493819647295922 ], [ 9.233137246065768, 45.493598987545212 ], [ 9.233145886234011, 45.493400763440341 ], [ 9.233114647795928, 45.493220652834943 ], [ 9.233369244785587, 45.492970001639627 ], [ 9.233046946722933, 45.492808065053126 ], [ 9.23287424666654, 45.492739848948396 ], [ 9.232852830921525, 45.492707577459811 ], [ 9.232691033977755, 45.492548570623363 ], [ 9.232522095926686, 45.492633603799717 ], [ 9.232213694777304, 45.492588055153618 ], [ 9.231845751680902, 45.492610010685581 ], [ 9.231534468567137, 45.492675589868334 ], [ 9.231096521606819, 45.492857072482636 ], [ 9.230830910861441, 45.493137543286672 ], [ 9.230702523676532, 45.493307290789552 ], [ 9.230978491814902, 45.493410537111785 ], [ 9.230853699072028, 45.493473346473181 ], [ 9.230633257864, 45.493415536949072 ], [ 9.230585511625412, 45.493505595856504 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.205330466418532, 45.491457682734222 ], [ 9.206131172080397, 45.492796392081111 ], [ 9.206152740130733, 45.492833533418867 ], [ 9.207337507878497, 45.492493201027308 ], [ 9.206162248311472, 45.49284946824514 ], [ 9.206187546125667, 45.492890749832803 ], [ 9.206724854306545, 45.493790912578469 ], [ 9.206777830074175, 45.493887461716902 ], [ 9.207971807878382, 45.493563401027167 ], [ 9.206918430751299, 45.494074590159343 ], [ 9.206970330238022, 45.494127490634078 ], [ 9.208279262857396, 45.495461449040221 ], [ 9.208330662329102, 45.495513812057361 ], [ 9.208370500391762, 45.495554905922717 ], [ 9.209083961444527, 45.496287154618351 ], [ 9.20927399840086, 45.496490667918287 ], [ 9.209784755229796, 45.49702377768434 ], [ 9.210438326547017, 45.49770983254713 ], [ 9.210479601097971, 45.497754141531338 ], [ 9.210900993519127, 45.497560003562413 ], [ 9.210886828866649, 45.497582036716153 ], [ 9.210882291376524, 45.497592744667529 ], [ 9.210504870235445, 45.497780256876091 ], [ 9.210815871381465, 45.498089847430798 ], [ 9.210853073324884, 45.49820635631297 ], [ 9.210912122901741, 45.498324460488512 ], [ 9.210958783730423, 45.498388839814851 ], [ 9.211074546835833, 45.498347346375084 ], [ 9.211096964811805, 45.498369662250461 ], [ 9.211316282541771, 45.498260699489627 ], [ 9.212099107877327, 45.497980101026471 ], [ 9.211038319570546, 45.498483738194103 ], [ 9.211092775227002, 45.498540461433677 ], [ 9.211209670956519, 45.49863439677388 ], [ 9.211340867293128, 45.498716395243214 ], [ 9.211487582021689, 45.498787686629456 ], [ 9.211644762470911, 45.498844561340341 ], [ 9.21180514178101, 45.498886399496094 ], [ 9.211980942444397, 45.49891605262836 ], [ 9.212158828537621, 45.49892853586779 ], [ 9.212330693469347, 45.498926537429107 ], [ 9.212501790591531, 45.498909326472223 ], [ 9.212673440172003, 45.498877271386732 ], [ 9.212841776693484, 45.498828261902858 ], [ 9.21299189456118, 45.498768214494092 ], [ 9.213134287131707, 45.498694419285208 ], [ 9.213262500901925, 45.498607563884889 ], [ 9.213321630667391, 45.498556644093249 ], [ 9.213108626793893, 45.498434311999645 ], [ 9.213115983508134, 45.498427832590465 ], [ 9.212615893208357, 45.498147017914548 ], [ 9.212612691749163, 45.498149483655006 ], [ 9.212330307877156, 45.497987301026399 ], [ 9.213415610474446, 45.49846440821193 ], [ 9.21347283840433, 45.498400024966145 ], [ 9.213549887064595, 45.49827820081493 ], [ 9.213602573724813, 45.498154583507464 ], [ 9.213632453986664, 45.498024746300942 ], [ 9.21363775598026, 45.497889998142632 ], [ 9.213616932799169, 45.497757789848549 ], [ 9.213573688123425, 45.49763309217829 ], [ 9.213506138947135, 45.497509429989719 ], [ 9.21341265279473, 45.497390450604556 ], [ 9.213301606050951, 45.49728557491639 ], [ 9.2131754800567, 45.49719348400064 ], [ 9.213026626679238, 45.497109623587306 ], [ 9.212921158254282, 45.497065678663773 ], [ 9.212608485584864, 45.496754435735049 ], [ 9.212572250012377, 45.496715538054822 ], [ 9.211910381273693, 45.496020800802548 ], [ 9.210847107877616, 45.496521801026674 ], [ 9.211908498269873, 45.496018829885095 ], [ 9.211405224641645, 45.495493551412835 ], [ 9.211343081036484, 45.495427003788009 ], [ 9.210808196798567, 45.495674053660892 ], [ 9.210873111084021, 45.495779580820752 ], [ 9.210260307877769, 45.495883001026804 ], [ 9.211193686331377, 45.495267154253938 ], [ 9.211191589722713, 45.495265582577197 ], [ 9.210483882645532, 45.494539267002132 ], [ 9.210443422188893, 45.494497533770875 ], [ 9.209386007878003, 45.495004601026963 ], [ 9.210439220184085, 45.494493226483932 ], [ 9.210385876731557, 45.494438885114782 ], [ 9.209111213553832, 45.493139901355079 ], [ 9.209099352887138, 45.493118286580518 ], [ 9.208542840638865, 45.492186016225801 ], [ 9.208517610623398, 45.492144848554062 ], [ 9.208495586847356, 45.492106926881455 ], [ 9.20768972240632, 45.490759686532456 ], [ 9.207653133683786, 45.490698507518985 ], [ 9.205293867467445, 45.491396482358226 ], [ 9.205330466418532, 45.491457682734222 ] ], [ [ 9.211521901658436, 45.49727394225814 ], [ 9.211550207877492, 45.497260901026536 ], [ 9.211522618716183, 45.497274608415182 ], [ 9.211521901658436, 45.49727394225814 ] ], [ [ 9.212142307877269, 45.497850301026496 ], [ 9.212142307877274, 45.497850301026496 ], [ 9.212142307877295, 45.497850301026517 ], [ 9.212142307877269, 45.497850301026496 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.215813182559732, 45.487325842955705 ], [ 9.215814247694846, 45.487328381205593 ], [ 9.215686407439385, 45.487347595865408 ], [ 9.215784562425405, 45.487670696339677 ], [ 9.216230714511013, 45.489174346967047 ], [ 9.21663079993715, 45.490492044670567 ], [ 9.216743116181311, 45.490916137283385 ], [ 9.216878182944713, 45.490898441429671 ], [ 9.216888091031036, 45.490927872678036 ], [ 9.216752829035311, 45.490949328222243 ], [ 9.216802625782984, 45.49110462876704 ], [ 9.216883033756478, 45.491354617235672 ], [ 9.216894633406334, 45.491391498715892 ], [ 9.216932741708417, 45.491522707444076 ], [ 9.217009840829945, 45.491788313400697 ], [ 9.217089071714479, 45.492068866313232 ], [ 9.217324664498411, 45.492899412498389 ], [ 9.217476387717081, 45.492878123029669 ], [ 9.217478176030458, 45.492884049178677 ], [ 9.21732661828403, 45.492906165319411 ], [ 9.217403080144855, 45.493165355509383 ], [ 9.217425645914828, 45.493241945098262 ], [ 9.217583852863029, 45.493218887799642 ], [ 9.217589381709605, 45.493236382212118 ], [ 9.217431888517391, 45.493261981050964 ], [ 9.217464382069206, 45.493360868061586 ], [ 9.217546201661809, 45.493609900932988 ], [ 9.21775917157238, 45.494278613061695 ], [ 9.217772001047889, 45.494318995826141 ], [ 9.217921627367256, 45.49483677598851 ], [ 9.218069082049491, 45.494815699307239 ], [ 9.218070132306819, 45.494819057694109 ], [ 9.217922742579544, 45.494840592783646 ], [ 9.217977526919242, 45.495026053682288 ], [ 9.217989414341162, 45.495066314106779 ], [ 9.218008136288784, 45.495129693171208 ], [ 9.218160325691832, 45.495107456862897 ], [ 9.218160372716548, 45.495107607323135 ], [ 9.218008187023871, 45.495129864839576 ], [ 9.218100148944592, 45.495441059350803 ], [ 9.218260129615979, 45.495982434535527 ], [ 9.218326346475601, 45.4962065699468 ], [ 9.218352673371651, 45.496295928556592 ], [ 9.218504308492452, 45.496273832330616 ], [ 9.21850964149254, 45.496292343688253 ], [ 9.218979289019147, 45.496225422363601 ], [ 9.218365565594691, 45.49633523254986 ], [ 9.218404903454681, 45.496443974939602 ], [ 9.218494607916291, 45.49671373254224 ], [ 9.218490861070572, 45.496851129694164 ], [ 9.218568911013611, 45.497109751535206 ], [ 9.218667973745699, 45.497445616720945 ], [ 9.218759263651213, 45.497644221713699 ], [ 9.218783628107328, 45.497691206783259 ], [ 9.218767539930917, 45.49772786388057 ], [ 9.218859820615517, 45.498060344697777 ], [ 9.218923781312867, 45.498051564823385 ], [ 9.218926262406654, 45.498059896349858 ], [ 9.21886232623036, 45.498069138890386 ], [ 9.218911587311913, 45.498237671314847 ], [ 9.219047808842264, 45.498729495214825 ], [ 9.21913334402354, 45.49871777864503 ], [ 9.21913356464897, 45.498743677434781 ], [ 9.219055759249812, 45.498756058662124 ], [ 9.219120964929417, 45.498958709589537 ], [ 9.219201191145324, 45.499067371234183 ], [ 9.219208737578617, 45.499090997162838 ], [ 9.219399428582198, 45.499714353044332 ], [ 9.219421085728813, 45.499790573713732 ], [ 9.219563035648077, 45.499770627327145 ], [ 9.219568894521721, 45.49978651393657 ], [ 9.219426503389588, 45.499808671064514 ], [ 9.219523172255037, 45.500115893697995 ], [ 9.219614228214342, 45.500405519829833 ], [ 9.21966022678013, 45.500553418818214 ], [ 9.219825774236181, 45.501064001039154 ], [ 9.219888625112818, 45.501257671043959 ], [ 9.220009311124198, 45.501238303063168 ], [ 9.220009518385663, 45.501238959089861 ], [ 9.219888860921648, 45.501258396285486 ], [ 9.219945145984344, 45.501431174534872 ], [ 9.219986939444629, 45.501571660060215 ], [ 9.220218105762303, 45.502349204720609 ], [ 9.22033487003319, 45.502332038479992 ], [ 9.220337468801992, 45.502340771845937 ], [ 9.220221043898489, 45.502358824429344 ], [ 9.220252131387866, 45.502457964904629 ], [ 9.2204056883935, 45.502968966988405 ], [ 9.220405492069293, 45.503278306505301 ], [ 9.220498744065988, 45.503278335731387 ], [ 9.220557715420679, 45.50347432621929 ], [ 9.220674945772581, 45.503863655693742 ], [ 9.220780144680804, 45.503847992753151 ], [ 9.220780758995973, 45.503850094528758 ], [ 9.22067564003882, 45.503865946665115 ], [ 9.220729787264533, 45.50404348989926 ], [ 9.220749362890636, 45.504114200223164 ], [ 9.2208792231415, 45.504582555239118 ], [ 9.221006910418268, 45.504565049599151 ], [ 9.221006997167326, 45.504565327663663 ], [ 9.220879309434764, 45.504582866170978 ], [ 9.220921950206968, 45.5047363652576 ], [ 9.220989209830076, 45.504979074090954 ], [ 9.221016442374365, 45.505079881985132 ], [ 9.221156466506207, 45.505061178812447 ], [ 9.221163969894578, 45.505086054056733 ], [ 9.221024671824802, 45.505107907589618 ], [ 9.221066901751842, 45.505241002406301 ], [ 9.221140032104705, 45.505466671529994 ], [ 9.22118090107478, 45.505628749359488 ], [ 9.221319120034881, 45.505611516851694 ], [ 9.221330573323481, 45.505648830811005 ], [ 9.221192976250713, 45.505670785092271 ], [ 9.221478352244992, 45.506555103717609 ], [ 9.221495221863151, 45.506610458318193 ], [ 9.221672569707481, 45.507192690156913 ], [ 9.221850378765781, 45.507803644896185 ], [ 9.221876915008407, 45.50789484003321 ], [ 9.22199928357351, 45.508331947820537 ], [ 9.22260523200856, 45.508248080127316 ], [ 9.223019548602474, 45.5081961686585 ], [ 9.222007652751053, 45.508359551588455 ], [ 9.222060527846157, 45.50852145537943 ], [ 9.222210925461999, 45.508989777771369 ], [ 9.22223996382343, 45.509096991616808 ], [ 9.222387328270235, 45.509077259647384 ], [ 9.222390888022682, 45.509089240932283 ], [ 9.222243801896454, 45.509110591473302 ], [ 9.222265460270252, 45.509184355285434 ], [ 9.222550699612821, 45.510157321999806 ], [ 9.222708166908774, 45.510134500262481 ], [ 9.222708168532407, 45.510134505624997 ], [ 9.222550701413178, 45.510157328140686 ], [ 9.222665893069941, 45.51055022940831 ], [ 9.222822961080967, 45.510527464730401 ], [ 9.222823381506551, 45.510528904713645 ], [ 9.223812844049119, 45.51038608888669 ], [ 9.223812144629077, 45.510386203998266 ], [ 9.222823400258763, 45.510528968929258 ], [ 9.222828962492649, 45.510548012870714 ], [ 9.222673221333038, 45.510573643375572 ], [ 9.222696442790481, 45.510643397133059 ], [ 9.22284713892129, 45.511162621743523 ], [ 9.222879297844568, 45.511269220700413 ], [ 9.222896134245715, 45.511326468778982 ], [ 9.223087951791369, 45.5119778775572 ], [ 9.223097418422876, 45.512010066531637 ], [ 9.223237983307625, 45.512487322940537 ], [ 9.223385624895121, 45.512465827786833 ], [ 9.223385644612513, 45.512465895906821 ], [ 9.223238006037979, 45.512487400098628 ], [ 9.223277903164316, 45.512622800537578 ], [ 9.223425300051268, 45.512601331546385 ], [ 9.223431843449246, 45.512622166980819 ], [ 9.223285331720756, 45.512646409986353 ], [ 9.223324228138166, 45.512762606935652 ], [ 9.223418221061653, 45.51304340428635 ], [ 9.223557151396102, 45.513020416596277 ], [ 9.223557503881322, 45.513021508070281 ], [ 9.22341863271623, 45.513044630222012 ], [ 9.223615830878543, 45.513630061396618 ], [ 9.223621178226027, 45.513649618994698 ], [ 9.22363054248661, 45.513683756884859 ], [ 9.223634560014125, 45.51369845635255 ], [ 9.223770398989716, 45.513680105099411 ], [ 9.223771164513543, 45.513682463478979 ], [ 9.223635293266284, 45.513701117569312 ], [ 9.223636976679707, 45.513707178343665 ], [ 9.223647183672684, 45.513748009953773 ], [ 9.223785750761769, 45.513730888323018 ], [ 9.223790002021502, 45.513746448009101 ], [ 9.223796424977083, 45.513770000778614 ], [ 9.223659750193088, 45.513791859374336 ], [ 9.223678548976586, 45.513849959580071 ], [ 9.223783562271393, 45.514174324250874 ], [ 9.223891920517449, 45.514566172856398 ], [ 9.224130396815818, 45.51536384215013 ], [ 9.224362678001647, 45.516140836834275 ], [ 9.22450436478869, 45.516119901617486 ], [ 9.224504923561314, 45.516121660192198 ], [ 9.224506542127338, 45.516126927185596 ], [ 9.224365100667859, 45.516148763165084 ], [ 9.224579214093827, 45.516834232828735 ], [ 9.224697883677182, 45.517236042865726 ], [ 9.22470445203737, 45.517258396584964 ], [ 9.224754390362268, 45.517427840154163 ], [ 9.224772677122143, 45.517490158987577 ], [ 9.22602660787267, 45.517308301023967 ], [ 9.224772880081753, 45.517490849279902 ], [ 9.224963666333199, 45.518138451379379 ], [ 9.225107709383179, 45.518117478828941 ], [ 9.22510894654719, 45.518121653183854 ], [ 9.224965074050473, 45.518143166089523 ], [ 9.224966489379264, 45.518147843988679 ], [ 9.224215351728791, 45.518263193490391 ], [ 9.224445136144682, 45.519002696011391 ], [ 9.224458181082415, 45.519044643547979 ], [ 9.224816136894919, 45.518989630006075 ], [ 9.224817829311057, 45.518994938956354 ], [ 9.225010037058667, 45.518964657859705 ], [ 9.225273511713123, 45.519948582131995 ], [ 9.225531376152656, 45.520026178021332 ], [ 9.225562933194123, 45.520119172315894 ], [ 9.225659907397331, 45.52043939890897 ], [ 9.225688411820014, 45.520544138222988 ], [ 9.226610940170191, 45.520420066558351 ], [ 9.225832340836668, 45.520548061520685 ], [ 9.225836667064907, 45.520561066506026 ], [ 9.225700561579043, 45.520583894131235 ], [ 9.225728509787125, 45.520666240574911 ], [ 9.22584642830852, 45.52105582822962 ], [ 9.225992937751926, 45.521033914556604 ], [ 9.2259966641593, 45.521047584897921 ], [ 9.225851283432267, 45.521071206477586 ], [ 9.225965136941374, 45.521417473225327 ], [ 9.226510301507698, 45.523238107098024 ], [ 9.226639259412131, 45.52321902601895 ], [ 9.226650134853077, 45.523255185831957 ], [ 9.229155672579273, 45.522882802485015 ], [ 9.229070966616037, 45.522601203416315 ], [ 9.228571615197366, 45.520942174683732 ], [ 9.228526442219462, 45.52076274045298 ], [ 9.22850303477175, 45.520676885497473 ], [ 9.228356468157907, 45.520696631891717 ], [ 9.228352171798868, 45.520683566904069 ], [ 9.228498792671751, 45.520662005537567 ], [ 9.228480212214352, 45.520599569737662 ], [ 9.228453129253726, 45.520509167370321 ], [ 9.228426656836458, 45.520420153953047 ], [ 9.228356147261595, 45.520229144452415 ], [ 9.228344282478636, 45.520193482291795 ], [ 9.22832960356858, 45.520094233908587 ], [ 9.228220194777245, 45.519722091983958 ], [ 9.228109979017518, 45.519344352207725 ], [ 9.227940902238917, 45.519368731646907 ], [ 9.227935840675018, 45.519353817684362 ], [ 9.228104671096373, 45.519327028552802 ], [ 9.228048867451809, 45.519153229163912 ], [ 9.227875753530149, 45.51918069797086 ], [ 9.227875747058816, 45.51918067941692 ], [ 9.228048860506606, 45.519153207534387 ], [ 9.227915984552579, 45.518739410901752 ], [ 9.227875620326225, 45.518613573121378 ], [ 9.227863466988108, 45.518565811846322 ], [ 9.227057749611813, 45.51866713188474 ], [ 9.227069956425717, 45.518647092064796 ], [ 9.227706747543374, 45.518551681670679 ], [ 9.227695924016279, 45.51851598168102 ], [ 9.227838845141285, 45.518488736289385 ], [ 9.227817083405105, 45.518432321847982 ], [ 9.227815616890449, 45.518428537456678 ], [ 9.227608730533522, 45.517730588678113 ], [ 9.227464759864448, 45.517751679524309 ], [ 9.227463823135228, 45.517748500417959 ], [ 9.227607655778753, 45.517726999487941 ], [ 9.227421825776869, 45.5171126178058 ], [ 9.227408694353041, 45.517062835375413 ], [ 9.227358105902905, 45.516869977056139 ], [ 9.227210656992629, 45.516889092454782 ], [ 9.227205455087237, 45.51687139178312 ], [ 9.22619404954334, 45.517018289869313 ], [ 9.226210546757617, 45.517015701600876 ], [ 9.227205192095006, 45.516870499172988 ], [ 9.22720212813125, 45.516860126357898 ], [ 9.22734859203714, 45.516837145941189 ], [ 9.227221028529849, 45.516435324082316 ], [ 9.227006830037276, 45.515738407610684 ], [ 9.226865344792424, 45.515759900240674 ], [ 9.226863709442419, 45.515754430781811 ], [ 9.227004906482694, 45.515732253474802 ], [ 9.22676261835006, 45.514969817402864 ], [ 9.226494752073675, 45.51411162503922 ], [ 9.226412209171801, 45.513803049487038 ], [ 9.226293685964453, 45.513818720520121 ], [ 9.226293128819071, 45.513816706062052 ], [ 9.225827893726372, 45.513880305880136 ], [ 9.225164053485132, 45.51396807291475 ], [ 9.225164856954992, 45.513967944328783 ], [ 9.226411534501908, 45.513800546811126 ], [ 9.226318327147187, 45.513457447841112 ], [ 9.226304648466058, 45.513407295466777 ], [ 9.226167230314623, 45.513425821910289 ], [ 9.226167141404574, 45.513425547159208 ], [ 9.226304563697786, 45.513406984969684 ], [ 9.226290162568874, 45.513354285128784 ], [ 9.226152963016974, 45.513372817231144 ], [ 9.226148704563085, 45.513357475060396 ], [ 9.226145531287111, 45.51334586645914 ], [ 9.226281161132784, 45.51332413867933 ], [ 9.226270660454581, 45.513291738794209 ], [ 9.226259493542527, 45.513257342769379 ], [ 9.226246933214238, 45.513218477637579 ], [ 9.225242385830876, 45.513378945157328 ], [ 9.22524415417673, 45.513378650699529 ], [ 9.226246914487309, 45.51321841970011 ], [ 9.226066329377463, 45.512659803928393 ], [ 9.226053643693351, 45.512620527979045 ], [ 9.226032511521749, 45.512553372917225 ], [ 9.225995899945818, 45.512437044305258 ], [ 9.225964352325965, 45.512336817768741 ], [ 9.225924295485587, 45.512209287296784 ], [ 9.225890121266252, 45.512091239938222 ], [ 9.225635718079586, 45.511211896387614 ], [ 9.225586873549906, 45.511043087145424 ], [ 9.227113032915016, 45.510822757153832 ], [ 9.227095454530918, 45.51076256360377 ], [ 9.226584203474285, 45.5090858142093 ], [ 9.226478955835653, 45.508715312429722 ], [ 9.225223607873172, 45.508891601024587 ], [ 9.226475728078128, 45.508704307792371 ], [ 9.226377462391952, 45.508379541795442 ], [ 9.226359238667452, 45.508316184191685 ], [ 9.226229574895108, 45.507865897310509 ], [ 9.226084246438983, 45.507361159698775 ], [ 9.22607399173398, 45.507329096917715 ], [ 9.226070536556469, 45.507309139674248 ], [ 9.226021329038067, 45.507025233066429 ], [ 9.225991444840817, 45.50685244691779 ], [ 9.225962278927565, 45.50685494090645 ], [ 9.225964957502336, 45.506834827437096 ], [ 9.225987677121379, 45.506832521588635 ], [ 9.22597408343538, 45.506766300523751 ], [ 9.226073052340311, 45.506023129333066 ], [ 9.225817894212163, 45.506006328831212 ], [ 9.225811138496601, 45.505973315077277 ], [ 9.225616821664492, 45.505992975131633 ], [ 9.225605749999191, 45.505992238465758 ], [ 9.225506544315214, 45.505999414981986 ], [ 9.225809865205118, 45.505967239849475 ], [ 9.225777671524028, 45.505817184971306 ], [ 9.225635167743528, 45.50515251106728 ], [ 9.225634747539241, 45.505095817223534 ], [ 9.22563434518613, 45.505043262518186 ], [ 9.223766594560297, 45.505050317760556 ], [ 9.223712178224428, 45.504862200004766 ], [ 9.223679199502087, 45.50474859189729 ], [ 9.223540053421171, 45.504768563715565 ], [ 9.223538149292832, 45.504762563379259 ], [ 9.223677195791947, 45.50474182218904 ], [ 9.223639097446361, 45.504615536944868 ], [ 9.22360169915328, 45.504491551708178 ], [ 9.223562685277638, 45.504362303057988 ], [ 9.223530896776907, 45.504254485351737 ], [ 9.223401785493436, 45.504273307538341 ], [ 9.223399240419582, 45.504264147181907 ], [ 9.223527809867878, 45.504244311524644 ], [ 9.22335429816504, 45.50368821342709 ], [ 9.223244248559249, 45.503705191849662 ], [ 9.223240743643677, 45.503692533544147 ], [ 9.223349837879669, 45.503674435779246 ], [ 9.223296587645432, 45.503515714236585 ], [ 9.223170161903184, 45.503083232158808 ], [ 9.223108414749227, 45.502888518336242 ], [ 9.223209489371534, 45.502861072993817 ], [ 9.222987265904099, 45.502456389216135 ], [ 9.222980876268311, 45.502452478341731 ], [ 9.22298047371714, 45.502451041351605 ], [ 9.22290110097445, 45.502168104264086 ], [ 9.222786333912847, 45.502184024741865 ], [ 9.222783806310217, 45.502175614656963 ], [ 9.222898427859327, 45.5021588323524 ], [ 9.22288314690236, 45.502107223384911 ], [ 9.223839133649648, 45.50228237714898 ], [ 9.223943020139057, 45.502301506403526 ], [ 9.223979787090363, 45.502308332580348 ], [ 9.224025569870154, 45.502316710750193 ], [ 9.2249352318641, 45.502484771297908 ], [ 9.225012484530634, 45.502499084156497 ], [ 9.224926755207505, 45.502717293468372 ], [ 9.2250065517817, 45.502732795680622 ], [ 9.22599536138331, 45.502925500273292 ], [ 9.226069387188375, 45.502939902669851 ], [ 9.22616029497406, 45.50270885387885 ], [ 9.226169286555548, 45.502710497960841 ], [ 9.226081608521302, 45.50294223471969 ], [ 9.227703931771508, 45.503245739302244 ], [ 9.227833760123964, 45.50327000071352 ], [ 9.228019026123395, 45.502779771607557 ], [ 9.227935282036816, 45.503033000342462 ], [ 9.228063480454434, 45.503053964226417 ], [ 9.229367003729912, 45.503274108272997 ], [ 9.22996480279947, 45.501523692878052 ], [ 9.228652324654966, 45.501302036683214 ], [ 9.228530727502086, 45.501282152326766 ], [ 9.228425462291346, 45.501262973757377 ], [ 9.226654513524835, 45.500939174771787 ], [ 9.225744807538975, 45.500772973779462 ], [ 9.225669327058082, 45.500759161640161 ], [ 9.225587008233141, 45.500743910182017 ], [ 9.224672980294672, 45.50057504296646 ], [ 9.224629128416373, 45.500567017022782 ], [ 9.224595136337671, 45.500560708248003 ], [ 9.224268507872846, 45.501431001025274 ], [ 9.224592731881726, 45.500560263747602 ], [ 9.224485830084872, 45.500540579509959 ], [ 9.222395540783804, 45.500157590149499 ], [ 9.222338683544439, 45.500311041881289 ], [ 9.222288201135751, 45.500151273048942 ], [ 9.222242482246132, 45.500005001781467 ], [ 9.222074820794008, 45.499416260011749 ], [ 9.221931181747793, 45.499436489172268 ], [ 9.221928745258777, 45.499428746829722 ], [ 9.221918474912179, 45.499392606602399 ], [ 9.222058742637513, 45.499367021218411 ], [ 9.222036018539768, 45.499305410566677 ], [ 9.22188135052839, 45.498794454328156 ], [ 9.221916568256901, 45.49869531607532 ], [ 9.221819308947671, 45.498346454199151 ], [ 9.221793909678132, 45.498261532507954 ], [ 9.221717960468979, 45.497986946402996 ], [ 9.221628963933711, 45.497999120597157 ], [ 9.221627328373126, 45.497994370172542 ], [ 9.221716511963562, 45.497981789840622 ], [ 9.221660932545214, 45.497786925856175 ], [ 9.221587026101664, 45.497593795904145 ], [ 9.221510160445664, 45.497608343648473 ], [ 9.221505771269783, 45.497593634847199 ], [ 9.221580925338943, 45.497578399610163 ], [ 9.22146324577322, 45.497291295985093 ], [ 9.221462512478963, 45.497247723609945 ], [ 9.221440831575624, 45.497099556330227 ], [ 9.221408748501966, 45.496985027718431 ], [ 9.221322943352979, 45.496996915842267 ], [ 9.221322810594819, 45.496996480099419 ], [ 9.221408616877598, 45.49698455850703 ], [ 9.221325410558517, 45.496688359424397 ], [ 9.221232893273061, 45.496701213411676 ], [ 9.22121341429912, 45.496636987813076 ], [ 9.221302027783885, 45.496619489897682 ], [ 9.221224384866131, 45.496425015215337 ], [ 9.221169337889091, 45.496302853526345 ], [ 9.221081724527428, 45.496164582840024 ], [ 9.221059610865373, 45.496064702541872 ], [ 9.221015995673643, 45.495926617304079 ], [ 9.220994364496967, 45.495851544863122 ], [ 9.220916335564539, 45.495580865299246 ], [ 9.220762337780712, 45.495602822330468 ], [ 9.220760913385938, 45.495598002940888 ], [ 9.220914725872129, 45.495575369336763 ], [ 9.220764518730846, 45.495070482923495 ], [ 9.220702918487953, 45.494863397527844 ], [ 9.220667016598815, 45.494742700164458 ], [ 9.220514746855752, 45.494765103172746 ], [ 9.22051424590925, 45.494763409242708 ], [ 9.220512419546004, 45.494757227424351 ], [ 9.220664285859039, 45.494733747215435 ], [ 9.220642149925858, 45.494662931069449 ], [ 9.222597411963191, 45.494637656555156 ], [ 9.222594818668091, 45.494538492857956 ], [ 9.22255781136565, 45.494034947506734 ], [ 9.222534380754226, 45.493132966558697 ], [ 9.222532897793233, 45.493076267336605 ], [ 9.222532106190457, 45.493042700461821 ], [ 9.222506499711345, 45.490818420620116 ], [ 9.222504148039706, 45.490634463911704 ], [ 9.222478498083026, 45.490484676921795 ], [ 9.222449465027383, 45.490393856062603 ], [ 9.219952599489046, 45.490788691629547 ], [ 9.219946064763098, 45.490750521034961 ], [ 9.219947120272757, 45.490833370237219 ], [ 9.219965732947895, 45.492456545337902 ], [ 9.219660832344093, 45.491446287316933 ], [ 9.219650576699706, 45.491411969793866 ], [ 9.219555980080685, 45.491067101935805 ], [ 9.219418190981711, 45.491085798694229 ], [ 9.219414384311467, 45.491072694133656 ], [ 9.21955175909944, 45.491052375351586 ], [ 9.21953045410514, 45.490981119843653 ], [ 9.21951048559702, 45.490916737296281 ], [ 9.219502411869239, 45.49089010521763 ], [ 9.219364439390203, 45.490910796885593 ], [ 9.219360200499462, 45.490897620036179 ], [ 9.219497731957588, 45.490875282159351 ], [ 9.219384624770445, 45.490530783395144 ], [ 9.219250324620166, 45.490552596437283 ], [ 9.21924915525225, 45.490548181814738 ], [ 9.219382997252309, 45.490525888696958 ], [ 9.219332594142491, 45.490376189246788 ], [ 9.219237085916975, 45.490092837953782 ], [ 9.218856256061583, 45.488788097004857 ], [ 9.218417719845947, 45.487285785247892 ], [ 9.218339536025328, 45.487010310643164 ], [ 9.21831863787115, 45.486944550591936 ], [ 9.218187353303792, 45.486965192844323 ], [ 9.218171495110751, 45.486912152476535 ], [ 9.218297100443056, 45.486886071652805 ], [ 9.218109073722115, 45.486438041750773 ], [ 9.217908318664779, 45.486219349132028 ], [ 9.216933449859338, 45.486662118999099 ], [ 9.216818454814007, 45.486258340399417 ], [ 9.216686456790478, 45.486276940108212 ], [ 9.216809221601951, 45.486708003768065 ], [ 9.215554028020662, 45.486728984529371 ], [ 9.21556072243747, 45.486927179136764 ], [ 9.215685541201067, 45.48734472146856 ], [ 9.215813182559732, 45.487325842955705 ] ], [ [ 9.220458849985604, 45.49407692224748 ], [ 9.221278607873167, 45.49406640102616 ], [ 9.22046480828638, 45.494095972534936 ], [ 9.220458849985604, 45.49407692224748 ] ], [ [ 9.219970715940013, 45.492891083856506 ], [ 9.219970984869015, 45.492914535409213 ], [ 9.219945873321999, 45.492917936805156 ], [ 9.219938693826956, 45.492896090515188 ], [ 9.219970715940013, 45.492891083856506 ] ], [ [ 9.220160542942038, 45.493104731066431 ], [ 9.221253307872681, 45.49309200102627 ], [ 9.220160922852688, 45.493106116510603 ], [ 9.220160542942038, 45.493104731066431 ] ], [ [ 9.218473137293586, 45.494760173645226 ], [ 9.218662983402346, 45.494730806939202 ], [ 9.218666671320706, 45.494730279777059 ], [ 9.218479634655496, 45.494759224287058 ], [ 9.218473137293586, 45.494760173645226 ] ], [ [ 9.224465695347977, 45.512870082476468 ], [ 9.224484498742362, 45.512867157930557 ], [ 9.224293189832144, 45.512899012683306 ], [ 9.224227056385205, 45.512909570147308 ], [ 9.224465695347977, 45.512870082476468 ] ], [ [ 9.222504691899724, 45.50083642544574 ], [ 9.222454991067169, 45.500679133216387 ], [ 9.222482345358696, 45.500693086479281 ], [ 9.222596375971504, 45.500809321396687 ], [ 9.222600695083122, 45.500817722604381 ], [ 9.222504691899724, 45.50083642544574 ] ], [ [ 9.225162873932772, 45.502116289458776 ], [ 9.225345107872549, 45.501629901024891 ], [ 9.225201536598004, 45.502017878308202 ], [ 9.225162873932772, 45.502116289458776 ] ], [ [ 9.224861572868212, 45.5086016543734 ], [ 9.224861020279116, 45.508599794739141 ], [ 9.225124007873012, 45.508562401024655 ], [ 9.224861572868212, 45.5086016543734 ] ], [ [ 9.224544107873584, 45.506101501024816 ], [ 9.224594175000714, 45.506096190592352 ], [ 9.224594210377713, 45.506096432414189 ], [ 9.224544107873584, 45.506101501024816 ] ], [ [ 9.223868774851237, 45.507615717941064 ], [ 9.224272763643533, 45.507553571974853 ], [ 9.224386135733798, 45.507537259611375 ], [ 9.224385821507498, 45.507536179899674 ], [ 9.224527844310643, 45.507514331875832 ], [ 9.224525572102639, 45.507507029400259 ], [ 9.224797176301228, 45.507483784785471 ], [ 9.224797319761805, 45.507484765370577 ], [ 9.224389527592651, 45.50754924409398 ], [ 9.224388014986154, 45.507543841787985 ], [ 9.223868774851237, 45.507615717941064 ] ], [ [ 9.225074480354719, 45.509304267209572 ], [ 9.225330607873428, 45.509268301024512 ], [ 9.22507524406157, 45.509306789227935 ], [ 9.225074480354719, 45.509304267209572 ] ], [ [ 9.226603107874208, 45.51872430102356 ], [ 9.226781142845285, 45.518690363718676 ], [ 9.226782920779742, 45.5186900973411 ], [ 9.226775276600463, 45.518702651812674 ], [ 9.226603107874208, 45.51872430102356 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.107633196884851, 45.497657260498912 ], [ 9.108273085087303, 45.497623838824815 ], [ 9.108271384725644, 45.497607738843953 ], [ 9.107633196702476, 45.497641071721539 ], [ 9.107633196884851, 45.497657260498912 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.235385892694813, 45.474985519493551 ], [ 9.235366249127884, 45.476533966148303 ], [ 9.235361039973233, 45.476943656972679 ], [ 9.235355529803357, 45.477379980256394 ], [ 9.23534150755845, 45.47848166874693 ], [ 9.23534061073099, 45.478549114759318 ], [ 9.235334402989572, 45.478997440782813 ], [ 9.235326707169492, 45.479572350564069 ], [ 9.235326567432637, 45.479584535767437 ], [ 9.235312442173841, 45.481042577325262 ], [ 9.235310664992324, 45.481160680708676 ], [ 9.23530966281152, 45.481231206256219 ], [ 9.235308569210099, 45.481300401577791 ], [ 9.236495545208035, 45.481309678865166 ], [ 9.236495619379779, 45.481309770373635 ], [ 9.235308550562619, 45.481301660679513 ], [ 9.235308156557199, 45.481330179273016 ], [ 9.235307162462297, 45.48139499786469 ], [ 9.236572478320879, 45.481404593947694 ], [ 9.236572480409306, 45.481404596524264 ], [ 9.235307158948434, 45.481395229750177 ], [ 9.235306157434273, 45.481462129742098 ], [ 9.235304353313614, 45.481583821584138 ], [ 9.236583807865236, 45.481593201026207 ], [ 9.23530435230556, 45.48158388982813 ], [ 9.23529033074224, 45.48253658971587 ], [ 9.236569807865367, 45.482545901026121 ], [ 9.235290325135788, 45.482536978765111 ], [ 9.23528665817823, 45.482796983162757 ], [ 9.235268896397564, 45.482840006442949 ], [ 9.235236167037627, 45.483039728620717 ], [ 9.235731096955224, 45.48307986249992 ], [ 9.235341063470431, 45.483150284046928 ], [ 9.235227801779468, 45.483151010138045 ], [ 9.235229498814467, 45.483282010162831 ], [ 9.235331689987513, 45.483281355046401 ], [ 9.235307436532375, 45.483363088792636 ], [ 9.235392534642454, 45.483375584030107 ], [ 9.235240056368362, 45.483389483798845 ], [ 9.235253974442367, 45.483465039331186 ], [ 9.235280488071409, 45.483606392099922 ], [ 9.235280828992375, 45.484021428294916 ], [ 9.236192565649134, 45.484021054068677 ], [ 9.236206102824911, 45.484039504064334 ], [ 9.235660173798079, 45.484068166281567 ], [ 9.235286837072884, 45.484064730187917 ], [ 9.235286408321928, 45.484087788093724 ], [ 9.235284377224449, 45.484087894718193 ], [ 9.235286103737884, 45.484104168385535 ], [ 9.235284494452694, 45.484190714343825 ], [ 9.235321905788448, 45.484384436623117 ], [ 9.235397743125185, 45.484559042719503 ], [ 9.235435119472559, 45.484630855557626 ], [ 9.236448502895678, 45.484369871994339 ], [ 9.236943685091973, 45.485044743891017 ], [ 9.237059185505645, 45.485002812377289 ], [ 9.237275202090368, 45.484899603735542 ], [ 9.237450812310884, 45.484768384189927 ], [ 9.237604119547303, 45.484622343179453 ], [ 9.23771113791601, 45.484451000153371 ], [ 9.237783518898315, 45.484285346926605 ], [ 9.237236176247709, 45.484167009213884 ], [ 9.237330429833033, 45.484142734039629 ], [ 9.237844680472669, 45.484147457541056 ], [ 9.237845779132689, 45.484088257531553 ], [ 9.237668966055466, 45.484086633726712 ], [ 9.237843839650392, 45.484069919454654 ], [ 9.237834266948237, 45.484020361876162 ], [ 9.237839986656383, 45.484020359423312 ], [ 9.237839977345621, 45.484009616925299 ], [ 9.23784233667164, 45.484009493016885 ], [ 9.237839957812467, 45.483987080073753 ], [ 9.237839656704683, 45.483639661970997 ], [ 9.237885873921, 45.483483885996158 ], [ 9.237903287270793, 45.483344064285838 ], [ 9.23781153509705, 45.4833384097387 ], [ 9.237791565334746, 45.483231970575645 ], [ 9.237787815027138, 45.483211618143159 ], [ 9.237787637433339, 45.483197956806251 ], [ 9.237903800347093, 45.483191186577692 ], [ 9.237891598026977, 45.483087586717225 ], [ 9.237461497619501, 45.483112653308702 ], [ 9.237427761297491, 45.483105761998075 ], [ 9.237889820749396, 45.483073788634584 ], [ 9.23785980146015, 45.482859126332777 ], [ 9.237845561372749, 45.482820104295996 ], [ 9.237849288205693, 45.482555003482091 ], [ 9.237863263287226, 45.481602532018172 ], [ 9.237865059351957, 45.48148101204599 ], [ 9.237866055437399, 45.481414272867852 ], [ 9.237867030948479, 45.481350464095371 ], [ 9.237867456328592, 45.481319788772801 ], [ 9.237868545336948, 45.48125068613404 ], [ 9.23674722895869, 45.481241935826255 ], [ 9.236747127010899, 45.481241810109431 ], [ 9.237868560467158, 45.481249674791549 ], [ 9.237869555102833, 45.481179440899844 ], [ 9.237871348399075, 45.481059906997643 ], [ 9.23659190786516, 45.481050401026245 ], [ 9.237871390214938, 45.481056513496114 ], [ 9.237885453151966, 45.479598032681224 ], [ 9.237885540104644, 45.479590103656612 ], [ 9.237893215090807, 45.479014801112655 ], [ 9.237899402928369, 45.478566446891072 ], [ 9.236620007864813, 45.478557701026467 ], [ 9.237899407633545, 45.47856609904052 ], [ 9.237900306099197, 45.478498299033646 ], [ 9.237914285832966, 45.477396038808287 ], [ 9.237919776407853, 45.476959703413868 ], [ 9.237924966790567, 45.476550030711778 ], [ 9.237944527852868, 45.4750025403088 ], [ 9.237945222212, 45.474951768225836 ], [ 9.235386593850992, 45.474934419499007 ], [ 9.235385892694813, 45.474985519493551 ] ], [ [ 9.236768466723358, 45.484065886033079 ], [ 9.237284601435205, 45.484038783100154 ], [ 9.23718777502414, 45.484059594092138 ], [ 9.237194843821939, 45.484082278161331 ], [ 9.236828719525642, 45.484078913381367 ], [ 9.236768466723358, 45.484065886033079 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.213468844983504, 45.474472648830798 ], [ 9.213468743080981, 45.474541065325873 ], [ 9.214748107873113, 45.474542001028389 ], [ 9.213468777177052, 45.474548646866388 ], [ 9.213469873816155, 45.47465325224875 ], [ 9.213478952681848, 45.475544657749026 ], [ 9.214246293896199, 45.475540786808757 ], [ 9.214251016893275, 45.47554499579892 ], [ 9.213479151327975, 45.47555533001691 ], [ 9.213482754756569, 45.475688578617095 ], [ 9.213483211056115, 45.475791126042353 ], [ 9.213483021557535, 45.475877954175267 ], [ 9.213481469524112, 45.475990582347855 ], [ 9.213644745812431, 45.47599169587226 ], [ 9.213649374516789, 45.475999021197993 ], [ 9.213481409489773, 45.475998977968075 ], [ 9.213481096206021, 45.476599753689769 ], [ 9.21347868944949, 45.477565070510245 ], [ 9.213455670294252, 45.477720545296528 ], [ 9.213451139099954, 45.477755122525068 ], [ 9.213416283202017, 45.47784078069067 ], [ 9.213402299710632, 45.477902970754215 ], [ 9.213535680286089, 45.477917825102523 ], [ 9.213536733397934, 45.477922194946409 ], [ 9.213401271460127, 45.477907618918465 ], [ 9.213387797262799, 45.477969594379566 ], [ 9.213382691727601, 45.47809716060582 ], [ 9.213400444373896, 45.47822398562122 ], [ 9.213439837901548, 45.478347203664235 ], [ 9.213460818526116, 45.478388292491303 ], [ 9.213462818384084, 45.478407378072198 ], [ 9.213470364138566, 45.478406986766721 ], [ 9.213486545327976, 45.478438676228606 ], [ 9.213467115883251, 45.478440188491589 ], [ 9.213485493550936, 45.478557044855727 ], [ 9.213488898458676, 45.479756643007001 ], [ 9.213486981900369, 45.479823582469919 ], [ 9.216045434614177, 45.479859805258499 ], [ 9.216047917715304, 45.47977296592736 ], [ 9.216044616605185, 45.478628212113705 ], [ 9.216068202118841, 45.478601763542791 ], [ 9.216044510194196, 45.478591309805424 ], [ 9.216044506138454, 45.478589903312766 ], [ 9.216069120784164, 45.478600731575554 ], [ 9.216114921954702, 45.478549212905847 ], [ 9.216191879230387, 45.478432918303533 ], [ 9.216247328243167, 45.478310071547696 ], [ 9.216280014798368, 45.478186019785326 ], [ 9.216292244684203, 45.478044868883501 ], [ 9.216269825023085, 45.477882895112167 ], [ 9.216220014882367, 45.477745690576377 ], [ 9.216152516889073, 45.477626078329379 ], [ 9.216103965953602, 45.47756385930947 ], [ 9.216050655537895, 45.477584448001089 ], [ 9.216037638710112, 45.477533353741173 ], [ 9.216039918002233, 45.476602258336001 ], [ 9.215731867277226, 45.476601884684101 ], [ 9.215730821052524, 45.476600936467463 ], [ 9.216039919827775, 45.476601009736932 ], [ 9.216040204219984, 45.476003806001962 ], [ 9.216041794442782, 45.475887981904748 ], [ 9.216042000116612, 45.475791761570278 ], [ 9.215057772697604, 45.475790716186552 ], [ 9.215058120212834, 45.475789746498798 ], [ 9.216041995165716, 45.475787561806904 ], [ 9.216041461400689, 45.475668647675555 ], [ 9.216037608127495, 45.475526393709906 ], [ 9.216028542548646, 45.474640230117288 ], [ 9.216027478126941, 45.474539131666518 ], [ 9.216027570954996, 45.474474830645939 ], [ 9.216029446985393, 45.473424138919555 ], [ 9.213470768759544, 45.473421848808847 ], [ 9.213468844983504, 45.474472648830798 ] ], [ [ 9.215827422632717, 45.477613903675817 ], [ 9.215885795711939, 45.477613974491526 ], [ 9.215684845102524, 45.477637946880144 ], [ 9.215700598319801, 45.477629894445869 ], [ 9.215827422632717, 45.477613903675817 ] ], [ [ 9.216037501196093, 45.477589528253368 ], [ 9.216037506369958, 45.477587414728454 ], [ 9.216045624041277, 45.477586391182783 ], [ 9.216037501196093, 45.477589528253368 ] ], [ [ 9.214760507875287, 45.476600701028225 ], [ 9.21493464014099, 45.476600743886976 ], [ 9.214934634719778, 45.476600913819169 ], [ 9.214760507875287, 45.476600701028225 ] ], [ [ 9.215029688427213, 45.476600767168982 ], [ 9.215377278594687, 45.4766008516375 ], [ 9.215377781031689, 45.476601454166897 ], [ 9.215029680047332, 45.47660102985693 ], [ 9.215029688427213, 45.476600767168982 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.186619912378484, 45.473590061010832 ], [ 9.186757540756355, 45.474096783516764 ], [ 9.186859305161009, 45.474484613200268 ], [ 9.188117407883849, 45.474321201030357 ], [ 9.186868899344208, 45.474517689771289 ], [ 9.18705412259594, 45.475100264869774 ], [ 9.187128682566861, 45.475321047720129 ], [ 9.187152295095153, 45.475400987952384 ], [ 9.187225809260458, 45.476996597363218 ], [ 9.187264640553128, 45.477139508606264 ], [ 9.188521307884038, 45.476970501030088 ], [ 9.187275942817889, 45.477176802357228 ], [ 9.187301228405447, 45.47725235450433 ], [ 9.187447584014173, 45.477676499669535 ], [ 9.187512845772302, 45.477863291569548 ], [ 9.187721317650977, 45.478455516955627 ], [ 9.187739537006919, 45.478519556479242 ], [ 9.188072550896095, 45.478472666423791 ], [ 9.188350334787094, 45.478505832460122 ], [ 9.18790970348841, 45.478617348446953 ], [ 9.187871562710624, 45.478617838318456 ], [ 9.187871798878609, 45.478626941333175 ], [ 9.187790188536038, 45.478647595198169 ], [ 9.187902527754089, 45.478867279990851 ], [ 9.18802689343525, 45.47917219566456 ], [ 9.187657079417551, 45.479233493169055 ], [ 9.187694227261781, 45.479344409386037 ], [ 9.187584431611327, 45.479358865248756 ], [ 9.187606319880983, 45.479441140398542 ], [ 9.187574378535263, 45.47944524161106 ], [ 9.187549355166565, 45.479363841552107 ], [ 9.187448408918796, 45.479379199182752 ], [ 9.187439045133416, 45.47938044768599 ], [ 9.187439090701057, 45.479380616820862 ], [ 9.187432356900482, 45.479381641275097 ], [ 9.187489073767681, 45.479566139962536 ], [ 9.187915578134099, 45.481149153727443 ], [ 9.187935380337526, 45.481146513432591 ], [ 9.18795604801446, 45.481226170039697 ], [ 9.189047164521622, 45.481086067840444 ], [ 9.189025013924564, 45.4810007021537 ], [ 9.18905010592975, 45.480997628607092 ], [ 9.189074825059413, 45.481082294169795 ], [ 9.189969038404715, 45.480953092153079 ], [ 9.189950113642258, 45.480888276426427 ], [ 9.189964877369656, 45.480886601185894 ], [ 9.189984804933291, 45.480950741133789 ], [ 9.190216701494979, 45.480915086667139 ], [ 9.190324948054496, 45.480899969924657 ], [ 9.190219834047308, 45.48052748473475 ], [ 9.19020275916364, 45.480182090791317 ], [ 9.190272951971046, 45.480273315030978 ], [ 9.190429402130189, 45.480857223206712 ], [ 9.191836130238231, 45.480670688492204 ], [ 9.192065702363113, 45.480662327386156 ], [ 9.192304824325022, 45.480645131897155 ], [ 9.192287064657117, 45.480522915731726 ], [ 9.192319630699052, 45.480565135947046 ], [ 9.192444331925961, 45.480517535285493 ], [ 9.192249596476568, 45.480265070324243 ], [ 9.19224806645042, 45.480254541066508 ], [ 9.192451917836207, 45.480514616218898 ], [ 9.192529295156634, 45.480484601894609 ], [ 9.192578401851424, 45.480468646300032 ], [ 9.192596993997981, 45.480463362200673 ], [ 9.192170496927098, 45.479720721734026 ], [ 9.19204459560909, 45.478854269866162 ], [ 9.191869315460693, 45.478866874491779 ], [ 9.191684024454249, 45.478873622791887 ], [ 9.191638435953069, 45.47879423770209 ], [ 9.191562062606701, 45.478815942924889 ], [ 9.191373525396326, 45.478877201447162 ], [ 9.19128369038344, 45.478912047961558 ], [ 9.190744230562709, 45.478983583036353 ], [ 9.19055409267826, 45.47881042544644 ], [ 9.190527919302719, 45.478786216133088 ], [ 9.190455261110225, 45.478585353218321 ], [ 9.190384876775381, 45.478406922285906 ], [ 9.189768443646875, 45.478527263320352 ], [ 9.189782097889385, 45.478593284170003 ], [ 9.189360424713765, 45.478598706252498 ], [ 9.189190007883978, 45.478534401029897 ], [ 9.189445561142817, 45.478279328498608 ], [ 9.189615172102878, 45.478255443804713 ], [ 9.189649963653187, 45.478295948906371 ], [ 9.190054359876129, 45.478193595915123 ], [ 9.190248670877367, 45.478166231808778 ], [ 9.190242880010485, 45.478145880709796 ], [ 9.190251916168908, 45.478143593611854 ], [ 9.190230078961713, 45.478100893365699 ], [ 9.190219088884051, 45.47806227034598 ], [ 9.189997188152525, 45.477431975360254 ], [ 9.189933388208154, 45.477249390402342 ], [ 9.189789953578334, 45.476833763310665 ], [ 9.189776656672551, 45.476794039383556 ], [ 9.189710561240695, 45.475360855682652 ], [ 9.189710949960695, 45.475327100408691 ], [ 9.188431607883853, 45.475319801030238 ], [ 9.189692126743855, 45.475165805332878 ], [ 9.18967111475648, 45.475080678326925 ], [ 9.189626524847386, 45.474929741835069 ], [ 9.189547475876408, 45.474695697930379 ], [ 9.189371146382285, 45.474141173520088 ], [ 9.189272994903469, 45.473767176141955 ], [ 9.188014907883835, 45.473930601030375 ], [ 9.189271515591908, 45.47376163651797 ], [ 9.189140498635766, 45.473279335245522 ], [ 9.189134895381438, 45.473254606071386 ], [ 9.186608114010582, 45.473537982022599 ], [ 9.186619912378484, 45.473590061010832 ] ], [ [ 9.188767192817458, 45.478374853920641 ], [ 9.188994107884017, 45.478342901029919 ], [ 9.188807604741257, 45.478390103260878 ], [ 9.188767192817458, 45.478374853920641 ] ], [ [ 9.187781832699523, 45.480554708496278 ], [ 9.187702807884806, 45.48026140102985 ], [ 9.187721556799936, 45.480322389002367 ], [ 9.187781832699523, 45.480554708496278 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.175837352531914, 45.476671881386615 ], [ 9.175804840481774, 45.476651504559079 ], [ 9.174102755067857, 45.477995691113072 ], [ 9.174128693894112, 45.47801194744688 ], [ 9.17417380929046, 45.478040613098479 ], [ 9.174273426874231, 45.478105822041854 ], [ 9.174678768163693, 45.478368997772186 ], [ 9.17512827404517, 45.478674082134702 ], [ 9.175242195013888, 45.478751397177746 ], [ 9.176062297538342, 45.478153343739734 ], [ 9.177352341725516, 45.477402380319781 ], [ 9.177338202262536, 45.477390358940816 ], [ 9.177224923189486, 45.477261611380428 ], [ 9.177057854345881, 45.477142063967207 ], [ 9.176809567530897, 45.47731379710266 ], [ 9.176445221764169, 45.477066516514434 ], [ 9.175556907889373, 45.477714301030957 ], [ 9.176424617386266, 45.477052838854831 ], [ 9.17601282757726, 45.476785481699793 ], [ 9.175909930026608, 45.476718127671496 ], [ 9.17503840788954, 45.477377101031003 ], [ 9.175895942836936, 45.476709107215491 ], [ 9.175837352531914, 45.476671881386615 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.189719645815673, 45.478458662966808 ], [ 9.189737719669459, 45.478471465896995 ], [ 9.190352628744543, 45.47834732745558 ], [ 9.190346428441547, 45.47833212752213 ], [ 9.189719645815673, 45.478458662966808 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.206502173295412, 45.480550611057197 ], [ 9.206506853298116, 45.480555309711434 ], [ 9.206049407227859, 45.480781684392944 ], [ 9.206109102103051, 45.480841380364915 ], [ 9.207195683277128, 45.481927981504001 ], [ 9.20727387807935, 45.48200617774301 ], [ 9.207288777116807, 45.482021077054213 ], [ 9.207301719097735, 45.482034019273087 ], [ 9.207376861415826, 45.482109361768927 ], [ 9.208506870486916, 45.483241486157787 ], [ 9.208550169231687, 45.483285714893093 ], [ 9.20960400787644, 45.482775201027955 ], [ 9.208557445251103, 45.48329306856138 ], [ 9.208619313844105, 45.483354938291299 ], [ 9.2092327773197, 45.48396851303788 ], [ 9.209285228170753, 45.484020964856654 ], [ 9.209300527507853, 45.484036264474895 ], [ 9.209743529808417, 45.48381706271509 ], [ 9.209744332846434, 45.483817865767762 ], [ 9.211837463710435, 45.482782126686573 ], [ 9.211831263652865, 45.482775926742896 ], [ 9.211818663388918, 45.482763326710511 ], [ 9.211803363033182, 45.482748026635882 ], [ 9.21176998813956, 45.482714652355519 ], [ 9.211156756813688, 45.482101332348243 ], [ 9.21111646050257, 45.482060971700214 ], [ 9.211075635981807, 45.482014572372471 ], [ 9.209909686682995, 45.480829054813803 ], [ 9.209820715650112, 45.480746842148079 ], [ 9.209737550597556, 45.480661768163927 ], [ 9.208651435003913, 45.479571360010681 ], [ 9.20860620654007, 45.479525932702153 ], [ 9.208148122766207, 45.47975164139676 ], [ 9.208148035605996, 45.479751554238042 ], [ 9.208606052130708, 45.479525777648476 ], [ 9.208530453554262, 45.479449880479486 ], [ 9.20733330765295, 45.47824795699659 ], [ 9.207265270166728, 45.47817962104849 ], [ 9.206804591695585, 45.478406621202716 ], [ 9.206783072772081, 45.478386192731207 ], [ 9.205697694218383, 45.478952031882592 ], [ 9.205169326425548, 45.479212371381003 ], [ 9.205179227253362, 45.479222316021463 ], [ 9.204727123478175, 45.479458000058642 ], [ 9.204791622081926, 45.479519231528478 ], [ 9.205218475454414, 45.479930297124696 ], [ 9.205971550482381, 45.480702023672698 ], [ 9.20604113826386, 45.480773314966328 ], [ 9.206502173295412, 45.480550611057197 ] ] ] } } +] +} diff --git a/layers/musei_buffer.json b/layers/musei_buffer.json new file mode 100644 index 0000000..3a55eb5 --- /dev/null +++ b/layers/musei_buffer.json @@ -0,0 +1,33 @@ +{ +"type": "FeatureCollection", +"name": "musei_buffer", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.201876925438194, 45.444838341214897 ], [ 9.204100925981235, 45.445271916406483 ], [ 9.206524587455437, 45.445375432800084 ], [ 9.206752540835669, 45.442969105171393 ], [ 9.202140989901409, 45.442398471248545 ], [ 9.201876925438194, 45.444838341214897 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.172455978910646, 45.448314899204874 ], [ 9.175672126955886, 45.448258321461921 ], [ 9.175594187165517, 45.446071181872099 ], [ 9.172378137852638, 45.446127757737997 ], [ 9.172455978910646, 45.448314899204874 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.180876335188794, 45.450843172164312 ], [ 9.180925876025933, 45.450881072279486 ], [ 9.18076686758263, 45.451536521915678 ], [ 9.182210465327003, 45.451636506975795 ], [ 9.182364466479454, 45.451647644112136 ], [ 9.182526514310785, 45.451659079508502 ], [ 9.18260299641824, 45.45166446440895 ], [ 9.184374419995954, 45.451787970413697 ], [ 9.185096655649261, 45.449979949894448 ], [ 9.185746874809068, 45.44952512414136 ], [ 9.185371792353116, 45.44929115028215 ], [ 9.185410535099791, 45.449194157136716 ], [ 9.185127875162545, 45.44913899470783 ], [ 9.18509526055921, 45.449118649612188 ], [ 9.185160336071039, 45.448719999713312 ], [ 9.182233632307804, 45.44830264296332 ], [ 9.182016581400001, 45.448943655784333 ], [ 9.181157995684876, 45.448883481272659 ], [ 9.180876335188794, 45.450843172164312 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.163185479684721, 45.452012475479641 ], [ 9.163263450558842, 45.452288049498215 ], [ 9.165071895301068, 45.452763607053242 ], [ 9.166102468892184, 45.452144567430402 ], [ 9.166102520123728, 45.452143538064931 ], [ 9.166233230707043, 45.452071555794298 ], [ 9.166218861808439, 45.451982536332423 ], [ 9.166300621576481, 45.45193635987961 ], [ 9.166293387742698, 45.451872096455311 ], [ 9.166344103855067, 45.451839838735815 ], [ 9.166182832407893, 45.45088699746838 ], [ 9.16530839878973, 45.450546830040906 ], [ 9.165282423535448, 45.450544530202549 ], [ 9.165160374021241, 45.450522943662342 ], [ 9.165058892323193, 45.450481379386183 ], [ 9.16419389302852, 45.450378930076276 ], [ 9.163105122522039, 45.450974118417356 ], [ 9.16312069660604, 45.451036709131778 ], [ 9.16310301605254, 45.451047784577646 ], [ 9.16310456563648, 45.451055582000947 ], [ 9.163078765841542, 45.451070354808401 ], [ 9.16308675340065, 45.45111071099744 ], [ 9.162991293491359, 45.451167517077771 ], [ 9.161323820046487, 45.450629302859781 ], [ 9.160629068865111, 45.450404974856809 ], [ 9.1606290300639, 45.450405033678884 ], [ 9.160628632652559, 45.450404905397953 ], [ 9.160499642572566, 45.450600582726842 ], [ 9.160406288405198, 45.450570559696153 ], [ 9.159748266543849, 45.451570036244632 ], [ 9.159114092507162, 45.452569049697644 ], [ 9.15911411250022, 45.452569055898472 ], [ 9.159114111329091, 45.452569057743275 ], [ 9.159185095341627, 45.452591073353595 ], [ 9.159120603526713, 45.452690203182954 ], [ 9.159120918025954, 45.45269030394455 ], [ 9.159120849985911, 45.452690408585248 ], [ 9.160556316869853, 45.453150234597906 ], [ 9.160815407781337, 45.453234188451006 ], [ 9.161918364910635, 45.45359182312329 ], [ 9.161951843722766, 45.453544721383956 ], [ 9.162146811679742, 45.453607349314709 ], [ 9.162146908966321, 45.453607199480288 ], [ 9.162147020425259, 45.45360723526359 ], [ 9.162808180338669, 45.452588880689362 ], [ 9.162934899322314, 45.452394677988323 ], [ 9.163096511365389, 45.452148140156829 ], [ 9.163185479684721, 45.452012475479641 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.183364507260034, 45.453196545952721 ], [ 9.18337932793448, 45.453135230809849 ], [ 9.183256413733169, 45.453118597246473 ], [ 9.183274372961048, 45.453022918461969 ], [ 9.182042037307529, 45.452908089299306 ], [ 9.181532996532624, 45.452281163251882 ], [ 9.180806690548945, 45.452792965743541 ], [ 9.18065610832894, 45.452778931846503 ], [ 9.180629928080355, 45.452917521985903 ], [ 9.180590262387646, 45.452945472430784 ], [ 9.18048192338804, 45.452975117226003 ], [ 9.180471422831168, 45.452974020499163 ], [ 9.180472101148316, 45.452977804878351 ], [ 9.180452067763165, 45.452983286595661 ], [ 9.180285238130118, 45.453079213126443 ], [ 9.179716782028112, 45.453025030838859 ], [ 9.179651225136224, 45.453321695944574 ], [ 9.179489768849708, 45.453305464923503 ], [ 9.179464900036669, 45.454164857193042 ], [ 9.179409557341286, 45.454415289933543 ], [ 9.179386055975449, 45.454429283713466 ], [ 9.17939794329425, 45.454467844690363 ], [ 9.179292926307774, 45.454943052873887 ], [ 9.179509785898867, 45.454955430643587 ], [ 9.179523719207802, 45.455106903725806 ], [ 9.179411028644878, 45.455626776442557 ], [ 9.179444918465169, 45.455631100899794 ], [ 9.179408940335316, 45.455781746802799 ], [ 9.181184064830632, 45.455963718344712 ], [ 9.182798070385919, 45.456129306118001 ], [ 9.182898650974494, 45.45566759211038 ], [ 9.182952892799884, 45.455673494296356 ], [ 9.183025333737081, 45.455345718942148 ], [ 9.183082304943262, 45.455352851878693 ], [ 9.18310817830017, 45.455258441847235 ], [ 9.183202187173162, 45.45526860171006 ], [ 9.183333764667681, 45.454791385755442 ], [ 9.18358562303691, 45.45464161132162 ], [ 9.183886479291518, 45.453273698083926 ], [ 9.183710723798942, 45.453267905996285 ], [ 9.18372154414133, 45.453224968527287 ], [ 9.183364507260034, 45.453196545952721 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.225655972896046, 45.463650819817019 ], [ 9.227039285679243, 45.462459868174733 ], [ 9.226889208936248, 45.462232557603805 ], [ 9.223310330445409, 45.462195148622563 ], [ 9.222945818896083, 45.46297430527531 ], [ 9.22291775882799, 45.464314743965829 ], [ 9.225636315549986, 45.464329351352291 ], [ 9.225655972896046, 45.463650819817019 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.203471610930846, 45.460650136167523 ], [ 9.203700887098607, 45.460664416064688 ], [ 9.203680594585563, 45.460825206284262 ], [ 9.20644987083994, 45.460996123328037 ], [ 9.206469904133783, 45.460837929288331 ], [ 9.206691751349108, 45.460851613749988 ], [ 9.206937655211037, 45.458902870195566 ], [ 9.20671916159338, 45.458889310980339 ], [ 9.206739295505558, 45.458730136115442 ], [ 9.203968200438565, 45.458558502928355 ], [ 9.203948247461476, 45.458715683500976 ], [ 9.203718538050639, 45.458701334563962 ], [ 9.203471610930846, 45.460650136167523 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.180235923777374, 45.461178052998562 ], [ 9.180771789519172, 45.461897795415084 ], [ 9.182269607210555, 45.461995550925899 ], [ 9.18230620478594, 45.461959670999768 ], [ 9.182908382172004, 45.462000583553582 ], [ 9.183194622198418, 45.46010560256024 ], [ 9.182591818057356, 45.460056903408237 ], [ 9.182573062577864, 45.460026942893762 ], [ 9.181094144786584, 45.45990428755406 ], [ 9.18035366220376, 45.460494095380014 ], [ 9.180235923777374, 45.461178052998562 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.168066464264554, 45.461788854276911 ], [ 9.16787366524839, 45.46189553605889 ], [ 9.1682390669657, 45.462176721834439 ], [ 9.168951675046069, 45.462831486002955 ], [ 9.169084867745866, 45.462948692781431 ], [ 9.169114053754326, 45.462973219287719 ], [ 9.169435838318559, 45.463265772728086 ], [ 9.16963685302777, 45.463447492644185 ], [ 9.169775646663984, 45.463572872494836 ], [ 9.170473186320534, 45.464200516180419 ], [ 9.171750806819587, 45.463825982970867 ], [ 9.173702236635982, 45.463253739988531 ], [ 9.172452544107417, 45.462151332326044 ], [ 9.172805105064175, 45.461964214086073 ], [ 9.174184224018823, 45.461221444007137 ], [ 9.173166785474899, 45.460292225072067 ], [ 9.173153609868619, 45.460280205928449 ], [ 9.173016964594211, 45.460157946298729 ], [ 9.172860739685097, 45.460019506917071 ], [ 9.171966992247585, 45.459240363724142 ], [ 9.170403096318765, 45.460089789846151 ], [ 9.170360933626505, 45.460054669565629 ], [ 9.169273216620946, 45.460696541834821 ], [ 9.16812636637794, 45.461237914601135 ], [ 9.168191211011502, 45.461293706861817 ], [ 9.167771252261378, 45.461524631326824 ], [ 9.168066464264554, 45.461788854276911 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.183379295609031, 45.463195811146626 ], [ 9.183405345404148, 45.463211777801774 ], [ 9.183306728686667, 45.46327878847594 ], [ 9.183343073712082, 45.463304951159088 ], [ 9.183336306612416, 45.463309566307551 ], [ 9.183400335139748, 45.46335682032263 ], [ 9.183165298929158, 45.46351626413324 ], [ 9.184062238672551, 45.464195997863278 ], [ 9.184941336201341, 45.464862781254432 ], [ 9.185211246652853, 45.464691779917338 ], [ 9.185536463361606, 45.464931471262474 ], [ 9.185578444261612, 45.46490136016255 ], [ 9.185804074017813, 45.465052683776797 ], [ 9.18693469069088, 45.464307205772322 ], [ 9.188089038663065, 45.463545806945781 ], [ 9.186888570594819, 45.462605861459053 ], [ 9.18570668428759, 45.461739191904805 ], [ 9.185492930365358, 45.461892124832559 ], [ 9.185335204111587, 45.461795347290895 ], [ 9.18532711795374, 45.461801731221833 ], [ 9.185205870893487, 45.461727039410775 ], [ 9.185163906209112, 45.461760746695504 ], [ 9.185054788890021, 45.46171395654482 ], [ 9.184793054835813, 45.462041804610941 ], [ 9.184270820754145, 45.462461394819407 ], [ 9.183409364428369, 45.463154467662264 ], [ 9.183421371546627, 45.463161982726092 ], [ 9.183379295609031, 45.463195811146626 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.192143775334591, 45.464683287283947 ], [ 9.192247672670273, 45.464730735137003 ], [ 9.192415542154182, 45.464544116333251 ], [ 9.193288402049797, 45.464568240094863 ], [ 9.193356753187858, 45.463558869030294 ], [ 9.193408438668394, 45.463163362378879 ], [ 9.193673694620575, 45.462294902076138 ], [ 9.193252285155653, 45.462204091206942 ], [ 9.191721623172841, 45.461505227996163 ], [ 9.190967927702259, 45.460972432453779 ], [ 9.189540249406988, 45.462281300174439 ], [ 9.18950301908721, 45.462318788666636 ], [ 9.188839644042744, 45.462318781286243 ], [ 9.188840411979324, 45.462411570847998 ], [ 9.188828578500122, 45.462411570698237 ], [ 9.188837415000991, 45.464471764045228 ], [ 9.190149172429399, 45.464464315789307 ], [ 9.190988268286011, 45.464462598082832 ], [ 9.192120926626968, 45.464711162536645 ], [ 9.192143775334591, 45.464683287283947 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.143477087270075, 45.475603612340016 ], [ 9.145575663023138, 45.476886174296943 ], [ 9.14568624390466, 45.476801888326783 ], [ 9.145939209007834, 45.476964844283032 ], [ 9.147760401634272, 45.47555235063416 ], [ 9.14580794082779, 45.474236079464752 ], [ 9.145750422914494, 45.474271019562565 ], [ 9.145528719081693, 45.47412910193318 ], [ 9.143477087270075, 45.475603612340016 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.197671674113312, 45.472001324783562 ], [ 9.197748737861826, 45.472128250827332 ], [ 9.197101008431975, 45.472329950563712 ], [ 9.197575063464154, 45.473151688500344 ], [ 9.197960026614936, 45.473815343870335 ], [ 9.198779313545389, 45.473835165823445 ], [ 9.198919244909179, 45.474069191767114 ], [ 9.199634279398831, 45.473855844716766 ], [ 9.199671898474129, 45.473856754454715 ], [ 9.200101564857764, 45.473716416020679 ], [ 9.20033014449894, 45.473648211450488 ], [ 9.200779033940252, 45.473514457367898 ], [ 9.201875682116036, 45.474594689311019 ], [ 9.204623674099656, 45.473222554224428 ], [ 9.20438519082265, 45.472987690088225 ], [ 9.204420632523224, 45.472969968510114 ], [ 9.203601096299368, 45.472162593190497 ], [ 9.202772386641104, 45.47134639713785 ], [ 9.202721426069081, 45.47137192825312 ], [ 9.202479401347031, 45.471133582253131 ], [ 9.201116160005567, 45.471814265083552 ], [ 9.200685145165723, 45.471103619746188 ], [ 9.199357171479683, 45.471499518207487 ], [ 9.197671674113312, 45.472001324783562 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.171609394072075, 45.472800574631222 ], [ 9.171573811062419, 45.472827608454054 ], [ 9.172159133267105, 45.473206359537116 ], [ 9.1721840590588, 45.473238763738571 ], [ 9.172515194176276, 45.473450128601513 ], [ 9.172553630485513, 45.47346162675575 ], [ 9.173522368143944, 45.474088451966971 ], [ 9.173558930354554, 45.474060736031397 ], [ 9.173715565322393, 45.474162233164726 ], [ 9.174001139741499, 45.473945463453354 ], [ 9.174015481515148, 45.473954690124224 ], [ 9.174335991957818, 45.473711392260974 ], [ 9.174518194947222, 45.473829509951642 ], [ 9.176294642985079, 45.472478652176825 ], [ 9.176095208312026, 45.472349476068231 ], [ 9.176381759674301, 45.472122715445487 ], [ 9.175908285987864, 45.471816360294568 ], [ 9.175901082643959, 45.47177708273108 ], [ 9.175795364176789, 45.471562901968923 ], [ 9.175630104735861, 45.471368548103285 ], [ 9.175412975963654, 45.471202703087151 ], [ 9.175157994643239, 45.471073564686634 ], [ 9.174873034742623, 45.470982596966643 ], [ 9.174569490006542, 45.470933638167949 ], [ 9.17454421850041, 45.470933107098645 ], [ 9.174065620880484, 45.470623188616997 ], [ 9.17370957046154, 45.470893480684538 ], [ 9.173675859416859, 45.470871643443672 ], [ 9.173638831427272, 45.470899765371371 ], [ 9.173479250417708, 45.470796398952032 ], [ 9.171582989437018, 45.472234923581489 ], [ 9.171745378045516, 45.472340168920567 ], [ 9.17170743516267, 45.472369012533491 ], [ 9.171748911045173, 45.472395816530415 ], [ 9.171396651838354, 45.472663073302968 ], [ 9.171609394072075, 45.472800574631222 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.186189121512838, 45.472994356803653 ], [ 9.190131690667577, 45.473612285579705 ], [ 9.190159112606862, 45.473507431482894 ], [ 9.190194828638743, 45.473521003044297 ], [ 9.191841475074893, 45.471675888484434 ], [ 9.190869471716542, 45.471293731122906 ], [ 9.19106019280686, 45.470644012632057 ], [ 9.189290400429766, 45.470348802238028 ], [ 9.187903080202688, 45.470085431112821 ], [ 9.187819795831054, 45.470417747976128 ], [ 9.187322784710318, 45.470358745113707 ], [ 9.187252308112862, 45.470609643517733 ], [ 9.186739037289424, 45.470552173624469 ], [ 9.186461523207837, 45.471806649435756 ], [ 9.186189121512838, 45.472994356803653 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.209043908899586, 45.478880777703317 ], [ 9.209692048927257, 45.479312180887291 ], [ 9.209688179131899, 45.479315360248727 ], [ 9.210586188406497, 45.479907603370378 ], [ 9.21084698063131, 45.480081271672979 ], [ 9.211299820935441, 45.480382924365379 ], [ 9.211299894825979, 45.480382875005631 ], [ 9.211482117723513, 45.48050421893808 ], [ 9.211486189810588, 45.480501140687679 ], [ 9.211644650016238, 45.480605640762974 ], [ 9.21263548557574, 45.479747984600735 ], [ 9.213436984793162, 45.479053519741235 ], [ 9.212324541364376, 45.478023687859071 ], [ 9.211831326775865, 45.477510328028295 ], [ 9.210724498778934, 45.478053769119242 ], [ 9.210532397447603, 45.478148260741051 ], [ 9.209043908899586, 45.478880777703317 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.146875020351018, 45.484633411970414 ], [ 9.147002318872644, 45.485599432623495 ], [ 9.147054705909312, 45.485996636164913 ], [ 9.147200544379643, 45.487102271430949 ], [ 9.150031016458986, 45.486919578767925 ], [ 9.149704927273957, 45.484449859613655 ], [ 9.146875020351018, 45.484633411970414 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.163672381214051, 45.486495762784394 ], [ 9.163773224295008, 45.488437155981515 ], [ 9.166751078677827, 45.488360618972543 ], [ 9.166650147869506, 45.486419228143056 ], [ 9.163672381214051, 45.486495762784394 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.201685817072866, 45.512561795251173 ], [ 9.202159580663848, 45.513402841638872 ], [ 9.20212315322385, 45.5134139993228 ], [ 9.202643889436834, 45.51425242575791 ], [ 9.203161700624836, 45.515170656504715 ], [ 9.205925640964772, 45.514348895311691 ], [ 9.205748823140716, 45.514044396518003 ], [ 9.205771466466459, 45.51403828524532 ], [ 9.204662480576374, 45.512072489550626 ], [ 9.204632821631041, 45.51208192690148 ], [ 9.204460145901452, 45.511775940494566 ], [ 9.201685817072866, 45.512561795251173 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.185600430602561, 45.493433977588907 ], [ 9.186447627147659, 45.493697325824897 ], [ 9.186035290181948, 45.494282590246662 ], [ 9.185635445030451, 45.494849838356672 ], [ 9.187572042785799, 45.496386236248298 ], [ 9.187870147159099, 45.495964531722869 ], [ 9.187918390903803, 45.495981220755986 ], [ 9.189116456511098, 45.494279918495934 ], [ 9.189070114288208, 45.494263829405767 ], [ 9.189128140082985, 45.494181429357347 ], [ 9.188618094555862, 45.494005092507329 ], [ 9.189650500864481, 45.492372783546415 ], [ 9.186887865486813, 45.491503318669118 ], [ 9.186730987620784, 45.491751320432165 ], [ 9.186675865384643, 45.491734234727929 ], [ 9.185600430602561, 45.493433977588907 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.187408939135093, 45.466479549851698 ], [ 9.187692021729736, 45.46674654380395 ], [ 9.186544695008992, 45.467330361900224 ], [ 9.186811725414396, 45.467559539571774 ], [ 9.18667388770149, 45.46761526430052 ], [ 9.187654148466873, 45.468488976768683 ], [ 9.188448397016488, 45.469194456010285 ], [ 9.188519909064798, 45.469156263061478 ], [ 9.188700227215458, 45.469300736178958 ], [ 9.188783797971801, 45.469247494880648 ], [ 9.188920552513565, 45.469347679121974 ], [ 9.189884621233883, 45.468701082889424 ], [ 9.190227058994488, 45.469020850281346 ], [ 9.190499376118984, 45.468881312554835 ], [ 9.190769523828097, 45.469108071228405 ], [ 9.191460360541727, 45.469691089940696 ], [ 9.191599567739257, 45.46984334608463 ], [ 9.192046004271967, 45.46957724527973 ], [ 9.192250490471775, 45.46970356688648 ], [ 9.194260595225545, 45.468331400634042 ], [ 9.193575447301139, 45.467965050787555 ], [ 9.193955677040426, 45.467536572663349 ], [ 9.192871430923642, 45.467047495197122 ], [ 9.192843348007685, 45.467034898815406 ], [ 9.192885675457227, 45.466959278408645 ], [ 9.192761616511508, 45.466911607654389 ], [ 9.192998870131923, 45.466562282475486 ], [ 9.190901066941361, 45.465930066661009 ], [ 9.190783711116151, 45.465984791494925 ], [ 9.189818074828537, 45.465120845190761 ], [ 9.189579743746098, 45.465250638682015 ], [ 9.189446127687386, 45.465138191107371 ], [ 9.187408939135093, 45.466479549851698 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.169057907602419, 45.464819926280001 ], [ 9.169308249452362, 45.465471115559929 ], [ 9.168983468383043, 45.465525031407964 ], [ 9.169027147829993, 45.465635782121851 ], [ 9.168979871257593, 45.465645815371168 ], [ 9.16908725998079, 45.465915103154195 ], [ 9.169038925268763, 45.465925614832067 ], [ 9.169721736787306, 45.46767236158621 ], [ 9.169835611428507, 45.467655259507168 ], [ 9.169964605525186, 45.467957395717896 ], [ 9.171227528726689, 45.467811966648775 ], [ 9.172821216733723, 45.467499457624243 ], [ 9.172820848757137, 45.467483879625334 ], [ 9.173161847634139, 45.467421676366435 ], [ 9.173054822271311, 45.467106025835257 ], [ 9.173409961403765, 45.467041872784399 ], [ 9.173341766983434, 45.466839201169819 ], [ 9.173487882427549, 45.46681329635345 ], [ 9.173092814221013, 45.465898606837193 ], [ 9.172700278067643, 45.464831322210912 ], [ 9.172332195502067, 45.464901412529095 ], [ 9.171938870598749, 45.464089685299484 ], [ 9.170746234949183, 45.464341557844484 ], [ 9.170088880916225, 45.464479180448471 ], [ 9.170002702330217, 45.464629437037416 ], [ 9.169695111851336, 45.464691454340681 ], [ 9.169133229577628, 45.464691448778566 ], [ 9.169162635349114, 45.464798811550118 ], [ 9.169057907602419, 45.464819926280001 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.177263244100374, 45.466549590377049 ], [ 9.179974898702467, 45.466554829895038 ], [ 9.180114257554568, 45.465585319678411 ], [ 9.180267103181444, 45.464525116456173 ], [ 9.17743154299305, 45.464308044907895 ], [ 9.17734682067543, 45.465438609685847 ], [ 9.177342688790329, 45.465494519561162 ], [ 9.177339421406922, 45.46553826946073 ], [ 9.177263244100374, 45.466549590377049 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.200179207890221, 45.468996174107538 ], [ 9.200142986115473, 45.469114109539866 ], [ 9.202859318172834, 45.469524527182301 ], [ 9.203500946041627, 45.467437015542139 ], [ 9.200884791103986, 45.467042586975758 ], [ 9.200875572915301, 45.46707224417419 ], [ 9.20075443144702, 45.467053984344055 ], [ 9.200158737802179, 45.468993063227913 ], [ 9.200179207890221, 45.468996174107538 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.175198903950593, 45.469554341572632 ], [ 9.176212317585172, 45.470205779532975 ], [ 9.175961420140002, 45.470395956396402 ], [ 9.178069136133345, 45.471763116130916 ], [ 9.178072330975125, 45.471760700985641 ], [ 9.179632937762436, 45.472803720577289 ], [ 9.179775929309605, 45.472698616501823 ], [ 9.179960117546955, 45.472821715084869 ], [ 9.181769653454685, 45.471488105869739 ], [ 9.183053526209038, 45.471730211928502 ], [ 9.183157438866491, 45.471535706830672 ], [ 9.183523743745432, 45.471549256805325 ], [ 9.18359218691165, 45.471402006452514 ], [ 9.183792576928806, 45.471411090318 ], [ 9.183914680381134, 45.470708174989916 ], [ 9.184293429821729, 45.469893288184743 ], [ 9.184063634814928, 45.469850662354155 ], [ 9.184141793806955, 45.469400700066032 ], [ 9.18252814120155, 45.469337302398408 ], [ 9.181684671446847, 45.469304437532308 ], [ 9.181605689199289, 45.469286483384998 ], [ 9.181330088793716, 45.469103850621472 ], [ 9.181208214208294, 45.46902459360043 ], [ 9.181111062494354, 45.46896128005951 ], [ 9.180915050420923, 45.468831788097525 ], [ 9.180817260943808, 45.468767144989101 ], [ 9.180781959053315, 45.468671419734143 ], [ 9.180439796824739, 45.468352362420198 ], [ 9.179987320943486, 45.468160745493584 ], [ 9.179466783593288, 45.468089171566696 ], [ 9.178897637669888, 45.468167649996289 ], [ 9.178415502669662, 45.468397681328256 ], [ 9.178141075284143, 45.468700450140702 ], [ 9.177141575261984, 45.468057557305904 ], [ 9.175314620814273, 45.469455191876264 ], [ 9.175322111488788, 45.469460009289946 ], [ 9.175198903950593, 45.469554341572632 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.194289227945806, 45.468663841766954 ], [ 9.194536287861201, 45.468805682690054 ], [ 9.193351336435491, 45.469806282969444 ], [ 9.195291699660986, 45.471062908800995 ], [ 9.19541381780456, 45.470955413859841 ], [ 9.195497104195873, 45.471000490651107 ], [ 9.196660317401202, 45.470025069325587 ], [ 9.196747474517633, 45.470075103482799 ], [ 9.197012372264883, 45.469729842042703 ], [ 9.197202710780045, 45.469570225628679 ], [ 9.197172789564318, 45.469552157021894 ], [ 9.197773783913302, 45.468919474431516 ], [ 9.198475557446343, 45.468133360184765 ], [ 9.195875873874595, 45.466841872690885 ], [ 9.195714740140934, 45.467335084192833 ], [ 9.194971006484177, 45.46805660664549 ], [ 9.194289227945806, 45.468663841766954 ] ] ] } } +] +} diff --git a/layers/ospedali_cliniche_buffer.json b/layers/ospedali_cliniche_buffer.json new file mode 100644 index 0000000..129b7ae --- /dev/null +++ b/layers/ospedali_cliniche_buffer.json @@ -0,0 +1,34 @@ +{ +"type": "FeatureCollection", +"name": "ospedali_cliniche_buffer", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.209690557934129, 45.416373588500278 ], [ 9.2105139927293, 45.412830573059431 ], [ 9.207948010425339, 45.412717836650181 ], [ 9.205774519228093, 45.412512226555641 ], [ 9.204963486057052, 45.415847830859839 ], [ 9.209690557934129, 45.416373588500278 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.1575070013947, 45.433383663943118 ], [ 9.157399233965476, 45.433387980003921 ], [ 9.15754079091648, 45.434473913978465 ], [ 9.157615702409799, 45.435049400517258 ], [ 9.157653241148591, 45.43557177286597 ], [ 9.157853350622043, 45.43556019370542 ], [ 9.157898291493085, 45.435850607246465 ], [ 9.159764801272535, 45.436252811453393 ], [ 9.159799602418737, 45.436224324402247 ], [ 9.159948939916029, 45.436318884590911 ], [ 9.161928167780015, 45.434752757914438 ], [ 9.161865636624828, 45.434717367409746 ], [ 9.162028851054615, 45.434582260898353 ], [ 9.162005075642739, 45.434568483582062 ], [ 9.162272812095461, 45.43434740854704 ], [ 9.16225070200279, 45.43433398462286 ], [ 9.162275520726959, 45.434332507300681 ], [ 9.16204258558458, 45.432416227863243 ], [ 9.161461907913298, 45.432450802402677 ], [ 9.160475284040258, 45.432497284526093 ], [ 9.159505741806711, 45.431938966324537 ], [ 9.157919729946071, 45.433224430663458 ], [ 9.157495847809219, 45.433249695660379 ], [ 9.1575070013947, 45.433383663943118 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.216641771985387, 45.442760824734691 ], [ 9.216595040640195, 45.442825573611898 ], [ 9.217202442694315, 45.443042946515625 ], [ 9.218459814989426, 45.443675618631154 ], [ 9.21997189838379, 45.443030180271947 ], [ 9.219822336919121, 45.441882356827321 ], [ 9.219017065775143, 45.44160597783312 ], [ 9.217781779210624, 45.441181229448745 ], [ 9.217142433623041, 45.442067119686335 ], [ 9.216139180217279, 45.442507922728957 ], [ 9.216641771985387, 45.442760824734691 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.260006773904761, 45.444096646546399 ], [ 9.259712847159909, 45.444381077851808 ], [ 9.260368566542173, 45.444637048918416 ], [ 9.260308073721008, 45.445089792082861 ], [ 9.2616100965665, 45.44526054282619 ], [ 9.261630240812055, 45.44526320850423 ], [ 9.262440649350815, 45.445699364966458 ], [ 9.262721517217084, 45.445432125474888 ], [ 9.262734411452483, 45.445439450758919 ], [ 9.262761905409906, 45.445412955005281 ], [ 9.262957459788879, 45.445438830345275 ], [ 9.263020873327783, 45.445163387709705 ], [ 9.263551364187764, 45.444652145129318 ], [ 9.264261350952999, 45.4439655029622 ], [ 9.26426077797737, 45.443965130871113 ], [ 9.264464459751235, 45.44377612334462 ], [ 9.264394819561261, 45.443735830848574 ], [ 9.264484933575615, 45.443650736316393 ], [ 9.264318547760345, 45.443546990611608 ], [ 9.264362034980627, 45.443492719159352 ], [ 9.26374803921208, 45.443153159918744 ], [ 9.263751833728124, 45.443147835308075 ], [ 9.263664225429139, 45.443106807649272 ], [ 9.262561253060262, 45.442496808331292 ], [ 9.262481701364878, 45.442553009840822 ], [ 9.261915454332826, 45.442287817718203 ], [ 9.261416594577689, 45.442622102011285 ], [ 9.26136835077933, 45.442606621312578 ], [ 9.261239092096696, 45.442741044364617 ], [ 9.259616706484318, 45.443828150154403 ], [ 9.260029378601841, 45.443999052366294 ], [ 9.259957306392005, 45.444073999690083 ], [ 9.260006773904761, 45.444096646546399 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.217192641616686, 45.467496046827634 ], [ 9.220936178015384, 45.467530469310994 ], [ 9.220977584511113, 45.465313070248968 ], [ 9.22073490312455, 45.465310872286985 ], [ 9.220737293097185, 45.465182256270715 ], [ 9.219266441540569, 45.465168482098399 ], [ 9.218947115075835, 45.465165581773157 ], [ 9.217532343228894, 45.465151950272592 ], [ 9.217529828024036, 45.465290922268146 ], [ 9.217233827752683, 45.465288223507734 ], [ 9.217192641616686, 45.467496046827634 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.169838134415816, 45.462849387284578 ], [ 9.16939808666428, 45.462981785479705 ], [ 9.170878064607608, 45.465299164149634 ], [ 9.172228094555607, 45.464899392817095 ], [ 9.172791436242127, 45.464730399764463 ], [ 9.17294449291057, 45.464684421875859 ], [ 9.172968434253285, 45.464677200451177 ], [ 9.173164946726251, 45.464618286294446 ], [ 9.174386959123643, 45.464251959064221 ], [ 9.174360783015153, 45.464208979117821 ], [ 9.174401221544468, 45.464196917921768 ], [ 9.174293311847476, 45.464019957254877 ], [ 9.174379252738573, 45.463994207426765 ], [ 9.173211745603439, 45.462084756198692 ], [ 9.173096064877019, 45.462119417735863 ], [ 9.172842411286332, 45.461703546835039 ], [ 9.169711654073984, 45.462641885459689 ], [ 9.169838134415816, 45.462849387284578 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.112157419511691, 45.465022623306417 ], [ 9.109702058228505, 45.469806331053313 ], [ 9.112374519792954, 45.470503122160487 ], [ 9.114656521899949, 45.471097988457636 ], [ 9.115886166824582, 45.470601834040814 ], [ 9.116081089216697, 45.470511187456779 ], [ 9.116530155830169, 45.47031822475892 ], [ 9.116708250857222, 45.470065031804978 ], [ 9.117491323483165, 45.47010582051486 ], [ 9.118826427632861, 45.467297310086209 ], [ 9.118695426426772, 45.466725805612541 ], [ 9.118410664935414, 45.466465858148219 ], [ 9.118135651072659, 45.466224486874289 ], [ 9.117641024941715, 45.466063502971032 ], [ 9.112157419511691, 45.465022623306417 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.118420406305763, 45.459240569158922 ], [ 9.11910720443093, 45.45940906677064 ], [ 9.119031155061869, 45.459553983808171 ], [ 9.119966534068398, 45.459799889757889 ], [ 9.118807620169648, 45.462014739269172 ], [ 9.124765209939094, 45.463275800604826 ], [ 9.127742167941649, 45.458197674527554 ], [ 9.121629028719671, 45.456622301472166 ], [ 9.121219168040534, 45.457405719027925 ], [ 9.120980447886431, 45.457361299996066 ], [ 9.12041157642642, 45.457212304258483 ], [ 9.120379039148084, 45.457249392409658 ], [ 9.119207977636744, 45.457031475885991 ], [ 9.118420406305763, 45.459240569158922 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.196558635479077, 45.454222522466402 ], [ 9.197274640374328, 45.454459850420697 ], [ 9.198957475752417, 45.452922945262941 ], [ 9.196796876681665, 45.4517514823185 ], [ 9.195076878911443, 45.453350621699222 ], [ 9.194360763264685, 45.453183187579853 ], [ 9.194299698470241, 45.453232944450299 ], [ 9.19349738888166, 45.453075077848204 ], [ 9.193410629950998, 45.453392054903318 ], [ 9.193124501081062, 45.453423310872097 ], [ 9.192718738295877, 45.453839874389566 ], [ 9.192244564126378, 45.454383202214792 ], [ 9.191443606720828, 45.455252904542874 ], [ 9.192744509514924, 45.455842646350753 ], [ 9.192938005765154, 45.455930415388316 ], [ 9.193353007031673, 45.456082064069797 ], [ 9.195263580771, 45.456155642689581 ], [ 9.194721905050988, 45.456560040807382 ], [ 9.194670937964178, 45.456620614692994 ], [ 9.194166944425854, 45.456786972416992 ], [ 9.192833687886077, 45.457579274846204 ], [ 9.193570113399391, 45.458240575012091 ], [ 9.192955073311559, 45.458526812681768 ], [ 9.19465182907185, 45.460352481552562 ], [ 9.197921080437105, 45.460558168254003 ], [ 9.197988306379942, 45.460076488500931 ], [ 9.198510732848534, 45.459962069384083 ], [ 9.199869572614428, 45.460062194572018 ], [ 9.199902019192683, 45.459849466104139 ], [ 9.201306773255164, 45.459955809227928 ], [ 9.201373794365562, 45.459633337388013 ], [ 9.201563708714383, 45.459651084203401 ], [ 9.201682220369227, 45.458660582136297 ], [ 9.20183037704763, 45.458022204748751 ], [ 9.20171962884119, 45.457695914435028 ], [ 9.202027925898726, 45.456671138291426 ], [ 9.200439746416562, 45.45643914951787 ], [ 9.200471494916437, 45.456230787785529 ], [ 9.199826713153415, 45.456127994917665 ], [ 9.199902956347044, 45.455858786507385 ], [ 9.196197811519278, 45.455241761405873 ], [ 9.1962888022712, 45.45498493113692 ], [ 9.196397034772405, 45.454632554378215 ], [ 9.196402147894222, 45.454559243561718 ], [ 9.196558635479077, 45.454222522466402 ] ], [ [ 9.195598061559496, 45.455817274158534 ], [ 9.195737288774183, 45.455827044904595 ], [ 9.19567694446037, 45.456038659382145 ], [ 9.19555427484198, 45.456026029475531 ], [ 9.195598061559496, 45.455817274158534 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.160463815393623, 45.458382241363175 ], [ 9.160234071531884, 45.458703292823003 ], [ 9.160020268621532, 45.459001031467459 ], [ 9.159268075757511, 45.460049198053362 ], [ 9.161660183622574, 45.460795290421345 ], [ 9.162453432817852, 45.460396232101687 ], [ 9.16282947615804, 45.460228504622734 ], [ 9.164074974087281, 45.459735405140478 ], [ 9.163497100609872, 45.457842872427342 ], [ 9.161331855593451, 45.457139685746156 ], [ 9.160966516356121, 45.457696786868603 ], [ 9.160957282783913, 45.457692640251622 ], [ 9.16053840708426, 45.458278003651223 ], [ 9.160522274218758, 45.458297128404745 ], [ 9.160463815393623, 45.458382241363175 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.201226007236762, 45.460756786708046 ], [ 9.2046558171618, 45.460984210802515 ], [ 9.206796004430307, 45.460386930028712 ], [ 9.206118792499222, 45.459871615146923 ], [ 9.207233285265987, 45.459536925187713 ], [ 9.205761356956002, 45.457644922028003 ], [ 9.205071665684057, 45.457538693677364 ], [ 9.204570250636289, 45.457482045833345 ], [ 9.203099288107428, 45.457317841917629 ], [ 9.202393129516437, 45.457210487665705 ], [ 9.201881950140166, 45.458761993257369 ], [ 9.201813989825403, 45.458968866580115 ], [ 9.201787321006558, 45.459049966318901 ], [ 9.201226007236762, 45.460756786708046 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.229799595249101, 45.473635986078143 ], [ 9.229268811698644, 45.473976660530049 ], [ 9.228981213838805, 45.474341792155499 ], [ 9.228966181463468, 45.475267946298182 ], [ 9.228974517291451, 45.476220672674764 ], [ 9.228964802983347, 45.476220595836566 ], [ 9.228917432682961, 45.47832577823381 ], [ 9.229580520170895, 45.47833423353859 ], [ 9.229566378795468, 45.47877517525702 ], [ 9.232351559418854, 45.478849872771363 ], [ 9.232368039794718, 45.477400610658357 ], [ 9.232375096102254, 45.476789099681106 ], [ 9.233741876389429, 45.47679784370488 ], [ 9.233768822614762, 45.474737891267232 ], [ 9.23378411034509, 45.473563894055069 ], [ 9.232481607488118, 45.473488445264259 ], [ 9.232294643573827, 45.473486874554155 ], [ 9.232219599691263, 45.473486181534064 ], [ 9.232195450633476, 45.473485972147756 ], [ 9.232173481457902, 45.473485781937818 ], [ 9.230277046975838, 45.473466987290863 ], [ 9.229799595249101, 45.473635986078143 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.188717878552751, 45.478994338746247 ], [ 9.18766611434263, 45.479512108064952 ], [ 9.188916868997262, 45.480210676737322 ], [ 9.189526810718887, 45.480804481543466 ], [ 9.191337264653891, 45.480556408769459 ], [ 9.192684984819989, 45.480404856730132 ], [ 9.19272678045826, 45.480203864563819 ], [ 9.192886022072306, 45.480139974741434 ], [ 9.19348327748987, 45.47968999808468 ], [ 9.19357250065384, 45.479258707245528 ], [ 9.193497242244684, 45.478893272054918 ], [ 9.193487427414588, 45.478845293692487 ], [ 9.19333066143183, 45.478083367707683 ], [ 9.193322714831735, 45.478044845530306 ], [ 9.193272586732226, 45.477801421185163 ], [ 9.193082996140788, 45.476876865496067 ], [ 9.191409146419614, 45.47701189054176 ], [ 9.190800225156448, 45.477101564157834 ], [ 9.188825866075865, 45.477286103097939 ], [ 9.188796365243169, 45.47809001235683 ], [ 9.188782673065523, 45.478165182165469 ], [ 9.188777002937069, 45.478237101344362 ], [ 9.188773866692182, 45.478277631733327 ], [ 9.188756783194858, 45.478496057538024 ], [ 9.188717878552751, 45.478994338746247 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.188164408502177, 45.496475769523791 ], [ 9.191869368005943, 45.495448914733757 ], [ 9.190617246989417, 45.493100935835841 ], [ 9.186855864635014, 45.494075879721059 ], [ 9.188164408502177, 45.496475769523791 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.191643447663669, 45.495988697707539 ], [ 9.192302788432938, 45.497238911098023 ], [ 9.192836557880499, 45.498205849249466 ], [ 9.196406274075425, 45.497236298233659 ], [ 9.195873092243177, 45.496271283592584 ], [ 9.195696642985519, 45.495955025891703 ], [ 9.195694781989907, 45.495951287420802 ], [ 9.195226045199519, 45.495030306747701 ], [ 9.193890827864125, 45.495363818118776 ], [ 9.191643447663669, 45.495988697707539 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.236260464176956, 45.501841354654104 ], [ 9.237272967729266, 45.502751139703797 ], [ 9.239364529788208, 45.501399040987884 ], [ 9.237529741142762, 45.50000670126343 ], [ 9.23713505728835, 45.500259536392747 ], [ 9.235672992406162, 45.501127970302768 ], [ 9.236260464176956, 45.501841354654104 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.262251791454389, 45.50251300866158 ], [ 9.2615775676596, 45.507841475403659 ], [ 9.263474093020635, 45.50810103594435 ], [ 9.264637433550707, 45.50827685748812 ], [ 9.264471146238801, 45.508759432424043 ], [ 9.265304046432647, 45.509436133124041 ], [ 9.26744429543866, 45.509767825712196 ], [ 9.268018704916354, 45.508988762514541 ], [ 9.268417096419343, 45.508448215363593 ], [ 9.268565381026436, 45.50845310511572 ], [ 9.268832498673486, 45.50754693084734 ], [ 9.268925444923243, 45.507301659244717 ], [ 9.268908398623248, 45.507289441215619 ], [ 9.268973007853875, 45.507070253323697 ], [ 9.26902069853873, 45.507015942143987 ], [ 9.269119001485643, 45.50650376209709 ], [ 9.269147652492162, 45.506381441502619 ], [ 9.269174690012569, 45.5062131374941 ], [ 9.26920170871575, 45.505862597215184 ], [ 9.269175167212374, 45.505797135326155 ], [ 9.269258194796521, 45.50564274370015 ], [ 9.26874468512035, 45.504751227145228 ], [ 9.268148938668563, 45.504569993744745 ], [ 9.268150864073299, 45.504068943899945 ], [ 9.267531041600785, 45.503392828318766 ], [ 9.262251791454389, 45.50251300866158 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.218540548138069, 45.507474750400817 ], [ 9.218279187526552, 45.507966232921468 ], [ 9.218589333161406, 45.508047632146287 ], [ 9.21864344505482, 45.508683053254153 ], [ 9.222195028960543, 45.50862832184589 ], [ 9.222184388544193, 45.508401663226842 ], [ 9.222444820869768, 45.508395853651052 ], [ 9.222396028859368, 45.506230609002522 ], [ 9.220074477866566, 45.506275860063717 ], [ 9.220010909497681, 45.506323618458218 ], [ 9.219443246214885, 45.506153452645485 ], [ 9.219386727567112, 45.506240426960566 ], [ 9.219220822514794, 45.50619546738502 ], [ 9.218972103937205, 45.506663199757448 ], [ 9.218471549332993, 45.50666447812474 ], [ 9.218540548138069, 45.507474750400817 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.180713847019801, 45.508006261462711 ], [ 9.180563285737927, 45.508185615658967 ], [ 9.18062543043065, 45.508548974743263 ], [ 9.180682930172713, 45.508883199958028 ], [ 9.180783637396457, 45.509467918318762 ], [ 9.180846421984596, 45.509832434943455 ], [ 9.180894396613793, 45.510120620268523 ], [ 9.181285375026258, 45.512448203520776 ], [ 9.181363769695626, 45.512917370420091 ], [ 9.183445595852589, 45.513820592502427 ], [ 9.184053991683317, 45.514084337494516 ], [ 9.184685289759434, 45.51391879959197 ], [ 9.184958989452971, 45.513847106396085 ], [ 9.185241082051201, 45.513767770627247 ], [ 9.185344203854823, 45.513745387853135 ], [ 9.189852763295093, 45.512616863652887 ], [ 9.191303371812484, 45.512253835865927 ], [ 9.191992920889133, 45.511323482348153 ], [ 9.190800630415209, 45.508910993632703 ], [ 9.190788257378246, 45.508885371173918 ], [ 9.190660643429055, 45.508619977914648 ], [ 9.19064908793726, 45.508595936109373 ], [ 9.190479946316554, 45.508239335483736 ], [ 9.19025368011823, 45.507748963258997 ], [ 9.190195387362975, 45.507631553656104 ], [ 9.190149316230597, 45.507534819831001 ], [ 9.190138707502424, 45.507513050862642 ], [ 9.189987385561626, 45.507201631041561 ], [ 9.189474295770454, 45.506145398001237 ], [ 9.188773023897452, 45.505905160859989 ], [ 9.188229997429008, 45.505690922074272 ], [ 9.186905785786459, 45.506031441934674 ], [ 9.186768180451491, 45.50606399954323 ], [ 9.186651218120572, 45.506093137163816 ], [ 9.184001858610635, 45.506734419084914 ], [ 9.181215213938421, 45.507408958475146 ], [ 9.180713827467171, 45.508006102004892 ], [ 9.180713847019801, 45.508006261462711 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.119573671509412, 45.516623207968479 ], [ 9.119140317322985, 45.516938580248969 ], [ 9.119017724159937, 45.517049429791385 ], [ 9.117468141761062, 45.518450893821075 ], [ 9.118296520630146, 45.519153720046262 ], [ 9.118534321742871, 45.521200636031388 ], [ 9.122077816283889, 45.521685965403506 ], [ 9.122099406289044, 45.523514192846356 ], [ 9.126115225921287, 45.523687668398694 ], [ 9.128545653174099, 45.521751776723754 ], [ 9.127946594425264, 45.521381510963266 ], [ 9.127909500240165, 45.521194033071076 ], [ 9.129757276731283, 45.519513347463466 ], [ 9.125678709789016, 45.517534132859801 ], [ 9.124976834070575, 45.517154888179086 ], [ 9.124720900236335, 45.516937796001116 ], [ 9.124374323646036, 45.51642982089291 ], [ 9.123489370967057, 45.515919713134082 ], [ 9.12238094299031, 45.515484808446075 ], [ 9.121251596282208, 45.515547652346577 ], [ 9.119573671509412, 45.516623207968479 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.171972505923907, 45.522796670188626 ], [ 9.171522092556836, 45.52314216030215 ], [ 9.174071371319515, 45.524812535578079 ], [ 9.176382344329168, 45.523062333510026 ], [ 9.173776556555133, 45.521366648399038 ], [ 9.171887685431029, 45.522740355882981 ], [ 9.171972505923907, 45.522796670188626 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.210651690629524, 45.524102157914783 ], [ 9.210487583340083, 45.52414313737701 ], [ 9.211672196855469, 45.526346474791168 ], [ 9.211795323031772, 45.526317295504164 ], [ 9.211820834605644, 45.526368683616759 ], [ 9.211876523878361, 45.526355122737826 ], [ 9.212090760716402, 45.526724951575794 ], [ 9.212454065640294, 45.526649509979912 ], [ 9.212611227557389, 45.526845272590059 ], [ 9.213792938560996, 45.526525428996855 ], [ 9.215116535443988, 45.526167573750804 ], [ 9.215020014395616, 45.525979494794228 ], [ 9.215274508484205, 45.525904756586549 ], [ 9.215051659606331, 45.525501270203954 ], [ 9.215086755825887, 45.525491322311751 ], [ 9.21502645146778, 45.525381635762592 ], [ 9.215143850360459, 45.525339630903751 ], [ 9.213926369728721, 45.523225176353733 ], [ 9.213757005598552, 45.523271946917021 ], [ 9.21370520098003, 45.523181147600468 ], [ 9.212565557919545, 45.523507767877653 ], [ 9.210629256122935, 45.524060990309309 ], [ 9.210651690629524, 45.524102157914783 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.227345184628776, 45.500896305922645 ], [ 9.232889175018475, 45.501825339683151 ], [ 9.233833039993067, 45.498161240088145 ], [ 9.229188392115848, 45.497566129049304 ], [ 9.228835345054231, 45.497832135641616 ], [ 9.228219094493408, 45.497951415996312 ], [ 9.227928830225611, 45.499008645256303 ], [ 9.227345184628776, 45.500896305922645 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.118004960396242, 45.499417134757664 ], [ 9.118730648968121, 45.500323776273923 ], [ 9.118763969735697, 45.500367025706709 ], [ 9.118857326736912, 45.500480065366787 ], [ 9.119885318684089, 45.501805763361119 ], [ 9.120743474689236, 45.500967815034294 ], [ 9.121453888221424, 45.501077001946953 ], [ 9.122221597899898, 45.498545429582293 ], [ 9.120226126757995, 45.498522841302574 ], [ 9.118004960396242, 45.499417134757664 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.151116354991098, 45.48455541583764 ], [ 9.153322264168553, 45.485981858656075 ], [ 9.154358374382815, 45.48519593163229 ], [ 9.155360662349535, 45.484435579964241 ], [ 9.154296371608373, 45.483748111920683 ], [ 9.153151680520391, 45.483007783652951 ], [ 9.15230703519576, 45.483650194441843 ], [ 9.151116354991098, 45.48455541583764 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.167274419462437, 45.484235431568294 ], [ 9.167203589295317, 45.484199603920665 ], [ 9.16715656453141, 45.484179551682253 ], [ 9.165863652114179, 45.483575912242081 ], [ 9.165551689349318, 45.483903217961384 ], [ 9.165544904795487, 45.483898744892677 ], [ 9.164626022092387, 45.48457384543488 ], [ 9.163591407090944, 45.485365688928049 ], [ 9.164770730894414, 45.486141774535064 ], [ 9.164989739891265, 45.486278055779998 ], [ 9.165046567942129, 45.486319161925223 ], [ 9.165831528296355, 45.486825241428448 ], [ 9.165872835740318, 45.486854177567707 ], [ 9.16595880217041, 45.486914288563206 ], [ 9.167393626944198, 45.487834280414127 ], [ 9.169328912330087, 45.486417822040508 ], [ 9.16876831496327, 45.485155429734476 ], [ 9.168626217928788, 45.484820734798674 ], [ 9.16758349975013, 45.484114775023421 ], [ 9.167274419462437, 45.484235431568294 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.22664142786679, 45.485817598646655 ], [ 9.226979320559471, 45.485817096048017 ], [ 9.226973583945529, 45.483843136680917 ], [ 9.224244361382773, 45.483847961398808 ], [ 9.22424511503811, 45.484077525130061 ], [ 9.223482646725705, 45.484076655054466 ], [ 9.223465430662744, 45.4863733922489 ], [ 9.223485039969859, 45.486373392421534 ], [ 9.223484694441346, 45.486411647829236 ], [ 9.226226992065286, 45.486424768831043 ], [ 9.226227561152985, 45.486385691558937 ], [ 9.226528160677656, 45.486386212048174 ], [ 9.226528359614504, 45.48634934703405 ], [ 9.226634321238098, 45.486349533239078 ], [ 9.22664142786679, 45.485817598646655 ] ] ] } } +] +} diff --git a/layers/parchi_buffer.json b/layers/parchi_buffer.json new file mode 100644 index 0000000..bc29f0c --- /dev/null +++ b/layers/parchi_buffer.json @@ -0,0 +1,62 @@ +{ +"type": "FeatureCollection", +"name": "parchi_buffer", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.230756400032266, 45.432461058293661 ], [ 9.230501363995824, 45.432622108365315 ], [ 9.229882440075365, 45.432693713475565 ], [ 9.229757278025318, 45.433081147632201 ], [ 9.228840028122912, 45.433600076981485 ], [ 9.229829482252992, 45.434478269628919 ], [ 9.229840813990144, 45.43448832693732 ], [ 9.228768658112731, 45.435083036834484 ], [ 9.228953868624593, 45.435241035506543 ], [ 9.228383236241257, 45.435561379209801 ], [ 9.229287331132863, 45.436376294041352 ], [ 9.229485870019303, 45.436552638508452 ], [ 9.230462646134368, 45.437434615227581 ], [ 9.231510923045537, 45.436921612936665 ], [ 9.232140917465104, 45.436613236646942 ], [ 9.232354998595305, 45.436823101662817 ], [ 9.233786577991314, 45.435959970493357 ], [ 9.233799621069316, 45.43595085341984 ], [ 9.234099721779788, 45.435767288559077 ], [ 9.234286717435698, 45.43565291396083 ], [ 9.234478660336311, 45.435535548843504 ], [ 9.234685533863756, 45.435397927012808 ], [ 9.235034301869092, 45.435171951656756 ], [ 9.235060436133571, 45.435155094247868 ], [ 9.235252492652265, 45.435032290163875 ], [ 9.235424236248399, 45.434920721159841 ], [ 9.235605463648659, 45.434802991689544 ], [ 9.236078668784407, 45.434482033737972 ], [ 9.236184260359837, 45.434406953782307 ], [ 9.236451726371994, 45.434216884980593 ], [ 9.236682947216954, 45.434047541774198 ], [ 9.237048649085704, 45.433765124986714 ], [ 9.237333840277767, 45.433529336789285 ], [ 9.237532885027797, 45.433334126929537 ], [ 9.238164119458952, 45.432795210262 ], [ 9.238786643854668, 45.432159702609184 ], [ 9.237994646752229, 45.431457700822072 ], [ 9.237719031553521, 45.431213249752474 ], [ 9.237647463872197, 45.4311504857233 ], [ 9.237545192989108, 45.431059569527122 ], [ 9.237198129916351, 45.430849957469505 ], [ 9.236985537813622, 45.430705356141843 ], [ 9.236683302127863, 45.430576733313117 ], [ 9.236419418319949, 45.430511164376007 ], [ 9.236317540847104, 45.430493865932696 ], [ 9.236031803177589, 45.430441146572868 ], [ 9.235854093694842, 45.430405779123056 ], [ 9.235581610295174, 45.430357890444249 ], [ 9.23533889061933, 45.430323936920296 ], [ 9.234439403604284, 45.43021783595983 ], [ 9.233935224482908, 45.430470766077526 ], [ 9.23374892426005, 45.430565125679983 ], [ 9.233585819655037, 45.430635579203148 ], [ 9.233247233861487, 45.430777810015776 ], [ 9.232938846427338, 45.430918925204892 ], [ 9.232753417102124, 45.430999835788022 ], [ 9.232203104153969, 45.431262013587272 ], [ 9.232132632826481, 45.431291406727979 ], [ 9.232064430182399, 45.431318223231436 ], [ 9.231781937313674, 45.431454431492703 ], [ 9.23175304591801, 45.43147248480664 ], [ 9.231745135080109, 45.431476385744801 ], [ 9.231723119663171, 45.431485094270329 ], [ 9.231256333807318, 45.431613513143716 ], [ 9.230655361350758, 45.43219214792699 ], [ 9.230756400032266, 45.432461058293661 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.165519001277531, 45.430288026016299 ], [ 9.165520001735763, 45.430311329244404 ], [ 9.165560255932229, 45.430395778989023 ], [ 9.165545947390569, 45.43041603715676 ], [ 9.165545945281798, 45.430416077066901 ], [ 9.165157058047157, 45.430966696416164 ], [ 9.165525373962682, 45.431093820275642 ], [ 9.166181520314737, 45.431927978141992 ], [ 9.166814210828452, 45.432401183252352 ], [ 9.167049679212042, 45.43252919065597 ], [ 9.167014735950387, 45.432645125830085 ], [ 9.16747629853954, 45.432761110503947 ], [ 9.16748287020423, 45.432764682981038 ], [ 9.167626518785355, 45.432818609210074 ], [ 9.168277986335839, 45.433375249751784 ], [ 9.168168326918529, 45.433976775554619 ], [ 9.170375488280023, 45.434349275009446 ], [ 9.17078725885473, 45.433607805638836 ], [ 9.170792033326464, 45.43359892496526 ], [ 9.170804422402826, 45.433574925052454 ], [ 9.170810956501851, 45.433561045341463 ], [ 9.170814707372282, 45.433553080374296 ], [ 9.170819725676164, 45.433541854462831 ], [ 9.170827947003689, 45.433523012040716 ], [ 9.170834459863741, 45.433506832837395 ], [ 9.170838740793673, 45.433495688094411 ], [ 9.170845174175206, 45.433478242426759 ], [ 9.170850232527687, 45.433463142192501 ], [ 9.170858885555965, 45.433436897527066 ], [ 9.170865995749566, 45.433409668433505 ], [ 9.170869220245729, 45.433397029485825 ], [ 9.170874237633516, 45.433376410642595 ], [ 9.170877695647077, 45.433362281084747 ], [ 9.170881404256608, 45.43334641706906 ], [ 9.170884627019099, 45.433332570389723 ], [ 9.170889711367007, 45.433308416302182 ], [ 9.170891350374204, 45.433299817391486 ], [ 9.170894473608083, 45.433283314331774 ], [ 9.170896943388016, 45.43327015885081 ], [ 9.170898702347417, 45.4332596724471 ], [ 9.171362035552741, 45.433886653192054 ], [ 9.173111608369416, 45.433230694175322 ], [ 9.173984414766865, 45.433598302469228 ], [ 9.174740080275793, 45.433139627758536 ], [ 9.174594534007429, 45.432891469331771 ], [ 9.174659320972971, 45.432890724150234 ], [ 9.174680943300389, 45.432974791162202 ], [ 9.175267854487876, 45.4328837229858 ], [ 9.17538969892844, 45.432882320778511 ], [ 9.176537364499216, 45.432871882309264 ], [ 9.176537326659201, 45.432869107295801 ], [ 9.176893390258199, 45.432865005328679 ], [ 9.176891384541383, 45.432778711316487 ], [ 9.177961734807575, 45.432767469686603 ], [ 9.177959666735225, 45.432521636743111 ], [ 9.178814862671151, 45.432491163038009 ], [ 9.178772481415143, 45.431733760857071 ], [ 9.179268255312863, 45.431425948288542 ], [ 9.178985343274466, 45.430899209763375 ], [ 9.178725825039868, 45.430899933128302 ], [ 9.178706066546669, 45.430546808046707 ], [ 9.177352556107696, 45.430560343735685 ], [ 9.177344958093215, 45.429980076643822 ], [ 9.176323928466024, 45.429807360554541 ], [ 9.175837532217166, 45.429584824969098 ], [ 9.174956200366795, 45.429155320304702 ], [ 9.174579053742725, 45.429488207317561 ], [ 9.174176312460242, 45.429414305618657 ], [ 9.17352977878538, 45.429295665318364 ], [ 9.173488913078282, 45.429296481248507 ], [ 9.173148731758094, 45.42914229631004 ], [ 9.172811087560273, 45.42928038265493 ], [ 9.172710614911711, 45.429275535979585 ], [ 9.172580106520066, 45.429368132464759 ], [ 9.17241034916105, 45.42906633110325 ], [ 9.172109508519133, 45.428539168146358 ], [ 9.171291410249532, 45.427150307145439 ], [ 9.171091590310732, 45.427207504228484 ], [ 9.171091046874238, 45.427206616525666 ], [ 9.17034387891618, 45.42741972715806 ], [ 9.17034258795003, 45.427417580908177 ], [ 9.168964565575665, 45.427812029102022 ], [ 9.167693103264574, 45.428159439178437 ], [ 9.16729411814851, 45.428461864549675 ], [ 9.167208682477195, 45.42863522121845 ], [ 9.166865503479533, 45.428922130854296 ], [ 9.16686530539093, 45.42892230750715 ], [ 9.166826609464072, 45.428950888577937 ], [ 9.166806997419947, 45.428949662061896 ], [ 9.166765607872248, 45.428952625066223 ], [ 9.164975925306701, 45.428676479384123 ], [ 9.164336910929665, 45.429722585466074 ], [ 9.165519001277531, 45.430288026016299 ] ], [ [ 9.169003112791767, 45.430493771854373 ], [ 9.169023678673307, 45.430488402398183 ], [ 9.16919624854787, 45.430599145485189 ], [ 9.169298913508509, 45.43077449697202 ], [ 9.16918251838608, 45.430807441231245 ], [ 9.169123197499644, 45.430703542024752 ], [ 9.169003112791767, 45.430493771854373 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.068548955412011, 45.43888966134471 ], [ 9.068990353138775, 45.438052985570017 ], [ 9.069291011689801, 45.437617557967684 ], [ 9.069359158992649, 45.437496556739596 ], [ 9.069582802718353, 45.437137799907632 ], [ 9.069659928739378, 45.43716521795568 ], [ 9.070095919421078, 45.437315499847941 ], [ 9.070314234170629, 45.437389739394142 ], [ 9.070629088394448, 45.437464981738849 ], [ 9.072246110088351, 45.438059625163213 ], [ 9.073018790847701, 45.436315106970426 ], [ 9.074114507717908, 45.433847101948814 ], [ 9.073011644736297, 45.432917546512812 ], [ 9.071782871520263, 45.433337133108743 ], [ 9.071771758581347, 45.433337468541374 ], [ 9.071734100313936, 45.433339242448994 ], [ 9.071697807873464, 45.433341568106677 ], [ 9.07166131492864, 45.4333445288134 ], [ 9.071624920497166, 45.433348105484377 ], [ 9.071588350034801, 45.433352330638577 ], [ 9.071551224909278, 45.433357265691377 ], [ 9.071514513942219, 45.433362790106173 ], [ 9.071479981814003, 45.433368599052372 ], [ 9.071444277079697, 45.433375245752927 ], [ 9.071407972435635, 45.433382663697948 ], [ 9.071372520647525, 45.433390560477484 ], [ 9.07133716256963, 45.433399097703841 ], [ 9.071303140160714, 45.433407959317066 ], [ 9.071267917756309, 45.433417815167324 ], [ 9.071234571882732, 45.433427803706394 ], [ 9.071204670657293, 45.433437362402138 ], [ 9.07117369928924, 45.433444390794101 ], [ 9.07113730613743, 45.433453311713656 ], [ 9.071124205169374, 45.433456765359203 ], [ 9.070886959383486, 45.433522833084396 ], [ 9.070516715800844, 45.433277934536449 ], [ 9.070277374108173, 45.43312769926019 ], [ 9.070120740297197, 45.433033893968442 ], [ 9.069117892105925, 45.432424439385677 ], [ 9.068028318934578, 45.43321446805377 ], [ 9.06673376063725, 45.434139023114305 ], [ 9.066028076782263, 45.434610382675913 ], [ 9.065868575919014, 45.43475835348017 ], [ 9.065787077169476, 45.434833607212163 ], [ 9.065621596309553, 45.434975200727131 ], [ 9.065021762366676, 45.435480401760181 ], [ 9.065176458455433, 45.436120718103361 ], [ 9.065175406052115, 45.436411467401875 ], [ 9.065157243584116, 45.436644792824502 ], [ 9.064951675737129, 45.43733774408178 ], [ 9.064789718894884, 45.437995738061474 ], [ 9.064552068018246, 45.4389329195211 ], [ 9.064468391509843, 45.439160507535739 ], [ 9.064310906112024, 45.439361617675608 ], [ 9.064186772619022, 45.439545526985235 ], [ 9.064168338279332, 45.439572838259984 ], [ 9.063854761317954, 45.44003741079937 ], [ 9.063802169163575, 45.440083616517128 ], [ 9.063817203896026, 45.440093052539517 ], [ 9.063749974322651, 45.440192653598444 ], [ 9.064166774546146, 45.440454447179313 ], [ 9.064736824621349, 45.440837065457465 ], [ 9.064736827085925, 45.440837067313403 ], [ 9.064736954297151, 45.44083715269683 ], [ 9.064665560313829, 45.440957535964081 ], [ 9.064786515274205, 45.440993085154737 ], [ 9.06478651498335, 45.440993085645204 ], [ 9.065111647032678, 45.441088642515723 ], [ 9.065944741783939, 45.441647794482918 ], [ 9.066047841596811, 45.441564369289239 ], [ 9.067068917124768, 45.441798602881057 ], [ 9.067123243186977, 45.441737658239028 ], [ 9.067174206086529, 45.441759686749769 ], [ 9.067219252963962, 45.441708041222363 ], [ 9.067344264746669, 45.441744778952852 ], [ 9.067677818828431, 45.441182296368417 ], [ 9.067905777662309, 45.440920937683721 ], [ 9.068776728132713, 45.441271755238787 ], [ 9.069245591365299, 45.441022748355479 ], [ 9.068836305131212, 45.439860628538007 ], [ 9.069364243599564, 45.439486508816579 ], [ 9.069151708761362, 45.439337869515903 ], [ 9.069288664666876, 45.439117398525497 ], [ 9.068548955412011, 45.43888966134471 ] ], [ [ 9.07147231006144, 45.434070476999111 ], [ 9.071564670190282, 45.434137421160493 ], [ 9.071472119997006, 45.434070634860142 ], [ 9.07147231006144, 45.434070476999111 ] ], [ [ 9.070942624971844, 45.433686547897047 ], [ 9.070997163499237, 45.433726079151469 ], [ 9.070996510314528, 45.433725624148231 ], [ 9.070998443862361, 45.433727007198272 ], [ 9.071022665853073, 45.433744564038378 ], [ 9.07103765313599, 45.433755190051741 ], [ 9.071034407015297, 45.43375307438626 ], [ 9.071044852254808, 45.433760645407176 ], [ 9.071032211922319, 45.433751643730005 ], [ 9.0710287823778, 45.433749408517222 ], [ 9.070999971233046, 45.433729071331634 ], [ 9.071018816892447, 45.433742913489795 ], [ 9.071010169873793, 45.433737277774085 ], [ 9.070980296532483, 45.433715720073359 ], [ 9.070968160073049, 45.433706616472413 ], [ 9.070946484266825, 45.433691315940614 ], [ 9.070929326608026, 45.433678824458248 ], [ 9.070924783204749, 45.433675659551753 ], [ 9.070899591319581, 45.433657480104763 ], [ 9.070876359504444, 45.433641384983538 ], [ 9.070863618818732, 45.433632822711147 ], [ 9.07082674272039, 45.433606792478145 ], [ 9.070897709835403, 45.433656122351707 ], [ 9.0708521552591, 45.433623248346251 ], [ 9.070873586436328, 45.433638243261136 ], [ 9.070830780162613, 45.43360707842934 ], [ 9.07090852878847, 45.43366269161681 ], [ 9.07092448870968, 45.433673858393973 ], [ 9.070917064088292, 45.433668289147938 ], [ 9.070896278893541, 45.433652954725446 ], [ 9.070901005815649, 45.433656380957736 ], [ 9.070931068585633, 45.43367846217469 ], [ 9.070942624971844, 45.433686547897047 ] ], [ [ 9.070764000028156, 45.433557074301511 ], [ 9.070762623822411, 45.433557457540658 ], [ 9.070332299967822, 45.433244159413455 ], [ 9.070764000028156, 45.433557074301511 ] ], [ [ 9.070761874942255, 45.433557666085179 ], [ 9.070761442789253, 45.433557786429077 ], [ 9.070625944750581, 45.433460004952124 ], [ 9.070761874942255, 45.433557666085179 ] ], [ [ 9.07075940599637, 45.433558353625266 ], [ 9.070758484717556, 45.433558610178522 ], [ 9.070626646989901, 45.433465547556501 ], [ 9.070599831387309, 45.433446702079493 ], [ 9.07075940599637, 45.433558353625266 ] ], [ [ 9.070757729334517, 45.433558820533896 ], [ 9.070757247363602, 45.433558954750808 ], [ 9.070441598118785, 45.43333907275936 ], [ 9.070757729334517, 45.433558820533896 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.146552228508787, 45.435155941959486 ], [ 9.146566992491699, 45.435145472160876 ], [ 9.146441888854511, 45.435058026816279 ], [ 9.146421661314847, 45.435040473601596 ], [ 9.146084363902922, 45.434808120615905 ], [ 9.145108009603224, 45.434125642160986 ], [ 9.145086199396188, 45.434120501152684 ], [ 9.145057253604563, 45.434100560481717 ], [ 9.145046801364144, 45.434107703379496 ], [ 9.144282984216106, 45.43354404174498 ], [ 9.143867419815578, 45.433234283801468 ], [ 9.142725517514091, 45.432386039519137 ], [ 9.141641867593325, 45.432387388409104 ], [ 9.141030946918274, 45.432779803278656 ], [ 9.140673503375874, 45.433388164573863 ], [ 9.140225080784948, 45.43327560676191 ], [ 9.139540426785768, 45.433759327688165 ], [ 9.139233789275696, 45.434091166052724 ], [ 9.139113135057757, 45.434250396019479 ], [ 9.139061510848357, 45.434354818906094 ], [ 9.138780820795551, 45.434895047079401 ], [ 9.138665257963057, 45.435120707086021 ], [ 9.138584393113975, 45.43535011657498 ], [ 9.138558121957733, 45.435618588320089 ], [ 9.138558695445852, 45.435630681362049 ], [ 9.138433088063541, 45.435898888080473 ], [ 9.138411770647002, 45.436357018904232 ], [ 9.138476104180297, 45.436463865442178 ], [ 9.138324848451491, 45.437038927801275 ], [ 9.138839314804956, 45.437825584292888 ], [ 9.141058935601377, 45.437966482884093 ], [ 9.14082407699469, 45.438512749900902 ], [ 9.143477984398219, 45.439264644640609 ], [ 9.144023857814336, 45.438642329679723 ], [ 9.144070933763674, 45.438597259986366 ], [ 9.144244414502671, 45.438457214055461 ], [ 9.144393919012188, 45.438350660343467 ], [ 9.144455315667518, 45.438309248185774 ], [ 9.144755758353815, 45.438133654558037 ], [ 9.144930217787849, 45.4380485226133 ], [ 9.145261972718915, 45.437916451236703 ], [ 9.145585421660723, 45.437818131446889 ], [ 9.145862751655407, 45.437750986106707 ], [ 9.146168534056185, 45.437696431371592 ], [ 9.146336911575759, 45.437649968422086 ], [ 9.146531161624615, 45.437715220003689 ], [ 9.146777975370741, 45.437437081589145 ], [ 9.146842327474259, 45.43739574397182 ], [ 9.147008862032555, 45.437229188860492 ], [ 9.147173121202188, 45.436991778523605 ], [ 9.147184741017533, 45.436978683637683 ], [ 9.14720224627605, 45.436956213744701 ], [ 9.147211376462572, 45.436944329818957 ], [ 9.147220456925902, 45.436932343590037 ], [ 9.147231809188577, 45.436916926908829 ], [ 9.147239129230956, 45.436906694891746 ], [ 9.147245820648067, 45.436897203788241 ], [ 9.147251319469916, 45.436889288334051 ], [ 9.147253360504354, 45.436886306230761 ], [ 9.147261481670057, 45.436874260937401 ], [ 9.14726606762137, 45.436867355075982 ], [ 9.147272403128978, 45.436857667304245 ], [ 9.147274162464164, 45.436854935108926 ], [ 9.147282455424104, 45.436841853435283 ], [ 9.147285392884353, 45.436837145964986 ], [ 9.147290181664488, 45.436829348086121 ], [ 9.147295734730125, 45.43682015847358 ], [ 9.147298379815402, 45.436815709125952 ], [ 9.147304027068643, 45.436806051550384 ], [ 9.147308559580479, 45.43679816967488 ], [ 9.147315014053744, 45.436786754062879 ], [ 9.147315185718703, 45.43678644520454 ], [ 9.147764675625824, 45.436136762794263 ], [ 9.147288002988935, 45.435976652156718 ], [ 9.147279482963246, 45.435963505735685 ], [ 9.147267844075605, 45.435946336459452 ], [ 9.147260600061454, 45.435936107517236 ], [ 9.147251182092967, 45.435923090851567 ], [ 9.147249352994901, 45.435920615788021 ], [ 9.147238768215097, 45.435906589314961 ], [ 9.147236084734578, 45.435903106042495 ], [ 9.14722587803409, 45.435890125381654 ], [ 9.147224975800853, 45.435889000911146 ], [ 9.147214942546906, 45.435876744045849 ], [ 9.147207569568724, 45.435867913746343 ], [ 9.147096498728756, 45.435736190567205 ], [ 9.14703512463003, 45.435675901855276 ], [ 9.146776119481229, 45.435383028570683 ], [ 9.146765036743485, 45.435370694751214 ], [ 9.146756878165631, 45.43536169898691 ], [ 9.146746418098818, 45.435350271604349 ], [ 9.146735214058209, 45.435338143555789 ], [ 9.146724441041782, 45.435326588490476 ], [ 9.146716830794707, 45.435318500007384 ], [ 9.146704780825658, 45.435305808838059 ], [ 9.146695714626443, 45.43529634642276 ], [ 9.14668540814403, 45.435285686314892 ], [ 9.14667420352707, 45.435274201195078 ], [ 9.146665339483846, 45.435265196471398 ], [ 9.146653511631836, 45.435253287984267 ], [ 9.146643004268626, 45.435242802979253 ], [ 9.146633202246594, 45.435233108460082 ], [ 9.146621757836073, 45.435221889542269 ], [ 9.146611101845435, 45.435211535517162 ], [ 9.146600208146193, 45.435201043496875 ], [ 9.146590254895635, 45.43519154122847 ], [ 9.146578926492989, 45.435180820616857 ], [ 9.146566052330586, 45.435168743369033 ], [ 9.146558917616352, 45.435162108489592 ], [ 9.146552228508787, 45.435155941959486 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.170516562486018, 45.440307643554767 ], [ 9.170534133631907, 45.440344896169371 ], [ 9.170938755587425, 45.440330902972853 ], [ 9.170944576428994, 45.440332685371686 ], [ 9.171257404585072, 45.440347426363196 ], [ 9.171417368277094, 45.440353154242892 ], [ 9.171668497651137, 45.440366150612334 ], [ 9.174385005065131, 45.440468679402287 ], [ 9.17478311688539, 45.439491482090027 ], [ 9.173369185901525, 45.438940080469116 ], [ 9.173533669999681, 45.438719839171455 ], [ 9.172785596665429, 45.438443236574585 ], [ 9.172736553648884, 45.438370099745185 ], [ 9.172691337850186, 45.438304485589839 ], [ 9.17268840071778, 45.438299927622126 ], [ 9.172677476785307, 45.438283263695645 ], [ 9.172491942927936, 45.438003625714401 ], [ 9.172420989613384, 45.437896824575134 ], [ 9.172389834639711, 45.437850930677612 ], [ 9.172367484363688, 45.437821579547425 ], [ 9.172353527397028, 45.437803981946708 ], [ 9.172338683329141, 45.437785983881732 ], [ 9.1723211450243, 45.437765662039141 ], [ 9.172306816936537, 45.437749885546808 ], [ 9.172288868745403, 45.437730571274216 ], [ 9.172270273884454, 45.43771169847615 ], [ 9.172255718342386, 45.437697417055631 ], [ 9.172242278929001, 45.437684544261174 ], [ 9.172220754367903, 45.437664591413281 ], [ 9.172200462266817, 45.437646812211938 ], [ 9.172179640444648, 45.437629121218805 ], [ 9.172155761813054, 45.437609846737196 ], [ 9.172141372392835, 45.437598276724643 ], [ 9.172114002326616, 45.437577993868757 ], [ 9.172084992149571, 45.437557092645527 ], [ 9.172060859031696, 45.437540632391539 ], [ 9.172037294734933, 45.437525006629109 ], [ 9.17200535234554, 45.437504972304346 ], [ 9.171987287209907, 45.437494267281217 ], [ 9.171968474961581, 45.437483109939514 ], [ 9.17194463267591, 45.437469740430245 ], [ 9.171925126311386, 45.437459069325548 ], [ 9.171897477157229, 45.437444416846994 ], [ 9.171871638104758, 45.437431481828789 ], [ 9.171841541751196, 45.437416918568218 ], [ 9.171822005709325, 45.437408004798719 ], [ 9.17178946668667, 45.437393170894914 ], [ 9.171756444696792, 45.437379676015901 ], [ 9.171729872375472, 45.437368989658871 ], [ 9.171704282182811, 45.437359300971345 ], [ 9.17167638153542, 45.437348997535075 ], [ 9.171636530942886, 45.437335231202951 ], [ 9.171596144105502, 45.437322210516101 ], [ 9.171567050209168, 45.43731343357787 ], [ 9.171562279305359, 45.437312049827632 ], [ 9.171549005124399, 45.437308123567576 ], [ 9.171515024734225, 45.437298695943426 ], [ 9.171443168406674, 45.437279955342269 ], [ 9.171406266093486, 45.437272823836061 ], [ 9.171344374865575, 45.437235371671498 ], [ 9.171289911898418, 45.437207244806658 ], [ 9.171265125055768, 45.43719514695502 ], [ 9.171256369012834, 45.437190925862751 ], [ 9.171236252437021, 45.437181281131181 ], [ 9.171206643987327, 45.437167808477312 ], [ 9.171191856645576, 45.437161264337995 ], [ 9.171179824601253, 45.43715607029673 ], [ 9.17116739553628, 45.437150714321589 ], [ 9.171159979603758, 45.43714760782008 ], [ 9.171158461211702, 45.437146949036958 ], [ 9.171131988533153, 45.437135946573058 ], [ 9.171108603139119, 45.437126727802614 ], [ 9.171091915179257, 45.437120158093997 ], [ 9.171068648435714, 45.437111103500335 ], [ 9.171048064652933, 45.437103587160415 ], [ 9.171042176832536, 45.43710143568029 ], [ 9.171014300718161, 45.437091273903761 ], [ 9.17098378195813, 45.437081265808182 ], [ 9.17095228521335, 45.437070951572579 ], [ 9.170924371032077, 45.437062824450152 ], [ 9.170918228595188, 45.437061033392837 ], [ 9.17089800285, 45.437055135764844 ], [ 9.170389106229221, 45.436830925265262 ], [ 9.170241297581509, 45.436970287775829 ], [ 9.170190806773274, 45.436968973211307 ], [ 9.169782231955901, 45.436955735136316 ], [ 9.169752659566857, 45.436954950144418 ], [ 9.167879149333277, 45.436895595636166 ], [ 9.167717159385967, 45.437996597213342 ], [ 9.167435743362148, 45.437975466594331 ], [ 9.167435696339968, 45.437975770289455 ], [ 9.166805200652622, 45.437928565758121 ], [ 9.166728490965861, 45.438596156317288 ], [ 9.166278024422086, 45.438572875208948 ], [ 9.166309587188032, 45.438958698437709 ], [ 9.165627772721075, 45.43898529721158 ], [ 9.165817884329785, 45.44004922081352 ], [ 9.165820552529418, 45.440063815506797 ], [ 9.165847532931757, 45.440214899118281 ], [ 9.165890782280883, 45.440319497020852 ], [ 9.165742151682005, 45.440349275655961 ], [ 9.166038516151676, 45.440795211527011 ], [ 9.165941798066688, 45.440827991427376 ], [ 9.165950858368314, 45.440842754345475 ], [ 9.165937041692303, 45.440847100492029 ], [ 9.166523843198455, 45.441775234772905 ], [ 9.167820286154832, 45.443332373697039 ], [ 9.168768375179964, 45.443193674503334 ], [ 9.169016655247065, 45.44172492207116 ], [ 9.169795247152862, 45.441709882127476 ], [ 9.169794207220052, 45.441640721582978 ], [ 9.169992337179718, 45.441645675539711 ], [ 9.170200456954303, 45.440645946933088 ], [ 9.170200357326216, 45.440612810858063 ], [ 9.170223154694714, 45.440500566272995 ], [ 9.170455933887004, 45.440494128798342 ], [ 9.17045756045373, 45.440304653997089 ], [ 9.170516562486018, 45.440307643554767 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.184409599471898, 45.43743795814428 ], [ 9.184403919350506, 45.43743784773519 ], [ 9.184403428715354, 45.43744108982964 ], [ 9.184364151083178, 45.43746102338018 ], [ 9.184270888637599, 45.438199921193984 ], [ 9.1842681942009, 45.438234256738518 ], [ 9.184139826109121, 45.439175273775959 ], [ 9.184138860633935, 45.439194730110323 ], [ 9.18413370576299, 45.439234893843043 ], [ 9.184123908444692, 45.439302694887061 ], [ 9.183998299557903, 45.440249698048774 ], [ 9.183995011734641, 45.440285303891812 ], [ 9.183962091353969, 45.440522990568894 ], [ 9.183958963581535, 45.440553561243618 ], [ 9.18390602876816, 45.440949066735399 ], [ 9.183901521757337, 45.440985712380616 ], [ 9.183888467654439, 45.441083688595135 ], [ 9.183884871866754, 45.441112150465131 ], [ 9.183800894178024, 45.441735385546259 ], [ 9.183795953909902, 45.441765678728473 ], [ 9.183704047896059, 45.442452929468104 ], [ 9.183692399652623, 45.442533540752564 ], [ 9.183632529842958, 45.442982844546869 ], [ 9.183623368076754, 45.443076432543855 ], [ 9.183625175089347, 45.443101804283977 ], [ 9.183554644209348, 45.443634743560196 ], [ 9.18361249166, 45.44380690829427 ], [ 9.183590302850858, 45.443933126999212 ], [ 9.183656053225448, 45.443936554868863 ], [ 9.183674603366416, 45.44399176303363 ], [ 9.183645702782428, 45.44418797979894 ], [ 9.183646509639097, 45.444188038561457 ], [ 9.18363148004833, 45.444290079490571 ], [ 9.1836212257732, 45.444324298013306 ], [ 9.183626302546926, 45.444325231197745 ], [ 9.183625009700281, 45.444334008738821 ], [ 9.183705978436294, 45.44433987674504 ], [ 9.1843329536268, 45.444455121382802 ], [ 9.184398718997956, 45.44454056273306 ], [ 9.18291655854599, 45.444388481135348 ], [ 9.182913723621196, 45.444397240727611 ], [ 9.181465919417533, 45.444244244230966 ], [ 9.181395645777743, 45.444552341827631 ], [ 9.18137627382618, 45.444550233756274 ], [ 9.181192333722278, 45.445443694744554 ], [ 9.181004188997186, 45.446268526350615 ], [ 9.181015033705384, 45.446269644345129 ], [ 9.180964203444715, 45.446499333762482 ], [ 9.180964262223885, 45.446517716782566 ], [ 9.180677535063147, 45.447688720626267 ], [ 9.181427282741829, 45.448307967163849 ], [ 9.182035812630208, 45.448367798981579 ], [ 9.182035076940005, 45.448372944091417 ], [ 9.183626669763242, 45.448516959358962 ], [ 9.183654605600974, 45.448521299373915 ], [ 9.184372636786556, 45.448589696626946 ], [ 9.184411250958663, 45.448593041877444 ], [ 9.185579323552661, 45.448701681688689 ], [ 9.185588075429827, 45.448695090158083 ], [ 9.185624955496008, 45.448698754423326 ], [ 9.185631544026659, 45.448662351481801 ], [ 9.186544493162327, 45.447974744887453 ], [ 9.186302544294852, 45.447186647477338 ], [ 9.186294867545017, 45.447159648731784 ], [ 9.18622111891345, 45.446926893994018 ], [ 9.186215658805233, 45.44690871946964 ], [ 9.186168416834681, 45.446752559896559 ], [ 9.186152147410121, 45.446700068000403 ], [ 9.186150024103297, 45.446694423948905 ], [ 9.186170104488225, 45.446696533071893 ], [ 9.186064293160433, 45.446360436430602 ], [ 9.186097731583779, 45.446174310389985 ], [ 9.186002535460684, 45.446164268799926 ], [ 9.185751139627129, 45.445365718624295 ], [ 9.185749036275965, 45.444724811520452 ], [ 9.186012469986554, 45.444777261412362 ], [ 9.186040016456282, 45.444682117816363 ], [ 9.186425564200317, 45.444635838103977 ], [ 9.18660924436818, 45.444306046328123 ], [ 9.186651949636373, 45.444570417915934 ], [ 9.186570535717953, 45.44532518207307 ], [ 9.18686752122075, 45.445349944466003 ], [ 9.186902915103463, 45.445466575714029 ], [ 9.187353831732882, 45.445534725208127 ], [ 9.187353379000189, 45.445537656092576 ], [ 9.187481724121035, 45.445554053929335 ], [ 9.189161065818887, 45.445807842842513 ], [ 9.189200438932314, 45.44582860162874 ], [ 9.189368482477978, 45.445949136112468 ], [ 9.189570678084628, 45.445876661546166 ], [ 9.189577563708907, 45.44588048207865 ], [ 9.189602454014397, 45.445874542733662 ], [ 9.189691695686351, 45.44588802816407 ], [ 9.189684800597812, 45.445854893077303 ], [ 9.189737726362704, 45.445842263819081 ], [ 9.189929587065066, 45.445866772307582 ], [ 9.189943666188263, 45.445834066841982 ], [ 9.189950448955534, 45.445834485812938 ], [ 9.190157875065866, 45.44584845944496 ], [ 9.190061819784631, 45.445937506309647 ], [ 9.189948017466401, 45.446110027518529 ], [ 9.18987672553752, 45.446279433586788 ], [ 9.189874555082385, 45.446283455046654 ], [ 9.189847456359884, 45.446329504990281 ], [ 9.189823975248757, 45.446367077779726 ], [ 9.189787720445221, 45.446423275555048 ], [ 9.189700277297042, 45.44656430564838 ], [ 9.189613844017551, 45.446757035347773 ], [ 9.189561139753204, 45.446968420048236 ], [ 9.18953229293704, 45.447251636842694 ], [ 9.189526798292651, 45.447301084120632 ], [ 9.189524363998302, 45.447333889314827 ], [ 9.189520199590442, 45.44737613803035 ], [ 9.189470769771946, 45.447914764449656 ], [ 9.189449374349973, 45.44814974803861 ], [ 9.189441607157761, 45.448198448469164 ], [ 9.189324076617629, 45.449290474633131 ], [ 9.189338934100098, 45.449291010224641 ], [ 9.189322603198187, 45.44940696846664 ], [ 9.190730452795624, 45.449421533364237 ], [ 9.191771654496526, 45.449459931323126 ], [ 9.1918290737582, 45.449462050820777 ], [ 9.191839279984865, 45.449462490314552 ], [ 9.192871570327817, 45.449500806639492 ], [ 9.192947084358657, 45.449503727501316 ], [ 9.195356509305247, 45.449591261569672 ], [ 9.195358195482322, 45.449076236348063 ], [ 9.195490399835503, 45.449095932282709 ], [ 9.196095437425001, 45.448193416478915 ], [ 9.195436224059126, 45.44782391321403 ], [ 9.195451696010318, 45.447660919900848 ], [ 9.195457047256875, 45.447598565754575 ], [ 9.195459998560448, 45.447566982403394 ], [ 9.195464692792092, 45.447504745573632 ], [ 9.195530728754219, 45.446794926384484 ], [ 9.195531915001997, 45.446786934906811 ], [ 9.19554279816025, 45.446670553402654 ], [ 9.195554362962453, 45.446541542561 ], [ 9.195522246216184, 45.446254373234574 ], [ 9.195384936234518, 45.446075956871496 ], [ 9.195383111530235, 45.446069069035048 ], [ 9.195378486935073, 45.4460675768184 ], [ 9.195303897325115, 45.445970656797975 ], [ 9.195588531783894, 45.445984619373668 ], [ 9.195589599714209, 45.445978865059466 ], [ 9.195602449526394, 45.445979445964717 ], [ 9.195625269888566, 45.445786663274077 ], [ 9.195712938201158, 45.445314274080168 ], [ 9.196073462722286, 45.445345120501138 ], [ 9.196073350783367, 45.445344474892124 ], [ 9.196862429105396, 45.445411504723545 ], [ 9.197205905783349, 45.443705696351572 ], [ 9.195961765375781, 45.443562199984861 ], [ 9.196083903423224, 45.442658686303645 ], [ 9.194672233953087, 45.442620241069754 ], [ 9.194646678853628, 45.442619544923353 ], [ 9.193325447134873, 45.442583545412454 ], [ 9.193298388982523, 45.443159217275152 ], [ 9.192194125698494, 45.44312644660188 ], [ 9.1921941256929, 45.443126446710991 ], [ 9.191464552725909, 45.443104789658328 ], [ 9.191464855901822, 45.443109404341847 ], [ 9.191264424120558, 45.443103453794741 ], [ 9.191264659592164, 45.443108906566209 ], [ 9.1909777405257, 45.443101105171294 ], [ 9.190417043985054, 45.443084745187136 ], [ 9.191056092571909, 45.44245289361205 ], [ 9.190985854490293, 45.442353151526227 ], [ 9.190655198040842, 45.442345690613365 ], [ 9.190606872060583, 45.442274404734576 ], [ 9.18849787668031, 45.442273030663195 ], [ 9.187939653484413, 45.442253719222045 ], [ 9.187917650513244, 45.442272645798901 ], [ 9.187804672999649, 45.442272570518043 ], [ 9.187794401246517, 45.442280048967746 ], [ 9.186946290913141, 45.442258867643112 ], [ 9.187015450943182, 45.441737299552692 ], [ 9.187017075226732, 45.441711296661119 ], [ 9.187071495054639, 45.441294012045027 ], [ 9.187078558221092, 45.441248670912842 ], [ 9.187113778800853, 45.440976232623655 ], [ 9.187120356353216, 45.440925483186852 ], [ 9.187177446475042, 45.440496589358297 ], [ 9.187184922919295, 45.440447357263331 ], [ 9.187225186000298, 45.44014026496361 ], [ 9.187231648869641, 45.440087264788744 ], [ 9.187239303300148, 45.44003427608488 ], [ 9.187247006053944, 45.439983524629682 ], [ 9.187337867408445, 45.439296886585446 ], [ 9.18734202876899, 45.439253815505552 ], [ 9.187403547081713, 45.438792781442288 ], [ 9.18744016600764, 45.438521985841348 ], [ 9.187528612549114, 45.437822064584715 ], [ 9.187151399972409, 45.437144881567605 ], [ 9.18630630026033, 45.437031774451569 ], [ 9.186021566070853, 45.437034658242531 ], [ 9.185970015077283, 45.43703616344537 ], [ 9.185606335646389, 45.437039574412381 ], [ 9.185230126714719, 45.437047192415648 ], [ 9.184881568755319, 45.437198429695258 ], [ 9.184409599471898, 45.43743795814428 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.224295677793059, 45.443563027540357 ], [ 9.224294325746907, 45.443276302208787 ], [ 9.223754567828488, 45.443363604618803 ], [ 9.223674727287795, 45.443334179516221 ], [ 9.222255599802265, 45.442811417210613 ], [ 9.221982748207433, 45.443176264872406 ], [ 9.221423806224141, 45.443179551588173 ], [ 9.221410700934513, 45.444075010377837 ], [ 9.220894432709171, 45.44407163782023 ], [ 9.22088347880033, 45.444913670219954 ], [ 9.220877060299154, 45.444913635196691 ], [ 9.220862603210813, 45.446899587002058 ], [ 9.220862171801267, 45.446929808763073 ], [ 9.220862383133607, 45.446929817926609 ], [ 9.220862382962435, 45.446929841439086 ], [ 9.222071040842323, 45.446982219810572 ], [ 9.224132831257588, 45.447071579890483 ], [ 9.224132841866854, 45.447071457227722 ], [ 9.225069656647705, 45.447111938618882 ], [ 9.225079858250627, 45.446078886105148 ], [ 9.225093052406837, 45.444898928398466 ], [ 9.225097712202841, 45.444543788286936 ], [ 9.224875859098267, 45.444289179800663 ], [ 9.224829432491045, 45.444240386134219 ], [ 9.224812897684544, 45.444223180408066 ], [ 9.224892821527281, 45.443783096761173 ], [ 9.224295677793059, 45.443563027540357 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.164846948698079, 45.446367714614482 ], [ 9.164738851997758, 45.446323791864614 ], [ 9.164202573782338, 45.447200016838117 ], [ 9.163585027610948, 45.447933569179384 ], [ 9.163720026884848, 45.447988424817694 ], [ 9.163678862192459, 45.448055680528597 ], [ 9.1640279424384, 45.448189135801087 ], [ 9.164019041057744, 45.448200671583123 ], [ 9.164461381114984, 45.448369932053524 ], [ 9.164461181931067, 45.448370190180583 ], [ 9.164945473388926, 45.448555303706435 ], [ 9.164679392039266, 45.448897300969101 ], [ 9.16480504847601, 45.448944942593641 ], [ 9.164774073077716, 45.448988276621854 ], [ 9.165245734342861, 45.449156617250097 ], [ 9.165197025726386, 45.449230378594187 ], [ 9.164561142409148, 45.450429535062852 ], [ 9.166182859365938, 45.450569831562603 ], [ 9.166191427963927, 45.450570614250317 ], [ 9.166195129602922, 45.450570940064679 ], [ 9.166453711789492, 45.450602893849293 ], [ 9.167681026395849, 45.450780314499703 ], [ 9.167687039234092, 45.450759526313206 ], [ 9.168563197608274, 45.450886260546945 ], [ 9.168704060445382, 45.450543277271215 ], [ 9.168891489708354, 45.45055370004895 ], [ 9.168887058247574, 45.45009769418396 ], [ 9.168888602469099, 45.450093934113127 ], [ 9.168907561444318, 45.450099733946573 ], [ 9.169313895236018, 45.450315237065524 ], [ 9.169313896602191, 45.450315235789404 ], [ 9.169422608860073, 45.450372891878132 ], [ 9.16968381901388, 45.450128891047406 ], [ 9.169683819013892, 45.450128891047427 ], [ 9.170801569354333, 45.449084750933473 ], [ 9.170970191774066, 45.448927228956755 ], [ 9.170970191774062, 45.448927228956755 ], [ 9.171231382536266, 45.448683230200047 ], [ 9.171231377882876, 45.448683227732154 ], [ 9.171296431484837, 45.44862245564434 ], [ 9.170380762834098, 45.448136827584477 ], [ 9.170460823143905, 45.448066568751173 ], [ 9.169301834608087, 45.447511763641948 ], [ 9.169281450686841, 45.447501560604415 ], [ 9.169047990331883, 45.447382514438473 ], [ 9.169016636496897, 45.447365690631372 ], [ 9.168894774053385, 45.447303183408778 ], [ 9.168807827853405, 45.447260938388162 ], [ 9.168226739097607, 45.446978978117954 ], [ 9.168186410681171, 45.446934496827744 ], [ 9.167882744642343, 45.446777055693758 ], [ 9.167847421409796, 45.446762991749466 ], [ 9.167539699439123, 45.446562361745478 ], [ 9.167427571856788, 45.446596610003041 ], [ 9.166508404901665, 45.446231350693331 ], [ 9.165340445646988, 45.445738062108802 ], [ 9.164846948698079, 45.446367714614482 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.098469943289558, 45.447052332822771 ], [ 9.097985249705474, 45.446864752415635 ], [ 9.097971361534633, 45.446883371100824 ], [ 9.097759094527522, 45.446811436093896 ], [ 9.096857176309877, 45.447796226495612 ], [ 9.096843794384668, 45.447810838404301 ], [ 9.09648056408415, 45.448190556320007 ], [ 9.096457038635622, 45.448219968670372 ], [ 9.095808523745177, 45.448222424416599 ], [ 9.09606870503044, 45.449425958298804 ], [ 9.09622457425715, 45.449701057084283 ], [ 9.096443725369056, 45.449908317307774 ], [ 9.096619263833714, 45.450060396285011 ], [ 9.096744933424997, 45.450162210270605 ], [ 9.096918333285274, 45.45026757232143 ], [ 9.097100405767456, 45.450359315568257 ], [ 9.09721505932664, 45.450415470178733 ], [ 9.097260595618831, 45.450469687405636 ], [ 9.097339129360865, 45.45055772915638 ], [ 9.097482832527779, 45.450701991935027 ], [ 9.097542406481297, 45.450751483160211 ], [ 9.097591099604873, 45.450790970059259 ], [ 9.09749850244288, 45.451015537483094 ], [ 9.097536679195068, 45.451029048720336 ], [ 9.097464255047514, 45.451197271196996 ], [ 9.098027872151992, 45.451317991664354 ], [ 9.098032056386245, 45.451347542006395 ], [ 9.098281974581155, 45.451786646116851 ], [ 9.099019012827277, 45.452104498557389 ], [ 9.099355556243824, 45.452215255667333 ], [ 9.099673753239891, 45.452277944426115 ], [ 9.101067334653225, 45.452396964801522 ], [ 9.101494784142785, 45.451738452411931 ], [ 9.102173749427212, 45.451830448783831 ], [ 9.102500021130529, 45.451016919020418 ], [ 9.102511041813125, 45.450989648988042 ], [ 9.102558837372589, 45.450840761052966 ], [ 9.102739434132024, 45.450619014656027 ], [ 9.10286768186975, 45.450456840743904 ], [ 9.1030352898093, 45.450250258344433 ], [ 9.10327937139091, 45.449951980745027 ], [ 9.103558292404852, 45.449617000347061 ], [ 9.103752595655342, 45.449385950409066 ], [ 9.10467517409838, 45.448254022361581 ], [ 9.103196075291951, 45.44764624155669 ], [ 9.102661627041252, 45.447466408573142 ], [ 9.102230181587613, 45.447255106085215 ], [ 9.102136024269782, 45.447210114584237 ], [ 9.102053479795462, 45.447178620384335 ], [ 9.10105409451044, 45.446817353777426 ], [ 9.100503679664255, 45.447355504209199 ], [ 9.100428224595774, 45.447391476115953 ], [ 9.100230661329727, 45.447559901774085 ], [ 9.100157826075515, 45.447635939580508 ], [ 9.098978393143716, 45.447225350197684 ], [ 9.098874921254174, 45.447189571304449 ], [ 9.098469943289558, 45.447052332822771 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.230475387235824, 45.450183003498239 ], [ 9.230574679263142, 45.4501854343739 ], [ 9.230494533541526, 45.449262578030336 ], [ 9.230493352958097, 45.449219618689817 ], [ 9.230493972441225, 45.449155886935912 ], [ 9.230491205845393, 45.449150394955161 ], [ 9.230471658988053, 45.448946490102365 ], [ 9.230462672020213, 45.44886880372708 ], [ 9.230451771497393, 45.448790322772091 ], [ 9.230429964008211, 45.448636828122467 ], [ 9.230408136235102, 45.448471502408303 ], [ 9.230396941400935, 45.448358124223489 ], [ 9.230393225671479, 45.44830291114355 ], [ 9.230386395242878, 45.448180486690958 ], [ 9.230373558324292, 45.448106577726669 ], [ 9.230252832489713, 45.446618080961393 ], [ 9.230112640183869, 45.446572144830455 ], [ 9.230107525404058, 45.446574840284043 ], [ 9.230106768576565, 45.44657048257811 ], [ 9.230104907586973, 45.446569926337297 ], [ 9.228432457879634, 45.447457563129028 ], [ 9.228214384681564, 45.44757247895398 ], [ 9.228188706434366, 45.447545483767648 ], [ 9.227384236928195, 45.447944913659803 ], [ 9.226901645258485, 45.447425500985126 ], [ 9.225039617113282, 45.448074097593583 ], [ 9.22445995532086, 45.448340915638788 ], [ 9.224119413479935, 45.448503278700763 ], [ 9.222912765861217, 45.448520992811716 ], [ 9.22295139441003, 45.450185444152908 ], [ 9.222949383688405, 45.451200630755061 ], [ 9.223469917026144, 45.4512011666543 ], [ 9.223481742643566, 45.451204450303372 ], [ 9.223600304046556, 45.451345907782667 ], [ 9.223695922664726, 45.451347418377928 ], [ 9.223698356923091, 45.451358658664326 ], [ 9.2240383168131, 45.451357904044698 ], [ 9.224092664410298, 45.451370499302072 ], [ 9.224172257222961, 45.451385802567053 ], [ 9.224264293623886, 45.451399532346748 ], [ 9.22436132107377, 45.4514094801428 ], [ 9.22438219833956, 45.451410664467367 ], [ 9.224403437161605, 45.451412719959073 ], [ 9.224541982081618, 45.451419424587073 ], [ 9.22473088978963, 45.451411534613072 ], [ 9.224884188546827, 45.451389941682947 ], [ 9.224909664065775, 45.451388089893491 ], [ 9.225038932279205, 45.451369051288928 ], [ 9.225103771707142, 45.451355532466394 ], [ 9.22531220343939, 45.451355067359401 ], [ 9.225553863949061, 45.451354381688596 ], [ 9.225655228536084, 45.451346781811864 ], [ 9.225767276814517, 45.45135434678469 ], [ 9.225867869739441, 45.451353447509796 ], [ 9.225868258686159, 45.451353473769132 ], [ 9.225916343902318, 45.45136861296578 ], [ 9.226050614504885, 45.45139912431803 ], [ 9.226189200851643, 45.451419299377783 ], [ 9.226328394136036, 45.451428696367181 ], [ 9.226469912688829, 45.45142743050836 ], [ 9.226608904415544, 45.45141553119668 ], [ 9.226645363427421, 45.451409539754785 ], [ 9.226756220937894, 45.451408547861035 ], [ 9.226896497900325, 45.451396538157177 ], [ 9.227033202851686, 45.451374072497131 ], [ 9.22703321528631, 45.451374069423764 ], [ 9.227086430230054, 45.451376965817055 ], [ 9.227142248482087, 45.451378710587868 ], [ 9.227210374865873, 45.451378746773578 ], [ 9.227278137801422, 45.451376336374025 ], [ 9.227335194098288, 45.451372651863288 ], [ 9.227393111431677, 45.451367264595213 ], [ 9.227398572887148, 45.451367503125638 ], [ 9.227439857244097, 45.45136855177757 ], [ 9.227461011394976, 45.451368790202245 ], [ 9.227494228974232, 45.451368794389026 ], [ 9.227523947023142, 45.451368365815796 ], [ 9.227558948133867, 45.451367357407442 ], [ 9.227590035684894, 45.45136600797818 ], [ 9.227664155278751, 45.451361711024383 ], [ 9.227728558823539, 45.451353962257386 ], [ 9.227774833401966, 45.451358386513682 ], [ 9.227773614074875, 45.451485624698073 ], [ 9.229164716213514, 45.451430551333175 ], [ 9.230317323547357, 45.451408378713616 ], [ 9.230314092554995, 45.450868993112159 ], [ 9.23032575220757, 45.45085120338581 ], [ 9.230353555352229, 45.450802556798401 ], [ 9.230377578942148, 45.450753577232888 ], [ 9.230433959339232, 45.4506167663029 ], [ 9.230434748344861, 45.450599964536607 ], [ 9.23044078953939, 45.450580565501284 ], [ 9.230447146559268, 45.450557852672247 ], [ 9.23045230873293, 45.450537158059198 ], [ 9.230456898950456, 45.450517059193814 ], [ 9.230463842719844, 45.450482443311671 ], [ 9.230468198066024, 45.450453065825492 ], [ 9.230470677535248, 45.450432861266627 ], [ 9.230472817305307, 45.450410877536811 ], [ 9.230474323580156, 45.450389986775406 ], [ 9.230475266114542, 45.450369742663732 ], [ 9.230475721666371, 45.450348376834945 ], [ 9.230475387235824, 45.450183003498239 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.189960056318853, 45.47229424334013 ], [ 9.191387796018793, 45.473454234294231 ], [ 9.192722299642982, 45.473219975782975 ], [ 9.19376346982612, 45.473071864735765 ], [ 9.193798703991185, 45.472405802639045 ], [ 9.193827911945192, 45.472310109109763 ], [ 9.193837365341032, 45.472277499476284 ], [ 9.193849435648405, 45.472232598935655 ], [ 9.193860902042918, 45.472182237302903 ], [ 9.19386962537731, 45.472141638258272 ], [ 9.193883463168186, 45.472076838982602 ], [ 9.193895604430393, 45.471979526064978 ], [ 9.193902764108865, 45.471900258313717 ], [ 9.193904425464799, 45.471855769438093 ], [ 9.193904686851413, 45.471842614602373 ], [ 9.193905211330661, 45.471801516371166 ], [ 9.193905869415122, 45.47175704077776 ], [ 9.193902258890118, 45.471697883484588 ], [ 9.193821109780295, 45.470341645499012 ], [ 9.192324516992059, 45.47079999597851 ], [ 9.191712983931094, 45.470498083301443 ], [ 9.189960056318853, 45.47229424334013 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.256314786539377, 45.458354287899176 ], [ 9.256335397631707, 45.458353894018515 ], [ 9.256333993804294, 45.458339309651194 ], [ 9.256375923433243, 45.458308944700363 ], [ 9.256455916931456, 45.45825453955154 ], [ 9.256514463280723, 45.458218222995832 ], [ 9.25652860800975, 45.458210422256975 ], [ 9.256542113853092, 45.458209553360618 ], [ 9.256642997471358, 45.45820651426002 ], [ 9.256832013383143, 45.458200041586949 ], [ 9.25695736176969, 45.458195783109879 ], [ 9.25702501916601, 45.458205141949669 ], [ 9.25711999423914, 45.458211616170438 ], [ 9.25715224025971, 45.458212738927351 ], [ 9.257222873285667, 45.458215052049439 ], [ 9.257319837685902, 45.458211437786545 ], [ 9.257401827310272, 45.458205475803062 ], [ 9.257491308272154, 45.45819414291671 ], [ 9.25755390969292, 45.458183420508441 ], [ 9.2576111932368, 45.458172001946537 ], [ 9.257687683087914, 45.458153866650512 ], [ 9.257753300930991, 45.45813444358788 ], [ 9.257817923608002, 45.458113424421839 ], [ 9.257887086287941, 45.45808666974159 ], [ 9.257941079090113, 45.458063374996506 ], [ 9.258005155531295, 45.458032694264304 ], [ 9.258046282735684, 45.458010535422012 ], [ 9.258075644403512, 45.457994514712269 ], [ 9.258136108916663, 45.457960744425741 ], [ 9.258183934073534, 45.457932028750001 ], [ 9.25823673239953, 45.457897993254562 ], [ 9.258295021995847, 45.457856220735387 ], [ 9.258350286580807, 45.457812180060152 ], [ 9.25838297647201, 45.457783155131217 ], [ 9.258416036412125, 45.457753493378668 ], [ 9.258465278090654, 45.457701848432137 ], [ 9.258504758447641, 45.45765599977004 ], [ 9.258539825046981, 45.457609729898628 ], [ 9.258560988009851, 45.457578688011168 ], [ 9.258590362025867, 45.457532304716864 ], [ 9.258618361233182, 45.457479720502825 ], [ 9.258639877402796, 45.457433798269754 ], [ 9.258661817738757, 45.457377794729737 ], [ 9.258675695233709, 45.457336119080679 ], [ 9.258687022342501, 45.457296561264712 ], [ 9.258688772969339, 45.45729070545503 ], [ 9.258694647487273, 45.457277142948989 ], [ 9.258715783909532, 45.457228551413436 ], [ 9.25874304446525, 45.457167973401098 ], [ 9.258747147911775, 45.457160281312362 ], [ 9.258750665433721, 45.457154409265129 ], [ 9.258777085119906, 45.457109794208854 ], [ 9.258796353019607, 45.4570734222577 ], [ 9.258818549802681, 45.457027339913573 ], [ 9.258841062442881, 45.456970419733473 ], [ 9.25885859596848, 45.456914794658729 ], [ 9.258870151243286, 45.456866828972494 ], [ 9.258877979580586, 45.456823486070853 ], [ 9.258884985991557, 45.456765467144479 ], [ 9.25888566164431, 45.456723334518841 ], [ 9.258885555422411, 45.456700121062006 ], [ 9.258884008646749, 45.456658206800995 ], [ 9.258876686166756, 45.45660224310496 ], [ 9.258867520210504, 45.456557074648323 ], [ 9.258854325507615, 45.456506929430866 ], [ 9.258838283805417, 45.456462388833863 ], [ 9.258836083341048, 45.456444879298715 ], [ 9.258823016288186, 45.456378437467606 ], [ 9.258806074411702, 45.456317327524232 ], [ 9.258794023181016, 45.456281273137044 ], [ 9.258771379885738, 45.456221587392065 ], [ 9.258742386821057, 45.456158089632055 ], [ 9.258706924090244, 45.456091722607432 ], [ 9.25868539869883, 45.456054511197358 ], [ 9.258641020153171, 45.455985121660383 ], [ 9.258608069616365, 45.45593685374444 ], [ 9.258608116534775, 45.455936826533232 ], [ 9.258687010639726, 45.455895051550357 ], [ 9.258813922437398, 45.455832831009168 ], [ 9.258943015631571, 45.45577019881646 ], [ 9.259059864491345, 45.455708674085258 ], [ 9.259122641976756, 45.45567313498217 ], [ 9.259209210210742, 45.455620520414875 ], [ 9.259291379575753, 45.45556496215049 ], [ 9.259333746008743, 45.455534312969924 ], [ 9.259397258507507, 45.455485087085677 ], [ 9.259454563224752, 45.455436216243875 ], [ 9.259506612238544, 45.455387575008317 ], [ 9.259548278252327, 45.455344101997831 ], [ 9.259574821534173, 45.455314750491574 ], [ 9.259614911742386, 45.455266189395324 ], [ 9.259653151570074, 45.455213185516968 ], [ 9.259684367311927, 45.455164357472505 ], [ 9.259709107331334, 45.455120729491014 ], [ 9.259736116284763, 45.455065949619666 ], [ 9.259761349055452, 45.455005002269104 ], [ 9.259780625854196, 45.454945836219878 ], [ 9.259795946066859, 45.454886910287286 ], [ 9.259807236175352, 45.454824026364186 ], [ 9.259814263029668, 45.454755876312937 ], [ 9.259815775484023, 45.454690062977654 ], [ 9.259812856752621, 45.454626583162522 ], [ 9.25980587465132, 45.454567999198403 ], [ 9.259794338867437, 45.454503747015586 ], [ 9.259778107216647, 45.454439235653631 ], [ 9.259764658816307, 45.454396621238537 ], [ 9.259749056677844, 45.454352858019583 ], [ 9.259727629928703, 45.454304018566262 ], [ 9.259708205270456, 45.454265190675983 ], [ 9.25938484429077, 45.453692204058179 ], [ 9.258601878637343, 45.453666477278041 ], [ 9.258451369690331, 45.453639989955043 ], [ 9.258294907543023, 45.453612519425 ], [ 9.257629919723644, 45.453495664701386 ], [ 9.256812681775218, 45.453353642637147 ], [ 9.256251665578867, 45.453254426778663 ], [ 9.255863549648447, 45.453183262474759 ], [ 9.255822679697395, 45.453175723485749 ], [ 9.255736859820461, 45.453163857618989 ], [ 9.255648281110025, 45.453156257087869 ], [ 9.255567410624256, 45.453152878627321 ], [ 9.255444150268255, 45.453153154340747 ], [ 9.255349066730645, 45.453161745121839 ], [ 9.255317836922625, 45.453164749271146 ], [ 9.25527785838346, 45.453170112924347 ], [ 9.255186075905318, 45.453183256510442 ], [ 9.255057615379938, 45.453213707110358 ], [ 9.254971680165216, 45.45323985190408 ], [ 9.254903713737638, 45.45326395979852 ], [ 9.254856300846511, 45.453283179401097 ], [ 9.25480519248959, 45.45330547677321 ], [ 9.254775932627361, 45.453319829597135 ], [ 9.254703268940899, 45.453355511820483 ], [ 9.254595243561161, 45.453425366286965 ], [ 9.254535159425897, 45.453471771579821 ], [ 9.254494563330212, 45.453506286704147 ], [ 9.254459779301342, 45.453539150437692 ], [ 9.254422835281236, 45.453576550373867 ], [ 9.254075958945045, 45.453981792696837 ], [ 9.25398844265543, 45.454084733303041 ], [ 9.253841946805604, 45.45425726973329 ], [ 9.253683265929324, 45.454443099642276 ], [ 9.253472327724134, 45.454688987061175 ], [ 9.253316297417575, 45.454939471465124 ], [ 9.253274868388564, 45.455270262280528 ], [ 9.253303139431031, 45.455470340286915 ], [ 9.253450061630122, 45.456187010665658 ], [ 9.253385470151441, 45.456163706920044 ], [ 9.252792463017036, 45.456996747760691 ], [ 9.251991074678511, 45.456665023969769 ], [ 9.251497074697333, 45.457914024322797 ], [ 9.251484198291339, 45.458110071322338 ], [ 9.251480979185905, 45.458208664281571 ], [ 9.251470425892643, 45.458490356831526 ], [ 9.251465621739548, 45.458650516534838 ], [ 9.251466827236255, 45.458757974425318 ], [ 9.251483147875392, 45.458883008480221 ], [ 9.251489658908039, 45.458916141234148 ], [ 9.251435603285687, 45.458932120217035 ], [ 9.251419942874211, 45.460485117567622 ], [ 9.251759450968134, 45.460480490945514 ], [ 9.251746041954288, 45.460660518390249 ], [ 9.252419685858197, 45.462574785470871 ], [ 9.252988193231706, 45.462578035414666 ], [ 9.252874863110728, 45.462598239853399 ], [ 9.252744270988174, 45.462635334611306 ], [ 9.252697982234489, 45.462651922115008 ], [ 9.252697726750258, 45.462652012714649 ], [ 9.252612367289661, 45.462682375320533 ], [ 9.252443025831761, 45.462766350082752 ], [ 9.252363499973214, 45.462822619380923 ], [ 9.252216899846008, 45.462926256159079 ], [ 9.252124560842322, 45.463057527591907 ], [ 9.25208464263738, 45.463113995931707 ], [ 9.252039423091068, 45.463210465273399 ], [ 9.252016230084276, 45.463276629181891 ], [ 9.251990355914286, 45.463388026212542 ], [ 9.251990685059891, 45.463462251325367 ], [ 9.251990989637397, 45.463526879717605 ], [ 9.252007754328103, 45.463607649946489 ], [ 9.252017874887271, 45.463645444949293 ], [ 9.252027122574589, 45.463674301043326 ], [ 9.252037513489402, 45.463703163895886 ], [ 9.252050559245403, 45.463734018552316 ], [ 9.252073128470292, 45.463781170069964 ], [ 9.252088928567618, 45.463808714969119 ], [ 9.252120443294329, 45.463860925505493 ], [ 9.252180068981261, 45.463937808850694 ], [ 9.252213674765205, 45.463973107758818 ], [ 9.252237952100119, 45.463998587532224 ], [ 9.252279965119602, 45.464036771920952 ], [ 9.252334238171853, 45.464082851132758 ], [ 9.252392691471439, 45.464123726142915 ], [ 9.252426262445582, 45.464145733964273 ], [ 9.252472439689752, 45.46417398653562 ], [ 9.252508677902673, 45.464193691708715 ], [ 9.252549313122559, 45.464214997308723 ], [ 9.252597224118633, 45.464237320598876 ], [ 9.252619688938632, 45.464247131666959 ], [ 9.252638957785562, 45.464255209270696 ], [ 9.252638674146393, 45.464257457982704 ], [ 9.25263705480482, 45.464272499273008 ], [ 9.252636538775869, 45.464277241804332 ], [ 9.252634780963955, 45.464293425733729 ], [ 9.252633785968399, 45.464302663465887 ], [ 9.252632529521456, 45.464314235898833 ], [ 9.252631001551245, 45.464328424581851 ], [ 9.252630084446087, 45.464337998888602 ], [ 9.252629407840747, 45.464344223890066 ], [ 9.252628919948673, 45.464348555707183 ], [ 9.252626763633373, 45.464370479668766 ], [ 9.252625321531843, 45.46438642632868 ], [ 9.252624592751156, 45.464394426905059 ], [ 9.252623536309519, 45.464406989583942 ], [ 9.252622414487689, 45.464420480360104 ], [ 9.25262185277486, 45.464428058681158 ], [ 9.252621662192798, 45.464430730239926 ], [ 9.252621299753237, 45.464434094721135 ], [ 9.252620280330614, 45.464448314845335 ], [ 9.25261927090914, 45.464462464793726 ], [ 9.252618533794129, 45.464472849286459 ], [ 9.252618263740809, 45.464476687823769 ], [ 9.252617033806208, 45.464494446729255 ], [ 9.252616146834519, 45.464509473690121 ], [ 9.252615766131377, 45.464515037676556 ], [ 9.252614738379568, 45.464535663537809 ], [ 9.25261419061345, 45.464546790979057 ], [ 9.252613822637263, 45.464557371488766 ], [ 9.252613365228566, 45.46457188624705 ], [ 9.2526131411562, 45.464578997685173 ], [ 9.252612910340334, 45.464586587961328 ], [ 9.252612590063839, 45.464602912487997 ], [ 9.252612420196684, 45.464615474789511 ], [ 9.252612339505569, 45.464634451286592 ], [ 9.252612447619052, 45.464658658130418 ], [ 9.252612821499085, 45.464677114877503 ], [ 9.252613294837808, 45.464690138386786 ], [ 9.252613586448744, 45.464698148803983 ], [ 9.252614079530538, 45.464711736330564 ], [ 9.252615032777308, 45.464725899846499 ], [ 9.252616763670643, 45.464751290321615 ], [ 9.252618343852612, 45.464770030808531 ], [ 9.252620485699017, 45.464791310212263 ], [ 9.252622026261738, 45.464804562255878 ], [ 9.252623601394697, 45.464818101316638 ], [ 9.252625780061026, 45.464834396855274 ], [ 9.252627645069786, 45.464847820189831 ], [ 9.252629791134629, 45.464861186642999 ], [ 9.25263179025149, 45.464873664034648 ], [ 9.252635313600521, 45.464893266223008 ], [ 9.252639120224936, 45.464912117202516 ], [ 9.252641596778998, 45.464923417462522 ], [ 9.252644517219377, 45.464936789865121 ], [ 9.252649087974946, 45.464955720570615 ], [ 9.252653888648419, 45.464974099424261 ], [ 9.252658183235587, 45.464989593402279 ], [ 9.252662762549292, 45.465005891751296 ], [ 9.252670742004639, 45.465030601235711 ], [ 9.252676794515002, 45.465049477566701 ], [ 9.252683822179213, 45.465068731157459 ], [ 9.252688355346841, 45.465081154672255 ], [ 9.252695085299147, 45.465098630878494 ], [ 9.252699820323146, 45.465110318165152 ], [ 9.252708005375851, 45.465130239317261 ], [ 9.252714902699944, 45.465145730209464 ], [ 9.252719310658652, 45.465155495162392 ], [ 9.252727577403601, 45.465173803305206 ], [ 9.252743000787468, 45.465204914186614 ], [ 9.252752160909303, 45.465222531092813 ], [ 9.252759402911813, 45.465235927162546 ], [ 9.252766718810697, 45.46524926515702 ], [ 9.252776390272665, 45.465266248978985 ], [ 9.252783196007046, 45.465277789526439 ], [ 9.252790830307822, 45.465290717888244 ], [ 9.252801131132781, 45.465307074240357 ], [ 9.252811273115384, 45.46532299639307 ], [ 9.252816250816645, 45.465330638299463 ], [ 9.252831315840851, 45.46535326640609 ], [ 9.252848694876763, 45.465377910674782 ], [ 9.252851522339665, 45.465381838377411 ], [ 9.252856821515621, 45.465389209087341 ], [ 9.252867282957595, 45.465403596404684 ], [ 9.252874574175189, 45.465413148593598 ], [ 9.252889212347478, 45.465432380078539 ], [ 9.252899153223352, 45.46544487835888 ], [ 9.252908885426496, 45.465456963791574 ], [ 9.252916798857727, 45.465466586697538 ], [ 9.252925554131178, 45.465477188156861 ], [ 9.252941568468065, 45.465495916880634 ], [ 9.252952883870607, 45.465508869557468 ], [ 9.252959668360361, 45.465516572883296 ], [ 9.252974397227407, 45.465532815535916 ], [ 9.252980856489771, 45.465539868334588 ], [ 9.252994345705664, 45.465554297305673 ], [ 9.253006355773389, 45.465566887815619 ], [ 9.253015808092268, 45.465576603145863 ], [ 9.25302166764599, 45.465582545632117 ], [ 9.253034779669663, 45.465595753591337 ], [ 9.253049284146822, 45.465609986565383 ], [ 9.253059934988874, 45.465620351192925 ], [ 9.253072585918911, 45.465632369303776 ], [ 9.253080990225856, 45.465640301308319 ], [ 9.253090022614449, 45.465648818283263 ], [ 9.253111663199848, 45.46566848576456 ], [ 9.253123453899141, 45.465679018541749 ], [ 9.253133989346759, 45.465688293787423 ], [ 9.253144479047181, 45.465697358366185 ], [ 9.25315493484942, 45.465706398314964 ], [ 9.253165280522891, 45.465715181606583 ], [ 9.253182237045502, 45.465729365924297 ], [ 9.253207157849953, 45.465749541689831 ], [ 9.253228413681342, 45.465766453845376 ], [ 9.253250550495197, 45.465783506451167 ], [ 9.253264200681617, 45.465793685554864 ], [ 9.253272844258117, 45.465800219555774 ], [ 9.2532912784283, 45.465813616849587 ], [ 9.253303590481766, 45.465822561683119 ], [ 9.253323223216601, 45.465836467920816 ], [ 9.253328430710924, 45.465840101943151 ], [ 9.253334608891416, 45.465844432687156 ], [ 9.253353553281341, 45.465857509472222 ], [ 9.253366188585174, 45.465865999890667 ], [ 9.253372988833474, 45.465870575415195 ], [ 9.253382356838175, 45.465876860890518 ], [ 9.253396469216383, 45.465886170104937 ], [ 9.253413036042964, 45.465896895063572 ], [ 9.253431569145134, 45.46590898699305 ], [ 9.253442838646066, 45.465916195222455 ], [ 9.253449649228724, 45.465920648998612 ], [ 9.253473399071739, 45.46593566854942 ], [ 9.253483396429941, 45.465941992536003 ], [ 9.253503046067436, 45.465954285429689 ], [ 9.253523733225466, 45.465967041422672 ], [ 9.253538189789815, 45.465975886735414 ], [ 9.253545500114525, 45.465980351380175 ], [ 9.253559701511815, 45.465988953183938 ], [ 9.253572439452816, 45.465996660503798 ], [ 9.253595710725682, 45.466010794132714 ], [ 9.25360262819145, 45.466014985834882 ], [ 9.253612296917755, 45.46602081198494 ], [ 9.253618837468277, 45.466024775288496 ], [ 9.253627942372422, 45.466030288629369 ], [ 9.253642719593916, 45.466039199918981 ], [ 9.253648700456331, 45.466042756472667 ], [ 9.253680171170295, 45.466061459436503 ], [ 9.253721693178898, 45.466083310308051 ], [ 9.2537342517836, 45.466089955605895 ], [ 9.253733901497274, 45.466089771530172 ], [ 9.253746326695262, 45.4660964461765 ], [ 9.253755178221263, 45.466101266278727 ], [ 9.253764063571797, 45.466106104798591 ], [ 9.25377690729246, 45.466113192299183 ], [ 9.253782467445037, 45.466116218705821 ], [ 9.253787608207089, 45.466119131549725 ], [ 9.253800841067246, 45.466126510567733 ], [ 9.253810444852965, 45.466131939088747 ], [ 9.25381603616094, 45.466135160327973 ], [ 9.253824593545161, 45.466140043308251 ], [ 9.253827379153089, 45.466141660626626 ], [ 9.25382919898121, 45.466142769914768 ], [ 9.253845860986646, 45.466152755267217 ], [ 9.253850246380036, 45.466159980402594 ], [ 9.253852128776023, 45.466163111201318 ], [ 9.253853200363242, 45.466167963160551 ], [ 9.253854824412771, 45.466175731295642 ], [ 9.253857121834475, 45.466186930252427 ], [ 9.253859426971394, 45.46619758979292 ], [ 9.253861056278357, 45.466204738212291 ], [ 9.253866599065134, 45.466228693057147 ], [ 9.253871123647095, 45.466247657452321 ], [ 9.253874504456698, 45.466261315038437 ], [ 9.253874566810273, 45.466261540299747 ], [ 9.253879039253261, 45.466279303297263 ], [ 9.253879849791703, 45.46628236645391 ], [ 9.253884427033878, 45.466299457051733 ], [ 9.253888782434581, 45.466314956855378 ], [ 9.253891276007652, 45.46632351074183 ], [ 9.253894436683424, 45.466334277384895 ], [ 9.253896690620813, 45.46634197988449 ], [ 9.253902573446883, 45.466361120395476 ], [ 9.253904419339712, 45.466366862589794 ], [ 9.253906400778126, 45.466373071060808 ], [ 9.253912475109473, 45.466391848981516 ], [ 9.253916292520625, 45.466402913062254 ], [ 9.253923007940179, 45.466422221746718 ], [ 9.253930324010598, 45.466442021069135 ], [ 9.253936767715571, 45.466458884598502 ], [ 9.253941754770667, 45.46647154346622 ], [ 9.253945510108768, 45.466480844156386 ], [ 9.253948925777509, 45.466489170455205 ], [ 9.253951027011681, 45.46649436536471 ], [ 9.25395784297536, 45.466510295849879 ], [ 9.253963136034647, 45.466522426648268 ], [ 9.253969091560744, 45.466535766263263 ], [ 9.253972920602813, 45.466544131022744 ], [ 9.253976382207396, 45.466551713446613 ], [ 9.253983586754194, 45.466566763203843 ], [ 9.253987783527313, 45.466575353058602 ], [ 9.253993223691296, 45.466586468468051 ], [ 9.254001721280925, 45.466603045014274 ], [ 9.254008252442635, 45.466615360466378 ], [ 9.254020029785375, 45.46663700182782 ], [ 9.254033552120241, 45.466660572962994 ], [ 9.254043081187948, 45.466676538847246 ], [ 9.254052528285351, 45.466692344528191 ], [ 9.254061959094074, 45.466707297890508 ], [ 9.254069809513638, 45.466719530857624 ], [ 9.254074088575525, 45.466726099756755 ], [ 9.254081062634143, 45.466736679546351 ], [ 9.254095962341509, 45.466758584174123 ], [ 9.254105982760715, 45.466772575110397 ], [ 9.254120566182189, 45.466792651624473 ], [ 9.254130544289174, 45.466805822732908 ], [ 9.254135707803636, 45.466812759917481 ], [ 9.254145778982783, 45.466825875640261 ], [ 9.254156046179226, 45.466839145313457 ], [ 9.254157941739454, 45.466841660215223 ], [ 9.254164316574235, 45.466850201745999 ], [ 9.254170127163036, 45.466857830035956 ], [ 9.254174415698648, 45.466863439306621 ], [ 9.254184188770694, 45.466876198012919 ], [ 9.254185773824009, 45.466878627325194 ], [ 9.254190664443129, 45.466886134991533 ], [ 9.254194500444882, 45.466892223002581 ], [ 9.254205125042441, 45.466908275451168 ], [ 9.254206192487803, 45.466909906447206 ], [ 9.254207083340953, 45.466911239340547 ], [ 9.25421256139083, 45.466919600024802 ], [ 9.254212688098956, 45.466919803441748 ], [ 9.254214501255092, 45.466922746534884 ], [ 9.254218521336306, 45.466929149273696 ], [ 9.254223416958657, 45.466937266113561 ], [ 9.254231771918345, 45.466951302355021 ], [ 9.254246027929044, 45.466973536042858 ], [ 9.254266662998244, 45.467004118763441 ], [ 9.254268477382729, 45.46700679208864 ], [ 9.254278841348482, 45.467021953785554 ], [ 9.25428045397074, 45.467024329831041 ], [ 9.254283560020351, 45.467028907054541 ], [ 9.254284761842035, 45.467030662576953 ], [ 9.254282741717368, 45.46703943502844 ], [ 9.254277860271483, 45.467060453672509 ], [ 9.25427660534128, 45.467065857177751 ], [ 9.254275859658152, 45.467069067955613 ], [ 9.254274574527834, 45.467074061586267 ], [ 9.2542718821381, 45.467085647993166 ], [ 9.254271010141316, 45.467089055314304 ], [ 9.25426634708716, 45.467108497809129 ], [ 9.254264875336281, 45.467114527731887 ], [ 9.254263452848424, 45.467120083347517 ], [ 9.254261203628369, 45.467129309199898 ], [ 9.254256021793474, 45.467149190668856 ], [ 9.254253699758042, 45.467157863588127 ], [ 9.254250806123446, 45.467168671455248 ], [ 9.25424905409437, 45.467175215367789 ], [ 9.254246476443372, 45.467184363493658 ], [ 9.254245004699156, 45.467189638879091 ], [ 9.254242880742355, 45.467196856413842 ], [ 9.254239150581013, 45.467209822712661 ], [ 9.254237935844378, 45.467213761079059 ], [ 9.254234850398742, 45.467224333812112 ], [ 9.254232819120492, 45.467230882963378 ], [ 9.254232446630319, 45.467231993057446 ], [ 9.254229024371465, 45.467242993448735 ], [ 9.254223406240765, 45.467261848610363 ], [ 9.254221369017715, 45.467268741454625 ], [ 9.254219864779122, 45.467273951876159 ], [ 9.254217747172616, 45.467281203677075 ], [ 9.254213221255212, 45.467296944734841 ], [ 9.254211542073051, 45.467303125898766 ], [ 9.254210534272902, 45.467306367434645 ], [ 9.254206473156611, 45.467321313842525 ], [ 9.254204587354689, 45.467328269865561 ], [ 9.254201391998032, 45.467340487236299 ], [ 9.254199597239323, 45.467347020507439 ], [ 9.254194867791551, 45.46736623305361 ], [ 9.254191121762409, 45.467382684930683 ], [ 9.254187205380003, 45.467400802461427 ], [ 9.254184386827873, 45.467414865004336 ], [ 9.254181826164219, 45.467427588289894 ], [ 9.254177957022636, 45.467449146977756 ], [ 9.254175413180558, 45.46746384403054 ], [ 9.254172914220172, 45.467479440903453 ], [ 9.2541707524634, 45.46749441733953 ], [ 9.25416920633832, 45.467505489630916 ], [ 9.25416649349491, 45.46752622727238 ], [ 9.254165422060485, 45.467536450660987 ], [ 9.254164342388526, 45.467546911097038 ], [ 9.254163173663743, 45.467558221242278 ], [ 9.254162494164722, 45.467566280453987 ], [ 9.254161992728974, 45.467572250859632 ], [ 9.25416081431792, 45.467586688139974 ], [ 9.254160363540327, 45.467592122637257 ], [ 9.25415945955649, 45.467603274761274 ], [ 9.254157811255435, 45.467630859670692 ], [ 9.254156907852627, 45.467649020787839 ], [ 9.254156573743321, 45.467657456572688 ], [ 9.25415612948041, 45.467665028526369 ], [ 9.254155865428617, 45.467671216620289 ], [ 9.254155610292251, 45.467677053034201 ], [ 9.254155026059774, 45.467690478996921 ], [ 9.254154289368616, 45.467707393285224 ], [ 9.254153703547827, 45.46772609058111 ], [ 9.254153545492967, 45.467734136676128 ], [ 9.254153520229245, 45.467734776158494 ], [ 9.254153374203664, 45.467739273987107 ], [ 9.254153367219722, 45.46773938663106 ], [ 9.254152810963372, 45.467750220283911 ], [ 9.254152426048053, 45.467756419587396 ], [ 9.254151864841443, 45.467767414658233 ], [ 9.254151265563774, 45.46777711238569 ], [ 9.254150832411579, 45.467787945116541 ], [ 9.254150517839298, 45.467792886942789 ], [ 9.254149943298515, 45.467806902418303 ], [ 9.254149774425496, 45.46781113329812 ], [ 9.254149407616769, 45.467816957383945 ], [ 9.254148440706668, 45.467841143248947 ], [ 9.254148047841133, 45.467851125913469 ], [ 9.254147739113785, 45.467861862862598 ], [ 9.2541476604591, 45.467863799249905 ], [ 9.254147339620934, 45.467871461621591 ], [ 9.254146943282478, 45.467884867640294 ], [ 9.254146664434213, 45.467891849648986 ], [ 9.254146216597675, 45.467909589023307 ], [ 9.254146033781488, 45.467914382522061 ], [ 9.254145351586114, 45.467932070198579 ], [ 9.254145003012804, 45.467941208356173 ], [ 9.25414432081687, 45.467958896031597 ], [ 9.254143977092102, 45.467967807971682 ], [ 9.254143534762914, 45.467979454637131 ], [ 9.254142982402023, 45.467997040126654 ], [ 9.25414272567113, 45.46800377167267 ], [ 9.254142301038012, 45.468014741289551 ], [ 9.254141667436103, 45.468035059132269 ], [ 9.25414117670522, 45.468050691221606 ], [ 9.254140864135689, 45.468058698558828 ], [ 9.254140177417064, 45.46808057375975 ], [ 9.25413991729925, 45.468091014986399 ], [ 9.254139348067486, 45.468109203299072 ], [ 9.254139142372081, 45.468117840249548 ], [ 9.25413855505308, 45.468136444338732 ], [ 9.254138313090786, 45.468146936984155 ], [ 9.254138099488079, 45.468155757776131 ], [ 9.254137883684967, 45.468164669432227 ], [ 9.254117222083453, 45.469027770761564 ], [ 9.254720804982478, 45.469057263287652 ], [ 9.254719714391051, 45.469066957235555 ], [ 9.256044235915505, 45.46916090898268 ], [ 9.257203958973381, 45.46926065174253 ], [ 9.2575201233836, 45.468309116534734 ], [ 9.257553967062531, 45.468151134979571 ], [ 9.257556335017938, 45.468148986964536 ], [ 9.257561414807171, 45.468116368950824 ], [ 9.257577900592667, 45.46803941324697 ], [ 9.25759591987188, 45.467894806271204 ], [ 9.257613181342551, 45.467783966887737 ], [ 9.2587951495605, 45.467847346535088 ], [ 9.259297908970746, 45.467898317605645 ], [ 9.259740400168452, 45.467943684990395 ], [ 9.259518532432818, 45.468756804153657 ], [ 9.259505843851958, 45.468878467634006 ], [ 9.259496395463994, 45.468914913361864 ], [ 9.259408286638429, 45.469162991952651 ], [ 9.259339971975276, 45.469353890113673 ], [ 9.258786572558121, 45.470869464939256 ], [ 9.260436791224706, 45.470561921807992 ], [ 9.260424811732836, 45.470679172258649 ], [ 9.263808767020761, 45.470965714819606 ], [ 9.263776218101055, 45.470883644131384 ], [ 9.263959027606932, 45.47089381163493 ], [ 9.263247547410051, 45.469381768992058 ], [ 9.263207636518606, 45.469297843946734 ], [ 9.263191887577696, 45.469266299950839 ], [ 9.263183811989125, 45.469250234251732 ], [ 9.2631728630104, 45.469231206514387 ], [ 9.263165019428433, 45.469217492218171 ], [ 9.263152036140061, 45.469196598625985 ], [ 9.263139714578219, 45.469177500049469 ], [ 9.263121285934359, 45.469150863513157 ], [ 9.263109272988608, 45.469134901720565 ], [ 9.263097512874063, 45.46911930218922 ], [ 9.263081345634994, 45.469099545364692 ], [ 9.263065640926239, 45.469080602057424 ], [ 9.26303956594974, 45.469052091364233 ], [ 9.263017327443915, 45.469028785822175 ], [ 9.262982075135373, 45.468994913603652 ], [ 9.262944211064804, 45.468962222300128 ], [ 9.262932669337369, 45.468952362635363 ], [ 9.26290797384849, 45.468933185553517 ], [ 9.26289595587474, 45.468923825488183 ], [ 9.262861742735964, 45.468898650822453 ], [ 9.262822163593574, 45.468871937826364 ], [ 9.262793934980943, 45.46885417900755 ], [ 9.262757745676726, 45.468832147046314 ], [ 9.262708293815773, 45.468805145832889 ], [ 9.26266638869942, 45.46878384891982 ], [ 9.262630761962392, 45.46876711170173 ], [ 9.262595804744858, 45.468751271033874 ], [ 9.262562429477724, 45.468737411457113 ], [ 9.262529375951118, 45.468724047995387 ], [ 9.262514347278726, 45.468718526489724 ], [ 9.262552222941988, 45.46860343450652 ], [ 9.262587565931243, 45.46841248312748 ], [ 9.26260466329286, 45.468292980070451 ], [ 9.262609773786986, 45.468245476443876 ], [ 9.262625690539242, 45.468097004228667 ], [ 9.262642883408866, 45.46790701036155 ], [ 9.262653421194289, 45.467798842786848 ], [ 9.26266385032455, 45.467760733659468 ], [ 9.262724484687125, 45.467588152280065 ], [ 9.262760273499921, 45.467488179901402 ], [ 9.262818302300159, 45.467324285209607 ], [ 9.262856625316328, 45.467217157749246 ], [ 9.262881128624551, 45.467135196839678 ], [ 9.26288758563498, 45.467109735079454 ], [ 9.262890325610687, 45.467098763944918 ], [ 9.262894557664689, 45.467081202260339 ], [ 9.26289664269475, 45.467072149048164 ], [ 9.262931221289039, 45.467088118140573 ], [ 9.262948543963157, 45.467095782078907 ], [ 9.262971949437071, 45.467105863807383 ], [ 9.262985284084637, 45.467111451839223 ], [ 9.263004155244765, 45.467119229900511 ], [ 9.263024204966417, 45.467127359942161 ], [ 9.263041214929784, 45.467133854543235 ], [ 9.263053132963316, 45.46713841770481 ], [ 9.263072508819761, 45.467145816236958 ], [ 9.263093602897531, 45.467153415562358 ], [ 9.263128425043579, 45.467165695176824 ], [ 9.263157814444707, 45.467175302880662 ], [ 9.26317326372253, 45.467180346289616 ], [ 9.263197988081682, 45.467188039870258 ], [ 9.263208738771963, 45.467191319929327 ], [ 9.263227367484124, 45.46719683029481 ], [ 9.263255548407814, 45.467205016382486 ], [ 9.263282387406436, 45.467212415944232 ], [ 9.26328242949946, 45.467221457890204 ], [ 9.263284177838409, 45.467282568646645 ], [ 9.263292622392941, 45.467369695053669 ], [ 9.26330465943704, 45.467442783111949 ], [ 9.2633166916569, 45.467497100463568 ], [ 9.263316912883786, 45.467498266223501 ], [ 9.263319473770775, 45.467510014617979 ], [ 9.263322206535642, 45.467522657779078 ], [ 9.263326116094612, 45.46753850535859 ], [ 9.263032619334664, 45.467993441994551 ], [ 9.264085683342044, 45.468413038774557 ], [ 9.264159016272389, 45.468440775578429 ], [ 9.264178098199618, 45.468449974321807 ], [ 9.264182879673545, 45.468452279451832 ], [ 9.26418452060285, 45.468453096725028 ], [ 9.264194643995255, 45.468458099828588 ], [ 9.264207617913216, 45.468464592722022 ], [ 9.264213898774436, 45.468467772416446 ], [ 9.26421776506989, 45.468469758853161 ], [ 9.264226129255633, 45.468474035286036 ], [ 9.264238021638869, 45.468480239735186 ], [ 9.26424593783538, 45.468484403009242 ], [ 9.264252352508699, 45.468487811811805 ], [ 9.264267485089871, 45.468495963727094 ], [ 9.264273911914083, 45.468499425853359 ], [ 9.264285718542871, 45.468505941653362 ], [ 9.264298429371104, 45.468512799360695 ], [ 9.264300163464961, 45.468513756781995 ], [ 9.264301699261216, 45.468514624156448 ], [ 9.264303834356623, 45.468515895398902 ], [ 9.264314638807807, 45.468523447850757 ], [ 9.264327792222458, 45.468532965632463 ], [ 9.26436387861958, 45.468558364422883 ], [ 9.264408243109877, 45.468588074310141 ], [ 9.264452770619656, 45.468616085873222 ], [ 9.264476450839929, 45.468630154381664 ], [ 9.264492161618403, 45.468639260287873 ], [ 9.264501272928666, 45.468644423715965 ], [ 9.264503966510095, 45.468645947683832 ], [ 9.264515510494965, 45.468652489291813 ], [ 9.264550775424036, 45.468671657743897 ], [ 9.264573748117689, 45.468683332319507 ], [ 9.264595997932863, 45.468694574148039 ], [ 9.264618815656556, 45.468705432950259 ], [ 9.26463718138924, 45.468714193835751 ], [ 9.264672086053704, 45.46872990700053 ], [ 9.264688797207397, 45.468737018610049 ], [ 9.264702317107192, 45.468742772246074 ], [ 9.264718208803934, 45.468749297447388 ], [ 9.264734481304586, 45.468755961622819 ], [ 9.264761324908367, 45.46876655537644 ], [ 9.264791066842905, 45.468777481749484 ], [ 9.264815094970436, 45.4687861209106 ], [ 9.264833634608349, 45.468792492688316 ], [ 9.264859937429433, 45.468801390697095 ], [ 9.264890018396937, 45.46881095561146 ], [ 9.264909047174063, 45.468816809910372 ], [ 9.264931888306926, 45.468823502361339 ], [ 9.264951278637746, 45.468829067727953 ], [ 9.264968960883969, 45.468833996857555 ], [ 9.264985136533774, 45.46883830566729 ], [ 9.264997662539628, 45.468841548993758 ], [ 9.265010291813239, 45.468844811072472 ], [ 9.265039451602416, 45.46885206253981 ], [ 9.265065863505837, 45.468858189178839 ], [ 9.265093681746768, 45.468864269993354 ], [ 9.265116230048651, 45.468869060615049 ], [ 9.265138833872562, 45.468873548072096 ], [ 9.26516541952325, 45.468878677832848 ], [ 9.265187504392399, 45.468882528828772 ], [ 9.26519160677816, 45.468883257575037 ], [ 9.265212963772477, 45.46888690025591 ], [ 9.265233500723946, 45.468890161616201 ], [ 9.265252999790352, 45.468893194080273 ], [ 9.265271133659763, 45.468895808373709 ], [ 9.265275268999369, 45.468896396257406 ], [ 9.265300997934514, 45.468900028630927 ], [ 9.265332249970454, 45.468903992541115 ], [ 9.265357123800534, 45.468906789225109 ], [ 9.265368997646766, 45.46890812998425 ], [ 9.265379560433855, 45.468909293980744 ], [ 9.265405693311388, 45.468911858859308 ], [ 9.265444271945121, 45.468915332168464 ], [ 9.265478426647068, 45.468917704234542 ], [ 9.265575066398023, 45.468923193392229 ], [ 9.265596418834402, 45.468923811389651 ], [ 9.265597431467956, 45.468934453008949 ], [ 9.265598724282134, 45.468946414202343 ], [ 9.265599910380935, 45.468957197003405 ], [ 9.26560330500458, 45.468982541586904 ], [ 9.265607596711483, 45.46900939887518 ], [ 9.26561039578103, 45.469024341697327 ], [ 9.265613534557691, 45.469040948066421 ], [ 9.265615643290424, 45.469050917398704 ], [ 9.265618853096154, 45.469065822183474 ], [ 9.265621672263805, 45.469077697897355 ], [ 9.265626549294153, 45.469097875850338 ], [ 9.265633595307776, 45.469124161936875 ], [ 9.26563817950025, 45.469139733008696 ], [ 9.265640644458792, 45.469147754300259 ], [ 9.265645884905357, 45.469164449725298 ], [ 9.26565306604707, 45.46918549839279 ], [ 9.26565789737406, 45.469199509188414 ], [ 9.265666046850987, 45.469221205294929 ], [ 9.265670866604314, 45.469234016273546 ], [ 9.265677985959648, 45.469251520181096 ], [ 9.265685539195267, 45.469269957679167 ], [ 9.265693711841699, 45.469288429037306 ], [ 9.265698615919652, 45.469299392309154 ], [ 9.265704302124369, 45.469311669716653 ], [ 9.265708602339123, 45.469320845495297 ], [ 9.265715124799348, 45.46933446317351 ], [ 9.265728157572303, 45.469360333421228 ], [ 9.265738292835227, 45.469379373027699 ], [ 9.265742456687709, 45.469387051354538 ], [ 9.265751371714186, 45.469403309722253 ], [ 9.265796111872829, 45.469480815136791 ], [ 9.265826704185161, 45.469531144294706 ], [ 9.265824385794966, 45.469537072050002 ], [ 9.265817031788741, 45.469556212778812 ], [ 9.265815538637622, 45.469560167057068 ], [ 9.265813388011054, 45.469565899376725 ], [ 9.265796727306848, 45.469578068661377 ], [ 9.265778942848437, 45.46959119552109 ], [ 9.265755534673131, 45.469608833599018 ], [ 9.26573926825418, 45.469621470115236 ], [ 9.265712280639383, 45.469642663383169 ], [ 9.26569543604878, 45.469656683162818 ], [ 9.265687975725605, 45.46966289789443 ], [ 9.265668487382028, 45.469679290825376 ], [ 9.265651967490877, 45.469693693779639 ], [ 9.265633469427392, 45.469710201600229 ], [ 9.265613976720307, 45.469728008298439 ], [ 9.26560117001166, 45.469740024062737 ], [ 9.265582957751896, 45.469757460937537 ], [ 9.265573278348619, 45.469766973151906 ], [ 9.265562358653076, 45.469777729559674 ], [ 9.265543107133299, 45.469797327150964 ], [ 9.26552440046088, 45.469816923495557 ], [ 9.265514161530133, 45.469828007790959 ], [ 9.265505233633313, 45.469837694683456 ], [ 9.265496267598371, 45.46984769420439 ], [ 9.26549142185694, 45.469853080280799 ], [ 9.265476386109457, 45.46987019700299 ], [ 9.265459849834373, 45.469889639841128 ], [ 9.265446291936602, 45.469906073526531 ], [ 9.26543387617356, 45.469921407851508 ], [ 9.265422663465419, 45.469935719813421 ], [ 9.265413662516726, 45.469947460491177 ], [ 9.265399228067924, 45.469966472112937 ], [ 9.265391504900776, 45.4699770216193 ], [ 9.265388072817581, 45.469981710210639 ], [ 9.265381111455358, 45.46999121640701 ], [ 9.265368453742513, 45.470009006255779 ], [ 9.265361519525069, 45.470019027704438 ], [ 9.265356396620989, 45.470026439806219 ], [ 9.265345622854223, 45.470042178713861 ], [ 9.265333864956947, 45.470060036264229 ], [ 9.265323215742949, 45.470076386795498 ], [ 9.265306147090989, 45.470103481251535 ], [ 9.265293020874756, 45.470125366593521 ], [ 9.265287489700473, 45.470134607138597 ], [ 9.265281643933733, 45.470144534778441 ], [ 9.265273332136459, 45.470159026213892 ], [ 9.265263869316799, 45.47017583207586 ], [ 9.264703807786521, 45.471218189630669 ], [ 9.267247334169303, 45.471506246876459 ], [ 9.267928646478214, 45.470835023339809 ], [ 9.268115669217753, 45.470732969294311 ], [ 9.268293116358528, 45.470475942254794 ], [ 9.268450851768581, 45.470320537232944 ], [ 9.268396623697793, 45.47027043752766 ], [ 9.268402720427945, 45.470256193329185 ], [ 9.268433896343193, 45.470167065031092 ], [ 9.268825995568529, 45.469042439133382 ], [ 9.268446140199366, 45.468987155322218 ], [ 9.268445279472816, 45.468985622167779 ], [ 9.268437370150641, 45.468971518597286 ], [ 9.268437077276245, 45.468971017579356 ], [ 9.268423062137447, 45.46894713996965 ], [ 9.268417742216567, 45.46893828104966 ], [ 9.268408611836632, 45.468923485146767 ], [ 9.268399984308918, 45.468909734933135 ], [ 9.268362627022183, 45.46885089143268 ], [ 9.268310568162381, 45.468770082469781 ], [ 9.268310458072859, 45.468769901759472 ], [ 9.268318511551678, 45.468726948193428 ], [ 9.26831979080492, 45.468720115686857 ], [ 9.26832065191828, 45.468715538430473 ], [ 9.26832276715607, 45.468704084187017 ], [ 9.268325032550315, 45.468690602711661 ], [ 9.268327422559189, 45.468676182010554 ], [ 9.268328396067561, 45.46866947680234 ], [ 9.268330009895809, 45.468658537738534 ], [ 9.26833176225125, 45.468646697364754 ], [ 9.26833414287691, 45.468628078638019 ], [ 9.268335711630245, 45.468615231874942 ], [ 9.268336984929199, 45.468603541975263 ], [ 9.268337721053738, 45.468596689701272 ], [ 9.268339440750941, 45.468578914527598 ], [ 9.26834149073407, 45.468554298226231 ], [ 9.26834254269049, 45.468533811691032 ], [ 9.268343478732316, 45.46851152536626 ], [ 9.2683440509051, 45.46848697243442 ], [ 9.268344188104511, 45.468469203952274 ], [ 9.268344154678406, 45.468460720434855 ], [ 9.268344105304546, 45.468449841611104 ], [ 9.268343786411441, 45.468431314512721 ], [ 9.268343234714072, 45.468412726456158 ], [ 9.26834294184639, 45.468406260535609 ], [ 9.268342427999341, 45.468393743311722 ], [ 9.268341628458675, 45.468380757824562 ], [ 9.268341104058798, 45.468372054592059 ], [ 9.268336388883473, 45.468303458821396 ], [ 9.268335779870693, 45.468294970420573 ], [ 9.268334958514663, 45.46828363085384 ], [ 9.268334639744751, 45.468279229944066 ], [ 9.268334471141062, 45.46827588708706 ], [ 9.268333076295461, 45.468254358801182 ], [ 9.268332049259895, 45.468238536518086 ], [ 9.268331646380778, 45.468231948123041 ], [ 9.268331303394383, 45.468225308042456 ], [ 9.268330670196942, 45.468214938171677 ], [ 9.268330391299038, 45.468209403732786 ], [ 9.268329694013747, 45.468197928220647 ], [ 9.268329306288797, 45.468190153121299 ], [ 9.268328815956782, 45.468180398149116 ], [ 9.268328152325461, 45.468169578101353 ], [ 9.268327942471375, 45.468165369865389 ], [ 9.268327153498323, 45.46814499550559 ], [ 9.268325982708886, 45.468130033701556 ], [ 9.268325680723017, 45.468124385538502 ], [ 9.268325671126382, 45.468124055867442 ], [ 9.268325637983468, 45.468117070516811 ], [ 9.268326040799144, 45.468115123910181 ], [ 9.268337766527813, 45.468076246279516 ], [ 9.268385846097978, 45.467925209139892 ], [ 9.268432106885172, 45.467766520283355 ], [ 9.268485095653446, 45.467554354417892 ], [ 9.268498678782052, 45.467555042618237 ], [ 9.268751225273775, 45.467560368662539 ], [ 9.270582089181223, 45.467608432040954 ], [ 9.270317584551062, 45.466423396555051 ], [ 9.270303598963489, 45.466347454927273 ], [ 9.270273010289447, 45.466027226328464 ], [ 9.270067506749728, 45.465522990440938 ], [ 9.270097372180604, 45.465297591373556 ], [ 9.270161672627021, 45.464932454920579 ], [ 9.270238245855408, 45.46448310390835 ], [ 9.270323629396731, 45.464002360970682 ], [ 9.270379052141976, 45.463630456736709 ], [ 9.270571474211625, 45.462415705479046 ], [ 9.269461614711988, 45.462337052528824 ], [ 9.269644442576643, 45.461046372203938 ], [ 9.267686453267082, 45.461058278552834 ], [ 9.267381124658201, 45.461060765139152 ], [ 9.267368805038341, 45.461060770288782 ], [ 9.267361511568517, 45.461060924839607 ], [ 9.266237538983518, 45.461070071209292 ], [ 9.266200158303702, 45.461070086716731 ], [ 9.266130209225336, 45.461070944030666 ], [ 9.264972915151478, 45.461080348908446 ], [ 9.264972952821029, 45.461082922170228 ], [ 9.264047751943448, 45.461089439830452 ], [ 9.263058526530223, 45.461098226778923 ], [ 9.262691795701416, 45.461102212997311 ], [ 9.26216295966036, 45.461106395145876 ], [ 9.261585872633159, 45.461112315850627 ], [ 9.260463741206909, 45.461122250347707 ], [ 9.259704863169535, 45.461128661385501 ], [ 9.259414691461458, 45.461131381224526 ], [ 9.259414494643677, 45.461124258795003 ], [ 9.257879409326389, 45.461145143548457 ], [ 9.257862541887505, 45.461144975739884 ], [ 9.25772306509929, 45.461143778879332 ], [ 9.257539502174208, 45.461146679229472 ], [ 9.25748537659023, 45.461147593002309 ], [ 9.257327445761634, 45.461150533736486 ], [ 9.257279627825998, 45.461159060860304 ], [ 9.256982240820673, 45.461164012492851 ], [ 9.256978619669381, 45.461225591790274 ], [ 9.256937220691389, 45.461238813865798 ], [ 9.256874760176448, 45.461260967006496 ], [ 9.256834564898051, 45.461277464066903 ], [ 9.25677383519956, 45.461303291999826 ], [ 9.256709145554902, 45.461336391576523 ], [ 9.256690573943715, 45.461346643054235 ], [ 9.25665929071592, 45.461363866544325 ], [ 9.256613908430207, 45.461391991258921 ], [ 9.256582401999884, 45.46141291046554 ], [ 9.256538824476177, 45.461443772992155 ], [ 9.256502725819294, 45.461472535856899 ], [ 9.256480703871295, 45.461490361343479 ], [ 9.256324506541516, 45.461632618636038 ], [ 9.256110946000486, 45.462082234830973 ], [ 9.256018818629981, 45.46233210729816 ], [ 9.255985607584417, 45.462541464964843 ], [ 9.255131297349596, 45.462534136042116 ], [ 9.254426610377601, 45.462540612314676 ], [ 9.253754851246599, 45.462549082968096 ], [ 9.254333044349501, 45.46102186779094 ], [ 9.254333108351656, 45.461021724160716 ], [ 9.25434375212687, 45.460996469453967 ], [ 9.25437950482716, 45.46091468162912 ], [ 9.254387096299073, 45.4608986155908 ], [ 9.254400146488187, 45.460886086629486 ], [ 9.254469928398299, 45.460823146303916 ], [ 9.254649433491863, 45.460669254068087 ], [ 9.254742699929345, 45.460589770851811 ], [ 9.25485068076892, 45.460494307778504 ], [ 9.254956880989502, 45.460392484885581 ], [ 9.255013597401668, 45.460333939862672 ], [ 9.255087926870461, 45.46025005475294 ], [ 9.25514033426826, 45.46018521955385 ], [ 9.255192116775929, 45.460114172109336 ], [ 9.255216258063252, 45.460078044994965 ], [ 9.255255490024666, 45.460014620885502 ], [ 9.255286442131773, 45.459957346769023 ], [ 9.255318922424019, 45.459888855941358 ], [ 9.255342155372078, 45.459830802884788 ], [ 9.255367681168854, 45.459755467188756 ], [ 9.255377329413138, 45.459722450822504 ], [ 9.255408208360409, 45.459597891497481 ], [ 9.255414907173911, 45.459566287660408 ], [ 9.255431891341408, 45.45946992984004 ], [ 9.255442608244065, 45.459371311677209 ], [ 9.255446073396845, 45.459280923521064 ], [ 9.255446215351492, 45.459217458819602 ], [ 9.255447566635556, 45.459138874804772 ], [ 9.255478374389066, 45.4591082468134 ], [ 9.255498845840199, 45.459088772047778 ], [ 9.255502901593498, 45.459084972011723 ], [ 9.255513575422107, 45.459075027410833 ], [ 9.2555466219797, 45.459044190214279 ], [ 9.255672615313824, 45.458926170935392 ], [ 9.255998009983104, 45.458623239297836 ], [ 9.25610980664438, 45.45852219417791 ], [ 9.256213114709197, 45.458433789708032 ], [ 9.256314786539377, 45.458354287899176 ] ], [ [ 9.265812279315133, 45.468923902445958 ], [ 9.265812740730667, 45.468923890548851 ], [ 9.265807204290384, 45.468924076595023 ], [ 9.265812279315133, 45.468923902445958 ] ], [ [ 9.263327895081041, 45.467545716559968 ], [ 9.263328279925915, 45.467547276545702 ], [ 9.263327702725341, 45.467544953129924 ], [ 9.263327895081041, 45.467545716559968 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.22293085260414, 45.463606376188203 ], [ 9.222926801654827, 45.464047596877435 ], [ 9.222926808265925, 45.46404822601523 ], [ 9.222926229673133, 45.464112021202048 ], [ 9.222910716588759, 45.464973865864991 ], [ 9.224212246637689, 45.464979828904788 ], [ 9.224244692872929, 45.464979980548115 ], [ 9.225815677489669, 45.464987265373843 ], [ 9.225817217634512, 45.464790712155654 ], [ 9.226955809522648, 45.464793348630842 ], [ 9.226963526186362, 45.463491808671577 ], [ 9.226965692142036, 45.463126263800731 ], [ 9.226965799571241, 45.463107922196961 ], [ 9.22696592880069, 45.463086899291859 ], [ 9.226965835833557, 45.463063730350925 ], [ 9.226963263527537, 45.462656045557289 ], [ 9.22703595705177, 45.462091436367217 ], [ 9.225561457022028, 45.462134175454473 ], [ 9.225315599311687, 45.462133000961217 ], [ 9.225294574641522, 45.462132900219792 ], [ 9.225264289633834, 45.462132755447385 ], [ 9.22522381224656, 45.462132663463422 ], [ 9.224983433320798, 45.462132118050988 ], [ 9.224966780719196, 45.462132082242235 ], [ 9.224649223937728, 45.462131361978741 ], [ 9.224304146696742, 45.462208132211721 ], [ 9.224012797572586, 45.462210368386806 ], [ 9.22388274125526, 45.462322336606945 ], [ 9.223070254229867, 45.46235775095488 ], [ 9.223070829423694, 45.462522718815769 ], [ 9.222931082060851, 45.462522320028981 ], [ 9.222932987252854, 45.46337383576244 ], [ 9.22293085260414, 45.463606376188203 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.218419707268126, 45.458924354506202 ], [ 9.218423975353856, 45.458919756580151 ], [ 9.218347809083102, 45.45883362336162 ], [ 9.218330822994981, 45.458742175228842 ], [ 9.218258108654027, 45.458726310413738 ], [ 9.218181448303815, 45.458632360218182 ], [ 9.217874986802757, 45.458256378205164 ], [ 9.217810060708427, 45.458175206997851 ], [ 9.217719480385016, 45.458090726048923 ], [ 9.216997949219797, 45.457178974683416 ], [ 9.216398406112859, 45.457644794829811 ], [ 9.215832933462924, 45.457795318415535 ], [ 9.215707752481482, 45.457828503445661 ], [ 9.215682680397226, 45.457835313785417 ], [ 9.215224137610372, 45.457957370211282 ], [ 9.215176334212371, 45.457969551043114 ], [ 9.214603289924742, 45.458121875550404 ], [ 9.214577820560621, 45.458128753202843 ], [ 9.214232971493441, 45.458219940440124 ], [ 9.213508693135743, 45.458411592913457 ], [ 9.21294650436362, 45.459072021349058 ], [ 9.213054607354854, 45.459582923538136 ], [ 9.213056906207077, 45.459592644709161 ], [ 9.213199006966674, 45.46028088597123 ], [ 9.213206640750077, 45.460316728444042 ], [ 9.213301745324458, 45.460776682186534 ], [ 9.213306522083661, 45.46079884985236 ], [ 9.213413773051204, 45.461320557634259 ], [ 9.213421032361405, 45.461355827222341 ], [ 9.213478243736356, 45.461635256642062 ], [ 9.213482001760966, 45.461652807956717 ], [ 9.213552322837185, 45.461996169269838 ], [ 9.213560601577807, 45.462036385270508 ], [ 9.213653418491504, 45.462474339651166 ], [ 9.213660332190988, 45.462478584294416 ], [ 9.213751211800705, 45.462927528221989 ], [ 9.214274183228495, 45.462855451910599 ], [ 9.214435028307369, 45.462954199732728 ], [ 9.214435219739677, 45.463002690886611 ], [ 9.214513497903372, 45.463002374462512 ], [ 9.214520279216501, 45.463006537698227 ], [ 9.215044517675844, 45.463000632911267 ], [ 9.215089465256433, 45.463000389737495 ], [ 9.215595363705997, 45.462998079071554 ], [ 9.215615140207182, 45.462997915599779 ], [ 9.216218391781444, 45.462995469455755 ], [ 9.216269913457175, 45.462995190612588 ], [ 9.216465941543378, 45.462994300914104 ], [ 9.216813867989563, 45.462992991610882 ], [ 9.216929943647129, 45.462992366509248 ], [ 9.217095971257166, 45.462994105421693 ], [ 9.217612032801576, 45.462925382841306 ], [ 9.218205267783935, 45.462515718758347 ], [ 9.218402295892476, 45.462515342872777 ], [ 9.218405685642635, 45.462377316251469 ], [ 9.218407575417288, 45.462376011225381 ], [ 9.218421756432612, 45.461722924157336 ], [ 9.218422023047339, 45.461712067660955 ], [ 9.21842295528308, 45.461712065903221 ], [ 9.218439224311144, 45.460941730814099 ], [ 9.218439845208913, 45.460915737235766 ], [ 9.218439966469491, 45.460906589312607 ], [ 9.218448220688472, 45.460515745967797 ], [ 9.218448097405334, 45.460514863337963 ], [ 9.218450103131655, 45.460427077015382 ], [ 9.218450612045663, 45.460390702180476 ], [ 9.218457922704424, 45.460059550007642 ], [ 9.218465088412572, 45.45976070474849 ], [ 9.218471189415448, 45.45969431888021 ], [ 9.218466768381862, 45.459690641346391 ], [ 9.218467955379738, 45.459641137302818 ], [ 9.218471654750378, 45.459480028548825 ], [ 9.218797149563839, 45.459387715034929 ], [ 9.218482875323136, 45.459002159965657 ], [ 9.218482884246708, 45.459001779402421 ], [ 9.218419707268126, 45.458924354506202 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.203426543672514, 45.460325320172657 ], [ 9.203405014273518, 45.460497920442521 ], [ 9.203691656369466, 45.460650421347751 ], [ 9.203865674532324, 45.460903494443286 ], [ 9.204139813623035, 45.46091687189567 ], [ 9.204142684509046, 45.460918520433594 ], [ 9.204203909029536, 45.460951256614763 ], [ 9.204253401682942, 45.460975841151772 ], [ 9.204315012640436, 45.461003201780549 ], [ 9.204375700962286, 45.461027232735525 ], [ 9.204484536271965, 45.461065757853447 ], [ 9.204542024693131, 45.461084380733475 ], [ 9.20459941777546, 45.461100298512179 ], [ 9.204667898402088, 45.461117876695567 ], [ 9.204747137067139, 45.461133655129466 ], [ 9.204786453834986, 45.46114031056289 ], [ 9.204852622488552, 45.461150746812926 ], [ 9.204965916276382, 45.461164367729786 ], [ 9.20509896924095, 45.461171929945493 ], [ 9.205161597234436, 45.461172648998229 ], [ 9.205238600733443, 45.461172231338679 ], [ 9.205323845433497, 45.461168366920461 ], [ 9.205385697598205, 45.461163901935414 ], [ 9.2054601109161, 45.461155874254665 ], [ 9.205529317325851, 45.461145737206081 ], [ 9.205600873163695, 45.461133011508466 ], [ 9.205694883885656, 45.461112142929629 ], [ 9.205732118490294, 45.461104023601372 ], [ 9.205812144741923, 45.461082583777824 ], [ 9.205868301000679, 45.461065146036269 ], [ 9.205915764877602, 45.461049384724163 ], [ 9.205942113830499, 45.461039522952845 ], [ 9.206236357496515, 45.461072722475869 ], [ 9.206471829625542, 45.460832050678341 ], [ 9.206910184648155, 45.460691780807018 ], [ 9.206892342359129, 45.46046057057054 ], [ 9.206896674021541, 45.460456525215385 ], [ 9.206948695641124, 45.460399792013845 ], [ 9.206986447389857, 45.460353163287358 ], [ 9.207041809189908, 45.460276945097917 ], [ 9.207069115003524, 45.460235027201897 ], [ 9.207097878745904, 45.460184421629926 ], [ 9.207121380759325, 45.460135105184634 ], [ 9.207141948442404, 45.46008468393655 ], [ 9.207163032589678, 45.460018818114918 ], [ 9.207178084049982, 45.459956628019413 ], [ 9.207189991147869, 45.459886639254549 ], [ 9.20719497585203, 45.459816547401083 ], [ 9.207194741688934, 45.459752614075342 ], [ 9.207189421749101, 45.459691649821778 ], [ 9.207180564525927, 45.459633865768367 ], [ 9.207166675630187, 45.459573376183023 ], [ 9.20714823026792, 45.459513288410214 ], [ 9.207124533667216, 45.459452211654963 ], [ 9.207097485948836, 45.459395204159335 ], [ 9.207067237071797, 45.459340279729588 ], [ 9.207031770079039, 45.459284707138067 ], [ 9.206992703057779, 45.459231239489561 ], [ 9.206948171046392, 45.459177131115688 ], [ 9.2069407546617, 45.459169222465327 ], [ 9.206938475097887, 45.458974756272966 ], [ 9.206706466906837, 45.458866512092875 ], [ 9.20659237783593, 45.458691072788803 ], [ 9.206327898405219, 45.458659839141241 ], [ 9.206322106492495, 45.45865602455703 ], [ 9.206261662332956, 45.458619900301073 ], [ 9.206222546553338, 45.458598507762169 ], [ 9.206168628020963, 45.458570578664357 ], [ 9.206095684537871, 45.458536876918991 ], [ 9.206023317320039, 45.458507541055781 ], [ 9.205951873768097, 45.458481650857856 ], [ 9.20587601093483, 45.458457719535488 ], [ 9.205798865501061, 45.458436635269166 ], [ 9.205721428992263, 45.458418778431415 ], [ 9.205644468446595, 45.458403908073386 ], [ 9.205561039201189, 45.45839096425523 ], [ 9.205489446799092, 45.458382904003706 ], [ 9.205443759358582, 45.458378741009973 ], [ 9.205358519996464, 45.45837289703308 ], [ 9.205270126734003, 45.458370082215531 ], [ 9.205210231780312, 45.458369705347039 ], [ 9.205124142751897, 45.458371574791428 ], [ 9.205039870168918, 45.458376528166774 ], [ 9.204966858674583, 45.458382765889752 ], [ 9.204884697897667, 45.458393176540859 ], [ 9.204801322881202, 45.458406690897348 ], [ 9.204760587984024, 45.45841513148946 ], [ 9.204370754051066, 45.458262413682966 ], [ 9.203929029787727, 45.45871171063348 ], [ 9.203517680602172, 45.458847007756802 ], [ 9.203525605360104, 45.459067802389214 ], [ 9.20350148281079, 45.459091126745065 ], [ 9.203453712483913, 45.459142638059419 ], [ 9.203410327124518, 45.459195574016881 ], [ 9.203372208358648, 45.459248018377615 ], [ 9.203335879350981, 45.459304808071479 ], [ 9.203304708747375, 45.459362275151165 ], [ 9.203278313526768, 45.459418867593882 ], [ 9.20325531496, 45.459478946699136 ], [ 9.20323689586631, 45.459540054265418 ], [ 9.203224081987988, 45.459597730308289 ], [ 9.203215568155535, 45.459652186917594 ], [ 9.203210930173134, 45.459703083940198 ], [ 9.203210051303316, 45.459758453301369 ], [ 9.203213383460957, 45.45981150749197 ], [ 9.203222151729856, 45.459878039559754 ], [ 9.203227531588796, 45.459916156122041 ], [ 9.203240758542709, 45.459973231040372 ], [ 9.203257094708835, 45.460026666376876 ], [ 9.203269796959848, 45.460059344151873 ], [ 9.203287310948992, 45.460102623207021 ], [ 9.203315244727234, 45.460159276247694 ], [ 9.203339314831197, 45.460201912059638 ], [ 9.203369942010958, 45.460250078209377 ], [ 9.203406344971185, 45.460300554132836 ], [ 9.203426543672514, 45.460325320172657 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.193755949903988, 45.459403687409953 ], [ 9.194134546795354, 45.459804930870007 ], [ 9.194105304619033, 45.45981958196591 ], [ 9.194804179966258, 45.460516834981952 ], [ 9.194831436283089, 45.460547429950182 ], [ 9.194846247750881, 45.46055899357102 ], [ 9.194904087803435, 45.460620613424354 ], [ 9.19515240311121, 45.460883586982035 ], [ 9.195775429510084, 45.461596315011896 ], [ 9.195864728665445, 45.461852796830904 ], [ 9.197015104320283, 45.461408662829967 ], [ 9.198003388783397, 45.461496089278612 ], [ 9.198018081716411, 45.461399175774631 ], [ 9.199595693619552, 45.461512113732276 ], [ 9.199618163925274, 45.461369706489883 ], [ 9.199685641826658, 45.461374810534643 ], [ 9.199748043641701, 45.460969111794654 ], [ 9.199837314299499, 45.460438333673366 ], [ 9.200046168052888, 45.460241346388202 ], [ 9.199889552393856, 45.460117781075922 ], [ 9.199967237521291, 45.45964263393531 ], [ 9.199758776569695, 45.459360124294996 ], [ 9.199718170387992, 45.459315250980552 ], [ 9.199687871228141, 45.459283438337714 ], [ 9.199639656019309, 45.459238430251133 ], [ 9.199585469510053, 45.459193889543201 ], [ 9.199537908947915, 45.459159252831135 ], [ 9.199488771899381, 45.459126220680318 ], [ 9.199436781792453, 45.4590952096992 ], [ 9.199382411351813, 45.459065299219141 ], [ 9.199316587446365, 45.459033521396826 ], [ 9.199257681294151, 45.45900825471287 ], [ 9.199190614791986, 45.458982524025899 ], [ 9.19913524810632, 45.458964377234096 ], [ 9.19908119489781, 45.458947846990554 ], [ 9.198884990920092, 45.45889709537888 ], [ 9.197782459462752, 45.458827670926908 ], [ 9.197759786961035, 45.458826225960308 ], [ 9.197561375838708, 45.458812428155085 ], [ 9.19755217446275, 45.458812994162855 ], [ 9.19651654969732, 45.458746984809501 ], [ 9.194412151818726, 45.458613012877933 ], [ 9.194400807270661, 45.458690139071045 ], [ 9.194393693542422, 45.458689817388496 ], [ 9.194330081422386, 45.459140858334877 ], [ 9.193755949903988, 45.459403687409953 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.238131977827427, 45.452912906300675 ], [ 9.236564509103816, 45.452887814947147 ], [ 9.236494254854268, 45.455583259560122 ], [ 9.236547588937135, 45.455583976352322 ], [ 9.236543895176386, 45.455776465502503 ], [ 9.236564075463392, 45.455867008742047 ], [ 9.236576715550081, 45.455914053869499 ], [ 9.236596846234097, 45.455968765374593 ], [ 9.236617568264958, 45.456015395982696 ], [ 9.236639998028247, 45.456058153023029 ], [ 9.23666266127689, 45.456096302829415 ], [ 9.236675905805132, 45.456116343607277 ], [ 9.236698747608742, 45.456150128152537 ], [ 9.236736737834159, 45.4561979223203 ], [ 9.236768579470228, 45.456233966527364 ], [ 9.236811244345413, 45.456278073288466 ], [ 9.236860266603795, 45.456321967202477 ], [ 9.236877044562759, 45.456335661302987 ], [ 9.236905126590534, 45.456358409531994 ], [ 9.236972433442476, 45.456407854442432 ], [ 9.237033140436514, 45.456444533285058 ], [ 9.237073511105082, 45.456467863418595 ], [ 9.23713007104215, 45.45649710378418 ], [ 9.237192238518851, 45.456526085715034 ], [ 9.237240928389877, 45.456545720464604 ], [ 9.237314345622934, 45.456574455258213 ], [ 9.237397902841719, 45.456598754040954 ], [ 9.237411511480374, 45.456602494330717 ], [ 9.237411715815119, 45.456651188340615 ], [ 9.237733686293229, 45.456667369484684 ], [ 9.237804746712747, 45.456817899840473 ], [ 9.23783499114089, 45.456871315021125 ], [ 9.237867124529824, 45.456920554821188 ], [ 9.237900909855673, 45.456965996592452 ], [ 9.237939711992988, 45.457012844301126 ], [ 9.237986869655124, 45.45706299392419 ], [ 9.23803380658226, 45.457107015293666 ], [ 9.238083040547933, 45.457148784199916 ], [ 9.238131572642608, 45.457185453507861 ], [ 9.238185692902201, 45.457223316591246 ], [ 9.238244468869514, 45.457259294758714 ], [ 9.238298165587288, 45.457289607413308 ], [ 9.238351182614492, 45.457316386733304 ], [ 9.238420135893396, 45.457348707661104 ], [ 9.238725721049116, 45.457476648108639 ], [ 9.239848905409767, 45.45754242114851 ], [ 9.239853724692999, 45.457937837997463 ], [ 9.241390710969762, 45.457740348440637 ], [ 9.241558366148123, 45.457716532539393 ], [ 9.241694853517167, 45.457694653722776 ], [ 9.241771296713047, 45.457678859446304 ], [ 9.241897601891312, 45.457647447892406 ], [ 9.242001352166824, 45.457608223543943 ], [ 9.242076946276171, 45.457577610506128 ], [ 9.242147442931046, 45.45754194653292 ], [ 9.242233421208908, 45.457495110770481 ], [ 9.242351750482252, 45.457411331304577 ], [ 9.242405686646649, 45.457361676294809 ], [ 9.242657337781328, 45.457343142051364 ], [ 9.242708124620977, 45.456529084100438 ], [ 9.242806945602565, 45.455697053183094 ], [ 9.24270489303637, 45.455693127192617 ], [ 9.24268951866444, 45.454033508778714 ], [ 9.240052011046155, 45.454062730287276 ], [ 9.240055491340108, 45.452916896386014 ], [ 9.238244862304043, 45.452914042079982 ], [ 9.238131977827427, 45.452912906300675 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.099410810230495, 45.45434331381864 ], [ 9.099817128180232, 45.454128034044466 ], [ 9.097882763261401, 45.45271724970079 ], [ 9.096638586813226, 45.453253198393071 ], [ 9.096591836035694, 45.453228945334772 ], [ 9.09656269273567, 45.453285890199616 ], [ 9.096562619314554, 45.453285921826158 ], [ 9.095758547732892, 45.453577029224576 ], [ 9.095708188460328, 45.453595233736273 ], [ 9.095644062834914, 45.453612207262744 ], [ 9.095069017329672, 45.453776535089396 ], [ 9.094649109382598, 45.453892244165409 ], [ 9.094371558076475, 45.453953776088667 ], [ 9.093109597424609, 45.45423345648237 ], [ 9.092427562637225, 45.454388348788314 ], [ 9.09137565410157, 45.455694255385382 ], [ 9.092873419260011, 45.45613747180554 ], [ 9.092861091938381, 45.456159645593402 ], [ 9.092281856258779, 45.457126385699432 ], [ 9.093162252052755, 45.457392162802776 ], [ 9.093169760626679, 45.457403289516165 ], [ 9.093231600814232, 45.45747924991494 ], [ 9.09330827124929, 45.457553254486037 ], [ 9.093376602626229, 45.457608618830314 ], [ 9.093580468126753, 45.457751758306728 ], [ 9.09496170829761, 45.458173118939882 ], [ 9.095038051072247, 45.458193673710475 ], [ 9.095246702657589, 45.458256436799836 ], [ 9.096464599851902, 45.458588726126514 ], [ 9.09714761120725, 45.457524893035441 ], [ 9.098581112324378, 45.457893221377518 ], [ 9.098804732479019, 45.457441749908149 ], [ 9.099281857392048, 45.457676549734302 ], [ 9.100784946286488, 45.456103835381242 ], [ 9.100783431952552, 45.456103084464488 ], [ 9.101708484307306, 45.455137814306106 ], [ 9.101564865998212, 45.454959120332987 ], [ 9.100393741417721, 45.455000906343138 ], [ 9.100338295096353, 45.454963812736473 ], [ 9.100338298365687, 45.45496381028628 ], [ 9.099422181496221, 45.454350921465434 ], [ 9.099410810230495, 45.45434331381864 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.196871159378462, 45.452800974226264 ], [ 9.196893615585074, 45.452687317788424 ], [ 9.196890867557643, 45.452686175796607 ], [ 9.197019332432212, 45.452018505670658 ], [ 9.196295652200812, 45.45202197581343 ], [ 9.19629561460038, 45.452011136838166 ], [ 9.195613071462452, 45.452015274002889 ], [ 9.195600387022163, 45.45195891293902 ], [ 9.194639226986578, 45.452019512469768 ], [ 9.193624195667327, 45.451814218356368 ], [ 9.19367237006905, 45.452080425512932 ], [ 9.192539385552562, 45.452151916794378 ], [ 9.192730793067556, 45.453669878494544 ], [ 9.192733538579526, 45.453691717314562 ], [ 9.192904042930737, 45.455044756209951 ], [ 9.194130208904069, 45.454910646219382 ], [ 9.194939845195032, 45.455091843275923 ], [ 9.19476832489004, 45.455347706624373 ], [ 9.196515471199573, 45.455546283393652 ], [ 9.196994052394945, 45.455984655892273 ], [ 9.197035131761478, 45.455974467821846 ], [ 9.197165138797541, 45.456083369903183 ], [ 9.197175177530788, 45.456077897583945 ], [ 9.197195649190194, 45.456096329599369 ], [ 9.197211179920206, 45.456086712094198 ], [ 9.197249583470805, 45.456117248437629 ], [ 9.197707610286253, 45.455807684180947 ], [ 9.1997323582086, 45.455305489848726 ], [ 9.199366795394559, 45.455003912497951 ], [ 9.199391459279532, 45.454984105447117 ], [ 9.199410973929076, 45.454969393502843 ], [ 9.199423013350168, 45.45496135108656 ], [ 9.199477553499394, 45.454920505456755 ], [ 9.199524371872144, 45.454881178938358 ], [ 9.200173197527807, 45.454280942721468 ], [ 9.199921265613028, 45.454075281718573 ], [ 9.2001354720734, 45.453878640758298 ], [ 9.199512555054897, 45.453684250078915 ], [ 9.199586268343765, 45.453589023889506 ], [ 9.199100144779525, 45.453404347804678 ], [ 9.19909020794759, 45.453396193564117 ], [ 9.199007303352435, 45.453214331532031 ], [ 9.197152898101074, 45.452516299907181 ], [ 9.196920746352651, 45.452819979371419 ], [ 9.196871159378462, 45.452800974226264 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.156445569797143, 45.453843185692079 ], [ 9.156350270033609, 45.453988719689839 ], [ 9.157424319953227, 45.454336353176295 ], [ 9.157274286042835, 45.454568215200808 ], [ 9.157259209261321, 45.454591807158238 ], [ 9.15639497288244, 45.455897191400886 ], [ 9.156405857735511, 45.455900569426376 ], [ 9.156405493583563, 45.455901118291571 ], [ 9.156505871231426, 45.455931607732644 ], [ 9.15798560283681, 45.456390815142491 ], [ 9.158018510402066, 45.456398671227831 ], [ 9.15877865475645, 45.456639008779192 ], [ 9.158818651871623, 45.456651690144156 ], [ 9.159216518321081, 45.456778706981126 ], [ 9.16042376048194, 45.457055356208535 ], [ 9.160804301635375, 45.456445972100695 ], [ 9.160829635148584, 45.456444333142429 ], [ 9.160819768237104, 45.45642120416877 ], [ 9.161669350698148, 45.455060661812375 ], [ 9.161301445795901, 45.454945697782804 ], [ 9.161393114767664, 45.454800108861498 ], [ 9.159977113142602, 45.454358200945293 ], [ 9.159943175140436, 45.45434853236916 ], [ 9.16040398303949, 45.453643624642915 ], [ 9.160406677559534, 45.453639502720165 ], [ 9.160423868238613, 45.453613205385992 ], [ 9.161232651704712, 45.45237594319628 ], [ 9.158489266437245, 45.451485352446412 ], [ 9.15835421970062, 45.451691422759495 ], [ 9.158034296014643, 45.451587379257603 ], [ 9.157698076789144, 45.452091907509171 ], [ 9.157552755045245, 45.452044770341715 ], [ 9.156987812991344, 45.4529075525111 ], [ 9.156985130496524, 45.452911649157521 ], [ 9.156971488009985, 45.452932483649441 ], [ 9.156387483724455, 45.453824344471911 ], [ 9.156445569797143, 45.453843185692079 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.184094709964034, 45.454286150636385 ], [ 9.184580933075363, 45.453790598516711 ], [ 9.183619303121281, 45.453672548352941 ], [ 9.183659922525738, 45.453535194279624 ], [ 9.18334395884785, 45.453491734293479 ], [ 9.1830053164121, 45.453133301480641 ], [ 9.182279182013305, 45.453344764163006 ], [ 9.182202665597208, 45.453333848843805 ], [ 9.182198774516152, 45.453334209262593 ], [ 9.181076144373343, 45.453179774652554 ], [ 9.181042325289809, 45.45329573099086 ], [ 9.180902014033101, 45.453276838747179 ], [ 9.180736228386657, 45.453972943406683 ], [ 9.180718437249171, 45.453971944472713 ], [ 9.180237534485608, 45.454008030659523 ], [ 9.179781269997104, 45.453949924196387 ], [ 9.179779182295823, 45.453974113482865 ], [ 9.179546601900247, 45.45390516743435 ], [ 9.179582894632947, 45.454152836522567 ], [ 9.179516646985745, 45.45434492269839 ], [ 9.179294020741743, 45.454364075959042 ], [ 9.179353586141513, 45.454817714658958 ], [ 9.179347755101274, 45.454834621503736 ], [ 9.179347750753086, 45.454834634111108 ], [ 9.179389140277234, 45.45509088916274 ], [ 9.179391213008159, 45.455104269855887 ], [ 9.179431486488179, 45.455410977601467 ], [ 9.179431818388855, 45.455515633331252 ], [ 9.179449020262014, 45.455544507197537 ], [ 9.179529379792333, 45.456156482198175 ], [ 9.179843953731876, 45.456135044999456 ], [ 9.179804026963243, 45.456318899215745 ], [ 9.179901652783535, 45.456328012744528 ], [ 9.179912640391166, 45.456402988121354 ], [ 9.180163486677131, 45.456387171322461 ], [ 9.180166674872021, 45.45646831713303 ], [ 9.17773619093016, 45.456838076526928 ], [ 9.177736191325938, 45.456838077815533 ], [ 9.177586461027401, 45.456860855044887 ], [ 9.177586461390581, 45.456860856227358 ], [ 9.17752411439551, 45.456870340495698 ], [ 9.17762061805224, 45.457184548869087 ], [ 9.177158178107639, 45.457257724674683 ], [ 9.17800371537127, 45.458431848254371 ], [ 9.178073739519435, 45.458659828766514 ], [ 9.178073741575249, 45.458659828453783 ], [ 9.178119066792991, 45.458807394625296 ], [ 9.178181414692004, 45.458797910204076 ], [ 9.178181414971275, 45.458797911113315 ], [ 9.178258857182934, 45.458786130479211 ], [ 9.178606257322183, 45.459268511730428 ], [ 9.180168819569076, 45.45862092111674 ], [ 9.180260724134147, 45.458481585642254 ], [ 9.180647663468655, 45.45842271553218 ], [ 9.180701036397844, 45.458634968133872 ], [ 9.180703545976076, 45.458634651620059 ], [ 9.180723364987516, 45.458712586146355 ], [ 9.18074744021199, 45.458709574448299 ], [ 9.180844700097524, 45.45965678617835 ], [ 9.180852140640779, 45.459656405963216 ], [ 9.180865319886736, 45.459775863980397 ], [ 9.181784751217997, 45.459728876841943 ], [ 9.181952235918631, 45.459752172635049 ], [ 9.181962181281149, 45.459752594164826 ], [ 9.182089534981298, 45.459799825164737 ], [ 9.182233786679916, 45.459756458077074 ], [ 9.182500876138063, 45.459724505180425 ], [ 9.182630620154315, 45.459685642473268 ], [ 9.183435296502566, 45.459644507681112 ], [ 9.183411169293956, 45.459409641631794 ], [ 9.183425199725132, 45.459408874716274 ], [ 9.183423600348318, 45.45939338097989 ], [ 9.183496874602236, 45.459345895057488 ], [ 9.183609803822479, 45.459362522853638 ], [ 9.183849592762416, 45.459193000222868 ], [ 9.183949740539084, 45.459150493663103 ], [ 9.184067131900886, 45.459074415934516 ], [ 9.184198817865431, 45.458981317086533 ], [ 9.184272824218182, 45.458894061635135 ], [ 9.184273435415978, 45.458893354148948 ], [ 9.184329469979984, 45.458853738768497 ], [ 9.184355432882485, 45.458798438570106 ], [ 9.184369533121561, 45.458782116901489 ], [ 9.184424923301838, 45.458684012990147 ], [ 9.184628906712378, 45.458244454022413 ], [ 9.184554636169199, 45.457559952743516 ], [ 9.184380974906521, 45.457363284177184 ], [ 9.184353791489841, 45.457190492316663 ], [ 9.18436730352059, 45.457186603698673 ], [ 9.184322239105775, 45.456904042328524 ], [ 9.184370707752821, 45.456898946085879 ], [ 9.184206665339971, 45.456100958202356 ], [ 9.184198669746571, 45.456001956811484 ], [ 9.184153980254026, 45.455433477668059 ], [ 9.184483857018213, 45.454778678835787 ], [ 9.184116812653917, 45.454309531188585 ], [ 9.184094709964034, 45.454286150636385 ] ], [ [ 9.18035492705477, 45.456696282383774 ], [ 9.180355501261385, 45.456696317726291 ], [ 9.180356251739543, 45.456700594756569 ], [ 9.18035492705477, 45.456696282383774 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.12237091391113, 45.442666365434725 ], [ 9.12236893788403, 45.442669000767424 ], [ 9.12236256304735, 45.442677629869699 ], [ 9.12235914703462, 45.442682323680245 ], [ 9.122353901738865, 45.442689640852073 ], [ 9.122343750827726, 45.442704019062006 ], [ 9.122340737451424, 45.442708353585409 ], [ 9.122334477860724, 45.442717498632248 ], [ 9.122330384554191, 45.442723573437831 ], [ 9.122324771774839, 45.442732036403527 ], [ 9.122318939062152, 45.442740973007581 ], [ 9.12231430702662, 45.442748185817393 ], [ 9.122308490922872, 45.442757391827776 ], [ 9.122301617213379, 45.442768453377013 ], [ 9.122300485966981, 45.442770304557278 ], [ 9.12229275447342, 45.442783172435909 ], [ 9.122288657698334, 45.442790108689877 ], [ 9.122284183894338, 45.442797815775386 ], [ 9.122277533799272, 45.442809474896407 ], [ 9.122276070288512, 45.442812086797453 ], [ 9.122268579048479, 45.442825699324487 ], [ 9.122266363021694, 45.442829800326749 ], [ 9.122261398418615, 45.442839159535261 ], [ 9.122226647786608, 45.442905912488115 ], [ 9.122220588709716, 45.442925968810457 ], [ 9.122184560909737, 45.442912724548378 ], [ 9.121056416095573, 45.444521307442649 ], [ 9.121010808721291, 45.444663375971672 ], [ 9.121010185110972, 45.444666477412618 ], [ 9.120989453635147, 45.444697901007352 ], [ 9.12096225636812, 45.444761170605929 ], [ 9.120953756089458, 45.444781601873288 ], [ 9.120946067583263, 45.444801739402031 ], [ 9.120941703361252, 45.44481359162701 ], [ 9.120938507117666, 45.444822602691936 ], [ 9.12093760408365, 45.444825173005441 ], [ 9.120935816264428, 45.444830412117163 ], [ 9.120930929148896, 45.444845418402132 ], [ 9.120929020084956, 45.444851550279935 ], [ 9.120925937589138, 45.444861927044485 ], [ 9.12092131511241, 45.444878270234511 ], [ 9.120919584639481, 45.444884711051465 ], [ 9.12091654594831, 45.444896648125969 ], [ 9.12091353045669, 45.444909186873772 ], [ 9.120911242115069, 45.444919291074669 ], [ 9.120908325995565, 45.444933014148624 ], [ 9.120907208683608, 45.444938641196131 ], [ 9.12090427189953, 45.444954544784686 ], [ 9.12090285674261, 45.444962830383531 ], [ 9.120902049495029, 45.444967973247593 ], [ 9.12087913380025, 45.444980846932332 ], [ 9.120752621124597, 45.445065993163354 ], [ 9.120612777431933, 45.44518275796402 ], [ 9.12050308188863, 45.44530000126062 ], [ 9.120439691209429, 45.445382302309156 ], [ 9.120381468398698, 45.445463520859953 ], [ 9.120331847548357, 45.445560214740006 ], [ 9.120286121984595, 45.445657259032778 ], [ 9.120256124981061, 45.445763356490254 ], [ 9.120237746881646, 45.445848288998157 ], [ 9.12023355278586, 45.445888066209385 ], [ 9.119120270934916, 45.447461815449699 ], [ 9.119268908394456, 45.447518100057401 ], [ 9.118925081656261, 45.447998592700174 ], [ 9.119567981147586, 45.448223873375682 ], [ 9.119528035052603, 45.448275535975682 ], [ 9.119516218861659, 45.44829145522197 ], [ 9.119505785996054, 45.448306111240242 ], [ 9.11949454510918, 45.448322594651259 ], [ 9.119486128641702, 45.448335492712616 ], [ 9.119473657901365, 45.44835549139485 ], [ 9.119466385336558, 45.448367713229423 ], [ 9.119456519401545, 45.448385115979534 ], [ 9.11944632133925, 45.448404030429586 ], [ 9.119439469005304, 45.448417419848077 ], [ 9.119429955748611, 45.448437046558865 ], [ 9.11942363962717, 45.448450838468034 ], [ 9.119417275513321, 45.448465587346028 ], [ 9.119408466495415, 45.448487321416835 ], [ 9.11940305554714, 45.448501584310556 ], [ 9.119397231760999, 45.448518051056503 ], [ 9.119391003154254, 45.448537030133672 ], [ 9.119386006713606, 45.448553525751073 ], [ 9.119381573760332, 45.448569483708944 ], [ 9.119377087264624, 45.448587227417164 ], [ 9.119372843845843, 45.448605833964145 ], [ 9.11936984060573, 45.448620598742103 ], [ 9.119366497662813, 45.448639287938661 ], [ 9.119363760676404, 45.44865700999533 ], [ 9.11885444000484, 45.44945631093676 ], [ 9.12136646134679, 45.450249394946162 ], [ 9.121415648376535, 45.450172208047348 ], [ 9.121588905980298, 45.450226905291792 ], [ 9.121457542545917, 45.450478048577118 ], [ 9.121457564532241, 45.450478054427336 ], [ 9.121262161052067, 45.450850328844517 ], [ 9.120989292958184, 45.451370179200005 ], [ 9.120755543793925, 45.451347021825583 ], [ 9.120624063544915, 45.451997734651052 ], [ 9.120268745438649, 45.45267968851077 ], [ 9.119984973441067, 45.453216693858998 ], [ 9.11998568257235, 45.453216877409176 ], [ 9.119896397573321, 45.45338602837252 ], [ 9.119896602918017, 45.45338608157703 ], [ 9.119796102726111, 45.453576475569569 ], [ 9.11979637415309, 45.453576545627371 ], [ 9.119707087914797, 45.453745694038389 ], [ 9.119708594807948, 45.453746083378448 ], [ 9.119661279912757, 45.453836067698006 ], [ 9.119697356900144, 45.453846048645985 ], [ 9.11964084232743, 45.45395749448388 ], [ 9.123282959266943, 45.454903523406543 ], [ 9.123347513098366, 45.455273787649887 ], [ 9.122963385900146, 45.45600915407627 ], [ 9.123535349817203, 45.45643203707035 ], [ 9.123458018764019, 45.456578237777507 ], [ 9.123450733665488, 45.456592114769073 ], [ 9.123284104798641, 45.456913245489304 ], [ 9.12331254215146, 45.457264679861943 ], [ 9.123099014596614, 45.457671853193638 ], [ 9.122656770616228, 45.458515010944154 ], [ 9.122656831750893, 45.458515026814972 ], [ 9.124271752607001, 45.458934253086234 ], [ 9.124314807040726, 45.458946590422777 ], [ 9.126000697471241, 45.459387608612666 ], [ 9.126427181882347, 45.458553036820987 ], [ 9.126922965655375, 45.45854578787997 ], [ 9.12700204147689, 45.458394581750255 ], [ 9.127476837784219, 45.458647645048259 ], [ 9.128375053448641, 45.457164377232587 ], [ 9.128392145494621, 45.457136185293429 ], [ 9.128611514436676, 45.456781856617809 ], [ 9.128821765767569, 45.456849074429364 ], [ 9.129182806367037, 45.455833297279099 ], [ 9.129196169021069, 45.45581131425832 ], [ 9.129202528563855, 45.455801664780928 ], [ 9.129202575286635, 45.455801583379618 ], [ 9.129202602435534, 45.455801542163691 ], [ 9.129215072971256, 45.455779811455173 ], [ 9.129227120808777, 45.455761154424593 ], [ 9.129244751067159, 45.455731080814161 ], [ 9.129287684139989, 45.455660095793732 ], [ 9.129293657480583, 45.455650317468404 ], [ 9.129313947011944, 45.455637537521483 ], [ 9.129379611389798, 45.455528093666338 ], [ 9.130033738563803, 45.454635700670792 ], [ 9.129934548745437, 45.454605315217457 ], [ 9.130114323486985, 45.454306456925558 ], [ 9.130244269255693, 45.45348002482455 ], [ 9.127448162656105, 45.452642020791394 ], [ 9.126927370977457, 45.453534639520633 ], [ 9.126859291329279, 45.453663192846825 ], [ 9.126850036536293, 45.453660357416403 ], [ 9.126576213275953, 45.454188087248184 ], [ 9.126287664861501, 45.454110962104629 ], [ 9.126171673556785, 45.45430227357862 ], [ 9.125738918463513, 45.454338913033148 ], [ 9.125705602603441, 45.454343641540618 ], [ 9.125661213394961, 45.454347824148861 ], [ 9.125622039638754, 45.454351350853258 ], [ 9.125312874728522, 45.454377555464902 ], [ 9.125057730100613, 45.454398893784678 ], [ 9.124392634118635, 45.454450959168014 ], [ 9.124393287619101, 45.454454155262965 ], [ 9.123555226458132, 45.454524742539313 ], [ 9.123599618706766, 45.454440502394554 ], [ 9.123600583305508, 45.454440754544251 ], [ 9.124026969813658, 45.453631616213208 ], [ 9.124449506452423, 45.452839834004173 ], [ 9.124449066154048, 45.452839719100204 ], [ 9.124549994485937, 45.452650588180305 ], [ 9.124549770433777, 45.452650529657184 ], [ 9.1245951802736, 45.452565435123034 ], [ 9.124593839485946, 45.452565085755715 ], [ 9.12464731358472, 45.452464559873128 ], [ 9.124611214692605, 45.452455015899332 ], [ 9.12581556008444, 45.450159439028575 ], [ 9.125814872500614, 45.450159258657457 ], [ 9.126055154915177, 45.449700863507019 ], [ 9.126057771632333, 45.449700531097037 ], [ 9.126297470071053, 45.44923878174572 ], [ 9.126298689853279, 45.449236486961809 ], [ 9.12641579483909, 45.449010992917152 ], [ 9.126422021817255, 45.448998513136075 ], [ 9.126422827745616, 45.448996802365514 ], [ 9.126431595660764, 45.448979436051467 ], [ 9.126435098946914, 45.448970753870945 ], [ 9.126447423181903, 45.448944592774438 ], [ 9.12646148089892, 45.448899732973253 ], [ 9.126472518861762, 45.448865297431865 ], [ 9.126473927126458, 45.44885827992907 ], [ 9.126478284476409, 45.448843595803822 ], [ 9.126483253588315, 45.448811659530584 ], [ 9.126487357239505, 45.448790225740616 ], [ 9.12648875133682, 45.448775149398479 ], [ 9.126493340047086, 45.448743997553265 ], [ 9.126493186017781, 45.44867508584111 ], [ 9.126493174079918, 45.448664231634559 ], [ 9.126490176411226, 45.448633314784985 ], [ 9.126487360910211, 45.448597693572758 ], [ 9.126478877232792, 45.448560233817702 ], [ 9.126471604877514, 45.448523548654649 ], [ 9.126467252426263, 45.448510770812781 ], [ 9.126463220223403, 45.44849391430192 ], [ 9.126451190628655, 45.448463616847526 ], [ 9.126450066722386, 45.44846031729864 ], [ 9.126441772233397, 45.448439897328676 ], [ 9.126441680535194, 45.448439669164756 ], [ 9.126424765809197, 45.448397094747428 ], [ 9.126401547248856, 45.448356424541757 ], [ 9.126395524753589, 45.448345454365274 ], [ 9.12639181449965, 45.448339376398145 ], [ 9.126368524939654, 45.448298581737077 ], [ 9.126335178790221, 45.448255708641618 ], [ 9.126334128628777, 45.448254343878304 ], [ 9.12630490300352, 45.448216225750038 ], [ 9.126302511601477, 45.448213708412069 ], [ 9.126302277840102, 45.448213407864657 ], [ 9.12626208935726, 45.448171124564013 ], [ 9.126256905985935, 45.44816564702532 ], [ 9.126256608985607, 45.448165358522914 ], [ 9.126254163155545, 45.448162785201227 ], [ 9.126240508804415, 45.44814971900243 ], [ 9.126214768383017, 45.44812471504693 ], [ 9.126193529834573, 45.448106832877833 ], [ 9.126171597408872, 45.448087599586827 ], [ 9.126142586819208, 45.448065680550023 ], [ 9.126126065837163, 45.448052929082252 ], [ 9.126082190967653, 45.448022143032873 ], [ 9.126082041345278, 45.448022047591678 ], [ 9.126068361008906, 45.448012446021472 ], [ 9.126044360983018, 45.447998012002785 ], [ 9.126035860160252, 45.447992589484492 ], [ 9.126017315147024, 45.447981746167798 ], [ 9.12601381104365, 45.44797963873809 ], [ 9.126011314717804, 45.447978237699935 ], [ 9.125991355457106, 45.447966567458572 ], [ 9.125977994198712, 45.447959536876866 ], [ 9.125950391191298, 45.447944044935824 ], [ 9.125888615189572, 45.447915151342997 ], [ 9.125887492813195, 45.447914659296885 ], [ 9.125881995081723, 45.447912085278659 ], [ 9.125857741889469, 45.447901616583167 ], [ 9.125843495471472, 45.447895370992299 ], [ 9.125840910355093, 45.447894351381315 ], [ 9.125779285268065, 45.447867751351147 ], [ 9.125740311844547, 45.44785604518718 ], [ 9.125719573335379, 45.447848345637858 ], [ 9.125644700760434, 45.447827949987989 ], [ 9.125563054467129, 45.447805963069172 ], [ 9.124341932501206, 45.447474158397512 ], [ 9.124333897362865, 45.447489965483612 ], [ 9.124332166652987, 45.447489617729069 ], [ 9.124290451920778, 45.447481032928565 ], [ 9.124272199671926, 45.447478198744513 ], [ 9.124219516670438, 45.447469778091772 ], [ 9.124212710039593, 45.447468961254152 ], [ 9.124175632152978, 45.447463203819972 ], [ 9.124117381723689, 45.447458712132232 ], [ 9.124076156118516, 45.447455364094971 ], [ 9.124071324638235, 45.447455160651103 ], [ 9.124070928489996, 45.447455130103855 ], [ 9.124067011825581, 45.447454979047102 ], [ 9.124006134547985, 45.447452415608147 ], [ 9.123999622048371, 45.447452386767672 ], [ 9.123959199856747, 45.4474508361292 ], [ 9.123893336169465, 45.447453479290779 ], [ 9.123861230876173, 45.447454569764432 ], [ 9.123855245321897, 45.447455007889047 ], [ 9.123851129678357, 45.447455173050386 ], [ 9.123828859554859, 45.447456939244077 ], [ 9.123789975738552, 45.447459785405592 ], [ 9.123782605805307, 45.447460607511232 ], [ 9.123742338051569, 45.447463801028668 ], [ 9.123690337360346, 45.44747199410061 ], [ 9.123674806380274, 45.447474343413255 ], [ 9.123887544095663, 45.447115225138234 ], [ 9.124070585961446, 45.446803107748423 ], [ 9.1244638068925, 45.44691188660321 ], [ 9.124556275623517, 45.446818390134581 ], [ 9.125484833344888, 45.44704044252309 ], [ 9.125257738100659, 45.446109118767012 ], [ 9.125515295886085, 45.445848688212955 ], [ 9.125275375679022, 45.44556138334049 ], [ 9.125291789676309, 45.44527874631089 ], [ 9.125294095708341, 45.445274472153969 ], [ 9.125361999866428, 45.445264624254129 ], [ 9.125430889591588, 45.44525196302871 ], [ 9.125498688334998, 45.44523680150288 ], [ 9.125564779055649, 45.445219300270608 ], [ 9.125630957252694, 45.445198941309208 ], [ 9.125694174249251, 45.445176659025783 ], [ 9.125755910269108, 45.44515198209794 ], [ 9.125815621678321, 45.445125120902411 ], [ 9.125874046048885, 45.44509570727395 ], [ 9.125929061586421, 45.445064832142442 ], [ 9.125983381819539, 45.44503093691079 ], [ 9.126033171613717, 45.444996439073478 ], [ 9.126081159226205, 45.444959526023354 ], [ 9.126126738778215, 45.444920563749911 ], [ 9.126169595801867, 45.444879763091414 ], [ 9.126249331162498, 45.444794924541299 ], [ 9.126633093960217, 45.444184001008466 ], [ 9.127798766013987, 45.444178099606916 ], [ 9.128090356691864, 45.44304208903359 ], [ 9.126030067738942, 45.442488507702976 ], [ 9.124900145635733, 45.442140707562722 ], [ 9.123781068282909, 45.441794507115944 ], [ 9.123725947902765, 45.441882801403374 ], [ 9.123332700044255, 45.44175413756637 ], [ 9.122758845617804, 45.442306946107422 ], [ 9.12274828273323, 45.442313363288982 ], [ 9.122726983455005, 45.442326820145311 ], [ 9.122704836896279, 45.442341369048059 ], [ 9.122682264271791, 45.442356786259289 ], [ 9.122661044870815, 45.44237185360636 ], [ 9.122641204114419, 45.442386500566336 ], [ 9.122621193457917, 45.442401859726893 ], [ 9.122600029177548, 45.442418751823666 ], [ 9.122581305297858, 45.442434294760595 ], [ 9.122561174813937, 45.442451679125504 ], [ 9.12254322806192, 45.442467807692445 ], [ 9.122524668798356, 45.442485171409096 ], [ 9.122507206033712, 45.442502187663457 ], [ 9.12249048190694, 45.442519169795524 ], [ 9.122472987182677, 45.442537693005086 ], [ 9.12245722108328, 45.442555110773093 ], [ 9.122441386427264, 45.442573378037721 ], [ 9.122426242077092, 45.442591637663 ], [ 9.122411272279116, 45.442610520141173 ], [ 9.122397576761101, 45.442628612668642 ], [ 9.122382715038809, 45.442649199954964 ], [ 9.12237091391113, 45.442666365434725 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.168299467135739, 45.456166780031239 ], [ 9.168182538786366, 45.456128793380763 ], [ 9.168334271347156, 45.455638082658943 ], [ 9.167145767242598, 45.455791968705057 ], [ 9.167114968369964, 45.455781962611006 ], [ 9.166988627350715, 45.455702284420106 ], [ 9.166916694318207, 45.45569198516052 ], [ 9.166566272649289, 45.455446383405302 ], [ 9.166492741542488, 45.455206150076009 ], [ 9.165475686764131, 45.455132322497313 ], [ 9.165091841478091, 45.455743779992581 ], [ 9.165074996193523, 45.455738699842399 ], [ 9.164923909442832, 45.455986338889737 ], [ 9.164918521401649, 45.455988172223698 ], [ 9.164893751074541, 45.455980722710059 ], [ 9.164881626008285, 45.456000726233889 ], [ 9.163366404800245, 45.456516279612053 ], [ 9.163369949160161, 45.456804988448496 ], [ 9.164092939170205, 45.45704016577853 ], [ 9.163144379904374, 45.45726887036556 ], [ 9.163136792758108, 45.457906163288101 ], [ 9.163656747869169, 45.458038117505801 ], [ 9.163551902795277, 45.458204304530902 ], [ 9.163060084564853, 45.458352825263354 ], [ 9.163264657101893, 45.458690044212481 ], [ 9.163265390383517, 45.458692894375901 ], [ 9.163227555574974, 45.458754438136268 ], [ 9.163229498116058, 45.458758796918993 ], [ 9.162756044220014, 45.459536256526576 ], [ 9.163497798042224, 45.459569761669961 ], [ 9.163380295858321, 45.46010322038952 ], [ 9.16346172211772, 45.460147432759968 ], [ 9.164264232564856, 45.459901780759871 ], [ 9.164002749074797, 45.460306795728059 ], [ 9.165276918788626, 45.460955662350841 ], [ 9.165587331931006, 45.46075160695414 ], [ 9.1655920005943, 45.460752656361549 ], [ 9.165767789595558, 45.460637065574367 ], [ 9.165770010558797, 45.460638313884097 ], [ 9.165847921310673, 45.460586979552467 ], [ 9.165851145414859, 45.460592617996895 ], [ 9.166301086690664, 45.460297451954069 ], [ 9.166331135091973, 45.460309419317568 ], [ 9.166354427642352, 45.460262459426119 ], [ 9.166631976142483, 45.460080382013544 ], [ 9.166843255065386, 45.460131871024558 ], [ 9.166978080202632, 45.459860614654296 ], [ 9.16724050457184, 45.459933025560098 ], [ 9.167336126845271, 45.459655750536328 ], [ 9.167670711707883, 45.459608204024256 ], [ 9.167683142652214, 45.459581474301771 ], [ 9.16763461299154, 45.459543976377212 ], [ 9.167713308001707, 45.459568045045522 ], [ 9.167713318777166, 45.459568027493894 ], [ 9.167790412596979, 45.459591606369798 ], [ 9.167829618679104, 45.459528611610153 ], [ 9.167869995217975, 45.459540770388841 ], [ 9.168061490400852, 45.459226390130191 ], [ 9.169184708512844, 45.459054613748421 ], [ 9.168806691931975, 45.458657423545411 ], [ 9.169119155498295, 45.458453438583604 ], [ 9.169107747561526, 45.45844455817226 ], [ 9.1693921868718, 45.458255780718979 ], [ 9.169384425379338, 45.458234851253458 ], [ 9.169662898840963, 45.458048172477092 ], [ 9.169660379257532, 45.45804459882838 ], [ 9.169666787463047, 45.458040271097623 ], [ 9.169495277294077, 45.457807586753212 ], [ 9.16969031008091, 45.457755785067441 ], [ 9.169617490022949, 45.457613241767405 ], [ 9.169625097849124, 45.45760824821496 ], [ 9.169608606441619, 45.457595852343722 ], [ 9.169595993442764, 45.457571162643994 ], [ 9.169616056423706, 45.457556359105645 ], [ 9.170242187954528, 45.45740423061509 ], [ 9.170247523596286, 45.457382518902612 ], [ 9.170374714808085, 45.45735090451543 ], [ 9.170374866475179, 45.457348835844279 ], [ 9.170375061685185, 45.457348787503634 ], [ 9.170392147860426, 45.457113124520745 ], [ 9.170408479926678, 45.456890359755796 ], [ 9.170342301131161, 45.45686856856198 ], [ 9.169427319622786, 45.456564674682447 ], [ 9.169435807544613, 45.45654662719609 ], [ 9.168724987781282, 45.456315346660794 ], [ 9.168547239506822, 45.45616641234114 ], [ 9.168299467135739, 45.456166780031239 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.113020882901179, 45.457014184992133 ], [ 9.112541473002125, 45.458269883848615 ], [ 9.112707840936277, 45.458300124327522 ], [ 9.112516947171017, 45.458878830077346 ], [ 9.115187367378216, 45.459381800258598 ], [ 9.11505591877383, 45.459797735355238 ], [ 9.115335187733724, 45.459836699460567 ], [ 9.115320943844418, 45.459917494898875 ], [ 9.116015180817, 45.460069148259308 ], [ 9.11596063243239, 45.460311474524374 ], [ 9.116094642027832, 45.460339904351969 ], [ 9.116043174988475, 45.46045754494375 ], [ 9.116450578126384, 45.460545812455884 ], [ 9.116261187017439, 45.460930674240309 ], [ 9.118771371206519, 45.461580711716884 ], [ 9.118888305863443, 45.461404815580089 ], [ 9.119163290676012, 45.461463051397821 ], [ 9.119297240604988, 45.461156375073109 ], [ 9.119960507455843, 45.461181117141166 ], [ 9.121335278118208, 45.461232388005222 ], [ 9.121366801150426, 45.460813734611982 ], [ 9.121719469508099, 45.460818974944885 ], [ 9.122075007307485, 45.460140244586128 ], [ 9.122085951502743, 45.460119351571734 ], [ 9.122233114072534, 45.459838411036003 ], [ 9.12200674016006, 45.458957775120723 ], [ 9.120976639765495, 45.458844524124544 ], [ 9.121280083572371, 45.457893136911245 ], [ 9.120370867752204, 45.457725647586038 ], [ 9.120421417718196, 45.457575846362793 ], [ 9.117968913262928, 45.457122982723625 ], [ 9.117904812356464, 45.457111229224253 ], [ 9.115547416798853, 45.456659798128776 ], [ 9.115111672069554, 45.456598728217749 ], [ 9.11483116406283, 45.456528960748678 ], [ 9.114312118993205, 45.455857034697367 ], [ 9.113681162350375, 45.455902586864504 ], [ 9.113480781903753, 45.456370141952348 ], [ 9.112994911695719, 45.456302037313442 ], [ 9.113113454427475, 45.456961915260628 ], [ 9.113020882901179, 45.457014184992133 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.191183067602083, 45.486483234272868 ], [ 9.19108546416569, 45.486760921803594 ], [ 9.192627864039448, 45.486680285205296 ], [ 9.193404211320935, 45.486786521467046 ], [ 9.193408357577242, 45.486788999587041 ], [ 9.193410338347491, 45.486787359873873 ], [ 9.193923919143971, 45.486857635713882 ], [ 9.194098047082621, 45.48621805578825 ], [ 9.194216030945073, 45.486120383950741 ], [ 9.194351235014866, 45.486063556942483 ], [ 9.194386722295167, 45.486048641399449 ], [ 9.196397158371729, 45.485187667860316 ], [ 9.196350355431081, 45.484887802500154 ], [ 9.192404175360451, 45.483953655714757 ], [ 9.192054370447609, 45.484277573576385 ], [ 9.191789799078878, 45.484239117057093 ], [ 9.191687061803506, 45.484588848624291 ], [ 9.191653116119253, 45.484649127475286 ], [ 9.190749087290968, 45.485486217914925 ], [ 9.191190214848266, 45.485589043263751 ], [ 9.19075702222132, 45.486425129754778 ], [ 9.191183067602083, 45.486483234272868 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.197192906052999, 45.501789432274926 ], [ 9.197367936256507, 45.501458149301705 ], [ 9.197109362464845, 45.501385377267546 ], [ 9.197109205566456, 45.501384671629069 ], [ 9.197102131800756, 45.50135768899267 ], [ 9.19709212711826, 45.501325245764718 ], [ 9.197078769692668, 45.501288061250662 ], [ 9.197057109533375, 45.501237737715414 ], [ 9.197036142512584, 45.501198710996334 ], [ 9.197014646061167, 45.501161186596143 ], [ 9.196994378193825, 45.501131287363734 ], [ 9.196972771934014, 45.501101085017417 ], [ 9.196956693265426, 45.501080476285935 ], [ 9.196926476398268, 45.501043501269486 ], [ 9.19689974407113, 45.501015452544905 ], [ 9.196864011838542, 45.500979346638566 ], [ 9.196834350965336, 45.500953363886602 ], [ 9.196809653481015, 45.500931759614595 ], [ 9.196759410304658, 45.500892694801415 ], [ 9.196710328381895, 45.500858348115081 ], [ 9.196684457966461, 45.500842100841062 ], [ 9.196655590204166, 45.500823940992959 ], [ 9.196624470367993, 45.500806493043605 ], [ 9.196623829121117, 45.500806134100273 ], [ 9.19660817996083, 45.500797327478651 ], [ 9.196549915780786, 45.500766754451178 ], [ 9.19650712411922, 45.500747745196612 ], [ 9.196485690718582, 45.500738244862525 ], [ 9.196427287447849, 45.500714220811595 ], [ 9.196387074881036, 45.500700187353324 ], [ 9.196384846859322, 45.500699367925925 ], [ 9.196350723755122, 45.500687735047208 ], [ 9.196310099671374, 45.500675121803795 ], [ 9.196261157511326, 45.500660879910363 ], [ 9.196211291586453, 45.500648533219632 ], [ 9.196200029651365, 45.50064591231115 ], [ 9.196198492426305, 45.500645554905688 ], [ 9.196197723813071, 45.500645376202783 ], [ 9.196176605496051, 45.500640338365663 ], [ 9.196150102672613, 45.50063499262999 ], [ 9.196027880784508, 45.500610442682124 ], [ 9.195996711600024, 45.500602674769588 ], [ 9.195936231565598, 45.500589701827977 ], [ 9.195890809614319, 45.500581799111757 ], [ 9.195877926816211, 45.500579760009046 ], [ 9.195828041819301, 45.50057174732612 ], [ 9.195753067095644, 45.500563767450799 ], [ 9.195725257007846, 45.500561666428347 ], [ 9.195724104717076, 45.500561578391292 ], [ 9.19570300729735, 45.500559953511718 ], [ 9.195631408036009, 45.500556203763189 ], [ 9.195579410169804, 45.500556140968506 ], [ 9.195578258099024, 45.500556142941001 ], [ 9.195516364824783, 45.500556228284509 ], [ 9.195440862402279, 45.500398236313885 ], [ 9.19493085734716, 45.500676037750104 ], [ 9.194906725617276, 45.500685347585296 ], [ 9.19485570574574, 45.500707160452393 ], [ 9.194816589204816, 45.500725307899621 ], [ 9.194799295226062, 45.500733864429627 ], [ 9.194765683906676, 45.500750509234535 ], [ 9.194724545818216, 45.500773649252963 ], [ 9.194368911304831, 45.500974255422001 ], [ 9.193826602280421, 45.500887207193699 ], [ 9.193762817611765, 45.501039701838749 ], [ 9.193762455727294, 45.501039629001347 ], [ 9.193491260422084, 45.501688923737674 ], [ 9.193069127711222, 45.50269810121948 ], [ 9.19306968890683, 45.50269821767305 ], [ 9.19303131085362, 45.502790097571889 ], [ 9.193027490611641, 45.50280566274985 ], [ 9.192981541376541, 45.502906540914019 ], [ 9.192961932340403, 45.503047858255144 ], [ 9.192962171351976, 45.503117822547097 ], [ 9.192967576652812, 45.503190347992671 ], [ 9.192972237582378, 45.503210786758487 ], [ 9.19248486699904, 45.503543117531386 ], [ 9.193363728329558, 45.503757752613055 ], [ 9.193383184704684, 45.503771368283076 ], [ 9.193452886423938, 45.503813639989417 ], [ 9.193527494198262, 45.503852790003755 ], [ 9.193571753723889, 45.503872821850578 ], [ 9.193612477461095, 45.503890623620485 ], [ 9.193690442478525, 45.50392090839059 ], [ 9.193744977796118, 45.503937910137608 ], [ 9.193812834030545, 45.503958971198408 ], [ 9.194279264753511, 45.504061910301218 ], [ 9.194337141553651, 45.504074338213563 ], [ 9.195299901133449, 45.504286063176757 ], [ 9.195503189208607, 45.50433270556141 ], [ 9.19587177181792, 45.504329573960831 ], [ 9.196008440661771, 45.50431060931313 ], [ 9.196121243742121, 45.50429337140136 ], [ 9.197064908258309, 45.504390017720375 ], [ 9.197010664749293, 45.50405744290449 ], [ 9.197081940353018, 45.504013790229301 ], [ 9.197146445881167, 45.503968208080977 ], [ 9.197175401854022, 45.50394482248376 ], [ 9.197211162584425, 45.503915339015798 ], [ 9.197269654504826, 45.503860217000828 ], [ 9.197312277802615, 45.503811998815308 ], [ 9.197358386618935, 45.50375547877853 ], [ 9.197385734096308, 45.503711812344086 ], [ 9.197414075058724, 45.503666553647065 ], [ 9.197439217606869, 45.503611082068737 ], [ 9.197459079286352, 45.503564108073817 ], [ 9.197484625661671, 45.503477726940652 ], [ 9.197497866838555, 45.503382246318068 ], [ 9.197497686673277, 45.503335613888687 ], [ 9.197497422091045, 45.503286754587386 ], [ 9.197487659642752, 45.503223043534618 ], [ 9.197476004433595, 45.503166167368327 ], [ 9.197325911764191, 45.502434720533181 ], [ 9.197504538321764, 45.501863376271956 ], [ 9.197193316601812, 45.501791416504595 ], [ 9.197192906052999, 45.501789432274926 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.234623570327134, 45.501633167855424 ], [ 9.234662048247289, 45.501344165009854 ], [ 9.234632212018814, 45.501342887226869 ], [ 9.234642060638, 45.501246353993707 ], [ 9.234693813342226, 45.500710611003434 ], [ 9.234123314994811, 45.500434098442909 ], [ 9.234104049192698, 45.500423079324442 ], [ 9.234073615732653, 45.500406060118323 ], [ 9.234040394511773, 45.500389032445788 ], [ 9.234024562915071, 45.500381094627578 ], [ 9.233985931499381, 45.500362533909026 ], [ 9.233956919257977, 45.500349868162921 ], [ 9.233920637549469, 45.500334023230828 ], [ 9.233875803805894, 45.500316944930951 ], [ 9.23386677379453, 45.500313608114773 ], [ 9.23385197226157, 45.500308122173962 ], [ 9.233819766816904, 45.50029688060755 ], [ 9.233804105340205, 45.500291746274264 ], [ 9.233781177357015, 45.50028421728755 ], [ 9.233750946336947, 45.500275179317711 ], [ 9.233724071834146, 45.500267461670184 ], [ 9.233704797723108, 45.500262235991201 ], [ 9.233663095481285, 45.500251440404639 ], [ 9.23363293814185, 45.500244638049622 ], [ 9.23362858216213, 45.500243656833163 ], [ 9.233608184519392, 45.500239059740011 ], [ 9.233589183346279, 45.500235167575696 ], [ 9.233587005544049, 45.500234721972134 ], [ 9.233567993364561, 45.500230837120363 ], [ 9.233553510565901, 45.500227959210669 ], [ 9.233530573351521, 45.500223581736279 ], [ 9.233511933071201, 45.500220251613058 ], [ 9.233493767758961, 45.500217097452364 ], [ 9.232387468787868, 45.500034755019925 ], [ 9.232188036821555, 45.500001872366248 ], [ 9.230958229744951, 45.499798226281307 ], [ 9.229695865489685, 45.499614988014258 ], [ 9.229518032660836, 45.500137992180989 ], [ 9.229439432296379, 45.500126505686488 ], [ 9.229213596191748, 45.500797123040769 ], [ 9.228517316950883, 45.500681879838851 ], [ 9.227837974447015, 45.502511970321656 ], [ 9.228176579509352, 45.502574049768121 ], [ 9.228163214879286, 45.50266727319535 ], [ 9.227867206142982, 45.503392415380908 ], [ 9.227867479611257, 45.503460202716475 ], [ 9.227580392802555, 45.504208757101345 ], [ 9.228791373988178, 45.50443755589027 ], [ 9.228845096995066, 45.504451055438153 ], [ 9.228948433138799, 45.504475056877915 ], [ 9.228948454177461, 45.504482441791701 ], [ 9.229133055865251, 45.504517938117118 ], [ 9.229213525298269, 45.504536628167031 ], [ 9.229315279008768, 45.504553863456152 ], [ 9.229378886183831, 45.504565207319658 ], [ 9.22992968927678, 45.504671115653537 ], [ 9.229928224216037, 45.504676132455359 ], [ 9.230053030770263, 45.504693339252945 ], [ 9.230053843208211, 45.504693479051532 ], [ 9.230085855853185, 45.504698923206647 ], [ 9.230124490067706, 45.504707317880928 ], [ 9.230188705552955, 45.504717118971506 ], [ 9.230176068978963, 45.504772723589753 ], [ 9.230867202390597, 45.504833069671534 ], [ 9.231093892342162, 45.504981613240432 ], [ 9.23126140870249, 45.504867487731872 ], [ 9.231410965250859, 45.504880545111796 ], [ 9.231585407821857, 45.504904592633444 ], [ 9.231590521217777, 45.504903362218563 ], [ 9.231612103290944, 45.504919350232441 ], [ 9.231641793113726, 45.504901136803952 ], [ 9.231756336402178, 45.504915891263472 ], [ 9.231917123919949, 45.504933464352597 ], [ 9.232135213250263, 45.504955563948322 ], [ 9.232449815953084, 45.504975899159369 ], [ 9.232740683977989, 45.505012910679532 ], [ 9.232974757607908, 45.50503767986109 ], [ 9.233065283484665, 45.505048377248912 ], [ 9.233193683492768, 45.505065169719117 ], [ 9.23336575576737, 45.505091931860676 ], [ 9.233512609522919, 45.50511814260728 ], [ 9.233760455448124, 45.50517236377236 ], [ 9.235248121735333, 45.505460986777408 ], [ 9.235467678587929, 45.505502825070302 ], [ 9.235616217662809, 45.505526055159216 ], [ 9.23579917654147, 45.505551348030224 ], [ 9.235942586786209, 45.505567885829308 ], [ 9.236066229321368, 45.505581883710491 ], [ 9.236235639228859, 45.50559631485185 ], [ 9.236255275030839, 45.505597237971593 ], [ 9.236267970596286, 45.505599533829731 ], [ 9.236632818892256, 45.505655823005007 ], [ 9.23697708116166, 45.505723777276408 ], [ 9.236976271960415, 45.50571095507383 ], [ 9.237907867917782, 45.505860699362003 ], [ 9.237940122600399, 45.505761557555402 ], [ 9.23804511782326, 45.505771688427608 ], [ 9.238508102435548, 45.503690001507053 ], [ 9.237269176504176, 45.503634408920348 ], [ 9.237181833611455, 45.503566769020843 ], [ 9.237060043744407, 45.503475106277314 ], [ 9.236905951980367, 45.503359145518139 ], [ 9.236870844573485, 45.503332689541281 ], [ 9.236823967393084, 45.503297504615176 ], [ 9.236788222884716, 45.502731058533662 ], [ 9.236324822214154, 45.502921999856355 ], [ 9.236061830529232, 45.502724158841566 ], [ 9.236001737678665, 45.502678925465112 ], [ 9.235557629986131, 45.502344847769734 ], [ 9.235514349204266, 45.5023135059404 ], [ 9.234623570327134, 45.501633167855424 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.179777591147758, 45.497816034046934 ], [ 9.1807614556053, 45.497878490065155 ], [ 9.181509333457932, 45.496006148989522 ], [ 9.180119534429595, 45.495735501003992 ], [ 9.179842132412769, 45.495681479324489 ], [ 9.178200031540756, 45.495361732584861 ], [ 9.178098703395348, 45.496530419111117 ], [ 9.178096721259061, 45.496549988578579 ], [ 9.178095238248023, 45.496567881931682 ], [ 9.178091237017261, 45.496613720914901 ], [ 9.178089001497789, 45.49664130755778 ], [ 9.178082944142664, 45.49671131716314 ], [ 9.178082079592041, 45.496722560198599 ], [ 9.178073218742313, 45.49682628963766 ], [ 9.17787309891415, 45.496814355379747 ], [ 9.176784406466441, 45.496743605099212 ], [ 9.176783707306011, 45.49674938266287 ], [ 9.176377414174897, 45.496725148118998 ], [ 9.176342102166226, 45.497075995528114 ], [ 9.175315718591877, 45.497014066884475 ], [ 9.175315718591872, 45.497014066884468 ], [ 9.175229306937394, 45.496953035723635 ], [ 9.17505111125619, 45.496998099821568 ], [ 9.174822261483653, 45.496984289957027 ], [ 9.174708454830398, 45.497929571579419 ], [ 9.174707048382999, 45.497930335528523 ], [ 9.174670383515011, 45.498229067923752 ], [ 9.174626803370312, 45.498480379285866 ], [ 9.174591392919677, 45.498479304611877 ], [ 9.17452396845373, 45.499441584388528 ], [ 9.174484980564504, 45.499742427451551 ], [ 9.174502700550809, 45.499745112507 ], [ 9.174434425958893, 45.500719482046577 ], [ 9.175788970993473, 45.50080857843848 ], [ 9.177802433189575, 45.50094079061715 ], [ 9.177808818603133, 45.500880193684644 ], [ 9.179322991796653, 45.500970846154082 ], [ 9.179323862806951, 45.500963072951969 ], [ 9.180261065054406, 45.501016124633658 ], [ 9.180420080026495, 45.500829652607024 ], [ 9.179524976000366, 45.499846352040528 ], [ 9.179599615594793, 45.499231733974412 ], [ 9.179655084687775, 45.498793064417917 ], [ 9.179652926462909, 45.498792738673231 ], [ 9.1796656328527, 45.498688105245499 ], [ 9.179669955187071, 45.498685633542095 ], [ 9.179735904671615, 45.498146329494723 ], [ 9.179777591147758, 45.497816034046934 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.207500081078086, 45.495892267631518 ], [ 9.206960211124366, 45.495886541846403 ], [ 9.207008979668972, 45.497045027425379 ], [ 9.207212046665317, 45.49739144423723 ], [ 9.207535464971476, 45.497733990980635 ], [ 9.207659426283442, 45.497842029159145 ], [ 9.207804229977263, 45.497962721100443 ], [ 9.20786799395516, 45.498002825527017 ], [ 9.207839239590765, 45.49807245339445 ], [ 9.208122298171299, 45.498159333005709 ], [ 9.208380748412679, 45.498260060299167 ], [ 9.208392511330887, 45.498265294386691 ], [ 9.208472003820816, 45.49829559911462 ], [ 9.208504609335625, 45.49830595006194 ], [ 9.208529486803108, 45.498316653773131 ], [ 9.208591742634358, 45.498338402610678 ], [ 9.210160786191134, 45.498872302835998 ], [ 9.21024208064161, 45.498671356444163 ], [ 9.211032681628856, 45.498808027969339 ], [ 9.211406602114094, 45.497867791186081 ], [ 9.211437354068307, 45.497790318220829 ], [ 9.211502478409908, 45.497625048820595 ], [ 9.211961822377845, 45.496466774027638 ], [ 9.209570888143949, 45.49593621196987 ], [ 9.207565694759333, 45.495794403838978 ], [ 9.207500081078086, 45.495892267631518 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.151148928256822, 45.498628231613274 ], [ 9.151089262433031, 45.498670365406596 ], [ 9.151012931727609, 45.498742218856883 ], [ 9.150992376806807, 45.498763956204037 ], [ 9.150956839032283, 45.498801599697664 ], [ 9.150917614090712, 45.498853059880425 ], [ 9.150897101003421, 45.498882047306275 ], [ 9.150880529529914, 45.498908075139937 ], [ 9.150860231204934, 45.498941556219592 ], [ 9.150832698584136, 45.498996093259699 ], [ 9.150820577477317, 45.499026182679344 ], [ 9.150804430620434, 45.499066061460297 ], [ 9.150785646773304, 45.499136127031008 ], [ 9.150778024921442, 45.499179670906479 ], [ 9.150770552249426, 45.499235968607046 ], [ 9.150770600516505, 45.499280005054466 ], [ 9.150770605561309, 45.49928189528962 ], [ 9.150770662097049, 45.499323575668519 ], [ 9.15077959022139, 45.499391231613963 ], [ 9.150788048803827, 45.499432319323233 ], [ 9.150801395895119, 45.499481098349257 ], [ 9.150815723477379, 45.499521081881468 ], [ 9.150838378367112, 45.499576449160699 ], [ 9.15086885747826, 45.499631866664792 ], [ 9.150878269834637, 45.499647209958162 ], [ 9.150886043415344, 45.49965985092124 ], [ 9.150893803929524, 45.499671617084203 ], [ 9.150926764141934, 45.499721572811062 ], [ 9.150980230949965, 45.499782415758553 ], [ 9.15099514082665, 45.499798074672583 ], [ 9.151030290595038, 45.499835025418491 ], [ 9.15112838845535, 45.499919018219153 ], [ 9.151443869440611, 45.500122870307031 ], [ 9.151683780607334, 45.500278880073807 ], [ 9.151824227316311, 45.500348893915223 ], [ 9.151838233369944, 45.500356466611613 ], [ 9.152188235189582, 45.500607100074809 ], [ 9.152267802046961, 45.500659040496224 ], [ 9.153597016009527, 45.501520375038886 ], [ 9.154496905511488, 45.501079039120206 ], [ 9.154652517386705, 45.501002582455939 ], [ 9.154748459534192, 45.500955134589915 ], [ 9.155882867871835, 45.50039852062789 ], [ 9.158082368120651, 45.499305240976078 ], [ 9.158195302958468, 45.499249051673303 ], [ 9.15847793237479, 45.499108274852489 ], [ 9.159649028797293, 45.498537889321284 ], [ 9.159059854819011, 45.498053725184789 ], [ 9.159083580124102, 45.497840810509061 ], [ 9.15849790726589, 45.497465135697404 ], [ 9.158452471366642, 45.497435809934117 ], [ 9.158222091835148, 45.497286845779144 ], [ 9.1571180662941, 45.496574956174911 ], [ 9.156398623830942, 45.497121634002504 ], [ 9.156383158719837, 45.49711196468413 ], [ 9.156356424518435, 45.49709698359792 ], [ 9.15631700823795, 45.497075186701018 ], [ 9.156284557585948, 45.49705928933448 ], [ 9.156262877861794, 45.497048679899002 ], [ 9.156226609826151, 45.497032171400079 ], [ 9.15618066540126, 45.497012454076966 ], [ 9.156148991021, 45.497000359895772 ], [ 9.156099372648757, 45.496981908791142 ], [ 9.156059869874928, 45.496969375527037 ], [ 9.156046233957246, 45.496965078009339 ], [ 9.156022999753295, 45.496958011420674 ], [ 9.155976036897178, 45.496944574985321 ], [ 9.155940515424263, 45.496935937561474 ], [ 9.155907104293943, 45.496927799674907 ], [ 9.155866898215221, 45.496919612105422 ], [ 9.155833113498193, 45.496913181674351 ], [ 9.155807565037081, 45.496908726826597 ], [ 9.155731565130553, 45.496896619060038 ], [ 9.155649326713107, 45.496854749787246 ], [ 9.155632785009477, 45.496880930629366 ], [ 9.155540014561151, 45.496866249271108 ], [ 9.155319428495401, 45.496831264512267 ], [ 9.155156115891133, 45.496807804675612 ], [ 9.154554262042501, 45.496732418729344 ], [ 9.154458255567839, 45.496773703682372 ], [ 9.154228868253183, 45.496578790709265 ], [ 9.153716342028412, 45.496980138189024 ], [ 9.153711944553168, 45.496975880299495 ], [ 9.153296967632294, 45.497301580623031 ], [ 9.152826096045816, 45.497619429310745 ], [ 9.152844200447056, 45.497656935136646 ], [ 9.152686140935495, 45.497780986731478 ], [ 9.15261649833786, 45.497834755157299 ], [ 9.152571156442679, 45.497867219505416 ], [ 9.152547972382415, 45.497883033294528 ], [ 9.152525214110559, 45.497897581845002 ], [ 9.152511230184622, 45.497905645604135 ], [ 9.152485272058879, 45.497919947113779 ], [ 9.152437665280425, 45.497944881855048 ], [ 9.152402273110603, 45.497962375133753 ], [ 9.152362761699226, 45.497981001386847 ], [ 9.15214714472045, 45.498085452145681 ], [ 9.151811644193657, 45.498247991326586 ], [ 9.151544742448483, 45.498378526393338 ], [ 9.151440713216802, 45.498430900013588 ], [ 9.151309197441739, 45.498512455973639 ], [ 9.151148928256822, 45.498628231613274 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.13767872334232, 45.485727279193753 ], [ 9.137480683835307, 45.485380006987484 ], [ 9.137365012756169, 45.485407530358223 ], [ 9.137297873294788, 45.48527904164402 ], [ 9.136630162318708, 45.48545204575688 ], [ 9.136623182764637, 45.485451209123255 ], [ 9.136313040226241, 45.485534210446644 ], [ 9.135440184459107, 45.48576035706666 ], [ 9.13542213010143, 45.485772025065238 ], [ 9.135085198604145, 45.485860033022497 ], [ 9.134888531419469, 45.485910811101292 ], [ 9.134719286676711, 45.485906406296266 ], [ 9.134629252956049, 45.485938948458632 ], [ 9.134347135154121, 45.485973420863864 ], [ 9.134075915685562, 45.486036813993124 ], [ 9.133033582457887, 45.486457392214206 ], [ 9.13319062286962, 45.486770474874866 ], [ 9.132019923782597, 45.486787371506374 ], [ 9.131980510660702, 45.486902472424809 ], [ 9.131718010976178, 45.486929158928213 ], [ 9.131711130453693, 45.486900885958534 ], [ 9.131396823523124, 45.486961810950909 ], [ 9.131165371346949, 45.486985339872405 ], [ 9.131169609253996, 45.487005853354113 ], [ 9.130709276733088, 45.487095080971351 ], [ 9.129752257771601, 45.486297619968724 ], [ 9.128939464025848, 45.486508547168022 ], [ 9.128962161761692, 45.488534200504773 ], [ 9.129102558942366, 45.488623477333078 ], [ 9.129082815383168, 45.489351221015376 ], [ 9.129080450093008, 45.48937512088289 ], [ 9.129055465177819, 45.489434910288828 ], [ 9.128997074135119, 45.489604345570321 ], [ 9.128973615589318, 45.490155722381623 ], [ 9.128978381622968, 45.490496786786146 ], [ 9.128980536229491, 45.490529030739282 ], [ 9.129025902193067, 45.491292184835274 ], [ 9.12908432867313, 45.492283728447447 ], [ 9.12909698716274, 45.492418098902348 ], [ 9.129156048052758, 45.492635834481277 ], [ 9.129279842825948, 45.492878034751904 ], [ 9.129444098890815, 45.49308908732889 ], [ 9.129619711103674, 45.493254899026773 ], [ 9.129871901732407, 45.493434213488399 ], [ 9.130164118337643, 45.493584317320526 ], [ 9.130470322803754, 45.4936922554704 ], [ 9.130808023180291, 45.493775773337305 ], [ 9.131112128008942, 45.493843259399604 ], [ 9.131124304389584, 45.49384557108305 ], [ 9.131319546172355, 45.493886714469092 ], [ 9.13132274195639, 45.493887489417872 ], [ 9.132061934688551, 45.494055313414179 ], [ 9.132240003530233, 45.494095345168702 ], [ 9.132323640139399, 45.494109635167092 ], [ 9.132513883709519, 45.49413592476953 ], [ 9.132739076048821, 45.494150854988213 ], [ 9.133027217698036, 45.494143635862343 ], [ 9.133373892406823, 45.494091998788903 ], [ 9.13362415544244, 45.49402554665172 ], [ 9.133815117361971, 45.493958767756652 ], [ 9.134067934517903, 45.493853812173363 ], [ 9.134069790089592, 45.493857166851413 ], [ 9.13467171029763, 45.493603340174538 ], [ 9.13467488347565, 45.493607002142092 ], [ 9.135798634158734, 45.493129787778898 ], [ 9.136853146231694, 45.492689591131132 ], [ 9.13683508618575, 45.492669471042269 ], [ 9.136864574737853, 45.492656073254473 ], [ 9.137236793736644, 45.49248645548694 ], [ 9.137669714825526, 45.492288362156884 ], [ 9.137813766200752, 45.492222650728998 ], [ 9.137917634420292, 45.492174567375876 ], [ 9.138076220229825, 45.49208927598189 ], [ 9.13817947261958, 45.492028141649108 ], [ 9.138309642168487, 45.4919460750274 ], [ 9.138443424509434, 45.491849768452681 ], [ 9.13850158641274, 45.491808712830483 ], [ 9.138598960527785, 45.491721732750086 ], [ 9.138623696697989, 45.491698938053389 ], [ 9.139435364628351, 45.490967139151024 ], [ 9.138209581190665, 45.490317823062533 ], [ 9.138250311688543, 45.490246214930416 ], [ 9.138289921272271, 45.490144657145549 ], [ 9.138333178304691, 45.490031123423165 ], [ 9.138362232392822, 45.489954138518968 ], [ 9.138366638295937, 45.489945016849553 ], [ 9.138406828529469, 45.489872885677983 ], [ 9.138440134066014, 45.489817705486615 ], [ 9.138487709728963, 45.489746928201562 ], [ 9.138524248896649, 45.489693456912207 ], [ 9.138557503565856, 45.489652994267864 ], [ 9.138579244148115, 45.489630253789102 ], [ 9.138631368487911, 45.489583722112052 ], [ 9.138683378858035, 45.489544945254956 ], [ 9.138723691835484, 45.489518344959691 ], [ 9.138814728068715, 45.489466767236216 ], [ 9.138836903434804, 45.489455895155359 ], [ 9.138965075110679, 45.489400841991419 ], [ 9.139169589606407, 45.489269167541515 ], [ 9.139223901145231, 45.489218475232505 ], [ 9.139710266694019, 45.489005664398853 ], [ 9.139517970828095, 45.488763198669368 ], [ 9.139653488043487, 45.488394616909204 ], [ 9.138936800889324, 45.487798993004056 ], [ 9.138934303458546, 45.487794113102083 ], [ 9.138999807118246, 45.487369967341124 ], [ 9.13869612457337, 45.487328714824969 ], [ 9.13862774093341, 45.487195092610946 ], [ 9.13854150262191, 45.487068002384341 ], [ 9.138566300469238, 45.487061594529941 ], [ 9.138445594750181, 45.486892557575871 ], [ 9.138432510779001, 45.486776530978915 ], [ 9.138063985354075, 45.486154050366956 ], [ 9.138009234385148, 45.486049326335149 ], [ 9.137983096398006, 45.486017417876063 ], [ 9.137889640481925, 45.485859557174024 ], [ 9.137858971516854, 45.485865889422641 ], [ 9.137793762381465, 45.485786283410221 ], [ 9.13767872334232, 45.485727279193753 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.15932670927357, 45.490884645781513 ], [ 9.160049827414554, 45.491384091729948 ], [ 9.161162095831862, 45.490544027755782 ], [ 9.162133436177507, 45.489810393664044 ], [ 9.161937566209479, 45.488061095530796 ], [ 9.161690749894721, 45.488067097277415 ], [ 9.161510416062594, 45.486949137943519 ], [ 9.161108063019455, 45.48685370618805 ], [ 9.159703446641354, 45.487888653225291 ], [ 9.159689759327859, 45.487880480955546 ], [ 9.158865845436789, 45.488511492285632 ], [ 9.158863703571285, 45.488513104093215 ], [ 9.158517152661831, 45.488778539037803 ], [ 9.158285567288264, 45.488948778966261 ], [ 9.157358012361021, 45.489604866566687 ], [ 9.158333142333278, 45.490238348172824 ], [ 9.15932670927357, 45.490884645781513 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.239591544906537, 45.488616718553679 ], [ 9.239592163177299, 45.488603159668529 ], [ 9.23941859878399, 45.488596108953722 ], [ 9.237977377895701, 45.488424351130412 ], [ 9.237849390969526, 45.488524003991003 ], [ 9.236483114423869, 45.488467287013023 ], [ 9.236428412561111, 45.48969795543622 ], [ 9.236424604577124, 45.489771412042174 ], [ 9.234833106996561, 45.48973340896292 ], [ 9.234490553287715, 45.490939573756947 ], [ 9.236282737965663, 45.491414937935872 ], [ 9.236282370355974, 45.491436115523499 ], [ 9.23629766831359, 45.491444400660122 ], [ 9.236269936896418, 45.491881845451871 ], [ 9.239309268900898, 45.491977118718445 ], [ 9.239464909051819, 45.491125580717608 ], [ 9.239498675291109, 45.490982259409492 ], [ 9.239503386966071, 45.490970108953796 ], [ 9.239510698670129, 45.490952003600327 ], [ 9.239519908910724, 45.490938983080532 ], [ 9.239590290684099, 45.490866490286535 ], [ 9.241158547427947, 45.48925225663853 ], [ 9.240512357481032, 45.488670816539212 ], [ 9.239848602277945, 45.488843427318272 ], [ 9.239876434297912, 45.488650667576735 ], [ 9.239591544906537, 45.488616718553679 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.169149089712246, 45.491752353410945 ], [ 9.169130927750535, 45.491737513844591 ], [ 9.169080929911217, 45.491704998033775 ], [ 9.168518712749579, 45.491340441679206 ], [ 9.16849282587085, 45.491323590862883 ], [ 9.168285011744576, 45.491188792238013 ], [ 9.168204289590374, 45.491140333652787 ], [ 9.168157415677051, 45.491118453995526 ], [ 9.167237412780823, 45.490518516921696 ], [ 9.164793295177267, 45.492364376231762 ], [ 9.164780270988318, 45.492355934273291 ], [ 9.161800394132079, 45.4946119315508 ], [ 9.162375548141316, 45.494783366092989 ], [ 9.163573485788106, 45.496021356618655 ], [ 9.164653989008848, 45.49556153666623 ], [ 9.164962378820821, 45.495852545268413 ], [ 9.164964150127663, 45.495851616975948 ], [ 9.16496416708191, 45.495851632921024 ], [ 9.165798412174487, 45.4954144090974 ], [ 9.166010812909077, 45.495688746091083 ], [ 9.167589491936743, 45.494491886537979 ], [ 9.167657405217591, 45.494440505150756 ], [ 9.167692047630082, 45.494422361572198 ], [ 9.167691907862995, 45.494422006375316 ], [ 9.167802451499087, 45.494364067845488 ], [ 9.167778911561049, 45.494348576339085 ], [ 9.168657519144213, 45.493683829948537 ], [ 9.169105290444007, 45.493344247568011 ], [ 9.17026474245651, 45.492469529443696 ], [ 9.169149089712246, 45.491752353410945 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.225572198639602, 45.491716087181061 ], [ 9.22558773890753, 45.491622149068782 ], [ 9.224550705848353, 45.491556783337245 ], [ 9.224540846459339, 45.491555230790858 ], [ 9.224275776277862, 45.491539452514004 ], [ 9.223487377515044, 45.491489750239502 ], [ 9.223376529684613, 45.491482637141345 ], [ 9.223361889240886, 45.491481838691172 ], [ 9.223083163995662, 45.491464265645732 ], [ 9.222783898788649, 45.491439096580031 ], [ 9.221885275559446, 45.49125468714 ], [ 9.221831982654594, 45.491385372755381 ], [ 9.221775874456361, 45.49138183454226 ], [ 9.221780050245355, 45.491395558286108 ], [ 9.221037021198356, 45.491355022583519 ], [ 9.220666259976072, 45.491950158697257 ], [ 9.221404972124581, 45.49243247129823 ], [ 9.221183040781321, 45.492976666714753 ], [ 9.221144921106911, 45.492984809086018 ], [ 9.221160757359973, 45.493021866327076 ], [ 9.221105099101585, 45.493149962698546 ], [ 9.220920291509472, 45.493188393580098 ], [ 9.221008579981799, 45.493372098086056 ], [ 9.220925545801368, 45.493563196892893 ], [ 9.219721128940231, 45.49359842100359 ], [ 9.219550602977888, 45.493887674946507 ], [ 9.220423548780191, 45.494555566137706 ], [ 9.220388089687539, 45.494610383959305 ], [ 9.220380203208633, 45.494621918103164 ], [ 9.219713282911739, 45.49487217533548 ], [ 9.219973528864978, 45.495216680887559 ], [ 9.219958546302793, 45.495238592674916 ], [ 9.220249536852391, 45.495645104352434 ], [ 9.219866357548401, 45.496000857932309 ], [ 9.22057354672711, 45.496097735974445 ], [ 9.22083532255164, 45.496463422570613 ], [ 9.221473364850278, 45.49622099549368 ], [ 9.222385090633937, 45.496345878371862 ], [ 9.222434305493584, 45.496505805831006 ], [ 9.222442020417347, 45.496531643755233 ], [ 9.222445368609941, 45.496543097273445 ], [ 9.222448312538543, 45.496553136204817 ], [ 9.2227769079773, 45.497651298954118 ], [ 9.224660917321655, 45.497488560827634 ], [ 9.224716936426008, 45.497402177601799 ], [ 9.225074204814778, 45.49731947200695 ], [ 9.225440646688709, 45.497221718900732 ], [ 9.225753098438336, 45.497127688075743 ], [ 9.225819255318054, 45.497106696060982 ], [ 9.226182846014073, 45.496982320198981 ], [ 9.226208147126234, 45.496972693663658 ], [ 9.227132861072034, 45.497428998646974 ], [ 9.227532060265577, 45.495872163362428 ], [ 9.227547197987862, 45.495813229801314 ], [ 9.227570985420824, 45.495716752839435 ], [ 9.227628540715537, 45.495687976297553 ], [ 9.227588395731045, 45.495647740600774 ], [ 9.227702153040951, 45.495213662014706 ], [ 9.227895884122637, 45.49516061737765 ], [ 9.227779829637905, 45.494917257418344 ], [ 9.227974666742568, 45.494173768469622 ], [ 9.227866792794901, 45.494159747384685 ], [ 9.227876006189961, 45.49412300251992 ], [ 9.227377961417437, 45.494060153311395 ], [ 9.227074963712708, 45.493390945421844 ], [ 9.227254651837224, 45.493310301775786 ], [ 9.226978355484663, 45.493013275743039 ], [ 9.227208069583094, 45.492866696741487 ], [ 9.226618131028358, 45.492421551550933 ], [ 9.226608778043991, 45.492400547996986 ], [ 9.226599596295868, 45.4924022824299 ], [ 9.22645435613275, 45.492085904879097 ], [ 9.226239988833573, 45.492136008606259 ], [ 9.22572173197001, 45.491738775967541 ], [ 9.225572198639602, 45.491716087181061 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.185734970374583, 45.491595131696357 ], [ 9.185701502380592, 45.491591878550153 ], [ 9.185457859637694, 45.491515563700396 ], [ 9.185432491660297, 45.491565729878722 ], [ 9.184734093593912, 45.491497840361447 ], [ 9.184657209489089, 45.491571171005631 ], [ 9.185021284847908, 45.492117304540052 ], [ 9.183964383932649, 45.492294335736069 ], [ 9.184441014844674, 45.49327021041104 ], [ 9.184635377107313, 45.493713443874881 ], [ 9.186365635189102, 45.494297321065865 ], [ 9.187623421825625, 45.49472892183995 ], [ 9.188205990104745, 45.493862748463208 ], [ 9.188353023399785, 45.493644623532006 ], [ 9.188987801881401, 45.492703803055335 ], [ 9.188697994416646, 45.492617014795158 ], [ 9.188991850520939, 45.492150158723803 ], [ 9.188781172547108, 45.492084776516435 ], [ 9.189086993735629, 45.491580984196652 ], [ 9.187731788094087, 45.491182098370253 ], [ 9.187722794323383, 45.491179309575536 ], [ 9.186487935703189, 45.490733541605458 ], [ 9.186004460052304, 45.491493609087186 ], [ 9.185830599025584, 45.491448075477464 ], [ 9.185734970374583, 45.491595131696357 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.201848917405599, 45.491873668842729 ], [ 9.201257805507391, 45.491904053059727 ], [ 9.20123960709091, 45.491814219687953 ], [ 9.200859721516331, 45.491845654245544 ], [ 9.200751514710786, 45.491794255860242 ], [ 9.200688561180334, 45.491859816900423 ], [ 9.200467897296344, 45.491878075335485 ], [ 9.200435769291079, 45.491812432868237 ], [ 9.200093726181377, 45.491895245705919 ], [ 9.199916849846989, 45.491874213837647 ], [ 9.199832299451218, 45.491781741336922 ], [ 9.199688010468519, 45.491847002759776 ], [ 9.199557134754865, 45.491831440232268 ], [ 9.199532675071344, 45.491802925319071 ], [ 9.199151178572491, 45.491987015746503 ], [ 9.199004121805263, 45.491999181708437 ], [ 9.198826984730994, 45.49200530524562 ], [ 9.198766795140195, 45.491975791259122 ], [ 9.198720337406872, 45.49202265855606 ], [ 9.198636006770856, 45.492029634901094 ], [ 9.198647181941331, 45.492096458751746 ], [ 9.198618320853626, 45.492125574130526 ], [ 9.198406570915001, 45.492161995367887 ], [ 9.198441544726148, 45.492295241284296 ], [ 9.197997174102136, 45.492402819025436 ], [ 9.198073136071574, 45.492558034433166 ], [ 9.198038804244311, 45.492592909522514 ], [ 9.197663071215425, 45.492762840825094 ], [ 9.197799850048742, 45.492912441460753 ], [ 9.197792699961024, 45.492933220565497 ], [ 9.197397081209594, 45.493273319623682 ], [ 9.197240909617008, 45.493292432108788 ], [ 9.197257907043038, 45.493363442442501 ], [ 9.1960736368355, 45.493670364769578 ], [ 9.196058462345546, 45.493741010252876 ], [ 9.196169368437024, 45.493800678799275 ], [ 9.196040125619469, 45.493823165689939 ], [ 9.196002667697339, 45.493926439422573 ], [ 9.197227603056136, 45.49471691031377 ], [ 9.196646304511244, 45.495768585219984 ], [ 9.196880160208821, 45.495946794739694 ], [ 9.198732876619943, 45.495555470327517 ], [ 9.19887816740445, 45.495582245619353 ], [ 9.198876340916426, 45.495783045638021 ], [ 9.199421716029658, 45.495775968277044 ], [ 9.199809272141609, 45.495938299697215 ], [ 9.1998413541719, 45.495898856906429 ], [ 9.200551842400259, 45.496160965737964 ], [ 9.200578847000436, 45.495895644154857 ], [ 9.200818216574294, 45.495939752485263 ], [ 9.200861242118522, 45.495824264669487 ], [ 9.200916248333334, 45.49581607175422 ], [ 9.201110383658424, 45.495787149804087 ], [ 9.201256627743547, 45.495875937203948 ], [ 9.20141105206174, 45.495750130475287 ], [ 9.201682665615973, 45.495746600027012 ], [ 9.201675993718329, 45.495702884130914 ], [ 9.201909808115762, 45.495668049121349 ], [ 9.201917322697041, 45.495565611279702 ], [ 9.202008355140023, 45.495616997589948 ], [ 9.202079884078882, 45.495465185217505 ], [ 9.202279094445332, 45.495178982609758 ], [ 9.202288382107215, 45.495182217466571 ], [ 9.20241580125259, 45.495001268061323 ], [ 9.202434447463762, 45.49499372285689 ], [ 9.202428203060689, 45.494983656040311 ], [ 9.20253094381885, 45.494837751647331 ], [ 9.202941754070308, 45.494503053271742 ], [ 9.202869765480063, 45.494459348545249 ], [ 9.203143833648355, 45.494175733487246 ], [ 9.203033540981851, 45.494123990235025 ], [ 9.20329209738002, 45.493756794469078 ], [ 9.20366543196716, 45.493561461679725 ], [ 9.203373329084146, 45.493334355183642 ], [ 9.203467457909831, 45.493280347311845 ], [ 9.203309221017836, 45.493169619250438 ], [ 9.20434228970808, 45.492378996705277 ], [ 9.202978892518512, 45.491299819721611 ], [ 9.201848917405599, 45.491873668842729 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.262779666814254, 45.496730746580951 ], [ 9.262795668908668, 45.496689593015041 ], [ 9.262845787043791, 45.496520857130591 ], [ 9.262912134643374, 45.496345120218436 ], [ 9.262953033315085, 45.496184908811742 ], [ 9.262983324890387, 45.496096244593346 ], [ 9.263044982577043, 45.495923632147765 ], [ 9.263097092963701, 45.49575490161849 ], [ 9.263136636651732, 45.495630471902253 ], [ 9.263170879429373, 45.495520324966186 ], [ 9.263234143339762, 45.495363004630747 ], [ 9.263252733593813, 45.495289205554613 ], [ 9.264065856789514, 45.494131443423512 ], [ 9.262824464595152, 45.494073419255926 ], [ 9.262708202122901, 45.493516892008998 ], [ 9.261920449124307, 45.493323029419791 ], [ 9.261905186171795, 45.493319232144607 ], [ 9.260975449547532, 45.493090116373189 ], [ 9.260915680379428, 45.493075807102827 ], [ 9.260559310997751, 45.49298786785284 ], [ 9.260444099713634, 45.492959590457559 ], [ 9.259275730514346, 45.492671209562808 ], [ 9.258077031182214, 45.492374345025709 ], [ 9.257980394433771, 45.492349770479812 ], [ 9.256316920787095, 45.491938000828092 ], [ 9.256070800648532, 45.49136658986032 ], [ 9.255567966144504, 45.490198838374255 ], [ 9.254759627637956, 45.49014632097029 ], [ 9.25334956635206, 45.489858782695045 ], [ 9.253150801338126, 45.491029032791161 ], [ 9.253153462474341, 45.491069610634192 ], [ 9.252107092053288, 45.491082454014105 ], [ 9.252012035060728, 45.491083424735976 ], [ 9.251971076928706, 45.491084159393232 ], [ 9.251911718064934, 45.491084076298563 ], [ 9.251815072108911, 45.491084086783864 ], [ 9.251714698338562, 45.491085220597405 ], [ 9.251626790234047, 45.491085352966607 ], [ 9.251448406479982, 45.491063918768859 ], [ 9.251367031983783, 45.490978103767311 ], [ 9.250744450579798, 45.490785804845679 ], [ 9.250123617200385, 45.490757880972218 ], [ 9.249686685351586, 45.49073912726351 ], [ 9.249381650637309, 45.490725420816673 ], [ 9.247838431954268, 45.490664638628964 ], [ 9.247256561503079, 45.490629342985208 ], [ 9.247247431206974, 45.490575829851544 ], [ 9.24667263870221, 45.490593919823056 ], [ 9.246222262859204, 45.490566596099427 ], [ 9.246194387029655, 45.490608969231396 ], [ 9.245248390715606, 45.490638731497093 ], [ 9.24472339652756, 45.491364441350619 ], [ 9.24469610730452, 45.491775450536778 ], [ 9.244532233253484, 45.492325478443639 ], [ 9.244398945980313, 45.492776801263361 ], [ 9.24438291746376, 45.492842458800538 ], [ 9.244331649608888, 45.493048883423363 ], [ 9.244336929508668, 45.493130163862681 ], [ 9.244015641753013, 45.493093949902118 ], [ 9.243825260907624, 45.49306633655025 ], [ 9.242547735184898, 45.492913595087373 ], [ 9.242113366360476, 45.492871655369591 ], [ 9.241736917737382, 45.492846487569125 ], [ 9.239983810795975, 45.492650021240941 ], [ 9.239699225817407, 45.493675697671421 ], [ 9.239692735251552, 45.493711300163724 ], [ 9.239643856095039, 45.493908234963982 ], [ 9.239601919643322, 45.494036193522973 ], [ 9.239560885995902, 45.494048053483546 ], [ 9.239094653284353, 45.494385573848618 ], [ 9.238922733686302, 45.494763414182444 ], [ 9.238828023032093, 45.495084107856691 ], [ 9.238808711169025, 45.495126777832169 ], [ 9.238737006012064, 45.495466498080283 ], [ 9.238760321994013, 45.495694396693196 ], [ 9.238945366425877, 45.49639009152348 ], [ 9.240554638652275, 45.496625664107732 ], [ 9.242383019486654, 45.496890832578494 ], [ 9.242443496731541, 45.496708089944747 ], [ 9.24266972157154, 45.496731585185834 ], [ 9.242940155138653, 45.496759610019858 ], [ 9.243711603116225, 45.496843830156685 ], [ 9.244013886676658, 45.496876844284195 ], [ 9.244501789481664, 45.496930118735733 ], [ 9.244765216400491, 45.496959268076935 ], [ 9.244643181990094, 45.497365305466545 ], [ 9.244505376866979, 45.497825630804719 ], [ 9.244337242684148, 45.498386099279472 ], [ 9.243922183519981, 45.499756694635686 ], [ 9.245358558294413, 45.499977087171857 ], [ 9.245364986472232, 45.499977774691921 ], [ 9.245858614098793, 45.500873432684124 ], [ 9.245923070155429, 45.500988456120268 ], [ 9.24621938965184, 45.501287892756928 ], [ 9.24672307122732, 45.50144577715345 ], [ 9.246941849776432, 45.501466886279594 ], [ 9.247264052850825, 45.501546740207139 ], [ 9.247364445326932, 45.50156554792747 ], [ 9.247544261746388, 45.50159471309037 ], [ 9.247626064512817, 45.501608772280953 ], [ 9.248259561498115, 45.501829585665384 ], [ 9.248825557438876, 45.50202647086811 ], [ 9.249231319120213, 45.502168339268707 ], [ 9.249310186815633, 45.502190204886446 ], [ 9.249396888744606, 45.502212387102162 ], [ 9.249783176866973, 45.502285454679196 ], [ 9.249915021732418, 45.502480822642738 ], [ 9.250053233003525, 45.502611645187947 ], [ 9.25035348244251, 45.50284689864872 ], [ 9.250369950306043, 45.502860367162839 ], [ 9.251311243058915, 45.503588536249694 ], [ 9.252262906482754, 45.50300217520072 ], [ 9.252275475429249, 45.502995155538152 ], [ 9.252516887443464, 45.502870792092196 ], [ 9.252536838888933, 45.502860327149278 ], [ 9.252553271585175, 45.502881659730996 ], [ 9.253814498133957, 45.502333575717891 ], [ 9.254063215236409, 45.502195071348964 ], [ 9.254249903988615, 45.502047233169712 ], [ 9.254252940721683, 45.502045019363514 ], [ 9.255316920463059, 45.50150699985506 ], [ 9.254991887562847, 45.501208058223078 ], [ 9.255355832061749, 45.500776507230555 ], [ 9.254159145579846, 45.500439479815377 ], [ 9.254179644089778, 45.500319530965513 ], [ 9.254184787268604, 45.500296442851003 ], [ 9.254232071791744, 45.500189611943007 ], [ 9.254264213723816, 45.500037292408578 ], [ 9.254295231981313, 45.499858557142772 ], [ 9.254362475056405, 45.499789483873485 ], [ 9.254498080037333, 45.499647457531253 ], [ 9.254655613736222, 45.499437802154524 ], [ 9.254735491834523, 45.499224437182413 ], [ 9.254739219835189, 45.499207692550087 ], [ 9.25478432781037, 45.499186364036412 ], [ 9.256154328244246, 45.498793121602745 ], [ 9.255943145723419, 45.498005548659776 ], [ 9.255849640557818, 45.49774603232013 ], [ 9.255590170747913, 45.497514289624831 ], [ 9.255588374739302, 45.497494480619075 ], [ 9.255566060261771, 45.497357115186638 ], [ 9.25554554536189, 45.49724160288342 ], [ 9.25557472434939, 45.49724217033755 ], [ 9.255649238497263, 45.497251827353523 ], [ 9.256000681346206, 45.497273095518743 ], [ 9.256090665450667, 45.497276374257538 ], [ 9.256181475889258, 45.497284534125178 ], [ 9.256302019053427, 45.497288154437243 ], [ 9.256338323015841, 45.497290714319149 ], [ 9.256451638934386, 45.497303455975896 ], [ 9.25646085611071, 45.497303819826186 ], [ 9.256513093608156, 45.49731261080575 ], [ 9.256683765084794, 45.49731773252595 ], [ 9.256811634558654, 45.497329972451631 ], [ 9.25700076139665, 45.497338851744239 ], [ 9.257097478225992, 45.497348035728663 ], [ 9.257220281231211, 45.497352605955022 ], [ 9.257325001062171, 45.497359931348534 ], [ 9.257403461740816, 45.497363608148213 ], [ 9.257456921088162, 45.49736747884797 ], [ 9.257629205857231, 45.497381954007416 ], [ 9.257661665130932, 45.497380888151163 ], [ 9.257952987615901, 45.497405384455114 ], [ 9.258179328967879, 45.497421608355232 ], [ 9.258468813700702, 45.497442436612488 ], [ 9.258711982236585, 45.497455701890999 ], [ 9.258911623474962, 45.497472365089834 ], [ 9.259144346686258, 45.49748638137536 ], [ 9.259199878821688, 45.497500288132244 ], [ 9.259224184775157, 45.497500966717126 ], [ 9.259320521071615, 45.497595722417842 ], [ 9.259334022826202, 45.497608297861568 ], [ 9.259343761123214, 45.497617363388734 ], [ 9.25934757867965, 45.49762082046535 ], [ 9.259365614962993, 45.497637085862827 ], [ 9.259376218305562, 45.497646362019317 ], [ 9.259383414697851, 45.497652646478407 ], [ 9.259393766497237, 45.497661685706547 ], [ 9.259404467629158, 45.497670736054204 ], [ 9.259417740759872, 45.497681928006557 ], [ 9.259427531283828, 45.497689947023488 ], [ 9.259437707798897, 45.497698282958879 ], [ 9.259454640370599, 45.49771191819714 ], [ 9.259463432125154, 45.497718880005806 ], [ 9.259476801903661, 45.497729329831337 ], [ 9.259499577310924, 45.497746817114958 ], [ 9.25952584614005, 45.497766368735142 ], [ 9.259538791651018, 45.497775705895933 ], [ 9.259554699396892, 45.497786997512215 ], [ 9.259563454122777, 45.49779311453031 ], [ 9.259580800328534, 45.497805233719461 ], [ 9.259602348208487, 45.497819517554383 ], [ 9.259622579656646, 45.497832566106375 ], [ 9.259641858210841, 45.497844689028057 ], [ 9.259660431559533, 45.497855773136784 ], [ 9.259686069353879, 45.497871041056847 ], [ 9.259712019699682, 45.497885429073925 ], [ 9.259730938891755, 45.497895813641406 ], [ 9.259750538415842, 45.497906245083762 ], [ 9.259771924983578, 45.49791710925475 ], [ 9.259780240311237, 45.497921296441767 ], [ 9.259799222690306, 45.497930637297706 ], [ 9.259811480255978, 45.497936495393375 ], [ 9.259824851792262, 45.497942858963079 ], [ 9.259843631070805, 45.497951411229991 ], [ 9.259859232631214, 45.497958472341544 ], [ 9.259873636923245, 45.497964907071093 ], [ 9.259888117173936, 45.497971372458956 ], [ 9.259900783353549, 45.49797696341966 ], [ 9.259922700047182, 45.49798661592127 ], [ 9.259926999817926, 45.49798849524192 ], [ 9.259937225565439, 45.497992965734362 ], [ 9.259949321857675, 45.497998210795899 ], [ 9.259960479461622, 45.4980030460218 ], [ 9.259976886095657, 45.498010152423717 ], [ 9.259980758865154, 45.498011811580817 ], [ 9.259995778032094, 45.498018202662763 ], [ 9.260003451915331, 45.498021483747941 ], [ 9.260016782119795, 45.49802715314668 ], [ 9.260028406623769, 45.498032042584711 ], [ 9.260044302119992, 45.498038806586564 ], [ 9.260064616561507, 45.498047169581533 ], [ 9.260087767917391, 45.498056473606098 ], [ 9.260115625697734, 45.49806716623965 ], [ 9.260135247938944, 45.498074354034081 ], [ 9.260155691054273, 45.498081749646161 ], [ 9.260173887662244, 45.498088096343487 ], [ 9.26018268856053, 45.498091090722035 ], [ 9.260200462104587, 45.498097059117853 ], [ 9.26021631130895, 45.49810219023265 ], [ 9.26023898693761, 45.498109376503209 ], [ 9.260259761318641, 45.498115755160754 ], [ 9.260269374362469, 45.498118703634383 ], [ 9.260284851499479, 45.498123449744547 ], [ 9.260305712491599, 45.498129701840654 ], [ 9.260322359072818, 45.498134574115944 ], [ 9.260346302897005, 45.498141459590755 ], [ 9.260373897366842, 45.498149187039978 ], [ 9.260406445844534, 45.498158047067939 ], [ 9.260425594085518, 45.498162883362198 ], [ 9.260444993037563, 45.498167791353545 ], [ 9.260464972347297, 45.498172503503007 ], [ 9.260476926175713, 45.498175313224401 ], [ 9.260496553536509, 45.498179864546138 ], [ 9.260521785368431, 45.498185321963689 ], [ 9.260540880448165, 45.498189343752678 ], [ 9.260561356110442, 45.49819340744412 ], [ 9.260588972199233, 45.498198636481945 ], [ 9.260600566100212, 45.498200722133397 ], [ 9.260612655109853, 45.498202825506233 ], [ 9.260630563200346, 45.498205939900686 ], [ 9.260646361118042, 45.498208410554405 ], [ 9.260651304804043, 45.498209201260529 ], [ 9.260675637522663, 45.498212886378852 ], [ 9.260706801448283, 45.498217171529916 ], [ 9.260708522978058, 45.498217421880838 ], [ 9.260726021454339, 45.49821984154066 ], [ 9.260743793038211, 45.498222206087313 ], [ 9.260758162440338, 45.498224113982836 ], [ 9.260770686592311, 45.498225748859277 ], [ 9.26078495695038, 45.4982275951403 ], [ 9.260799797249792, 45.498229469736827 ], [ 9.260819447701911, 45.498231945997055 ], [ 9.260835841403505, 45.498233901942072 ], [ 9.260846962666704, 45.498235430591464 ], [ 9.260883519345256, 45.498239458384454 ], [ 9.260915983992263, 45.498242696861482 ], [ 9.260953829476662, 45.498245802990006 ], [ 9.260987009603623, 45.498248059852166 ], [ 9.261001310098084, 45.498248809123105 ], [ 9.261006965142741, 45.498249129605107 ], [ 9.261018252295637, 45.498249714261561 ], [ 9.2610528603918, 45.498251095199123 ], [ 9.261076880747066, 45.498251681294867 ], [ 9.261079821672936, 45.498251762570995 ], [ 9.261090990731621, 45.498252069058466 ], [ 9.261115936160973, 45.498252513223974 ], [ 9.261836380799778, 45.498263995545358 ], [ 9.262033381193589, 45.498263543812783 ], [ 9.262206730429938, 45.498228324683218 ], [ 9.262321642389864, 45.498204951266338 ], [ 9.262462564337671, 45.498154994095088 ], [ 9.262578436323714, 45.498108075977171 ], [ 9.262670038038261, 45.498056194266105 ], [ 9.262792105168018, 45.497984180323115 ], [ 9.262951450095336, 45.497833743519429 ], [ 9.263020378375835, 45.497735996137578 ], [ 9.263066794439244, 45.4976591361659 ], [ 9.263112458451701, 45.497545328615267 ], [ 9.263124955657252, 45.497482910702388 ], [ 9.263149766993486, 45.497357761627278 ], [ 9.263098184942343, 45.497098094683032 ], [ 9.262974507134452, 45.496911251375913 ], [ 9.262880380956775, 45.496812657977216 ], [ 9.262797715932127, 45.496743357226677 ], [ 9.262779666814254, 45.496730746580951 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.187474927843297, 45.527782993209271 ], [ 9.187835417851492, 45.527871434438346 ], [ 9.188035920419381, 45.527514418294736 ], [ 9.188115350162295, 45.527476390915375 ], [ 9.188270434088725, 45.527096835580906 ], [ 9.188294144537595, 45.527054615608421 ], [ 9.18877655846293, 45.526195644121344 ], [ 9.188747291948344, 45.526188464108102 ], [ 9.188869039348576, 45.525791425576145 ], [ 9.188815142550851, 45.525655970161083 ], [ 9.189079764766737, 45.524965708747615 ], [ 9.18761572242072, 45.524678472719195 ], [ 9.187550740446861, 45.524665621731302 ], [ 9.185397631588032, 45.524232325427057 ], [ 9.18536456653937, 45.524325565938383 ], [ 9.184848148526235, 45.523971675661727 ], [ 9.183943319484301, 45.523847558850186 ], [ 9.182360514119052, 45.523800307601256 ], [ 9.182300784720088, 45.523798425891869 ], [ 9.182061525992655, 45.523792007534446 ], [ 9.181838365695207, 45.523702762564355 ], [ 9.181359311020683, 45.523773648292533 ], [ 9.181305855919208, 45.523775490052202 ], [ 9.181168475830592, 45.523799772089454 ], [ 9.181108663237998, 45.523807169143268 ], [ 9.181001391616643, 45.523827866268356 ], [ 9.180852721994489, 45.523862467046804 ], [ 9.180330950641856, 45.523996189670747 ], [ 9.179107703016108, 45.524823758354472 ], [ 9.179919449988128, 45.525395268382596 ], [ 9.179911880077551, 45.525436071697307 ], [ 9.17978386962999, 45.52622359347756 ], [ 9.179685265819497, 45.52683888932782 ], [ 9.179664990168769, 45.527088645646366 ], [ 9.179659302258946, 45.527297285964082 ], [ 9.179667748266183, 45.527551004513569 ], [ 9.179703015125886, 45.527894624770205 ], [ 9.179761226291193, 45.528189975041371 ], [ 9.180095335242747, 45.528544831968254 ], [ 9.180629410443041, 45.528772815530196 ], [ 9.180732075995042, 45.528776487687971 ], [ 9.180888339244152, 45.52883504495032 ], [ 9.181305924772534, 45.528845881442635 ], [ 9.182534183283792, 45.528732425990647 ], [ 9.182549882969594, 45.528706157256067 ], [ 9.184411884289387, 45.528536729671806 ], [ 9.184625889501971, 45.528525638435347 ], [ 9.184941413149019, 45.528499247504847 ], [ 9.185259137771979, 45.52846064481917 ], [ 9.185573328087948, 45.528410491841527 ], [ 9.185883144739634, 45.528348897665104 ], [ 9.186188519494284, 45.528275963560603 ], [ 9.186490081700684, 45.528191158565051 ], [ 9.186567232363005, 45.528165881387793 ], [ 9.186789881558012, 45.528087235725238 ], [ 9.18701949797347, 45.527995307191688 ], [ 9.187228447536951, 45.527900993850885 ], [ 9.187474927843297, 45.527782993209271 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.245981238977766, 45.52020408001961 ], [ 9.24733491926407, 45.520346484265147 ], [ 9.247578665147373, 45.520428057037272 ], [ 9.247720868977634, 45.520445559511046 ], [ 9.2477744897802, 45.52046632311464 ], [ 9.247853106132045, 45.520485598414965 ], [ 9.247964254547993, 45.520531790657039 ], [ 9.248268230144781, 45.520655596002619 ], [ 9.248851276380568, 45.520785153541127 ], [ 9.249042003397097, 45.520822169987127 ], [ 9.249140061363223, 45.520844737447476 ], [ 9.249232226343469, 45.520861798929211 ], [ 9.250456056124493, 45.521191662178786 ], [ 9.250681308512078, 45.520719626315177 ], [ 9.250925078166873, 45.520752436331044 ], [ 9.251610472674356, 45.52084480444401 ], [ 9.252262352959967, 45.520679441596336 ], [ 9.254198890841373, 45.521072049046595 ], [ 9.254552686443997, 45.519839214171157 ], [ 9.254631160319642, 45.519566108326153 ], [ 9.254687862580546, 45.519373948465415 ], [ 9.254745070928069, 45.519180072163131 ], [ 9.25480881887235, 45.518965466149425 ], [ 9.254895317261996, 45.518674525020415 ], [ 9.254981853917073, 45.518383360739342 ], [ 9.255039610250366, 45.518188581465772 ], [ 9.255095128071265, 45.518001349679068 ], [ 9.255182615855247, 45.517728510480502 ], [ 9.255223422468038, 45.51760109520233 ], [ 9.255355060301685, 45.517392410095191 ], [ 9.255499986874881, 45.517162858028492 ], [ 9.255588531566985, 45.517023585862866 ], [ 9.255590988012475, 45.51702435640621 ], [ 9.256286227644061, 45.515954027229895 ], [ 9.256753007904177, 45.515027003928424 ], [ 9.255181841331948, 45.514654238789831 ], [ 9.254679309531063, 45.514535673660745 ], [ 9.252931562391387, 45.514123503826603 ], [ 9.252790805564864, 45.514446464958169 ], [ 9.252476578860719, 45.514462498171312 ], [ 9.252384154386304, 45.515244657471641 ], [ 9.252291388349789, 45.515478947341116 ], [ 9.252188334927286, 45.51573889752575 ], [ 9.252160142400342, 45.515808118803555 ], [ 9.252132380628893, 45.515877299268922 ], [ 9.252085936074211, 45.515996366786418 ], [ 9.251988220579024, 45.516239693471611 ], [ 9.25197371695085, 45.516275822911069 ], [ 9.251932193375495, 45.516270423475795 ], [ 9.251902185848337, 45.516266447311516 ], [ 9.251854120283529, 45.516259970890715 ], [ 9.250491949637068, 45.516083749795051 ], [ 9.250473008748472, 45.516156721366144 ], [ 9.24820681458732, 45.515588749584595 ], [ 9.2473861236498, 45.517165755361681 ], [ 9.246929936452345, 45.518037214917037 ], [ 9.246923434817354, 45.518035611983883 ], [ 9.246468862126695, 45.518919803372626 ], [ 9.246468417295763, 45.518920713615813 ], [ 9.246443974304691, 45.518959468591902 ], [ 9.245981238977766, 45.52020408001961 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.135634943521271, 45.513697395492578 ], [ 9.135816361325634, 45.513401778853513 ], [ 9.13505733269241, 45.513241553456503 ], [ 9.134876870470375, 45.513099133186913 ], [ 9.134584218906628, 45.513038881738609 ], [ 9.134686414917903, 45.51284473173672 ], [ 9.134133001781235, 45.512720568331993 ], [ 9.134405187412302, 45.512156296706024 ], [ 9.134022642371399, 45.512082368838314 ], [ 9.134024925195723, 45.512075846447068 ], [ 9.132816296947253, 45.511803149116453 ], [ 9.132529862025399, 45.511736565017998 ], [ 9.13102706300238, 45.511383695434233 ], [ 9.13054936059533, 45.512533946658458 ], [ 9.130085758884382, 45.513664361551399 ], [ 9.130335137006345, 45.513724938160387 ], [ 9.130332374467798, 45.513731685326547 ], [ 9.130194941585378, 45.51405620105303 ], [ 9.13019462034689, 45.514056910787531 ], [ 9.12967516822461, 45.51528335226056 ], [ 9.12967323440639, 45.515288055452388 ], [ 9.129641231153494, 45.515363619665791 ], [ 9.129642091999241, 45.515363796024154 ], [ 9.129469038467917, 45.515784670781997 ], [ 9.129340574526877, 45.516406352883237 ], [ 9.129191911791382, 45.51678156172818 ], [ 9.129179356699256, 45.516823307519012 ], [ 9.129174219692173, 45.516842128697554 ], [ 9.129169128653782, 45.516862160825795 ], [ 9.129164344909016, 45.516883227269446 ], [ 9.129160483410713, 45.516902142485371 ], [ 9.129156721465636, 45.516922902015018 ], [ 9.129153700818593, 45.516941986004603 ], [ 9.129150897771352, 45.516962696097934 ], [ 9.129148665288909, 45.516982883023658 ], [ 9.129146947546495, 45.517002081329984 ], [ 9.129144752025619, 45.517035354532325 ], [ 9.129144195155542, 45.517062799441192 ], [ 9.129144241035345, 45.517082856347407 ], [ 9.129144557369841, 45.517095304885977 ], [ 9.129145080367278, 45.517115413910432 ], [ 9.129146448404054, 45.517135081828442 ], [ 9.129147851535484, 45.517154939599862 ], [ 9.129149641262968, 45.517170476122011 ], [ 9.129152617457075, 45.517195910144856 ], [ 9.129159080600116, 45.517235581716463 ], [ 9.129165815251916, 45.517267832541016 ], [ 9.129172089750449, 45.517294904000082 ], [ 9.129181306928633, 45.517327831053066 ], [ 9.129187621366984, 45.517348497657999 ], [ 9.129192548456492, 45.517363479351282 ], [ 9.129200013301164, 45.517385314782956 ], [ 9.129208159717704, 45.517407083649417 ], [ 9.129215314164263, 45.517425409506735 ], [ 9.129226489079057, 45.517452583871076 ], [ 9.129239125083931, 45.517480033822437 ], [ 9.129249940047439, 45.517502461455017 ], [ 9.129261873346135, 45.517525617888346 ], [ 9.129274363657798, 45.517548828529215 ], [ 9.12928972848372, 45.517575391826405 ], [ 9.129302748778247, 45.517596655098515 ], [ 9.12931810431451, 45.517620766596828 ], [ 9.129332207702666, 45.51764152683495 ], [ 9.129347290430264, 45.51766317500087 ], [ 9.129364750864699, 45.517686754843943 ], [ 9.129381863065978, 45.517709050042953 ], [ 9.129403088750335, 45.517735148238728 ], [ 9.12942038372592, 45.517755252790408 ], [ 9.129436379997355, 45.517773609648273 ], [ 9.129460571586128, 45.517799707979833 ], [ 9.12947764949816, 45.51781730260705 ], [ 9.129495585782838, 45.517835426634001 ], [ 9.129517436679038, 45.517856513041906 ], [ 9.129543032216271, 45.517880315737017 ], [ 9.129563855796578, 45.517898490243716 ], [ 9.129589102932249, 45.517920215396501 ], [ 9.129630742327148, 45.517953769452731 ], [ 9.129656013914847, 45.517972892598415 ], [ 9.12966210256425, 45.517977704800401 ], [ 9.129688151641913, 45.517997327211994 ], [ 9.129714819163638, 45.518016469875668 ], [ 9.129747869591691, 45.518039078042406 ], [ 9.129776066020165, 45.518057457617175 ], [ 9.12979306736494, 45.518068005588006 ], [ 9.129816484857024, 45.51808255257157 ], [ 9.12984533695845, 45.518099174897692 ], [ 9.12986442000207, 45.518109929882989 ], [ 9.129888392108011, 45.518123074857542 ], [ 9.12991464340555, 45.518136771378558 ], [ 9.129937242150453, 45.51814822496349 ], [ 9.129963398215368, 45.518160939783087 ], [ 9.129990657920116, 45.518173670771219 ], [ 9.130014676454152, 45.518184438720262 ], [ 9.130034954227472, 45.518193245084262 ], [ 9.130063687029551, 45.518205320154735 ], [ 9.130095789908356, 45.518218104808206 ], [ 9.130125163381495, 45.518229180690732 ], [ 9.130139394711939, 45.518234353928364 ], [ 9.130167888394856, 45.518244710999646 ], [ 9.130204131812363, 45.518256679004089 ], [ 9.13032033162459, 45.51829518670008 ], [ 9.1314497625361, 45.518656511100524 ], [ 9.131832663107014, 45.518201230492316 ], [ 9.132488761042055, 45.518279160427404 ], [ 9.131795741213043, 45.518886217996588 ], [ 9.131817079470824, 45.518923538365726 ], [ 9.134628109699202, 45.519181564025793 ], [ 9.135446726587631, 45.519265253091802 ], [ 9.13638488891951, 45.518789784913899 ], [ 9.136596149600312, 45.518001437946687 ], [ 9.136650219315385, 45.517794951210107 ], [ 9.136693431293464, 45.517635487555829 ], [ 9.137062032749016, 45.516275934171148 ], [ 9.13706012344179, 45.516275718877999 ], [ 9.137349582521813, 45.515184904379446 ], [ 9.137157755789511, 45.515154628077347 ], [ 9.137314970342629, 45.51460067988728 ], [ 9.13568964814975, 45.514342486681286 ], [ 9.135730859604919, 45.514177883877728 ], [ 9.135495975802851, 45.514143823686766 ], [ 9.135728667184166, 45.513771359865466 ], [ 9.135634943521271, 45.513697395492578 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.151706416209302, 45.512357052365928 ], [ 9.151653235605632, 45.512715860371003 ], [ 9.151653235254791, 45.512715860298719 ], [ 9.151547610031058, 45.513428497105267 ], [ 9.150744105057049, 45.514507969077499 ], [ 9.150033288523662, 45.515318427616698 ], [ 9.149944021187316, 45.515797209334224 ], [ 9.150288868276377, 45.516288419906928 ], [ 9.153800024232382, 45.517817418327716 ], [ 9.154400410185193, 45.517141006132995 ], [ 9.154716982684384, 45.517217820964312 ], [ 9.154552886018616, 45.517378121374882 ], [ 9.15441415951878, 45.517491230784842 ], [ 9.15420078043419, 45.517643055507733 ], [ 9.154025186038284, 45.517750518048643 ], [ 9.153897931915756, 45.517830989841528 ], [ 9.153675926124906, 45.517973064955349 ], [ 9.153636243225812, 45.517998269242007 ], [ 9.153510219095093, 45.518070713863672 ], [ 9.153201373153797, 45.51824727786871 ], [ 9.153150020451163, 45.518278798201791 ], [ 9.152847597908632, 45.518460781874907 ], [ 9.151399861651756, 45.519331997943397 ], [ 9.150720337920648, 45.519847269676148 ], [ 9.150370779542239, 45.520208994549463 ], [ 9.150308307293024, 45.520289584384024 ], [ 9.150253289828857, 45.520377469688981 ], [ 9.150208960994718, 45.520464859603742 ], [ 9.150176402295438, 45.520548480836347 ], [ 9.150154005651968, 45.520626065073508 ], [ 9.150138873702348, 45.520705335124113 ], [ 9.15013214011023, 45.520788914597276 ], [ 9.150134010256425, 45.520877066726428 ], [ 9.150146290213661, 45.520969372940129 ], [ 9.150301482264815, 45.52160336562914 ], [ 9.150703628521129, 45.521678184009865 ], [ 9.150760970907045, 45.521710181907608 ], [ 9.150794811931272, 45.521728204376465 ], [ 9.150832949090116, 45.521747507650296 ], [ 9.150878760211526, 45.521769285753805 ], [ 9.150928250604101, 45.521790938426214 ], [ 9.150974297214825, 45.521809676129855 ], [ 9.151024586265837, 45.521828687990549 ], [ 9.151085810627476, 45.521849764944989 ], [ 9.152519517141906, 45.522293795565979 ], [ 9.152543679385948, 45.52225458218426 ], [ 9.155313072125169, 45.522791057352663 ], [ 9.156133732404749, 45.520674183595197 ], [ 9.156396624331656, 45.519981048886144 ], [ 9.156438269036908, 45.519871167392111 ], [ 9.156488689502272, 45.519720961774297 ], [ 9.156674120219346, 45.519156233945594 ], [ 9.157357096369765, 45.518449630137802 ], [ 9.157476687932268, 45.518470116340396 ], [ 9.15758187563079, 45.518195545081461 ], [ 9.158194364826816, 45.517440474474455 ], [ 9.15811274422947, 45.517398362082943 ], [ 9.15814910257747, 45.517310080278229 ], [ 9.158176033566402, 45.517236362382008 ], [ 9.158193520118839, 45.517183478704929 ], [ 9.158211082348723, 45.517125717614221 ], [ 9.158223034580752, 45.517082668399212 ], [ 9.158438358754166, 45.516212153687448 ], [ 9.157258065419748, 45.516002627120827 ], [ 9.15725679736547, 45.516002382262549 ], [ 9.156841428588629, 45.51592350995891 ], [ 9.156705770218053, 45.515897415501037 ], [ 9.156516297363613, 45.515884727174218 ], [ 9.156356968278397, 45.515886438923616 ], [ 9.156188556037952, 45.515902967165189 ], [ 9.156012295303192, 45.515935727431795 ], [ 9.155786522569803, 45.516004819838308 ], [ 9.15569688102371, 45.516049895675522 ], [ 9.155448876021207, 45.515356601750582 ], [ 9.156158351918585, 45.513672070600329 ], [ 9.155339090390591, 45.513492905403304 ], [ 9.155361604077465, 45.513447070302227 ], [ 9.153854546600666, 45.513118519216512 ], [ 9.153601733705582, 45.513057546406962 ], [ 9.153406424124256, 45.513015008191232 ], [ 9.153352795526601, 45.512998055312679 ], [ 9.151706416209302, 45.512357052365928 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.166990427325805, 45.513624904397567 ], [ 9.166239620086149, 45.513191107520022 ], [ 9.166224463072099, 45.513195148706735 ], [ 9.166128879461185, 45.513617551397857 ], [ 9.165934899806668, 45.513569271973601 ], [ 9.164614133983214, 45.512960355536222 ], [ 9.164070746777671, 45.514497109736837 ], [ 9.163675919257939, 45.514413811148408 ], [ 9.163657628454789, 45.514457906246648 ], [ 9.163600244652137, 45.514447074388606 ], [ 9.162648361919452, 45.516786668170148 ], [ 9.162758702802781, 45.51680888195196 ], [ 9.162681431440241, 45.517061664367304 ], [ 9.163577453793554, 45.517241665754888 ], [ 9.163400594855117, 45.517705153034107 ], [ 9.164836155090491, 45.517886707005808 ], [ 9.164787553772889, 45.518211319456995 ], [ 9.164963638615202, 45.518223868275548 ], [ 9.164959308620386, 45.518255305162647 ], [ 9.165583662462986, 45.518300029300654 ], [ 9.165382823888917, 45.519712446158529 ], [ 9.16738294790937, 45.519207186551483 ], [ 9.167521380942405, 45.519163933583087 ], [ 9.167667669581229, 45.519107724986974 ], [ 9.167796116315886, 45.519052706986379 ], [ 9.167946809734971, 45.518976766637671 ], [ 9.168094617620252, 45.518887152364663 ], [ 9.168223660396302, 45.518791910628153 ], [ 9.169250793456696, 45.517926248291822 ], [ 9.16934279272119, 45.517932347008184 ], [ 9.169358568804295, 45.517835413717393 ], [ 9.169716812891265, 45.517533477739356 ], [ 9.169652483695121, 45.517422159661116 ], [ 9.169428498594437, 45.517405738745047 ], [ 9.169517358038931, 45.516859743386711 ], [ 9.169662411991089, 45.516866324301283 ], [ 9.169897937951632, 45.51653062442486 ], [ 9.170521162422402, 45.516065066351032 ], [ 9.170341921215833, 45.515897793969323 ], [ 9.170510081213756, 45.515658103365631 ], [ 9.170288184826846, 45.515536936691483 ], [ 9.170324125683157, 45.515485173417972 ], [ 9.170304374689112, 45.515473214075101 ], [ 9.17035510280447, 45.515379285938891 ], [ 9.170309006984434, 45.515356029133777 ], [ 9.170327910937084, 45.515321181336148 ], [ 9.170264593849517, 45.515289270557069 ], [ 9.17026460956836, 45.51528924718432 ], [ 9.170260414812679, 45.515287164388184 ], [ 9.170008249391131, 45.515160076402509 ], [ 9.170145445101339, 45.514979686682629 ], [ 9.169380066204003, 45.514333737389869 ], [ 9.169583043641158, 45.51362841375466 ], [ 9.168681898238429, 45.513841083826684 ], [ 9.16877510138179, 45.513466035539679 ], [ 9.168765125308571, 45.513467318398938 ], [ 9.168767831577734, 45.513456240181903 ], [ 9.167860203189413, 45.51357364373284 ], [ 9.167090446425448, 45.513257320194619 ], [ 9.167088158129374, 45.513265847914006 ], [ 9.167086563437705, 45.513265192583027 ], [ 9.166990427325805, 45.513624904397567 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.187112306425806, 45.513386108524834 ], [ 9.186448660585043, 45.515238594408785 ], [ 9.187577685192485, 45.515715613130645 ], [ 9.188160810794873, 45.515806294806993 ], [ 9.188203987855074, 45.515813447327844 ], [ 9.188474691843238, 45.515855488814495 ], [ 9.189732003681156, 45.516706109627812 ], [ 9.189969162696144, 45.516648847645442 ], [ 9.190202912470143, 45.515482596997444 ], [ 9.190232833607267, 45.515465686636325 ], [ 9.190416692521781, 45.51449095326128 ], [ 9.190404753099441, 45.514475512019864 ], [ 9.190620663575702, 45.513398185427121 ], [ 9.189188309538403, 45.513708356505873 ], [ 9.188921518389515, 45.513667157726879 ], [ 9.188852833718711, 45.513655784310295 ], [ 9.188454252103176, 45.513593875509869 ], [ 9.187112306425806, 45.513386108524834 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.205075116508791, 45.518554498392348 ], [ 9.205079796197134, 45.518562719489111 ], [ 9.205167744206078, 45.518719078232657 ], [ 9.205176557440423, 45.518735513505469 ], [ 9.205673401178812, 45.519607490809889 ], [ 9.206912206209918, 45.519261084002054 ], [ 9.20711229047412, 45.519353192604171 ], [ 9.207336948062997, 45.519142309448249 ], [ 9.208625560967043, 45.518781949791972 ], [ 9.208264004785152, 45.518157683466796 ], [ 9.208274963489833, 45.518150840481248 ], [ 9.208262028485453, 45.518140582274775 ], [ 9.208280014908384, 45.518129338144227 ], [ 9.208250181989905, 45.518105747590695 ], [ 9.208252339447329, 45.518104406355761 ], [ 9.208217062601717, 45.518076631543423 ], [ 9.208075386062166, 45.517832006613574 ], [ 9.207976480418001, 45.517662082704206 ], [ 9.207756313879822, 45.517268676641059 ], [ 9.207247580750092, 45.51637106645574 ], [ 9.206370804422354, 45.516616913947487 ], [ 9.206323512674983, 45.516579391375778 ], [ 9.206175902367246, 45.516671563146936 ], [ 9.204304710084847, 45.517196210315959 ], [ 9.204574779935486, 45.517671314602616 ], [ 9.204375364079148, 45.517795827127344 ], [ 9.204391009228978, 45.517808137437882 ], [ 9.204309313457346, 45.517859175362368 ], [ 9.204375034309356, 45.517909471334953 ], [ 9.20434801710574, 45.517926382819667 ], [ 9.204413119877863, 45.517976307541979 ], [ 9.204385986348463, 45.517993289294893 ], [ 9.204448634117369, 45.518041307979985 ], [ 9.204433813030693, 45.518050534085567 ], [ 9.205075116508791, 45.518554498392348 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.140068566257566, 45.506028595801695 ], [ 9.140068549372428, 45.506028616558147 ], [ 9.140068549372417, 45.506028616558147 ], [ 9.139340084782404, 45.506924082649213 ], [ 9.139275112069416, 45.507044937306233 ], [ 9.139275112067208, 45.507044937310624 ], [ 9.139275061711087, 45.507045030976975 ], [ 9.139244260935806, 45.507106344660336 ], [ 9.139244246903967, 45.507106379168405 ], [ 9.138928142998159, 45.507735624450227 ], [ 9.139025026057141, 45.507779069699289 ], [ 9.139008258844747, 45.507832671440283 ], [ 9.138992920390237, 45.507873559933948 ], [ 9.138984021725427, 45.507873196928074 ], [ 9.138919464821017, 45.508069373308018 ], [ 9.138881342664074, 45.508170996473069 ], [ 9.138839670859403, 45.508305655199976 ], [ 9.138821655553125, 45.508358692310921 ], [ 9.138809501161079, 45.508395070149028 ], [ 9.138792361619078, 45.508451750305554 ], [ 9.138780271977495, 45.508492349605902 ], [ 9.138709825544241, 45.508706418269767 ], [ 9.138707121921453, 45.508714633863711 ], [ 9.138394635354084, 45.509657219190359 ], [ 9.138396898331669, 45.509657304836004 ], [ 9.138190514055141, 45.510284423176877 ], [ 9.139345086746754, 45.510363747766618 ], [ 9.140514595847119, 45.51054048796864 ], [ 9.141102183225406, 45.510632080141981 ], [ 9.14150461748889, 45.510694809029367 ], [ 9.141538336547526, 45.510700063953877 ], [ 9.142012927234607, 45.51077102192113 ], [ 9.142371625700877, 45.510824650983764 ], [ 9.142730324845557, 45.510878278918703 ], [ 9.142831717258357, 45.510893437543594 ], [ 9.142991501963225, 45.510917325881294 ], [ 9.143006502975268, 45.510919568569292 ], [ 9.143151212942625, 45.510941202953042 ], [ 9.143187650851754, 45.510946653610993 ], [ 9.143357554976804, 45.510972284519781 ], [ 9.143439031000465, 45.510984575497908 ], [ 9.143576485824733, 45.511005310953976 ], [ 9.143610188762903, 45.511010593528489 ], [ 9.143657264309843, 45.511017972097889 ], [ 9.143710925690844, 45.511026382897633 ], [ 9.14477716284876, 45.511193497467872 ], [ 9.145465812634578, 45.511301425556212 ], [ 9.145647792243915, 45.511190530116345 ], [ 9.146010292242593, 45.511402634649009 ], [ 9.146489879801029, 45.510677366072272 ], [ 9.146672082230221, 45.510566330753775 ], [ 9.147831174256446, 45.510743598970649 ], [ 9.148121923256657, 45.509771487519821 ], [ 9.148155185756929, 45.50966249093171 ], [ 9.148842078366279, 45.509243865296831 ], [ 9.148775041250271, 45.50905766086963 ], [ 9.148359805354886, 45.508991971488243 ], [ 9.148609893670063, 45.508172433141432 ], [ 9.147637728624298, 45.507702076215637 ], [ 9.147214975262768, 45.507655545923235 ], [ 9.146811929345263, 45.507654565200212 ], [ 9.146364466012709, 45.507798654555629 ], [ 9.145893289955389, 45.508064011755096 ], [ 9.145877025987406, 45.508101751166393 ], [ 9.14580342001004, 45.508137424549965 ], [ 9.145730008259351, 45.508214393864534 ], [ 9.145643223230588, 45.508272058584417 ], [ 9.145370369668585, 45.508244216514335 ], [ 9.145218760212275, 45.508282296001617 ], [ 9.144555847291114, 45.508042702437407 ], [ 9.143531403895727, 45.507582892215176 ], [ 9.143531402076682, 45.507582891398719 ], [ 9.14234907235071, 45.507052194830592 ], [ 9.141200262554166, 45.506536579275767 ], [ 9.140068566257566, 45.506028595801695 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.217082681763912, 45.504336488702187 ], [ 9.217044650643723, 45.505248955304545 ], [ 9.217086903661203, 45.505248891908984 ], [ 9.217087689226616, 45.505675242096054 ], [ 9.217462026086686, 45.505690361419134 ], [ 9.217560983086555, 45.505860826971386 ], [ 9.217863720909509, 45.506394075712521 ], [ 9.217891262569143, 45.506514274772904 ], [ 9.217929501591081, 45.506509941733114 ], [ 9.217953590399661, 45.506552371604755 ], [ 9.218247054912387, 45.507133850895315 ], [ 9.218278735038947, 45.507125072480164 ], [ 9.218512782242598, 45.507537308998423 ], [ 9.218514868839844, 45.507536739341589 ], [ 9.218555130498386, 45.507607640667999 ], [ 9.218608131931823, 45.507700999462031 ], [ 9.218608143587272, 45.507700997140546 ], [ 9.218718864409238, 45.507895976307921 ], [ 9.221100081037994, 45.508536900115786 ], [ 9.221950117848161, 45.506937620356439 ], [ 9.221956336585263, 45.506573204893819 ], [ 9.221959874026377, 45.506365806299506 ], [ 9.221962039917045, 45.506231090232831 ], [ 9.222014388760673, 45.506231949873374 ], [ 9.222021326303418, 45.506104734528037 ], [ 9.222079047808663, 45.506106071788125 ], [ 9.222132182921449, 45.505192116602608 ], [ 9.222157550899155, 45.504777771662752 ], [ 9.222165438405016, 45.504258899432088 ], [ 9.222167633457907, 45.5039472501606 ], [ 9.221849683001537, 45.50347362991527 ], [ 9.221650713547458, 45.50327691581505 ], [ 9.221492062298738, 45.5031708751807 ], [ 9.221379348237392, 45.503100839132948 ], [ 9.221302999828071, 45.503036826587447 ], [ 9.220939042784011, 45.502810897086583 ], [ 9.219854482301695, 45.502599680971542 ], [ 9.218630480600936, 45.502138598614245 ], [ 9.218011753411453, 45.502262155824049 ], [ 9.217051636357953, 45.502266216704122 ], [ 9.217075076638626, 45.503705853719076 ], [ 9.217080039328971, 45.504036796236555 ], [ 9.217082681763912, 45.504336488702187 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.209037592210574, 45.509655988834005 ], [ 9.208921830986338, 45.509446066490717 ], [ 9.20879045634463, 45.509481881167503 ], [ 9.208762699000451, 45.509431862060737 ], [ 9.207209743135802, 45.509856242488951 ], [ 9.204688550158838, 45.510545157250675 ], [ 9.205159206637157, 45.511399889371802 ], [ 9.205588717035349, 45.512179876578401 ], [ 9.206544962766589, 45.513904193760872 ], [ 9.206624642245032, 45.513911842411652 ], [ 9.207243692357972, 45.513331314191149 ], [ 9.207291691620336, 45.513367271411639 ], [ 9.207323597966104, 45.513790567542117 ], [ 9.208379698000062, 45.513823355449162 ], [ 9.208426188840237, 45.513893356821946 ], [ 9.20851883524856, 45.513996155997255 ], [ 9.20860751227549, 45.514075843271591 ], [ 9.208708008401334, 45.514156979673771 ], [ 9.208802734129332, 45.514328742980531 ], [ 9.208890966487287, 45.514304691610803 ], [ 9.209025731893036, 45.514413494310716 ], [ 9.209865320413542, 45.514535229306702 ], [ 9.210444998350999, 45.514357313510047 ], [ 9.210730956747144, 45.514175874683062 ], [ 9.211441496668229, 45.513739554496901 ], [ 9.211033603447872, 45.513004538988909 ], [ 9.211047146530968, 45.513000846877546 ], [ 9.209798289235648, 45.510736374197641 ], [ 9.209798289108287, 45.510736374232351 ], [ 9.209492752140989, 45.510182333710524 ], [ 9.209349403932123, 45.510221412862947 ], [ 9.209223527886877, 45.509993153095138 ], [ 9.209223526411707, 45.509993153497277 ], [ 9.209095475466137, 45.509760947779071 ], [ 9.209095474030741, 45.509760948170388 ], [ 9.209037593836555, 45.509655988390726 ], [ 9.209037592210574, 45.509655988834005 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.120354885395027, 45.474926957624334 ], [ 9.120372379021342, 45.4752423809798 ], [ 9.120629182219128, 45.475496285005001 ], [ 9.120694183057916, 45.475585137309793 ], [ 9.120826153166133, 45.475677704449595 ], [ 9.120834187752251, 45.475794832320418 ], [ 9.121002356474561, 45.475790040921972 ], [ 9.121086813176452, 45.475840021975038 ], [ 9.121120022896585, 45.475851046127417 ], [ 9.121125141988781, 45.476048375591454 ], [ 9.122404903405569, 45.476027771124329 ], [ 9.124038472587335, 45.476003692361978 ], [ 9.12402212490983, 45.475703960567962 ], [ 9.124560921185905, 45.475688593429403 ], [ 9.123985725547197, 45.475036233434992 ], [ 9.123983340507658, 45.474992540503663 ], [ 9.124568538089548, 45.474976457942041 ], [ 9.124504090440682, 45.473975843173541 ], [ 9.124502933829165, 45.473958478919087 ], [ 9.124440669060421, 45.472987414895648 ], [ 9.124256634251761, 45.472989998446636 ], [ 9.12424351980159, 45.472760999868193 ], [ 9.122373161252078, 45.472825291630222 ], [ 9.119657062742428, 45.474380151897357 ], [ 9.120354885395027, 45.474926957624334 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.248012810377672, 45.475781418485973 ], [ 9.247001488104997, 45.474866264417479 ], [ 9.246832030344741, 45.47488704761173 ], [ 9.246564690552038, 45.475463878166671 ], [ 9.246557367862714, 45.475462202076947 ], [ 9.246429556459892, 45.47574040645879 ], [ 9.246429556023651, 45.475740406348343 ], [ 9.245996634380253, 45.476682716348535 ], [ 9.24508320950007, 45.477141658258894 ], [ 9.245997410238688, 45.477684716085101 ], [ 9.245973159347681, 45.477737154403691 ], [ 9.245937359674862, 45.477753560423459 ], [ 9.245811418001068, 45.477825999998778 ], [ 9.245762940316169, 45.477862765282204 ], [ 9.245701107982493, 45.477891344507618 ], [ 9.24558257325098, 45.477961750962521 ], [ 9.245478115808199, 45.478037559883219 ], [ 9.245383509688844, 45.478123673197167 ], [ 9.245301727541433, 45.478217324543543 ], [ 9.245237940129126, 45.478313443534525 ], [ 9.245188625899317, 45.478412084150726 ], [ 9.245152623791583, 45.478521718375916 ], [ 9.245146389313186, 45.478560894660006 ], [ 9.24511328016764, 45.478609761927977 ], [ 9.245062049846601, 45.478715025310223 ], [ 9.245029674251459, 45.478816673572688 ], [ 9.245011304636119, 45.47892268233808 ], [ 9.244909056307472, 45.478899309972256 ], [ 9.244546269186678, 45.479833371702426 ], [ 9.244532542317941, 45.47987591447648 ], [ 9.244521451047454, 45.479918869937542 ], [ 9.244512989949341, 45.479962313850947 ], [ 9.244507108645022, 45.480006846672616 ], [ 9.244504106354215, 45.480049810523482 ], [ 9.24450375840547, 45.480093535102711 ], [ 9.244506142842381, 45.480137745423228 ], [ 9.24451119369767, 45.480181275782471 ], [ 9.244518995097312, 45.480224963842872 ], [ 9.24452943126134, 45.480268124411147 ], [ 9.244542578019795, 45.480311091814499 ], [ 9.244558115404249, 45.480352931293751 ], [ 9.244576796538167, 45.480395558092575 ], [ 9.244597648760115, 45.48043668990784 ], [ 9.24462092675477, 45.480476974310612 ], [ 9.244647046210893, 45.480517079313692 ], [ 9.244675449347932, 45.480556110570298 ], [ 9.244675853843027, 45.480556611423076 ], [ 9.244555684360661, 45.480816776988462 ], [ 9.245032228009178, 45.480925704313648 ], [ 9.245032227973192, 45.480925704391559 ], [ 9.245267870868165, 45.480979566247953 ], [ 9.245267870975589, 45.480979566301755 ], [ 9.24694863268855, 45.481363727746846 ], [ 9.246948632700677, 45.481363727720613 ], [ 9.247029673808839, 45.481382250033789 ], [ 9.247086705333336, 45.481413065625233 ], [ 9.247113591138744, 45.481401429646958 ], [ 9.247470905525478, 45.481483094321888 ], [ 9.247468377665431, 45.481488558087413 ], [ 9.248437770000439, 45.481704065613869 ], [ 9.249287684394572, 45.481898300493171 ], [ 9.249287684471359, 45.481898300326904 ], [ 9.249590419526088, 45.48196748392067 ], [ 9.249512263015294, 45.482067175354615 ], [ 9.249752057379098, 45.482123657575706 ], [ 9.249679300766148, 45.482275081691718 ], [ 9.249681955158145, 45.482275704329311 ], [ 9.249537851846801, 45.482575615685313 ], [ 9.250051555934439, 45.482696138688965 ], [ 9.250045642443805, 45.482708748844487 ], [ 9.250045680534988, 45.482708757683632 ], [ 9.250015728346401, 45.482772628794756 ], [ 9.250125130812794, 45.482798015875055 ], [ 9.250125119089024, 45.482798040875288 ], [ 9.250230946101555, 45.482822598142228 ], [ 9.250230917872397, 45.482822658339508 ], [ 9.250337515534769, 45.482847394315577 ], [ 9.2503365202013, 45.482849516823158 ], [ 9.25055115322961, 45.482898916994181 ], [ 9.250550944914234, 45.482899361221719 ], [ 9.251759931256904, 45.483177613667984 ], [ 9.251923791579308, 45.483215634712323 ], [ 9.251924980645837, 45.483215841044448 ], [ 9.252889134932266, 45.483439551083713 ], [ 9.25289001228399, 45.483437691706655 ], [ 9.252999083889996, 45.483462792841486 ], [ 9.253026635530691, 45.483404034133812 ], [ 9.253137602318631, 45.483430111442495 ], [ 9.253283155971035, 45.483120629399366 ], [ 9.253284254465216, 45.483120885962549 ], [ 9.253328059348148, 45.483027182238551 ], [ 9.253332141787419, 45.483028125719393 ], [ 9.253385593835993, 45.482931749950218 ], [ 9.253935933327462, 45.483011502987935 ], [ 9.254766182381642, 45.481238331856453 ], [ 9.254940580058573, 45.480878672823245 ], [ 9.255047262739426, 45.480648137857521 ], [ 9.25521876437924, 45.480277322070847 ], [ 9.255528459662589, 45.480347401827274 ], [ 9.255632870424455, 45.48027692859759 ], [ 9.255512647192987, 45.47997203813842 ], [ 9.255887747197457, 45.480051036253137 ], [ 9.256268182088679, 45.479729898609158 ], [ 9.256076818224761, 45.479472536288007 ], [ 9.256411542342397, 45.479553849959025 ], [ 9.256599515693859, 45.47924645606308 ], [ 9.257214610263757, 45.479300950967307 ], [ 9.257670857837365, 45.477876053312123 ], [ 9.256310101404249, 45.47756260374149 ], [ 9.256321853378365, 45.477536581692632 ], [ 9.256320776332167, 45.477535935850312 ], [ 9.256465342803189, 45.477215018198422 ], [ 9.255995226931075, 45.476933973604488 ], [ 9.255834145655284, 45.476991421061811 ], [ 9.255615379007025, 45.476858008867993 ], [ 9.255581772312121, 45.476869421617977 ], [ 9.255341614113959, 45.476715290231027 ], [ 9.255320366418314, 45.476721605015442 ], [ 9.255213433115919, 45.476654786649483 ], [ 9.254779216487526, 45.476792723051567 ], [ 9.254704893049286, 45.476693490226872 ], [ 9.254456664477219, 45.476707507809166 ], [ 9.254345990022198, 45.476566265192815 ], [ 9.254306266240441, 45.476568827816557 ], [ 9.254295276546504, 45.476554295213397 ], [ 9.254001456165962, 45.476571311764154 ], [ 9.253923301472486, 45.476472072909218 ], [ 9.253902838384034, 45.476473396169908 ], [ 9.253806666855422, 45.47635943725021 ], [ 9.253341702777851, 45.476394838838381 ], [ 9.253137103077362, 45.476828705282465 ], [ 9.252007794462141, 45.476568351324815 ], [ 9.251971492180729, 45.476629921999276 ], [ 9.251768040352312, 45.476590106092097 ], [ 9.251571462284415, 45.477020582382764 ], [ 9.250523014282356, 45.47678060772548 ], [ 9.250421715982348, 45.476720902938546 ], [ 9.250359965594789, 45.476743287178124 ], [ 9.249509693954511, 45.47654866218658 ], [ 9.249681653487695, 45.476177267806008 ], [ 9.24909830431532, 45.47604376259978 ], [ 9.249175994735777, 45.475874866257833 ], [ 9.248172540168273, 45.475831884929853 ], [ 9.248076818622334, 45.475809976823854 ], [ 9.248012810377672, 45.475781418485973 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.222457577171919, 45.47559625392558 ], [ 9.222482477544796, 45.474346751253137 ], [ 9.222479173191305, 45.474345386485467 ], [ 9.222479177550072, 45.474345153622899 ], [ 9.222456285716056, 45.474335933470954 ], [ 9.222454156624254, 45.474335054110313 ], [ 9.222454129623209, 45.474335065060288 ], [ 9.222409178557934, 45.474316960080536 ], [ 9.221193721315791, 45.474833997933608 ], [ 9.221096940829534, 45.474753265751431 ], [ 9.220795938390705, 45.475003204144436 ], [ 9.220579274339261, 45.475095366223918 ], [ 9.220273484008686, 45.475219367063239 ], [ 9.219776813869876, 45.475431627994944 ], [ 9.219599436718314, 45.475378879706291 ], [ 9.219496941504676, 45.475507275351227 ], [ 9.218275785124577, 45.475495235883443 ], [ 9.218229640238233, 45.477840932797186 ], [ 9.219248069214364, 45.477849396227455 ], [ 9.220056596946742, 45.478303472732001 ], [ 9.220056630496485, 45.478303491573577 ], [ 9.220844755165043, 45.47764072637041 ], [ 9.220849184920512, 45.477643318274531 ], [ 9.221479365074934, 45.477107116362816 ], [ 9.222428599096844, 45.477122165536166 ], [ 9.222457577171919, 45.47559625392558 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.176310273080734, 45.469317845845303 ], [ 9.176050274307688, 45.469150166938441 ], [ 9.175910359399193, 45.469129386074684 ], [ 9.175575505722433, 45.468494747760936 ], [ 9.175289732128197, 45.468716321758038 ], [ 9.175056048540039, 45.468679244051287 ], [ 9.174155608603606, 45.469548043742613 ], [ 9.174090856649967, 45.469588178555789 ], [ 9.174090579988208, 45.469610786028966 ], [ 9.173840138075272, 45.469852421051051 ], [ 9.173211952797887, 45.470421051964841 ], [ 9.173276869756142, 45.470482703340359 ], [ 9.173230163840559, 45.470548739492656 ], [ 9.173193141365038, 45.470606425318508 ], [ 9.173192780350639, 45.470606988619984 ], [ 9.173130208039657, 45.470704485441019 ], [ 9.172676691973885, 45.470848159905067 ], [ 9.172694906151239, 45.470876475963465 ], [ 9.172646907422967, 45.470892324540607 ], [ 9.172827363699342, 45.471176356013359 ], [ 9.172546430977613, 45.471614077681394 ], [ 9.173048081794033, 45.471692978966274 ], [ 9.17305935650757, 45.471708366094468 ], [ 9.173077779917238, 45.471791431326338 ], [ 9.17316701606334, 45.471903001561664 ], [ 9.17306268459946, 45.471989682756721 ], [ 9.172665932028981, 45.472103941548255 ], [ 9.172595307162348, 45.472063502861644 ], [ 9.171952539568917, 45.471939653816399 ], [ 9.171415066696092, 45.472043537057516 ], [ 9.171115086563884, 45.472167007174221 ], [ 9.1709847384674, 45.472223320751851 ], [ 9.17085868822029, 45.472281777774619 ], [ 9.170707657243128, 45.472353045553035 ], [ 9.17060264824201, 45.472404679750312 ], [ 9.170472435134121, 45.472471742189008 ], [ 9.170358238484031, 45.472534631783269 ], [ 9.170212947409258, 45.472619748913964 ], [ 9.170095253271791, 45.472693197233383 ], [ 9.170000147958607, 45.472756478169835 ], [ 9.169913801212816, 45.472816490777923 ], [ 9.169835922821729, 45.472874038152391 ], [ 9.169784630258116, 45.472912434064071 ], [ 9.169691125504755, 45.472982948894824 ], [ 9.169580110734897, 45.473067716654057 ], [ 9.169523150369493, 45.47311102982583 ], [ 9.169441097028789, 45.473173738834276 ], [ 9.169334422393892, 45.473254499406693 ], [ 9.16912761918411, 45.473412211348588 ], [ 9.168926101518524, 45.47361685118242 ], [ 9.168822764410985, 45.473923734768285 ], [ 9.168846862278771, 45.47420593244437 ], [ 9.168995860552046, 45.474481537054608 ], [ 9.16919440901566, 45.47465326976927 ], [ 9.16939246054249, 45.47478293150958 ], [ 9.169406473941519, 45.474792101912122 ], [ 9.16940236859895, 45.474795133473137 ], [ 9.170341684773664, 45.475402706912966 ], [ 9.170347104722765, 45.475406288160741 ], [ 9.170362775560911, 45.475416348789501 ], [ 9.170497456216072, 45.475503461800699 ], [ 9.171457451002199, 45.476130588415849 ], [ 9.172336703438681, 45.47563796863664 ], [ 9.172364664751603, 45.475623620670191 ], [ 9.172370116198664, 45.475621236776284 ], [ 9.17238827166862, 45.47561481597505 ], [ 9.172388868285038, 45.475614642624109 ], [ 9.172413919667909, 45.475612539428347 ], [ 9.17242770557144, 45.475618507169841 ], [ 9.172480008834116, 45.475642161577412 ], [ 9.172480404730521, 45.475642555388248 ], [ 9.172520830681487, 45.475688185467142 ], [ 9.172520281969986, 45.475694538484824 ], [ 9.172518023911136, 45.475701237703831 ], [ 9.172515684516819, 45.47570630700389 ], [ 9.172508069029794, 45.475719408043396 ], [ 9.17250440930481, 45.47572327758968 ], [ 9.171815175878248, 45.476381488123721 ], [ 9.1727385137428, 45.476981548621715 ], [ 9.172751302040174, 45.476989312057228 ], [ 9.173062107426468, 45.477189355228134 ], [ 9.173257292832147, 45.477315997515099 ], [ 9.173414920091634, 45.477417263320504 ], [ 9.173535497217205, 45.47749504215367 ], [ 9.173693996952217, 45.477597223574087 ], [ 9.1738441516016, 45.477694488875905 ], [ 9.173950996269811, 45.477763812387082 ], [ 9.174029523913493, 45.477814156282733 ], [ 9.17405106063052, 45.477828405665136 ], [ 9.174109176609941, 45.477862684109432 ], [ 9.174186507157017, 45.477903302188658 ], [ 9.174249476357659, 45.477930592903213 ], [ 9.17430142109381, 45.47795208000165 ], [ 9.174375104276216, 45.477977857896477 ], [ 9.174431369408282, 45.477994965802722 ], [ 9.174510149162689, 45.478016514062851 ], [ 9.174591414999563, 45.478033054283351 ], [ 9.174642030999104, 45.478041874282162 ], [ 9.174725807793914, 45.478054019305382 ], [ 9.174807287490099, 45.478060771453329 ], [ 9.174863029997486, 45.47806382281847 ], [ 9.174941539599773, 45.47806591170373 ], [ 9.175021143933598, 45.478063549471528 ], [ 9.175102633754602, 45.478058837478727 ], [ 9.175237480457467, 45.478043136868116 ], [ 9.175326311100408, 45.478024761774648 ], [ 9.175371797279363, 45.478014946359231 ], [ 9.175469947872587, 45.477988880701069 ], [ 9.175588161167482, 45.477947997502 ], [ 9.175664652840782, 45.477914522136871 ], [ 9.175713290227188, 45.477891602741515 ], [ 9.175772737758379, 45.477860093236693 ], [ 9.175830595947961, 45.477825663942681 ], [ 9.175887230160084, 45.477787869449593 ], [ 9.175930653621469, 45.477755381479795 ], [ 9.175949110954011, 45.477740391692898 ], [ 9.17603662571708, 45.477673624457118 ], [ 9.176054474303074, 45.477660101944345 ], [ 9.176188546968181, 45.477558158598356 ], [ 9.176237217469582, 45.477520004299222 ], [ 9.176269712866018, 45.477494931320912 ], [ 9.176355557124877, 45.477429572834069 ], [ 9.176534220714895, 45.477293697396753 ], [ 9.176641251310997, 45.477212365049155 ], [ 9.176672745479181, 45.477232830128571 ], [ 9.176734936185861, 45.477413380128084 ], [ 9.176678262262659, 45.477528768304524 ], [ 9.176782438738039, 45.477551287156885 ], [ 9.176787751319518, 45.477566710333718 ], [ 9.176786657090906, 45.477569689766149 ], [ 9.176788897713722, 45.47757003847741 ], [ 9.176812242895931, 45.477637812737512 ], [ 9.176872583170859, 45.477623439161277 ], [ 9.176879582055523, 45.477640287472106 ], [ 9.177021260224102, 45.477606201117673 ], [ 9.177075624522331, 45.477614661773131 ], [ 9.177423177228414, 45.477689787104318 ], [ 9.177489025662105, 45.477827745865881 ], [ 9.177557303806712, 45.477792105307685 ], [ 9.177558540427697, 45.4777979515504 ], [ 9.177920980071429, 45.47779738759386 ], [ 9.178022765946963, 45.477819388375657 ], [ 9.178058752339458, 45.477854666292018 ], [ 9.178142320174901, 45.477986741465898 ], [ 9.178541747874293, 45.477889354554812 ], [ 9.178561952159299, 45.477890849371448 ], [ 9.17857275699115, 45.477891514514695 ], [ 9.178691993234493, 45.477920567247345 ], [ 9.178844320290075, 45.477949499470839 ], [ 9.178888149652568, 45.477996053603675 ], [ 9.178943758143594, 45.477968386063523 ], [ 9.178965544162814, 45.477972523948019 ], [ 9.179061289532012, 45.477986734043029 ], [ 9.179121458082347, 45.47799598742575 ], [ 9.179252329720414, 45.478014612912752 ], [ 9.179330431262052, 45.478025817559661 ], [ 9.179405017681354, 45.47803676570539 ], [ 9.179510554003009, 45.478051921913334 ], [ 9.17953631417145, 45.478055613589312 ], [ 9.179616752793088, 45.478067039852498 ], [ 9.179880110468046, 45.478104734256746 ], [ 9.180438291937538, 45.478185493195625 ], [ 9.180454636387649, 45.478188122921004 ], [ 9.180463577470464, 45.478189151492785 ], [ 9.180737644904074, 45.478228803030227 ], [ 9.18078463561285, 45.478206580354218 ], [ 9.180964093374966, 45.478198661440807 ], [ 9.181041291654751, 45.478248357444343 ], [ 9.181101110102414, 45.478192615127092 ], [ 9.181144054256084, 45.478190720040985 ], [ 9.181649879626621, 45.477977661364882 ], [ 9.18191690060503, 45.477737819042083 ], [ 9.182021179614198, 45.47756001709304 ], [ 9.182100596083316, 45.477353762120671 ], [ 9.182135626802987, 45.477235621576781 ], [ 9.182143878732532, 45.477107282301972 ], [ 9.182159471341905, 45.477077326707764 ], [ 9.182225424757537, 45.476696024014856 ], [ 9.182246271157432, 45.476575394980507 ], [ 9.182307546681116, 45.476221575795535 ], [ 9.182354534476838, 45.475949217977366 ], [ 9.182397311003136, 45.47570274852356 ], [ 9.182397352495787, 45.475702508659879 ], [ 9.182466992169884, 45.475300518055363 ], [ 9.182469828200638, 45.475283566349979 ], [ 9.182473787769391, 45.475261113080165 ], [ 9.182497357360905, 45.475125781708016 ], [ 9.182508330881943, 45.47506444049754 ], [ 9.182523996374185, 45.474972825613676 ], [ 9.182653245457162, 45.474230690432421 ], [ 9.182651447012944, 45.474230540986625 ], [ 9.182698001959615, 45.473958110240844 ], [ 9.182340815700343, 45.473728166682491 ], [ 9.182602181747058, 45.473532177481047 ], [ 9.181733312964395, 45.47299839068905 ], [ 9.181559027138464, 45.472844811613491 ], [ 9.181429117139629, 45.472760167024681 ], [ 9.181304501344014, 45.472679273130524 ], [ 9.181194426210018, 45.472564621244544 ], [ 9.181137718479057, 45.472513355483734 ], [ 9.181114856612373, 45.472494359805204 ], [ 9.181172487609425, 45.47245060560661 ], [ 9.181213981920406, 45.472419190369919 ], [ 9.181427177448812, 45.472258453613748 ], [ 9.181435135577409, 45.472252455014811 ], [ 9.181540837581075, 45.472291710565209 ], [ 9.182244222782066, 45.471634488460275 ], [ 9.182267867940306, 45.47160953093892 ], [ 9.182327546561016, 45.471554476131281 ], [ 9.182460677984507, 45.471409394541439 ], [ 9.182560799198889, 45.471285722897122 ], [ 9.182601689821567, 45.471226266066573 ], [ 9.182713696288392, 45.471232813448417 ], [ 9.182935598650186, 45.470304884529398 ], [ 9.182945742866867, 45.47018862089547 ], [ 9.18300524713724, 45.470173455718388 ], [ 9.182952515419487, 45.469975752752148 ], [ 9.18295284101147, 45.469971045531217 ], [ 9.182940766665478, 45.469868535195758 ], [ 9.182930219172079, 45.469778913989451 ], [ 9.182898836362037, 45.469628192441263 ], [ 9.182860290898475, 45.469529475191599 ], [ 9.183010086477083, 45.468409207175434 ], [ 9.18194712430795, 45.468614471949344 ], [ 9.181914660888053, 45.468603929492801 ], [ 9.18184778292115, 45.468584582240418 ], [ 9.181845052652642, 45.468576972734525 ], [ 9.181652197211951, 45.46832952542151 ], [ 9.181489694705926, 45.468226968726597 ], [ 9.181487027088455, 45.468225190551642 ], [ 9.181463958260299, 45.468210501075831 ], [ 9.181434649677575, 45.468192217580544 ], [ 9.181381984431191, 45.468069735275584 ], [ 9.180902084359493, 45.467987860427542 ], [ 9.180873494143318, 45.467980726792 ], [ 9.180838014311075, 45.46797304064998 ], [ 9.180810290014769, 45.467967236140794 ], [ 9.180784461861437, 45.467962266717151 ], [ 9.180758557073315, 45.467957449947185 ], [ 9.180712390582842, 45.467949818937569 ], [ 9.180685583972402, 45.467946077205887 ], [ 9.180661511168791, 45.467942734118566 ], [ 9.180612439944269, 45.467937059156405 ], [ 9.180594781600391, 45.467935430897562 ], [ 9.180546316666165, 45.467927162115082 ], [ 9.180362148952822, 45.467883131248684 ], [ 9.180069449227259, 45.467864067027222 ], [ 9.179964111561093, 45.467731357008944 ], [ 9.178797626284853, 45.467969941239545 ], [ 9.178573703968784, 45.468046062883445 ], [ 9.178509849654608, 45.468070041795734 ], [ 9.178482326745923, 45.468078353722206 ], [ 9.178478513348752, 45.468079678702047 ], [ 9.178451150446827, 45.468086136932463 ], [ 9.178345370969515, 45.468125521670899 ], [ 9.178279546284909, 45.468150917157047 ], [ 9.178188789691799, 45.468184485539929 ], [ 9.178089245748279, 45.468220425861901 ], [ 9.17798362731582, 45.468258605976104 ], [ 9.17787947085252, 45.468295328798426 ], [ 9.177703489832162, 45.468366955097359 ], [ 9.177517565199631, 45.468445240968684 ], [ 9.177439397448323, 45.468498654357646 ], [ 9.177432973234525, 45.468501968230939 ], [ 9.177308761226419, 45.468566920706273 ], [ 9.17715785467025, 45.468666176253812 ], [ 9.177074368317315, 45.468731683789002 ], [ 9.177026637317283, 45.468768648833141 ], [ 9.176922268816135, 45.46884794966499 ], [ 9.17686392921955, 45.468902391381171 ], [ 9.176808381464522, 45.46893808008479 ], [ 9.176665641097577, 45.469047715626921 ], [ 9.176530733654843, 45.469149836786492 ], [ 9.176406713542654, 45.469244408875575 ], [ 9.176310273080734, 45.469317845845303 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.197103196941267, 45.471493959668173 ], [ 9.196996979300868, 45.471488374092473 ], [ 9.196977378240272, 45.472110328913502 ], [ 9.196515196895465, 45.472072126682448 ], [ 9.196083317782572, 45.472221054319874 ], [ 9.19607012271079, 45.472223515880138 ], [ 9.195416876204252, 45.472446028990056 ], [ 9.195387162506789, 45.472453891807248 ], [ 9.195236117904146, 45.472512193530434 ], [ 9.195121441779785, 45.472568126785866 ], [ 9.195012627464934, 45.472634291421265 ], [ 9.194901609096915, 45.472717538561838 ], [ 9.194786736155233, 45.472832227853381 ], [ 9.194689562688831, 45.472972262773098 ], [ 9.194634432093638, 45.473106459163354 ], [ 9.194607808192217, 45.473226987200349 ], [ 9.19460457074732, 45.473350704704359 ], [ 9.194621863736343, 45.473460170425291 ], [ 9.194656477133121, 45.473570900256448 ], [ 9.194703548028412, 45.473662033089923 ], [ 9.194885125261887, 45.473949110709526 ], [ 9.194982918603246, 45.474105661946581 ], [ 9.194799774461869, 45.474119143076251 ], [ 9.195592267228349, 45.475181874280338 ], [ 9.195659836135681, 45.475564900830648 ], [ 9.195685972465524, 45.475563490371641 ], [ 9.195690219494018, 45.475599780962582 ], [ 9.195865590967072, 45.475589502033714 ], [ 9.19589076869196, 45.47562943389358 ], [ 9.195922206984916, 45.475674093656679 ], [ 9.195945927163926, 45.475719145525495 ], [ 9.195977121227925, 45.475764953236684 ], [ 9.196095203928646, 45.475945954261867 ], [ 9.196181543904453, 45.476083081719672 ], [ 9.196401281390136, 45.476433522787509 ], [ 9.196691181867601, 45.476897085122303 ], [ 9.197071808497197, 45.47749824676054 ], [ 9.197878833678566, 45.477756779721801 ], [ 9.197935473433535, 45.47774986280897 ], [ 9.197940600237406, 45.477753302261064 ], [ 9.198837090607142, 45.477770024917668 ], [ 9.199408384815609, 45.477510831773209 ], [ 9.199725339032391, 45.477366202460487 ], [ 9.199776698517244, 45.477341435017678 ], [ 9.200216336056606, 45.477140169878567 ], [ 9.200772879422129, 45.476885443884584 ], [ 9.201219618115926, 45.476677943877675 ], [ 9.201387880531293, 45.476601871177373 ], [ 9.201396378687203, 45.476596434606478 ], [ 9.201403992236379, 45.476594363523724 ], [ 9.203080526319432, 45.475823841183782 ], [ 9.203109273620699, 45.475814734042103 ], [ 9.203269589386526, 45.475758779592041 ], [ 9.203449258025486, 45.475667897813416 ], [ 9.203515895918331, 45.475652484359131 ], [ 9.203548232306231, 45.4756397771895 ], [ 9.203603447141328, 45.475628903198604 ], [ 9.203776282329084, 45.475579906977387 ], [ 9.204354114174009, 45.475345505575632 ], [ 9.204355338050838, 45.47534527039123 ], [ 9.205442215579886, 45.474980830845624 ], [ 9.205395044238626, 45.474684412191216 ], [ 9.205526702261869, 45.474573591298075 ], [ 9.205665270763481, 45.474529199709615 ], [ 9.205631458968863, 45.474485413709068 ], [ 9.205712183286417, 45.474417464816142 ], [ 9.20553899617633, 45.474246277161903 ], [ 9.205594575939944, 45.474222266734266 ], [ 9.205371046020238, 45.473340280334348 ], [ 9.205131482529664, 45.473170896737201 ], [ 9.205002087838253, 45.473047214870739 ], [ 9.205001836382085, 45.473046961655392 ], [ 9.204597364539742, 45.472645726193846 ], [ 9.204554998655542, 45.472602790741306 ], [ 9.203536513057939, 45.471600629312775 ], [ 9.203503583690944, 45.471568104114198 ], [ 9.203442768565399, 45.471516413560742 ], [ 9.203367884946244, 45.471460909156391 ], [ 9.203271470460423, 45.471401517156984 ], [ 9.203156517946704, 45.471344054433494 ], [ 9.203033066358252, 45.471295701115068 ], [ 9.202952050396545, 45.471271441879345 ], [ 9.202867957776213, 45.47124794825374 ], [ 9.202753087015228, 45.471225941403119 ], [ 9.202686193316612, 45.471216410517123 ], [ 9.202658491986719, 45.471213115685266 ], [ 9.202615337969384, 45.471206813424807 ], [ 9.2025288899688, 45.471197319470363 ], [ 9.202404596635773, 45.471186519871132 ], [ 9.202247149661897, 45.471185743734168 ], [ 9.202147904884777, 45.471192903994513 ], [ 9.202005342012614, 45.471207239303773 ], [ 9.201847126590959, 45.471243652132742 ], [ 9.201656044765386, 45.471298294088072 ], [ 9.201160946443494, 45.471549683639907 ], [ 9.201147483395001, 45.47153182109971 ], [ 9.201113185044798, 45.471486513002056 ], [ 9.201078633773855, 45.471435710315944 ], [ 9.201007922166406, 45.471358742359151 ], [ 9.200990825140467, 45.471336467980102 ], [ 9.200981520536903, 45.471324307863441 ], [ 9.20079974968619, 45.471092358103959 ], [ 9.200493859706011, 45.470690814856553 ], [ 9.199782601466191, 45.470488251159743 ], [ 9.199644492491375, 45.470448000133416 ], [ 9.199642957790433, 45.470447563963162 ], [ 9.199633017895373, 45.470444430810986 ], [ 9.199619898885771, 45.47044032883759 ], [ 9.19959639323805, 45.470433248780743 ], [ 9.1995799043061, 45.470428464805259 ], [ 9.199515438240676, 45.470408896499848 ], [ 9.199495432062035, 45.470403035881596 ], [ 9.199242658299468, 45.470326782096315 ], [ 9.197856825078695, 45.469915579370834 ], [ 9.197655079951634, 45.47024465333395 ], [ 9.197230099706005, 45.470220723832213 ], [ 9.197127023486653, 45.471250766249327 ], [ 9.197126827803919, 45.471252233966752 ], [ 9.197103196941267, 45.471493959668173 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.156811526344159, 45.468708210423181 ], [ 9.156876837873027, 45.469119645741344 ], [ 9.156944964445509, 45.469208783733677 ], [ 9.156703290879433, 45.469409382424764 ], [ 9.157660722550657, 45.469980827964477 ], [ 9.158390546457293, 45.471022893568289 ], [ 9.158633260179224, 45.470849295838384 ], [ 9.159194548673309, 45.47110730730023 ], [ 9.159377302855159, 45.471535733739927 ], [ 9.159767765921407, 45.471738950737304 ], [ 9.159346011207631, 45.471970472540725 ], [ 9.160446013505513, 45.473196413831275 ], [ 9.161298372693478, 45.472896564814548 ], [ 9.161701365487776, 45.473109582923577 ], [ 9.16189095384412, 45.473234113953659 ], [ 9.161974178081202, 45.473277845200577 ], [ 9.161979607258013, 45.473280491032732 ], [ 9.161411940094508, 45.47368908280086 ], [ 9.162634632260286, 45.474529934088309 ], [ 9.162644801081973, 45.474538553527907 ], [ 9.162664312611337, 45.474554323022353 ], [ 9.162684980968793, 45.474570266263271 ], [ 9.162697327052031, 45.474579615604029 ], [ 9.162711401909348, 45.474589974753087 ], [ 9.162722655311239, 45.474598024979201 ], [ 9.162736049857383, 45.474607338251005 ], [ 9.162755468515677, 45.474620461437198 ], [ 9.162766732115267, 45.474627859687089 ], [ 9.162643000003252, 45.474722151753603 ], [ 9.162621551214061, 45.474738207424551 ], [ 9.162139896441497, 45.475104969818197 ], [ 9.162103210823195, 45.475130884060896 ], [ 9.162043674828226, 45.475181797036861 ], [ 9.162003228519684, 45.475219897710112 ], [ 9.161982624982878, 45.475241659222768 ], [ 9.161967416454218, 45.475257773524071 ], [ 9.161935277786805, 45.47529468260521 ], [ 9.161908392952576, 45.475329979837923 ], [ 9.161874027531361, 45.475378579223751 ], [ 9.161835609537533, 45.475446547272306 ], [ 9.161815961238455, 45.475490630085915 ], [ 9.161797905379908, 45.475535431801418 ], [ 9.16178589013993, 45.475575271233133 ], [ 9.161779590966981, 45.475597664052344 ], [ 9.161770539480553, 45.475640708200238 ], [ 9.161767691477896, 45.475659078085329 ], [ 9.161760154565695, 45.475713203095779 ], [ 9.161760283952773, 45.475761512855613 ], [ 9.161760360264791, 45.47579690321097 ], [ 9.161765709534336, 45.475844572350546 ], [ 9.161769446267506, 45.475867806388138 ], [ 9.161776056818919, 45.475904413432588 ], [ 9.161788421874716, 45.475951717857484 ], [ 9.161798255086554, 45.475980856024833 ], [ 9.161800923805476, 45.47598831282555 ], [ 9.161807123305829, 45.476005764659298 ], [ 9.161821832843053, 45.476040690030679 ], [ 9.161837919840831, 45.476074416590933 ], [ 9.161850742861429, 45.476098327043196 ], [ 9.16185846427147, 45.476112366424317 ], [ 9.161869206393382, 45.476131150133241 ], [ 9.161888910888294, 45.476161027658705 ], [ 9.161899026803855, 45.47617577817487 ], [ 9.161904494273195, 45.476183468233621 ], [ 9.161923032341344, 45.47620949616028 ], [ 9.161953845991915, 45.476246487473318 ], [ 9.161965906316951, 45.476260056560548 ], [ 9.162057890185014, 45.476363105786078 ], [ 9.162081645038326, 45.476378470196515 ], [ 9.162045254447262, 45.476421335478015 ], [ 9.162013406347819, 45.476468633445876 ], [ 9.161961816467148, 45.476548911120574 ], [ 9.161933612426706, 45.476625605434229 ], [ 9.161912279534032, 45.47668615644767 ], [ 9.161891931491969, 45.476797658143738 ], [ 9.161892210813855, 45.476895203879387 ], [ 9.161901766818874, 45.476973960456498 ], [ 9.161921294931284, 45.477052024186655 ], [ 9.161957379477844, 45.477148540931736 ], [ 9.162028085487172, 45.477269438541832 ], [ 9.162103722452677, 45.477357720741786 ], [ 9.162173938943143, 45.477427987531314 ], [ 9.16224773639016, 45.477486157811171 ], [ 9.162295427667216, 45.477519574004823 ], [ 9.162615532302965, 45.477727628678927 ], [ 9.162238905104724, 45.477940829051718 ], [ 9.163397541703203, 45.478804131205052 ], [ 9.163539156604999, 45.478925605991208 ], [ 9.163540903550805, 45.478927119841146 ], [ 9.164739782989169, 45.479966007268253 ], [ 9.164739783340623, 45.479966006932081 ], [ 9.164739783367441, 45.479966006955323 ], [ 9.165782983521966, 45.47896809340741 ], [ 9.166062580379467, 45.479046792471252 ], [ 9.166356962678732, 45.478414353307386 ], [ 9.16643966152259, 45.478331907124883 ], [ 9.166439698583662, 45.478331868969917 ], [ 9.167024073430566, 45.477749270902656 ], [ 9.167176513505849, 45.477620368703015 ], [ 9.167145961354221, 45.477604748268341 ], [ 9.167263086960467, 45.47748416137734 ], [ 9.166950453426821, 45.477340188080511 ], [ 9.166856553378786, 45.476852972883869 ], [ 9.166304524705678, 45.476876925394279 ], [ 9.166275902452389, 45.476861029788452 ], [ 9.166725815868485, 45.476270348978332 ], [ 9.166141745622095, 45.47589746671089 ], [ 9.16566584323299, 45.474828806211043 ], [ 9.165659040206203, 45.47483026512235 ], [ 9.165653686916578, 45.474818463877327 ], [ 9.165639657413372, 45.474792066901898 ], [ 9.165634743498241, 45.474782576386168 ], [ 9.165631215362515, 45.474775935680498 ], [ 9.165627607120143, 45.474769143991047 ], [ 9.165620608542552, 45.474755718276221 ], [ 9.165616499122581, 45.474747994717738 ], [ 9.165611983446569, 45.474739292074432 ], [ 9.165608057085359, 45.474731863495244 ], [ 9.165604919990793, 45.474725958623814 ], [ 9.16560002097804, 45.474716512406722 ], [ 9.165599165429288, 45.474714867106329 ], [ 9.165595295147551, 45.474707080204951 ], [ 9.165587564974922, 45.474692857275848 ], [ 9.165578361642375, 45.474675904645046 ], [ 9.165563346548073, 45.474650039296094 ], [ 9.165562591026033, 45.474648792144713 ], [ 9.165556910458326, 45.474639135050438 ], [ 9.165542089476599, 45.474615434330907 ], [ 9.165531040373526, 45.474599003390885 ], [ 9.165526568203804, 45.474592547862684 ], [ 9.165532191802397, 45.474591384284935 ], [ 9.165069257853498, 45.473533609779601 ], [ 9.16505152998546, 45.473493101889105 ], [ 9.164996861843514, 45.473368185686859 ], [ 9.164977721039165, 45.473324448986972 ], [ 9.164940502318176, 45.473239404078981 ], [ 9.164975562196062, 45.473235394846512 ], [ 9.16438884513302, 45.47193340900408 ], [ 9.164541489219694, 45.471816800123527 ], [ 9.164316051927415, 45.471671040768392 ], [ 9.163380587903875, 45.470584145250513 ], [ 9.163355671610628, 45.470556013745764 ], [ 9.163319202673149, 45.470454249291038 ], [ 9.163230825997601, 45.470413875649839 ], [ 9.163030407428861, 45.470182319642305 ], [ 9.162944638978841, 45.470083234389676 ], [ 9.162929589326385, 45.470065460611806 ], [ 9.162928576811906, 45.470064278696881 ], [ 9.162920222306472, 45.470054927040614 ], [ 9.162915164197523, 45.470049277191087 ], [ 9.162893861735915, 45.470026065232865 ], [ 9.162828505437947, 45.469947853048531 ], [ 9.162687439808256, 45.4697860787563 ], [ 9.162579566504458, 45.469651370568315 ], [ 9.162521684629748, 45.469612498849301 ], [ 9.162510080895782, 45.469598877017361 ], [ 9.162468931122479, 45.469546803646963 ], [ 9.16207836896228, 45.469081135166164 ], [ 9.162074197137926, 45.469076665486519 ], [ 9.162065380300511, 45.469061844825298 ], [ 9.161868336027785, 45.468608475334577 ], [ 9.161812607110663, 45.468480307800249 ], [ 9.161666908476244, 45.468140547693544 ], [ 9.161289223837221, 45.467737555020527 ], [ 9.160585137638751, 45.467603505513956 ], [ 9.160133744042714, 45.467633018849561 ], [ 9.160047953603874, 45.467639639175964 ], [ 9.159628867366347, 45.467668842725594 ], [ 9.159079151521976, 45.467707203685009 ], [ 9.158701094898841, 45.467734401173658 ], [ 9.158673933497237, 45.467736620760448 ], [ 9.158672818776354, 45.467736583662798 ], [ 9.158332443573745, 45.467752114592386 ], [ 9.158065591564554, 45.467779488051178 ], [ 9.157656167669543, 45.467848369001167 ], [ 9.157536735487165, 45.46791587050334 ], [ 9.157465747686828, 45.467939450300314 ], [ 9.157127705685962, 45.468162912214929 ], [ 9.156948401331734, 45.468383115676097 ], [ 9.156811526344159, 45.468708210423181 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.105359009365676, 45.456895564706542 ], [ 9.105357499056067, 45.456899295448352 ], [ 9.105333585843979, 45.456958382800423 ], [ 9.105318689556555, 45.457032460894872 ], [ 9.105308163391681, 45.457092362340177 ], [ 9.105308316387564, 45.457174557544718 ], [ 9.105364947660947, 45.457893107740347 ], [ 9.105996671668157, 45.458016533628943 ], [ 9.105807026828908, 45.458501203614404 ], [ 9.105803919659781, 45.458509918634874 ], [ 9.105795797769659, 45.458530469791938 ], [ 9.104818965850797, 45.458339935052912 ], [ 9.104539263459925, 45.459032154320084 ], [ 9.104365209466657, 45.459024660509591 ], [ 9.104363694164286, 45.45902257025277 ], [ 9.104349531468959, 45.459003920450428 ], [ 9.104336672152439, 45.45898778274838 ], [ 9.104319910429124, 45.458967669905618 ], [ 9.10428974052479, 45.458933424916886 ], [ 9.104260625992007, 45.458904030743106 ], [ 9.104244891425328, 45.458888716679127 ], [ 9.104226454621939, 45.458871546081788 ], [ 9.104208992017453, 45.458855899404128 ], [ 9.104193868367462, 45.458842905280456 ], [ 9.104173038872297, 45.458825651848962 ], [ 9.104155772355432, 45.458811919280969 ], [ 9.104137227325756, 45.458797720319915 ], [ 9.104116166403937, 45.458782237528744 ], [ 9.10409705107854, 45.458768699785239 ], [ 9.104076414076433, 45.458754648474425 ], [ 9.10405672337984, 45.458741755559707 ], [ 9.104037167395809, 45.458729433535311 ], [ 9.104281595217877, 45.458233737991328 ], [ 9.104249588526413, 45.458208195510146 ], [ 9.102285184068705, 45.458501470274015 ], [ 9.102271343607217, 45.458503240148694 ], [ 9.102251370913395, 45.458505881912473 ], [ 9.102234625989279, 45.458508160159525 ], [ 9.102216737205742, 45.458510670454423 ], [ 9.102199389731249, 45.458513174442508 ], [ 9.102179614462967, 45.458516113158687 ], [ 9.102167627288575, 45.458517949175757 ], [ 9.102158646049341, 45.458519343888646 ], [ 9.102145818279451, 45.458521357544043 ], [ 9.102132443064844, 45.458523492850183 ], [ 9.101890734806879, 45.458559742840016 ], [ 9.100282321651719, 45.458239822117982 ], [ 9.099748858513502, 45.459562786359172 ], [ 9.099200659009723, 45.459658398514357 ], [ 9.098499010337834, 45.459515442648559 ], [ 9.098377670666347, 45.459801931778919 ], [ 9.097920958895733, 45.459881580546742 ], [ 9.097918801606209, 45.45988195563902 ], [ 9.097301805011707, 45.459989554525642 ], [ 9.09671170425446, 45.459953387422786 ], [ 9.096689380601504, 45.460096352361241 ], [ 9.096582176938737, 45.460115046728554 ], [ 9.096531220724088, 45.460414655056852 ], [ 9.096486033994619, 45.460411802217877 ], [ 9.096366328674558, 45.461350624019389 ], [ 9.095817765651718, 45.461242236628671 ], [ 9.095811126425733, 45.461258783090649 ], [ 9.095786792984574, 45.461253920540479 ], [ 9.095577017995401, 45.461153297341703 ], [ 9.095548366387197, 45.461224806595119 ], [ 9.09550133527215, 45.461203559586274 ], [ 9.095331771732582, 45.461471563350457 ], [ 9.094795730105004, 45.462151757613604 ], [ 9.094556224569489, 45.462329734218621 ], [ 9.094179250378509, 45.46260985449419 ], [ 9.094167762742572, 45.462606266369974 ], [ 9.094047138839016, 45.462708019928264 ], [ 9.094009602017699, 45.46273591265021 ], [ 9.09330793376099, 45.463257320294893 ], [ 9.09328176488976, 45.463227728677033 ], [ 9.09322347950558, 45.463172492540274 ], [ 9.09315968422324, 45.463119562571869 ], [ 9.093080777671682, 45.463064165022729 ], [ 9.092984922325035, 45.463007223342125 ], [ 9.092903948986523, 45.462968654122548 ], [ 9.092871736587627, 45.46295462076408 ], [ 9.092271511262354, 45.46270028040216 ], [ 9.092243188367375, 45.462686693163654 ], [ 9.091972826836846, 45.462567143845945 ], [ 9.091934172275627, 45.462546885281455 ], [ 9.091803801204701, 45.462494088564242 ], [ 9.091963820828687, 45.462191983579061 ], [ 9.091114138471747, 45.462086455266764 ], [ 9.090996203436026, 45.462029822197692 ], [ 9.090765657763882, 45.461969192552885 ], [ 9.090643097280108, 45.461950128702675 ], [ 9.090607515735547, 45.461945995515109 ], [ 9.090569154714137, 45.461941559949139 ], [ 9.090498865237457, 45.46193612041818 ], [ 9.09042501582887, 45.46193344387946 ], [ 9.090386726732888, 45.461933473509546 ], [ 9.090315388427184, 45.461933492203727 ], [ 9.090240880084695, 45.461939364123225 ], [ 9.090205496668231, 45.461942169027537 ], [ 9.090134595617046, 45.461950542169589 ], [ 9.090100080514118, 45.461955944164572 ], [ 9.090083970919062, 45.461958502159 ], [ 9.089744661714917, 45.461916355719787 ], [ 9.089654552421765, 45.461983880188193 ], [ 9.089440298386776, 45.461934594009563 ], [ 9.089389395863014, 45.462033948802066 ], [ 9.089385549526718, 45.462032979061235 ], [ 9.089323224950945, 45.462155824420677 ], [ 9.089246089201797, 45.462134521657127 ], [ 9.089096585860803, 45.462071105211933 ], [ 9.087905483708752, 45.461568477572094 ], [ 9.087263838985734, 45.462440819245536 ], [ 9.087261244502056, 45.462444347688468 ], [ 9.085709414143778, 45.463331996432935 ], [ 9.085721556922767, 45.463380945915524 ], [ 9.086626347726991, 45.463603637419638 ], [ 9.086202035343973, 45.464363574485482 ], [ 9.086264542272895, 45.464379762291053 ], [ 9.086221603167926, 45.464470932084879 ], [ 9.086840797590417, 45.464629912323176 ], [ 9.086770159472552, 45.464760816809033 ], [ 9.088157593849422, 45.464998784989383 ], [ 9.088169625620507, 45.465001584650857 ], [ 9.088976409310552, 45.465190189230619 ], [ 9.089270738349919, 45.465268203583221 ], [ 9.089277147251238, 45.465254892933615 ], [ 9.089595507311099, 45.465325449778476 ], [ 9.089638288282494, 45.465335476884164 ], [ 9.090595918360385, 45.465550021511511 ], [ 9.090641127890501, 45.465559226776662 ], [ 9.091245346293697, 45.465694350452566 ], [ 9.091246522131151, 45.465694349540385 ], [ 9.092160733171383, 45.465907965536182 ], [ 9.093074778201304, 45.464594334661122 ], [ 9.093328038625989, 45.464233748516989 ], [ 9.09376560746218, 45.464465582347934 ], [ 9.094032581554046, 45.46460702420795 ], [ 9.093940146817108, 45.464729319798572 ], [ 9.093907005175165, 45.46485229977592 ], [ 9.093442198237572, 45.465949890799131 ], [ 9.093278352717805, 45.46595637795479 ], [ 9.092336290750664, 45.467535112911925 ], [ 9.091765488619556, 45.467352244037222 ], [ 9.090985058581554, 45.468500372616667 ], [ 9.090945382527389, 45.46875419906317 ], [ 9.090982676242817, 45.469300829347169 ], [ 9.091578199896412, 45.469692773515526 ], [ 9.091858024111096, 45.469835299483705 ], [ 9.091773435896219, 45.470079203363838 ], [ 9.091763354965085, 45.470100562655333 ], [ 9.091758938419112, 45.470113598161213 ], [ 9.091301315105301, 45.470424363654772 ], [ 9.091047764485316, 45.470714901640477 ], [ 9.0906586948257, 45.47129147043524 ], [ 9.090666083096965, 45.471298387216457 ], [ 9.090620372749122, 45.471330620912696 ], [ 9.088916911454898, 45.472523287960762 ], [ 9.089047446960647, 45.472784301034352 ], [ 9.091011564528642, 45.472932078594454 ], [ 9.091021368779836, 45.473028805303876 ], [ 9.091067488640878, 45.473171758756862 ], [ 9.091117078428233, 45.473350946138332 ], [ 9.091684991363802, 45.474234277375906 ], [ 9.092701086073935, 45.474023710233269 ], [ 9.093027746708437, 45.474213269053116 ], [ 9.093042975360476, 45.474378125483007 ], [ 9.094268071754659, 45.474820133931523 ], [ 9.094391607565978, 45.474787737317705 ], [ 9.094685898935815, 45.474947365347141 ], [ 9.093897077686449, 45.475735586214981 ], [ 9.093716388796775, 45.475774435304828 ], [ 9.09377900843152, 45.476712771855183 ], [ 9.093976196397737, 45.476740806999118 ], [ 9.093957896813222, 45.476805583011178 ], [ 9.095475252493664, 45.476977138985511 ], [ 9.095479364215445, 45.476983987920583 ], [ 9.09627821838227, 45.477069235065038 ], [ 9.096362756842598, 45.477080086349687 ], [ 9.096388880350842, 45.477083799833807 ], [ 9.097194981587903, 45.4780867443272 ], [ 9.098068427189901, 45.477979257640534 ], [ 9.098172784105818, 45.477551601471902 ], [ 9.09895958888945, 45.477866466571292 ], [ 9.100042751098661, 45.478348669435036 ], [ 9.100134361860706, 45.478240945639016 ], [ 9.10135095987909, 45.478031789994382 ], [ 9.101935802640789, 45.477103404704856 ], [ 9.102087141170095, 45.477155821527788 ], [ 9.102653430491372, 45.476778989659664 ], [ 9.102405723636323, 45.47635742161642 ], [ 9.102561080871338, 45.476110791029008 ], [ 9.102808110615822, 45.476109609310804 ], [ 9.103235636568018, 45.475499106710167 ], [ 9.103457354014321, 45.475204720554871 ], [ 9.104211079655888, 45.47528390313537 ], [ 9.104181031813715, 45.475360311538793 ], [ 9.103592612794371, 45.475588609934903 ], [ 9.104225418165166, 45.476052958460656 ], [ 9.104299445288714, 45.477021085728623 ], [ 9.105088978381906, 45.476701719483358 ], [ 9.106052226233647, 45.478072726254418 ], [ 9.106591516744411, 45.477886313101898 ], [ 9.106367109889794, 45.478210663021464 ], [ 9.105980592375248, 45.478731446874434 ], [ 9.10522854693774, 45.47974791883194 ], [ 9.105082624827391, 45.479968711052152 ], [ 9.105026399133497, 45.480048592888942 ], [ 9.105008930920276, 45.480087463294112 ], [ 9.104939265325841, 45.480189127080479 ], [ 9.104772871270702, 45.480558179613659 ], [ 9.104621433891397, 45.480967548020573 ], [ 9.104552663370093, 45.48114259126109 ], [ 9.104201391028333, 45.482137765679475 ], [ 9.104067815615593, 45.482471958695591 ], [ 9.103888061982939, 45.482759160435656 ], [ 9.103883510171144, 45.482765846638294 ], [ 9.103796965608318, 45.482885059581434 ], [ 9.103787841145989, 45.482900420978375 ], [ 9.103336009899133, 45.483493928730752 ], [ 9.103159118593217, 45.483700397753907 ], [ 9.102875335999281, 45.483972480639068 ], [ 9.102843857342471, 45.484000878594607 ], [ 9.102717744534958, 45.483974735380841 ], [ 9.102408778506778, 45.484494915554158 ], [ 9.10178207529583, 45.485299325243901 ], [ 9.101905039316863, 45.485342996565628 ], [ 9.101356798834946, 45.486265967149883 ], [ 9.100927134261029, 45.486980559454203 ], [ 9.100812823962327, 45.487226337624911 ], [ 9.100592861397514, 45.487688835836103 ], [ 9.100471686994572, 45.487674740047979 ], [ 9.100470087306201, 45.487686905922921 ], [ 9.100446204858221, 45.487683873295481 ], [ 9.100379448078519, 45.488137555795269 ], [ 9.10030722705477, 45.488289405034635 ], [ 9.10013223108179, 45.489810052434017 ], [ 9.100698654351376, 45.489837113106958 ], [ 9.100956346422503, 45.490737422903642 ], [ 9.101226154422539, 45.490764704403411 ], [ 9.101204179649091, 45.490871256138469 ], [ 9.102384425162214, 45.49104963863708 ], [ 9.102681207569756, 45.491103991533585 ], [ 9.102683678561505, 45.491139534257663 ], [ 9.103640093197715, 45.491317920930122 ], [ 9.103542359941532, 45.491569263799818 ], [ 9.103966654066536, 45.491634965526387 ], [ 9.103987232088404, 45.492086340099156 ], [ 9.104788915189095, 45.492221518499392 ], [ 9.104467630139222, 45.493050384879695 ], [ 9.105775625415923, 45.493184273465701 ], [ 9.104818488682216, 45.494027881015427 ], [ 9.104818674466893, 45.49403019116599 ], [ 9.104729464311855, 45.494097789533534 ], [ 9.104635874923451, 45.494268623988958 ], [ 9.10462318741982, 45.494292513630256 ], [ 9.10460413871105, 45.494331754649266 ], [ 9.104578413254645, 45.49439721886214 ], [ 9.104565112922678, 45.494447016882916 ], [ 9.104558368648693, 45.494475706567499 ], [ 9.104557445214063, 45.49448069255758 ], [ 9.104488546865674, 45.494617456680913 ], [ 9.1045551721861, 45.494738629087394 ], [ 9.10456452170982, 45.494786814999429 ], [ 9.10458064808566, 45.494837540322386 ], [ 9.104598188245715, 45.494886612313941 ], [ 9.104622528214023, 45.494937744732987 ], [ 9.104636697663434, 45.494964467653972 ], [ 9.105015051487115, 45.495628461208611 ], [ 9.105196041799255, 45.495904158948676 ], [ 9.105282602623813, 45.496061580471931 ], [ 9.105361072862509, 45.496619880629957 ], [ 9.10536292860445, 45.496660579914398 ], [ 9.105380399110981, 45.497571760401335 ], [ 9.105493527320956, 45.497572126846066 ], [ 9.105495233091579, 45.497574378029007 ], [ 9.105501122604865, 45.497616278854551 ], [ 9.105555250739464, 45.497653585912772 ], [ 9.105651152624517, 45.497780151245735 ], [ 9.105968646655969, 45.49801726843701 ], [ 9.106061001922409, 45.498077946258569 ], [ 9.106187271304576, 45.498147064537449 ], [ 9.106326394985178, 45.498208927557116 ], [ 9.106395150940713, 45.498232465716256 ], [ 9.106982043922343, 45.498636955992978 ], [ 9.107671071886539, 45.498292230392252 ], [ 9.107746660793783, 45.498274199231972 ], [ 9.107921950301129, 45.498217345701306 ], [ 9.108225968260278, 45.498078330869376 ], [ 9.108358645454496, 45.49801439776509 ], [ 9.108410382762877, 45.497990353717604 ], [ 9.108519427825572, 45.498005073934117 ], [ 9.108748475858853, 45.498054154772987 ], [ 9.108769393215919, 45.498059472268508 ], [ 9.110799513189368, 45.498499795700823 ], [ 9.110673497362891, 45.497170954411374 ], [ 9.110597127078938, 45.496375807290761 ], [ 9.110147984699038, 45.496313816632785 ], [ 9.110036968134596, 45.496193364457895 ], [ 9.109720723208678, 45.496177375523551 ], [ 9.109542711456736, 45.495975812744575 ], [ 9.109205919105527, 45.495594567869134 ], [ 9.109125496171243, 45.495503553996244 ], [ 9.10895521331901, 45.495310739218326 ], [ 9.108780729008828, 45.495111177615122 ], [ 9.108759778672418, 45.495087224136277 ], [ 9.108762473935375, 45.495037137633958 ], [ 9.108519419849003, 45.494817186812874 ], [ 9.10842427377365, 45.494718181377095 ], [ 9.107689711621505, 45.493928120733422 ], [ 9.107658940918853, 45.493929306224558 ], [ 9.107257730970444, 45.493496209879225 ], [ 9.10674309641059, 45.493283295368116 ], [ 9.108062405944093, 45.493418314627824 ], [ 9.108223634549161, 45.493014144136268 ], [ 9.108943403106524, 45.493166481703142 ], [ 9.109283431879369, 45.492106082639367 ], [ 9.109579402073962, 45.490298326371899 ], [ 9.109744938356034, 45.489495926631363 ], [ 9.109799333795085, 45.489234718027461 ], [ 9.110023845870268, 45.488150847795069 ], [ 9.110951618581625, 45.483724395227078 ], [ 9.110673406572563, 45.483645878645341 ], [ 9.110785507457722, 45.48339120337269 ], [ 9.111217428547517, 45.482282855139431 ], [ 9.111422701117849, 45.481272719652715 ], [ 9.112646792929716, 45.475298630225943 ], [ 9.112619524086885, 45.475283763958146 ], [ 9.110495263558024, 45.475906358395932 ], [ 9.110406133141687, 45.475935116444482 ], [ 9.109954888243532, 45.476088209000444 ], [ 9.109684685522765, 45.476179781923513 ], [ 9.109572826847348, 45.476217393601829 ], [ 9.109584040499676, 45.475905596726349 ], [ 9.109551445665684, 45.475904140619114 ], [ 9.109589055795173, 45.475355433990167 ], [ 9.109591688711783, 45.475336440138349 ], [ 9.109595185986024, 45.475311210793571 ], [ 9.10962368200858, 45.475160599574586 ], [ 9.109643013402399, 45.475085017876225 ], [ 9.10965723522431, 45.475042223677889 ], [ 9.109657962468171, 45.475040799438979 ], [ 9.109975132494077, 45.474570463339269 ], [ 9.109960168940109, 45.474043708576644 ], [ 9.109762849448245, 45.47385123578588 ], [ 9.109723502365206, 45.473637780610318 ], [ 9.109706837806051, 45.473636339996411 ], [ 9.10972296432678, 45.473544191013588 ], [ 9.109213145567525, 45.473499954605821 ], [ 9.108958433469805, 45.473420882662253 ], [ 9.108712323957691, 45.473401415658003 ], [ 9.108701369741377, 45.473399877820405 ], [ 9.10733004936608, 45.473265764852449 ], [ 9.107327650134636, 45.473276148572552 ], [ 9.107046183623767, 45.473250618496373 ], [ 9.106620879953919, 45.473281261630682 ], [ 9.10632924854295, 45.473392315520442 ], [ 9.105943439551309, 45.473564917000878 ], [ 9.105938683233243, 45.473568100690365 ], [ 9.105774689483297, 45.473641351621239 ], [ 9.105802247236666, 45.473564621197994 ], [ 9.105859596108415, 45.473410226173378 ], [ 9.105863243196861, 45.473402167373834 ], [ 9.106386967072865, 45.472162097967953 ], [ 9.103693215118973, 45.471943692698289 ], [ 9.103066078753312, 45.471723735879102 ], [ 9.103009940591646, 45.471834767808453 ], [ 9.102967837004515, 45.471816883744928 ], [ 9.103694852021414, 45.470923427133137 ], [ 9.103300613154399, 45.47059976558652 ], [ 9.103464016140288, 45.470462555380337 ], [ 9.103379541747369, 45.470411664639045 ], [ 9.103494482581013, 45.470315397582489 ], [ 9.103480051380869, 45.470304424647985 ], [ 9.103584512055024, 45.470196974984852 ], [ 9.104482844752761, 45.470328548254301 ], [ 9.104508232505772, 45.470332265982989 ], [ 9.10452342813276, 45.470334492497216 ], [ 9.105683538471242, 45.470504312428204 ], [ 9.106040220580875, 45.469688348090273 ], [ 9.106325742784342, 45.469749200613116 ], [ 9.106747288969895, 45.468664877042599 ], [ 9.106797655437134, 45.468535319825953 ], [ 9.107058928786579, 45.467841955990309 ], [ 9.108384134910493, 45.467915607061975 ], [ 9.108692509538157, 45.467882982156219 ], [ 9.108925143802129, 45.467858367921018 ], [ 9.109170819773967, 45.467810247878077 ], [ 9.110339509152457, 45.467581328014852 ], [ 9.110266912234696, 45.466792185602493 ], [ 9.110260760757683, 45.466725311130922 ], [ 9.11025063050908, 45.466615176080481 ], [ 9.110208630378729, 45.466474104622982 ], [ 9.11050006561195, 45.46643114370837 ], [ 9.110176005170095, 45.465342608105395 ], [ 9.110129007796656, 45.465184752410174 ], [ 9.110050701981764, 45.464921723112219 ], [ 9.110078253425158, 45.464854079748989 ], [ 9.110386754030824, 45.464883655815939 ], [ 9.110430453911061, 45.464764254073913 ], [ 9.110912139552264, 45.464707550287756 ], [ 9.111214605183322, 45.463870640510272 ], [ 9.111586543355797, 45.462841357006809 ], [ 9.110226082853341, 45.462564606901275 ], [ 9.110249374572623, 45.462500536762143 ], [ 9.109977949654672, 45.462454955098124 ], [ 9.109980978751087, 45.462441722977722 ], [ 9.109925292982405, 45.462433007068874 ], [ 9.108938511976964, 45.460972479711621 ], [ 9.10757119086381, 45.461377526969038 ], [ 9.105777647121114, 45.461113019726554 ], [ 9.105077762778466, 45.461009793610721 ], [ 9.105206286013065, 45.460680048023022 ], [ 9.104108965572022, 45.460597317019314 ], [ 9.104123427026359, 45.460371101426325 ], [ 9.104280546425324, 45.460361717961909 ], [ 9.104402010766536, 45.459991284562811 ], [ 9.104403361030108, 45.459994280053692 ], [ 9.104430556793726, 45.460043304832524 ], [ 9.1044554352417, 45.460082559780673 ], [ 9.104496897216096, 45.460140726833998 ], [ 9.104536955660429, 45.460185701184415 ], [ 9.104566740971363, 45.460218002988704 ], [ 9.104606440866167, 45.460255152852824 ], [ 9.104665644051783, 45.460307092865804 ], [ 9.104736649045069, 45.460356931104357 ], [ 9.104785564297501, 45.460388811905375 ], [ 9.104860741479794, 45.460431682199463 ], [ 9.104905041634543, 45.460453064140779 ], [ 9.104968431883762, 45.460483608177441 ], [ 9.105047569914602, 45.460512998847136 ], [ 9.105064297452502, 45.46051888209896 ], [ 9.105169319917717, 45.460555716072797 ], [ 9.105505682375341, 45.460624071265542 ], [ 9.105544214842077, 45.460630535999549 ], [ 9.105748418482424, 45.460669475918039 ], [ 9.10624002878918, 45.460772649716063 ], [ 9.106364443605061, 45.460796753252893 ], [ 9.106374751933165, 45.460798887109497 ], [ 9.106594968462222, 45.460843280706818 ], [ 9.108086940208048, 45.461132296847552 ], [ 9.108149080515442, 45.46093808244656 ], [ 9.108450493792247, 45.461002236379912 ], [ 9.108513563546966, 45.460838494503648 ], [ 9.108741824674238, 45.460933415336264 ], [ 9.109050492623801, 45.460306443936453 ], [ 9.109491804854086, 45.460393224924196 ], [ 9.110242756783492, 45.458615405185242 ], [ 9.109805378384193, 45.458530028738743 ], [ 9.109841781468655, 45.45811702713717 ], [ 9.111429975019842, 45.458391258297048 ], [ 9.111785007565461, 45.457381328564303 ], [ 9.111883304400669, 45.457107496057944 ], [ 9.11189647641306, 45.457065504893727 ], [ 9.111905542656965, 45.457025808547904 ], [ 9.111915547864298, 45.456974587500916 ], [ 9.111919387251243, 45.456921849812765 ], [ 9.111921270742272, 45.456870138971567 ], [ 9.111917227906901, 45.456818827639417 ], [ 9.111912541708158, 45.456778843183322 ], [ 9.111902247017644, 45.456725785862517 ], [ 9.111884602114561, 45.456662392788672 ], [ 9.111868644102202, 45.456622178839844 ], [ 9.111852242001413, 45.456581988753989 ], [ 9.11181981901793, 45.456520815151215 ], [ 9.111796200157258, 45.456483279159301 ], [ 9.111767582958647, 45.456440635392646 ], [ 9.111728119517201, 45.456391420528661 ], [ 9.111691669842058, 45.456350503166547 ], [ 9.111652822075852, 45.456311560950681 ], [ 9.111496002267316, 45.456169412065869 ], [ 9.11108442095021, 45.455983430449145 ], [ 9.110905139636641, 45.455919095333229 ], [ 9.110346417877532, 45.455811887694068 ], [ 9.110007153549429, 45.45575246936793 ], [ 9.109580957573224, 45.455685067957276 ], [ 9.109415722957305, 45.455657949101379 ], [ 9.10907724469709, 45.455587728065872 ], [ 9.108675412187756, 45.455520251431153 ], [ 9.108548812300162, 45.455502406766115 ], [ 9.108529882284168, 45.455498993155558 ], [ 9.108444176819152, 45.455486723536104 ], [ 9.108409716841368, 45.455483104486504 ], [ 9.108395205714539, 45.45548070095797 ], [ 9.10801853705679, 45.455412417479252 ], [ 9.107927901989544, 45.455395925346664 ], [ 9.107864836079003, 45.455385543793732 ], [ 9.107757379674236, 45.455366273305884 ], [ 9.1072989782352, 45.455287872357204 ], [ 9.107239084898353, 45.455279500346876 ], [ 9.107206335819862, 45.455276096518148 ], [ 9.107140669075129, 45.455269259862938 ], [ 9.107043670214919, 45.455265937672074 ], [ 9.106976483125683, 45.455266000614436 ], [ 9.10691024822278, 45.45526839356436 ], [ 9.106845917236972, 45.455272981930129 ], [ 9.106780966721352, 45.455279900793109 ], [ 9.106684084595216, 45.45529363193539 ], [ 9.106584210231482, 45.455315361959649 ], [ 9.106509497882774, 45.455334813428806 ], [ 9.106444059230828, 45.455355355471497 ], [ 9.106389238611346, 45.455374710480193 ], [ 9.106326187141901, 45.455399440159965 ], [ 9.106250493864517, 45.45543401040662 ], [ 9.106193620894819, 45.455464113088354 ], [ 9.106154925280608, 45.45548630013743 ], [ 9.106104460926813, 45.455517163098769 ], [ 9.106051452091963, 45.455554568703974 ], [ 9.105992016137369, 45.455600322777748 ], [ 9.105939569076025, 45.455648438952373 ], [ 9.105912869280241, 45.45567521681302 ], [ 9.105876611238436, 45.455713603166352 ], [ 9.105835110057415, 45.45576487369533 ], [ 9.105802180552441, 45.455811377246178 ], [ 9.105778819399065, 45.455849455818822 ], [ 9.105754696604384, 45.455892061414282 ], [ 9.105731289083673, 45.455943361157715 ], [ 9.105678393382961, 45.456080161701706 ], [ 9.10563011649011, 45.456200213929911 ], [ 9.105604589449554, 45.456266080856217 ], [ 9.105523900377218, 45.456473037448923 ], [ 9.105495572189295, 45.456540855196437 ], [ 9.105359009365676, 45.456895564706542 ] ] ] } } +] +} diff --git a/layers/scuole_buffer.json b/layers/scuole_buffer.json new file mode 100644 index 0000000..8e41b98 --- /dev/null +++ b/layers/scuole_buffer.json @@ -0,0 +1,225 @@ +{ +"type": "FeatureCollection", +"name": "scuole", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.169414644226, 45.403246904131379 ], [ 9.169547685993773, 45.403323655945229 ], [ 9.169495145071849, 45.403368401597142 ], [ 9.169610722752434, 45.403435080634686 ], [ 9.169521464999971, 45.403511356369492 ], [ 9.170483614717149, 45.404066562474718 ], [ 9.168780644942009, 45.405498375731341 ], [ 9.168922184342522, 45.405581346876396 ], [ 9.16887986350374, 45.405616910608593 ], [ 9.168974454137448, 45.405672389700882 ], [ 9.168933543221376, 45.405704937690857 ], [ 9.16916031008572, 45.405843184693992 ], [ 9.169159980053522, 45.405843477150235 ], [ 9.169885721253625, 45.406285419498793 ], [ 9.170025154228512, 45.406370421159338 ], [ 9.169941957118706, 45.406441886899138 ], [ 9.172061158302679, 45.407656576675684 ], [ 9.172254051729141, 45.407490879689604 ], [ 9.172724166011964, 45.407767358658674 ], [ 9.172503286422359, 45.407942928598693 ], [ 9.17207310375286, 45.407696428415619 ], [ 9.172001654355183, 45.407757194878549 ], [ 9.171669823471763, 45.407562570011891 ], [ 9.171603765199835, 45.407618102977565 ], [ 9.171557614410204, 45.407590984431714 ], [ 9.171442419644103, 45.407687868406754 ], [ 9.171196094775413, 45.407543385810811 ], [ 9.171100290978066, 45.407623940036267 ], [ 9.171049472948475, 45.407594169650771 ], [ 9.169345223914847, 45.409027164509155 ], [ 9.169548422496193, 45.409146254310798 ], [ 9.169457555817802, 45.409222672816362 ], [ 9.169500799463918, 45.40924800602523 ], [ 9.169461145782392, 45.409281406022288 ], [ 9.17047737396282, 45.409875484564893 ], [ 9.170453753052078, 45.409895064942155 ], [ 9.172399999271352, 45.411099111700729 ], [ 9.171546381539031, 45.410593457912533 ], [ 9.171497318967292, 45.410635586802584 ], [ 9.171443012512979, 45.410599056848334 ], [ 9.171305883922807, 45.410720919249655 ], [ 9.17107088346506, 45.410583443582397 ], [ 9.170965919546793, 45.410674163478305 ], [ 9.170869008473526, 45.410616414388791 ], [ 9.169235348969089, 45.412122721461344 ], [ 9.169373297159284, 45.412199897934862 ], [ 9.169285343948093, 45.412281190491655 ], [ 9.169365123828586, 45.412321737112165 ], [ 9.169318896619853, 45.41236189630532 ], [ 9.17140123628954, 45.413550474847071 ], [ 9.171401960184479, 45.413549888496341 ], [ 9.171567305268335, 45.41365046174662 ], [ 9.171830726014329, 45.413437404544403 ], [ 9.171839168664894, 45.413442457281469 ], [ 9.173578134174829, 45.412045084637661 ], [ 9.173547238243662, 45.412024942554716 ], [ 9.173724863983546, 45.411883885360865 ], [ 9.172540896267428, 45.411182572748466 ], [ 9.172784967859078, 45.410977801972358 ], [ 9.172923148027044, 45.411063315591214 ], [ 9.173086828324209, 45.410925596557391 ], [ 9.173280219532636, 45.411029452016734 ], [ 9.175045661070635, 45.409616821018645 ], [ 9.174595656952416, 45.409349966208708 ], [ 9.175006735382512, 45.409017153798487 ], [ 9.172952834017353, 45.407745800904387 ], [ 9.172885152717758, 45.407701004984276 ], [ 9.174641280259697, 45.406227921228393 ], [ 9.174472514536964, 45.406118268272678 ], [ 9.174520329542316, 45.406077225025385 ], [ 9.17407524174144, 45.405821371369782 ], [ 9.174475273162372, 45.405478343841452 ], [ 9.172469928136731, 45.404326213422166 ], [ 9.173784496136514, 45.403187577332609 ], [ 9.173717652117338, 45.403144157149789 ], [ 9.17387552593741, 45.403009538898083 ], [ 9.171744063854209, 45.401777351129397 ], [ 9.171643087112217, 45.401863421835756 ], [ 9.171588568584431, 45.401831762279066 ], [ 9.171529614195865, 45.401882174586184 ], [ 9.171274119505041, 45.401734538522902 ], [ 9.171181380950456, 45.401813579426552 ], [ 9.17112928648665, 45.401783409714696 ], [ 9.169414644226, 45.403246904131379 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.237530509973583, 45.417612085272332 ], [ 9.239410768366424, 45.419028126023782 ], [ 9.241552851987434, 45.417565965239852 ], [ 9.239617748455984, 45.416160937462308 ], [ 9.237530509973583, 45.417612085272332 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.16897097104515, 45.413980592766251 ], [ 9.168995550207367, 45.414160910693283 ], [ 9.168591996920348, 45.414189112944463 ], [ 9.168915102568874, 45.416465756104955 ], [ 9.169306181268539, 45.416438439275467 ], [ 9.169307855191647, 45.41645070321124 ], [ 9.172099756366805, 45.416263378000345 ], [ 9.171762470086756, 45.413792284936349 ], [ 9.16897097104515, 45.413980592766251 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.176808710971388, 45.422148744178884 ], [ 9.177141032975486, 45.424198456660015 ], [ 9.179876285739626, 45.423978607287367 ], [ 9.17987006590894, 45.423940051215403 ], [ 9.180024748101959, 45.423927668196569 ], [ 9.179999822994532, 45.423772834429244 ], [ 9.180006104830698, 45.423772342921403 ], [ 9.179702679376629, 45.421891017897167 ], [ 9.176996728045019, 45.422107384371657 ], [ 9.177000941745213, 45.422133466082954 ], [ 9.176808710971388, 45.422148744178884 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.172012813158208, 45.424599241690608 ], [ 9.172025271889776, 45.426678306493002 ], [ 9.174740768253953, 45.426669699473265 ], [ 9.174740268326756, 45.426590989895729 ], [ 9.17498944229558, 45.42659022800909 ], [ 9.174976784991284, 45.424591615054624 ], [ 9.174923875203472, 45.424591742942738 ], [ 9.17492299162579, 45.424442729356194 ], [ 9.172073278074167, 45.424451688103005 ], [ 9.172074143045002, 45.424599056160929 ], [ 9.172012813158208, 45.424599241690608 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.206295431385048, 45.427271533029156 ], [ 9.206934202480824, 45.427353222089785 ], [ 9.207479116426532, 45.425252297612971 ], [ 9.20707721252538, 45.425200820882743 ], [ 9.207135015389422, 45.424971917886715 ], [ 9.204294638962626, 45.424617882958344 ], [ 9.204215623919987, 45.424930107473621 ], [ 9.203827082047773, 45.424881492911481 ], [ 9.20368420241229, 45.425444729574444 ], [ 9.203680110550865, 45.42544417058599 ], [ 9.203664941920643, 45.425498758997563 ], [ 9.203632622012352, 45.425494295028642 ], [ 9.203116990620773, 45.427346325346711 ], [ 9.203366331589059, 45.427380341413574 ], [ 9.203337899718782, 45.427482744153991 ], [ 9.206034763272964, 45.427851102271681 ], [ 9.206086722149356, 45.427664041153328 ], [ 9.206182743464352, 45.427677182700997 ], [ 9.206295431385048, 45.427271533029156 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.173000261015078, 45.416113390523876 ], [ 9.173013338936945, 45.416195835659963 ], [ 9.171283515271526, 45.416326131151635 ], [ 9.171289170320264, 45.416363249113608 ], [ 9.169986602672232, 45.416449619402236 ], [ 9.170050361110158, 45.416923244713054 ], [ 9.169671076028962, 45.416949175779834 ], [ 9.17001314759661, 45.419416655425522 ], [ 9.171416119526949, 45.419320133638941 ], [ 9.171443750596353, 45.419514032639619 ], [ 9.174235710112008, 45.419318105569097 ], [ 9.174151090941844, 45.418723886190854 ], [ 9.176335108652809, 45.418572776244986 ], [ 9.176237969314228, 45.417884192694331 ], [ 9.176261230500669, 45.417882364557855 ], [ 9.17605213003654, 45.416566801648997 ], [ 9.176035789854783, 45.416450965183913 ], [ 9.176033741560543, 45.416451106923084 ], [ 9.175943421026671, 45.415882830454869 ], [ 9.175899644139932, 45.415886254210861 ], [ 9.175875616410305, 45.41573404994768 ], [ 9.173033334238967, 45.415956523755895 ], [ 9.173057548507659, 45.416108935108262 ], [ 9.173000261015078, 45.416113390523876 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.157708168569192, 45.430647306265058 ], [ 9.157990137839162, 45.431005881934531 ], [ 9.158199643696088, 45.431272361864359 ], [ 9.158199678776038, 45.431272348274227 ], [ 9.158377934657915, 45.431499028144167 ], [ 9.160797470577478, 45.4305629009028 ], [ 9.160772947189777, 45.430531606434478 ], [ 9.16147748151978, 45.430262327750484 ], [ 9.161420018830755, 45.430187301971941 ], [ 9.16148533668278, 45.430160824997991 ], [ 9.160108544006606, 45.428478368293412 ], [ 9.160073333053502, 45.428492521418747 ], [ 9.160049691420179, 45.428463665890405 ], [ 9.159806915389289, 45.428553977163268 ], [ 9.159670279910252, 45.428387162329777 ], [ 9.159624499934807, 45.428404142393227 ], [ 9.159593689065106, 45.428364418287998 ], [ 9.157398338997103, 45.42920267992951 ], [ 9.155308761813526, 45.429251180717721 ], [ 9.155199621052384, 45.429121106656083 ], [ 9.154924370514948, 45.429238707243982 ], [ 9.154886766821535, 45.42919413328579 ], [ 9.154409915641088, 45.429391868107125 ], [ 9.152131068121109, 45.428482976952537 ], [ 9.152019567902407, 45.428620548312658 ], [ 9.151966455501194, 45.42859930995003 ], [ 9.150555219694319, 45.430339599531187 ], [ 9.150774381494154, 45.430427209986632 ], [ 9.15072622154589, 45.430486643395973 ], [ 9.153097214999267, 45.431432875895233 ], [ 9.153315348269539, 45.4311636240257 ], [ 9.154270470800331, 45.432304552603007 ], [ 9.156286730231759, 45.431457953031362 ], [ 9.15773359276684, 45.431429083745975 ], [ 9.157708168569192, 45.430647306265058 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.17855974178546, 45.427389947724414 ], [ 9.178570777680839, 45.428042333427605 ], [ 9.178486975847308, 45.428043271424293 ], [ 9.178492757090675, 45.428294141807918 ], [ 9.178491692563737, 45.428294157863597 ], [ 9.178496562240868, 45.428459260608925 ], [ 9.178518907535441, 45.429428880422819 ], [ 9.178205973383262, 45.429819648129936 ], [ 9.17850061096496, 45.429931393491856 ], [ 9.178481514425597, 45.429951563109604 ], [ 9.178531404288899, 45.429971131188204 ], [ 9.178531811518976, 45.429988801255945 ], [ 9.178541673902382, 45.42998868922303 ], [ 9.178549533551021, 45.430255147342812 ], [ 9.179230281416272, 45.430245244924045 ], [ 9.181156328094755, 45.431000643395016 ], [ 9.181378362371079, 45.430717405791363 ], [ 9.182076828699092, 45.43099133925994 ], [ 9.182301193313785, 45.430705128947061 ], [ 9.182995167269945, 45.43097730052051 ], [ 9.183731509548165, 45.430038603918291 ], [ 9.183801117949528, 45.430038200198041 ], [ 9.183800199391134, 45.429960439100817 ], [ 9.184030333751833, 45.429959183493239 ], [ 9.184027080879451, 45.429661796479316 ], [ 9.184372750093901, 45.429221114690854 ], [ 9.184103095717457, 45.429121808699279 ], [ 9.184295440905595, 45.428875437808863 ], [ 9.184017212328106, 45.428759562963371 ], [ 9.184002325608136, 45.427398480233052 ], [ 9.181555847836691, 45.42741239180652 ], [ 9.181555026583482, 45.427364791749561 ], [ 9.17855974178546, 45.427389947724414 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.172258857834034, 45.427657652715894 ], [ 9.172259480284691, 45.428215892600562 ], [ 9.172206840803645, 45.428215768357845 ], [ 9.172205317723519, 45.428521364810393 ], [ 9.172133784765336, 45.428521279994037 ], [ 9.172124719071489, 45.430426570211921 ], [ 9.172210599913699, 45.430426746678748 ], [ 9.17220951665373, 45.430629227592028 ], [ 9.172265079803834, 45.430629397100184 ], [ 9.172264232229816, 45.43080260907135 ], [ 9.175054470142939, 45.43080861598817 ], [ 9.175056069966555, 45.430486834343078 ], [ 9.175300213848493, 45.430487441131888 ], [ 9.175304604056668, 45.429621377286033 ], [ 9.175325744058158, 45.429621363565232 ], [ 9.175323680897215, 45.427659026235112 ], [ 9.175302417882467, 45.427659026414155 ], [ 9.175302331335303, 45.42758733865216 ], [ 9.172403434779364, 45.427589468566005 ], [ 9.172403517827078, 45.427657486778763 ], [ 9.172258857834034, 45.427657652715894 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.166678364041939, 45.428028635611497 ], [ 9.167801528648226, 45.429975524796298 ], [ 9.170500185327192, 45.42920861614099 ], [ 9.169377552391357, 45.427261775597295 ], [ 9.166678364041939, 45.428028635611497 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.124337909778964, 45.439109038101428 ], [ 9.124890136201513, 45.439246808647368 ], [ 9.124874960075578, 45.439277886426652 ], [ 9.127436161882477, 45.439957884098142 ], [ 9.128450594228683, 45.437931980892706 ], [ 9.12845844254004, 45.437924980093548 ], [ 9.128454923400195, 45.437923334857267 ], [ 9.128676963010687, 45.43747988311172 ], [ 9.127504930402738, 45.437224191713327 ], [ 9.126322680813951, 45.436603874106936 ], [ 9.12557730915826, 45.437328107870734 ], [ 9.125309972416543, 45.437256118525035 ], [ 9.124955022834605, 45.43793272889733 ], [ 9.124510245576634, 45.438364869919766 ], [ 9.124677264649453, 45.438462183758979 ], [ 9.124337909778964, 45.439109038101428 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.14969220373874, 45.438745963413702 ], [ 9.149740801285455, 45.438747821193346 ], [ 9.149890068862994, 45.436840124578858 ], [ 9.149814910401956, 45.436837245835612 ], [ 9.14984553224876, 45.436441745473708 ], [ 9.147028954247174, 45.436335036487364 ], [ 9.147000340651484, 45.436704306997754 ], [ 9.146188223705684, 45.436674572474303 ], [ 9.146015113155869, 45.439033096963101 ], [ 9.146709560216381, 45.439057994848241 ], [ 9.146696793997547, 45.439263510368242 ], [ 9.14940720440037, 45.439347666512518 ], [ 9.14941171035, 45.439276131826738 ], [ 9.149658650583076, 45.439283631564095 ], [ 9.14969220373874, 45.438745963413702 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.138636591034052, 45.440711259306958 ], [ 9.138969029727608, 45.440806926763194 ], [ 9.138955659938256, 45.440829771540351 ], [ 9.141476395912488, 45.441556670335736 ], [ 9.141495707325287, 45.441523601517765 ], [ 9.141625099464045, 45.441560831316067 ], [ 9.142683455115002, 45.439750749705432 ], [ 9.142511500178889, 45.439701179577497 ], [ 9.142511937143544, 45.439700430690735 ], [ 9.142320065736289, 45.439645252150321 ], [ 9.142470173584156, 45.439388679425853 ], [ 9.139905951843323, 45.438651043329564 ], [ 9.139854141838457, 45.438739740473615 ], [ 9.139799174975357, 45.438723928511642 ], [ 9.139702148720763, 45.438889758942075 ], [ 9.139702035647488, 45.438889726354319 ], [ 9.139313746759589, 45.439553577598609 ], [ 9.13876024887672, 45.440499532811124 ], [ 9.138760410036774, 45.4404995792096 ], [ 9.138636591034052, 45.440711259306958 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.185871941384633, 45.440061296125329 ], [ 9.186152077854995, 45.43993828843378 ], [ 9.185889887572996, 45.43968969092635 ], [ 9.185890737152576, 45.439672098873167 ], [ 9.185870915099567, 45.439671701937343 ], [ 9.185503429611245, 45.439323263061873 ], [ 9.185562346516379, 45.438540219856002 ], [ 9.182705628384779, 45.438434505655891 ], [ 9.182633133334512, 45.439539105692099 ], [ 9.182611669827349, 45.439537758598675 ], [ 9.182458789987756, 45.441466715017185 ], [ 9.182561150243568, 45.441470677646045 ], [ 9.18254137960003, 45.441744108443046 ], [ 9.182890533871257, 45.441756414799563 ], [ 9.182890514473332, 45.441756673776808 ], [ 9.185625856164512, 45.441853433035455 ], [ 9.185656649265921, 45.441569294259139 ], [ 9.185798952080292, 45.441572610232967 ], [ 9.185871941384633, 45.440061296125329 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.144884804782167, 45.432178814223278 ], [ 9.145051056493958, 45.432272698548182 ], [ 9.145029025617111, 45.432291942319189 ], [ 9.147183791324087, 45.433506909156613 ], [ 9.147199522379964, 45.43349318189189 ], [ 9.147607969717942, 45.433775554568385 ], [ 9.147867925737991, 45.433590435958685 ], [ 9.147914996439285, 45.433623066524028 ], [ 9.149784690083559, 45.432295363881565 ], [ 9.149108510575664, 45.431827291228529 ], [ 9.14911278159577, 45.43182356394972 ], [ 9.149060152576318, 45.431793815853524 ], [ 9.149037509273359, 45.431778141217045 ], [ 9.149055579175803, 45.43176226076482 ], [ 9.148833811473203, 45.431637132529396 ], [ 9.147706312552968, 45.430856608212849 ], [ 9.147593158675594, 45.430937099420802 ], [ 9.146907523423106, 45.430550219363653 ], [ 9.146865456506729, 45.430587011047855 ], [ 9.14676799935469, 45.4305319303907 ], [ 9.146751214684874, 45.430546595262534 ], [ 9.146704686643981, 45.430520356355252 ], [ 9.14500702817511, 45.431999497141469 ], [ 9.145057717909285, 45.432028076587152 ], [ 9.144884804782167, 45.432178814223278 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.244214698549209, 45.430891383425219 ], [ 9.246145010243833, 45.432551538803949 ], [ 9.246290083902874, 45.432468481848467 ], [ 9.246465813993197, 45.432520445004457 ], [ 9.246793874913031, 45.432550794291551 ], [ 9.247128290041253, 45.432530128117392 ], [ 9.247446696749323, 45.432443586680705 ], [ 9.247580085034535, 45.432553356455493 ], [ 9.24802650507787, 45.432920958442551 ], [ 9.248026668519966, 45.432920860999211 ], [ 9.248152823137717, 45.433024675552389 ], [ 9.250529219564891, 45.431604791807423 ], [ 9.249519021176075, 45.430772808506134 ], [ 9.248678990863736, 45.430078726923526 ], [ 9.248296143507137, 45.4303075251294 ], [ 9.248053571133195, 45.430104107245448 ], [ 9.247087742787633, 45.42924595576693 ], [ 9.244214698549209, 45.430891383425219 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.172674718859266, 45.432019796536729 ], [ 9.17228778117039, 45.431409354919985 ], [ 9.172282866746848, 45.431410905821025 ], [ 9.172164132422736, 45.431225686961739 ], [ 9.171878508117405, 45.431315768591531 ], [ 9.171841116426034, 45.431256467904198 ], [ 9.169293645461309, 45.432047554766015 ], [ 9.170197388345315, 45.433481799166287 ], [ 9.170618283729137, 45.43445851619682 ], [ 9.171036855469193, 45.43436959208276 ], [ 9.171189743342365, 45.434723824900352 ], [ 9.173155113320931, 45.434305746363428 ], [ 9.174426225385108, 45.434155784986871 ], [ 9.174414377775109, 45.434106297008896 ], [ 9.174629692187024, 45.434081067735399 ], [ 9.174156679068954, 45.432100105027359 ], [ 9.174109751173468, 45.432105628394623 ], [ 9.174073894666966, 45.431955435676002 ], [ 9.173034349562304, 45.432077779675225 ], [ 9.172981151424779, 45.4319546501902 ], [ 9.172674718859266, 45.432019796536729 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.161881085472528, 45.432084181760835 ], [ 9.161928097373281, 45.434086173093327 ], [ 9.162075959339715, 45.434085992130754 ], [ 9.162029455124959, 45.435003621710315 ], [ 9.161743213140296, 45.435193760784209 ], [ 9.161687827792967, 45.435970887393445 ], [ 9.161975530630098, 45.436186098361766 ], [ 9.161963015267954, 45.436527978194214 ], [ 9.161997201758806, 45.436529710193597 ], [ 9.161993803011979, 45.43658993632242 ], [ 9.162971628195704, 45.436617977360079 ], [ 9.163646491459286, 45.437137097998296 ], [ 9.163749330012612, 45.437077689947479 ], [ 9.163915391277085, 45.437209199712349 ], [ 9.166064202597861, 45.435831504047812 ], [ 9.165799804707511, 45.435625471791504 ], [ 9.165932233532697, 45.435546605935507 ], [ 9.16515216794669, 45.435038830040845 ], [ 9.165004557844522, 45.434912433256606 ], [ 9.165054529330478, 45.434150589205288 ], [ 9.165009283442259, 45.434148561062514 ], [ 9.165012119885713, 45.434103566513052 ], [ 9.164951455071064, 45.43410122347435 ], [ 9.164954050187577, 45.43405666428729 ], [ 9.164960230547182, 45.433991236029819 ], [ 9.164951287247701, 45.433991018002082 ], [ 9.164955134862195, 45.433958425655092 ], [ 9.164926407021873, 45.433957936283477 ], [ 9.164893983440242, 45.432077212363971 ], [ 9.164816546382673, 45.432077392522991 ], [ 9.164814112547376, 45.431894429447723 ], [ 9.161962288838112, 45.431926565083657 ], [ 9.161965287758385, 45.432083985779727 ], [ 9.161881085472528, 45.432084181760835 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.214704465762898, 45.432666238325908 ], [ 9.218277866906618, 45.434897380189689 ], [ 9.22015171388894, 45.43341979810431 ], [ 9.219878847869996, 45.433249463901589 ], [ 9.219943850908965, 45.433198130014965 ], [ 9.219630622439576, 45.433002618838131 ], [ 9.220088397861264, 45.432641489661883 ], [ 9.217682472800869, 45.431139590868582 ], [ 9.217224579495584, 45.431500803372252 ], [ 9.216914802013211, 45.43130731376187 ], [ 9.21685023584446, 45.43135833200953 ], [ 9.216577989041459, 45.43118822568411 ], [ 9.214704465762898, 45.432666238325908 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.176540429006659, 45.43187491307836 ], [ 9.176661352489402, 45.433859968763336 ], [ 9.177006426050761, 45.433852001340213 ], [ 9.177005004934168, 45.433899838737169 ], [ 9.177070023723733, 45.433898225835428 ], [ 9.177103223298049, 45.435694338942881 ], [ 9.178566285274874, 45.435678460773161 ], [ 9.178565464848907, 45.435762914705002 ], [ 9.181641637376019, 45.435725407212836 ], [ 9.181641268265009, 45.435522197165987 ], [ 9.181792544697926, 45.435520292220694 ], [ 9.181790473862581, 45.435442299736209 ], [ 9.181953714373817, 45.435439573757762 ], [ 9.181871754507407, 45.433110358259754 ], [ 9.18080242751796, 45.433110368480527 ], [ 9.18080242730036, 45.433110361639322 ], [ 9.179822502506438, 45.43311036875842 ], [ 9.179862313338282, 45.43301556205148 ], [ 9.179832441929999, 45.43281997096566 ], [ 9.179857091979894, 45.432605436456079 ], [ 9.179725691004922, 45.432426949721638 ], [ 9.179697476369686, 45.431718978928608 ], [ 9.176931873585168, 45.431810476867412 ], [ 9.176937038938423, 45.431862143582165 ], [ 9.176540429006659, 45.43187491307836 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.219240996369413, 45.434257099924118 ], [ 9.222162928557836, 45.436082677185553 ], [ 9.223816304385746, 45.434808528365735 ], [ 9.22381627073149, 45.436300876216897 ], [ 9.226512076390174, 45.43630087613429 ], [ 9.226512023142877, 45.433942769744704 ], [ 9.224484126120114, 45.433942775610895 ], [ 9.221843601022645, 45.432287792902301 ], [ 9.220671823910216, 45.433194586570472 ], [ 9.219240996369413, 45.434257099924118 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.200209726943196, 45.430170925095339 ], [ 9.199026507394478, 45.429847849333974 ], [ 9.199014713401573, 45.429861971189752 ], [ 9.1989614850936, 45.429848209391103 ], [ 9.198907618289702, 45.429946806536975 ], [ 9.198422143564578, 45.429817964620966 ], [ 9.19834663990877, 45.429958280067929 ], [ 9.198214325568596, 45.429923100924476 ], [ 9.197208258372903, 45.431793723089157 ], [ 9.19724256320662, 45.431802816653509 ], [ 9.196818509334959, 45.432601566686415 ], [ 9.199702301560615, 45.43335565323045 ], [ 9.200064265204857, 45.432673803779785 ], [ 9.201022167013287, 45.432922047922034 ], [ 9.201481990098618, 45.432050781110448 ], [ 9.20186586954984, 45.431339212072153 ], [ 9.202179828099791, 45.430780944958613 ], [ 9.201563489591106, 45.430610311907685 ], [ 9.201603901199213, 45.43053134909723 ], [ 9.200209726943196, 45.430170925095339 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.20536196931605, 45.432467283299673 ], [ 9.205537665210606, 45.432490187360834 ], [ 9.205604881810485, 45.432236056630387 ], [ 9.205894877217711, 45.432273780947632 ], [ 9.206434922456213, 45.430236686767621 ], [ 9.206143548190338, 45.430198477034558 ], [ 9.206160600271678, 45.430133940611462 ], [ 9.20340701260262, 45.429775781759588 ], [ 9.203226374038742, 45.430458363441481 ], [ 9.202916368128273, 45.430421334155497 ], [ 9.202879942217741, 45.430570328724215 ], [ 9.202824705251739, 45.430563689843716 ], [ 9.202325262042983, 45.432618949662249 ], [ 9.205012155493513, 45.432941756679192 ], [ 9.205026275390951, 45.432883522576702 ], [ 9.205254278310921, 45.432910654024724 ], [ 9.20536196931605, 45.432467283299673 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.240540840309281, 45.436906509531795 ], [ 9.242826520319174, 45.438370564748858 ], [ 9.243422041142413, 45.43792884330567 ], [ 9.243586523046872, 45.438065914461667 ], [ 9.244417890494608, 45.438760274990813 ], [ 9.24441817983792, 45.438760106442722 ], [ 9.244616266309466, 45.438925564306125 ], [ 9.244638581161954, 45.438912586278335 ], [ 9.244700841002594, 45.43896523464727 ], [ 9.247136626572818, 45.437549211172993 ], [ 9.245377434923565, 45.436057795520696 ], [ 9.245146342322027, 45.436192153386976 ], [ 9.244928844230435, 45.435999541667847 ], [ 9.244046255791064, 45.436513406010413 ], [ 9.242443449059651, 45.435512335737791 ], [ 9.240540840309281, 45.436906509531795 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.234327992256203, 45.434376703700494 ], [ 9.235825108737572, 45.435963561979207 ], [ 9.238211368811218, 45.434901678366906 ], [ 9.236732304585688, 45.433296582487706 ], [ 9.235542932754623, 45.433830559649046 ], [ 9.234327992256203, 45.434376703700494 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.197937057957855, 45.436995391340481 ], [ 9.198767760794949, 45.437570794043481 ], [ 9.200690346263666, 45.436205597765522 ], [ 9.20057319753638, 45.436124446837937 ], [ 9.200765407409392, 45.435987975989974 ], [ 9.198762915143213, 45.434602518561775 ], [ 9.198696739206145, 45.4346495319176 ], [ 9.198521014448048, 45.434527815667231 ], [ 9.197304573586912, 45.435392930196912 ], [ 9.196433876237494, 45.434991752409239 ], [ 9.195631159018017, 45.435830606771283 ], [ 9.195622510796685, 45.435830815128938 ], [ 9.194269819619194, 45.435297117917813 ], [ 9.193209176647148, 45.436627164504863 ], [ 9.19319100465369, 45.436613749145259 ], [ 9.192740547923165, 45.436920185256383 ], [ 9.192451532680225, 45.436918851677575 ], [ 9.192450077462832, 45.437061956619843 ], [ 9.192403299817855, 45.437061771822343 ], [ 9.192402460979388, 45.437150175245158 ], [ 9.192152532470701, 45.437320191956147 ], [ 9.19213265509565, 45.437333721734639 ], [ 9.191679261840362, 45.437641862980421 ], [ 9.190102398993924, 45.436865331071822 ], [ 9.189857976569979, 45.437109756648894 ], [ 9.189564482828589, 45.436966690761217 ], [ 9.187729064214063, 45.438772428739824 ], [ 9.188908074515814, 45.439339570161252 ], [ 9.190359770291575, 45.440094504173494 ], [ 9.190768266519813, 45.439680943270524 ], [ 9.190830104308972, 45.439711385427962 ], [ 9.191547534734823, 45.438994573383333 ], [ 9.192010355494958, 45.439348861380132 ], [ 9.191949538223636, 45.439387760260878 ], [ 9.193869346469659, 45.440812756241016 ], [ 9.196219248531406, 45.439261410550024 ], [ 9.195993531874825, 45.439073126655785 ], [ 9.195996962359702, 45.439070881991093 ], [ 9.195963127002129, 45.439044149731046 ], [ 9.195992983527907, 45.439025614305436 ], [ 9.195346543006142, 45.43851489421138 ], [ 9.195350929309379, 45.438010921997133 ], [ 9.195826103247427, 45.43800485679531 ], [ 9.19585150734426, 45.43800470858433 ], [ 9.19595589820368, 45.438003683119113 ], [ 9.197270487385861, 45.43799356389848 ], [ 9.197260041668956, 45.437507616265876 ], [ 9.197937057957855, 45.436995391340481 ] ], [ [ 9.191966399255501, 45.438576059400624 ], [ 9.19197121700398, 45.438579500697045 ], [ 9.191951090782918, 45.438591355198184 ], [ 9.191966399255501, 45.438576059400624 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.17538326123505, 45.436324067987783 ], [ 9.175389392673665, 45.43726226056436 ], [ 9.17539420037299, 45.438242786422656 ], [ 9.17835800215301, 45.438205890179162 ], [ 9.178313379302979, 45.436286269498027 ], [ 9.178192553525356, 45.436287826557916 ], [ 9.178182173058604, 45.436023353788862 ], [ 9.177408070517302, 45.436038730759542 ], [ 9.177330404516473, 45.435989664548437 ], [ 9.176201446495108, 45.436027735665931 ], [ 9.176157156449349, 45.436063084530893 ], [ 9.175448552172373, 45.436076511992304 ], [ 9.175455055593282, 45.436323127623545 ], [ 9.17538326123505, 45.436324067987783 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.260007861471426, 45.444095599805017 ], [ 9.259712313111262, 45.444381648738506 ], [ 9.260369257061971, 45.44463767359904 ], [ 9.260309887023389, 45.445089377860995 ], [ 9.26161000751048, 45.445260527644741 ], [ 9.261630603222022, 45.445263242925598 ], [ 9.26244113971635, 45.445699032220716 ], [ 9.262720961557593, 45.445432709013737 ], [ 9.262733310749109, 45.44543973505936 ], [ 9.262761740033245, 45.445412362723104 ], [ 9.262957311585657, 45.445438144055608 ], [ 9.263020743784127, 45.445162986702734 ], [ 9.263550474512126, 45.44465293852975 ], [ 9.264261956687726, 45.443965552327235 ], [ 9.264260819163722, 45.443964814057011 ], [ 9.26446412529836, 45.44377609601252 ], [ 9.264394797126551, 45.443735970160439 ], [ 9.264484496108032, 45.443651296985728 ], [ 9.264317573322625, 45.443547061333085 ], [ 9.264361363649863, 45.443492320742031 ], [ 9.263747669087984, 45.443152938567259 ], [ 9.263751268407391, 45.443147883632832 ], [ 9.263667741044488, 45.443108736631643 ], [ 9.262562690697864, 45.44249760703994 ], [ 9.262483217611358, 45.442553570291075 ], [ 9.261915666710195, 45.442287560422727 ], [ 9.26141427681581, 45.442623558403753 ], [ 9.261366986492693, 45.442608494095147 ], [ 9.261240260920543, 45.442740170772332 ], [ 9.259616603517065, 45.443828187905289 ], [ 9.260028836543141, 45.443998886832745 ], [ 9.259957857248262, 45.444072634885778 ], [ 9.260007861471426, 45.444095599805017 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.068605828134368, 45.449180121971544 ], [ 9.071763161526054, 45.449961641550196 ], [ 9.072674947799465, 45.448152984479542 ], [ 9.072380539098205, 45.448080349552662 ], [ 9.072395025240592, 45.448051550472748 ], [ 9.071202869574014, 45.447757115945656 ], [ 9.069531252462063, 45.44734252438829 ], [ 9.068605828134368, 45.449180121971544 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.141150586346681, 45.447324314698179 ], [ 9.141196143512529, 45.447338541558189 ], [ 9.141043659868986, 45.44756629728596 ], [ 9.141110264298213, 45.447587217737492 ], [ 9.141001335423006, 45.447758310583851 ], [ 9.143862330584961, 45.44865582647423 ], [ 9.143966486138682, 45.448492349105173 ], [ 9.144001456395625, 45.448503312791857 ], [ 9.144153259182684, 45.448264978840562 ], [ 9.144186487390442, 45.448275286688862 ], [ 9.144189441543785, 45.44827057332148 ], [ 9.144199572111264, 45.448273790288283 ], [ 9.145313354200963, 45.446505963747008 ], [ 9.145300568298319, 45.446501954775023 ], [ 9.145311494803545, 45.44648488748102 ], [ 9.144414604126464, 45.446206702381581 ], [ 9.142282898015496, 45.445540901662326 ], [ 9.141150586346681, 45.447324314698179 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.201171091879468, 45.44898978792547 ], [ 9.201234876149936, 45.448991754109151 ], [ 9.201277183944148, 45.448414318282524 ], [ 9.201336571626104, 45.448388608534124 ], [ 9.201322219506572, 45.448372387541937 ], [ 9.201569035449117, 45.448268499922555 ], [ 9.201309521370266, 45.447972954721635 ], [ 9.201337221166943, 45.447594883356302 ], [ 9.201359813217787, 45.447286651504839 ], [ 9.201359803851572, 45.447286651196691 ], [ 9.201381667910802, 45.44698822444667 ], [ 9.200424360711162, 45.44697038285932 ], [ 9.200133181028066, 45.446642804408313 ], [ 9.199423271864896, 45.446951716707389 ], [ 9.198682743500028, 45.44693790327316 ], [ 9.198673487860368, 45.447078749151927 ], [ 9.198348940144335, 45.447064081982809 ], [ 9.198349760593691, 45.44704808930684 ], [ 9.197115462997541, 45.447008329407019 ], [ 9.19614007769162, 45.446964232948226 ], [ 9.19613904978613, 45.446976867136911 ], [ 9.195696868920718, 45.44696261629899 ], [ 9.195661545393726, 45.447330051221208 ], [ 9.195592126821458, 45.4473277656245 ], [ 9.195575832704433, 45.448174079955152 ], [ 9.195434536708026, 45.449319825496026 ], [ 9.197721350376408, 45.449407915806745 ], [ 9.197730455629014, 45.44940250092283 ], [ 9.200424708646713, 45.449487381050218 ], [ 9.200655232321166, 45.449333698728459 ], [ 9.200680448564361, 45.449334682052651 ], [ 9.20068045993998, 45.449334525114025 ], [ 9.200820056248403, 45.449339946580459 ], [ 9.200829750485193, 45.449217352516619 ], [ 9.201171091879468, 45.44898978792547 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.182517709540592, 45.446737075154608 ], [ 9.182804829600283, 45.446771151631374 ], [ 9.182779217148999, 45.446889459495459 ], [ 9.183085887981781, 45.446923191710347 ], [ 9.182490088081709, 45.44686527438575 ], [ 9.181419385354745, 45.446754021964537 ], [ 9.181420254018745, 45.446748884839259 ], [ 9.181107054699737, 45.446721566965984 ], [ 9.180925189270313, 45.446702668499078 ], [ 9.180924559902598, 45.446705648995177 ], [ 9.180182051085728, 45.446640881124431 ], [ 9.179030968217532, 45.446528951800218 ], [ 9.179028808259933, 45.446540275707228 ], [ 9.178380702748418, 45.446483731672508 ], [ 9.178378780953627, 45.447809903050242 ], [ 9.178384863685727, 45.447943660080519 ], [ 9.178623940330999, 45.449558100781985 ], [ 9.181682546469142, 45.449939971173379 ], [ 9.181696043903756, 45.449886854465738 ], [ 9.183697180993027, 45.450094968929328 ], [ 9.183809170483428, 45.449564692586172 ], [ 9.184506893284487, 45.449624688659732 ], [ 9.184517114711344, 45.449575587458426 ], [ 9.184825460955512, 45.449601594608595 ], [ 9.185209886640232, 45.447412680946009 ], [ 9.184283678126215, 45.447317761837972 ], [ 9.184337919919262, 45.447060899821473 ], [ 9.185456759293055, 45.447183946203829 ], [ 9.185917873590629, 45.445122467899921 ], [ 9.185844178678838, 45.445114380814516 ], [ 9.185882370268216, 45.444953508226838 ], [ 9.183103807314943, 45.444629251262398 ], [ 9.183063740884288, 45.444798511393245 ], [ 9.182986745975933, 45.444789385786116 ], [ 9.182517709540592, 45.446737075154608 ] ], [ [ 9.183270385802961, 45.44694348510582 ], [ 9.183739454757067, 45.44699507781246 ], [ 9.183269774529236, 45.446946281879967 ], [ 9.183270385802961, 45.44694348510582 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.119205709584261, 45.4429461829872 ], [ 9.122059746316987, 45.443837630995773 ], [ 9.123491508437478, 45.441727744924215 ], [ 9.120875142950258, 45.440810007288974 ], [ 9.12058369424973, 45.441214838828756 ], [ 9.120360999643252, 45.441142542969573 ], [ 9.119205709584261, 45.4429461829872 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.148048075315479, 45.443740760036007 ], [ 9.150853086163112, 45.444434482690937 ], [ 9.151942980927744, 45.442645410085632 ], [ 9.151700558514174, 45.442561303712353 ], [ 9.151765290001583, 45.442452997959371 ], [ 9.149351475220847, 45.441621537881545 ], [ 9.148048075315479, 45.443740760036007 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.158693250929453, 45.440337445338592 ], [ 9.15871791321365, 45.440343617799293 ], [ 9.159122399007195, 45.439550489496114 ], [ 9.159571018334482, 45.438733050771766 ], [ 9.159543126660097, 45.438725488503856 ], [ 9.159599832461558, 45.438614292657363 ], [ 9.159506731413119, 45.440088048703231 ], [ 9.159602118771996, 45.440091014719258 ], [ 9.159598698151996, 45.44014613969123 ], [ 9.160133802055483, 45.440162894087493 ], [ 9.16012518533916, 45.440300504124195 ], [ 9.162286300501659, 45.440366616578011 ], [ 9.161766905737801, 45.440754529113221 ], [ 9.160711564112304, 45.441518615789022 ], [ 9.160728446944477, 45.441530084103078 ], [ 9.159947248705135, 45.442113488226568 ], [ 9.160744421882985, 45.442638915030798 ], [ 9.160676774174354, 45.442691397711371 ], [ 9.161807810196603, 45.443372031757292 ], [ 9.162618043872602, 45.443883914388302 ], [ 9.162644499713917, 45.444094390720259 ], [ 9.162056149741668, 45.444410820716932 ], [ 9.161524273059348, 45.444289991031944 ], [ 9.161479792999266, 45.444376975061807 ], [ 9.161224949879221, 45.44431602349195 ], [ 9.160325727591687, 45.446127891579728 ], [ 9.161888864412928, 45.446501974496499 ], [ 9.162013766505751, 45.446497693429947 ], [ 9.163059007376281, 45.446748655031527 ], [ 9.163091497899741, 45.446697794692284 ], [ 9.163590521895195, 45.44683287789983 ], [ 9.164549818850055, 45.445044312310024 ], [ 9.164474709296822, 45.445023944623443 ], [ 9.164538768726905, 45.444907173781431 ], [ 9.163677379382884, 45.444668910811792 ], [ 9.16286198980416, 45.444168150848348 ], [ 9.163049091106895, 45.44415623165073 ], [ 9.163578284350573, 45.444490547544461 ], [ 9.164087924986838, 45.44409865412873 ], [ 9.16663326455793, 45.443965297527143 ], [ 9.166626509554487, 45.443733357693567 ], [ 9.16698223700071, 45.443736508890176 ], [ 9.166998193900778, 45.442775140954424 ], [ 9.167015564659474, 45.441644374434333 ], [ 9.166186927334181, 45.44162449337351 ], [ 9.166105217900506, 45.441033631948692 ], [ 9.166099903345712, 45.44103399012085 ], [ 9.166050641205402, 45.440671622270308 ], [ 9.165797076034995, 45.44068856386388 ], [ 9.165796643899213, 45.440685451488861 ], [ 9.16517452511583, 45.440727806249377 ], [ 9.165174432227829, 45.440727133682856 ], [ 9.165086878732257, 45.440733054957477 ], [ 9.165086014357977, 45.440726772960872 ], [ 9.164637329527071, 45.44075934725722 ], [ 9.163296734148268, 45.439848196486352 ], [ 9.163399476458013, 45.438199011614969 ], [ 9.163309851059804, 45.438196232883804 ], [ 9.163311782509146, 45.43816498196896 ], [ 9.159727675167922, 45.43805400068527 ], [ 9.159725923231472, 45.438082772843195 ], [ 9.159633590162452, 45.438079901760837 ], [ 9.159600839777454, 45.438598346796908 ], [ 9.159516730214429, 45.438577222287435 ], [ 9.159543102397407, 45.438530179896993 ], [ 9.159361262314338, 45.438477500664696 ], [ 9.159489367999587, 45.438232851181247 ], [ 9.156336294245571, 45.437883810551398 ], [ 9.156336290555132, 45.438060121578943 ], [ 9.156192141405842, 45.438059394119932 ], [ 9.156181709856597, 45.438225675187866 ], [ 9.15568647596649, 45.438214190223292 ], [ 9.155686408141378, 45.438215686854569 ], [ 9.15551112730647, 45.438211731223156 ], [ 9.155413882041346, 45.440329406867932 ], [ 9.157380745433951, 45.440372779060759 ], [ 9.157448481947146, 45.440388690124394 ], [ 9.157543262028433, 45.440376361269671 ], [ 9.157756928294164, 45.440381070572798 ], [ 9.15856401076763, 45.440577913092206 ], [ 9.158693250929453, 45.440337445338592 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.22053569872601, 45.439297784003372 ], [ 9.223993130495986, 45.440876474512237 ], [ 9.224629521123434, 45.440196117117011 ], [ 9.224640829949495, 45.440205403743718 ], [ 9.224391575362901, 45.441571641831878 ], [ 9.226285835246717, 45.441754667989677 ], [ 9.227627314637575, 45.440946177578141 ], [ 9.227607024134084, 45.441593890496591 ], [ 9.227335322165668, 45.441587795552877 ], [ 9.227334778864869, 45.44160230117604 ], [ 9.226937479913603, 45.441598739032656 ], [ 9.226985759988688, 45.443709052686522 ], [ 9.227065936514579, 45.443710344624833 ], [ 9.227063414464279, 45.443813138349618 ], [ 9.226294585247214, 45.443757596959323 ], [ 9.226294877336025, 45.443694853380997 ], [ 9.225312917242301, 45.443686672088354 ], [ 9.22456006493505, 45.443632273163082 ], [ 9.224553022163468, 45.443680335155456 ], [ 9.22444347700972, 45.443679421217176 ], [ 9.224302012339473, 45.443669220159919 ], [ 9.224300685593469, 45.443678229746645 ], [ 9.223502202052835, 45.443671563802958 ], [ 9.22350219491611, 45.443986680946018 ], [ 9.223500267140857, 45.443986551715845 ], [ 9.22350025940808, 45.444327898904028 ], [ 9.223337425665509, 45.44432714284892 ], [ 9.223286961030285, 45.446288686988758 ], [ 9.2243852212283, 45.446300648744526 ], [ 9.226295469060764, 45.446341480286996 ], [ 9.226295698984107, 45.446336122980981 ], [ 9.226576457047868, 45.446342119561912 ], [ 9.226589515478535, 45.446044753489609 ], [ 9.226931781643129, 45.446045691025908 ], [ 9.226931077305474, 45.445920763078497 ], [ 9.227051874040995, 45.445929504554037 ], [ 9.227080291591202, 45.445734952083157 ], [ 9.227233945233762, 45.44574601099783 ], [ 9.227494992322493, 45.4439789688102 ], [ 9.22834355951643, 45.443989031502404 ], [ 9.228146029044987, 45.444521366895877 ], [ 9.231638713688064, 45.445159564657224 ], [ 9.232333618197604, 45.443290063614633 ], [ 9.232038216229373, 45.443236052797573 ], [ 9.23206485964225, 45.443164326888173 ], [ 9.23061101545966, 45.44289846626598 ], [ 9.230613950137366, 45.442804527824464 ], [ 9.230825474536008, 45.44280776910572 ], [ 9.230885682631529, 45.440878460461079 ], [ 9.230791949845935, 45.440877076137788 ], [ 9.230803769332978, 45.440490262916271 ], [ 9.228396861225066, 45.440453787091101 ], [ 9.229036116406906, 45.440065791104281 ], [ 9.229027631196399, 45.440057739265455 ], [ 9.229159046154859, 45.439977914304912 ], [ 9.227442893141944, 45.438407564722979 ], [ 9.226569492899406, 45.438853704998202 ], [ 9.226569395564498, 45.438853625429232 ], [ 9.225284854006663, 45.439495487957373 ], [ 9.225445081762151, 45.439324182124885 ], [ 9.225063584615809, 45.439135368207118 ], [ 9.225409494869506, 45.438759027759531 ], [ 9.224834351905708, 45.438487664231694 ], [ 9.224841349899522, 45.438478470264755 ], [ 9.224089900954692, 45.438136409740764 ], [ 9.223171196170746, 45.437702924272848 ], [ 9.22316111626591, 45.437713613170011 ], [ 9.222628006268311, 45.437470927302513 ], [ 9.222295701492694, 45.437843287184315 ], [ 9.221912745365508, 45.437668887387133 ], [ 9.220861699999196, 45.438812412144706 ], [ 9.220766934696801, 45.438769087757038 ], [ 9.220767932434695, 45.4387680092631 ], [ 9.219182083985883, 45.438044511062664 ], [ 9.21868647230189, 45.437817914382229 ], [ 9.218686159234309, 45.437818251170519 ], [ 9.218570259274108, 45.437765372590306 ], [ 9.218550050637731, 45.437787304798221 ], [ 9.218501761425941, 45.437765174749565 ], [ 9.218473392473873, 45.43779578005789 ], [ 9.218124561025101, 45.437636734637302 ], [ 9.218103983146868, 45.437658763218394 ], [ 9.218083625600132, 45.437649526612908 ], [ 9.218046595722276, 45.437689350064204 ], [ 9.218008017033705, 45.437671743191139 ], [ 9.217245953050522, 45.438493147012856 ], [ 9.216429571688396, 45.438539982706253 ], [ 9.216406050004702, 45.438996896321562 ], [ 9.216348910469561, 45.439027146015952 ], [ 9.21568146435207, 45.438985455432473 ], [ 9.215465253417044, 45.440690553073118 ], [ 9.214979471313152, 45.441237645057925 ], [ 9.214785274134595, 45.441532469226125 ], [ 9.214686467469667, 45.44162050153389 ], [ 9.214474902239337, 45.441834157326454 ], [ 9.213696182511569, 45.442520062315438 ], [ 9.214414419532082, 45.442899463841911 ], [ 9.214410117443391, 45.44290342781035 ], [ 9.214481487980512, 45.442941505526875 ], [ 9.214474274388589, 45.442948064264193 ], [ 9.211680770638699, 45.442368485283097 ], [ 9.210457388408004, 45.44475103708929 ], [ 9.21078462910766, 45.444828430382486 ], [ 9.210758614917067, 45.444863801077354 ], [ 9.211791676150868, 45.445066592456755 ], [ 9.213014290933879, 45.445355720676076 ], [ 9.213039284732009, 45.445311485372009 ], [ 9.213498548351916, 45.445401630193921 ], [ 9.213710593801625, 45.445017119601374 ], [ 9.213763045292987, 45.445028750791565 ], [ 9.213882966666613, 45.444736253023706 ], [ 9.213955076118545, 45.44474580106516 ], [ 9.214234665423019, 45.444066775201357 ], [ 9.214463032485538, 45.443652646707797 ], [ 9.214410228428878, 45.443640384613026 ], [ 9.214620219418078, 45.443130369848248 ], [ 9.215706228052385, 45.443719517663304 ], [ 9.21686183668742, 45.444304909238269 ], [ 9.217169659903041, 45.44402724438384 ], [ 9.21724495893136, 45.44399456772382 ], [ 9.217328401346414, 45.444071903540895 ], [ 9.21848619218307, 45.443523643051719 ], [ 9.218552518268996, 45.443549364300907 ], [ 9.218653175845313, 45.443404387709435 ], [ 9.218775109400646, 45.443302774905817 ], [ 9.219634364009693, 45.442920866140369 ], [ 9.219406084260012, 45.442776946800535 ], [ 9.219720056301167, 45.442515290662207 ], [ 9.219647783008389, 45.442485011694558 ], [ 9.219688603116197, 45.44245164133131 ], [ 9.219530578678048, 45.44236515446056 ], [ 9.219647714943672, 45.442258144761688 ], [ 9.219501423041569, 45.442182628547179 ], [ 9.21973287975546, 45.441849243336009 ], [ 9.218820775118205, 45.441529136803638 ], [ 9.218806553455833, 45.441480743517602 ], [ 9.218395531631304, 45.44136816162414 ], [ 9.218396726095639, 45.441366690300953 ], [ 9.218291695326506, 45.441328862019127 ], [ 9.218324095531193, 45.441073441666887 ], [ 9.218623497145053, 45.441092110663647 ], [ 9.218628583773427, 45.441094445848847 ], [ 9.218630329347903, 45.441092536671988 ], [ 9.218635782420488, 45.441092876687144 ], [ 9.218733074560257, 45.441137333278903 ], [ 9.21875208676917, 45.441116878455745 ], [ 9.218813023843637, 45.441144702308307 ], [ 9.218873539673194, 45.441079326484157 ], [ 9.218886139395709, 45.441085117472305 ], [ 9.220345132050307, 45.439511776038657 ], [ 9.220344531590584, 45.439511498338717 ], [ 9.220448284739712, 45.439399747786119 ], [ 9.22044335546188, 45.439397493903243 ], [ 9.22053569872601, 45.439297784003372 ] ], [ [ 9.227786901556945, 45.440849994238867 ], [ 9.227978518553869, 45.440734505583698 ], [ 9.227975420496394, 45.44083547991363 ], [ 9.227909730261615, 45.44083451368558 ], [ 9.22790916039015, 45.440851842885543 ], [ 9.227786901556945, 45.440849994238867 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.145967714724881, 45.442187805537536 ], [ 9.145982582817973, 45.442193655182407 ], [ 9.147479925226168, 45.440321801708457 ], [ 9.144974022215409, 45.439335562309445 ], [ 9.144906862044502, 45.439419551335511 ], [ 9.144905888905033, 45.439419167226006 ], [ 9.14480250837061, 45.439548519550918 ], [ 9.144744988137335, 45.439525811266478 ], [ 9.144192586992661, 45.440216643819205 ], [ 9.143793299277625, 45.440393685659195 ], [ 9.142475239404725, 45.441381966457953 ], [ 9.142809887931884, 45.441522613002199 ], [ 9.142721621404309, 45.441613734101999 ], [ 9.143218758118595, 45.441771489804943 ], [ 9.143267372950124, 45.441818428870157 ], [ 9.143078109158642, 45.442120250056099 ], [ 9.145103143333742, 45.443321640523791 ], [ 9.145967714724881, 45.442187805537536 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.24966646310493, 45.444540904558124 ], [ 9.249823441156451, 45.44467236939991 ], [ 9.249711354397199, 45.4447383787695 ], [ 9.25020026271712, 45.445147876526264 ], [ 9.249694599417444, 45.445464238017188 ], [ 9.249719185215762, 45.445483490817359 ], [ 9.249605120635398, 45.445554829578171 ], [ 9.249650661971108, 45.445590631531722 ], [ 9.249598258301809, 45.44562338236338 ], [ 9.251383166370847, 45.447026230028605 ], [ 9.251429989803777, 45.446997049790369 ], [ 9.251476168370482, 45.447033351381393 ], [ 9.251594474262177, 45.446959154008937 ], [ 9.251685669833909, 45.447030953318546 ], [ 9.252257122807915, 45.446667848426458 ], [ 9.251923545776794, 45.448538124750726 ], [ 9.252003982685897, 45.448545188432981 ], [ 9.251932732462995, 45.448944269720037 ], [ 9.254721384992214, 45.449188626524318 ], [ 9.254798338307809, 45.448757360342434 ], [ 9.255150901533835, 45.448778147972291 ], [ 9.255480241866271, 45.446932953699445 ], [ 9.255214684428749, 45.44690965928713 ], [ 9.255216765449779, 45.446898211905769 ], [ 9.252299370253857, 45.446641003829001 ], [ 9.253664662862018, 45.445773456327849 ], [ 9.253615777064589, 45.445734979408243 ], [ 9.253807898254989, 45.445614767362315 ], [ 9.253586124757467, 45.445440242711136 ], [ 9.254311929990926, 45.445013416990335 ], [ 9.254211051655554, 45.444929021149264 ], [ 9.254394020323076, 45.444821476425808 ], [ 9.252613716094798, 45.44333070111535 ], [ 9.252536177802414, 45.443376293228489 ], [ 9.252471876643583, 45.443322541722011 ], [ 9.252170881523275, 45.443499272620308 ], [ 9.251929602804111, 45.443297329461494 ], [ 9.251856642101655, 45.443340175308563 ], [ 9.251794686355415, 45.443288260920859 ], [ 9.24966646310493, 45.444540904558124 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.244434135950042, 45.443075938579021 ], [ 9.244497277151492, 45.444983696642304 ], [ 9.245693805050855, 45.44515950241442 ], [ 9.247409360982607, 45.445410668551922 ], [ 9.24755152425322, 45.444946269881505 ], [ 9.247799982631795, 45.444944290386921 ], [ 9.247776605376668, 45.444343221982976 ], [ 9.24798160510635, 45.444283521738107 ], [ 9.247851475333341, 45.443966407002371 ], [ 9.247953887307917, 45.443631845541937 ], [ 9.247912108278802, 45.443622238332843 ], [ 9.247966237573234, 45.44343035704037 ], [ 9.247612225388954, 45.443383366312638 ], [ 9.247284088392364, 45.44258369156487 ], [ 9.244434135950042, 45.443075938579021 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.167287147387674, 45.443733878325602 ], [ 9.167529342303398, 45.446113373037889 ], [ 9.170368542761278, 45.445972115088004 ], [ 9.170368246662772, 45.445969208444254 ], [ 9.170851616944908, 45.445944955985979 ], [ 9.170610645278712, 45.443570485782132 ], [ 9.170127078733778, 45.443594647011537 ], [ 9.170126720397372, 45.443591115776186 ], [ 9.167287147387674, 45.443733878325602 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.158564859632785, 45.445875712309117 ], [ 9.158830272573219, 45.445950209717587 ], [ 9.160086533294782, 45.443959631338465 ], [ 9.159573311767929, 45.443808081240221 ], [ 9.1596754747299, 45.443637034492717 ], [ 9.157169540800941, 45.442886827224555 ], [ 9.156666355176156, 45.443713728235558 ], [ 9.156646006277954, 45.443706164602361 ], [ 9.15625914861892, 45.44428874874972 ], [ 9.156237213402376, 45.444036413389718 ], [ 9.155343332645625, 45.444096880492147 ], [ 9.155341255552328, 45.444072535819366 ], [ 9.152611070558214, 45.4442324390048 ], [ 9.152755271471321, 45.446257807266136 ], [ 9.153151853014071, 45.44623550911313 ], [ 9.153156601587323, 45.446250930500312 ], [ 9.153238348704917, 45.446247157546843 ], [ 9.153240563176235, 45.4462681649972 ], [ 9.153774397235011, 45.446245747438127 ], [ 9.153781782053077, 45.446280809824131 ], [ 9.154056292854676, 45.446270309511057 ], [ 9.154113139484997, 45.446850800043968 ], [ 9.155071922122181, 45.447045770741873 ], [ 9.155632290808658, 45.44716018818324 ], [ 9.157123976866771, 45.447464994596515 ], [ 9.157443775973737, 45.44640299127699 ], [ 9.158048804900492, 45.446622803073062 ], [ 9.158564859632785, 45.445875712309117 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.218265253370749, 45.446160696430297 ], [ 9.220751287550875, 45.446172841804085 ], [ 9.220751602177392, 45.446146438211528 ], [ 9.221007655049737, 45.446148021560312 ], [ 9.221009320636556, 45.4460203869616 ], [ 9.221010666818641, 45.446020396278591 ], [ 9.221021807300987, 45.445063513004797 ], [ 9.221032137034699, 45.444271907233457 ], [ 9.221031023395581, 45.444271899512344 ], [ 9.22103255476781, 45.444140360979269 ], [ 9.218008312753412, 45.444121398411369 ], [ 9.217986560127633, 45.445837501015681 ], [ 9.217648250707914, 45.445445163907294 ], [ 9.217607147938303, 45.445462500961639 ], [ 9.217446280463134, 45.445275467484194 ], [ 9.214988074385992, 45.446316247511675 ], [ 9.215750567033263, 45.447201375754197 ], [ 9.216516724946603, 45.448093118963705 ], [ 9.21901821816583, 45.447033873812543 ], [ 9.218265253370749, 45.446160696430297 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.245990324372283, 45.455369924427771 ], [ 9.246046437419102, 45.455895824078169 ], [ 9.245633031461427, 45.455905522974092 ], [ 9.245636312511602, 45.456048393869324 ], [ 9.245577992848858, 45.456049121682973 ], [ 9.245654686958366, 45.458058377036025 ], [ 9.24585910242018, 45.458054935585253 ], [ 9.245859715458243, 45.458089548608207 ], [ 9.246971325512837, 45.458076529820069 ], [ 9.245961438013477, 45.458815216784529 ], [ 9.245988826213011, 45.458833666064436 ], [ 9.245923975482086, 45.458881012639345 ], [ 9.246341327475479, 45.459161794302517 ], [ 9.245900868688519, 45.459490066189026 ], [ 9.246055801970769, 45.459592129841191 ], [ 9.246024446285542, 45.459614992291243 ], [ 9.248105774530206, 45.460994634607509 ], [ 9.248283817575155, 45.460863032865333 ], [ 9.248356978063342, 45.460911237855498 ], [ 9.250234175271441, 45.45954074224462 ], [ 9.250124617073805, 45.4594686837099 ], [ 9.250748693615828, 45.459028788019239 ], [ 9.250459143603232, 45.458826826564298 ], [ 9.250475966147922, 45.458814520323727 ], [ 9.24951125839902, 45.458165660280677 ], [ 9.249391482315565, 45.458082112727645 ], [ 9.250654803607182, 45.456697524719885 ], [ 9.249130007118371, 45.456001229194932 ], [ 9.249045486080366, 45.455210303035201 ], [ 9.247071572834436, 45.455313533359067 ], [ 9.245990324372283, 45.455369924427771 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.241079160949585, 45.457466068727136 ], [ 9.24148268305238, 45.457730709798682 ], [ 9.241419790000833, 45.457777645290996 ], [ 9.243382370367385, 45.45909622187785 ], [ 9.244565524503507, 45.458214796814609 ], [ 9.245591058097521, 45.457391807630032 ], [ 9.243634704806249, 45.456136175390583 ], [ 9.243469203087878, 45.456260008797422 ], [ 9.243460064673435, 45.456253836228122 ], [ 9.243401731584068, 45.456297443536755 ], [ 9.242981707297171, 45.456019358683392 ], [ 9.241079160949585, 45.457466068727136 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.086827905145277, 45.455712264955885 ], [ 9.086879119659582, 45.456164196674791 ], [ 9.086634440536882, 45.456560092839283 ], [ 9.087775211424576, 45.456907443756677 ], [ 9.088950496834995, 45.457326028973498 ], [ 9.08898209050229, 45.457274906742313 ], [ 9.089346026941477, 45.457385712385673 ], [ 9.090437206205738, 45.455624517807387 ], [ 9.09010062583482, 45.455519619276821 ], [ 9.090320922463196, 45.455147203901106 ], [ 9.088448598297514, 45.454648634457016 ], [ 9.087329809316463, 45.454877647040433 ], [ 9.086827905145277, 45.455712264955885 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.148068179501109, 45.455940727392395 ], [ 9.148081159229585, 45.455944460548295 ], [ 9.147974267247953, 45.456127099593012 ], [ 9.14669084044365, 45.45576313513655 ], [ 9.146679805371891, 45.455781954230083 ], [ 9.146575735129288, 45.455749303484893 ], [ 9.145509954730112, 45.457507607618226 ], [ 9.14809941197476, 45.45827438435834 ], [ 9.14853878613402, 45.457468527143497 ], [ 9.149022002220573, 45.457598494900118 ], [ 9.150734213973346, 45.458097557443288 ], [ 9.151052055284541, 45.457560905630288 ], [ 9.151054953320543, 45.45756174900869 ], [ 9.15107639202424, 45.457519814367743 ], [ 9.151128279622746, 45.45743220476011 ], [ 9.151181635631161, 45.457447790395676 ], [ 9.151292109435813, 45.457261352557225 ], [ 9.151618921811799, 45.457352718690544 ], [ 9.151647279196704, 45.457302690901955 ], [ 9.1518489322862, 45.457358969428746 ], [ 9.152882335542145, 45.455532491001634 ], [ 9.152860536401798, 45.455526418119142 ], [ 9.152988261474928, 45.455300838533759 ], [ 9.151874484597025, 45.454977578876694 ], [ 9.151916584189404, 45.454905550621085 ], [ 9.151829864408304, 45.454880560750979 ], [ 9.15192244631767, 45.454722225260994 ], [ 9.149312737112023, 45.453970522207598 ], [ 9.149215848986744, 45.454136468068199 ], [ 9.14913667310401, 45.454113678169506 ], [ 9.148068179501109, 45.455940727392395 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.110127515522944, 45.457026439166455 ], [ 9.110343591839914, 45.457065385765844 ], [ 9.110328733627428, 45.457105854224231 ], [ 9.110457883948794, 45.457129201322758 ], [ 9.110440097297936, 45.457177535653834 ], [ 9.112990765017443, 45.457637009726263 ], [ 9.113008003144309, 45.457590160512183 ], [ 9.113194804874276, 45.457623930769842 ], [ 9.113879932306569, 45.455756314744249 ], [ 9.11378666983574, 45.455739421798626 ], [ 9.113844748569914, 45.455581136053688 ], [ 9.111073944660941, 45.455079436885548 ], [ 9.111061873293778, 45.455112293388879 ], [ 9.110844492441414, 45.455073008178758 ], [ 9.110127515522944, 45.457026439166455 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.090276648973987, 45.459947295447222 ], [ 9.092681752837709, 45.460718538172237 ], [ 9.093464551400901, 45.459786689146753 ], [ 9.093568811503784, 45.459604366668628 ], [ 9.09389932492433, 45.458606909996334 ], [ 9.091645977978928, 45.457950378012811 ], [ 9.090815155378419, 45.458818978677002 ], [ 9.090726546181871, 45.459000343063082 ], [ 9.090276648973987, 45.459947295447222 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.096685405522326, 45.459259494188792 ], [ 9.096944439892695, 45.459317665870067 ], [ 9.096937320909664, 45.459334348862654 ], [ 9.097536049651429, 45.459450521778891 ], [ 9.099281484748429, 45.459842467031486 ], [ 9.099306028509853, 45.459793934280917 ], [ 9.099732459431021, 45.459876665970732 ], [ 9.099738977817491, 45.459859532311 ], [ 9.099897600179812, 45.459889203945821 ], [ 9.099897673226391, 45.459889022528372 ], [ 9.100114493263096, 45.459931718476057 ], [ 9.100125277365661, 45.459905188789392 ], [ 9.100398444063412, 45.459957553803513 ], [ 9.101096461525087, 45.458125541226387 ], [ 9.100873461611879, 45.458081662948914 ], [ 9.100876347447604, 45.458074693986511 ], [ 9.100648209473338, 45.458029540472793 ], [ 9.100648379606747, 45.458029125537273 ], [ 9.100242156153051, 45.457948899862352 ], [ 9.100265924492506, 45.457900976202744 ], [ 9.097666824694564, 45.457318149140221 ], [ 9.097582602501546, 45.457498863791677 ], [ 9.097491097935709, 45.457479472995409 ], [ 9.096685405522326, 45.459259494188792 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.102284737899664, 45.457661232868091 ], [ 9.102447401180966, 45.458655470458687 ], [ 9.102302683497758, 45.458645633408501 ], [ 9.102282878006891, 45.458788266005051 ], [ 9.102259717452236, 45.458786677580633 ], [ 9.102193770612899, 45.459262194765344 ], [ 9.10197501485041, 45.459246408921452 ], [ 9.101697009679025, 45.461147498984431 ], [ 9.101781714819129, 45.46115363156359 ], [ 9.101723615260237, 45.461549323093465 ], [ 9.104510533997235, 45.461750798696038 ], [ 9.104568268910521, 45.461357965529963 ], [ 9.104641133562508, 45.461363220249069 ], [ 9.104643152881424, 45.461349419818539 ], [ 9.104917940520824, 45.461369224217286 ], [ 9.105010002283878, 45.460738281819104 ], [ 9.105077993521105, 45.460742929155266 ], [ 9.105204737806101, 45.459833175929461 ], [ 9.105639814381966, 45.459798163603153 ], [ 9.105598014911335, 45.459542826001126 ], [ 9.105715617092669, 45.459533378867455 ], [ 9.105368489928869, 45.457415386186085 ], [ 9.105015858222323, 45.457443637727955 ], [ 9.10501551036382, 45.457441515621198 ], [ 9.102284737899664, 45.457661232868091 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.133661949707614, 45.458028758990473 ], [ 9.133729822516852, 45.459595696740593 ], [ 9.133471775440624, 45.460074652749618 ], [ 9.133753778621355, 45.460148735185335 ], [ 9.133758535656129, 45.460258552342765 ], [ 9.134154240390219, 45.460253935244047 ], [ 9.134268004080417, 45.460283820282982 ], [ 9.134285220648721, 45.460622763623469 ], [ 9.134318323024333, 45.460620175876635 ], [ 9.134319391191534, 45.460636852307587 ], [ 9.135361024910717, 45.460570942903033 ], [ 9.13623682811658, 45.460800995559218 ], [ 9.136262685685908, 45.460744890665147 ], [ 9.136268221841737, 45.46074605901083 ], [ 9.136791027576766, 45.460480443721544 ], [ 9.136999921944875, 45.460467222105052 ], [ 9.136993848472196, 45.460377397759665 ], [ 9.137491243393827, 45.460124686269552 ], [ 9.137293443021585, 45.45785022424031 ], [ 9.135582575241806, 45.457946071452717 ], [ 9.133661949707614, 45.458028758990473 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.104548879010878, 45.468805217467768 ], [ 9.104893796172069, 45.468926478355883 ], [ 9.104831975399316, 45.469013241988947 ], [ 9.105618613862234, 45.469289133663629 ], [ 9.105616624853079, 45.469291991761914 ], [ 9.106052857992379, 45.469441429295472 ], [ 9.107174234654345, 45.469834700686377 ], [ 9.107179474954433, 45.469827355715204 ], [ 9.107971725383203, 45.470098733927706 ], [ 9.108022035003485, 45.470026414153381 ], [ 9.108357975298388, 45.47014461969971 ], [ 9.108612440451068, 45.469788368838607 ], [ 9.108640455654353, 45.469798168713154 ], [ 9.10881483774355, 45.469552995579448 ], [ 9.10882585640659, 45.469556805932811 ], [ 9.110158850912097, 45.467661487694784 ], [ 9.10969101887947, 45.467499653329163 ], [ 9.109730936183146, 45.467442911789611 ], [ 9.10678213199234, 45.466422874343188 ], [ 9.106739173558465, 45.466483943035009 ], [ 9.106302626099236, 45.466332775701474 ], [ 9.106188214175742, 45.466495343669941 ], [ 9.106148168954315, 45.466481606210202 ], [ 9.10505022357346, 45.468040693310321 ], [ 9.104766189579305, 45.468440323644728 ], [ 9.104800898753702, 45.468452547888646 ], [ 9.104548879010878, 45.468805217467768 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.192345637172542, 45.467462164952259 ], [ 9.194702577018141, 45.468982517691444 ], [ 9.19622015292819, 45.467371745894717 ], [ 9.196094449957654, 45.467289680775231 ], [ 9.196271704010814, 45.466993763791024 ], [ 9.195401902101557, 45.466622722697608 ], [ 9.194969508275737, 45.466346771771704 ], [ 9.194622182952578, 45.466363223658028 ], [ 9.194150896471783, 45.4660660292503 ], [ 9.192345637172542, 45.467462164952259 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.146513091074512, 45.468325746736816 ], [ 9.147233448654791, 45.46876550897327 ], [ 9.149422282432367, 45.470150308531835 ], [ 9.149829406745466, 45.469835746074587 ], [ 9.149890070787118, 45.469875648749635 ], [ 9.150886947304413, 45.469141620331001 ], [ 9.151408580580403, 45.468850836892742 ], [ 9.151342720990819, 45.468806011988953 ], [ 9.151965142176351, 45.468347683592611 ], [ 9.15181565657293, 45.468248157736959 ], [ 9.151874773287469, 45.468199459227286 ], [ 9.151107474550964, 45.46773052944279 ], [ 9.151117656828172, 45.467713410513902 ], [ 9.150210888361139, 45.467150723506442 ], [ 9.15018358330963, 45.467139392935245 ], [ 9.149129122654921, 45.466388476533467 ], [ 9.146513091074512, 45.468325746736816 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.245404493442839, 45.4730426239446 ], [ 9.2454251006871, 45.473047382769415 ], [ 9.24538846071937, 45.473127887812844 ], [ 9.24804708943841, 45.473750309997584 ], [ 9.248269422936072, 45.473287963095274 ], [ 9.248487825826125, 45.473342905569261 ], [ 9.248491419221919, 45.47333366521746 ], [ 9.248709454790957, 45.473393563837007 ], [ 9.249714578973562, 45.471542645811482 ], [ 9.247702178528217, 45.471044969194296 ], [ 9.246183911060319, 45.470776361050248 ], [ 9.246089159535593, 45.471097709840961 ], [ 9.246089113853849, 45.471097703329534 ], [ 9.245755580796795, 45.472216029015151 ], [ 9.245404493442839, 45.4730426239446 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.203042643666432, 45.472468010677211 ], [ 9.203758021378054, 45.473073377859045 ], [ 9.203891496321891, 45.473189199135369 ], [ 9.204772313239641, 45.47383639235553 ], [ 9.206321737063863, 45.472938621503303 ], [ 9.206633112535808, 45.471211977037946 ], [ 9.203822662635778, 45.471071559134259 ], [ 9.203738934864836, 45.471631807697278 ], [ 9.203042643666432, 45.472468010677211 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.164898643173562, 45.473629012825832 ], [ 9.165131984781175, 45.473576177760563 ], [ 9.164129866382924, 45.471395129734113 ], [ 9.162161707851919, 45.471840756394862 ], [ 9.161823474285574, 45.471625063804503 ], [ 9.161158849422788, 45.472143012515964 ], [ 9.161129004246799, 45.472124459681289 ], [ 9.159614924842172, 45.473346156513315 ], [ 9.159568433158359, 45.473382385265403 ], [ 9.159569310917171, 45.473382960839409 ], [ 9.159305802452369, 45.473595575568254 ], [ 9.160477958291983, 45.474353861795386 ], [ 9.161012129253658, 45.47470135120858 ], [ 9.161918769433857, 45.475291893746466 ], [ 9.161918960349166, 45.475291748900752 ], [ 9.162540832712651, 45.475696788755137 ], [ 9.162608669262756, 45.475644615240853 ], [ 9.162944579245833, 45.475859041240987 ], [ 9.165234833832962, 45.47402516080551 ], [ 9.16514035188948, 45.473952988093494 ], [ 9.165261999807967, 45.473858264004498 ], [ 9.164898643173562, 45.473629012825832 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.207444691832757, 45.469740584806736 ], [ 9.209015946189661, 45.469757521526674 ], [ 9.208982036708127, 45.471415617570308 ], [ 9.209449091854385, 45.471420263116229 ], [ 9.209449090176259, 45.471420298669699 ], [ 9.212088421346346, 45.471446571857129 ], [ 9.212080913988448, 45.472051949487579 ], [ 9.214779548112203, 45.472078964238847 ], [ 9.214785444792954, 45.471902152295819 ], [ 9.21490944501042, 45.471904271196166 ], [ 9.21494058022588, 45.469981584285165 ], [ 9.212359042001875, 45.469965671324907 ], [ 9.212387416518199, 45.468399399490444 ], [ 9.211868319546943, 45.468394857340833 ], [ 9.211868349638383, 45.468392295400257 ], [ 9.211042062861749, 45.468387622646048 ], [ 9.210383367449623, 45.468381850832998 ], [ 9.210393921810798, 45.467903472041989 ], [ 9.21039379991023, 45.467903470744446 ], [ 9.210398727147796, 45.467680525594687 ], [ 9.210202721849754, 45.467678437287653 ], [ 9.210203735381894, 45.467633626802055 ], [ 9.207491131628148, 45.467605509196687 ], [ 9.207444691832757, 45.469740584806736 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.117695927687214, 45.468802343311651 ], [ 9.117770992792629, 45.468804654715697 ], [ 9.117754374409259, 45.469000404649691 ], [ 9.117810876288221, 45.469002858236649 ], [ 9.117797205339908, 45.469164981520201 ], [ 9.11815465067181, 45.469179649787833 ], [ 9.116072167060993, 45.47041360435837 ], [ 9.116377040220137, 45.47066930913676 ], [ 9.115702017760617, 45.471061618026489 ], [ 9.11654179977665, 45.471721774290742 ], [ 9.117874766743405, 45.472872569728949 ], [ 9.120367036160365, 45.471434176533819 ], [ 9.120068503845275, 45.471169676164678 ], [ 9.12029907185509, 45.471037039901894 ], [ 9.119871321307647, 45.470665412560002 ], [ 9.120150389398015, 45.470503735639433 ], [ 9.11850789216207, 45.469194144438454 ], [ 9.120596833524019, 45.469279838031575 ], [ 9.120625094135091, 45.468943186947421 ], [ 9.120932088654682, 45.46895555339529 ], [ 9.12109757612089, 45.466913738783873 ], [ 9.120705064163465, 45.466898092722168 ], [ 9.120714733809308, 45.466742386928679 ], [ 9.120686798869862, 45.466741538236384 ], [ 9.120690152991436, 45.466687178639795 ], [ 9.117905700976818, 45.466602646957156 ], [ 9.117886290617156, 45.466913011002021 ], [ 9.117812295834558, 45.46691079115881 ], [ 9.117695927687214, 45.468802343311651 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.101942911067503, 45.471449203046085 ], [ 9.102070070325098, 45.471498973898363 ], [ 9.102054473152975, 45.471518448092652 ], [ 9.10444195789602, 45.472452567362645 ], [ 9.105963149465856, 45.470538174496312 ], [ 9.103590324113792, 45.469609366038327 ], [ 9.10348416855946, 45.469742944371241 ], [ 9.10334377332223, 45.469688118676132 ], [ 9.101942911067503, 45.471449203046085 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.111344293865375, 45.472003068006437 ], [ 9.114054803942219, 45.472263443636059 ], [ 9.11406748646011, 45.472198346450377 ], [ 9.114300909642822, 45.472220819640434 ], [ 9.114691992816406, 45.470222412319828 ], [ 9.114648235887053, 45.470218186119048 ], [ 9.11467889439113, 45.470061158154905 ], [ 9.111824544349377, 45.469785895895853 ], [ 9.111793167447932, 45.469946253309388 ], [ 9.111747605798822, 45.469941874557975 ], [ 9.111527869329421, 45.471065892605395 ], [ 9.111344293865375, 45.472003068006437 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.229841516423827, 45.472619802496055 ], [ 9.23260538827186, 45.472650922029231 ], [ 9.232608141147894, 45.472546336636555 ], [ 9.233548643113116, 45.472547318288761 ], [ 9.233566004483462, 45.470190413951578 ], [ 9.229926267067874, 45.470156683670446 ], [ 9.2299199124294, 45.470692643769688 ], [ 9.229902033352355, 45.470692643564647 ], [ 9.229841516423827, 45.472619802496055 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.127267516276309, 45.470842124413167 ], [ 9.127939809805575, 45.471260658899965 ], [ 9.129977150531023, 45.469651219600671 ], [ 9.127524369731931, 45.468124283805587 ], [ 9.127413948232212, 45.4682115759475 ], [ 9.12733915065771, 45.468165097059803 ], [ 9.126661153765063, 45.468700537953261 ], [ 9.124231289728156, 45.469446946013775 ], [ 9.12428420620164, 45.469531500218906 ], [ 9.124116911007647, 45.46958294102366 ], [ 9.125182221694965, 45.471286477520195 ], [ 9.125348830211223, 45.471235311915692 ], [ 9.125443562954125, 45.471387038506009 ], [ 9.124281340680435, 45.471420200983935 ], [ 9.124296404688835, 45.471680583519955 ], [ 9.123997315882024, 45.471689046532461 ], [ 9.124027281347521, 45.472206774860048 ], [ 9.123838903777139, 45.472212389493869 ], [ 9.123845753705616, 45.472326127486745 ], [ 9.123791804098927, 45.472327721043399 ], [ 9.123916817646293, 45.474401323870751 ], [ 9.126236037481563, 45.474333082180252 ], [ 9.127609219434127, 45.47521277715483 ], [ 9.127871651990032, 45.475021171220554 ], [ 9.128098274168835, 45.475173243061825 ], [ 9.128289913544045, 45.475032207988498 ], [ 9.128403986538865, 45.475113785551677 ], [ 9.128841845476412, 45.474706085373128 ], [ 9.129366066092597, 45.474941798312443 ], [ 9.13013570899947, 45.474133913610622 ], [ 9.130779898350852, 45.473637490264373 ], [ 9.130786381749665, 45.473641675343394 ], [ 9.132660449259047, 45.472216015587541 ], [ 9.133054623346823, 45.471927422990731 ], [ 9.132597688009691, 45.471620320207279 ], [ 9.132758872005942, 45.47150242691103 ], [ 9.130477070314061, 45.46996883110662 ], [ 9.130252068304875, 45.470133458817102 ], [ 9.13003529653758, 45.469987732926541 ], [ 9.128102681918474, 45.471402393962698 ], [ 9.128118633688, 45.471413116620617 ], [ 9.127662253100503, 45.471746989462424 ], [ 9.127860758066582, 45.471878003891881 ], [ 9.127123515588032, 45.472216884839824 ], [ 9.127072717595656, 45.471340532759143 ], [ 9.125505358772729, 45.471385274911754 ], [ 9.127267516276309, 45.470842124413167 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.165253592775953, 45.469754862408401 ], [ 9.1660225245832, 45.470253627500419 ], [ 9.166022382789253, 45.470253734935994 ], [ 9.166856517412151, 45.470794578343451 ], [ 9.167560509200239, 45.471251194060649 ], [ 9.167560628829486, 45.471251103333202 ], [ 9.167883419652799, 45.471460387410723 ], [ 9.166835228345418, 45.472264026538163 ], [ 9.166935413957193, 45.472328121201251 ], [ 9.166784515231544, 45.472443960707096 ], [ 9.16881211058341, 45.473743038728529 ], [ 9.17075360877803, 45.472251734917826 ], [ 9.168895122046555, 45.471062029153053 ], [ 9.169209197600081, 45.470823779282334 ], [ 9.170082558813538, 45.470161849362427 ], [ 9.170082135803305, 45.470161575052494 ], [ 9.170263451676368, 45.470024027433332 ], [ 9.169454459688083, 45.469499942193714 ], [ 9.169457056799985, 45.46949797009313 ], [ 9.167374052084662, 45.468146658913099 ], [ 9.166313487883379, 45.468950942676379 ], [ 9.165253592775953, 45.469754862408401 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.144947180613389, 45.471624749719894 ], [ 9.145086750218487, 45.471132613411143 ], [ 9.145351104438182, 45.47033558524555 ], [ 9.145314558650991, 45.470329319445092 ], [ 9.145534586609754, 45.469553438737968 ], [ 9.142877904514158, 45.46925661940034 ], [ 9.142812253362621, 45.469454534130996 ], [ 9.142360799318384, 45.469386863981072 ], [ 9.142345408680058, 45.469427666079852 ], [ 9.142175707042581, 45.469401180380487 ], [ 9.141941156245375, 45.470170417293879 ], [ 9.141704907819374, 45.470121569600558 ], [ 9.141675543838351, 45.470170467232244 ], [ 9.141284148943535, 45.470107228772974 ], [ 9.140452349544981, 45.471765202193076 ], [ 9.140339075531307, 45.471847428873652 ], [ 9.142852139125694, 45.473472080623502 ], [ 9.143890332198048, 45.472657814325551 ], [ 9.144222893536552, 45.472409320196704 ], [ 9.145160311445178, 45.471765361692007 ], [ 9.144947180613389, 45.471624749719894 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.193088346117642, 45.47060926666574 ], [ 9.194946625959314, 45.472084227309651 ], [ 9.195953044770189, 45.472084228331482 ], [ 9.196125959622409, 45.472182923578124 ], [ 9.196236345818994, 45.472084227019785 ], [ 9.196237618555006, 45.472084227012296 ], [ 9.196790424072319, 45.471588817518843 ], [ 9.197756622450354, 45.470724898114483 ], [ 9.19536417016748, 45.469187620410821 ], [ 9.193088346117642, 45.47060926666574 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.110137814866574, 45.474874724128171 ], [ 9.111277810661038, 45.476581092713538 ], [ 9.111610825018236, 45.476471865497061 ], [ 9.11163911689078, 45.476514303153593 ], [ 9.114126280714656, 45.475696858541774 ], [ 9.112940818793431, 45.473923892105844 ], [ 9.110494891712671, 45.474728637612131 ], [ 9.110510601922348, 45.474752204370247 ], [ 9.110137814866574, 45.474874724128171 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.117478963173728, 45.474215446237395 ], [ 9.117482937079618, 45.474475671448836 ], [ 9.1168058155298, 45.474487273150096 ], [ 9.116809535290685, 45.474645810860856 ], [ 9.116763671778836, 45.474646522155652 ], [ 9.116823782284412, 45.476499217028838 ], [ 9.117041609857647, 45.476497824806714 ], [ 9.117043444509985, 45.476564935788709 ], [ 9.119676399986535, 45.476536316766122 ], [ 9.11967602833651, 45.47648453609699 ], [ 9.120451918002297, 45.476478236444329 ], [ 9.120451081799878, 45.476421548611214 ], [ 9.120715930266766, 45.476419443633702 ], [ 9.120686147856041, 45.474517688523839 ], [ 9.120601634245105, 45.474518348751829 ], [ 9.120590975375514, 45.473842056614757 ], [ 9.120543769758637, 45.473842461295433 ], [ 9.120543026141995, 45.473788676581357 ], [ 9.117612387971105, 45.473811783668374 ], [ 9.117613144090386, 45.473866564913003 ], [ 9.117559600670671, 45.473866995406958 ], [ 9.117564977817194, 45.47421475355948 ], [ 9.117478963173728, 45.474215446237395 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.198318547925332, 45.47521964656233 ], [ 9.198285106117321, 45.475235906576749 ], [ 9.198624538943564, 45.475631130025704 ], [ 9.198623828527397, 45.475633209255811 ], [ 9.198672398809819, 45.475686855814061 ], [ 9.199603355307323, 45.476770791983739 ], [ 9.199712457271158, 45.476726496659516 ], [ 9.199789891124443, 45.476809743821057 ], [ 9.201430702809262, 45.476103206058937 ], [ 9.201451258405566, 45.476037605896444 ], [ 9.202258996424757, 45.475700423267611 ], [ 9.200867584982163, 45.474053424778816 ], [ 9.200033648183572, 45.474406119269062 ], [ 9.199928176710415, 45.474388123540749 ], [ 9.1982170809188, 45.475110311573822 ], [ 9.198318547925332, 45.47521964656233 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.08689836585841, 45.461725705994553 ], [ 9.08735438366976, 45.461893144435287 ], [ 9.087496203243347, 45.461707222762811 ], [ 9.087841261733606, 45.461816441043538 ], [ 9.087208924983333, 45.462722046472706 ], [ 9.087310874420718, 45.462757986535955 ], [ 9.087294651305982, 45.462781146104874 ], [ 9.08743715343236, 45.46283306772559 ], [ 9.087224416090994, 45.46310762039937 ], [ 9.087007784171094, 45.463057410195042 ], [ 9.087005044486556, 45.463063622374015 ], [ 9.086077699783855, 45.462850033623155 ], [ 9.085994474388176, 45.463030852071299 ], [ 9.085971415361149, 45.463025727541769 ], [ 9.085910230771546, 45.463159102695698 ], [ 9.08586130690505, 45.463147579064362 ], [ 9.085124418798909, 45.464738192328603 ], [ 9.085084923894701, 45.464808950441501 ], [ 9.085088795324086, 45.46481508515194 ], [ 9.085068299754045, 45.464859324482561 ], [ 9.084719684522755, 45.465454143728479 ], [ 9.086243854086119, 45.46586576965796 ], [ 9.086162279714218, 45.466047408154949 ], [ 9.088874004332158, 45.466609078617239 ], [ 9.088952822113166, 45.466430844777577 ], [ 9.089803303750022, 45.466626113528967 ], [ 9.090016788865496, 45.466176448146051 ], [ 9.090058054075227, 45.466185904226641 ], [ 9.090929067214871, 45.464389757048629 ], [ 9.090188855293617, 45.464218475899905 ], [ 9.090256019076604, 45.464150461944662 ], [ 9.090317884243316, 45.464180110373846 ], [ 9.0904007823426, 45.464098679955612 ], [ 9.090483980127932, 45.464139392517538 ], [ 9.092057804639236, 45.462566864601094 ], [ 9.091288519362058, 45.462191788952325 ], [ 9.091336152800022, 45.462129948717539 ], [ 9.090808368248702, 45.461928589373947 ], [ 9.09083275837701, 45.461895357222211 ], [ 9.090779298562355, 45.461875463850639 ], [ 9.090826802412362, 45.461809886415338 ], [ 9.089662496184566, 45.461398965403973 ], [ 9.0896098087927, 45.461373275092029 ], [ 9.089604542479035, 45.461378511215479 ], [ 9.088495210334395, 45.460986974843856 ], [ 9.089338782694004, 45.459843048247208 ], [ 9.088907736881122, 45.459682464881695 ], [ 9.088924481351754, 45.459656442073097 ], [ 9.087322168791109, 45.459091749722859 ], [ 9.086869474019696, 45.458923088609176 ], [ 9.086864467714481, 45.4589304389687 ], [ 9.08648095779585, 45.458795273792198 ], [ 9.086137560153817, 45.45926531364313 ], [ 9.085518584666399, 45.459055840999653 ], [ 9.085439772267531, 45.459170446999586 ], [ 9.085299269227708, 45.459122939270451 ], [ 9.084049344105409, 45.460941237990028 ], [ 9.084338249636993, 45.461039047610008 ], [ 9.084267540287748, 45.46114183566074 ], [ 9.086727435940965, 45.461974274534178 ], [ 9.08689836585841, 45.461725705994553 ] ], [ [ 9.089958857760779, 45.464147974251347 ], [ 9.09004478672737, 45.464178992681134 ], [ 9.090055352956981, 45.464164424179707 ], [ 9.090152317229261, 45.464210021032528 ], [ 9.089951906866991, 45.464163646044973 ], [ 9.089958857760779, 45.464147974251347 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.21121190574485, 45.458295284253957 ], [ 9.211211887179324, 45.459115209120888 ], [ 9.20981362616569, 45.459266785269044 ], [ 9.209900353559643, 45.459609088006808 ], [ 9.209899949957128, 45.459609132451341 ], [ 9.210089582676908, 45.460356299838601 ], [ 9.210110852963549, 45.460440529363566 ], [ 9.209004912601864, 45.460533402379262 ], [ 9.207330243602042, 45.460683076609932 ], [ 9.207642519874353, 45.462707237533216 ], [ 9.209295523611752, 45.462590035107986 ], [ 9.209409981296222, 45.462582060789913 ], [ 9.210820887204505, 45.462478349757461 ], [ 9.21066858668182, 45.461493799747615 ], [ 9.210684596638504, 45.461492118703333 ], [ 9.210741628636436, 45.46174819412488 ], [ 9.211048492180398, 45.461714516456887 ], [ 9.211054723702665, 45.461741970740029 ], [ 9.211290724426352, 45.461716044722657 ], [ 9.211315736519316, 45.461828270938867 ], [ 9.211769373604389, 45.461778376048507 ], [ 9.211777358083651, 45.461814014676712 ], [ 9.212671460464563, 45.461715596361948 ], [ 9.2157103887746, 45.461741296684842 ], [ 9.21528288805661, 45.459837734287241 ], [ 9.215129968355173, 45.459835881808317 ], [ 9.214879009339176, 45.458694347573953 ], [ 9.214502644782215, 45.458735063235828 ], [ 9.214499148057252, 45.458719005497308 ], [ 9.214227615407717, 45.458747744164747 ], [ 9.214190374684273, 45.458151394096909 ], [ 9.214074331428497, 45.458157048724779 ], [ 9.21405471481294, 45.457991908560707 ], [ 9.211315331873815, 45.458187888828569 ], [ 9.211325690730625, 45.458293522904114 ], [ 9.21121190574485, 45.458295284253957 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.242595926325645, 45.460755969652816 ], [ 9.243921933349576, 45.459791219380129 ], [ 9.243829952147555, 45.459728511818298 ], [ 9.244023392043879, 45.459582874741969 ], [ 9.241991165213022, 45.458254340658854 ], [ 9.241982783908014, 45.458260742552916 ], [ 9.241925015500051, 45.458222250743695 ], [ 9.240851957545166, 45.45901104800226 ], [ 9.240301355839469, 45.458854618060194 ], [ 9.240134879715367, 45.459142756074677 ], [ 9.240072825145177, 45.45912490818025 ], [ 9.239053806140472, 45.460872254101623 ], [ 9.23912087493415, 45.460891457846145 ], [ 9.239012648002127, 45.461072236259461 ], [ 9.239071378776933, 45.461089426637905 ], [ 9.238983109549038, 45.461236975067621 ], [ 9.241540003503617, 45.461988876133788 ], [ 9.24172033317287, 45.461687310197561 ], [ 9.241999577141828, 45.461768324005682 ], [ 9.242595926325645, 45.460755969652816 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.14354923902318, 45.4592088315705 ], [ 9.14427337106164, 45.461093260148672 ], [ 9.144466531947698, 45.461057379851816 ], [ 9.144473718250419, 45.461078488197316 ], [ 9.14627070751864, 45.460768488184534 ], [ 9.146093850371308, 45.46107112395449 ], [ 9.149097769773292, 45.461938736992693 ], [ 9.150165974282409, 45.460182426571663 ], [ 9.150048006436778, 45.460148275582036 ], [ 9.150249972110361, 45.459803530145891 ], [ 9.14767371187216, 45.459046825189297 ], [ 9.147467750286415, 45.459401105829876 ], [ 9.147127383373785, 45.459302505202643 ], [ 9.146808749143769, 45.459847776345789 ], [ 9.146374973736272, 45.458653081016429 ], [ 9.146120954889932, 45.458703099028362 ], [ 9.146120148465769, 45.458701044411811 ], [ 9.14354923902318, 45.4592088315705 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.234250103037372, 45.460693497118037 ], [ 9.234250148668828, 45.460698762165819 ], [ 9.234138797487656, 45.460696464145762 ], [ 9.234145987085482, 45.460354672964662 ], [ 9.231418001344016, 45.460361489976158 ], [ 9.231369494996052, 45.462902428580101 ], [ 9.232750413664116, 45.462887469517504 ], [ 9.232748968123547, 45.463018746537706 ], [ 9.232589982330252, 45.463017906262266 ], [ 9.23257450924733, 45.464432322610385 ], [ 9.23255604444971, 45.465190946127009 ], [ 9.232554796059606, 45.465239756598024 ], [ 9.232553753470432, 45.465282204058035 ], [ 9.232551340828904, 45.465386518509753 ], [ 9.232526726935655, 45.466326465748608 ], [ 9.232923077229813, 45.466327867855206 ], [ 9.232923071772607, 45.466328122442661 ], [ 9.234264360983142, 45.46633272401759 ], [ 9.234261965036112, 45.46641226475959 ], [ 9.234199206539577, 45.466412025840491 ], [ 9.234194233939071, 45.467023110800952 ], [ 9.234052625924441, 45.467046555217905 ], [ 9.234190997795583, 45.467420796453382 ], [ 9.234183463209213, 45.468346695987407 ], [ 9.234506112367823, 45.468347867102764 ], [ 9.234719464297804, 45.469154655868586 ], [ 9.23493661563011, 45.469123165944964 ], [ 9.234948015371407, 45.469175750927974 ], [ 9.23502153443359, 45.469163854145187 ], [ 9.235006709818508, 45.469966607598664 ], [ 9.235245417884405, 45.469968771894997 ], [ 9.235241627623594, 45.470179672280629 ], [ 9.23528143717936, 45.470180093571372 ], [ 9.235280221826663, 45.4702484099831 ], [ 9.235672191457486, 45.470251861536426 ], [ 9.235672179183812, 45.470252527864865 ], [ 9.238354667842541, 45.470276090187959 ], [ 9.238359775294878, 45.469996433139229 ], [ 9.238638059013891, 45.469998865991869 ], [ 9.238671591758276, 45.468094200849087 ], [ 9.237550137885334, 45.468084394273696 ], [ 9.237536651918202, 45.468048521371252 ], [ 9.237659698914722, 45.468048947822318 ], [ 9.237505227976945, 45.466139531063114 ], [ 9.235652162838036, 45.466129700996795 ], [ 9.235650251602342, 45.465838061247126 ], [ 9.235890501829829, 45.465839763760393 ], [ 9.235892930184075, 45.46567573152678 ], [ 9.236202853035616, 45.465677907073839 ], [ 9.236207163616584, 45.46538758628212 ], [ 9.236211005020737, 45.465387613902436 ], [ 9.236238750168093, 45.463441260885411 ], [ 9.236233568211572, 45.463441221516035 ], [ 9.236237987384509, 45.463136996396187 ], [ 9.235656098926006, 45.463132766272047 ], [ 9.235657658137434, 45.462989579564415 ], [ 9.235451564182579, 45.462988628671461 ], [ 9.235452560643875, 45.462894809095722 ], [ 9.233375969462768, 45.462885161786822 ], [ 9.235695957592416, 45.462854378217038 ], [ 9.235704222601591, 45.462636184706582 ], [ 9.23722176557067, 45.462633506606622 ], [ 9.237222158865679, 45.462614945612259 ], [ 9.237542792315026, 45.462616686436569 ], [ 9.23754448058544, 45.462547631184783 ], [ 9.237633973924829, 45.46254685601135 ], [ 9.237633179471322, 45.462510349932728 ], [ 9.237634311673679, 45.462485569796925 ], [ 9.237809360819785, 45.462485988867932 ], [ 9.237810086612855, 45.46235359264567 ], [ 9.237886752260167, 45.462354054103322 ], [ 9.237912003379337, 45.460404022941304 ], [ 9.237204911242754, 45.460404029337042 ], [ 9.237204908176755, 45.460268010107484 ], [ 9.237204844075224, 45.46026800836794 ], [ 9.237206799577649, 45.460175508688572 ], [ 9.23664011715352, 45.460173138884187 ], [ 9.234467068944944, 45.460144448004463 ], [ 9.234460301721935, 45.46027265749364 ], [ 9.234393004400269, 45.460275091322927 ], [ 9.234388358270355, 45.460692834003268 ], [ 9.234250103037372, 45.460693497118037 ] ], [ [ 9.233087292558235, 45.462883817679 ], [ 9.233193179620748, 45.46288266963554 ], [ 9.233194562475054, 45.462884317223377 ], [ 9.233087292558235, 45.462883817679 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.110168325181073, 45.461160046058602 ], [ 9.110360928648255, 45.461267528858826 ], [ 9.110258615141353, 45.461357751762328 ], [ 9.110814186462486, 45.461667678208549 ], [ 9.110475006517992, 45.462290395433172 ], [ 9.112086039668124, 45.462727960460057 ], [ 9.113193990701735, 45.463242218531974 ], [ 9.114684455600143, 45.461645974309654 ], [ 9.114281688959585, 45.461458015081327 ], [ 9.114833567026592, 45.460971368119701 ], [ 9.114721311192948, 45.460908755351269 ], [ 9.11485460365704, 45.460791251708258 ], [ 9.112690449877551, 45.459582885025036 ], [ 9.112638107285537, 45.459629099670799 ], [ 9.112556254722911, 45.459583320676636 ], [ 9.112315975162964, 45.459795087749974 ], [ 9.112024294579221, 45.459632263502442 ], [ 9.111957674095184, 45.459691047336378 ], [ 9.111882991446905, 45.459649472837192 ], [ 9.110168325181073, 45.461160046058602 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.131350486860709, 45.461395698090392 ], [ 9.131834423035622, 45.460491415516799 ], [ 9.128804909187233, 45.459693860201966 ], [ 9.12829323826918, 45.460649891265042 ], [ 9.128222387393862, 45.460633806570755 ], [ 9.12787799493095, 45.461379896195453 ], [ 9.127857824468123, 45.4613792320283 ], [ 9.127857486128255, 45.461424325679076 ], [ 9.127367720634572, 45.462485312984988 ], [ 9.127740750102616, 45.462570091314326 ], [ 9.127689071429154, 45.463779100229516 ], [ 9.130095480056221, 45.463804235628231 ], [ 9.131710159519608, 45.46382143446116 ], [ 9.131711363955723, 45.463742828733182 ], [ 9.133343931348296, 45.463759672631952 ], [ 9.133407469943386, 45.461706179836789 ], [ 9.132781962495928, 45.461684616129261 ], [ 9.132785215518574, 45.461633561176434 ], [ 9.132068195153778, 45.461642162175686 ], [ 9.131744648771171, 45.461570464362133 ], [ 9.131747542169023, 45.461381616725156 ], [ 9.131350486860709, 45.461395698090392 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.158413586350498, 45.461953485582477 ], [ 9.158417229453825, 45.461963551912845 ], [ 9.158155935678321, 45.462337265703596 ], [ 9.158610146343056, 45.462496599029755 ], [ 9.158701729292602, 45.462749647484401 ], [ 9.16127019080529, 45.463594907666668 ], [ 9.162284901071468, 45.461826932686584 ], [ 9.161706525922035, 45.461637689963837 ], [ 9.161819455288562, 45.461474435407439 ], [ 9.159359227489873, 45.460616219045917 ], [ 9.159221435293295, 45.460813306714677 ], [ 9.15916486530878, 45.46079432012052 ], [ 9.158413586350498, 45.461953485582477 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.226030317579909, 45.459938607295342 ], [ 9.22617614147593, 45.460945825626823 ], [ 9.226176121714156, 45.461819530755626 ], [ 9.224897425319865, 45.46181571869262 ], [ 9.224881954388982, 45.461086213588985 ], [ 9.224893821192081, 45.459901495189762 ], [ 9.221310555108657, 45.45985259523092 ], [ 9.221309485769472, 45.459897371797609 ], [ 9.221299472646482, 45.4598972830874 ], [ 9.221296594645365, 45.460020920485725 ], [ 9.22077653271875, 45.460017640917911 ], [ 9.220751107417312, 45.462175152494595 ], [ 9.22125932382832, 45.462177936343728 ], [ 9.221259145478422, 45.462185366177643 ], [ 9.223309609701765, 45.462196374292802 ], [ 9.223188720361994, 45.46245488450495 ], [ 9.223166411975386, 45.462474158368103 ], [ 9.222970769385403, 45.462852712782635 ], [ 9.22296457864779, 45.462934183384164 ], [ 9.222945791670737, 45.462974356583814 ], [ 9.222942340109213, 45.463139154865814 ], [ 9.222241398338468, 45.463732250727688 ], [ 9.22236711564026, 45.463932430468688 ], [ 9.222887500299807, 45.463948521319971 ], [ 9.222884151755313, 45.463992586786375 ], [ 9.222924459541176, 45.463992866552935 ], [ 9.222917722150717, 45.464314538647187 ], [ 9.225636311250083, 45.464329506064416 ], [ 9.225647314207938, 45.463948811340664 ], [ 9.226965387187494, 45.463968817649409 ], [ 9.226989484522051, 45.46252469025692 ], [ 9.227116197963968, 45.462417537898972 ], [ 9.228941548398582, 45.462538224375479 ], [ 9.228963384117819, 45.459920568895605 ], [ 9.226030317579909, 45.459938607295342 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.200414652276681, 45.461986357333871 ], [ 9.200526819686159, 45.4628966966511 ], [ 9.200701424519483, 45.464266376867272 ], [ 9.200684972413764, 45.464330618345627 ], [ 9.200662671574387, 45.464417495675868 ], [ 9.20029063719018, 45.464348735505361 ], [ 9.20023596919585, 45.464501567883836 ], [ 9.200232668745334, 45.464500726952366 ], [ 9.200222692591684, 45.464538684445166 ], [ 9.199615516237603, 45.466236075222326 ], [ 9.199771182781507, 45.46625654493576 ], [ 9.1997406894956, 45.466372558996618 ], [ 9.200363370570775, 45.466522446587518 ], [ 9.200353025080238, 45.466547769814845 ], [ 9.201810226378855, 45.466841963735334 ], [ 9.202057054913032, 45.466890428082316 ], [ 9.20273046289527, 45.467032038318884 ], [ 9.202733081112191, 45.467023161472994 ], [ 9.203478249607493, 45.467169465143762 ], [ 9.203614021471129, 45.46683668322305 ], [ 9.204770237050861, 45.467002593689216 ], [ 9.204910938104707, 45.466483375279381 ], [ 9.205626304799326, 45.466536027699739 ], [ 9.206074457316364, 45.464637954105974 ], [ 9.20605260245979, 45.464636462820302 ], [ 9.206076293486774, 45.464538938084999 ], [ 9.205899299465353, 45.464514279260236 ], [ 9.206139722450613, 45.463568200255132 ], [ 9.205777795904726, 45.463535596568555 ], [ 9.205906375796994, 45.462949044596172 ], [ 9.205691325465377, 45.462927476790746 ], [ 9.205706202419895, 45.461932105040248 ], [ 9.205284971159701, 45.461929813186934 ], [ 9.205285297414814, 45.461922274456867 ], [ 9.20378419432816, 45.461921571270238 ], [ 9.2037557712738, 45.461708356011741 ], [ 9.202252700457212, 45.461857126211129 ], [ 9.200414652276681, 45.461986357333871 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.150286692456199, 45.46252693887233 ], [ 9.150708002271902, 45.463018399725435 ], [ 9.150981784568142, 45.463337313652509 ], [ 9.150225922856833, 45.464625086185215 ], [ 9.151097802856492, 45.464877071999325 ], [ 9.151017801442439, 45.464938686594117 ], [ 9.151165093323247, 45.4658668997224 ], [ 9.153396480568599, 45.466925337684259 ], [ 9.154217505011879, 45.466130640883556 ], [ 9.155408604959078, 45.465621245899293 ], [ 9.154006767106958, 45.463986434768948 ], [ 9.153670721485634, 45.463962390461113 ], [ 9.153682992654957, 45.463941429084358 ], [ 9.154576639671687, 45.463910763639973 ], [ 9.154476792975837, 45.461443809852526 ], [ 9.150945208103394, 45.461519315870632 ], [ 9.150286692456199, 45.46252693887233 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.162256763461359, 45.461477190830898 ], [ 9.16316503134072, 45.464530448546917 ], [ 9.16549484120149, 45.464180504838822 ], [ 9.166105331042134, 45.463504356607359 ], [ 9.165925745267547, 45.462982818763997 ], [ 9.165990323454523, 45.462973742086675 ], [ 9.165672418200595, 45.462247110700368 ], [ 9.165624090073038, 45.462106754734606 ], [ 9.165611892056951, 45.462108764745807 ], [ 9.165145093200399, 45.46104176819567 ], [ 9.165120398649028, 45.46104547415657 ], [ 9.165109337746658, 45.461007676003163 ], [ 9.162395064671115, 45.461425884381207 ], [ 9.162403308467255, 45.461455005414521 ], [ 9.162256763461359, 45.461477190830898 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.172247123094223, 45.457167708549974 ], [ 9.172250465135452, 45.457170025007336 ], [ 9.172035579303834, 45.457832699103605 ], [ 9.172029035977413, 45.457849794783954 ], [ 9.171667340528025, 45.45880677706819 ], [ 9.171982489962382, 45.458869852642465 ], [ 9.171982484323202, 45.459119332690364 ], [ 9.171904116253758, 45.459161622582528 ], [ 9.17127784672887, 45.458595188280064 ], [ 9.171146230375365, 45.458666664661287 ], [ 9.170782007248818, 45.458337264051806 ], [ 9.168433659332972, 45.459614532469267 ], [ 9.168475229271063, 45.45965214522748 ], [ 9.168443782007841, 45.459669297561987 ], [ 9.16890239253385, 45.460084164038818 ], [ 9.168878881709807, 45.460096874293079 ], [ 9.169169740174539, 45.460360097388616 ], [ 9.16897848579554, 45.460461759311976 ], [ 9.16891484658718, 45.460407543722077 ], [ 9.167956976800705, 45.46100320683059 ], [ 9.167088485729151, 45.461458115810423 ], [ 9.167145321081057, 45.461507928789409 ], [ 9.16689563056082, 45.461663193970466 ], [ 9.167451672356487, 45.46214257611873 ], [ 9.167431763673521, 45.462153641378357 ], [ 9.168003176487272, 45.462637579937557 ], [ 9.167592625937514, 45.4627640268167 ], [ 9.16769380200242, 45.462989379431725 ], [ 9.16764033786283, 45.46300648714675 ], [ 9.167903059043514, 45.463455458156695 ], [ 9.167952358839896, 45.463565262531795 ], [ 9.167683577371225, 45.463762645473352 ], [ 9.167597935895175, 45.464098285872964 ], [ 9.167576468552998, 45.464095493129648 ], [ 9.167465614377104, 45.464571075507337 ], [ 9.167196365986223, 45.464640917717382 ], [ 9.167084611204071, 45.464643784817717 ], [ 9.167093392596758, 45.46466762848658 ], [ 9.166890513106155, 45.464720254040522 ], [ 9.167487086858713, 45.465773333101147 ], [ 9.167564225531661, 45.466206078948211 ], [ 9.167666101345162, 45.466222630154412 ], [ 9.16775985544078, 45.466477179979073 ], [ 9.168409204812624, 45.466490175558825 ], [ 9.167894235129658, 45.466876327072093 ], [ 9.16869013119342, 45.467385376094576 ], [ 9.168681428920346, 45.467394784172463 ], [ 9.169172554020466, 45.467704642868988 ], [ 9.169017448943407, 45.468067636975235 ], [ 9.169786801096299, 45.468092173408792 ], [ 9.170007096743875, 45.468231156563753 ], [ 9.171130569845504, 45.468126062752987 ], [ 9.171158270449823, 45.468103864581018 ], [ 9.172295736613242, 45.468031532721731 ], [ 9.172249234958937, 45.467229589403367 ], [ 9.172426748449151, 45.467087330411644 ], [ 9.172234083262079, 45.466968286061793 ], [ 9.17217093229544, 45.465879169435283 ], [ 9.171764099090721, 45.465926023762812 ], [ 9.171323214346391, 45.464750544851192 ], [ 9.171343298792378, 45.464570704949288 ], [ 9.170991543497715, 45.464561477956615 ], [ 9.170997676682029, 45.464475359630107 ], [ 9.171147878556882, 45.46442850237321 ], [ 9.172347561601693, 45.464102548223245 ], [ 9.172324772741087, 45.464061346739648 ], [ 9.172592102807563, 45.463977945433314 ], [ 9.173008028458904, 45.464727656972016 ], [ 9.173068192066436, 45.464711165335267 ], [ 9.173142326000823, 45.464844695804729 ], [ 9.175862055313249, 45.464102392035286 ], [ 9.175455335656471, 45.463370097006724 ], [ 9.175483011536469, 45.463383042444889 ], [ 9.175928728031078, 45.463597245870737 ], [ 9.175914244214141, 45.463612012885513 ], [ 9.176656079918756, 45.463971441354325 ], [ 9.176834421350724, 45.464065130264153 ], [ 9.175555173409117, 45.465568993300607 ], [ 9.176257688853928, 45.466442413126622 ], [ 9.176133699875523, 45.466495517969335 ], [ 9.176118634754831, 45.466501604421943 ], [ 9.175019478468638, 45.466946236226512 ], [ 9.176303532314416, 45.468751576864811 ], [ 9.177883188644703, 45.468198287993822 ], [ 9.179092801918662, 45.467784377994818 ], [ 9.178305520496005, 45.466648638075526 ], [ 9.178887140130268, 45.466004334858965 ], [ 9.179719486993841, 45.465534140598479 ], [ 9.179268301879079, 45.465141478560781 ], [ 9.179456897283341, 45.46521579590582 ], [ 9.179751807248996, 45.463809681526989 ], [ 9.179780830018352, 45.463595392239711 ], [ 9.17978630323058, 45.463563419504943 ], [ 9.179809098764661, 45.463429386087881 ], [ 9.181863067860386, 45.463780523906493 ], [ 9.181876792109804, 45.463629886539771 ], [ 9.181890013512074, 45.463634872181984 ], [ 9.182330421976442, 45.463362025583827 ], [ 9.183269435398994, 45.463598764192731 ], [ 9.183633973158368, 45.462827683997858 ], [ 9.183781444370256, 45.46283442652804 ], [ 9.183826155755286, 45.462582569939499 ], [ 9.18437531643556, 45.462136461324391 ], [ 9.184211289185107, 45.461998219764489 ], [ 9.184188009932605, 45.461937697078696 ], [ 9.184820823231208, 45.461068483381851 ], [ 9.18301686902052, 45.460885545500311 ], [ 9.183022870353279, 45.460854456002963 ], [ 9.181460833541339, 45.460740647354314 ], [ 9.181049495530337, 45.460702460067502 ], [ 9.181047803649871, 45.460709779626363 ], [ 9.179767666984297, 45.460613959415063 ], [ 9.179861646825302, 45.460399762901872 ], [ 9.180084752629705, 45.45988938309759 ], [ 9.180104019545331, 45.459859565366152 ], [ 9.180647074315949, 45.459077814241667 ], [ 9.178105565197733, 45.458112771174136 ], [ 9.177918199965232, 45.458450957750301 ], [ 9.177507783118237, 45.458268241968938 ], [ 9.17699739724409, 45.458808531427159 ], [ 9.17725458274874, 45.457960698747542 ], [ 9.177363201802272, 45.457691756505703 ], [ 9.175954501527148, 45.45744857243637 ], [ 9.176297247408222, 45.457204170027182 ], [ 9.176109958162641, 45.457074449807529 ], [ 9.176162945824743, 45.457036739031892 ], [ 9.174277179330243, 45.45572574187203 ], [ 9.173255194231251, 45.45645216656257 ], [ 9.172575829202559, 45.456934391656461 ], [ 9.172337679053561, 45.456901066460354 ], [ 9.172252440063072, 45.457163934567383 ], [ 9.172247123094223, 45.457167708549974 ] ], [ [ 9.171293807277252, 45.462182908564792 ], [ 9.171027928298889, 45.461957049965854 ], [ 9.171106413204905, 45.461910912785932 ], [ 9.171090325198296, 45.461896477671758 ], [ 9.171128550545264, 45.461873972249293 ], [ 9.170862386329347, 45.461623690983672 ], [ 9.17094739821812, 45.46140755279967 ], [ 9.172223333911482, 45.460713453453096 ], [ 9.172559647179856, 45.461027016790176 ], [ 9.172235967418757, 45.461457747150895 ], [ 9.172332118140941, 45.461989930399497 ], [ 9.172566713061162, 45.462575126925863 ], [ 9.171941603132124, 45.462756410139995 ], [ 9.17151149337521, 45.462122114550347 ], [ 9.171293807277252, 45.462182908564792 ] ], [ [ 9.17501912390515, 45.460263049527143 ], [ 9.175018396965797, 45.460150014144887 ], [ 9.175296812353938, 45.459999635481672 ], [ 9.175069579845543, 45.459792785089697 ], [ 9.175091368033778, 45.459781035328525 ], [ 9.175050095028832, 45.459743399625985 ], [ 9.175152461712862, 45.459548772342799 ], [ 9.175215365373829, 45.459563682252742 ], [ 9.1755654129091, 45.459583578197012 ], [ 9.176458778331554, 45.459755604344927 ], [ 9.17643837838598, 45.45986443360907 ], [ 9.176139484344358, 45.459948392360864 ], [ 9.176098127118605, 45.459888128728821 ], [ 9.175105633980067, 45.460238755551387 ], [ 9.17501912390515, 45.460263049527143 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.154517535282203, 45.464544077189458 ], [ 9.157323034943094, 45.465436310874068 ], [ 9.158577481732765, 45.463497558611607 ], [ 9.155771464499246, 45.462604332156296 ], [ 9.154517535282203, 45.464544077189458 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.210836498852681, 45.464638577984758 ], [ 9.212723953269146, 45.46463858439116 ], [ 9.213536122383168, 45.464092791444166 ], [ 9.213558558443033, 45.463363002470437 ], [ 9.213589708970156, 45.46240704659396 ], [ 9.212178576902923, 45.462395691092915 ], [ 9.21087531123848, 45.462387856365879 ], [ 9.210836498852681, 45.464638577984758 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.217244025918955, 45.465664690498443 ], [ 9.219500118044442, 45.46569037877817 ], [ 9.219500973515142, 45.465628692699447 ], [ 9.219581774575548, 45.465629527922523 ], [ 9.219624694138632, 45.463769542274818 ], [ 9.216715534908237, 45.463735642355196 ], [ 9.216712811184507, 45.463847063751565 ], [ 9.214533992610823, 45.463843614704444 ], [ 9.214529908084064, 45.464802392544115 ], [ 9.214526681358477, 45.465752854351166 ], [ 9.217243672668658, 45.465757148786324 ], [ 9.217244025918955, 45.465664690498443 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.13498876071499, 45.466993644511255 ], [ 9.136606641617236, 45.465593454880285 ], [ 9.135722496807677, 45.465039526745961 ], [ 9.135625475789821, 45.46444808315286 ], [ 9.132612077741969, 45.464552477657506 ], [ 9.132738978104475, 45.465165398015259 ], [ 9.130358465851723, 45.465234808625347 ], [ 9.130398314494657, 45.465664210024194 ], [ 9.13031735240166, 45.465668427234441 ], [ 9.130476505299706, 45.467552920359303 ], [ 9.13205567486099, 45.467506465098012 ], [ 9.132087642482361, 45.46818478646982 ], [ 9.132312290993141, 45.468179533970456 ], [ 9.132314968245236, 45.468236126989517 ], [ 9.135085326527157, 45.468128739080825 ], [ 9.13498876071499, 45.466993644511255 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.158835059238653, 45.465944524003291 ], [ 9.159210340913706, 45.466061703614464 ], [ 9.159205182710185, 45.466071990503508 ], [ 9.159242075953321, 45.466084303307362 ], [ 9.159080768773467, 45.466328388316398 ], [ 9.159550509193128, 45.466507739851302 ], [ 9.159425741635566, 45.466517560283521 ], [ 9.159676696575339, 45.468086257467633 ], [ 9.159295502712098, 45.468399354849545 ], [ 9.158892690021776, 45.468136444641026 ], [ 9.157932640833419, 45.468893259313745 ], [ 9.156727388443358, 45.468273924878069 ], [ 9.156470860192917, 45.468481788667447 ], [ 9.156424070439938, 45.468449373677451 ], [ 9.155329184109288, 45.469268330588939 ], [ 9.153406644699642, 45.468009173530199 ], [ 9.151560989363297, 45.469395788538549 ], [ 9.151615587503059, 45.469431575719199 ], [ 9.151341920840659, 45.469637110276103 ], [ 9.153330518520205, 45.470938803406042 ], [ 9.153339163156986, 45.470932313074307 ], [ 9.153679160554292, 45.471154878085855 ], [ 9.154592879289593, 45.47046874861713 ], [ 9.154614635985959, 45.470852318171879 ], [ 9.154831332270298, 45.471017132987754 ], [ 9.154835471342379, 45.47102785151985 ], [ 9.155027862103987, 45.471166608416738 ], [ 9.155356032642681, 45.471416203780727 ], [ 9.15540406289929, 45.471416621584048 ], [ 9.155566406643185, 45.471522169174492 ], [ 9.155784537488193, 45.471660052224536 ], [ 9.155735838306221, 45.471660410535648 ], [ 9.155731736924361, 45.471657531670203 ], [ 9.155497510039559, 45.471662163769992 ], [ 9.15394578663423, 45.471673566683009 ], [ 9.153922007074108, 45.47170674598766 ], [ 9.153621865697074, 45.471716218405952 ], [ 9.153659648473045, 45.47205330175349 ], [ 9.15300042767544, 45.472077082540608 ], [ 9.153042563711571, 45.472933790742736 ], [ 9.152889325300873, 45.473147590724636 ], [ 9.153001143889854, 45.47318946648199 ], [ 9.152994434627809, 45.473199529813684 ], [ 9.153056826074296, 45.473223766460968 ], [ 9.153095247594901, 45.474004919652593 ], [ 9.156149221466855, 45.473953960293336 ], [ 9.156144577075995, 45.47384355284948 ], [ 9.156276675518223, 45.473838562306241 ], [ 9.156268798324058, 45.473741152777023 ], [ 9.156517232405434, 45.473727381433498 ], [ 9.156510697510889, 45.473258917067497 ], [ 9.156541039775485, 45.473241446558021 ], [ 9.156499797515522, 45.472196645445877 ], [ 9.156180298708714, 45.471972386106728 ], [ 9.156179483157324, 45.471909699203671 ], [ 9.156855984191138, 45.472337310297881 ], [ 9.158853704996686, 45.470870400688149 ], [ 9.158445040886789, 45.470649568798954 ], [ 9.15855668759521, 45.47056402736898 ], [ 9.15931723896583, 45.471097588663753 ], [ 9.159482974510583, 45.470956473636754 ], [ 9.159548194980788, 45.471010749884783 ], [ 9.162084466991372, 45.469356678250357 ], [ 9.160970365991949, 45.468700646045015 ], [ 9.162949185244308, 45.46854458758245 ], [ 9.162942529611115, 45.468502996880659 ], [ 9.163008436604702, 45.468497815278759 ], [ 9.162930348228873, 45.468012801752955 ], [ 9.162938759780115, 45.468012210209316 ], [ 9.162919470125047, 45.467877690224668 ], [ 9.162920445093908, 45.467877622692242 ], [ 9.162920162081452, 45.467875661002992 ], [ 9.163199510237583, 45.46785587726648 ], [ 9.16290658466883, 45.465806271554456 ], [ 9.163387755190641, 45.465369351163915 ], [ 9.163225045489527, 45.46531368424381 ], [ 9.163447434273076, 45.464977804130292 ], [ 9.162650581782753, 45.464695888072981 ], [ 9.162415649574394, 45.464127551890378 ], [ 9.161687640901219, 45.464343548666328 ], [ 9.160626619317098, 45.46371432901789 ], [ 9.160145855299268, 45.464273575847557 ], [ 9.160083300230534, 45.464252557601888 ], [ 9.159734199874993, 45.464725767945424 ], [ 9.159717158560982, 45.464740823661302 ], [ 9.159606486102943, 45.464898883473751 ], [ 9.158835059238653, 45.465944524003291 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.082478698253476, 45.453065531291159 ], [ 9.082513982923428, 45.453067654631532 ], [ 9.082516761797239, 45.453044924741434 ], [ 9.082810202670938, 45.45306253731966 ], [ 9.082820333116951, 45.452980387593414 ], [ 9.083117332601166, 45.452998456522934 ], [ 9.08336352460285, 45.450997780476499 ], [ 9.08326644169334, 45.450991885678668 ], [ 9.08328776119262, 45.450818541686637 ], [ 9.082792622418026, 45.450788422539404 ], [ 9.082808450560732, 45.450658945019079 ], [ 9.080001544517373, 45.450490512434236 ], [ 9.079967973213526, 45.450765236151746 ], [ 9.079667581168993, 45.450747118593746 ], [ 9.079555236822289, 45.451667739403 ], [ 9.079386428589558, 45.451662836123703 ], [ 9.079154249422864, 45.453519933582136 ], [ 9.07941121864998, 45.453535578812797 ], [ 9.079409952572306, 45.453544861523405 ], [ 9.082397369457833, 45.453726556612168 ], [ 9.082478698253476, 45.453065531291159 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.117350688841915, 45.45314429054666 ], [ 9.117589017843505, 45.453204476265867 ], [ 9.117582493281654, 45.453216837594375 ], [ 9.120421953482012, 45.453933073803739 ], [ 9.12044000283597, 45.453897874852139 ], [ 9.12084150297809, 45.454001889860656 ], [ 9.12086221545459, 45.453962523399262 ], [ 9.12107026217709, 45.454016297904978 ], [ 9.121995116859399, 45.452257963925952 ], [ 9.121993780439825, 45.452257617465932 ], [ 9.122061072503787, 45.452129562076372 ], [ 9.122020975414495, 45.452119198190793 ], [ 9.122099085361084, 45.451970676910349 ], [ 9.121412763951984, 45.451793256356055 ], [ 9.121445690009505, 45.451728964591361 ], [ 9.12135929280843, 45.451707217788837 ], [ 9.121381063414981, 45.451664580596528 ], [ 9.118913559292299, 45.451041846612256 ], [ 9.11889162765428, 45.451084587060045 ], [ 9.118803326105192, 45.451062404674012 ], [ 9.118612177132489, 45.451435769228148 ], [ 9.118270940763541, 45.451349725815646 ], [ 9.117350688841915, 45.45314429054666 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.178942172553274, 45.452051425475631 ], [ 9.179333825024163, 45.452033458830108 ], [ 9.179380479854769, 45.452303047219935 ], [ 9.179391116511775, 45.452302157057645 ], [ 9.179408278614359, 45.45240754051693 ], [ 9.182074181017253, 45.452190865845473 ], [ 9.182060801519288, 45.452099703816543 ], [ 9.182101962796574, 45.452096887007528 ], [ 9.182070013003141, 45.451867453671476 ], [ 9.182528998620036, 45.450087277234474 ], [ 9.179626481328102, 45.449685586167298 ], [ 9.179587332800997, 45.449845740894325 ], [ 9.179381080987252, 45.449825874121551 ], [ 9.179264753736664, 45.450416619501617 ], [ 9.179057207224421, 45.450435007805062 ], [ 9.179152516691845, 45.45098576917016 ], [ 9.178942172553274, 45.452051425475631 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.17155629729, 45.453012305587741 ], [ 9.172176587195223, 45.453162329635916 ], [ 9.172139047414607, 45.453902723412881 ], [ 9.175061754824963, 45.453689550760828 ], [ 9.175011906084306, 45.453734882847201 ], [ 9.175026267807802, 45.453939251065023 ], [ 9.174983846539972, 45.453958344884057 ], [ 9.175031256194229, 45.45401023575883 ], [ 9.175058895185419, 45.454403535037734 ], [ 9.175491867306995, 45.454853343069907 ], [ 9.17536888700514, 45.454940104435913 ], [ 9.174315259666214, 45.455659707897773 ], [ 9.176372767087798, 45.457068056439944 ], [ 9.17748878164169, 45.456253241478578 ], [ 9.177609359965448, 45.456107858010292 ], [ 9.177865619161366, 45.455813433254399 ], [ 9.178187247536412, 45.456280980417517 ], [ 9.178701809135919, 45.457028379181992 ], [ 9.179205882980154, 45.457943330696864 ], [ 9.181675434685813, 45.457310545601089 ], [ 9.181630139563881, 45.457211720495259 ], [ 9.181817346203632, 45.457164592263993 ], [ 9.180962883194768, 45.455392142600616 ], [ 9.18094437498536, 45.455397034263001 ], [ 9.180722663430611, 45.454729348580777 ], [ 9.180289792576776, 45.454791554637538 ], [ 9.180394542055506, 45.454656296897319 ], [ 9.179873870026617, 45.454136301959167 ], [ 9.179108211829828, 45.453356103817285 ], [ 9.178915501770181, 45.453402040617966 ], [ 9.178713906952135, 45.453182830889638 ], [ 9.178497201002715, 45.453287042083197 ], [ 9.177777014962562, 45.453039959339357 ], [ 9.177495150463113, 45.45276767004281 ], [ 9.176070974535005, 45.452771753267555 ], [ 9.175143594621279, 45.453615126033249 ], [ 9.175090889270052, 45.453037343903524 ], [ 9.175252047045243, 45.452874445508662 ], [ 9.175274963977143, 45.452850846926246 ], [ 9.175862255333538, 45.452245397223528 ], [ 9.176458096661888, 45.451858704892636 ], [ 9.175187910989596, 45.451125343508473 ], [ 9.174833136925617, 45.450988027861406 ], [ 9.173997487676159, 45.450823600535173 ], [ 9.173929253196695, 45.450782306022163 ], [ 9.173908303156848, 45.450806051639681 ], [ 9.173573937600651, 45.450740257595477 ], [ 9.173472690303386, 45.450709867148348 ], [ 9.173018869962085, 45.451343781581805 ], [ 9.172830242689402, 45.451565971815953 ], [ 9.172788567891955, 45.451564973357073 ], [ 9.172722415505019, 45.45164267319123 ], [ 9.172353249482624, 45.451642669936398 ], [ 9.172267282453562, 45.452171342721854 ], [ 9.171766777435511, 45.45259742918671 ], [ 9.171843501299973, 45.452630476893496 ], [ 9.171726091184265, 45.452753568113259 ], [ 9.171766462861418, 45.452765467128771 ], [ 9.17155629729, 45.453012305587741 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.125948439002778, 45.448455857373169 ], [ 9.126686046003071, 45.448646652414773 ], [ 9.126259511562953, 45.449357121499631 ], [ 9.12615183928664, 45.449328881822169 ], [ 9.125865549220505, 45.449865266285691 ], [ 9.125690797158937, 45.449839577292181 ], [ 9.125452707420198, 45.450638735060409 ], [ 9.125200467107797, 45.451111302021175 ], [ 9.125255370874449, 45.451125751148254 ], [ 9.125221428096776, 45.451189463780722 ], [ 9.125283756500906, 45.451205811596296 ], [ 9.125133570844849, 45.451709893565301 ], [ 9.125248952151519, 45.451725692898798 ], [ 9.125243211513945, 45.451754170735043 ], [ 9.126180035830384, 45.451868382308405 ], [ 9.126588501405827, 45.451931901202229 ], [ 9.127452058855441, 45.452283083122197 ], [ 9.127453363832455, 45.452281865897959 ], [ 9.127888801662646, 45.452464112783147 ], [ 9.128076636885869, 45.452244285137645 ], [ 9.128228093459569, 45.452284814434726 ], [ 9.128726081230379, 45.452722174294031 ], [ 9.129093392213514, 45.452516360654634 ], [ 9.129975757951483, 45.452752465131319 ], [ 9.130546887905382, 45.45170190391579 ], [ 9.130836403043034, 45.451539670996596 ], [ 9.130713640465904, 45.451431912690659 ], [ 9.130856299802527, 45.451155312072565 ], [ 9.131134160095684, 45.450999023165622 ], [ 9.130998290192192, 45.450880005599615 ], [ 9.131120214899459, 45.450643602378982 ], [ 9.131429215373419, 45.450472385667993 ], [ 9.131277857941731, 45.45033794075264 ], [ 9.131600010185103, 45.449713293405473 ], [ 9.130777341299687, 45.449504212538947 ], [ 9.130795671066149, 45.449471372124464 ], [ 9.130081484114223, 45.449275218759638 ], [ 9.13006219825089, 45.449258086967639 ], [ 9.130570815789822, 45.448299957526892 ], [ 9.130220291596986, 45.44820665257577 ], [ 9.130286202732423, 45.448068728691965 ], [ 9.129288253342628, 45.447813474459373 ], [ 9.129714626920101, 45.447002659843704 ], [ 9.127071692392983, 45.446319285561685 ], [ 9.125948439002778, 45.448455857373169 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.209948123563635, 45.448613434229195 ], [ 9.210604099090391, 45.449414368337358 ], [ 9.211661712248723, 45.45071190141487 ], [ 9.2123786113404, 45.450424038816422 ], [ 9.212561920042377, 45.450649040673454 ], [ 9.214015397192819, 45.450064546629235 ], [ 9.214045152337338, 45.450100366454599 ], [ 9.213694815398876, 45.45024121478825 ], [ 9.213982878281859, 45.450594233950774 ], [ 9.213965079979065, 45.450601520380346 ], [ 9.214189598446257, 45.450867406105075 ], [ 9.214062848601401, 45.450917375111437 ], [ 9.215653481943413, 45.452859329068787 ], [ 9.214349322943434, 45.453375490165072 ], [ 9.213973848926658, 45.453524071031609 ], [ 9.212779813179877, 45.453996058183385 ], [ 9.213478668074687, 45.454863845351149 ], [ 9.214111598033554, 45.455662798667419 ], [ 9.214451953512246, 45.455528186610167 ], [ 9.214554499549141, 45.455655624766038 ], [ 9.214856341046334, 45.455536530945473 ], [ 9.214972764612885, 45.455681296835806 ], [ 9.217278324990357, 45.454821009220531 ], [ 9.2157636002418, 45.452824705518225 ], [ 9.215934169068163, 45.452755022012731 ], [ 9.215967526624157, 45.452801617504903 ], [ 9.216028222849221, 45.452779283110296 ], [ 9.216045272193472, 45.452802075461157 ], [ 9.216073451989171, 45.452791319673715 ], [ 9.216589259328945, 45.453329387469957 ], [ 9.217274618820637, 45.454105798761901 ], [ 9.219609110244006, 45.45315117375953 ], [ 9.219492280899081, 45.453009406601836 ], [ 9.219856390145367, 45.452863437380906 ], [ 9.218832718158097, 45.451559551134878 ], [ 9.218854936713177, 45.451548661702454 ], [ 9.218692546877838, 45.451381004720858 ], [ 9.218398270323636, 45.451006158890628 ], [ 9.218347412163135, 45.45102467140169 ], [ 9.218054156652769, 45.450721896240566 ], [ 9.218141459235978, 45.450686585628546 ], [ 9.216532891536536, 45.448722047943363 ], [ 9.21589133860031, 45.44900056521675 ], [ 9.214718931118629, 45.449460526336495 ], [ 9.213023641952971, 45.447380504200183 ], [ 9.21115016665679, 45.448131915122076 ], [ 9.209948123563635, 45.448613434229195 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.188527429625388, 45.447444358867237 ], [ 9.187126846207258, 45.447311533019899 ], [ 9.187060552053357, 45.447655703703695 ], [ 9.1870577812976, 45.447655440485327 ], [ 9.187027641125383, 45.447812487676799 ], [ 9.187012944174681, 45.447811032425733 ], [ 9.186892340180862, 45.448412010819659 ], [ 9.186033557925601, 45.448328739990096 ], [ 9.185899430908735, 45.448861798218196 ], [ 9.185555749231433, 45.448823890460247 ], [ 9.185595486044596, 45.448957435427189 ], [ 9.185578302954308, 45.448959603253911 ], [ 9.185690770905035, 45.449277660104926 ], [ 9.185747131004309, 45.449467068230554 ], [ 9.185730823515854, 45.449531876644294 ], [ 9.185859171210481, 45.449843595358708 ], [ 9.186643424806572, 45.452479046831051 ], [ 9.184512165114453, 45.452628544421458 ], [ 9.183247259906171, 45.452712104383437 ], [ 9.183291870878731, 45.452973802358358 ], [ 9.183220193077679, 45.4529801302469 ], [ 9.183332038198561, 45.453698082488621 ], [ 9.183229595140089, 45.45370985351046 ], [ 9.183237524307209, 45.453760909985427 ], [ 9.18286335713297, 45.453838132305798 ], [ 9.18244666465867, 45.454048445338032 ], [ 9.182152943510522, 45.454344411714985 ], [ 9.182014621069635, 45.454692739329737 ], [ 9.182049665715677, 45.455054574733502 ], [ 9.182253397837622, 45.455386990998235 ], [ 9.182601499935801, 45.455651866824908 ], [ 9.183052885268278, 45.455820436916078 ], [ 9.184087737109056, 45.455931474920014 ], [ 9.184014511471981, 45.455943926116056 ], [ 9.184144356033, 45.456361152287073 ], [ 9.184024040429058, 45.456372715470337 ], [ 9.183240092027408, 45.456813446999831 ], [ 9.183230347427752, 45.457377408582495 ], [ 9.183199270976113, 45.457535182674192 ], [ 9.183059724509416, 45.457389067058195 ], [ 9.182412280282593, 45.457812879281754 ], [ 9.182368013321579, 45.45782916602267 ], [ 9.18186866517245, 45.458168717978467 ], [ 9.181777892778017, 45.458228134935716 ], [ 9.181773631866831, 45.45823333900529 ], [ 9.181325754845695, 45.458537884683032 ], [ 9.181491255925256, 45.45867474597673 ], [ 9.181438692009882, 45.458788997265295 ], [ 9.181537097788448, 45.459198293329543 ], [ 9.182631864763962, 45.460568397502314 ], [ 9.18342964304752, 45.46026116427457 ], [ 9.183461365566238, 45.460290787100526 ], [ 9.184136489510584, 45.459988942444845 ], [ 9.18489797965683, 45.459695668320464 ], [ 9.184880750473233, 45.459656178595665 ], [ 9.185704121261169, 45.459288034013696 ], [ 9.185426096769225, 45.458930724544864 ], [ 9.18556320808937, 45.458867788136452 ], [ 9.185717322806086, 45.458874487857308 ], [ 9.185735109620936, 45.458788882003354 ], [ 9.185958836224616, 45.458686186440268 ], [ 9.186199128580132, 45.458673885360852 ], [ 9.186218224491252, 45.458567120352171 ], [ 9.187295691036352, 45.458072522971889 ], [ 9.187113085060144, 45.457891851382279 ], [ 9.187887832305409, 45.457884950354973 ], [ 9.187887832060731, 45.457873404046119 ], [ 9.188269460653162, 45.457869669608286 ], [ 9.188304853443929, 45.45747034677467 ], [ 9.188438241244187, 45.457463036438646 ], [ 9.188352345950999, 45.456933921010616 ], [ 9.188357966470335, 45.456864106327153 ], [ 9.188429772884984, 45.4558225546212 ], [ 9.188175775703453, 45.455829229902371 ], [ 9.188151043236648, 45.455673124216872 ], [ 9.188147362800052, 45.455673325925794 ], [ 9.188079423871924, 45.455255911388655 ], [ 9.188397411093918, 45.455234027390709 ], [ 9.188267456055451, 45.454314876815097 ], [ 9.187961759190026, 45.452409919709488 ], [ 9.187833631865265, 45.452417955210635 ], [ 9.188903116146449, 45.452120562073922 ], [ 9.189199083091699, 45.452090360760089 ], [ 9.189202345797892, 45.452098189761195 ], [ 9.18924605629587, 45.452085567406485 ], [ 9.190069130876697, 45.452001573968175 ], [ 9.190032524159578, 45.451858453924288 ], [ 9.191209535743141, 45.451518547043378 ], [ 9.191408121236087, 45.451527591789613 ], [ 9.191414736582319, 45.451459285832719 ], [ 9.191478732168244, 45.451440804053576 ], [ 9.191492176388543, 45.450831301891775 ], [ 9.193029849802523, 45.450900486507017 ], [ 9.193298675908419, 45.450918991264366 ], [ 9.193299124786035, 45.450912599861873 ], [ 9.193894757510863, 45.450939392169758 ], [ 9.193927386621963, 45.450578680609716 ], [ 9.193939322222937, 45.450579269194805 ], [ 9.193939754173355, 45.450574214955232 ], [ 9.195121667274906, 45.45063150385149 ], [ 9.195152581958771, 45.450335601819852 ], [ 9.195214073494872, 45.450337878575674 ], [ 9.195381594646207, 45.448447641358477 ], [ 9.193226563073814, 45.448343552824475 ], [ 9.193053081329182, 45.448268491744209 ], [ 9.191743568386567, 45.448207632034467 ], [ 9.191723437988145, 45.448218200536886 ], [ 9.191727988540705, 45.448171165474129 ], [ 9.191684374531398, 45.448167699508225 ], [ 9.191693174431242, 45.44796361464492 ], [ 9.191499144317971, 45.447945466385917 ], [ 9.1915256928717, 45.44770999428053 ], [ 9.19013597344172, 45.447579117148898 ], [ 9.188530582073264, 45.447428109551581 ], [ 9.188527429625388, 45.447444358867237 ] ], [ [ 9.18492315527196, 45.455789417746189 ], [ 9.18490555733184, 45.455648180166278 ], [ 9.18525218816789, 45.455630955026301 ], [ 9.185216483138726, 45.455480299035784 ], [ 9.186499723573233, 45.455383828642887 ], [ 9.186498404183473, 45.455376583275275 ], [ 9.187599870578451, 45.455288912717307 ], [ 9.188049268114087, 45.455257986672194 ], [ 9.186883750121497, 45.455456187924121 ], [ 9.186883721620564, 45.455456009982811 ], [ 9.1859298555036, 45.455618226156759 ], [ 9.18509586518026, 45.455759614471297 ], [ 9.185095867994487, 45.455760048271827 ], [ 9.18492315527196, 45.455789417746189 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.139821618455404, 45.450356667906135 ], [ 9.139985631431493, 45.45040828966475 ], [ 9.139879769260034, 45.450591057921237 ], [ 9.139984632839711, 45.450624251930691 ], [ 9.139970131759839, 45.450645609479388 ], [ 9.140327209395991, 45.450763376810947 ], [ 9.140297891869841, 45.450808309534139 ], [ 9.141651546759579, 45.451231860875737 ], [ 9.141429020635771, 45.451603207123505 ], [ 9.141461561252362, 45.45161268550531 ], [ 9.141458330194192, 45.451618162802156 ], [ 9.142215519173806, 45.451862710536957 ], [ 9.142113984478422, 45.452028388268744 ], [ 9.139601756893256, 45.451357190299269 ], [ 9.139593526317418, 45.451372198866402 ], [ 9.139479998253831, 45.451341801944778 ], [ 9.13905199685354, 45.452129417179265 ], [ 9.138890974210501, 45.452084533631819 ], [ 9.138865840897205, 45.452128704502286 ], [ 9.138763893083786, 45.452100270501305 ], [ 9.137737971302121, 45.453911493441318 ], [ 9.13782237937518, 45.453934971402525 ], [ 9.137571568565898, 45.454383626442308 ], [ 9.136939782524115, 45.454199980600698 ], [ 9.135821277969688, 45.455881584546624 ], [ 9.136394757790674, 45.45607196611661 ], [ 9.136479720551401, 45.456403057397338 ], [ 9.136282724592785, 45.457527389881577 ], [ 9.136330806997522, 45.457530824831608 ], [ 9.136312698251164, 45.457641584399589 ], [ 9.136287492108778, 45.457758356689638 ], [ 9.138996738085229, 45.457987263537568 ], [ 9.139050522152692, 45.457701919568805 ], [ 9.139062467828033, 45.457702819219321 ], [ 9.139228112704387, 45.457443266558137 ], [ 9.139709365904682, 45.457571911129598 ], [ 9.140608038443757, 45.455768934649534 ], [ 9.140479217252546, 45.455733857441537 ], [ 9.14115479269539, 45.454667664423646 ], [ 9.141077016568566, 45.454643833141155 ], [ 9.142124551187168, 45.45279404871868 ], [ 9.141989208347711, 45.452756399552619 ], [ 9.142077401228878, 45.452600636877015 ], [ 9.142012558860083, 45.4525825269059 ], [ 9.142090750834214, 45.452438624191196 ], [ 9.143380926911462, 45.452821589807101 ], [ 9.142642599031525, 45.454094176461972 ], [ 9.142702632282344, 45.454111317487232 ], [ 9.142679586714678, 45.454151136188905 ], [ 9.142872312429411, 45.454206083808828 ], [ 9.142674301284607, 45.45454809487002 ], [ 9.144952917118449, 45.455197641904171 ], [ 9.14645594999385, 45.45564740468339 ], [ 9.147791519993978, 45.453350483980813 ], [ 9.145174417196946, 45.452627281037728 ], [ 9.145139321124949, 45.452693179490453 ], [ 9.144820920553979, 45.452609557571613 ], [ 9.144786537626258, 45.452674044169441 ], [ 9.144669222054981, 45.452640603412945 ], [ 9.144953426386925, 45.452207518603863 ], [ 9.145563751489636, 45.452400360615236 ], [ 9.145538114918635, 45.452443385202422 ], [ 9.148291077401831, 45.453341858486851 ], [ 9.149550290160636, 45.45119908910327 ], [ 9.148784072449406, 45.450956992770912 ], [ 9.148808305747814, 45.450917226353724 ], [ 9.146388523323376, 45.450190685476031 ], [ 9.146349616233929, 45.45025460413548 ], [ 9.145738789206607, 45.45006173252883 ], [ 9.145380533578889, 45.450619633266896 ], [ 9.144503539561637, 45.450352209420785 ], [ 9.144946212310519, 45.449591570498519 ], [ 9.142461059009825, 45.448843475686367 ], [ 9.142401010539274, 45.44894334826806 ], [ 9.142254042317195, 45.448899974561542 ], [ 9.142253215657599, 45.448901342494672 ], [ 9.141223065633834, 45.448577382028965 ], [ 9.141217368644156, 45.448586285506849 ], [ 9.140997415699905, 45.448517060429822 ], [ 9.139821618455404, 45.450356667906135 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.150054687091846, 45.450585375288654 ], [ 9.154365298606123, 45.451982257647664 ], [ 9.154367208682007, 45.451979340287323 ], [ 9.157029225430824, 45.452863979404157 ], [ 9.157307163206442, 45.452093059772764 ], [ 9.157998321344978, 45.452206436308479 ], [ 9.158041235135741, 45.452077690403293 ], [ 9.158041913352362, 45.452077802187816 ], [ 9.158345141023759, 45.451165923399884 ], [ 9.158606295840405, 45.45038239241611 ], [ 9.158605713196748, 45.450382295852151 ], [ 9.158648815389784, 45.450252671012215 ], [ 9.158607708727333, 45.450245938035657 ], [ 9.158660422474071, 45.450087921337719 ], [ 9.156073255545998, 45.449665099965543 ], [ 9.156072835608473, 45.449666324007083 ], [ 9.155871360050995, 45.449633427719718 ], [ 9.155820039209216, 45.449787251179494 ], [ 9.155754483195775, 45.449776415526664 ], [ 9.155575049635093, 45.450315008178229 ], [ 9.155469314810217, 45.45029597944945 ], [ 9.155509982889706, 45.450233860755247 ], [ 9.155297462720695, 45.450165761858301 ], [ 9.155592481840259, 45.449788491519811 ], [ 9.155458675210385, 45.449755459403654 ], [ 9.155793310821247, 45.449296085337735 ], [ 9.155675274695877, 45.449288490061846 ], [ 9.155677421317858, 45.449284747748244 ], [ 9.155653918970208, 45.4492778533997 ], [ 9.15584255982855, 45.448988019893974 ], [ 9.153133855920894, 45.448067979350498 ], [ 9.152480480025691, 45.449068754749504 ], [ 9.151281188776505, 45.448746077958134 ], [ 9.151222638245819, 45.4488460733116 ], [ 9.151191270735575, 45.448836493153678 ], [ 9.150054687091846, 45.450585375288654 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.176623857284145, 45.442925225949097 ], [ 9.176651613685387, 45.443202445139526 ], [ 9.176289342043413, 45.443162580087119 ], [ 9.176269813595436, 45.443269542339095 ], [ 9.176249723812315, 45.443267719186871 ], [ 9.176099422674548, 45.443981682041773 ], [ 9.175200553473164, 45.444503148201598 ], [ 9.175402378010363, 45.444668158949064 ], [ 9.174825252960316, 45.444671293275256 ], [ 9.174825199428453, 45.444666400409552 ], [ 9.171660167684321, 45.444684323861189 ], [ 9.171683218429807, 45.446625424842317 ], [ 9.171695060162703, 45.446625357413488 ], [ 9.171749385122265, 45.447862360116311 ], [ 9.171749381645984, 45.448016539772453 ], [ 9.169751168181573, 45.447284396586163 ], [ 9.168564968168265, 45.44887900813729 ], [ 9.168131009254981, 45.448664420409287 ], [ 9.166557848817579, 45.450227841218606 ], [ 9.167951268950093, 45.450917111838663 ], [ 9.167648216120918, 45.451676764775122 ], [ 9.168150491431618, 45.451793017147246 ], [ 9.170308687932186, 45.452314800963066 ], [ 9.170675494599298, 45.451381651147088 ], [ 9.170743952523656, 45.451209138901135 ], [ 9.170764277400197, 45.451164332671667 ], [ 9.171190234971068, 45.450236744845526 ], [ 9.170251235633843, 45.45003235951085 ], [ 9.170389967880599, 45.449894233053975 ], [ 9.170960226273236, 45.450104097415569 ], [ 9.171029077368591, 45.450012296334087 ], [ 9.171121791513869, 45.450046258143082 ], [ 9.172386535609267, 45.448344917310727 ], [ 9.17323009240585, 45.448324236346465 ], [ 9.173233660435905, 45.448551628517471 ], [ 9.173949177532743, 45.448311043259757 ], [ 9.174526444764535, 45.448301077901881 ], [ 9.174526444568997, 45.448292442304414 ], [ 9.17489313694988, 45.448283446213736 ], [ 9.174892573193697, 45.448272015746248 ], [ 9.175671923198712, 45.448258334599693 ], [ 9.175653451134046, 45.447737972496931 ], [ 9.175699526268598, 45.447722478981504 ], [ 9.175780828365109, 45.44727193310009 ], [ 9.175913897287192, 45.447271231964926 ], [ 9.175912705792818, 45.447165405025245 ], [ 9.176155674299102, 45.4471663072773 ], [ 9.176160105659088, 45.446598264748403 ], [ 9.176174328256787, 45.446598188215034 ], [ 9.176165781142275, 45.445870728352034 ], [ 9.176170264747675, 45.445295967246793 ], [ 9.176422543718855, 45.445502221122652 ], [ 9.177591293980027, 45.445628073961458 ], [ 9.177592887792528, 45.445640419373809 ], [ 9.177674002402751, 45.445636979658019 ], [ 9.178130950823489, 45.4456861808196 ], [ 9.179638825992699, 45.445848888841752 ], [ 9.179702110778411, 45.445550957594392 ], [ 9.180233423737217, 45.445528416000208 ], [ 9.180204078575134, 45.445335628107181 ], [ 9.180217782300684, 45.445334439323467 ], [ 9.180217714080793, 45.445334033037888 ], [ 9.18041651948838, 45.445316699635242 ], [ 9.180171700879947, 45.443280664501749 ], [ 9.179929535921174, 45.443301326484651 ], [ 9.179929454473134, 45.443300821560221 ], [ 9.17974810850929, 45.44331635861441 ], [ 9.179697750468819, 45.442777348083531 ], [ 9.178393744653999, 45.442839254428513 ], [ 9.176623857284145, 45.442925225949097 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.223063898820236, 45.453793184573662 ], [ 9.226739504498624, 45.453810835741777 ], [ 9.226740080748595, 45.45374624224538 ], [ 9.227798151280608, 45.453748057254515 ], [ 9.227800930508536, 45.453575079089624 ], [ 9.227928078163739, 45.453576168779918 ], [ 9.227916370965017, 45.451676560919168 ], [ 9.226801906813892, 45.451670209110802 ], [ 9.22671686303652, 45.451640193647869 ], [ 9.226650486115648, 45.451629418257589 ], [ 9.22665345790038, 45.451430230862066 ], [ 9.226623739884044, 45.451430021000967 ], [ 9.226626071201151, 45.451009302444213 ], [ 9.223878254953879, 45.451015099757868 ], [ 9.223873884397531, 45.451302933776468 ], [ 9.223088462822053, 45.45130534695091 ], [ 9.223063898820236, 45.453793184573662 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.204924245833329, 45.452912301001312 ], [ 9.206689725746603, 45.45510860348228 ], [ 9.209143975050859, 45.454137144551439 ], [ 9.208473319697241, 45.453302777293935 ], [ 9.207742144851784, 45.452392365411932 ], [ 9.207653918799346, 45.452427252590965 ], [ 9.207290776594178, 45.451975523275209 ], [ 9.204924245833329, 45.452912301001312 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.080785452029852, 45.454424397262976 ], [ 9.081604165525306, 45.456271994667475 ], [ 9.081782960387367, 45.456233028685496 ], [ 9.081785938774603, 45.456239751929132 ], [ 9.082114021370289, 45.45616864497169 ], [ 9.082181446604585, 45.456321628431525 ], [ 9.084741873638583, 45.45576372795874 ], [ 9.084721181620107, 45.455716889573623 ], [ 9.085023306716431, 45.455651421018509 ], [ 9.084920759440063, 45.455419043239502 ], [ 9.085138410553295, 45.455372279635888 ], [ 9.084322004997873, 45.45352817910932 ], [ 9.081619464468357, 45.454116669721209 ], [ 9.081634847490257, 45.454151580095925 ], [ 9.081188182512529, 45.454248953417277 ], [ 9.081208737139965, 45.454295354275075 ], [ 9.081071233751652, 45.454325428706611 ], [ 9.081086009534166, 45.454358901546428 ], [ 9.080785452029852, 45.454424397262976 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.095804100794192, 45.453985510391099 ], [ 9.095880073149646, 45.454096430993836 ], [ 9.095875460018705, 45.454097985019601 ], [ 9.097034759495369, 45.455789272502649 ], [ 9.099857200125825, 45.454838224606334 ], [ 9.098702139115892, 45.453149290616018 ], [ 9.098699107891401, 45.453150313022896 ], [ 9.098621264034534, 45.453036574329523 ], [ 9.095804100794192, 45.453985510391099 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.15992209459119, 45.453795178593012 ], [ 9.162289103086536, 45.454563440282485 ], [ 9.162104123715306, 45.454613859760627 ], [ 9.161460685329942, 45.454423019114806 ], [ 9.161403138691528, 45.454507451441707 ], [ 9.161264198360108, 45.454469606016012 ], [ 9.161207095920313, 45.454564499447521 ], [ 9.161177853411772, 45.454555413120595 ], [ 9.161137230823387, 45.454622334174182 ], [ 9.160720426261317, 45.454480468922 ], [ 9.160334780503488, 45.455029817565148 ], [ 9.160322401304363, 45.455026065059343 ], [ 9.160077585307405, 45.455396182960193 ], [ 9.159508767439007, 45.456206424801913 ], [ 9.159535577495248, 45.456215582473682 ], [ 9.159348459571358, 45.456498458502836 ], [ 9.158011909267991, 45.456062134939891 ], [ 9.158010640688987, 45.456064049668811 ], [ 9.157638249994001, 45.455942627190069 ], [ 9.157294711806356, 45.456460939443346 ], [ 9.157280486928048, 45.456456299975343 ], [ 9.156144921558759, 45.458170141987075 ], [ 9.156234550970913, 45.45819932112223 ], [ 9.156203582017127, 45.45824606214147 ], [ 9.156490637499273, 45.45833964785232 ], [ 9.15630237062555, 45.458623733582101 ], [ 9.158759730669734, 45.459424159247426 ], [ 9.160278670533065, 45.457131679819291 ], [ 9.162344801357706, 45.457760219720406 ], [ 9.162972475196698, 45.456795625047519 ], [ 9.163169485967044, 45.456493218062022 ], [ 9.163386047214798, 45.456163755382619 ], [ 9.163785922445326, 45.455555464876774 ], [ 9.163783227372512, 45.455551116219745 ], [ 9.163813043026074, 45.455505347879765 ], [ 9.163739759827321, 45.455480978701083 ], [ 9.163056406196654, 45.454378320995772 ], [ 9.163368104705764, 45.453883661852586 ], [ 9.163937761855736, 45.452980286185017 ], [ 9.163937405789158, 45.452980168133578 ], [ 9.164077521889716, 45.452757795837222 ], [ 9.162887582523645, 45.452364669495161 ], [ 9.162396258279806, 45.452202412177691 ], [ 9.161112843103977, 45.451765965258978 ], [ 9.160068676471468, 45.453489132441362 ], [ 9.16011176628092, 45.453503629170804 ], [ 9.15992209459119, 45.453795178593012 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.127796764105938, 45.45520209578698 ], [ 9.128432500811437, 45.455398094016587 ], [ 9.127863027344945, 45.456365578397474 ], [ 9.127946557273146, 45.456389796251877 ], [ 9.127934803997475, 45.456409943312927 ], [ 9.128007311388078, 45.456430891024084 ], [ 9.127985940142318, 45.456467268603653 ], [ 9.130743309829297, 45.45726657659479 ], [ 9.130764702032554, 45.457230049048292 ], [ 9.1309371222659, 45.45727997320018 ], [ 9.130948266264287, 45.457261028507297 ], [ 9.131027955010575, 45.457284068966388 ], [ 9.132097998598878, 45.455467602996151 ], [ 9.132095895751782, 45.455466994365722 ], [ 9.132297254560646, 45.455124586397091 ], [ 9.132123838378583, 45.455074363676133 ], [ 9.13217688431952, 45.45498414081775 ], [ 9.13118825251791, 45.454697679826793 ], [ 9.13146596961575, 45.45422372088936 ], [ 9.128595949402685, 45.453387851889488 ], [ 9.127796764105938, 45.45520209578698 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.10357109062558, 45.455865537405153 ], [ 9.10375695917746, 45.455898265989461 ], [ 9.103738890076146, 45.455948787602694 ], [ 9.105716043610586, 45.456297089611468 ], [ 9.105630237352107, 45.456545070666017 ], [ 9.106170525935466, 45.456636887793231 ], [ 9.106165091881245, 45.456652523820566 ], [ 9.107583508831658, 45.456895029617328 ], [ 9.107885844467061, 45.456928865555355 ], [ 9.108606790210379, 45.45705178802551 ], [ 9.10862101705697, 45.457011138996961 ], [ 9.108949235523593, 45.45704786844351 ], [ 9.109630591737623, 45.455080534644487 ], [ 9.109580999148237, 45.455072088610699 ], [ 9.109690420738008, 45.454756335753117 ], [ 9.106978369272586, 45.454294260530681 ], [ 9.106972762679717, 45.454310449468913 ], [ 9.104384237675099, 45.453853777401946 ], [ 9.104327338061575, 45.454012920320856 ], [ 9.104239642801708, 45.453997526105859 ], [ 9.10357109062558, 45.455865537405153 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.196908460308499, 45.452786879503478 ], [ 9.196894801051418, 45.452309973215868 ], [ 9.196521485548887, 45.452315114354114 ], [ 9.19651902748827, 45.452301729646123 ], [ 9.196343429244196, 45.452317566037827 ], [ 9.196269010133316, 45.452318590643301 ], [ 9.196219904143987, 45.452050539296138 ], [ 9.196134855041672, 45.452058188897588 ], [ 9.19611762237723, 45.451963711786163 ], [ 9.193450623909273, 45.452204122040676 ], [ 9.193629342850944, 45.453179567926171 ], [ 9.19362862337457, 45.453181213725465 ], [ 9.193483661398561, 45.453205593030013 ], [ 9.193482340992615, 45.45319310517219 ], [ 9.193239361821455, 45.453233403200514 ], [ 9.193232559755659, 45.453171461090704 ], [ 9.192381213676317, 45.453357927031554 ], [ 9.191786227575145, 45.453422701300717 ], [ 9.191798567606421, 45.453472346724453 ], [ 9.190620911867134, 45.453667635963335 ], [ 9.190647773356446, 45.453737570109865 ], [ 9.190463948012063, 45.45377782810214 ], [ 9.190757168689188, 45.454563950872448 ], [ 9.189560590856846, 45.454558644653211 ], [ 9.189554242210242, 45.454733191525484 ], [ 9.189125558889263, 45.454709969171027 ], [ 9.189276250327433, 45.455246126079395 ], [ 9.188852184225427, 45.455288472014352 ], [ 9.188862737720006, 45.455340590310016 ], [ 9.188405124511581, 45.455385960254638 ], [ 9.188478972794064, 45.45574954525231 ], [ 9.188425440562625, 45.455753956623781 ], [ 9.188677189617739, 45.457710013396202 ], [ 9.1889132709029, 45.457686583826479 ], [ 9.188930806158867, 45.45777284023972 ], [ 9.1893180979137, 45.457734374674331 ], [ 9.189320489987367, 45.457747051624359 ], [ 9.189435292558231, 45.457734479800223 ], [ 9.18946923215133, 45.457899272695236 ], [ 9.190209520460291, 45.457822084893394 ], [ 9.190242342823074, 45.457902390806197 ], [ 9.191107585526609, 45.458002678644405 ], [ 9.191770836283693, 45.458087044915693 ], [ 9.192912710727482, 45.458268365153884 ], [ 9.19147521262366, 45.458970501577483 ], [ 9.1906451763129, 45.458375149670857 ], [ 9.188561956130558, 45.459798217344478 ], [ 9.188896848754871, 45.460043985416959 ], [ 9.187732690593842, 45.459918477779212 ], [ 9.185858499994653, 45.459719357807337 ], [ 9.185829241188621, 45.4601265375913 ], [ 9.185282836602971, 45.460078858683758 ], [ 9.185310256739861, 45.460786661698847 ], [ 9.185254426571282, 45.461004498185638 ], [ 9.185220331682062, 45.461149482675133 ], [ 9.185198326648562, 45.461376401008287 ], [ 9.185342967709518, 45.462369704764065 ], [ 9.187893662435259, 45.462445345101038 ], [ 9.187897977484029, 45.462396444542783 ], [ 9.187923695703052, 45.46239873301559 ], [ 9.187926586780289, 45.462385519723519 ], [ 9.188575096612022, 45.462540286565378 ], [ 9.189484571962915, 45.460475291015399 ], [ 9.190704497423059, 45.461370512732735 ], [ 9.191925567702809, 45.460586947384058 ], [ 9.192176857311368, 45.461433364284588 ], [ 9.192420572281137, 45.462781288808102 ], [ 9.193854734546695, 45.46264519162321 ], [ 9.194033326324615, 45.462627765851423 ], [ 9.194390026480493, 45.462595642455049 ], [ 9.19461138394661, 45.462657646593371 ], [ 9.194648827869235, 45.462696906521643 ], [ 9.194686816127017, 45.46267877566936 ], [ 9.194854850868092, 45.462725843127451 ], [ 9.194965983251105, 45.462545535387193 ], [ 9.194970539827658, 45.4625433606233 ], [ 9.195524020086165, 45.462493510591806 ], [ 9.195478233919218, 45.462301046083269 ], [ 9.196084697195914, 45.462011584852803 ], [ 9.196130183032604, 45.46198993645001 ], [ 9.197948388103082, 45.461122491029982 ], [ 9.197278151984955, 45.460411707284621 ], [ 9.1974003197892, 45.460356980207884 ], [ 9.197454115467028, 45.460361777509902 ], [ 9.197442837191472, 45.460529010831927 ], [ 9.197853991818549, 45.460558541948565 ], [ 9.197852647413763, 45.460565232448694 ], [ 9.198593065256869, 45.460614626935211 ], [ 9.198591462230869, 45.460624343248227 ], [ 9.19930713219112, 45.460662901418431 ], [ 9.200400787571578, 45.460741431480571 ], [ 9.200402022445628, 45.460735284875028 ], [ 9.200677373605757, 45.460753648314686 ], [ 9.201411831429024, 45.460939340979259 ], [ 9.201489262458585, 45.460409964374783 ], [ 9.201661569048996, 45.460431718604035 ], [ 9.201798617026558, 45.459891644197434 ], [ 9.204196107406387, 45.460278369844644 ], [ 9.204512388393564, 45.459314808324329 ], [ 9.204523430212436, 45.459281182484879 ], [ 9.204840187403423, 45.458319344282721 ], [ 9.202771000559657, 45.457983621511339 ], [ 9.203056515387521, 45.457107997220049 ], [ 9.203063655201884, 45.457085852791202 ], [ 9.203380628582094, 45.457133377994253 ], [ 9.203946646515103, 45.455273921401741 ], [ 9.203186263951432, 45.455160307599122 ], [ 9.20355987460143, 45.453701036279554 ], [ 9.200952375044954, 45.45337434293566 ], [ 9.200837665613818, 45.453786119148276 ], [ 9.199885080982712, 45.453027695611304 ], [ 9.199860815025975, 45.453042584573403 ], [ 9.199643641689427, 45.452869505206579 ], [ 9.199580427205449, 45.452908565533576 ], [ 9.199558067899474, 45.452890796700643 ], [ 9.199422708927122, 45.452974497921879 ], [ 9.199278938893521, 45.452859830360069 ], [ 9.198473674724751, 45.453357600289607 ], [ 9.197967813070608, 45.452899004634673 ], [ 9.197649212444549, 45.453088632276973 ], [ 9.19739907791438, 45.452994246225558 ], [ 9.197074578742555, 45.452693360959479 ], [ 9.196987347403606, 45.452824010614968 ], [ 9.196908460308499, 45.452786879503478 ] ], [ [ 9.194046233344894, 45.456462197464582 ], [ 9.194322268655045, 45.456486746148315 ], [ 9.194593402683235, 45.455793505867163 ], [ 9.196697589085607, 45.455989349694647 ], [ 9.196705916752354, 45.455945404074406 ], [ 9.19673546496616, 45.455948097582301 ], [ 9.196753369461984, 45.455853541255593 ], [ 9.196996063556412, 45.455936422458137 ], [ 9.196779961461656, 45.456577178238632 ], [ 9.197085839291889, 45.456623752482962 ], [ 9.197064292292213, 45.456694262534562 ], [ 9.197569402522968, 45.456770702250147 ], [ 9.197548403283463, 45.456864239640254 ], [ 9.197938740456756, 45.456923574878168 ], [ 9.197826687017537, 45.457553528252447 ], [ 9.195549916045524, 45.457373556682789 ], [ 9.195403320494643, 45.458294444888459 ], [ 9.195280389772558, 45.458165536367879 ], [ 9.195086048984788, 45.458256612817962 ], [ 9.194647183816404, 45.457810891900792 ], [ 9.194794788157198, 45.45779642737611 ], [ 9.194544973821525, 45.457351163964553 ], [ 9.194650419138563, 45.457326351768714 ], [ 9.194190639144287, 45.456719592805243 ], [ 9.194124082701279, 45.456600959947366 ], [ 9.194209589044414, 45.456513136763107 ], [ 9.194064439433673, 45.456494648949807 ], [ 9.194046233344894, 45.456462197464582 ] ], [ [ 9.2006196703715, 45.457650922509664 ], [ 9.20216587561225, 45.457897538463428 ], [ 9.202053457182961, 45.458239783245155 ], [ 9.200570834865724, 45.458012389001979 ], [ 9.2006196703715, 45.457650922509664 ] ], [ [ 9.196941111951629, 45.459791234480278 ], [ 9.19746365781239, 45.45983253940063 ], [ 9.197392824787222, 45.460256356750087 ], [ 9.196941111951629, 45.459791234480278 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.250755067534133, 45.485924518269123 ], [ 9.251157053799187, 45.487265026737425 ], [ 9.252828140924377, 45.487056376676165 ], [ 9.253229181500348, 45.487242224929339 ], [ 9.253932900875508, 45.487262188850615 ], [ 9.254714236498875, 45.487049467819887 ], [ 9.255049380914228, 45.486591426377068 ], [ 9.255724291191985, 45.486180737855754 ], [ 9.254499152889631, 45.485074911229709 ], [ 9.254541271264955, 45.484757401213827 ], [ 9.254111257441561, 45.48472477964944 ], [ 9.254089655940486, 45.484705281012289 ], [ 9.254062763364384, 45.484721100704043 ], [ 9.251753762373857, 45.484545906702422 ], [ 9.251713341916924, 45.484877358806195 ], [ 9.25085728645799, 45.485005812517379 ], [ 9.250847922868736, 45.485741424715165 ], [ 9.250755067534133, 45.485924518269123 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.070505932273257, 45.490665837004194 ], [ 9.071013565476592, 45.490670193892761 ], [ 9.071013487384485, 45.490674995493201 ], [ 9.073630505286093, 45.490695003229384 ], [ 9.073630750330272, 45.490676180476825 ], [ 9.073731570160952, 45.490676985870039 ], [ 9.07376607807112, 45.488694746486807 ], [ 9.070540590749671, 45.488667556267366 ], [ 9.070505932273257, 45.490665837004194 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.24236779642851, 45.488052133222389 ], [ 9.242630301640153, 45.488078211278918 ], [ 9.242629514139571, 45.488082227086643 ], [ 9.245573846281728, 45.488385493066538 ], [ 9.245961688290294, 45.486486533014869 ], [ 9.245773655640281, 45.486467620155281 ], [ 9.245789450506216, 45.486388178062384 ], [ 9.243199049273658, 45.486141171827867 ], [ 9.24318159390865, 45.486222230801076 ], [ 9.242733735346812, 45.486177561866832 ], [ 9.24236779642851, 45.488052133222389 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.134384824357539, 45.483467222189383 ], [ 9.135389645026798, 45.485407435712951 ], [ 9.136951395253641, 45.485038162433689 ], [ 9.136882376614604, 45.485567078594173 ], [ 9.136970983409121, 45.485572793160749 ], [ 9.13692083026794, 45.48595822303934 ], [ 9.138572181844498, 45.486064681295169 ], [ 9.138571530214133, 45.486191386176202 ], [ 9.138806403301979, 45.486192002339237 ], [ 9.138806202237287, 45.486234820967489 ], [ 9.141526583483111, 45.486240470734266 ], [ 9.14153673321975, 45.484207874156532 ], [ 9.141503457404866, 45.484207765717024 ], [ 9.141504332252365, 45.484030524818422 ], [ 9.141045835293228, 45.484029686402103 ], [ 9.14103430846926, 45.483021630554298 ], [ 9.14099650902326, 45.483022292884009 ], [ 9.14099643086815, 45.483008519460292 ], [ 9.138195837638584, 45.483055277756335 ], [ 9.138196198172844, 45.483111273241605 ], [ 9.137893339011049, 45.483111269964205 ], [ 9.137908577882447, 45.483703984185674 ], [ 9.137712027896534, 45.483691415836667 ], [ 9.137238216376449, 45.482743345975663 ], [ 9.13713538462593, 45.482769456550677 ], [ 9.137049694018234, 45.482600801393922 ], [ 9.134382712729252, 45.483281652646994 ], [ 9.134470299795105, 45.483445560103782 ], [ 9.134384824357539, 45.483467222189383 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.239946174177696, 45.482407427245761 ], [ 9.240012157502333, 45.482413545203585 ], [ 9.239993603520846, 45.482517658534498 ], [ 9.240024260916801, 45.482523009370141 ], [ 9.239999609282618, 45.482675753476869 ], [ 9.240050889732485, 45.482681120028928 ], [ 9.240033585738503, 45.482767387367495 ], [ 9.240346505939689, 45.482793622177624 ], [ 9.240221899307675, 45.483163323370341 ], [ 9.241286348394965, 45.483296499768556 ], [ 9.238439636714904, 45.483093672844298 ], [ 9.238393629097214, 45.483411667509735 ], [ 9.238007116040523, 45.483384020705657 ], [ 9.237903440541121, 45.484100444355619 ], [ 9.237901141608431, 45.484100287251472 ], [ 9.237844349348, 45.484506354327884 ], [ 9.237587074162215, 45.48448645472908 ], [ 9.237277753140587, 45.486452915129455 ], [ 9.238592680496403, 45.486548247988445 ], [ 9.240049742733747, 45.486665005283427 ], [ 9.240108841533242, 45.486305288834458 ], [ 9.240362935048848, 45.486322861426089 ], [ 9.240363300383676, 45.486320240659843 ], [ 9.240842359952135, 45.486353019067153 ], [ 9.240847102914652, 45.486319036225538 ], [ 9.241211768110359, 45.486344103112849 ], [ 9.241266087340124, 45.485955467137941 ], [ 9.241685858164692, 45.486002555372629 ], [ 9.242622625242365, 45.485479542178894 ], [ 9.242640411386045, 45.485132986189001 ], [ 9.242653179952205, 45.485035636496406 ], [ 9.24278243276037, 45.484650257630172 ], [ 9.242729850721767, 45.484604045653342 ], [ 9.242755866229373, 45.48448399969952 ], [ 9.242755610385631, 45.48448379638544 ], [ 9.242797369505926, 45.48430178832993 ], [ 9.242733844879787, 45.484269185895776 ], [ 9.242702365166807, 45.484248175223797 ], [ 9.242707110407215, 45.484234828343212 ], [ 9.242653639872444, 45.484191397659025 ], [ 9.242671249785889, 45.48413959134178 ], [ 9.24221893818847, 45.483820864199906 ], [ 9.242029244331835, 45.483645899187991 ], [ 9.241976390196166, 45.483641303217539 ], [ 9.241942831306394, 45.48361404470397 ], [ 9.241922236081903, 45.48361178633192 ], [ 9.241840193450066, 45.483553972719676 ], [ 9.241291139892827, 45.483495183861827 ], [ 9.241319198260747, 45.483300609545267 ], [ 9.243570779334785, 45.483582276099142 ], [ 9.243792889708468, 45.481304323383561 ], [ 9.243557308776492, 45.481296729805869 ], [ 9.243568880155262, 45.481197448343259 ], [ 9.243214887963797, 45.481183933323152 ], [ 9.243286496848008, 45.480815818778922 ], [ 9.243097543090855, 45.480798391434782 ], [ 9.243109785190155, 45.480730863938433 ], [ 9.240413783015791, 45.480479588596708 ], [ 9.240398922409991, 45.480559712107677 ], [ 9.240277476349839, 45.480548570711697 ], [ 9.240048671042908, 45.481832355145585 ], [ 9.239811150526016, 45.48195524175344 ], [ 9.239997302154961, 45.482120568490352 ], [ 9.239946174177696, 45.482407427245761 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.165660200542977, 45.484022523935806 ], [ 9.166747487831797, 45.484719940900789 ], [ 9.167202234966917, 45.485012390564819 ], [ 9.168223666966979, 45.485668164761336 ], [ 9.168310577424531, 45.485600598314477 ], [ 9.167517495480617, 45.486474330510582 ], [ 9.167961587853304, 45.486671989073635 ], [ 9.167719380712478, 45.486938402406224 ], [ 9.170084507882112, 45.48799188373426 ], [ 9.170567882443665, 45.487457496123852 ], [ 9.170628423881185, 45.487484205574475 ], [ 9.17123783576185, 45.486716818986004 ], [ 9.171507464896846, 45.486418719769148 ], [ 9.17148314573614, 45.486407911753133 ], [ 9.171933730288037, 45.4858405017739 ], [ 9.171490498928366, 45.485542345727225 ], [ 9.171582118136381, 45.485439800644237 ], [ 9.170880493026173, 45.485131994593957 ], [ 9.1700756351251, 45.484590552302578 ], [ 9.169926903772348, 45.484713638432552 ], [ 9.169622960200641, 45.484580290126644 ], [ 9.170098659757146, 45.48421044603829 ], [ 9.170071182754542, 45.48419356922696 ], [ 9.170080600747614, 45.484186258459516 ], [ 9.169936877423689, 45.484094948698626 ], [ 9.169975933566723, 45.484058350899552 ], [ 9.16961252428022, 45.48383209834234 ], [ 9.170027894663011, 45.48351030488292 ], [ 9.169992917885669, 45.48348855047918 ], [ 9.170030861694933, 45.483458499551304 ], [ 9.169013005934131, 45.482826130029231 ], [ 9.167953241249458, 45.482150629194763 ], [ 9.167020766622077, 45.482908975024159 ], [ 9.166946697067097, 45.48296926885979 ], [ 9.166765011845124, 45.483123942049417 ], [ 9.165660200542977, 45.484022523935806 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.131311673864658, 45.485407953126568 ], [ 9.131697246381723, 45.486184580203158 ], [ 9.131601548133734, 45.486243628085127 ], [ 9.131833997390883, 45.486460021059067 ], [ 9.131917585072753, 45.486628380105238 ], [ 9.131426680530101, 45.486652853159434 ], [ 9.131599035612693, 45.488559681320353 ], [ 9.131795901713902, 45.488551748856018 ], [ 9.131800212000419, 45.488633455003828 ], [ 9.132749971697471, 45.488580888535722 ], [ 9.133444607926481, 45.488548399228208 ], [ 9.133803651044948, 45.48876440649223 ], [ 9.13421990840318, 45.488512132085603 ], [ 9.134370880605729, 45.488505069263766 ], [ 9.135500973183099, 45.488465741097173 ], [ 9.135498649225701, 45.488447332193616 ], [ 9.135934252517531, 45.488427281538648 ], [ 9.135925914253145, 45.488344347358748 ], [ 9.136182213702631, 45.488328919553915 ], [ 9.135855647292709, 45.486429620707689 ], [ 9.135506055216691, 45.486447392301649 ], [ 9.134615101711457, 45.484604015905269 ], [ 9.131311673864658, 45.485407953126568 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.186390117554501, 45.485771372744502 ], [ 9.186392064772594, 45.485778630454696 ], [ 9.186255056478219, 45.485797486005147 ], [ 9.185894092399474, 45.486193494620288 ], [ 9.185566355669305, 45.486235961973115 ], [ 9.185772201999095, 45.487031965062201 ], [ 9.186006805499314, 45.487940078875418 ], [ 9.186007039570187, 45.487940048479494 ], [ 9.186155739091888, 45.488515032826804 ], [ 9.187094019270177, 45.488396876860371 ], [ 9.187096258630353, 45.488405239777059 ], [ 9.188504030772265, 45.488219301180017 ], [ 9.18885290179899, 45.488175361794077 ], [ 9.188852837118036, 45.488175110400611 ], [ 9.189574796173725, 45.488084167232643 ], [ 9.189573169539942, 45.488078076883767 ], [ 9.189761662191321, 45.488053177469062 ], [ 9.189699153683199, 45.487817426191043 ], [ 9.190123285698865, 45.487761574328921 ], [ 9.190086173879923, 45.487623134644181 ], [ 9.190086352070434, 45.487623111146227 ], [ 9.190037983107693, 45.487442817104416 ], [ 9.190038054112518, 45.487442807741004 ], [ 9.189834291848065, 45.486683510703088 ], [ 9.1896119650866, 45.485854113405153 ], [ 9.189611788498755, 45.485854136691735 ], [ 9.189563422572157, 45.485673842353108 ], [ 9.189563352047486, 45.485673851653161 ], [ 9.189517567291629, 45.485503230775656 ], [ 9.189085517228136, 45.485559893290898 ], [ 9.189048390263151, 45.485421518071547 ], [ 9.188869952193443, 45.48544500433804 ], [ 9.188868040942438, 45.48543784765392 ], [ 9.187638830574306, 45.485607038148117 ], [ 9.186390117554501, 45.485771372744502 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.160439039217664, 45.481455362296273 ], [ 9.162532139483682, 45.48275678263515 ], [ 9.164320737277301, 45.481301832773262 ], [ 9.164120261776723, 45.481173294492343 ], [ 9.164243359327488, 45.481071007480629 ], [ 9.162545189786766, 45.479710895773557 ], [ 9.161484470542398, 45.480395162018525 ], [ 9.161294697013858, 45.480528190618216 ], [ 9.161073423464545, 45.4807244667278 ], [ 9.160439039217664, 45.481455362296273 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.196592514523985, 45.481399440646186 ], [ 9.19736646261174, 45.483212012939433 ], [ 9.197991696244021, 45.483095281349229 ], [ 9.198010683447556, 45.483113795381549 ], [ 9.200611645012817, 45.482656307328583 ], [ 9.198792145821985, 45.480475763292475 ], [ 9.197667464430673, 45.481201612124323 ], [ 9.196592514523985, 45.481399440646186 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.143542752473381, 45.482690657913395 ], [ 9.143662995271907, 45.482765433368293 ], [ 9.14356160136167, 45.482845481818657 ], [ 9.145548557856992, 45.484083842971991 ], [ 9.147482335505142, 45.482556860650192 ], [ 9.145343403757741, 45.48122508532051 ], [ 9.143552287670081, 45.482640981790468 ], [ 9.143582062326812, 45.482659457283738 ], [ 9.143542752473381, 45.482690657913395 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.182112447435129, 45.482776253223456 ], [ 9.182193083023689, 45.482805623070966 ], [ 9.182168240909631, 45.482824313773534 ], [ 9.183020047879541, 45.483127201329175 ], [ 9.182874481772886, 45.483130833569291 ], [ 9.182971156360928, 45.485079999232624 ], [ 9.183343904349783, 45.485068812809203 ], [ 9.183360406097213, 45.485330240434742 ], [ 9.186106719664627, 45.485237183741617 ], [ 9.18600959326092, 45.483246012841846 ], [ 9.186378969607642, 45.483148393932531 ], [ 9.185927856434612, 45.482333028366746 ], [ 9.186235622603212, 45.482248963993442 ], [ 9.185683922941319, 45.481265929930998 ], [ 9.185683920733723, 45.48116381989351 ], [ 9.185626618179905, 45.481163820557143 ], [ 9.185254209258803, 45.480500228208207 ], [ 9.183398683820112, 45.480953000176051 ], [ 9.183245897746119, 45.481163822721946 ], [ 9.183005045797458, 45.481163820177144 ], [ 9.182993339056384, 45.481512313052853 ], [ 9.182220078013795, 45.482579258550821 ], [ 9.182248437330825, 45.482588543303422 ], [ 9.182112447435129, 45.482776253223456 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.148896918140084, 45.483486586846716 ], [ 9.149150257333241, 45.483649649879069 ], [ 9.149099595256219, 45.483686448286932 ], [ 9.149659466954418, 45.484052963606899 ], [ 9.14960054751101, 45.484096938705072 ], [ 9.151572834511981, 45.485420302477735 ], [ 9.152459494875124, 45.484744011924441 ], [ 9.153590074093067, 45.485464828896049 ], [ 9.153618115319468, 45.485446276738742 ], [ 9.153662340201103, 45.485474811350556 ], [ 9.153745947657733, 45.485530699843636 ], [ 9.153038934806245, 45.48553504219506 ], [ 9.151402178796703, 45.486811449175924 ], [ 9.153412687813679, 45.488074042462316 ], [ 9.1534846136556, 45.488022448034293 ], [ 9.153857773193032, 45.488263352391911 ], [ 9.154084038190387, 45.488098907835145 ], [ 9.154192376557514, 45.488176246338227 ], [ 9.156139615456814, 45.486788062246454 ], [ 9.154296348875313, 45.485531869364685 ], [ 9.155881302932737, 45.484289586358265 ], [ 9.155825260248866, 45.484253779116486 ], [ 9.156703954507536, 45.483644155740045 ], [ 9.155643169922222, 45.482939727584608 ], [ 9.155672769648902, 45.482919189568527 ], [ 9.154841324293889, 45.482407233028219 ], [ 9.154650937726373, 45.482280797639461 ], [ 9.154644143458171, 45.482285818079056 ], [ 9.153573981024364, 45.481626845852993 ], [ 9.15267111064399, 45.482323652456202 ], [ 9.152419944129113, 45.482515103766723 ], [ 9.15151325063009, 45.481924520619387 ], [ 9.151415846083214, 45.481994133880157 ], [ 9.15113425155937, 45.4818132002043 ], [ 9.151066580087383, 45.481864930570431 ], [ 9.150922146352507, 45.481771988284294 ], [ 9.14909761751602, 45.483166217397894 ], [ 9.149216237418125, 45.483242620064523 ], [ 9.148896918140084, 45.483486586846716 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.075478901397423, 45.494573717192623 ], [ 9.078500547407772, 45.495374612696395 ], [ 9.078676097836675, 45.495049324232745 ], [ 9.07895439600672, 45.495123061395553 ], [ 9.079921347389483, 45.493328578238284 ], [ 9.07662924985704, 45.492456427880676 ], [ 9.076441279137976, 45.492804835566609 ], [ 9.076434466993806, 45.492803030671972 ], [ 9.075478901397423, 45.494573717192623 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.122610903443515, 45.49373994931635 ], [ 9.124551272448327, 45.495365866378613 ], [ 9.12464333360384, 45.495311800237076 ], [ 9.124868281314725, 45.495500312659026 ], [ 9.127073855227035, 45.494206077310594 ], [ 9.12684861042567, 45.49401740111405 ], [ 9.126909036170373, 45.493981944678069 ], [ 9.124968566445382, 45.49235709383521 ], [ 9.124720019805862, 45.492502731441313 ], [ 9.124719037082235, 45.492501908251874 ], [ 9.123672384054583, 45.493116586563339 ], [ 9.122870725005885, 45.493586297763102 ], [ 9.122871477219674, 45.493586927529243 ], [ 9.122610903443515, 45.49373994931635 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.150483936332801, 45.495887889284433 ], [ 9.150489489374655, 45.49589151608469 ], [ 9.150924815546075, 45.495558089601069 ], [ 9.151596347813697, 45.495056060015379 ], [ 9.151591569442292, 45.495052931088907 ], [ 9.15195171281057, 45.494783592163309 ], [ 9.151943230614679, 45.494778039809212 ], [ 9.152296680958129, 45.494507309160674 ], [ 9.149687453266106, 45.492801872866465 ], [ 9.149520523891317, 45.492928436137305 ], [ 9.149183178217603, 45.492706899087743 ], [ 9.149042108919486, 45.492815694152682 ], [ 9.149003532251268, 45.492789998604636 ], [ 9.147782676877389, 45.493714411831192 ], [ 9.146842545531362, 45.494426344061466 ], [ 9.146960531337241, 45.494507074888126 ], [ 9.146496679880384, 45.494856558338213 ], [ 9.148487280726766, 45.496181355221921 ], [ 9.148552104607834, 45.496131506040712 ], [ 9.149419379385032, 45.496698081519618 ], [ 9.150483936332801, 45.495887889284433 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.107296304113008, 45.496033095897012 ], [ 9.107417733984777, 45.496168168613529 ], [ 9.107324189826882, 45.496209437982031 ], [ 9.108891318699509, 45.497952930744297 ], [ 9.111211329781552, 45.496927744943356 ], [ 9.111158209277793, 45.496868614015654 ], [ 9.111396059704706, 45.496763524150076 ], [ 9.10988169950128, 45.495079007929057 ], [ 9.109812044968887, 45.495109811564021 ], [ 9.109691608866592, 45.494975881867397 ], [ 9.107296304113008, 45.496033095897012 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.229456955100263, 45.495661065916657 ], [ 9.229456936561458, 45.496479434065009 ], [ 9.230261569976852, 45.49701946231616 ], [ 9.230345155175666, 45.497019462674224 ], [ 9.230885934425054, 45.497417371471506 ], [ 9.233066090556243, 45.495991312439735 ], [ 9.230973489059568, 45.494239276704697 ], [ 9.230223893604572, 45.495176271029322 ], [ 9.229456955100263, 45.495661065916657 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.152920878433161, 45.494933848896942 ], [ 9.154191589409677, 45.495763277982739 ], [ 9.154034237380397, 45.495882460610702 ], [ 9.15603280484345, 45.497177947766914 ], [ 9.156238957051329, 45.497021846074652 ], [ 9.156284457485054, 45.497051297137084 ], [ 9.15619836565291, 45.497114372270978 ], [ 9.156301070833567, 45.497183153000172 ], [ 9.156033400907548, 45.497384466417415 ], [ 9.158159649679087, 45.498771711104382 ], [ 9.158373948467204, 45.498612425990125 ], [ 9.158815076324046, 45.498904722293737 ], [ 9.160037850373929, 45.497999077817603 ], [ 9.160650018664917, 45.498047198513582 ], [ 9.160718859934667, 45.497494671523746 ], [ 9.160745549805911, 45.497474902754853 ], [ 9.160726274273252, 45.49746212600413 ], [ 9.161213496334547, 45.497118032299461 ], [ 9.160801553375395, 45.496830951354291 ], [ 9.160818233431398, 45.496697070777685 ], [ 9.160879186691259, 45.496650586277845 ], [ 9.160828112969655, 45.496617773486484 ], [ 9.160835460846348, 45.496558796222033 ], [ 9.161457753012522, 45.496050930072421 ], [ 9.161080342584853, 45.495823780530863 ], [ 9.161081232927224, 45.495823053834343 ], [ 9.160613087259435, 45.49554069091424 ], [ 9.160658452624277, 45.495506058588617 ], [ 9.160635543900213, 45.495491310891374 ], [ 9.16078664775659, 45.495376101956232 ], [ 9.158584930002938, 45.493957950601768 ], [ 9.158547505797335, 45.493986520214442 ], [ 9.157465047862679, 45.493284085871196 ], [ 9.156391564916689, 45.494097132305619 ], [ 9.156391387240809, 45.494097016862362 ], [ 9.156340535250044, 45.49413553685487 ], [ 9.156014404252392, 45.493925043718043 ], [ 9.155060561031624, 45.493311071103697 ], [ 9.153996124331989, 45.494118547225384 ], [ 9.152920878433161, 45.494933848896942 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.130690124873082, 45.495308936262859 ], [ 9.130695256268279, 45.495315545403805 ], [ 9.130231428949116, 45.495486972456263 ], [ 9.130327914986236, 45.495615446641409 ], [ 9.13018022084613, 45.495670113090277 ], [ 9.131512991417891, 45.497443657563053 ], [ 9.13422198576235, 45.496442525859628 ], [ 9.134211866535823, 45.496429070179815 ], [ 9.13475981557143, 45.496223029422779 ], [ 9.134751173380751, 45.496211419890358 ], [ 9.135015387979387, 45.496111928293303 ], [ 9.134881795799577, 45.495939642980211 ], [ 9.134992824150222, 45.495897646159158 ], [ 9.133684666528055, 45.494173447452035 ], [ 9.130690124873082, 45.495308936262859 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.199030655071109, 45.496647515405918 ], [ 9.199502961726131, 45.497666286571892 ], [ 9.199725969721568, 45.497719443057981 ], [ 9.199788644704279, 45.497786056015613 ], [ 9.200223751198656, 45.497851585435015 ], [ 9.200816966530468, 45.498657162733132 ], [ 9.203330603946787, 45.49772544236599 ], [ 9.203323581929036, 45.497716249015227 ], [ 9.20373332219741, 45.497563569891987 ], [ 9.2020894837973, 45.495390346803454 ], [ 9.200830430687805, 45.495873322851054 ], [ 9.200231854319583, 45.495766950218524 ], [ 9.199030655071109, 45.496647515405918 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.193807981233423, 45.495455431009724 ], [ 9.194034164032301, 45.495876864025789 ], [ 9.193863703048747, 45.495923111750251 ], [ 9.194453959104317, 45.496992362681162 ], [ 9.194371545153736, 45.497016367898517 ], [ 9.19539354228303, 45.498805182145098 ], [ 9.198256261810272, 45.498054582822093 ], [ 9.198226053761353, 45.497981673088937 ], [ 9.198943705997459, 45.49778932805863 ], [ 9.197927968056417, 45.496011112383464 ], [ 9.197852915600681, 45.496031731495421 ], [ 9.197817416943391, 45.495967416857425 ], [ 9.197303338835424, 45.495037641965787 ], [ 9.197285986996857, 45.495042494176339 ], [ 9.197259210068228, 45.49499402389241 ], [ 9.196975757738672, 45.495071025619062 ], [ 9.196857850351304, 45.494850898086248 ], [ 9.196854007823687, 45.494851885591103 ], [ 9.196775974413375, 45.494706439948324 ], [ 9.196567329580725, 45.494761370916962 ], [ 9.196552222010077, 45.494733194086145 ], [ 9.193807981233423, 45.495455431009724 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.138644537292324, 45.497528679447662 ], [ 9.140907677109089, 45.498515677737466 ], [ 9.141025664833681, 45.498394197349867 ], [ 9.141044324077047, 45.498400228453946 ], [ 9.141182830393989, 45.498254401040555 ], [ 9.141201372542282, 45.498262125597002 ], [ 9.141452389493859, 45.498371708023683 ], [ 9.142923877937895, 45.496800854979639 ], [ 9.142848581840109, 45.496768921161028 ], [ 9.142850313681924, 45.496767044043828 ], [ 9.142531877168308, 45.496626689520468 ], [ 9.142548738087291, 45.496604890377796 ], [ 9.140269574476108, 45.495606806090876 ], [ 9.139378145211012, 45.496625151636906 ], [ 9.139123225016144, 45.496893686536986 ], [ 9.139125521836464, 45.496913734030862 ], [ 9.138784634702255, 45.497303138287478 ], [ 9.138787557036581, 45.497304454122407 ], [ 9.138753956949969, 45.497341090090188 ], [ 9.138786701504523, 45.497356198867294 ], [ 9.138644537292324, 45.497528679447662 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.261632701344105, 45.507619132067134 ], [ 9.262446178901468, 45.507706184986439 ], [ 9.262435537331903, 45.507750613707557 ], [ 9.264726238569253, 45.508019965787838 ], [ 9.264710575968614, 45.508088796579202 ], [ 9.2665477982667, 45.508294514301106 ], [ 9.268106136599366, 45.508477941356283 ], [ 9.268797132326126, 45.505571440746941 ], [ 9.268486646659255, 45.505531574171158 ], [ 9.268491200806551, 45.505511460404279 ], [ 9.267241315309073, 45.505371663704395 ], [ 9.265967525539386, 45.50520808395428 ], [ 9.265962866406092, 45.505228657380542 ], [ 9.265376304501796, 45.50516303997675 ], [ 9.265245620776334, 45.505737395427182 ], [ 9.262981529764035, 45.505470995600234 ], [ 9.262974362075047, 45.505500923214043 ], [ 9.262115190792587, 45.505409024138082 ], [ 9.261632701344105, 45.507619132067134 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.174274405032913, 45.508841214966104 ], [ 9.176669434100669, 45.509694314661864 ], [ 9.176670285124056, 45.509693147202142 ], [ 9.176888164244456, 45.509770659013171 ], [ 9.1781543291145, 45.508024387752727 ], [ 9.177939557814963, 45.507947857933708 ], [ 9.177966407485446, 45.507910862905739 ], [ 9.175568359662076, 45.507056186149228 ], [ 9.174274405032913, 45.508841214966104 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.181622821506997, 45.507504932791932 ], [ 9.181656556720725, 45.507576301268578 ], [ 9.181649229981508, 45.507578045569673 ], [ 9.182483119899308, 45.509340720765451 ], [ 9.18259312464739, 45.509315162955438 ], [ 9.182598831171365, 45.509327237803625 ], [ 9.185085231349392, 45.508749899294536 ], [ 9.185079239053447, 45.50873725884513 ], [ 9.185182217508331, 45.508713371080731 ], [ 9.184721151504444, 45.50773977476252 ], [ 9.184154901075448, 45.50691792275569 ], [ 9.181622821506997, 45.507504932791932 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.128509525399883, 45.50326853998542 ], [ 9.128509614013337, 45.503276612720654 ], [ 9.127773463295661, 45.503282845498596 ], [ 9.127810515188834, 45.505409553365745 ], [ 9.128173537366642, 45.505406501138175 ], [ 9.12817355943079, 45.505407773084265 ], [ 9.128735091506821, 45.505402839742352 ], [ 9.131381694783416, 45.505388236470338 ], [ 9.131358156859971, 45.503252824582781 ], [ 9.128509525399883, 45.50326853998542 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.228441245099868, 45.50598041429086 ], [ 9.22879777170793, 45.504797552841389 ], [ 9.229009958724717, 45.504102510082426 ], [ 9.225736127535363, 45.503730189042358 ], [ 9.225687733283134, 45.503908346238056 ], [ 9.225662439033595, 45.503904714869805 ], [ 9.22553253349632, 45.504364853106701 ], [ 9.224592340892391, 45.504239548555816 ], [ 9.224580959259526, 45.504290353126677 ], [ 9.223874462027027, 45.504212231102848 ], [ 9.223823731433917, 45.504438288707867 ], [ 9.223795414203948, 45.504435141955305 ], [ 9.223354176242642, 45.506405345486726 ], [ 9.224792488403063, 45.506563522339775 ], [ 9.224739876849297, 45.507012446289117 ], [ 9.224893228026001, 45.507038289240349 ], [ 9.224730867842565, 45.508333714246525 ], [ 9.228041898694102, 45.509002979535559 ], [ 9.228320150145262, 45.507080638985407 ], [ 9.228208861600125, 45.507057694169447 ], [ 9.228239292609041, 45.506837599179484 ], [ 9.228934432761838, 45.506416841621146 ], [ 9.228482623965553, 45.506069413959594 ], [ 9.228441245099868, 45.50598041429086 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.19584366191396, 45.506697069248595 ], [ 9.196080250610859, 45.506640269632797 ], [ 9.196057059388421, 45.506589154994366 ], [ 9.196101666199707, 45.506578502258797 ], [ 9.195436186180974, 45.505220682284914 ], [ 9.195277786538989, 45.50487154083072 ], [ 9.195266416476143, 45.504874279508456 ], [ 9.195166936590933, 45.504671295904785 ], [ 9.194890701066036, 45.504737875839808 ], [ 9.194863925228765, 45.504682820373866 ], [ 9.192212689030743, 45.505315511710215 ], [ 9.193319474316372, 45.507591170560254 ], [ 9.195970820910347, 45.50695845055975 ], [ 9.19584366191396, 45.506697069248595 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.206053382022869, 45.507771587327028 ], [ 9.206343361374049, 45.507786774980097 ], [ 9.20634646256897, 45.5077570146521 ], [ 9.206450457248632, 45.507762460792193 ], [ 9.206682618420027, 45.505572513988994 ], [ 9.206487256167053, 45.505562327515747 ], [ 9.206487299675995, 45.505561915739797 ], [ 9.205012715876414, 45.505485431931973 ], [ 9.204027936445263, 45.505434066094814 ], [ 9.204027907374554, 45.505434341101498 ], [ 9.203847183231259, 45.505424964390549 ], [ 9.203835531450466, 45.505534801266471 ], [ 9.202937813787308, 45.505534794504406 ], [ 9.202937812416961, 45.50559439205319 ], [ 9.20284185961609, 45.505594391044674 ], [ 9.202841460275073, 45.505967578810051 ], [ 9.202796122539324, 45.505967517713913 ], [ 9.202795261831788, 45.507136234723703 ], [ 9.20120558158904, 45.507682064135352 ], [ 9.202407729780182, 45.509401255502716 ], [ 9.202591913313952, 45.509338013226241 ], [ 9.202669156260413, 45.509448324123767 ], [ 9.203048440050209, 45.509318259708813 ], [ 9.203053090309862, 45.509324902906798 ], [ 9.203338175829201, 45.509227168779525 ], [ 9.203598763705003, 45.509651625289763 ], [ 9.203632897757345, 45.509711162543752 ], [ 9.206163957099236, 45.509007936726789 ], [ 9.20597902219408, 45.508681299410739 ], [ 9.206032936869063, 45.5086664022948 ], [ 9.20585864092938, 45.508358942758349 ], [ 9.205880253510422, 45.508351525710694 ], [ 9.205743697443847, 45.508156179468322 ], [ 9.205591534143432, 45.507887757022729 ], [ 9.206053297116251, 45.507888028457344 ], [ 9.206053382022869, 45.507771587327028 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.229467156009381, 45.508200138771151 ], [ 9.229838185227262, 45.508289887974819 ], [ 9.229592068614838, 45.508818314884742 ], [ 9.229753518707568, 45.508856394856103 ], [ 9.229752776940501, 45.508857945702751 ], [ 9.229846093742108, 45.508879820808211 ], [ 9.229843507269608, 45.508885184955908 ], [ 9.23251031738034, 45.509513287352 ], [ 9.232513652860632, 45.509506282736368 ], [ 9.232779575157471, 45.50956875741312 ], [ 9.232831975799787, 45.509462555754389 ], [ 9.232832101371249, 45.509462585750988 ], [ 9.232910744583709, 45.509303100611334 ], [ 9.232911212229071, 45.509303214287222 ], [ 9.233030015175283, 45.509061934180906 ], [ 9.233346006317214, 45.50913833983693 ], [ 9.234351791435543, 45.507137510776872 ], [ 9.231689765720409, 45.506478275370178 ], [ 9.23168312737277, 45.506491415073391 ], [ 9.230479928959523, 45.506193494727917 ], [ 9.229467156009381, 45.508200138771151 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.244682138164888, 45.499310350960485 ], [ 9.245458555576869, 45.500630380616002 ], [ 9.245641046969693, 45.500576257516855 ], [ 9.246077984109927, 45.501302214675512 ], [ 9.24610046135323, 45.501295634194292 ], [ 9.246134436410383, 45.501352024009186 ], [ 9.246221327018093, 45.501326339470786 ], [ 9.246388044816159, 45.501602408729717 ], [ 9.248970010570453, 45.500836626793088 ], [ 9.248265223871702, 45.499668757032637 ], [ 9.24843254663573, 45.499365827709418 ], [ 9.247614494251092, 45.498090043385496 ], [ 9.247448934457106, 45.498140545886578 ], [ 9.247352518532162, 45.497971921220739 ], [ 9.247122248333167, 45.498046227063647 ], [ 9.247025258720784, 45.497880002578292 ], [ 9.245189444498322, 45.498491947855598 ], [ 9.244918798154821, 45.498928566588312 ], [ 9.244740824391942, 45.498996918433235 ], [ 9.244807969847514, 45.499107357614065 ], [ 9.244682138164888, 45.499310350960485 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.187086743675033, 45.502646009981824 ], [ 9.187323895638853, 45.502708814803171 ], [ 9.187546160431459, 45.502408972741001 ], [ 9.188839372737121, 45.501821025212514 ], [ 9.188231058630539, 45.501485001159146 ], [ 9.188624878942061, 45.500953696732346 ], [ 9.187657730587132, 45.500727831465625 ], [ 9.187669777020721, 45.500690657572186 ], [ 9.187228145149072, 45.500627504008797 ], [ 9.18551985988694, 45.500228523279787 ], [ 9.185498013677721, 45.500278252544099 ], [ 9.1854657271438, 45.500271049800617 ], [ 9.185422523963004, 45.500369280092137 ], [ 9.184987701220141, 45.500307090981913 ], [ 9.18491599757786, 45.500543778540091 ], [ 9.184479422644063, 45.500481177226462 ], [ 9.183957438745635, 45.502385297185633 ], [ 9.184380502372102, 45.502438713591168 ], [ 9.18429292450481, 45.502741469380823 ], [ 9.184309490612026, 45.502748945594057 ], [ 9.184228458180664, 45.503029473167459 ], [ 9.186835150116158, 45.503692442017709 ], [ 9.187036529735831, 45.502819185029281 ], [ 9.187086743675033, 45.502646009981824 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.142382230375581, 45.501183575189216 ], [ 9.142666357985357, 45.500847188035884 ], [ 9.142397550666647, 45.500740857147811 ], [ 9.142437547548564, 45.500687991802927 ], [ 9.141251595004658, 45.500222014179244 ], [ 9.140038526549841, 45.49974674103359 ], [ 9.139181510780269, 45.500821397317857 ], [ 9.13911740484501, 45.500901929846641 ], [ 9.138910295041521, 45.501156142453524 ], [ 9.138222059103402, 45.502037444189753 ], [ 9.139395590031917, 45.502496513483173 ], [ 9.140505088600614, 45.503136134124858 ], [ 9.140620540360171, 45.503038300579369 ], [ 9.140659930732161, 45.503057995730714 ], [ 9.14094135851132, 45.502800982937956 ], [ 9.142609419153436, 45.501316258526352 ], [ 9.142382230375581, 45.501183575189216 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.159983437947377, 45.50114741114588 ], [ 9.159984951363601, 45.501140437992703 ], [ 9.159988404973909, 45.501133335546861 ], [ 9.15998797304028, 45.501133232475134 ], [ 9.160072812298768, 45.500960204749092 ], [ 9.160026489354667, 45.500949048606309 ], [ 9.160271379532505, 45.499820672250316 ], [ 9.159629934464579, 45.499764275612556 ], [ 9.159640125876637, 45.499744198193774 ], [ 9.158196895912013, 45.499631061461059 ], [ 9.157368281957094, 45.499340332221713 ], [ 9.157263061329338, 45.499556145067729 ], [ 9.157177737531425, 45.499548641190735 ], [ 9.157177003089656, 45.499551099421815 ], [ 9.156786522350906, 45.499520482325622 ], [ 9.15655848949074, 45.499469181982676 ], [ 9.156328661191997, 45.499967195536584 ], [ 9.155767199632409, 45.499937020847327 ], [ 9.155479299945084, 45.499871025397127 ], [ 9.155455071444575, 45.499920244900686 ], [ 9.155201223493208, 45.499906600704264 ], [ 9.15444748118882, 45.500013379381933 ], [ 9.153316110101446, 45.499940283077173 ], [ 9.153302820380661, 45.500041738767678 ], [ 9.15300089655325, 45.50002214526431 ], [ 9.152989714040981, 45.500107586950982 ], [ 9.152725862891291, 45.500090376379809 ], [ 9.15269194841793, 45.500346537441196 ], [ 9.152286488882837, 45.500330109180162 ], [ 9.15221500959588, 45.500900228957569 ], [ 9.15141468671828, 45.501268049679894 ], [ 9.152079744132761, 45.50197907671275 ], [ 9.152056757703386, 45.502162407357197 ], [ 9.152266941219322, 45.502179209152125 ], [ 9.152683959156695, 45.502625036868196 ], [ 9.152683641222849, 45.502627450421528 ], [ 9.152686382239947, 45.502627627325573 ], [ 9.153058256537443, 45.503025185337066 ], [ 9.153255758522009, 45.502934374007012 ], [ 9.153221868071071, 45.503256026473032 ], [ 9.153571621212597, 45.503279228999311 ], [ 9.153499193404702, 45.503672968611312 ], [ 9.153638064149687, 45.503685520017122 ], [ 9.153622475253183, 45.503849838710231 ], [ 9.155180330501606, 45.504444972594897 ], [ 9.155162055873621, 45.50454317254718 ], [ 9.155210258819276, 45.504547606861436 ], [ 9.155184327009684, 45.504690022071813 ], [ 9.15584241266088, 45.504749535903841 ], [ 9.156946085778563, 45.505113194149153 ], [ 9.157512683677858, 45.505326789239199 ], [ 9.157517320515252, 45.50530140889483 ], [ 9.157873610660781, 45.505418799982905 ], [ 9.157965887112692, 45.504916886685351 ], [ 9.159001821999047, 45.505010979651388 ], [ 9.159339136523265, 45.503182118032434 ], [ 9.160236697516311, 45.503191234448735 ], [ 9.160314770528869, 45.502835486173581 ], [ 9.160481197093352, 45.502809655396824 ], [ 9.16042478411098, 45.502334189491947 ], [ 9.160521766921583, 45.501892262408745 ], [ 9.160368529216253, 45.501860047866884 ], [ 9.160324476293136, 45.501488744292907 ], [ 9.159951889298652, 45.501475059449461 ], [ 9.16009601454439, 45.50117391851925 ], [ 9.159983437947377, 45.50114741114588 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.163163390119294, 45.500553838031095 ], [ 9.163655076689617, 45.502387157258049 ], [ 9.163722092452119, 45.502378358029951 ], [ 9.163741607561882, 45.502450920189155 ], [ 9.163773047312709, 45.502446744979189 ], [ 9.163853979434363, 45.502748651061694 ], [ 9.165141301932341, 45.502558720952081 ], [ 9.165375649474303, 45.502525971161226 ], [ 9.165266481800229, 45.502768707360318 ], [ 9.16498967252876, 45.503374966233842 ], [ 9.163372024014469, 45.503021925626499 ], [ 9.163002107621017, 45.503980129274041 ], [ 9.162942176671297, 45.503966360902098 ], [ 9.1614229485305, 45.503599655194144 ], [ 9.160511630792289, 45.505513336110653 ], [ 9.160751567666534, 45.505568398308661 ], [ 9.160608087704334, 45.505875029153231 ], [ 9.162208444135723, 45.506242575574532 ], [ 9.161799035612869, 45.507238785623741 ], [ 9.162125263897623, 45.507305423188186 ], [ 9.161973907032412, 45.507723232944308 ], [ 9.163734157168708, 45.508036107511884 ], [ 9.165269164795776, 45.508309677054996 ], [ 9.165401455090572, 45.507943122202533 ], [ 9.165402624615028, 45.507943351836914 ], [ 9.165477585053113, 45.507734786271499 ], [ 9.165477823391125, 45.507734830995894 ], [ 9.165706049985992, 45.507099410480862 ], [ 9.167574035716342, 45.507603360900092 ], [ 9.167702161799982, 45.507370415757151 ], [ 9.167822349243158, 45.507402595224512 ], [ 9.168233752808455, 45.506648202171547 ], [ 9.168262995515938, 45.506655638086833 ], [ 9.168735581868903, 45.505727966030392 ], [ 9.169055076489125, 45.505142071446777 ], [ 9.169036569337422, 45.505137120221427 ], [ 9.169191060531077, 45.504833845088314 ], [ 9.168859605402266, 45.504744826527265 ], [ 9.169577466567866, 45.503433350793046 ], [ 9.169321719495047, 45.503368528539724 ], [ 9.169360059829136, 45.503300050655135 ], [ 9.169335219163788, 45.503293009201975 ], [ 9.169548717325155, 45.502826444183228 ], [ 9.169440787923163, 45.502791758767358 ], [ 9.169514565741508, 45.502670220668691 ], [ 9.169616180334941, 45.502690985189375 ], [ 9.169611644092171, 45.502701502097729 ], [ 9.170141846408672, 45.502814253365408 ], [ 9.169628624711388, 45.503583462591919 ], [ 9.172017392886673, 45.504358862578563 ], [ 9.172603189147734, 45.503498843784428 ], [ 9.173266583004748, 45.503709562310249 ], [ 9.173974465871165, 45.502617838734331 ], [ 9.176230611554773, 45.503103525754369 ], [ 9.1764913006139, 45.502461058663819 ], [ 9.176662927294602, 45.50247429250846 ], [ 9.17669016051045, 45.502224148858119 ], [ 9.177818665843398, 45.50227522994399 ], [ 9.177857555108963, 45.503739683526746 ], [ 9.180509955664613, 45.504030607106934 ], [ 9.180926586575112, 45.502162693266463 ], [ 9.179279341480552, 45.50199845782403 ], [ 9.179367626081355, 45.50086949493538 ], [ 9.179526128525591, 45.499571103799788 ], [ 9.179288411439611, 45.499556667705583 ], [ 9.179304151230292, 45.499427955901169 ], [ 9.176616288396701, 45.499265403340907 ], [ 9.176608082954852, 45.499332606615027 ], [ 9.17560188517437, 45.499272563248226 ], [ 9.175555524711521, 45.499651324075145 ], [ 9.174619812092812, 45.499607576064655 ], [ 9.17458483685483, 45.499976387731635 ], [ 9.174574456996051, 45.499980471311012 ], [ 9.17442754895049, 45.499976631259685 ], [ 9.174422617884638, 45.500040206732983 ], [ 9.173782008983061, 45.500292226740157 ], [ 9.173746493415329, 45.500375824314062 ], [ 9.171835164590851, 45.499983342568576 ], [ 9.172234382150938, 45.499434529788616 ], [ 9.172210711782871, 45.499425779128281 ], [ 9.172310666141973, 45.499292918948164 ], [ 9.170790070341074, 45.49873162817007 ], [ 9.171379939566398, 45.49792552084584 ], [ 9.1713022467729, 45.497901981156588 ], [ 9.171412258396082, 45.497753411074825 ], [ 9.170272178293015, 45.497448307002529 ], [ 9.170142646248962, 45.497398470226742 ], [ 9.169193748393662, 45.496353840492255 ], [ 9.166805924933458, 45.49729628587702 ], [ 9.16681856755477, 45.497314556250508 ], [ 9.166074020604942, 45.497616797875551 ], [ 9.166492893505406, 45.498112430494281 ], [ 9.166490257230336, 45.49811408323486 ], [ 9.166724894394445, 45.498386941813393 ], [ 9.166838539560983, 45.498521409475714 ], [ 9.1668503088887, 45.498532784518773 ], [ 9.167007109931284, 45.498715124927635 ], [ 9.16685455254464, 45.498924360395073 ], [ 9.167449941577736, 45.499112321183432 ], [ 9.167562146190397, 45.499220763703363 ], [ 9.16766407986208, 45.499179922303469 ], [ 9.16812185858141, 45.49932443615748 ], [ 9.168742870053824, 45.499523788969327 ], [ 9.168812827464436, 45.499547528621555 ], [ 9.168326976275253, 45.500198240713623 ], [ 9.16856198854275, 45.500285212431741 ], [ 9.168521570496051, 45.500339071641761 ], [ 9.170071979751269, 45.500911417163749 ], [ 9.169372343126179, 45.502591006352503 ], [ 9.166344489203045, 45.501687243509458 ], [ 9.165933140179584, 45.500213266094015 ], [ 9.163163390119294, 45.500553838031095 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.120935822595762, 45.493745240771993 ], [ 9.12062649453309, 45.49338541973065 ], [ 9.120240701790507, 45.49354901622528 ], [ 9.120218503007676, 45.493523201477629 ], [ 9.119458902563647, 45.493845383416833 ], [ 9.119245613740796, 45.493933659160916 ], [ 9.119189151331469, 45.493939952933374 ], [ 9.119192703208059, 45.493955557609695 ], [ 9.118972409668114, 45.494046731576873 ], [ 9.118646041813644, 45.494080854224883 ], [ 9.118660127118359, 45.494144911919754 ], [ 9.11851162767308, 45.494153858926268 ], [ 9.118522410776121, 45.494224268503103 ], [ 9.118234363379148, 45.494251120352487 ], [ 9.118252499637897, 45.494344679248265 ], [ 9.117210663584386, 45.494775848158781 ], [ 9.117217793202961, 45.494784266686032 ], [ 9.116985292909693, 45.494880543671485 ], [ 9.118364992372687, 45.496518686254653 ], [ 9.118597021890253, 45.496422603183262 ], [ 9.118603934232898, 45.496430864178414 ], [ 9.11867214251933, 45.496402615191521 ], [ 9.118912653694418, 45.496688095805233 ], [ 9.117831846724451, 45.497115302270458 ], [ 9.11783476407599, 45.497119743126873 ], [ 9.117101575880753, 45.497400717053175 ], [ 9.117317730838971, 45.497682011600588 ], [ 9.117291871537201, 45.49769214301832 ], [ 9.117835478688482, 45.498355772731266 ], [ 9.118412676341267, 45.499106875874503 ], [ 9.118443860182223, 45.499098456580846 ], [ 9.11875040018888, 45.49947265769805 ], [ 9.118866970354299, 45.499427074947398 ], [ 9.119356534876637, 45.500103682235256 ], [ 9.121776833943619, 45.499244330186826 ], [ 9.121720878028592, 45.499167022165004 ], [ 9.121961593211855, 45.499081499125381 ], [ 9.121423953013553, 45.498338822975064 ], [ 9.121882486955428, 45.498150625228931 ], [ 9.122365790235879, 45.498752130167013 ], [ 9.124753853894077, 45.497807650680038 ], [ 9.124721246557655, 45.497767111367132 ], [ 9.124898346078037, 45.497697050573073 ], [ 9.123497430402471, 45.495954247949797 ], [ 9.123461932215822, 45.495968276752343 ], [ 9.123350148298702, 45.495829096998975 ], [ 9.121105815764798, 45.496716757013225 ], [ 9.12056078601219, 45.496066403868667 ], [ 9.120710418277147, 45.496004458620291 ], [ 9.121383137232927, 45.495935713960492 ], [ 9.121373396943619, 45.495881635648828 ], [ 9.122429540788289, 45.495763312006439 ], [ 9.122404897988234, 45.495654711833545 ], [ 9.122504481434826, 45.495643495917385 ], [ 9.122044330949034, 45.493621653995355 ], [ 9.120935822595762, 45.493745240771993 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.24305407786766, 45.49701979084174 ], [ 9.2435178924782, 45.49556427258392 ], [ 9.24258514676414, 45.495446978755908 ], [ 9.242657612433952, 45.495142032634277 ], [ 9.239786642291918, 45.494805861612349 ], [ 9.239767559558931, 45.494885718416484 ], [ 9.23917730729563, 45.494816704680026 ], [ 9.23906872128924, 45.495273152910613 ], [ 9.239029638133564, 45.495416231229036 ], [ 9.238974717091267, 45.495407679614196 ], [ 9.238555927811651, 45.496906096215639 ], [ 9.237934359876242, 45.497301601200746 ], [ 9.238135215073161, 45.497440374824947 ], [ 9.238023785123731, 45.497523719380915 ], [ 9.239611640428084, 45.498733473011214 ], [ 9.239549782157022, 45.49877176349915 ], [ 9.241519286519361, 45.500252531141754 ], [ 9.241646948967453, 45.500177117884739 ], [ 9.242009561740502, 45.500453029761459 ], [ 9.242037648389923, 45.500434841630621 ], [ 9.242246987056015, 45.500594038312705 ], [ 9.242306316029209, 45.500557064257137 ], [ 9.242336348753193, 45.500580752611086 ], [ 9.24429547284733, 45.499363583157994 ], [ 9.244262339601061, 45.499337519567426 ], [ 9.244539112501041, 45.499164869816212 ], [ 9.24446958951814, 45.499109727872387 ], [ 9.244502843115479, 45.49908907309478 ], [ 9.244319916526814, 45.498943466268152 ], [ 9.244941485966208, 45.498580272498288 ], [ 9.244806793456558, 45.498478751836792 ], [ 9.244978939346611, 45.498366477849821 ], [ 9.24312691336306, 45.496972273345733 ], [ 9.24305407786766, 45.49701979084174 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.102813412145711, 45.495934541111026 ], [ 9.102903904357218, 45.496078593319453 ], [ 9.102844770768506, 45.496096844012847 ], [ 9.103442517649835, 45.497040450710855 ], [ 9.104046426483949, 45.497995427245982 ], [ 9.10405251402457, 45.497993508397343 ], [ 9.104119511077574, 45.498098976553194 ], [ 9.10466491683102, 45.498958064054712 ], [ 9.105585314991774, 45.498670472383573 ], [ 9.103945028801892, 45.500010152072583 ], [ 9.103366409558346, 45.499662673499124 ], [ 9.103189827197696, 45.499807077573884 ], [ 9.103189465833983, 45.499806858228389 ], [ 9.102828567813908, 45.500102226293507 ], [ 9.102742873938352, 45.500050527046334 ], [ 9.10093327121818, 45.501536431388772 ], [ 9.100997022363005, 45.501574664839204 ], [ 9.100793178990136, 45.5017399357587 ], [ 9.101985017953218, 45.50245581500706 ], [ 9.103027052761977, 45.503082454609469 ], [ 9.103232126473372, 45.502915129833546 ], [ 9.103509977052971, 45.503081786078546 ], [ 9.105326086978749, 45.501609272977298 ], [ 9.105127273903264, 45.501489289652824 ], [ 9.105471208695073, 45.501208026766044 ], [ 9.106160994709581, 45.501622871669106 ], [ 9.107944027646324, 45.500167016744001 ], [ 9.107873998685163, 45.500124864030006 ], [ 9.1080292282077, 45.499998279463554 ], [ 9.105858414224544, 45.498692075187947 ], [ 9.105843806039955, 45.498704017305286 ], [ 9.105718858863673, 45.498628743815907 ], [ 9.107201423147705, 45.498165471046143 ], [ 9.107050088206803, 45.497927288130484 ], [ 9.107322164865609, 45.497841737059957 ], [ 9.107285342476663, 45.497782609465517 ], [ 9.10729683113996, 45.497779004499677 ], [ 9.106772902243659, 45.496959743793127 ], [ 9.10625842834439, 45.496133585914471 ], [ 9.106246894019545, 45.49613720518915 ], [ 9.106130815001739, 45.495955684542416 ], [ 9.106027305997911, 45.495988232019883 ], [ 9.105592375495728, 45.495250187703704 ], [ 9.105517970967078, 45.49527307815999 ], [ 9.105429011285413, 45.495130999991595 ], [ 9.102813412145711, 45.495934541111026 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.188894317662834, 45.495079445600481 ], [ 9.188998323950248, 45.495272588871458 ], [ 9.188122447432971, 45.495515420304578 ], [ 9.188152894682466, 45.495570331147441 ], [ 9.187763022975508, 45.495678329933831 ], [ 9.188746982036774, 45.497501755248493 ], [ 9.188354226456921, 45.497605448308875 ], [ 9.188285779712441, 45.497570108484865 ], [ 9.18818324951466, 45.497600138029412 ], [ 9.188117661346418, 45.497565098584531 ], [ 9.187158694326879, 45.49785678645928 ], [ 9.186930984415216, 45.497661071459063 ], [ 9.186460348927548, 45.497464173644566 ], [ 9.184682385768681, 45.497356996439798 ], [ 9.184053353106449, 45.497432375514876 ], [ 9.183622405540875, 45.497777619832959 ], [ 9.182750251196552, 45.499061677686406 ], [ 9.183884988484118, 45.499372353228559 ], [ 9.18386827631381, 45.499506304258787 ], [ 9.184428347078875, 45.499540536199945 ], [ 9.185133510455634, 45.499714164455177 ], [ 9.185333353893952, 45.499768874478008 ], [ 9.185336682873826, 45.499764189404232 ], [ 9.18691174784748, 45.500151985341603 ], [ 9.186925827902568, 45.500102747266943 ], [ 9.187988346946018, 45.500322092747403 ], [ 9.189607940178457, 45.500640362187681 ], [ 9.190009588593014, 45.499649294527984 ], [ 9.190439004420121, 45.498591482730518 ], [ 9.189923577729127, 45.498488781184953 ], [ 9.189953126129319, 45.498339645667635 ], [ 9.189879891936275, 45.498293830391816 ], [ 9.189894422635351, 45.498194006114524 ], [ 9.189067018180252, 45.497690375268455 ], [ 9.189344354532794, 45.49761526771929 ], [ 9.189396124121156, 45.497707899800169 ], [ 9.190621006167968, 45.49737605602779 ], [ 9.191019268954898, 45.497267747971897 ], [ 9.191905926533728, 45.497029102828478 ], [ 9.193134651933287, 45.496699091842785 ], [ 9.193088473325666, 45.496611753351836 ], [ 9.19352737120593, 45.496494613208782 ], [ 9.192432726509969, 45.494414916127297 ], [ 9.192024717184365, 45.494524351524717 ], [ 9.191921928925504, 45.494331954592347 ], [ 9.191621736131101, 45.494412415050235 ], [ 9.191588632096991, 45.494351313510002 ], [ 9.188894317662834, 45.495079445600481 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.224400471083088, 45.496519426667518 ], [ 9.225480148894684, 45.497623879208398 ], [ 9.225469306266035, 45.497657137648979 ], [ 9.222888179366162, 45.497374352568606 ], [ 9.222882862258993, 45.497398151135798 ], [ 9.22271139477315, 45.49737938571382 ], [ 9.222704821868334, 45.49740878843803 ], [ 9.222642612847888, 45.497402025866755 ], [ 9.222220696689433, 45.499294392663451 ], [ 9.222278659508007, 45.499300871045826 ], [ 9.222268970411308, 45.499344374466169 ], [ 9.222428473624873, 45.499361735532567 ], [ 9.222406742353671, 45.499459347671831 ], [ 9.223365555543424, 45.499564513264453 ], [ 9.225750528652615, 45.49987066797987 ], [ 9.225781579055338, 45.499752263645163 ], [ 9.225920891777568, 45.499769282153977 ], [ 9.22615281536434, 45.49892145476894 ], [ 9.227011880187856, 45.499030800546578 ], [ 9.226537615055872, 45.500783771851374 ], [ 9.2296103946438, 45.501191843012855 ], [ 9.230388730540888, 45.498314438194306 ], [ 9.230128910065797, 45.498279936974889 ], [ 9.23042913683952, 45.497259871433407 ], [ 9.230250767421072, 45.497234987280351 ], [ 9.230257702503298, 45.497206636763153 ], [ 9.229004773779097, 45.497032829538874 ], [ 9.228776206573542, 45.496800930752684 ], [ 9.228831670066942, 45.496774292773473 ], [ 9.227247940643721, 45.495152206807887 ], [ 9.224400471083088, 45.496519426667518 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.150026789380226, 45.498193944061192 ], [ 9.150444975310421, 45.497725047645162 ], [ 9.149883785521938, 45.497487010566012 ], [ 9.149806102782026, 45.497102981667361 ], [ 9.149135451152159, 45.497169585869202 ], [ 9.148177674044456, 45.496763308415488 ], [ 9.148169923859831, 45.496771877751776 ], [ 9.148035908606923, 45.496714538385781 ], [ 9.147498819892299, 45.497332106897154 ], [ 9.147031108894216, 45.497378547132399 ], [ 9.147041987412937, 45.497432395167074 ], [ 9.146497531835703, 45.497486614728537 ], [ 9.146557809373379, 45.497785031046647 ], [ 9.146025835867382, 45.497837869970709 ], [ 9.146407223447422, 45.499721761208697 ], [ 9.146816887230289, 45.499681126951842 ], [ 9.146859242714344, 45.499900076541422 ], [ 9.14745847436237, 45.499841481464358 ], [ 9.148060390993885, 45.500617178492284 ], [ 9.148839664444596, 45.500227056033708 ], [ 9.149523245529361, 45.500454627757897 ], [ 9.150128196535011, 45.499580363216481 ], [ 9.150192296101659, 45.499574092638632 ], [ 9.150176572916303, 45.499486900140589 ], [ 9.150245352770474, 45.499223759910663 ], [ 9.150190059480575, 45.498888096434264 ], [ 9.150157188962137, 45.498838553097642 ], [ 9.150026789380226, 45.498193944061192 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.202591079486888, 45.501241529078179 ], [ 9.203196764384913, 45.503258423478051 ], [ 9.203396261170969, 45.503228999995613 ], [ 9.203396374649207, 45.503229378122363 ], [ 9.204493579805536, 45.50306715133609 ], [ 9.205835897841615, 45.502869150974554 ], [ 9.205835759163609, 45.502868688399936 ], [ 9.206064566048131, 45.502834853887336 ], [ 9.20545870084684, 45.500818318133391 ], [ 9.202591079486888, 45.501241529078179 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.093583852949426, 45.502654447812752 ], [ 9.093738590149469, 45.50276455416823 ], [ 9.093692791977055, 45.502796158356311 ], [ 9.095776966767176, 45.504278090774193 ], [ 9.097297998438107, 45.503226951563882 ], [ 9.097446547620471, 45.503515284238745 ], [ 9.097343855585537, 45.503541177210671 ], [ 9.097348089391753, 45.503549068062192 ], [ 9.097118301497488, 45.503606492927723 ], [ 9.097457064575048, 45.504278394618694 ], [ 9.096864148630305, 45.504453868958137 ], [ 9.096960010693961, 45.504613999511712 ], [ 9.096863259639944, 45.504642147717625 ], [ 9.097448429069043, 45.505615307698207 ], [ 9.098022701664403, 45.506570406689477 ], [ 9.100546628345539, 45.505831884084252 ], [ 9.100485737376296, 45.505729887790828 ], [ 9.10075378218464, 45.505650206042837 ], [ 9.100267379063318, 45.504840244929568 ], [ 9.101088463775614, 45.504633207788274 ], [ 9.101041439817243, 45.504539166860489 ], [ 9.101695269632582, 45.504376433293771 ], [ 9.101575574061195, 45.504137473327297 ], [ 9.101870559110774, 45.504064992355538 ], [ 9.101837051938892, 45.503998067847348 ], [ 9.10184661624135, 45.503995710753628 ], [ 9.101409722194784, 45.50314453919912 ], [ 9.100986922781637, 45.502300032088193 ], [ 9.100977459838539, 45.502302364192879 ], [ 9.100877903169698, 45.502108394522033 ], [ 9.10059533990397, 45.502180838043458 ], [ 9.10056436257298, 45.502119009637632 ], [ 9.09794721171707, 45.502780194741561 ], [ 9.09803167574931, 45.50294826836484 ], [ 9.09751521140365, 45.503076837363437 ], [ 9.097728167980829, 45.502929663541579 ], [ 9.097656603869925, 45.502878837360903 ], [ 9.097823794966576, 45.50276324525359 ], [ 9.095810811443959, 45.501331982764178 ], [ 9.095787763385861, 45.501347914442526 ], [ 9.095634597906555, 45.501238857256141 ], [ 9.093583852949426, 45.502654447812752 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.236186111360432, 45.501497101473433 ], [ 9.237903054457471, 45.502912823274357 ], [ 9.238206849960175, 45.502739582230404 ], [ 9.238571155949522, 45.503065845666882 ], [ 9.238695680696654, 45.502990431294108 ], [ 9.239162503687096, 45.503387882115739 ], [ 9.239403882640962, 45.503225284494768 ], [ 9.2394415839345, 45.503256287444842 ], [ 9.239734170248539, 45.503055397349712 ], [ 9.241117703978995, 45.504107797141089 ], [ 9.241967230148498, 45.503558947823755 ], [ 9.241287483695702, 45.504403987811443 ], [ 9.245703611117413, 45.504663792902754 ], [ 9.245727100896072, 45.504500314455136 ], [ 9.245727109190799, 45.504500315030008 ], [ 9.245741553117705, 45.504399732930516 ], [ 9.245979196612232, 45.502745780716438 ], [ 9.245979060235497, 45.50274577114773 ], [ 9.246014943845703, 45.502495875012343 ], [ 9.243825993341542, 45.502333581014973 ], [ 9.243977662700253, 45.502235563781774 ], [ 9.242084636071874, 45.500795169084064 ], [ 9.240909085751676, 45.501554626343626 ], [ 9.238697117572746, 45.499876444838925 ], [ 9.23838923493245, 45.50006915246297 ], [ 9.238379420998706, 45.50006185016845 ], [ 9.237907570448924, 45.500370628024989 ], [ 9.236663270001786, 45.501149415901466 ], [ 9.236688167353698, 45.501168577762812 ], [ 9.236186111360432, 45.501497101473433 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.19465462274375, 45.5011577231936 ], [ 9.194975176149807, 45.502463314370431 ], [ 9.194980622148101, 45.502488695741064 ], [ 9.195381783004288, 45.504378044710222 ], [ 9.196892571322781, 45.504157123075373 ], [ 9.196925907130236, 45.504280001645135 ], [ 9.199610112334803, 45.503921666627349 ], [ 9.199341416698845, 45.502926679934767 ], [ 9.199082993978292, 45.501974905045913 ], [ 9.19873285667377, 45.502021718511685 ], [ 9.197935322269998, 45.501761358444867 ], [ 9.197507937002984, 45.500982987741303 ], [ 9.197502841383207, 45.500984321146113 ], [ 9.197462383418346, 45.500738886397535 ], [ 9.195770463867147, 45.500407707274341 ], [ 9.19465462274375, 45.5011577231936 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.210805008904073, 45.501303306378148 ], [ 9.210895809754044, 45.501659286780203 ], [ 9.209930451244579, 45.502035820309551 ], [ 9.20876736629001, 45.502489339283919 ], [ 9.210183261080761, 45.504270808228426 ], [ 9.212684200485546, 45.503295373640157 ], [ 9.212527948323498, 45.503098794459795 ], [ 9.212771642594538, 45.503068401139942 ], [ 9.213972176447768, 45.502935000727774 ], [ 9.213917482208402, 45.502418171409033 ], [ 9.214000941308102, 45.502330198280042 ], [ 9.213857541175786, 45.501682017521368 ], [ 9.213795041883333, 45.501635070718216 ], [ 9.213630156617151, 45.500983267181788 ], [ 9.21355808595586, 45.500992135337754 ], [ 9.213550060240575, 45.50096030471024 ], [ 9.210805008904073, 45.501303306378148 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.124394960195596, 45.501943909264149 ], [ 9.124569726387818, 45.504033317442484 ], [ 9.124798278121689, 45.504023032329556 ], [ 9.124796093321516, 45.504047204043111 ], [ 9.124755977094312, 45.504045392222274 ], [ 9.12457292251754, 45.506057706422027 ], [ 9.12480311399016, 45.506067912447691 ], [ 9.12479717803849, 45.50613310914995 ], [ 9.127533222582112, 45.506254993226001 ], [ 9.127630825138352, 45.505177589573151 ], [ 9.127721624390141, 45.504175322767004 ], [ 9.127658511704675, 45.504172469504191 ], [ 9.127672572760137, 45.504016965770163 ], [ 9.126305408337364, 45.503955797416509 ], [ 9.126414228809292, 45.503950299381422 ], [ 9.127269718245371, 45.503911784997406 ], [ 9.127269287268382, 45.503907094845268 ], [ 9.127680028076782, 45.503886338566218 ], [ 9.127479693745192, 45.501802043965384 ], [ 9.124394960195596, 45.501943909264149 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.146223405132883, 45.50418920622203 ], [ 9.147390903455603, 45.50432077356627 ], [ 9.147886742083269, 45.502152958340432 ], [ 9.147797025230879, 45.502142918291916 ], [ 9.147802781989446, 45.502118049205976 ], [ 9.145170472157693, 45.501820887015668 ], [ 9.145164322232448, 45.501847449391732 ], [ 9.145074192643049, 45.501837309859511 ], [ 9.144890029780717, 45.502641578724806 ], [ 9.143664060993199, 45.502394260126295 ], [ 9.143013400437635, 45.503979414747008 ], [ 9.142843984103063, 45.50439082219004 ], [ 9.145887911394283, 45.505004698371458 ], [ 9.145933626779462, 45.504893136700908 ], [ 9.145934122962041, 45.504893236846556 ], [ 9.146223405132883, 45.50418920622203 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.220249098110509, 45.504916382850276 ], [ 9.220410597606509, 45.504916380977605 ], [ 9.220410592001365, 45.504669682292125 ], [ 9.220464405341783, 45.504672787119453 ], [ 9.220410558009995, 45.503169719966429 ], [ 9.220410553902273, 45.502987998987457 ], [ 9.220404042118487, 45.502987832929435 ], [ 9.220389817670675, 45.502590762057423 ], [ 9.218364884972504, 45.502641778477262 ], [ 9.217272824683354, 45.50265165302411 ], [ 9.217278555944889, 45.502811764032039 ], [ 9.216909418527479, 45.502811486858867 ], [ 9.21690941824744, 45.502823942743966 ], [ 9.216849300723098, 45.502823860524629 ], [ 9.216848705562196, 45.503143655645445 ], [ 9.216753240076912, 45.503143570665856 ], [ 9.216749793483796, 45.505087553735173 ], [ 9.217803201187577, 45.505088377399247 ], [ 9.217287489121865, 45.505237585099863 ], [ 9.217897903491375, 45.506266380797811 ], [ 9.218710714620311, 45.507707277459573 ], [ 9.221361053919967, 45.506972864287974 ], [ 9.221190040670773, 45.506669811982697 ], [ 9.221250728183174, 45.506654328302545 ], [ 9.220249098110509, 45.504916382850276 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.248161247585776, 45.516410119926853 ], [ 9.250901370410919, 45.515492403768349 ], [ 9.250864949199929, 45.515038159657074 ], [ 9.24863636562991, 45.514489996881437 ], [ 9.24847625224672, 45.514452224186996 ], [ 9.246734839897471, 45.514039739231492 ], [ 9.246506706621876, 45.514485441036058 ], [ 9.246247119462708, 45.514422411900618 ], [ 9.246246562841273, 45.514423469819199 ], [ 9.246049140846845, 45.514375734444158 ], [ 9.24603850099852, 45.514397084534018 ], [ 9.245972302669282, 45.514380828866145 ], [ 9.244964536109853, 45.516404655514656 ], [ 9.247816479626874, 45.51710261924071 ], [ 9.248161247585776, 45.516410119926853 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.239472049422954, 45.516917169575727 ], [ 9.239556127137169, 45.516934036538601 ], [ 9.239522624285707, 45.517016458442974 ], [ 9.240126215706185, 45.517136597455433 ], [ 9.240124780898393, 45.517140139123846 ], [ 9.242838951224353, 45.517681339221348 ], [ 9.242876316181933, 45.517589058323445 ], [ 9.242942613153167, 45.517602267360097 ], [ 9.243688659384439, 45.515765411526054 ], [ 9.243619876240592, 45.515751706587977 ], [ 9.243655321452044, 45.515664262037916 ], [ 9.243103647952841, 45.515554431188221 ], [ 9.243106129608217, 45.515548306156582 ], [ 9.240340833217068, 45.514997551843912 ], [ 9.240298607186881, 45.515101734859037 ], [ 9.240216799859056, 45.515085422062455 ], [ 9.239472049422954, 45.516917169575727 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.179396970551338, 45.517927135797741 ], [ 9.179772374996988, 45.518001030163646 ], [ 9.179741834561192, 45.518084314614939 ], [ 9.18029143040906, 45.518205261834524 ], [ 9.18028328331429, 45.518225579452206 ], [ 9.181008588996276, 45.518363079110578 ], [ 9.182269486442832, 45.518640537997655 ], [ 9.182283045493064, 45.518604671115845 ], [ 9.182850564279724, 45.518712247415813 ], [ 9.183619799031254, 45.516803691969301 ], [ 9.183582624810279, 45.516795431405441 ], [ 9.183630980241178, 45.516667249346057 ], [ 9.183181833622516, 45.516581986368578 ], [ 9.183181954445356, 45.516581681497485 ], [ 9.182812372409826, 45.516511625953875 ], [ 9.182839308076991, 45.516449232065916 ], [ 9.180232698250975, 45.516001427133418 ], [ 9.179396970551338, 45.517927135797741 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.167871573736939, 45.526591160470225 ], [ 9.16765461310691, 45.526580812574089 ], [ 9.167610912817544, 45.52702500819786 ], [ 9.167599763784777, 45.527024334470354 ], [ 9.16755243971563, 45.527409481614626 ], [ 9.166500350446812, 45.52739165884676 ], [ 9.166493982108364, 45.527576501212216 ], [ 9.166387345957512, 45.527574668413976 ], [ 9.166365344407044, 45.528203520172163 ], [ 9.166265296978494, 45.528201097414268 ], [ 9.166264201583573, 45.528223961758613 ], [ 9.166115534022136, 45.528215040083282 ], [ 9.165868816819804, 45.530070626053245 ], [ 9.166174685015982, 45.530084035275877 ], [ 9.166167917401276, 45.530225332037645 ], [ 9.166462813875691, 45.530232275096481 ], [ 9.166460612685359, 45.530277461721525 ], [ 9.169186270541447, 45.530340689258288 ], [ 9.169190071130718, 45.530263349960542 ], [ 9.169256597997721, 45.53026503768303 ], [ 9.169289087621456, 45.529596672139824 ], [ 9.16932585400783, 45.529597288010955 ], [ 9.169336858612789, 45.529286288070601 ], [ 9.170413899911033, 45.529351166746281 ], [ 9.170705644940453, 45.5269728019206 ], [ 9.170692843605245, 45.526972031179206 ], [ 9.170730385982374, 45.526724898672178 ], [ 9.167883515145093, 45.526512576143851 ], [ 9.167871573736939, 45.526591160470225 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.207111842986608, 45.522764537525937 ], [ 9.207198119792228, 45.522915407111753 ], [ 9.20664803022666, 45.523065217205748 ], [ 9.206653953672554, 45.523075706191591 ], [ 9.206092022833182, 45.523235053059366 ], [ 9.206643672209369, 45.524184126359657 ], [ 9.207188999190494, 45.525141906202457 ], [ 9.207254940464336, 45.525123066731517 ], [ 9.207603033552386, 45.525739809877898 ], [ 9.206539659096851, 45.526035373739369 ], [ 9.20766900994445, 45.528027986595681 ], [ 9.207896077283499, 45.527964268011964 ], [ 9.207917550974951, 45.528005524437106 ], [ 9.209094276224791, 45.527681663736033 ], [ 9.209588882046361, 45.52855376701703 ], [ 9.209818025728763, 45.528489004969188 ], [ 9.20984934752528, 45.528542810496511 ], [ 9.212370646104558, 45.52784260023725 ], [ 9.211344646734561, 45.526014902553278 ], [ 9.211409405314022, 45.52599687975637 ], [ 9.21103825898677, 45.525318260684642 ], [ 9.211364806049257, 45.525227443414835 ], [ 9.210759869399819, 45.524158896027465 ], [ 9.210896725923838, 45.524120443260983 ], [ 9.210842980520136, 45.52402544530721 ], [ 9.210860985247111, 45.52402049074491 ], [ 9.210354511513049, 45.523114985465476 ], [ 9.210495768576285, 45.522038115989616 ], [ 9.209851423453793, 45.522212507393476 ], [ 9.209744648276013, 45.522020938593258 ], [ 9.208480558071042, 45.522377526123101 ], [ 9.208320269267835, 45.522422817538406 ], [ 9.207111842986608, 45.522764537525937 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.16408405212546, 45.52648434601398 ], [ 9.164121970676289, 45.526491808715456 ], [ 9.164880508650368, 45.524602440601463 ], [ 9.164850901518445, 45.524596620760633 ], [ 9.164877234711955, 45.524530989736448 ], [ 9.162088705140333, 45.523981383863379 ], [ 9.162061425663087, 45.524049246370588 ], [ 9.161906476919224, 45.524018688843022 ], [ 9.161731707773988, 45.524452620118488 ], [ 9.161059937122085, 45.524351407698994 ], [ 9.160993812505653, 45.524563685327053 ], [ 9.160604220056877, 45.524504973777404 ], [ 9.16004037912046, 45.52635597210022 ], [ 9.160739287170314, 45.526460549416711 ], [ 9.160671256273847, 45.526681734972328 ], [ 9.163482043689251, 45.527086686003351 ], [ 9.163546105903608, 45.526881839964915 ], [ 9.163945045250651, 45.526942073441838 ], [ 9.16408405212546, 45.52648434601398 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.21357209674051, 45.528133519231169 ], [ 9.213586483538187, 45.528156845699058 ], [ 9.215091367919774, 45.52770233983221 ], [ 9.215627997656124, 45.527550034291089 ], [ 9.215623182642684, 45.52754171441299 ], [ 9.216120892651743, 45.527391386659261 ], [ 9.216086775625334, 45.527335976064144 ], [ 9.21633327656324, 45.527261543213065 ], [ 9.215240865229534, 45.525487351201981 ], [ 9.215174175768517, 45.525507514885483 ], [ 9.215099410591506, 45.525386039578869 ], [ 9.214454037373113, 45.525581120005072 ], [ 9.213523013477033, 45.525862479556011 ], [ 9.211860619887267, 45.526334961597939 ], [ 9.212995801731825, 45.528297068626522 ], [ 9.21357209674051, 45.528133519231169 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.174113422073814, 45.524959927250805 ], [ 9.174225976368408, 45.523857739388518 ], [ 9.172827899557516, 45.523788143294937 ], [ 9.171389108222945, 45.523715555459596 ], [ 9.171350000804258, 45.524098350005211 ], [ 9.170912336651572, 45.524072390389215 ], [ 9.170860732745343, 45.524408319911636 ], [ 9.170350801486697, 45.52436610586048 ], [ 9.170256127059417, 45.526298868686631 ], [ 9.170961662968237, 45.526348601859844 ], [ 9.170881784480553, 45.526892536045438 ], [ 9.171011308791922, 45.526899176229996 ], [ 9.17097524162017, 45.527116106600616 ], [ 9.173819331645124, 45.52735122866887 ], [ 9.173861839790963, 45.527085634211225 ], [ 9.173984265090548, 45.527095261688089 ], [ 9.174296917317529, 45.524973795786046 ], [ 9.174113422073814, 45.524959927250805 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.178284380523332, 45.524973412331839 ], [ 9.17693680427227, 45.524887300880657 ], [ 9.175595735429001, 45.524800693911104 ], [ 9.175490572378994, 45.525601225380214 ], [ 9.175465158023709, 45.525599579713813 ], [ 9.175218251117602, 45.527487167592447 ], [ 9.175373617646791, 45.527497135155564 ], [ 9.175202468232037, 45.52836956107587 ], [ 9.175095355341552, 45.529308857202111 ], [ 9.177808984781052, 45.529559864978715 ], [ 9.177819425128712, 45.529507880003678 ], [ 9.17784056002797, 45.529509958845338 ], [ 9.178175324358332, 45.527676842194971 ], [ 9.178497553075472, 45.527697506104978 ], [ 9.178520610643131, 45.527509194878434 ], [ 9.178534459445729, 45.527510085119737 ], [ 9.17886388789386, 45.525010329390625 ], [ 9.178284380523332, 45.524973412331839 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.130681528478387, 45.518576826360928 ], [ 9.130955805832341, 45.518605577082802 ], [ 9.130103539704946, 45.520136263304444 ], [ 9.130262523150106, 45.520178002156484 ], [ 9.130182798258661, 45.520325982485616 ], [ 9.130725210607963, 45.520470785251653 ], [ 9.130936760153388, 45.520756899656 ], [ 9.131995005472971, 45.521365125436503 ], [ 9.132291513990678, 45.521197536905113 ], [ 9.132631075942623, 45.521291735036925 ], [ 9.133472555714141, 45.520444330809774 ], [ 9.133499198020031, 45.519967332695806 ], [ 9.133708520334205, 45.519588859215425 ], [ 9.13340718853353, 45.521251845318965 ], [ 9.133565555969072, 45.52126586194008 ], [ 9.133536342146577, 45.52142445020705 ], [ 9.133777451236526, 45.52144627318313 ], [ 9.133745910054136, 45.521616837081297 ], [ 9.136561870151947, 45.521872444875484 ], [ 9.136594476678109, 45.521695999940249 ], [ 9.136827425855886, 45.521716968573202 ], [ 9.137179415190772, 45.519810019008538 ], [ 9.137088233324642, 45.519801715335646 ], [ 9.137100994873739, 45.519732149700268 ], [ 9.136732025418011, 45.519698720051473 ], [ 9.136782593002955, 45.51941928697709 ], [ 9.136687159037276, 45.519410795709064 ], [ 9.136700232582667, 45.519338415718082 ], [ 9.133953818985477, 45.519095034357846 ], [ 9.13392496110321, 45.519254324763409 ], [ 9.133895005556322, 45.51925167263289 ], [ 9.133930693241339, 45.519187144726949 ], [ 9.133895881629932, 45.519176677450936 ], [ 9.133947243985732, 45.519081112794005 ], [ 9.132979617872298, 45.51881769894365 ], [ 9.133918246538546, 45.518916066735287 ], [ 9.133954782378094, 45.518702260925338 ], [ 9.134017264967969, 45.518705359496145 ], [ 9.134433603530827, 45.51671900478884 ], [ 9.133959624020953, 45.516670752289045 ], [ 9.13396770744828, 45.516636945634161 ], [ 9.132167919548438, 45.516488333014159 ], [ 9.131682406588615, 45.516438896311953 ], [ 9.131679989650131, 45.516448038499625 ], [ 9.131150211902526, 45.516404285655511 ], [ 9.130679104319416, 45.5184067702248 ], [ 9.130717642271666, 45.518411286298488 ], [ 9.130681528478387, 45.518576826360928 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.139948446166843, 45.518466959740877 ], [ 9.140094804773128, 45.518488301916548 ], [ 9.140046972401084, 45.518649281205064 ], [ 9.142031223663349, 45.518940188322631 ], [ 9.14201920254072, 45.518986413044061 ], [ 9.142266872830296, 45.519018122802414 ], [ 9.142245795869272, 45.519099259488151 ], [ 9.144917821857126, 45.519440244204766 ], [ 9.145449666891512, 45.517391938491954 ], [ 9.145386873317436, 45.517383931517458 ], [ 9.14542797736436, 45.517225724759335 ], [ 9.142615732183486, 45.516866749096991 ], [ 9.142615395802967, 45.516868043076727 ], [ 9.140662610492969, 45.516583877503685 ], [ 9.14064205946057, 45.516652657579925 ], [ 9.140494643148575, 45.516631210381568 ], [ 9.139948446166843, 45.518466959740877 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.167538096456525, 45.518542581736902 ], [ 9.168512567403244, 45.518701550370395 ], [ 9.170482447136196, 45.519029470240156 ], [ 9.171142035911007, 45.517203645745496 ], [ 9.171079537450947, 45.517193075233429 ], [ 9.171136063004733, 45.517019992460682 ], [ 9.16849164031203, 45.516590649190533 ], [ 9.168433500278629, 45.516747808541872 ], [ 9.168243668132702, 45.516715958454078 ], [ 9.167538096456525, 45.518542581736902 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.171492488852016, 45.519877999669966 ], [ 9.171713627161706, 45.520010843099676 ], [ 9.171562150272722, 45.520130250930784 ], [ 9.173682018288114, 45.521456999118968 ], [ 9.175941781668557, 45.51981183108888 ], [ 9.173748833298443, 45.518371839803599 ], [ 9.17356228326175, 45.518528425512748 ], [ 9.173420110009811, 45.51844177224222 ], [ 9.171492488852016, 45.519877999669966 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.187801315360353, 45.520915188627143 ], [ 9.187838833652687, 45.520919527276753 ], [ 9.187885954004845, 45.520745905769388 ], [ 9.188463617978355, 45.519590510991634 ], [ 9.18821840274753, 45.519520921158666 ], [ 9.188311775113744, 45.519176859262039 ], [ 9.18712788741518, 45.518942555481374 ], [ 9.187141321748754, 45.518918399917467 ], [ 9.184273308381425, 45.518210098529181 ], [ 9.183404872815105, 45.520126674670763 ], [ 9.183519579278459, 45.520159094531074 ], [ 9.183135242623575, 45.521049380313748 ], [ 9.185788494596116, 45.521730644746761 ], [ 9.185797709237027, 45.52170914338685 ], [ 9.186518715918792, 45.521892546595971 ], [ 9.186625385600909, 45.521697658500742 ], [ 9.187145979892833, 45.521820535963705 ], [ 9.187299304115765, 45.521475299740459 ], [ 9.187502987150737, 45.521511856067612 ], [ 9.187801315360353, 45.520915188627143 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.202868051043014, 45.515531861201694 ], [ 9.203022127136807, 45.515794029855634 ], [ 9.202995882869546, 45.515801646116849 ], [ 9.204012533215849, 45.517532819358259 ], [ 9.204039603588386, 45.517524963285808 ], [ 9.204125029941398, 45.51767025001103 ], [ 9.204026560077121, 45.517700854877972 ], [ 9.204089347033566, 45.517801488709743 ], [ 9.203540364673078, 45.517961279464856 ], [ 9.203547438621008, 45.517974397668816 ], [ 9.203473381119579, 45.517995189063839 ], [ 9.203577325376628, 45.518188384592698 ], [ 9.203222807659095, 45.518290041386017 ], [ 9.204359318781094, 45.520291493299226 ], [ 9.205436655172944, 45.51998932226541 ], [ 9.205694077721747, 45.520450504127787 ], [ 9.205253892191676, 45.520572178609271 ], [ 9.205337277247109, 45.520720443896145 ], [ 9.205283749727615, 45.520735202406819 ], [ 9.206368503871829, 45.522663158239595 ], [ 9.208906830739631, 45.521960424978865 ], [ 9.208872861533369, 45.521900094057052 ], [ 9.209096841824541, 45.52183813239408 ], [ 9.20864278885651, 45.52103275885473 ], [ 9.209648388240526, 45.520751277169012 ], [ 9.208400422679739, 45.518562513931123 ], [ 9.208394201728984, 45.518564276012505 ], [ 9.208385805820209, 45.518548701093984 ], [ 9.208312792561111, 45.518568973408655 ], [ 9.208122173099119, 45.518230402508138 ], [ 9.207479348423648, 45.518408127621257 ], [ 9.206890775302529, 45.517389559266839 ], [ 9.206855199563831, 45.517326395843426 ], [ 9.206854412848781, 45.517326630095454 ], [ 9.206720342643653, 45.517094605736908 ], [ 9.206748024073686, 45.517087001840579 ], [ 9.206730078709434, 45.51705086454799 ], [ 9.2067305991892, 45.517050736897559 ], [ 9.206692847547137, 45.516974815973001 ], [ 9.20737199055063, 45.516780362269721 ], [ 9.206137424105073, 45.51461817876212 ], [ 9.205515396633411, 45.514799610193769 ], [ 9.205478538234063, 45.514733912636061 ], [ 9.202868051043014, 45.515531861201694 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.21065768461599, 45.516728283147962 ], [ 9.211258554079942, 45.517789006380205 ], [ 9.212740436945609, 45.520462835435374 ], [ 9.2159167660449, 45.519566493414899 ], [ 9.215033377628892, 45.517974482840742 ], [ 9.214998858443487, 45.517912270851447 ], [ 9.21587616348034, 45.517668129921567 ], [ 9.214705464730304, 45.515602112489283 ], [ 9.212719450272349, 45.516154513763006 ], [ 9.21065768461599, 45.516728283147962 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.227339353135299, 45.521923386077702 ], [ 9.22767750488887, 45.521857127602942 ], [ 9.227656771336102, 45.521800366862117 ], [ 9.227895920042956, 45.521754602900103 ], [ 9.227159602098734, 45.519811450957491 ], [ 9.227106053545258, 45.519821814698865 ], [ 9.227046885726892, 45.519670034047763 ], [ 9.226517528612503, 45.519772779005336 ], [ 9.226467705532544, 45.519642393021194 ], [ 9.223771630347084, 45.520141820563772 ], [ 9.223861374157195, 45.52037376125525 ], [ 9.223750773471748, 45.52035747065473 ], [ 9.223754063100307, 45.52045653025705 ], [ 9.223580855203901, 45.52049037208829 ], [ 9.223660304125959, 45.520697779088231 ], [ 9.223278113416521, 45.52075730867135 ], [ 9.22355182830804, 45.521672133842983 ], [ 9.223851009245493, 45.522671917662763 ], [ 9.225372358140227, 45.52241185687533 ], [ 9.226385017472714, 45.522450353458375 ], [ 9.226392048082264, 45.5222375374519 ], [ 9.226447038679346, 45.522228136335237 ], [ 9.22643395638913, 45.522182972926643 ], [ 9.227371340562382, 45.522007089515085 ], [ 9.227339353135299, 45.521923386077702 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.193336227893811, 45.521005639118599 ], [ 9.193507574874163, 45.521035205899338 ], [ 9.193507261456624, 45.521036114275624 ], [ 9.194827159406721, 45.521262897168249 ], [ 9.195922079143539, 45.52145181006474 ], [ 9.195922340401911, 45.521451056555421 ], [ 9.196154194468408, 45.521490889118603 ], [ 9.196812927325919, 45.519325458504554 ], [ 9.196754355213647, 45.519314662515661 ], [ 9.196757216654769, 45.51930831024309 ], [ 9.196424190940146, 45.519253806125718 ], [ 9.194249877316395, 45.518853006128033 ], [ 9.194235647589496, 45.518895594901075 ], [ 9.194045065192075, 45.518864399003945 ], [ 9.193336227893811, 45.521005639118599 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.143717443898174, 45.52225476019796 ], [ 9.144030788823727, 45.521899994718368 ], [ 9.14403609144021, 45.521901902046288 ], [ 9.144926826937837, 45.520885481362377 ], [ 9.145058743978806, 45.520736118408486 ], [ 9.145058019446136, 45.520735773547763 ], [ 9.145410980796239, 45.520332993770843 ], [ 9.143131777922719, 45.519394694364678 ], [ 9.143131756427481, 45.519394719409483 ], [ 9.142890743359835, 45.519295455128095 ], [ 9.142421736515027, 45.51984314388411 ], [ 9.142263260473174, 45.520018069931616 ], [ 9.14129349856483, 45.519897324105521 ], [ 9.141282094264081, 45.519942333959655 ], [ 9.141244122818158, 45.519937647655148 ], [ 9.14078172261681, 45.521750680081261 ], [ 9.140886860273206, 45.521763711663716 ], [ 9.140800421461391, 45.522104256142512 ], [ 9.140857322701365, 45.522111379951696 ], [ 9.14078591011134, 45.522392706616287 ], [ 9.143536953246693, 45.522734946572875 ], [ 9.143567528560109, 45.522613971479231 ], [ 9.143616910205951, 45.522620143606886 ], [ 9.143655342756565, 45.522467777076024 ], [ 9.143662950769492, 45.52246872518797 ], [ 9.143717443898174, 45.52225476019796 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.159139206828629, 45.52175666886054 ], [ 9.159164142157863, 45.521761057494956 ], [ 9.159392998267849, 45.521118395869898 ], [ 9.159562303305695, 45.520696485748886 ], [ 9.159544074038596, 45.520694144603262 ], [ 9.159823317513705, 45.519909955217557 ], [ 9.159768123170032, 45.519900210623071 ], [ 9.159778206654401, 45.51987174213113 ], [ 9.156485106731674, 45.519295166382705 ], [ 9.156312197406971, 45.519754496679312 ], [ 9.156210978558883, 45.519735659078655 ], [ 9.15620959201153, 45.519738618919511 ], [ 9.155547765153603, 45.519614084429307 ], [ 9.155373807158147, 45.520074381302692 ], [ 9.154353350104545, 45.519252398842539 ], [ 9.154280170325331, 45.519296988865165 ], [ 9.154113810463141, 45.519163043023774 ], [ 9.151977505351937, 45.52046554818876 ], [ 9.152144003822141, 45.520599703913625 ], [ 9.152066306820984, 45.520647126556952 ], [ 9.15401972054717, 45.522220192169243 ], [ 9.154725384140971, 45.521790055032355 ], [ 9.154719995680562, 45.521804312000519 ], [ 9.155316971767254, 45.521914159797404 ], [ 9.155303694920669, 45.521949308565176 ], [ 9.158796630366176, 45.522604499311953 ], [ 9.158961023598728, 45.522194852015765 ], [ 9.158975259662839, 45.522197202740436 ], [ 9.159139206828629, 45.52175666886054 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.164664905963889, 45.523584704205149 ], [ 9.167277816583619, 45.524171663228728 ], [ 9.167306660961069, 45.524108732988338 ], [ 9.167533031538071, 45.524159507442164 ], [ 9.168414587655546, 45.522237562851878 ], [ 9.168371443616559, 45.522227868843423 ], [ 9.168440582685468, 45.52207693000544 ], [ 9.165704800311644, 45.521461187180627 ], [ 9.165635805629636, 45.521611503509732 ], [ 9.165572229499734, 45.521597174594518 ], [ 9.165567411195005, 45.521607613959617 ], [ 9.165504515383114, 45.521593474486664 ], [ 9.16470032250305, 45.523342511752077 ], [ 9.164768844872789, 45.52335793878752 ], [ 9.164664905963889, 45.523584704205149 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.193415878367288, 45.510009510502584 ], [ 9.19422477120389, 45.511520061160951 ], [ 9.193759575599646, 45.512612189043153 ], [ 9.193825783952686, 45.512626117078931 ], [ 9.193780024372588, 45.512731008950254 ], [ 9.192636921593939, 45.512713631878839 ], [ 9.19263179887456, 45.512868457930807 ], [ 9.192586476626243, 45.512867877155223 ], [ 9.192553439768053, 45.513906255139744 ], [ 9.192540466475251, 45.514445158801905 ], [ 9.191808491003204, 45.514331075632207 ], [ 9.191496151857324, 45.515594891405385 ], [ 9.191127817150917, 45.516696364717937 ], [ 9.194159007361959, 45.517148811068303 ], [ 9.194266223258817, 45.516825291307626 ], [ 9.194384368808377, 45.516576678653237 ], [ 9.194519173871921, 45.516586721257781 ], [ 9.194768006348434, 45.515799893941875 ], [ 9.195863966926867, 45.514636736397826 ], [ 9.195938216981293, 45.513452076919911 ], [ 9.196418014177375, 45.513554860480397 ], [ 9.196547957190184, 45.513256987171296 ], [ 9.196830558337647, 45.513318816652095 ], [ 9.197669084572595, 45.511434618992901 ], [ 9.197733245066082, 45.511416363180338 ], [ 9.19767261745608, 45.511309177810489 ], [ 9.197736174792428, 45.511288770008342 ], [ 9.196831181567008, 45.509548159735019 ], [ 9.196753265018822, 45.509568467349801 ], [ 9.1967069193285, 45.509474960952772 ], [ 9.196411114116883, 45.509545007887489 ], [ 9.196260735717493, 45.50926346061047 ], [ 9.193415878367288, 45.510009510502584 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.209124831802376, 45.509855101266126 ], [ 9.209158664649019, 45.509915395298776 ], [ 9.209146693054075, 45.509918653220154 ], [ 9.209571945779285, 45.510678847896621 ], [ 9.209564764112455, 45.510680806439723 ], [ 9.209680929779795, 45.51088868105095 ], [ 9.20780788684886, 45.511408523062642 ], [ 9.208569456384339, 45.51275666849358 ], [ 9.208536356440387, 45.512765811369022 ], [ 9.209433720013109, 45.514339041264748 ], [ 9.210151840086631, 45.515678067839715 ], [ 9.210970837361304, 45.5154496188133 ], [ 9.21097217842688, 45.515452016046112 ], [ 9.212166086449887, 45.515116205198368 ], [ 9.213350905410262, 45.514785684823387 ], [ 9.213349575947353, 45.514783308509116 ], [ 9.214119022627672, 45.514566866764135 ], [ 9.213712084622001, 45.513853289250434 ], [ 9.213718967128735, 45.513851367603152 ], [ 9.213341067434106, 45.513188668779073 ], [ 9.214433804024726, 45.512893488077964 ], [ 9.214046154147155, 45.512188891966353 ], [ 9.214374372005901, 45.512098695534945 ], [ 9.214341498028288, 45.512040037343318 ], [ 9.214354878772538, 45.512036373365504 ], [ 9.213466597497538, 45.510448608046595 ], [ 9.213446263014111, 45.510429418632178 ], [ 9.212591563693335, 45.508902471297553 ], [ 9.209124831802376, 45.509855101266126 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.250026738566671, 45.51111800675077 ], [ 9.250228579907979, 45.510516685379422 ], [ 9.249966500600276, 45.510473469615079 ], [ 9.249990766531578, 45.510400787905297 ], [ 9.24735453721093, 45.509969745930313 ], [ 9.247328666047979, 45.510047488688492 ], [ 9.246845316249594, 45.509970883393471 ], [ 9.246745682364869, 45.510279242301834 ], [ 9.246292655742936, 45.510182333377372 ], [ 9.246197125146299, 45.510453308153238 ], [ 9.246168826765432, 45.510447053694975 ], [ 9.24531652281237, 45.512346232013819 ], [ 9.245947524126615, 45.512485197058773 ], [ 9.245903254683299, 45.512610569531773 ], [ 9.245953821486699, 45.512619349344831 ], [ 9.245871082422754, 45.512862971304912 ], [ 9.246670601233864, 45.513005526609327 ], [ 9.246654078189279, 45.513049808116456 ], [ 9.249252912714317, 45.513500704757291 ], [ 9.249299255772272, 45.513377244982053 ], [ 9.249299535068657, 45.513377294929057 ], [ 9.249310441002656, 45.513347446993635 ], [ 9.249400549334316, 45.513107392904914 ], [ 9.249468814194142, 45.513121770138447 ], [ 9.249481571658206, 45.513097442947675 ], [ 9.249847542882312, 45.513179845522018 ], [ 9.250743265305445, 45.511398902743196 ], [ 9.250619578192209, 45.511370869852776 ], [ 9.250671969923996, 45.511260495215616 ], [ 9.250026738566671, 45.51111800675077 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.198153757245093, 45.507211116643248 ], [ 9.198163769889334, 45.507393245306531 ], [ 9.197250881729369, 45.507641948894971 ], [ 9.19749514330883, 45.508078501315467 ], [ 9.197479654836224, 45.50808229489401 ], [ 9.198685697245356, 45.51032991543542 ], [ 9.201802207261048, 45.509300674238851 ], [ 9.200892629695531, 45.507426092276809 ], [ 9.200835374640606, 45.507072325096303 ], [ 9.199890431376836, 45.50712123945906 ], [ 9.199799363768356, 45.506947626939862 ], [ 9.198991359168815, 45.507167772002383 ], [ 9.198153757245093, 45.507211116643248 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.192075683991764, 45.506125731908845 ], [ 9.192261207927812, 45.506081680446087 ], [ 9.191387853602283, 45.504210160713356 ], [ 9.19051911912868, 45.504409665300564 ], [ 9.190452080623938, 45.504260997365591 ], [ 9.18761907497489, 45.504937563047868 ], [ 9.187677776849711, 45.505058533651273 ], [ 9.187571896291688, 45.505083389192137 ], [ 9.187634124695622, 45.505217060536218 ], [ 9.186931019392517, 45.505290348157573 ], [ 9.187573483770102, 45.507625164132847 ], [ 9.188029779921363, 45.50756017327457 ], [ 9.188070128676374, 45.507678605481857 ], [ 9.188152915348534, 45.507667500241929 ], [ 9.188327704709764, 45.508028874050368 ], [ 9.1881902158163, 45.508061258265997 ], [ 9.188122905056396, 45.508077070461383 ], [ 9.18655011449829, 45.508449328667055 ], [ 9.187442149710074, 45.51030258302184 ], [ 9.187444180100137, 45.510302103009415 ], [ 9.187657073754703, 45.510744233562868 ], [ 9.1892245834074, 45.510373466220003 ], [ 9.189292811213818, 45.510357298209556 ], [ 9.190522441567527, 45.510065512620983 ], [ 9.190501294577256, 45.510021619764949 ], [ 9.190540311895409, 45.510012433753076 ], [ 9.190348991587143, 45.509615550207528 ], [ 9.190349182920933, 45.509615504938203 ], [ 9.189833312506725, 45.508543680961637 ], [ 9.19030039217912, 45.508428485209713 ], [ 9.190540132143717, 45.508372561608383 ], [ 9.191113070712797, 45.508248332248776 ], [ 9.192143379389856, 45.508038719884205 ], [ 9.19212577137418, 45.508002667656889 ], [ 9.192882456661163, 45.507826140539009 ], [ 9.192399699600948, 45.506809510759702 ], [ 9.192075683991764, 45.506125731908845 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.127310091770889, 45.515580855521023 ], [ 9.127596578877354, 45.515625416952297 ], [ 9.127685246979892, 45.51535185650777 ], [ 9.127802724962404, 45.515370721968765 ], [ 9.128419923331569, 45.513466125045873 ], [ 9.128262728804108, 45.51344107303548 ], [ 9.128345400630687, 45.513185996080736 ], [ 9.12567705789216, 45.51276036313871 ], [ 9.125504208390094, 45.513292606045731 ], [ 9.125070425368985, 45.513224773535029 ], [ 9.124429289869752, 45.515238127812971 ], [ 9.127277441917204, 45.515683473001879 ], [ 9.127310091770889, 45.515580855521023 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.137029063932316, 45.514879364908268 ], [ 9.137190776268939, 45.514904288494144 ], [ 9.137110552755269, 45.515155630293812 ], [ 9.139876320775175, 45.515589084781553 ], [ 9.139958836082247, 45.515330871158838 ], [ 9.140069815683995, 45.515347972569522 ], [ 9.140724009482893, 45.513264932728504 ], [ 9.138044143951261, 45.512852258845818 ], [ 9.13804399861098, 45.512852721824537 ], [ 9.13768320872393, 45.5127969173477 ], [ 9.137029063932316, 45.514879364908268 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.147078016497092, 45.513376015347767 ], [ 9.147186047755435, 45.513391974388583 ], [ 9.147815653245074, 45.511294881859243 ], [ 9.147415916131939, 45.511235976354286 ], [ 9.147476940107763, 45.511033286129049 ], [ 9.144661247630649, 45.510617981237772 ], [ 9.144569700038753, 45.510922180983542 ], [ 9.144175385032682, 45.510864148670656 ], [ 9.143848718757878, 45.511951781446157 ], [ 9.14384746972533, 45.511951581910509 ], [ 9.143202282293805, 45.513938077292913 ], [ 9.145895455630288, 45.514368341039827 ], [ 9.145897566980054, 45.514361837833725 ], [ 9.146365653980064, 45.514436586201917 ], [ 9.146376796999931, 45.514402260265094 ], [ 9.146726605319403, 45.514458159311289 ], [ 9.147078016497092, 45.513376015347767 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.21945076733838, 45.512716696756733 ], [ 9.220897922855391, 45.513072833805836 ], [ 9.220916482160566, 45.513266243743708 ], [ 9.223107817204603, 45.513502260268105 ], [ 9.22095738643937, 45.513832364590321 ], [ 9.220976976574212, 45.513895323350582 ], [ 9.220586227625711, 45.513954775031372 ], [ 9.220652967419456, 45.514170779638199 ], [ 9.220420888069967, 45.514206106061373 ], [ 9.220930988210492, 45.515851799450829 ], [ 9.2214082060105, 45.517425381087911 ], [ 9.22426175976744, 45.51700064655688 ], [ 9.224229439484146, 45.516894259736432 ], [ 9.224330378562914, 45.516879267617895 ], [ 9.224306518583472, 45.516800529545137 ], [ 9.224788333558447, 45.516728784719085 ], [ 9.224625181057091, 45.516149198535317 ], [ 9.225219940105813, 45.516063198624849 ], [ 9.225114360197805, 45.515706402530903 ], [ 9.225345894423565, 45.515671329171198 ], [ 9.224754410022774, 45.513748896405176 ], [ 9.224556552841994, 45.513778826519911 ], [ 9.224443490150698, 45.513393471528666 ], [ 9.223657093445158, 45.513506884788775 ], [ 9.223630645267566, 45.513421996251068 ], [ 9.223592045687978, 45.513427922107731 ], [ 9.223915355310936, 45.511654205664968 ], [ 9.223891172677803, 45.511651935457223 ], [ 9.223908275539717, 45.511573716572833 ], [ 9.223472223426572, 45.51153252611136 ], [ 9.223473061914083, 45.51153085782429 ], [ 9.223248723619204, 45.511475555584056 ], [ 9.223243787223479, 45.511456915701089 ], [ 9.223265681079765, 45.511413264120122 ], [ 9.223229890944983, 45.511404443137067 ], [ 9.223209719139396, 45.511328273906237 ], [ 9.22299546651416, 45.511346665586515 ], [ 9.220599486015049, 45.510756104462068 ], [ 9.220508377136667, 45.510937752360192 ], [ 9.220361057983437, 45.510901402069742 ], [ 9.21945076733838, 45.512716696756733 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.204669508671845, 45.512357525091986 ], [ 9.205720407720873, 45.514217326783331 ], [ 9.208576053134683, 45.513424931245602 ], [ 9.207525878258977, 45.511565072433832 ], [ 9.204669508671845, 45.512357525091986 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.22780731347545, 45.513954857998762 ], [ 9.22808237149399, 45.513986075671738 ], [ 9.228068746084158, 45.514044672348767 ], [ 9.230717889774178, 45.514347535902978 ], [ 9.230730927071935, 45.514291427412672 ], [ 9.231806772678189, 45.514414467233244 ], [ 9.232343219782935, 45.512308864520477 ], [ 9.230960919981781, 45.512166448688909 ], [ 9.23097405347375, 45.5121100077412 ], [ 9.228306874362037, 45.511805644991327 ], [ 9.22780731347545, 45.513954857998762 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.184426321599398, 45.514941778902141 ], [ 9.184500245912169, 45.514955544480088 ], [ 9.184491026652386, 45.514979628672229 ], [ 9.187079437210116, 45.515462084395764 ], [ 9.187088999149781, 45.515437101923304 ], [ 9.187172059576714, 45.515452533772063 ], [ 9.187976229775465, 45.513332495565393 ], [ 9.187803881071389, 45.513300364844937 ], [ 9.187804409381744, 45.513298965939789 ], [ 9.186517162039681, 45.51306047428627 ], [ 9.185413160866227, 45.51285463569414 ], [ 9.185412704455729, 45.512855835381785 ], [ 9.185230896152854, 45.512822147948683 ], [ 9.184426321599398, 45.514941778902141 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.157539847259482, 45.514137520349749 ], [ 9.159081593284714, 45.516068227090337 ], [ 9.159510660341638, 45.515899961772341 ], [ 9.159618198274824, 45.516034531937855 ], [ 9.159650208957888, 45.516021907263706 ], [ 9.159687190435189, 45.516068275225486 ], [ 9.160330153458071, 45.515815951022503 ], [ 9.161913363149411, 45.516107571323921 ], [ 9.161971057728447, 45.515953906731141 ], [ 9.16280310232815, 45.516107183785223 ], [ 9.163578217928611, 45.514042582798503 ], [ 9.162752806892652, 45.513890749978124 ], [ 9.162821255780289, 45.513708520483334 ], [ 9.1622147366477, 45.513597209988689 ], [ 9.161493033824593, 45.51346425242766 ], [ 9.161528228345688, 45.513366923108912 ], [ 9.161499062203109, 45.513361727239115 ], [ 9.161519997121644, 45.513303832906047 ], [ 9.1588349244279, 45.512826943694741 ], [ 9.158566689924642, 45.513554944647055 ], [ 9.157895666318916, 45.513817960066142 ], [ 9.15792544594227, 45.513855186714004 ], [ 9.157879944496742, 45.513872972823073 ], [ 9.157959807368975, 45.51397293160688 ], [ 9.157539847259482, 45.514137520349749 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.120280456145776, 45.488370223335465 ], [ 9.121203707174056, 45.488884849002929 ], [ 9.12090621918008, 45.489155634782627 ], [ 9.121996272365813, 45.489744055233786 ], [ 9.12064607890481, 45.490269238084018 ], [ 9.120684829391358, 45.490322108002168 ], [ 9.1204427723605, 45.490424126371025 ], [ 9.121856735153003, 45.492153497158583 ], [ 9.122023772940345, 45.492085703282733 ], [ 9.122050358906566, 45.492120017459555 ], [ 9.124477203219984, 45.491154602290742 ], [ 9.124353735821513, 45.49100041140921 ], [ 9.12438910783955, 45.49098696872813 ], [ 9.123962339692691, 45.490405841087203 ], [ 9.124284568687933, 45.490580046372045 ], [ 9.125110410908995, 45.489829127013152 ], [ 9.125154699879683, 45.489853141973725 ], [ 9.126742570060545, 45.488398522698553 ], [ 9.12659007358589, 45.488314558984996 ], [ 9.126605223241588, 45.488301739407248 ], [ 9.125547194417349, 45.487740343308296 ], [ 9.125347714162077, 45.48763050583139 ], [ 9.125139878074823, 45.487446473586999 ], [ 9.124764368629069, 45.487267358949893 ], [ 9.124719094525338, 45.487257571679912 ], [ 9.124565312137129, 45.487128217166578 ], [ 9.124229057393721, 45.486965646290216 ], [ 9.123840577619639, 45.486871611991276 ], [ 9.123746647250083, 45.486867968271085 ], [ 9.122666851852589, 45.486266057091647 ], [ 9.120280456145776, 45.488370223335465 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.213338937990541, 45.483735565810505 ], [ 9.211981818837318, 45.48239557887139 ], [ 9.211548818839152, 45.482636819802025 ], [ 9.209721810542149, 45.483527731163093 ], [ 9.209725116588851, 45.483531055349168 ], [ 9.209484436757609, 45.483648239165213 ], [ 9.209495173809037, 45.483659042846831 ], [ 9.209250964996343, 45.483778457729251 ], [ 9.209333971001312, 45.483862246964307 ], [ 9.20908630256571, 45.483991572475681 ], [ 9.208954976039701, 45.48405591188461 ], [ 9.209035100276523, 45.484293191536445 ], [ 9.208709174570771, 45.484467675004645 ], [ 9.209282483433556, 45.485025778146827 ], [ 9.209635870776479, 45.486072245391931 ], [ 9.210112803049045, 45.485834050622039 ], [ 9.210133384408213, 45.485854085120209 ], [ 9.210064032976529, 45.486143211545837 ], [ 9.211074606742987, 45.486262220308994 ], [ 9.210304356327857, 45.486649072014593 ], [ 9.210222152091282, 45.486556841276602 ], [ 9.210158509887027, 45.48659859201377 ], [ 9.210154319390233, 45.486594761148289 ], [ 9.210118958590199, 45.486614829551826 ], [ 9.210115928831032, 45.486612076872639 ], [ 9.210080538133557, 45.486636634381355 ], [ 9.209892567726149, 45.486743313128919 ], [ 9.209631594057672, 45.48657913928681 ], [ 9.209273867766573, 45.486909947484584 ], [ 9.209188544054626, 45.486826892181213 ], [ 9.206968061024332, 45.487947044934963 ], [ 9.208659244820954, 45.489593268038071 ], [ 9.209397561493475, 45.48922081890543 ], [ 9.209495966696187, 45.48931501420661 ], [ 9.20949801974448, 45.489313964251423 ], [ 9.209623905204415, 45.489434691347412 ], [ 9.210818627822947, 45.488822766909607 ], [ 9.210819115115058, 45.488822485777725 ], [ 9.210838641146676, 45.488841579519246 ], [ 9.211584875402716, 45.488466733673654 ], [ 9.212245026120469, 45.489073867903706 ], [ 9.212548033932853, 45.48936418620098 ], [ 9.212556170945881, 45.489360018909707 ], [ 9.213077154648383, 45.489839144300021 ], [ 9.213391263155142, 45.489680016839408 ], [ 9.213394914365081, 45.489683510041466 ], [ 9.213766618193741, 45.489492958328938 ], [ 9.213768852817841, 45.489495099185966 ], [ 9.214338055589645, 45.489201303779971 ], [ 9.214475390209181, 45.489341370674254 ], [ 9.214847602696913, 45.48915373357621 ], [ 9.214899301150973, 45.489203683232383 ], [ 9.215486037252589, 45.488867657009123 ], [ 9.215890735569316, 45.489138562275407 ], [ 9.216978284583419, 45.488397825358668 ], [ 9.217197701358518, 45.488155410532116 ], [ 9.217309768478602, 45.487844405314299 ], [ 9.217294453158875, 45.487703725441747 ], [ 9.217712025049805, 45.487384851926855 ], [ 9.216140367418312, 45.485844567873144 ], [ 9.215545428248898, 45.486116087337464 ], [ 9.214934870042699, 45.486039766140806 ], [ 9.214113230687337, 45.486444991771791 ], [ 9.213933687417477, 45.486273067343468 ], [ 9.212695572326322, 45.486908158504065 ], [ 9.212168018247162, 45.486390973697468 ], [ 9.213226186599163, 45.486515566538507 ], [ 9.21560686988081, 45.485360722902101 ], [ 9.215511412146595, 45.485252735700172 ], [ 9.215757023326995, 45.485117733892672 ], [ 9.214094821130292, 45.483566725135496 ], [ 9.21391657660293, 45.483635637193657 ], [ 9.213783107598797, 45.483512726867666 ], [ 9.213338937990541, 45.483735565810505 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.202276672868557, 45.48578986457909 ], [ 9.202355426479192, 45.48576590132636 ], [ 9.202347027536176, 45.485752351136341 ], [ 9.20244113666306, 45.485702171557335 ], [ 9.202375286281764, 45.485641453203108 ], [ 9.20243039084083, 45.485612139258428 ], [ 9.202031588001997, 45.485243440763391 ], [ 9.201229799133209, 45.483949839340859 ], [ 9.200711776456254, 45.484107862092742 ], [ 9.200695824459196, 45.484093157145495 ], [ 9.200609721645943, 45.484138993518307 ], [ 9.199272647846724, 45.484546851119092 ], [ 9.198684940958604, 45.484658368919632 ], [ 9.197582074352004, 45.485036717380652 ], [ 9.197636942162235, 45.485181317500547 ], [ 9.197635163585767, 45.485181649897477 ], [ 9.197808415171725, 45.485638441708744 ], [ 9.197515240292679, 45.485794580712607 ], [ 9.197577716748889, 45.485852280358152 ], [ 9.19752635193214, 45.485879718279662 ], [ 9.197802724002097, 45.486135010260725 ], [ 9.196176418570616, 45.487038078597756 ], [ 9.195880464357741, 45.486917500442104 ], [ 9.195771526383123, 45.487262902383904 ], [ 9.195115080278137, 45.487627399219519 ], [ 9.195457285475202, 45.487930088366184 ], [ 9.195246272261826, 45.488047135557601 ], [ 9.195461056749259, 45.4882372468659 ], [ 9.195084197871651, 45.489230315687266 ], [ 9.195427599688244, 45.489288848728123 ], [ 9.195361975187295, 45.489703225758376 ], [ 9.196701116935495, 45.48979558824179 ], [ 9.196999564203457, 45.49018637879108 ], [ 9.197839607214684, 45.48980511975082 ], [ 9.197848512425384, 45.489814761241618 ], [ 9.197900665563312, 45.489789038491516 ], [ 9.198428556905696, 45.489782268336015 ], [ 9.198400318681808, 45.489550630859611 ], [ 9.198400486271195, 45.489550554795422 ], [ 9.198440318821509, 45.489585802964314 ], [ 9.198473193175273, 45.489567567081522 ], [ 9.198865408852882, 45.489902406593345 ], [ 9.197281406679119, 45.490704642700841 ], [ 9.198260161899395, 45.491652950286046 ], [ 9.19911506024499, 45.492493014405454 ], [ 9.1998149400884, 45.492143199028227 ], [ 9.199816284314265, 45.492144521013081 ], [ 9.201156963820077, 45.491475081799315 ], [ 9.201882003400524, 45.492204390596818 ], [ 9.204040034246871, 45.491145041967066 ], [ 9.20399958629879, 45.491104309265928 ], [ 9.204013240133742, 45.491097738102916 ], [ 9.203314117651848, 45.490394021777774 ], [ 9.203360339977033, 45.490370914851432 ], [ 9.202925410825868, 45.490002751319658 ], [ 9.202737603120669, 45.489813702539173 ], [ 9.204074673807218, 45.489157343320677 ], [ 9.201947822104836, 45.487346647736153 ], [ 9.200987053911458, 45.486476881240506 ], [ 9.201342574297648, 45.486287921533346 ], [ 9.202276672868557, 45.48578986457909 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.218972599120653, 45.487312668498994 ], [ 9.218984324157415, 45.487312792761578 ], [ 9.218980372410559, 45.487585868712166 ], [ 9.22000123781204, 45.488020760952843 ], [ 9.218931084034432, 45.488335518036791 ], [ 9.21751068624623, 45.488751735483419 ], [ 9.218026825583385, 45.489617430736843 ], [ 9.218548087221533, 45.490502524740286 ], [ 9.21855505586408, 45.491544324025043 ], [ 9.218556138885264, 45.491706492181422 ], [ 9.218561138224043, 45.492650054866481 ], [ 9.219091161211713, 45.492650059983966 ], [ 9.218131021065632, 45.492799109980311 ], [ 9.216833515639903, 45.4929921846187 ], [ 9.21683286381967, 45.493054357927718 ], [ 9.216604768131631, 45.493092490134558 ], [ 9.216578255591273, 45.492026101488747 ], [ 9.213720207441074, 45.492069633202469 ], [ 9.213759866530923, 45.493973811906422 ], [ 9.215674132602317, 45.493945233007352 ], [ 9.216148081665976, 45.495308915598827 ], [ 9.217163098559791, 45.495758502588465 ], [ 9.219528406900126, 45.495417859806174 ], [ 9.219457097829395, 45.495188723185194 ], [ 9.220211492469433, 45.495042003009559 ], [ 9.220178199172214, 45.494923663432331 ], [ 9.220469005228029, 45.494878438373036 ], [ 9.220126548949365, 45.493799590020359 ], [ 9.219816675139827, 45.49280941002565 ], [ 9.219505158135407, 45.492855163105702 ], [ 9.219441768580463, 45.492650062017681 ], [ 9.219863625794233, 45.49265006303829 ], [ 9.221219683675713, 45.492650054155476 ], [ 9.221218923177767, 45.492380578388961 ], [ 9.221271805276153, 45.492380577811737 ], [ 9.221271760995901, 45.49042538748148 ], [ 9.22063779401519, 45.490426397964427 ], [ 9.221944524841122, 45.49002754900706 ], [ 9.221943387473617, 45.490025716590232 ], [ 9.223063860405459, 45.48968218633005 ], [ 9.222858992508289, 45.489536835399406 ], [ 9.223147171351041, 45.48954421674047 ], [ 9.224490097006264, 45.489579000535649 ], [ 9.223756782588053, 45.490321760013224 ], [ 9.224775467485385, 45.49081602456473 ], [ 9.224699337683729, 45.490985797412037 ], [ 9.224857977225552, 45.491020597209733 ], [ 9.22478142132181, 45.491201193853726 ], [ 9.226052503865814, 45.491468673923251 ], [ 9.22607672373926, 45.491473708263591 ], [ 9.227827885885983, 45.491847110809118 ], [ 9.227899200883343, 45.49168819367263 ], [ 9.227899517367925, 45.491688263192515 ], [ 9.228102931790243, 45.491234562339152 ], [ 9.228375101704168, 45.490627680285996 ], [ 9.228669562575782, 45.489971472849938 ], [ 9.228669423722243, 45.489971442349095 ], [ 9.228704381852305, 45.489893497258457 ], [ 9.22872281383637, 45.489852418455101 ], [ 9.229015458848529, 45.489554906574149 ], [ 9.228884675813406, 45.489491678886999 ], [ 9.229131425652994, 45.488941741599142 ], [ 9.22680983261208, 45.488488546855621 ], [ 9.226360875709117, 45.488271478336131 ], [ 9.226302554585262, 45.488330767434533 ], [ 9.226159706405086, 45.48826332318022 ], [ 9.225661239484969, 45.488768232400794 ], [ 9.225410386790715, 45.488646823110052 ], [ 9.22460881733357, 45.489458748812424 ], [ 9.224620651878965, 45.488547355810745 ], [ 9.224644086064551, 45.486819584686231 ], [ 9.22381478025695, 45.486814789476462 ], [ 9.223835440168116, 45.485234893278353 ], [ 9.221692546255568, 45.485213214768436 ], [ 9.221692500675074, 45.485208116916475 ], [ 9.220897945450469, 45.485205165996085 ], [ 9.220755379215815, 45.48520372131081 ], [ 9.220755368090588, 45.485204522226724 ], [ 9.219612062452994, 45.485192479648276 ], [ 9.219611877389438, 45.485200377919327 ], [ 9.219030757617912, 45.485198209640053 ], [ 9.219022105070358, 45.485512798264608 ], [ 9.219010373267682, 45.485512673929549 ], [ 9.218997344928857, 45.48641300736189 ], [ 9.218972599120653, 45.487312668498994 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.238275968218826, 45.49085543004324 ], [ 9.238685374774537, 45.490873756710187 ], [ 9.238684392841298, 45.490885437488956 ], [ 9.241481331367773, 45.491003070152239 ], [ 9.241486636848089, 45.49093917457845 ], [ 9.242215461830224, 45.490963585700975 ], [ 9.242372860878898, 45.488904730367977 ], [ 9.242322336662371, 45.48890261825251 ], [ 9.242336791781264, 45.488740530374741 ], [ 9.24167126379195, 45.488715565670759 ], [ 9.241686530271235, 45.488531691647452 ], [ 9.238891486659552, 45.488418760529548 ], [ 9.23887644653372, 45.488598002197435 ], [ 9.238467879258341, 45.488582932880654 ], [ 9.238275968218826, 45.49085543004324 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.246549802051215, 45.489278152012432 ], [ 9.246654660718201, 45.488957099974421 ], [ 9.246555477754002, 45.488940994520661 ], [ 9.246555506516573, 45.488940906677819 ], [ 9.246021338174229, 45.488854034573563 ], [ 9.245623321668324, 45.488403802390614 ], [ 9.244984860270907, 45.488685463680319 ], [ 9.243907074446703, 45.488510163487923 ], [ 9.243258171080063, 45.490482225542266 ], [ 9.242983540621024, 45.491314126376174 ], [ 9.244137153890756, 45.491506403686742 ], [ 9.244523787288401, 45.491948800619028 ], [ 9.245150967216473, 45.491675369273864 ], [ 9.245253357457782, 45.491692433423658 ], [ 9.24531981371222, 45.491765365559111 ], [ 9.245421659701647, 45.491720482111916 ], [ 9.245528553305579, 45.491738296498561 ], [ 9.24569196934924, 45.491918431496671 ], [ 9.246383608691767, 45.491609485819254 ], [ 9.246907390728849, 45.491687509903699 ], [ 9.247024365243364, 45.491323262020316 ], [ 9.247082396788342, 45.491297339203179 ], [ 9.24761783461796, 45.491197950310394 ], [ 9.24764649460449, 45.490829738237345 ], [ 9.24776184869112, 45.489804364504067 ], [ 9.246915239125808, 45.489534604784978 ], [ 9.246868230074643, 45.489513133145223 ], [ 9.246738968824559, 45.489262962029407 ], [ 9.246549802051215, 45.489278152012432 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.115657600632044, 45.490457747173728 ], [ 9.116735801122935, 45.49221799336356 ], [ 9.116735815369958, 45.492217989069943 ], [ 9.116796691865716, 45.492317384006931 ], [ 9.117075318957648, 45.492233447667694 ], [ 9.117090553274647, 45.492258330421457 ], [ 9.119594632306679, 45.491503329672845 ], [ 9.119555588997379, 45.491439783035226 ], [ 9.119600479730243, 45.491426224166688 ], [ 9.118537607319398, 45.489693729032751 ], [ 9.118491665915704, 45.489707546027269 ], [ 9.118454425430096, 45.489646914341769 ], [ 9.118363585601134, 45.48967427587317 ], [ 9.118324280593693, 45.48961021706743 ], [ 9.115859232550939, 45.49035230104267 ], [ 9.115882358132209, 45.490390030303935 ], [ 9.115657600632044, 45.490457747173728 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.105519628453266, 45.492024949483792 ], [ 9.10721035885329, 45.492371174928174 ], [ 9.107369649425134, 45.49197913743253 ], [ 9.107546151813228, 45.49201401737497 ], [ 9.108390747734685, 45.49004463632361 ], [ 9.108112857743437, 45.489984484047696 ], [ 9.108133319733074, 45.489939281723899 ], [ 9.108091176921352, 45.489931964058293 ], [ 9.108143568776448, 45.489809908424647 ], [ 9.105492478066479, 45.48924916527973 ], [ 9.104887550754142, 45.490654892895456 ], [ 9.102623944725774, 45.490335014306865 ], [ 9.10257656767053, 45.49049554203846 ], [ 9.102479273426459, 45.490481508034698 ], [ 9.101903596565837, 45.492534492816354 ], [ 9.102414729165933, 45.492607674761629 ], [ 9.102412827922377, 45.492613426894742 ], [ 9.105157455670795, 45.493090790828923 ], [ 9.105519628453266, 45.492024949483792 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.14997275728394, 45.492615492103411 ], [ 9.152314160774774, 45.493601102714237 ], [ 9.152343253898625, 45.49357969926033 ], [ 9.152620956606151, 45.493755612346689 ], [ 9.152690135742592, 45.493702564969077 ], [ 9.152842624022284, 45.493798954991497 ], [ 9.153124289544227, 45.493582397564438 ], [ 9.153126950885163, 45.49358398140609 ], [ 9.153164310562413, 45.493551627370756 ], [ 9.154648030878878, 45.492410834129387 ], [ 9.154552640399611, 45.492349278096668 ], [ 9.154831332189284, 45.492107911619335 ], [ 9.152528722722577, 45.490649545490818 ], [ 9.152452452020031, 45.490710605981917 ], [ 9.152449012638284, 45.490708357088941 ], [ 9.14997275728394, 45.492615492103411 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.184077348259557, 45.493067144020351 ], [ 9.186545984004976, 45.493819967907193 ], [ 9.18654731536726, 45.493817819472383 ], [ 9.186743432711854, 45.493877554975391 ], [ 9.18785642265698, 45.492078959925976 ], [ 9.187656674082358, 45.492018155384848 ], [ 9.187684984665676, 45.491972536433373 ], [ 9.185220866688455, 45.491222667838045 ], [ 9.184077348259557, 45.493067144020351 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.139230616002221, 45.494166438136162 ], [ 9.139290781889921, 45.494176606009788 ], [ 9.139949699664307, 45.495192233427893 ], [ 9.141803964869464, 45.494601295586072 ], [ 9.142004356731608, 45.494635156095718 ], [ 9.142043874744797, 45.494524835336186 ], [ 9.142776713252461, 45.494291272327501 ], [ 9.142395987022862, 45.493703503293055 ], [ 9.142833266928315, 45.492446808629161 ], [ 9.139942151037888, 45.491967297430982 ], [ 9.139546651100433, 45.493189690438221 ], [ 9.138804091546614, 45.493426416466605 ], [ 9.139248442376523, 45.494111344323827 ], [ 9.139230616002221, 45.494166438136162 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.238105754868279, 45.494447856473748 ], [ 9.238326919542683, 45.494475011326642 ], [ 9.238327252513839, 45.494473692498573 ], [ 9.238519808514441, 45.494497100396366 ], [ 9.239058312981129, 45.492334990034969 ], [ 9.238500855343936, 45.492266725236576 ], [ 9.238505723863927, 45.492250915472653 ], [ 9.235674616269669, 45.491821894534532 ], [ 9.23490829952418, 45.494303616231804 ], [ 9.235046827965117, 45.494324685607467 ], [ 9.23503718100147, 45.494355882848296 ], [ 9.235185777048407, 45.494378345909091 ], [ 9.234888106377957, 45.495320247939524 ], [ 9.234851243801016, 45.495632992678885 ], [ 9.235067279921291, 45.496112475672746 ], [ 9.235516461157408, 45.49637397378207 ], [ 9.236145240403422, 45.496583566296749 ], [ 9.236762842872176, 45.496454495406653 ], [ 9.2374620168232, 45.496549101995178 ], [ 9.23759177024629, 45.496037312691136 ], [ 9.237597839695336, 45.496038259627596 ], [ 9.238105754868279, 45.494447856473748 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.106460633277964, 45.492808473388635 ], [ 9.106580154942119, 45.492947814231812 ], [ 9.106493988023567, 45.492984233662462 ], [ 9.108012290591374, 45.494750835513123 ], [ 9.10914365293365, 45.494273579717373 ], [ 9.109822726324504, 45.495064606838334 ], [ 9.11009999803967, 45.494947540330969 ], [ 9.110143225650052, 45.49499789040879 ], [ 9.110154973034108, 45.494992940125556 ], [ 9.110557079693082, 45.495445197692447 ], [ 9.111322132573839, 45.495110691908842 ], [ 9.111632933339299, 45.495418607223613 ], [ 9.112013580854581, 45.49525400427919 ], [ 9.112540975747466, 45.495847935801692 ], [ 9.114854665591384, 45.494837886183745 ], [ 9.114792328226841, 45.49476781208471 ], [ 9.115033898094431, 45.494662381115923 ], [ 9.11354180972614, 45.492983126356961 ], [ 9.113467970865889, 45.493015352121247 ], [ 9.113349649832234, 45.492882276929762 ], [ 9.113248594929603, 45.492926423536773 ], [ 9.113012576405467, 45.492612041041831 ], [ 9.11283901690571, 45.492684712965406 ], [ 9.112588396381467, 45.492401378147804 ], [ 9.112501471370063, 45.492432409986662 ], [ 9.112465119095871, 45.492392387821042 ], [ 9.111489872689672, 45.492717475916336 ], [ 9.111387099285093, 45.492601919434705 ], [ 9.111356526075339, 45.492615277362859 ], [ 9.111017524802609, 45.492220307770658 ], [ 9.111017300127738, 45.492220402706103 ], [ 9.110781124423152, 45.491945379244463 ], [ 9.109560030758477, 45.492460487738569 ], [ 9.109072024000326, 45.491892085230582 ], [ 9.109006841729434, 45.491919563887492 ], [ 9.108890039691298, 45.491783423421452 ], [ 9.106460633277964, 45.492808473388635 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.165863875571574, 45.478352625566117 ], [ 9.166179872424927, 45.478415726124872 ], [ 9.167419615860009, 45.477042323061944 ], [ 9.167294136024227, 45.476958884141709 ], [ 9.16745602563538, 45.476731833383433 ], [ 9.165330259768202, 45.475756704266828 ], [ 9.165200474381555, 45.475883828368673 ], [ 9.165028835813512, 45.475802893411604 ], [ 9.164186790713725, 45.476634163025189 ], [ 9.163314033839827, 45.476064735441504 ], [ 9.163299612506624, 45.476075592187797 ], [ 9.163257643400078, 45.476048177654469 ], [ 9.16305484152714, 45.47620169588545 ], [ 9.163042165924404, 45.476193405109562 ], [ 9.162903255052715, 45.476300943439128 ], [ 9.162902802983375, 45.476300648894984 ], [ 9.161996886408069, 45.477002533974996 ], [ 9.161430539424815, 45.477431227096943 ], [ 9.16143740428045, 45.477435701554967 ], [ 9.161224171641102, 45.477600765827283 ], [ 9.16122447373648, 45.477600963562857 ], [ 9.161068457324015, 45.477721835681692 ], [ 9.16138825862685, 45.477929012726513 ], [ 9.161333570566169, 45.477970550393366 ], [ 9.161616395702371, 45.478155179997287 ], [ 9.161427614161191, 45.478254331674222 ], [ 9.1619897645273, 45.478785019157826 ], [ 9.161915225266183, 45.478831627801306 ], [ 9.162579285097772, 45.479341531218786 ], [ 9.163047076439019, 45.479783119912447 ], [ 9.163111718964634, 45.479750355154444 ], [ 9.163741401221804, 45.480233839390891 ], [ 9.166087115061826, 45.478812367518358 ], [ 9.166028107253673, 45.478778485091986 ], [ 9.166215588455811, 45.478659097306448 ], [ 9.165863875571574, 45.478352625566117 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.218811872085123, 45.478760092789926 ], [ 9.219091701457716, 45.478764361629125 ], [ 9.220890058323485, 45.479726921154395 ], [ 9.222572123026447, 45.478187378872441 ], [ 9.221670074044605, 45.477703277930665 ], [ 9.221970277762981, 45.477450953344388 ], [ 9.222451744655357, 45.477046383807959 ], [ 9.222468746008715, 45.475736120602946 ], [ 9.221035762951621, 45.475716869911885 ], [ 9.220653931663895, 45.475485317963418 ], [ 9.220424153507789, 45.475674421252542 ], [ 9.220244881442394, 45.475566243359445 ], [ 9.220226990118924, 45.475581500031687 ], [ 9.220067589578123, 45.475482012615331 ], [ 9.219811656353277, 45.475700411018352 ], [ 9.219706041819828, 45.475698990348391 ], [ 9.219708361018554, 45.475788556557056 ], [ 9.219395011912157, 45.476055946103294 ], [ 9.218274629835502, 45.476007809270172 ], [ 9.218214649511651, 45.478632450196734 ], [ 9.21606348556155, 45.478617341973965 ], [ 9.216049694083697, 45.47962087823926 ], [ 9.216049459276828, 45.479635693917878 ], [ 9.214725134882119, 45.480302340713685 ], [ 9.214418314221179, 45.480303157803348 ], [ 9.214418698712979, 45.480373161633906 ], [ 9.21379599196603, 45.480373156233803 ], [ 9.213796822562397, 45.480789349328234 ], [ 9.213684284599903, 45.480789431783876 ], [ 9.21368677314253, 45.482121218239108 ], [ 9.212944251287512, 45.482598638573329 ], [ 9.213730777230143, 45.482932811487373 ], [ 9.213731308623462, 45.483191390829283 ], [ 9.214335987972152, 45.483189942236791 ], [ 9.214438423456585, 45.483233462580749 ], [ 9.214673600830809, 45.483333267818949 ], [ 9.214672614270036, 45.483618399073031 ], [ 9.21475601909661, 45.483651003623692 ], [ 9.215082961376018, 45.483506991400908 ], [ 9.215210217309751, 45.483560995492788 ], [ 9.215224242839795, 45.483554010762411 ], [ 9.215948589886084, 45.484270794943605 ], [ 9.217012823468174, 45.483742653579654 ], [ 9.217251828132079, 45.48362406909461 ], [ 9.217305496922073, 45.483597529878537 ], [ 9.218058811777727, 45.483223650058292 ], [ 9.218074105187968, 45.481676274271521 ], [ 9.21793638501337, 45.481678149609799 ], [ 9.217932936432248, 45.480619918734405 ], [ 9.218782883274738, 45.480626633543366 ], [ 9.218800206904799, 45.479590963889869 ], [ 9.218811872085123, 45.478760092789926 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.20455484502353, 45.477265727197107 ], [ 9.205706224434914, 45.478516333592353 ], [ 9.204211230560048, 45.479237517754896 ], [ 9.204247918235472, 45.479275090224341 ], [ 9.202757413600873, 45.480029596667208 ], [ 9.204027675069215, 45.481221581825388 ], [ 9.203021759604368, 45.481749097249619 ], [ 9.20546146324515, 45.484036895178647 ], [ 9.205471294633782, 45.484031744631217 ], [ 9.206194024280647, 45.484710084354496 ], [ 9.208370843761314, 45.483570326407317 ], [ 9.20764782329544, 45.482891079344583 ], [ 9.208280748247692, 45.482559178150936 ], [ 9.206987830617944, 45.481346982766325 ], [ 9.207856556063627, 45.480920078256467 ], [ 9.207393244999464, 45.480387514704574 ], [ 9.208231221711214, 45.479983220300383 ], [ 9.207402948110234, 45.479139034220012 ], [ 9.208813522961098, 45.478453862300327 ], [ 9.209248944472376, 45.478253344340729 ], [ 9.208968791340325, 45.477954528605423 ], [ 9.209077867952164, 45.47790820050939 ], [ 9.208824112864017, 45.477633902580934 ], [ 9.208856235234856, 45.477619428554434 ], [ 9.207379078051222, 45.475983226408331 ], [ 9.206248506163444, 45.476522209991124 ], [ 9.20455484502353, 45.477265727197107 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.171316305310969, 45.476790174889175 ], [ 9.171582694070189, 45.47882762058417 ], [ 9.172146202793455, 45.479082286896983 ], [ 9.171590498969548, 45.479704291918672 ], [ 9.173029616585604, 45.481713393451564 ], [ 9.174156598389521, 45.480847531803541 ], [ 9.174715343625694, 45.480923604288201 ], [ 9.17485603088083, 45.480372021652229 ], [ 9.174817862203724, 45.480711541285146 ], [ 9.175597362077559, 45.480839174750351 ], [ 9.175594475951248, 45.480853442147918 ], [ 9.176085806495101, 45.480919148476239 ], [ 9.177368787915638, 45.481129201882773 ], [ 9.177380806618105, 45.481092319808305 ], [ 9.178438208347957, 45.481233707081536 ], [ 9.178573222486174, 45.480528605035495 ], [ 9.178630235833868, 45.480533858605924 ], [ 9.178695109995862, 45.479892040706474 ], [ 9.178803750056691, 45.479324649764202 ], [ 9.178753383995378, 45.479315507697706 ], [ 9.178830006101602, 45.478557430190946 ], [ 9.178440635528188, 45.47854145615814 ], [ 9.178177736312948, 45.478370813046602 ], [ 9.1776264129327, 45.478012587477785 ], [ 9.177547226784636, 45.478015500607867 ], [ 9.177552569576356, 45.47796190250746 ], [ 9.17492307459232, 45.478057282998542 ], [ 9.174729610104462, 45.477808262931454 ], [ 9.174864301638193, 45.477120074518972 ], [ 9.171316305310969, 45.476790174889175 ] ], [ [ 9.17410156267561, 45.47889918720773 ], [ 9.174582231438489, 45.478719999593359 ], [ 9.174601203974243, 45.478965599995618 ], [ 9.17410156267561, 45.47889918720773 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.222569466841891, 45.469784018222335 ], [ 9.222607678417143, 45.467834921173981 ], [ 9.219735301075355, 45.467815883757495 ], [ 9.219731384659488, 45.467993724605492 ], [ 9.219724998735369, 45.46799367993794 ], [ 9.21972084596317, 45.468248084241807 ], [ 9.219431677365627, 45.468246005675702 ], [ 9.218648166603762, 45.470140278792904 ], [ 9.221439326768675, 45.470165350751074 ], [ 9.22141379912739, 45.470874134415482 ], [ 9.221227673646251, 45.470793415781941 ], [ 9.220493489568616, 45.471623269689026 ], [ 9.219810023763396, 45.472397410982815 ], [ 9.219181120456827, 45.471560655098088 ], [ 9.218510271181923, 45.470669851136307 ], [ 9.217235412213791, 45.471144266368228 ], [ 9.217199459243485, 45.471148153135715 ], [ 9.216977316558809, 45.471205875172899 ], [ 9.216817174265824, 45.471267999098629 ], [ 9.216640171390043, 45.471357311816739 ], [ 9.216618534761851, 45.471373817953832 ], [ 9.216458125630567, 45.471433508326619 ], [ 9.216342209896297, 45.471431286417811 ], [ 9.216341399002692, 45.471476943637505 ], [ 9.216135105375555, 45.471553707396275 ], [ 9.216226995467736, 45.471677543174927 ], [ 9.216226796625218, 45.471677614712796 ], [ 9.216253093762722, 45.471713039017651 ], [ 9.216223293197114, 45.471719023732327 ], [ 9.216249524992246, 45.471784685562298 ], [ 9.216197133365167, 45.471918567675942 ], [ 9.21618949568691, 45.471918567510073 ], [ 9.216189195913353, 45.47193885106622 ], [ 9.216188016941361, 45.471941863813804 ], [ 9.216185003129802, 45.472171580778699 ], [ 9.216184868494061, 45.472231655495357 ], [ 9.216161601832622, 45.473805892521298 ], [ 9.21750919943462, 45.473815796136826 ], [ 9.217597307198025, 45.473816452057449 ], [ 9.217745735940722, 45.474022021513981 ], [ 9.218282646858475, 45.473821551766228 ], [ 9.218852919507905, 45.473825792110148 ], [ 9.218856938922004, 45.473607120419459 ], [ 9.220145669688964, 45.473125912802338 ], [ 9.219978173305709, 45.472901937407421 ], [ 9.220045344656192, 45.472877013595692 ], [ 9.219999831273691, 45.4728144030137 ], [ 9.220046476851355, 45.472796899034705 ], [ 9.219950986210335, 45.472666303435425 ], [ 9.219951747559614, 45.472666015899343 ], [ 9.219845577374571, 45.472521061634936 ], [ 9.222015229736373, 45.473453252161228 ], [ 9.22205210301191, 45.47341227402427 ], [ 9.222075912641548, 45.473422658378659 ], [ 9.222088273197519, 45.473409865827144 ], [ 9.22265767221746, 45.473657900746979 ], [ 9.224070840644957, 45.472026378003612 ], [ 9.223305367148825, 45.471694436562416 ], [ 9.223672728687999, 45.471698803619979 ], [ 9.225109090983516, 45.472683498865649 ], [ 9.225260341531936, 45.47268067238187 ], [ 9.225422651044811, 45.472790538033628 ], [ 9.225478476173336, 45.47275667574111 ], [ 9.225460984307215, 45.473423140426796 ], [ 9.225468788895219, 45.473423244970164 ], [ 9.225469874549908, 45.473998099215024 ], [ 9.225447698485906, 45.473997943816784 ], [ 9.225433587052025, 45.474986094744146 ], [ 9.225418803414211, 45.476042848281971 ], [ 9.224559411762577, 45.475701275985529 ], [ 9.224545813583399, 45.475719123717781 ], [ 9.223708270101186, 45.47538139971882 ], [ 9.223693598188426, 45.476131002461599 ], [ 9.222746534632325, 45.476125433055898 ], [ 9.22271935979769, 45.478517140647725 ], [ 9.225418967299438, 45.478532513622184 ], [ 9.225406041362518, 45.479762824332013 ], [ 9.225405342950131, 45.479827794808571 ], [ 9.225379618762457, 45.480765938607448 ], [ 9.223991521497533, 45.480755878653056 ], [ 9.223975826823876, 45.481801024305369 ], [ 9.223960169660261, 45.48284033086486 ], [ 9.225411638852803, 45.482851176491586 ], [ 9.226765926626124, 45.482839223840962 ], [ 9.226765905941928, 45.481926560600506 ], [ 9.226773840695012, 45.481141563759707 ], [ 9.226781153082408, 45.481141629378271 ], [ 9.226781137127844, 45.481142063415646 ], [ 9.227595188552906, 45.481149062385164 ], [ 9.227675734965061, 45.48118249737891 ], [ 9.227756561674365, 45.481171319545702 ], [ 9.227750123324755, 45.48211318535391 ], [ 9.228337070392003, 45.482115368861351 ], [ 9.228332196372852, 45.482762653631177 ], [ 9.228868532468672, 45.482764772400479 ], [ 9.228867217223574, 45.482913386942869 ], [ 9.230471710493227, 45.482922834167688 ], [ 9.23056310878963, 45.482923312671133 ], [ 9.230726233558261, 45.482924801524348 ], [ 9.232232578216516, 45.482938280764934 ], [ 9.232228398169042, 45.482043952065474 ], [ 9.233164881510961, 45.4815483748446 ], [ 9.232387989194349, 45.48074551763353 ], [ 9.232104464502029, 45.48045244866281 ], [ 9.231691627552516, 45.480055593852406 ], [ 9.232253129020961, 45.480061315931941 ], [ 9.232253129702352, 45.480061284055502 ], [ 9.232298940838486, 45.480061749639688 ], [ 9.232299360005069, 45.480139738804795 ], [ 9.232616725249109, 45.480139073316401 ], [ 9.232616893669968, 45.480175966632771 ], [ 9.233165648468169, 45.48017466444599 ], [ 9.233157046936233, 45.480674828843277 ], [ 9.236120815677301, 45.480723554492812 ], [ 9.236122745146286, 45.480687883307894 ], [ 9.236283591516177, 45.48069091479131 ], [ 9.236340702696307, 45.479708852358101 ], [ 9.236502059965783, 45.479709875098024 ], [ 9.236505679866836, 45.479373919965731 ], [ 9.236588705427568, 45.479374494809051 ], [ 9.236589118602568, 45.479343845620626 ], [ 9.237527608057903, 45.479351765858077 ], [ 9.237568502242688, 45.47686871601487 ], [ 9.237681699588411, 45.476868863350319 ], [ 9.237684877406307, 45.47559866761236 ], [ 9.238395772812627, 45.47559960046172 ], [ 9.238396770950008, 45.475333661527181 ], [ 9.239053448796824, 45.475334744174319 ], [ 9.239060373008472, 45.473369576931631 ], [ 9.238895370588791, 45.473369243386941 ], [ 9.238896452765315, 45.473057570764915 ], [ 9.238418635540004, 45.473056553220609 ], [ 9.238418755346547, 45.473020944831255 ], [ 9.235592603915244, 45.473015632417052 ], [ 9.235588050038656, 45.474329779266824 ], [ 9.235587060917476, 45.474597659424298 ], [ 9.235543100877367, 45.474597423372416 ], [ 9.235543085762037, 45.473928891747093 ], [ 9.235545875739895, 45.473691851642208 ], [ 9.235543080411476, 45.473691900122745 ], [ 9.235543076601701, 45.473523044780997 ], [ 9.233499013861513, 45.473523050762971 ], [ 9.233499459647074, 45.473500065977582 ], [ 9.232197259461076, 45.473485918854536 ], [ 9.230895310154375, 45.473476477158634 ], [ 9.230894752642149, 45.473504217999412 ], [ 9.230874709376081, 45.473504052489908 ], [ 9.230887686825508, 45.472671760399841 ], [ 9.22889142677656, 45.472709822538285 ], [ 9.228558267903439, 45.472701093472558 ], [ 9.228569469167283, 45.470886079849876 ], [ 9.228424599964153, 45.47088558134076 ], [ 9.228425098687001, 45.470815032498386 ], [ 9.228282806456841, 45.470814502333546 ], [ 9.228284010059458, 45.470760969513172 ], [ 9.226978951306769, 45.470746282773113 ], [ 9.226985411021936, 45.469359541844497 ], [ 9.226749597758028, 45.469359043337988 ], [ 9.226749611624719, 45.469355723763258 ], [ 9.226408689511596, 45.469354813857514 ], [ 9.226410877447814, 45.46917975635877 ], [ 9.223745180324451, 45.469176020540303 ], [ 9.223744379604247, 45.469206184397784 ], [ 9.222843794571153, 45.469203881311898 ], [ 9.222836407918843, 45.46975788876285 ], [ 9.222569466841891, 45.469784018222335 ] ], [ [ 9.231102776729573, 45.477788436373508 ], [ 9.231102774934021, 45.477709244404885 ], [ 9.233215955340937, 45.47770862032521 ], [ 9.233215852225419, 45.477728486072174 ], [ 9.231630041923362, 45.477715841711763 ], [ 9.231628917307436, 45.477788436014933 ], [ 9.231304840528589, 45.477788436249256 ], [ 9.231102776729573, 45.477788436373508 ] ], [ [ 9.219773765560976, 45.472423016410183 ], [ 9.219793778251152, 45.472415811480893 ], [ 9.219779955591063, 45.472431467721428 ], [ 9.219773765560976, 45.472423016410183 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.190398668368006, 45.472897524393531 ], [ 9.19106019280686, 45.470644012632057 ], [ 9.189290400429766, 45.470348802238028 ], [ 9.187903080202688, 45.470085431112821 ], [ 9.187819795831054, 45.470417747976128 ], [ 9.187322784710318, 45.470358745113707 ], [ 9.187252308112862, 45.470609643517733 ], [ 9.186739037289424, 45.470552173624469 ], [ 9.186461523207837, 45.471806649435756 ], [ 9.186229636803292, 45.472817707979004 ], [ 9.184188338302, 45.472408573039608 ], [ 9.183831638415237, 45.473470649599946 ], [ 9.183234511101539, 45.473417516331807 ], [ 9.183098739686962, 45.474624006451926 ], [ 9.181741253343404, 45.474518135469054 ], [ 9.181727709161187, 45.474605706128465 ], [ 9.180634016253276, 45.474520435611609 ], [ 9.180527632647864, 45.475192123011624 ], [ 9.180441392824184, 45.47518548822606 ], [ 9.180150653482146, 45.477037159190793 ], [ 9.182244410902911, 45.477200182481006 ], [ 9.18313141640461, 45.47726938686607 ], [ 9.182109424956122, 45.477445858834059 ], [ 9.182098014308373, 45.477414696029854 ], [ 9.179522572728555, 45.477948039077873 ], [ 9.180073703400701, 45.480947975935351 ], [ 9.181794029514576, 45.48078271432292 ], [ 9.183231608432004, 45.480642580011356 ], [ 9.182884277923893, 45.479672876951838 ], [ 9.182872422208005, 45.479637172289763 ], [ 9.182909916915184, 45.479631935785974 ], [ 9.182811629687103, 45.479363531035737 ], [ 9.183275034672041, 45.479283599612984 ], [ 9.184549450344438, 45.479062650212704 ], [ 9.184536374168438, 45.479025365638549 ], [ 9.184631991537868, 45.47900876828708 ], [ 9.184315609174085, 45.478108147426326 ], [ 9.183969937842368, 45.477124587857645 ], [ 9.183890806816859, 45.477138252792905 ], [ 9.18395119690277, 45.476757362900216 ], [ 9.184238424100847, 45.476773060293056 ], [ 9.184251961077122, 45.476683766520061 ], [ 9.185454439190218, 45.476799787062397 ], [ 9.185212878835426, 45.476187915359908 ], [ 9.185994764342945, 45.476074592850132 ], [ 9.186273116614803, 45.476082597919863 ], [ 9.186276092342734, 45.476046316119799 ], [ 9.186862758884077, 45.476073812118209 ], [ 9.186828453024393, 45.47595375585604 ], [ 9.186991533741399, 45.475930117743154 ], [ 9.186924361481601, 45.475701821503534 ], [ 9.187064507170684, 45.475680363587422 ], [ 9.187059106721748, 45.475664236488967 ], [ 9.187402184647702, 45.475605098355182 ], [ 9.187386189670219, 45.475543984951891 ], [ 9.187421530411674, 45.475539507644072 ], [ 9.187374792334868, 45.475354055126935 ], [ 9.188372106118372, 45.475179863899434 ], [ 9.188623248078894, 45.475197748908904 ], [ 9.188794263861876, 45.475210108692202 ], [ 9.190046824360381, 45.475301649934124 ], [ 9.19004729631412, 45.475298388675832 ], [ 9.190355926883433, 45.475319976955269 ], [ 9.190420527058009, 45.474803094998833 ], [ 9.190466094858191, 45.474806217512928 ], [ 9.190508822576506, 45.474430598824732 ], [ 9.190596761684565, 45.474168281735082 ], [ 9.19073542911468, 45.474802498450202 ], [ 9.193469731506937, 45.474510571932584 ], [ 9.193459268859119, 45.474462433883652 ], [ 9.193477418979683, 45.47446051391011 ], [ 9.193073974787385, 45.4726112065553 ], [ 9.190398668368006, 45.472897524393531 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.246661488614224, 45.477015317179749 ], [ 9.249602526589458, 45.477676927786526 ], [ 9.250563647522821, 45.475586128715086 ], [ 9.247627010149483, 45.474953661754085 ], [ 9.246661488614224, 45.477015317179749 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.086351744527459, 45.477277384186941 ], [ 9.08683122954527, 45.477328100916495 ], [ 9.086424370877578, 45.477795468933238 ], [ 9.086513161725264, 45.477833379430621 ], [ 9.086327654383076, 45.478046667775033 ], [ 9.088627733118022, 45.47902948035081 ], [ 9.088810585125664, 45.478818989068223 ], [ 9.089180373097097, 45.478977057820266 ], [ 9.090591089685825, 45.477355091731702 ], [ 9.087909890073639, 45.47620947726039 ], [ 9.087881797189535, 45.476241983769356 ], [ 9.08780516718387, 45.476209278698477 ], [ 9.087263164622156, 45.476831916970667 ], [ 9.087590037483952, 45.47530633817135 ], [ 9.087543666783489, 45.475301437015482 ], [ 9.087576874928638, 45.475146914929212 ], [ 9.084744450534433, 45.474848598906831 ], [ 9.084711607507487, 45.475002241419865 ], [ 9.084643105099289, 45.474995001754259 ], [ 9.084615408901346, 45.475124110526288 ], [ 9.084000064152432, 45.475061045550312 ], [ 9.083945257153369, 45.475323580101794 ], [ 9.083631225036383, 45.475291376664529 ], [ 9.083204435228476, 45.477337161523849 ], [ 9.083521457703595, 45.477369808877327 ], [ 9.083509404360113, 45.477427442135841 ], [ 9.08626168130119, 45.477708865409596 ], [ 9.086351744527459, 45.477277384186941 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.135629350166345, 45.4723623931581 ], [ 9.135659810581371, 45.472960089045372 ], [ 9.135597654390079, 45.472963973117167 ], [ 9.135664247958676, 45.473452418622124 ], [ 9.135425399036972, 45.47329202012196 ], [ 9.134587187115498, 45.47391963658184 ], [ 9.134058245995979, 45.473575790428136 ], [ 9.131921579184256, 45.475115188828013 ], [ 9.133688227592646, 45.476273036683011 ], [ 9.133748419139421, 45.476249203068349 ], [ 9.133772845681822, 45.476744461980289 ], [ 9.134509703734068, 45.476734081817533 ], [ 9.134509816836381, 45.476739850357518 ], [ 9.136103707893389, 45.476712572268241 ], [ 9.136436912124289, 45.476706910628579 ], [ 9.13685290576378, 45.476701041376955 ], [ 9.136047681457523, 45.477319513023232 ], [ 9.136059229021519, 45.477327391828098 ], [ 9.13570988424658, 45.477593507341773 ], [ 9.135932437819225, 45.477737426092759 ], [ 9.135589991162242, 45.47799784763103 ], [ 9.136585144576358, 45.478642014753191 ], [ 9.137687126613857, 45.479398399014244 ], [ 9.137882456386405, 45.479248287293565 ], [ 9.138318854571772, 45.479536895481466 ], [ 9.138982976819637, 45.479043162596859 ], [ 9.139060304314269, 45.479092789160077 ], [ 9.140515494839681, 45.47798106358411 ], [ 9.14109286931485, 45.478357835739679 ], [ 9.141113302790297, 45.478616641494447 ], [ 9.141487942140724, 45.478615640325238 ], [ 9.141776407079359, 45.478803875626255 ], [ 9.142026831108405, 45.478614198067895 ], [ 9.143893193264242, 45.478609183373116 ], [ 9.143885097203961, 45.477812706419776 ], [ 9.143879790977595, 45.477271397937891 ], [ 9.143935357564066, 45.477062156241217 ], [ 9.143983371169112, 45.476905801298273 ], [ 9.144010800918627, 45.476885048585203 ], [ 9.14399324321565, 45.476873653148964 ], [ 9.143996044686318, 45.476864530201212 ], [ 9.144098016977626, 45.476787326905466 ], [ 9.144032757467249, 45.476744975295198 ], [ 9.144070939934982, 45.476620633815386 ], [ 9.144233393077169, 45.476507644758712 ], [ 9.144129150709041, 45.476431068934644 ], [ 9.144227592677636, 45.476110487173329 ], [ 9.144192884419949, 45.47609239179814 ], [ 9.144204199712231, 45.476049781220581 ], [ 9.144080223589656, 45.47603365519079 ], [ 9.143549145714529, 45.475756770424617 ], [ 9.143335263938035, 45.475137856378367 ], [ 9.142904734415803, 45.475146117116495 ], [ 9.142904683480548, 45.475144940874792 ], [ 9.142488307766401, 45.475153814039217 ], [ 9.142488154300557, 45.475150037033082 ], [ 9.142181129037903, 45.475156612161129 ], [ 9.142056133942246, 45.475083171800357 ], [ 9.141971692647498, 45.475157592326113 ], [ 9.139355507274489, 45.475213348412765 ], [ 9.139413486466767, 45.4765534527697 ], [ 9.138372252745915, 45.475863619351941 ], [ 9.138326205573486, 45.475899764580305 ], [ 9.138093541709353, 45.475748103799951 ], [ 9.137810281827294, 45.475965680907727 ], [ 9.137789152183556, 45.475454678958485 ], [ 9.137925920907925, 45.475350211704395 ], [ 9.137781062717794, 45.475259039777569 ], [ 9.137759486459043, 45.474737223244801 ], [ 9.137381145562397, 45.474741336928176 ], [ 9.137379615171298, 45.474715447131231 ], [ 9.138538589227212, 45.474664907121038 ], [ 9.138537357334217, 45.474651401314837 ], [ 9.138569007783703, 45.474650367318787 ], [ 9.138413246556999, 45.472312200864295 ], [ 9.138359539237257, 45.472313954569017 ], [ 9.138358649045083, 45.47229993808368 ], [ 9.135629350166345, 45.4723623931581 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.106035005039153, 45.477475591639539 ], [ 9.109251935076937, 45.477571899536642 ], [ 9.109325999434271, 45.476364488417914 ], [ 9.109401037954925, 45.475131770738166 ], [ 9.106285008994682, 45.475037967804823 ], [ 9.106269786096625, 45.475287620244693 ], [ 9.106221640043586, 45.475286928130551 ], [ 9.106213400512832, 45.475574124161348 ], [ 9.106151050081023, 45.475572242913117 ], [ 9.106035005039153, 45.477475591639539 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.209770270106699, 45.475955772005506 ], [ 9.210698332340845, 45.476899271992615 ], [ 9.211782367854898, 45.478001870832941 ], [ 9.21325444501668, 45.477286703169526 ], [ 9.214596972017691, 45.47663512801261 ], [ 9.213731217966155, 45.475755155940668 ], [ 9.213345001578023, 45.475362307747915 ], [ 9.213246345220313, 45.475262305348487 ], [ 9.213015010224771, 45.4750271603098 ], [ 9.213014574564788, 45.475027370736612 ], [ 9.21258842187502, 45.474595394173278 ], [ 9.212161621106182, 45.474801039479615 ], [ 9.212160994868922, 45.474800402302229 ], [ 9.211574916895222, 45.475083725971182 ], [ 9.211500798600818, 45.475119437316337 ], [ 9.211379970197921, 45.475177959317776 ], [ 9.211202301339268, 45.47526385391911 ], [ 9.210968157264562, 45.475377041465954 ], [ 9.210957597608299, 45.475382155872069 ], [ 9.210731520310796, 45.475491451973951 ], [ 9.209770270106699, 45.475955772005506 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.148024545970811, 45.478518222561938 ], [ 9.149804057547154, 45.480018443612359 ], [ 9.150112949518864, 45.47974974993361 ], [ 9.152601049518559, 45.479633912507062 ], [ 9.152526881541013, 45.477734917905941 ], [ 9.151639977432943, 45.477107655315535 ], [ 9.149729143608807, 45.477151914182215 ], [ 9.148883546688667, 45.477811557144413 ], [ 9.148024545970811, 45.478518222561938 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.193651658461061, 45.479643794657306 ], [ 9.195576921517375, 45.479466325335054 ], [ 9.19521243112235, 45.47746412499135 ], [ 9.193238327528359, 45.477634680132027 ], [ 9.193143234308879, 45.477172431354575 ], [ 9.192335585863443, 45.47726765099744 ], [ 9.192333960757331, 45.477261291040918 ], [ 9.189649999614268, 45.477549460627898 ], [ 9.189683223879452, 45.477702010916516 ], [ 9.189628506542086, 45.477709827020391 ], [ 9.189678889629091, 45.477956345928924 ], [ 9.189676483651848, 45.477953100603358 ], [ 9.189674197077151, 45.477947100521597 ], [ 9.189672292052508, 45.477947446723242 ], [ 9.189660464939609, 45.477931493598319 ], [ 9.189521308769184, 45.47797488492197 ], [ 9.188407355742738, 45.47817731666342 ], [ 9.188357225767897, 45.478057438511911 ], [ 9.188182417413566, 45.478090312239758 ], [ 9.188130647010778, 45.47807911742666 ], [ 9.188128413511354, 45.478073619702656 ], [ 9.188116407344991, 45.478076038241618 ], [ 9.187588488560996, 45.477961879602347 ], [ 9.186815891419863, 45.477855494602942 ], [ 9.185672411525029, 45.478568329598524 ], [ 9.185617552146129, 45.478579379163619 ], [ 9.185623759320549, 45.478598658287915 ], [ 9.185501281208772, 45.478675008150233 ], [ 9.185178579686845, 45.478748348637765 ], [ 9.185225484002997, 45.478846932151804 ], [ 9.185195520846618, 45.478865610213667 ], [ 9.185880283207315, 45.480467721492474 ], [ 9.185983147204258, 45.480439338313452 ], [ 9.186012649053328, 45.480501341407098 ], [ 9.186162592071691, 45.480468359912749 ], [ 9.18642997087635, 45.481024719636089 ], [ 9.186436129490442, 45.481023280792463 ], [ 9.186511427749902, 45.481193351951418 ], [ 9.188362583095222, 45.480924592208787 ], [ 9.188971513827914, 45.480560905027652 ], [ 9.188974593827256, 45.480551988765512 ], [ 9.189183216334889, 45.480444728252031 ], [ 9.189285222088079, 45.480426161119318 ], [ 9.189876555214044, 45.480315786230946 ], [ 9.190182212074472, 45.48143908202119 ], [ 9.190968607521677, 45.48133382341986 ], [ 9.190968698473164, 45.481334158099997 ], [ 9.193647242185348, 45.480975107400603 ], [ 9.193318686743712, 45.479767778317367 ], [ 9.193669549891487, 45.47973075782793 ], [ 9.193651658461061, 45.479643794657306 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.144567265798866, 45.480488092759515 ], [ 9.146602922090899, 45.481797703051043 ], [ 9.146628588504846, 45.481778446746233 ], [ 9.147006924922787, 45.482021240268864 ], [ 9.147123967860944, 45.48210216893888 ], [ 9.147130670246696, 45.48210065183585 ], [ 9.147341943310234, 45.482236232089946 ], [ 9.147354809331574, 45.4822261670597 ], [ 9.147475820432375, 45.482303724419673 ], [ 9.147526763266367, 45.482264645885728 ], [ 9.147805657365335, 45.482445878483603 ], [ 9.149777515077494, 45.480966417975083 ], [ 9.149762185658316, 45.480956356005336 ], [ 9.14982493737168, 45.480909374367023 ], [ 9.149517716029942, 45.480707898475735 ], [ 9.149556016305677, 45.480678907145283 ], [ 9.148772649378786, 45.48016979174524 ], [ 9.148802227105449, 45.480147599120521 ], [ 9.146794453077773, 45.478830316760039 ], [ 9.144937621686189, 45.480220162119316 ], [ 9.144938687417589, 45.480220852460661 ], [ 9.144567265798866, 45.480488092759515 ] ] ] } }, +{ "type": "Feature", "properties": { }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.166528672491289, 45.479433917931452 ], [ 9.166528937289199, 45.479434089516545 ], [ 9.166202475696222, 45.47968200507384 ], [ 9.168486603985343, 45.481162031848513 ], [ 9.168672286390276, 45.481020951051462 ], [ 9.168912623123498, 45.481176764422969 ], [ 9.169053779415398, 45.481069618324163 ], [ 9.169261000921146, 45.48120377341224 ], [ 9.171575476655688, 45.479447488428882 ], [ 9.17097353291407, 45.479057395433308 ], [ 9.170976203904342, 45.479053857360633 ], [ 9.170975677864853, 45.479053516710565 ], [ 9.17097877799902, 45.479051170011296 ], [ 9.168850747874266, 45.477671823966837 ], [ 9.168066196289764, 45.47826719416809 ], [ 9.16806580979854, 45.478266943761689 ], [ 9.167153818090936, 45.478959545157515 ], [ 9.166528672491289, 45.479433917931452 ] ] ] } } +] +} diff --git a/layers/stazioni_ferrovie_buffer.json b/layers/stazioni_ferrovie_buffer.json new file mode 100644 index 0000000..ce8878f --- /dev/null +++ b/layers/stazioni_ferrovie_buffer.json @@ -0,0 +1,36 @@ +{ +"type": "FeatureCollection", +"name": "stazioni_ferrovie_buffer", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.238350448879833, 45.432352491445592 ], [ 9.238299338031117, 45.432343089824947 ], [ 9.237207322673372, 45.432849567871536 ], [ 9.237121589334926, 45.433172263458452 ], [ 9.237030741161643, 45.433204654707154 ], [ 9.236722964946569, 45.434049198916242 ], [ 9.236864684908028, 45.434184434629401 ], [ 9.236857486886059, 45.434217606344227 ], [ 9.237050830640159, 45.434362062202183 ], [ 9.237402887662338, 45.43469800494703 ], [ 9.237528604066421, 45.434719023735042 ], [ 9.237572489246428, 45.434751811587432 ], [ 9.238058668885271, 45.434827419164236 ], [ 9.238720829624798, 45.434930166563746 ], [ 9.239655012320142, 45.434532505438753 ], [ 9.239736749437718, 45.434244327607082 ], [ 9.239936434914899, 45.433634671915854 ], [ 9.239935930226403, 45.433634123887423 ], [ 9.239945336740639, 45.43360543681267 ], [ 9.240050427910246, 45.43330645756371 ], [ 9.240045340616824, 45.43330045284852 ], [ 9.240093192829987, 45.433154515737385 ], [ 9.239052693915067, 45.43203866100761 ], [ 9.238350448879833, 45.432352491445592 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.132033474584057, 45.442077936742201 ], [ 9.12923371310532, 45.441279213703687 ], [ 9.128205432844608, 45.443050358337779 ], [ 9.131007313306808, 45.443850154337852 ], [ 9.132033474584057, 45.442077936742201 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.211663313811668, 45.446757916095962 ], [ 9.211745912893987, 45.446761924155219 ], [ 9.211743301365784, 45.446787661135659 ], [ 9.21440855612547, 45.446877967982495 ], [ 9.214601891628194, 45.444953313718244 ], [ 9.213084458771931, 45.444904327135376 ], [ 9.211878404993014, 45.444997977512848 ], [ 9.211663313811668, 45.446757916095962 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.167890196210271, 45.452280136786946 ], [ 9.167823789071564, 45.452292898836909 ], [ 9.168795388986466, 45.454780280392264 ], [ 9.170164092641347, 45.454517266968352 ], [ 9.170202013969213, 45.454510015853586 ], [ 9.171449099374859, 45.454270676485145 ], [ 9.171342272612648, 45.453996875593987 ], [ 9.171342603932827, 45.453996811955179 ], [ 9.171190385311641, 45.453607260249072 ], [ 9.171199989270185, 45.453605408390459 ], [ 9.170406284152024, 45.451572378793095 ], [ 9.167809087721603, 45.452072608632363 ], [ 9.167890196210271, 45.452280136786946 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.23568114287462, 45.458490974464191 ], [ 9.235737774247182, 45.459306417039741 ], [ 9.238403516551605, 45.459238799994814 ], [ 9.238311143404013, 45.457242707575055 ], [ 9.235569858917115, 45.457307820981882 ], [ 9.235640977876814, 45.45841243935849 ], [ 9.23568114287462, 45.458490974464191 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.172950741122774, 45.468213567601445 ], [ 9.174102366548874, 45.469020806868841 ], [ 9.174165865717425, 45.469059429924975 ], [ 9.17421693543432, 45.469094791912561 ], [ 9.174301400843834, 45.469149044727146 ], [ 9.174359490599363, 45.469186010143353 ], [ 9.174430720139169, 45.469232610469447 ], [ 9.174497002007488, 45.469273076514661 ], [ 9.174571575283, 45.469323122281786 ], [ 9.174630447113557, 45.469356913503184 ], [ 9.175635879848839, 45.47020751124181 ], [ 9.176750028185273, 45.46919764599312 ], [ 9.17685185848341, 45.469137030968753 ], [ 9.177973806606312, 45.468498224446229 ], [ 9.176937472453215, 45.467741578911806 ], [ 9.176761412655635, 45.467606452598901 ], [ 9.176492539297682, 45.467423089015242 ], [ 9.175630746307085, 45.466991848070464 ], [ 9.174748228934233, 45.46733629081136 ], [ 9.173132455177241, 45.468041240545112 ], [ 9.173212672329891, 45.468091011535492 ], [ 9.172950741122774, 45.468213567601445 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.220328680324327, 45.460599049702651 ], [ 9.227490347181108, 45.460572762159863 ], [ 9.227483855527598, 45.459634593620208 ], [ 9.227484893763849, 45.459520292594441 ], [ 9.227485405700282, 45.459482644785346 ], [ 9.227486244200705, 45.459345146881084 ], [ 9.227478777309736, 45.458375791742505 ], [ 9.220312119772512, 45.458402070920819 ], [ 9.220328680324327, 45.460599049702651 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.252468371693329, 45.472091252076616 ], [ 9.252733551345665, 45.473941559009809 ], [ 9.255428726190376, 45.4737005833952 ], [ 9.255166764093149, 45.471848430230722 ], [ 9.252468371693329, 45.472091252076616 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.162364282549568, 45.482458248647099 ], [ 9.164423203904718, 45.480557214417622 ], [ 9.163276167469885, 45.479931645952256 ], [ 9.162106025823146, 45.479294156368994 ], [ 9.160026881065344, 45.481211055428069 ], [ 9.161201961122389, 45.481838190604954 ], [ 9.162364282549568, 45.482458248647099 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.189625974918345, 45.485054544327305 ], [ 9.188474030154257, 45.483771800984343 ], [ 9.187568518384683, 45.482763973957383 ], [ 9.186204100108943, 45.483366284364621 ], [ 9.186156043127005, 45.483387477084094 ], [ 9.185975266562595, 45.483467210433574 ], [ 9.184793912185864, 45.483988899685279 ], [ 9.185564834056956, 45.484847749799236 ], [ 9.185586925192222, 45.484872281552853 ], [ 9.185607975168947, 45.484895746015319 ], [ 9.185649432689893, 45.484942014372479 ], [ 9.185675247146598, 45.484970718743121 ], [ 9.185700079871323, 45.484998344487273 ], [ 9.185741102590072, 45.485043926498506 ], [ 9.185771311555019, 45.485077655009604 ], [ 9.185793243953375, 45.485102072817618 ], [ 9.185838131305385, 45.485152081915828 ], [ 9.185866121946395, 45.485183184280537 ], [ 9.185891096853064, 45.48521101124264 ], [ 9.185934847713714, 45.485259702970602 ], [ 9.185987912075371, 45.485318753286947 ], [ 9.186850650336254, 45.486279836685547 ], [ 9.188344019231451, 45.485620591370299 ], [ 9.189625974918345, 45.485054544327305 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.235039581007715, 45.485226159081016 ], [ 9.235206426354956, 45.485287882675344 ], [ 9.235015366991608, 45.485524151151225 ], [ 9.235178862612745, 45.485589589293461 ], [ 9.23517278575121, 45.485597203036384 ], [ 9.235295029270812, 45.48564493833149 ], [ 9.234987198950105, 45.486003571772947 ], [ 9.236173391278145, 45.48652362321711 ], [ 9.236564434244723, 45.486699837314205 ], [ 9.237530844712907, 45.487177949027206 ], [ 9.237692516645499, 45.487012171899934 ], [ 9.237996489641306, 45.48712904588718 ], [ 9.238734003970054, 45.486194893906699 ], [ 9.239854753401781, 45.484775204924212 ], [ 9.239529860837649, 45.484645599808644 ], [ 9.239586424616698, 45.484549540271836 ], [ 9.239499115101133, 45.484522990322553 ], [ 9.239502185985064, 45.484518263281053 ], [ 9.239098182401028, 45.484394052583653 ], [ 9.239108308588614, 45.484380134803182 ], [ 9.238032946379755, 45.484048435741457 ], [ 9.237273743870388, 45.4837455547327 ], [ 9.237256086779174, 45.483776373083565 ], [ 9.236369219839725, 45.483457151067284 ], [ 9.235039581007715, 45.485226159081016 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.10960049297841, 45.498450680196626 ], [ 9.112163056832433, 45.497306797493778 ], [ 9.11138602453382, 45.49645128116174 ], [ 9.110595112085596, 45.495581433984491 ], [ 9.10803241151357, 45.496726002898271 ], [ 9.10960049297841, 45.498450680196626 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.164873041367537, 45.497195019961282 ], [ 9.167212655151143, 45.496211258559853 ], [ 9.165739224424273, 45.494621594164414 ], [ 9.163275894755753, 45.495674403456256 ], [ 9.164873041367537, 45.497195019961282 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.239028096575147, 45.499589013055108 ], [ 9.241869286554595, 45.501757337335754 ], [ 9.243831888561719, 45.500495270122308 ], [ 9.24098931446262, 45.498326140385345 ], [ 9.239028096575147, 45.499589013055108 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.100524698144804, 45.501961979665346 ], [ 9.101583764253782, 45.502488510910332 ], [ 9.102593768737144, 45.501836565723387 ], [ 9.103622005147946, 45.501189581800269 ], [ 9.101663657401742, 45.499660242025897 ], [ 9.099496377437982, 45.501125765424042 ], [ 9.100524698144804, 45.501961979665346 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.210418516786582, 45.500168585960353 ], [ 9.210339025492425, 45.500174084428558 ], [ 9.210604640722508, 45.502043346292595 ], [ 9.213397649085882, 45.501848802628267 ], [ 9.213129189405008, 45.499960157620585 ], [ 9.210415842289098, 45.50014976491412 ], [ 9.210418516786582, 45.500168585960353 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.202448918579908, 45.498778685297921 ], [ 9.204838082800253, 45.498026190431986 ], [ 9.203754458263532, 45.496334098563317 ], [ 9.2013680757539, 45.497082488489134 ], [ 9.202448918579908, 45.498778685297921 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.09191194045207, 45.506588380728211 ], [ 9.095599693751723, 45.505799213471732 ], [ 9.094696904366229, 45.503727818203444 ], [ 9.090972210174401, 45.504554871394987 ], [ 9.09191194045207, 45.506588380728211 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.127159629763675, 45.507855509847268 ], [ 9.128059437549625, 45.509727972332428 ], [ 9.128237079326055, 45.509686781064332 ], [ 9.128267565113056, 45.50975674450391 ], [ 9.130740457087732, 45.509178339706935 ], [ 9.130721660529797, 45.509128266742607 ], [ 9.130869356276428, 45.509091664790986 ], [ 9.129995550863095, 45.507156711918512 ], [ 9.127159629763675, 45.507855509847268 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.261294179876005, 45.509551646517288 ], [ 9.261036291536554, 45.51044640069172 ], [ 9.259257899748256, 45.510204462482967 ], [ 9.258978649401694, 45.511143193411954 ], [ 9.258685952741503, 45.512173708194375 ], [ 9.260255789465791, 45.512391638351374 ], [ 9.261752009911923, 45.512599398322571 ], [ 9.262040421275721, 45.511815005731549 ], [ 9.262098795943652, 45.511823265808673 ], [ 9.263443940244546, 45.512013954532094 ], [ 9.264002699970796, 45.510075642436199 ], [ 9.26398822994452, 45.510073618822254 ], [ 9.264032446926974, 45.509920120036625 ], [ 9.261391300588592, 45.509544820467291 ], [ 9.261385142671262, 45.509566191146973 ], [ 9.261294179876005, 45.509551646517288 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.134452010546793, 45.506701408210034 ], [ 9.134794533790108, 45.507536286696435 ], [ 9.13578675222198, 45.507850153232091 ], [ 9.137357002246723, 45.507525098803718 ], [ 9.137854284055573, 45.506847930826773 ], [ 9.137517800396994, 45.506055187617548 ], [ 9.13656391593992, 45.505706764180296 ], [ 9.134967370990662, 45.506034488255239 ], [ 9.134452010546793, 45.506701408210034 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.157097399143233, 45.504175226733196 ], [ 9.158445461290015, 45.504349894730879 ], [ 9.158498897601477, 45.504356786821802 ], [ 9.158630101397963, 45.504373874077771 ], [ 9.158678525615777, 45.504379855614992 ], [ 9.158797940758497, 45.504395684124233 ], [ 9.158853677412191, 45.504402555539166 ], [ 9.158978928605213, 45.504418484128706 ], [ 9.159015895902224, 45.504423104623996 ], [ 9.159063264839626, 45.504429725240044 ], [ 9.160361508200545, 45.504610484162811 ], [ 9.16071029366149, 45.503317670176074 ], [ 9.160742761966318, 45.503197229879092 ], [ 9.160746955440173, 45.503180243059283 ], [ 9.161190627499606, 45.501510680763403 ], [ 9.159766246809671, 45.501301971065502 ], [ 9.159633460643448, 45.501285328552179 ], [ 9.159461534134081, 45.501263688153841 ], [ 9.159344196100625, 45.501248980398138 ], [ 9.157923787584894, 45.501085048486061 ], [ 9.157667333856562, 45.502040666716056 ], [ 9.157637196461165, 45.502154074793602 ], [ 9.157476189869628, 45.502756974701228 ], [ 9.157097399143233, 45.504175226733196 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.193568561600552, 45.505043667944285 ], [ 9.196320923957614, 45.504599359118949 ], [ 9.195727301071461, 45.502793877369413 ], [ 9.192974243124135, 45.503239365961385 ], [ 9.193568561600552, 45.505043667944285 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.143757761075554, 45.519541079544581 ], [ 9.143832918410052, 45.519573134816824 ], [ 9.143675033944014, 45.519754991790379 ], [ 9.145909328355497, 45.520708295434915 ], [ 9.147530387246508, 45.518840364583532 ], [ 9.146340689653456, 45.518333440375045 ], [ 9.145221178194683, 45.517854216995893 ], [ 9.143757761075554, 45.519541079544581 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.168201410125613, 45.519471241013079 ], [ 9.166961749282436, 45.519758263558025 ], [ 9.166804172010975, 45.519796677851922 ], [ 9.166777411153966, 45.519803450649007 ], [ 9.166686827053759, 45.519826854408677 ], [ 9.166663148366592, 45.51983295905837 ], [ 9.16662422053847, 45.519842917321014 ], [ 9.166556361197646, 45.519860046830807 ], [ 9.165238267365689, 45.520189857119831 ], [ 9.165727108634544, 45.521149263696834 ], [ 9.165813407542705, 45.521318041987719 ], [ 9.165996559549523, 45.521674525760488 ], [ 9.166782749168092, 45.523196373600683 ], [ 9.168172072131641, 45.52284445005342 ], [ 9.168212640960538, 45.522834228592977 ], [ 9.168298190370839, 45.522813749533384 ], [ 9.168317625484502, 45.522809009345494 ], [ 9.168373334424466, 45.522795466286674 ], [ 9.168400109344542, 45.522789015552277 ], [ 9.169643475605286, 45.522492427413027 ], [ 9.169133678636104, 45.52143629911798 ], [ 9.169061339574027, 45.521285140846551 ], [ 9.169032405799658, 45.521223955808942 ], [ 9.16890451355585, 45.520949686073259 ], [ 9.168886186380748, 45.520910582790066 ], [ 9.168736808341972, 45.520594639962319 ], [ 9.168201410125613, 45.519471241013079 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.213667469085783, 45.514253348987502 ], [ 9.216088173955342, 45.513383404868698 ], [ 9.214697949570162, 45.511486940021605 ], [ 9.212277297250436, 45.512356858644303 ], [ 9.212984296929056, 45.513321425443301 ], [ 9.213667469085783, 45.514253348987502 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.20952288713751, 45.513043722107859 ], [ 9.209449652478041, 45.513064126135355 ], [ 9.209574234139504, 45.513288122905713 ], [ 9.209538935442694, 45.513297859950079 ], [ 9.210031066018983, 45.514109486247861 ], [ 9.210402416595349, 45.514777138913338 ], [ 9.210431031258146, 45.51476909372446 ], [ 9.210574816806565, 45.515006215247929 ], [ 9.210683721741209, 45.514974631323561 ], [ 9.21074194913621, 45.515078876183445 ], [ 9.213170903075989, 45.514423652583112 ], [ 9.213103316120524, 45.514303120355251 ], [ 9.213188420926445, 45.514279668578681 ], [ 9.21318536102342, 45.514274314135896 ], [ 9.21321692418935, 45.514265771985229 ], [ 9.212314929619421, 45.512531594388882 ], [ 9.212301210134498, 45.512535383955168 ], [ 9.2121789058804, 45.512304133045212 ], [ 9.212079751700855, 45.512331753948914 ], [ 9.21207637951319, 45.512325796421152 ], [ 9.212015794891144, 45.512342398982703 ], [ 9.21194127279456, 45.512205279230159 ], [ 9.209529108256367, 45.512917177857524 ], [ 9.209581156598523, 45.513009300856801 ], [ 9.209513869785399, 45.513027722499643 ], [ 9.20952288713751, 45.513043722107859 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.201421003534362, 45.486215442007854 ], [ 9.20139358327682, 45.486228393801362 ], [ 9.201774573790468, 45.486611515630401 ], [ 9.202640767641164, 45.487581808061194 ], [ 9.202684994750436, 45.48755574656866 ], [ 9.202888659516061, 45.487746684885934 ], [ 9.203359252726173, 45.488243334622069 ], [ 9.203398141203888, 45.488224323187701 ], [ 9.204230238589112, 45.489004390833891 ], [ 9.204235926879317, 45.489000882876873 ], [ 9.204247453008081, 45.48901232943355 ], [ 9.206270764060825, 45.487946794945898 ], [ 9.20627224542114, 45.487948240620284 ], [ 9.207413182987214, 45.487397821122102 ], [ 9.20850944651915, 45.486883236003266 ], [ 9.207752417935186, 45.486076329522987 ], [ 9.207768090477813, 45.486068616021917 ], [ 9.207512260892008, 45.485820343494744 ], [ 9.206895119844958, 45.485162513045559 ], [ 9.206853325153098, 45.485180859578868 ], [ 9.206416158308304, 45.484756587782663 ], [ 9.206175154786596, 45.484511046394118 ], [ 9.205423052111099, 45.483744591249298 ], [ 9.204188093678258, 45.484342532694328 ], [ 9.203937985880479, 45.48446947260954 ], [ 9.20362605647475, 45.484627888010245 ], [ 9.203216511451156, 45.484835807944705 ], [ 9.202738586756777, 45.48507836810866 ], [ 9.202559030382155, 45.485169546871433 ], [ 9.202283214224419, 45.485309541347377 ], [ 9.201121434337564, 45.485879855782628 ], [ 9.201421003534362, 45.486215442007854 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "way\/21773888", "@id": "way\/21773888", "addr_city": "Milano", "addr_count": "IT", "addr_house": "4", "addr_postc": "20144", "addr_stree": "Piazzale Stazione Genova", "building": "train_station", "name": "Stazione di Milano Porta Genova", "old_name": "Stazione di Milano Porta Ticinese", "public_tra": "station", "start_date": "1870", "wikidata": "Q766538", "wikipedia": "it:Stazione di Milano Porta Genova", "building_l": null, "disused": null, "source": null, "layer": null, "departures": null, "operator": null, "wheelchair": null, "platforms": null, "railway": null, "roof_level": null, "bench": null, "bin": null, "covered": null, "ref": null, "shelter": null, "tactile_pa": null, "addr_hou_1": null, "amenity": null, "alt_name": null, "man_made": null, "network": null, "surveillan": null, "noaddress": null, "platform_r": null, "internet_a": null, "internet_1": null, "platform": null, "subway": null, "building_m": null, "constructi": null, "roof_mater": null, "roof_shape": null, "name_es": null, "name_it": null, "tourism": null, "loc_name": null, "building_c": null, "roof_colou": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.127009523794266, 45.487923044069113 ], [ 9.12493157412319, 45.489805834029156 ], [ 9.127299172059981, 45.491129121655554 ], [ 9.129426695119676, 45.489216432942705 ], [ 9.127009523794266, 45.487923044069113 ] ] ] } } +] +} diff --git a/layers/stazioni_metro_buffer.json b/layers/stazioni_metro_buffer.json new file mode 100644 index 0000000..6c80623 --- /dev/null +++ b/layers/stazioni_metro_buffer.json @@ -0,0 +1,93 @@ +{ +"type": "FeatureCollection", +"name": "stazioni_metro", +"crs": { "type": "name", "properties": { "name": "urn:ogc:def:crs:OGC:1.3:CRS84" } }, +"features": [ +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.257512240271762, 45.429203530010305 ], [ 9.257448411406903, 45.428925525070689 ], [ 9.257265700190434, 45.428675014679591 ], [ 9.256981992703857, 45.428476520031943 ], [ 9.256625060195697, 45.428349470545193 ], [ 9.256229840644757, 45.428306302210018 ], [ 9.255835019192922, 45.428351240459236 ], [ 9.255479242023807, 45.428479886623442 ], [ 9.255197334050871, 45.428679648427284 ], [ 9.255016890407491, 45.428930972415209 ], [ 9.254955575236613, 45.429209257742571 ], [ 9.255019392195829, 45.429487264087236 ], [ 9.255202096127661, 45.429737778051674 ], [ 9.255485803733091, 45.429936277076081 ], [ 9.25584274371819, 45.430063330071185 ], [ 9.256237975248228, 45.430106499706277 ], [ 9.256632808605701, 45.430061560052025 ], [ 9.256988593059457, 45.42993291031447 ], [ 9.25727050091354, 45.429733144133877 ], [ 9.257450937079984, 45.429481816637583 ], [ 9.257512240271762, 45.429203530010305 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.178601164798723, 45.429992913114077 ], [ 9.178537722283746, 45.429714863532602 ], [ 9.178355357194095, 45.429464226428045 ], [ 9.178071921734244, 45.42926553540029 ], [ 9.177715160530054, 45.429138239089866 ], [ 9.177319994796036, 45.42909479764679 ], [ 9.176925104407607, 45.429139463235245 ], [ 9.176569142294662, 45.429267863873505 ], [ 9.176286951469979, 45.429467431318592 ], [ 9.176106154749224, 45.429718631140211 ], [ 9.176044450832885, 45.429996874649383 ], [ 9.176107881430156, 45.430274925619791 ], [ 9.17629023920507, 45.430525566287869 ], [ 9.176573674747141, 45.430724261692582 ], [ 9.176930443399096, 45.430851561521585 ], [ 9.177325621101634, 45.430895004280877 ], [ 9.177720523407768, 45.43085033730349 ], [ 9.178076492835446, 45.430721933101708 ], [ 9.17835868357791, 45.430522361279635 ], [ 9.178539472850899, 45.430271157939451 ], [ 9.178601164798723, 45.429992913114077 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.239367540911282, 45.433583532876717 ], [ 9.23930379605966, 45.433305517840196 ], [ 9.239121150780944, 45.433054978483263 ], [ 9.238837484703396, 45.432856438836488 ], [ 9.238480565023341, 45.432729332722019 ], [ 9.238085328464578, 45.432686101673255 ], [ 9.237690461833823, 45.432730977261308 ], [ 9.237334615736337, 45.432859566949979 ], [ 9.23705262183157, 45.433059283991895 ], [ 9.236872083663295, 45.433310579313215 ], [ 9.236810674626511, 45.433588854875744 ], [ 9.236874407567086, 45.433866871313832 ], [ 9.237057045552625, 45.434117414242358 ], [ 9.237340711740623, 45.434315958266609 ], [ 9.237697638892561, 45.434443067892317 ], [ 9.238092887430634, 45.434486300244906 ], [ 9.23848776597244, 45.434441423255301 ], [ 9.238843619363095, 45.434312829995029 ], [ 9.239125613157416, 45.434113108575673 ], [ 9.239306143853806, 45.433861809743121 ], [ 9.239367540911282, 45.433583532876717 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.224748096356429, 45.440408396210813 ], [ 9.22468441544933, 45.44013037322636 ], [ 9.224501812639772, 45.439879810711794 ], [ 9.224218163399993, 45.439681234964624 ], [ 9.22386123327909, 45.439554083340674 ], [ 9.223465960023274, 45.439510801827709 ], [ 9.223071034031104, 45.439555626936148 ], [ 9.222715111717648, 45.439684171070731 ], [ 9.222433032201737, 45.439883851943044 ], [ 9.222252407406405, 45.440135124020003 ], [ 9.222190919205923, 45.440413391539096 ], [ 9.22225458819555, 45.440691415922444 ], [ 9.2224371837038, 45.440941982007629 ], [ 9.222720833047264, 45.441140562133299 ], [ 9.223077770637266, 45.441267717271195 ], [ 9.223473055874633, 45.441311000091346 ], [ 9.223867993784273, 45.441266173584033 ], [ 9.224223923399046, 45.441137625878831 ], [ 9.224506002811262, 45.440937940627983 ], [ 9.224686620137497, 45.440686665037092 ], [ 9.224748096356429, 45.440408396210813 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.219760050996623, 45.442808251944967 ], [ 9.219696391833573, 45.442530226256061 ], [ 9.219513803291061, 45.442279655846335 ], [ 9.219230159445171, 45.442081067786212 ], [ 9.218873225317317, 45.441953900636669 ], [ 9.218477939046091, 45.441910601905143 ], [ 9.218082992303955, 45.44195540978729 ], [ 9.217727043536824, 45.442083938374005 ], [ 9.217444934452597, 45.442283606898798 ], [ 9.217264279868331, 45.442534871037211 ], [ 9.217202764574116, 45.442813135804016 ], [ 9.217266411817462, 45.443091162890887 ], [ 9.217448993055855, 45.443341736870913 ], [ 9.217732637003134, 45.443540329309954 ], [ 9.218089578599155, 45.443667499974367 ], [ 9.218484876852751, 45.443710800014252 ], [ 9.218879835514588, 45.44366599073409 ], [ 9.219235791585842, 45.44353745857709 ], [ 9.219517900568681, 45.443337785673407 ], [ 9.219698547684766, 45.443086518020067 ], [ 9.219760050996623, 45.442808251944967 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.168955475700836, 45.443731420625504 ], [ 9.168892064949127, 45.443453366311871 ], [ 9.16870969808123, 45.443202714414831 ], [ 9.168426227476958, 45.443003999982267 ], [ 9.168069401202981, 45.442876673945342 ], [ 9.167674146843044, 45.442833199363534 ], [ 9.167279152946852, 45.442877831644502 ], [ 9.166923082574941, 45.443006202066734 ], [ 9.166640789335963, 45.443205745345033 ], [ 9.16645990606998, 45.443456929415035 ], [ 9.166398139949374, 45.443735167130058 ], [ 9.166461538773369, 45.444013222831295 ], [ 9.166643898317604, 45.444263878292375 ], [ 9.166927368999668, 45.444462597104057 ], [ 9.167284202723168, 45.444589926662466 ], [ 9.167679469058898, 45.444633402563106 ], [ 9.168074474882806, 45.444588768894505 ], [ 9.168430552578378, 45.444460394908276 ], [ 9.168712845739561, 45.444260847250867 ], [ 9.168893721556023, 45.444009659659358 ], [ 9.168955475700836, 45.443731420625504 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.169291121225182, 45.436893117087486 ], [ 9.169227716582526, 45.43661506261742 ], [ 9.16904537034616, 45.436364410925542 ], [ 9.168761932875933, 45.436165697039719 ], [ 9.168405148995109, 45.436038371837803 ], [ 9.168009942138063, 45.435994898297615 ], [ 9.16761499620519, 45.436039531724944 ], [ 9.167258969562646, 45.436167903285963 ], [ 9.166976711538958, 45.436367447583976 ], [ 9.16679585152707, 45.436618632454589 ], [ 9.166734094422742, 45.436896870672641 ], [ 9.166797487142016, 45.437174926530069 ], [ 9.16697982605748, 45.437425581785149 ], [ 9.167263263605626, 45.437624300049045 ], [ 9.167620054933426, 45.437751628771565 ], [ 9.168015273762014, 45.437795103630179 ], [ 9.168410231618273, 45.43775046881553 ], [ 9.168766265581713, 45.437622093691267 ], [ 9.169048523527486, 45.43742254501521 ], [ 9.169229376092392, 45.437171356623963 ], [ 9.169291121225182, 45.436893117087486 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.231589621600795, 45.437125319773791 ], [ 9.231525910867019, 45.436847300502194 ], [ 9.231343288468004, 45.436596748818957 ], [ 9.231059631793, 45.436398189961274 ], [ 9.230702707118464, 45.436271059631807 ], [ 9.230307451657302, 45.436227801734013 ], [ 9.22991255406636, 45.436272650466947 ], [ 9.229556667981029, 45.436401215922942 ], [ 9.229274628974432, 45.436600913726657 ], [ 9.229094045004718, 45.436852196687461 ], [ 9.229032593950031, 45.437130467977347 ], [ 9.229096292769398, 45.437408488649083 ], [ 9.229278907870942, 45.437659043903416 ], [ 9.229562564652801, 45.43785760713908 ], [ 9.229919496797702, 45.437984740981221 ], [ 9.230314764239315, 45.438028000184623 ], [ 9.230709673744666, 45.4379831500516 ], [ 9.231065567127466, 45.437854581024517 ], [ 9.231347606027203, 45.437654878842793 ], [ 9.231528182526555, 45.4374035923693 ], [ 9.231589621600795, 45.437125319773791 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.212095140946985, 45.446761237587417 ], [ 9.21203151490241, 45.446483207759911 ], [ 9.211848947431594, 45.446232625233741 ], [ 9.211565310548586, 45.446034018265387 ], [ 9.211208368593748, 45.445906827266661 ], [ 9.210813060472008, 45.445863502079305 ], [ 9.210418079994517, 45.445908283488393 ], [ 9.21006208890892, 45.446036788176016 ], [ 9.209779933064924, 45.446236437714994 ], [ 9.209599231856256, 45.446487689639447 ], [ 9.209537674636728, 45.446765950159914 ], [ 9.209601288757996, 45.447043981384013 ], [ 9.209783848920283, 45.447294567480007 ], [ 9.210067485901137, 45.447493178827884 ], [ 9.210424435322828, 45.447620373342971 ], [ 9.210819755428341, 45.447663699840419 ], [ 9.211214747829134, 45.44761891703471 ], [ 9.211570746223266, 45.447490408777263 ], [ 9.211852901969415, 45.447290754858784 ], [ 9.212033595711233, 45.447039499417976 ], [ 9.212095140946985, 45.446761237587417 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.204679047090467, 45.451431820428034 ], [ 9.204615452134089, 45.451153786643474 ], [ 9.204432902318405, 45.450903192438844 ], [ 9.204149267929932, 45.450704567213904 ], [ 9.203792313065316, 45.450577353167425 ], [ 9.203396977893329, 45.450534002396999 ], [ 9.203001958872711, 45.450578758191746 ], [ 9.202645921523414, 45.450707239740801 ], [ 9.202363716223097, 45.450906870881973 ], [ 9.202182967206136, 45.451158110950331 ], [ 9.202121368506022, 45.451436367317235 ], [ 9.202184951535083, 45.451714402497124 ], [ 9.202367494037636, 45.451965000271237 ], [ 9.202651128520527, 45.452163629876409 ], [ 9.203008090851052, 45.452290847440779 ], [ 9.203403438008717, 45.452334199523044 ], [ 9.203798468956647, 45.452289442332997 ], [ 9.204154513619077, 45.452160957214453 ], [ 9.204436718824967, 45.451961321693048 ], [ 9.204617460376021, 45.451710078106785 ], [ 9.204679047090467, 45.451431820428034 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.170618563119724, 45.452030801740236 ], [ 9.17055513478053, 45.45175274878067 ], [ 9.170372733701802, 45.451502099953771 ], [ 9.170089215612508, 45.451303390006714 ], [ 9.169732333227367, 45.451176069431398 ], [ 9.169337019622132, 45.451132600752608 ], [ 9.168941969145068, 45.45117723880017 ], [ 9.168585850394544, 45.45130561428811 ], [ 9.168303521714481, 45.451505161435641 ], [ 9.16812261941427, 45.451756347799773 ], [ 9.168060852530052, 45.452034586009404 ], [ 9.168124268936573, 45.452312640357334 ], [ 9.168306662689069, 45.452563292749488 ], [ 9.16859018085696, 45.452762007076913 ], [ 9.168947070695493, 45.452889331174553 ], [ 9.16934239628198, 45.45293280117221 ], [ 9.169737458691714, 45.452888161736325 ], [ 9.170093584768464, 45.452759782683088 ], [ 9.170375913369936, 45.452560231155211 ], [ 9.170556808216757, 45.452309041268748 ], [ 9.170618563119724, 45.452030801740236 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.114204441932554, 45.455379133272523 ], [ 9.114141286972195, 45.455101048886931 ], [ 9.11395912479505, 45.454850309893523 ], [ 9.11367578774793, 45.454651459866504 ], [ 9.113319010827617, 45.454523963009798 ], [ 9.112923716789041, 45.45448029910262 ], [ 9.112528598065994, 45.454524742083514 ], [ 9.112172329935762, 45.454652941759406 ], [ 9.111889785361384, 45.454852349558195 ], [ 9.111708621781775, 45.455103446677455 ], [ 9.111646573806105, 45.45538165448302 ], [ 9.111709716823468, 45.455659740245551 ], [ 9.111891871651814, 45.455910482797528 ], [ 9.112175208751315, 45.456109337205476 ], [ 9.112531993105184, 45.456236837592137 ], [ 9.112927299119129, 45.456280502829927 ], [ 9.113322429785166, 45.456236058472093 ], [ 9.113678705264205, 45.456107855237647 ], [ 9.113961249786202, 45.455908443057915 ], [ 9.114142405932252, 45.45565734240872 ], [ 9.114204441932554, 45.455379133272523 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.123541890836965, 45.457561628674767 ], [ 9.123478687533694, 45.457283549609237 ], [ 9.123296476959331, 45.457032825653556 ], [ 9.123013096197763, 45.456833998909751 ], [ 9.122656284524238, 45.456706531302522 ], [ 9.122260968094949, 45.456662899748125 ], [ 9.12186584153506, 45.456707375018446 ], [ 9.121509580888981, 45.456835603759927 ], [ 9.121227058387536, 45.457035034555588 ], [ 9.1210459293096, 45.457286146351919 ], [ 9.120983924887703, 45.457564359077971 ], [ 9.121047116247968, 45.457842439522459 ], [ 9.121229319476207, 45.458093167038157 ], [ 9.121512700294495, 45.458291998163226 ], [ 9.121869519405939, 45.458419469299471 ], [ 9.122264847813289, 45.45846310218267 ], [ 9.122659986316187, 45.458418625533412 ], [ 9.123016254308389, 45.458290393231906 ], [ 9.123298776753106, 45.458090958054989 ], [ 9.123479898393128, 45.457839842729634 ], [ 9.123541890836965, 45.457561628674767 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.130538732327414, 45.45941215028602 ], [ 9.130475492552799, 45.45913407522287 ], [ 9.130293245016301, 45.458883362550758 ], [ 9.130009830419652, 45.458684553267076 ], [ 9.129652991349644, 45.458557107587346 ], [ 9.12925765664375, 45.458513500281519 ], [ 9.128862522715879, 45.458557999748017 ], [ 9.128506266331643, 45.458686250265067 ], [ 9.128223759304966, 45.45888569828427 ], [ 9.128042655400403, 45.459136821066188 ], [ 9.127980683386815, 45.459415037464453 ], [ 9.128043911218283, 45.459693113908102 ], [ 9.128226151410582, 45.459943830141327 ], [ 9.128509566067212, 45.460142643806549 ], [ 9.128866412578484, 45.460270093014643 ], [ 9.129261759264599, 45.460313701647927 ], [ 9.129656905135615, 45.460269200800937 ], [ 9.13001316886405, 45.46014094672276 ], [ 9.130295675830743, 45.459941494322024 ], [ 9.130476772294045, 45.459690368011749 ], [ 9.130538732327414, 45.45941215028602 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.196546761671339, 45.456473011286953 ], [ 9.196483200910501, 45.45619497316369 ], [ 9.196300670727233, 45.455944366151506 ], [ 9.196017039486989, 45.455745720903899 ], [ 9.195660070978798, 45.455618481579478 ], [ 9.195264706707093, 45.455575102749961 ], [ 9.194869645978827, 45.455619830450829 ], [ 9.194513558395951, 45.455748286621059 ], [ 9.194231299252648, 45.455947897582647 ], [ 9.19405049805327, 45.456199124646112 ], [ 9.193988853939134, 45.456477376456036 ], [ 9.194052402768303, 45.456755415973163 ], [ 9.194234925633435, 45.457006026554438 ], [ 9.194518556964338, 45.457204676183082 ], [ 9.194875532937369, 45.457331919027055 ], [ 9.19527090919677, 45.457375299170316 ], [ 9.195665981856703, 45.457330570075563 ], [ 9.196022076757718, 45.45720211033624 ], [ 9.196304335810362, 45.457002494993652 ], [ 9.196485129544902, 45.456751264410599 ], [ 9.196546761671339, 45.456473011286953 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.174195774423469, 45.461388661381648 ], [ 9.174132317879936, 45.461110610907234 ], [ 9.173949870674955, 45.460859968272722 ], [ 9.173666293052962, 45.460661267618924 ], [ 9.173309343555928, 45.46053395852789 ], [ 9.172913961828259, 45.460490502400049 ], [ 9.172518848885627, 45.460535152836776 ], [ 9.172162679440191, 45.460663539339514 ], [ 9.17188031679793, 45.460863095049469 ], [ 9.171699400592935, 45.461114286685749 ], [ 9.171637641223153, 45.461392526361209 ], [ 9.171701085828664, 45.461670578225174 ], [ 9.171883525705169, 45.461921224426575 ], [ 9.17216710340745, 45.462119929462183 ], [ 9.172524060362878, 45.462247242076238 ], [ 9.17291945407819, 45.462290699522626 ], [ 9.173314578958843, 45.462246047696389 ], [ 9.173670755732759, 45.462117657626777 ], [ 9.173953118294724, 45.461918097534991 ], [ 9.174134027041331, 45.461666902375718 ], [ 9.174195774423469, 45.461388661381648 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.137763579212796, 45.461502469332999 ], [ 9.137700301571599, 45.461224398416256 ], [ 9.137518015286247, 45.460973697408654 ], [ 9.137234564851205, 45.460774906165639 ], [ 9.136877696360903, 45.460647483136746 ], [ 9.136482341532179, 45.460603900874766 ], [ 9.136087198748365, 45.460648425326887 ], [ 9.135730945641919, 45.460776698325752 ], [ 9.135448453706193, 45.460976164122485 ], [ 9.135267375229004, 45.461227298237525 ], [ 9.135205436490699, 45.461505518414953 ], [ 9.135268702188489, 45.461783590713793 ], [ 9.135450981131559, 45.462034295283665 ], [ 9.135734431629952, 45.462233090908548 ], [ 9.136091307565044, 45.462360517465157 ], [ 9.136486674376327, 45.462404101053203 ], [ 9.136881829103547, 45.462359575219011 ], [ 9.137238089552273, 45.462231298657855 ], [ 9.137520581424653, 45.462031828479233 ], [ 9.137701652457059, 45.461780690836534 ], [ 9.137763579212796, 45.461502469332999 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.144307155564132, 45.464894695967665 ], [ 9.144243841926999, 45.464616628885679 ], [ 9.144061515696102, 45.464365938518817 ], [ 9.14377802527588, 45.464167163680663 ], [ 9.143421120674365, 45.464039761214892 ], [ 9.14302573714267, 45.463996201661523 ], [ 9.142630575873342, 45.464040748744964 ], [ 9.142274316308168, 45.464169042082844 ], [ 9.141991830572872, 45.464368523935484 ], [ 9.141810770348783, 45.464619668251729 ], [ 9.14174886013004, 45.464897891777092 ], [ 9.141812161822587, 45.465175960242654 ], [ 9.141994480712368, 45.465426654173051 ], [ 9.14227797119899, 45.465625433393576 ], [ 9.142634883249071, 45.465752839386639 ], [ 9.143030278766387, 45.4657964002649 ], [ 9.143425451980303, 45.465751851797876 ], [ 9.143781718886597, 45.465623554896446 ], [ 9.144064204555486, 45.465424068661441 ], [ 9.144245257331013, 45.465172920817906 ], [ 9.144307155564132, 45.464894695967665 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.198807788658321, 45.466519185592553 ], [ 9.198744205330566, 45.466241149255971 ], [ 9.198561632571451, 45.465990546370747 ], [ 9.198277942914505, 45.46579190718613 ], [ 9.197920905866805, 45.465664675267057 ], [ 9.197525469641251, 45.465621304460214 ], [ 9.197130340587186, 45.46566604001579 ], [ 9.196774194993926, 45.465794503103972 ], [ 9.196491893833675, 45.465994119369824 ], [ 9.19631107072386, 45.466245349604897 ], [ 9.19624942695123, 45.466523602143383 ], [ 9.196312998341346, 45.466801639874767 ], [ 9.196495563779303, 45.467052246330624 ], [ 9.196779253528014, 45.467250889897791 ], [ 9.197136298045328, 45.467378125337369 ], [ 9.197531746265229, 45.467421497457948 ], [ 9.197926887256932, 45.46737676050757 ], [ 9.198283040171347, 45.467248293848741 ], [ 9.198565341239838, 45.467048673200338 ], [ 9.198746156880031, 45.466797439444768 ], [ 9.198807788658321, 45.466519185592553 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.15719362387307, 45.467948351570243 ], [ 9.157130243439214, 45.467670291869425 ], [ 9.156947850264482, 45.467419622295388 ], [ 9.156664299305724, 45.467220879626083 ], [ 9.156307346496041, 45.467093517556201 ], [ 9.155911931804653, 45.467050002671755 ], [ 9.15551675947369, 45.467094594324934 ], [ 9.15516051002774, 45.467222927771026 ], [ 9.154878054602506, 45.467422441344539 ], [ 9.154697041913199, 45.46767360588931 ], [ 9.154635191801788, 45.467951836170592 ], [ 9.154698560291024, 45.468229897257771 ], [ 9.154880946128324, 45.468480570397347 ], [ 9.155164497159491, 45.468679317449492 ], [ 9.155521457423765, 45.468806683045372 ], [ 9.155916884104522, 45.468850199252216 ], [ 9.156312068380098, 45.468805606212648 ], [ 9.156668325163484, 45.468677269201024 ], [ 9.156950780516313, 45.468477751244684 ], [ 9.157131785751028, 45.468226583173902 ], [ 9.15719362387307, 45.467948351570243 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.167884013007278, 45.467497931864195 ], [ 9.167820580540839, 45.46721987814739 ], [ 9.167638141490908, 45.466969225688864 ], [ 9.167354555304321, 45.466770509591001 ], [ 9.166997581361816, 45.466643180947521 ], [ 9.166602161700698, 45.466599703072625 ], [ 9.166207001049402, 45.466644331696109 ], [ 9.165850778789473, 45.466772698454562 ], [ 9.165568363396067, 45.466972238421896 ], [ 9.165387399666507, 45.467223419858342 ], [ 9.165325602650785, 45.467501655875438 ], [ 9.165389023174445, 45.467779710980786 ], [ 9.165571454891159, 45.468030367006158 ], [ 9.165855041155121, 45.468229087486755 ], [ 9.166212022556048, 45.468356419654789 ], [ 9.166607454207764, 45.468399898849874 ], [ 9.167002626801835, 45.468355268837861 ], [ 9.167358856394985, 45.468226898512555 ], [ 9.167641271711011, 45.468027354162473 ], [ 9.167822227982148, 45.467776169201436 ], [ 9.167884013007278, 45.467497931864195 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.178381627118194, 45.468153114281549 ], [ 9.178318142312738, 45.467875066505634 ], [ 9.178135654666379, 45.467624430915919 ], [ 9.177852028382384, 45.467425740963343 ], [ 9.177495026765811, 45.467298445182308 ], [ 9.177099594562293, 45.46725500367036 ], [ 9.176704437727743, 45.467299668598194 ], [ 9.176648308112767, 45.467319901619199 ], [ 9.176423505319056, 45.467295203643957 ], [ 9.176028347662712, 45.46733986623385 ], [ 9.175672143410996, 45.467468263578084 ], [ 9.175389759276799, 45.467667827756834 ], [ 9.175208836998216, 45.467919024660354 ], [ 9.175147087568289, 45.468197265885983 ], [ 9.1752105571548, 45.468475315431206 ], [ 9.175393034608659, 45.468725955671772 ], [ 9.175676658806504, 45.468924651687828 ], [ 9.176033666624162, 45.469051953106295 ], [ 9.176429110589051, 45.469095398276941 ], [ 9.176824280187175, 45.469050734296474 ], [ 9.176880411454944, 45.469030501192641 ], [ 9.177105221345771, 45.469055198250494 ], [ 9.177500390121972, 45.469010531931936 ], [ 9.177856599908965, 45.468882128912924 ], [ 9.178138981369852, 45.468682558682403 ], [ 9.178319893051528, 45.468431357187626 ], [ 9.178381627118194, 45.468153114281549 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.189645653158019, 45.463687062036364 ], [ 9.189587873615842, 45.463607727239413 ], [ 9.189304227380715, 45.463409065614862 ], [ 9.18894722548699, 45.463281805536994 ], [ 9.188551812707045, 45.463238403608777 ], [ 9.188156693095593, 45.463283108126504 ], [ 9.187800542017669, 45.463411543298321 ], [ 9.187518220982016, 45.463611137501708 ], [ 9.187337365550992, 45.463862353687766 ], [ 9.187275680174562, 45.464140601566086 ], [ 9.187339204750378, 45.464418644482535 ], [ 9.187521722746007, 45.464669265461417 ], [ 9.187805369068702, 45.464867931468149 ], [ 9.188162378427759, 45.464995195067374 ], [ 9.188557803199286, 45.465038598311097 ], [ 9.188578645506444, 45.465036240210026 ], [ 9.18863642510048, 45.465115575497492 ], [ 9.188920077572934, 45.465314238710775 ], [ 9.189277092249283, 45.465441498807486 ], [ 9.189672520985065, 45.465484898182524 ], [ 9.190067654757069, 45.465440188415819 ], [ 9.190423813422932, 45.465311746208741 ], [ 9.190706132650716, 45.465112144886454 ], [ 9.190886977079954, 45.464860923439574 ], [ 9.190948645458459, 45.46458267367386 ], [ 9.190885102959061, 45.464304632801834 ], [ 9.190702571259886, 45.464054017203338 ], [ 9.190418918875521, 45.463855358372321 ], [ 9.190061911665092, 45.463728101796875 ], [ 9.189666494921331, 45.463684703737123 ], [ 9.189645653158019, 45.463687062036364 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.187497767138122, 45.465530012283914 ], [ 9.187434240517304, 45.465251969513147 ], [ 9.187251721020184, 45.465001348422525 ], [ 9.186968075967165, 45.464802681043594 ], [ 9.186611070499948, 45.464675413701165 ], [ 9.18621564974077, 45.46463200370922 ], [ 9.185820518525327, 45.464676700153341 ], [ 9.185464353354362, 45.46480512803187 ], [ 9.185182017115929, 45.465004716436233 ], [ 9.185001146860401, 45.465255928885206 ], [ 9.184939448488816, 45.465534175454223 ], [ 9.185002963170962, 45.465812219617462 ], [ 9.185185475343035, 45.466062844277161 ], [ 9.185469120482546, 45.466261516038507 ], [ 9.185826133414755, 45.466388786902762 ], [ 9.186221566166065, 45.466432198210747 ], [ 9.186616709320178, 45.466387500374182 ], [ 9.186972881816191, 45.466259068926554 ], [ 9.187255217968135, 45.466059476139762 ], [ 9.187436080758662, 45.46580826016897 ], [ 9.187497767138122, 45.465530012283914 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.150844989887108, 45.466428922711216 ], [ 9.150781642379625, 45.466150859371403 ], [ 9.150599282234525, 45.465900179551006 ], [ 9.150315761175756, 45.465701421031156 ], [ 9.149958832210023, 45.465574039058076 ], [ 9.149563432972943, 45.465530502165976 ], [ 9.149168266194158, 45.465575071861181 ], [ 9.148812011854742, 45.465703385548117 ], [ 9.148529541569165, 45.465902883495325 ], [ 9.148348505506856, 45.466154038076262 ], [ 9.148286625797265, 45.466432265031571 ], [ 9.148349961360156, 45.466710329756374 ], [ 9.148532314166012, 45.466961013141322 ], [ 9.148815835294224, 45.467159776043808 ], [ 9.149172771711577, 45.467287161543467 ], [ 9.149568182936168, 45.467330699759209 ], [ 9.149963361659552, 45.467286128679007 ], [ 9.150319623338209, 45.467157811427526 ], [ 9.150602093554337, 45.466958309097699 ], [ 9.150783122165031, 45.466707150990139 ], [ 9.150844989887108, 45.466428922711216 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.171093411992192, 45.458618196210494 ], [ 9.171029973839833, 45.458340143850542 ], [ 9.170847549336548, 45.458089496105927 ], [ 9.170563996504598, 45.457890787617686 ], [ 9.170207071459512, 45.457763468734839 ], [ 9.169811711452516, 45.457720001816348 ], [ 9.169416615373404, 45.457764641519674 ], [ 9.169060456283807, 45.457893018396909 ], [ 9.168778096475984, 45.45809256653132 ], [ 9.168597175306363, 45.458343753383502 ], [ 9.16853540365855, 45.458621991534685 ], [ 9.168598829874171, 45.458900045283372 ], [ 9.168781247048873, 45.459150696594136 ], [ 9.169064799959667, 45.459349409463755 ], [ 9.169421732460894, 45.459476731869685 ], [ 9.169817104453353, 45.459520200107249 ], [ 9.170212212469199, 45.459475559015154 ], [ 9.170568378887383, 45.459347178571804 ], [ 9.170850738616368, 45.459147626055994 ], [ 9.171031652329841, 45.458896435680735 ], [ 9.171093411992192, 45.458618196210494 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.190833937899011, 45.459825675130382 ], [ 9.190770401383341, 45.459547633952589 ], [ 9.190587885610325, 45.459297017935647 ], [ 9.19030425753536, 45.459098358614582 ], [ 9.189947280637984, 45.458971101525528 ], [ 9.189551897243961, 45.458927702978947 ], [ 9.189156808531868, 45.458972410940206 ], [ 9.188800686842502, 45.459100849280361 ], [ 9.188518390808129, 45.459300446066699 ], [ 9.188337553543883, 45.459551663997416 ], [ 9.188275877721248, 45.459829912611184 ], [ 9.18833940230231, 45.46010795518184 ], [ 9.188521910753728, 45.460358574767554 ], [ 9.188805538916718, 45.460557238470173 ], [ 9.189162523278103, 45.460684499079925 ], [ 9.189557918661135, 45.46072789894157 ], [ 9.189953019307834, 45.460683189587442 ], [ 9.190309148318793, 45.460554747678501 ], [ 9.190591444265147, 45.460355146510629 ], [ 9.190772274065381, 45.460103925059215 ], [ 9.190833937899011, 45.459825675130382 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.202756589786876, 45.471003541199273 ], [ 9.202692981934002, 45.470725507321937 ], [ 9.20251037715194, 45.470474911000622 ], [ 9.202226651108868, 45.470276281841919 ], [ 9.201869576873348, 45.470149062429279 ], [ 9.201474106298006, 45.470105705385166 ], [ 9.201078949094105, 45.470150454612622 ], [ 9.200722784306148, 45.470278929943746 ], [ 9.20044047478522, 45.470478555825281 ], [ 9.200259654967402, 45.470729792107583 ], [ 9.20019802581767, 45.471008046533015 ], [ 9.200261621730672, 45.471286081806213 ], [ 9.200444219191345, 45.471536681699206 ], [ 9.200727945328024, 45.471735315241133 ], [ 9.201085027036406, 45.471862538174342 ], [ 9.201480509609475, 45.471905896531624 ], [ 9.201875678753245, 45.471861145908299 ], [ 9.202231850862592, 45.471732667005504 ], [ 9.202514160289905, 45.471533036740716 ], [ 9.202694972634859, 45.471281796937824 ], [ 9.202756589786876, 45.471003541199273 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.183545409738452, 45.471821456325294 ], [ 9.183481895377454, 45.471543411644532 ], [ 9.18329937298183, 45.471292784519974 ], [ 9.183015710156274, 45.471094107573776 ], [ 9.182658673782427, 45.470966828067141 ], [ 9.182263212007744, 45.470923404504568 ], [ 9.181868033682335, 45.470968087299909 ], [ 9.181511819917736, 45.471096502787454 ], [ 9.181229438358139, 45.471296081271539 ], [ 9.181048530490006, 45.471547287242196 ], [ 9.180986805896294, 45.471825531409159 ], [ 9.181050308314086, 45.472103577481896 ], [ 9.181232823380743, 45.472354208175837 ], [ 9.181516486290986, 45.472552889505401 ], [ 9.18187353013081, 45.472680172535142 ], [ 9.182269003901025, 45.472723597414848 ], [ 9.182664194169631, 45.472678913227568 ], [ 9.183020415263201, 45.47255049417069 ], [ 9.183302796738122, 45.472350911303209 ], [ 9.183483697140273, 45.47209970180942 ], [ 9.183545409738452, 45.471821456325294 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.152248653774665, 45.473677206783357 ], [ 9.152185291154071, 45.473399144595554 ], [ 9.152002901333598, 45.473148467373534 ], [ 9.151719338942341, 45.472949712643931 ], [ 9.151362361032819, 45.472822335281784 ], [ 9.150966910031139, 45.472778803369863 ], [ 9.150571693733335, 45.472823377926979 ], [ 9.150215396967143, 45.472951695881733 ], [ 9.149932895499727, 45.473151197085059 ], [ 9.149751842552918, 45.473402353591858 ], [ 9.149689961909408, 45.473680580954309 ], [ 9.149753312581064, 45.473958644527734 ], [ 9.149935695060023, 45.474209325315371 ], [ 9.150219257521409, 45.47440808442871 ], [ 9.150576242885906, 45.474535465318205 ], [ 9.150971705879865, 45.474578998553788 ], [ 9.151366934126607, 45.474534422611043 ], [ 9.151723238234313, 45.474406101090658 ], [ 9.152005739631598, 45.474206595503588 ], [ 9.152186785123432, 45.47395543546947 ], [ 9.152248653774665, 45.473677206783357 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.196003681566802, 45.475036816678262 ], [ 9.195940102302131, 45.474758779189848 ], [ 9.195757514325903, 45.474508172222798 ], [ 9.19547379166181, 45.47430952642587 ], [ 9.195116707048085, 45.474182286011001 ], [ 9.1947212133534, 45.474138905656361 ], [ 9.194326022551865, 45.474183631546587 ], [ 9.193969816976258, 45.47431208579799 ], [ 9.193687463469653, 45.474511694920672 ], [ 9.19350660077332, 45.474762920405624 ], [ 9.193444934049337, 45.475041171052233 ], [ 9.193508501370612, 45.475319209935314 ], [ 9.193691082021346, 45.475569820473687 ], [ 9.193974804775934, 45.475768470654508 ], [ 9.194331896861563, 45.475895714591289 ], [ 9.194727402555563, 45.475939096260653 ], [ 9.195122605300488, 45.475894368975759 ], [ 9.195478818201597, 45.475765911153026 ], [ 9.195761171617713, 45.475566297646473 ], [ 9.195942026842129, 45.475315068639588 ], [ 9.196003681566802, 45.475036816678262 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.20716888717565, 45.475323491614475 ], [ 9.207105252700281, 45.475045460451845 ], [ 9.20692261436928, 45.474794871433105 ], [ 9.206638851134825, 45.474596253449846 ], [ 9.206281739705741, 45.474469047991484 ], [ 9.20588623557493, 45.474425706314527 ], [ 9.205491051737846, 45.474470470817899 ], [ 9.20513486984572, 45.474598959838566 ], [ 9.204852554423921, 45.474798596483325 ], [ 9.20467174048645, 45.475049839549158 ], [ 9.204610128423123, 45.475328096114303 ], [ 9.204673750956561, 45.475606128673888 ], [ 9.204856381966176, 45.475856721265387 ], [ 9.205140145296314, 45.476055343632559 ], [ 9.205497264201611, 45.476182552611462 ], [ 9.205892780333485, 45.476225895600841 ], [ 9.206287976112508, 45.476181129700493 ], [ 9.206644165326015, 45.476052637107074 ], [ 9.206926480652131, 45.475852996078402 ], [ 9.207107287113397, 45.475601749492057 ], [ 9.20716888717565, 45.475323491614475 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.130314010646366, 45.476137152390322 ], [ 9.130250753087761, 45.47585907803952 ], [ 9.130068452477307, 45.475608365804206 ], [ 9.129784954712921, 45.475409556638674 ], [ 9.129428010522428, 45.475282110746527 ], [ 9.129032559032325, 45.475238502918273 ], [ 9.12863730808667, 45.475283001603259 ], [ 9.128280945904102, 45.475411251156338 ], [ 9.127998354653892, 45.47561069812383 ], [ 9.127817196344969, 45.47586181986955 ], [ 9.127755205072589, 45.476140035348841 ], [ 9.127818450677513, 45.476418111080889 ], [ 9.128000743937218, 45.476668826879397 ], [ 9.128284241761536, 45.47686764042902 ], [ 9.128641193399737, 45.47699508985162 ], [ 9.129036656880558, 45.47703869900819 ], [ 9.129431919779895, 45.476994198941966 ], [ 9.129788289313209, 45.476865945825672 ], [ 9.13007088050349, 45.476666494474102 ], [ 9.130252031364702, 45.476415369197916 ], [ 9.130314010646366, 45.476137152390322 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.119633113790089, 45.476253072018594 ], [ 9.119569908620971, 45.475974991705414 ], [ 9.119387654963539, 45.475724262381732 ], [ 9.119104194120201, 45.475525426674707 ], [ 9.118747273205399, 45.475397947386057 ], [ 9.118351829067802, 45.475354302575091 ], [ 9.117956568831966, 45.475398764311059 ], [ 9.117600181625681, 45.475526980565313 ], [ 9.117317552067133, 45.475726401143454 ], [ 9.117136345914442, 45.475977505992525 ], [ 9.117074301945571, 45.476255715722026 ], [ 9.117137495159382, 45.476533797414255 ], [ 9.117319741461989, 45.476784530299788 ], [ 9.117603202360288, 45.476983370390947 ], [ 9.117960130718835, 45.477110853211428 ], [ 9.118355586845706, 45.477154499352878 ], [ 9.118750859036849, 45.47711003623786 ], [ 9.119107253597958, 45.47698181642177 ], [ 9.119389883101542, 45.47678239145948 ], [ 9.119571081810491, 45.476531283078593 ], [ 9.119633113790089, 45.476253072018594 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.13917211434922, 45.476321353170697 ], [ 9.139108813026709, 45.47604328378614 ], [ 9.138926472574234, 45.475792585742916 ], [ 9.138642942789257, 45.475593798605928 ], [ 9.138285977533426, 45.47546638042251 ], [ 9.137890517994775, 45.475422803270945 ], [ 9.137495272805024, 45.475467332598065 ], [ 9.13713892961953, 45.475595609759466 ], [ 9.136856368748475, 45.475795078599127 ], [ 9.136675249227654, 45.47604621433991 ], [ 9.136613301355949, 45.476324434567047 ], [ 9.136676590725962, 45.476602505334689 ], [ 9.136858923830962, 45.476853206942252 ], [ 9.137142453679992, 45.477051998463345 ], [ 9.13749942638692, 45.4771794201761 ], [ 9.137894897917663, 45.477222998654156 ], [ 9.138290155059931, 45.477178467943979 ], [ 9.138646505592893, 45.477050187218254 ], [ 9.138929066399896, 45.476850713994466 ], [ 9.139110178469611, 45.476599574724347 ], [ 9.13917211434922, 45.476321353170697 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.14518027540813, 45.479034085801928 ], [ 9.14511694147189, 45.478756019919601 ], [ 9.144934565621842, 45.478505331630139 ], [ 9.144651001120229, 45.478306559543483 ], [ 9.144294005226604, 45.478179160233694 ], [ 9.14389852212757, 45.478135603931626 ], [ 9.143503262760731, 45.478180154043372 ], [ 9.143146916169098, 45.478308449890193 ], [ 9.142864362996431, 45.478507933487158 ], [ 9.142683261525351, 45.478759078612612 ], [ 9.142621340288375, 45.479037301933118 ], [ 9.142664222838354, 45.479225613358174 ], [ 9.142634451577624, 45.47924663148342 ], [ 9.142453346725837, 45.479497776215872 ], [ 9.142391423556766, 45.479775999378006 ], [ 9.142454745245375, 45.480054066736479 ], [ 9.142637115121561, 45.480304758924262 ], [ 9.142920682594809, 45.480503535936862 ], [ 9.143277690095699, 45.480630939472547 ], [ 9.143673190183762, 45.480674497884259 ], [ 9.144068466850898, 45.480629947182884 ], [ 9.144424825964856, 45.480501648498134 ], [ 9.144707383569147, 45.480302161105676 ], [ 9.144888480966308, 45.480051012844164 ], [ 9.144950392140291, 45.479772788356613 ], [ 9.144907501557395, 45.479584477817802 ], [ 9.144937272149145, 45.479563459102188 ], [ 9.145118366165807, 45.479312310447824 ], [ 9.14518027540813, 45.479034085801928 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.212262200368446, 45.480343534366156 ], [ 9.212198535114368, 45.480065506341468 ], [ 9.212015857938145, 45.479814925757218 ], [ 9.211732051594398, 45.479616320679149 ], [ 9.211374897011449, 45.479489131333409 ], [ 9.210979353905861, 45.47944580739923 ], [ 9.210584139087645, 45.479490589538912 ], [ 9.210227937240353, 45.479619094363159 ], [ 9.209945614842695, 45.479818743432098 ], [ 9.20976480759186, 45.480069994326541 ], [ 9.20970321522368, 45.480348253358471 ], [ 9.209766868533427, 45.480626282781415 ], [ 9.209949538388258, 45.480876866939731 ], [ 9.21023334483008, 45.481075476402424 ], [ 9.210590506893118, 45.481202669268704 ], [ 9.210986062003654, 45.481245994514488 ], [ 9.211381288766203, 45.48120121097655 ], [ 9.211737497934889, 45.481072702578246 ], [ 9.212019820234474, 45.480873049124661 ], [ 9.212200620005223, 45.480621794709712 ], [ 9.212262200368446, 45.480343534366156 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.227196317171686, 45.481142467051747 ], [ 9.227132577583852, 45.480864447533172 ], [ 9.226949831706134, 45.480613890999734 ], [ 9.226665969017388, 45.480415323162724 ], [ 9.226308775960373, 45.480288180602727 ], [ 9.225913216016938, 45.480244908419607 ], [ 9.225518007644917, 45.480289742210346 ], [ 9.225161834897108, 45.480418293530086 ], [ 9.224879561404524, 45.480617979387944 ], [ 9.224698818078162, 45.480869253763593 ], [ 9.224637298397342, 45.481147520670255 ], [ 9.224701026042535, 45.48142554159017 ], [ 9.224883764604201, 45.48167610169962 ], [ 9.225167627397981, 45.481874673921403 ], [ 9.225524827940983, 45.482001820000065 ], [ 9.225920399891974, 45.48204509349177 ], [ 9.226315620206639, 45.482000258299671 ], [ 9.226671800270495, 45.481871703403918 ], [ 9.226954073658051, 45.481672013161315 ], [ 9.227134809498418, 45.481420735266994 ], [ 9.227196317171686, 45.481142467051747 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.199425179690204, 45.479384378192556 ], [ 9.199361578642923, 45.479106342857669 ], [ 9.199178961411928, 45.478855741600526 ], [ 9.198895204884614, 45.478657104510759 ], [ 9.198538085113766, 45.478529874947974 ], [ 9.198142558409049, 45.478486506527993 ], [ 9.19774733997537, 45.47853124426728 ], [ 9.197391114850015, 45.478659709122418 ], [ 9.197108751789671, 45.478859326565683 ], [ 9.196927890471018, 45.479110557273685 ], [ 9.196866235921707, 45.479388809534548 ], [ 9.196929825023373, 45.479666846265012 ], [ 9.197112434928494, 45.479917451094458 ], [ 9.197396191547904, 45.480116092568757 ], [ 9.19775331879365, 45.480243325653561 ], [ 9.198148857500906, 45.480286695387782 ], [ 9.198544087880205, 45.480241956252897 ], [ 9.198900320331436, 45.480113487825456 ], [ 9.199182683299687, 45.479913865997666 ], [ 9.199363537143435, 45.47966263176766 ], [ 9.199425179690204, 45.479384378192556 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.152003028176177, 45.481382909312778 ], [ 9.151939658027633, 45.481104847374795 ], [ 9.151757244345253, 45.480854170130641 ], [ 9.151473644094329, 45.48065541510892 ], [ 9.151116618033354, 45.480528037213169 ], [ 9.150721113301433, 45.480484504578179 ], [ 9.150325842953398, 45.480529078293543 ], [ 9.149969497107103, 45.480657395370244 ], [ 9.149686956333591, 45.480856895745355 ], [ 9.149505877702216, 45.481108051554969 ], [ 9.149443987510285, 45.481386278419713 ], [ 9.149507345705015, 45.481664341743603 ], [ 9.149689752042821, 45.481915022554332 ], [ 9.149973352363777, 45.48211378196094 ], [ 9.150330385882654, 45.482241163385034 ], [ 9.15072590261167, 45.482284697344092 ], [ 9.151121184913523, 45.482240122242807 ], [ 9.151477538104395, 45.482111801599522 ], [ 9.151760078807875, 45.481912296839511 ], [ 9.151941149981347, 45.481661137501568 ], [ 9.152003028176177, 45.481382909312778 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.163118529681299, 45.481479584800191 ], [ 9.163055104762671, 45.481201529109399 ], [ 9.162872641524674, 45.480950869688634 ], [ 9.162589001782866, 45.480752142321656 ], [ 9.162231950160649, 45.480624799204982 ], [ 9.161836436298639, 45.480581305069151 ], [ 9.161441174145157, 45.48062591723555 ], [ 9.161084853016131, 45.480754268951607 ], [ 9.160802351063706, 45.480953796763885 ], [ 9.160621321557892, 45.48120497012269 ], [ 9.160559485987838, 45.481483202930626 ], [ 9.160622898954216, 45.481761260009677 ], [ 9.160805354851799, 45.482011922998417 ], [ 9.161088994668818, 45.482210654750304 ], [ 9.161446053753137, 45.482338001393892 ], [ 9.161841579613883, 45.482381496851517 ], [ 9.162236853719618, 45.482336883296895 ], [ 9.162593182189054, 45.482208528012841 ], [ 9.162875684066272, 45.482008995815676 ], [ 9.163056706109979, 45.481757818929921 ], [ 9.163118529681299, 45.481479584800191 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.185621028768141, 45.477088532894022 ], [ 9.185557498204446, 45.47681048965007 ], [ 9.185374949541345, 45.476559866115267 ], [ 9.185091252954937, 45.476361194560241 ], [ 9.184734178631496, 45.476233921718354 ], [ 9.184338678432828, 45.476190505441679 ], [ 9.183943464969738, 45.476235195430796 ], [ 9.183587222792864, 45.476363617316039 ], [ 9.183304822327404, 45.476563200775601 ], [ 9.1831239069106, 45.476814409812555 ], [ 9.18306218686474, 45.477092654836561 ], [ 9.18312570548223, 45.477370699473148 ], [ 9.18330824681512, 45.477621326578237 ], [ 9.18359194348719, 45.47782000251744 ], [ 9.183949025279455, 45.477947278882851 ], [ 9.184344537477267, 45.477990696476489 ], [ 9.184739762886556, 45.477946005094701 ], [ 9.185096012393645, 45.477817579639172 ], [ 9.185378412773444, 45.477617991795455 ], [ 9.185559320721421, 45.477366779234991 ], [ 9.185621028768141, 45.477088532894022 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.157980953849114, 45.478114942449096 ], [ 9.157917558012414, 45.477836883702352 ], [ 9.157735128431998, 45.477586215881864 ], [ 9.157451523628882, 45.477387475593787 ], [ 9.157094504806764, 45.477260116299462 ], [ 9.156699018396015, 45.47721660431305 ], [ 9.156303775658237, 45.477261198703054 ], [ 9.155947464009026, 45.47738953445689 ], [ 9.155664960672462, 45.477589049683409 ], [ 9.155483919053713, 45.477840215064866 ], [ 9.155422061827171, 45.47811844528475 ], [ 9.15548544571298, 45.478396505418516 ], [ 9.155667867952335, 45.478647176805893 ], [ 9.155951472828262, 45.478845921478367 ], [ 9.156308499109246, 45.478973284299848 ], [ 9.15670399751588, 45.479016797608971 ], [ 9.15709925220454, 45.478972201831937 ], [ 9.157455571194818, 45.478843862511191 ], [ 9.157738074458571, 45.478644342900282 ], [ 9.157919108618454, 45.478393173991677 ], [ 9.157980953849114, 45.478114942449096 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.162379031119425, 45.468282993489218 ], [ 9.162315624818808, 45.468004936717641 ], [ 9.162133207600283, 45.467754275471286 ], [ 9.161849636774024, 45.467555545712862 ], [ 9.161492670217546, 45.467428199873211 ], [ 9.161097249245413, 45.46738470294973 ], [ 9.160702078714435, 45.467429312536645 ], [ 9.160345838973058, 45.467557662133842 ], [ 9.16006340020731, 45.467757188494986 ], [ 9.159882409501996, 45.468008361212206 ], [ 9.159820584547431, 45.468286594250664 ], [ 9.159883978903975, 45.468564652409697 ], [ 9.160066388786895, 45.468815317222273 ], [ 9.160349959687977, 45.469014051363565 ], [ 9.160706933701114, 45.469141400728596 ], [ 9.16110236666356, 45.469184898973417 ], [ 9.161497549138614, 45.469140287999046 ], [ 9.161853796215595, 45.469011934835606 ], [ 9.162136234906523, 45.468812404091587 ], [ 9.162317218155172, 45.468561227848987 ], [ 9.162379031119425, 45.468282993489218 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.182975839146053, 45.468699162812463 ], [ 9.182912331139484, 45.468421117652639 ], [ 9.182729821385998, 45.468170489460952 ], [ 9.182446176252645, 45.467971810964009 ], [ 9.18208916088928, 45.467844529574911 ], [ 9.181693721386912, 45.467801103982467 ], [ 9.181298564415753, 45.467845784799181 ], [ 9.180942368997327, 45.467974198553058 ], [ 9.18066000098009, 45.468173775718043 ], [ 9.180479100524863, 45.468424980913206 ], [ 9.180417376488769, 45.468703224924198 ], [ 9.180480872554012, 45.468981271475663 ], [ 9.180663374979522, 45.469231903236299 ], [ 9.180947020197276, 45.46943058611614 ], [ 9.181304043025182, 45.469557871028037 ], [ 9.181699494521041, 45.469601297937587 ], [ 9.182094663433521, 45.469556615729203 ], [ 9.182450866179934, 45.469428198406433 ], [ 9.182733234112762, 45.46922861685853 ], [ 9.182914127103443, 45.46897740814056 ], [ 9.182975839146053, 45.468699162812463 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.156571579375528, 45.470400258463798 ], [ 9.156508199218855, 45.470122198537219 ], [ 9.156325800861424, 45.469871528084781 ], [ 9.156042239767581, 45.469672783970346 ], [ 9.155685272862554, 45.469545420030094 ], [ 9.155289841495213, 45.469501903032956 ], [ 9.154894651539847, 45.469546492538022 ], [ 9.154538385245987, 45.469674824010717 ], [ 9.154255915398386, 45.469874335978851 ], [ 9.154074892123964, 45.470125499443434 ], [ 9.154013036300942, 45.470403729275475 ], [ 9.15407640451137, 45.470681790588408 ], [ 9.154258795530188, 45.470932464606641 ], [ 9.154542356696156, 45.471131213104258 ], [ 9.154899331056498, 45.471258580570925 ], [ 9.155294774414664, 45.471302098890682 ], [ 9.155689976316284, 45.471257507999276 ], [ 9.156046249948748, 45.471129172960779 ], [ 9.156328719724227, 45.470929656609435 ], [ 9.156509735543338, 45.470678489618479 ], [ 9.156571579375528, 45.470400258463798 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.194147068041191, 45.470012837657514 ], [ 9.194083503633204, 45.46973479886595 ], [ 9.193900940171455, 45.469484188669746 ], [ 9.193617249279816, 45.46928553803383 ], [ 9.19326020058654, 45.46915829164405 ], [ 9.192864743444524, 45.469114904763394 ], [ 9.192469586250343, 45.469159624215273 ], [ 9.192113408047458, 45.469288072746188 ], [ 9.191831072999685, 45.469487677426095 ], [ 9.191650218041296, 45.469738900180722 ], [ 9.191588547576536, 45.470017150076693 ], [ 9.191652100044015, 45.470295190262277 ], [ 9.191834656181499, 45.47054580402898 ], [ 9.192118347162742, 45.470744459047971 ], [ 9.192475403325261, 45.470871708959308 ], [ 9.192870872463166, 45.470915097154823 ], [ 9.193266041597855, 45.470870376308909 ], [ 9.193622227125005, 45.470741924207509 ], [ 9.193904562083175, 45.470542315144513 ], [ 9.194085409572319, 45.470291088868329 ], [ 9.194147068041191, 45.470012837657514 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.23610938659492, 45.484244867074551 ], [ 9.236045599627698, 45.4839668527759 ], [ 9.235862804213534, 45.483716310737613 ], [ 9.235578894679925, 45.483517765251811 ], [ 9.235221662054553, 45.483390650711172 ], [ 9.234826073691842, 45.48334740947297 ], [ 9.234430850831046, 45.483392274105221 ], [ 9.23407467894314, 45.483520853144476 ], [ 9.233792421575261, 45.483720560886603 ], [ 9.233611708060621, 45.483971849169215 ], [ 9.233550228960988, 45.484250120644084 ], [ 9.233614003984929, 45.484528136346043 ], [ 9.233796792085226, 45.48477868196187 ], [ 9.234080701728031, 45.4849772318329 ], [ 9.23443794184395, 45.485104349891436 ], [ 9.234833542217427, 45.485147592436533 ], [ 9.235228777021501, 45.485102726400967 ], [ 9.235584956223272, 45.484974143784207 ], [ 9.235867213481955, 45.484774431656831 ], [ 9.236047919506044, 45.484523139856293 ], [ 9.23610938659492, 45.484244867074551 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.19254306634071, 45.487606154979517 ], [ 9.192479489748019, 45.487328116174169 ], [ 9.192296876307703, 45.487077504270118 ], [ 9.192013102536919, 45.486878850399201 ], [ 9.191655946176823, 45.486751599563512 ], [ 9.191260367118579, 45.486708207460907 ], [ 9.190865085691245, 45.486752921425861 ], [ 9.190508793097472, 45.486881364741954 ], [ 9.190226364697409, 45.487080964989929 ], [ 9.190045446563206, 45.487332184529713 ], [ 9.189983749284085, 45.487610432742976 ], [ 9.190047313924985, 45.487888472942878 ], [ 9.190229920033651, 45.488139088419402 ], [ 9.190513693893365, 45.488337746676102 ], [ 9.190870857729008, 45.488465001035721 ], [ 9.191266448794, 45.48850839445435 ], [ 9.19166174217313, 45.488463679094849 ], [ 9.192018042098553, 45.488335232206303 ], [ 9.192300470409686, 45.488135627572525 ], [ 9.192481381068346, 45.487884404508812 ], [ 9.19254306634071, 45.487606154979517 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.128673309775253, 45.489347570445695 ], [ 9.128610045357052, 45.489069495839189 ], [ 9.128427709278942, 45.488818781605964 ], [ 9.128144150911449, 45.488619968895705 ], [ 9.127787126914779, 45.48849251825871 ], [ 9.127391584226755, 45.488448904949593 ], [ 9.126996239617377, 45.48849339795418 ], [ 9.126639790472527, 45.488621642183396 ], [ 9.12635712747314, 45.488821084704831 ], [ 9.126175919651349, 45.489072203317868 ], [ 9.126113905949721, 45.489350417284733 ], [ 9.126177158405694, 45.489628493272782 ], [ 9.12635948712734, 45.489879211070615 ], [ 9.126643045554031, 45.490078028167027 ], [ 9.127000077002963, 45.49020548233635 ], [ 9.127395631689797, 45.490249096974694 ], [ 9.127790988261395, 45.490204602588562 ], [ 9.128147444762718, 45.490076354794724 ], [ 9.12843010770291, 45.489876907887165 ], [ 9.128611308072433, 45.489625785741808 ], [ 9.128673309775253, 45.489347570445695 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.138300833231755, 45.485989262676711 ], [ 9.138237525253997, 45.485711193289397 ], [ 9.138055157372948, 45.485460494313273 ], [ 9.137771582071544, 45.485261705404461 ], [ 9.137414557666952, 45.485134284783427 ], [ 9.137019031136605, 45.485090704766918 ], [ 9.136623717668986, 45.485135231082126 ], [ 9.136267311602099, 45.485263505379535 ], [ 9.135984699400803, 45.485462971783562 ], [ 9.135803545125409, 45.485714105755768 ], [ 9.135741582477305, 45.485992325054632 ], [ 9.135804878496355, 45.486270395825294 ], [ 9.135987239025869, 45.486521098366843 ], [ 9.136270814390947, 45.486719891661274 ], [ 9.136627846250096, 45.486847315812973 ], [ 9.137023384778503, 45.486890897156592 ], [ 9.137418710204834, 45.486846369458021 ], [ 9.13777512362326, 45.486718091595208 ], [ 9.138057735760878, 45.486518620805548 ], [ 9.13823888258171, 45.486267483302683 ], [ 9.138300833231755, 45.485989262676711 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.173544766712856, 45.48756266781141 ], [ 9.173481283604358, 45.48728461829257 ], [ 9.17329875446003, 45.487033975890959 ], [ 9.173015047546581, 45.4868352747241 ], [ 9.172657934061942, 45.486707964423694 ], [ 9.172262369701357, 45.48666450650807 ], [ 9.17186707335555, 45.486709154753434 ], [ 9.171510737687109, 45.486837538875854 ], [ 9.171228242271617, 45.487037092250041 ], [ 9.171047239739902, 45.487288281824299 ], [ 9.17098544894159, 45.487566519913813 ], [ 9.171048920095537, 45.48784457082332 ], [ 9.171231441901043, 45.488095216794989 ], [ 9.171515148894585, 45.488293922347694 ], [ 9.171872269847626, 45.488421236174467 ], [ 9.17226784621225, 45.488464695409974 ], [ 9.172663154512609, 45.488420045773992 ], [ 9.173019497519867, 45.488291658081479 ], [ 9.173301992855274, 45.488092100321474 ], [ 9.17348298791859, 45.487840907220864 ], [ 9.173544766712856, 45.48756266781141 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.167854598219229, 45.484520731652772 ], [ 9.167791146554888, 45.484242678778259 ], [ 9.167608652480801, 45.483992027100442 ], [ 9.167324980830891, 45.483793311644938 ], [ 9.166967899351626, 45.483665983442229 ], [ 9.166572360605821, 45.483622505763016 ], [ 9.166177080977226, 45.483667134317919 ], [ 9.165820751492186, 45.483795500750269 ], [ 9.165538251120877, 45.483995040166299 ], [ 9.165357232978849, 45.484246220880443 ], [ 9.165295417443309, 45.484524456075356 ], [ 9.165358857154182, 45.4848025103392 ], [ 9.165541343888469, 45.485053165585981 ], [ 9.165825015615805, 45.485251885426841 ], [ 9.166182104560145, 45.48537921715625 ], [ 9.16657765530727, 45.485422696156419 ], [ 9.166972946889333, 45.485378066212164 ], [ 9.167329283714171, 45.485249696210822 ], [ 9.167611784008056, 45.485050152409492 ], [ 9.167792794685013, 45.484798968168619 ], [ 9.167854598219229, 45.484520731652772 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.187299249323962, 45.482841551691685 ], [ 9.187134987386345, 45.482783014437956 ], [ 9.186739439533151, 45.482739606599289 ], [ 9.186344182223028, 45.482784304912748 ], [ 9.185987904298145, 45.48291273419391 ], [ 9.185705479682726, 45.483112323397123 ], [ 9.185524554078144, 45.483363535963406 ], [ 9.185462838804424, 45.483641781957054 ], [ 9.185526376687488, 45.48391982490859 ], [ 9.185708949894067, 45.4841704478388 ], [ 9.185992687928149, 45.484369117521808 ], [ 9.186349816521787, 45.484496386161929 ], [ 9.186745376378592, 45.484539795317339 ], [ 9.187140645638676, 45.484495095610448 ], [ 9.187232865318039, 45.484461852644891 ], [ 9.187397132241138, 45.484520389732708 ], [ 9.187792693058668, 45.484563795259682 ], [ 9.188187961646555, 45.484519091929933 ], [ 9.18854424466398, 45.48439065581487 ], [ 9.188826665605456, 45.484191059643607 ], [ 9.189007579153966, 45.483939841902945 ], [ 9.189069277292404, 45.483661594036228 ], [ 9.189005722282168, 45.483383553070269 ], [ 9.188823137027759, 45.483132935394046 ], [ 9.188539395287288, 45.482934272704576 ], [ 9.188182271666767, 45.482807010867205 ], [ 9.187786722853021, 45.48276360665681 ], [ 9.187391466214955, 45.482808308592894 ], [ 9.187299249323962, 45.482841551691685 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.204041094169847, 45.484457826293443 ], [ 9.203977464631357, 45.484179793825682 ], [ 9.203794810492749, 45.483929200235096 ], [ 9.20351101225422, 45.483730574860758 ], [ 9.20315385005123, 45.483603359915307 ], [ 9.202758284346462, 45.483560007583748 ], [ 9.202363034161881, 45.483604761307809 ], [ 9.202006787642413, 45.483733240479516 ], [ 9.201962975997917, 45.48376421416031 ], [ 9.201866688560726, 45.483798939560671 ], [ 9.201584315733809, 45.483998567903875 ], [ 9.201403457965986, 45.484249805465453 ], [ 9.201341819937838, 45.484528059862704 ], [ 9.201405436914346, 45.484806093803094 ], [ 9.201588083319782, 45.485056691189001 ], [ 9.201871881492105, 45.485255321294751 ], [ 9.20222905127557, 45.485382540198671 ], [ 9.202624629340951, 45.485425894327804 ], [ 9.203019892045578, 45.48538113969132 ], [ 9.203376146624745, 45.485252657383249 ], [ 9.203419958643849, 45.485221683167886 ], [ 9.203516247542886, 45.485186956464347 ], [ 9.203798619452114, 45.484987323388644 ], [ 9.203979468908594, 45.484736082081696 ], [ 9.204041094169847, 45.484457826293443 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.216555494844538, 45.484532986104185 ], [ 9.216491803686832, 45.484254960724464 ], [ 9.216309093895266, 45.484004387250366 ], [ 9.216025251417072, 45.483805793051509 ], [ 9.215668060717379, 45.483678617288973 ], [ 9.215272485047647, 45.483635308312415 ], [ 9.214877244405026, 45.483680105320069 ], [ 9.214521026000664, 45.483808623467411 ], [ 9.21423869793399, 45.484008283010546 ], [ 9.214057896457401, 45.484259540505114 ], [ 9.213996320741975, 45.484537801617002 ], [ 9.214016987378256, 45.484628033543331 ], [ 9.213998516809761, 45.484711501648718 ], [ 9.21406219623077, 45.484989528417664 ], [ 9.214244899275005, 45.485240105454686 ], [ 9.214528742735565, 45.485438704025697 ], [ 9.214885942022738, 45.485565883295955 ], [ 9.215281530918576, 45.48560919357228 ], [ 9.215676784719983, 45.485564395156828 ], [ 9.216033011534018, 45.485435873429424 ], [ 9.216315340358195, 45.48523620950008 ], [ 9.216496134894399, 45.484984948488218 ], [ 9.216557698776795, 45.484706686072364 ], [ 9.216537028056901, 45.484616454614446 ], [ 9.216555494844538, 45.484532986104185 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.196137004745713, 45.484897714818686 ], [ 9.196073413570911, 45.484619677905677 ], [ 9.195890793005123, 45.484369071639819 ], [ 9.195607020262651, 45.484170426601011 ], [ 9.195249872983753, 45.484043186926847 ], [ 9.19485431017063, 45.483999807222744 ], [ 9.19445905056231, 45.484044533609627 ], [ 9.194102783225979, 45.484172988155244 ], [ 9.193820381049749, 45.484372597341114 ], [ 9.193639487539029, 45.48462382265221 ], [ 9.193577810872767, 45.484902072905157 ], [ 9.193641390098001, 45.485180111213289 ], [ 9.193824003334544, 45.485430721051756 ], [ 9.194107776167609, 45.485629370475927 ], [ 9.194464930922338, 45.485756613673225 ], [ 9.194860505741014, 45.485799994692478 ], [ 9.195255777298895, 45.485755266910445 ], [ 9.195612051964476, 45.485626808792247 ], [ 9.195894454050116, 45.485427195221007 ], [ 9.196075340085006, 45.485175966386755 ], [ 9.196137004745713, 45.484897714818686 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.210689013057326, 45.485315851789267 ], [ 9.210625349849025, 45.485037823126795 ], [ 9.210442663487996, 45.484787240261753 ], [ 9.210158837628283, 45.484588631483149 ], [ 9.20980165510867, 45.484461437379217 ], [ 9.209406078380164, 45.484418108094857 ], [ 9.209010827543604, 45.484462884815997 ], [ 9.208654590807791, 45.484591384683739 ], [ 9.208372238066209, 45.48479102974342 ], [ 9.208191407986231, 45.485042277968475 ], [ 9.208129802538549, 45.485320535932232 ], [ 9.208193453799163, 45.485598565992881 ], [ 9.208376132836285, 45.48584915243238 ], [ 9.208659958793367, 45.486047765596403 ], [ 9.209017148794427, 45.486174963221679 ], [ 9.209412737530798, 45.486218293818183 ], [ 9.209808000315052, 45.486173515698894 ], [ 9.210164244374763, 45.486045012256682 ], [ 9.210446597018977, 45.485845362811567 ], [ 9.210627419617513, 45.485594111065211 ], [ 9.210689013057326, 45.485315851789267 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.18174081168789, 45.485157476077156 ], [ 9.181677291010136, 45.484879431053855 ], [ 9.181494733360456, 45.484628801687009 ], [ 9.181211009795277, 45.484430120818054 ], [ 9.180853893141993, 45.484302836091892 ], [ 9.180458339405714, 45.484259406523698 ], [ 9.180063066437215, 45.484304083114992 ], [ 9.179706764611165, 45.484432492807478 ], [ 9.179424310190964, 45.484632066472905 ], [ 9.179243351795083, 45.484883269073279 ], [ 9.179181603953134, 45.485161511648549 ], [ 9.179245112679055, 45.485439558064087 ], [ 9.179427662993946, 45.485690191001737 ], [ 9.17971138664301, 45.485888876256112 ], [ 9.180068510766828, 45.486016164507269 ], [ 9.180464076506796, 45.486059595393584 ], [ 9.180859361427125, 45.486014917410081 ], [ 9.181215670587978, 45.485886504146819 ], [ 9.181498124924284, 45.485686926095937 ], [ 9.18167907584963, 45.485435719970567 ], [ 9.18174081168789, 45.485157476077156 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.201309725690752, 45.49025685666912 ], [ 9.201246102956345, 45.489978822951315 ], [ 9.201063442082072, 45.489728225259825 ], [ 9.200779624227932, 45.489529593335035 ], [ 9.200422431449683, 45.489402370030767 ], [ 9.200026827202739, 45.489359008350014 ], [ 9.199631534281382, 45.489403752649551 ], [ 9.199275245013336, 45.489532223243913 ], [ 9.198992834433527, 45.489731845043863 ], [ 9.198811946870315, 45.489983078299709 ], [ 9.198750289921039, 45.490261331050377 ], [ 9.198813900703275, 45.490539366164647 ], [ 9.198996554248197, 45.490789967430061 ], [ 9.199280372195354, 45.490988603741023 ], [ 9.199637572453479, 45.491115830568432 ], [ 9.200033188710083, 45.49115919356354 ], [ 9.200428493583608, 45.491114447867517 ], [ 9.200784790181009, 45.490985973699239 ], [ 9.201067200667795, 45.490786347513108 ], [ 9.201248080751139, 45.490535110734115 ], [ 9.201309725690752, 45.49025685666912 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.219226424761896, 45.490280755945662 ], [ 9.219162713886085, 45.490002732372403 ], [ 9.218979973590059, 45.489752163479949 ], [ 9.218696092807221, 45.489553576189415 ], [ 9.218338859752031, 45.489426408985423 ], [ 9.217943241821546, 45.489383109379837 ], [ 9.217547963149119, 45.489427915653643 ], [ 9.217191714668067, 45.489556442055374 ], [ 9.21690936742176, 45.489756108033291 ], [ 9.216728559540213, 45.4900073695133 ], [ 9.216666990821935, 45.490285631771243 ], [ 9.216730689748191, 45.490563656744662 ], [ 9.216913422721628, 45.490814229213264 ], [ 9.217197303605834, 45.491012820889964 ], [ 9.217554544147625, 45.491139991614816 ], [ 9.217950174090307, 45.491183292531041 ], [ 9.218345464712288, 45.491138484857096 ], [ 9.218701720515924, 45.49100995487921 ], [ 9.218984067660866, 45.490810284515099 ], [ 9.219164868055813, 45.490559019514237 ], [ 9.219226424761896, 45.490280755945662 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.121543113165441, 45.493897350220635 ], [ 9.121479878686214, 45.493619271856609 ], [ 9.121297559496014, 45.493368546425081 ], [ 9.121014003312915, 45.49316971617187 ], [ 9.120656966583757, 45.493042243364442 ], [ 9.120261397492836, 45.492998605427445 ], [ 9.119866015394392, 45.493043073757157 ], [ 9.119509521343439, 45.493171295679673 ], [ 9.119226810416006, 45.493370720446094 ], [ 9.119045556335282, 45.493621827593863 ], [ 9.118983502571856, 45.493900037507743 ], [ 9.11904672508496, 45.494178117252041 ], [ 9.119229036914232, 45.494428846247878 ], [ 9.119512593153221, 45.494627680887923 ], [ 9.119869637333741, 45.494755157229122 ], [ 9.120265218425333, 45.494798796497058 ], [ 9.1206606124899, 45.494754326787074 ], [ 9.121017113901775, 45.494626101300263 ], [ 9.121299824773319, 45.494426672147 ], [ 9.12148107140268, 45.494175561465447 ], [ 9.121543113165441, 45.493897350220635 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.111121287030237, 45.497137266917136 ], [ 9.111058100177184, 45.496859182897403 ], [ 9.110875816720618, 45.496608440941081 ], [ 9.1105922808815, 45.496409584911753 ], [ 9.110235247115945, 45.496282079599951 ], [ 9.109839663318519, 45.496238405611763 ], [ 9.109444250282973, 45.496282837872172 ], [ 9.109087712092146, 45.496411027237656 ], [ 9.108804948142042, 45.49661042614607 ], [ 9.108623637345405, 45.496861516666186 ], [ 9.108561528724188, 45.497139720810551 ], [ 9.108624703607564, 45.49741780620861 ], [ 9.108806979698006, 45.497668551728282 ], [ 9.109090515588175, 45.497867412144949 ], [ 9.109447556802449, 45.497994920992276 ], [ 9.109843152601092, 45.49803859631367 ], [ 9.110238577606323, 45.497994162674985 ], [ 9.11059512316327, 45.497865969746123 ], [ 9.110877887062321, 45.497666566450334 ], [ 9.111059190410248, 45.497415472394728 ], [ 9.111121287030237, 45.497137266917136 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.220785643533455, 45.495530638257982 ], [ 9.220721918971517, 45.495252615836201 ], [ 9.220539154703493, 45.495002049713925 ], [ 9.220255242009516, 45.49480346654088 ], [ 9.219897972227644, 45.494676304398595 ], [ 9.219502316349605, 45.494633010303424 ], [ 9.219107002222836, 45.494677821996909 ], [ 9.218750724250723, 45.494806353197184 ], [ 9.218468356363237, 45.495006022882926 ], [ 9.218287538710992, 45.495257286617161 ], [ 9.218225972049297, 45.495535549455127 ], [ 9.218289684658609, 45.495813573277673 ], [ 9.218472441602627, 45.496064142976962 ], [ 9.218756354398712, 45.496262730536984 ], [ 9.219113631669835, 45.496389896200519 ], [ 9.219509299563603, 45.496433191606279 ], [ 9.219904625642993, 45.496388378512066 ], [ 9.220260910939123, 45.496259843734798 ], [ 9.220543278724493, 45.496060169662066 ], [ 9.220724088887494, 45.495808902406552 ], [ 9.220785643533455, 45.495530638257982 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.196103459422307, 45.49614341477681 ], [ 9.196039855570145, 45.495865378415196 ], [ 9.195857198639592, 45.495614772650924 ], [ 9.195573369405192, 45.495416128014625 ], [ 9.195216151037028, 45.495288888604236 ], [ 9.19482050949539, 45.495245508999176 ], [ 9.19442517122479, 45.495290235310534 ], [ 9.194068832991425, 45.495418689613594 ], [ 9.19378637462269, 45.495618298413795 ], [ 9.193605445124499, 45.495869523234099 ], [ 9.193543756199146, 45.496147772939388 ], [ 9.19360734809467, 45.496425810696699 ], [ 9.193789997691628, 45.496676420034909 ], [ 9.19407382701665, 45.496875069058333 ], [ 9.194431052865044, 45.497002311993256 ], [ 9.194826706419327, 45.497045692914028 ], [ 9.195222056646555, 45.497000965206944 ], [ 9.195578402213519, 45.496872507329911 ], [ 9.195860860491639, 45.496672894142613 ], [ 9.196041782509591, 45.496421665797754 ], [ 9.196103459422307, 45.49614341477681 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.186322395406531, 45.49769962431116 ], [ 9.186258837895837, 45.497421582506178 ], [ 9.186076219247823, 45.497170961109767 ], [ 9.185792416490321, 45.496972292182889 ], [ 9.185435210202295, 45.496845022201128 ], [ 9.185039565161983, 45.49680160873627 ], [ 9.184644208156437, 45.496846301213587 ], [ 9.184287837785408, 45.496974725019939 ], [ 9.184005337021537, 45.497174309645857 ], [ 9.183824359020036, 45.497425518980712 ], [ 9.183762620230596, 45.497703763405376 ], [ 9.183826165782248, 45.497981806604123 ], [ 9.184008777092357, 45.498232431573463 ], [ 9.18429257993593, 45.498431104887729 ], [ 9.18464979370113, 45.498558378395444 ], [ 9.185045450753682, 45.498601793178082 ], [ 9.185440819718281, 45.498557099306971 ], [ 9.185797197427208, 45.498428671927712 ], [ 9.186079698105006, 45.49822908291442 ], [ 9.186260668629332, 45.497977870053589 ], [ 9.186322395406531, 45.49769962431116 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.094246170640107, 45.505210555850319 ], [ 9.094183057750067, 45.504932462831675 ], [ 9.094000823043535, 45.504681694263915 ], [ 9.093717305970813, 45.504482796615704 ], [ 9.093360259152151, 45.504355238751266 ], [ 9.092964631760305, 45.504311506420557 ], [ 9.092569148855954, 45.504355880258885 ], [ 9.092212521360125, 45.50448401684114 ], [ 9.09192965740926, 45.504683373771776 ], [ 9.091748245703764, 45.504934437228776 ], [ 9.091686045142801, 45.50521263187435 ], [ 9.091749146055626, 45.505490726268214 ], [ 9.091931373386531, 45.505741498398187 ], [ 9.092214890502456, 45.505940400435051 ], [ 9.092571944766643, 45.50606796183812 ], [ 9.092967584162407, 45.506111695505936 ], [ 9.093363079043971, 45.50606732029236 ], [ 9.093719713915426, 45.505939180147877 ], [ 9.094002577823085, 45.50573981882863 ], [ 9.094183982083049, 45.505488751832949 ], [ 9.094246170640107, 45.505210555850319 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.102983975060127, 45.501007658016128 ], [ 9.102920823892044, 45.500729569653231 ], [ 9.102738564010401, 45.500478814861793 ], [ 9.102455037329117, 45.500279938761913 ], [ 9.102097997408418, 45.500152408108626 ], [ 9.101702392745603, 45.500108705988431 ], [ 9.101306946176676, 45.500153110079786 ], [ 9.100950365066454, 45.500281273996372 ], [ 9.100667553011542, 45.500480652667079 ], [ 9.100486193632971, 45.500731730141709 ], [ 9.100424040708024, 45.501009929710108 ], [ 9.100487179902808, 45.501288019449831 ], [ 9.100669432413758, 45.501538777804072 ], [ 9.100952959142303, 45.501737658291923 ], [ 9.101310006510177, 45.501865192482263 ], [ 9.101705623175498, 45.501908895937511 ], [ 9.102101081717722, 45.501864490469352 ], [ 9.102457670198635, 45.501736322989942 ], [ 9.102740482206285, 45.501536939931263 ], [ 9.102921834137685, 45.501285858919616 ], [ 9.102983975060127, 45.501007658016128 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.249473361159334, 45.505251616378999 ], [ 9.249409484303792, 45.504973610758107 ], [ 9.249226561349321, 45.504723091298935 ], [ 9.24894249910839, 45.504524580082816 ], [ 9.248585103555833, 45.504397508147406 ], [ 9.248189357992635, 45.504354313679301 ], [ 9.247793999043791, 45.504399224668688 ], [ 9.247437725499912, 45.504527845114779 ], [ 9.247155410858523, 45.504727585260973 ], [ 9.246974690060037, 45.504978893773313 ], [ 9.246913254381116, 45.505257171323528 ], [ 9.246977119282157, 45.505535178351494 ], [ 9.247160034919739, 45.505785701392504 ], [ 9.247444097276201, 45.505984216997042 ], [ 9.247801500332578, 45.506111292451266 ], [ 9.248197257921676, 45.506154488224475 ], [ 9.248592628825028, 45.50610957582802 ], [ 9.248948909685787, 45.505980951800076 ], [ 9.249231224211657, 45.505781207265471 ], [ 9.249411937506316, 45.505529895234289 ], [ 9.249473361159334, 45.505251616378999 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.202390410384078, 45.507240243911141 ], [ 9.202326762913446, 45.506962211666718 ], [ 9.202144042069644, 45.506711616553289 ], [ 9.201860134883782, 45.506512988058603 ], [ 9.201502832155937, 45.506385768700298 ], [ 9.201107108103164, 45.50634241109487 ], [ 9.200711697245627, 45.506387159200074 ], [ 9.200355303453961, 45.506515632958099 ], [ 9.200072811993733, 45.506715256970324 ], [ 9.199891875110508, 45.506966491270859 ], [ 9.199830205230429, 45.507244743796676 ], [ 9.199893840738374, 45.507522777438631 ], [ 9.200076554246674, 45.507773376128227 ], [ 9.200360461526138, 45.507972009011716 ], [ 9.20071777174093, 45.508099231895116 ], [ 9.20111350781424, 45.508142590815446 ], [ 9.201508930634464, 45.508097841312704 ], [ 9.201865331761631, 45.507969363978539 ], [ 9.202147823128264, 45.507769735577533 ], [ 9.202328752524535, 45.507518497751875 ], [ 9.202390410384078, 45.507240243911141 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.180883173342545, 45.505534984986831 ], [ 9.180819633659089, 45.505256940510691 ], [ 9.180637013676206, 45.505006310765516 ], [ 9.180353190553101, 45.504807628629408 ], [ 9.179995946862629, 45.504680341870845 ], [ 9.179600251044093, 45.504636909703578 ], [ 9.179204834854469, 45.504681583383395 ], [ 9.178848402686059, 45.504809990137083 ], [ 9.178565843559927, 45.505009561124446 ], [ 9.178384816343847, 45.505260761570064 ], [ 9.178323042305109, 45.505539002725193 ], [ 9.178386570023797, 45.505817048594352 ], [ 9.178569182663693, 45.506067681912761 ], [ 9.178853005870373, 45.506266368437466 ], [ 9.179210257039054, 45.506393658723653 ], [ 9.179605964874016, 45.506437092210177 ], [ 9.180001393028405, 45.506392417137334 ], [ 9.180357832539801, 45.506264006810405 ], [ 9.180640391582362, 45.506064431434481 ], [ 9.180821411320235, 45.505813227461218 ], [ 9.180883173342545, 45.505534984986831 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.22399088379394, 45.506146401895741 ], [ 9.223927131286286, 45.505868381833125 ], [ 9.223744318290935, 45.505617821398445 ], [ 9.223460340858223, 45.505419246684475 ], [ 9.223102996663043, 45.505292094944409 ], [ 9.222707263980462, 45.505248812176241 ], [ 9.222311878175066, 45.505293635012798 ], [ 9.221955540665766, 45.505422176081623 ], [ 9.221673131210023, 45.505621853395589 ], [ 9.221492294027682, 45.505873121771316 ], [ 9.221430731786542, 45.506151385809773 ], [ 9.221494472335376, 45.506429407274268 ], [ 9.221677278003829, 45.506679971287667 ], [ 9.221961255540208, 45.506878550390283 ], [ 9.222318607230005, 45.50700570565251 ], [ 9.222714351935474, 45.507048989731082 ], [ 9.22310974969969, 45.507004165492624 ], [ 9.223466094535889, 45.506875620845086 ], [ 9.223748503887968, 45.506675939142511 ], [ 9.223929333575692, 45.506424667244602 ], [ 9.22399088379394, 45.506146401895741 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.242667844617728, 45.500079892878851 ], [ 9.242604007195402, 45.499801883118998 ], [ 9.242421131221194, 45.49955135243782 ], [ 9.242137118908914, 45.499352824015453 ], [ 9.241779771346481, 45.499225730573905 ], [ 9.241384067137925, 45.499182512404893 ], [ 9.240988738860754, 45.499227399818423 ], [ 9.240632482303544, 45.499355999121342 ], [ 9.240350169300964, 45.499555722626361 ], [ 9.240169434632561, 45.499807020628431 ], [ 9.240107970932019, 45.500085294828096 ], [ 9.240171796402091, 45.500363305993424 ], [ 9.240354665058819, 45.500613840254907 ], [ 9.24063867748343, 45.500812373064925 ], [ 9.240996032545098, 45.500939470025529 ], [ 9.241391748775335, 45.500982689500809 ], [ 9.241787089004765, 45.500937800681811 ], [ 9.242143352879445, 45.50080919779861 ], [ 9.242425665769696, 45.500609469905939 ], [ 9.242606392938869, 45.5003581683848 ], [ 9.242667844617728, 45.500079892878851 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.222284654694999, 45.500443021256054 ], [ 9.222220917125858, 45.500164999934753 ], [ 9.22203813024317, 45.49991443646946 ], [ 9.221754187540949, 45.499715857249747 ], [ 9.221396883294561, 45.499588699970069 ], [ 9.221001191869011, 45.499545411170679 ], [ 9.220605844590898, 45.499590228074737 ], [ 9.220249539108295, 45.499718763890456 ], [ 9.219967152043884, 45.499918437144792 ], [ 9.21978632542557, 45.500169703051625 ], [ 9.21972476088667, 45.500447966453521 ], [ 9.219788486500326, 45.500725989176111 ], [ 9.219971266057676, 45.500976556219207 ], [ 9.220255208862728, 45.501175139826636 ], [ 9.220612520600856, 45.501302300628019 ], [ 9.221008224045454, 45.50134559073792 ], [ 9.221403583279049, 45.501300772432558 ], [ 9.221759896086999, 45.501172233039064 ], [ 9.222042283048571, 45.500972555396963 ], [ 9.222223102175146, 45.500721285968446 ], [ 9.222284654694999, 45.500443021256054 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.199199983352962, 45.501623979875966 ], [ 9.199136358003953, 45.501345945542361 ], [ 9.19895366955032, 45.501095345023863 ], [ 9.198669801852457, 45.500896708337443 ], [ 9.198312541845299, 45.500769478802738 ], [ 9.197916859564582, 45.500726110032389 ], [ 9.197521485442094, 45.500770847077021 ], [ 9.197165119753034, 45.500899310961366 ], [ 9.196882645012215, 45.501098927253125 ], [ 9.196701711828387, 45.501350156742092 ], [ 9.19664003226508, 45.501628407836129 ], [ 9.196703645654461, 45.501906443566305 ], [ 9.196886326773555, 45.502157047659864 ], [ 9.197170194563508, 45.502355688734212 ], [ 9.197527462054209, 45.502482921793735 ], [ 9.197923156351463, 45.502526291879391 ], [ 9.198318542433576, 45.502481553438152 ], [ 9.198674915457177, 45.502353085978754 ], [ 9.198957390105905, 45.502153465299052 ], [ 9.199138315806188, 45.501902232285275 ], [ 9.199199983352962, 45.501623979875966 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.261887493874514, 45.511161176973999 ], [ 9.261823549124012, 45.510883178734097 ], [ 9.26164055193072, 45.510632679578919 ], [ 9.26135641637377, 45.510434199601981 ], [ 9.260998955603856, 45.510307166782901 ], [ 9.2606031593049, 45.510264015479471 ], [ 9.260207769067481, 45.510308969456865 ], [ 9.259851486744697, 45.510437628506814 ], [ 9.259569186693746, 45.510637399094136 ], [ 9.259388502427671, 45.510888726905293 ], [ 9.259327121648059, 45.511167010722708 ], [ 9.25939105444218, 45.511445010372555 ], [ 9.259574044321015, 45.511695513111874 ], [ 9.259858179999307, 45.511893997478111 ], [ 9.260215648280028, 45.512021033815124 ], [ 9.260611456610361, 45.512064186421384 ], [ 9.261006858804166, 45.512019231034095 ], [ 9.261363148441406, 45.511890568400034 ], [ 9.261645448371015, 45.511690793423384 ], [ 9.261826125126285, 45.511439462094259 ], [ 9.261887493874514, 45.511161176973999 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.225779316940786, 45.512026981602823 ], [ 9.22571554888135, 45.51174896285508 ], [ 9.225532708823884, 45.511498405592924 ], [ 9.225248695467974, 45.511299835598457 ], [ 9.224891310004812, 45.511172689662793 ], [ 9.224495534748637, 45.511129413215684 ], [ 9.22410010923087, 45.511174242271188 ], [ 9.223743738757252, 45.511302788848212 ], [ 9.223461306311803, 45.51150247042056 ], [ 9.223280458364881, 45.511753741388176 ], [ 9.223218898638422, 45.512032006098359 ], [ 9.223282654735607, 45.512310026248684 ], [ 9.223465487464589, 45.51256058709054 ], [ 9.22374950092502, 45.512759161474527 ], [ 9.224106893885786, 45.512886310932871 ], [ 9.224502681168818, 45.512929588690298 ], [ 9.224898118648843, 45.512884758232239 ], [ 9.225254496450946, 45.51275620807553 ], [ 9.225536928791868, 45.512556522113648 ], [ 9.225717769241186, 45.512305247623345 ], [ 9.225779316940786, 45.512026981602823 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.175260155479744, 45.513552347732599 ], [ 9.175196634332387, 45.513274300492675 ], [ 9.175014013242865, 45.513023662112509 ], [ 9.174730169479455, 45.512824966315421 ], [ 9.174372887635798, 45.512697662206989 ], [ 9.173977139885741, 45.512654210699004 ], [ 9.173581663069086, 45.512698864940226 ], [ 9.173225167511884, 45.512827254060149 ], [ 9.172942548439408, 45.513026810944751 ], [ 9.172761470587011, 45.513278002199215 ], [ 9.172699660178784, 45.513556239974761 ], [ 9.172763169355502, 45.513834288606958 ], [ 9.172945783096806, 45.514084930560642 ], [ 9.1732296269412, 45.514283630747542 ], [ 9.173586916264107, 45.514410938385339 ], [ 9.173982676034848, 45.514454391214123 ], [ 9.174378164822144, 45.514409735580621 ], [ 9.174734667727559, 45.51428134288718 ], [ 9.175017286719056, 45.514081781612781 ], [ 9.175198357092205, 45.513830586828945 ], [ 9.175260155479744, 45.513552347732599 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.206650179878853, 45.514731595881628 ], [ 9.206586502868216, 45.514453566428074 ], [ 9.206403738785639, 45.514202978533675 ], [ 9.206119778894921, 45.514004360979357 ], [ 9.205762419154969, 45.513877155211617 ], [ 9.205366639362941, 45.513833812516623 ], [ 9.204971179494382, 45.513878575392653 ], [ 9.204614748216899, 45.514007062336169 ], [ 9.204332234465232, 45.514206696658036 ], [ 9.204151292667293, 45.514457937383476 ], [ 9.20408963573095, 45.514736191820489 ], [ 9.204153300774809, 45.515014222672811 ], [ 9.204336057520614, 45.515264814144835 ], [ 9.204620017506951, 45.515463436089114 ], [ 9.204977384738394, 45.515590645382318 ], [ 9.205373176556288, 45.515633989391695 ], [ 9.205768648391626, 45.515589225116912 ], [ 9.206125087005889, 45.515460734595777 ], [ 9.206407600661931, 45.515261095883929 ], [ 9.206588534968377, 45.515009851633053 ], [ 9.206650179878853, 45.514731595881628 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.227410539809259, 45.517451963087694 ], [ 9.227346757489737, 45.51717394554273 ], [ 9.227163892541478, 45.51692339117799 ], [ 9.226879846100767, 45.516724825491849 ], [ 9.226522422597238, 45.516597684853551 ], [ 9.226126608068414, 45.516554414174237 ], [ 9.225731145889464, 45.516599248903397 ], [ 9.225374744954337, 45.516727800504619 ], [ 9.225092291228632, 45.516927485960089 ], [ 9.224911433265872, 45.517178759289699 ], [ 9.224849875768802, 45.517457024609648 ], [ 9.224913646122896, 45.517735043557757 ], [ 9.225096503741197, 45.517985601503078 ], [ 9.22538055028722, 45.518184171579556 ], [ 9.2257379812911, 45.518311315741023 ], [ 9.226133807850434, 45.51835458773057 ], [ 9.226529281994816, 45.518309751598252 ], [ 9.226885690259895, 45.518181196416435 ], [ 9.227168143880293, 45.517981506570642 ], [ 9.227348994342703, 45.517730229717891 ], [ 9.227410539809259, 45.517451963087694 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.169506339985832, 45.521670911958488 ], [ 9.169442837915605, 45.521392861888081 ], [ 9.169260215975633, 45.521142214667869 ], [ 9.168976351518211, 45.520943504886517 ], [ 9.168619031163011, 45.520816183018255 ], [ 9.168223230853535, 45.520772711713072 ], [ 9.167827692573839, 45.520817346057456 ], [ 9.167471132665561, 45.52094571712837 ], [ 9.167188452652352, 45.52114525957861 ], [ 9.167007323234495, 45.521396441426504 ], [ 9.166945475683807, 45.521674675744222 ], [ 9.167008965777447, 45.52195272720612 ], [ 9.167191580363879, 45.522203378000114 ], [ 9.167475444899637, 45.522402092172534 ], [ 9.167832772735107, 45.52252941757191 ], [ 9.168228585069592, 45.522572890199456 ], [ 9.16862413532588, 45.522528254463602 ], [ 9.168980702587687, 45.522399879818856 ], [ 9.169263382522569, 45.522200332977583 ], [ 9.169444504460154, 45.521949147598583 ], [ 9.169506339985832, 45.521670911958488 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.213461052649057, 45.526781819060055 ], [ 9.213397328295333, 45.526503794076852 ], [ 9.21321449480485, 45.526253217734926 ], [ 9.212930450235845, 45.526054617683975 ], [ 9.212572998835661, 45.525927433656911 ], [ 9.212177129372755, 45.525884114811639 ], [ 9.21178159059907, 45.525928901312056 ], [ 9.211425098905057, 45.5260574093423 ], [ 9.211142549139163, 45.526257060149554 ], [ 9.210961599255075, 45.526508311145491 ], [ 9.210899962953224, 45.526786568632915 ], [ 9.210963675333584, 45.527064595016853 ], [ 9.211146501485221, 45.527315174938785 ], [ 9.211430546153077, 45.527513779381543 ], [ 9.211788005052053, 45.527640966934683 ], [ 9.212183886549406, 45.527684287093486 ], [ 9.212579437296446, 45.527639499192361 ], [ 9.212935936329306, 45.527510987582097 ], [ 9.213218485996359, 45.527311332383071 ], [ 9.213399428381649, 45.527060077861023 ], [ 9.213461052649057, 45.526781819060055 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.210754044210942, 45.521992149596812 ], [ 9.210690338678521, 45.521714122836194 ], [ 9.21050753278104, 45.52146354190171 ], [ 9.210223521875612, 45.521264934892784 ], [ 9.209866106914552, 45.521137742223551 ], [ 9.209470273099805, 45.521094413897892 ], [ 9.209074765694309, 45.521139191007599 ], [ 9.208718298018358, 45.521267690656039 ], [ 9.208435762569449, 45.521467334910639 ], [ 9.208254815899641, 45.521718581824423 ], [ 9.208193171394321, 45.52199683809976 ], [ 9.208256864956001, 45.522274866260339 ], [ 9.208439663515456, 45.522525450773863 ], [ 9.208723674518449, 45.52272406217385 ], [ 9.2090810969754, 45.522851258368931 ], [ 9.209476942821183, 45.522894588008469 ], [ 9.209872462197417, 45.522849809498794 ], [ 9.210228937211394, 45.522721306271322 ], [ 9.210511472562745, 45.522521657625667 ], [ 9.210692411736659, 45.522270407186014 ], [ 9.210754044210942, 45.521992149596812 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.165009686837166, 45.52813076216033 ], [ 9.164946199553626, 45.527852709885025 ], [ 9.164763576578549, 45.527602055761854 ], [ 9.164479695366134, 45.527403335055176 ], [ 9.164122344176462, 45.527275999308472 ], [ 9.163726501971196, 45.527232512530126 ], [ 9.163330914834953, 45.527277131320993 ], [ 9.162974303891126, 45.527405488280507 ], [ 9.162691575658478, 45.527605019442774 ], [ 9.162510405557056, 45.527856193931235 ], [ 9.162448528841187, 45.528134425538646 ], [ 9.162512004143407, 45.528412479204817 ], [ 9.162694619760748, 45.528663136902026 ], [ 9.162978501049416, 45.528861862000788 ], [ 9.16333585972021, 45.528989201279963 ], [ 9.163731713953933, 45.529032689381907 ], [ 9.164127313071493, 45.528988069200167 ], [ 9.164483931373056, 45.528859708666609 ], [ 9.164766659529448, 45.528660173112257 ], [ 9.164947822149751, 45.528408995091368 ], [ 9.165009686837166, 45.52813076216033 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.238276143918526, 45.491201742488471 ], [ 9.238212338304878, 45.490923729776902 ], [ 9.238029510670412, 45.490673191576938 ], [ 9.237745558496851, 45.490474651804895 ], [ 9.237388276985612, 45.490347544293918 ], [ 9.236992638275909, 45.490304310713107 ], [ 9.236597368534648, 45.490349182880976 ], [ 9.23624115782121, 45.490477768596499 ], [ 9.235958873482989, 45.490677481502217 ], [ 9.235778147493377, 45.490928772930424 ], [ 9.235716671635792, 45.491207045225096 ], [ 9.235780465302115, 45.491485059340796 ], [ 9.235963285620858, 45.491735601119416 ], [ 9.23624723790466, 45.491934145277781 ], [ 9.236604526909993, 45.492061256307224 ], [ 9.237000177635153, 45.492104491194802 ], [ 9.237395459323741, 45.492059617622836 ], [ 9.237751677352902, 45.491931028328636 ], [ 9.238033961580884, 45.491731311036645 ], [ 9.238214680076398, 45.491480016089902 ], [ 9.238276143918526, 45.491201742488471 ] ] ] } }, +{ "type": "Feature", "properties": { "id": "node\/21225838", "@id": "node\/21225838", "name": "Wagner", "operator": "ATM", "railway": "station", "start_date": "1966", "station": "subway", "wikidata": "Q3565090", "wikipedia": "it:Wagner (metropolitana di Milano)", "alt_name": null, "name_it": null, "name_ja": null, "subway": null, "wheelchair": null, "old_name": null, "level": null, "public_tra": null, "train": null, "toilets_wh": null, "wheelcha_1": null, "platforms": null, "official_n": null, "fixme": null, "cycling_wi": null, "layer": null, "comment_it": null }, "geometry": { "type": "Polygon", "coordinates": [ [ [ 9.193839578688271, 45.492571540272941 ], [ 9.19377599005122, 45.492293502451396 ], [ 9.193593354748742, 45.492042892874451 ], [ 9.193309551438222, 45.491844242445993 ], [ 9.192952360752269, 45.491716995831027 ], [ 9.192556745941769, 45.49167360831423 ], [ 9.192161430834975, 45.491718326781161 ], [ 9.191805109930911, 45.49184677407483 ], [ 9.191522661360732, 45.492046377386679 ], [ 9.191453050157111, 45.492143033841685 ], [ 9.191376859950093, 45.492196876079085 ], [ 9.191195930631748, 45.492448097233556 ], [ 9.191134233516339, 45.492726345818014 ], [ 9.191197809653247, 45.493004385109295 ], [ 9.191380437465352, 45.493254998486258 ], [ 9.191664241111653, 45.493453653657866 ], [ 9.192021439901255, 45.493580904248752 ], [ 9.192417067665685, 45.493624293583828 ], [ 9.192812395896853, 45.493579574225706 ], [ 9.193168725414925, 45.493451123814921 ], [ 9.193451175162361, 45.493251516480221 ], [ 9.193520784303294, 45.49315485882974 ], [ 9.193596973751371, 45.493101015172634 ], [ 9.193777894463059, 45.492849790258063 ], [ 9.193839578688271, 45.492571540272941 ] ] ] } } +] +} diff --git a/package.json b/package.json new file mode 100644 index 0000000..c073023 --- /dev/null +++ b/package.json @@ -0,0 +1,17 @@ +{ + "dependencies": { + "@turf/bbox": "^6.0.1", + "@turf/bbox-polygon": "^6.0.1", + "@turf/boolean-contains": "^6.0.1", + "@turf/boolean-overlap": "^6.0.1", + "@turf/buffer": "^5.1.5", + "@turf/center": "^6.0.1", + "mapbox-gl": "^1.1.0", + "underscore": "^1.9.1" + }, + "devDependencies": { + "@babel/core": "^7.5.4", + "@babel/plugin-proposal-class-properties": "^7.5.0", + "babel-preset-env": "^1.7.0" + } +} diff --git a/style.css b/style.css new file mode 100644 index 0000000..109af7c --- /dev/null +++ b/style.css @@ -0,0 +1,89 @@ +body, +html { + padding: 0; + margin: 0; +} + +#container { + width: 100%; + height: 100vh; + position: relative; +} + +#map { + width: 100%; + height: 100%; +} + +.map-overlay { + font: bold 12px/20px "Helvetica Neue", Arial, Helvetica, sans-serif; + position: absolute; + width: 25%; + bottom: 10px; + right: 0; + padding: 10px; +} + +.map-overlay .map-overlay-inner { + background-color: #fff; + box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2); + border-radius: 3px; + padding: 10px; + margin-bottom: 10px; +} + +.map-overlay label { + display: block; + margin: 0 0 10px; +} + +.map-overlay input { + background-color: transparent; + display: inline-block; + width: 100%; + position: relative; + margin: 0; + cursor: ew-resize; +} + +#menu { + background: #fff; + position: absolute; + z-index: 1; + top: 10px; + right: 10px; + border-radius: 3px; + width: 120px; + border: 1px solid rgba(0, 0, 0, 0.4); + font-family: "Open Sans", sans-serif; +} + +#menu a { + font-size: 13px; + color: #404040; + display: block; + margin: 0; + padding: 0; + padding: 10px; + text-decoration: none; + border-bottom: 1px solid rgba(0, 0, 0, 0.25); + text-align: center; +} + +#menu a:last-child { + border: none; +} + +#menu a:hover { + background-color: #f8f8f8; + color: #404040; +} + +#menu a.active { + background-color: #3887be; + color: #ffffff; +} + +#menu a.active:hover { + background: #3074a4; +} diff --git a/yarn.lock b/yarn.lock new file mode 100644 index 0000000..a841664 --- /dev/null +++ b/yarn.lock @@ -0,0 +1,1493 @@ +# THIS IS AN AUTOGENERATED FILE. DO NOT EDIT THIS FILE DIRECTLY. +# yarn lockfile v1 + + +"@babel/code-frame@^7.0.0", "@babel/code-frame@^7.5.5": + version "7.5.5" + resolved "https://registry.yarnpkg.com/@babel/code-frame/-/code-frame-7.5.5.tgz#bc0782f6d69f7b7d49531219699b988f669a8f9d" + integrity sha512-27d4lZoomVyo51VegxI20xZPuSHusqbQag/ztrBC7wegWoQ1nLREPVSKSW8byhTlzTKyNE4ifaTA6lCp7JjpFw== + dependencies: + "@babel/highlight" "^7.0.0" + +"@babel/core@^7.5.4": + version "7.5.5" + resolved "https://registry.yarnpkg.com/@babel/core/-/core-7.5.5.tgz#17b2686ef0d6bc58f963dddd68ab669755582c30" + integrity sha512-i4qoSr2KTtce0DmkuuQBV4AuQgGPUcPXMr9L5MyYAtk06z068lQ10a4O009fe5OB/DfNV+h+qqT7ddNV8UnRjg== + dependencies: + "@babel/code-frame" "^7.5.5" + "@babel/generator" "^7.5.5" + "@babel/helpers" "^7.5.5" + "@babel/parser" "^7.5.5" + "@babel/template" "^7.4.4" + "@babel/traverse" "^7.5.5" + "@babel/types" "^7.5.5" + convert-source-map "^1.1.0" + debug "^4.1.0" + json5 "^2.1.0" + lodash "^4.17.13" + resolve "^1.3.2" + semver "^5.4.1" + source-map "^0.5.0" + +"@babel/generator@^7.5.5": + version "7.5.5" + resolved "https://registry.yarnpkg.com/@babel/generator/-/generator-7.5.5.tgz#873a7f936a3c89491b43536d12245b626664e3cf" + integrity sha512-ETI/4vyTSxTzGnU2c49XHv2zhExkv9JHLTwDAFz85kmcwuShvYG2H08FwgIguQf4JC75CBnXAUM5PqeF4fj0nQ== + dependencies: + "@babel/types" "^7.5.5" + jsesc "^2.5.1" + lodash "^4.17.13" + source-map "^0.5.0" + trim-right "^1.0.1" + +"@babel/helper-create-class-features-plugin@^7.5.5": + version "7.5.5" + resolved "https://registry.yarnpkg.com/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.5.5.tgz#401f302c8ddbc0edd36f7c6b2887d8fa1122e5a4" + integrity sha512-ZsxkyYiRA7Bg+ZTRpPvB6AbOFKTFFK4LrvTet8lInm0V468MWCaSYJE+I7v2z2r8KNLtYiV+K5kTCnR7dvyZjg== + dependencies: + "@babel/helper-function-name" "^7.1.0" + "@babel/helper-member-expression-to-functions" "^7.5.5" + "@babel/helper-optimise-call-expression" "^7.0.0" + "@babel/helper-plugin-utils" "^7.0.0" + "@babel/helper-replace-supers" "^7.5.5" + "@babel/helper-split-export-declaration" "^7.4.4" + +"@babel/helper-function-name@^7.1.0": + version "7.1.0" + resolved "https://registry.yarnpkg.com/@babel/helper-function-name/-/helper-function-name-7.1.0.tgz#a0ceb01685f73355d4360c1247f582bfafc8ff53" + integrity sha512-A95XEoCpb3TO+KZzJ4S/5uW5fNe26DjBGqf1o9ucyLyCmi1dXq/B3c8iaWTfBk3VvetUxl16e8tIrd5teOCfGw== + dependencies: + "@babel/helper-get-function-arity" "^7.0.0" + "@babel/template" "^7.1.0" + "@babel/types" "^7.0.0" + +"@babel/helper-get-function-arity@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@babel/helper-get-function-arity/-/helper-get-function-arity-7.0.0.tgz#83572d4320e2a4657263734113c42868b64e49c3" + integrity sha512-r2DbJeg4svYvt3HOS74U4eWKsUAMRH01Z1ds1zx8KNTPtpTL5JAsdFv8BNyOpVqdFhHkkRDIg5B4AsxmkjAlmQ== + dependencies: + "@babel/types" "^7.0.0" + +"@babel/helper-member-expression-to-functions@^7.5.5": + version "7.5.5" + resolved "https://registry.yarnpkg.com/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.5.5.tgz#1fb5b8ec4453a93c439ee9fe3aeea4a84b76b590" + integrity sha512-5qZ3D1uMclSNqYcXqiHoA0meVdv+xUEex9em2fqMnrk/scphGlGgg66zjMrPJESPwrFJ6sbfFQYUSa0Mz7FabA== + dependencies: + "@babel/types" "^7.5.5" + +"@babel/helper-optimise-call-expression@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.0.0.tgz#a2920c5702b073c15de51106200aa8cad20497d5" + integrity sha512-u8nd9NQePYNQV8iPWu/pLLYBqZBa4ZaY1YWRFMuxrid94wKI1QNt67NEZ7GAe5Kc/0LLScbim05xZFWkAdrj9g== + dependencies: + "@babel/types" "^7.0.0" + +"@babel/helper-plugin-utils@^7.0.0": + version "7.0.0" + resolved "https://registry.yarnpkg.com/@babel/helper-plugin-utils/-/helper-plugin-utils-7.0.0.tgz#bbb3fbee98661c569034237cc03967ba99b4f250" + integrity sha512-CYAOUCARwExnEixLdB6sDm2dIJ/YgEAKDM1MOeMeZu9Ld/bDgVo8aiWrXwcY7OBh+1Ea2uUcVRcxKk0GJvW7QA== + +"@babel/helper-replace-supers@^7.5.5": + version "7.5.5" + resolved "https://registry.yarnpkg.com/@babel/helper-replace-supers/-/helper-replace-supers-7.5.5.tgz#f84ce43df031222d2bad068d2626cb5799c34bc2" + integrity sha512-XvRFWrNnlsow2u7jXDuH4jDDctkxbS7gXssrP4q2nUD606ukXHRvydj346wmNg+zAgpFx4MWf4+usfC93bElJg== + dependencies: + "@babel/helper-member-expression-to-functions" "^7.5.5" + "@babel/helper-optimise-call-expression" "^7.0.0" + "@babel/traverse" "^7.5.5" + "@babel/types" "^7.5.5" + +"@babel/helper-split-export-declaration@^7.4.4": + version "7.4.4" + resolved "https://registry.yarnpkg.com/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.4.4.tgz#ff94894a340be78f53f06af038b205c49d993677" + integrity sha512-Ro/XkzLf3JFITkW6b+hNxzZ1n5OQ80NvIUdmHspih1XAhtN3vPTuUFT4eQnela+2MaZ5ulH+iyP513KJrxbN7Q== + dependencies: + "@babel/types" "^7.4.4" + +"@babel/helpers@^7.5.5": + version "7.5.5" + resolved "https://registry.yarnpkg.com/@babel/helpers/-/helpers-7.5.5.tgz#63908d2a73942229d1e6685bc2a0e730dde3b75e" + integrity sha512-nRq2BUhxZFnfEn/ciJuhklHvFOqjJUD5wpx+1bxUF2axL9C+v4DE/dmp5sT2dKnpOs4orZWzpAZqlCy8QqE/7g== + dependencies: + "@babel/template" "^7.4.4" + "@babel/traverse" "^7.5.5" + "@babel/types" "^7.5.5" + +"@babel/highlight@^7.0.0": + version "7.5.0" + resolved "https://registry.yarnpkg.com/@babel/highlight/-/highlight-7.5.0.tgz#56d11312bd9248fa619591d02472be6e8cb32540" + integrity sha512-7dV4eu9gBxoM0dAnj/BCFDW9LFU0zvTrkq0ugM7pnHEgguOEeOz1so2ZghEdzviYzQEED0r4EAgpsBChKy1TRQ== + dependencies: + chalk "^2.0.0" + esutils "^2.0.2" + js-tokens "^4.0.0" + +"@babel/parser@^7.4.4", "@babel/parser@^7.5.5": + version "7.5.5" + resolved "https://registry.yarnpkg.com/@babel/parser/-/parser-7.5.5.tgz#02f077ac8817d3df4a832ef59de67565e71cca4b" + integrity sha512-E5BN68cqR7dhKan1SfqgPGhQ178bkVKpXTPEXnFJBrEt8/DKRZlybmy+IgYLTeN7tp1R5Ccmbm2rBk17sHYU3g== + +"@babel/plugin-proposal-class-properties@^7.5.0": + version "7.5.5" + resolved "https://registry.yarnpkg.com/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.5.5.tgz#a974cfae1e37c3110e71f3c6a2e48b8e71958cd4" + integrity sha512-AF79FsnWFxjlaosgdi421vmYG6/jg79bVD0dpD44QdgobzHKuLZ6S3vl8la9qIeSwGi8i1fS0O1mfuDAAdo1/A== + dependencies: + "@babel/helper-create-class-features-plugin" "^7.5.5" + "@babel/helper-plugin-utils" "^7.0.0" + +"@babel/template@^7.1.0", "@babel/template@^7.4.4": + version "7.4.4" + resolved "https://registry.yarnpkg.com/@babel/template/-/template-7.4.4.tgz#f4b88d1225689a08f5bc3a17483545be9e4ed237" + integrity sha512-CiGzLN9KgAvgZsnivND7rkA+AeJ9JB0ciPOD4U59GKbQP2iQl+olF1l76kJOupqidozfZ32ghwBEJDhnk9MEcw== + dependencies: + "@babel/code-frame" "^7.0.0" + "@babel/parser" "^7.4.4" + "@babel/types" "^7.4.4" + +"@babel/traverse@^7.5.5": + version "7.5.5" + resolved "https://registry.yarnpkg.com/@babel/traverse/-/traverse-7.5.5.tgz#f664f8f368ed32988cd648da9f72d5ca70f165bb" + integrity sha512-MqB0782whsfffYfSjH4TM+LMjrJnhCNEDMDIjeTpl+ASaUvxcjoiVCo/sM1GhS1pHOXYfWVCYneLjMckuUxDaQ== + dependencies: + "@babel/code-frame" "^7.5.5" + "@babel/generator" "^7.5.5" + "@babel/helper-function-name" "^7.1.0" + "@babel/helper-split-export-declaration" "^7.4.4" + "@babel/parser" "^7.5.5" + "@babel/types" "^7.5.5" + debug "^4.1.0" + globals "^11.1.0" + lodash "^4.17.13" + +"@babel/types@^7.0.0", "@babel/types@^7.4.4", "@babel/types@^7.5.5": + version "7.5.5" + resolved "https://registry.yarnpkg.com/@babel/types/-/types-7.5.5.tgz#97b9f728e182785909aa4ab56264f090a028d18a" + integrity sha512-s63F9nJioLqOlW3UkyMd+BYhXt44YuaFm/VV0VwuteqjYwRrObkU7ra9pY4wAJR3oXi8hJrMcrcJdO/HH33vtw== + dependencies: + esutils "^2.0.2" + lodash "^4.17.13" + to-fast-properties "^2.0.0" + +"@mapbox/geojson-area@0.2.2": + version "0.2.2" + resolved "https://registry.yarnpkg.com/@mapbox/geojson-area/-/geojson-area-0.2.2.tgz#18d7814aa36bf23fbbcc379f8e26a22927debf10" + integrity sha1-GNeBSqNr8j+7zDefjiaiKSfevxA= + dependencies: + wgs84 "0.0.0" + +"@mapbox/geojson-rewind@^0.4.0": + version "0.4.0" + resolved "https://registry.yarnpkg.com/@mapbox/geojson-rewind/-/geojson-rewind-0.4.0.tgz#0d3632d4c1b4a928cf10a06ade387e1c8a8c181b" + integrity sha512-b+1uPWBERW4Pet/969BNu61ZPDyH2ilIxBjJDFzxyS9TyszF9UrTQyYIl/G38clux3rtpAGGFSGTCSF/qR6UjA== + dependencies: + "@mapbox/geojson-area" "0.2.2" + concat-stream "~1.6.0" + minimist "1.2.0" + sharkdown "^0.1.0" + +"@mapbox/geojson-types@^1.0.2": + version "1.0.2" + resolved "https://registry.yarnpkg.com/@mapbox/geojson-types/-/geojson-types-1.0.2.tgz#9aecf642cb00eab1080a57c4f949a65b4a5846d6" + integrity sha512-e9EBqHHv3EORHrSfbR9DqecPNn+AmuAoQxV6aL8Xu30bJMJR1o8PZLZzpk1Wq7/NfCbuhmakHTPYRhoqLsXRnw== + +"@mapbox/jsonlint-lines-primitives@^2.0.2": + version "2.0.2" + resolved "https://registry.yarnpkg.com/@mapbox/jsonlint-lines-primitives/-/jsonlint-lines-primitives-2.0.2.tgz#ce56e539f83552b58d10d672ea4d6fc9adc7b234" + integrity sha1-zlblOfg1UrWNENZy6k1vya3HsjQ= + +"@mapbox/mapbox-gl-supported@^1.4.0": + version "1.4.1" + resolved "https://registry.yarnpkg.com/@mapbox/mapbox-gl-supported/-/mapbox-gl-supported-1.4.1.tgz#c0a03cf75f8b0ad7b57849d6c7e91b0aec4b640f" + integrity sha512-yyKza9S6z3ELKuf6w5n6VNUB0Osu6Z93RXPfMHLIlNWohu3KqxewLOq4lMXseYJ92GwkRAxd207Pr/Z98cwmvw== + +"@mapbox/point-geometry@0.1.0", "@mapbox/point-geometry@^0.1.0", "@mapbox/point-geometry@~0.1.0": + version "0.1.0" + resolved "https://registry.yarnpkg.com/@mapbox/point-geometry/-/point-geometry-0.1.0.tgz#8a83f9335c7860effa2eeeca254332aa0aeed8f2" + integrity sha1-ioP5M1x4YO/6Lu7KJUMyqgru2PI= + +"@mapbox/tiny-sdf@^1.1.0": + version "1.1.1" + resolved "https://registry.yarnpkg.com/@mapbox/tiny-sdf/-/tiny-sdf-1.1.1.tgz#16a20c470741bfe9191deb336f46e194da4a91ff" + integrity sha512-Ihn1nZcGIswJ5XGbgFAvVumOgWpvIjBX9jiRlIl46uQG9vJOF51ViBYHF95rEZupuyQbEmhLaDPLQlU7fUTsBg== + +"@mapbox/unitbezier@^0.0.0": + version "0.0.0" + resolved "https://registry.yarnpkg.com/@mapbox/unitbezier/-/unitbezier-0.0.0.tgz#15651bd553a67b8581fb398810c98ad86a34524e" + integrity sha1-FWUb1VOme4WB+zmIEMmK2Go0Uk4= + +"@mapbox/vector-tile@^1.3.1": + version "1.3.1" + resolved "https://registry.yarnpkg.com/@mapbox/vector-tile/-/vector-tile-1.3.1.tgz#d3a74c90402d06e89ec66de49ec817ff53409666" + integrity sha512-MCEddb8u44/xfQ3oD+Srl/tNcQoqTw3goGk2oLsrFxOTc3dUp+kAnby3PvAeeBYSMSjSPD1nd1AJA6W49WnoUw== + dependencies: + "@mapbox/point-geometry" "~0.1.0" + +"@mapbox/whoots-js@^3.1.0": + version "3.1.0" + resolved "https://registry.yarnpkg.com/@mapbox/whoots-js/-/whoots-js-3.1.0.tgz#497c67a1cef50d1a2459ba60f315e448d2ad87fe" + integrity sha512-Es6WcD0nO5l+2BOQS4uLfNPYQaNDfbot3X1XUoloz+x0mPDS3eeORZJl06HXjwBG1fOGwCRnzK88LMdxKRrd6Q== + +"@turf/bbox-polygon@^6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@turf/bbox-polygon/-/bbox-polygon-6.0.1.tgz#ae0fbb14558831fb34538aae089a23d3336c6379" + integrity sha512-f6BK6GOzUNjmJeOYHklk/5LNcQMQbo51gvAM10dTM5IqzKP01KM5bgV88uOKfSZB0HRQVpaRV1tgXk2bg5cPRg== + dependencies: + "@turf/helpers" "6.x" + +"@turf/bbox@*", "@turf/bbox@6.x", "@turf/bbox@^6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@turf/bbox/-/bbox-6.0.1.tgz#b966075771475940ee1c16be2a12cf389e6e923a" + integrity sha512-EGgaRLettBG25Iyx7VyUINsPpVj1x3nFQFiGS3ER8KCI1MximzNLsam3eXRabqQDjyAKyAE1bJ4EZEpGvspQxw== + dependencies: + "@turf/helpers" "6.x" + "@turf/meta" "6.x" + +"@turf/bbox@^5.1.5": + version "5.1.5" + resolved "https://registry.yarnpkg.com/@turf/bbox/-/bbox-5.1.5.tgz#3051df514ad4c50f4a4f9b8a2d15fd8b6840eda3" + integrity sha1-MFHfUUrUxQ9KT5uKLRX9i2hA7aM= + dependencies: + "@turf/helpers" "^5.1.5" + "@turf/meta" "^5.1.5" + +"@turf/bearing@6.x": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@turf/bearing/-/bearing-6.0.1.tgz#8da5d17092e571f170cde7bfb2e5b0d74923c92d" + integrity sha512-mXY1NozqV9EFfBTbUItujwfqfQF0G/Xe2fzvnZle90ekPEUfhi4Dgf5JswJTd96J9LiT8kcd6Jonp5khnx0wIg== + dependencies: + "@turf/helpers" "6.x" + "@turf/invariant" "6.x" + +"@turf/boolean-contains@^6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@turf/boolean-contains/-/boolean-contains-6.0.1.tgz#c3c583215fc5bda47ede51cf52d735ffdc1006a5" + integrity sha512-usAexEdWu7dV43paowGSFEM0PljexnlOuj09HF/VDZwO3FKelwUovF2ymetYatuG7KcIYcexeNEkQ5qQnGExlw== + dependencies: + "@turf/bbox" "6.x" + "@turf/boolean-point-in-polygon" "6.x" + "@turf/boolean-point-on-line" "6.x" + "@turf/helpers" "6.x" + "@turf/invariant" "6.x" + +"@turf/boolean-overlap@^6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@turf/boolean-overlap/-/boolean-overlap-6.0.1.tgz#6cd8fc5ae3fbf52ffd31e4cb31d62ef574356c16" + integrity sha512-Ud6a75BzNYICVc5/Pf/GJ/3M5XZci6AOGlBNUPvhUrG4nT4NNYeXIpVrx1FB/tAg8EwZZXlhwSO26CTDC13XlA== + dependencies: + "@turf/helpers" "6.x" + "@turf/invariant" "6.x" + "@turf/line-intersect" "6.x" + "@turf/line-overlap" "6.x" + "@turf/meta" "6.x" + geojson-equality "0.1.6" + +"@turf/boolean-point-in-polygon@6.x": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@turf/boolean-point-in-polygon/-/boolean-point-in-polygon-6.0.1.tgz#5836677afd77d2ee391af0056a0c29b660edfa32" + integrity sha512-FKLOZ124vkJhjzNSDcqpwp2NvfnsbYoUOt5iAE7uskt4svix5hcjIEgX9sELFTJpbLGsD1mUbKdfns8tZxcMNg== + dependencies: + "@turf/helpers" "6.x" + "@turf/invariant" "6.x" + +"@turf/boolean-point-on-line@6.x": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@turf/boolean-point-on-line/-/boolean-point-on-line-6.0.1.tgz#d943c242a5fdcde03f8ad0221750fd1aacf06223" + integrity sha512-Vl724Tzh4CF/13kgblOAQnMcHagromCP1EfyJ9G/8SxpSoTYeY2G6FmmcpbW51GqKxC7xgM9+Pck50dun7oYkg== + dependencies: + "@turf/helpers" "6.x" + "@turf/invariant" "6.x" + +"@turf/buffer@^5.1.5": + version "5.1.5" + resolved "https://registry.yarnpkg.com/@turf/buffer/-/buffer-5.1.5.tgz#841c9627cfb974b122ac4e1a956f0466bc0231c4" + integrity sha1-hByWJ8+5dLEirE4alW8EZrwCMcQ= + dependencies: + "@turf/bbox" "^5.1.5" + "@turf/center" "^5.1.5" + "@turf/helpers" "^5.1.5" + "@turf/meta" "^5.1.5" + "@turf/projection" "^5.1.5" + d3-geo "1.7.1" + turf-jsts "*" + +"@turf/center@^5.1.5": + version "5.1.5" + resolved "https://registry.yarnpkg.com/@turf/center/-/center-5.1.5.tgz#44ab2cd954f63c0d37757f7158a99c3ef5114b80" + integrity sha1-RKss2VT2PA03dX9xWKmcPvURS4A= + dependencies: + "@turf/bbox" "^5.1.5" + "@turf/helpers" "^5.1.5" + +"@turf/center@^6.0.1": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@turf/center/-/center-6.0.1.tgz#40a17d0a170df5bba09ad93e133b904d8eb14601" + integrity sha512-bh/SLBwRC2QYcbVOxMFBtiARuMzMzfh4YuVtguYAjyBEIA4HXnnEZT+yZlzfcG3oikG7XgV8vg9eegcmwQe+MQ== + dependencies: + "@turf/bbox" "6.x" + "@turf/helpers" "6.x" + +"@turf/clone@^5.1.5": + version "5.1.5" + resolved "https://registry.yarnpkg.com/@turf/clone/-/clone-5.1.5.tgz#253e8d35477181976e33adfab50a0f02a7f0e367" + integrity sha1-JT6NNUdxgZduM636tQoPAqfw42c= + dependencies: + "@turf/helpers" "^5.1.5" + +"@turf/destination@6.x": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@turf/destination/-/destination-6.0.1.tgz#5275887fa96ec463f44864a2c17f0b712361794a" + integrity sha512-MroK4nRdp7as174miCAugp8Uvorhe6rZ7MJiC9Hb4+hZR7gNFJyVKmkdDDXIoCYs6MJQsx0buI+gsCpKwgww0Q== + dependencies: + "@turf/helpers" "6.x" + "@turf/invariant" "6.x" + +"@turf/distance@6.x": + version "6.0.1" + resolved "https://registry.yarnpkg.com/@turf/distance/-/distance-6.0.1.tgz#0761f28784286e7865a427c4e7e3593569c2dea8" + integrity sha512-q7t7rWIWfkg7MP1Vt4uLjSEhe5rPfCO2JjpKmk7JC+QZKEQkuvHEqy3ejW1iC7Kw5ZcZNR3qdMGGz+6HnVwqvg== + dependencies: + "@turf/helpers" "6.x" + "@turf/invariant" "6.x" + +"@turf/helpers@6.x": + version "6.1.4" + resolved "https://registry.yarnpkg.com/@turf/helpers/-/helpers-6.1.4.tgz#d6fd7ebe6782dd9c87dca5559bda5c48ae4c3836" + integrity sha512-vJvrdOZy1ngC7r3MDA7zIGSoIgyrkWcGnNIEaqn/APmw+bVLF2gAW7HIsdTxd12s5wQMqEpqIQrmrbRRZ0xC7g== + +"@turf/helpers@^5.1.5": + version "5.1.5" + resolved "https://registry.yarnpkg.com/@turf/helpers/-/helpers-5.1.5.tgz#153405227ab933d004a5bb9641a9ed999fcbe0cf" + integrity sha1-FTQFInq5M9AEpbuWQantmZ/L4M8= + +"@turf/invariant@6.x": + version "6.1.2" + resolved "https://registry.yarnpkg.com/@turf/invariant/-/invariant-6.1.2.tgz#6013ed6219f9ac2edada9b31e1dfa5918eb0a2f7" + integrity sha512-WU08Ph8j0J2jVGlQCKChXoCtI50BB3yEH21V++V0T4cR1T27HKCxkehV2sYMwTierfMBgjwSwDIsxnR4/2mWXg== + dependencies: + "@turf/helpers" "6.x" + +"@turf/line-intersect@6.x": + version "6.0.2" + resolved "https://registry.yarnpkg.com/@turf/line-intersect/-/line-intersect-6.0.2.tgz#b45b7a4e7e08c39a0e4e91099580ed377ef7335f" + integrity sha512-pfL/lBu7ukBPdTjvSCmcNUzZ83V4R95htwqs5NqU8zeS4R+5KTwacbrOYKztjpmHBwUmPEIIpSbqkUoD0Fp7kg== + dependencies: + "@turf/helpers" "6.x" + "@turf/invariant" "6.x" + "@turf/line-segment" "6.x" + "@turf/meta" "6.x" + geojson-rbush "3.x" + +"@turf/line-overlap@6.x": + version "6.0.2" + resolved "https://registry.yarnpkg.com/@turf/line-overlap/-/line-overlap-6.0.2.tgz#26a957ff63aac90b7d92a14ff7288dfe0653e715" + integrity sha512-Y7VTttNM+31R2hPa9N4a9ZaX/n1eOHvJkeBivXr/LBZClba365IzD9vtljYHMZQqD3SN7VmFJSmJyBIghO4V3Q== + dependencies: + "@turf/boolean-point-on-line" "6.x" + "@turf/helpers" "6.x" + "@turf/invariant" "6.x" + "@turf/line-segment" "6.x" + "@turf/meta" "6.x" + "@turf/nearest-point-on-line" "6.x" + deep-equal "1.x" + geojson-rbush "3.x" + +"@turf/line-segment@6.x": + version "6.0.2" + resolved "https://registry.yarnpkg.com/@turf/line-segment/-/line-segment-6.0.2.tgz#e280bcde70d28b694028ec1623dc406c928e59b6" + integrity sha512-8AkzDHoNw3X68y115josal+lvdAi4b2P1K0YNTKGyLRBaUhPXVSuMBpMd53FRF1hYEb9UJgMbugF9ZE7m5L6zg== + dependencies: + "@turf/helpers" "6.x" + "@turf/invariant" "6.x" + "@turf/meta" "6.x" + +"@turf/meta@6.x": + version "6.0.2" + resolved "https://registry.yarnpkg.com/@turf/meta/-/meta-6.0.2.tgz#eb92951126d24a613ac1b7b99d733fcc20fd30cf" + integrity sha512-VA7HJkx7qF1l3+GNGkDVn2oXy4+QoLP6LktXAaZKjuT1JI0YESat7quUkbCMy4zP9lAUuvS4YMslLyTtr919FA== + dependencies: + "@turf/helpers" "6.x" + +"@turf/meta@^5.1.5": + version "5.2.0" + resolved "https://registry.yarnpkg.com/@turf/meta/-/meta-5.2.0.tgz#3b1ad485ee0c3b0b1775132a32c384d53e4ba53d" + integrity sha1-OxrUhe4MOwsXdRMqMsOE1T5LpT0= + dependencies: + "@turf/helpers" "^5.1.5" + +"@turf/nearest-point-on-line@6.x": + version "6.0.2" + resolved "https://registry.yarnpkg.com/@turf/nearest-point-on-line/-/nearest-point-on-line-6.0.2.tgz#4b2c1177595d9a1743af76905a9013ced03bc0dc" + integrity sha512-re9tSEwYyG1EMo4ObXXAKYVhkMVANPIIJQ1V/J1lKcNfHVc1pYmd3D5jkTNBh+oriI9VL4PVML3eqYE+Zcg0mg== + dependencies: + "@turf/bearing" "6.x" + "@turf/destination" "6.x" + "@turf/distance" "6.x" + "@turf/helpers" "6.x" + "@turf/invariant" "6.x" + "@turf/line-intersect" "6.x" + "@turf/meta" "6.x" + +"@turf/projection@^5.1.5": + version "5.1.5" + resolved "https://registry.yarnpkg.com/@turf/projection/-/projection-5.1.5.tgz#24517eeeb2f36816ba9f712e7ae6d6a368edf757" + integrity sha1-JFF+7rLzaBa6n3EueubWo2jt91c= + dependencies: + "@turf/clone" "^5.1.5" + "@turf/helpers" "^5.1.5" + "@turf/meta" "^5.1.5" + +ansi-regex@^2.0.0: + version "2.1.1" + resolved "https://registry.yarnpkg.com/ansi-regex/-/ansi-regex-2.1.1.tgz#c3b33ab5ee360d86e0e628f0468ae7ef27d654df" + integrity sha1-w7M6te42DYbg5ijwRorn7yfWVN8= + +ansi-styles@^2.2.1: + version "2.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-2.2.1.tgz#b432dd3358b634cf75e1e4664368240533c1ddbe" + integrity sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4= + +ansi-styles@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/ansi-styles/-/ansi-styles-3.2.1.tgz#41fbb20243e50b12be0f04b8dedbf07520ce841d" + integrity sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA== + dependencies: + color-convert "^1.9.0" + +ansicolors@~0.2.1: + version "0.2.1" + resolved "https://registry.yarnpkg.com/ansicolors/-/ansicolors-0.2.1.tgz#be089599097b74a5c9c4a84a0cdbcdb62bd87aef" + integrity sha1-vgiVmQl7dKXJxKhKDNvNtivYeu8= + +babel-code-frame@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-code-frame/-/babel-code-frame-6.26.0.tgz#63fd43f7dc1e3bb7ce35947db8fe369a3f58c74b" + integrity sha1-Y/1D99weO7fONZR9uP42mj9Yx0s= + dependencies: + chalk "^1.1.3" + esutils "^2.0.2" + js-tokens "^3.0.2" + +babel-helper-builder-binary-assignment-operator-visitor@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-builder-binary-assignment-operator-visitor/-/babel-helper-builder-binary-assignment-operator-visitor-6.24.1.tgz#cce4517ada356f4220bcae8a02c2b346f9a56664" + integrity sha1-zORReto1b0IgvK6KAsKzRvmlZmQ= + dependencies: + babel-helper-explode-assignable-expression "^6.24.1" + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-helper-call-delegate@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-call-delegate/-/babel-helper-call-delegate-6.24.1.tgz#ece6aacddc76e41c3461f88bfc575bd0daa2df8d" + integrity sha1-7Oaqzdx25Bw0YfiL/Fdb0Nqi340= + dependencies: + babel-helper-hoist-variables "^6.24.1" + babel-runtime "^6.22.0" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helper-define-map@^6.24.1: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-helper-define-map/-/babel-helper-define-map-6.26.0.tgz#a5f56dab41a25f97ecb498c7ebaca9819f95be5f" + integrity sha1-pfVtq0GiX5fstJjH66ypgZ+Vvl8= + dependencies: + babel-helper-function-name "^6.24.1" + babel-runtime "^6.26.0" + babel-types "^6.26.0" + lodash "^4.17.4" + +babel-helper-explode-assignable-expression@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-explode-assignable-expression/-/babel-helper-explode-assignable-expression-6.24.1.tgz#f25b82cf7dc10433c55f70592d5746400ac22caa" + integrity sha1-8luCz33BBDPFX3BZLVdGQArCLKo= + dependencies: + babel-runtime "^6.22.0" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helper-function-name@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-function-name/-/babel-helper-function-name-6.24.1.tgz#d3475b8c03ed98242a25b48351ab18399d3580a9" + integrity sha1-00dbjAPtmCQqJbSDUasYOZ01gKk= + dependencies: + babel-helper-get-function-arity "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helper-get-function-arity@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-get-function-arity/-/babel-helper-get-function-arity-6.24.1.tgz#8f7782aa93407c41d3aa50908f89b031b1b6853d" + integrity sha1-j3eCqpNAfEHTqlCQj4mwMbG2hT0= + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-helper-hoist-variables@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-hoist-variables/-/babel-helper-hoist-variables-6.24.1.tgz#1ecb27689c9d25513eadbc9914a73f5408be7a76" + integrity sha1-HssnaJydJVE+rbyZFKc/VAi+enY= + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-helper-optimise-call-expression@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-optimise-call-expression/-/babel-helper-optimise-call-expression-6.24.1.tgz#f7a13427ba9f73f8f4fa993c54a97882d1244257" + integrity sha1-96E0J7qfc/j0+pk8VKl4gtEkQlc= + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-helper-regex@^6.24.1: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-helper-regex/-/babel-helper-regex-6.26.0.tgz#325c59f902f82f24b74faceed0363954f6495e72" + integrity sha1-MlxZ+QL4LyS3T6zu0DY5VPZJXnI= + dependencies: + babel-runtime "^6.26.0" + babel-types "^6.26.0" + lodash "^4.17.4" + +babel-helper-remap-async-to-generator@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-remap-async-to-generator/-/babel-helper-remap-async-to-generator-6.24.1.tgz#5ec581827ad723fecdd381f1c928390676e4551b" + integrity sha1-XsWBgnrXI/7N04HxySg5BnbkVRs= + dependencies: + babel-helper-function-name "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-helper-replace-supers@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-helper-replace-supers/-/babel-helper-replace-supers-6.24.1.tgz#bf6dbfe43938d17369a213ca8a8bf74b6a90ab1a" + integrity sha1-v22/5Dk40XNpohPKiov3S2qQqxo= + dependencies: + babel-helper-optimise-call-expression "^6.24.1" + babel-messages "^6.23.0" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-messages@^6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-messages/-/babel-messages-6.23.0.tgz#f3cdf4703858035b2a2951c6ec5edf6c62f2630e" + integrity sha1-8830cDhYA1sqKVHG7F7fbGLyYw4= + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-check-es2015-constants@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-check-es2015-constants/-/babel-plugin-check-es2015-constants-6.22.0.tgz#35157b101426fd2ffd3da3f75c7d1e91835bbf8a" + integrity sha1-NRV7EBQm/S/9PaP3XH0ekYNbv4o= + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-syntax-async-functions@^6.8.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-async-functions/-/babel-plugin-syntax-async-functions-6.13.0.tgz#cad9cad1191b5ad634bf30ae0872391e0647be95" + integrity sha1-ytnK0RkbWtY0vzCuCHI5HgZHvpU= + +babel-plugin-syntax-exponentiation-operator@^6.8.0: + version "6.13.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-exponentiation-operator/-/babel-plugin-syntax-exponentiation-operator-6.13.0.tgz#9ee7e8337290da95288201a6a57f4170317830de" + integrity sha1-nufoM3KQ2pUoggGmpX9BcDF4MN4= + +babel-plugin-syntax-trailing-function-commas@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-syntax-trailing-function-commas/-/babel-plugin-syntax-trailing-function-commas-6.22.0.tgz#ba0360937f8d06e40180a43fe0d5616fff532cf3" + integrity sha1-ugNgk3+NBuQBgKQ/4NVhb/9TLPM= + +babel-plugin-transform-async-to-generator@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-async-to-generator/-/babel-plugin-transform-async-to-generator-6.24.1.tgz#6536e378aff6cb1d5517ac0e40eb3e9fc8d08761" + integrity sha1-ZTbjeK/2yx1VF6wOQOs+n8jQh2E= + dependencies: + babel-helper-remap-async-to-generator "^6.24.1" + babel-plugin-syntax-async-functions "^6.8.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-arrow-functions@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-arrow-functions/-/babel-plugin-transform-es2015-arrow-functions-6.22.0.tgz#452692cb711d5f79dc7f85e440ce41b9f244d221" + integrity sha1-RSaSy3EdX3ncf4XkQM5BufJE0iE= + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-block-scoped-functions@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoped-functions/-/babel-plugin-transform-es2015-block-scoped-functions-6.22.0.tgz#bbc51b49f964d70cb8d8e0b94e820246ce3a6141" + integrity sha1-u8UbSflk1wy42OC5ToICRs46YUE= + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-block-scoping@^6.23.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-block-scoping/-/babel-plugin-transform-es2015-block-scoping-6.26.0.tgz#d70f5299c1308d05c12f463813b0a09e73b1895f" + integrity sha1-1w9SmcEwjQXBL0Y4E7CgnnOxiV8= + dependencies: + babel-runtime "^6.26.0" + babel-template "^6.26.0" + babel-traverse "^6.26.0" + babel-types "^6.26.0" + lodash "^4.17.4" + +babel-plugin-transform-es2015-classes@^6.23.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-classes/-/babel-plugin-transform-es2015-classes-6.24.1.tgz#5a4c58a50c9c9461e564b4b2a3bfabc97a2584db" + integrity sha1-WkxYpQyclGHlZLSyo7+ryXolhNs= + dependencies: + babel-helper-define-map "^6.24.1" + babel-helper-function-name "^6.24.1" + babel-helper-optimise-call-expression "^6.24.1" + babel-helper-replace-supers "^6.24.1" + babel-messages "^6.23.0" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-computed-properties@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-computed-properties/-/babel-plugin-transform-es2015-computed-properties-6.24.1.tgz#6fe2a8d16895d5634f4cd999b6d3480a308159b3" + integrity sha1-b+Ko0WiV1WNPTNmZttNICjCBWbM= + dependencies: + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-destructuring@^6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-destructuring/-/babel-plugin-transform-es2015-destructuring-6.23.0.tgz#997bb1f1ab967f682d2b0876fe358d60e765c56d" + integrity sha1-mXux8auWf2gtKwh2/jWNYOdlxW0= + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-duplicate-keys@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-duplicate-keys/-/babel-plugin-transform-es2015-duplicate-keys-6.24.1.tgz#73eb3d310ca969e3ef9ec91c53741a6f1576423e" + integrity sha1-c+s9MQypaePvnskcU3QabxV2Qj4= + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-for-of@^6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-for-of/-/babel-plugin-transform-es2015-for-of-6.23.0.tgz#f47c95b2b613df1d3ecc2fdb7573623c75248691" + integrity sha1-9HyVsrYT3x0+zC/bdXNiPHUkhpE= + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-function-name@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-function-name/-/babel-plugin-transform-es2015-function-name-6.24.1.tgz#834c89853bc36b1af0f3a4c5dbaa94fd8eacaa8b" + integrity sha1-g0yJhTvDaxrw86TF26qU/Y6sqos= + dependencies: + babel-helper-function-name "^6.24.1" + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-literals@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-literals/-/babel-plugin-transform-es2015-literals-6.22.0.tgz#4f54a02d6cd66cf915280019a31d31925377ca2e" + integrity sha1-T1SgLWzWbPkVKAAZox0xklN3yi4= + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-modules-amd@^6.22.0, babel-plugin-transform-es2015-modules-amd@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-amd/-/babel-plugin-transform-es2015-modules-amd-6.24.1.tgz#3b3e54017239842d6d19c3011c4bd2f00a00d154" + integrity sha1-Oz5UAXI5hC1tGcMBHEvS8AoA0VQ= + dependencies: + babel-plugin-transform-es2015-modules-commonjs "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-modules-commonjs@^6.23.0, babel-plugin-transform-es2015-modules-commonjs@^6.24.1: + version "6.26.2" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-commonjs/-/babel-plugin-transform-es2015-modules-commonjs-6.26.2.tgz#58a793863a9e7ca870bdc5a881117ffac27db6f3" + integrity sha512-CV9ROOHEdrjcwhIaJNBGMBCodN+1cfkwtM1SbUHmvyy35KGT7fohbpOxkE2uLz1o6odKK2Ck/tz47z+VqQfi9Q== + dependencies: + babel-plugin-transform-strict-mode "^6.24.1" + babel-runtime "^6.26.0" + babel-template "^6.26.0" + babel-types "^6.26.0" + +babel-plugin-transform-es2015-modules-systemjs@^6.23.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-systemjs/-/babel-plugin-transform-es2015-modules-systemjs-6.24.1.tgz#ff89a142b9119a906195f5f106ecf305d9407d23" + integrity sha1-/4mhQrkRmpBhlfXxBuzzBdlAfSM= + dependencies: + babel-helper-hoist-variables "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-modules-umd@^6.23.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-modules-umd/-/babel-plugin-transform-es2015-modules-umd-6.24.1.tgz#ac997e6285cd18ed6176adb607d602344ad38468" + integrity sha1-rJl+YoXNGO1hdq22B9YCNErThGg= + dependencies: + babel-plugin-transform-es2015-modules-amd "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + +babel-plugin-transform-es2015-object-super@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-object-super/-/babel-plugin-transform-es2015-object-super-6.24.1.tgz#24cef69ae21cb83a7f8603dad021f572eb278f8d" + integrity sha1-JM72muIcuDp/hgPa0CH1cusnj40= + dependencies: + babel-helper-replace-supers "^6.24.1" + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-parameters@^6.23.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-parameters/-/babel-plugin-transform-es2015-parameters-6.24.1.tgz#57ac351ab49caf14a97cd13b09f66fdf0a625f2b" + integrity sha1-V6w1GrScrxSpfNE7CfZv3wpiXys= + dependencies: + babel-helper-call-delegate "^6.24.1" + babel-helper-get-function-arity "^6.24.1" + babel-runtime "^6.22.0" + babel-template "^6.24.1" + babel-traverse "^6.24.1" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-shorthand-properties@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-shorthand-properties/-/babel-plugin-transform-es2015-shorthand-properties-6.24.1.tgz#24f875d6721c87661bbd99a4622e51f14de38aa0" + integrity sha1-JPh11nIch2YbvZmkYi5R8U3jiqA= + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-spread@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-spread/-/babel-plugin-transform-es2015-spread-6.22.0.tgz#d6d68a99f89aedc4536c81a542e8dd9f1746f8d1" + integrity sha1-1taKmfia7cRTbIGlQujdnxdG+NE= + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-sticky-regex@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-sticky-regex/-/babel-plugin-transform-es2015-sticky-regex-6.24.1.tgz#00c1cdb1aca71112cdf0cf6126c2ed6b457ccdbc" + integrity sha1-AMHNsaynERLN8M9hJsLta0V8zbw= + dependencies: + babel-helper-regex "^6.24.1" + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-plugin-transform-es2015-template-literals@^6.22.0: + version "6.22.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-template-literals/-/babel-plugin-transform-es2015-template-literals-6.22.0.tgz#a84b3450f7e9f8f1f6839d6d687da84bb1236d8d" + integrity sha1-qEs0UPfp+PH2g51taH2oS7EjbY0= + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-typeof-symbol@^6.23.0: + version "6.23.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-typeof-symbol/-/babel-plugin-transform-es2015-typeof-symbol-6.23.0.tgz#dec09f1cddff94b52ac73d505c84df59dcceb372" + integrity sha1-3sCfHN3/lLUqxz1QXITfWdzOs3I= + dependencies: + babel-runtime "^6.22.0" + +babel-plugin-transform-es2015-unicode-regex@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-es2015-unicode-regex/-/babel-plugin-transform-es2015-unicode-regex-6.24.1.tgz#d38b12f42ea7323f729387f18a7c5ae1faeb35e9" + integrity sha1-04sS9C6nMj9yk4fxinxa4frrNek= + dependencies: + babel-helper-regex "^6.24.1" + babel-runtime "^6.22.0" + regexpu-core "^2.0.0" + +babel-plugin-transform-exponentiation-operator@^6.22.0: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-exponentiation-operator/-/babel-plugin-transform-exponentiation-operator-6.24.1.tgz#2ab0c9c7f3098fa48907772bb813fe41e8de3a0e" + integrity sha1-KrDJx/MJj6SJB3cruBP+QejeOg4= + dependencies: + babel-helper-builder-binary-assignment-operator-visitor "^6.24.1" + babel-plugin-syntax-exponentiation-operator "^6.8.0" + babel-runtime "^6.22.0" + +babel-plugin-transform-regenerator@^6.22.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-regenerator/-/babel-plugin-transform-regenerator-6.26.0.tgz#e0703696fbde27f0a3efcacf8b4dca2f7b3a8f2f" + integrity sha1-4HA2lvveJ/Cj78rPi03KL3s6jy8= + dependencies: + regenerator-transform "^0.10.0" + +babel-plugin-transform-strict-mode@^6.24.1: + version "6.24.1" + resolved "https://registry.yarnpkg.com/babel-plugin-transform-strict-mode/-/babel-plugin-transform-strict-mode-6.24.1.tgz#d5faf7aa578a65bbe591cf5edae04a0c67020758" + integrity sha1-1fr3qleKZbvlkc9e2uBKDGcCB1g= + dependencies: + babel-runtime "^6.22.0" + babel-types "^6.24.1" + +babel-preset-env@^1.7.0: + version "1.7.0" + resolved "https://registry.yarnpkg.com/babel-preset-env/-/babel-preset-env-1.7.0.tgz#dea79fa4ebeb883cd35dab07e260c1c9c04df77a" + integrity sha512-9OR2afuKDneX2/q2EurSftUYM0xGu4O2D9adAhVfADDhrYDaxXV0rBbevVYoY9n6nyX1PmQW/0jtpJvUNr9CHg== + dependencies: + babel-plugin-check-es2015-constants "^6.22.0" + babel-plugin-syntax-trailing-function-commas "^6.22.0" + babel-plugin-transform-async-to-generator "^6.22.0" + babel-plugin-transform-es2015-arrow-functions "^6.22.0" + babel-plugin-transform-es2015-block-scoped-functions "^6.22.0" + babel-plugin-transform-es2015-block-scoping "^6.23.0" + babel-plugin-transform-es2015-classes "^6.23.0" + babel-plugin-transform-es2015-computed-properties "^6.22.0" + babel-plugin-transform-es2015-destructuring "^6.23.0" + babel-plugin-transform-es2015-duplicate-keys "^6.22.0" + babel-plugin-transform-es2015-for-of "^6.23.0" + babel-plugin-transform-es2015-function-name "^6.22.0" + babel-plugin-transform-es2015-literals "^6.22.0" + babel-plugin-transform-es2015-modules-amd "^6.22.0" + babel-plugin-transform-es2015-modules-commonjs "^6.23.0" + babel-plugin-transform-es2015-modules-systemjs "^6.23.0" + babel-plugin-transform-es2015-modules-umd "^6.23.0" + babel-plugin-transform-es2015-object-super "^6.22.0" + babel-plugin-transform-es2015-parameters "^6.23.0" + babel-plugin-transform-es2015-shorthand-properties "^6.22.0" + babel-plugin-transform-es2015-spread "^6.22.0" + babel-plugin-transform-es2015-sticky-regex "^6.22.0" + babel-plugin-transform-es2015-template-literals "^6.22.0" + babel-plugin-transform-es2015-typeof-symbol "^6.23.0" + babel-plugin-transform-es2015-unicode-regex "^6.22.0" + babel-plugin-transform-exponentiation-operator "^6.22.0" + babel-plugin-transform-regenerator "^6.22.0" + browserslist "^3.2.6" + invariant "^2.2.2" + semver "^5.3.0" + +babel-runtime@^6.18.0, babel-runtime@^6.22.0, babel-runtime@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-runtime/-/babel-runtime-6.26.0.tgz#965c7058668e82b55d7bfe04ff2337bc8b5647fe" + integrity sha1-llxwWGaOgrVde/4E/yM3vItWR/4= + dependencies: + core-js "^2.4.0" + regenerator-runtime "^0.11.0" + +babel-template@^6.24.1, babel-template@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-template/-/babel-template-6.26.0.tgz#de03e2d16396b069f46dd9fff8521fb1a0e35e02" + integrity sha1-3gPi0WOWsGn0bdn/+FIfsaDjXgI= + dependencies: + babel-runtime "^6.26.0" + babel-traverse "^6.26.0" + babel-types "^6.26.0" + babylon "^6.18.0" + lodash "^4.17.4" + +babel-traverse@^6.24.1, babel-traverse@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-traverse/-/babel-traverse-6.26.0.tgz#46a9cbd7edcc62c8e5c064e2d2d8d0f4035766ee" + integrity sha1-RqnL1+3MYsjlwGTi0tjQ9ANXZu4= + dependencies: + babel-code-frame "^6.26.0" + babel-messages "^6.23.0" + babel-runtime "^6.26.0" + babel-types "^6.26.0" + babylon "^6.18.0" + debug "^2.6.8" + globals "^9.18.0" + invariant "^2.2.2" + lodash "^4.17.4" + +babel-types@^6.19.0, babel-types@^6.24.1, babel-types@^6.26.0: + version "6.26.0" + resolved "https://registry.yarnpkg.com/babel-types/-/babel-types-6.26.0.tgz#a3b073f94ab49eb6fa55cd65227a334380632497" + integrity sha1-o7Bz+Uq0nrb6Vc1lInozQ4BjJJc= + dependencies: + babel-runtime "^6.26.0" + esutils "^2.0.2" + lodash "^4.17.4" + to-fast-properties "^1.0.3" + +babylon@^6.18.0: + version "6.18.0" + resolved "https://registry.yarnpkg.com/babylon/-/babylon-6.18.0.tgz#af2f3b88fa6f5c1e4c634d1a0f8eac4f55b395e3" + integrity sha512-q/UEjfGJ2Cm3oKV71DJz9d25TPnq5rhBVL2Q4fA5wcC3jcrdn7+SssEybFIxwAvvP+YCsCYNKughoF33GxgycQ== + +browserslist@^3.2.6: + version "3.2.8" + resolved "https://registry.yarnpkg.com/browserslist/-/browserslist-3.2.8.tgz#b0005361d6471f0f5952797a76fc985f1f978fc6" + integrity sha512-WHVocJYavUwVgVViC0ORikPHQquXwVh939TaelZ4WDqpWgTX/FsGhl/+P4qBUAGcRvtOgDgC+xftNWWp2RUTAQ== + dependencies: + caniuse-lite "^1.0.30000844" + electron-to-chromium "^1.3.47" + +buffer-from@^1.0.0: + version "1.1.1" + resolved "https://registry.yarnpkg.com/buffer-from/-/buffer-from-1.1.1.tgz#32713bc028f75c02fdb710d7c7bcec1f2c6070ef" + integrity sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A== + +caniuse-lite@^1.0.30000844: + version "1.0.30000988" + resolved "https://registry.yarnpkg.com/caniuse-lite/-/caniuse-lite-1.0.30000988.tgz#742f35ec1b8b75b9628d705d7652eea1fef983db" + integrity sha512-lPj3T8poYrRc/bniW5SQPND3GRtSrQdUM/R4mCYTbZxyi3jQiggLvZH4+BYUuX0t4TXjU+vMM7KFDQg+rSzZUQ== + +cardinal@~0.4.2: + version "0.4.4" + resolved "https://registry.yarnpkg.com/cardinal/-/cardinal-0.4.4.tgz#ca5bb68a5b511b90fe93b9acea49bdee5c32bfe2" + integrity sha1-ylu2iltRG5D+k7ms6km97lwyv+I= + dependencies: + ansicolors "~0.2.1" + redeyed "~0.4.0" + +chalk@^1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-1.1.3.tgz#a8115c55e4a702fe4d150abd3872822a7e09fc98" + integrity sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg= + dependencies: + ansi-styles "^2.2.1" + escape-string-regexp "^1.0.2" + has-ansi "^2.0.0" + strip-ansi "^3.0.0" + supports-color "^2.0.0" + +chalk@^2.0.0: + version "2.4.2" + resolved "https://registry.yarnpkg.com/chalk/-/chalk-2.4.2.tgz#cd42541677a54333cf541a49108c1432b44c9424" + integrity sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ== + dependencies: + ansi-styles "^3.2.1" + escape-string-regexp "^1.0.5" + supports-color "^5.3.0" + +color-convert@^1.9.0: + version "1.9.3" + resolved "https://registry.yarnpkg.com/color-convert/-/color-convert-1.9.3.tgz#bb71850690e1f136567de629d2d5471deda4c1e8" + integrity sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg== + dependencies: + color-name "1.1.3" + +color-name@1.1.3: + version "1.1.3" + resolved "https://registry.yarnpkg.com/color-name/-/color-name-1.1.3.tgz#a7d0558bd89c42f795dd42328f740831ca53bc25" + integrity sha1-p9BVi9icQveV3UIyj3QIMcpTvCU= + +concat-stream@~1.6.0: + version "1.6.2" + resolved "https://registry.yarnpkg.com/concat-stream/-/concat-stream-1.6.2.tgz#904bdf194cd3122fc675c77fc4ac3d4ff0fd1a34" + integrity sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw== + dependencies: + buffer-from "^1.0.0" + inherits "^2.0.3" + readable-stream "^2.2.2" + typedarray "^0.0.6" + +convert-source-map@^1.1.0: + version "1.6.0" + resolved "https://registry.yarnpkg.com/convert-source-map/-/convert-source-map-1.6.0.tgz#51b537a8c43e0f04dec1993bffcdd504e758ac20" + integrity sha512-eFu7XigvxdZ1ETfbgPBohgyQ/Z++C0eEhTor0qRwBw9unw+L0/6V8wkSuGgzdThkiS5lSpdptOQPD8Ak40a+7A== + dependencies: + safe-buffer "~5.1.1" + +core-js@^2.4.0: + version "2.6.9" + resolved "https://registry.yarnpkg.com/core-js/-/core-js-2.6.9.tgz#6b4b214620c834152e179323727fc19741b084f2" + integrity sha512-HOpZf6eXmnl7la+cUdMnLvUxKNqLUzJvgIziQ0DiF3JwSImNphIqdGqzj6hIKyX04MmV0poclQ7+wjWvxQyR2A== + +core-util-is@~1.0.0: + version "1.0.2" + resolved "https://registry.yarnpkg.com/core-util-is/-/core-util-is-1.0.2.tgz#b5fd54220aa2bc5ab57aab7140c940754503c1a7" + integrity sha1-tf1UIgqivFq1eqtxQMlAdUUDwac= + +csscolorparser@~1.0.2: + version "1.0.3" + resolved "https://registry.yarnpkg.com/csscolorparser/-/csscolorparser-1.0.3.tgz#b34f391eea4da8f3e98231e2ccd8df9c041f171b" + integrity sha1-s085HupNqPPpgjHizNjfnAQfFxs= + +d3-array@1: + version "1.2.4" + resolved "https://registry.yarnpkg.com/d3-array/-/d3-array-1.2.4.tgz#635ce4d5eea759f6f605863dbcfc30edc737f71f" + integrity sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw== + +d3-geo@1.7.1: + version "1.7.1" + resolved "https://registry.yarnpkg.com/d3-geo/-/d3-geo-1.7.1.tgz#44bbc7a218b1fd859f3d8fd7c443ca836569ce99" + integrity sha512-O4AempWAr+P5qbk2bC2FuN/sDW4z+dN2wDf9QV3bxQt4M5HfOEeXLgJ/UKQW0+o1Dj8BE+L5kiDbdWUMjsmQpw== + dependencies: + d3-array "1" + +debug@^2.6.8: + version "2.6.9" + resolved "https://registry.yarnpkg.com/debug/-/debug-2.6.9.tgz#5d128515df134ff327e90a4c93f4e077a536341f" + integrity sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA== + dependencies: + ms "2.0.0" + +debug@^4.1.0: + version "4.1.1" + resolved "https://registry.yarnpkg.com/debug/-/debug-4.1.1.tgz#3b72260255109c6b589cee050f1d516139664791" + integrity sha512-pYAIzeRo8J6KPEaJ0VWOh5Pzkbw/RetuzehGM7QRRX5he4fPHx2rdKMB256ehJCkX+XRQm16eZLqLNS8RSZXZw== + dependencies: + ms "^2.1.1" + +deep-equal@1.x, deep-equal@^1.0.0: + version "1.0.1" + resolved "https://registry.yarnpkg.com/deep-equal/-/deep-equal-1.0.1.tgz#f5d260292b660e084eff4cdbc9f08ad3247448b5" + integrity sha1-9dJgKStmDghO/0zbyfCK0yR0SLU= + +earcut@^2.1.5: + version "2.1.5" + resolved "https://registry.yarnpkg.com/earcut/-/earcut-2.1.5.tgz#829280a9a3a0f5fee0529f0a47c3e4eff09b21e4" + integrity sha512-QFWC7ywTVLtvRAJTVp8ugsuuGQ5mVqNmJ1cRYeLrSHgP3nycr2RHTJob9OtM0v8ujuoKN0NY1a93J/omeTL1PA== + +electron-to-chromium@^1.3.47: + version "1.3.211" + resolved "https://registry.yarnpkg.com/electron-to-chromium/-/electron-to-chromium-1.3.211.tgz#0c39d17316bf342d1971fed68e754fa1775918f7" + integrity sha512-GZAiK3oHrs0K+LwH+HD+bdjZ17v40oQQdXbbd3dgrwgbENvazrGpcuIADSAREWnxzo9gADB1evuizrbXsnoU2Q== + +escape-string-regexp@^1.0.2, escape-string-regexp@^1.0.5: + version "1.0.5" + resolved "https://registry.yarnpkg.com/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz#1b61c0562190a8dff6ae3bb2cf0200ca130b86d4" + integrity sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ= + +esm@~3.0.84: + version "3.0.84" + resolved "https://registry.yarnpkg.com/esm/-/esm-3.0.84.tgz#bb108989f4673b32d4f62406869c28eed3815a63" + integrity sha512-SzSGoZc17S7P+12R9cg21Bdb7eybX25RnIeRZ80xZs+VZ3kdQKzqTp2k4hZJjR7p9l0186TTXSgrxzlMDBktlw== + +esprima@~1.0.4: + version "1.0.4" + resolved "https://registry.yarnpkg.com/esprima/-/esprima-1.0.4.tgz#9f557e08fc3b4d26ece9dd34f8fbf476b62585ad" + integrity sha1-n1V+CPw7TSbs6d00+Pv0drYlha0= + +esutils@^2.0.2: + version "2.0.3" + resolved "https://registry.yarnpkg.com/esutils/-/esutils-2.0.3.tgz#74d2eb4de0b8da1293711910d50775b9b710ef64" + integrity sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g== + +geojson-equality@0.1.6: + version "0.1.6" + resolved "https://registry.yarnpkg.com/geojson-equality/-/geojson-equality-0.1.6.tgz#a171374ef043e5d4797995840bae4648e0752d72" + integrity sha1-oXE3TvBD5dR5eZWEC65GSOB1LXI= + dependencies: + deep-equal "^1.0.0" + +geojson-rbush@3.x: + version "3.1.2" + resolved "https://registry.yarnpkg.com/geojson-rbush/-/geojson-rbush-3.1.2.tgz#577d6ec70ba986d4e60b741f1df5147faeb82c97" + integrity sha512-grkfdg3HIeTjwTfiJe5FT8+fGU3fABCc+vRJDBwdQz9kkLF0Sbif2gs2JUzjewwgmnvLGy9fInySDeADoNuk7w== + dependencies: + "@turf/bbox" "*" + "@turf/helpers" "6.x" + "@turf/meta" "6.x" + rbush "^2.0.0" + +geojson-vt@^3.2.1: + version "3.2.1" + resolved "https://registry.yarnpkg.com/geojson-vt/-/geojson-vt-3.2.1.tgz#f8adb614d2c1d3f6ee7c4265cad4bbf3ad60c8b7" + integrity sha512-EvGQQi/zPrDA6zr6BnJD/YhwAkBP8nnJ9emh3EnHQKVMfg/MRVtPbMYdgVy/IaEmn4UfagD2a6fafPDL5hbtwg== + +gl-matrix@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/gl-matrix/-/gl-matrix-3.0.0.tgz#888301ac7650e148c3865370e13ec66d08a8381f" + integrity sha512-PD4mVH/C/Zs64kOozeFnKY8ybhgwxXXQYGWdB4h68krAHknWJgk9uKOn6z8YElh5//vs++90pb6csrTIDWnexA== + +globals@^11.1.0: + version "11.12.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-11.12.0.tgz#ab8795338868a0babd8525758018c2a7eb95c42e" + integrity sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA== + +globals@^9.18.0: + version "9.18.0" + resolved "https://registry.yarnpkg.com/globals/-/globals-9.18.0.tgz#aa3896b3e69b487f17e31ed2143d69a8e30c2d8a" + integrity sha512-S0nG3CLEQiY/ILxqtztTWH/3iRRdyBLw6KMDxnKMchrtbj2OFmehVh0WUCfW3DUrIgx/qFrJPICrq4Z4sTR9UQ== + +grid-index@^1.1.0: + version "1.1.0" + resolved "https://registry.yarnpkg.com/grid-index/-/grid-index-1.1.0.tgz#97f8221edec1026c8377b86446a7c71e79522ea7" + integrity sha512-HZRwumpOGUrHyxO5bqKZL0B0GlUpwtCAzZ42sgxUPniu33R1LSFH5yrIcBCHjkctCAh3mtWKcKd9J4vDDdeVHA== + +has-ansi@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/has-ansi/-/has-ansi-2.0.0.tgz#34f5049ce1ecdf2b0649af3ef24e45ed35416d91" + integrity sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE= + dependencies: + ansi-regex "^2.0.0" + +has-flag@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/has-flag/-/has-flag-3.0.0.tgz#b5d454dc2199ae225699f3467e5a07f3b955bafd" + integrity sha1-tdRU3CGZriJWmfNGfloH87lVuv0= + +ieee754@^1.1.12: + version "1.1.13" + resolved "https://registry.yarnpkg.com/ieee754/-/ieee754-1.1.13.tgz#ec168558e95aa181fd87d37f55c32bbcb6708b84" + integrity sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg== + +inherits@^2.0.3, inherits@~2.0.3: + version "2.0.4" + resolved "https://registry.yarnpkg.com/inherits/-/inherits-2.0.4.tgz#0fa2c64f932917c3433a0ded55363aae37416b7c" + integrity sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ== + +invariant@^2.2.2: + version "2.2.4" + resolved "https://registry.yarnpkg.com/invariant/-/invariant-2.2.4.tgz#610f3c92c9359ce1db616e538008d23ff35158e6" + integrity sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA== + dependencies: + loose-envify "^1.0.0" + +isarray@~1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/isarray/-/isarray-1.0.0.tgz#bb935d48582cba168c06834957a54a3e07124f11" + integrity sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE= + +"js-tokens@^3.0.0 || ^4.0.0", js-tokens@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-4.0.0.tgz#19203fb59991df98e3a287050d4647cdeaf32499" + integrity sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ== + +js-tokens@^3.0.2: + version "3.0.2" + resolved "https://registry.yarnpkg.com/js-tokens/-/js-tokens-3.0.2.tgz#9866df395102130e38f7f996bceb65443209c25b" + integrity sha1-mGbfOVECEw449/mWvOtlRDIJwls= + +jsesc@^2.5.1: + version "2.5.2" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-2.5.2.tgz#80564d2e483dacf6e8ef209650a67df3f0c283a4" + integrity sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA== + +jsesc@~0.5.0: + version "0.5.0" + resolved "https://registry.yarnpkg.com/jsesc/-/jsesc-0.5.0.tgz#e7dee66e35d6fc16f710fe91d5cf69f70f08911d" + integrity sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0= + +json5@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/json5/-/json5-2.1.0.tgz#e7a0c62c48285c628d20a10b85c89bb807c32850" + integrity sha512-8Mh9h6xViijj36g7Dxi+Y4S6hNGV96vcJZr/SrlHh1LR/pEn/8j/+qIBbs44YKl69Lrfctp4QD+AdWLTMqEZAQ== + dependencies: + minimist "^1.2.0" + +kdbush@^3.0.0: + version "3.0.0" + resolved "https://registry.yarnpkg.com/kdbush/-/kdbush-3.0.0.tgz#f8484794d47004cc2d85ed3a79353dbe0abc2bf0" + integrity sha512-hRkd6/XW4HTsA9vjVpY9tuXJYLSlelnkTmVFu4M9/7MIYQtFcHpbugAU7UbOfjOiVSVYl2fqgBuJ32JUmRo5Ew== + +lodash@^4.17.13, lodash@^4.17.4: + version "4.17.15" + resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.15.tgz#b447f6670a0455bbfeedd11392eff330ea097548" + integrity sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A== + +loose-envify@^1.0.0: + version "1.4.0" + resolved "https://registry.yarnpkg.com/loose-envify/-/loose-envify-1.4.0.tgz#71ee51fa7be4caec1a63839f7e682d8132d30caf" + integrity sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q== + dependencies: + js-tokens "^3.0.0 || ^4.0.0" + +mapbox-gl@^1.1.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/mapbox-gl/-/mapbox-gl-1.2.0.tgz#2bb281dfe20cf8fcf66486d46fb6a8607355633a" + integrity sha512-RDo0kMuo9gs6HFX2Maj+tYO5bUT6WFTQkFbJoKdfe2pK8SY/RgyG3SNJRgZypdBR8loxGCG9geeOwc+JJqblHQ== + dependencies: + "@mapbox/geojson-rewind" "^0.4.0" + "@mapbox/geojson-types" "^1.0.2" + "@mapbox/jsonlint-lines-primitives" "^2.0.2" + "@mapbox/mapbox-gl-supported" "^1.4.0" + "@mapbox/point-geometry" "^0.1.0" + "@mapbox/tiny-sdf" "^1.1.0" + "@mapbox/unitbezier" "^0.0.0" + "@mapbox/vector-tile" "^1.3.1" + "@mapbox/whoots-js" "^3.1.0" + csscolorparser "~1.0.2" + earcut "^2.1.5" + esm "~3.0.84" + geojson-vt "^3.2.1" + gl-matrix "^3.0.0" + grid-index "^1.1.0" + minimist "0.0.8" + murmurhash-js "^1.0.0" + pbf "^3.0.5" + potpack "^1.0.1" + quickselect "^2.0.0" + rw "^1.3.3" + supercluster "^6.0.1" + tinyqueue "^2.0.0" + vt-pbf "^3.1.1" + +minimist@0.0.5: + version "0.0.5" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.5.tgz#d7aa327bcecf518f9106ac6b8f003fa3bcea8566" + integrity sha1-16oye87PUY+RBqxrjwA/o7zqhWY= + +minimist@0.0.8: + version "0.0.8" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-0.0.8.tgz#857fcabfc3397d2625b8228262e86aa7a011b05d" + integrity sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0= + +minimist@1.2.0, minimist@^1.2.0: + version "1.2.0" + resolved "https://registry.yarnpkg.com/minimist/-/minimist-1.2.0.tgz#a35008b20f41383eec1fb914f4cd5df79a264284" + integrity sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ= + +ms@2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.0.0.tgz#5608aeadfc00be6c2901df5f9861788de0d597c8" + integrity sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g= + +ms@^2.1.1: + version "2.1.2" + resolved "https://registry.yarnpkg.com/ms/-/ms-2.1.2.tgz#d09d1f357b443f493382a8eb3ccd183872ae6009" + integrity sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w== + +murmurhash-js@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/murmurhash-js/-/murmurhash-js-1.0.0.tgz#b06278e21fc6c37fa5313732b0412bcb6ae15f51" + integrity sha1-sGJ44h/Gw3+lMTcysEEry2rhX1E= + +path-parse@^1.0.6: + version "1.0.6" + resolved "https://registry.yarnpkg.com/path-parse/-/path-parse-1.0.6.tgz#d62dbb5679405d72c4737ec58600e9ddcf06d24c" + integrity sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw== + +pbf@^3.0.5: + version "3.2.0" + resolved "https://registry.yarnpkg.com/pbf/-/pbf-3.2.0.tgz#e76f9f5114e395c25077ad6fe463b3507d6877fc" + integrity sha512-98Eh7rsJNJF/Im6XYMLaOW3cLnNyedlOd6hu3iWMD5I7FZGgpw8yN3vQBrmLbLodu7G784Irb9Qsv2yFrxSAGw== + dependencies: + ieee754 "^1.1.12" + resolve-protobuf-schema "^2.1.0" + +potpack@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/potpack/-/potpack-1.0.1.tgz#d1b1afd89e4c8f7762865ec30bd112ab767e2ebf" + integrity sha512-15vItUAbViaYrmaB/Pbw7z6qX2xENbFSTA7Ii4tgbPtasxm5v6ryKhKtL91tpWovDJzTiZqdwzhcFBCwiMVdVw== + +private@^0.1.6: + version "0.1.8" + resolved "https://registry.yarnpkg.com/private/-/private-0.1.8.tgz#2381edb3689f7a53d653190060fcf822d2f368ff" + integrity sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg== + +process-nextick-args@~2.0.0: + version "2.0.1" + resolved "https://registry.yarnpkg.com/process-nextick-args/-/process-nextick-args-2.0.1.tgz#7820d9b16120cc55ca9ae7792680ae7dba6d7fe2" + integrity sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag== + +protocol-buffers-schema@^3.3.1: + version "3.3.2" + resolved "https://registry.yarnpkg.com/protocol-buffers-schema/-/protocol-buffers-schema-3.3.2.tgz#00434f608b4e8df54c59e070efeefc37fb4bb859" + integrity sha512-Xdayp8sB/mU+sUV4G7ws8xtYMGdQnxbeIfLjyO9TZZRJdztBGhlmbI5x1qcY4TG5hBkIKGnc28i7nXxaugu88w== + +quickselect@^1.0.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/quickselect/-/quickselect-1.1.1.tgz#852e412ce418f237ad5b660d70cffac647ae94c2" + integrity sha512-qN0Gqdw4c4KGPsBOQafj6yj/PA6c/L63f6CaZ/DCF/xF4Esu3jVmKLUDYxghFx8Kb/O7y9tI7x2RjTSXwdK1iQ== + +quickselect@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/quickselect/-/quickselect-2.0.0.tgz#f19680a486a5eefb581303e023e98faaf25dd018" + integrity sha512-RKJ22hX8mHe3Y6wH/N3wCM6BWtjaxIyyUIkpHOvfFnxdI4yD4tBXEBKSbriGujF6jnSVkJrffuo6vxACiSSxIw== + +rbush@^2.0.0: + version "2.0.2" + resolved "https://registry.yarnpkg.com/rbush/-/rbush-2.0.2.tgz#bb6005c2731b7ba1d5a9a035772927d16a614605" + integrity sha512-XBOuALcTm+O/H8G90b6pzu6nX6v2zCKiFG4BJho8a+bY6AER6t8uQUZdi5bomQc0AprCWhEGa7ncAbbRap0bRA== + dependencies: + quickselect "^1.0.1" + +readable-stream@^2.2.2: + version "2.3.6" + resolved "https://registry.yarnpkg.com/readable-stream/-/readable-stream-2.3.6.tgz#b11c27d88b8ff1fbe070643cf94b0c79ae1b0aaf" + integrity sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw== + dependencies: + core-util-is "~1.0.0" + inherits "~2.0.3" + isarray "~1.0.0" + process-nextick-args "~2.0.0" + safe-buffer "~5.1.1" + string_decoder "~1.1.1" + util-deprecate "~1.0.1" + +redeyed@~0.4.0: + version "0.4.4" + resolved "https://registry.yarnpkg.com/redeyed/-/redeyed-0.4.4.tgz#37e990a6f2b21b2a11c2e6a48fd4135698cba97f" + integrity sha1-N+mQpvKyGyoRwuakj9QTVpjLqX8= + dependencies: + esprima "~1.0.4" + +regenerate@^1.2.1: + version "1.4.0" + resolved "https://registry.yarnpkg.com/regenerate/-/regenerate-1.4.0.tgz#4a856ec4b56e4077c557589cae85e7a4c8869a11" + integrity sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg== + +regenerator-runtime@^0.11.0: + version "0.11.1" + resolved "https://registry.yarnpkg.com/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz#be05ad7f9bf7d22e056f9726cee5017fbf19e2e9" + integrity sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg== + +regenerator-transform@^0.10.0: + version "0.10.1" + resolved "https://registry.yarnpkg.com/regenerator-transform/-/regenerator-transform-0.10.1.tgz#1e4996837231da8b7f3cf4114d71b5691a0680dd" + integrity sha512-PJepbvDbuK1xgIgnau7Y90cwaAmO/LCLMI2mPvaXq2heGMR3aWW5/BQvYrhJ8jgmQjXewXvBjzfqKcVOmhjZ6Q== + dependencies: + babel-runtime "^6.18.0" + babel-types "^6.19.0" + private "^0.1.6" + +regexpu-core@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/regexpu-core/-/regexpu-core-2.0.0.tgz#49d038837b8dcf8bfa5b9a42139938e6ea2ae240" + integrity sha1-SdA4g3uNz4v6W5pCE5k45uoq4kA= + dependencies: + regenerate "^1.2.1" + regjsgen "^0.2.0" + regjsparser "^0.1.4" + +regjsgen@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/regjsgen/-/regjsgen-0.2.0.tgz#6c016adeac554f75823fe37ac05b92d5a4edb1f7" + integrity sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc= + +regjsparser@^0.1.4: + version "0.1.5" + resolved "https://registry.yarnpkg.com/regjsparser/-/regjsparser-0.1.5.tgz#7ee8f84dc6fa792d3fd0ae228d24bd949ead205c" + integrity sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw= + dependencies: + jsesc "~0.5.0" + +resolve-protobuf-schema@^2.1.0: + version "2.1.0" + resolved "https://registry.yarnpkg.com/resolve-protobuf-schema/-/resolve-protobuf-schema-2.1.0.tgz#9ca9a9e69cf192bbdaf1006ec1973948aa4a3758" + integrity sha512-kI5ffTiZWmJaS/huM8wZfEMer1eRd7oJQhDuxeCLe3t7N7mX3z94CN0xPxBQxFYQTSNz9T0i+v6inKqSdK8xrQ== + dependencies: + protocol-buffers-schema "^3.3.1" + +resolve@^1.3.2: + version "1.12.0" + resolved "https://registry.yarnpkg.com/resolve/-/resolve-1.12.0.tgz#3fc644a35c84a48554609ff26ec52b66fa577df6" + integrity sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w== + dependencies: + path-parse "^1.0.6" + +rw@^1.3.3: + version "1.3.3" + resolved "https://registry.yarnpkg.com/rw/-/rw-1.3.3.tgz#3f862dfa91ab766b14885ef4d01124bfda074fb4" + integrity sha1-P4Yt+pGrdmsUiF700BEkv9oHT7Q= + +safe-buffer@~5.1.0, safe-buffer@~5.1.1: + version "5.1.2" + resolved "https://registry.yarnpkg.com/safe-buffer/-/safe-buffer-5.1.2.tgz#991ec69d296e0313747d59bdfd2b745c35f8828d" + integrity sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g== + +semver@^5.3.0, semver@^5.4.1: + version "5.7.0" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.0.tgz#790a7cf6fea5459bac96110b29b60412dc8ff96b" + integrity sha512-Ya52jSX2u7QKghxeoFGpLwCtGlt7j0oY9DYb5apt9nPlJ42ID+ulTXESnt/qAQcoSERyZ5sl3LDIOw0nAn/5DA== + +sharkdown@^0.1.0: + version "0.1.1" + resolved "https://registry.yarnpkg.com/sharkdown/-/sharkdown-0.1.1.tgz#64484bd0f08f347f8319e9ff947a670f6b48b1b2" + integrity sha512-exwooSpmo5s45lrexgz6Q0rFQM574wYIX3iDZ7RLLqOb7IAoQZu9nxlZODU972g19sR69OIpKP2cpHTzU+PHIg== + dependencies: + cardinal "~0.4.2" + minimist "0.0.5" + split "~0.2.10" + +source-map@^0.5.0: + version "0.5.7" + resolved "https://registry.yarnpkg.com/source-map/-/source-map-0.5.7.tgz#8a039d2d1021d22d1ea14c80d8ea468ba2ef3fcc" + integrity sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w= + +split@~0.2.10: + version "0.2.10" + resolved "https://registry.yarnpkg.com/split/-/split-0.2.10.tgz#67097c601d697ce1368f418f06cd201cf0521a57" + integrity sha1-Zwl8YB1pfOE2j0GPBs0gHPBSGlc= + dependencies: + through "2" + +string_decoder@~1.1.1: + version "1.1.1" + resolved "https://registry.yarnpkg.com/string_decoder/-/string_decoder-1.1.1.tgz#9cf1611ba62685d7030ae9e4ba34149c3af03fc8" + integrity sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg== + dependencies: + safe-buffer "~5.1.0" + +strip-ansi@^3.0.0: + version "3.0.1" + resolved "https://registry.yarnpkg.com/strip-ansi/-/strip-ansi-3.0.1.tgz#6a385fb8853d952d5ff05d0e8aaf94278dc63dcf" + integrity sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8= + dependencies: + ansi-regex "^2.0.0" + +supercluster@^6.0.1: + version "6.0.2" + resolved "https://registry.yarnpkg.com/supercluster/-/supercluster-6.0.2.tgz#aa2eaae185ef97872f388c683ec29f6991721ee3" + integrity sha512-aa0v2HURjBTOpbcknilcfxGDuArM8khklKSmZ/T8ZXL0BuRwb5aRw95lz+2bmWpFvCXDX/+FzqHxmg0TIaJErw== + dependencies: + kdbush "^3.0.0" + +supports-color@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-2.0.0.tgz#535d045ce6b6363fa40117084629995e9df324c7" + integrity sha1-U10EXOa2Nj+kARcIRimZXp3zJMc= + +supports-color@^5.3.0: + version "5.5.0" + resolved "https://registry.yarnpkg.com/supports-color/-/supports-color-5.5.0.tgz#e2e69a44ac8772f78a1ec0b35b689df6530efc8f" + integrity sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow== + dependencies: + has-flag "^3.0.0" + +through@2: + version "2.3.8" + resolved "https://registry.yarnpkg.com/through/-/through-2.3.8.tgz#0dd4c9ffaabc357960b1b724115d7e0e86a2e1f5" + integrity sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU= + +tinyqueue@^2.0.0: + version "2.0.3" + resolved "https://registry.yarnpkg.com/tinyqueue/-/tinyqueue-2.0.3.tgz#64d8492ebf39e7801d7bd34062e29b45b2035f08" + integrity sha512-ppJZNDuKGgxzkHihX8v9v9G5f+18gzaTfrukGrq6ueg0lmH4nqVnA2IPG0AEH3jKEk2GRJCUhDoqpoiw3PHLBA== + +to-fast-properties@^1.0.3: + version "1.0.3" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-1.0.3.tgz#b83571fa4d8c25b82e231b06e3a3055de4ca1a47" + integrity sha1-uDVx+k2MJbguIxsG46MFXeTKGkc= + +to-fast-properties@^2.0.0: + version "2.0.0" + resolved "https://registry.yarnpkg.com/to-fast-properties/-/to-fast-properties-2.0.0.tgz#dc5e698cbd079265bc73e0377681a4e4e83f616e" + integrity sha1-3F5pjL0HkmW8c+A3doGk5Og/YW4= + +trim-right@^1.0.1: + version "1.0.1" + resolved "https://registry.yarnpkg.com/trim-right/-/trim-right-1.0.1.tgz#cb2e1203067e0c8de1f614094b9fe45704ea6003" + integrity sha1-yy4SAwZ+DI3h9hQJS5/kVwTqYAM= + +turf-jsts@*: + version "1.2.3" + resolved "https://registry.yarnpkg.com/turf-jsts/-/turf-jsts-1.2.3.tgz#59757f542afbff9a577bbf411f183b8f48d38aa4" + integrity sha512-Ja03QIJlPuHt4IQ2FfGex4F4JAr8m3jpaHbFbQrgwr7s7L6U8ocrHiF3J1+wf9jzhGKxvDeaCAnGDot8OjGFyA== + +typedarray@^0.0.6: + version "0.0.6" + resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" + integrity sha1-hnrHTjhkGHsdPUfZlqeOxciDB3c= + +underscore@^1.9.1: + version "1.9.1" + resolved "https://registry.yarnpkg.com/underscore/-/underscore-1.9.1.tgz#06dce34a0e68a7babc29b365b8e74b8925203961" + integrity sha512-5/4etnCkd9c8gwgowi5/om/mYO5ajCaOgdzj/oW+0eQV9WxKBDZw5+ycmKmeaTXjInS/W0BzpGLo2xR2aBwZdg== + +util-deprecate@~1.0.1: + version "1.0.2" + resolved "https://registry.yarnpkg.com/util-deprecate/-/util-deprecate-1.0.2.tgz#450d4dc9fa70de732762fbd2d4a28981419a0ccf" + integrity sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8= + +vt-pbf@^3.1.1: + version "3.1.1" + resolved "https://registry.yarnpkg.com/vt-pbf/-/vt-pbf-3.1.1.tgz#b0f627e39a10ce91d943b898ed2363d21899fb82" + integrity sha512-pHjWdrIoxurpmTcbfBWXaPwSmtPAHS105253P1qyEfSTV2HJddqjM+kIHquaT/L6lVJIk9ltTGc0IxR/G47hYA== + dependencies: + "@mapbox/point-geometry" "0.1.0" + "@mapbox/vector-tile" "^1.3.1" + pbf "^3.0.5" + +wgs84@0.0.0: + version "0.0.0" + resolved "https://registry.yarnpkg.com/wgs84/-/wgs84-0.0.0.tgz#34fdc555917b6e57cf2a282ed043710c049cdc76" + integrity sha1-NP3FVZF7blfPKigu0ENxDASc3HY=