Skip to content

Instantly share code, notes, and snippets.

@milkbread
Last active December 19, 2015 07:19
Show Gist options
  • Save milkbread/5917907 to your computer and use it in GitHub Desktop.
Save milkbread/5917907 to your computer and use it in GitHub Desktop.
HTML: Make it simple - exemplary files for demonstration on applied line simplification
<!DOCTYPE html>
<html>
<head>
<title>Testmap</title>
<meta charset="utf-8" />
<script src="http://cdn.leafletjs.com/leaflet-0.6.1/leaflet.js"></script>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://mourner.github.io/simplify-js/simplify.js"></script>
<script src="http://bl.ocks.org/milkbread/raw/5909613/simplify_RK_1.1.js"></script>
<script src="http://bl.ocks.org/adammiller/raw/826148/douglasPeucker.js"></script>
<script src="http://bl.ocks.org/milkbread/raw/5917907/slider.js"></script>
<style>
@import url(http://cdn.leafletjs.com/leaflet-0.6.1/leaflet.css);
@import url(http://bl.ocks.org/milkbread/raw/5743667/RKToolbox_0.1.css);
#overlay{
fill:None;
stroke:#41b611;
stroke-width:2px;
}
.axis text {
font-family: sans-serif;
font-size: 16px;
text-anchor:left;
fill:#0f0;
opacity:0.8;
}
#info {
background-color:#c8ba09;
}
.leaflet-clickable_modified{
stroke:#f00;
}
</style>
</head>
<body>
<div id=slider></div>
<div id="map" style="width: 600px; height: 300px"></div>
<div id=info style="width: 600px;"></div>
<script>
//1. get the 'search' value of the URL
var inputValue = window.location.hash.replace('#','').split(':');
if (inputValue[0]=='') inputValue[0] = 'DP_pure'; //define it, where nothing was specified
var algorithms = ['DP_pure', 'DP_combined','Visvalingam'];
var head = d3.select('#info').append('text').text('Choose the algorithm (currently "'+ inputValue +'")')
var row = d3.select('#info').append("table").attr('width',"600").append("tr");
var unit_selector = row.append('td').append("form").attr("name","unit_form").append("select").attr("name","unit_sel").attr("onChange","changedSelektor(value)").attr("size","3");
unit_selector.selectAll("option").data(algorithms).enter().append("option").attr("value",function(d){return d}).text(function(d,i){return d});
function changedSelektor(value){
window.location.hash=value;
window.location.reload();
}
var infos = [], cell = row.append('td');
infos[0] = cell.append('text');
infos[1] = cell.append('text').text("Simplified number of points: ");
infos[1].append('br');
infos[2] = cell.append('text').text('The calculation took: ') ;
infos[2].append('br');
infos[3] = cell.append('text').text('Average time of calculation: ') ;
var timeArray = [];
var slider = new slider(d3.select("#slider"),600,75);
slider.reDefineIndicator(6);
slider.addScalebar([0,1]);
var view = [52.67, 21.97, 4];
if (inputValue[1] != undefined){var cache = inputValue[1].split(';'); view = [cache[0], cache[1], cache[2]];}
var map = L.map('map').setView([view[0], view[1]], view[2]);
var toolserver = L.tileLayer('http://{s}.www.toolserver.org/tiles/bw-mapnik/{z}/{x}/{y}.png');
var stamen = L.tileLayer('http://{s}.tile.stamen.com/toner/{z}/{x}/{y}.png', {attribution: 'Overlay: <a href= "http://d3js.org/" target="_blank">D3</a> | API: <a href= "http://developers.cloudmade.com/wiki/routing-http-api/Documentation" target="_blank">Cloudmade</a> | Data: © <a href="http://www.openstreetmap.org" target="_blank">OpenStreetMap</a>-contributers'}).addTo(map);
var baseLayers = {"stamen": stamen, "toolserver-mapnik":toolserver};
var control = L.control.layers(baseLayers).addTo(map);
var centerPoint = L.circle([map.getCenter().lat, map.getCenter().lng], 200).addTo(map);
var essenPoint = L.circle([51.47, 6.97], 200).addTo(map);
essenPoint._path.className.baseVal = 'leaflet-clickable_modified'
var berlinPoint = L.circle([52.31, 13.30], 200).addTo(map);
berlinPoint._path.className.baseVal = 'leaflet-clickable_modified'
var plonskPoint = L.circle([52.62, 20.38], 200).addTo(map);
plonskPoint._path.className.baseVal = 'leaflet-clickable_modified'
var minskPoint = L.circle([53.90, 27.56], 200).addTo(map);
minskPoint._path.className.baseVal = 'leaflet-clickable_modified'
var svgContainer= d3.select(map.getPanes().overlayPane).append("svg");
var group= svgContainer.append("g").attr("class", "leaflet-zoom-hide");
var path = d3.geo.path().projection(project);
d3.json("/milkbread/raw/5917907/shortest_paris-moscow.js", function(navigation_route) {
slider.addHoverListener(hoverAction);
//console.log(navigation_route);
var allPoints = navigation_route.route_geometry
infos[0].text("Total number of points: " + allPoints.length).append('br')
var allPointObjects = pointsConversion(allPoints, 'toObject')
//This distinction is added to access all 3 different simplification libraries (algorithms) from 1 file
function simplifyGeometry(points_array_, maxValue_){
var allPointObjects_ = pointsConversion(points_array_, 'toObject');
//2. Distinguish and execute the corresponding library
//Douglas-Peucker
if(inputValue=='DP_pure') allPointObjects_ = simplifyPath(allPointObjects_,maxValue_)
//combined Douglas-Peucker
else if(inputValue=='DP_combined') allPointObjects_ = simplify(allPointObjects_,maxValue_,false)
//Visvalingam
else if(inputValue=='Visvalingam') {
var d3Simplify = d3.simplify()
.projection(function (point){return point}); //return the point as it is...as my coords are geographic, this projection is geographic
d3Simplify( {'type':'LineString', 'coordinates':points_array_})
var numPoints = points_array_.length;
points_array_ = points_array_.filter(function(point,i){if (point[2]>maxValue_ || i==0 || i==numPoints-1) return point})
}
if(inputValue=='DP_pure' || inputValue=='DP_combined')points_array_ = pointsConversion(allPointObjects_, 'toArray')
return points_array_;
}
//***End of additional distinction
console.log(allPoints.length)
var routeGeometry = {'type':'LineString', 'coordinates':allPoints};
var routeFeature = {'type':'Feature', 'geometry':routeGeometry}
var collection = routeFeature
var feature;
setFeature();
var bounds = d3.geo.bounds(routeFeature);
reset();
map.on("viewreset", reset);
map.on("drag", reset);
function reset() {
//bounds = [[map.getBounds()._southWest.lng, map.getBounds()._southWest.lat],[map.getBounds()._northEast.lng, map.getBounds()._northEast.lat]]
var bottomLeft = project(bounds[0]),
topRight = project(bounds[1]);
svgContainer.attr("width", topRight[0] - bottomLeft[0])
.attr("height", bottomLeft[1] - topRight[1])
.style("margin-left", bottomLeft[0] + "px")
.style("margin-top", topRight[1] + "px");
group.attr("transform", "translate(" + -bottomLeft[0] + "," + -topRight[1] + ")");
feature.attr("d", path);
centerPoint.setLatLng([map.getCenter().lat, map.getCenter().lng])
head.text('Choose the algorithm (currently "'+ inputValue[0] +'")' + ' || Center: Lat: '+map.getCenter().lat.toFixed(2)+', Lng: '+map.getCenter().lng.toFixed(2)+ ' || Zoom: '+map.getZoom())
}
//this is just a function from the existing code...as I need it to restore the removed paths
function setFeature(){
group.selectAll("path").remove();
feature = group.selectAll("path")
.data([routeGeometry])
.enter()
.append("path")
.attr("id","overlay")
.attr("d", path);
}
//This is the function that I've commited to the slider as kind of 'action listener' for hovering
function hoverAction(){
var start_time = Date.now();
var allPoints2 = simplifyGeometry(allPoints.slice(0), slider.getIndicPosition())
infos[1].text("Simplified number of points: " + allPoints2.length).append('br')
var processingTime = ((Date.now() - start_time)/1000);
infos[2].text('The calculation took: '+processingTime.toFixed(4)).append('br')
timeArray.push(processingTime)
var averageTime = 0;
timeArray.forEach(function(d){averageTime = averageTime + d})
averageTime = averageTime/(timeArray.length)
infos[3].text('Average time of calculation: '+averageTime.toFixed(4)+ " ("+timeArray.length+" iterations)")
routeGeometry = {'type':'LineString', 'coordinates':allPoints2}
setFeature();
}
})
//converts an array of points between array & object --> direction: 'toObject' {'x':0,'y':0} from array |or| 'toArray' [y,x] from object
function pointsConversion(points, direction){
var cache;
if(direction=='toObject'){
cache = points.map(function(point){return {'y':point[0],'x':point[1]}});
}
else if(direction=='toArray'){
cache = points.map(function(point){return [point.y,point.x]});
}
return cache;
}
function project(point) {
var latlng = new L.LatLng(point[0], point[1]);
var layerPoint = map.latLngToLayerPoint(latlng);
return [layerPoint.x, layerPoint.y];
}
</script>
</body>
</html>
{"version":0.3,"status":0,"route_summary":{"total_distance":2757797,"total_time":152927,"start_point":"Pont Royal","end_point":"Unknown road near Москва"},"route_geometry":[[48.86005,2.32986],[48.86058,2.33027],[48.860691,2.33065],[48.8605,2.3316],[48.860119,2.33333],[48.859371,2.33657],[48.859329,2.33684],[48.859261,2.33798],[48.85918,2.33848],[48.85899,2.33985],[48.859501,2.34011],[48.85997,2.34035],[48.86039,2.34057],[48.860722,2.34073],[48.860901,2.34082],[48.860958,2.34085],[48.86113,2.34095],[48.861691,2.34121],[48.862419,2.34158],[48.862968,2.34187],[48.863049,2.34191],[48.86311,2.34195],[48.863468,2.34214],[48.86359,2.3422],[48.863621,2.34233],[48.863628,2.34243],[48.863628,2.34253],[48.863602,2.34266],[48.863602,2.34277],[48.86356,2.34284],[48.863468,2.34308],[48.863319,2.34359],[48.863201,2.34407],[48.863121,2.34455],[48.862991,2.3452],[48.86306,2.34581],[48.862991,2.34685],[48.86298,2.34731],[48.86301,2.34762],[48.863029,2.34787],[48.863071,2.34796],[48.863468,2.34815],[48.86364,2.34826],[48.8638,2.34894],[48.863861,2.34906],[48.863838,2.34914],[48.863628,2.35],[48.863411,2.35093],[48.86417,2.35135],[48.86441,2.35148],[48.865238,2.35194],[48.866241,2.3525],[48.867039,2.35294],[48.867451,2.35317],[48.867641,2.35327],[48.867908,2.35342],[48.868191,2.35358],[48.868389,2.35369],[48.86869,2.35385],[48.86895,2.35399],[48.86932,2.3542],[48.869339,2.35421],[48.870609,2.35494],[48.87104,2.35519],[48.871208,2.35528],[48.871719,2.35557],[48.87228,2.35588],[48.87336,2.35649],[48.873829,2.35675],[48.874489,2.35713],[48.87476,2.35727],[48.874851,2.35733],[48.874939,2.35741],[48.875019,2.35746],[48.875019,2.35769],[48.875031,2.35857],[48.874931,2.35892],[48.874901,2.35902],[48.875141,2.3592],[48.875259,2.35935],[48.87534,2.35956],[48.875641,2.36006],[48.875771,2.36028],[48.876091,2.36055],[48.876129,2.36058],[48.87743,2.36137],[48.877838,2.3616],[48.87849,2.36201],[48.878799,2.36222],[48.87886,2.36225],[48.878929,2.36233],[48.879021,2.36259],[48.87925,2.3629],[48.880402,2.36429],[48.88073,2.3647],[48.8811,2.36515],[48.881451,2.36558],[48.881611,2.36578],[48.881779,2.36599],[48.88253,2.36691],[48.883572,2.36822],[48.88385,2.36857],[48.883942,2.36872],[48.884022,2.36885],[48.884171,2.36899],[48.88422,2.36904],[48.88435,2.36917],[48.88448,2.36934],[48.885578,2.37071],[48.885689,2.37085],[48.88578,2.37097],[48.88586,2.37105],[48.886978,2.37242],[48.887211,2.3727],[48.887348,2.37287],[48.887878,2.37353],[48.888241,2.37395],[48.888371,2.3741],[48.888489,2.37426],[48.889839,2.37596],[48.89045,2.37672],[48.89056,2.37685],[48.89069,2.37701],[48.891041,2.37745],[48.891109,2.37754],[48.89122,2.37768],[48.892181,2.37896],[48.892311,2.37913],[48.892429,2.37928],[48.892948,2.37995],[48.89304,2.38007],[48.89312,2.38017],[48.894218,2.38157],[48.894321,2.3817],[48.89468,2.38219],[48.894791,2.38231],[48.895142,2.38274],[48.895561,2.38325],[48.89566,2.38349],[48.895741,2.38359],[48.895779,2.38365],[48.895809,2.3837],[48.895939,2.38389],[48.896049,2.38401],[48.89613,2.3841],[48.89621,2.38418],[48.896278,2.38426],[48.896389,2.38438],[48.897499,2.38561],[48.897579,2.38569],[48.897659,2.38577],[48.898041,2.38615],[48.89814,2.38624],[48.898232,2.38633],[48.898499,2.38661],[48.899559,2.38775],[48.89978,2.38798],[48.900051,2.3884],[48.900181,2.38864],[48.900318,2.38875],[48.90052,2.38882],[48.900719,2.38889],[48.900879,2.38916],[48.900982,2.38933],[48.901089,2.38946],[48.90184,2.39025],[48.902729,2.39114],[48.903069,2.39152],[48.903549,2.39209],[48.90358,2.39212],[48.905231,2.39398],[48.905479,2.39408],[48.905899,2.39452],[48.906681,2.39534],[48.907162,2.39588],[48.90757,2.3963],[48.908249,2.39703],[48.909168,2.39805],[48.909409,2.3983],[48.91098,2.39999],[48.911301,2.40036],[48.91394,2.40323],[48.914711,2.40403],[48.91478,2.40412],[48.915001,2.40436],[48.915482,2.40486],[48.91629,2.40574],[48.916599,2.40607],[48.91729,2.40682],[48.918072,2.40761],[48.919022,2.40884],[48.919281,2.40914],[48.920059,2.40991],[48.921719,2.41169],[48.921848,2.41185],[48.922852,2.41293],[48.9231,2.4131],[48.92321,2.41326],[48.92363,2.41368],[48.923771,2.41384],[48.924171,2.41428],[48.924759,2.41502],[48.925289,2.41561],[48.926701,2.41695],[48.927139,2.41747],[48.927238,2.41759],[48.92746,2.41797],[48.927509,2.41811],[48.927738,2.41832],[48.928082,2.41865],[48.928619,2.41915],[48.929562,2.42025],[48.92963,2.42032],[48.93,2.4207],[48.930359,2.42107],[48.931641,2.42253],[48.932831,2.42383],[48.933159,2.42415],[48.933659,2.42478],[48.93438,2.42549],[48.934872,2.426],[48.9352,2.42632],[48.93549,2.42657],[48.935959,2.42701],[48.936291,2.42734],[48.936909,2.42793],[48.937099,2.42808],[48.93745,2.42842],[48.93779,2.42873],[48.938839,2.42984],[48.93972,2.43053],[48.940418,2.43115],[48.940479,2.43206],[48.940559,2.43248],[48.940731,2.43364],[48.940842,2.43408],[48.940929,2.43477],[48.940971,2.435],[48.94109,2.43526],[48.94154,2.43618],[48.942059,2.43719],[48.942101,2.43728],[48.942329,2.43784],[48.942539,2.43835],[48.942669,2.43878],[48.94273,2.43905],[48.942848,2.43994],[48.942909,2.44041],[48.943031,2.44093],[48.943218,2.44196],[48.943329,2.44297],[48.943481,2.44394],[48.943581,2.44434],[48.943939,2.44594],[48.944019,2.44627],[48.944538,2.44827],[48.945,2.45006],[48.945351,2.45137],[48.945728,2.45268],[48.945728,2.4529],[48.94606,2.45431],[48.946369,2.45554],[48.94669,2.45686],[48.947109,2.45869],[48.94706,2.45873],[48.947021,2.4588],[48.946991,2.45893],[48.946999,2.459],[48.947029,2.45908],[48.947079,2.45915],[48.947151,2.45918],[48.947208,2.45917],[48.94772,2.46137],[48.948311,2.46194],[48.94965,2.46325],[48.94994,2.46349],[48.949928,2.46376],[48.949871,2.46633],[48.949799,2.46637],[48.949749,2.46643],[48.949711,2.46652],[48.949699,2.46658],[48.949699,2.46673],[48.949741,2.46686],[48.949692,2.4674],[48.949692,2.46782],[48.949829,2.46992],[48.95018,2.47293],[48.950272,2.47382],[48.950298,2.47433],[48.950352,2.47524],[48.950611,2.47771],[48.950851,2.48036],[48.950981,2.4819],[48.951099,2.48333],[48.951092,2.4839],[48.951141,2.48535],[48.95118,2.4855],[48.951149,2.48593],[48.95118,2.48616],[48.951248,2.4863],[48.951271,2.48633],[48.951241,2.48641],[48.951328,2.48672],[48.951401,2.48729],[48.95174,2.49106],[48.95192,2.49249],[48.95203,2.49285],[48.952229,2.49455],[48.952419,2.49623],[48.952721,2.49881],[48.95274,2.49901],[48.953178,2.50268],[48.953678,2.50641],[48.95369,2.50645],[48.953918,2.50805],[48.953979,2.50829],[48.954079,2.50858],[48.954109,2.50875],[48.954128,2.5089],[48.954121,2.50905],[48.95409,2.50924],[48.954079,2.50958],[48.954102,2.50973],[48.95417,2.50988],[48.954201,2.50995],[48.9543,2.51001],[48.9543,2.51014],[48.95433,2.51063],[48.954639,2.51218],[48.954971,2.51354],[48.955151,2.51462],[48.956329,2.52142],[48.956989,2.52549],[48.957691,2.52987],[48.957771,2.53111],[48.958019,2.53237],[48.95863,2.53479],[48.958752,2.53517],[48.958839,2.53555],[48.959591,2.53852],[48.960732,2.54246],[48.961769,2.54562],[48.962849,2.54873],[48.963409,2.55042],[48.965111,2.55561],[48.965599,2.55716],[48.968071,2.56468],[48.968811,2.5668],[48.9702,2.57056],[48.9716,2.57405],[48.97369,2.57876],[48.974758,2.58111],[48.97522,2.58222],[48.977798,2.58809],[48.981602,2.5967],[48.986118,2.60693],[48.98698,2.60905],[48.994381,2.62588],[48.99527,2.62774],[48.99572,2.62864],[48.997822,2.63274],[48.999821,2.63636],[49.001621,2.63942],[49.001961,2.63999],[49.00415,2.64346],[49.00515,2.64496],[49.00584,2.646],[49.007881,2.64886],[49.01049,2.65225],[49.0131,2.65538],[49.013611,2.65586],[49.013859,2.65614],[49.01683,2.6596],[49.020771,2.66336],[49.022251,2.66507],[49.02914,2.67197],[49.0299,2.67274],[49.034431,2.67735],[49.0383,2.68162],[49.039391,2.68302],[49.041729,2.68601],[49.0462,2.69222],[49.047779,2.69415],[49.049099,2.69561],[49.05069,2.69702],[49.052738,2.69858],[49.05481,2.69974],[49.055809,2.70031],[49.057819,2.70151],[49.05814,2.70171],[49.05851,2.70194],[49.059052,2.70228],[49.059341,2.70247],[49.059689,2.70272],[49.060139,2.70305],[49.060661,2.70346],[49.061131,2.70385],[49.061699,2.70439],[49.06213,2.70485],[49.062271,2.70499],[49.062462,2.70519],[49.06271,2.70546],[49.063061,2.70587],[49.06345,2.70631],[49.06377,2.70672],[49.064281,2.70736],[49.064819,2.70804],[49.0658,2.70928],[49.066341,2.71],[49.06945,2.71427],[49.070911,2.7162],[49.07095,2.71624],[49.078609,2.72629],[49.08049,2.72844],[49.081779,2.7296],[49.082119,2.72991],[49.083778,2.73085],[49.085449,2.73165],[49.088581,2.73308],[49.093849,2.73554],[49.095032,2.73616],[49.096149,2.73689],[49.096771,2.73747],[49.097839,2.73834],[49.098728,2.73925],[49.10006,2.74094],[49.10022,2.74119],[49.101139,2.7425],[49.102161,2.74421],[49.102982,2.74589],[49.103828,2.7478],[49.10434,2.74935],[49.104721,2.75067],[49.105049,2.75184],[49.105659,2.75474],[49.106281,2.75792],[49.106819,2.76013],[49.107792,2.76311],[49.108791,2.76539],[49.11013,2.76767],[49.111778,2.77004],[49.113689,2.77261],[49.11533,2.77468],[49.130249,2.79449],[49.131882,2.79658],[49.132301,2.79707],[49.132721,2.79742],[49.13319,2.79779],[49.133862,2.79818],[49.134548,2.79844],[49.135361,2.79861],[49.136189,2.79869],[49.138161,2.79887],[49.139111,2.79897],[49.13987,2.79912],[49.140171,2.79924],[49.14093,2.79953],[49.141762,2.80002],[49.142368,2.80045],[49.142971,2.80103],[49.143631,2.80173],[49.144218,2.8026],[49.144669,2.80339],[49.14505,2.80416],[49.145649,2.80547],[49.14653,2.80775],[49.1469,2.80868],[49.147221,2.80965],[49.147511,2.81075],[49.147621,2.81127],[49.147751,2.81196],[49.1479,2.81308],[49.147968,2.81371],[49.147999,2.81435],[49.148029,2.81535],[49.147991,2.8165],[49.147942,2.81717],[49.14782,2.81833],[49.14764,2.82025],[49.147629,2.82151],[49.14772,2.82267],[49.147888,2.82381],[49.148159,2.82494],[49.14864,2.82631],[49.14941,2.82804],[49.150211,2.82978],[49.157539,2.84621],[49.15855,2.84848],[49.159149,2.84982],[49.159611,2.85081],[49.15979,2.85119],[49.159882,2.85133],[49.16,2.8515],[49.160511,2.85204],[49.160549,2.85209],[49.16069,2.85224],[49.160839,2.85244],[49.16106,2.85282],[49.162529,2.85542],[49.163368,2.85693],[49.163509,2.85718],[49.165089,2.86008],[49.16539,2.8608],[49.16843,2.86665],[49.170021,2.86965],[49.17218,2.87373],[49.175621,2.87999],[49.176231,2.8811],[49.179279,2.88642],[49.181438,2.8897],[49.18259,2.89176],[49.183601,2.89358],[49.18375,2.89385],[49.18478,2.8957],[49.185249,2.89654],[49.18779,2.90108],[49.188808,2.90303],[49.190102,2.90549],[49.190701,2.90677],[49.191761,2.9087],[49.19241,2.91032],[49.193031,2.9124],[49.19347,2.91488],[49.193699,2.91577],[49.194241,2.91797],[49.195129,2.91999],[49.196159,2.92178],[49.197929,2.92406],[49.199371,2.92593],[49.203152,2.93085],[49.20438,2.93242],[49.20462,2.93274],[49.20533,2.93366],[49.206249,2.93519],[49.206699,2.93596],[49.20718,2.93698],[49.208111,2.93945],[49.208591,2.94062],[49.20969,2.94358],[49.213112,2.95273],[49.213718,2.95442],[49.213951,2.95506],[49.214001,2.95516],[49.21423,2.95557],[49.214489,2.95604],[49.215549,2.95764],[49.21756,2.96067],[49.218311,2.96188],[49.22015,2.96467],[49.220261,2.96483],[49.22036,2.965],[49.224949,2.97216],[49.22739,2.9759],[49.227852,2.97684],[49.230679,2.98317],[49.232349,2.98686],[49.2327,2.98776],[49.23373,2.99006],[49.235939,2.99496],[49.23616,2.99549],[49.236301,2.996],[49.236519,2.99715],[49.236801,2.99904],[49.237469,3.00364],[49.237701,3.00499],[49.237999,3.00648],[49.238449,3.00771],[49.238819,3.00876],[49.23914,3.00969],[49.23962,3.0112],[49.239899,3.01231],[49.24012,3.01349],[49.240231,3.01425],[49.240311,3.01515],[49.240349,3.01612],[49.24033,3.01742],[49.240261,3.01865],[49.24017,3.02038],[49.23996,3.02376],[49.240009,3.02536],[49.240231,3.02705],[49.240459,3.02788],[49.240631,3.02837],[49.24107,3.0305],[49.241322,3.03173],[49.24144,3.03226],[49.241539,3.03301],[49.241879,3.03392],[49.241982,3.03408],[49.242661,3.03486],[49.243038,3.03513],[49.244301,3.0357],[49.24453,3.03581],[49.245651,3.03636],[49.24609,3.03682],[49.24654,3.03758],[49.24691,3.0387],[49.24704,3.04007],[49.247139,3.04125],[49.247311,3.0427],[49.2477,3.04433],[49.248638,3.04733],[49.24955,3.05037],[49.250599,3.0539],[49.25116,3.05589],[49.251621,3.0583],[49.252178,3.062],[49.252682,3.06462],[49.25293,3.06543],[49.253201,3.0661],[49.25349,3.0667],[49.253632,3.06698],[49.253849,3.06739],[49.254398,3.06823],[49.26215,3.07868],[49.262779,3.07968],[49.26334,3.08068],[49.26384,3.08165],[49.264229,3.08268],[49.26487,3.0843],[49.26516,3.08543],[49.265839,3.08923],[49.266029,3.09204],[49.266048,3.0927],[49.266041,3.0932],[49.266109,3.09654],[49.266129,3.09739],[49.26609,3.10367],[49.266151,3.10906],[49.26619,3.11928],[49.266121,3.12874],[49.266151,3.12982],[49.266201,3.13054],[49.266312,3.13122],[49.266361,3.13147],[49.266472,3.13198],[49.2672,3.13399],[49.26841,3.13675],[49.27039,3.14043],[49.274078,3.14659],[49.275848,3.14911],[49.277939,3.1521],[49.278271,3.15265],[49.28019,3.15596],[49.286388,3.16663],[49.28751,3.1682],[49.287609,3.16833],[49.289768,3.17103],[49.29092,3.17291],[49.29192,3.17481],[49.29274,3.17687],[49.29406,3.17964],[49.294731,3.18086],[49.295399,3.18254],[49.295811,3.18401],[49.295959,3.18571],[49.295979,3.18695],[49.295898,3.18833],[49.29583,3.19],[49.295979,3.19203],[49.29631,3.1938],[49.29673,3.1954],[49.297539,3.19753],[49.298759,3.19972],[49.299938,3.20148],[49.300652,3.20286],[49.30122,3.20424],[49.301651,3.20591],[49.301891,3.20788],[49.302059,3.21038],[49.302269,3.21219],[49.302959,3.21429],[49.30571,3.22031],[49.30864,3.22546],[49.309811,3.22703],[49.31102,3.22849],[49.31274,3.23107],[49.31488,3.23429],[49.317299,3.2378],[49.32056,3.24233],[49.32275,3.24454],[49.325081,3.24709],[49.325722,3.248],[49.326302,3.24902],[49.32732,3.25099],[49.327991,3.25206],[49.328751,3.25307],[49.329418,3.2539],[49.332272,3.25749],[49.332909,3.25856],[49.33379,3.25972],[49.338329,3.2657],[49.341782,3.27038],[49.342751,3.27172],[49.344791,3.27453],[49.345718,3.27556],[49.34626,3.27603],[49.352268,3.28022],[49.352921,3.28056],[49.353329,3.28079],[49.35495,3.28164],[49.355968,3.2825],[49.356419,3.28301],[49.356419,3.28305],[49.35651,3.28388],[49.356571,3.2844],[49.35664,3.28495],[49.356709,3.28566],[49.35672,3.28595],[49.356709,3.28641],[49.35677,3.28663],[49.356861,3.28691],[49.356979,3.28719],[49.35709,3.28752],[49.357208,3.28781],[49.3573,3.28794],[49.357399,3.28809],[49.357471,3.28821],[49.357559,3.2884],[49.35767,3.2887],[49.357731,3.28883],[49.35775,3.28887],[49.357769,3.28894],[49.357761,3.28906],[49.357719,3.28917],[49.357529,3.28948],[49.357059,3.29017],[49.356831,3.29052],[49.35672,3.29069],[49.356682,3.2908],[49.35667,3.29108],[49.356709,3.29132],[49.35675,3.29166],[49.356781,3.29206],[49.356831,3.29232],[49.356781,3.29255],[49.356781,3.29274],[49.35688,3.29314],[49.35688,3.29342],[49.356869,3.29369],[49.35738,3.29529],[49.357559,3.2959],[49.357738,3.2966],[49.358002,3.2976],[49.358212,3.29818],[49.35833,3.2997],[49.358459,3.30074],[49.358669,3.30189],[49.35886,3.30285],[49.359089,3.30391],[49.35957,3.30624],[49.359631,3.30669],[49.35973,3.30823],[49.359779,3.30874],[49.35997,3.31033],[49.36002,3.3112],[49.35997,3.31228],[49.359921,3.31286],[49.35984,3.31356],[49.35989,3.31389],[49.360039,3.31441],[49.36005,3.31466],[49.360001,3.31495],[49.359982,3.31495],[49.35989,3.31497],[49.359791,3.31505],[49.359718,3.3152],[49.359692,3.31542],[49.35973,3.31562],[49.359798,3.31575],[49.35989,3.31582],[49.360039,3.31606],[49.360142,3.31683],[49.360149,3.3171],[49.3601,3.31736],[49.360031,3.31764],[49.359299,3.31978],[49.35881,3.32173],[49.35862,3.32317],[49.358551,3.32364],[49.358509,3.32394],[49.358509,3.32628],[49.35862,3.32773],[49.35873,3.3289],[49.3592,3.33098],[49.365822,3.34999],[49.36623,3.35116],[49.36673,3.35233],[49.368061,3.35532],[49.368698,3.35653],[49.369381,3.35756],[49.369579,3.35783],[49.369961,3.35845],[49.371399,3.36015],[49.373959,3.36318],[49.377419,3.36732],[49.380451,3.3709],[49.38171,3.37217],[49.382549,3.3728],[49.386822,3.37487],[49.387329,3.37508],[49.387901,3.37515],[49.38903,3.37524],[49.390369,3.37501],[49.391369,3.37459],[49.392052,3.37424],[49.393021,3.37357],[49.393848,3.37261],[49.394199,3.37221],[49.39489,3.37146],[49.39727,3.36894],[49.39769,3.36858],[49.398499,3.36807],[49.399349,3.36767],[49.39957,3.36759],[49.399948,3.3675],[49.400379,3.36746],[49.4007,3.36742],[49.401569,3.36734],[49.402779,3.36725],[49.403622,3.36716],[49.404339,3.3671],[49.404831,3.36715],[49.405369,3.36729],[49.405891,3.36754],[49.406319,3.36784],[49.406639,3.36812],[49.40694,3.3684],[49.407242,3.36878],[49.407539,3.36919],[49.407921,3.36986],[49.408291,3.37059],[49.408718,3.37151],[49.409,3.37231],[49.409088,3.37274],[49.409142,3.37329],[49.409199,3.37499],[49.409309,3.37552],[49.409401,3.376],[49.409538,3.37646],[49.410198,3.37845],[49.410419,3.37902],[49.411491,3.38208],[49.412601,3.38458],[49.413212,3.38594],[49.41394,3.38761],[49.415298,3.39079],[49.416401,3.39328],[49.417488,3.39583],[49.417801,3.39646],[49.4198,3.39993],[49.42028,3.40092],[49.420719,3.40195],[49.421539,3.40463],[49.421871,3.40574],[49.42226,3.40684],[49.422791,3.40806],[49.42358,3.40955],[49.424141,3.41044],[49.424381,3.41078],[49.424919,3.4115],[49.425652,3.41233],[49.426418,3.41308],[49.430618,3.41694],[49.43433,3.42028],[49.438011,3.42371],[49.441021,3.42644],[49.4417,3.42719],[49.442322,3.42804],[49.44381,3.43021],[49.446411,3.43405],[49.44693,3.43504],[49.44743,3.43611],[49.44833,3.43821],[49.4492,3.4406],[49.450031,3.44383],[49.450439,3.44615],[49.450741,3.44886],[49.45118,3.4563],[49.45153,3.46253],[49.452019,3.46974],[49.452339,3.47497],[49.452728,3.47809],[49.45332,3.48084],[49.453819,3.48278],[49.4548,3.48552],[49.455299,3.48672],[49.456131,3.48842],[49.457031,3.49007],[49.458191,3.49207],[49.458771,3.49305],[49.459541,3.49441],[49.46011,3.4956],[49.46064,3.49717],[49.461029,3.49879],[49.46122,3.50043],[49.461281,3.50174],[49.4613,3.5033],[49.461311,3.50401],[49.461349,3.50964],[49.461601,3.51175],[49.462139,3.51387],[49.462608,3.51513],[49.463291,3.51661],[49.464142,3.51788],[49.465061,3.51893],[49.466122,3.51984],[49.46769,3.52107],[49.469349,3.52247],[49.470531,3.52372],[49.471779,3.52536],[49.47311,3.52741],[49.474491,3.52969],[49.475441,3.53125],[49.4758,3.53178],[49.47662,3.53292],[49.477421,3.53395],[49.47887,3.53565],[49.48011,3.53712],[49.4804,3.53743],[49.48193,3.53912],[49.483459,3.54096],[49.484451,3.54212],[49.485119,3.54285],[49.48642,3.5444],[49.488979,3.54735],[49.490631,3.54923],[49.492081,3.55078],[49.49387,3.55256],[49.495121,3.55373],[49.495548,3.55414],[49.49651,3.55505],[49.498039,3.55682],[49.499439,3.55871],[49.501659,3.56181],[49.50383,3.56478],[49.506649,3.5687],[49.506931,3.5691],[49.507648,3.57006],[49.50832,3.57099],[49.50877,3.57161],[49.50964,3.57281],[49.51083,3.5745],[49.511421,3.57536],[49.512112,3.57634],[49.51236,3.57669],[49.513309,3.57803],[49.513821,3.57876],[49.516281,3.58221],[49.51701,3.58326],[49.517731,3.58426],[49.51849,3.5852],[49.519058,3.58582],[49.519619,3.58633],[49.52,3.58665],[49.520519,3.58703],[49.520988,3.58734],[49.521469,3.58763],[49.521938,3.58787],[49.522339,3.58805],[49.522781,3.58822],[49.52322,3.58837],[49.52401,3.58855],[49.525612,3.58887],[49.52697,3.58913],[49.52858,3.58942],[49.530399,3.58973],[49.531071,3.58989],[49.53183,3.59011],[49.532181,3.59031],[49.532509,3.59061],[49.532761,3.59094],[49.53294,3.59128],[49.533421,3.59226],[49.533581,3.5924],[49.533741,3.59246],[49.534031,3.59236],[49.534222,3.59229],[49.534241,3.59237],[49.534489,3.59286],[49.53479,3.59324],[49.53548,3.5938],[49.535789,3.59405],[49.536228,3.59479],[49.536789,3.59581],[49.537159,3.59673],[49.537479,3.59714],[49.538719,3.59965],[49.539108,3.59997],[49.539421,3.60045],[49.539551,3.60082],[49.53965,3.60139],[49.539509,3.60222],[49.539421,3.60295],[49.53931,3.60335],[49.539249,3.60385],[49.539291,3.60436],[49.53949,3.60531],[49.539612,3.60558],[49.539791,3.60598],[49.54031,3.60651],[49.540459,3.60664],[49.54097,3.60705],[49.541649,3.6075],[49.542278,3.60796],[49.54261,3.6084],[49.543991,3.61106],[49.545181,3.61396],[49.54612,3.61561],[49.546219,3.6159],[49.546299,3.61632],[49.546539,3.61653],[49.546558,3.6166],[49.546619,3.61669],[49.54668,3.61672],[49.546711,3.61673],[49.54686,3.61704],[49.547211,3.61791],[49.547562,3.6189],[49.54837,3.62094],[49.549431,3.62376],[49.549641,3.62425],[49.550018,3.62488],[49.550911,3.62686],[49.551029,3.62701],[49.551182,3.62709],[49.551819,3.62729],[49.55228,3.62755],[49.552601,3.62779],[49.553009,3.62824],[49.553291,3.62869],[49.55405,3.62877],[49.554321,3.62879],[49.55468,3.62882],[49.554859,3.6288],[49.555721,3.62871],[49.556099,3.62857],[49.556961,3.62831],[49.55814,3.62787],[49.55827,3.6278],[49.558441,3.62863],[49.558849,3.62947],[49.559368,3.63012],[49.560188,3.63142],[49.560749,3.63178],[49.561279,3.63192],[49.561569,3.63225],[49.56197,3.63323],[49.562191,3.63368],[49.563992,3.63555],[49.56477,3.63568],[49.565159,3.63561],[49.565399,3.63535],[49.56543,3.63532],[49.565689,3.6352],[49.56604,3.63504],[49.56715,3.63447],[49.567471,3.63434],[49.56778,3.63398],[49.56818,3.63367],[49.568359,3.63355],[49.568691,3.63364],[49.5695,3.63341],[49.569859,3.63329],[49.56995,3.63351],[49.569981,3.63357],[49.569969,3.6336],[49.569981,3.63364],[49.57,3.63367],[49.570011,3.63369],[49.57003,3.6337],[49.570049,3.63369],[49.570068,3.63368],[49.57021,3.6342],[49.570259,3.63464],[49.570301,3.63502],[49.570381,3.63524],[49.570492,3.63542],[49.570641,3.63555],[49.57077,3.6356],[49.571621,3.63558],[49.572151,3.63554],[49.573311,3.63553],[49.57346,3.63553],[49.57365,3.63555],[49.573921,3.63567],[49.575909,3.63793],[49.576191,3.63824],[49.577591,3.63978],[49.57769,3.63989],[49.57785,3.64007],[49.578281,3.64053],[49.581089,3.64368],[49.582039,3.64469],[49.582531,3.64521],[49.582802,3.6455],[49.58353,3.64634],[49.583858,3.64673],[49.584259,3.64717],[49.584702,3.64765],[49.584919,3.6479],[49.58527,3.64829],[49.585571,3.64862],[49.58585,3.64891],[49.585819,3.64899],[49.585812,3.64909],[49.585812,3.64917],[49.585838,3.64926],[49.585911,3.64935],[49.585972,3.64938],[49.586029,3.64938],[49.58609,3.64935],[49.586151,3.64928],[49.586929,3.65012],[49.587379,3.6506],[49.588112,3.65139],[49.589119,3.6525],[49.589149,3.65254],[49.58926,3.65266],[49.589981,3.65347],[49.590549,3.65411],[49.59087,3.65445],[49.590889,3.65447],[49.590889,3.6545],[49.590889,3.65453],[49.590889,3.65456],[49.5909,3.65458],[49.590919,3.6546],[49.590931,3.6546],[49.59095,3.6546],[49.590969,3.6546],[49.590981,3.65458],[49.591011,3.65461],[49.59177,3.65544],[49.592361,3.65612],[49.59264,3.65649],[49.59309,3.65707],[49.593239,3.65727],[49.59333,3.65739],[49.593689,3.65786],[49.593849,3.65808],[49.593868,3.65821],[49.593849,3.65833],[49.593868,3.65845],[49.59391,3.65858],[49.59409,3.65914],[49.594009,3.65918],[49.593941,3.65927],[49.593891,3.65944],[49.593891,3.65954],[49.59391,3.65967],[49.593971,3.65978],[49.59404,3.65985],[49.59409,3.65987],[49.5942,3.65986],[49.59428,3.6598],[49.594341,3.65968],[49.594372,3.65953],[49.596668,3.65991],[49.59848,3.66089],[49.598671,3.66099],[49.60154,3.66251],[49.602051,3.66279],[49.6035,3.66359],[49.60574,3.66481],[49.60593,3.66494],[49.606392,3.66518],[49.606571,3.6653],[49.606709,3.66542],[49.6068,3.66557],[49.606861,3.66574],[49.606949,3.66586],[49.607071,3.66591],[49.607151,3.66591],[49.607262,3.66584],[49.607399,3.66579],[49.607559,3.66584],[49.60778,3.66596],[49.608021,3.66605],[49.608391,3.66627],[49.609539,3.66686],[49.61433,3.66959],[49.624729,3.67525],[49.649849,3.68871],[49.659801,3.69405],[49.670971,3.70023],[49.68116,3.70551],[49.68346,3.70673],[49.689899,3.71012],[49.696129,3.7134],[49.704128,3.71757],[49.70499,3.7181],[49.705761,3.71867],[49.706539,3.71938],[49.707321,3.72023],[49.70797,3.72105],[49.708641,3.72205],[49.713829,3.73096],[49.715481,3.73358],[49.717491,3.73645],[49.721199,3.74189],[49.728088,3.75164],[49.729691,3.75383],[49.72998,3.75414],[49.730549,3.75454],[49.731079,3.75485],[49.731152,3.75508],[49.731239,3.75518],[49.73138,3.7552],[49.73148,3.75515],[49.73156,3.75505],[49.731609,3.7549],[49.732288,3.75456],[49.73259,3.7545],[49.74054,3.75618],[49.740791,3.75623],[49.741291,3.75636],[49.74263,3.75713],[49.743961,3.75945],[49.745411,3.76296],[49.746841,3.7664],[49.748749,3.77061],[49.748791,3.77069],[49.748829,3.77088],[49.74884,3.77112],[49.748829,3.77121],[49.74884,3.77134],[49.748871,3.77144],[49.748909,3.77152],[49.748989,3.77157],[49.749069,3.77157],[49.749168,3.77164],[49.74934,3.77181],[49.752281,3.77645],[49.760368,3.78898],[49.762699,3.79258],[49.764481,3.79438],[49.76675,3.79636],[49.76902,3.7973],[49.7701,3.7981],[49.771358,3.79933],[49.77195,3.80005],[49.774071,3.80271],[49.776779,3.8052],[49.779331,3.80752],[49.78054,3.80852],[49.782219,3.81121],[49.783451,3.81348],[49.792301,3.82983],[49.802551,3.84863],[49.810909,3.86348],[49.811131,3.8639],[49.819889,3.88047],[49.827751,3.89335],[49.830109,3.89674],[49.830742,3.89764],[49.83147,3.89866],[49.831539,3.89892],[49.831558,3.89907],[49.831581,3.89927],[49.831631,3.89938],[49.83176,3.89953],[49.831779,3.8996],[49.831799,3.89963],[49.831829,3.89967],[49.831871,3.89968],[49.831921,3.89967],[49.832001,3.89969],[49.8321,3.89974],[49.83223,3.89987],[49.83234,3.90014],[49.832489,3.90094],[49.83263,3.90173],[49.832821,3.90275],[49.833111,3.9044],[49.83353,3.90698],[49.83358,3.90729],[49.83371,3.90812],[49.833809,3.90861],[49.833858,3.90884],[49.833969,3.90928],[49.834099,3.90956],[49.83432,3.90981],[49.83567,3.91086],[49.835949,3.91118],[49.8363,3.91163],[49.836891,3.91239],[49.837002,3.91253],[49.837421,3.91306],[49.83997,3.91635],[49.84016,3.91671],[49.840221,3.91696],[49.84021,3.91707],[49.84026,3.9173],[49.840309,3.91736],[49.840408,3.91739],[49.840542,3.91733],[49.840752,3.91743],[49.840939,3.91763],[49.842201,3.91926],[49.842281,3.9195],[49.842361,3.9198],[49.842411,3.91986],[49.842571,3.91994],[49.84269,3.9199],[49.847469,3.92601],[49.84753,3.9261],[49.848579,3.92771],[49.849781,3.92961],[49.8503,3.9306],[49.854511,3.94123],[49.854778,3.94208],[49.856899,3.9548],[49.857658,3.95939],[49.85778,3.96035],[49.857868,3.96181],[49.85807,3.96371],[49.858379,3.96578],[49.85849,3.96665],[49.85918,3.97329],[49.85936,3.97503],[49.86013,3.98297],[49.860401,3.98542],[49.860531,3.98607],[49.860741,3.98674],[49.861,3.98733],[49.86113,3.98754],[49.862068,3.98904],[49.862339,3.9895],[49.862549,3.99008],[49.863449,3.99304],[49.86459,3.99755],[49.86488,3.99843],[49.865131,3.99897],[49.866039,4.00099],[49.866619,4.00296],[49.867611,4.00552],[49.86837,4.00715],[49.869839,4.01013],[49.871159,4.01274],[49.872959,4.01563],[49.873371,4.01613],[49.873878,4.01658],[49.87759,4.01891],[49.87809,4.0191],[49.880131,4.01919],[49.88092,4.01928],[49.881828,4.01952],[49.88274,4.01987],[49.883438,4.02022],[49.884109,4.0207],[49.88488,4.02134],[49.88612,4.02249],[49.887161,4.02342],[49.887981,4.02422],[49.888649,4.02499],[49.889511,4.02625],[49.890209,4.02765],[49.890591,4.02872],[49.890961,4.02986],[49.89122,4.03114],[49.891411,4.03238],[49.891659,4.03397],[49.892029,4.03654],[49.892368,4.03855],[49.89262,4.04019],[49.89283,4.04112],[49.893051,4.04178],[49.89333,4.04241],[49.894169,4.04414],[49.89632,4.04823],[49.899811,4.05498],[49.900478,4.05623],[49.902988,4.06037],[49.903519,4.06155],[49.90406,4.06293],[49.904518,4.06441],[49.904732,4.06539],[49.904961,4.06698],[49.90514,4.06778],[49.905491,4.06857],[49.905701,4.06905],[49.90646,4.07035],[49.906601,4.0706],[49.90657,4.07069],[49.906559,4.07079],[49.906582,4.07089],[49.906609,4.07098],[49.906502,4.07119],[49.905621,4.07245],[49.905312,4.07289],[49.90506,4.07352],[49.904911,4.07424],[49.904812,4.07497],[49.90509,4.08286],[49.904499,4.08708],[49.904419,4.08839],[49.904381,4.08986],[49.904541,4.0923],[49.90519,4.09547],[49.905418,4.09659],[49.908192,4.10089],[49.913052,4.10329],[49.918251,4.10586],[49.923,4.10655],[49.927971,4.10483],[49.93195,4.10415],[49.934929,4.10586],[49.936588,4.10981],[49.93692,4.11256],[49.938251,4.11788],[49.948738,4.14826],[49.949631,4.14964],[49.969139,4.16278],[49.97176,4.16452],[49.972351,4.16491],[49.973339,4.1658],[49.974251,4.16724],[49.974651,4.16827],[49.975559,4.17155],[49.975941,4.17262],[49.976349,4.17336],[49.976688,4.17391],[49.976929,4.1741],[49.9758,4.17787],[49.975651,4.17834],[49.97559,4.17862],[49.975571,4.17933],[49.97554,4.17965],[49.97559,4.17989],[49.975609,4.18013],[49.975571,4.18051],[49.975521,4.1809],[49.97546,4.18129],[49.975498,4.18188],[49.97562,4.18242],[49.975712,4.18299],[49.975719,4.18337],[49.975712,4.18371],[49.975651,4.18423],[49.975521,4.18536],[49.975441,4.18619],[49.975231,4.18783],[49.97504,4.18918],[49.974991,4.18957],[49.97485,4.19071],[49.974739,4.19145],[49.974689,4.19168],[49.974682,4.19174],[49.97472,4.19225],[49.974758,4.19398],[49.974819,4.19461],[49.97493,4.19524],[49.97509,4.19601],[49.9757,4.19877],[49.976631,4.2028],[49.977039,4.20461],[49.97723,4.20531],[49.97752,4.20599],[49.97789,4.20668],[49.980869,4.2122],[49.982651,4.21544],[49.983219,4.2165],[49.983749,4.21716],[49.984138,4.21756],[49.98428,4.21769],[49.984482,4.21787],[49.984879,4.21807],[49.9856,4.2182],[49.986408,4.21854],[49.987141,4.21908],[49.987831,4.22019],[49.988659,4.22179],[49.992199,4.22882],[49.99477,4.23396],[49.995602,4.23567],[49.997871,4.24014],[49.998192,4.24075],[49.99831,4.241],[49.99844,4.24137],[49.99855,4.24173],[49.999081,4.24357],[49.99979,4.24594],[49.99968,4.24621],[49.99942,4.24734],[49.999378,4.24758],[49.999329,4.24915],[49.99931,4.24973],[49.999401,4.25034],[49.999561,4.25073],[49.999599,4.25106],[49.999619,4.25177],[49.99963,4.25297],[49.99926,4.25497],[49.999149,4.2556],[49.999111,4.25618],[49.999149,4.25669],[49.999321,4.25699],[49.999359,4.25708],[50.000092,4.25786],[50.002411,4.2602],[50.00378,4.26153],[50.003811,4.26156],[50.00412,4.26186],[50.005482,4.26324],[50.005539,4.2633],[50.006519,4.26468],[50.007149,4.26548],[50.007801,4.2662],[50.008579,4.26671],[50.010052,4.26882],[50.01012,4.26892],[50.01091,4.27013],[50.01075,4.27117],[50.01075,4.27197],[50.01096,4.27303],[50.014118,4.28795],[50.01572,4.29529],[50.015831,4.29583],[50.017262,4.30224],[50.017559,4.30349],[50.017639,4.30396],[50.01931,4.30548],[50.020748,4.30676],[50.02129,4.3074],[50.021839,4.30814],[50.022072,4.30914],[50.022202,4.30975],[50.022339,4.31035],[50.022659,4.31099],[50.023708,4.31199],[50.025181,4.31313],[50.025761,4.31364],[50.026001,4.31391],[50.0261,4.31403],[50.026329,4.31449],[50.026798,4.31636],[50.0275,4.31856],[50.02771,4.31955],[50.027721,4.31961],[50.027901,4.32089],[50.027981,4.32245],[50.027962,4.32405],[50.027729,4.32475],[50.027519,4.32542],[50.02655,4.32671],[50.025921,4.3273],[50.025841,4.32737],[50.025791,4.32795],[50.02597,4.32838],[50.026051,4.32857],[50.026539,4.3299],[50.026859,4.33099],[50.026939,4.33144],[50.027161,4.33239],[50.02718,4.33272],[50.02734,4.33477],[50.027481,4.33699],[50.027161,4.33921],[50.027168,4.34014],[50.02721,4.34095],[50.027241,4.34156],[50.02755,4.34282],[50.027988,4.34441],[50.028351,4.34658],[50.028629,4.35251],[50.028641,4.35269],[50.028591,4.35623],[50.028519,4.35827],[50.028221,4.36011],[50.02821,4.36128],[50.028629,4.36306],[50.0289,4.36529],[50.029251,4.36781],[50.029282,4.36803],[50.029499,4.37065],[50.029701,4.37181],[50.029591,4.37235],[50.02953,4.37315],[50.029491,4.37471],[50.029789,4.37513],[50.029919,4.37553],[50.02993,4.3757],[50.030701,4.37559],[50.030861,4.37679],[50.030521,4.37743],[50.03054,4.37814],[50.030609,4.37885],[50.03075,4.37913],[50.031639,4.37979],[50.032398,4.38053],[50.0336,4.38207],[50.034111,4.38253],[50.035561,4.38341],[50.035599,4.38344],[50.03574,4.38355],[50.036079,4.38502],[50.03717,4.38733],[50.038078,4.38923],[50.038441,4.39082],[50.03849,4.39113],[50.039471,4.39663],[50.039478,4.39669],[50.03978,4.39838],[50.040081,4.39862],[50.040371,4.3991],[50.041271,4.40146],[50.041691,4.40274],[50.04221,4.40488],[50.042561,4.40543],[50.0429,4.40563],[50.043331,4.40587],[50.04351,4.40604],[50.04435,4.40715],[50.04467,4.40772],[50.044739,4.40789],[50.04504,4.40862],[50.045158,4.40917],[50.045189,4.40952],[50.045361,4.41011],[50.045731,4.41124],[50.046371,4.41292],[50.04668,4.41372],[50.048119,4.41821],[50.048801,4.41945],[50.049629,4.42141],[50.050179,4.42238],[50.051449,4.42435],[50.05191,4.42551],[50.052231,4.42671],[50.05254,4.42788],[50.05315,4.42957],[50.053612,4.43128],[50.054241,4.43257],[50.054691,4.43369],[50.055359,4.43532],[50.055519,4.43562],[50.055771,4.4356],[50.056252,4.43507],[50.05645,4.43497],[50.056599,4.43506],[50.057011,4.43551],[50.05706,4.43565],[50.057159,4.43579],[50.05748,4.43621],[50.05785,4.43659],[50.057961,4.43673],[50.058361,4.4367],[50.058701,4.43663],[50.05888,4.43672],[50.059231,4.43714],[50.05957,4.43765],[50.0597,4.43803],[50.06023,4.43982],[50.060398,4.44037],[50.06123,4.44313],[50.062489,4.44721],[50.063011,4.44891],[50.063068,4.4491],[50.063881,4.45084],[50.065201,4.45369],[50.06662,4.45676],[50.068562,4.4614],[50.070049,4.46533],[50.07053,4.46655],[50.070969,4.46792],[50.071751,4.46886],[50.07251,4.46976],[50.073109,4.4707],[50.073269,4.47082],[50.073349,4.47087],[50.07354,4.47099],[50.074051,4.47119],[50.07481,4.47122],[50.074879,4.47123],[50.074951,4.47125],[50.07531,4.47132],[50.075729,4.47136],[50.07597,4.47144],[50.076172,4.47162],[50.076271,4.47177],[50.076302,4.47181],[50.07653,4.47158],[50.07663,4.47158],[50.07674,4.47158],[50.0769,4.47167],[50.077011,4.47197],[50.07737,4.47166],[50.077671,4.47139],[50.077881,4.47125],[50.078201,4.47096],[50.078442,4.47049],[50.078869,4.4692],[50.079021,4.4688],[50.079201,4.46853],[50.079681,4.46859],[50.07991,4.46862],[50.081051,4.46872],[50.081612,4.46878],[50.081699,4.46879],[50.08247,4.46885],[50.082661,4.46885],[50.082771,4.46886],[50.082859,4.46886],[50.083,4.46888],[50.083069,4.46888],[50.083099,4.4693],[50.083382,4.47044],[50.083591,4.47111],[50.08403,4.47232],[50.084419,4.4736],[50.084629,4.47494],[50.08477,4.47543],[50.084919,4.47564],[50.085258,4.47618],[50.085979,4.47744],[50.086571,4.47849],[50.087151,4.4795],[50.08728,4.47988],[50.08762,4.48082],[50.08791,4.48137],[50.088451,4.48205],[50.088692,4.48237],[50.089039,4.4829],[50.089191,4.48327],[50.08934,4.48351],[50.089531,4.48375],[50.09008,4.48464],[50.090462,4.48504],[50.09108,4.48547],[50.09137,4.48553],[50.091721,4.48565],[50.091961,4.48576],[50.09256,4.48442],[50.092838,4.48396],[50.09314,4.48365],[50.093399,4.48358],[50.093788,4.48371],[50.094379,4.48373],[50.094429,4.48347],[50.094582,4.48334],[50.095711,4.4865],[50.097229,4.48952],[50.097809,4.49003],[50.098141,4.49016],[50.09877,4.49029],[50.099209,4.49092],[50.099388,4.49162],[50.0994,4.4924],[50.099602,4.49341],[50.100342,4.49538],[50.10099,4.49723],[50.101231,4.49772],[50.10154,4.49797],[50.101711,4.49812],[50.10191,4.4983],[50.101952,4.49847],[50.10194,4.49855],[50.10194,4.49863],[50.10199,4.49871],[50.102051,4.49875],[50.102169,4.49871],[50.10265,4.49955],[50.102631,4.49958],[50.102619,4.49968],[50.102631,4.4998],[50.102741,4.49986],[50.102779,4.49987],[50.10284,4.49982],[50.102871,4.49972],[50.102859,4.49959],[50.102829,4.49951],[50.10294,4.49889],[50.103191,4.49847],[50.10347,4.49806],[50.103779,4.49768],[50.10453,4.49691],[50.105129,4.49662],[50.105751,4.49635],[50.106461,4.49625],[50.107231,4.4963],[50.11113,4.4967],[50.111961,4.49678],[50.115211,4.49712],[50.11647,4.49719],[50.117191,4.49699],[50.121288,4.4951],[50.123459,4.49432],[50.125092,4.49373],[50.1259,4.49351],[50.126808,4.49351],[50.127609,4.49368],[50.128559,4.49404],[50.129189,4.49444],[50.130192,4.49535],[50.130981,4.49642],[50.13258,4.49858],[50.134689,4.50064],[50.136169,4.50204],[50.13686,4.50262],[50.137531,4.50307],[50.13895,4.50373],[50.139511,4.5039],[50.14101,4.50417],[50.14632,4.50421],[50.147518,4.50422],[50.150139,4.50419],[50.15065,4.50424],[50.15123,4.50438],[50.151669,4.50453],[50.151852,4.50465],[50.152081,4.50478],[50.15279,4.5053],[50.155079,4.50743],[50.155491,4.50787],[50.157631,4.50991],[50.16436,4.51629],[50.164631,4.51659],[50.16531,4.51735],[50.166161,4.5183],[50.16935,4.52251],[50.169868,4.523],[50.171089,4.5245],[50.172199,4.52566],[50.172451,4.52599],[50.17326,4.52658],[50.17543,4.52761],[50.17741,4.52849],[50.178669,4.5289],[50.178761,4.52893],[50.17918,4.52906],[50.180279,4.52944],[50.180618,4.52953],[50.183731,4.53021],[50.184631,4.5303],[50.186069,4.53048],[50.187279,4.53056],[50.188679,4.53056],[50.191021,4.53042],[50.19585,4.53016],[50.19595,4.53074],[50.196091,4.53143],[50.196251,4.5321],[50.196899,4.53391],[50.19714,4.53441],[50.19743,4.53506],[50.198292,4.53693],[50.198872,4.53827],[50.199909,4.5406],[50.200439,4.54297],[50.20034,4.54308],[50.20005,4.54347],[50.2001,4.54355],[50.200371,4.54422],[50.200489,4.54532],[50.20026,4.54569],[50.20015,4.54604],[50.200081,4.54681],[50.20002,4.54745],[50.200039,4.54772],[50.200298,4.54808],[50.200439,4.54832],[50.201172,4.54957],[50.201649,4.55039],[50.202511,4.55165],[50.203079,4.55226],[50.20385,4.55265],[50.212891,4.55572],[50.21307,4.55577],[50.218269,4.55743],[50.223999,4.55925],[50.224899,4.55964],[50.225342,4.56005],[50.226662,4.56146],[50.22715,4.56198],[50.227619,4.56251],[50.22768,4.56259],[50.227779,4.56271],[50.227982,4.5629],[50.228222,4.5627],[50.22839,4.56257],[50.228531,4.56264],[50.228561,4.56274],[50.22863,4.56294],[50.229721,4.56365],[50.230591,4.56399],[50.23143,4.56444],[50.232201,4.56553],[50.232658,4.56608],[50.23315,4.5664],[50.233829,4.56674],[50.23439,4.56697],[50.234638,4.56722],[50.234772,4.56736],[50.240292,4.57311],[50.240349,4.57316],[50.24514,4.5776],[50.245411,4.57779],[50.24585,4.57792],[50.246059,4.57809],[50.246361,4.57852],[50.24662,4.57888],[50.246651,4.57892],[50.246731,4.57903],[50.246861,4.57921],[50.247051,4.57938],[50.24778,4.58016],[50.247841,4.58027],[50.247898,4.58041],[50.248402,4.58157],[50.249451,4.58399],[50.250019,4.58559],[50.250038,4.58564],[50.25021,4.58604],[50.250259,4.58616],[50.25029,4.58621],[50.25034,4.5863],[50.250381,4.58638],[50.250389,4.58642],[50.250401,4.58647],[50.250439,4.58656],[50.25045,4.58661],[50.25053,4.58696],[50.250591,4.58768],[50.25053,4.58816],[50.250729,4.58904],[50.250858,4.59129],[50.250919,4.59229],[50.25108,4.59352],[50.251339,4.59513],[50.25164,4.59634],[50.25177,4.59747],[50.25177,4.59766],[50.251801,4.59784],[50.251911,4.59851],[50.251999,4.59917],[50.252102,4.59982],[50.251629,4.60042],[50.251781,4.60076],[50.252251,4.60153],[50.252781,4.60223],[50.252529,4.60264],[50.252449,4.6032],[50.25256,4.60351],[50.252731,4.60379],[50.252781,4.60396],[50.2528,4.60409],[50.2528,4.60443],[50.25275,4.60481],[50.252739,4.60485],[50.252998,4.60506],[50.253689,4.60596],[50.254398,4.60669],[50.254951,4.60716],[50.255009,4.60722],[50.255169,4.6074],[50.255268,4.60753],[50.256279,4.6086],[50.258839,4.61136],[50.261101,4.61375],[50.263351,4.61613],[50.26458,4.61745],[50.265011,4.61791],[50.268379,4.62153],[50.268929,4.62206],[50.269241,4.62238],[50.27034,4.62356],[50.271751,4.62503],[50.272469,4.62579],[50.2785,4.63218],[50.2799,4.63366],[50.280788,4.63461],[50.284409,4.63842],[50.28735,4.64151],[50.289391,4.64367],[50.289639,4.64394],[50.29044,4.64478],[50.293301,4.6478],[50.294048,4.64859],[50.294521,4.64909],[50.296768,4.65146],[50.30394,4.659],[50.304298,4.65955],[50.304459,4.65992],[50.30463,4.66031],[50.30476,4.66073],[50.305099,4.66196],[50.30537,4.6632],[50.305698,4.66463],[50.306149,4.66671],[50.30648,4.66821],[50.306629,4.6689],[50.30706,4.67105],[50.30719,4.6717],[50.30788,4.67466],[50.309891,4.6842],[50.311111,4.68957],[50.31192,4.69347],[50.312241,4.69489],[50.313511,4.70081],[50.314838,4.70669],[50.316181,4.71305],[50.31625,4.71331],[50.316761,4.71358],[50.317329,4.71374],[50.317741,4.71356],[50.318111,4.71351],[50.318649,4.71361],[50.319359,4.71391],[50.320358,4.71419],[50.322701,4.71504],[50.32391,4.71499],[50.325001,4.71759],[50.324921,4.71777],[50.324821,4.71785],[50.324509,4.71812],[50.32452,4.71845],[50.324989,4.71977],[50.325409,4.72065],[50.325451,4.7207],[50.32592,4.72136],[50.327,4.72259],[50.329041,4.72355],[50.33102,4.72363],[50.33186,4.72394],[50.33271,4.72442],[50.334461,4.72574],[50.336201,4.72767],[50.338959,4.73073],[50.34045,4.73227],[50.34304,4.73483],[50.343479,4.73518],[50.343788,4.73534],[50.344261,4.73541],[50.344372,4.73539],[50.344349,4.73492],[50.344479,4.73447],[50.344952,4.73372],[50.346062,4.73291],[50.346191,4.73277],[50.34663,4.7337],[50.34676,4.73374],[50.346569,4.73488],[50.346432,4.73601],[50.34642,4.73611],[50.346321,4.73688],[50.346279,4.7373],[50.346149,4.73829],[50.345989,4.7395],[50.34594,4.74026],[50.345921,4.74083],[50.346062,4.74477],[50.346069,4.74492],[50.346272,4.7451],[50.347092,4.74617],[50.347519,4.74677],[50.348888,4.74854],[50.349758,4.74948],[50.352509,4.75227],[50.354118,4.7539],[50.355808,4.7556],[50.360039,4.75985],[50.362671,4.76257],[50.364422,4.76457],[50.365391,4.76558],[50.36665,4.7664],[50.368839,4.76766],[50.37048,4.76867],[50.37175,4.76941],[50.372219,4.76986],[50.372532,4.77053],[50.373001,4.77155],[50.3741,4.77397],[50.37413,4.77403],[50.37463,4.77515],[50.374729,4.77533],[50.375439,4.77686],[50.375912,4.77753],[50.376179,4.77793],[50.3764,4.77813],[50.37653,4.77821],[50.37669,4.77818],[50.37706,4.77844],[50.377468,4.77862],[50.378429,4.77919],[50.378609,4.77927],[50.37896,4.77918],[50.379421,4.77904],[50.379608,4.77907],[50.37978,4.77921],[50.37994,4.77962],[50.380081,4.7801],[50.380169,4.78039],[50.380329,4.78157],[50.380421,4.7818],[50.380428,4.78191],[50.380569,4.7826],[50.38065,4.78289],[50.380779,4.78315],[50.381001,4.78342],[50.382809,4.7856],[50.383129,4.78596],[50.383369,4.78631],[50.38353,4.78662],[50.383671,4.78697],[50.383781,4.78739],[50.384331,4.78991],[50.38525,4.79401],[50.385769,4.79647],[50.387051,4.80247],[50.38718,4.80307],[50.387348,4.8038],[50.387459,4.80412],[50.387428,4.80448],[50.387489,4.80461],[50.38752,4.80467],[50.387669,4.8047],[50.387829,4.80508],[50.388599,4.80671],[50.388618,4.80677],[50.390339,4.8102],[50.391331,4.81227],[50.39156,4.81273],[50.392399,4.81445],[50.392738,4.81513],[50.393589,4.81684],[50.393848,4.81752],[50.39415,4.81864],[50.394878,4.82081],[50.395729,4.82316],[50.39629,4.82471],[50.39677,4.82606],[50.397621,4.82843],[50.398071,4.82965],[50.39819,4.82987],[50.400909,4.83333],[50.401981,4.83469],[50.402309,4.83505],[50.4039,4.8362],[50.405041,4.83702],[50.405411,4.8374],[50.406551,4.8388],[50.40696,4.83924],[50.408199,4.8399],[50.4086,4.84007],[50.410141,4.8408],[50.41209,4.84171],[50.413528,4.84243],[50.414169,4.843],[50.415329,4.84423],[50.415779,4.84496],[50.416248,4.84651],[50.416351,4.84744],[50.416439,4.84882],[50.41647,4.84899],[50.416611,4.84984],[50.41769,4.85302],[50.418308,4.85484],[50.419769,4.8592],[50.42086,4.86229],[50.421211,4.86333],[50.421761,4.86499],[50.42218,4.86628],[50.422798,4.86611],[50.423031,4.86604],[50.423531,4.86585],[50.424351,4.86538],[50.424381,4.86544],[50.424728,4.86616],[50.425152,4.86686],[50.425259,4.86713],[50.42527,4.86745],[50.425362,4.86796],[50.425388,4.86801],[50.426369,4.86696],[50.427429,4.86611],[50.428028,4.86571],[50.42831,4.86573],[50.428761,4.86598],[50.429001,4.86608],[50.429062,4.8661],[50.429119,4.86618],[50.429409,4.86597],[50.4296,4.86583],[50.43026,4.86533],[50.430859,4.86483],[50.431782,4.86418],[50.432671,4.86341],[50.433022,4.86317],[50.43327,4.86305],[50.433521,4.86296],[50.434669,4.8627],[50.43478,4.86267],[50.435139,4.86256],[50.4356,4.86241],[50.43594,4.86228],[50.436951,4.86147],[50.43771,4.86085],[50.438381,4.86031],[50.438839,4.85992],[50.440289,4.85876],[50.44096,4.85818],[50.44104,4.85811],[50.441078,4.85809],[50.441479,4.85779],[50.442139,4.85724],[50.44276,4.85683],[50.44313,4.85661],[50.44347,4.85649],[50.4436,4.85644],[50.444401,4.85626],[50.445438,4.85604],[50.445511,4.85604],[50.445629,4.85602],[50.445961,4.85599],[50.446918,4.85606],[50.44743,4.85609],[50.44804,4.8562],[50.448929,4.85637],[50.449532,4.85655],[50.449879,4.85661],[50.450489,4.85682],[50.450611,4.85689],[50.450951,4.85715],[50.451931,4.85797],[50.45211,4.85815],[50.452259,4.85832],[50.452339,4.85847],[50.45245,4.85924],[50.452549,4.85993],[50.45266,4.86025],[50.45277,4.86046],[50.45295,4.86065],[50.453152,4.86082],[50.453461,4.86104],[50.454391,4.8616],[50.45491,4.86186],[50.455318,4.86208],[50.455448,4.86216],[50.456161,4.86272],[50.45829,4.8645],[50.458389,4.8646],[50.45866,4.86486],[50.45879,4.86503],[50.459011,4.86545],[50.459141,4.8657],[50.459599,4.86669],[50.45974,4.86692],[50.46048,4.86819],[50.460831,4.86879],[50.461182,4.86932],[50.461281,4.86942],[50.461399,4.86948],[50.461498,4.86951],[50.461639,4.86953],[50.461712,4.86953],[50.462151,4.86956],[50.462261,4.8696],[50.462299,4.86962],[50.462341,4.86969],[50.462349,4.86972],[50.462391,4.86981],[50.46241,4.86989],[50.462421,4.86997],[50.462429,4.87014],[50.462448,4.87021],[50.462448,4.87037],[50.46244,4.87047],[50.462429,4.87051],[50.462429,4.87058],[50.46246,4.87064],[50.462429,4.87085],[50.462391,4.87117],[50.462399,4.87142],[50.46241,4.87159],[50.46244,4.87175],[50.462528,4.87205],[50.462631,4.87227],[50.462769,4.87253],[50.462929,4.87304],[50.462978,4.87325],[50.463081,4.87363],[50.463181,4.87394],[50.46331,4.87419],[50.463459,4.87455],[50.46368,4.87494],[50.464001,4.87535],[50.464241,4.87571],[50.46476,4.87701],[50.464939,4.87749],[50.465069,4.87775],[50.46524,4.87794],[50.46537,4.87803],[50.4655,4.87806],[50.465641,4.87807],[50.465778,4.87803],[50.465851,4.87802],[50.465931,4.87801],[50.465988,4.87803],[50.466049,4.87814],[50.466301,4.88146],[50.466541,4.88481],[50.466469,4.88496],[50.46645,4.88516],[50.466499,4.88536],[50.466591,4.88543],[50.46664,4.88635],[50.466751,4.88807],[50.466801,4.8888],[50.466869,4.88945],[50.466961,4.89024],[50.467121,4.89147],[50.467442,4.89335],[50.467819,4.89505],[50.467899,4.89532],[50.46814,4.89594],[50.468182,4.89604],[50.468529,4.89671],[50.4688,4.89718],[50.46936,4.89797],[50.471039,4.90034],[50.471371,4.90083],[50.472561,4.90253],[50.47279,4.90283],[50.47298,4.9031],[50.473091,4.90325],[50.473099,4.90334],[50.473129,4.90341],[50.47316,4.90345],[50.473221,4.90368],[50.47324,4.90375],[50.47327,4.9038],[50.473301,4.90383],[50.473339,4.90383],[50.47364,4.90412],[50.474949,4.90612],[50.475079,4.9063],[50.475441,4.90684],[50.475651,4.90717],[50.476028,4.90769],[50.47599,4.90784],[50.476002,4.908],[50.476021,4.90808],[50.476051,4.90813],[50.476151,4.90824],[50.476292,4.90825],[50.47636,4.90821],[50.476639,4.90864],[50.477188,4.90943],[50.47781,4.91041],[50.47781,4.91074],[50.477909,4.91091],[50.47805,4.91097],[50.478142,4.91093],[50.478241,4.9108],[50.478779,4.91111],[50.47945,4.91165],[50.479641,4.91178],[50.48024,4.91228],[50.480839,4.91279],[50.48188,4.91384],[50.482719,4.91483],[50.48304,4.91535],[50.486271,4.92078],[50.487629,4.92306],[50.49115,4.9291],[50.491459,4.9295],[50.491611,4.9297],[50.49239,4.93034],[50.493462,4.93109],[50.494431,4.93185],[50.495121,4.93239],[50.495289,4.93252],[50.495361,4.93263],[50.495708,4.93329],[50.49596,4.93377],[50.496231,4.93427],[50.49638,4.93455],[50.497108,4.93593],[50.497231,4.93622],[50.497318,4.93641],[50.498219,4.93833],[50.498638,4.93947],[50.498699,4.93975],[50.498909,4.94045],[50.49918,4.94098],[50.499439,4.94111],[50.50021,4.94082],[50.500462,4.94084],[50.500721,4.94098],[50.501011,4.9413],[50.503239,4.94399],[50.503571,4.94456],[50.50396,4.94543],[50.504471,4.9468],[50.504902,4.94845],[50.505192,4.95024],[50.505421,4.95417],[50.505428,4.95445],[50.50547,4.9556],[50.505489,4.95605],[50.505569,4.96017],[50.505581,4.96047],[50.505619,4.96117],[50.506039,4.9625],[50.507179,4.96557],[50.508049,4.96817],[50.508789,4.97023],[50.509972,4.97154],[50.511459,4.97333],[50.512032,4.97399],[50.512199,4.97431],[50.513741,4.97817],[50.513988,4.9788],[50.514339,4.97953],[50.515148,4.98116],[50.51651,4.98391],[50.51646,4.98399],[50.516441,4.98406],[50.51643,4.98417],[50.516449,4.98429],[50.516479,4.98438],[50.51656,4.98446],[50.516628,4.98447],[50.516701,4.98445],[50.516739,4.98442],[50.51762,4.98618],[50.519279,4.98953],[50.51992,4.99084],[50.52079,4.99285],[50.523811,4.9998],[50.523911,5.00008],[50.52462,5.00211],[50.524799,5.00263],[50.52536,5.00429],[50.525509,5.00459],[50.525661,5.00483],[50.52618,5.00561],[50.526749,5.00647],[50.527271,5.00723],[50.527401,5.0074],[50.527481,5.00748],[50.52758,5.00757],[50.528992,5.00851],[50.529228,5.00868],[50.529629,5.00891],[50.529701,5.00896],[50.529999,5.00916],[50.53046,5.00946],[50.531601,5.0102],[50.53162,5.01022],[50.532261,5.01062],[50.532398,5.0107],[50.53339,5.01131],[50.534809,5.01229],[50.53595,5.013],[50.5382,5.0145],[50.539841,5.01558],[50.541969,5.01695],[50.54285,5.01749],[50.54369,5.01801],[50.544079,5.01831],[50.54438,5.01856],[50.54472,5.01912],[50.545349,5.02011],[50.545799,5.02083],[50.546082,5.02123],[50.546619,5.02212],[50.546921,5.0226],[50.547531,5.02354],[50.548031,5.02433],[50.548538,5.02513],[50.549271,5.02624],[50.549992,5.02737],[50.55138,5.0295],[50.55154,5.02976],[50.55349,5.03273],[50.554661,5.03451],[50.555038,5.03508],[50.555141,5.03522],[50.555489,5.03574],[50.555851,5.03627],[50.55608,5.03664],[50.556591,5.03748],[50.55682,5.03785],[50.557362,5.03862],[50.558552,5.03983],[50.56057,5.04174],[50.561649,5.04276],[50.56522,5.04612],[50.56987,5.05053],[50.572128,5.05266],[50.57235,5.05287],[50.575069,5.05542],[50.576649,5.05692],[50.5825,5.0625],[50.582439,5.06334],[50.582401,5.06406],[50.582371,5.06457],[50.582371,5.06481],[50.58234,5.06498],[50.582249,5.06519],[50.582111,5.06553],[50.58197,5.06588],[50.58181,5.06627],[50.581749,5.0665],[50.581718,5.06675],[50.581741,5.0674],[50.58176,5.06781],[50.581779,5.06815],[50.581791,5.06898],[50.581779,5.06953],[50.581749,5.06989],[50.58173,5.07018],[50.581741,5.07058],[50.581749,5.07071],[50.581841,5.07091],[50.58197,5.071],[50.582588,5.07111],[50.58276,5.07117],[50.58289,5.07131],[50.582951,5.07144],[50.583061,5.07169],[50.583229,5.07215],[50.58334,5.07237],[50.583469,5.07248],[50.583561,5.07262],[50.583672,5.07272],[50.58382,5.07286],[50.58403,5.07311],[50.58419,5.07338],[50.584381,5.07384],[50.584549,5.07412],[50.58469,5.07429],[50.584881,5.07459],[50.585178,5.0751],[50.585361,5.07542],[50.585548,5.07576],[50.585629,5.07594],[50.586021,5.07683],[50.586571,5.07808],[50.587109,5.07929],[50.587349,5.07986],[50.587631,5.08058],[50.587898,5.08127],[50.58815,5.08216],[50.58839,5.08311],[50.588669,5.08441],[50.58886,5.08544],[50.589001,5.08604],[50.589191,5.08681],[50.589378,5.08779],[50.589771,5.089],[50.59,5.08974],[50.590179,5.09011],[50.590469,5.09068],[50.590752,5.09133],[50.590969,5.09177],[50.59127,5.09211],[50.59153,5.09257],[50.59166,5.09297],[50.591648,5.09353],[50.591648,5.09427],[50.591671,5.09511],[50.59174,5.09594],[50.59177,5.09618],[50.59182,5.09635],[50.592041,5.09715],[50.592201,5.09781],[50.5924,5.0985],[50.592602,5.09923],[50.592651,5.09994],[50.592659,5.10065],[50.592651,5.10135],[50.59256,5.10208],[50.592491,5.10276],[50.592442,5.10335],[50.5924,5.104],[50.592281,5.10478],[50.592201,5.10539],[50.59201,5.10593],[50.59177,5.10646],[50.591549,5.10724],[50.591419,5.10801],[50.591358,5.10879],[50.591381,5.10974],[50.59137,5.11028],[50.591358,5.1109],[50.591339,5.11223],[50.5914,5.11293],[50.591549,5.11389],[50.591648,5.11459],[50.591591,5.11491],[50.591351,5.11575],[50.591068,5.11676],[50.590881,5.11738],[50.591202,5.11793],[50.59148,5.11838],[50.59164,5.11881],[50.59169,5.11939],[50.59166,5.12022],[50.59161,5.1211],[50.591572,5.12199],[50.59161,5.12233],[50.591831,5.12338],[50.59264,5.12393],[50.59285,5.12424],[50.59391,5.12618],[50.59417,5.12644],[50.595909,5.1279],[50.597488,5.13109],[50.59771,5.13143],[50.597969,5.13162],[50.598259,5.13142],[50.598381,5.13142],[50.59853,5.13154],[50.601601,5.13554],[50.60289,5.13723],[50.60331,5.13771],[50.606461,5.14038],[50.606602,5.14045],[50.60677,5.14046],[50.608372,5.14026],[50.61031,5.14001],[50.61224,5.13981],[50.613201,5.13967],[50.613689,5.13967],[50.614182,5.13971],[50.614609,5.13981],[50.615211,5.14014],[50.615791,5.14052],[50.61586,5.14084],[50.616192,5.14158],[50.616508,5.14267],[50.61668,5.1436],[50.616718,5.14389],[50.616718,5.14408],[50.616718,5.14431],[50.616699,5.14498],[50.61668,5.14522],[50.616772,5.14653],[50.616791,5.14679],[50.61692,5.14749],[50.61718,5.14894],[50.61726,5.14958],[50.617371,5.15089],[50.617409,5.1518],[50.61742,5.15187],[50.617401,5.15201],[50.617359,5.15219],[50.617149,5.15282],[50.617119,5.15291],[50.617119,5.15315],[50.617161,5.15391],[50.617199,5.15422],[50.617249,5.15454],[50.61731,5.1547],[50.617329,5.15484],[50.617359,5.15501],[50.617371,5.15522],[50.617371,5.15536],[50.617352,5.15558],[50.617321,5.15577],[50.61729,5.15596],[50.617298,5.15611],[50.617359,5.15627],[50.617519,5.15658],[50.617722,5.15632],[50.61776,5.1562],[50.617821,5.15602],[50.617931,5.15551],[50.618011,5.15518],[50.61813,5.15491],[50.618229,5.15484],[50.61832,5.15493],[50.618481,5.15557],[50.618721,5.15633],[50.61903,5.15709],[50.619431,5.15786],[50.61982,5.15817],[50.619999,5.1582],[50.620441,5.15816],[50.620911,5.15802],[50.62159,5.15778],[50.622219,5.15752],[50.622959,5.15694],[50.6231,5.15687],[50.623199,5.15688],[50.623199,5.15702],[50.623199,5.1582],[50.623291,5.15886],[50.623669,5.16007],[50.624081,5.16115],[50.62429,5.16175],[50.62442,5.16241],[50.624519,5.16303],[50.624489,5.16323],[50.624481,5.16335],[50.624451,5.16335],[50.624432,5.16335],[50.624409,5.16338],[50.624401,5.1634],[50.62439,5.16344],[50.62439,5.16348],[50.62439,5.16353],[50.624401,5.16355],[50.62442,5.16358],[50.624458,5.1636],[50.624489,5.1636],[50.624512,5.16358],[50.624531,5.16354],[50.624611,5.1636],[50.624748,5.16411],[50.625469,5.16549],[50.625801,5.1662],[50.62645,5.16755],[50.627239,5.16975],[50.627399,5.17039],[50.627831,5.17186],[50.62817,5.17295],[50.628311,5.17341],[50.62899,5.17591],[50.629181,5.17612],[50.633789,5.17784],[50.634281,5.17823],[50.636341,5.18119],[50.638451,5.18246],[50.641121,5.18449],[50.644291,5.18642],[50.645592,5.18735],[50.64679,5.18837],[50.647228,5.18886],[50.647881,5.18957],[50.649441,5.19067],[50.64949,5.19088],[50.649948,5.19341],[50.650051,5.19397],[50.650829,5.19889],[50.6511,5.20042],[50.651501,5.20173],[50.651829,5.20274],[50.652191,5.2034],[50.65435,5.20613],[50.65712,5.20868],[50.660419,5.21173],[50.670261,5.22675],[50.67033,5.22687],[50.672909,5.23103],[50.674332,5.23343],[50.676979,5.23795],[50.677189,5.23841],[50.68,5.24443],[50.681721,5.2481],[50.681721,5.24813],[50.68166,5.24827],[50.681721,5.24849],[50.681881,5.24852],[50.683559,5.25163],[50.686939,5.25648],[50.687199,5.25691],[50.68742,5.25732],[50.690708,5.26297],[50.692249,5.2655],[50.693111,5.26696],[50.69479,5.27301],[50.69508,5.27391],[50.695309,5.27445],[50.695381,5.2746],[50.695728,5.27531],[50.695789,5.27542],[50.6987,5.28143],[50.698738,5.28152],[50.702381,5.28904],[50.703789,5.29193],[50.703911,5.29214],[50.704041,5.29225],[50.70401,5.29239],[50.704029,5.29249],[50.70409,5.29257],[50.70417,5.29257],[50.704231,5.29275],[50.70425,5.29282],[50.70496,5.29435],[50.705009,5.29451],[50.705051,5.29472],[50.70499,5.29481],[50.704971,5.29493],[50.705009,5.29507],[50.70507,5.29512],[50.70517,5.2951],[50.705219,5.29501],[50.705311,5.29522],[50.705528,5.29577],[50.70607,5.29726],[50.707081,5.29993],[50.707668,5.30158],[50.708221,5.30284],[50.7089,5.30434],[50.709148,5.30471],[50.711479,5.30807],[50.714931,5.3121],[50.718658,5.31645],[50.71891,5.31675],[50.71981,5.31779],[50.719849,5.31785],[50.722919,5.32144],[50.724239,5.3232],[50.72472,5.3241],[50.725201,5.3253],[50.72567,5.32651],[50.726589,5.33],[50.726688,5.3304],[50.727749,5.33455],[50.728039,5.33572],[50.728439,5.33734],[50.72913,5.34008],[50.729591,5.34156],[50.73,5.34266],[50.730309,5.34335],[50.73069,5.34407],[50.730808,5.3443],[50.730789,5.34435],[50.73077,5.34441],[50.730782,5.34448],[50.730801,5.34454],[50.730831,5.34458],[50.730862,5.34459],[50.7309,5.3446],[50.730919,5.34459],[50.730961,5.34456],[50.73098,5.34454],[50.731651,5.34576],[50.732571,5.34745],[50.733212,5.34876],[50.733551,5.34945],[50.73357,5.34952],[50.733921,5.35032],[50.73468,5.35217],[50.735458,5.35401],[50.735722,5.35466],[50.735859,5.35537],[50.73592,5.35595],[50.736092,5.35887],[50.736111,5.35914],[50.736279,5.36227],[50.736359,5.36367],[50.736469,5.36472],[50.736599,5.36522],[50.736729,5.36579],[50.737,5.36659],[50.737942,5.3683],[50.739361,5.37103],[50.74107,5.37423],[50.742001,5.37612],[50.74292,5.37792],[50.74493,5.38218],[50.745731,5.38411],[50.74757,5.38877],[50.747711,5.38909],[50.74794,5.38963],[50.749969,5.39405],[50.750641,5.39577],[50.751652,5.39863],[50.753311,5.40309],[50.753578,5.40404],[50.754398,5.40691],[50.75465,5.40804],[50.754848,5.40868],[50.755341,5.40977],[50.756229,5.41138],[50.759048,5.41673],[50.760639,5.41983],[50.76107,5.42067],[50.761421,5.4212],[50.761871,5.42201],[50.762138,5.42272],[50.762569,5.42386],[50.76334,5.42599],[50.763481,5.42643],[50.763691,5.42693],[50.764149,5.42782],[50.764252,5.42799],[50.764519,5.42851],[50.764702,5.4287],[50.76516,5.42957],[50.765228,5.42969],[50.765831,5.43081],[50.76635,5.43189],[50.766762,5.4327],[50.766899,5.433],[50.766979,5.43317],[50.767071,5.43346],[50.767208,5.43397],[50.767632,5.43556],[50.768009,5.43667],[50.768349,5.43766],[50.768608,5.43833],[50.768669,5.43849],[50.768768,5.43877],[50.7691,5.43961],[50.76952,5.44055],[50.77002,5.44141],[50.770599,5.44239],[50.770988,5.44302],[50.771198,5.44335],[50.77198,5.44484],[50.77261,5.44587],[50.773529,5.44729],[50.773911,5.44778],[50.774509,5.44841],[50.774738,5.44863],[50.775219,5.44896],[50.775829,5.4494],[50.77634,5.44981],[50.77673,5.45011],[50.776711,5.45015],[50.776711,5.45022],[50.776718,5.45027],[50.776741,5.45031],[50.776772,5.45033],[50.776798,5.45034],[50.776821,5.45033],[50.776852,5.45031],[50.776878,5.45026],[50.776951,5.45036],[50.777039,5.45053],[50.777069,5.45076],[50.77705,5.45089],[50.777142,5.45094],[50.777241,5.45105],[50.777409,5.45131],[50.77774,5.45208],[50.778351,5.45387],[50.778961,5.45582],[50.779091,5.45588],[50.77953,5.45811],[50.779652,5.45863],[50.779671,5.45873],[50.7798,5.4594],[50.77998,5.46029],[50.780201,5.46028],[50.780491,5.46027],[50.7808,5.46024],[50.781151,5.46026],[50.781509,5.46037],[50.782101,5.46069],[50.7822,5.46078],[50.782299,5.46087],[50.782471,5.46104],[50.782711,5.46146],[50.78297,5.46203],[50.783001,5.46213],[50.783039,5.46228],[50.783199,5.46334],[50.78331,5.46412],[50.78334,5.46476],[50.783321,5.46496],[50.783321,5.46517],[50.783321,5.46573],[50.783329,5.46615],[50.78336,5.46632],[50.78336,5.46647],[50.78347,5.46718],[50.783699,5.46803],[50.783958,5.46887],[50.784,5.46937],[50.783951,5.46972],[50.783859,5.46994],[50.78376,5.4701],[50.783508,5.47044],[50.783218,5.47063],[50.783058,5.47076],[50.78294,5.47287],[50.782959,5.47368],[50.782951,5.47379],[50.782951,5.47393],[50.78299,5.47459],[50.783081,5.47466],[50.783169,5.47467],[50.783508,5.47455],[50.783798,5.47443],[50.783939,5.47443],[50.78405,5.47449],[50.784088,5.47456],[50.784149,5.47471],[50.78421,5.475],[50.784229,5.47558],[50.78421,5.47599],[50.784161,5.47644],[50.78405,5.47682],[50.78381,5.47771],[50.783699,5.47843],[50.783661,5.47889],[50.78368,5.47954],[50.783718,5.48006],[50.783798,5.48054],[50.78405,5.48185],[50.784618,5.48494],[50.784859,5.48627],[50.786129,5.49289],[50.787479,5.50033],[50.788422,5.50527],[50.788631,5.50638],[50.789211,5.50946],[50.78941,5.51056],[50.789711,5.51214],[50.790371,5.5158],[50.7915,5.52185],[50.791599,5.52239],[50.79266,5.52787],[50.79311,5.53015],[50.793381,5.5316],[50.79353,5.53244],[50.794029,5.53515],[50.794231,5.5362],[50.795059,5.54063],[50.797211,5.54979],[50.799412,5.55913],[50.799919,5.56126],[50.80106,5.5646],[50.803791,5.57256],[50.804272,5.57393],[50.804989,5.57603],[50.806999,5.5818],[50.808681,5.58658],[50.808941,5.58735],[50.809731,5.58961],[50.810768,5.59258],[50.811199,5.59366],[50.81131,5.59402],[50.811729,5.59507],[50.811722,5.59512],[50.811722,5.59519],[50.811741,5.59524],[50.811749,5.59527],[50.811779,5.59529],[50.81181,5.59531],[50.811829,5.59531],[50.81192,5.59552],[50.812698,5.59746],[50.812752,5.59759],[50.812931,5.59798],[50.813271,5.59881],[50.814079,5.60082],[50.81514,5.60343],[50.815208,5.6036],[50.815899,5.60531],[50.81683,5.60763],[50.818878,5.61271],[50.820019,5.61552],[50.820808,5.61751],[50.82362,5.62447],[50.823799,5.62491],[50.8242,5.62593],[50.824261,5.62607],[50.82708,5.63304],[50.8279,5.63511],[50.82914,5.63821],[50.830399,5.64128],[50.83062,5.64174],[50.831341,5.64352],[50.83152,5.64403],[50.831558,5.64416],[50.83176,5.64466],[50.832951,5.64765],[50.833851,5.64993],[50.833881,5.65002],[50.8339,5.65007],[50.833931,5.65014],[50.833969,5.65022],[50.834801,5.6523],[50.834991,5.65274],[50.835258,5.65341],[50.835529,5.65406],[50.836769,5.65714],[50.83836,5.66109],[50.839291,5.66342],[50.840488,5.66642],[50.840549,5.66658],[50.840599,5.6667],[50.840599,5.6667],[50.840649,5.66683],[50.840691,5.66679],[50.84111,5.66639],[50.841282,5.66614],[50.841541,5.66588],[50.84169,5.66611],[50.841831,5.66633],[50.842121,5.66677],[50.842541,5.66743],[50.84259,5.66756],[50.842628,5.66767],[50.842682,5.66794],[50.84272,5.66804],[50.842911,5.66842],[50.843182,5.66975],[50.84333,5.67056],[50.843391,5.67093],[50.843498,5.67138],[50.84359,5.67176],[50.843811,5.67205],[50.844028,5.67221],[50.844109,5.67224],[50.8442,5.67223],[50.844238,5.6722],[50.844311,5.67239],[50.844421,5.67235],[50.844551,5.67235],[50.844669,5.67238],[50.844791,5.67243],[50.844872,5.67249],[50.845161,5.67269],[50.845249,5.67281],[50.845291,5.67288],[50.845322,5.67299],[50.84557,5.67282],[50.845951,5.67251],[50.846081,5.67236],[50.846241,5.67198],[50.84634,5.67205],[50.846539,5.67232],[50.846649,5.67247],[50.846889,5.67283],[50.847069,5.67329],[50.847549,5.67294],[50.847641,5.67287],[50.847851,5.67287],[50.8484,5.67256],[50.84848,5.67254],[50.848598,5.67256],[50.848701,5.67263],[50.848759,5.67272],[50.848808,5.67282],[50.848839,5.67286],[50.848869,5.67297],[50.849049,5.67475],[50.84914,5.67568],[50.849239,5.67679],[50.849319,5.67678],[50.849339,5.67693],[50.849319,5.67738],[50.849251,5.67742],[50.849209,5.67748],[50.849171,5.67756],[50.84914,5.67764],[50.849129,5.67772],[50.849129,5.6778],[50.84914,5.67785],[50.849159,5.67795],[50.849171,5.67797],[50.84919,5.67802],[50.849201,5.67804],[50.849251,5.67809],[50.849281,5.67812],[50.849331,5.67814],[50.849369,5.67815],[50.849419,5.67815],[50.849461,5.67813],[50.84951,5.67809],[50.849548,5.67803],[50.849579,5.67798],[50.849609,5.6779],[50.849621,5.67784],[50.84972,5.67784],[50.8498,5.67785],[50.849892,5.67789],[50.85001,5.67795],[50.85001,5.67796],[50.850739,5.67903],[50.851589,5.68025],[50.852299,5.68126],[50.852371,5.68136],[50.85302,5.6823],[50.85371,5.68334],[50.853748,5.68339],[50.853901,5.68365],[50.85397,5.68372],[50.854061,5.6838],[50.854141,5.68384],[50.854271,5.68387],[50.85437,5.68389],[50.854469,5.68389],[50.854481,5.68405],[50.8545,5.68419],[50.854549,5.68433],[50.854599,5.68447],[50.854759,5.68485],[50.855259,5.68548],[50.85585,5.68632],[50.856041,5.68651],[50.856819,5.6874],[50.85709,5.68774],[50.85722,5.68792],[50.85746,5.68829],[50.858181,5.68957],[50.858509,5.69019],[50.858601,5.69037],[50.858711,5.69056],[50.85878,5.69068],[50.858799,5.69072],[50.858871,5.69086],[50.85894,5.69102],[50.85902,5.69119],[50.859169,5.69152],[50.859291,5.69181],[50.859421,5.69217],[50.85955,5.69258],[50.859692,5.69313],[50.859791,5.69365],[50.859852,5.69402],[50.859879,5.69433],[50.859909,5.69467],[50.85994,5.69515],[50.85997,5.69593],[50.859989,5.69645],[50.860039,5.69864],[50.860111,5.70024],[50.860149,5.7009],[50.860191,5.70134],[50.860222,5.70177],[50.86026,5.70224],[50.860321,5.70281],[50.86034,5.70308],[50.860359,5.70326],[50.860371,5.70343],[50.86047,5.70455],[50.8605,5.7049],[50.860489,5.70533],[50.86047,5.70569],[50.860432,5.70602],[50.860371,5.70628],[50.86031,5.70658],[50.860199,5.70697],[50.8601,5.70729],[50.860001,5.70765],[50.859791,5.70843],[50.8596,5.70921],[50.859539,5.70942],[50.859509,5.70955],[50.859631,5.70964],[50.859711,5.70969],[50.860111,5.70999],[50.860241,5.71004],[50.860359,5.71008],[50.860641,5.7103],[50.86134,5.71085],[50.861629,5.71107],[50.862011,5.71136],[50.8624,5.71166],[50.862499,5.71174],[50.863289,5.71233],[50.86338,5.7124],[50.863411,5.71235],[50.863449,5.71232],[50.86348,5.71231],[50.863499,5.71231],[50.863541,5.71234],[50.863571,5.71238],[50.863579,5.71243],[50.863579,5.71248],[50.863579,5.71253],[50.863838,5.71273],[50.864941,5.71356],[50.86528,5.71378],[50.865639,5.71406],[50.866482,5.7149],[50.86668,5.71509],[50.867599,5.71596],[50.86763,5.71599],[50.867908,5.71635],[50.868141,5.71675],[50.868279,5.71711],[50.86837,5.7174],[50.86861,5.71799],[50.86882,5.71837],[50.86898,5.71859],[50.869041,5.71868],[50.870152,5.72006],[50.87117,5.72103],[50.871552,5.72142],[50.871861,5.72179],[50.872009,5.72195],[50.872349,5.7224],[50.872631,5.72288],[50.872742,5.7231],[50.873089,5.72378],[50.873291,5.72424],[50.873489,5.72477],[50.87463,5.72878],[50.875019,5.73008],[50.87505,5.73019],[50.875309,5.73108],[50.875648,5.73225],[50.875702,5.73244],[50.87608,5.73393],[50.87624,5.73447],[50.87635,5.73481],[50.876411,5.73496],[50.876369,5.735],[50.87635,5.73504],[50.876339,5.73512],[50.876339,5.7352],[50.876362,5.73526],[50.876381,5.73529],[50.876431,5.73533],[50.876469,5.73534],[50.876511,5.73533],[50.87664,5.73587],[50.87672,5.73616],[50.876881,5.73666],[50.87714,5.73733],[50.877441,5.73797],[50.877991,5.73917],[50.878288,5.73995],[50.878502,5.74065],[50.878609,5.74114],[50.878651,5.74152],[50.878658,5.74171],[50.878658,5.74196],[50.878651,5.74309],[50.878651,5.74397],[50.878651,5.74405],[50.878681,5.7442],[50.878738,5.74434],[50.879009,5.74474],[50.879139,5.74499],[50.87933,5.74563],[50.87999,5.74741],[50.880039,5.74756],[50.880138,5.74784],[50.88073,5.74953],[50.880852,5.74988],[50.880989,5.75024],[50.881062,5.75034],[50.881062,5.75034],[50.88113,5.75041],[50.881729,5.75099],[50.881828,5.7511],[50.882339,5.75156],[50.882408,5.75161],[50.882469,5.75163],[50.88258,5.75163],[50.882641,5.75163],[50.882931,5.75163],[50.882961,5.75175],[50.882992,5.7519],[50.883018,5.75194],[50.88319,5.75203],[50.884159,5.75251],[50.885021,5.75291],[50.885078,5.75294],[50.885071,5.75314],[50.88504,5.75351],[50.88517,5.75361],[50.88533,5.75373],[50.885738,5.75395],[50.886021,5.75398],[50.886341,5.75393],[50.886478,5.75394],[50.886742,5.75404],[50.886921,5.75414],[50.887199,5.75431],[50.8876,5.75487],[50.887718,5.75506],[50.888699,5.75662],[50.888988,5.75699],[50.88929,5.75732],[50.889469,5.75752],[50.88987,5.75797],[50.890911,5.75916],[50.891258,5.75966],[50.89167,5.76038],[50.892479,5.76213],[50.892521,5.76221],[50.89259,5.76239],[50.89278,5.76288],[50.892979,5.76325],[50.893299,5.76368],[50.893551,5.76401],[50.89381,5.76431],[50.894058,5.7645],[50.894901,5.76522],[50.8951,5.76544],[50.895359,5.76587],[50.8955,5.7661],[50.895962,5.76664],[50.896381,5.76704],[50.89669,5.7674],[50.89698,5.76768],[50.897369,5.768],[50.897709,5.76821],[50.897861,5.76827],[50.89957,5.76921],[50.899792,5.76935],[50.900188,5.76959],[50.900349,5.76975],[50.900429,5.76987],[50.90123,5.77145],[50.90136,5.77173],[50.902039,5.77313],[50.902302,5.77366],[50.902481,5.77405],[50.902618,5.77439],[50.903019,5.77566],[50.903229,5.77632],[50.90337,5.77674],[50.90353,5.77703],[50.90382,5.77769],[50.90414,5.77865],[50.904282,5.77902],[50.904381,5.77959],[50.904411,5.77973],[50.904491,5.78018],[50.904579,5.78048],[50.90472,5.78079],[50.90514,5.7814],[50.905251,5.78161],[50.905479,5.78217],[50.905769,5.78309],[50.905918,5.78345],[50.906052,5.78367],[50.906181,5.78388],[50.906361,5.78414],[50.906639,5.78458],[50.906792,5.7848],[50.907021,5.78516],[50.907681,5.78619],[50.907829,5.78653],[50.907909,5.78681],[50.907982,5.7872],[50.90799,5.78763],[50.90789,5.78945],[50.907742,5.79208],[50.907619,5.79424],[50.907612,5.79504],[50.907619,5.7958],[50.907639,5.7961],[50.907719,5.79671],[50.90781,5.79715],[50.907982,5.79797],[50.908619,5.80065],[50.908749,5.80125],[50.90897,5.80253],[50.909111,5.80353],[50.909149,5.80404],[50.909161,5.80445],[50.90918,5.80518],[50.909248,5.80574],[50.90955,5.80709],[50.909779,5.80803],[50.909859,5.80861],[50.90987,5.80913],[50.909851,5.80943],[50.909771,5.81001],[50.909618,5.81064],[50.909618,5.81076],[50.909641,5.81086],[50.909561,5.81093],[50.90918,5.8114],[50.909081,5.81149],[50.909119,5.81182],[50.909111,5.81216],[50.909039,5.81267],[50.908791,5.81387],[50.90868,5.81433],[50.90831,5.81569],[50.90823,5.81606],[50.90815,5.81659],[50.908112,5.81727],[50.908051,5.81862],[50.90802,5.81949],[50.908058,5.81993],[50.9081,5.82026],[50.90844,5.82214],[50.908562,5.82258],[50.908649,5.82283],[50.90905,5.82399],[50.909321,5.82486],[50.90934,5.825],[50.909359,5.82561],[50.909328,5.82576],[50.909489,5.82596],[50.909981,5.82676],[50.910118,5.82699],[50.910332,5.82721],[50.910301,5.82732],[50.910332,5.82747],[50.910931,5.82835],[50.911041,5.82855],[50.911171,5.82891],[50.91124,5.82979],[50.911308,5.83041],[50.911659,5.83306],[50.911831,5.83407],[50.911999,5.83477],[50.912189,5.83569],[50.912189,5.8357],[50.9123,5.83605],[50.912392,5.83625],[50.91354,5.83823],[50.913879,5.83895],[50.91415,5.83961],[50.91473,5.84092],[50.914902,5.84151],[50.915131,5.84137],[50.915279,5.84132],[50.915371,5.84133],[50.916672,5.84236],[50.916801,5.84246],[50.917931,5.84337],[50.91925,5.84458],[50.921429,5.84678],[50.922932,5.84838],[50.922459,5.84941],[50.923519,5.85249],[50.92366,5.85289],[50.926071,5.85886],[50.926128,5.85894],[50.926899,5.85939],[50.927029,5.85955],[50.927059,5.85966],[50.927139,5.86029],[50.927238,5.8607],[50.927559,5.86138],[50.927711,5.86195],[50.92783,5.86215],[50.928329,5.86256],[50.928551,5.86291],[50.92873,5.86305],[50.92881,5.86308],[50.929409,5.86309],[50.92952,5.86316],[50.929871,5.86349],[50.930038,5.86356],[50.930382,5.86356],[50.93063,5.86348],[50.930859,5.8635],[50.931042,5.86358],[50.931339,5.86393],[50.931931,5.86433],[50.932098,5.86447],[50.932449,5.86489],[50.93272,5.86507],[50.932861,5.86536],[50.933102,5.86573],[50.933842,5.86665],[50.934059,5.86698],[50.934528,5.86801],[50.93494,5.86879],[50.935101,5.86921],[50.935429,5.86996],[50.935589,5.87023],[50.935982,5.87075],[50.9361,5.87097],[50.93634,5.8715],[50.936588,5.87226],[50.936749,5.87267],[50.936852,5.87279],[50.936958,5.87288],[50.937092,5.87295],[50.93713,5.87306],[50.937439,5.87341],[50.937538,5.87356],[50.937611,5.8737],[50.93763,5.87376],[50.937698,5.87388],[50.937881,5.87417],[50.93795,5.8743],[50.93795,5.87431],[50.93795,5.87433],[50.93795,5.87433],[50.937462,5.87555],[50.937462,5.87556],[50.937462,5.87557],[50.937469,5.87564],[50.937611,5.87655],[50.937672,5.87681],[50.937969,5.87804],[50.938042,5.87843],[50.938049,5.87857],[50.93811,5.87876],[50.938179,5.87886],[50.93821,5.87888],[50.938259,5.87891],[50.938358,5.87895],[50.93856,5.87896],[50.93874,5.88044],[50.938931,5.88146],[50.939098,5.88214],[50.939251,5.88248],[50.939449,5.8828],[50.93964,5.88303],[50.939892,5.88329],[50.940521,5.88404],[50.940552,5.88407],[50.941101,5.88466],[50.942471,5.88609],[50.942341,5.88716],[50.942291,5.8877],[50.94228,5.88792],[50.94228,5.88808],[50.942291,5.88836],[50.94249,5.88994],[50.942619,5.89053],[50.942799,5.89113],[50.943069,5.89197],[50.943291,5.89252],[50.943401,5.89297],[50.943451,5.89337],[50.943501,5.89407],[50.943489,5.89438],[50.943451,5.89461],[50.943321,5.89575],[50.943321,5.89635],[50.94334,5.89651],[50.943359,5.89672],[50.94342,5.89743],[50.94342,5.89804],[50.943378,5.89849],[50.943272,5.89901],[50.94331,5.89905],[50.943378,5.89912],[50.943451,5.89925],[50.943588,5.90003],[50.943649,5.90025],[50.943729,5.90043],[50.944092,5.90098],[50.945271,5.90258],[50.946972,5.90456],[50.947479,5.90518],[50.947689,5.90542],[50.947739,5.90548],[50.94812,5.9059],[50.94902,5.90696],[50.949348,5.90735],[50.94939,5.9074],[50.94973,5.90781],[50.949791,5.90791],[50.94986,5.9081],[50.949909,5.90817],[50.949791,5.90851],[50.949699,5.90906],[50.949638,5.90953],[50.949539,5.91044],[50.949478,5.91082],[50.94936,5.91177],[50.949249,5.91279],[50.949169,5.91352],[50.949089,5.91402],[50.948959,5.91449],[50.948799,5.91489],[50.948719,5.91507],[50.948711,5.91516],[50.948738,5.91528],[50.949341,5.91578],[50.949459,5.91596],[50.949581,5.91642],[50.949612,5.9165],[50.950119,5.91613],[50.950241,5.916],[50.950562,5.91649],[50.950821,5.91689],[50.951099,5.91739],[50.951561,5.91827],[50.951729,5.91853],[50.951908,5.91873],[50.953331,5.92036],[50.955151,5.9225],[50.955349,5.92273],[50.955631,5.9231],[50.955971,5.92363],[50.956291,5.92419],[50.95647,5.92454],[50.957081,5.92587],[50.957211,5.92594],[50.95718,5.92606],[50.957161,5.92627],[50.957199,5.92698],[50.957191,5.9273],[50.957321,5.92744],[50.958118,5.92957],[50.958172,5.92971],[50.958241,5.93007],[50.95837,5.93012],[50.95842,5.93019],[50.959011,5.93056],[50.959949,5.93117],[50.960171,5.9314],[50.960499,5.93213],[50.96072,5.93254],[50.961048,5.93306],[50.961311,5.93339],[50.961441,5.93362],[50.961529,5.93383],[50.961632,5.9342],[50.96172,5.93442],[50.961842,5.93463],[50.962261,5.9352],[50.964642,5.93781],[50.964809,5.93794],[50.964851,5.93825],[50.964901,5.9384],[50.96508,5.93874],[50.966129,5.94009],[50.966251,5.94028],[50.9664,5.94062],[50.966911,5.94233],[50.9673,5.94315],[50.967541,5.94369],[50.967899,5.94452],[50.968208,5.94523],[50.968578,5.94603],[50.96949,5.94778],[50.969608,5.94809],[50.969818,5.94851],[50.970051,5.94889],[50.970299,5.9492],[50.971062,5.95006],[50.971352,5.95029],[50.971882,5.95066],[50.972221,5.95095],[50.972542,5.95126],[50.972809,5.95161],[50.973,5.95201],[50.97366,5.95385],[50.97393,5.95434],[50.974739,5.95532],[50.974861,5.95551],[50.975109,5.95602],[50.975231,5.95621],[50.97562,5.95671],[50.976631,5.95821],[50.97707,5.95902],[50.977219,5.95921],[50.977421,5.95947],[50.977581,5.95971],[50.97781,5.96006],[50.978142,5.96049],[50.9781,5.96121],[50.97834,5.96135],[50.978611,5.96156],[50.978939,5.96194],[50.979141,5.96223],[50.979969,5.96363],[50.980091,5.96387],[50.980202,5.96416],[50.980301,5.9648],[50.9804,5.96515],[50.98048,5.96541],[50.980511,5.9655],[50.980511,5.96551],[50.980518,5.96554],[50.980541,5.96561],[50.980591,5.96574],[50.98064,5.96595],[50.98064,5.96603],[50.980629,5.96613],[50.980598,5.96624],[50.980579,5.96635],[50.980549,5.96647],[50.980518,5.96655],[50.980389,5.96669],[50.980289,5.96677],[50.98024,5.96681],[50.980179,5.96687],[50.980129,5.96697],[50.980091,5.9671],[50.980061,5.96735],[50.98003,5.96781],[50.980019,5.96805],[50.98003,5.96823],[50.98008,5.96837],[50.98011,5.96848],[50.98016,5.96859],[50.980209,5.96872],[50.980282,5.96886],[50.980461,5.96925],[50.980591,5.96953],[50.980721,5.96982],[50.980808,5.97006],[50.980919,5.97036],[50.98098,5.97054],[50.981071,5.97095],[50.98111,5.97114],[50.981129,5.97126],[50.98114,5.97134],[50.98114,5.97141],[50.981129,5.97147],[50.98111,5.97151],[50.981091,5.97155],[50.98106,5.97157],[50.98103,5.97159],[50.980942,5.97159],[50.980511,5.97162],[50.98019,5.97164],[50.980129,5.97165],[50.98011,5.97167],[50.980091,5.97171],[50.980068,5.97181],[50.980129,5.97218],[50.980129,5.9723],[50.980209,5.9723],[50.980251,5.97235],[50.981171,5.97227],[50.981258,5.97233],[50.981319,5.97246],[50.981331,5.97268],[50.981319,5.97304],[50.981361,5.97347],[50.98143,5.9739],[50.981529,5.97424],[50.981609,5.97443],[50.98201,5.97497],[50.982101,5.97508],[50.982182,5.97521],[50.982262,5.97536],[50.98238,5.97562],[50.982601,5.97622],[50.982731,5.97664],[50.982761,5.97674],[50.982811,5.97678],[50.982922,5.97692],[50.9832,5.97733],[50.983582,5.97786],[50.98399,5.97844],[50.984089,5.97858],[50.984249,5.97881],[50.984379,5.97899],[50.984489,5.97915],[50.984581,5.97934],[50.98465,5.97955],[50.984718,5.9798],[50.984909,5.98051],[50.98521,5.98164],[50.985649,5.98311],[50.986031,5.98454],[50.98616,5.98502],[50.986198,5.98521],[50.986229,5.98529],[50.986271,5.98537],[50.986309,5.98546],[50.986351,5.98552],[50.98634,5.98553],[50.98634,5.98557],[50.98634,5.9856],[50.98634,5.98564],[50.986351,5.98567],[50.986351,5.98568],[50.986351,5.9857],[50.98637,5.98572],[50.986382,5.98574],[50.986389,5.98575],[50.986401,5.98576],[50.98642,5.98578],[50.98642,5.98593],[50.986431,5.98598],[50.986431,5.98604],[50.98645,5.98612],[50.986469,5.98622],[50.986511,5.98631],[50.98653,5.98639],[50.986622,5.98669],[50.98716,5.98872],[50.987202,5.98887],[50.987549,5.99021],[50.987679,5.99071],[50.98827,5.99307],[50.98835,5.99344],[50.988499,5.99389],[50.988522,5.99393],[50.988701,5.99427],[50.988831,5.99444],[50.988991,5.99468],[50.98909,5.99487],[50.989128,5.995],[50.989151,5.99514],[50.989151,5.99524],[50.989151,5.99533],[50.989151,5.99542],[50.98914,5.99551],[50.98912,5.99559],[50.989101,5.99569],[50.989071,5.99578],[50.989029,5.99587],[50.988972,5.99596],[50.988892,5.99609],[50.988811,5.9962],[50.988731,5.99633],[50.988659,5.99646],[50.988602,5.99657],[50.988541,5.99671],[50.98851,5.99687],[50.98848,5.99726],[50.98848,5.99779],[50.988468,5.99818],[50.98848,5.99843],[50.98848,5.99856],[50.988499,5.99906],[50.988548,5.99947],[50.988621,5.9999],[50.988659,6.00006],[50.98875,6.0004],[50.988861,6.00074],[50.988979,6.00111],[50.988972,6.00107],[50.989189,6.00172],[50.989552,6.00278],[50.9897,6.00322],[50.989861,6.00368],[50.989971,6.00391],[50.990101,6.00413],[50.990238,6.00433],[50.990379,6.00448],[50.99054,6.0046],[50.990681,6.00468],[50.99081,6.00475],[50.99094,6.00478],[50.991001,6.00479],[50.991211,6.00484],[50.991451,6.00487],[50.99152,6.00488],[50.991539,6.00488],[50.991611,6.00489],[50.991619,6.00497],[50.991661,6.00505],[50.991692,6.00508],[50.991718,6.0051],[50.99176,6.0051],[50.991798,6.00508],[50.99184,6.00503],[50.991859,6.00497],[50.991871,6.00491],[50.992008,6.0049],[50.99218,6.0049],[50.99231,6.00484],[50.99247,6.00478],[50.992489,6.00478],[50.99271,6.0048],[50.993031,6.0048],[50.993698,6.00482],[50.994381,6.00485],[50.995079,6.00486],[50.995209,6.00579],[50.995369,6.00689],[50.995468,6.00766],[50.995491,6.0078],[50.995609,6.00867],[50.99577,6.00986],[50.99585,6.01037],[50.996269,6.0104],[50.99691,6.01044],[50.997372,6.01045],[50.997849,6.01049],[50.998379,6.01054],[50.998501,6.01158],[50.998589,6.01243],[50.998699,6.01352],[50.998699,6.01355],[50.998699,6.01361],[50.998611,6.01473],[50.998459,6.01659],[50.99844,6.01692],[50.998348,6.0181],[50.998241,6.01946],[50.999271,6.01993],[51.00013,6.02034],[51.000839,6.02068],[51.00177,6.02111],[51.00219,6.02132],[51.002628,6.02152],[51.002701,6.02156],[51.002682,6.02178],[51.002621,6.02247],[51.002541,6.02348],[51.00251,6.02389],[51.002499,6.02401],[51.002399,6.02523],[51.00238,6.02545],[51.002319,6.02622],[51.00227,6.02695],[51.002258,6.02704],[51.002239,6.02726],[51.002171,6.02812],[51.002071,6.02935],[51.002029,6.02989],[51.002022,6.03003],[51.001991,6.03041],[51.00193,6.03118],[51.001839,6.03226],[51.00177,6.03317],[51.001801,6.0337],[51.001839,6.03443],[51.001831,6.03449],[51.001751,6.03487],[51.00164,6.03531],[51.001598,6.03548],[51.00156,6.03563],[51.001629,6.03595],[51.001781,6.03625],[51.00201,6.03668],[51.002041,6.03673],[51.002079,6.03678],[51.002121,6.03681],[51.002178,6.03683],[51.002209,6.03684],[51.002239,6.03683],[51.002251,6.03694],[51.002258,6.03704],[51.002289,6.03713],[51.002319,6.03722],[51.002392,6.03738],[51.002468,6.03755],[51.002609,6.03785],[51.002689,6.03801],[51.002781,6.0382],[51.00296,6.03858],[51.003078,6.03886],[51.003189,6.03915],[51.003342,6.03959],[51.003349,6.03964],[51.003448,6.03992],[51.00351,6.04011],[51.003719,6.04077],[51.003929,6.04139],[51.004219,6.04223],[51.004429,6.04288],[51.004501,6.04314],[51.004509,6.04319],[51.004601,6.04357],[51.004829,6.04467],[51.005058,6.04582],[51.005169,6.04636],[51.005211,6.04655],[51.00528,6.04688],[51.005451,6.04774],[51.005611,6.04851],[51.005638,6.04866],[51.005692,6.04885],[51.005749,6.04904],[51.005852,6.0493],[51.005951,6.04949],[51.006039,6.04967],[51.006149,6.04985],[51.006241,6.04998],[51.006481,6.05028],[51.00666,6.0505],[51.007061,6.051],[51.007191,6.05118],[51.00745,6.05151],[51.00771,6.05186],[51.008091,6.0524],[51.008331,6.05273],[51.00843,6.05289],[51.008499,6.05304],[51.008541,6.05314],[51.008579,6.05325],[51.008621,6.05338],[51.00864,6.05348],[51.008659,6.0536],[51.008678,6.05377],[51.00869,6.05393],[51.00872,6.05416],[51.008751,6.05443],[51.008789,6.05472],[51.008831,6.05501],[51.008888,6.0553],[51.0089,6.05534],[51.00898,6.05571],[51.009079,6.05622],[51.009209,6.05676],[51.009399,6.05738],[51.00951,6.05775],[51.00959,6.05801],[51.009628,6.05817],[51.009861,6.05893],[51.009972,6.05923],[51.01004,6.05941],[51.010132,6.05963],[51.01022,6.05985],[51.010311,6.06009],[51.010399,6.06032],[51.010521,6.0606],[51.010601,6.06082],[51.01067,6.06104],[51.010712,6.0612],[51.010731,6.06136],[51.010738,6.06151],[51.010738,6.06169],[51.010731,6.06183],[51.010719,6.06208],[51.0107,6.06231],[51.010689,6.06251],[51.010689,6.06267],[51.010689,6.0629],[51.010689,6.06308],[51.010689,6.06325],[51.010712,6.06342],[51.010731,6.06356],[51.010769,6.0637],[51.010799,6.06382],[51.010841,6.06392],[51.01086,6.06398],[51.01088,6.06402],[51.010921,6.06411],[51.011028,6.06432],[51.011162,6.06454],[51.011539,6.06532],[51.01202,6.06615],[51.012371,6.06673],[51.012741,6.06733],[51.012749,6.06734],[51.013191,6.0681],[51.01342,6.06847],[51.013649,6.06884],[51.013859,6.06917],[51.014069,6.0695],[51.014271,6.06984],[51.01445,6.07014],[51.014481,6.07018],[51.014549,6.07029],[51.01503,6.07108],[51.015072,6.07116],[51.015148,6.07128],[51.015469,6.07181],[51.015781,6.07231],[51.015911,6.07253],[51.016041,6.07272],[51.016129,6.07283],[51.01627,6.07302],[51.016361,6.07313],[51.016609,6.07343],[51.016861,6.07374],[51.016979,6.07387],[51.017132,6.07402],[51.017269,6.07416],[51.017509,6.07437],[51.017712,6.07454],[51.017811,6.07463],[51.017872,6.0747],[51.017929,6.07479],[51.018059,6.07506],[51.018299,6.07559],[51.01857,6.07619],[51.018681,6.07641],[51.018799,6.07664],[51.01902,6.07703],[51.019199,6.07736],[51.019379,6.07771],[51.01973,6.07839],[51.01989,6.0787],[51.02005,6.07901],[51.02021,6.07931],[51.020359,6.07958],[51.020451,6.07975],[51.020519,6.0799],[51.020592,6.08007],[51.020641,6.08023],[51.020691,6.08044],[51.020851,6.08101],[51.021049,6.08173],[51.021149,6.0821],[51.02124,6.08242],[51.021332,6.08275],[51.021431,6.08306],[51.0215,6.08329],[51.02161,6.08356],[51.021721,6.08382],[51.021851,6.08406],[51.021969,6.08428],[51.022072,6.08445],[51.022171,6.08461],[51.022308,6.08479],[51.022388,6.0849],[51.022419,6.08494],[51.022411,6.08496],[51.022411,6.08497],[51.0224,6.08501],[51.0224,6.08506],[51.022411,6.08509],[51.022419,6.08511],[51.02243,6.08513],[51.022449,6.08515],[51.022469,6.08515],[51.02248,6.08516],[51.022499,6.08515],[51.022518,6.08514],[51.022541,6.08513],[51.02256,6.08517],[51.022591,6.0852],[51.02269,6.08538],[51.022812,6.08556],[51.022911,6.08574],[51.023041,6.08597],[51.02317,6.08622],[51.023418,6.0867],[51.023659,6.08717],[51.023899,6.08767],[51.024349,6.08856],[51.02438,6.08863],[51.024529,6.08894],[51.024811,6.0896],[51.025188,6.09053],[51.02557,6.09147],[51.02565,6.09168],[51.02573,6.09189],[51.025761,6.092],[51.02581,6.09222],[51.025879,6.0925],[51.02602,6.09308],[51.0261,6.09345],[51.026199,6.09383],[51.02639,6.09455],[51.02652,6.095],[51.02652,6.09501],[51.02673,6.09579],[51.02697,6.09664],[51.027199,6.09751],[51.027382,6.09815],[51.02755,6.09877],[51.02763,6.09907],[51.027679,6.09927],[51.02776,6.09961],[51.027771,6.09964],[51.027859,6.10005],[51.027908,6.10027],[51.027962,6.10052],[51.028,6.1008],[51.028019,6.10105],[51.02803,6.1014],[51.028061,6.10204],[51.02808,6.1023],[51.028091,6.10255],[51.02813,6.10283],[51.028172,6.10303],[51.028229,6.10324],[51.02832,6.1035],[51.028481,6.1039],[51.028542,6.10406],[51.02877,6.10471],[51.02898,6.10526],[51.029179,6.1058],[51.02927,6.10611],[51.029362,6.10648],[51.029469,6.10704],[51.02961,6.10765],[51.029671,6.10794],[51.029709,6.1081],[51.029758,6.10836],[51.029781,6.10848],[51.0298,6.10859],[51.029869,6.1089],[51.029911,6.10911],[51.029968,6.10942],[51.030029,6.10969],[51.03027,6.11044],[51.030472,6.11101],[51.030571,6.11128],[51.030869,6.11199],[51.031609,6.11365],[51.032631,6.11593],[51.03307,6.11691],[51.033421,6.11781],[51.03355,6.11822],[51.033699,6.11868],[51.034088,6.12002],[51.034328,6.12089],[51.034439,6.12126],[51.03455,6.12172],[51.034698,6.12256],[51.03476,6.12292],[51.034851,6.12331],[51.03492,6.12348],[51.035042,6.12386],[51.035198,6.12422],[51.035542,6.12485],[51.03603,6.1256],[51.03619,6.12584],[51.036331,6.12614],[51.03656,6.12684],[51.03661,6.12702],[51.036671,6.12723],[51.036751,6.1278],[51.03685,6.12891],[51.036919,6.12982],[51.037022,6.13071],[51.037239,6.13222],[51.037338,6.13302],[51.03738,6.13364],[51.037361,6.13409],[51.037331,6.13443],[51.0373,6.13463],[51.037258,6.13485],[51.037159,6.13522],[51.03698,6.13599],[51.036942,6.13627],[51.03693,6.13655],[51.036949,6.13683],[51.03698,6.13715],[51.037071,6.13751],[51.037189,6.13788],[51.03746,6.13866],[51.037731,6.13937],[51.037971,6.14002],[51.038181,6.1407],[51.038239,6.1409],[51.03828,6.14106],[51.03849,6.14178],[51.03875,6.14272],[51.038811,6.1429],[51.03894,6.14349],[51.03904,6.14394],[51.039089,6.14416],[51.03915,6.14454],[51.039211,6.14496],[51.039249,6.14525],[51.039299,6.14579],[51.03941,6.14639],[51.03944,6.14656],[51.039459,6.14661],[51.039879,6.14668],[51.040291,6.14668],[51.040371,6.14668],[51.040791,6.14667],[51.040939,6.14673],[51.041039,6.14687],[51.041309,6.14719],[51.041382,6.14736],[51.041431,6.14758],[51.04147,6.14794],[51.041561,6.14814],[51.04187,6.14852],[51.042,6.14878],[51.042099,6.14878],[51.042271,6.14876],[51.042389,6.14882],[51.042648,6.14905],[51.042912,6.14943],[51.043591,6.14984],[51.04385,6.15004],[51.044151,6.15026],[51.044239,6.15034],[51.044708,6.15076],[51.045078,6.1511],[51.045761,6.15172],[51.045849,6.1518],[51.045879,6.15183],[51.045959,6.15189],[51.046131,6.152],[51.04689,6.15237],[51.04715,6.15244],[51.047932,6.15266],[51.048309,6.15281],[51.048531,6.15275],[51.04874,6.15271],[51.04884,6.15272],[51.048901,6.15276],[51.048901,6.15285],[51.04892,6.15294],[51.048931,6.15299],[51.048969,6.15305],[51.04903,6.1531],[51.049099,6.1531],[51.04916,6.15307],[51.04921,6.15299],[51.04998,6.1537],[51.050388,6.15408],[51.050991,6.15482],[51.051048,6.15492],[51.051781,6.15613],[51.052502,6.15743],[51.053169,6.15822],[51.053501,6.15879],[51.053848,6.16021],[51.053909,6.16049],[51.054161,6.16198],[51.054329,6.16282],[51.054489,6.16355],[51.054619,6.16416],[51.054661,6.16447],[51.054661,6.1648],[51.0546,6.16545],[51.054489,6.16613],[51.054401,6.16679],[51.054359,6.16755],[51.05439,6.16819],[51.054482,6.16883],[51.054508,6.16952],[51.054451,6.17031],[51.054359,6.17113],[51.054298,6.17238],[51.05439,6.17312],[51.054501,6.17376],[51.055061,6.17626],[51.05508,6.17634],[51.055119,6.17633],[51.05526,6.17642],[51.055309,6.17662],[51.05526,6.17683],[51.055191,6.1769],[51.055271,6.17723],[51.055408,6.17765],[51.055561,6.17799],[51.055672,6.17824],[51.055809,6.17843],[51.05611,6.17871],[51.056709,6.17908],[51.05724,6.17927],[51.057381,6.17929],[51.057522,6.17926],[51.05772,6.17918],[51.058201,6.17889],[51.058529,6.17866],[51.05904,6.17832],[51.059299,6.17829],[51.059551,6.17835],[51.059761,6.17847],[51.059978,6.17862],[51.060181,6.17889],[51.060329,6.1792],[51.06052,6.17988],[51.060619,6.18036],[51.060799,6.18082],[51.061111,6.18148],[51.061352,6.18195],[51.061539,6.18236],[51.0616,6.18246],[51.061798,6.18278],[51.062099,6.18303],[51.062489,6.18335],[51.062969,6.18372],[51.063251,6.18393],[51.063309,6.184],[51.063599,6.18432],[51.063862,6.18458],[51.064129,6.18486],[51.06424,6.18498],[51.064041,6.1856],[51.063889,6.18631],[51.063881,6.18678],[51.063999,6.18714],[51.06443,6.18828],[51.064732,6.18904],[51.064911,6.18941],[51.065189,6.18988],[51.065552,6.19029],[51.065941,6.1909],[51.06638,6.19147],[51.066509,6.19163],[51.067768,6.19283],[51.06802,6.19313],[51.068539,6.19258],[51.069031,6.19366],[51.069099,6.19378],[51.06937,6.19434],[51.06966,6.19492],[51.06992,6.19545],[51.070259,6.19612],[51.070381,6.19637],[51.07077,6.19717],[51.071091,6.1978],[51.071671,6.19897],[51.07198,6.19957],[51.072159,6.19988],[51.072559,6.2005],[51.072979,6.20112],[51.0732,6.20143],[51.073639,6.20183],[51.074291,6.2024],[51.074459,6.2026],[51.074612,6.20283],[51.074799,6.20331],[51.074829,6.20339],[51.075249,6.20453],[51.075748,6.20608],[51.076149,6.20736],[51.07618,6.20743],[51.07626,6.20762],[51.0765,6.20819],[51.076981,6.20937],[51.077011,6.20947],[51.077419,6.21046],[51.07761,6.21118],[51.07785,6.2122],[51.078049,6.21308],[51.078308,6.21417],[51.07835,6.21436],[51.078491,6.21536],[51.078579,6.21603],[51.07864,6.21656],[51.078671,6.21666],[51.078739,6.21679],[51.0788,6.21691],[51.078861,6.21704],[51.078899,6.21719],[51.078911,6.21733],[51.078899,6.21743],[51.079041,6.21751],[51.079102,6.21758],[51.07914,6.21769],[51.07917,6.21784],[51.079189,6.218],[51.079182,6.21892],[51.079151,6.22035],[51.079151,6.22055],[51.079128,6.22193],[51.07909,6.22372],[51.079029,6.2245],[51.078892,6.22598],[51.07885,6.22631],[51.079079,6.22668],[51.0793,6.22702],[51.079441,6.22724],[51.079552,6.22742],[51.079979,6.22811],[51.080238,6.22852],[51.080448,6.22888],[51.080639,6.22926],[51.080959,6.23007],[51.081051,6.23038],[51.081211,6.23093],[51.081402,6.2317],[51.081429,6.2318],[51.0816,6.23253],[51.08176,6.23326],[51.08194,6.23413],[51.08202,6.23464],[51.08218,6.23625],[51.082279,6.23702],[51.08252,6.23853],[51.082642,6.23928],[51.082661,6.23943],[51.082722,6.23986],[51.082802,6.24045],[51.08289,6.24104],[51.08297,6.24164],[51.08305,6.24196],[51.083111,6.2423],[51.083141,6.24244],[51.083149,6.24259],[51.08313,6.24333],[51.08313,6.24339],[51.083221,6.24402],[51.083302,6.2444],[51.08329,6.24452],[51.083191,6.24463],[51.083069,6.2449],[51.083019,6.24516],[51.083012,6.24543],[51.083191,6.2466],[51.083229,6.24684],[51.08329,6.24721],[51.083481,6.2484],[51.083488,6.24869],[51.0835,6.2499],[51.083519,6.25013],[51.083561,6.25097],[51.08358,6.25199],[51.083618,6.25242],[51.08374,6.25323],[51.08374,6.2534],[51.083691,6.25364],[51.083672,6.25381],[51.083672,6.25398],[51.08374,6.25467],[51.08379,6.25489],[51.08387,6.25535],[51.084,6.25604],[51.084049,6.25654],[51.084091,6.25705],[51.084339,6.25711],[51.086559,6.25824],[51.0867,6.2583],[51.086819,6.25831],[51.087311,6.25831],[51.087429,6.25834],[51.087471,6.25836],[51.087509,6.25838],[51.087551,6.25845],[51.087589,6.2586],[51.08765,6.25875],[51.08773,6.25894],[51.088409,6.25971],[51.088558,6.25989],[51.088749,6.26013],[51.088909,6.26034],[51.089111,6.26052],[51.08947,6.26098],[51.089642,6.26119],[51.089771,6.2613],[51.090019,6.26155],[51.090149,6.26167],[51.091541,6.26244],[51.092152,6.26279],[51.092258,6.26285],[51.09314,6.26334],[51.094181,6.26413],[51.094589,6.26446],[51.09528,6.26506],[51.096001,6.26576],[51.096218,6.26591],[51.097099,6.26704],[51.09798,6.26862],[51.098911,6.2703],[51.09993,6.27223],[51.100101,6.27276],[51.100449,6.27436],[51.100769,6.27528],[51.100861,6.27555],[51.101051,6.27617],[51.10133,6.27664],[51.101501,6.27676],[51.10173,6.27684],[51.10173,6.27713],[51.101742,6.27764],[51.101761,6.27817],[51.101978,6.27973],[51.102032,6.28008],[51.102112,6.28042],[51.102242,6.28086],[51.10236,6.28121],[51.10252,6.28155],[51.102699,6.28193],[51.103279,6.2832],[51.103748,6.28424],[51.103859,6.28465],[51.104061,6.28514],[51.104179,6.2854],[51.10429,6.28561],[51.10466,6.28605],[51.10495,6.28635],[51.105091,6.28653],[51.105202,6.28668],[51.105289,6.28689],[51.105438,6.28731],[51.105511,6.28759],[51.10561,6.28795],[51.10569,6.28822],[51.105831,6.28845],[51.106152,6.28888],[51.106571,6.28943],[51.106689,6.28962],[51.10675,6.28978],[51.1068,6.28998],[51.10685,6.29018],[51.107059,6.29189],[51.107109,6.29228],[51.107319,6.29357],[51.107521,6.29462],[51.107552,6.29482],[51.10759,6.29506],[51.10767,6.29549],[51.107792,6.29611],[51.107841,6.29647],[51.107868,6.29683],[51.107941,6.29812],[51.10804,6.29953],[51.108139,6.30031],[51.108292,6.30108],[51.10878,6.30323],[51.109058,6.30429],[51.109402,6.30556],[51.109791,6.30684],[51.110199,6.30779],[51.110641,6.30884],[51.110661,6.30894],[51.110889,6.30974],[51.111069,6.31059],[51.11113,6.31091],[51.11272,6.3132],[51.113991,6.31515],[51.115269,6.31706],[51.117939,6.32116],[51.119629,6.32371],[51.119961,6.32422],[51.121971,6.32639],[51.123711,6.32743],[51.12569,6.32861],[51.12772,6.32974],[51.127781,6.32978],[51.127499,6.3314],[51.126999,6.33376],[51.126919,6.33427],[51.1269,6.33479],[51.126862,6.33568],[51.12685,6.33605],[51.126831,6.33636],[51.12685,6.33651],[51.12727,6.33658],[51.128651,6.33697],[51.12878,6.33699],[51.131119,6.33747],[51.133202,6.33796],[51.133919,6.33814],[51.133949,6.33816],[51.13414,6.33826],[51.13419,6.33829],[51.134521,6.33849],[51.13467,6.33863],[51.134861,6.3388],[51.135151,6.33912],[51.135399,6.33949],[51.135719,6.34001],[51.136051,6.34058],[51.13636,6.34114],[51.13665,6.34158],[51.13673,6.3417],[51.137791,6.34333],[51.138248,6.34395],[51.138451,6.34421],[51.13868,6.34447],[51.13892,6.34475],[51.13905,6.34489],[51.139488,6.34528],[51.13979,6.34549],[51.140121,6.34578],[51.140228,6.34594],[51.140308,6.34618],[51.140339,6.3464],[51.140419,6.34677],[51.14056,6.34708],[51.141869,6.34916],[51.142239,6.34967],[51.14259,6.35013],[51.142761,6.35053],[51.142849,6.35072],[51.14286,6.35081],[51.142879,6.35088],[51.142921,6.35093],[51.142941,6.35095],[51.14299,6.35097],[51.143028,6.35096],[51.143089,6.35092],[51.143169,6.35103],[51.144039,6.35229],[51.14481,6.35334],[51.14518,6.35386],[51.145302,6.354],[51.145432,6.35412],[51.145679,6.3543],[51.14603,6.35459],[51.146351,6.35484],[51.146778,6.35521],[51.146999,6.35543],[51.147202,6.35569],[51.147621,6.35628],[51.147961,6.35688],[51.148399,6.35768],[51.148769,6.35847],[51.149479,6.36003],[51.14959,6.36037],[51.149719,6.36068],[51.149761,6.36079],[51.14975,6.36091],[51.149799,6.36102],[51.149879,6.36104],[51.149929,6.36112],[51.150291,6.36189],[51.15041,6.36206],[51.150711,6.36269],[51.150982,6.36314],[51.151089,6.36328],[51.151169,6.3634],[51.15123,6.36347],[51.151291,6.36353],[51.152061,6.36431],[51.152969,6.36503],[51.153641,6.36547],[51.154461,6.36599],[51.155182,6.3665],[51.157379,6.36814],[51.15752,6.36825],[51.157669,6.36833],[51.157742,6.36834],[51.157841,6.36831],[51.15802,6.3684],[51.158169,6.36855],[51.158279,6.36873],[51.158409,6.36903],[51.15876,6.36985],[51.159538,6.37115],[51.16132,6.37367],[51.16227,6.37497],[51.16272,6.37558],[51.163879,6.37717],[51.164749,6.37838],[51.16489,6.37859],[51.165859,6.38019],[51.166111,6.38065],[51.16663,6.38193],[51.167042,6.38312],[51.1675,6.38444],[51.16785,6.38538],[51.168751,6.38722],[51.17004,6.38963],[51.170872,6.39119],[51.171871,6.39301],[51.17292,6.39481],[51.174252,6.39742],[51.174309,6.39754],[51.174519,6.39793],[51.174889,6.39863],[51.175579,6.39996],[51.175961,6.40067],[51.17625,6.40117],[51.176311,6.40124],[51.17651,6.40159],[51.1772,6.40273],[51.177528,6.40323],[51.177559,6.40328],[51.17786,6.40369],[51.17791,6.40376],[51.178108,6.40405],[51.179062,6.40544],[51.179649,6.4063],[51.179779,6.40644],[51.179871,6.40656],[51.180069,6.4068],[51.180271,6.40707],[51.180401,6.40727],[51.180641,6.40761],[51.180851,6.40786],[51.181389,6.40856],[51.1819,6.40929],[51.18222,6.40978],[51.182659,6.41038],[51.1828,6.4106],[51.183022,6.41093],[51.18325,6.41127],[51.18354,6.41174],[51.18364,6.41188],[51.18375,6.41206],[51.183971,6.41237],[51.184139,6.41259],[51.18428,6.41277],[51.18446,6.41302],[51.184731,6.41344],[51.185001,6.41391],[51.185219,6.41427],[51.18623,6.41572],[51.186378,6.41593],[51.186821,6.41658],[51.187489,6.41754],[51.187771,6.41795],[51.187981,6.41826],[51.188629,6.41923],[51.18895,6.4197],[51.18998,6.42115],[51.190639,6.42203],[51.19075,6.42218],[51.191189,6.4228],[51.191799,6.42382],[51.191891,6.42397],[51.192558,6.42496],[51.192669,6.42512],[51.19276,6.42517],[51.193069,6.42526],[51.19342,6.42533],[51.193501,6.42535],[51.194,6.42541],[51.194118,6.42543],[51.195129,6.42557],[51.195309,6.42562],[51.195469,6.42572],[51.195591,6.42585],[51.195728,6.4261],[51.195751,6.4262],[51.19577,6.42635],[51.195789,6.4265],[51.195789,6.42663],[51.195709,6.42708],[51.195549,6.42794],[51.1954,6.42865],[51.195381,6.42891],[51.1954,6.42915],[51.19553,6.42973],[51.195839,6.43097],[51.195881,6.43116],[51.19603,6.43168],[51.19632,6.43258],[51.19598,6.43288],[51.19585,6.43305],[51.195629,6.43333],[51.195278,6.43387],[51.19516,6.43414],[51.195068,6.43446],[51.195061,6.43479],[51.19508,6.43548],[51.19508,6.43584],[51.19508,6.43656],[51.195049,6.43682],[51.195122,6.43697],[51.195141,6.4371],[51.195179,6.43737],[51.195179,6.43769],[51.195179,6.43794],[51.195179,6.43799],[51.19519,6.43804],[51.1954,6.43851],[51.195431,6.43858],[51.195461,6.43865],[51.195721,6.43915],[51.196011,6.43969],[51.196098,6.43981],[51.19627,6.44008],[51.19651,6.44051],[51.196781,6.44113],[51.196999,6.44153],[51.197128,6.44199],[51.197479,6.44252],[51.197731,6.44292],[51.197899,6.44321],[51.19809,6.44353],[51.198551,6.44449],[51.199131,6.44599],[51.199478,6.4469],[51.19973,6.44792],[51.199791,6.44818],[51.20031,6.44885],[51.200451,6.44902],[51.20055,6.44918],[51.200668,6.44935],[51.200932,6.44991],[51.201271,6.45079],[51.201462,6.45124],[51.2015,6.45136],[51.20192,6.45229],[51.202251,6.45312],[51.2024,6.45344],[51.202438,6.45353],[51.20256,6.45373],[51.20269,6.45395],[51.203171,6.45453],[51.203251,6.45464],[51.203281,6.45471],[51.203289,6.45478],[51.20319,6.45519],[51.20319,6.45523],[51.203201,6.45528],[51.20322,6.45536],[51.203289,6.45544],[51.203381,6.45553],[51.203499,6.45564],[51.20425,6.4562],[51.20652,6.45943],[51.20697,6.46026],[51.207039,6.46036],[51.207069,6.46041],[51.207111,6.46048],[51.207378,6.46086],[51.207401,6.46089],[51.20853,6.46259],[51.20871,6.46286],[51.208801,6.463],[51.209332,6.4638],[51.209808,6.46451],[51.209991,6.46478],[51.210541,6.46561],[51.211319,6.46676],[51.21143,6.4669],[51.211929,6.46767],[51.212238,6.46818],[51.212978,6.46927],[51.213951,6.47067],[51.214802,6.47192],[51.21516,6.47251],[51.2155,6.47307],[51.216431,6.47433],[51.216579,6.47457],[51.216911,6.47507],[51.21701,6.47522],[51.217369,6.47577],[51.217468,6.47593],[51.218029,6.47667],[51.218269,6.47697],[51.218578,6.47729],[51.219261,6.47798],[51.220089,6.47889],[51.22031,6.47912],[51.22047,6.47928],[51.222301,6.48118],[51.222519,6.48141],[51.223042,6.48196],[51.223499,6.48247],[51.224209,6.48316],[51.224449,6.48341],[51.225632,6.48454],[51.226849,6.48584],[51.2281,6.48721],[51.229,6.48808],[51.229519,6.48862],[51.229778,6.48882],[51.22998,6.48883],[51.230228,6.48876],[51.23064,6.48856],[51.23069,6.48854],[51.231049,6.48835],[51.231171,6.4883],[51.231838,6.48793],[51.233509,6.48708],[51.234489,6.48656],[51.235161,6.4862],[51.23579,6.48584],[51.23698,6.48523],[51.23708,6.48517],[51.237808,6.48477],[51.238159,6.48457],[51.23859,6.48434],[51.2388,6.48423],[51.2425,6.48221],[51.244389,6.48128],[51.245338,6.48081],[51.245838,6.48053],[51.246059,6.48042],[51.246719,6.48006],[51.24699,6.47988],[51.247341,6.47956],[51.24926,6.47723],[51.249691,6.47679],[51.249939,6.4766],[51.250118,6.47656],[51.250229,6.47655],[51.250252,6.47655],[51.250469,6.47658],[51.250679,6.47664],[51.250969,6.47681],[51.251801,6.47723],[51.252258,6.47748],[51.25251,6.47763],[51.252701,6.47779],[51.252861,6.47797],[51.252998,6.47823],[51.25325,6.47883],[51.253399,6.47914],[51.25351,6.47939],[51.25386,6.48015],[51.253899,6.48024],[51.253941,6.48032],[51.25428,6.48106],[51.25481,6.48212],[51.254951,6.48243],[51.25507,6.48267],[51.255241,6.48306],[51.255989,6.48466],[51.256439,6.48563],[51.25647,6.48569],[51.25676,6.48628],[51.25679,6.48636],[51.25713,6.48705],[51.25732,6.48745],[51.25758,6.48797],[51.258011,6.48888],[51.25808,6.48901],[51.258438,6.48961],[51.258572,6.48978],[51.259338,6.49096],[51.25964,6.49143],[51.259991,6.49199],[51.260471,6.49286],[51.26067,6.49332],[51.261082,6.49427],[51.261478,6.49514],[51.261681,6.49551],[51.261902,6.49586],[51.262291,6.49633],[51.262798,6.49675],[51.2635,6.49717],[51.264778,6.49772],[51.264938,6.49779],[51.265869,6.49817],[51.266418,6.49841],[51.266891,6.49875],[51.26709,6.49895],[51.26712,6.49899],[51.268181,6.50003],[51.26849,6.50023],[51.269779,6.50086],[51.274021,6.50295],[51.274738,6.50327],[51.27483,6.50331],[51.275841,6.50375],[51.277451,6.50452],[51.27803,6.50487],[51.278519,6.5052],[51.278969,6.50558],[51.27935,6.50604],[51.279869,6.50679],[51.283329,6.5119],[51.285,6.51392],[51.286709,6.516],[51.287922,6.51748],[51.288349,6.51801],[51.288891,6.51867],[51.289558,6.51947],[51.29084,6.52102],[51.291641,6.52198],[51.29216,6.52261],[51.292271,6.52275],[51.292339,6.52282],[51.292461,6.52422],[51.292488,6.52448],[51.292599,6.52493],[51.29277,6.52539],[51.29287,6.52588],[51.29282,6.52638],[51.292801,6.52659],[51.29285,6.52661],[51.29388,6.52699],[51.29509,6.52759],[51.29631,6.52845],[51.297668,6.52965],[51.298721,6.5307],[51.298901,6.53091],[51.298981,6.531],[51.299049,6.53109],[51.299412,6.53155],[51.300381,6.53284],[51.301361,6.5344],[51.302528,6.53661],[51.302639,6.53683],[51.303249,6.53794],[51.30365,6.53871],[51.303871,6.53915],[51.304359,6.54011],[51.304871,6.54117],[51.30584,6.54316],[51.306431,6.5444],[51.307369,6.54626],[51.30759,6.54678],[51.308392,6.54853],[51.30986,6.5519],[51.310692,6.55379],[51.31073,6.55386],[51.310822,6.55406],[51.310848,6.55414],[51.310909,6.55426],[51.310959,6.55437],[51.3111,6.55466],[51.311359,6.55523],[51.311699,6.55599],[51.31197,6.55674],[51.312,6.55688],[51.312061,6.55711],[51.312092,6.55727],[51.312191,6.55741],[51.312321,6.55747],[51.312462,6.55747],[51.312569,6.55746],[51.312679,6.55744],[51.312939,6.55738],[51.313229,6.5574],[51.313839,6.55781],[51.314281,6.55811],[51.314579,6.5583],[51.31461,6.55832],[51.316311,6.55946],[51.31665,6.55969],[51.31728,6.5601],[51.31781,6.56046],[51.318272,6.56076],[51.319248,6.5614],[51.319321,6.56146],[51.320518,6.56225],[51.32061,6.5623],[51.320862,6.56247],[51.322361,6.56346],[51.322529,6.56358],[51.322639,6.56387],[51.322689,6.56413],[51.322651,6.56437],[51.322762,6.56508],[51.322979,6.56644],[51.32325,6.56832],[51.3232,6.56858],[51.323219,6.56885],[51.323261,6.56922],[51.323299,6.56939],[51.32375,6.57089],[51.32386,6.5712],[51.323879,6.57126],[51.32391,6.57135],[51.323959,6.57146],[51.32399,6.57157],[51.324009,6.57158],[51.324051,6.57169],[51.324139,6.57191],[51.3242,6.57195],[51.32428,6.57207],[51.324551,6.57279],[51.32468,6.57314],[51.325161,6.57444],[51.325588,6.57561],[51.325649,6.57578],[51.32576,6.57578],[51.326309,6.57571],[51.3269,6.57562],[51.32703,6.57558],[51.327549,6.57518],[51.327862,6.57513],[51.328152,6.57495],[51.328289,6.57483],[51.32835,6.5749],[51.329041,6.57559],[51.329491,6.57638],[51.330719,6.57872],[51.330791,6.57886],[51.330841,6.57894],[51.331509,6.58006],[51.331532,6.5801],[51.331619,6.58034],[51.332321,6.58237],[51.33242,6.58265],[51.332691,6.58352],[51.332821,6.58404],[51.332932,6.58445],[51.33326,6.58596],[51.33326,6.58612],[51.333309,6.58639],[51.33337,6.58669],[51.333408,6.58688],[51.333469,6.58716],[51.333672,6.58806],[51.33379,6.58855],[51.333889,6.58902],[51.333931,6.58945],[51.333969,6.59134],[51.333981,6.59142],[51.334061,6.59255],[51.33427,6.59363],[51.33437,6.59385],[51.33456,6.59471],[51.335369,6.59807],[51.335442,6.59848],[51.335651,6.59941],[51.335979,6.60133],[51.336048,6.60164],[51.336418,6.60277],[51.336849,6.60409],[51.33707,6.60474],[51.33773,6.6067],[51.33831,6.60844],[51.34,6.61354],[51.34124,6.61731],[51.341339,6.61762],[51.342411,6.62076],[51.342579,6.62123],[51.342739,6.62172],[51.342789,6.6219],[51.343529,6.6238],[51.343861,6.62465],[51.344318,6.62571],[51.344582,6.62629],[51.344742,6.62668],[51.344891,6.6271],[51.34502,6.62752],[51.345119,6.62792],[51.34523,6.62839],[51.34549,6.62973],[51.34565,6.63052],[51.345798,6.63128],[51.346031,6.63244],[51.346199,6.63335],[51.346298,6.63396],[51.346378,6.63455],[51.346409,6.63472],[51.346451,6.63506],[51.346569,6.63625],[51.346699,6.63749],[51.346809,6.63848],[51.346859,6.63908],[51.346889,6.6395],[51.346889,6.63987],[51.346901,6.64036],[51.34684,6.64178],[51.346809,6.64281],[51.346802,6.644],[51.346809,6.64524],[51.346882,6.64759],[51.346901,6.64806],[51.346931,6.64867],[51.34697,6.6501],[51.347031,6.65195],[51.347061,6.65282],[51.347099,6.65322],[51.347118,6.65341],[51.347149,6.65362],[51.347229,6.65406],[51.34729,6.65437],[51.34737,6.65464],[51.347542,6.65515],[51.34771,6.65559],[51.347919,6.656],[51.348129,6.65636],[51.352791,6.66421],[51.353298,6.66511],[51.353329,6.66518],[51.35371,6.66583],[51.35416,6.66685],[51.354431,6.66761],[51.355122,6.66993],[51.356899,6.67618],[51.357342,6.67783],[51.357681,6.67931],[51.357979,6.68107],[51.35807,6.68188],[51.358158,6.68273],[51.3582,6.68325],[51.358292,6.68469],[51.358318,6.68572],[51.358299,6.68706],[51.35828,6.68741],[51.358269,6.68776],[51.35825,6.68796],[51.358311,6.68801],[51.35862,6.68831],[51.3587,6.68839],[51.358871,6.68857],[51.359089,6.68879],[51.359489,6.68919],[51.35968,6.68937],[51.360081,6.68988],[51.360481,6.69042],[51.360519,6.69047],[51.36058,6.69056],[51.361149,6.69146],[51.361801,6.69241],[51.3624,6.69334],[51.362801,6.69396],[51.36311,6.69443],[51.36343,6.69488],[51.363579,6.69509],[51.363682,6.69532],[51.36377,6.69558],[51.363789,6.69573],[51.3638,6.6958],[51.3638,6.69608],[51.363609,6.69676],[51.36343,6.69734],[51.363232,6.69802],[51.363171,6.69824],[51.363041,6.69869],[51.362888,6.69923],[51.36277,6.69976],[51.362679,6.70057],[51.362671,6.70079],[51.362461,6.70341],[51.362228,6.70677],[51.362091,6.70906],[51.362122,6.70956],[51.36216,6.70997],[51.36224,6.71038],[51.3624,6.71081],[51.362831,6.71198],[51.362961,6.71231],[51.363522,6.7136],[51.364159,6.71528],[51.364769,6.71677],[51.365231,6.71789],[51.365639,6.71898],[51.36573,6.7192],[51.366119,6.72022],[51.36644,6.72094],[51.367249,6.72339],[51.36731,6.72358],[51.367329,6.72363],[51.367741,6.72494],[51.367821,6.72518],[51.368099,6.72609],[51.368271,6.7268],[51.36837,6.72753],[51.36842,6.72797],[51.36845,6.72819],[51.3685,6.72881],[51.368511,6.72891],[51.368519,6.72898],[51.368629,6.72987],[51.36869,6.73045],[51.368912,6.73175],[51.36895,6.73205],[51.36898,6.73234],[51.369091,6.73352],[51.369148,6.7341],[51.369251,6.73544],[51.369289,6.73598],[51.369339,6.73644],[51.369419,6.73741],[51.369431,6.7376],[51.369499,6.7381],[51.36974,6.7397],[51.369839,6.74045],[51.369881,6.74076],[51.369942,6.74113],[51.369961,6.74129],[51.369991,6.7415],[51.369999,6.74158],[51.370079,6.74238],[51.37014,6.74315],[51.370239,6.74456],[51.37038,6.74642],[51.37051,6.7477],[51.370781,6.74951],[51.370861,6.75001],[51.37088,6.7501],[51.371021,6.75095],[51.371189,6.7518],[51.371181,6.75204],[51.371132,6.75227],[51.37149,6.75265],[51.37151,6.75275],[51.371738,6.7532],[51.371929,6.75352],[51.372139,6.75378],[51.372879,6.75473],[51.373032,6.75491],[51.37347,6.75545],[51.374611,6.7568],[51.37468,6.75687],[51.37516,6.75756],[51.375622,6.75829],[51.3759,6.75889],[51.37603,6.7592],[51.376068,6.75932],[51.376289,6.75998],[51.376381,6.76029],[51.37656,6.76089],[51.376591,6.76098],[51.37682,6.76153],[51.376839,6.76158],[51.376942,6.76185],[51.377048,6.76205],[51.377171,6.76235],[51.378922,6.76567],[51.380989,6.76967],[51.38158,6.77086],[51.38168,6.77107],[51.381729,6.77116],[51.381741,6.77117],[51.38213,6.77192],[51.382481,6.77279],[51.38274,6.77341],[51.383011,6.7739],[51.383209,6.77431],[51.383289,6.77449],[51.383339,6.77458],[51.38369,6.77529],[51.383949,6.77578],[51.384121,6.7761],[51.384239,6.7763],[51.3848,6.77712],[51.38496,6.77739],[51.38673,6.78071],[51.387459,6.78212],[51.387779,6.78295],[51.38797,6.78343],[51.38802,6.78358],[51.388081,6.78376],[51.388222,6.78385],[51.38829,6.78389],[51.388481,6.78402],[51.388699,6.78418],[51.389111,6.78448],[51.389519,6.78484],[51.389912,6.78524],[51.39061,6.78585],[51.390949,6.78605],[51.391121,6.78625],[51.39114,6.78649],[51.39114,6.7866],[51.39114,6.78678],[51.39114,6.78705],[51.39114,6.7877],[51.391209,6.78818],[51.391411,6.78897],[51.391891,6.79021],[51.39233,6.79152],[51.392509,6.79203],[51.392601,6.79227],[51.392879,6.79306],[51.39299,6.79334],[51.393291,6.79418],[51.393799,6.79549],[51.393879,6.7957],[51.394279,6.79684],[51.394409,6.79716],[51.394451,6.79729],[51.39463,6.79782],[51.39497,6.79874],[51.395061,6.79896],[51.39513,6.79911],[51.39521,6.79924],[51.395229,6.79951],[51.39537,6.79982],[51.395451,6.79993],[51.395538,6.79999],[51.395519,6.80011],[51.39566,6.80051],[51.395771,6.80078],[51.39587,6.80104],[51.39592,6.80121],[51.39595,6.80133],[51.395969,6.80141],[51.395988,6.80154],[51.395988,6.80165],[51.396099,6.80169],[51.396172,6.80166],[51.396198,6.80165],[51.396599,6.80166],[51.396629,6.80169],[51.39666,6.80174],[51.396671,6.80181],[51.39666,6.80186],[51.396641,6.80197],[51.396641,6.80202],[51.396648,6.80207],[51.39666,6.80214],[51.39666,6.8022],[51.396648,6.80225],[51.39669,6.8023],[51.396751,6.80235],[51.396801,6.80237],[51.39687,6.80238],[51.396931,6.80237],[51.39698,6.80236],[51.397011,6.80236],[51.397049,6.80236],[51.39706,6.80239],[51.397079,6.80243],[51.397091,6.8025],[51.397129,6.80255],[51.39716,6.80255],[51.397209,6.80255],[51.397228,6.8026],[51.397282,6.80294],[51.397289,6.80301],[51.397308,6.8032],[51.397339,6.80347],[51.397339,6.80353],[51.39735,6.80359],[51.397362,6.80365],[51.397381,6.80373],[51.397388,6.8038],[51.3974,6.80387],[51.397411,6.80392],[51.397411,6.80393],[51.397419,6.80412],[51.397449,6.80426],[51.397461,6.80432],[51.397469,6.80445],[51.39748,6.80453],[51.397499,6.80461],[51.397499,6.80463],[51.397549,6.8048],[51.397572,6.80486],[51.397598,6.80498],[51.397751,6.80545],[51.397789,6.8056],[51.397579,6.8058],[51.397598,6.80596],[51.397781,6.80646],[51.397911,6.8068],[51.398312,6.8079],[51.398521,6.80849],[51.39859,6.80871],[51.39883,6.80943],[51.399071,6.81012],[51.39946,6.81128],[51.39957,6.81166],[51.399651,6.81195],[51.399712,6.81216],[51.399792,6.81237],[51.400009,6.81257],[51.400391,6.81287],[51.401588,6.81373],[51.40205,6.81408],[51.402679,6.81454],[51.402969,6.81485],[51.40369,6.81568],[51.404381,6.81629],[51.40453,6.81646],[51.405079,6.81725],[51.405472,6.81791],[51.405861,6.81856],[51.405949,6.81871],[51.406059,6.81889],[51.40609,6.81894],[51.406231,6.81917],[51.4063,6.81927],[51.406551,6.81972],[51.407139,6.82045],[51.407162,6.82046],[51.408199,6.82099],[51.409119,6.82143],[51.409248,6.82149],[51.409691,6.82171],[51.409901,6.82182],[51.41095,6.82234],[51.411369,6.82266],[51.411598,6.82285],[51.411709,6.82292],[51.411789,6.82299],[51.41214,6.82319],[51.412998,6.82347],[51.413681,6.82352],[51.41428,6.82357],[51.414532,6.82358],[51.414841,6.82355],[51.414909,6.82374],[51.415279,6.82485],[51.41552,6.82556],[51.41573,6.82617],[51.416088,6.82693],[51.41613,6.82702],[51.416279,6.82725],[51.416271,6.82762],[51.416489,6.82941],[51.416489,6.8297],[51.416451,6.8301],[51.416481,6.83019],[51.416519,6.83027],[51.41671,6.83055],[51.41687,6.83078],[51.417809,6.83224],[51.417931,6.83253],[51.418129,6.83299],[51.418289,6.83333],[51.41843,6.83359],[51.418468,6.83364],[51.418549,6.83381],[51.41877,6.83416],[51.41917,6.83464],[51.419331,6.83482],[51.41967,6.83523],[51.420139,6.83583],[51.420269,6.83601],[51.420712,6.83665],[51.420979,6.83707],[51.421261,6.83753],[51.42157,6.83816],[51.421841,6.83877],[51.42205,6.83923],[51.42223,6.83961],[51.422489,6.84],[51.422661,6.84015],[51.42271,6.84135],[51.42276,6.84159],[51.42284,6.84183],[51.422939,6.8421],[51.42313,6.84249],[51.423328,6.84279],[51.423691,6.84316],[51.423981,6.84345],[51.424091,6.84356],[51.42424,6.84371],[51.42448,6.84395],[51.424721,6.84418],[51.424831,6.84425],[51.424911,6.84428],[51.425079,6.84429],[51.42511,6.84429],[51.425171,6.84429],[51.42522,6.8443],[51.425251,6.8443],[51.425301,6.8443],[51.4254,6.84433],[51.425491,6.84442],[51.42593,6.84488],[51.426022,6.84492],[51.426109,6.84492],[51.426121,6.84498],[51.42614,6.84503],[51.42617,6.84506],[51.426201,6.84508],[51.426262,6.84507],[51.426479,6.84585],[51.426731,6.84663],[51.42696,6.84715],[51.427158,6.84762],[51.42725,6.84784],[51.427559,6.84839],[51.42778,6.84867],[51.427929,6.84881],[51.428169,6.84896],[51.428299,6.84907],[51.428871,6.84959],[51.429039,6.84989],[51.42905,6.85005],[51.42894,6.8505],[51.42886,6.85082],[51.428711,6.85197],[51.42873,6.85302],[51.428719,6.85352],[51.42881,6.85442],[51.42897,6.85522],[51.429062,6.85563],[51.429161,6.85608],[51.429321,6.85665],[51.429489,6.85729],[51.429668,6.85797],[51.429749,6.85836],[51.42979,6.85864],[51.42992,6.85885],[51.429939,6.85963],[51.42997,6.85991],[51.429989,6.86018],[51.430069,6.86105],[51.430271,6.86275],[51.430359,6.86341],[51.430611,6.86489],[51.430809,6.86593],[51.431,6.86654],[51.43119,6.86707],[51.4314,6.86759],[51.43166,6.86831],[51.431881,6.869],[51.43198,6.86953],[51.43203,6.87022],[51.432041,6.87026],[51.43206,6.87094],[51.432018,6.87169],[51.431839,6.87357],[51.43177,6.87445],[51.431629,6.87604],[51.43158,6.87664],[51.431438,6.87801],[51.43158,6.87803],[51.431721,6.87804],[51.43206,6.87801],[51.432362,6.87791],[51.432621,6.87776],[51.432941,6.87738],[51.433121,6.87731],[51.433289,6.87735],[51.43343,6.87751],[51.433479,6.8776],[51.433529,6.87774],[51.433762,6.8784],[51.43412,6.87926],[51.434319,6.8796],[51.43457,6.88008],[51.434608,6.88019],[51.43491,6.8811],[51.43499,6.88135],[51.435299,6.88225],[51.435459,6.88273],[51.435711,6.88348],[51.43578,6.88368],[51.436199,6.88487],[51.436291,6.88519],[51.436378,6.8855],[51.436508,6.88581],[51.4366,6.88591],[51.436749,6.88639],[51.437069,6.8873],[51.43726,6.8878],[51.437359,6.88805],[51.437469,6.88832],[51.437531,6.88846],[51.437889,6.88954],[51.438011,6.88997],[51.438339,6.89084],[51.439709,6.89329],[51.439991,6.89379],[51.440281,6.89428],[51.440891,6.89545],[51.441601,6.89677],[51.441841,6.89742],[51.442039,6.89804],[51.442131,6.89845],[51.442848,6.90082],[51.443409,6.9026],[51.443748,6.90371],[51.443821,6.90389],[51.44392,6.90411],[51.44408,6.90443],[51.44445,6.90515],[51.444599,6.90544],[51.444901,6.90602],[51.445271,6.90673],[51.446098,6.90828],[51.446301,6.9086],[51.44651,6.90885],[51.44685,6.90932],[51.447201,6.91003],[51.447601,6.91091],[51.447819,6.91144],[51.447861,6.91153],[51.44875,6.91332],[51.448792,6.91373],[51.449059,6.91439],[51.449139,6.91458],[51.449421,6.91531],[51.44994,6.91613],[51.45005,6.91629],[51.450321,6.91667],[51.451832,6.91834],[51.453758,6.92046],[51.45528,6.92244],[51.456982,6.92464],[51.458969,6.92717],[51.45908,6.9273],[51.460461,6.92893],[51.460522,6.92901],[51.46109,6.92979],[51.461288,6.93003],[51.46212,6.9311],[51.462551,6.93167],[51.462601,6.93187],[51.462631,6.93207],[51.462639,6.9323],[51.462639,6.93249],[51.462631,6.93277],[51.462589,6.9329],[51.46246,6.93359],[51.462421,6.93403],[51.46241,6.93448],[51.462399,6.93488],[51.462379,6.9367],[51.46236,6.93847],[51.462349,6.93944],[51.46241,6.93994],[51.462399,6.94009],[51.462391,6.941],[51.46241,6.94117],[51.462509,6.94194],[51.46286,6.9438],[51.463242,6.94612],[51.463501,6.94752],[51.463558,6.94781],[51.46357,6.9479],[51.463619,6.94857],[51.463619,6.94869],[51.463589,6.94914],[51.463589,6.94914],[51.463589,6.94914],[51.4636,6.94915],[51.4636,6.94916],[51.463612,6.94916],[51.463718,6.94931],[51.46423,6.94991],[51.464539,6.95027],[51.464821,6.95063],[51.465389,6.95136],[51.465611,6.95165],[51.46582,6.95191],[51.466099,6.95228],[51.466511,6.9528],[51.46664,6.95297],[51.46706,6.95349],[51.467529,6.95418],[51.467701,6.95452],[51.467838,6.95488],[51.467991,6.95533],[51.468369,6.9564],[51.468418,6.95651],[51.468651,6.95685],[51.469151,6.95769],[51.469509,6.95834],[51.469601,6.95856],[51.469662,6.9587],[51.469681,6.95878],[51.46978,6.95899],[51.47081,6.96144],[51.471169,6.96214],[51.47171,6.96308],[51.472061,6.96378],[51.472191,6.96402],[51.472698,6.96484],[51.4729,6.96517],[51.473122,6.96565],[51.473469,6.9667],[51.473591,6.96724],[51.47361,6.96729],[51.47374,6.96783],[51.47393,6.9686],[51.474091,6.969],[51.474312,6.9696],[51.474819,6.97122],[51.474941,6.97169],[51.474949,6.97175],[51.474991,6.97192],[51.475281,6.97287],[51.475399,6.97326],[51.47559,6.97398],[51.47591,6.9757],[51.47596,6.97595],[51.47644,6.97855],[51.476952,6.97839],[51.47707,6.97833],[51.477489,6.97805],[51.47794,6.97757],[51.478859,6.97669],[51.479031,6.97651],[51.479321,6.97739],[51.479382,6.97754],[51.479568,6.97804],[51.479721,6.97823],[51.479759,6.97826],[51.480099,6.97857],[51.48019,6.97859],[51.480282,6.97862],[51.48082,6.97877],[51.480888,6.97878],[51.48098,6.97881],[51.481178,6.97887],[51.481758,6.97906],[51.481819,6.97908],[51.481979,6.97915],[51.482311,6.97926],[51.48262,6.97937],[51.48275,6.97936],[51.483009,6.97938],[51.483189,6.97939],[51.483429,6.97935],[51.48415,6.97935],[51.48444,6.97939],[51.48465,6.9794],[51.484711,6.97941],[51.484989,6.97943],[51.48531,6.97959],[51.485519,6.97968],[51.486629,6.98007],[51.48671,6.98009],[51.486858,6.98013],[51.486969,6.98015],[51.48698,6.98015],[51.48735,6.98023],[51.487789,6.98032],[51.48877,6.98047],[51.488819,6.98048],[51.488819,6.98074],[51.488831,6.98096],[51.488831,6.98117],[51.48885,6.98131],[51.488911,6.98169],[51.48893,6.98186],[51.48901,6.98229],[51.48909,6.98264],[51.489208,6.98317],[51.489479,6.98433],[51.4897,6.9853],[51.489841,6.98585],[51.489941,6.98626],[51.48999,6.98646],[51.490009,6.98656],[51.4902,6.98744],[51.490219,6.98752],[51.49073,6.98969],[51.491039,6.99102],[51.491261,6.99189],[51.491329,6.99216],[51.49168,6.99365],[51.491951,6.99483],[51.492371,6.99652],[51.492451,6.99684],[51.492489,6.997],[51.49258,6.99737],[51.492611,6.99749],[51.492661,6.99773],[51.493099,6.99943],[51.493221,6.99993],[51.493279,7.00016],[51.493629,7.00157],[51.493832,7.00244],[51.4939,7.00271],[51.49398,7.00272],[51.494099,7.00274],[51.494202,7.00293],[51.494781,7.00407],[51.494862,7.00423],[51.495152,7.0049],[51.495369,7.00538],[51.49538,7.0054],[51.495659,7.00602],[51.4958,7.00635],[51.495911,7.00661],[51.495979,7.00676],[51.49609,7.00708],[51.496361,7.00793],[51.496368,7.00807],[51.496429,7.00811],[51.49659,7.00817],[51.497059,7.00811],[51.497742,7.00807],[51.49789,7.00807],[51.4981,7.00805],[51.499371,7.00798],[51.499489,7.00798],[51.49958,7.00798],[51.49963,7.00816],[51.500118,7.00967],[51.500309,7.00991],[51.50058,7.01024],[51.501438,7.01114],[51.501659,7.01136],[51.502151,7.01185],[51.50264,7.01235],[51.5028,7.0125],[51.503361,7.01311],[51.503948,7.01369],[51.50478,7.01455],[51.506111,7.01589],[51.50626,7.01603],[51.50634,7.01611],[51.5084,7.01823],[51.508781,7.01853],[51.508999,7.01977],[51.509171,7.02068],[51.509209,7.02093],[51.509491,7.02262],[51.509499,7.02268],[51.50985,7.02458],[51.509991,7.02534],[51.510181,7.0264],[51.510391,7.02744],[51.510521,7.02819],[51.51062,7.02874],[51.510658,7.02891],[51.510799,7.0296],[51.510849,7.02987],[51.51099,7.03055],[51.51123,7.03189],[51.511311,7.03224],[51.511391,7.03261],[51.511421,7.03279],[51.511532,7.03341],[51.511978,7.03574],[51.512058,7.03621],[51.512218,7.03706],[51.512249,7.03738],[51.51226,7.03829],[51.51228,7.03869],[51.512299,7.03877],[51.51239,7.039],[51.512619,7.03961],[51.51273,7.03984],[51.51321,7.04041],[51.513531,7.04088],[51.513569,7.04097],[51.513649,7.04114],[51.514,7.0422],[51.51403,7.04275],[51.513939,7.04333],[51.513908,7.04355],[51.51387,7.04371],[51.513859,7.04389],[51.51387,7.044],[51.513889,7.04407],[51.51392,7.0442],[51.513931,7.0443],[51.51395,7.04453],[51.513901,7.04514],[51.513828,7.04601],[51.513821,7.04638],[51.513908,7.04663],[51.514042,7.04675],[51.514301,7.04697],[51.51442,7.04719],[51.514469,7.04759],[51.5145,7.04822],[51.51458,7.04906],[51.514709,7.0513],[51.514931,7.05337],[51.515228,7.05491],[51.51569,7.05666],[51.51609,7.0581],[51.51664,7.05958],[51.51804,7.06284],[51.519421,7.06611],[51.51976,7.06685],[51.520069,7.0676],[51.520451,7.06844],[51.521461,7.07034],[51.522091,7.07128],[51.522469,7.07174],[51.522919,7.07226],[51.523548,7.07292],[51.523918,7.07324],[51.524281,7.07349],[51.52504,7.07395],[51.525612,7.07422],[51.52623,7.07447],[51.526821,7.07471],[51.527401,7.075],[51.527969,7.07535],[51.528481,7.07573],[51.52887,7.07607],[51.52924,7.07645],[51.52964,7.07691],[51.530029,7.07741],[51.530369,7.07792],[51.530689,7.07847],[51.531059,7.0792],[51.53138,7.07996],[51.5317,7.0808],[51.53183,7.08124],[51.532188,7.08277],[51.532478,7.08456],[51.532539,7.08514],[51.532681,7.0868],[51.532902,7.08914],[51.533161,7.09096],[51.533421,7.09249],[51.533749,7.09376],[51.534119,7.09503],[51.534389,7.09584],[51.534439,7.09597],[51.534561,7.09629],[51.53529,7.09819],[51.535419,7.09858],[51.535782,7.09977],[51.536011,7.10056],[51.536228,7.10172],[51.536419,7.10277],[51.536591,7.10419],[51.53746,7.11268],[51.537781,7.11582],[51.537899,7.117],[51.53796,7.11818],[51.537991,7.11909],[51.537979,7.12019],[51.53783,7.12271],[51.53772,7.12502],[51.537651,7.12646],[51.537651,7.12701],[51.537659,7.1278],[51.53767,7.12895],[51.53767,7.12923],[51.53767,7.12945],[51.537731,7.13114],[51.53788,7.13315],[51.53804,7.13501],[51.53846,7.13878],[51.538631,7.13992],[51.538929,7.14149],[51.539188,7.14251],[51.539471,7.14345],[51.53978,7.14443],[51.540569,7.14675],[51.541119,7.14849],[51.54126,7.14909],[51.541531,7.15026],[51.541851,7.15198],[51.542,7.15331],[51.542042,7.15416],[51.542049,7.15517],[51.541931,7.15783],[51.541889,7.15901],[51.541821,7.16064],[51.541889,7.16227],[51.541931,7.16295],[51.54216,7.16652],[51.542259,7.16806],[51.54229,7.16884],[51.542358,7.17118],[51.542419,7.17246],[51.542431,7.17271],[51.54258,7.17435],[51.542641,7.1749],[51.542992,7.17728],[51.543041,7.17753],[51.543129,7.17809],[51.543251,7.17887],[51.543381,7.17988],[51.543411,7.18011],[51.543491,7.18074],[51.54351,7.18098],[51.54364,7.18225],[51.54372,7.18371],[51.54377,7.18551],[51.543739,7.18735],[51.543751,7.18831],[51.543739,7.1901],[51.54377,7.19114],[51.54377,7.19203],[51.5438,7.19345],[51.5439,7.19547],[51.54401,7.197],[51.54409,7.1978],[51.544189,7.19856],[51.544361,7.19955],[51.544498,7.2003],[51.544949,7.20227],[51.545071,7.20274],[51.545212,7.20327],[51.545368,7.20385],[51.545738,7.20502],[51.547192,7.2091],[51.548038,7.2115],[51.54821,7.21198],[51.548439,7.2125],[51.549198,7.2147],[51.5495,7.21541],[51.550709,7.21848],[51.551399,7.22024],[51.553692,7.22572],[51.55563,7.2304],[51.555908,7.23108],[51.55603,7.23137],[51.556141,7.23164],[51.556469,7.23245],[51.556751,7.2331],[51.557121,7.2339],[51.557549,7.23481],[51.557961,7.23604],[51.55835,7.23732],[51.558632,7.23866],[51.55888,7.24011],[51.559021,7.24148],[51.559101,7.2429],[51.559132,7.24386],[51.55899,7.24571],[51.558868,7.24714],[51.558651,7.24856],[51.5583,7.25041],[51.55806,7.25159],[51.557812,7.25266],[51.557541,7.25399],[51.55732,7.25532],[51.557159,7.25671],[51.55706,7.25809],[51.55703,7.25862],[51.55703,7.26141],[51.557098,7.26254],[51.557159,7.26354],[51.55751,7.26621],[51.557701,7.26752],[51.557861,7.26839],[51.557961,7.26902],[51.558128,7.27018],[51.55827,7.27111],[51.558392,7.27207],[51.558479,7.27321],[51.558601,7.27551],[51.55862,7.27656],[51.55859,7.27804],[51.55854,7.27898],[51.558491,7.27982],[51.558418,7.28097],[51.558361,7.28194],[51.558289,7.28291],[51.558239,7.28386],[51.558189,7.28481],[51.558159,7.28624],[51.558189,7.28766],[51.55827,7.28906],[51.558411,7.29047],[51.558571,7.29185],[51.558601,7.29208],[51.55867,7.29261],[51.55883,7.29417],[51.558949,7.29507],[51.559071,7.29598],[51.559189,7.29688],[51.559299,7.29778],[51.559422,7.29868],[51.559528,7.29958],[51.559639,7.30045],[51.559731,7.30127],[51.55983,7.30207],[51.559929,7.30283],[51.56002,7.30362],[51.56012,7.30442],[51.560211,7.3052],[51.560299,7.30583],[51.560329,7.30634],[51.560749,7.31026],[51.560768,7.31056],[51.560768,7.31338],[51.56076,7.31397],[51.560749,7.31411],[51.560749,7.31425],[51.560711,7.31439],[51.56068,7.31449],[51.560638,7.31458],[51.560551,7.31464],[51.560249,7.31475],[51.559898,7.31467],[51.559841,7.31465],[51.559219,7.31447],[51.558239,7.31414],[51.558231,7.31435],[51.558109,7.315],[51.55809,7.31516],[51.557961,7.31589],[51.55788,7.31635],[51.55785,7.31649],[51.5578,7.31684],[51.557751,7.31727],[51.557758,7.31757],[51.557789,7.31798],[51.557831,7.31821],[51.557899,7.31848],[51.558208,7.3195],[51.558289,7.31975],[51.558392,7.32008],[51.558418,7.32016],[51.558521,7.32049],[51.5588,7.3214],[51.55925,7.32281],[51.559471,7.32358],[51.559681,7.32429],[51.559879,7.32518],[51.559971,7.32556],[51.560211,7.32667],[51.560379,7.32721],[51.56052,7.32762],[51.560711,7.32798],[51.56073,7.32803],[51.561001,7.32848],[51.561489,7.32913],[51.561581,7.32925],[51.562038,7.32986],[51.562408,7.33041],[51.562592,7.33064],[51.562832,7.33095],[51.563251,7.33153],[51.564541,7.33331],[51.565159,7.33432],[51.565361,7.33472],[51.56554,7.33507],[51.565708,7.33543],[51.56604,7.33616],[51.566689,7.33772],[51.567181,7.33889],[51.567329,7.33924],[51.567471,7.33956],[51.567539,7.33972],[51.567612,7.3399],[51.56789,7.34054],[51.568001,7.34081],[51.568089,7.34102],[51.56815,7.34115],[51.568298,7.34148],[51.568481,7.3419],[51.568588,7.34216],[51.568691,7.34236],[51.568901,7.34284],[51.569191,7.34353],[51.569302,7.34385],[51.56945,7.34432],[51.569561,7.34483],[51.569839,7.34588],[51.569962,7.34638],[51.570061,7.34676],[51.570171,7.3472],[51.570381,7.34805],[51.570709,7.34945],[51.571072,7.35099],[51.57114,7.35118],[51.571301,7.35172],[51.571442,7.3522],[51.571491,7.35239],[51.57156,7.35253],[51.571911,7.35333],[51.572289,7.35419],[51.572399,7.35481],[51.572491,7.35537],[51.572689,7.35662],[51.57272,7.35727],[51.572781,7.35859],[51.572811,7.35944],[51.57283,7.35989],[51.572842,7.36018],[51.57288,7.36031],[51.57296,7.36037],[51.573311,7.36055],[51.573551,7.36067],[51.574039,7.36093],[51.57444,7.36123],[51.57436,7.3615],[51.574291,7.36173],[51.5741,7.36213],[51.57394,7.36248],[51.573921,7.36253],[51.573799,7.36289],[51.573761,7.36301],[51.57373,7.36312],[51.573631,7.36359],[51.573559,7.36408],[51.573528,7.36447],[51.573521,7.36487],[51.573509,7.36556],[51.57354,7.36616],[51.57354,7.36625],[51.573589,7.36708],[51.57357,7.36789],[51.573479,7.36885],[51.573399,7.36936],[51.57328,7.37003],[51.573261,7.37015],[51.57309,7.37107],[51.573051,7.37131],[51.573029,7.37142],[51.572971,7.37188],[51.572948,7.37202],[51.572922,7.37233],[51.57291,7.37245],[51.572788,7.37335],[51.57275,7.37368],[51.572651,7.37453],[51.572529,7.3755],[51.572479,7.37598],[51.572418,7.37646],[51.572289,7.37762],[51.572609,7.37781],[51.57283,7.37798],[51.572899,7.37803],[51.57299,7.37809],[51.573261,7.37839],[51.57341,7.3786],[51.57362,7.37893],[51.573769,7.37924],[51.574039,7.37974],[51.574181,7.38005],[51.57481,7.3814],[51.574902,7.38161],[51.574951,7.38173],[51.57518,7.38229],[51.575241,7.38266],[51.575241,7.38326],[51.575199,7.38402],[51.575161,7.3845],[51.575161,7.38493],[51.575191,7.38522],[51.57523,7.38549],[51.57526,7.38601],[51.575272,7.38654],[51.575359,7.38654],[51.575611,7.38655],[51.57579,7.38658],[51.575851,7.3866],[51.575958,7.38664],[51.576099,7.38668],[51.57634,7.38678],[51.57653,7.38683],[51.576759,7.38688],[51.576889,7.3869],[51.57703,7.38691],[51.577412,7.38688],[51.577629,7.38687],[51.577839,7.38689],[51.577961,7.38692],[51.578251,7.38699],[51.57843,7.38712],[51.578621,7.38732],[51.578701,7.38746],[51.578781,7.38769],[51.57917,7.389],[51.57954,7.39022],[51.579632,7.39052],[51.579739,7.3909],[51.579861,7.39128],[51.579941,7.39152],[51.580181,7.39217],[51.580471,7.39307],[51.58075,7.39379],[51.580818,7.39398],[51.580879,7.39411],[51.58094,7.39427],[51.58102,7.39442],[51.581261,7.39486],[51.581429,7.39516],[51.581581,7.39545],[51.581841,7.39587],[51.581982,7.39598],[51.582001,7.39601],[51.5825,7.39661],[51.583229,7.39729],[51.583401,7.39743],[51.58382,7.39779],[51.584011,7.39804],[51.58419,7.39834],[51.58448,7.39883],[51.584751,7.39936],[51.585121,7.40052],[51.585381,7.40154],[51.585388,7.40157],[51.58564,7.40256],[51.585701,7.40277],[51.585812,7.40322],[51.586102,7.40435],[51.586151,7.40455],[51.586411,7.40561],[51.58659,7.40634],[51.5867,7.40675],[51.58675,7.40697],[51.586891,7.40753],[51.587101,7.40811],[51.587318,7.40841],[51.587879,7.4092],[51.58849,7.40971],[51.589008,7.41014],[51.58926,7.41038],[51.589451,7.41065],[51.59008,7.4118],[51.590519,7.41261],[51.590851,7.41324],[51.59116,7.41385],[51.59145,7.41436],[51.592159,7.41563],[51.59222,7.41574],[51.592258,7.4158],[51.592609,7.41639],[51.592682,7.41649],[51.59293,7.41692],[51.59314,7.41729],[51.593319,7.41767],[51.59346,7.41804],[51.593529,7.41826],[51.59359,7.41852],[51.593651,7.4188],[51.593849,7.41972],[51.59404,7.42063],[51.594219,7.42151],[51.59433,7.42201],[51.594341,7.42203],[51.594521,7.42275],[51.594582,7.42296],[51.59465,7.42323],[51.594688,7.42338],[51.59481,7.42385],[51.595032,7.42472],[51.595081,7.4249],[51.595181,7.42527],[51.595249,7.42553],[51.595291,7.42569],[51.595341,7.42589],[51.59539,7.42613],[51.595428,7.42637],[51.59544,7.42645],[51.59547,7.42669],[51.595482,7.42687],[51.595551,7.42801],[51.595638,7.42965],[51.595669,7.43008],[51.595711,7.43077],[51.59576,7.43137],[51.595791,7.43161],[51.595791,7.43241],[51.595749,7.43322],[51.595749,7.43356],[51.595741,7.43414],[51.5956,7.4371],[51.59549,7.43934],[51.595459,7.44017],[51.595539,7.44089],[51.59557,7.44125],[51.595821,7.44255],[51.5961,7.44363],[51.59618,7.44391],[51.596481,7.44495],[51.59655,7.44522],[51.596951,7.44653],[51.597,7.44674],[51.597389,7.44802],[51.597672,7.449],[51.597919,7.44971],[51.598091,7.45011],[51.598431,7.45073],[51.59848,7.45083],[51.59893,7.4517],[51.599571,7.45277],[51.600182,7.45386],[51.600361,7.45432],[51.600529,7.45466],[51.600689,7.45497],[51.601528,7.45678],[51.602169,7.45825],[51.602379,7.45875],[51.603062,7.46063],[51.603779,7.46312],[51.604179,7.46524],[51.604309,7.46611],[51.604401,7.46658],[51.604549,7.46775],[51.60474,7.4703],[51.604771,7.47158],[51.604759,7.47276],[51.60474,7.47384],[51.60463,7.47545],[51.604511,7.47641],[51.604351,7.4772],[51.604149,7.47816],[51.604031,7.47865],[51.603828,7.47962],[51.60371,7.48042],[51.603588,7.48151],[51.603489,7.48262],[51.603298,7.48394],[51.603161,7.48458],[51.602921,7.48547],[51.60228,7.48705],[51.602089,7.48748],[51.602001,7.48768],[51.601799,7.48808],[51.601669,7.48831],[51.601551,7.48855],[51.60144,7.48879],[51.601318,7.48902],[51.6012,7.48929],[51.60112,7.48946],[51.601028,7.48964],[51.600979,7.48975],[51.601372,7.49024],[51.601719,7.49062],[51.601841,7.49076],[51.601891,7.4908],[51.602501,7.49157],[51.602852,7.49202],[51.603222,7.4924],[51.603519,7.49293],[51.603729,7.49327],[51.60408,7.49373],[51.604431,7.49425],[51.604691,7.49459],[51.605221,7.49521],[51.605579,7.49567],[51.605999,7.49628],[51.606331,7.49678],[51.60667,7.4973],[51.607021,7.49792],[51.607319,7.49853],[51.607601,7.49917],[51.607849,7.49983],[51.60804,7.50044],[51.60833,7.5013],[51.60857,7.50205],[51.608822,7.50302],[51.609001,7.50372],[51.60918,7.50452],[51.609371,7.5053],[51.609531,7.5061],[51.609631,7.50695],[51.60973,7.50773],[51.609772,7.50852],[51.60976,7.50949],[51.609558,7.51356],[51.609631,7.51501],[51.60965,7.51526],[51.609772,7.51632],[51.60968,7.51732],[51.609509,7.5186],[51.609489,7.5187],[51.609249,7.52032],[51.609138,7.52118],[51.609039,7.52198],[51.609009,7.52241],[51.609009,7.52314],[51.609001,7.52339],[51.609001,7.52348],[51.608971,7.52396],[51.608971,7.52453],[51.608971,7.52463],[51.608971,7.52488],[51.608971,7.525],[51.608971,7.52556],[51.608971,7.52581],[51.608971,7.52603],[51.608978,7.52727],[51.60902,7.52782],[51.609051,7.52883],[51.609081,7.52961],[51.609131,7.53009],[51.609489,7.53263],[51.609531,7.53315],[51.60955,7.53368],[51.609539,7.53413],[51.60944,7.53481],[51.6091,7.53584],[51.608742,7.53685],[51.608551,7.53763],[51.608471,7.53853],[51.608459,7.53905],[51.608559,7.53993],[51.608761,7.54105],[51.609051,7.54206],[51.60981,7.5444],[51.609901,7.54465],[51.610008,7.54493],[51.610229,7.5455],[51.61047,7.54615],[51.61105,7.54784],[51.611191,7.54826],[51.61142,7.54909],[51.61158,7.54981],[51.611729,7.55128],[51.61203,7.55128],[51.612171,7.55133],[51.612251,7.55138],[51.612331,7.55147],[51.612431,7.55163],[51.613689,7.55508],[51.614971,7.55839],[51.615101,7.55868],[51.616261,7.56115],[51.616669,7.56193],[51.617439,7.56333],[51.618721,7.56535],[51.61919,7.56598],[51.620071,7.56714],[51.621399,7.56881],[51.625648,7.57374],[51.62611,7.57431],[51.626389,7.57465],[51.626732,7.57513],[51.627159,7.57579],[51.627861,7.57692],[51.62907,7.5794],[51.629589,7.58083],[51.63007,7.58231],[51.63068,7.5843],[51.631481,7.58669],[51.63343,7.59096],[51.63467,7.59307],[51.635262,7.59435],[51.63549,7.5949],[51.636028,7.59659],[51.636379,7.59854],[51.63665,7.60156],[51.636929,7.60398],[51.637329,7.60594],[51.639351,7.61251],[51.63979,7.61428],[51.640011,7.61575],[51.640099,7.61649],[51.640148,7.61721],[51.640221,7.6183],[51.640282,7.61962],[51.640339,7.62065],[51.640419,7.62163],[51.64048,7.62203],[51.640572,7.62253],[51.640942,7.62421],[51.64146,7.62637],[51.642139,7.62882],[51.643681,7.63475],[51.64397,7.63564],[51.644421,7.63656],[51.64468,7.63698],[51.645039,7.63749],[51.645611,7.63833],[51.646111,7.63904],[51.646389,7.63955],[51.646561,7.63996],[51.646709,7.64043],[51.64719,7.64288],[51.647209,7.64298],[51.647339,7.64358],[51.647369,7.6437],[51.64756,7.64453],[51.64782,7.64563],[51.6483,7.64728],[51.649158,7.65024],[51.65062,7.65506],[51.651039,7.65679],[51.651279,7.65793],[51.651501,7.65928],[51.651699,7.66066],[51.651798,7.66223],[51.651859,7.66308],[51.651878,7.66456],[51.651859,7.66648],[51.65181,7.67281],[51.651821,7.67358],[51.651878,7.67542],[51.651939,7.67614],[51.651951,7.67642],[51.652031,7.67736],[51.65229,7.67945],[51.652409,7.68031],[51.652599,7.68132],[51.65279,7.68219],[51.652809,7.68228],[51.653011,7.68312],[51.653221,7.68395],[51.653389,7.68457],[51.653419,7.68468],[51.65345,7.68482],[51.6535,7.68496],[51.65398,7.68647],[51.654221,7.68713],[51.65448,7.6878],[51.655022,7.68914],[51.655899,7.69121],[51.65659,7.69285],[51.657059,7.69418],[51.65715,7.69444],[51.657452,7.69531],[51.658081,7.69758],[51.658588,7.69987],[51.658932,7.70191],[51.658989,7.70189],[51.659618,7.70159],[51.659889,7.70146],[51.662441,7.70049],[51.662739,7.70039],[51.663311,7.70021],[51.66354,7.70017],[51.6637,7.70017],[51.663872,7.70023],[51.664101,7.70044],[51.66423,7.70067],[51.66433,7.70097],[51.664398,7.70131],[51.664509,7.70182],[51.664639,7.70255],[51.664711,7.70294],[51.664879,7.70389],[51.664951,7.70434],[51.665051,7.70464],[51.665112,7.70476],[51.66518,7.70487],[51.66526,7.70496],[51.665329,7.70503],[51.665409,7.70507],[51.665531,7.70513],[51.66568,7.70514],[51.665821,7.70514],[51.665951,7.70509],[51.666199,7.70497],[51.667679,7.70417],[51.66798,7.70401],[51.668289,7.70389],[51.66853,7.70386],[51.66877,7.70387],[51.66914,7.70397],[51.669472,7.70421],[51.669922,7.70469],[51.6702,7.70501],[51.67049,7.70522],[51.670639,7.7053],[51.67083,7.70532],[51.67115,7.70531],[51.671501,7.70524],[51.67231,7.70487],[51.672401,7.70483],[51.672581,7.70474],[51.67263,7.70472],[51.67268,7.70483],[51.67271,7.70487],[51.672791,7.70489],[51.672798,7.70559],[51.67281,7.70621],[51.67334,7.70832],[51.673851,7.71035],[51.674019,7.71102],[51.674191,7.71175],[51.674789,7.71467],[51.67487,7.71495],[51.675369,7.71642],[51.676529,7.71904],[51.678661,7.72428],[51.679489,7.72639],[51.680309,7.72864],[51.681129,7.73123],[51.6824,7.7348],[51.68285,7.73604],[51.68383,7.73892],[51.683929,7.73922],[51.684021,7.73952],[51.684219,7.74004],[51.684441,7.74062],[51.684631,7.7411],[51.684849,7.74156],[51.685211,7.74224],[51.685631,7.74292],[51.6861,7.74373],[51.686138,7.74381],[51.68639,7.74429],[51.68679,7.74537],[51.686958,7.74593],[51.68708,7.74639],[51.68716,7.74671],[51.68721,7.74697],[51.687359,7.74776],[51.687469,7.74856],[51.687679,7.75025],[51.68774,7.75075],[51.687759,7.75092],[51.68792,7.752],[51.687981,7.75238],[51.68808,7.75276],[51.68845,7.75384],[51.68914,7.75584],[51.689159,7.75589],[51.68969,7.75746],[51.690849,7.76075],[51.690899,7.761],[51.690922,7.76118],[51.690941,7.76137],[51.69096,7.76161],[51.690971,7.76185],[51.69096,7.76199],[51.690948,7.76214],[51.690929,7.76223],[51.690899,7.7625],[51.69088,7.76258],[51.6908,7.7631],[51.690769,7.76327],[51.690609,7.76422],[51.690189,7.76771],[51.690128,7.76812],[51.690079,7.76846],[51.69001,7.76902],[51.689968,7.76962],[51.68993,7.7707],[51.68985,7.77182],[51.689831,7.77237],[51.6898,7.77293],[51.68985,7.77392],[51.68985,7.77417],[51.68985,7.77434],[51.689838,7.77441],[51.689831,7.7746],[51.689812,7.7748],[51.689671,7.77565],[51.689449,7.7766],[51.689301,7.77721],[51.68922,7.77761],[51.68919,7.77781],[51.68914,7.77818],[51.689072,7.77876],[51.689011,7.7794],[51.68895,7.78039],[51.6889,7.78138],[51.688881,7.78163],[51.68885,7.78201],[51.688831,7.78229],[51.688789,7.7825],[51.688641,7.78314],[51.68858,7.78343],[51.688499,7.78383],[51.688438,7.78425],[51.68829,7.78561],[51.68821,7.78632],[51.688141,7.78695],[51.688068,7.78764],[51.687981,7.78837],[51.687931,7.78882],[51.687908,7.7891],[51.687889,7.78958],[51.687889,7.78978],[51.68792,7.78997],[51.68795,7.79022],[51.688091,7.79107],[51.688259,7.79203],[51.688511,7.79349],[51.688641,7.79421],[51.68869,7.79455],[51.688721,7.79491],[51.688789,7.79629],[51.68882,7.79705],[51.68885,7.79782],[51.688938,7.79988],[51.688961,7.80017],[51.688999,7.80057],[51.689079,7.80106],[51.68911,7.80123],[51.689129,7.8013],[51.68935,7.80251],[51.68943,7.80294],[51.689678,7.80432],[51.689812,7.80503],[51.689861,7.8053],[51.689949,7.80576],[51.690121,7.80666],[51.6903,7.80762],[51.690418,7.80846],[51.690441,7.80882],[51.69046,7.80897],[51.690491,7.80907],[51.690529,7.80915],[51.690559,7.80922],[51.69062,7.8093],[51.690701,7.80938],[51.690769,7.8095],[51.690811,7.80958],[51.69083,7.80962],[51.690941,7.8101],[51.69104,7.81057],[51.691071,7.81073],[51.691238,7.81158],[51.691269,7.81177],[51.691479,7.81303],[51.69162,7.81386],[51.691761,7.81449],[51.691811,7.81465],[51.691879,7.8149],[51.691959,7.81511],[51.692108,7.8155],[51.692299,7.81587],[51.692719,7.81668],[51.693062,7.81737],[51.693279,7.81781],[51.69368,7.81861],[51.69389,7.81905],[51.694031,7.81933],[51.69418,7.81968],[51.69429,7.82003],[51.694401,7.82046],[51.69471,7.82167],[51.694759,7.82181],[51.69474,7.82182],[51.694698,7.82193],[51.69471,7.82205],[51.694729,7.82214],[51.694771,7.82219],[51.694801,7.82221],[51.69487,7.82221],[51.694981,7.82272],[51.695061,7.82301],[51.695179,7.82329],[51.695309,7.82354],[51.695679,7.8242],[51.695862,7.82455],[51.695869,7.82457],[51.696129,7.82516],[51.69627,7.82555],[51.696449,7.82618],[51.69672,7.82701],[51.696789,7.82722],[51.696991,7.82785],[51.697151,7.82836],[51.697269,7.82877],[51.697529,7.82964],[51.697639,7.82999],[51.69775,7.83036],[51.69796,7.83106],[51.69809,7.83158],[51.698261,7.8325],[51.69833,7.83285],[51.698349,7.83296],[51.698421,7.8333],[51.69862,7.83436],[51.69873,7.83495],[51.698769,7.83519],[51.698898,7.83577],[51.699131,7.83691],[51.6992,7.83725],[51.699249,7.8375],[51.699261,7.83753],[51.699329,7.83776],[51.69944,7.83801],[51.699551,7.83825],[51.699902,7.83894],[51.70015,7.8395],[51.700199,7.83965],[51.700321,7.84007],[51.70039,7.84034],[51.70055,7.84096],[51.70084,7.84207],[51.700958,7.84249],[51.701092,7.84282],[51.70166,7.84385],[51.701778,7.84412],[51.70195,7.84455],[51.702061,7.8449],[51.702148,7.84518],[51.702221,7.84541],[51.702271,7.84563],[51.702358,7.84599],[51.7024,7.84631],[51.702492,7.84703],[51.702629,7.84819],[51.702702,7.84888],[51.70274,7.84916],[51.702888,7.85057],[51.70306,7.85209],[51.70311,7.8525],[51.70311,7.85254],[51.703308,7.85433],[51.70335,7.85477],[51.703381,7.8553],[51.7034,7.85558],[51.703468,7.85736],[51.70356,7.85924],[51.703579,7.85994],[51.70359,7.86005],[51.703602,7.86036],[51.703781,7.86441],[51.703861,7.8663],[51.703911,7.86674],[51.70393,7.86684],[51.704041,7.86721],[51.70446,7.8686],[51.7048,7.86966],[51.705372,7.87143],[51.70631,7.87469],[51.706409,7.87513],[51.706532,7.87576],[51.706581,7.87613],[51.706619,7.87651],[51.70665,7.87696],[51.706669,7.87741],[51.706669,7.8778],[51.706661,7.87853],[51.706631,7.87929],[51.706581,7.88041],[51.70657,7.88075],[51.706581,7.88089],[51.706581,7.88125],[51.7066,7.88158],[51.706638,7.88196],[51.70673,7.88257],[51.706791,7.88293],[51.70686,7.88328],[51.707008,7.88394],[51.707111,7.88441],[51.707169,7.8847],[51.707211,7.88498],[51.707298,7.88552],[51.70734,7.88592],[51.707371,7.88639],[51.707432,7.88784],[51.707451,7.88857],[51.707531,7.89058],[51.707581,7.89245],[51.707691,7.89562],[51.707241,7.9013],[51.70739,7.90364],[51.707619,7.90669],[51.707741,7.90826],[51.707851,7.90972],[51.707741,7.91227],[51.70768,7.91398],[51.70768,7.91448],[51.70805,7.91618],[51.708099,7.91647],[51.70837,7.9183],[51.708481,7.91936],[51.70858,7.92038],[51.708809,7.92157],[51.709122,7.92219],[51.710819,7.92483],[51.711449,7.92577],[51.712189,7.9269],[51.713409,7.92876],[51.713669,7.92915],[51.71677,7.93359],[51.717571,7.93514],[51.718262,7.93676],[51.71846,7.93731],[51.7192,7.93962],[51.719959,7.94194],[51.720661,7.94393],[51.722408,7.94892],[51.72327,7.9513],[51.7234,7.95167],[51.724449,7.95474],[51.724892,7.95585],[51.726631,7.961],[51.727589,7.96385],[51.728642,7.96683],[51.729961,7.97064],[51.731491,7.97508],[51.732422,7.97776],[51.732498,7.97799],[51.734558,7.98395],[51.735321,7.98627],[51.735901,7.98796],[51.737259,7.99196],[51.739349,7.99803],[51.741009,8.00274],[51.743172,8.00892],[51.74424,8.01183],[51.744991,8.01364],[51.745571,8.01493],[51.745781,8.01538],[51.746101,8.01603],[51.74651,8.01687],[51.747711,8.01927],[51.748001,8.0199],[51.74818,8.02028],[51.74926,8.02244],[51.749229,8.0225],[51.749222,8.02258],[51.749229,8.02264],[51.74926,8.0227],[51.749298,8.02273],[51.74934,8.02273],[51.749401,8.0227],[51.750401,8.02484],[51.750622,8.02529],[51.751381,8.02682],[51.752731,8.02951],[51.75367,8.03145],[51.753899,8.03181],[51.754139,8.03206],[51.75425,8.03217],[51.754688,8.03261],[51.754829,8.03274],[51.754879,8.03281],[51.75507,8.03324],[51.755161,8.03381],[51.75518,8.03418],[51.755199,8.03457],[51.755299,8.0348],[51.75515,8.03496],[51.755081,8.03517],[51.755039,8.03546],[51.755032,8.03583],[51.755039,8.03631],[51.754601,8.03645],[51.754261,8.03661],[51.754318,8.03707],[51.75441,8.03786],[51.75444,8.03866],[51.754379,8.03908],[51.754108,8.03995],[51.754028,8.04055],[51.75399,8.04107],[51.753979,8.04158],[51.753971,8.04175],[51.75399,8.04196],[51.75404,8.04218],[51.754139,8.04241],[51.754181,8.04248],[51.754459,8.04312],[51.754681,8.04353],[51.75473,8.04371],[51.754761,8.04405],[51.75473,8.0443],[51.754669,8.04457],[51.754539,8.04494],[51.754471,8.04513],[51.75415,8.04605],[51.754108,8.04615],[51.754238,8.04628],[51.75449,8.04661],[51.75486,8.04737],[51.754822,8.04758],[51.75486,8.04811],[51.755081,8.04991],[51.755169,8.05066],[51.755299,8.05185],[51.755428,8.05301],[51.75555,8.05367],[51.755711,8.05442],[51.7565,8.05782],[51.75663,8.05841],[51.757389,8.06162],[51.757771,8.06331],[51.758148,8.06493],[51.75835,8.0658],[51.759102,8.06901],[51.76001,8.07297],[51.760471,8.07495],[51.76083,8.07623],[51.761162,8.0773],[51.761539,8.07823],[51.762711,8.08085],[51.763821,8.08336],[51.765671,8.08762],[51.765739,8.08778],[51.766209,8.08911],[51.767429,8.0929],[51.76862,8.09657],[51.7701,8.10114],[51.772141,8.10747],[51.773289,8.1128],[51.77401,8.11598],[51.774181,8.11645],[51.77433,8.11686],[51.774769,8.11774],[51.776218,8.12065],[51.77668,8.12155],[51.77906,8.12654],[51.779301,8.12703],[51.77956,8.12773],[51.780739,8.13198],[51.783939,8.14332],[51.784988,8.14617],[51.785042,8.14628],[51.786911,8.15067],[51.787479,8.15192],[51.788151,8.15349],[51.790359,8.15858],[51.79105,8.16019],[51.792648,8.16396],[51.794071,8.1673],[51.795219,8.17016],[51.795429,8.17106],[51.795559,8.17178],[51.795891,8.17349],[51.796612,8.17763],[51.796761,8.17809],[51.796951,8.1785],[51.79776,8.18023],[51.79847,8.18182],[51.799229,8.1835],[51.799671,8.18443],[51.799801,8.18469],[51.7999,8.18491],[51.799839,8.18505],[51.799831,8.18518],[51.799858,8.18533],[51.799931,8.18542],[51.800018,8.18545],[51.800121,8.18539],[51.800251,8.18568],[51.800739,8.18677],[51.801231,8.18787],[51.80349,8.19293],[51.80426,8.19468],[51.804329,8.19503],[51.804508,8.19587],[51.804581,8.19677],[51.804588,8.198],[51.804459,8.20041],[51.804352,8.20099],[51.804241,8.20158],[51.8041,8.20194],[51.804001,8.20206],[51.803928,8.20216],[51.8036,8.20232],[51.803509,8.2024],[51.803741,8.20424],[51.80405,8.20667],[51.804192,8.20757],[51.804409,8.20934],[51.803928,8.20997],[51.80344,8.2107],[51.803379,8.2109],[51.803398,8.21115],[51.803551,8.2117],[51.803982,8.21317],[51.804008,8.21347],[51.80397,8.2151],[51.803822,8.21745],[51.80405,8.21855],[51.804169,8.21897],[51.804291,8.21911],[51.805229,8.2191],[51.80537,8.21912],[51.805489,8.2192],[51.805592,8.21941],[51.80566,8.2196],[51.805721,8.21984],[51.805859,8.22052],[51.806061,8.22265],[51.806332,8.22392],[51.80685,8.22634],[51.807251,8.22803],[51.809799,8.23391],[51.81036,8.23552],[51.811508,8.23871],[51.813759,8.24518],[51.813881,8.24552],[51.81395,8.2457],[51.814301,8.24672],[51.816132,8.25223],[51.816502,8.25334],[51.817162,8.25455],[51.81831,8.25598],[51.81908,8.25739],[51.820148,8.25996],[51.82177,8.26306],[51.82198,8.26345],[51.82225,8.26398],[51.823101,8.26811],[51.82431,8.27232],[51.82457,8.27323],[51.824741,8.2739],[51.824772,8.27432],[51.82476,8.27526],[51.82476,8.27548],[51.82476,8.27748],[51.824791,8.27772],[51.82497,8.27853],[51.82513,8.27899],[51.82518,8.27913],[51.82523,8.27926],[51.82534,8.27949],[51.82539,8.27959],[51.82584,8.2806],[51.82608,8.28121],[51.826488,8.28211],[51.826569,8.28236],[51.82679,8.28404],[51.826859,8.28459],[51.82692,8.28486],[51.826969,8.28506],[51.827351,8.28618],[51.828251,8.28893],[51.8288,8.29083],[51.829128,8.29206],[51.829319,8.29297],[51.829411,8.29326],[51.829571,8.29359],[51.830132,8.29431],[51.83028,8.29455],[51.830551,8.29509],[51.83115,8.29637],[51.831402,8.29693],[51.831749,8.29788],[51.832409,8.2997],[51.832561,8.30016],[51.83268,8.30055],[51.83276,8.30102],[51.83276,8.30142],[51.832668,8.30182],[51.833179,8.30221],[51.832668,8.30443],[51.832909,8.30461],[51.833061,8.3048],[51.833141,8.30491],[51.833191,8.30499],[51.833382,8.3053],[51.83334,8.30549],[51.833328,8.30573],[51.833328,8.30592],[51.83334,8.30621],[51.83334,8.30632],[51.83334,8.3066],[51.83334,8.30679],[51.833328,8.30699],[51.833328,8.30711],[51.83334,8.30748],[51.83334,8.30757],[51.83334,8.30788],[51.83337,8.30847],[51.833561,8.30881],[51.833679,8.30892],[51.8335,8.30978],[51.83379,8.31],[51.83411,8.31025],[51.83411,8.31031],[51.833961,8.31093],[51.833939,8.31094],[51.83392,8.31095],[51.833641,8.31201],[51.833832,8.31215],[51.834,8.31233],[51.834049,8.31238],[51.83448,8.31285],[51.83474,8.31314],[51.83503,8.31346],[51.835419,8.31378],[51.835991,8.31388],[51.836102,8.31388],[51.836159,8.31388],[51.836609,8.31391],[51.837311,8.31396],[51.83773,8.31411],[51.837841,8.31419],[51.83799,8.31427],[51.838051,8.31431],[51.83839,8.3145],[51.838341,8.3151],[51.83828,8.31553],[51.83839,8.31591],[51.838699,8.31636],[51.839069,8.31684],[51.83955,8.31749],[51.839699,8.31774],[51.839882,8.3195],[51.83992,8.31994],[51.84,8.32083],[51.840099,8.32201],[51.840191,8.32272],[51.84026,8.3231],[51.840881,8.32635],[51.84185,8.33146],[51.84203,8.33257],[51.84222,8.33453],[51.84227,8.3349],[51.842331,8.33525],[51.84264,8.33649],[51.84277,8.33713],[51.842831,8.33755],[51.842991,8.33864],[51.843151,8.33987],[51.84317,8.34],[51.843498,8.34237],[51.843632,8.34342],[51.843719,8.34383],[51.843948,8.34443],[51.84557,8.34819],[51.846859,8.35118],[51.848259,8.35445],[51.849411,8.35714],[51.849529,8.3575],[51.849621,8.35782],[51.849682,8.35815],[51.84972,8.35848],[51.849739,8.3592],[51.849751,8.36205],[51.84977,8.36406],[51.849789,8.36605],[51.849838,8.36669],[51.849861,8.3668],[51.84988,8.36693],[51.849941,8.36733],[51.850311,8.36915],[51.850498,8.37011],[51.850559,8.37042],[51.85059,8.37069],[51.85062,8.37086],[51.850632,8.37102],[51.850651,8.37128],[51.850651,8.37176],[51.850651,8.37297],[51.850651,8.37348],[51.8507,8.37683],[51.850731,8.37832],[51.85075,8.37865],[51.8508,8.37898],[51.851311,8.38189],[51.85133,8.38198],[51.851799,8.38468],[51.852299,8.38751],[51.852402,8.38806],[51.85247,8.38834],[51.852551,8.38861],[51.853748,8.39192],[51.855751,8.39742],[51.855839,8.39774],[51.85603,8.39875],[51.856819,8.40317],[51.856861,8.40348],[51.856869,8.40392],[51.856861,8.40703],[51.856869,8.40761],[51.856899,8.40799],[51.85709,8.41013],[51.85714,8.41071],[51.857231,8.41171],[51.85746,8.41427],[51.857639,8.41627],[51.857712,8.41663],[51.857819,8.417],[51.858158,8.41794],[51.858471,8.41879],[51.858509,8.41892],[51.858971,8.42017],[51.859341,8.4212],[51.85997,8.42289],[51.860271,8.42371],[51.860409,8.42413],[51.8605,8.42457],[51.860538,8.42487],[51.860561,8.42523],[51.860561,8.42574],[51.860531,8.42625],[51.8605,8.4267],[51.860451,8.42713],[51.860371,8.42761],[51.860241,8.42852],[51.860168,8.429],[51.859791,8.43154],[51.859779,8.4317],[51.859741,8.43209],[51.8596,8.43393],[51.859581,8.43412],[51.859459,8.4358],[51.859451,8.43693],[51.85944,8.43792],[51.85944,8.43816],[51.85944,8.43958],[51.85944,8.44045],[51.85944,8.44177],[51.85944,8.44231],[51.85944,8.44252],[51.85944,8.44311],[51.859482,8.44433],[51.85955,8.44432],[51.859821,8.4443],[51.85994,8.44436],[51.86034,8.44519],[51.86047,8.44551],[51.860668,8.44593],[51.86076,8.44635],[51.861012,8.44764],[51.861012,8.44777],[51.86121,8.44782],[51.862949,8.44824],[51.863411,8.44845],[51.863918,8.44879],[51.864609,8.44921],[51.86504,8.44951],[51.866051,8.45018],[51.865978,8.45142],[51.86591,8.45274],[51.866001,8.45841],[51.866009,8.45956],[51.866058,8.45979],[51.867168,8.46461],[51.86731,8.46522],[51.867359,8.4654],[51.868679,8.46802],[51.869999,8.47076],[51.870548,8.47191],[51.87167,8.47417],[51.87228,8.47548],[51.87244,8.47578],[51.873089,8.47709],[51.873329,8.47739],[51.873562,8.47764],[51.873711,8.47786],[51.87455,8.47959],[51.874908,8.48048],[51.875641,8.48192],[51.87571,8.482],[51.875851,8.48313],[51.876122,8.48643],[51.876492,8.48763],[51.876911,8.48887],[51.877121,8.48975],[51.877609,8.49113],[51.877659,8.49131],[51.877781,8.49128],[51.877991,8.49124],[51.878201,8.49121],[51.87849,8.49112],[51.878841,8.49103],[51.879719,8.49079],[51.879749,8.49103],[51.879829,8.49169],[51.879848,8.49195],[51.879871,8.49222],[51.879921,8.49292],[51.879959,8.49369],[51.87999,8.49424],[51.88007,8.4956],[51.880131,8.49685],[51.88026,8.49904],[51.880348,8.50074],[51.880409,8.5014],[51.880482,8.50186],[51.880569,8.50223],[51.880692,8.50259],[51.880779,8.50287],[51.881119,8.5038],[51.88121,8.50399],[51.881371,8.50437],[51.881458,8.50457],[51.88176,8.50529],[51.881821,8.50558],[51.881882,8.50585],[51.88192,8.50619],[51.881939,8.50635],[51.881969,8.5067],[51.88203,8.50787],[51.88203,8.50834],[51.882,8.50935],[51.881989,8.50959],[51.881908,8.51073],[51.881901,8.51082],[51.881859,8.51137],[51.88184,8.51171],[51.881721,8.51315],[51.88171,8.5133],[51.88171,8.51375],[51.881599,8.51544],[51.881531,8.51633],[51.8815,8.51685],[51.88142,8.5181],[51.881359,8.51905],[51.88131,8.51966],[51.881302,8.51989],[51.88131,8.52001],[51.881329,8.52015],[51.881371,8.52029],[51.88142,8.52039],[51.881512,8.52055],[51.881592,8.52072],[51.88163,8.52086],[51.881699,8.52141],[51.881741,8.52149],[51.881779,8.52154],[51.881821,8.52156],[51.88187,8.52157],[51.882339,8.52146],[51.882511,8.52285],[51.882648,8.52648],[51.882721,8.52745],[51.88274,8.52883],[51.881618,8.53082],[51.881481,8.53129],[51.881279,8.53266],[51.88081,8.53698],[51.880779,8.53721],[51.880329,8.53873],[51.880112,8.53945],[51.880001,8.54033],[51.879929,8.54127],[51.879971,8.54205],[51.880192,8.54297],[51.88036,8.54383],[51.880508,8.54481],[51.880562,8.54534],[51.880589,8.54582],[51.88055,8.54628],[51.880169,8.54687],[51.87986,8.54756],[51.879871,8.54848],[51.879879,8.54954],[51.879829,8.55035],[51.879639,8.55094],[51.879391,8.55131],[51.88036,8.555],[51.8806,8.55596],[51.88097,8.55742],[51.881008,8.55761],[51.881149,8.55827],[51.881329,8.55923],[51.882408,8.56574],[51.88271,8.56758],[51.883461,8.57211],[51.883621,8.57359],[51.883709,8.57462],[51.883789,8.57528],[51.883862,8.57608],[51.88409,8.5784],[51.884258,8.58002],[51.884289,8.58031],[51.884541,8.5826],[51.88456,8.58287],[51.88464,8.58391],[51.884579,8.5841],[51.884949,8.58447],[51.885689,8.5853],[51.886082,8.58571],[51.887402,8.58716],[51.887569,8.58733],[51.887779,8.58747],[51.88884,8.58809],[51.88929,8.58844],[51.889729,8.58896],[51.890282,8.58983],[51.89085,8.5907],[51.891869,8.59224],[51.892071,8.59249],[51.893921,8.59491],[51.89465,8.59586],[51.8955,8.59698],[51.896709,8.59852],[51.896648,8.59864],[51.896358,8.59929],[51.896259,8.60069],[51.89637,8.60179],[51.896839,8.60287],[51.8974,8.60351],[51.897621,8.60362],[51.89798,8.6038],[51.898369,8.60394],[51.89843,8.60397],[51.898602,8.6041],[51.898819,8.60426],[51.899639,8.60536],[51.900452,8.60692],[51.900539,8.60717],[51.900669,8.60752],[51.900799,8.60861],[51.900841,8.60895],[51.90099,8.61028],[51.901161,8.61179],[51.901089,8.61184],[51.90107,8.61193],[51.901112,8.612],[51.90118,8.61203],[51.90126,8.61327],[51.901291,8.61361],[51.90134,8.61456],[51.901371,8.61534],[51.90144,8.61634],[51.90144,8.61639],[51.90147,8.6169],[51.901489,8.61769],[51.90155,8.61856],[51.90155,8.61859],[51.901581,8.61907],[51.901588,8.61976],[51.901588,8.61995],[51.9016,8.62127],[51.9016,8.62339],[51.9016,8.62427],[51.9016,8.62522],[51.9016,8.62585],[51.90163,8.62759],[51.901669,8.62893],[51.901661,8.6292],[51.901669,8.63015],[51.901649,8.63177],[51.90163,8.63319],[51.90173,8.63404],[51.901989,8.63478],[51.902351,8.6355],[51.90263,8.63584],[51.902611,8.63599],[51.902649,8.63614],[51.90276,8.63621],[51.90287,8.63615],[51.903069,8.63647],[51.903461,8.63737],[51.903629,8.63775],[51.90398,8.63856],[51.904091,8.63881],[51.90456,8.63992],[51.90498,8.64105],[51.90506,8.64137],[51.90509,8.6415],[51.905361,8.64263],[51.90583,8.64382],[51.906212,8.64473],[51.906231,8.64485],[51.90686,8.64718],[51.907379,8.6489],[51.907532,8.6495],[51.908401,8.65267],[51.908581,8.65338],[51.90847,8.65354],[51.90836,8.6538],[51.908249,8.65413],[51.908211,8.65445],[51.908272,8.65483],[51.908569,8.65627],[51.908611,8.65641],[51.90876,8.65697],[51.90889,8.65758],[51.909309,8.65917],[51.90958,8.66021],[51.90976,8.66101],[51.909859,8.66216],[51.90995,8.66277],[51.909489,8.66327],[51.909409,8.66324],[51.90934,8.66325],[51.909302,8.66331],[51.90929,8.6634],[51.909309,8.66353],[51.909409,8.6636],[51.909382,8.66381],[51.909222,8.6644],[51.909222,8.66486],[51.909279,8.66517],[51.909401,8.66582],[51.909409,8.66634],[51.90934,8.66685],[51.90929,8.6671],[51.90918,8.66766],[51.909142,8.66819],[51.909241,8.66882],[51.909439,8.66956],[51.909538,8.67041],[51.909439,8.67144],[51.909168,8.67344],[51.908718,8.67697],[51.908531,8.67826],[51.908119,8.6807],[51.90757,8.68309],[51.90736,8.68385],[51.90733,8.68393],[51.907219,8.68394],[51.907131,8.68404],[51.90712,8.68422],[51.907211,8.68434],[51.906952,8.68508],[51.906601,8.68612],[51.905651,8.68842],[51.905472,8.6888],[51.903961,8.69202],[51.90345,8.69318],[51.902988,8.69446],[51.90266,8.69632],[51.902649,8.69791],[51.902641,8.69821],[51.90284,8.69928],[51.902851,8.69938],[51.903049,8.70025],[51.903519,8.70222],[51.903561,8.70237],[51.903709,8.70317],[51.903721,8.7042],[51.903702,8.7057],[51.90366,8.70828],[51.903702,8.70917],[51.903721,8.70953],[51.903881,8.71063],[51.903961,8.71123],[51.90419,8.71236],[51.90509,8.71675],[51.905201,8.71714],[51.905289,8.71746],[51.905418,8.71773],[51.905842,8.71863],[51.907879,8.72182],[51.909081,8.72335],[51.908852,8.72395],[51.90871,8.7244],[51.9086,8.72476],[51.90844,8.72531],[51.908321,8.72589],[51.90815,8.72702],[51.907879,8.72891],[51.907768,8.72997],[51.9076,8.73213],[51.90749,8.73264],[51.90736,8.73289],[51.907532,8.73386],[51.907761,8.73516],[51.90781,8.73537],[51.908051,8.7366],[51.908089,8.73678],[51.90823,8.73743],[51.90834,8.73793],[51.908329,8.73795],[51.90831,8.738],[51.908298,8.73805],[51.908199,8.73819],[51.90818,8.73851],[51.90799,8.74139],[51.907902,8.74272],[51.907871,8.7432],[51.907909,8.74606],[51.907921,8.7468],[51.907928,8.74846],[51.90781,8.75007],[51.907471,8.75474],[51.907459,8.7549],[51.907391,8.75568],[51.90723,8.75755],[51.90715,8.75837],[51.907009,8.75991],[51.90683,8.76227],[51.906792,8.76271],[51.906712,8.76351],[51.906639,8.76445],[51.90659,8.76546],[51.906509,8.76641],[51.906429,8.76735],[51.90633,8.7681],[51.906361,8.76906],[51.906471,8.77042],[51.906609,8.7726],[51.90733,8.77444],[51.908199,8.77553],[51.909679,8.77736],[51.911308,8.77938],[51.91177,8.77983],[51.912209,8.78006],[51.912601,8.78017],[51.912998,8.78019],[51.91341,8.78021],[51.91349,8.78059],[51.91349,8.78068],[51.91325,8.78083],[51.91346,8.7819],[51.91354,8.7826],[51.914181,8.787],[51.914211,8.78718],[51.91441,8.78895],[51.914669,8.79114],[51.91478,8.79213],[51.91489,8.79325],[51.914902,8.79333],[51.914909,8.79337],[51.915039,8.79359],[51.915459,8.79442],[51.916,8.79549],[51.916161,8.79577],[51.91626,8.79591],[51.916821,8.79639],[51.917,8.79654],[51.919182,8.7984],[51.919361,8.79854],[51.919479,8.79872],[51.919521,8.79882],[51.919609,8.79896],[51.919731,8.79926],[51.919891,8.79975],[51.920212,8.8008],[51.92033,8.80118],[51.92046,8.8016],[51.920509,8.80182],[51.920559,8.80198],[51.920601,8.80214],[51.92065,8.8024],[51.92067,8.80259],[51.92065,8.80292],[51.92054,8.80425],[51.920441,8.80552],[51.920399,8.80603],[51.920391,8.80629],[51.920399,8.80659],[51.920502,8.80806],[51.92057,8.80939],[51.920609,8.80966],[51.920738,8.81179],[51.920761,8.81213],[51.920761,8.8122],[51.92078,8.81239],[51.92078,8.81246],[51.92083,8.81316],[51.92099,8.81524],[51.921021,8.81561],[51.921101,8.81616],[51.921219,8.8166],[51.921349,8.817],[51.921619,8.81753],[51.92189,8.81807],[51.922112,8.81856],[51.922249,8.81896],[51.922329,8.81917],[51.922482,8.81974],[51.922569,8.82017],[51.922729,8.82121],[51.922901,8.82226],[51.9231,8.8235],[51.92326,8.82414],[51.923752,8.82576],[51.923939,8.82646],[51.924191,8.82785],[51.924351,8.82891],[51.924389,8.82925],[51.9244,8.82968],[51.924389,8.82987],[51.924351,8.83025],[51.92429,8.83063],[51.924198,8.83101],[51.92408,8.83147],[51.923931,8.83227],[51.92387,8.83268],[51.923851,8.83307],[51.923889,8.83423],[51.923981,8.83438],[51.925449,8.83662],[51.925819,8.83711],[51.926281,8.83749],[51.926708,8.83784],[51.926739,8.83799],[51.926849,8.83805],[51.92701,8.83817],[51.927231,8.83835],[51.92741,8.83844],[51.927689,8.83859],[51.927952,8.83872],[51.928101,8.83876],[51.92823,8.83877],[51.928322,8.83884],[51.928612,8.8391],[51.928959,8.8396],[51.929062,8.83998],[51.929111,8.84017],[51.92923,8.84115],[51.929501,8.84176],[51.92976,8.84212],[51.92989,8.84233],[51.930111,8.84263],[51.93063,8.84348],[51.930672,8.84379],[51.93103,8.84438],[51.931461,8.84517],[51.93211,8.84654],[51.932301,8.84694],[51.93232,8.84723],[51.932251,8.84781],[51.93214,8.8484],[51.931999,8.84901],[51.931961,8.84917],[51.931679,8.85003],[51.93129,8.85122],[51.931099,8.85202],[51.931141,8.85237],[51.931271,8.85266],[51.931301,8.85283],[51.93132,8.85293],[51.931309,8.853],[51.931229,8.85309],[51.931492,8.85373],[51.931648,8.85445],[51.931789,8.85514],[51.93203,8.85654],[51.932049,8.85711],[51.93211,8.85832],[51.932159,8.85991],[51.932178,8.86075],[51.93219,8.86199],[51.93211,8.86428],[51.932152,8.86471],[51.93222,8.86498],[51.932831,8.86645],[51.932899,8.86658],[51.93359,8.86764],[51.933899,8.86819],[51.93404,8.86845],[51.93449,8.86919],[51.93475,8.86967],[51.934818,8.86984],[51.935211,8.87048],[51.93539,8.87072],[51.935589,8.87086],[51.935589,8.87096],[51.935589,8.87115],[51.935631,8.87158],[51.935871,8.87153],[51.936581,8.87181],[51.937069,8.87199],[51.937401,8.87213],[51.93755,8.87219],[51.93792,8.87234],[51.937969,8.87237],[51.93837,8.87253],[51.938358,8.87261],[51.938339,8.87272],[51.93832,8.87286],[51.93816,8.87411],[51.938061,8.87485],[51.93877,8.87513],[51.939209,8.8753],[51.939491,8.8754],[51.939571,8.87543],[51.9398,8.87552],[51.940479,8.87578],[51.94043,8.87602],[51.94035,8.87644],[51.940311,8.87659],[51.94025,8.87681],[51.94014,8.87718],[51.939941,8.87812],[51.939751,8.87897],[51.93972,8.87908],[51.939678,8.87934],[51.939621,8.87972],[51.939411,8.88055],[51.939289,8.88082],[51.939739,8.88145],[51.940269,8.88225],[51.940842,8.88297],[51.94062,8.88374],[51.940361,8.88471],[51.940319,8.88495],[51.941521,8.88591],[51.941559,8.88593],[51.941551,8.88598],[51.941559,8.886],[51.941559,8.88602],[51.94154,8.88606],[51.941059,8.88674],[51.940552,8.88751],[51.940289,8.8879],[51.940521,8.88843],[51.940689,8.88895],[51.94096,8.88983],[51.941151,8.89071],[51.94125,8.89098],[51.941559,8.89131],[51.942188,8.89181],[51.942848,8.89223],[51.943001,8.89235],[51.943329,8.89278],[51.943451,8.89304],[51.943569,8.89325],[51.944118,8.89424],[51.944599,8.89501],[51.944889,8.8955],[51.94511,8.89588],[51.945541,8.89663],[51.94561,8.89675],[51.94632,8.89798],[51.94635,8.89802],[51.946819,8.8988],[51.946812,8.89886],[51.946812,8.8989],[51.946819,8.89896],[51.946838,8.89899],[51.946869,8.89902],[51.946911,8.89904],[51.94696,8.89902],[51.94698,8.89899],[51.947109,8.89921],[51.947281,8.89957],[51.947399,8.89998],[51.947609,8.90044],[51.947491,8.90116],[51.946941,8.9038],[51.94669,8.90486],[51.946499,8.90544],[51.945911,8.90687],[51.94585,8.90697],[51.94545,8.90776],[51.94516,8.90853],[51.944851,8.90969],[51.944141,8.91246],[51.944431,8.91265],[51.944641,8.91292],[51.944752,8.91332],[51.94482,8.91365],[51.944939,8.91489],[51.94519,8.91669],[51.94545,8.9179],[51.945801,8.91911],[51.945961,8.91956],[51.946201,8.92031],[51.94632,8.92063],[51.946831,8.92198],[51.947121,8.92258],[51.947189,8.9227],[51.948002,8.92414],[51.948841,8.92536],[51.949299,8.92591],[51.94973,8.92634],[51.95079,8.92723],[51.951229,8.92751],[51.95137,8.92761],[51.95134,8.92811],[51.95153,8.92878],[51.952171,8.92929],[51.952888,8.92944],[51.954929,8.93101],[51.95689,8.9343],[51.956989,8.93575],[51.956989,8.93633],[51.956902,8.93762],[51.956871,8.9379],[51.956749,8.93869],[51.95668,8.93914],[51.956532,8.94052],[51.956501,8.94166],[51.95665,8.94296],[51.956909,8.94428],[51.957218,8.94548],[51.95797,8.94804],[51.958038,8.94848],[51.958069,8.94869],[51.95808,8.94979],[51.958,8.95174],[51.958,8.95218],[51.958,8.95226],[51.958019,8.95415],[51.958111,8.95556],[51.958111,8.9561],[51.958149,8.95618],[51.958569,8.95725],[51.958889,8.95788],[51.959202,8.9584],[51.959461,8.95894],[51.959751,8.96018],[51.959862,8.96086],[51.959862,8.96091],[51.959831,8.96163],[51.959789,8.96187],[51.959431,8.96314],[51.959259,8.96364],[51.958691,8.96508],[51.958389,8.96575],[51.957741,8.96697],[51.95713,8.96831],[51.95512,8.97313],[51.954929,8.97361],[51.954929,8.97376],[51.954929,8.97377],[51.954979,8.9739],[51.955139,8.97402],[51.955601,8.9741],[51.955849,8.97419],[51.955921,8.97427],[51.955971,8.97435],[51.95602,8.97454],[51.956039,8.97472],[51.95602,8.97507],[51.956039,8.97559],[51.956108,8.97613],[51.956371,8.97804],[51.956409,8.97866],[51.956409,8.98074],[51.956402,8.98568],[51.95639,8.98811],[51.956379,8.98879],[51.956429,8.98932],[51.956638,8.99152],[51.956821,8.99341],[51.956951,8.99413],[51.957359,8.99525],[51.95742,8.99555],[51.95742,8.99582],[51.957272,8.99648],[51.95723,8.99684],[51.957249,8.99734],[51.957249,8.99757],[51.957279,8.99802],[51.957352,8.99864],[51.957359,8.99881],[51.95731,8.99935],[51.957241,8.99967],[51.957211,8.99975],[51.957088,9.00004],[51.95694,9.00018],[51.95668,9.00027],[51.956558,9.00043],[51.95639,9.00153],[51.95636,9.00196],[51.956379,9.00241],[51.956558,9.00353],[51.956692,9.00395],[51.956871,9.0043],[51.95739,9.00488],[51.95826,9.00584],[51.959049,9.00671],[51.96064,9.00846],[51.96146,9.00938],[51.961479,9.00944],[51.96225,9.01047],[51.962799,9.01132],[51.963421,9.01246],[51.963501,9.01261],[51.964169,9.014],[51.96463,9.01512],[51.96497,9.01608],[51.96513,9.01663],[51.965328,9.01726],[51.965561,9.01816],[51.965759,9.01904],[51.96595,9.02004],[51.966099,9.02102],[51.96624,9.02209],[51.966358,9.02341],[51.966461,9.02497],[51.966511,9.02574],[51.966549,9.02652],[51.966629,9.02722],[51.966721,9.02823],[51.966831,9.0293],[51.966919,9.02982],[51.967121,9.03109],[51.96719,9.03148],[51.967361,9.03236],[51.96759,9.03337],[51.968239,9.03586],[51.96946,9.03907],[51.970558,9.04118],[51.971191,9.04193],[51.971691,9.04237],[51.972641,9.04297],[51.973431,9.04411],[51.973991,9.04479],[51.974602,9.04542],[51.97485,9.0458],[51.97501,9.04627],[51.97506,9.04677],[51.975029,9.04729],[51.97488,9.04836],[51.974838,9.04889],[51.97485,9.04941],[51.974972,9.05044],[51.975101,9.05087],[51.975498,9.05165],[51.97559,9.05179],[51.975842,9.05215],[51.978439,9.05537],[51.978691,9.05573],[51.978809,9.05597],[51.97892,9.05637],[51.97897,9.05684],[51.979099,9.05996],[51.979172,9.06052],[51.97942,9.06172],[51.979752,9.06336],[51.97982,9.06394],[51.979801,9.06573],[51.97982,9.06722],[51.979912,9.06779],[51.980251,9.06917],[51.980358,9.06981],[51.980499,9.07059],[51.980869,9.07367],[51.981041,9.07507],[51.981098,9.07646],[51.981159,9.07791],[51.98159,9.08154],[51.98167,9.08227],[51.981812,9.0836],[51.981892,9.08402],[51.98201,9.08459],[51.982121,9.08494],[51.98217,9.08511],[51.9823,9.08528],[51.98246,9.08548],[51.982658,9.08558],[51.983089,9.08562],[51.98402,9.08553],[51.98423,9.08567],[51.984539,9.08597],[51.985439,9.08699],[51.985641,9.08725],[51.986469,9.08888],[51.98698,9.08949],[51.987881,9.0903],[51.98896,9.09244],[51.989849,9.09374],[51.990501,9.09554],[51.99094,9.09687],[51.99102,9.09891],[51.9911,9.10097],[51.99107,9.10121],[51.991032,9.10162],[51.99065,9.10366],[51.99062,9.10447],[51.990822,9.10513],[51.991039,9.10556],[51.991699,9.10661],[51.991539,9.10702],[51.991371,9.10744],[51.991192,9.10798],[51.991112,9.10827],[51.99094,9.1089],[51.990879,9.10916],[51.990761,9.10968],[51.990669,9.11018],[51.990631,9.1105],[51.990631,9.11064],[51.990589,9.11129],[51.990589,9.11242],[51.990601,9.11306],[51.990601,9.11376],[51.990601,9.11417],[51.990608,9.115],[51.990589,9.1155],[51.99054,9.11594],[51.990459,9.11635],[51.990261,9.11718],[51.990231,9.11768],[51.99033,9.11981],[51.990349,9.12025],[51.990349,9.12035],[51.990269,9.12352],[51.990238,9.12448],[51.990231,9.12494],[51.99015,9.1257],[51.990101,9.126],[51.990028,9.12641],[51.989922,9.12703],[51.98991,9.12763],[51.989899,9.12803],[51.989891,9.12868],[51.98983,9.12931],[51.9897,9.12999],[51.98901,9.13288],[51.988861,9.13367],[51.988689,9.13468],[51.988579,9.13567],[51.98851,9.13605],[51.988461,9.13629],[51.988392,9.13648],[51.988319,9.13666],[51.98838,9.13677],[51.988571,9.13704],[51.988762,9.13737],[51.988998,9.13789],[51.989052,9.13803],[51.989239,9.13856],[51.98946,9.13946],[51.989559,9.14016],[51.989639,9.14124],[51.989719,9.14251],[51.989761,9.14317],[51.989841,9.14441],[51.989868,9.14503],[51.98991,9.14563],[51.98996,9.14613],[51.98999,9.14687],[51.990101,9.14802],[51.9902,9.14892],[51.990311,9.14969],[51.99041,9.15028],[51.990669,9.15149],[51.990799,9.15219],[51.990971,9.15307],[51.991058,9.15353],[51.991199,9.15425],[51.99136,9.15502],[51.99155,9.15574],[51.992229,9.15782],[51.99247,9.15831],[51.992729,9.15873],[51.992981,9.15906],[51.99329,9.1595],[51.99366,9.16004],[51.994011,9.16054],[51.994492,9.16123],[51.994888,9.16174],[51.99564,9.16249],[51.995899,9.16276],[51.996658,9.1635],[51.997009,9.1638],[51.99744,9.16405],[51.998009,9.16436],[51.998791,9.16479],[51.99929,9.16507],[51.999649,9.16529],[51.999931,9.1655],[52.000381,9.16593],[52.00103,9.16654],[52.001461,9.16696],[52.00169,9.16719],[52.001881,9.16745],[52.002121,9.16788],[52.0028,9.16923],[52.002918,9.16948],[52.003101,9.16988],[52.003281,9.17039],[52.003448,9.17087],[52.003719,9.17171],[52.003811,9.17224],[52.00399,9.17335],[52.004009,9.17428],[52.00399,9.17462],[52.003979,9.17511],[52.00404,9.17567],[52.004181,9.17633],[52.004559,9.17745],[52.004822,9.17826],[52.005119,9.17922],[52.005329,9.17989],[52.005638,9.18065],[52.006168,9.18178],[52.00663,9.18281],[52.007149,9.18396],[52.007599,9.18494],[52.00795,9.18559],[52.00843,9.18633],[52.00964,9.18816],[52.01017,9.18899],[52.010311,9.18939],[52.01075,9.19077],[52.01099,9.19158],[52.011421,9.19301],[52.011681,9.19387],[52.01231,9.19592],[52.01255,9.19674],[52.012951,9.19802],[52.013161,9.19877],[52.013329,9.19962],[52.013531,9.20094],[52.013721,9.20211],[52.01387,9.20304],[52.01421,9.20525],[52.014511,9.20743],[52.01453,9.20795],[52.01453,9.2084],[52.0145,9.20864],[52.014549,9.20913],[52.01466,9.2095],[52.01482,9.21016],[52.01487,9.2106],[52.014839,9.21105],[52.014729,9.21175],[52.01469,9.21193],[52.014599,9.21233],[52.014721,9.21272],[52.014839,9.21296],[52.014961,9.21317],[52.015091,9.21339],[52.01519,9.21357],[52.015991,9.21503],[52.017071,9.21695],[52.017811,9.21823],[52.018589,9.21946],[52.01878,9.21971],[52.018799,9.21974],[52.019779,9.22099],[52.02021,9.22158],[52.02087,9.2224],[52.021549,9.22316],[52.022861,9.2245],[52.02327,9.22486],[52.024261,9.22528],[52.024502,9.22536],[52.024712,9.22544],[52.024891,9.22552],[52.025131,9.22578],[52.025318,9.22604],[52.025681,9.22665],[52.026169,9.22748],[52.026211,9.22756],[52.026669,9.22831],[52.02692,9.2288],[52.027,9.2289],[52.02729,9.22928],[52.027939,9.22987],[52.028191,9.23028],[52.028389,9.23074],[52.028801,9.23173],[52.029079,9.23229],[52.029339,9.2328],[52.029629,9.23329],[52.029888,9.23381],[52.030079,9.23433],[52.030128,9.23458],[52.030151,9.23467],[52.030312,9.2357],[52.030411,9.23687],[52.030449,9.23745],[52.030548,9.238],[52.03072,9.23854],[52.03096,9.23891],[52.030991,9.23901],[52.032211,9.24106],[52.032669,9.24188],[52.03281,9.24211],[52.034229,9.24467],[52.034779,9.24571],[52.035309,9.24668],[52.03537,9.24678],[52.035992,9.24773],[52.036129,9.24794],[52.03838,9.25132],[52.038879,9.25205],[52.039902,9.25355],[52.0406,9.25461],[52.041,9.25515],[52.041039,9.25521],[52.0415,9.25584],[52.041809,9.25634],[52.041931,9.25653],[52.04258,9.25748],[52.043072,9.25825],[52.043159,9.25839],[52.04369,9.25922],[52.044048,9.2598],[52.04427,9.25998],[52.04464,9.2604],[52.045052,9.26067],[52.045681,9.26104],[52.046162,9.2613],[52.046638,9.26183],[52.046799,9.26196],[52.047031,9.2623],[52.04718,9.26255],[52.047409,9.26285],[52.047939,9.26392],[52.048458,9.26493],[52.04855,9.26507],[52.049438,9.26679],[52.049549,9.267],[52.0499,9.2675],[52.050159,9.26778],[52.050522,9.26808],[52.050812,9.26836],[52.050999,9.26872],[52.05154,9.26942],[52.051861,9.26986],[52.05233,9.27077],[52.05267,9.27168],[52.053719,9.27481],[52.054279,9.2764],[52.054871,9.27782],[52.055191,9.2787],[52.057549,9.2842],[52.05764,9.28442],[52.058788,9.28708],[52.059631,9.28898],[52.05994,9.28974],[52.060169,9.29031],[52.060909,9.29229],[52.06126,9.29449],[52.061501,9.29653],[52.06168,9.29776],[52.06179,9.29836],[52.061932,9.29889],[52.06205,9.29939],[52.06229,9.30019],[52.062592,9.30096],[52.063271,9.30208],[52.063591,9.30248],[52.064449,9.3034],[52.064621,9.30349],[52.065361,9.30391],[52.065632,9.30404],[52.066071,9.30427],[52.066509,9.30448],[52.066849,9.30481],[52.06715,9.30521],[52.067261,9.30536],[52.067341,9.30547],[52.067451,9.30562],[52.067509,9.30571],[52.0676,9.30584],[52.06876,9.30734],[52.06942,9.30824],[52.06953,9.30841],[52.070068,9.30924],[52.070171,9.30944],[52.070351,9.30993],[52.070549,9.31047],[52.070721,9.31106],[52.07103,9.31215],[52.07114,9.31253],[52.071171,9.31262],[52.071609,9.31393],[52.073158,9.3187],[52.075989,9.32596],[52.076908,9.32832],[52.077412,9.32965],[52.077709,9.3304],[52.077969,9.33112],[52.078079,9.33136],[52.078651,9.33287],[52.079269,9.33444],[52.079762,9.33535],[52.07991,9.33562],[52.080421,9.33653],[52.081188,9.33775],[52.084782,9.34326],[52.08485,9.34339],[52.085209,9.34398],[52.086811,9.34647],[52.08717,9.34724],[52.08744,9.34777],[52.087749,9.34823],[52.088211,9.34881],[52.088692,9.34961],[52.088829,9.34985],[52.089062,9.35027],[52.08934,9.35065],[52.089458,9.35077],[52.089729,9.35104],[52.08987,9.35123],[52.089981,9.35134],[52.090191,9.35156],[52.09034,9.35177],[52.09037,9.35182],[52.090439,9.35193],[52.0905,9.35201],[52.090561,9.35207],[52.09066,9.35211],[52.09079,9.35201],[52.091141,9.35175],[52.091339,9.35169],[52.09156,9.35163],[52.09177,9.35169],[52.092541,9.35202],[52.09293,9.35214],[52.093609,9.35222],[52.094769,9.35231],[52.095749,9.35223],[52.09597,9.35219],[52.096512,9.35204],[52.097019,9.35185],[52.097569,9.3516],[52.098301,9.35119],[52.098709,9.35086],[52.098801,9.35078],[52.099121,9.35048],[52.099331,9.35026],[52.0994,9.35019],[52.099522,9.35007],[52.09988,9.34988],[52.100639,9.34928],[52.10091,9.34909],[52.101139,9.34905],[52.101231,9.34909],[52.10128,9.34916],[52.101429,9.34939],[52.101471,9.34974],[52.10157,9.35013],[52.101589,9.35211],[52.101509,9.35227],[52.101501,9.35269],[52.10149,9.35294],[52.10144,9.35328],[52.101429,9.35334],[52.10141,9.35341],[52.101231,9.35391],[52.101101,9.3543],[52.101082,9.35435],[52.100979,9.35474],[52.100891,9.35508],[52.100811,9.35554],[52.10078,9.35578],[52.100761,9.356],[52.100739,9.35623],[52.100731,9.35647],[52.100731,9.35684],[52.100719,9.35723],[52.100719,9.35751],[52.100739,9.35783],[52.100849,9.35829],[52.10099,9.35867],[52.101379,9.35943],[52.101761,9.35996],[52.10218,9.36042],[52.102261,9.36049],[52.10239,9.36059],[52.10252,9.36068],[52.10284,9.36089],[52.10294,9.36095],[52.103161,9.36108],[52.10334,9.36116],[52.103588,9.36127],[52.103779,9.36135],[52.10397,9.36155],[52.104019,9.3616],[52.104061,9.36168],[52.104111,9.36184],[52.104172,9.36256],[52.104172,9.36262],[52.104172,9.36273],[52.104172,9.36324],[52.104172,9.36417],[52.104172,9.36462],[52.104172,9.36522],[52.104172,9.36527],[52.104141,9.36599],[52.104069,9.3675],[52.104038,9.36813],[52.103951,9.36964],[52.103939,9.36985],[52.10392,9.37017],[52.103909,9.37043],[52.10384,9.37168],[52.103821,9.37222],[52.103779,9.37313],[52.103748,9.37379],[52.103722,9.37453],[52.10371,9.37478],[52.103619,9.37597],[52.10358,9.37626],[52.103561,9.37667],[52.103561,9.37677],[52.103569,9.37686],[52.10358,9.37707],[52.10347,9.37733],[52.103439,9.37752],[52.103401,9.37759],[52.103352,9.37772],[52.103279,9.37782],[52.10318,9.37797],[52.103119,9.37804],[52.10297,9.37812],[52.102871,9.37816],[52.102772,9.37821],[52.102699,9.37824],[52.102661,9.37825],[52.10247,9.37833],[52.102039,9.37855],[52.10199,9.37858],[52.101681,9.37875],[52.101582,9.37883],[52.101372,9.37901],[52.101379,9.37914],[52.101398,9.37941],[52.101452,9.37969],[52.101559,9.38014],[52.10165,9.38046],[52.101891,9.38157],[52.101971,9.38192],[52.102268,9.3832],[52.102451,9.38407],[52.102699,9.38552],[52.102741,9.38575],[52.102772,9.3859],[52.102852,9.38648],[52.102921,9.38704],[52.102909,9.38725],[52.10289,9.38754],[52.102829,9.38786],[52.102631,9.38838],[52.10218,9.38918],[52.102032,9.38947],[52.10149,9.3904],[52.101158,9.39093],[52.101051,9.39113],[52.100868,9.39144],[52.10054,9.39198],[52.100441,9.39218],[52.100349,9.39241],[52.100269,9.39277],[52.10025,9.39298],[52.10025,9.39306],[52.100262,9.39325],[52.10033,9.39372],[52.100609,9.39506],[52.10083,9.39606],[52.100899,9.39646],[52.100948,9.39682],[52.100948,9.3971],[52.100941,9.3974],[52.100922,9.39772],[52.100849,9.39818],[52.10078,9.39867],[52.100639,9.39954],[52.10059,9.39991],[52.10054,9.40025],[52.100521,9.40054],[52.100521,9.40116],[52.10054,9.40183],[52.10054,9.40195],[52.10054,9.40203],[52.100552,9.40218],[52.100552,9.40225],[52.100559,9.40277],[52.10054,9.40319],[52.100491,9.40359],[52.100471,9.40382],[52.100422,9.4042],[52.100391,9.4046],[52.100399,9.40511],[52.100422,9.40603],[52.100422,9.40674],[52.100399,9.40716],[52.100361,9.40757],[52.100319,9.40794],[52.100311,9.40814],[52.100159,9.40983],[52.100128,9.41039],[52.10014,9.41129],[52.10014,9.41245],[52.100151,9.41275],[52.100159,9.41314],[52.100201,9.41356],[52.100311,9.41434],[52.10046,9.41551],[52.100521,9.41605],[52.100651,9.41693],[52.10075,9.41749],[52.100929,9.41829],[52.101349,9.42006],[52.101452,9.42054],[52.10154,9.42114],[52.101631,9.42177],[52.101681,9.42225],[52.101719,9.42275],[52.101761,9.42353],[52.101768,9.42444],[52.101749,9.42592],[52.101711,9.4275],[52.101711,9.42813],[52.101719,9.42876],[52.101749,9.42946],[52.101799,9.43011],[52.101822,9.43032],[52.101841,9.43054],[52.101849,9.43066],[52.10191,9.4311],[52.102039,9.43193],[52.102211,9.43276],[52.102428,9.43362],[52.102612,9.43421],[52.102928,9.43514],[52.103642,9.43681],[52.104671,9.43935],[52.105099,9.44078],[52.105358,9.44311],[52.105339,9.44526],[52.10556,9.4475],[52.10574,9.44808],[52.10619,9.4495],[52.107288,9.45243],[52.107521,9.45329],[52.107658,9.45402],[52.107769,9.45489],[52.107811,9.45536],[52.107811,9.45588],[52.10783,9.45651],[52.107571,9.45833],[52.107368,9.45979],[52.107239,9.4606],[52.107128,9.46231],[52.107269,9.46434],[52.1077,9.46767],[52.107761,9.46974],[52.107479,9.47184],[52.107231,9.4734],[52.106659,9.47639],[52.106491,9.47823],[52.10656,9.48007],[52.106651,9.48062],[52.10672,9.48102],[52.107052,9.48228],[52.107521,9.48345],[52.107929,9.48414],[52.10981,9.48654],[52.11132,9.48846],[52.112,9.49028],[52.112621,9.49338],[52.113701,9.49927],[52.114201,9.50216],[52.114349,9.50302],[52.114769,9.50548],[52.114948,9.50709],[52.11499,9.50773],[52.115181,9.51022],[52.115292,9.51221],[52.115551,9.51394],[52.115959,9.51593],[52.11639,9.51733],[52.116859,9.51862],[52.120281,9.52709],[52.12146,9.53007],[52.121738,9.53093],[52.121861,9.53128],[52.121979,9.53188],[52.12204,9.53231],[52.121899,9.53362],[52.121731,9.53456],[52.121521,9.53516],[52.121189,9.53578],[52.120831,9.53647],[52.12014,9.53742],[52.119041,9.53871],[52.11882,9.53899],[52.11832,9.53963],[52.118031,9.54014],[52.11792,9.54077],[52.117889,9.54148],[52.118,9.5421],[52.11813,9.54283],[52.118252,9.54356],[52.11832,9.54421],[52.118382,9.54488],[52.118401,9.54518],[52.11832,9.54538],[52.11829,9.54552],[52.117962,9.54599],[52.117821,9.54614],[52.117538,9.5465],[52.117481,9.54665],[52.11731,9.54723],[52.11731,9.54785],[52.11731,9.54831],[52.117371,9.54922],[52.117611,9.55003],[52.117611,9.55028],[52.117611,9.55044],[52.117619,9.55068],[52.11763,9.55092],[52.11763,9.55143],[52.117619,9.55176],[52.117229,9.5528],[52.115829,9.55649],[52.115341,9.55768],[52.114922,9.55852],[52.114449,9.55931],[52.113621,9.56055],[52.113071,9.5613],[52.11256,9.56209],[52.11216,9.56274],[52.111778,9.56352],[52.111511,9.56424],[52.111271,9.56502],[52.111061,9.5661],[52.110909,9.56679],[52.110691,9.5675],[52.110561,9.56786],[52.110359,9.56822],[52.109859,9.56858],[52.10976,9.56866],[52.109131,9.56915],[52.108669,9.56955],[52.10812,9.57025],[52.107849,9.57059],[52.10709,9.57135],[52.10603,9.57297],[52.10548,9.57396],[52.105251,9.57429],[52.104839,9.57485],[52.10458,9.5751],[52.104321,9.57538],[52.10408,9.57566],[52.103611,9.57656],[52.103298,9.57723],[52.10183,9.57931],[52.10083,9.5806],[52.0994,9.58208],[52.098808,9.58282],[52.098301,9.58358],[52.097698,9.58471],[52.097111,9.58595],[52.096352,9.587],[52.094769,9.58879],[52.092171,9.59251],[52.091469,9.59334],[52.09053,9.59427],[52.08976,9.59486],[52.088749,9.5954],[52.08823,9.59583],[52.087269,9.59705],[52.086472,9.5985],[52.086109,9.59918],[52.085991,9.59934],[52.085499,9.60005],[52.084999,9.60065],[52.084492,9.60083],[52.084278,9.60101],[52.084061,9.60129],[52.0839,9.60185],[52.08382,9.60238],[52.083832,9.60282],[52.083889,9.60485],[52.084042,9.6073],[52.084061,9.6077],[52.084141,9.61095],[52.084469,9.61335],[52.085072,9.61677],[52.086189,9.62152],[52.087292,9.6265],[52.0877,9.62823],[52.08844,9.63076],[52.08876,9.6316],[52.08886,9.63192],[52.08897,9.63222],[52.089481,9.63351],[52.089809,9.63405],[52.090382,9.6348],[52.090511,9.63502],[52.090561,9.63521],[52.090591,9.6354],[52.090618,9.63767],[52.090618,9.63787],[52.09063,9.63797],[52.090691,9.63925],[52.090889,9.64037],[52.091171,9.64153],[52.091549,9.64304],[52.09193,9.64449],[52.09201,9.64468],[52.092201,9.64518],[52.092449,9.64593],[52.092751,9.64678],[52.092899,9.64739],[52.093109,9.64854],[52.093208,9.64918],[52.093281,9.64956],[52.09333,9.64976],[52.09343,9.65002],[52.09354,9.65016],[52.09362,9.65027],[52.093842,9.65055],[52.09399,9.65098],[52.09409,9.65174],[52.094231,9.65216],[52.094791,9.65303],[52.09557,9.65424],[52.095928,9.65474],[52.097149,9.65663],[52.098869,9.65927],[52.098881,9.65929],[52.09948,9.66051],[52.100609,9.66351],[52.101452,9.66537],[52.102001,9.66644],[52.10244,9.66751],[52.102959,9.66897],[52.10323,9.66969],[52.103569,9.6706],[52.10408,9.67165],[52.10458,9.67268],[52.10482,9.67332],[52.10519,9.6743],[52.10553,9.67508],[52.107071,9.67851],[52.10759,9.67959],[52.10841,9.68091],[52.109268,9.68177],[52.109241,9.68228],[52.10928,9.68254],[52.11013,9.68421],[52.110931,9.68674],[52.111649,9.68864],[52.112209,9.68983],[52.112621,9.69055],[52.113861,9.69301],[52.114159,9.69321],[52.114719,9.69383],[52.115051,9.69426],[52.115051,9.69509],[52.115051,9.69535],[52.11507,9.69756],[52.1152,9.69845],[52.115421,9.69898],[52.115601,9.69913],[52.115841,9.69937],[52.11599,9.69957],[52.116249,9.70062],[52.116421,9.70112],[52.117168,9.70266],[52.11758,9.70372],[52.11797,9.70508],[52.118721,9.70859],[52.118801,9.70898],[52.11916,9.70912],[52.119141,9.71038],[52.11924,9.71172],[52.119598,9.71399],[52.11993,9.71585],[52.120239,9.71722],[52.12072,9.71921],[52.120899,9.7202],[52.121189,9.72244],[52.121208,9.72256],[52.121231,9.72267],[52.122002,9.72622],[52.122551,9.72855],[52.122608,9.72879],[52.123268,9.73159],[52.123379,9.73288],[52.12352,9.73452],[52.1236,9.73627],[52.12368,9.73715],[52.12376,9.7376],[52.123852,9.73805],[52.12392,9.73833],[52.124001,9.73862],[52.12413,9.73892],[52.12458,9.73973],[52.12619,9.74316],[52.12822,9.74626],[52.129299,9.74715],[52.130428,9.74809],[52.130981,9.74836],[52.131401,9.7484],[52.132462,9.74853],[52.134861,9.74883],[52.135109,9.74893],[52.135231,9.74899],[52.13546,9.74913],[52.13596,9.74966],[52.136398,9.75032],[52.137421,9.75266],[52.13887,9.75591],[52.14106,9.75829],[52.144211,9.7617],[52.144562,9.76223],[52.1446,9.7623],[52.144699,9.76246],[52.14481,9.76263],[52.145321,9.76352],[52.146469,9.76548],[52.147079,9.76729],[52.147289,9.76811],[52.14753,9.76791],[52.147781,9.76779],[52.147999,9.76773],[52.148209,9.76773],[52.148411,9.76777],[52.148602,9.76787],[52.14875,9.76799],[52.148941,9.76806],[52.149029,9.76815],[52.149059,9.76834],[52.148998,9.76888],[52.14896,9.76904],[52.148891,9.76914],[52.1488,9.76922],[52.148689,9.76925],[52.14864,9.76932],[52.148609,9.76945],[52.148651,9.77018],[52.148651,9.77031],[52.14875,9.77116],[52.148891,9.77229],[52.14893,9.77293],[52.14893,9.77351],[52.14867,9.77534],[52.148201,9.77763],[52.147739,9.78177],[52.147621,9.78329],[52.149891,9.78796],[52.151211,9.79124],[52.15163,9.7923],[52.151711,9.7928],[52.15168,9.79324],[52.151588,9.79367],[52.15126,9.79492],[52.151199,9.79514],[52.15099,9.79609],[52.15097,9.79635],[52.15099,9.79715],[52.151009,9.79737],[52.151089,9.79778],[52.151791,9.80079],[52.151859,9.80104],[52.151909,9.80132],[52.15213,9.80226],[52.15239,9.80311],[52.152748,9.80414],[52.15358,9.8065],[52.153919,9.80757],[52.15419,9.80891],[52.154339,9.8102],[52.154499,9.81258],[52.154541,9.81305],[52.154659,9.81365],[52.154701,9.8138],[52.154819,9.81418],[52.156151,9.81712],[52.156509,9.81796],[52.156738,9.8188],[52.156929,9.81977],[52.15704,9.82117],[52.156921,9.82523],[52.156719,9.83012],[52.156731,9.83037],[52.15683,9.83215],[52.157108,9.83429],[52.15744,9.83686],[52.15749,9.83723],[52.157841,9.83989],[52.157921,9.84058],[52.158272,9.84235],[52.159031,9.8461],[52.159618,9.84896],[52.159939,9.85091],[52.159981,9.85185],[52.160069,9.85396],[52.160019,9.8558],[52.16,9.8561],[52.159962,9.85913],[52.159691,9.86304],[52.15937,9.86584],[52.159302,9.86647],[52.158951,9.86895],[52.158611,9.871],[52.158279,9.87359],[52.15815,9.87876],[52.158661,9.88394],[52.15934,9.88912],[52.159512,9.89218],[52.15955,9.89516],[52.159519,9.89776],[52.159439,9.89893],[52.159111,9.90199],[52.158901,9.90414],[52.15889,9.90432],[52.15876,9.90508],[52.158501,9.90597],[52.158131,9.90695],[52.15789,9.90742],[52.157398,9.90859],[52.157089,9.90965],[52.156849,9.91135],[52.156929,9.91539],[52.156929,9.91588],[52.15691,9.91671],[52.156929,9.91832],[52.156879,9.92027],[52.15683,9.9215],[52.1567,9.92277],[52.156521,9.92385],[52.156311,9.92465],[52.15617,9.92507],[52.155899,9.9256],[52.155369,9.92674],[52.154869,9.92765],[52.15453,9.92822],[52.15419,9.92898],[52.153851,9.92992],[52.153641,9.93081],[52.153561,9.93147],[52.153511,9.93234],[52.153481,9.9332],[52.153469,9.93368],[52.153461,9.93417],[52.153511,9.93485],[52.153561,9.93511],[52.153622,9.93541],[52.15369,9.93581],[52.153782,9.93629],[52.153889,9.93678],[52.15395,9.937],[52.154011,9.93733],[52.15406,9.93754],[52.154221,9.93814],[52.1544,9.93888],[52.154709,9.9402],[52.154789,9.94082],[52.154819,9.94116],[52.1548,9.94178],[52.154789,9.9423],[52.15477,9.9432],[52.154751,9.94384],[52.15472,9.94453],[52.154709,9.94481],[52.154701,9.94495],[52.154671,9.94537],[52.15464,9.94635],[52.15464,9.94715],[52.154671,9.94743],[52.154758,9.94788],[52.15485,9.94823],[52.154888,9.94846],[52.154919,9.94858],[52.154961,9.94874],[52.155048,9.949],[52.155128,9.94927],[52.155338,9.9499],[52.15546,9.95026],[52.15556,9.95058],[52.155819,9.95134],[52.156021,9.95194],[52.156189,9.95248],[52.156528,9.95357],[52.15694,9.95491],[52.157188,9.95559],[52.15733,9.95622],[52.157421,9.95666],[52.157478,9.95704],[52.157539,9.9575],[52.157661,9.95849],[52.157681,9.95865],[52.157761,9.95943],[52.157909,9.96058],[52.158089,9.96228],[52.158211,9.96351],[52.158218,9.96374],[52.158371,9.9657],[52.158489,9.96742],[52.158501,9.9679],[52.158501,9.9684],[52.158489,9.96932],[52.158421,9.97038],[52.15839,9.97074],[52.15834,9.97113],[52.15823,9.97135],[52.158051,9.97143],[52.157909,9.97156],[52.157791,9.97178],[52.15773,9.97195],[52.1577,9.97212],[52.157681,9.97232],[52.157711,9.97258],[52.157799,9.97284],[52.157879,9.97297],[52.158001,9.9731],[52.158089,9.97334],[52.158119,9.97354],[52.158039,9.97484],[52.158031,9.97555],[52.15807,9.97619],[52.158119,9.97683],[52.15826,9.9776],[52.158508,9.97854],[52.15905,9.98047],[52.15987,9.98347],[52.16011,9.98434],[52.160412,9.98534],[52.160782,9.98677],[52.160851,9.98715],[52.16103,9.98811],[52.161129,9.98875],[52.16124,9.9896],[52.161331,9.99061],[52.1614,9.99172],[52.161419,9.9931],[52.161419,9.99318],[52.161419,9.99598],[52.161419,9.99779],[52.161419,9.99801],[52.161419,9.99817],[52.161419,9.99889],[52.161461,10.00516],[52.161461,10.00809],[52.161362,10.00919],[52.161301,10.00965],[52.16119,10.01035],[52.16098,10.01136],[52.160969,10.01145],[52.16087,10.01196],[52.160839,10.01212],[52.160721,10.0128],[52.16069,10.01362],[52.160648,10.01452],[52.16066,10.01505],[52.160671,10.01532],[52.160728,10.01568],[52.160839,10.01604],[52.160992,10.01635],[52.161011,10.0164],[52.161259,10.01683],[52.161598,10.01743],[52.161831,10.0178],[52.162849,10.01961],[52.16325,10.02026],[52.164322,10.02207],[52.16597,10.02496],[52.166679,10.02634],[52.166939,10.02693],[52.16724,10.02759],[52.167709,10.02864],[52.168491,10.03041],[52.16898,10.03155],[52.169731,10.03319],[52.16975,10.03323],[52.169788,10.03332],[52.169971,10.03374],[52.170319,10.03446],[52.170361,10.03452],[52.170719,10.0351],[52.170929,10.03545],[52.171131,10.03572],[52.171261,10.036],[52.171421,10.03653],[52.171551,10.03718],[52.171619,10.0375],[52.17186,10.03863],[52.17218,10.03989],[52.172421,10.04078],[52.17281,10.0421],[52.173149,10.04332],[52.173359,10.04402],[52.173691,10.04503],[52.174042,10.04606],[52.174431,10.04723],[52.17485,10.04862],[52.175251,10.04997],[52.17561,10.05116],[52.17588,10.05204],[52.176979,10.05575],[52.177731,10.05851],[52.17841,10.0611],[52.179371,10.0659],[52.179729,10.06744],[52.18,10.06834],[52.180111,10.06899],[52.180141,10.06927],[52.180191,10.0695],[52.180309,10.06987],[52.18055,10.0705],[52.18092,10.07148],[52.181702,10.07324],[52.182209,10.0744],[52.184021,10.07863],[52.184502,10.07981],[52.184799,10.08064],[52.184978,10.08137],[52.18499,10.08148],[52.185188,10.08278],[52.18541,10.08529],[52.185421,10.08543],[52.18589,10.09088],[52.186138,10.09359],[52.186279,10.09517],[52.186489,10.09751],[52.186691,10.09859],[52.187061,10.09989],[52.187099,10.09999],[52.18742,10.10095],[52.187679,10.10208],[52.187962,10.10348],[52.188171,10.10444],[52.1884,10.10498],[52.188519,10.10522],[52.188751,10.10549],[52.190319,10.1075],[52.19046,10.10766],[52.190529,10.1077],[52.191711,10.10919],[52.192638,10.11035],[52.192902,10.11078],[52.193161,10.11115],[52.193531,10.11185],[52.194019,10.11289],[52.19455,10.11449],[52.19569,10.11838],[52.196041,10.11951],[52.196991,10.1225],[52.19725,10.12339],[52.197399,10.12387],[52.197842,10.1252],[52.1982,10.12641],[52.198681,10.12794],[52.199108,10.12938],[52.19973,10.13167],[52.199829,10.132],[52.200432,10.13439],[52.200901,10.13635],[52.201229,10.13792],[52.201321,10.13893],[52.20129,10.14019],[52.20116,10.14122],[52.20105,10.14173],[52.200722,10.14285],[52.200371,10.14377],[52.19997,10.14491],[52.19986,10.14546],[52.19976,10.14594],[52.19965,10.14678],[52.199669,10.14732],[52.19978,10.14848],[52.199909,10.15012],[52.199982,10.15109],[52.2001,10.15271],[52.200218,10.1541],[52.200378,10.15612],[52.200562,10.15763],[52.20076,10.15879],[52.20097,10.15967],[52.201679,10.16166],[52.20179,10.16187],[52.202011,10.1623],[52.20256,10.16327],[52.202888,10.16381],[52.20319,10.16434],[52.203709,10.16531],[52.204269,10.16629],[52.205181,10.16792],[52.20612,10.16957],[52.20715,10.17118],[52.20784,10.17229],[52.208172,10.17275],[52.208382,10.17308],[52.20866,10.17362],[52.20882,10.17404],[52.208961,10.1746],[52.209,10.17498],[52.208988,10.17519],[52.208981,10.17528],[52.208939,10.17609],[52.208771,10.17777],[52.208691,10.17902],[52.208679,10.17915],[52.208672,10.17938],[52.208599,10.18033],[52.208591,10.18057],[52.208599,10.18091],[52.20863,10.18115],[52.20871,10.18179],[52.208839,10.18258],[52.209042,10.18365],[52.209351,10.18527],[52.20948,10.18589],[52.209808,10.18753],[52.21003,10.18799],[52.210331,10.18838],[52.210602,10.18869],[52.21093,10.1891],[52.21133,10.18961],[52.211601,10.19004],[52.211868,10.19055],[52.212231,10.19132],[52.21265,10.19216],[52.213249,10.19349],[52.213551,10.1942],[52.213821,10.19491],[52.214008,10.19574],[52.214119,10.19628],[52.21426,10.19704],[52.214359,10.19781],[52.214828,10.20196],[52.21487,10.2023],[52.21505,10.20347],[52.215279,10.20499],[52.215309,10.20518],[52.215569,10.20629],[52.215771,10.20697],[52.215809,10.2071],[52.216839,10.2104],[52.217468,10.21242],[52.217911,10.2138],[52.218079,10.21436],[52.21817,10.21461],[52.218529,10.21537],[52.218929,10.21599],[52.218971,10.21603],[52.21907,10.2162],[52.219711,10.21737],[52.219849,10.21773],[52.21994,10.21796],[52.220051,10.21825],[52.220501,10.2195],[52.22084,10.22047],[52.22089,10.22061],[52.221279,10.22159],[52.22147,10.22216],[52.221581,10.22249],[52.223679,10.22836],[52.225029,10.23212],[52.225269,10.23277],[52.22541,10.23319],[52.226589,10.23634],[52.226891,10.23734],[52.227001,10.23777],[52.227081,10.23816],[52.2271,10.23845],[52.227131,10.23914],[52.227131,10.23927],[52.227112,10.24051],[52.227131,10.24146],[52.227112,10.24351],[52.227242,10.24487],[52.22747,10.24744],[52.228649,10.25232],[52.228741,10.25264],[52.229359,10.25489],[52.232399,10.26607],[52.232559,10.26665],[52.233261,10.26939],[52.23399,10.27158],[52.23484,10.27373],[52.239361,10.2861],[52.240841,10.29015],[52.24189,10.29299],[52.242298,10.2941],[52.24255,10.29478],[52.243542,10.2975],[52.24498,10.30147],[52.245399,10.30264],[52.245869,10.30393],[52.24596,10.30418],[52.246231,10.30482],[52.24678,10.30568],[52.247299,10.30632],[52.247688,10.30685],[52.247978,10.30743],[52.248531,10.30904],[52.24963,10.3122],[52.24995,10.31314],[52.250271,10.31382],[52.250938,10.31486],[52.252048,10.31662],[52.25378,10.31934],[52.254349,10.32028],[52.254391,10.32034],[52.254509,10.32053],[52.254829,10.32107],[52.255001,10.32163],[52.255169,10.3225],[52.255291,10.32316],[52.25555,10.3247],[52.255501,10.32531],[52.25544,10.32602],[52.2556,10.32679],[52.255791,10.32744],[52.255878,10.32761],[52.25613,10.32808],[52.256359,10.32858],[52.256519,10.32909],[52.256569,10.32953],[52.25666,10.32992],[52.256882,10.33014],[52.257172,10.33022],[52.257679,10.33028],[52.257832,10.33037],[52.257961,10.33057],[52.25803,10.33079],[52.258011,10.33145],[52.257919,10.33385],[52.257881,10.33439],[52.25774,10.33657],[52.25761,10.3385],[52.257591,10.33896],[52.257561,10.3393],[52.257549,10.33957],[52.25753,10.33992],[52.25753,10.34071],[52.25753,10.34126],[52.257549,10.34204],[52.257591,10.34273],[52.257648,10.34345],[52.257629,10.34365],[52.257599,10.34381],[52.257549,10.34399],[52.25745,10.34422],[52.25742,10.34426],[52.25732,10.3445],[52.257191,10.34511],[52.257061,10.34701],[52.257061,10.34707],[52.256969,10.34858],[52.25692,10.34997],[52.257019,10.35114],[52.25732,10.35288],[52.257599,10.35433],[52.257599,10.35439],[52.25761,10.35445],[52.25787,10.35595],[52.258011,10.3568],[52.25803,10.3569],[52.258049,10.35704],[52.25806,10.3571],[52.25808,10.35721],[52.258171,10.35773],[52.258221,10.35789],[52.258259,10.35797],[52.258339,10.35805],[52.25843,10.35818],[52.258499,10.3583],[52.258572,10.35846],[52.258591,10.35861],[52.258579,10.35872],[52.258518,10.35887],[52.25845,10.35895],[52.258419,10.35899],[52.2584,10.35901],[52.258389,10.35904],[52.2584,10.35906],[52.258839,10.36154],[52.258869,10.36169],[52.258881,10.36175],[52.258999,10.36244],[52.25935,10.36442],[52.259541,10.36541],[52.259571,10.36561],[52.259579,10.36566],[52.25964,10.36599],[52.259651,10.36606],[52.259701,10.36635],[52.259731,10.3665],[52.259899,10.36743],[52.260368,10.37009],[52.26038,10.37015],[52.26046,10.37054],[52.260509,10.37077],[52.260559,10.37102],[52.260601,10.37123],[52.2607,10.37169],[52.260761,10.37217],[52.260769,10.37221],[52.260799,10.37269],[52.260799,10.37279],[52.260792,10.37288],[52.26078,10.37305],[52.26078,10.37323],[52.26078,10.37331],[52.260799,10.37368],[52.260899,10.37415],[52.26091,10.37419],[52.261089,10.37472],[52.261238,10.37498],[52.26133,10.37513],[52.261429,10.37532],[52.261532,10.37562],[52.261589,10.37586],[52.261631,10.37625],[52.261639,10.37676],[52.261639,10.37697],[52.261631,10.37735],[52.26162,10.37745],[52.26162,10.37772],[52.2616,10.37791],[52.261589,10.37803],[52.261581,10.37821],[52.26162,10.37864],[52.26173,10.37928],[52.26173,10.37931],[52.261768,10.37969],[52.261841,10.38052],[52.26189,10.38216],[52.261921,10.38303],[52.26194,10.38321],[52.26194,10.38333],[52.262058,10.38752],[52.262081,10.38821],[52.262131,10.3885],[52.26223,10.38876],[52.262299,10.38892],[52.262379,10.38905],[52.262428,10.38914],[52.262459,10.38925],[52.26247,10.38941],[52.26247,10.38958],[52.26199,10.39114],[52.26178,10.39188],[52.261742,10.392],[52.2617,10.39216],[52.261631,10.39241],[52.261532,10.39277],[52.26104,10.39422],[52.260521,10.39574],[52.259899,10.39756],[52.259472,10.39888],[52.258949,10.40045],[52.258652,10.40148],[52.25864,10.40152],[52.258518,10.40196],[52.25827,10.40284],[52.257919,10.40413],[52.257648,10.4051],[52.257381,10.4061],[52.25724,10.40662],[52.257069,10.4074],[52.257038,10.40758],[52.256939,10.40809],[52.256908,10.40875],[52.256939,10.40963],[52.25695,10.40973],[52.257,10.41073],[52.257092,10.41328],[52.257099,10.41356],[52.25724,10.41718],[52.257351,10.42029],[52.257381,10.42103],[52.257561,10.42482],[52.25771,10.42866],[52.257801,10.42944],[52.257851,10.42997],[52.258362,10.4349],[52.258411,10.43818],[52.258419,10.43891],[52.258511,10.44359],[52.25853,10.44494],[52.25856,10.4457],[52.25861,10.44595],[52.25872,10.44646],[52.259789,10.44972],[52.260059,10.45054],[52.26025,10.45158],[52.260422,10.45247],[52.260368,10.45253],[52.260151,10.4529],[52.260059,10.453],[52.26001,10.45303],[52.259861,10.4531],[52.259621,10.45321],[52.259109,10.45351],[52.258991,10.45363],[52.258911,10.45368],[52.258789,10.45376],[52.258701,10.45385],[52.258652,10.45399],[52.258572,10.45412],[52.258659,10.45463],[52.2584,10.45482],[52.25832,10.45488],[52.257912,10.45518],[52.257839,10.45524],[52.25782,10.45525],[52.25742,10.45559],[52.257359,10.45565],[52.257339,10.45566],[52.25724,10.45575],[52.257221,10.45579],[52.257229,10.45596],[52.257278,10.45658],[52.257301,10.45685],[52.257408,10.45837],[52.2575,10.45954],[52.257511,10.45964],[52.257629,10.46114],[52.257641,10.46126],[52.2579,10.46437],[52.25798,10.4653],[52.25808,10.46638],[52.258121,10.46686],[52.258301,10.46908],[52.258492,10.47131],[52.258549,10.47204],[52.25861,10.4727],[52.258671,10.47358],[52.258709,10.47396],[52.25872,10.47414],[52.258732,10.47427],[52.25882,10.47521],[52.258911,10.47619],[52.25893,10.47645],[52.258961,10.47682],[52.25901,10.47729],[52.259071,10.47784],[52.259121,10.47843],[52.25914,10.47859],[52.259201,10.47931],[52.259251,10.47986],[52.25935,10.48095],[52.25938,10.48125],[52.25943,10.48172],[52.260132,10.48448],[52.260269,10.48502],[52.26033,10.48532],[52.260361,10.48606],[52.26038,10.48656],[52.260399,10.48782],[52.26041,10.48812],[52.260441,10.4885],[52.26046,10.48973],[52.260479,10.49102],[52.260509,10.49229],[52.26054,10.49391],[52.260551,10.49465],[52.26059,10.49683],[52.260601,10.49761],[52.260609,10.49838],[52.26062,10.49859],[52.26062,10.49881],[52.260651,10.49905],[52.260849,10.49996],[52.26086,10.50027],[52.26083,10.50079],[52.260738,10.50158],[52.260651,10.50225],[52.260609,10.5027],[52.260609,10.50286],[52.260609,10.50293],[52.260609,10.50299],[52.26062,10.50312],[52.26075,10.50393],[52.26083,10.50441],[52.26088,10.50474],[52.261009,10.50551],[52.261021,10.5056],[52.261181,10.50655],[52.261429,10.50811],[52.261429,10.50824],[52.261391,10.50893],[52.261379,10.5091],[52.261341,10.50935],[52.26133,10.50943],[52.261311,10.50954],[52.26125,10.50996],[52.261261,10.51011],[52.262299,10.51125],[52.262329,10.51133],[52.262371,10.51147],[52.26239,10.51163],[52.262371,10.51202],[52.26244,10.51332],[52.262451,10.51336],[52.262459,10.51352],[52.262489,10.51394],[52.262501,10.51402],[52.26252,10.5142],[52.262138,10.51429],[52.262112,10.51429],[52.261959,10.51434],[52.261581,10.51444],[52.260769,10.51509],[52.26049,10.5153],[52.2598,10.51575],[52.25946,10.51596],[52.25919,10.51613],[52.258961,10.5163],[52.258411,10.51664],[52.258301,10.51672],[52.258202,10.51679],[52.258141,10.51685],[52.25811,10.51688],[52.258091,10.51692],[52.25806,10.51698],[52.258041,10.51704],[52.258018,10.51712],[52.258018,10.51718],[52.258018,10.51727],[52.25803,10.51732],[52.258049,10.51741],[52.258091,10.5176],[52.258129,10.51773],[52.25827,10.51829],[52.258301,10.51847],[52.258419,10.51958],[52.258438,10.51976],[52.25845,10.51986],[52.258469,10.51998],[52.258492,10.52017],[52.258518,10.52044],[52.25853,10.52063],[52.258549,10.52086],[52.258572,10.52103],[52.258579,10.52118],[52.258629,10.52202],[52.25864,10.52244],[52.258629,10.52271],[52.258591,10.52299],[52.258572,10.52313],[52.258221,10.52473],[52.258148,10.52533],[52.258072,10.52552],[52.258011,10.52568],[52.257549,10.5265],[52.257381,10.52682],[52.25729,10.52702],[52.257221,10.52748],[52.25724,10.52761],[52.257301,10.52773],[52.25742,10.52788],[52.257839,10.52808],[52.258129,10.52922],[52.258148,10.52937],[52.258171,10.52956],[52.258179,10.52965],[52.258179,10.52971],[52.258221,10.53014],[52.25819,10.5304],[52.25816,10.53077],[52.258041,10.53124],[52.2579,10.53154],[52.257851,10.53166],[52.257431,10.53234],[52.256771,10.53322],[52.256779,10.53344],[52.25679,10.5336],[52.25676,10.53419],[52.256729,10.53569],[52.256729,10.53618],[52.25676,10.5373],[52.256771,10.53785],[52.256771,10.53799],[52.25676,10.53914],[52.25679,10.54003],[52.25679,10.54019],[52.25679,10.54041],[52.256809,10.54116],[52.256859,10.54191],[52.256901,10.54271],[52.256939,10.54357],[52.256969,10.54437],[52.257038,10.54484],[52.2575,10.54602],[52.257179,10.54673],[52.25708,10.54695],[52.256519,10.54822],[52.256451,10.54837],[52.25626,10.54881],[52.25618,10.54901],[52.256039,10.54933],[52.255661,10.55026],[52.255451,10.55102],[52.255402,10.55127],[52.25536,10.5515],[52.25536,10.55155],[52.255341,10.55168],[52.255329,10.55179],[52.255291,10.55252],[52.2551,10.55605],[52.255081,10.55641],[52.255058,10.5568],[52.255051,10.55711],[52.255001,10.55799],[52.25494,10.55907],[52.254871,10.56043],[52.25486,10.56078],[52.254829,10.56136],[52.254799,10.56178],[52.254799,10.5619],[52.254791,10.56199],[52.254768,10.56238],[52.254761,10.5626],[52.254742,10.56274],[52.254608,10.56345],[52.254372,10.56431],[52.253479,10.56742],[52.253311,10.56817],[52.253281,10.56864],[52.253239,10.56933],[52.253151,10.56974],[52.25309,10.56996],[52.25272,10.57139],[52.252621,10.5717],[52.25256,10.57192],[52.25251,10.57219],[52.25238,10.57278],[52.2523,10.57347],[52.252232,10.57421],[52.252171,10.57485],[52.252079,10.57553],[52.25193,10.57646],[52.251839,10.57706],[52.25177,10.57778],[52.25172,10.57896],[52.25169,10.57987],[52.251678,10.58023],[52.251671,10.58064],[52.251659,10.58084],[52.251621,10.58155],[52.25156,10.58231],[52.251511,10.58282],[52.25145,10.5833],[52.251331,10.58412],[52.25119,10.58498],[52.251019,10.58589],[52.250858,10.58676],[52.250801,10.5871],[52.250751,10.58744],[52.25071,10.58784],[52.250671,10.58829],[52.250629,10.58941],[52.250622,10.58982],[52.250599,10.59071],[52.250591,10.59101],[52.250599,10.59133],[52.25061,10.59159],[52.250629,10.5918],[52.250648,10.59226],[52.25066,10.5926],[52.250671,10.59282],[52.25066,10.59298],[52.25058,10.5961],[52.25058,10.59637],[52.250568,10.59743],[52.250549,10.59866],[52.250568,10.59927],[52.25058,10.59963],[52.250599,10.59994],[52.250622,10.60029],[52.25066,10.60063],[52.250729,10.60131],[52.250809,10.60186],[52.251091,10.60332],[52.251671,10.60544],[52.251919,10.60626],[52.252609,10.60865],[52.252651,10.60877],[52.2528,10.6093],[52.252899,10.60962],[52.25293,10.60973],[52.25304,10.61004],[52.253239,10.61043],[52.25341,10.61063],[52.25375,10.61105],[52.25404,10.61149],[52.254211,10.61185],[52.254318,10.6123],[52.254391,10.61287],[52.254391,10.61342],[52.254349,10.61408],[52.25433,10.61439],[52.25423,10.61604],[52.254211,10.61643],[52.254169,10.61759],[52.254131,10.61807],[52.254082,10.61859],[52.25388,10.62083],[52.253712,10.62227],[52.2537,10.6224],[52.25367,10.6227],[52.253639,10.62294],[52.25346,10.62457],[52.253269,10.62691],[52.25312,10.62961],[52.25304,10.6306],[52.252979,10.63108],[52.252869,10.63166],[52.252689,10.63234],[52.252419,10.63314],[52.25206,10.63422],[52.25193,10.6347],[52.251781,10.63532],[52.251652,10.63612],[52.251461,10.63732],[52.251148,10.63942],[52.250999,10.64044],[52.250858,10.6414],[52.250759,10.64203],[52.250641,10.6428],[52.250381,10.64449],[52.250259,10.64528],[52.250172,10.64589],[52.250111,10.64632],[52.250031,10.64687],[52.249981,10.64717],[52.249939,10.64754],[52.249901,10.6479],[52.249828,10.64844],[52.249771,10.64888],[52.249722,10.64914],[52.249371,10.65051],[52.2491,10.65171],[52.249031,10.65197],[52.248951,10.65232],[52.248711,10.65341],[52.24847,10.65452],[52.248371,10.65499],[52.24831,10.65543],[52.248249,10.65587],[52.24815,10.6566],[52.248119,10.65684],[52.24789,10.65846],[52.247791,10.65905],[52.247669,10.65961],[52.24741,10.66067],[52.247299,10.66106],[52.247181,10.66157],[52.24715,10.66185],[52.24715,10.66216],[52.2472,10.66243],[52.24728,10.66263],[52.247398,10.66285],[52.246899,10.66382],[52.246712,10.66426],[52.246311,10.66531],[52.246052,10.66615],[52.2458,10.66715],[52.24564,10.66809],[52.245571,10.6691],[52.245579,10.67],[52.24564,10.67071],[52.24588,10.67254],[52.24601,10.67392],[52.24604,10.6748],[52.246059,10.67679],[52.246109,10.68136],[52.24622,10.68779],[52.246269,10.69096],[52.246349,10.69641],[52.24638,10.69709],[52.246449,10.69756],[52.246552,10.69812],[52.247299,10.70168],[52.24736,10.70196],[52.247509,10.70289],[52.24757,10.70351],[52.24791,10.70787],[52.248119,10.71046],[52.248192,10.71163],[52.24818,10.71246],[52.24815,10.71347],[52.24807,10.71456],[52.247662,10.71775],[52.247398,10.71977],[52.24736,10.72046],[52.24733,10.72124],[52.247341,10.72199],[52.24741,10.72266],[52.247501,10.72338],[52.247601,10.72399],[52.247711,10.7246],[52.247749,10.72478],[52.247822,10.72517],[52.247921,10.72593],[52.247971,10.72647],[52.248051,10.72834],[52.2481,10.72871],[52.24826,10.7296],[52.248589,10.73071],[52.248901,10.7314],[52.24918,10.73188],[52.2495,10.73231],[52.25008,10.73286],[52.25153,10.73367],[52.25211,10.73411],[52.25248,10.7345],[52.252762,10.73479],[52.253311,10.73551],[52.25388,10.73658],[52.254238,10.73757],[52.254509,10.73838],[52.255268,10.74136],[52.256168,10.74481],[52.256741,10.74663],[52.25716,10.74795],[52.257339,10.74895],[52.257431,10.75018],[52.257408,10.75078],[52.257351,10.75207],[52.257301,10.75248],[52.257179,10.75321],[52.25692,10.75483],[52.256851,10.75552],[52.25687,10.75621],[52.256989,10.75687],[52.257092,10.75725],[52.257462,10.75819],[52.257832,10.75925],[52.257931,10.75968],[52.258049,10.76066],[52.258091,10.76125],[52.257881,10.76647],[52.25761,10.77562],[52.257542,10.77914],[52.257568,10.78237],[52.257629,10.78574],[52.257641,10.78651],[52.25766,10.7891],[52.25753,10.79077],[52.257191,10.7927],[52.257069,10.79328],[52.256302,10.79704],[52.255711,10.80058],[52.25563,10.80104],[52.255409,10.80188],[52.255211,10.80257],[52.25507,10.8031],[52.254929,10.8036],[52.25465,10.80458],[52.25436,10.80561],[52.254181,10.80628],[52.253941,10.80714],[52.253769,10.80774],[52.253578,10.80843],[52.25322,10.80841],[52.25087,10.80976],[52.24966,10.81041],[52.248779,10.8109],[52.247662,10.81151],[52.247581,10.81177],[52.247391,10.81294],[52.24736,10.81382],[52.24741,10.81467],[52.24749,10.81534],[52.247398,10.81545],[52.247181,10.8155],[52.246941,10.81555],[52.246731,10.81571],[52.24654,10.81594],[52.24633,10.81625],[52.246201,10.81644],[52.245991,10.81677],[52.245892,10.81691],[52.245762,10.81702],[52.245209,10.81715],[52.245098,10.8174],[52.24498,10.81784],[52.244831,10.8183],[52.244659,10.81839],[52.244659,10.81899],[52.244499,10.81996],[52.24427,10.82084],[52.24419,10.82107],[52.244091,10.82131],[52.243839,10.82225],[52.243729,10.82296],[52.24369,10.82368],[52.243698,10.82408],[52.243759,10.82441],[52.2435,10.82495],[52.24337,10.82537],[52.243149,10.82608],[52.242828,10.82695],[52.242599,10.82746],[52.242279,10.82808],[52.241859,10.82867],[52.241348,10.82919],[52.240841,10.82973],[52.240479,10.83028],[52.240238,10.83071],[52.239971,10.83129],[52.239761,10.83181],[52.23954,10.83232],[52.2393,10.83291],[52.238972,10.83356],[52.238541,10.8343],[52.238338,10.83461],[52.238121,10.83499],[52.238022,10.83527],[52.237839,10.83584],[52.237492,10.83699],[52.237282,10.83757],[52.237019,10.83807],[52.236549,10.83878],[52.236149,10.8393],[52.23563,10.84002],[52.235149,10.84087],[52.234901,10.84149],[52.234711,10.84213],[52.234612,10.84263],[52.23428,10.8451],[52.23418,10.84572],[52.233971,10.84657],[52.233669,10.84747],[52.233269,10.84842],[52.23214,10.8506],[52.23172,10.85169],[52.231522,10.85233],[52.231331,10.85301],[52.231152,10.8538],[52.230991,10.85471],[52.230888,10.85566],[52.230839,10.85725],[52.2309,10.85835],[52.23098,10.86005],[52.230949,10.86117],[52.230801,10.86258],[52.230621,10.86392],[52.23045,10.86524],[52.230011,10.86873],[52.2299,10.86954],[52.22974,10.87025],[52.22958,10.87091],[52.229012,10.87293],[52.228249,10.87563],[52.227058,10.87989],[52.226898,10.88056],[52.22681,10.88113],[52.226742,10.88184],[52.226719,10.88253],[52.226749,10.88309],[52.226791,10.88348],[52.227322,10.88653],[52.227459,10.88749],[52.227539,10.88835],[52.22757,10.8892],[52.22752,10.89261],[52.227509,10.89457],[52.227581,10.89568],[52.22784,10.89781],[52.228088,10.89973],[52.228199,10.90049],[52.228222,10.90107],[52.22813,10.90174],[52.22794,10.90265],[52.227798,10.90316],[52.2276,10.9038],[52.227501,10.90417],[52.22736,10.90465],[52.227291,10.90493],[52.227261,10.90507],[52.22723,10.90532],[52.227211,10.90543],[52.22718,10.9061],[52.2272,10.90652],[52.227261,10.90735],[52.227291,10.9087],[52.227291,10.909],[52.227261,10.90921],[52.227249,10.90933],[52.227219,10.90943],[52.227119,10.90979],[52.227051,10.90996],[52.227032,10.91003],[52.227001,10.91009],[52.22694,10.91025],[52.22678,10.91064],[52.226589,10.91126],[52.226479,10.91175],[52.22644,10.91222],[52.22644,10.91355],[52.226452,10.91425],[52.22646,10.91466],[52.226528,10.91968],[52.226509,10.92023],[52.226452,10.92086],[52.22625,10.92221],[52.2258,10.92478],[52.22578,10.92489],[52.224869,10.92997],[52.224731,10.93093],[52.224659,10.93162],[52.224602,10.93263],[52.224602,10.93353],[52.22464,10.93647],[52.224609,10.93715],[52.224548,10.9378],[52.22443,10.93919],[52.2243,10.9405],[52.22422,10.94178],[52.224201,10.94259],[52.224209,10.94344],[52.224258,10.94435],[52.224289,10.94466],[52.224319,10.94499],[52.2248,10.949],[52.225109,10.9515],[52.225208,10.95241],[52.22525,10.95284],[52.225269,10.95336],[52.225269,10.9547],[52.225311,10.9577],[52.22533,10.95813],[52.225349,10.95844],[52.225399,10.95877],[52.225491,10.95942],[52.225811,10.96088],[52.22596,10.96171],[52.226139,10.96284],[52.22628,10.96419],[52.227501,10.97507],[52.227829,10.97855],[52.22789,10.97933],[52.227959,10.9802],[52.227989,10.9805],[52.228611,10.98767],[52.228649,10.98809],[52.228821,10.98973],[52.228951,10.99107],[52.229031,10.99189],[52.22905,10.99252],[52.229061,10.99262],[52.22908,10.99292],[52.229111,10.99327],[52.22916,10.9939],[52.229179,10.99446],[52.229191,10.9952],[52.229191,10.99545],[52.229191,10.99547],[52.229191,10.99598],[52.229191,10.99642],[52.229179,10.9974],[52.229191,10.99778],[52.229099,10.99805],[52.228851,10.99872],[52.228661,10.9993],[52.228119,11.00087],[52.227829,11.00178],[52.227261,11.00368],[52.227089,11.00392],[52.227001,11.00409],[52.226879,11.00433],[52.22654,11.00491],[52.22646,11.00505],[52.226391,11.00515],[52.225868,11.00605],[52.225761,11.00624],[52.22562,11.00646],[52.225552,11.00657],[52.225109,11.00729],[52.22501,11.00748],[52.224911,11.00769],[52.224819,11.00795],[52.22472,11.00825],[52.224541,11.0089],[52.224468,11.00914],[52.22443,11.00929],[52.224411,11.00939],[52.22435,11.00977],[52.224331,11.00998],[52.224319,11.01004],[52.224331,11.01016],[52.224339,11.0104],[52.224369,11.01115],[52.224361,11.01134],[52.22435,11.01153],[52.224312,11.01173],[52.224281,11.01192],[52.224159,11.0125],[52.22414,11.01279],[52.224152,11.01302],[52.224171,11.01332],[52.22419,11.0134],[52.224232,11.01362],[52.224331,11.01392],[52.224609,11.01436],[52.22493,11.0148],[52.224972,11.01492],[52.224979,11.01498],[52.224972,11.01505],[52.22493,11.01514],[52.2244,11.01569],[52.223412,11.01671],[52.22332,11.01682],[52.223282,11.01687],[52.22324,11.01695],[52.22319,11.01706],[52.223141,11.01721],[52.22303,11.01757],[52.222672,11.01889],[52.222382,11.01988],[52.22229,11.02012],[52.222229,11.02032],[52.22216,11.0205],[52.22208,11.02067],[52.221722,11.02143],[52.221661,11.02154],[52.221371,11.02217],[52.22113,11.02269],[52.221111,11.02273],[52.221069,11.02283],[52.220749,11.0235],[52.219719,11.02577],[52.219608,11.02602],[52.219231,11.02686],[52.21859,11.02823],[52.21846,11.0285],[52.218399,11.02863],[52.218369,11.02868],[52.218349,11.02873],[52.217781,11.03005],[52.217739,11.03014],[52.217709,11.03022],[52.217651,11.03042],[52.217602,11.03062],[52.217571,11.03084],[52.217541,11.03106],[52.217529,11.03129],[52.217548,11.0315],[52.217579,11.0317],[52.217609,11.03189],[52.217651,11.03202],[52.217709,11.03227],[52.2178,11.03253],[52.217918,11.03294],[52.21793,11.03298],[52.218021,11.03329],[52.218109,11.03376],[52.21814,11.0341],[52.21814,11.03437],[52.218121,11.0347],[52.21809,11.03499],[52.21809,11.03504],[52.217979,11.03551],[52.2174,11.03808],[52.216759,11.04061],[52.216572,11.04135],[52.216438,11.04186],[52.216301,11.04218],[52.21619,11.04238],[52.216061,11.04253],[52.215961,11.0426],[52.21587,11.04265],[52.215939,11.04284],[52.216099,11.04326],[52.216141,11.04336],[52.21637,11.04412],[52.21645,11.0445],[52.21674,11.04601],[52.217159,11.04815],[52.21796,11.05234],[52.21851,11.05204],[52.219109,11.0517],[52.21936,11.05312],[52.219398,11.05338],[52.219471,11.0538],[52.219501,11.05389],[52.219551,11.05393],[52.219662,11.05397],[52.21981,11.05401],[52.21994,11.054],[52.22007,11.054],[52.220058,11.05415],[52.220081,11.0543],[52.220112,11.05444],[52.220139,11.05463],[52.22015,11.05477],[52.220131,11.05494],[52.21994,11.05556],[52.219559,11.05661],[52.219021,11.05819],[52.218639,11.05949],[52.218262,11.06097],[52.217609,11.06406],[52.217312,11.06595],[52.21701,11.06904],[52.216759,11.07434],[52.216389,11.08081],[52.21616,11.08396],[52.21582,11.08679],[52.215549,11.08848],[52.215321,11.08966],[52.215,11.091],[52.21471,11.09206],[52.21439,11.09308],[52.214119,11.09393],[52.213581,11.09541],[52.213032,11.097],[52.212528,11.09842],[52.2122,11.09948],[52.211971,11.10029],[52.211639,11.10148],[52.21032,11.10647],[52.209942,11.10794],[52.209572,11.10945],[52.209259,11.11086],[52.209019,11.11196],[52.208809,11.11301],[52.20853,11.11437],[52.20821,11.11676],[52.208031,11.11851],[52.20726,11.1314],[52.207218,11.13201],[52.20718,11.1333],[52.20715,11.13446],[52.207142,11.13474],[52.207142,11.13663],[52.20723,11.13807],[52.207298,11.1391],[52.208012,11.14741],[52.20826,11.1505],[52.208382,11.15266],[52.208431,11.15428],[52.208389,11.15683],[52.20826,11.15952],[52.20808,11.16168],[52.207748,11.16434],[52.207439,11.16667],[52.207272,11.16756],[52.204609,11.17897],[52.204288,11.18041],[52.20369,11.18307],[52.20295,11.18697],[52.202518,11.19054],[52.202309,11.19309],[52.201889,11.20136],[52.201839,11.20206],[52.200691,11.22617],[52.200531,11.23064],[52.20031,11.23465],[52.20018,11.23625],[52.19997,11.23853],[52.199551,11.24218],[52.199379,11.24359],[52.198601,11.24932],[52.198441,11.2506],[52.196831,11.26289],[52.196758,11.26343],[52.19664,11.26425],[52.19611,11.2682],[52.195919,11.26956],[52.195831,11.27021],[52.192509,11.29526],[52.192451,11.29572],[52.191921,11.2998],[52.191681,11.30193],[52.191631,11.30242],[52.19038,11.31644],[52.188,11.34272],[52.18729,11.35063],[52.18716,11.35227],[52.187069,11.35391],[52.187012,11.35556],[52.186981,11.35735],[52.186951,11.35924],[52.186958,11.36334],[52.187,11.36713],[52.18713,11.38555],[52.18718,11.38968],[52.18718,11.38998],[52.187191,11.39058],[52.187191,11.39091],[52.18721,11.39275],[52.18779,11.41141],[52.187809,11.41185],[52.187962,11.41739],[52.18808,11.42094],[52.188099,11.42154],[52.18819,11.425],[52.18829,11.42803],[52.188339,11.43127],[52.18832,11.43313],[52.18821,11.43495],[52.188049,11.43668],[52.187771,11.43853],[52.18734,11.44089],[52.186981,11.44246],[52.186001,11.44599],[52.185928,11.44622],[52.185829,11.44653],[52.183041,11.45638],[52.181412,11.46197],[52.17691,11.47781],[52.176159,11.4802],[52.175781,11.48138],[52.175251,11.48278],[52.174389,11.48491],[52.173431,11.48724],[52.17202,11.49069],[52.16993,11.49577],[52.168049,11.50037],[52.167519,11.50173],[52.16703,11.50307],[52.16655,11.50453],[52.166279,11.50544],[52.165939,11.50677],[52.165649,11.50804],[52.165401,11.50927],[52.16523,11.51026],[52.16507,11.51135],[52.16494,11.51238],[52.164829,11.51368],[52.164749,11.5148],[52.1647,11.51587],[52.1647,11.51604],[52.164688,11.51623],[52.16468,11.51743],[52.16468,11.51825],[52.164742,11.5198],[52.164879,11.52164],[52.164982,11.52249],[52.165081,11.52328],[52.165131,11.52365],[52.16539,11.52544],[52.165421,11.52569],[52.166431,11.53267],[52.166611,11.53392],[52.167301,11.53847],[52.1674,11.53915],[52.169441,11.55281],[52.16991,11.55575],[52.170231,11.55711],[52.170559,11.55839],[52.171291,11.56133],[52.17382,11.57087],[52.175751,11.57812],[52.178219,11.58746],[52.182308,11.603],[52.183929,11.60919],[52.185032,11.61315],[52.185822,11.61628],[52.186619,11.61919],[52.187531,11.62238],[52.188011,11.62375],[52.18858,11.62524],[52.18866,11.62546],[52.18959,11.62733],[52.190868,11.62959],[52.192478,11.63237],[52.199959,11.6454],[52.200359,11.64613],[52.20084,11.64695],[52.201038,11.64729],[52.20842,11.66016],[52.208679,11.66065],[52.209332,11.66179],[52.21109,11.66484],[52.21154,11.66565],[52.211788,11.66607],[52.213799,11.66959],[52.215851,11.67339],[52.216461,11.67478],[52.217049,11.67633],[52.217369,11.67731],[52.217838,11.67877],[52.218311,11.68052],[52.21854,11.68151],[52.21907,11.68445],[52.21944,11.68759],[52.219589,11.6893],[52.219601,11.68945],[52.219631,11.68983],[52.221169,11.70681],[52.22168,11.71211],[52.222061,11.71632],[52.223511,11.73166],[52.223629,11.73272],[52.223759,11.73362],[52.225361,11.74258],[52.22699,11.75169],[52.22805,11.75741],[52.228409,11.75924],[52.228741,11.76117],[52.229019,11.76374],[52.229149,11.76571],[52.229179,11.76778],[52.22897,11.77192],[52.227791,11.7904],[52.22768,11.79214],[52.2276,11.79329],[52.227291,11.79804],[52.226688,11.80733],[52.22665,11.80793],[52.226009,11.81791],[52.225689,11.82313],[52.22551,11.82587],[52.225471,11.82662],[52.22541,11.82819],[52.22543,11.83002],[52.225471,11.83125],[52.225559,11.83267],[52.225651,11.83379],[52.227291,11.84773],[52.227551,11.84997],[52.227631,11.85062],[52.232159,11.88891],[52.23251,11.89181],[52.232639,11.89276],[52.232731,11.89358],[52.233051,11.89658],[52.23336,11.89995],[52.233601,11.90274],[52.233768,11.90531],[52.233879,11.90798],[52.234348,11.92429],[52.234779,11.94053],[52.235249,11.95714],[52.235409,11.96376],[52.2356,11.97119],[52.235748,11.97729],[52.23579,11.97894],[52.235771,11.98051],[52.235699,11.98249],[52.235432,11.98812],[52.235081,11.99699],[52.234341,12.01401],[52.233761,12.02773],[52.233421,12.03474],[52.233101,12.04213],[52.232632,12.05301],[52.232609,12.0542],[52.23262,12.05541],[52.23267,12.05675],[52.232841,12.0587],[52.23296,12.06002],[52.233101,12.06113],[52.233459,12.06384],[52.233681,12.06548],[52.233768,12.0661],[52.243149,12.13994],[52.24379,12.14501],[52.249649,12.19065],[52.252121,12.21038],[52.25235,12.21264],[52.252441,12.2143],[52.252491,12.21691],[52.252319,12.2199],[52.251801,12.22503],[52.25174,12.22572],[52.249069,12.25665],[52.248631,12.26174],[52.24828,12.2661],[52.24699,12.28226],[52.24678,12.28543],[52.246658,12.2885],[52.24675,12.29159],[52.246891,12.29349],[52.247169,12.29568],[52.24765,12.29831],[52.24847,12.30145],[52.248791,12.30246],[52.249241,12.30368],[52.2495,12.30437],[52.249821,12.30523],[52.253349,12.31351],[52.253639,12.31419],[52.26292,12.33628],[52.263882,12.33891],[52.264481,12.34107],[52.26495,12.34305],[52.265339,12.34523],[52.267719,12.36252],[52.277241,12.4319],[52.27755,12.43401],[52.278061,12.43658],[52.278561,12.43851],[52.279259,12.4407],[52.2799,12.44244],[52.280529,12.44386],[52.281189,12.44522],[52.281849,12.4464],[52.28727,12.45523],[52.28936,12.45828],[52.290829,12.46031],[52.292488,12.46235],[52.295609,12.46595],[52.299759,12.47067],[52.304459,12.47609],[52.30703,12.47905],[52.30975,12.48217],[52.312519,12.48525],[52.314991,12.48782],[52.318409,12.49088],[52.323139,12.49511],[52.326832,12.49837],[52.33028,12.50148],[52.333721,12.50458],[52.335201,12.50586],[52.335838,12.50645],[52.336571,12.50723],[52.337528,12.5084],[52.33836,12.50953],[52.338982,12.51055],[52.33923,12.51097],[52.340118,12.51264],[52.340401,12.51326],[52.340809,12.51413],[52.341591,12.51603],[52.342892,12.51968],[52.344269,12.52359],[52.347919,12.53389],[52.348782,12.53666],[52.349419,12.53922],[52.349751,12.54055],[52.349819,12.5409],[52.350552,12.54517],[52.35088,12.54797],[52.351059,12.55027],[52.351181,12.55295],[52.351189,12.55519],[52.351158,12.55847],[52.35107,12.56422],[52.350922,12.57661],[52.350681,12.59304],[52.350632,12.59599],[52.35059,12.59717],[52.350498,12.5986],[52.35041,12.59981],[52.350182,12.60171],[52.349911,12.60367],[52.349659,12.60507],[52.34938,12.60644],[52.348999,12.60803],[52.348122,12.61133],[52.344818,12.62296],[52.34457,12.62384],[52.344391,12.62446],[52.34346,12.62779],[52.342911,12.62973],[52.34272,12.63038],[52.33942,12.64209],[52.339191,12.64297],[52.338009,12.64715],[52.33754,12.64889],[52.33662,12.65224],[52.33625,12.6537],[52.335899,12.65536],[52.33567,12.65673],[52.335419,12.65854],[52.3353,12.65974],[52.335209,12.66093],[52.335152,12.66218],[52.335121,12.66309],[52.335129,12.66403],[52.335171,12.6655],[52.33527,12.66721],[52.335411,12.66883],[52.336739,12.68137],[52.336811,12.68207],[52.33744,12.68802],[52.337521,12.68873],[52.338161,12.69472],[52.33852,12.6982],[52.338631,12.69936],[52.338799,12.70087],[52.339081,12.70356],[52.339729,12.70973],[52.339951,12.71174],[52.340092,12.71322],[52.34016,12.7143],[52.34021,12.71555],[52.340221,12.71697],[52.340179,12.71834],[52.340111,12.71968],[52.34005,12.72069],[52.34,12.72143],[52.339859,12.72375],[52.33979,12.72533],[52.339771,12.72611],[52.339729,12.72804],[52.339642,12.73175],[52.339588,12.73409],[52.339611,12.73499],[52.339661,12.73628],[52.339729,12.73744],[52.340691,12.75166],[52.341099,12.7577],[52.341141,12.75848],[52.341209,12.75966],[52.34127,12.76134],[52.341259,12.76291],[52.341171,12.76464],[52.341049,12.76608],[52.340149,12.7758],[52.339111,12.78689],[52.338871,12.78991],[52.338409,12.79716],[52.338299,12.79892],[52.338009,12.80411],[52.33791,12.80584],[52.33783,12.80681],[52.337711,12.80768],[52.337509,12.80871],[52.33728,12.8097],[52.33696,12.8107],[52.33646,12.81194],[52.336109,12.81268],[52.33569,12.81338],[52.33519,12.81405],[52.33503,12.81426],[52.334839,12.81447],[52.334141,12.81513],[52.333599,12.81561],[52.332981,12.81612],[52.332359,12.81673],[52.331921,12.81723],[52.331402,12.81794],[52.330929,12.81869],[52.330479,12.81961],[52.33017,12.8204],[52.32988,12.82124],[52.328949,12.82439],[52.327759,12.82837],[52.324871,12.83843],[52.323738,12.84238],[52.322739,12.84587],[52.320759,12.85271],[52.320202,12.85459],[52.319859,12.85564],[52.31958,12.85649],[52.31926,12.85738],[52.318802,12.85852],[52.318409,12.85941],[52.317501,12.8613],[52.31609,12.86413],[52.313278,12.86984],[52.31123,12.874],[52.31044,12.87558],[52.310322,12.87582],[52.309509,12.87753],[52.306961,12.8826],[52.305679,12.88513],[52.298168,12.90026],[52.297329,12.90199],[52.29649,12.90364],[52.295471,12.90573],[52.292488,12.9117],[52.291592,12.91353],[52.291409,12.91394],[52.291069,12.91483],[52.29092,12.9154],[52.290779,12.91593],[52.29063,12.91674],[52.29052,12.91769],[52.290482,12.91831],[52.290451,12.91879],[52.290451,12.91924],[52.290482,12.91992],[52.290581,12.92099],[52.290749,12.92183],[52.29097,12.92274],[52.291271,12.92371],[52.291809,12.92508],[52.29211,12.92599],[52.292511,12.92743],[52.292961,12.92949],[52.298199,12.95228],[52.299309,12.95707],[52.301849,12.96836],[52.30249,12.97116],[52.302849,12.97277],[52.30302,12.97345],[52.303169,12.9741],[52.303341,12.97503],[52.303471,12.97595],[52.303539,12.97658],[52.3036,12.97733],[52.303638,12.97817],[52.303379,13.00804],[52.303322,13.00866],[52.30328,13.00948],[52.303249,13.01043],[52.303219,13.01093],[52.303162,13.01145],[52.303059,13.01204],[52.30291,13.01397],[52.302849,13.01437],[52.302799,13.01466],[52.302719,13.01506],[52.302582,13.01558],[52.30254,13.01572],[52.302441,13.01615],[52.302422,13.01621],[52.30201,13.01766],[52.301929,13.01793],[52.30191,13.01802],[52.30188,13.01818],[52.301861,13.01842],[52.301819,13.01867],[52.301571,13.01948],[52.30154,13.01991],[52.30014,13.02485],[52.299999,13.02532],[52.299839,13.02589],[52.29945,13.0273],[52.299179,13.02828],[52.298981,13.029],[52.298851,13.02948],[52.298691,13.03007],[52.298599,13.03051],[52.298489,13.031],[52.298409,13.0315],[52.298351,13.03191],[52.298302,13.03235],[52.29826,13.03275],[52.298229,13.03316],[52.298222,13.03357],[52.29821,13.03402],[52.29821,13.03448],[52.29821,13.03477],[52.298229,13.03535],[52.298248,13.03579],[52.298309,13.03639],[52.29837,13.03689],[52.29847,13.0375],[52.29858,13.03805],[52.298691,13.0386],[52.298889,13.0393],[52.299019,13.03977],[52.29924,13.04038],[52.30006,13.04263],[52.300331,13.04338],[52.30048,13.04386],[52.300621,13.04441],[52.300739,13.04491],[52.300819,13.04535],[52.300911,13.04586],[52.30098,13.04634],[52.301041,13.04686],[52.30109,13.04735],[52.301121,13.04784],[52.30114,13.04834],[52.30114,13.04896],[52.300999,13.05311],[52.300701,13.06163],[52.300671,13.06223],[52.300499,13.06709],[52.300159,13.07772],[52.30011,13.07952],[52.300049,13.08123],[52.30003,13.08219],[52.30006,13.08293],[52.300091,13.08362],[52.30014,13.0843],[52.300228,13.0852],[52.300331,13.08582],[52.300541,13.08696],[52.302139,13.09517],[52.302139,13.09526],[52.302261,13.09585],[52.302559,13.09734],[52.30267,13.09799],[52.30275,13.09857],[52.30283,13.09933],[52.30286,13.09979],[52.302898,13.10039],[52.302921,13.10091],[52.302929,13.10139],[52.302921,13.10196],[52.302879,13.10399],[52.302631,13.11285],[52.30257,13.11635],[52.30254,13.11712],[52.302391,13.12387],[52.302311,13.12553],[52.301029,13.14169],[52.300968,13.14249],[52.30085,13.14398],[52.300831,13.14447],[52.300812,13.14488],[52.300812,13.14539],[52.3008,13.14592],[52.30085,13.15346],[52.300819,13.15558],[52.3008,13.15612],[52.300781,13.15662],[52.300739,13.15714],[52.300209,13.16418],[52.299351,13.17524],[52.298931,13.18064],[52.29892,13.18097],[52.298908,13.18142],[52.298908,13.1821],[52.29892,13.18257],[52.298931,13.18301],[52.298962,13.18349],[52.299,13.18391],[52.299042,13.18431],[52.299091,13.18475],[52.299149,13.18519],[52.299221,13.18569],[52.299301,13.18608],[52.29937,13.18646],[52.299431,13.18678],[52.299561,13.18732],[52.30003,13.18925],[52.30019,13.18995],[52.30151,13.1953],[52.301579,13.19566],[52.30167,13.19612],[52.301731,13.19652],[52.3018,13.19693],[52.301849,13.1973],[52.301899,13.19773],[52.301929,13.19806],[52.30196,13.19841],[52.301979,13.19887],[52.30201,13.19935],[52.302021,13.19977],[52.302021,13.20011],[52.30201,13.20053],[52.30201,13.20089],[52.301998,13.20135],[52.301891,13.20437],[52.301739,13.20819],[52.30159,13.21251],[52.30143,13.21658],[52.301399,13.21761],[52.30101,13.22814],[52.300629,13.23876],[52.300362,13.24577],[52.300339,13.24618],[52.300331,13.24667],[52.30032,13.24713],[52.30032,13.24761],[52.30032,13.24802],[52.300331,13.24849],[52.30035,13.24896],[52.300369,13.24944],[52.300419,13.24996],[52.300461,13.25048],[52.300529,13.25102],[52.300598,13.25154],[52.300701,13.25207],[52.300812,13.25259],[52.300919,13.25312],[52.301041,13.2536],[52.30117,13.25409],[52.301331,13.25467],[52.302052,13.25682],[52.303631,13.26149],[52.306171,13.26909],[52.306549,13.27018],[52.307129,13.27192],[52.307289,13.27238],[52.30743,13.27285],[52.307571,13.27335],[52.307701,13.27383],[52.307819,13.2743],[52.307941,13.27481],[52.308048,13.27532],[52.30814,13.27581],[52.308239,13.27632],[52.308319,13.2768],[52.308392,13.27732],[52.308449,13.27784],[52.30851,13.27835],[52.308559,13.27889],[52.30859,13.27942],[52.308601,13.27994],[52.308609,13.28048],[52.30862,13.281],[52.308601,13.28153],[52.308571,13.28206],[52.308552,13.28255],[52.308498,13.28311],[52.30801,13.28764],[52.30764,13.2907],[52.307468,13.2923],[52.30743,13.29283],[52.307388,13.29332],[52.307369,13.29385],[52.30735,13.29491],[52.307259,13.2995],[52.307259,13.29988],[52.30722,13.30167],[52.307178,13.30244],[52.306789,13.30749],[52.30616,13.31553],[52.30563,13.32229],[52.305561,13.32336],[52.305519,13.32442],[52.3055,13.32547],[52.3055,13.32656],[52.305531,13.3276],[52.30558,13.32869],[52.30566,13.32976],[52.305771,13.33087],[52.305901,13.33203],[52.305969,13.33278],[52.306438,13.33712],[52.30653,13.33803],[52.307461,13.3466],[52.307571,13.34768],[52.307659,13.34873],[52.307709,13.34979],[52.307739,13.35073],[52.307751,13.35086],[52.307758,13.35191],[52.30769,13.36154],[52.30769,13.36237],[52.30761,13.37333],[52.30759,13.37434],[52.307549,13.37523],[52.307499,13.37612],[52.30743,13.37713],[52.306961,13.38394],[52.3069,13.38485],[52.306709,13.38766],[52.306549,13.38997],[52.30653,13.39038],[52.306259,13.39469],[52.30616,13.39737],[52.30603,13.40509],[52.305882,13.4151],[52.305882,13.41575],[52.305851,13.41721],[52.30584,13.41831],[52.305801,13.42242],[52.305828,13.42609],[52.305851,13.42757],[52.305931,13.43275],[52.30603,13.43915],[52.30608,13.44054],[52.306141,13.44131],[52.30616,13.4416],[52.306229,13.44238],[52.30629,13.4429],[52.306641,13.44551],[52.306839,13.4466],[52.307899,13.45187],[52.308128,13.45298],[52.30838,13.45421],[52.308769,13.45611],[52.30912,13.45786],[52.309681,13.46055],[52.309719,13.46078],[52.310341,13.4639],[52.310459,13.4645],[52.31131,13.4686],[52.311951,13.47177],[52.312611,13.47496],[52.312679,13.47535],[52.31353,13.47951],[52.313622,13.47995],[52.314789,13.48567],[52.315231,13.48783],[52.316971,13.49645],[52.317291,13.49799],[52.317951,13.50123],[52.3186,13.50442],[52.31881,13.50564],[52.318932,13.50642],[52.319031,13.50718],[52.319141,13.50822],[52.31921,13.50916],[52.31926,13.51001],[52.319302,13.51074],[52.319309,13.51155],[52.319321,13.51231],[52.319309,13.51293],[52.31929,13.51368],[52.319229,13.51505],[52.318851,13.52142],[52.318569,13.52585],[52.318359,13.52936],[52.31831,13.53107],[52.318279,13.53268],[52.31834,13.53601],[52.318371,13.53704],[52.318588,13.54471],[52.318771,13.55087],[52.31889,13.55457],[52.31889,13.55478],[52.318951,13.55658],[52.31897,13.55785],[52.319111,13.56125],[52.319141,13.56241],[52.319351,13.56982],[52.319481,13.57375],[52.319611,13.57905],[52.319679,13.58139],[52.319679,13.58179],[52.319672,13.58228],[52.319649,13.58274],[52.31963,13.58324],[52.319592,13.58371],[52.31953,13.58429],[52.319469,13.58477],[52.319401,13.5853],[52.319302,13.58579],[52.319199,13.5863],[52.319111,13.58674],[52.318981,13.58716],[52.318878,13.58758],[52.318771,13.588],[52.3186,13.58854],[52.318409,13.58908],[52.314541,13.59834],[52.313011,13.60187],[52.312778,13.60244],[52.31237,13.60355],[52.312092,13.60442],[52.311699,13.60583],[52.311562,13.60662],[52.31144,13.60741],[52.31134,13.60828],[52.311218,13.60965],[52.311131,13.61102],[52.31094,13.61475],[52.310749,13.61685],[52.310581,13.61942],[52.31041,13.62219],[52.310219,13.62503],[52.310089,13.62699],[52.31007,13.6275],[52.31007,13.62845],[52.31007,13.62939],[52.310169,13.63121],[52.310249,13.63253],[52.31028,13.63349],[52.310299,13.63427],[52.31039,13.63698],[52.31065,13.64389],[52.310699,13.64603],[52.310829,13.64817],[52.31089,13.64904],[52.311039,13.65133],[52.311359,13.65437],[52.311451,13.65497],[52.311939,13.65849],[52.312649,13.66256],[52.312679,13.6627],[52.312778,13.66331],[52.31284,13.66363],[52.313709,13.66821],[52.31422,13.67078],[52.316711,13.68074],[52.318481,13.68853],[52.32093,13.69869],[52.323811,13.71061],[52.324039,13.71157],[52.324181,13.71243],[52.324329,13.71357],[52.324421,13.7144],[52.324478,13.71538],[52.324501,13.7164],[52.32439,13.72013],[52.32423,13.72539],[52.324211,13.72651],[52.324032,13.73115],[52.323959,13.73364],[52.323719,13.73806],[52.323471,13.74205],[52.32333,13.74668],[52.32317,13.75164],[52.323151,13.75306],[52.323158,13.7541],[52.3232,13.75505],[52.323231,13.75592],[52.323261,13.7567],[52.32328,13.75751],[52.32328,13.75826],[52.323261,13.75934],[52.323231,13.76009],[52.32309,13.76171],[52.323009,13.76277],[52.32291,13.76362],[52.322769,13.76464],[52.322479,13.76632],[52.321991,13.76899],[52.321259,13.77266],[52.320969,13.7741],[52.319851,13.77939],[52.31921,13.78262],[52.318939,13.78396],[52.318501,13.78613],[52.317551,13.79078],[52.317509,13.79102],[52.317341,13.79181],[52.317108,13.7929],[52.31657,13.79519],[52.315449,13.79977],[52.315079,13.80129],[52.313332,13.80844],[52.31131,13.81651],[52.310841,13.81912],[52.310638,13.82042],[52.31049,13.8217],[52.310379,13.82292],[52.310299,13.8241],[52.310242,13.82523],[52.310211,13.82659],[52.310211,13.82763],[52.31028,13.82919],[52.31039,13.83102],[52.310612,13.83456],[52.310829,13.83808],[52.311031,13.84117],[52.312199,13.85973],[52.312481,13.86492],[52.31292,13.8716],[52.313129,13.87394],[52.3134,13.87599],[52.31377,13.87848],[52.315659,13.8905],[52.316002,13.89283],[52.316109,13.89382],[52.316139,13.89395],[52.316231,13.89513],[52.316341,13.89711],[52.316349,13.89743],[52.31636,13.89782],[52.316368,13.89843],[52.316368,13.89941],[52.316368,13.89974],[52.316319,13.9008],[52.316299,13.90126],[52.31628,13.90146],[52.316231,13.90217],[52.3162,13.90265],[52.31612,13.9035],[52.316051,13.90423],[52.315929,13.90506],[52.315769,13.90622],[52.31554,13.90753],[52.315449,13.90808],[52.31525,13.90935],[52.314678,13.91243],[52.313839,13.91717],[52.313591,13.91856],[52.313251,13.9206],[52.313,13.92272],[52.312859,13.92457],[52.312672,13.92828],[52.312469,13.93198],[52.31221,13.93685],[52.31189,13.94362],[52.311821,13.94501],[52.311699,13.94711],[52.3116,13.94925],[52.311531,13.95186],[52.311501,13.95388],[52.31152,13.95569],[52.31155,13.95647],[52.31155,13.95723],[52.31155,13.95759],[52.3116,13.95848],[52.311649,13.95939],[52.31171,13.96051],[52.31189,13.9633],[52.311958,13.96403],[52.312031,13.96476],[52.312111,13.96553],[52.312309,13.9676],[52.312679,13.97042],[52.313519,13.97695],[52.31419,13.98221],[52.315079,13.98901],[52.31559,13.99114],[52.316631,13.99535],[52.320862,14.01075],[52.32114,14.01174],[52.32254,14.01699],[52.327091,14.03302],[52.327888,14.03549],[52.32877,14.03817],[52.329361,14.03994],[52.329639,14.04085],[52.329868,14.04185],[52.330509,14.0449],[52.331181,14.04833],[52.332371,14.05431],[52.333389,14.0594],[52.33419,14.0635],[52.334278,14.06416],[52.334389,14.06499],[52.33445,14.06608],[52.33448,14.06779],[52.334492,14.06882],[52.334499,14.06961],[52.33453,14.0718],[52.33461,14.07611],[52.334621,14.07673],[52.334629,14.07948],[52.334641,14.0799],[52.33469,14.08319],[52.334709,14.08396],[52.33493,14.09404],[52.335129,14.10164],[52.335171,14.10379],[52.3353,14.10977],[52.33532,14.11047],[52.335442,14.1153],[52.335579,14.12059],[52.335781,14.12908],[52.335941,14.13594],[52.336109,14.14278],[52.336159,14.14419],[52.336269,14.14563],[52.336399,14.14698],[52.33659,14.14847],[52.336849,14.15005],[52.33704,14.15106],[52.337559,14.15323],[52.33905,14.15899],[52.339931,14.16226],[52.34087,14.16592],[52.3428,14.17333],[52.343361,14.17565],[52.343769,14.1781],[52.343922,14.18073],[52.343849,14.18342],[52.343418,14.1869],[52.342861,14.18989],[52.341751,14.19428],[52.34066,14.19715],[52.33857,14.20353],[52.337471,14.20915],[52.337059,14.21441],[52.33662,14.22597],[52.336029,14.24165],[52.33585,14.24465],[52.335609,14.24682],[52.335361,14.24863],[52.33493,14.2509],[52.334209,14.25371],[52.333839,14.25486],[52.333649,14.25542],[52.332611,14.25821],[52.330059,14.2653],[52.328659,14.26944],[52.328289,14.27081],[52.327721,14.2731],[52.327179,14.27573],[52.326401,14.27954],[52.325371,14.28448],[52.324718,14.2877],[52.324291,14.29105],[52.32399,14.29796],[52.323471,14.31189],[52.32296,14.32586],[52.322159,14.3474],[52.322029,14.35058],[52.321739,14.359],[52.321239,14.37253],[52.32095,14.37974],[52.320938,14.38024],[52.320881,14.38183],[52.32056,14.39143],[52.32029,14.39804],[52.32019,14.40253],[52.320221,14.41164],[52.32032,14.42128],[52.3204,14.43098],[52.320591,14.44889],[52.32069,14.45717],[52.320679,14.46126],[52.320641,14.46375],[52.320591,14.46598],[52.32053,14.46934],[52.320431,14.47422],[52.320412,14.47617],[52.320358,14.47841],[52.32019,14.48646],[52.320011,14.49741],[52.31992,14.50324],[52.319832,14.50629],[52.319721,14.50929],[52.319519,14.51284],[52.319302,14.51651],[52.319069,14.51992],[52.318989,14.5207],[52.31889,14.52167],[52.318729,14.52265],[52.318451,14.52381],[52.318111,14.52488],[52.317699,14.52601],[52.316898,14.52836],[52.316601,14.52915],[52.316311,14.52992],[52.31617,14.53036],[52.315948,14.53115],[52.315681,14.53209],[52.315552,14.53266],[52.315231,14.53412],[52.314899,14.53588],[52.31472,14.53705],[52.314548,14.53846],[52.314442,14.53961],[52.31435,14.54102],[52.314289,14.54354],[52.31432,14.54571],[52.314381,14.54728],[52.314388,14.54786],[52.31451,14.55143],[52.314579,14.55382],[52.31461,14.55563],[52.314621,14.55709],[52.31459,14.56008],[52.314548,14.56303],[52.314499,14.56659],[52.314579,14.56822],[52.314789,14.57063],[52.315029,14.57318],[52.31543,14.57768],[52.3158,14.58139],[52.316078,14.58404],[52.316212,14.58523],[52.316299,14.58615],[52.316319,14.58661],[52.31638,14.58742],[52.31649,14.58823],[52.316669,14.58991],[52.3167,14.59026],[52.31683,14.59127],[52.317039,14.59264],[52.317169,14.59328],[52.31818,14.59712],[52.320629,14.60601],[52.32198,14.61106],[52.32214,14.61163],[52.323078,14.6152],[52.324699,14.62109],[52.32518,14.62296],[52.325459,14.62435],[52.325741,14.62608],[52.326019,14.62822],[52.326092,14.6291],[52.326199,14.63064],[52.326248,14.63312],[52.32616,14.63536],[52.325989,14.63746],[52.325851,14.63898],[52.325691,14.64077],[52.325489,14.64297],[52.325272,14.64536],[52.32481,14.65007],[52.324631,14.65187],[52.324131,14.65751],[52.32412,14.65773],[52.323959,14.66148],[52.32394,14.66456],[52.324268,14.66852],[52.324959,14.67386],[52.325951,14.68193],[52.32679,14.68798],[52.32782,14.69577],[52.328308,14.69948],[52.328381,14.69991],[52.3288,14.70276],[52.32935,14.70716],[52.329762,14.71018],[52.33012,14.71311],[52.33057,14.71611],[52.330719,14.71743],[52.33099,14.71987],[52.331348,14.72298],[52.331509,14.72419],[52.332329,14.73033],[52.33297,14.7351],[52.333672,14.73998],[52.334278,14.74597],[52.334839,14.74961],[52.335121,14.75285],[52.33532,14.75599],[52.335251,14.76015],[52.335251,14.76259],[52.335251,14.76802],[52.335281,14.77738],[52.335312,14.78783],[52.335312,14.79524],[52.335312,14.8001],[52.335121,14.80287],[52.33474,14.80595],[52.334,14.80992],[52.3326,14.81719],[52.331188,14.82469],[52.329979,14.83098],[52.32896,14.83699],[52.328659,14.83905],[52.328522,14.84176],[52.328499,14.84256],[52.328541,14.84374],[52.32859,14.84496],[52.328621,14.84575],[52.32869,14.84637],[52.328739,14.84694],[52.328831,14.84776],[52.328869,14.84811],[52.329151,14.8501],[52.32988,14.85503],[52.333172,14.8756],[52.333542,14.87777],[52.334438,14.88401],[52.335011,14.8945],[52.33506,14.89729],[52.334839,14.90364],[52.33408,14.91253],[52.333851,14.91721],[52.333939,14.92066],[52.334221,14.92395],[52.33749,14.94239],[52.337959,14.94566],[52.33847,14.94963],[52.338371,14.95564],[52.337681,14.95993],[52.335072,14.97206],[52.333679,14.97842],[52.33279,14.98486],[52.332489,15.01421],[52.33247,15.01721],[52.332359,15.01923],[52.331928,15.0224],[52.330811,15.02972],[52.328541,15.04066],[52.32616,15.05196],[52.325199,15.05744],[52.32468,15.06221],[52.32452,15.06599],[52.324551,15.0703],[52.32486,15.07976],[52.32505,15.08498],[52.325111,15.08962],[52.325298,15.09684],[52.32552,15.10606],[52.32626,15.13401],[52.32653,15.14186],[52.326599,15.14884],[52.32642,15.15377],[52.326069,15.15866],[52.325298,15.16572],[52.32423,15.17277],[52.32251,15.18094],[52.321178,15.1857],[52.319199,15.192],[52.316959,15.19798],[52.314671,15.20417],[52.31271,15.2103],[52.311481,15.21602],[52.310791,15.22238],[52.31004,15.23439],[52.309811,15.238],[52.309299,15.24197],[52.30862,15.24494],[52.30756,15.24808],[52.306511,15.25051],[52.304852,15.25331],[52.303299,15.25526],[52.300861,15.25848],[52.298618,15.26166],[52.297039,15.2651],[52.295712,15.26928],[52.294769,15.27379],[52.294399,15.27835],[52.294231,15.28446],[52.294762,15.29028],[52.29533,15.29418],[52.296082,15.2983],[52.29847,15.30813],[52.302799,15.32548],[52.304981,15.33427],[52.306999,15.34239],[52.31171,15.3613],[52.31638,15.38058],[52.318008,15.38968],[52.318531,15.39406],[52.31889,15.39821],[52.319118,15.40398],[52.319031,15.4096],[52.318649,15.41545],[52.31813,15.42137],[52.31694,15.4355],[52.316601,15.44314],[52.316429,15.45085],[52.316448,15.46013],[52.31678,15.46964],[52.317581,15.4805],[52.322929,15.52593],[52.323811,15.53481],[52.32399,15.54209],[52.32375,15.54608],[52.322948,15.55353],[52.32082,15.56619],[52.317322,15.58482],[52.315411,15.5942],[52.313671,15.60258],[52.311298,15.61131],[52.3018,15.645],[52.29948,15.65358],[52.29855,15.66038],[52.298111,15.66634],[52.29686,15.69354],[52.296539,15.7061],[52.296532,15.71254],[52.296692,15.71638],[52.297009,15.71971],[52.297649,15.72621],[52.29871,15.73341],[52.300629,15.74185],[52.30386,15.75286],[52.30801,15.76642],[52.309109,15.76998],[52.31197,15.77909],[52.315861,15.79204],[52.32032,15.80697],[52.323009,15.81594],[52.324772,15.82229],[52.326359,15.82986],[52.327572,15.83711],[52.328609,15.8507],[52.328949,15.86658],[52.328979,15.86755],[52.328991,15.86889],[52.329029,15.87203],[52.329041,15.88197],[52.329102,15.88557],[52.329449,15.9075],[52.32954,15.91332],[52.32975,15.92507],[52.330448,15.93636],[52.331379,15.9454],[52.332611,15.9536],[52.334122,15.9618],[52.342091,15.99524],[52.34444,16.00725],[52.35046,16.049379],[52.353291,16.06992],[52.35759,16.09358],[52.35833,16.09774],[52.358749,16.100071],[52.35899,16.10144],[52.359211,16.10261],[52.359539,16.10429],[52.360352,16.108561],[52.36195,16.117229],[52.362999,16.123461],[52.36385,16.130489],[52.364521,16.136801],[52.365608,16.147249],[52.367062,16.161501],[52.367298,16.16527],[52.36742,16.168301],[52.367451,16.172119],[52.367611,16.185591],[52.36763,16.187149],[52.367821,16.19273],[52.368038,16.19655],[52.368622,16.20146],[52.36945,16.20701],[52.372471,16.222179],[52.375481,16.238211],[52.375839,16.24123],[52.376221,16.244749],[52.376629,16.249599],[52.37714,16.26313],[52.37738,16.270679],[52.377781,16.279659],[52.37822,16.288481],[52.379379,16.309139],[52.380039,16.32155],[52.38118,16.34289],[52.381981,16.356291],[52.38266,16.36916],[52.38324,16.37723],[52.383869,16.383631],[52.38559,16.396589],[52.38728,16.408449],[52.388142,16.41563],[52.388851,16.42271],[52.389351,16.428341],[52.38969,16.434139],[52.39006,16.44529],[52.390018,16.448879],[52.389881,16.453251],[52.389729,16.45645],[52.3895,16.459141],[52.38924,16.46138],[52.388569,16.46607],[52.387341,16.47382],[52.38707,16.47554],[52.386841,16.477989],[52.386749,16.479481],[52.3867,16.48031],[52.386551,16.483351],[52.386478,16.486731],[52.38657,16.491039],[52.386761,16.494961],[52.387081,16.49999],[52.387459,16.50783],[52.387501,16.511551],[52.387451,16.514919],[52.387249,16.520399],[52.3867,16.52607],[52.38604,16.531031],[52.385269,16.5352],[52.384708,16.53763],[52.383999,16.540649],[52.38084,16.55183],[52.37812,16.5609],[52.37801,16.561279],[52.377232,16.563869],[52.376591,16.56605],[52.373539,16.575661],[52.370152,16.584909],[52.3647,16.59923],[52.360741,16.60952],[52.357941,16.61697],[52.357101,16.61961],[52.356419,16.62204],[52.35582,16.62454],[52.355068,16.628189],[52.353432,16.638],[52.35215,16.64694],[52.350979,16.654249],[52.35059,16.656679],[52.349979,16.660419],[52.349369,16.664169],[52.34903,16.66687],[52.348579,16.67141],[52.348389,16.67975],[52.34893,16.691719],[52.349468,16.70499],[52.349819,16.713869],[52.349899,16.715731],[52.35001,16.718731],[52.350319,16.726601],[52.350422,16.729759],[52.350441,16.730129],[52.350491,16.73181],[52.350491,16.73185],[52.350491,16.73196],[52.350491,16.731979],[52.350491,16.733709],[52.350491,16.736811],[52.350491,16.74202],[52.350479,16.75079],[52.350521,16.761419],[52.350479,16.77059],[52.35043,16.778931],[52.35046,16.795071],[52.35033,16.81012],[52.3503,16.826269],[52.350288,16.83869],[52.350361,16.84127],[52.350529,16.84531],[52.350571,16.846109],[52.3508,16.84907],[52.351028,16.851641],[52.35107,16.85195],[52.352489,16.863569],[52.354092,16.87653],[52.35442,16.8797],[52.35461,16.884821],[52.354622,16.886431],[52.35461,16.88826],[52.35458,16.89007],[52.3545,16.89229],[52.354301,16.89575],[52.354149,16.897921],[52.353989,16.899799],[52.35384,16.901699],[52.353779,16.902439],[52.353359,16.90769],[52.35313,16.91028],[52.35281,16.914261],[52.35265,16.916389],[52.352428,16.91921],[52.3521,16.923109],[52.350979,16.937201],[52.349918,16.94964],[52.3494,16.956039],[52.348999,16.961029],[52.348652,16.9655],[52.348,16.973419],[52.347019,16.98617],[52.346531,16.99177],[52.345741,17.0009],[52.345322,17.004881],[52.345009,17.007601],[52.344269,17.01376],[52.34333,17.0207],[52.342529,17.0254],[52.34095,17.034031],[52.337791,17.049919],[52.334721,17.0646],[52.331821,17.078711],[52.329639,17.087839],[52.329311,17.0893],[52.328499,17.09247],[52.327869,17.094801],[52.326542,17.099489],[52.324188,17.107441],[52.32201,17.114479],[52.318771,17.12483],[52.318729,17.12496],[52.31752,17.12882],[52.31514,17.136431],[52.312561,17.144501],[52.311531,17.1478],[52.311031,17.14967],[52.310692,17.150949],[52.310669,17.151051],[52.310612,17.1513],[52.310589,17.151421],[52.310101,17.15361],[52.309872,17.15439],[52.309158,17.157721],[52.308281,17.163059],[52.307789,17.166821],[52.307411,17.170919],[52.307159,17.17539],[52.307072,17.179951],[52.307159,17.18524],[52.30761,17.190941],[52.307919,17.19392],[52.30904,17.201851],[52.309639,17.20735],[52.310059,17.212879],[52.310219,17.223009],[52.310131,17.24172],[52.310131,17.25379],[52.310059,17.265499],[52.310009,17.2722],[52.31004,17.278469],[52.310001,17.296169],[52.309929,17.305731],[52.309929,17.32172],[52.309841,17.34235],[52.309818,17.35442],[52.310108,17.362419],[52.311218,17.376181],[52.312019,17.38233],[52.312881,17.38825],[52.314861,17.399639],[52.317001,17.41197],[52.31739,17.414829],[52.317711,17.417191],[52.318138,17.421089],[52.318409,17.424089],[52.318489,17.425091],[52.318691,17.42766],[52.31892,17.4317],[52.319038,17.436029],[52.31905,17.440769],[52.318821,17.454201],[52.31863,17.468769],[52.318409,17.48267],[52.31818,17.49605],[52.317921,17.50906],[52.317699,17.51322],[52.316971,17.521919],[52.316311,17.526711],[52.315899,17.52965],[52.315552,17.531231],[52.315262,17.531919],[52.314949,17.53232],[52.314449,17.532579],[52.313931,17.53269],[52.313709,17.532721],[52.3134,17.5329],[52.31316,17.53318],[52.312901,17.533661],[52.31279,17.53414],[52.31266,17.535089],[52.312389,17.537979],[52.312119,17.540131],[52.31205,17.540211],[52.312031,17.54026],[52.311951,17.540291],[52.31168,17.540371],[52.31155,17.5404],[52.311111,17.540489],[52.31065,17.54071],[52.309971,17.541161],[52.309269,17.54188],[52.30883,17.542521],[52.30859,17.542919],[52.308472,17.543131],[52.30785,17.544741],[52.30777,17.54501],[52.30759,17.545589],[52.307289,17.54657],[52.306599,17.5488],[52.306469,17.549089],[52.306381,17.549259],[52.306301,17.549271],[52.306221,17.549339],[52.30619,17.54941],[52.30616,17.549561],[52.30619,17.549709],[52.30624,17.54981],[52.306358,17.54987],[52.30645,17.54982],[52.30648,17.54978],[52.306782,17.549919],[52.308361,17.550961],[52.310181,17.552139],[52.310711,17.552441],[52.31282,17.553921],[52.313641,17.554529],[52.313629,17.554741],[52.313709,17.554911],[52.31358,17.555559],[52.313389,17.55624],[52.31324,17.55678],[52.31316,17.557289],[52.312969,17.55862],[52.312168,17.563829],[52.311501,17.568171],[52.311501,17.56912],[52.311661,17.570061],[52.311909,17.57082],[52.312511,17.57221],[52.313751,17.575109],[52.316212,17.580099],[52.317131,17.58194],[52.317059,17.582109],[52.317131,17.582239],[52.317299,17.58226],[52.322079,17.591841],[52.322899,17.59347],[52.323669,17.5952],[52.324501,17.597691],[52.32515,17.600439],[52.325489,17.60265],[52.32629,17.610991],[52.326389,17.61207],[52.326771,17.616261],[52.326981,17.61853],[52.32695,17.62093],[52.326351,17.62508],[52.325581,17.63007],[52.32489,17.634701],[52.324772,17.635469],[52.324211,17.63909],[52.323441,17.644131],[52.323231,17.64576],[52.323078,17.649719],[52.32288,17.65493],[52.322701,17.6595],[52.32251,17.66391],[52.32243,17.665409],[52.322449,17.669571],[52.32246,17.671431],[52.32198,17.675159],[52.32196,17.67532],[52.321899,17.678539],[52.321812,17.68478],[52.321671,17.691059],[52.32172,17.69466],[52.322041,17.700939],[52.322281,17.70484],[52.32225,17.70645],[52.321701,17.71278],[52.32122,17.718519],[52.32069,17.72451],[52.32074,17.726589],[52.32082,17.729259],[52.32093,17.73275],[52.321152,17.73863],[52.321152,17.74099],[52.320919,17.74333],[52.31942,17.750771],[52.318192,17.757271],[52.318439,17.76511],[52.317822,17.768921],[52.317669,17.77072],[52.317791,17.771641],[52.318741,17.77639],[52.319,17.778669],[52.319012,17.78068],[52.319012,17.78105],[52.318829,17.78367],[52.31757,17.78923],[52.315601,17.797211],[52.31348,17.805929],[52.312401,17.810341],[52.3116,17.813641],[52.311371,17.81459],[52.311111,17.81529],[52.31028,17.817551],[52.30999,17.818331],[52.309391,17.81996],[52.30925,17.82036],[52.308071,17.823561],[52.307571,17.82501],[52.306221,17.829069],[52.304508,17.834209],[52.303299,17.83766],[52.300629,17.843309],[52.298031,17.84881],[52.295311,17.85454],[52.292549,17.860399],[52.290531,17.864611],[52.29031,17.865049],[52.290039,17.86541],[52.28986,17.865549],[52.289768,17.865549],[52.289711,17.865601],[52.289688,17.86565],[52.289669,17.865721],[52.28968,17.865841],[52.289711,17.86594],[52.28973,17.865959],[52.289768,17.86599],[52.289829,17.865999],[52.289822,17.866091],[52.289799,17.86622],[52.289669,17.866529],[52.289581,17.866779],[52.28952,17.866791],[52.289471,17.866859],[52.289459,17.866989],[52.28941,17.867029],[52.289101,17.86762],[52.28867,17.86853],[52.288109,17.86969],[52.28759,17.870939],[52.287239,17.87211],[52.28701,17.872881],[52.286911,17.87324],[52.286819,17.873751],[52.286739,17.87418],[52.286572,17.87566],[52.28648,17.87624],[52.286201,17.878031],[52.286018,17.879259],[52.285919,17.87986],[52.285801,17.880501],[52.285789,17.8806],[52.284969,17.883101],[52.283581,17.887421],[52.283051,17.888941],[52.282902,17.889429],[52.282822,17.88973],[52.282791,17.889999],[52.28278,17.89019],[52.28273,17.890551],[52.282669,17.890619],[52.282631,17.89056],[52.2826,17.89053],[52.282539,17.890499],[52.282501,17.890511],[52.282459,17.89052],[52.28241,17.89057],[52.282372,17.89065],[52.282349,17.890699],[52.282341,17.890829],[52.28236,17.890909],[52.28241,17.891029],[52.282459,17.891081],[52.282581,17.891081],[52.28273,17.891199],[52.282879,17.891331],[52.283451,17.89246],[52.28717,17.89938],[52.287441,17.900379],[52.28791,17.90819],[52.288422,17.917419],[52.288589,17.91783],[52.28989,17.91987],[52.292969,17.92449],[52.293789,17.92585],[52.295219,17.93013],[52.295479,17.930901],[52.296051,17.93182],[52.30019,17.93741],[52.300671,17.938919],[52.30291,17.947519],[52.30518,17.956329],[52.307541,17.96516],[52.30999,17.97477],[52.312401,17.984369],[52.313019,17.98637],[52.31374,17.98741],[52.319489,17.992649],[52.32523,17.997829],[52.330872,18.00309],[52.33609,18.007971],[52.336861,18.00901],[52.340019,18.0179],[52.343288,18.02704],[52.34684,18.036921],[52.350159,18.04632],[52.351631,18.05044],[52.353489,18.05566],[52.356911,18.065241],[52.358261,18.069059],[52.35841,18.069981],[52.358231,18.070999],[52.357121,18.0763],[52.356998,18.07785],[52.357109,18.079029],[52.357201,18.07963],[52.357559,18.08182],[52.35881,18.089621],[52.360279,18.099171],[52.361759,18.109079],[52.362679,18.11471],[52.363319,18.11853],[52.36507,18.129021],[52.36541,18.130541],[52.365891,18.13163],[52.36655,18.132549],[52.372311,18.137409],[52.37561,18.140209],[52.376598,18.14151],[52.379089,18.145229],[52.380341,18.146259],[52.38409,18.14901],[52.385971,18.15045],[52.386688,18.15069],[52.391022,18.151501],[52.391842,18.15201],[52.392712,18.15304],[52.393459,18.154619],[52.39407,18.15659],[52.394329,18.158409],[52.39463,18.164049],[52.394939,18.16913],[52.394531,18.174021],[52.39386,18.18281],[52.393169,18.18449],[52.392189,18.18585],[52.391319,18.18646],[52.388439,18.186741],[52.387589,18.18726],[52.38707,18.18792],[52.386662,18.18865],[52.38633,18.189501],[52.38612,18.190201],[52.38604,18.19017],[52.385971,18.19021],[52.385921,18.19031],[52.38591,18.190439],[52.385948,18.190571],[52.386009,18.19063],[52.38591,18.191139],[52.385429,18.193081],[52.383808,18.199591],[52.382141,18.206249],[52.380192,18.21414],[52.378391,18.221149],[52.377251,18.224569],[52.376949,18.225611],[52.376808,18.22718],[52.376968,18.22958],[52.376862,18.23086],[52.37656,18.2323],[52.376041,18.23435],[52.375462,18.241659],[52.37545,18.244551],[52.37553,18.247219],[52.376419,18.25268],[52.37661,18.25437],[52.376591,18.25506],[52.376579,18.25515],[52.375519,18.26149],[52.37468,18.266479],[52.37431,18.27313],[52.374062,18.27438],[52.372589,18.280979],[52.372162,18.28425],[52.371868,18.28713],[52.371479,18.295561],[52.37141,18.296129],[52.371269,18.299549],[52.37101,18.300949],[52.370899,18.301451],[52.370831,18.301741],[52.37072,18.30224],[52.370682,18.302441],[52.370441,18.305771],[52.37038,18.30636],[52.370171,18.30825],[52.370152,18.30847],[52.370258,18.309771],[52.371151,18.314711],[52.37154,18.317261],[52.372139,18.32095],[52.372391,18.32242],[52.373611,18.329809],[52.37492,18.33724],[52.376259,18.345011],[52.37756,18.35272],[52.37883,18.35932],[52.380119,18.36681],[52.381561,18.374849],[52.382481,18.37998],[52.382801,18.3818],[52.384171,18.38953],[52.385841,18.398939],[52.387531,18.40834],[52.389278,18.418051],[52.3894,18.41881],[52.387859,18.426649],[52.386631,18.432631],[52.38615,18.433599],[52.38554,18.434311],[52.385201,18.43519],[52.384739,18.437059],[52.384689,18.43889],[52.384819,18.440399],[52.385872,18.44392],[52.386822,18.446369],[52.387451,18.44796],[52.38913,18.45071],[52.389568,18.451891],[52.390011,18.456829],[52.390808,18.46559],[52.391529,18.47468],[52.39188,18.478291],[52.391609,18.48122],[52.391399,18.483351],[52.391209,18.48509],[52.391022,18.486481],[52.39085,18.487341],[52.390579,18.488001],[52.390678,18.488239],[52.390629,18.48877],[52.390469,18.489691],[52.390148,18.49078],[52.389309,18.492901],[52.388512,18.494909],[52.388458,18.49688],[52.388432,18.498199],[52.388302,18.50181],[52.388271,18.50279],[52.388062,18.50276],[52.388062,18.503771],[52.388729,18.503759],[52.388721,18.50428],[52.388691,18.507601],[52.388672,18.509581],[52.388649,18.510509],[52.388618,18.511709],[52.388439,18.51741],[52.388371,18.51823],[52.387329,18.52383],[52.387249,18.52405],[52.387192,18.524229],[52.387138,18.524269],[52.387112,18.52433],[52.387089,18.5245],[52.387131,18.524611],[52.387131,18.524719],[52.387112,18.525061],[52.38707,18.52528],[52.386822,18.526711],[52.38678,18.527161],[52.387001,18.53063],[52.387001,18.53109],[52.387039,18.53117],[52.387089,18.531549],[52.389912,18.57033],[52.39032,18.57567],[52.390839,18.58095],[52.39101,18.582479],[52.39109,18.58313],[52.391109,18.58371],[52.391331,18.593],[52.39151,18.59469],[52.391739,18.595869],[52.396141,18.608191],[52.397949,18.61212],[52.398232,18.6133],[52.39846,18.614321],[52.398602,18.61528],[52.398628,18.615891],[52.398609,18.616461],[52.39854,18.616899],[52.398338,18.61759],[52.397919,18.61878],[52.397671,18.61928],[52.39716,18.620001],[52.396381,18.621],[52.395721,18.621901],[52.394279,18.624109],[52.394058,18.62459],[52.393848,18.625191],[52.393631,18.6262],[52.393242,18.62833],[52.393108,18.62952],[52.393009,18.630489],[52.392979,18.63134],[52.393009,18.63196],[52.394489,18.642839],[52.394531,18.64332],[52.394531,18.64381],[52.393742,18.64938],[52.39246,18.658489],[52.39249,18.65925],[52.392879,18.662781],[52.393761,18.67082],[52.393799,18.67177],[52.39312,18.68037],[52.393108,18.68088],[52.39312,18.68129],[52.3932,18.681721],[52.39423,18.685841],[52.394321,18.68639],[52.395149,18.69241],[52.39526,18.692869],[52.395409,18.69323],[52.395561,18.693501],[52.39576,18.69372],[52.403042,18.697941],[52.403431,18.6982],[52.403599,18.69841],[52.40379,18.698759],[52.404099,18.700171],[52.404381,18.701229],[52.40451,18.701679],[52.405441,18.703791],[52.405609,18.7043],[52.405701,18.704741],[52.405739,18.705111],[52.405602,18.7106],[52.40564,18.71302],[52.405621,18.71344],[52.405548,18.71376],[52.404289,18.71526],[52.40411,18.71558],[52.404018,18.715919],[52.403999,18.716721],[52.40411,18.71925],[52.404751,18.73122],[52.4048,18.73193],[52.405029,18.732691],[52.41077,18.745501],[52.414188,18.75313],[52.414379,18.75355],[52.41584,18.75667],[52.41597,18.756969],[52.416458,18.758089],[52.417252,18.759859],[52.417591,18.760361],[52.417992,18.76086],[52.419048,18.761499],[52.419331,18.761669],[52.41972,18.7619],[52.420341,18.76231],[52.420631,18.762569],[52.420181,18.764549],[52.419991,18.76535],[52.419762,18.76647],[52.419689,18.76684],[52.41901,18.769779],[52.418869,18.770411],[52.418678,18.77128],[52.418522,18.772011],[52.417801,18.77516],[52.417469,18.77664],[52.41391,18.791639],[52.413399,18.794411],[52.41288,18.80364],[52.4128,18.80508],[52.41293,18.806379],[52.41328,18.80785],[52.414082,18.809111],[52.41473,18.810711],[52.417149,18.81781],[52.419182,18.824051],[52.419708,18.82621],[52.41983,18.828279],[52.420052,18.82983],[52.419922,18.8307],[52.42041,18.8351],[52.420792,18.838409],[52.421761,18.84428],[52.42358,18.85387],[52.424351,18.85821],[52.42466,18.861059],[52.42572,18.86558],[52.426029,18.867399],[52.426079,18.86809],[52.42598,18.868719],[52.425209,18.872141],[52.42482,18.8773],[52.42461,18.87813],[52.41901,18.8899],[52.418201,18.89086],[52.419399,18.896391],[52.419449,18.89699],[52.419182,18.89706],[52.418098,18.89781],[52.417271,18.908001],[52.41716,18.910589],[52.417198,18.911409],[52.417751,18.91395],[52.4179,18.914709],[52.418041,18.9158],[52.41975,18.929359],[52.419781,18.931709],[52.419819,18.93676],[52.419781,18.93722],[52.419811,18.94124],[52.419552,18.94313],[52.41769,18.953711],[52.417221,18.954861],[52.416641,18.957621],[52.416382,18.960621],[52.416161,18.961599],[52.416161,18.962971],[52.41613,18.96369],[52.415291,18.96821],[52.415081,18.96896],[52.414661,18.969999],[52.41349,18.97208],[52.412868,18.974171],[52.41267,18.974939],[52.412628,18.976179],[52.412861,18.978991],[52.412731,18.980089],[52.412189,18.9816],[52.410858,18.98731],[52.410381,18.99004],[52.410198,18.990629],[52.409721,18.99151],[52.409382,18.99254],[52.409081,18.993561],[52.408298,18.998871],[52.408089,19.00001],[52.407181,19.00271],[52.407001,19.003929],[52.407089,19.004919],[52.40778,19.006599],[52.407829,19.007231],[52.407711,19.007681],[52.40517,19.015289],[52.40591,19.01672],[52.406071,19.017469],[52.406281,19.01932],[52.406689,19.023199],[52.405121,19.025551],[52.405041,19.025669],[52.404758,19.026011],[52.404579,19.026291],[52.404541,19.02639],[52.404549,19.02648],[52.404732,19.02706],[52.404861,19.027439],[52.405579,19.030041],[52.405602,19.03027],[52.405361,19.030821],[52.405048,19.03154],[52.404991,19.031811],[52.404961,19.0326],[52.404911,19.033791],[52.4049,19.03406],[52.404839,19.035561],[52.4048,19.03669],[52.404751,19.037951],[52.404129,19.0529],[52.405079,19.071421],[52.405842,19.08909],[52.406361,19.101009],[52.406609,19.106159],[52.406689,19.10704],[52.40731,19.11322],[52.40797,19.120171],[52.408321,19.122231],[52.40847,19.122881],[52.408588,19.123381],[52.40905,19.12466],[52.409191,19.125191],[52.409401,19.12602],[52.409481,19.12639],[52.4095,19.127001],[52.409279,19.13365],[52.409019,19.13652],[52.408669,19.14032],[52.408249,19.144871],[52.407532,19.15234],[52.407249,19.155371],[52.406528,19.15996],[52.406349,19.161289],[52.40604,19.163179],[52.405849,19.163851],[52.405659,19.164301],[52.405499,19.164709],[52.40538,19.164961],[52.40572,19.16559],[52.406151,19.165159],[52.40625,19.1651],[52.4067,19.1649],[52.4072,19.164949],[52.40778,19.16531],[52.409489,19.1665],[52.40958,19.166559],[52.409569,19.167601],[52.40979,19.169849],[52.409908,19.1707],[52.412189,19.17646],[52.4132,19.18037],[52.413841,19.184481],[52.415379,19.191589],[52.416721,19.19803],[52.416981,19.19998],[52.41695,19.2006],[52.416939,19.203051],[52.41687,19.21244],[52.416771,19.214809],[52.416351,19.22077],[52.416279,19.22135],[52.416,19.22237],[52.41584,19.224319],[52.415749,19.22612],[52.415501,19.22751],[52.415562,19.228161],[52.416431,19.232599],[52.416821,19.234209],[52.416969,19.234381],[52.417141,19.23451],[52.417419,19.23489],[52.4212,19.244869],[52.421822,19.24605],[52.423038,19.24712],[52.423599,19.24807],[52.423641,19.24848],[52.42268,19.26543],[52.422771,19.26697],[52.423859,19.2707],[52.42313,19.271099],[52.422081,19.27103],[52.421589,19.27161],[52.42144,19.273899],[52.42107,19.27523],[52.419201,19.279091],[52.41832,19.281071],[52.417568,19.28236],[52.417099,19.28302],[52.413818,19.2854],[52.413471,19.28879],[52.41291,19.292761],[52.41288,19.293779],[52.41346,19.30113],[52.413528,19.30225],[52.41375,19.305229],[52.41386,19.305731],[52.414101,19.305981],[52.414848,19.305941],[52.415051,19.306],[52.415169,19.306311],[52.415539,19.308439],[52.415852,19.310101],[52.417599,19.31352],[52.418598,19.31551],[52.418709,19.315821],[52.418739,19.31633],[52.419659,19.32144],[52.419781,19.32193],[52.419971,19.32233],[52.42038,19.32276],[52.421329,19.32357],[52.421612,19.3239],[52.421829,19.324301],[52.422058,19.325001],[52.4231,19.328659],[52.423309,19.329639],[52.423599,19.33123],[52.42374,19.33181],[52.423931,19.33234],[52.424709,19.33445],[52.42487,19.33499],[52.425129,19.336081],[52.42543,19.336821],[52.426609,19.339439],[52.427078,19.340599],[52.428211,19.343479],[52.428551,19.34421],[52.428841,19.344629],[52.429169,19.344959],[52.431171,19.3468],[52.43185,19.347521],[52.432449,19.348419],[52.432701,19.348949],[52.43359,19.35132],[52.433762,19.3519],[52.43383,19.35251],[52.433769,19.353451],[52.43375,19.35375],[52.433781,19.35433],[52.433922,19.35483],[52.43404,19.355049],[52.434559,19.35594],[52.434792,19.356409],[52.43504,19.35726],[52.438019,19.368731],[52.438179,19.369129],[52.43914,19.37014],[52.439259,19.3703],[52.439079,19.37159],[52.439129,19.37253],[52.43964,19.37966],[52.440102,19.3855],[52.440491,19.391359],[52.44059,19.39263],[52.4408,19.393869],[52.441212,19.396061],[52.44128,19.396641],[52.441292,19.397209],[52.44117,19.398081],[52.44062,19.40147],[52.440449,19.402439],[52.440109,19.403629],[52.439468,19.40568],[52.439331,19.406281],[52.439251,19.406919],[52.439232,19.407551],[52.43919,19.408171],[52.438728,19.41131],[52.438431,19.41386],[52.4384,19.41448],[52.438461,19.415409],[52.438549,19.416849],[52.438671,19.42046],[52.438759,19.42136],[52.438919,19.42222],[52.439072,19.422649],[52.439171,19.422819],[52.439411,19.42314],[52.439621,19.423519],[52.440311,19.42547],[52.44043,19.42601],[52.440571,19.42767],[52.440681,19.4284],[52.4408,19.42881],[52.440979,19.42911],[52.44141,19.429609],[52.438801,19.437651],[52.436279,19.445351],[52.43528,19.44849],[52.434479,19.450991],[52.434231,19.45162],[52.432831,19.45368],[52.432381,19.45421],[52.431332,19.454769],[52.430962,19.455219],[52.42976,19.4576],[52.429588,19.45801],[52.429562,19.4582],[52.429531,19.45846],[52.429482,19.458981],[52.429371,19.46069],[52.429249,19.460911],[52.42918,19.46174],[52.429272,19.461941],[52.430061,19.462151],[52.43121,19.462481],[52.43182,19.46265],[52.43198,19.46269],[52.432049,19.462709],[52.432892,19.46294],[52.433418,19.463079],[52.433529,19.46315],[52.43367,19.46328],[52.433788,19.46348],[52.43462,19.46496],[52.436501,19.468241],[52.437569,19.47011],[52.43766,19.470261],[52.437889,19.47069],[52.438061,19.47097],[52.441002,19.47616],[52.444069,19.48151],[52.444221,19.481979],[52.444271,19.482149],[52.444691,19.484249],[52.444908,19.48601],[52.446049,19.494209],[52.450439,19.52776],[52.450901,19.531309],[52.451649,19.537041],[52.452358,19.54245],[52.45293,19.54631],[52.453671,19.550989],[52.454498,19.555861],[52.454739,19.55751],[52.45491,19.5599],[52.454868,19.561131],[52.45475,19.562719],[52.454659,19.56468],[52.454578,19.565359],[52.45433,19.566339],[52.45409,19.567289],[52.45396,19.56822],[52.453991,19.568991],[52.45417,19.57011],[52.45483,19.573021],[52.455639,19.576469],[52.456402,19.579189],[52.45718,19.581671],[52.457958,19.58433],[52.458241,19.585279],[52.458691,19.58667],[52.464851,19.607771],[52.465,19.60824],[52.465328,19.60947],[52.465618,19.6106],[52.46574,19.611059],[52.465721,19.6112],[52.465752,19.61134],[52.465778,19.611401],[52.465809,19.611429],[52.465851,19.61145],[52.465912,19.61145],[52.465939,19.611429],[52.465988,19.61138],[52.46637,19.6115],[52.466671,19.611629],[52.47023,19.612101],[52.470402,19.612141],[52.470638,19.612209],[52.470821,19.61231],[52.471218,19.61257],[52.4716,19.61285],[52.472252,19.613621],[52.474911,19.618059],[52.475288,19.618839],[52.47583,19.61997],[52.476452,19.62278],[52.47662,19.6236],[52.477009,19.624889],[52.479111,19.630171],[52.47963,19.631281],[52.48074,19.633341],[52.480919,19.6339],[52.481392,19.63566],[52.481689,19.63652],[52.48225,19.63793],[52.482399,19.63834],[52.483002,19.63986],[52.48362,19.6415],[52.484112,19.64242],[52.48489,19.643749],[52.48774,19.64864],[52.489491,19.651791],[52.490269,19.65325],[52.49044,19.653521],[52.490768,19.65391],[52.491001,19.65439],[52.49118,19.654791],[52.491261,19.654921],[52.49139,19.65494],[52.491459,19.654869],[52.491501,19.65476],[52.491661,19.65472],[52.491852,19.654671],[52.492081,19.65468],[52.492561,19.654699],[52.49297,19.65465],[52.4935,19.654449],[52.49403,19.654079],[52.497181,19.651711],[52.500851,19.648899],[52.501041,19.64875],[52.50177,19.648279],[52.502331,19.64806],[52.503021,19.64802],[52.50362,19.64819],[52.503941,19.648371],[52.504318,19.648609],[52.505291,19.64982],[52.50885,19.654539],[52.515919,19.66379],[52.51915,19.66802],[52.52248,19.67231],[52.523029,19.673019],[52.523621,19.673809],[52.52383,19.67407],[52.524181,19.6745],[52.52486,19.6754],[52.525291,19.67593],[52.526192,19.67716],[52.526711,19.67782],[52.527191,19.678459],[52.52816,19.67975],[52.52906,19.68091],[52.529549,19.68154],[52.530979,19.683479],[52.531189,19.684139],[52.53117,19.68432],[52.531219,19.68449],[52.531269,19.68457],[52.531471,19.68544],[52.531792,19.687309],[52.531891,19.687719],[52.532051,19.688],[52.53672,19.694059],[52.537109,19.694559],[52.53743,19.694981],[52.537628,19.69523],[52.53775,19.695511],[52.53793,19.69602],[52.537998,19.69631],[52.538071,19.6966],[52.538132,19.697161],[52.53812,19.69775],[52.538071,19.69828],[52.537979,19.698709],[52.537731,19.69977],[52.537498,19.70068],[52.53746,19.70117],[52.537479,19.701401],[52.53756,19.701679],[52.537659,19.70183],[52.53791,19.70192],[52.538361,19.702049],[52.538509,19.7022],[52.538849,19.702539],[52.539749,19.703421],[52.540798,19.704559],[52.54147,19.7052],[52.541752,19.705481],[52.54229,19.706051],[52.542542,19.70627],[52.542801,19.706369],[52.543129,19.70636],[52.544159,19.70623],[52.544621,19.70619],[52.545551,19.706091],[52.545769,19.70607],[52.546162,19.70643],[52.546242,19.70665],[52.546249,19.706841],[52.546188,19.70701],[52.545929,19.70789],[52.5457,19.70863],[52.54565,19.709021],[52.54567,19.709379],[52.545921,19.709829],[52.54615,19.71027],[52.54623,19.71055],[52.546471,19.711321],[52.54673,19.71224],[52.54681,19.712521],[52.546982,19.713079],[52.547241,19.714029],[52.54739,19.71471],[52.547428,19.71488],[52.5476,19.7152],[52.54784,19.71607],[52.547958,19.71648],[52.548229,19.71744],[52.548248,19.71752],[52.548431,19.718069],[52.548752,19.719101],[52.54921,19.720711],[52.549561,19.721821],[52.550308,19.72422],[52.550549,19.725031],[52.550652,19.72533],[52.550781,19.725821],[52.550961,19.72681],[52.551361,19.72872],[52.551811,19.731079],[52.551891,19.73193],[52.552731,19.74065],[52.552761,19.74087],[52.552891,19.741341],[52.55312,19.74192],[52.553829,19.74338],[52.555012,19.74567],[52.557579,19.75071],[52.55883,19.753349],[52.559319,19.75589],[52.559929,19.75951],[52.561131,19.766569],[52.561489,19.76895],[52.561661,19.770109],[52.56271,19.77618],[52.563782,19.780239],[52.564171,19.781269],[52.565891,19.78528],[52.570141,19.795111],[52.571362,19.798201],[52.571621,19.799959],[52.572182,19.80455],[52.572498,19.80732],[52.572639,19.808821],[52.572781,19.810089],[52.573212,19.814489],[52.573441,19.816271],[52.573631,19.81683],[52.57428,19.81805],[52.57531,19.81992],[52.579128,19.827579],[52.582531,19.834681],[52.587971,19.84605],[52.590839,19.852209],[52.593781,19.858351],[52.594921,19.860809],[52.599018,19.86953],[52.603828,19.87985],[52.603931,19.880079],[52.60466,19.881781],[52.605652,19.883921],[52.606121,19.88517],[52.606289,19.885771],[52.606392,19.88658],[52.606449,19.888809],[52.60685,19.903601],[52.606892,19.904949],[52.607128,19.911501],[52.607239,19.91324],[52.60788,19.914989],[52.61013,19.91869],[52.61245,19.923189],[52.613178,19.925421],[52.614151,19.92909],[52.614941,19.93195],[52.618931,19.946341],[52.621361,19.955139],[52.622299,19.958229],[52.623932,19.962179],[52.627941,19.97175],[52.630932,19.979111],[52.631512,19.980631],[52.63168,19.98106],[52.631859,19.9818],[52.631969,19.983971],[52.63213,19.986771],[52.63221,19.988359],[52.632259,19.9895],[52.632339,19.99164],[52.63245,19.99226],[52.632511,19.992519],[52.632992,19.994129],[52.634571,19.99967],[52.634811,20.000481],[52.635921,20.00437],[52.637321,20.00915],[52.6376,20.010201],[52.637901,20.011339],[52.638069,20.012409],[52.639721,20.025221],[52.639919,20.02597],[52.640221,20.02696],[52.64056,20.027929],[52.64093,20.029261],[52.643929,20.03874],[52.645672,20.044359],[52.645882,20.0455],[52.647449,20.05574],[52.647541,20.05653],[52.647541,20.05735],[52.64732,20.060631],[52.646912,20.06694],[52.646461,20.073931],[52.645771,20.084021],[52.645771,20.084999],[52.645969,20.0903],[52.646061,20.0909],[52.646351,20.09206],[52.646481,20.092621],[52.64682,20.09339],[52.646801,20.093611],[52.64687,20.093781],[52.646919,20.09404],[52.646961,20.09473],[52.646839,20.09623],[52.646648,20.09803],[52.6464,20.09934],[52.645649,20.103161],[52.644192,20.111931],[52.642448,20.1215],[52.639751,20.1362],[52.639488,20.137529],[52.638439,20.14324],[52.637131,20.150299],[52.635632,20.158501],[52.63438,20.164909],[52.632542,20.17416],[52.631531,20.17914],[52.630428,20.18457],[52.629681,20.18849],[52.629559,20.18989],[52.629471,20.19165],[52.629341,20.195271],[52.628971,20.20583],[52.628361,20.220699],[52.627941,20.23237],[52.6273,20.24885],[52.627129,20.25057],[52.626781,20.2521],[52.62558,20.25518],[52.624821,20.257549],[52.62466,20.25886],[52.62466,20.261021],[52.624619,20.268379],[52.624619,20.26973],[52.62458,20.27252],[52.62458,20.275749],[52.624512,20.277121],[52.624142,20.2792],[52.624062,20.27969],[52.623692,20.28159],[52.623451,20.28302],[52.62302,20.286539],[52.622532,20.29072],[52.622189,20.29353],[52.622002,20.29492],[52.62159,20.29812],[52.621552,20.298491],[52.620991,20.303379],[52.61998,20.31196],[52.619701,20.31432],[52.619221,20.31848],[52.619202,20.31871],[52.618809,20.32184],[52.618309,20.326269],[52.618031,20.32786],[52.617352,20.330999],[52.61718,20.33172],[52.617119,20.33169],[52.61705,20.33172],[52.616982,20.331791],[52.61694,20.33197],[52.616951,20.332081],[52.616982,20.33218],[52.617062,20.33226],[52.617119,20.332279],[52.617168,20.33226],[52.617241,20.33218],[52.61739,20.33242],[52.617489,20.33276],[52.617561,20.33313],[52.621231,20.351271],[52.621761,20.354],[52.622082,20.35565],[52.622299,20.357149],[52.622372,20.3584],[52.622372,20.35885],[52.622372,20.359489],[52.62236,20.36009],[52.622372,20.36059],[52.622372,20.36198],[52.622372,20.363291],[52.62236,20.364799],[52.62236,20.36618],[52.622341,20.36762],[52.62228,20.369961],[52.622169,20.371759],[52.62215,20.37245],[52.62215,20.372601],[52.622238,20.37318],[52.622261,20.373289],[52.62299,20.37541],[52.62318,20.376101],[52.623249,20.3764],[52.62368,20.37812],[52.624081,20.3797],[52.62413,20.379919],[52.624378,20.381041],[52.624519,20.38196],[52.624531,20.382099],[52.624748,20.385],[52.624851,20.386351],[52.625179,20.38875],[52.62534,20.390329],[52.625568,20.392719],[52.625469,20.395241],[52.625511,20.395969],[52.62558,20.39702],[52.62664,20.411051],[52.626572,20.412531],[52.62619,20.413651],[52.625332,20.416031],[52.625111,20.416651],[52.62455,20.418779],[52.62458,20.420919],[52.62458,20.422831],[52.624592,20.42569],[52.624641,20.429041],[52.62466,20.43082],[52.62471,20.4361],[52.624691,20.44017],[52.62476,20.440701],[52.624939,20.441219],[52.626869,20.44453],[52.628571,20.447359],[52.631889,20.452921],[52.634472,20.45734],[52.636608,20.461241],[52.63818,20.46405],[52.63945,20.46628],[52.640652,20.468691],[52.641701,20.470881],[52.642731,20.473089],[52.644341,20.47682],[52.646061,20.48036],[52.648121,20.484461],[52.648861,20.485941],[52.64904,20.486259],[52.650391,20.488899],[52.651459,20.491011],[52.651829,20.4918],[52.65279,20.49379],[52.653271,20.4974],[52.653412,20.4986],[52.654381,20.50729],[52.654961,20.510679],[52.656311,20.515421],[52.657299,20.51808],[52.659321,20.522181],[52.659851,20.523769],[52.659981,20.52486],[52.661098,20.536671],[52.66283,20.55644],[52.663719,20.56539],[52.663921,20.56785],[52.66391,20.570709],[52.663471,20.57478],[52.662209,20.584761],[52.661129,20.592871],[52.66032,20.59944],[52.660221,20.60511],[52.65913,20.618719],[52.65852,20.62081],[52.658421,20.621111],[52.656769,20.626209],[52.656658,20.62665],[52.65654,20.62715],[52.656441,20.62788],[52.65641,20.628441],[52.65641,20.62883],[52.656441,20.62923],[52.65649,20.62991],[52.65646,20.63002],[52.656422,20.63007],[52.655991,20.63022],[52.65593,20.630289],[52.65588,20.630409],[52.65596,20.63114],[52.655972,20.63143],[52.65601,20.63233],[52.65604,20.63307],[52.655972,20.634029],[52.655918,20.634529],[52.65575,20.63541],[52.655399,20.63707],[52.654999,20.63846],[52.65527,20.641649],[52.655472,20.64501],[52.65556,20.648439],[52.65572,20.65406],[52.65588,20.655951],[52.657391,20.665461],[52.659142,20.6761],[52.65955,20.67734],[52.660389,20.67947],[52.660728,20.68009],[52.660641,20.682989],[52.66087,20.68363],[52.661598,20.68478],[52.667488,20.696011],[52.66946,20.703609],[52.67017,20.707939],[52.6703,20.71084],[52.670132,20.71434],[52.66983,20.716721],[52.666931,20.73609],[52.666489,20.73918],[52.666321,20.7414],[52.666439,20.742081],[52.668388,20.747869],[52.670429,20.7547],[52.670639,20.75613],[52.670509,20.76173],[52.670441,20.76404],[52.670441,20.76528],[52.67057,20.76597],[52.671009,20.767401],[52.67223,20.771049],[52.675468,20.78442],[52.677261,20.790701],[52.677441,20.791321],[52.682381,20.807211],[52.682919,20.808729],[52.68346,20.80974],[52.684978,20.811729],[52.68528,20.81212],[52.68536,20.812611],[52.685379,20.813551],[52.685539,20.82032],[52.685452,20.820959],[52.685242,20.821581],[52.683331,20.82489],[52.682941,20.82564],[52.683418,20.839531],[52.686272,20.84173],[52.685558,20.844561],[52.68549,20.84506],[52.685581,20.84544],[52.68716,20.85408],[52.68803,20.85881],[52.688171,20.859949],[52.688648,20.864861],[52.689178,20.870291],[52.692101,20.88632],[52.692341,20.887461],[52.692791,20.88846],[52.693272,20.889259],[52.694012,20.89023],[52.694012,20.898569],[52.693729,20.8993],[52.693352,20.89982],[52.691502,20.90134],[52.6912,20.90185],[52.69109,20.902531],[52.691051,20.90513],[52.69075,20.90765],[52.690842,20.908421],[52.691761,20.91473],[52.692749,20.915091],[52.692921,20.91555],[52.691608,20.92836],[52.691761,20.92874],[52.69202,20.92943],[52.69133,20.934299],[52.691238,20.934919],[52.691238,20.93544],[52.69146,20.936319],[52.691608,20.93681],[52.69154,20.93784],[52.690361,20.945841],[52.68993,20.947189],[52.68961,20.948009],[52.688278,20.951481],[52.687721,20.953091],[52.68742,20.95451],[52.68671,20.960779],[52.68626,20.962379],[52.685558,20.963551],[52.684551,20.964661],[52.682899,20.965839],[52.684978,20.97382],[52.68116,20.976931],[52.682308,20.987539],[52.683338,20.99358],[52.682781,20.9986],[52.682812,20.99938],[52.683102,21.00069],[52.683182,21.00185],[52.682838,21.003889],[52.68103,21.010349],[52.680592,21.011999],[52.6805,21.013651],[52.680592,21.016899],[52.680271,21.02486],[52.680321,21.025829],[52.680908,21.027821],[52.68108,21.02894],[52.68132,21.0319],[52.681808,21.035009],[52.68092,21.03537],[52.67886,21.036039],[52.679119,21.03886],[52.67868,21.043341],[52.67981,21.04524],[52.681271,21.047791],[52.684139,21.053659],[52.686508,21.05851],[52.690708,21.066629],[52.692799,21.071621],[52.69352,21.073441],[52.693699,21.07387],[52.69376,21.07403],[52.694099,21.074881],[52.694889,21.076839],[52.696308,21.0809],[52.696339,21.081329],[52.696281,21.08144],[52.696178,21.081631],[52.695759,21.08218],[52.695889,21.082399],[52.69622,21.08345],[52.696781,21.08465],[52.69751,21.085131],[52.697491,21.085211],[52.697498,21.08531],[52.697529,21.085369],[52.697571,21.08539],[52.697521,21.08559],[52.696899,21.08843],[52.69669,21.08942],[52.69585,21.093361],[52.695141,21.096701],[52.69495,21.09758],[52.695042,21.09766],[52.69548,21.095831],[52.69976,21.098499],[52.700729,21.09989],[52.700741,21.09992],[52.703251,21.10659],[52.704441,21.108749],[52.705688,21.110161],[52.706821,21.110929],[52.707249,21.111731],[52.707981,21.11323],[52.708408,21.115641],[52.70927,21.123529],[52.709572,21.127609],[52.710381,21.136881],[52.710659,21.13973],[52.711239,21.145679],[52.71249,21.15023],[52.7127,21.151331],[52.713001,21.15284],[52.712959,21.15624],[52.712872,21.16087],[52.713348,21.16748],[52.713989,21.177389],[52.714119,21.183359],[52.713982,21.19006],[52.71386,21.192801],[52.713951,21.19795],[52.71442,21.207861],[52.714931,21.2164],[52.71553,21.2246],[52.71566,21.22765],[52.71553,21.23554],[52.715729,21.2404],[52.715771,21.24143],[52.715832,21.24292],[52.716141,21.249901],[52.716351,21.25889],[52.71656,21.261511],[52.716721,21.26252],[52.71888,21.275801],[52.724072,21.308201],[52.724041,21.30863],[52.723358,21.309879],[52.723309,21.31045],[52.723301,21.311291],[52.723652,21.312531],[52.724289,21.31554],[52.724251,21.319269],[52.724121,21.32193],[52.72369,21.326349],[52.72287,21.33116],[52.721291,21.34004],[52.720001,21.346479],[52.718239,21.353821],[52.716301,21.36068],[52.716061,21.361641],[52.715778,21.362459],[52.714359,21.365931],[52.71413,21.366501],[52.712978,21.36931],[52.71043,21.37579],[52.709179,21.37879],[52.70863,21.37973],[52.706699,21.38162],[52.705448,21.3839],[52.704552,21.38583],[52.702621,21.391451],[52.700298,21.39472],[52.698738,21.39842],[52.698799,21.400681],[52.698841,21.407419],[52.698841,21.42304],[52.698769,21.423719],[52.69854,21.42506],[52.698471,21.427629],[52.69846,21.42799],[52.69875,21.429171],[52.698929,21.43115],[52.699139,21.434481],[52.699131,21.440269],[52.69899,21.44207],[52.69817,21.444059],[52.697769,21.44574],[52.697472,21.45085],[52.697071,21.45575],[52.696751,21.45727],[52.696819,21.45879],[52.696918,21.46167],[52.696701,21.46315],[52.695438,21.469681],[52.694988,21.472059],[52.694031,21.47381],[52.69313,21.475531],[52.691929,21.478491],[52.691422,21.480721],[52.691261,21.48118],[52.690891,21.4813],[52.689701,21.48138],[52.689362,21.48163],[52.689178,21.48543],[52.68927,21.49226],[52.689362,21.49964],[52.69006,21.515591],[52.690731,21.528311],[52.690861,21.533421],[52.69099,21.535521],[52.692699,21.544491],[52.69257,21.546289],[52.690041,21.568871],[52.689701,21.5723],[52.689911,21.573669],[52.69017,21.57621],[52.690041,21.577579],[52.689701,21.58028],[52.688801,21.58238],[52.687679,21.584999],[52.685749,21.589809],[52.685459,21.590389],[52.685791,21.59071],[52.694321,21.59984],[52.692242,21.60533],[52.692768,21.614861],[52.692741,21.61817],[52.692619,21.622351],[52.692501,21.622931],[52.69146,21.624649],[52.689129,21.62854],[52.685341,21.63352],[52.692429,21.649151],[52.692532,21.64937],[52.699699,21.665051],[52.700981,21.66786],[52.704559,21.67585],[52.70705,21.680531],[52.709949,21.687639],[52.711651,21.69154],[52.712639,21.693821],[52.712978,21.694571],[52.71347,21.695669],[52.71764,21.704809],[52.719551,21.70919],[52.72007,21.710369],[52.726139,21.72393],[52.72707,21.72612],[52.727779,21.72776],[52.730259,21.73345],[52.734119,21.74213],[52.73645,21.747549],[52.742199,21.76095],[52.747452,21.773149],[52.750549,21.78022],[52.755131,21.7908],[52.75713,21.79549],[52.75906,21.80003],[52.761108,21.804701],[52.761478,21.80559],[52.762642,21.8083],[52.763481,21.81024],[52.768219,21.821011],[52.772011,21.83008],[52.775539,21.83824],[52.77684,21.84149],[52.780819,21.850651],[52.78281,21.8556],[52.784401,21.85906],[52.785938,21.8619],[52.786671,21.862921],[52.787041,21.863411],[52.788429,21.86483],[52.790119,21.86611],[52.79179,21.866989],[52.793171,21.867479],[52.796101,21.86833],[52.79649,21.86869],[52.79689,21.869341],[52.797119,21.869841],[52.798111,21.870541],[52.79929,21.87122],[52.79987,21.87155],[52.800072,21.87252],[52.800831,21.87606],[52.801411,21.879141],[52.801498,21.87965],[52.801498,21.88109],[52.801498,21.881849],[52.80146,21.884199],[52.80143,21.88665],[52.80151,21.88941],[52.801628,21.890011],[52.801739,21.890289],[52.802151,21.890961],[52.802921,21.892031],[52.802662,21.89333],[52.802601,21.89365],[52.802479,21.89496],[52.8036,21.89592],[52.803989,21.89621],[52.804352,21.896481],[52.80463,21.896641],[52.805321,21.89702],[52.807171,21.898239],[52.808208,21.900261],[52.809681,21.90313],[52.81102,21.905729],[52.812328,21.908291],[52.81498,21.913441],[52.821659,21.926439],[52.821781,21.926861],[52.821941,21.927509],[52.822109,21.92787],[52.822262,21.928141],[52.823109,21.930059],[52.823792,21.93129],[52.82428,21.93223],[52.824501,21.93298],[52.82465,21.933189],[52.824821,21.93317],[52.824989,21.93298],[52.82655,21.935881],[52.827919,21.93853],[52.830471,21.94331],[52.84502,21.97151],[52.851742,21.98461],[52.86071,22.00177],[52.870499,22.0205],[52.881519,22.041929],[52.88829,22.05513],[52.893219,22.064711],[52.90255,22.08313],[52.907879,22.09301],[52.90847,22.094151],[52.911869,22.100719],[52.920399,22.11714],[52.92382,22.123711],[52.925781,22.12747],[52.938381,22.151661],[52.943409,22.161221],[52.948601,22.171539],[52.95277,22.179649],[52.962109,22.197531],[52.964211,22.20149],[52.96442,22.2019],[52.96912,22.21093],[52.971748,22.215981],[52.973751,22.219839],[52.97683,22.22567],[52.978889,22.22975],[52.979221,22.230379],[52.981468,22.23468],[52.981972,22.23564],[52.983051,22.23772],[52.985001,22.24148],[52.985222,22.24242],[52.985409,22.242809],[52.985641,22.243179],[52.986279,22.24395],[52.987068,22.244869],[52.98735,22.245291],[52.987999,22.24649],[52.989651,22.25008],[52.989571,22.25024],[52.989601,22.250441],[52.989689,22.25053],[52.98978,22.250509],[52.989811,22.25049],[52.9916,22.25428],[53.005081,22.28327],[53.009689,22.29318],[53.012371,22.298941],[53.0261,22.32844],[53.03606,22.349979],[53.037529,22.35301],[53.04549,22.37007],[53.05212,22.38442],[53.064701,22.411421],[53.078781,22.44199],[53.080742,22.446119],[53.082031,22.449039],[53.086842,22.45928],[53.089531,22.46524],[53.090141,22.4666],[53.090672,22.468109],[53.090889,22.4694],[53.091019,22.470779],[53.09108,22.472549],[53.09111,22.47287],[53.091518,22.47571],[53.092388,22.480789],[53.09803,22.515181],[53.100269,22.52866],[53.101059,22.53347],[53.104069,22.55183],[53.106369,22.565729],[53.1087,22.58013],[53.108822,22.58086],[53.109829,22.586889],[53.110291,22.58964],[53.112301,22.60166],[53.11245,22.602551],[53.116322,22.62665],[53.120461,22.652161],[53.122589,22.665251],[53.12458,22.67758],[53.125221,22.681549],[53.12978,22.709641],[53.130661,22.715111],[53.131828,22.7223],[53.13308,22.73004],[53.133331,22.73164],[53.134892,22.74139],[53.134972,22.74188],[53.137241,22.75585],[53.13884,22.765791],[53.140671,22.77706],[53.14415,22.798519],[53.146591,22.81352],[53.14716,22.816931],[53.147881,22.82147],[53.147949,22.821859],[53.149441,22.83116],[53.151421,22.84359],[53.152618,22.850889],[53.154388,22.862049],[53.155022,22.86594],[53.155701,22.87015],[53.157589,22.882021],[53.158932,22.890381],[53.160751,22.90164],[53.160858,22.90238],[53.16222,22.91082],[53.162319,22.91147],[53.163288,22.917669],[53.16357,22.91942],[53.164379,22.924431],[53.164452,22.92543],[53.164429,22.92787],[53.16436,22.931971],[53.16428,22.936689],[53.164261,22.937559],[53.164249,22.938299],[53.16407,22.948481],[53.164051,22.94978],[53.164009,22.952181],[53.163891,22.95879],[53.163841,22.9615],[53.163651,22.971649],[53.163609,22.973829],[53.163582,22.97492],[53.163528,22.9757],[53.16037,22.99341],[53.160221,22.994301],[53.159512,22.99822],[53.159069,23.000681],[53.157711,23.0082],[53.15731,23.01037],[53.157242,23.010759],[53.15498,23.02331],[53.150688,23.047661],[53.149651,23.05356],[53.149052,23.056881],[53.148521,23.05953],[53.148418,23.060181],[53.14814,23.061689],[53.147671,23.064289],[53.14616,23.072769],[53.145649,23.07542],[53.145168,23.07848],[53.144279,23.083111],[53.144081,23.0842],[53.143879,23.0851],[53.143379,23.087749],[53.140091,23.105431],[53.139679,23.106991],[53.139622,23.10726],[53.13953,23.107479],[53.1395,23.1078],[53.139278,23.109949],[53.138168,23.11603],[53.13789,23.117559],[53.137569,23.119431],[53.137341,23.120939],[53.137291,23.12145],[53.137272,23.12187],[53.137131,23.122971],[53.137272,23.12369],[53.137348,23.123911],[53.13768,23.124701],[53.13789,23.12536],[53.138939,23.129999],[53.13903,23.13158],[53.139,23.13298],[53.138599,23.135111],[53.138199,23.136101],[53.13784,23.13698],[53.137249,23.13806],[53.13681,23.138901],[53.13662,23.13953],[53.1362,23.141661],[53.135941,23.14303],[53.135681,23.144381],[53.135509,23.145109],[53.13546,23.14529],[53.135399,23.145491],[53.135342,23.1458],[53.135368,23.14625],[53.135529,23.146641],[53.135769,23.147091],[53.135929,23.14776],[53.13607,23.15204],[53.13612,23.154711],[53.136131,23.158529],[53.135971,23.159651],[53.135849,23.16013],[53.135281,23.161961],[53.134819,23.16313],[53.13369,23.165951],[53.133011,23.16777],[53.13282,23.1681],[53.132408,23.16836],[53.132332,23.16832],[53.13221,23.168329],[53.132141,23.168409],[53.13208,23.168539],[53.131901,23.16898],[53.13097,23.17001],[53.130531,23.170549],[53.128681,23.173349],[53.128391,23.17399],[53.127171,23.176661],[53.125919,23.18025],[53.125111,23.181789],[53.124859,23.182489],[53.124802,23.182671],[53.12479,23.182711],[53.12447,23.183729],[53.12294,23.18795],[53.122799,23.18841],[53.121181,23.193541],[53.120781,23.19487],[53.120239,23.19603],[53.120152,23.196211],[53.120239,23.1964],[53.12151,23.200359],[53.122082,23.202431],[53.122082,23.202789],[53.122059,23.202999],[53.12207,23.203251],[53.122189,23.205191],[53.122471,23.20948],[53.12252,23.21039],[53.123009,23.21793],[53.12373,23.226089],[53.12418,23.227659],[53.124828,23.22892],[53.12569,23.23114],[53.126122,23.233709],[53.125221,23.24822],[53.125309,23.259041],[53.125549,23.33737],[53.125679,23.37978],[53.125759,23.401581],[53.12582,23.41815],[53.135109,23.44212],[53.136341,23.44549],[53.13739,23.44846],[53.139729,23.46496],[53.140579,23.471161],[53.140732,23.473249],[53.141041,23.477551],[53.140598,23.48159],[53.140282,23.48526],[53.14064,23.48753],[53.141621,23.48974],[53.142899,23.49206],[53.143421,23.493679],[53.143951,23.498871],[53.14436,23.50668],[53.140869,23.5303],[53.139671,23.533689],[53.137569,23.53826],[53.130871,23.56538],[53.129841,23.566759],[53.122009,23.590269],[53.119228,23.596109],[53.114231,23.61939],[53.110401,23.63442],[53.108921,23.640341],[53.10825,23.643511],[53.108231,23.647591],[53.109219,23.655371],[53.109291,23.655939],[53.10947,23.65729],[53.109509,23.6577],[53.110088,23.66119],[53.110958,23.666479],[53.111919,23.675409],[53.111969,23.67742],[53.111752,23.67927],[53.11013,23.68646],[53.109699,23.68861],[53.109638,23.689831],[53.1096,23.69532],[53.109531,23.703239],[53.10947,23.71006],[53.10957,23.760401],[53.109661,23.779461],[53.109379,23.78513],[53.108688,23.796881],[53.108849,23.79884],[53.10931,23.800819],[53.109402,23.8011],[53.110359,23.803619],[53.110809,23.805349],[53.111488,23.8116],[53.11153,23.81488],[53.11166,23.817591],[53.11245,23.82332],[53.11277,23.82555],[53.11301,23.827391],[53.11367,23.83226],[53.114208,23.836241],[53.11467,23.839621],[53.115829,23.847931],[53.118389,23.859329],[53.118889,23.8612],[53.119629,23.86256],[53.119999,23.86319],[53.12336,23.867559],[53.123959,23.869011],[53.1241,23.86961],[53.124249,23.87129],[53.124249,23.87265],[53.12402,23.881399],[53.123981,23.88241],[53.123951,23.88492],[53.124069,23.887501],[53.123859,23.888969],[53.123421,23.889509],[53.123192,23.890711],[53.123539,23.89205],[53.123531,23.89249],[53.123348,23.8939],[53.123249,23.894711],[53.123001,23.894939],[53.122391,23.895411],[53.12183,23.89563],[53.12141,23.895451],[53.121101,23.895559],[53.12064,23.8965],[53.120411,23.89822],[53.120781,23.90069],[53.121769,23.90761],[53.121731,23.9079],[53.12075,23.915751],[53.120579,23.91704],[53.12043,23.91811],[53.12027,23.918779],[53.120079,23.91934],[53.11869,23.92214],[53.117771,23.92399],[53.117561,23.924549],[53.11739,23.9252],[53.117279,23.9259],[53.117229,23.92668],[53.117409,23.93421],[53.1175,23.937929],[53.117569,23.940519],[53.117592,23.941311],[53.117599,23.941879],[53.117641,23.94338],[53.117741,23.9473],[53.117859,23.95249],[53.117901,23.95397],[53.117931,23.955919],[53.118038,23.958031],[53.11797,23.95904],[53.11795,23.95952],[53.117901,23.95999],[53.117409,23.96365],[53.11676,23.968309],[53.116711,23.96879],[53.116699,23.969271],[53.116859,23.97562],[53.116909,23.9779],[53.116959,23.980789],[53.11705,23.98559],[53.117062,23.98658],[53.11742,24.002769],[53.117451,24.00382],[53.117451,24.00429],[53.117821,24.020821],[53.118252,24.03981],[53.118351,24.044331],[53.11832,24.04549],[53.118252,24.046709],[53.11739,24.05854],[53.11681,24.066469],[53.11676,24.067631],[53.116779,24.06872],[53.11684,24.069241],[53.116909,24.069839],[53.118118,24.076929],[53.120609,24.091749],[53.121521,24.09729],[53.123341,24.107861],[53.12392,24.11134],[53.12635,24.125719],[53.128502,24.141211],[53.12859,24.141939],[53.128681,24.14299],[53.130451,24.17207],[53.132229,24.20084],[53.133121,24.21533],[53.134499,24.238199],[53.137428,24.286819],[53.138531,24.30509],[53.139549,24.32255],[53.140381,24.336691],[53.14048,24.33798],[53.14064,24.33922],[53.14241,24.351761],[53.143452,24.359051],[53.145069,24.36904],[53.145851,24.374399],[53.147652,24.386339],[53.147739,24.386921],[53.14922,24.39777],[53.149448,24.39945],[53.149841,24.402281],[53.150002,24.40329],[53.151642,24.412399],[53.152031,24.414539],[53.152119,24.41523],[53.15213,24.41584],[53.152081,24.41646],[53.15197,24.41704],[53.151138,24.420441],[53.151039,24.421049],[53.151001,24.421801],[53.151001,24.422461],[53.151031,24.426331],[53.151039,24.42676],[53.151058,24.427601],[53.15134,24.42872],[53.151569,24.42964],[53.151619,24.430019],[53.151562,24.43038],[53.151409,24.430639],[53.151169,24.43099],[53.150768,24.43116],[53.15057,24.43137],[53.150429,24.431749],[53.150341,24.43288],[53.150211,24.4335],[53.15004,24.433941],[53.14975,24.4345],[53.149559,24.43474],[53.1493,24.435049],[53.148769,24.4356],[53.148651,24.435789],[53.148491,24.436029],[53.14835,24.43642],[53.1483,24.436741],[53.148319,24.437349],[53.148369,24.4375],[53.14851,24.437941],[53.150799,24.443371],[53.151871,24.445761],[53.152519,24.44726],[53.153061,24.448481],[53.153309,24.449039],[53.15353,24.449671],[53.153648,24.450331],[53.15369,24.450899],[53.153648,24.451401],[53.153591,24.451929],[53.153351,24.453079],[53.153069,24.454399],[53.15279,24.45577],[53.152439,24.457291],[53.152309,24.45776],[53.152229,24.457951],[53.15202,24.458469],[53.15192,24.45858],[53.151581,24.458891],[53.150269,24.459909],[53.14954,24.46047],[53.14867,24.461201],[53.147831,24.461849],[53.145882,24.46336],[53.144989,24.46406],[53.144642,24.464371],[53.144329,24.464769],[53.144081,24.465281],[53.143532,24.46666],[53.143299,24.467331],[53.143131,24.468],[53.143051,24.468769],[53.14238,24.47839],[53.14241,24.47854],[53.142929,24.483391],[53.145039,24.503811],[53.144791,24.50399],[53.144642,24.504681],[53.14468,24.50535],[53.14489,24.505831],[53.145229,24.506189],[53.147442,24.52718],[53.150471,24.55595],[53.150539,24.55685],[53.150539,24.557699],[53.150471,24.55862],[53.14967,24.56645],[53.14843,24.578659],[53.14521,24.610359],[53.145,24.61175],[53.14476,24.613131],[53.14185,24.627119],[53.141682,24.62817],[53.141628,24.628639],[53.141579,24.629049],[53.141548,24.62991],[53.14159,24.639971],[53.141602,24.64262],[53.141579,24.65111],[53.141579,24.66095],[53.14156,24.66202],[53.140518,24.68733],[53.14048,24.68911],[53.140659,24.702009],[53.140629,24.70294],[53.140541,24.70392],[53.140381,24.704809],[53.140171,24.70566],[53.1399,24.706511],[53.139061,24.70866],[53.138802,24.709431],[53.13858,24.710239],[53.138359,24.711161],[53.138161,24.71212],[53.137951,24.713131],[53.137791,24.714001],[53.137669,24.71497],[53.137581,24.71628],[53.137539,24.71763],[53.13752,24.725241],[53.137562,24.726749],[53.137642,24.728081],[53.137772,24.729481],[53.137909,24.73068],[53.138088,24.73189],[53.140381,24.74482],[53.140591,24.74633],[53.14093,24.74902],[53.141029,24.750299],[53.141171,24.752159],[53.141239,24.75626],[53.141571,24.76449],[53.141628,24.767191],[53.141991,24.79554],[53.14201,24.796829],[53.142021,24.798031],[53.14209,24.79903],[53.14222,24.799931],[53.14257,24.801399],[53.14262,24.801861],[53.142899,24.8032],[53.14299,24.80397],[53.14304,24.804729],[53.143101,24.806379],[53.143162,24.808689],[53.143188,24.80974],[53.143188,24.810579],[53.143131,24.811331],[53.14299,24.812019],[53.14291,24.8123],[53.142712,24.812941],[53.1427,24.813],[53.142551,24.813551],[53.142509,24.813829],[53.142479,24.814079],[53.142502,24.81468],[53.142601,24.81539],[53.14315,24.81938],[53.143181,24.81971],[53.143639,24.822479],[53.14341,24.8248],[53.146061,24.842831],[53.146141,24.843361],[53.146721,24.84374],[53.14687,24.847361],[53.146919,24.848],[53.146961,24.84869],[53.14698,24.849449],[53.14698,24.85021],[53.146969,24.85112],[53.14687,24.852289],[53.144951,24.871321],[53.144741,24.87311],[53.14444,24.875179],[53.142559,24.887079],[53.141621,24.892691],[53.14151,24.89366],[53.14143,24.894711],[53.139271,24.921709],[53.138802,24.927629],[53.138432,24.932301],[53.13707,24.94945],[53.136391,24.95768],[53.135399,24.96965],[53.134121,24.985371],[53.13382,24.99016],[53.13348,24.993429],[53.130489,25.02844],[53.12999,25.035419],[53.129848,25.03661],[53.129742,25.037399],[53.129631,25.03796],[53.129501,25.03846],[53.12915,25.03948],[53.128948,25.039989],[53.128731,25.040501],[53.125851,25.046289],[53.12561,25.046841],[53.125431,25.04734],[53.125271,25.04784],[53.12513,25.048429],[53.125,25.049049],[53.12492,25.049669],[53.124851,25.05032],[53.123089,25.081829],[53.123001,25.083],[53.122829,25.08531],[53.118431,25.12805],[53.118011,25.131519],[53.11628,25.14085],[53.113602,25.154169],[53.111721,25.163839],[53.103321,25.20528],[53.098419,25.229321],[53.097469,25.234051],[53.097271,25.234961],[53.097038,25.235901],[53.096779,25.23686],[53.096531,25.23768],[53.096149,25.23877],[53.095791,25.239691],[53.095451,25.24048],[53.09507,25.241261],[53.093319,25.24456],[53.0928,25.24547],[53.09198,25.24687],[53.090858,25.248409],[53.089691,25.250031],[53.08876,25.25131],[53.090229,25.252279],[53.09066,25.25271],[53.09306,25.2565],[53.09317,25.256889],[53.093189,25.257339],[53.093189,25.25786],[53.093128,25.258209],[53.092121,25.261431],[53.092072,25.26166],[53.092041,25.261921],[53.09203,25.262199],[53.092072,25.26251],[53.092121,25.2628],[53.092548,25.26478],[53.09293,25.26655],[53.092972,25.26675],[53.092991,25.266951],[53.092999,25.267151],[53.092991,25.26733],[53.092972,25.267521],[53.092941,25.2677],[53.091171,25.275419],[53.090961,25.276251],[53.089939,25.2801],[53.089611,25.281309],[53.08939,25.281969],[53.089272,25.282631],[53.089142,25.283899],[53.08844,25.29328],[53.08836,25.294081],[53.08786,25.296459],[53.087818,25.2966],[53.08778,25.296721],[53.087471,25.297489],[53.087372,25.29776],[53.087311,25.29808],[53.08717,25.299089],[53.086891,25.30102],[53.086601,25.302811],[53.08654,25.30307],[53.086411,25.303431],[53.086571,25.3039],[53.086609,25.30402],[53.086922,25.304951],[53.087299,25.306101],[53.087891,25.30806],[53.087952,25.30829],[53.088039,25.30858],[53.089142,25.31284],[53.089241,25.313231],[53.0895,25.31382],[53.08902,25.31468],[53.090931,25.317039],[53.091259,25.31765],[53.09145,25.31743],[53.09201,25.31893],[53.092098,25.31901],[53.09222,25.319139],[53.0923,25.31925],[53.092369,25.31938],[53.092461,25.319559],[53.092541,25.3197],[53.092609,25.31982],[53.09269,25.31992],[53.092781,25.319981],[53.092861,25.32003],[53.092949,25.320061],[53.093121,25.32004],[53.09333,25.31999],[53.093529,25.31999],[53.093609,25.320009],[53.093788,25.320101],[53.094002,25.320169],[53.094158,25.32012],[53.09425,25.32103],[53.094318,25.321871],[53.094391,25.3232],[53.094398,25.324141],[53.094398,25.32448],[53.09444,25.325279],[53.094681,25.327419],[53.094849,25.328489],[53.095001,25.32958],[53.095051,25.32995],[53.095089,25.33054],[53.095119,25.331181],[53.095131,25.3318],[53.095119,25.332291],[53.0951,25.33287],[53.095089,25.333179],[53.09499,25.333969],[53.094929,25.33469],[53.09486,25.335899],[53.094639,25.339251],[53.094471,25.341869],[53.094429,25.342171],[53.09428,25.34263],[53.093498,25.34491],[53.09288,25.34672],[53.092751,25.34724],[53.093071,25.34866],[53.093639,25.349581],[53.093781,25.34984],[53.09388,25.350189],[53.093929,25.35058],[53.093941,25.351089],[53.093391,25.36083],[53.09325,25.364149],[53.0933,25.364771],[53.09367,25.36886],[53.093971,25.37253],[53.094051,25.37392],[53.094189,25.375271],[53.094261,25.376129],[53.094318,25.37685],[53.094959,25.385639],[53.095211,25.388439],[53.095909,25.397341],[53.096142,25.400299],[53.096821,25.408119],[53.097099,25.412769],[53.097252,25.41754],[53.097271,25.42066],[53.09705,25.423969],[53.09483,25.446341],[53.094021,25.44949],[53.08831,25.472],[53.08725,25.47764],[53.08733,25.483959],[53.087769,25.488529],[53.09079,25.50251],[53.092331,25.510269],[53.092892,25.514851],[53.093399,25.5207],[53.094608,25.528021],[53.09531,25.531981],[53.095871,25.536011],[53.097,25.545919],[53.09761,25.549459],[53.098511,25.552799],[53.100201,25.55789],[53.103569,25.568501],[53.104469,25.571501],[53.104931,25.57412],[53.105339,25.57712],[53.10569,25.581141],[53.106709,25.59136],[53.107262,25.596689],[53.1077,25.59878],[53.108662,25.60183],[53.109268,25.60391],[53.113689,25.62092],[53.117119,25.63414],[53.120838,25.64592],[53.12291,25.65333],[53.13776,25.691839],[53.141602,25.70158],[53.14415,25.70793],[53.14439,25.708441],[53.145458,25.710779],[53.14566,25.71122],[53.146339,25.71335],[53.146481,25.715191],[53.146309,25.717621],[53.14584,25.71912],[53.14566,25.72135],[53.145649,25.723391],[53.145611,25.729811],[53.145512,25.737329],[53.145432,25.742661],[53.14529,25.754539],[53.145199,25.759331],[53.144939,25.76301],[53.144718,25.7719],[53.144211,25.785299],[53.143532,25.803499],[53.142189,25.842779],[53.141739,25.853849],[53.140289,25.86577],[53.139561,25.872259],[53.139332,25.876909],[53.1394,25.87991],[53.139519,25.88273],[53.139591,25.88327],[53.13969,25.88373],[53.139648,25.883829],[53.13961,25.883961],[53.139629,25.884171],[53.139751,25.886761],[53.139778,25.887449],[53.140091,25.89344],[53.140171,25.894899],[53.140148,25.895651],[53.140018,25.898081],[53.13982,25.90134],[53.13961,25.90416],[53.139481,25.905729],[53.139351,25.906969],[53.139301,25.907459],[53.139252,25.907789],[53.139229,25.90797],[53.139229,25.908319],[53.13921,25.90897],[53.139172,25.9093],[53.13913,25.9095],[53.139061,25.90962],[53.138981,25.909651],[53.13829,25.90943],[53.13805,25.909389],[53.137852,25.90941],[53.13773,25.909439],[53.13768,25.90946],[53.13765,25.909531],[53.137508,25.91013],[53.137341,25.910641],[53.137009,25.91156],[53.13549,25.915371],[53.13509,25.91637],[53.134659,25.917089],[53.13443,25.917629],[53.1343,25.91802],[53.133869,25.91835],[53.13327,25.918791],[53.132771,25.91914],[53.132339,25.919531],[53.13224,25.92009],[53.13221,25.920691],[53.132629,25.92585],[53.13493,25.931459],[53.136539,25.935341],[53.138641,25.93824],[53.139671,25.939779],[53.14035,25.94174],[53.141361,25.94578],[53.14286,25.951719],[53.14867,25.97263],[53.152302,25.98554],[53.15387,25.99106],[53.154732,25.994089],[53.155338,25.996031],[53.15749,26.002319],[53.158199,26.004181],[53.161179,26.01199],[53.162579,26.015841],[53.164509,26.02109],[53.166451,26.026409],[53.16782,26.0303],[53.169479,26.035049],[53.171021,26.039169],[53.17297,26.04442],[53.17363,26.04615],[53.175621,26.051439],[53.181671,26.067511],[53.185249,26.074039],[53.194191,26.09038],[53.200859,26.102579],[53.204472,26.10918],[53.207779,26.115511],[53.208389,26.11668],[53.20966,26.120001],[53.21019,26.122141],[53.21386,26.137119],[53.215408,26.14341],[53.223389,26.17568],[53.227791,26.19352],[53.232349,26.21192],[53.236488,26.22896],[53.24049,26.245371],[53.243919,26.25651],[53.24559,26.26211],[53.247051,26.266911],[53.2491,26.27342],[53.251362,26.28075],[53.253231,26.287029],[53.25975,26.30839],[53.265041,26.325701],[53.266708,26.330429],[53.27174,26.340509],[53.274078,26.344999],[53.28104,26.35895],[53.301201,26.39912],[53.309181,26.41457],[53.315151,26.4263],[53.32391,26.443451],[53.333469,26.462259],[53.341221,26.477449],[53.346859,26.488211],[53.359741,26.514299],[53.365952,26.526409],[53.367409,26.529329],[53.374241,26.54302],[53.378109,26.550791],[53.38377,26.56185],[53.389912,26.57452],[53.401451,26.59687],[53.402821,26.599449],[53.416382,26.6203],[53.42625,26.63549],[53.428211,26.638691],[53.448608,26.66996],[53.44928,26.671],[53.450199,26.6724],[53.456879,26.682581],[53.459671,26.68688],[53.460838,26.688709],[53.464939,26.69516],[53.465858,26.696711],[53.469921,26.702829],[53.47089,26.70437],[53.47752,26.714649],[53.479622,26.71793],[53.480652,26.719481],[53.481022,26.720079],[53.481209,26.72036],[53.4813,26.72051],[53.4814,26.720699],[53.48151,26.720881],[53.48196,26.721581],[53.484558,26.725599],[53.48679,26.728991],[53.487091,26.729481],[53.487221,26.7297],[53.48748,26.73012],[53.487751,26.730551],[53.48801,26.730961],[53.488071,26.73105],[53.48838,26.73151],[53.48872,26.732031],[53.488998,26.7325],[53.489319,26.733],[53.489361,26.733061],[53.490028,26.734091],[53.491249,26.736],[53.491402,26.73625],[53.50024,26.74984],[53.506119,26.75881],[53.50737,26.76107],[53.507881,26.762609],[53.508389,26.765961],[53.508572,26.76862],[53.508629,26.76952],[53.508991,26.775141],[53.509171,26.777069],[53.509682,26.78278],[53.509789,26.784201],[53.509869,26.78524],[53.511181,26.80125],[53.511829,26.809389],[53.51268,26.81377],[53.513889,26.817631],[53.519119,26.831141],[53.526161,26.8493],[53.526772,26.85075],[53.527691,26.85368],[53.52821,26.855391],[53.52887,26.858471],[53.528969,26.858931],[53.529549,26.86157],[53.530048,26.86355],[53.530369,26.86561],[53.53059,26.86692],[53.531738,26.872299],[53.536381,26.8929],[53.538391,26.90213],[53.543839,26.9268],[53.551048,26.95891],[53.551739,26.961479],[53.552341,26.963369],[53.55397,26.96689],[53.556889,26.9729],[53.569759,26.99976],[53.584961,27.03109],[53.588219,27.037609],[53.58942,27.03907],[53.590111,27.039761],[53.59095,27.040529],[53.592159,27.04105],[53.595341,27.04215],[53.595509,27.04221],[53.598179,27.043249],[53.60865,27.047779],[53.61459,27.050211],[53.619888,27.05237],[53.625561,27.05632],[53.642429,27.06823],[53.649181,27.073],[53.650631,27.074301],[53.651821,27.07575],[53.652611,27.076799],[53.652828,27.07737],[53.653172,27.07884],[53.65332,27.080271],[53.653431,27.080721],[53.653641,27.081011],[53.653992,27.08128],[53.654369,27.081289],[53.65477,27.080919],[53.655239,27.080259],[53.656448,27.078671],[53.659988,27.082451],[53.662281,27.084949],[53.6633,27.08606],[53.664532,27.0874],[53.66666,27.089849],[53.667381,27.09166],[53.668259,27.09709],[53.67004,27.108141],[53.670639,27.111259],[53.67107,27.11326],[53.67355,27.12612],[53.673859,27.127701],[53.674351,27.128901],[53.675331,27.130619],[53.676682,27.13303],[53.676941,27.133499],[53.677341,27.134199],[53.677441,27.134411],[53.678822,27.13682],[53.67963,27.138229],[53.68021,27.139271],[53.68285,27.14402],[53.684669,27.14727],[53.686001,27.149679],[53.686871,27.15139],[53.687012,27.15197],[53.688042,27.15625],[53.68819,27.156839],[53.689732,27.16325],[53.68988,27.16383],[53.691441,27.168751],[53.693729,27.17387],[53.698101,27.18252],[53.700031,27.186449],[53.701439,27.18993],[53.702068,27.19207],[53.70245,27.193529],[53.703121,27.196581],[53.703541,27.19965],[53.704151,27.20764],[53.704739,27.21525],[53.704781,27.216459],[53.704811,27.21689],[53.70483,27.2171],[53.704899,27.217699],[53.705021,27.21817],[53.705212,27.21862],[53.70565,27.219259],[53.706139,27.21965],[53.706451,27.219851],[53.707249,27.22032],[53.707561,27.220551],[53.707859,27.220881],[53.70845,27.221951],[53.711861,27.229839],[53.713772,27.234261],[53.719021,27.246229],[53.719971,27.24844],[53.720612,27.25021],[53.721352,27.252501],[53.722149,27.255619],[53.727829,27.2789],[53.728321,27.28105],[53.731331,27.293301],[53.73196,27.295481],[53.73299,27.29847],[53.73415,27.301451],[53.73513,27.303511],[53.73616,27.30538],[53.736961,27.306561],[53.737911,27.30785],[53.748009,27.320761],[53.75193,27.325769],[53.75993,27.33601],[53.761848,27.338499],[53.76622,27.343981],[53.767921,27.346121],[53.77039,27.349291],[53.774071,27.353889],[53.779831,27.36125],[53.780769,27.362379],[53.781021,27.36272],[53.78157,27.36342],[53.788879,27.372669],[53.79232,27.376989],[53.795971,27.38159],[53.800949,27.38784],[53.802391,27.389759],[53.803421,27.391319],[53.80439,27.392941],[53.805168,27.39439],[53.805889,27.395809],[53.806259,27.396561],[53.806648,27.39743],[53.806938,27.39805],[53.807369,27.39909],[53.808041,27.40081],[53.80854,27.40229],[53.809551,27.405569],[53.810902,27.41003],[53.811859,27.41321],[53.812382,27.415051],[53.813351,27.41828],[53.813702,27.41951],[53.81501,27.42396],[53.816109,27.42761],[53.816898,27.42992],[53.817829,27.432171],[53.818199,27.432911],[53.818581,27.433661],[53.81905,27.43454],[53.82045,27.43712],[53.82127,27.43856],[53.822811,27.441429],[53.82526,27.44586],[53.8265,27.448139],[53.827721,27.45035],[53.83017,27.454861],[53.83152,27.457251],[53.832932,27.45933],[53.834221,27.460911],[53.83522,27.461969],[53.83633,27.462999],[53.837811,27.46438],[53.839119,27.465639],[53.8395,27.465931],[53.84029,27.46677],[53.840469,27.46698],[53.841881,27.468571],[53.843441,27.470249],[53.844158,27.47101],[53.84502,27.47179],[53.845421,27.47213],[53.84557,27.472469],[53.84573,27.47283],[53.845909,27.47331],[53.846149,27.47382],[53.84626,27.47401],[53.846512,27.474239],[53.847488,27.474859],[53.848351,27.475241],[53.848999,27.47547],[53.849339,27.47554],[53.849411,27.475559],[53.849289,27.477329],[53.849171,27.478621],[53.84914,27.478889],[53.849041,27.479361],[53.84893,27.480249],[53.848839,27.48098],[53.848591,27.482229],[53.848511,27.482599],[53.84866,27.48284],[53.849461,27.48415],[53.849869,27.484831],[53.850788,27.48674],[53.85091,27.48687],[53.851051,27.486919],[53.851521,27.486481],[53.852428,27.48616],[53.85281,27.48617],[53.85297,27.48628],[53.853111,27.486481],[53.85326,27.4867],[53.85334,27.486851],[53.853458,27.48723],[53.85358,27.48782],[53.853642,27.488041],[53.85371,27.4883],[53.853619,27.4886],[53.853321,27.489611],[53.853241,27.490179],[53.85321,27.490999],[53.853279,27.49173],[53.853321,27.49192],[53.85342,27.492491],[53.855141,27.49638],[53.85548,27.49699],[53.855881,27.49749],[53.856071,27.49765],[53.856468,27.49791],[53.856899,27.498039],[53.857349,27.498079],[53.85775,27.49806],[53.858021,27.49799],[53.858109,27.497971],[53.85828,27.49791],[53.85947,27.497709],[53.860001,27.497601],[53.860298,27.49754],[53.86084,27.497431],[53.861271,27.49736],[53.86245,27.49711],[53.862469,27.49711],[53.863152,27.49696],[53.864361,27.496679],[53.864719,27.49655],[53.86491,27.496441],[53.865471,27.496161],[53.865559,27.496111],[53.867378,27.495239],[53.86974,27.49408],[53.869808,27.49404],[53.869869,27.4942],[53.870041,27.4946],[53.87199,27.49893],[53.872231,27.499399],[53.872978,27.50046],[53.87302,27.500521],[53.873699,27.501579],[53.874889,27.50338],[53.875408,27.50415],[53.87542,27.504181],[53.87569,27.504669],[53.875858,27.505051],[53.875969,27.505381],[53.8764,27.507509],[53.87669,27.508909],[53.877319,27.5121],[53.87751,27.51302],[53.877769,27.514259],[53.877949,27.51516],[53.87812,27.515921],[53.878429,27.516701],[53.878761,27.517441],[53.879379,27.518829],[53.879871,27.519951],[53.880451,27.521299],[53.8806,27.52161],[53.880772,27.52198],[53.881351,27.523529],[53.88221,27.525801],[53.88271,27.52709],[53.882889,27.52784],[53.883781,27.532681],[53.883862,27.53318],[53.88406,27.5341],[53.884121,27.53476],[53.88459,27.53665],[53.88483,27.537491],[53.88554,27.5397],[53.885601,27.53977],[53.885681,27.539789],[53.88575,27.53977],[53.885792,27.53968],[53.885811,27.53953],[53.886108,27.53824],[53.886238,27.538031],[53.886372,27.537979],[53.886761,27.53816],[53.887211,27.538349],[53.887939,27.538759],[53.887981,27.53878],[53.888199,27.538879],[53.88905,27.53936],[53.88966,27.539721],[53.890282,27.540091],[53.890579,27.54047],[53.890999,27.54113],[53.892979,27.5441],[53.894032,27.54571],[53.894291,27.54616],[53.894421,27.546459],[53.895061,27.54826],[53.89521,27.548599],[53.895359,27.548929],[53.896091,27.550211],[53.896179,27.55035],[53.896252,27.550461],[53.896351,27.550631],[53.896992,27.551941],[53.897018,27.551991],[53.89706,27.552059],[53.897861,27.553699],[53.897911,27.55382],[53.898762,27.555559],[53.89893,27.55595],[53.89933,27.556721],[53.900501,27.559099],[53.901489,27.561041],[53.90419,27.56646],[53.904221,27.566521],[53.90427,27.56661],[53.905529,27.569031],[53.90617,27.57028],[53.907269,27.572439],[53.907398,27.572689],[53.907902,27.573681],[53.907982,27.57383],[53.90802,27.57398],[53.908051,27.57411],[53.908058,27.57428],[53.90807,27.574471],[53.90807,27.57457],[53.908089,27.574671],[53.9081,27.574739],[53.908138,27.574841],[53.908199,27.57497],[53.908241,27.57502],[53.908428,27.57535],[53.908531,27.57551],[53.908569,27.57556],[53.908619,27.5756],[53.908649,27.5756],[53.90876,27.575621],[53.908901,27.57564],[53.908989,27.575661],[53.909061,27.57571],[53.90913,27.575821],[53.909512,27.57641],[53.9105,27.57778],[53.910641,27.577971],[53.911942,27.579321],[53.912552,27.579941],[53.913841,27.581221],[53.913971,27.581381],[53.91407,27.581511],[53.914108,27.58156],[53.914989,27.58288],[53.91555,27.58374],[53.91647,27.585119],[53.916599,27.58534],[53.916759,27.58568],[53.916908,27.58604],[53.91832,27.5896],[53.918388,27.58979],[53.919769,27.59314],[53.919979,27.59371],[53.921028,27.59638],[53.921398,27.59734],[53.92165,27.59831],[53.92194,27.599609],[53.922291,27.601021],[53.922451,27.60289],[53.922508,27.60359],[53.922699,27.60564],[53.92284,27.60741],[53.922871,27.60774],[53.922989,27.608931],[53.923038,27.6092],[53.92308,27.60939],[53.92371,27.61199],[53.924309,27.614241],[53.924568,27.615271],[53.924702,27.61574],[53.924911,27.616541],[53.925529,27.61887],[53.925598,27.61915],[53.925869,27.62019],[53.926109,27.62109],[53.927292,27.625641],[53.927528,27.62648],[53.928188,27.62883],[53.92849,27.62993],[53.928558,27.63019],[53.929111,27.6322],[53.929722,27.634411],[53.929829,27.634821],[53.929871,27.63497],[53.929932,27.63518],[53.93082,27.638371],[53.930939,27.6388],[53.931,27.639021],[53.931091,27.639351],[53.932308,27.643829],[53.93256,27.64473],[53.933571,27.648359],[53.934841,27.652929],[53.934898,27.653139],[53.935661,27.65589],[53.935749,27.656191],[53.936111,27.65748],[53.937061,27.660999],[53.937351,27.662029],[53.938129,27.664841],[53.938789,27.66703],[53.939651,27.669729],[53.94006,27.67111],[53.940479,27.672489],[53.940868,27.67374],[53.941471,27.67568],[53.941601,27.67606],[53.942719,27.6796],[53.942909,27.68021],[53.943001,27.680571],[53.943821,27.68317],[53.944199,27.68441],[53.945721,27.689301],[53.946072,27.690439],[53.947208,27.69396],[53.947861,27.696011],[53.948601,27.69842],[53.948769,27.698959],[53.950039,27.702971],[53.950859,27.70557],[53.95137,27.70722],[53.95145,27.70752],[53.95163,27.70813],[53.951881,27.708941],[53.952869,27.71207],[53.953461,27.713909],[53.954311,27.716619],[53.955311,27.71962],[53.955608,27.72039],[53.95594,27.72117],[53.95647,27.722481],[53.957191,27.724079],[53.957611,27.72492],[53.957951,27.7257],[53.960041,27.73024],[53.96114,27.732611],[53.962158,27.734831],[53.963848,27.73852],[53.9641,27.739031],[53.96447,27.73978],[53.96492,27.740749],[53.965611,27.74227],[53.966282,27.743771],[53.967659,27.74682],[53.968658,27.74898],[53.969059,27.749861],[53.970188,27.75235],[53.970669,27.75346],[53.972221,27.75704],[53.972229,27.75704],[53.97403,27.761499],[53.975571,27.765289],[53.976849,27.768471],[53.977161,27.76931],[53.97887,27.773649],[53.979031,27.77405],[53.98204,27.781429],[53.9837,27.785379],[53.985161,27.789129],[53.985748,27.790751],[53.98595,27.79133],[53.988739,27.798981],[53.98909,27.800051],[53.99152,27.806829],[53.992111,27.80839],[53.99353,27.812321],[53.99371,27.812799],[53.994041,27.813749],[53.996361,27.820351],[53.996861,27.821621],[53.997372,27.82292],[53.997681,27.823839],[53.99815,27.825081],[54.003719,27.840469],[54.008362,27.85335],[54.008701,27.854549],[54.012661,27.87396],[54.013809,27.87985],[54.014809,27.88479],[54.015369,27.88829],[54.015579,27.88987],[54.015629,27.89024],[54.015808,27.891979],[54.015881,27.892611],[54.01622,27.895519],[54.01656,27.8976],[54.01701,27.900141],[54.017609,27.90283],[54.01828,27.90534],[54.01902,27.907801],[54.019501,27.90937],[54.020088,27.911539],[54.02063,27.91374],[54.021252,27.916731],[54.021759,27.91967],[54.021912,27.92078],[54.023251,27.93115],[54.02425,27.938931],[54.02737,27.96287],[54.028141,27.96896],[54.029072,27.975969],[54.02953,27.979589],[54.02964,27.980881],[54.02972,27.98218],[54.029732,27.992821],[54.02977,27.993361],[54.029839,27.99441],[54.029968,27.995461],[54.030449,27.997959],[54.033821,28.01445],[54.036221,28.02623],[54.037331,28.031679],[54.038479,28.037279],[54.03965,28.04285],[54.040489,28.047211],[54.041401,28.05162],[54.041649,28.05271],[54.041981,28.053789],[54.043201,28.057369],[54.046021,28.06555],[54.04673,28.067659],[54.0471,28.068911],[54.047642,28.07143],[54.04884,28.079241],[54.049229,28.081289],[54.049671,28.08341],[54.05003,28.08527],[54.050098,28.08551],[54.05093,28.08955],[54.0592,28.130301],[54.063889,28.152901],[54.064091,28.153851],[54.065399,28.159889],[54.066761,28.16658],[54.071041,28.188311],[54.07505,28.207399],[54.07634,28.21306],[54.076691,28.21455],[54.07711,28.21632],[54.083599,28.242781],[54.08733,28.25701],[54.087551,28.25913],[54.09256,28.279671],[54.094959,28.28937],[54.097618,28.300739],[54.097691,28.30102],[54.097969,28.302111],[54.09848,28.30415],[54.098888,28.305849],[54.099152,28.30707],[54.100071,28.310671],[54.10183,28.3176],[54.102341,28.31958],[54.103889,28.32593],[54.104401,28.328159],[54.105782,28.33374],[54.106461,28.336571],[54.106628,28.33709],[54.107239,28.3388],[54.10741,28.339319],[54.108028,28.340429],[54.109119,28.34207],[54.109982,28.343269],[54.110149,28.343531],[54.112209,28.346359],[54.113911,28.34873],[54.11446,28.349489],[54.11462,28.34971],[54.121738,28.359489],[54.12381,28.36235],[54.14333,28.3894],[54.14912,28.39743],[54.154831,28.405439],[54.160019,28.412531],[54.16637,28.42137],[54.17976,28.44009],[54.187809,28.454639],[54.188259,28.45546],[54.19331,28.464661],[54.195042,28.46789],[54.19611,28.46969],[54.197701,28.47258],[54.198799,28.4746],[54.200619,28.47794],[54.201679,28.47991],[54.20295,28.48181],[54.203541,28.482491],[54.204399,28.483339],[54.206421,28.48455],[54.208569,28.48558],[54.210751,28.48678],[54.213921,28.488411],[54.216709,28.489981],[54.21806,28.490681],[54.21944,28.49147],[54.222672,28.493191],[54.222939,28.493349],[54.224731,28.49424],[54.226021,28.49527],[54.226151,28.49544],[54.226871,28.496441],[54.22744,28.497589],[54.22834,28.50025],[54.229252,28.502859],[54.229698,28.504009],[54.230148,28.50494],[54.230209,28.50507],[54.230591,28.50565],[54.231071,28.506201],[54.231312,28.506411],[54.23209,28.507111],[54.23262,28.507589],[54.236488,28.511049],[54.237518,28.51235],[54.237911,28.513201],[54.238071,28.51354],[54.238209,28.513849],[54.238781,28.515421],[54.239498,28.51931],[54.240101,28.52231],[54.240742,28.52557],[54.243439,28.534109],[54.243511,28.53434],[54.24424,28.53665],[54.244831,28.53853],[54.245838,28.541599],[54.246971,28.545139],[54.247501,28.54682],[54.25169,28.5599],[54.252621,28.562889],[54.253971,28.567261],[54.255291,28.57115],[54.255562,28.57262],[54.25864,28.608959],[54.25993,28.62565],[54.2607,28.636089],[54.261841,28.650881],[54.262058,28.6549],[54.26252,28.661011],[54.26265,28.663309],[54.262791,28.66564],[54.262791,28.667999],[54.262741,28.67205],[54.262959,28.67383],[54.26355,28.676241],[54.264729,28.67877],[54.265659,28.680149],[54.266529,28.681459],[54.267441,28.682899],[54.268051,28.684401],[54.268559,28.68602],[54.26899,28.68812],[54.269409,28.690849],[54.26965,28.692591],[54.270061,28.69663],[54.270061,28.69862],[54.270069,28.70488],[54.270069,28.70706],[54.270111,28.708679],[54.270229,28.710291],[54.270351,28.71492],[54.27055,28.71624],[54.270741,28.71689],[54.275661,28.73432],[54.27774,28.748079],[54.27784,28.748779],[54.278782,28.755541],[54.278751,28.755899],[54.278511,28.75876],[54.278271,28.76067],[54.278069,28.762421],[54.278069,28.76243],[54.277981,28.763189],[54.27792,28.763691],[54.27787,28.764139],[54.277699,28.76561],[54.277569,28.76664],[54.277241,28.769751],[54.27718,28.770069],[54.277321,28.77046],[54.277409,28.770809],[54.277611,28.771311],[54.278469,28.77354],[54.279621,28.77664],[54.281029,28.78042],[54.28788,28.798861],[54.28915,28.80201],[54.290051,28.802771],[54.289959,28.804581],[54.289879,28.806379],[54.289688,28.810459],[54.289631,28.811729],[54.28912,28.82378],[54.289028,28.82589],[54.288971,28.827641],[54.289139,28.831301],[54.2897,28.838289],[54.290699,28.85079],[54.291061,28.86319],[54.291309,28.87359],[54.29155,28.876591],[54.292801,28.884689],[54.29512,28.89897],[54.295979,28.904261],[54.296131,28.9053],[54.297779,28.916269],[54.29821,28.919451],[54.29855,28.923229],[54.298759,28.926241],[54.299271,28.93329],[54.299721,28.939739],[54.299809,28.94099],[54.299938,28.942789],[54.30006,28.94445],[54.300129,28.945379],[54.300251,28.947069],[54.30027,28.948721],[54.300468,28.950411],[54.301041,28.95756],[54.301842,28.969],[54.301991,28.97043],[54.30262,28.97678],[54.30302,28.979361],[54.30434,28.98613],[54.304668,28.98786],[54.305099,28.99007],[54.30756,29.00271],[54.308418,29.007339],[54.30928,29.01326],[54.31057,29.022791],[54.3116,29.029831],[54.31271,29.036091],[54.31366,29.04081],[54.31572,29.04871],[54.316879,29.052059],[54.317822,29.05476],[54.318352,29.056311],[54.331249,29.092911],[54.334259,29.099689],[54.335541,29.102119],[54.3358,29.10261],[54.336319,29.10347],[54.336578,29.10388],[54.339409,29.10836],[54.345329,29.11635],[54.347988,29.120119],[54.349541,29.12261],[54.35194,29.127251],[54.35434,29.13282],[54.355801,29.1366],[54.362148,29.155661],[54.362839,29.15814],[54.364391,29.16415],[54.364811,29.166031],[54.36499,29.167061],[54.36573,29.171209],[54.366531,29.17643],[54.370911,29.20389],[54.371681,29.209299],[54.3722,29.21393],[54.37244,29.217501],[54.372532,29.220209],[54.37252,29.22753],[54.371441,29.28266],[54.371391,29.28616],[54.371319,29.28879],[54.3713,29.291611],[54.371361,29.29356],[54.371422,29.295219],[54.37162,29.29781],[54.37191,29.300289],[54.37254,29.304399],[54.37331,29.30826],[54.374168,29.3111],[54.374729,29.312901],[54.375938,29.316811],[54.377239,29.321199],[54.377522,29.32234],[54.378811,29.3274],[54.379921,29.332979],[54.380428,29.336161],[54.38073,29.3381],[54.380871,29.338989],[54.381329,29.342609],[54.384121,29.36319],[54.38438,29.36491],[54.385578,29.37075],[54.39082,29.39521],[54.395531,29.41711],[54.396999,29.42594],[54.397598,29.42997],[54.39991,29.44969],[54.400108,29.45138],[54.40044,29.45376],[54.40062,29.45509],[54.401009,29.45755],[54.401989,29.46331],[54.403011,29.46817],[54.406269,29.48439],[54.40765,29.49065],[54.408932,29.49555],[54.409962,29.49881],[54.412708,29.506189],[54.419231,29.52121],[54.419899,29.523069],[54.421791,29.52866],[54.42292,29.532749],[54.424809,29.541121],[54.4291,29.5606],[54.430389,29.56739],[54.431252,29.57262],[54.43219,29.579491],[54.433311,29.588181],[54.433491,29.589689],[54.434528,29.596939],[54.435322,29.60264],[54.435619,29.60507],[54.436909,29.61408],[54.43708,29.615191],[54.437241,29.616381],[54.437531,29.618191],[54.438141,29.621481],[54.43848,29.623091],[54.43895,29.62516],[54.439571,29.627609],[54.439899,29.62882],[54.4403,29.63028],[54.44136,29.63376],[54.442451,29.63719],[54.444641,29.644039],[54.447151,29.652069],[54.447788,29.654169],[54.448349,29.655951],[54.449291,29.65892],[54.450218,29.66189],[54.451248,29.665831],[54.456188,29.687019],[54.45718,29.69128],[54.457722,29.693911],[54.458038,29.695749],[54.458679,29.69985],[54.45927,29.704639],[54.459541,29.70756],[54.460072,29.71306],[54.46032,29.71633],[54.461971,29.735531],[54.462318,29.738621],[54.46262,29.74155],[54.463428,29.746429],[54.46386,29.74917],[54.464981,29.754169],[54.46627,29.759899],[54.474419,29.79578],[54.47678,29.806629],[54.477001,29.807631],[54.477772,29.81303],[54.479141,29.824711],[54.479389,29.829189],[54.479401,29.832861],[54.479401,29.835779],[54.479221,29.838869],[54.47897,29.84136],[54.478539,29.84436],[54.477638,29.849171],[54.476471,29.85535],[54.47485,29.86367],[54.474331,29.86685],[54.47393,29.870871],[54.47348,29.876631],[54.473301,29.882641],[54.473301,29.88702],[54.473549,29.892269],[54.473911,29.89637],[54.474331,29.90015],[54.475101,29.905821],[54.47588,29.911261],[54.476009,29.91217],[54.476131,29.912979],[54.476559,29.91593],[54.47744,29.921949],[54.478668,29.930389],[54.479771,29.937981],[54.481918,29.952721],[54.482849,29.95892],[54.484409,29.96966],[54.484871,29.97274],[54.485729,29.978769],[54.491371,30.01828],[54.492378,30.02508],[54.492661,30.02648],[54.493229,30.02866],[54.4939,30.03088],[54.498699,30.047119],[54.49884,30.047621],[54.49926,30.049259],[54.499592,30.051069],[54.49976,30.052429],[54.500011,30.055189],[54.500301,30.060289],[54.501331,30.07649],[54.501949,30.08609],[54.50198,30.087179],[54.502239,30.089689],[54.502361,30.090799],[54.50425,30.10475],[54.506008,30.117201],[54.506271,30.11908],[54.50655,30.120501],[54.50687,30.12211],[54.50737,30.12393],[54.507919,30.125839],[54.508739,30.128019],[54.51511,30.1404],[54.518089,30.14632],[54.52309,30.15601],[54.52512,30.16013],[54.52787,30.16567],[54.535488,30.18075],[54.53627,30.18231],[54.538921,30.187611],[54.542049,30.193951],[54.542679,30.195641],[54.543171,30.19755],[54.543339,30.19824],[54.543598,30.19936],[54.544102,30.202971],[54.545349,30.212],[54.546089,30.2173],[54.54718,30.225519],[54.547581,30.228439],[54.547989,30.23138],[54.548382,30.23432],[54.549858,30.244499],[54.553299,30.269739],[54.553471,30.27051],[54.55373,30.271799],[54.554161,30.273689],[54.554581,30.27486],[54.55484,30.27557],[54.555531,30.277031],[54.556931,30.27965],[54.557491,30.280689],[54.56028,30.28591],[54.56168,30.28867],[54.562641,30.29073],[54.563511,30.29283],[54.564201,30.29463],[54.567242,30.304001],[54.569519,30.31102],[54.570549,30.314199],[54.57132,30.31609],[54.572262,30.31806],[54.575699,30.32493],[54.576469,30.32621],[54.577251,30.32733],[54.590641,30.34347],[54.5914,30.344391],[54.59483,30.34856],[54.599911,30.35471],[54.600761,30.355829],[54.60162,30.357109],[54.602482,30.35874],[54.603939,30.36286],[54.6096,30.379601],[54.618641,30.405649],[54.618858,30.406281],[54.619301,30.407579],[54.619732,30.40913],[54.620029,30.41082],[54.620369,30.41293],[54.62162,30.424231],[54.62215,30.42852],[54.62228,30.42956],[54.62302,30.435459],[54.623508,30.438999],[54.623852,30.44174],[54.624538,30.446289],[54.625172,30.45134],[54.625511,30.45402],[54.6273,30.468349],[54.62994,30.48938],[54.632351,30.508261],[54.635349,30.53229],[54.638962,30.56225],[54.641529,30.583191],[54.642479,30.591089],[54.64325,30.59547],[54.652691,30.63521],[54.656288,30.650311],[54.65913,30.66264],[54.668839,30.704189],[54.669769,30.70816],[54.672771,30.720779],[54.675861,30.738199],[54.683159,30.780769],[54.683159,30.78112],[54.68359,30.785839],[54.685989,30.830641],[54.686081,30.83218],[54.68737,30.854071],[54.689079,30.883511],[54.689362,30.889811],[54.68943,30.891411],[54.689861,30.926941],[54.68993,30.93252],[54.690121,30.947729],[54.690369,30.968229],[54.690708,30.981791],[54.690842,30.992599],[54.69091,30.99811],[54.690929,30.999861],[54.69099,31.000401],[54.69099,31.000641],[54.690948,31.00079],[54.690971,31.001591],[54.691109,31.014879],[54.69112,31.020109],[54.690041,31.044901],[54.68993,31.04747],[54.689911,31.04792],[54.689758,31.051371],[54.68969,31.052851],[54.689949,31.06407],[54.69099,31.074699],[54.691151,31.076361],[54.69138,31.078621],[54.696129,31.126921],[54.70182,31.184681],[54.70348,31.201559],[54.709801,31.244181],[54.710098,31.245501],[54.71991,31.27948],[54.72105,31.28344],[54.722351,31.2883],[54.72567,31.30748],[54.72942,31.330219],[54.73003,31.33383],[54.730419,31.336201],[54.735161,31.35643],[54.738861,31.37289],[54.739201,31.376591],[54.742001,31.406601],[54.742519,31.412239],[54.744171,31.427839],[54.749031,31.478121],[54.749538,31.48156],[54.751961,31.488119],[54.762619,31.51403],[54.771992,31.53681],[54.786671,31.57107],[54.78896,31.57519],[54.791,31.578859],[54.792702,31.58213],[54.794479,31.58531],[54.795109,31.58646],[54.79652,31.589029],[54.802349,31.599859],[54.80621,31.60693],[54.80685,31.60828],[54.807449,31.610001],[54.80798,31.612209],[54.810699,31.62418],[54.81295,31.63438],[54.81358,31.63641],[54.814232,31.63796],[54.81496,31.639339],[54.815788,31.640591],[54.83802,31.663321],[54.841209,31.666731],[54.842098,31.66818],[54.842949,31.67001],[54.843651,31.6724],[54.84396,31.67371],[54.844181,31.675091],[54.844349,31.677031],[54.84444,31.679331],[54.84465,31.68441],[54.846569,31.740999],[54.849159,31.80023],[54.849239,31.8048],[54.850559,31.838461],[54.850788,31.844669],[54.851139,31.852501],[54.851139,31.854111],[54.8512,31.85553],[54.851311,31.857031],[54.85144,31.85841],[54.85149,31.85882],[54.851688,31.860241],[54.852032,31.861959],[54.859341,31.893641],[54.859699,31.89522],[54.860031,31.896851],[54.860298,31.89867],[54.860409,31.900021],[54.860561,31.905109],[54.860611,31.90695],[54.860668,31.908211],[54.860821,31.910419],[54.860939,31.91284],[54.86174,31.93083],[54.86179,31.931709],[54.86198,31.93619],[54.86211,31.940531],[54.862171,31.94173],[54.8624,31.945431],[54.862839,31.95606],[54.8629,31.95756],[54.863209,31.965019],[54.86338,31.96809],[54.863522,31.971239],[54.863541,31.97155],[54.863701,31.97481],[54.863949,31.97867],[54.864189,31.98204],[54.864349,31.98418],[54.864689,31.98926],[54.864731,31.989929],[54.865681,32.003479],[54.86578,32.004681],[54.865921,32.005779],[54.866131,32.006962],[54.866459,32.008301],[54.86763,32.012791],[54.869431,32.01968],[54.870071,32.022091],[54.87072,32.024529],[54.870949,32.025391],[54.872181,32.030022],[54.87249,32.031181],[54.874161,32.03746],[54.878208,32.0527],[54.882191,32.06781],[54.882839,32.070171],[54.883129,32.071301],[54.88356,32.073002],[54.883839,32.074139],[54.883949,32.07468],[54.88406,32.075291],[54.884682,32.07943],[54.884941,32.0811],[54.885281,32.082699],[54.88916,32.097759],[54.88974,32.100101],[54.89006,32.101212],[54.890419,32.10228],[54.89106,32.104092],[54.89365,32.111629],[54.894081,32.112831],[54.894569,32.113979],[54.895279,32.11541],[54.895931,32.116421],[54.89698,32.117691],[54.89772,32.118359],[54.898571,32.118961],[54.908989,32.124649],[54.91114,32.12619],[54.912048,32.127312],[54.914181,32.130299],[54.9259,32.147099],[54.926331,32.147881],[54.92712,32.149521],[54.928211,32.151859],[54.930771,32.15741],[54.93288,32.161961],[54.93465,32.165771],[54.935558,32.16774],[54.93895,32.17519],[54.941002,32.179699],[54.941681,32.180988],[54.942371,32.182159],[54.951599,32.195801],[54.955898,32.20388],[54.957008,32.205929],[54.967041,32.22168],[54.98328,32.24715],[54.984089,32.248421],[54.984772,32.2495],[55.009338,32.288151],[55.011139,32.29108],[55.014061,32.29562],[55.01519,32.297409],[55.016338,32.299351],[55.017502,32.302029],[55.019192,32.307861],[55.020069,32.310921],[55.02364,32.323231],[55.028831,32.340839],[55.029331,32.342609],[55.029751,32.344479],[55.02998,32.34597],[55.030151,32.347591],[55.031769,32.365952],[55.032341,32.372421],[55.033009,32.38018],[55.033112,32.381931],[55.033699,32.402451],[55.03373,32.403099],[55.03381,32.404652],[55.033901,32.405529],[55.034019,32.4063],[55.03429,32.407921],[55.055199,32.499489],[55.055729,32.501888],[55.056099,32.504452],[55.056629,32.51738],[55.05714,32.530281],[55.05822,32.55682],[55.059029,32.576729],[55.059422,32.586262],[55.059818,32.595951],[55.059959,32.597309],[55.060169,32.598701],[55.060711,32.601089],[55.065331,32.618801],[55.065739,32.62035],[55.066109,32.62178],[55.069069,32.63324],[55.072861,32.647812],[55.073879,32.65197],[55.076351,32.664532],[55.076389,32.664761],[55.076599,32.665852],[55.077,32.66798],[55.077229,32.66922],[55.077728,32.672001],[55.078171,32.674419],[55.078529,32.677502],[55.078678,32.678841],[55.078831,32.68037],[55.079029,32.684189],[55.079021,32.687019],[55.07896,32.69241],[55.078999,32.695271],[55.07901,32.69603],[55.07906,32.696899],[55.07909,32.697479],[55.079109,32.697769],[55.07943,32.70303],[55.079578,32.70578],[55.079639,32.707691],[55.07967,32.708408],[55.07967,32.7094],[55.079659,32.710388],[55.079651,32.712261],[55.079632,32.716011],[55.079361,32.733269],[55.079269,32.739151],[55.079201,32.743149],[55.079231,32.7444],[55.079319,32.745689],[55.079681,32.748379],[55.080608,32.755371],[55.080929,32.757801],[55.081959,32.764309],[55.085812,32.792412],[55.09552,32.86187],[55.100609,32.89822],[55.101082,32.90139],[55.103889,32.921909],[55.105289,32.931881],[55.107571,32.952911],[55.11404,33.01384],[55.11478,33.020802],[55.116661,33.038502],[55.116989,33.04158],[55.117229,33.04388],[55.118839,33.05909],[55.11903,33.06097],[55.120232,33.07328],[55.12038,33.074821],[55.122749,33.097221],[55.12476,33.11731],[55.127258,33.141972],[55.12812,33.150501],[55.128658,33.155849],[55.12941,33.164082],[55.129551,33.167191],[55.130001,33.171902],[55.130329,33.174858],[55.13203,33.194359],[55.132179,33.19561],[55.132408,33.196869],[55.13242,33.196911],[55.133831,33.202961],[55.134621,33.206329],[55.13612,33.212269],[55.136971,33.21603],[55.138378,33.226891],[55.13974,33.23716],[55.140041,33.239479],[55.140072,33.239712],[55.140381,33.242279],[55.141708,33.25333],[55.142429,33.260601],[55.14365,33.273491],[55.14463,33.283451],[55.144981,33.286999],[55.145432,33.290569],[55.145931,33.294651],[55.1493,33.320049],[55.15123,33.334499],[55.15263,33.344742],[55.15284,33.346119],[55.15303,33.347069],[55.153801,33.350552],[55.157761,33.367619],[55.162682,33.38887],[55.169258,33.417431],[55.174049,33.438259],[55.17432,33.439339],[55.177589,33.450409],[55.178169,33.452431],[55.178768,33.454479],[55.17944,33.456692],[55.181492,33.463692],[55.181839,33.46484],[55.182049,33.465569],[55.182529,33.467381],[55.18285,33.468639],[55.183102,33.469921],[55.183289,33.471249],[55.183418,33.472778],[55.18343,33.474361],[55.183319,33.481689],[55.183182,33.492439],[55.182961,33.503281],[55.182739,33.514259],[55.182671,33.51741],[55.182621,33.521042],[55.18235,33.535782],[55.182072,33.548512],[55.18187,33.561279],[55.181499,33.586761],[55.181221,33.603661],[55.181129,33.605789],[55.180851,33.611301],[55.180569,33.616859],[55.180271,33.624821],[55.179821,33.63496],[55.179321,33.64608],[55.179359,33.647659],[55.179569,33.650719],[55.180931,33.665291],[55.18182,33.675159],[55.182861,33.686871],[55.18391,33.698719],[55.18602,33.722271],[55.186989,33.733398],[55.18895,33.755562],[55.190262,33.769772],[55.194389,33.816311],[55.196049,33.834789],[55.196869,33.84407],[55.197689,33.853371],[55.19833,33.860611],[55.199032,33.86861],[55.1991,33.87019],[55.199181,33.874062],[55.199211,33.876949],[55.199421,33.887241],[55.1996,33.89735],[55.199619,33.90036],[55.199551,33.90255],[55.199451,33.904598],[55.19931,33.906391],[55.199139,33.908112],[55.198841,33.910439],[55.198441,33.912949],[55.19759,33.91806],[55.191551,33.95348],[55.191269,33.95528],[55.191101,33.957279],[55.191021,33.959831],[55.190811,33.96743],[55.190578,33.975052],[55.189999,33.992611],[55.189789,34.0009],[55.189232,34.021271],[55.18832,34.037739],[55.187389,34.05756],[55.187401,34.05949],[55.18755,34.06139],[55.20303,34.140381],[55.203529,34.142971],[55.20401,34.14492],[55.204639,34.146832],[55.205761,34.149288],[55.205898,34.14962],[55.210041,34.158669],[55.2104,34.159451],[55.21236,34.171219],[55.220131,34.21777],[55.22076,34.222012],[55.22147,34.232059],[55.221619,34.234131],[55.22179,34.235569],[55.22208,34.237122],[55.222641,34.239288],[55.227921,34.257561],[55.228619,34.259899],[55.231991,34.271622],[55.241379,34.306728],[55.241661,34.307739],[55.24202,34.309109],[55.242371,34.310398],[55.243,34.312672],[55.243111,34.312801],[55.243279,34.313431],[55.245979,34.323818],[55.249329,34.336559],[55.250351,34.340199],[55.260361,34.372532],[55.261391,34.375931],[55.2654,34.389042],[55.266911,34.393532],[55.269669,34.401371],[55.288132,34.453289],[55.294189,34.472851],[55.315441,34.531609],[55.316608,34.535561],[55.323341,34.559711],[55.32428,34.562809],[55.332668,34.582691],[55.341709,34.604092],[55.350731,34.625549],[55.356709,34.639721],[55.357521,34.641819],[55.362461,34.656601],[55.36404,34.661339],[55.36602,34.667191],[55.366451,34.668381],[55.370098,34.677139],[55.373711,34.685791],[55.37418,34.68689],[55.374458,34.687469],[55.375031,34.688629],[55.377029,34.69236],[55.37809,34.694351],[55.378792,34.695648],[55.383419,34.70425],[55.38422,34.705601],[55.385948,34.70834],[55.388649,34.712589],[55.389511,34.71413],[55.39024,34.715809],[55.408909,34.76247],[55.409679,34.7644],[55.41058,34.766651],[55.41082,34.767239],[55.411861,34.769741],[55.412319,34.770851],[55.413368,34.773109],[55.416019,34.778969],[55.418419,34.78442],[55.425541,34.80151],[55.433319,34.820179],[55.435421,34.82531],[55.44593,34.850719],[55.44833,34.85656],[55.4515,34.8643],[55.46085,34.887009],[55.470219,34.909729],[55.471451,34.912479],[55.486511,34.946049],[55.487282,34.948139],[55.487869,34.950378],[55.49025,34.96233],[55.491409,34.968571],[55.49229,34.972561],[55.49308,34.976509],[55.495022,34.994411],[55.495319,34.99712],[55.49641,35.007271],[55.496792,35.010731],[55.496929,35.012001],[55.49736,35.016109],[55.498489,35.026482],[55.49865,35.027889],[55.498901,35.03027],[55.49958,35.036469],[55.499699,35.03817],[55.503139,35.101311],[55.503368,35.10313],[55.505718,35.117962],[55.505718,35.120701],[55.503571,35.14402],[55.503521,35.144611],[55.50024,35.180271],[55.49947,35.18866],[55.499298,35.190571],[55.499981,35.215981],[55.499069,35.240971],[55.498779,35.24894],[55.49831,35.252548],[55.49704,35.26466],[55.495251,35.28046],[55.491852,35.310631],[55.491699,35.312019],[55.49165,35.312729],[55.491581,35.31361],[55.49155,35.315109],[55.49155,35.319309],[55.491409,35.35181],[55.49136,35.367901],[55.491421,35.397419],[55.491329,35.398941],[55.49099,35.401169],[55.49081,35.402351],[55.490662,35.402962],[55.487518,35.416309],[55.480869,35.444279],[55.480381,35.446251],[55.47998,35.448181],[55.479691,35.4501],[55.477692,35.465199],[55.477219,35.468781],[55.474239,35.491421],[55.471581,35.511921],[55.470749,35.51833],[55.470581,35.519581],[55.47047,35.521519],[55.47044,35.52206],[55.470119,35.529282],[55.469349,35.54348],[55.468632,35.55777],[55.467709,35.575508],[55.466789,35.593288],[55.46545,35.61898],[55.464199,35.64542],[55.46402,35.649601],[55.462761,35.676281],[55.461849,35.694931],[55.461681,35.698872],[55.46175,35.70097],[55.462719,35.717468],[55.463131,35.724491],[55.463329,35.72794],[55.464489,35.74789],[55.4646,35.750019],[55.464901,35.755699],[55.465092,35.758461],[55.46524,35.760391],[55.46529,35.761002],[55.465328,35.769291],[55.465309,35.773571],[55.465271,35.779259],[55.46513,35.80027],[55.46484,35.826981],[55.464802,35.828949],[55.464779,35.83086],[55.464771,35.8321],[55.464741,35.83448],[55.464691,35.839359],[55.464642,35.84399],[55.4646,35.847698],[55.464771,35.858959],[55.464939,35.87077],[55.465149,35.88472],[55.465179,35.887379],[55.46542,35.903252],[55.465431,35.904121],[55.46558,35.913269],[55.465542,35.91441],[55.465511,35.915371],[55.465401,35.917591],[55.465191,35.921391],[55.464619,35.931992],[55.464142,35.940971],[55.46402,35.94331],[55.462139,35.980148],[55.461979,35.983139],[55.46114,35.999271],[55.460011,36.02071],[55.459888,36.022961],[55.459579,36.028221],[55.459141,36.035679],[55.4589,36.039341],[55.458389,36.04768],[55.457619,36.059811],[55.457588,36.06171],[55.457642,36.06274],[55.45771,36.06377],[55.457821,36.064789],[55.457901,36.065281],[55.457981,36.065811],[55.458172,36.066849],[55.458401,36.067791],[55.458649,36.068691],[55.45929,36.070511],[55.467861,36.093281],[55.474209,36.110161],[55.4744,36.110691],[55.47847,36.12373],[55.481071,36.13213],[55.482491,36.136742],[55.49041,36.162258],[55.49411,36.174381],[55.494419,36.17548],[55.494701,36.17672],[55.495911,36.182369],[55.49752,36.18988],[55.498219,36.19313],[55.501209,36.207069],[55.50909,36.243801],[55.51041,36.24992],[55.510818,36.251862],[55.513809,36.26598],[55.516621,36.28101],[55.522362,36.31168],[55.525181,36.326809],[55.525589,36.32901],[55.531239,36.359341],[55.535961,36.384621],[55.536018,36.384899],[55.536072,36.385201],[55.53672,36.38871],[55.53862,36.39883],[55.53883,36.39996],[55.539341,36.40274],[55.53973,36.404888],[55.540291,36.407959],[55.541359,36.413971],[55.541439,36.414871],[55.541641,36.415981],[55.541828,36.416599],[55.541901,36.416969],[55.54314,36.42366],[55.54895,36.455029],[55.55109,36.48328],[55.551579,36.489529],[55.55621,36.54797],[55.556221,36.548161],[55.55801,36.571259],[55.558071,36.571949],[55.55827,36.574509],[55.55891,36.582199],[55.559059,36.583912],[55.5592,36.585289],[55.561359,36.60532],[55.5616,36.606979],[55.561939,36.610191],[55.56435,36.63287],[55.564671,36.63596],[55.565071,36.639389],[55.56599,36.648129],[55.566059,36.648769],[55.566559,36.653599],[55.567249,36.660252],[55.567261,36.660389],[55.56826,36.669849],[55.57103,36.695919],[55.571041,36.696041],[55.571091,36.696529],[55.571098,36.69664],[55.572319,36.708599],[55.572392,36.70932],[55.572491,36.710251],[55.57309,36.71627],[55.573471,36.719952],[55.575031,36.73521],[55.575729,36.74213],[55.576229,36.747021],[55.57666,36.751289],[55.578522,36.76976],[55.57893,36.773891],[55.581409,36.798882],[55.584068,36.824989],[55.587349,36.85857],[55.58794,36.864269],[55.588421,36.869068],[55.58881,36.872978],[55.589039,36.875259],[55.590179,36.886711],[55.59066,36.891609],[55.591808,36.90316],[55.594059,36.925831],[55.59557,36.939751],[55.595661,36.94038],[55.596821,36.950142],[55.597679,36.95752],[55.597851,36.95903],[55.597881,36.95927],[55.59848,36.964432],[55.598991,36.96875],[55.60051,36.981628],[55.60228,36.996632],[55.602428,36.997849],[55.602638,36.99966],[55.60302,37.00309],[55.60355,37.00787],[55.603821,37.01012],[55.604,37.011539],[55.604519,37.015621],[55.604851,37.018398],[55.605431,37.023399],[55.605492,37.023899],[55.60585,37.027039],[55.609081,37.054661],[55.60976,37.061089],[55.610321,37.06535],[55.610531,37.06673],[55.611149,37.069778],[55.61121,37.070091],[55.612518,37.076752],[55.61248,37.077709],[55.613091,37.081009],[55.613289,37.081989],[55.614441,37.087662],[55.61557,37.09325],[55.616119,37.09626],[55.616268,37.097111],[55.616539,37.098671],[55.617008,37.102161],[55.618771,37.116261],[55.62027,37.126701],[55.62133,37.13377],[55.622608,37.142799],[55.62299,37.14724],[55.623268,37.151451],[55.623901,37.161259],[55.624741,37.174],[55.625259,37.181801],[55.625431,37.184689],[55.625759,37.18792],[55.62582,37.188648],[55.626049,37.191921],[55.62619,37.19376],[55.626339,37.195271],[55.62648,37.196281],[55.626652,37.197441],[55.626869,37.198662],[55.627129,37.19978],[55.627392,37.200779],[55.627831,37.202209],[55.628361,37.203701],[55.628811,37.20483],[55.629269,37.205891],[55.629539,37.20652],[55.631119,37.209999],[55.631699,37.211262],[55.63187,37.211639],[55.632,37.211929],[55.632359,37.212799],[55.633801,37.216019],[55.634998,37.21875],[55.635479,37.219841],[55.635929,37.22084],[55.636299,37.22168],[55.637501,37.2244],[55.63868,37.227039],[55.639858,37.229698],[55.64106,37.23241],[55.642269,37.23513],[55.64267,37.236141],[55.643509,37.238441],[55.64431,37.240719],[55.645939,37.245239],[55.646641,37.247131],[55.647701,37.25005],[55.648029,37.251019],[55.648281,37.251839],[55.648548,37.252762],[55.648689,37.253342],[55.649071,37.255032],[55.649429,37.25684],[55.650009,37.26012],[55.650082,37.260521],[55.65052,37.262779],[55.650761,37.264069],[55.651131,37.266102],[55.651451,37.26786],[55.652248,37.272171],[55.65284,37.275341],[55.653412,37.278389],[55.654259,37.28299],[55.654819,37.286079],[55.655399,37.28931],[55.655602,37.29039],[55.655788,37.291409],[55.65601,37.29253],[55.656151,37.293209],[55.656281,37.293739],[55.656448,37.294361],[55.656658,37.295059],[55.656879,37.29567],[55.657101,37.29631],[55.657372,37.296982],[55.6576,37.29747],[55.657879,37.298019],[55.658161,37.298569],[55.658451,37.299049],[55.658699,37.299438],[55.658939,37.299782],[55.659191,37.30014],[55.659481,37.300491],[55.659821,37.300861],[55.660179,37.30125],[55.660599,37.301701],[55.660999,37.302101],[55.661591,37.302731],[55.662071,37.303249],[55.66243,37.303631],[55.663212,37.304451],[55.663818,37.305111],[55.664299,37.30563],[55.664749,37.30611],[55.66563,37.307072],[55.666908,37.308472],[55.66782,37.309441],[55.668522,37.310188],[55.669071,37.31078],[55.66951,37.311241],[55.670639,37.3125],[55.671421,37.31332],[55.67263,37.31464],[55.672989,37.315029],[55.67794,37.320431],[55.67857,37.321129],[55.679428,37.322071],[55.67984,37.322559],[55.680038,37.3228],[55.680191,37.322941],[55.683571,37.326599],[55.683819,37.32687],[55.685791,37.328991],[55.690022,37.333519],[55.693169,37.336971],[55.694759,37.338631],[55.69556,37.339531],[55.69595,37.34],[55.696331,37.340481],[55.696732,37.341011],[55.697109,37.341579],[55.697842,37.3428],[55.698311,37.34359],[55.698471,37.343861],[55.698639,37.344151],[55.698738,37.34433],[55.69949,37.34568],[55.69978,37.34621],[55.700371,37.34729],[55.701241,37.348869],[55.702839,37.351891],[55.703732,37.35355],[55.703949,37.353958],[55.704472,37.354939],[55.705002,37.3559],[55.705441,37.356682],[55.706081,37.357891],[55.706638,37.358891],[55.70705,37.35965],[55.70755,37.360569],[55.707878,37.36121],[55.708172,37.361801],[55.708382,37.36227],[55.70882,37.363319],[55.70911,37.36401],[55.709499,37.36504],[55.709728,37.36573],[55.70998,37.366482],[55.710281,37.367481],[55.710541,37.368431],[55.710812,37.36953],[55.71104,37.37059],[55.711269,37.3717],[55.711849,37.375118],[55.712101,37.37672],[55.71262,37.38015],[55.71286,37.381729],[55.71336,37.385101],[55.713379,37.38522],[55.7136,37.386761],[55.713612,37.386829],[55.714119,37.390141],[55.71426,37.39109],[55.714352,37.391701],[55.714458,37.392399],[55.7145,37.392689],[55.716011,37.402191],[55.71611,37.40274],[55.716251,37.403599],[55.717152,37.408352],[55.717159,37.408409],[55.717331,37.409359],[55.717541,37.410519],[55.71769,37.411369],[55.719959,37.424049],[55.71999,37.424259],[55.72007,37.424801],[55.720211,37.42617],[55.720371,37.427719],[55.720501,37.429192],[55.720661,37.430828],[55.720928,37.43367],[55.72105,37.434959],[55.72123,37.436829],[55.721279,37.437439],[55.721409,37.4389],[55.721569,37.440472],[55.72179,37.44212],[55.722111,37.444069],[55.722179,37.44445],[55.722481,37.445759],[55.723049,37.448071],[55.723228,37.44875],[55.723469,37.449619],[55.723709,37.450539],[55.723942,37.451431],[55.724892,37.455212],[55.725479,37.45776],[55.725891,37.459999],[55.726082,37.461029],[55.726349,37.462521],[55.727631,37.46973],[55.728642,37.475231],[55.729969,37.48246],[55.731171,37.48888],[55.7314,37.490219],[55.731419,37.490318],[55.73156,37.491081],[55.731579,37.49118],[55.73167,37.49173],[55.73241,37.495892],[55.73349,37.501709],[55.73476,37.508942],[55.735531,37.513119],[55.735901,37.5168],[55.736019,37.517448],[55.73621,37.518509],[55.73661,37.520458],[55.737171,37.522911],[55.737251,37.523258],[55.737461,37.524239],[55.739231,37.531681],[55.73938,37.532299],[55.739479,37.532688],[55.73946,37.5331],[55.73946,37.533329],[55.739449,37.533482],[55.73925,37.534489],[55.73917,37.534939],[55.739101,37.535221],[55.73896,37.5355],[55.7388,37.535721],[55.737961,37.536671],[55.737808,37.53688],[55.737701,37.53706],[55.73761,37.537258],[55.737579,37.537399],[55.73756,37.537521],[55.737549,37.537739],[55.73756,37.53793],[55.73764,37.538109],[55.737759,37.538132],[55.738071,37.537979],[55.74147,37.535019],[55.74197,37.534599],[55.74305,37.534142],[55.74353,37.533989],[55.743622,37.533951],[55.74548,37.53344],[55.745689,37.533379],[55.746391,37.53336],[55.74892,37.532791],[55.749142,37.53273],[55.7495,37.532631],[55.749908,37.53249],[55.750408,37.532291],[55.750938,37.53212],[55.751709,37.53204],[55.752178,37.532028],[55.752659,37.532249],[55.752861,37.532341],[55.75341,37.53257],[55.753521,37.532619],[55.7542,37.53286],[55.755032,37.533051],[55.755859,37.53339],[55.75605,37.53347],[55.75634,37.5336],[55.7575,37.53405],[55.758362,37.534271],[55.76593,37.537579],[55.766701,37.537899],[55.766769,37.537941],[55.767151,37.538158],[55.76757,37.538471],[55.767891,37.538769],[55.768318,37.539268],[55.768768,37.53989],[55.76918,37.54055],[55.769569,37.541271],[55.769852,37.541801],[55.7701,37.54224],[55.77039,37.542591],[55.770599,37.542839],[55.772121,37.544441],[55.77248,37.544849],[55.772781,37.545261],[55.772991,37.54567],[55.773079,37.54586],[55.773159,37.54604],[55.773232,37.546219],[55.773289,37.546391],[55.773361,37.5466],[55.773411,37.546791],[55.773472,37.547001],[55.77351,37.547192],[55.773548,37.547401],[55.77359,37.5476],[55.773621,37.54781],[55.773651,37.548019],[55.773739,37.548859],[55.773842,37.549839],[55.773911,37.550499],[55.77393,37.550739],[55.773941,37.550819],[55.773979,37.55114],[55.774021,37.551449],[55.774078,37.551769],[55.774139,37.552078],[55.774239,37.552429],[55.774349,37.55275],[55.774429,37.552979],[55.774509,37.553169],[55.774609,37.553379],[55.7747,37.553539],[55.774811,37.553761],[55.775002,37.554031],[55.775162,37.55423],[55.77533,37.554409],[55.77573,37.55479],[55.776569,37.555538],[55.776711,37.55563],[55.77932,37.55764],[55.779362,37.557671],[55.77985,37.558151],[55.779789,37.558319],[55.77951,37.559052],[55.77948,37.559139],[55.779461,37.559269],[55.779449,37.559341],[55.779449,37.559429],[55.779469,37.559502],[55.779491,37.559559],[55.77953,37.559639],[55.78038,37.560501],[55.780979,37.561081],[55.781319,37.561569],[55.78157,37.56192],[55.781979,37.562519],[55.782089,37.562672],[55.78204,37.562801],[55.781898,37.563091],[55.78186,37.56321],[55.78183,37.563358],[55.781818,37.563492],[55.781818,37.563622],[55.78183,37.563869],[55.781841,37.564072],[55.781841,37.56424],[55.781841,37.56435],[55.78183,37.564461],[55.781811,37.564579],[55.78178,37.564671],[55.781818,37.564701],[55.78199,37.56493],[55.782181,37.564491],[55.78257,37.565022],[55.783131,37.565788],[55.783009,37.566101],[55.78299,37.566139],[55.782959,37.566212],[55.783051,37.566349],[55.78299,37.56649],[55.782711,37.566799],[55.78228,37.567299],[55.78186,37.56778],[55.78178,37.56786],[55.781479,37.568192],[55.781448,37.56823],[55.78101,37.568722],[55.780941,37.568802],[55.78093,37.56881],[55.780811,37.568939],[55.780491,37.569302],[55.779949,37.569908],[55.77998,37.569962]],"route_instructions": [["Head northeast on Pont Royal",67,0,4,"67 m","NE",26.5],["Slight right at Pont Royal",806,1,48,"0.8 km","NE",67.1,"TSLR",40.6],["Turn left at Rue de l'Amiral Coligny",595,9,31,"0.6 km","N",19.0,"TL",276.8],["Turn right at Rue Coquillère",43,23,10,"43 m","E",73.2,"TR",56.6],["Slight right at Rue Coquillère",471,28,113,"0.5 km","SE",137.8,"TSLR",24.2],["Slight left",49,37,12,"49 m","E",80.4,"TSLL",348.3],["Turn left at Rue Mondétour",361,40,87,"0.4 km","N",17.1,"TL",301.4],["Turn left at Boulevard de Sébastopol",1341,47,64,"1.3 km","N",20.2,"TL",270.3],["Continue on Boulevard de Strasbourg",76,69,4,"76 m","N",19.0,"C",358.0],["Turn right at Rue Sibour",209,73,25,"0.2 km","E",90.0,"TR",62.7],["Turn left at Rue du Faubourg Saint-Martin",608,77,31,"0.6 km","NE",25.9,"TL",271.4],["Slight right at Rue du Faubourg Saint-Martin",557,90,29,"0.6 km","NE",61.7,"TSLR",31.3],["Continue on Rue du Faubourg Saint-Martin",2792,97,144,"2.8 km","NE",38.9,"C",358.2],["Continue on Place Auguste Baron",87,157,4,"87 m","NE",50.7,"C",5.4],["At the roundabout, take the 1st exit onto Avenue Jean Jaurès",193,161,9,"0.2 km","NE",49.0,"EXIT1",0.0],["Continue on Avenue Jean Jaurès",2213,165,106,"2.2 km","NE",33.4,"C",358.6],["Slight right at Avenue Paul Vaillant Couturier",176,189,8,"0.2 km","NE",40.3,"TSLR",6.5],["Slight left",1365,191,66,"1.4 km","NE",33.2,"TSLL",356.1],["Continue on Avenue Paul Vaillant Couturier",1996,206,96,"2.0 km","NE",64.0,"C",350.9],["Turn right at Rue de l'Abbé Niort",308,231,16,"0.3 km","E",84.6,"TR",54.4],["Continue on Rue de l'Abbé Niort",68,235,3,"68 m","E",79.0,"C",10.3],["Slight left at Avenue Aristide Briand",107,237,6,"0.1 km","NE",54.8,"TSLL",336.9],["Continue on Avenue Aristide Briand",110,239,6,"0.1 km","NE",52.0,"C",358.4],["Continue on Avenue Aristide Briand",601,241,31,"0.6 km","NE",59.0,"C",6.8],["Continue on Avenue Aristide Briand",699,252,36,"0.7 km","E",71.3,"C",2.1],["Continue on Avenue Aristide Briand",547,259,28,"0.5 km","E",70.5,"C",1.0],["Turn right at Rond Point de la Division Leclerc",69,263,4,"69 m","SE",152.1,"TR",56.6],["At the roundabout, take the 3rd exit onto Allée des Droits de l'Homme",718,271,86,"0.7 km","E",70.4,"EXIT3",0.0],["Turn right at Avenue Descartes",396,275,19,"0.4 km","E",95.0,"TR",66.1],["Turn right at Carrefour Pablo Neruda",72,277,3,"72 m","S",158.2,"TR",59.5],["At the roundabout, take the 2nd exit onto N2",225,283,11,"0.2 km","E",98.7,"EXIT2",0.0],["Continue on N2",432,286,21,"0.4 km","E",79.9,"C",355.6],["Continue on N2",901,290,43,"0.9 km","E",81.1,"C",356.1],["Slight left",129,295,6,"0.1 km","E",86.8,"TSLL",355.6],["Continue on Carrefour de l'Europe",95,297,5,"95 m","E",95.4,"C",10.2],["At the roundabout, take the 2nd exit onto N2\/Boulevard Marc Chagall",6,301,0,"6 m","SE",118.7,"EXIT2",0.0],["Turn left at N2\/Boulevard Marc Chagall",1012,302,49,"1.0 km","E",68.1,"TL",309.5],["Continue on N2\/Boulevard Marc Chagall",1234,309,59,"1.2 km","E",80.2,"C",0.0],["Continue on Carrefour Jean Monnet",101,320,5,"0.1 km","E",105.0,"C",8.5],["At the roundabout, take the 2nd exit onto N2\/Boulevard Marc Chagall",4501,326,216,"4.5 km","E",87.4,"EXIT2",0.0],["Continue on A104\/La Francilienne",4333,343,173,"4.3 km","NE",63.1,"C",1.0],["Continue on N2",7972,351,338,"8.0 km","NE",55.3,"C",359.3],["Continue on N2",7393,360,313,"7.4 km","NE",52.1,"C",359.2],["Continue on N2",2623,379,111,"2.6 km","NE",40.0,"C",4.0],["Continue on N2",3032,387,128,"3.0 km","N",20.2,"C",359.9],["Continue on N2",3331,410,141,"3.3 km","NE",40.9,"C",358.8],["Continue on N2",2022,415,86,"2.0 km","NE",30.6,"C",359.9],["Continue on N2",6701,425,284,"6.7 km","NE",39.8,"C",6.2],["Slight left at N2",1911,446,92,"1.9 km","NE",29.0,"TSLL",351.9],["Continue on N2",5946,466,285,"5.9 km","NE",59.1,"C",359.8],["Continue on N2",6373,500,306,"6.4 km","NE",50.0,"C",0.5],["Continue on N2",2738,524,116,"2.7 km","E",69.3,"C",0.1],["Continue on N2",2136,530,90,"2.1 km","NE",40.0,"C",359.6],["Continue on N2",1109,541,53,"1.1 km","NE",61.6,"C",0.4],["Continue on N2",730,551,35,"0.7 km","NE",45.6,"C",0.7],["Continue on N2",1682,552,81,"1.7 km","NE",45.2,"C",359.5],["Continue on N2",1891,556,91,"1.9 km","NE",58.6,"C",3.2],["Continue on N2",2943,569,125,"2.9 km","NE",64.3,"C",2.1],["Continue on N2",940,592,40,"0.9 km","N",16.6,"C",0.2],["Continue on N2",3743,598,159,"3.7 km","E",83.2,"C",1.8],["Continue on N2",1438,609,61,"1.4 km","NE",58.2,"C",353.2],["Continue on N2",2048,615,87,"2.0 km","NE",46.1,"C",4.7],["Continue on N2",19917,626,844,"19.9 km","E",88.4,"C",0.2],["Slight right",460,703,110,"0.5 km","E",81.6,"TSLR",44.8],["Slight right",342,721,82,"0.3 km","NE",61.9,"TSLR",20.9],["Continue",590,735,71,"0.6 km","E",107.9,"C",19.0],["Continue",1391,745,334,"1.4 km","E",82.7,"C",21.0],["Slight right",22,762,5,"22 m","E",104.4,"TSLR",32.4],["Turn right",118,763,6,"0.1 km","S",174.2,"TR",69.8],["At the roundabout, take the 2nd exit",3438,771,177,"3.4 km","NE",46.1,"EXIT2",0.0],["Slight left",3212,789,154,"3.2 km","NE",50.8,"TSLL",355.1],["Slight left",2426,806,116,"2.4 km","NW",335.8,"TSLL",354.6],["Slight left",3083,837,148,"3.1 km","E",73.0,"TSLL",346.0],["Slight left at N2",3291,857,139,"3.3 km","NE",51.2,"TSLL",355.1],["Continue on N2",7258,871,307,"7.3 km","NE",51.1,"C",7.2],["Slight left at N2",9752,886,413,"9.8 km","NE",57.5,"TSLL",356.1],["Continue on N2",4308,939,182,"4.3 km","NE",42.5,"C",1.6],["Continue",420,968,20,"0.4 km","N",10.6,"C",1.5],["Turn right at D542",1591,978,82,"1.6 km","NE",62.2,"TR",68.2],["Continue on D542",2060,999,106,"2.1 km","NE",54.4,"C",359.9],["Continue",26,1012,1,"26 m","NE",64.5,"C",22.2],["At the roundabout, take the 1st exit onto D542",1242,1016,64,"1.2 km","NE",54.6,"EXIT1",0.0],["Continue on D542",712,1022,37,"0.7 km","NE",47.4,"C",350.8],["Slight left at D967",115,1031,6,"0.1 km","N",3.9,"TSLL",317.1],["Continue on D967",834,1033,43,"0.8 km","N",3.4,"C",0.0],["Turn right at Rue Pasteur",1009,1040,52,"1.0 km","E",72.3,"TR",86.7],["Slight left at Rue Scheffer",501,1052,60,"0.5 km","NW",323.8,"TSLL",330.7],["Continue on Rue de l'Abbé Bossu",132,1062,16,"0.1 km","N",349.6,"C",340.1],["Turn right at D967\/Rue Eugène Leduc",24,1064,1,"24 m","NE",57.2,"TR",67.4],["Continue",21,1066,1,"21 m","E",94.6,"C",13.7],["At the roundabout, take the 2nd exit onto D967\/Route Départementale de Château-Thierry à Le Hérie-la-Viéville",600,1073,29,"0.6 km","NE",67.3,"EXIT2",0.0],["Continue on D967\/Route Départementale de Château-Thierry à Le Hérie-la-Viéville",1943,1085,93,"1.9 km","N",15.4,"C",11.9],["Turn right",95,1104,5,"95 m","SE",119.7,"TR",73.0],["Turn right",898,1113,46,"0.9 km","NE",34.8,"TR",64.0],["Turn left",655,1128,34,"0.7 km","N",3.3,"TL",292.7],["Slight right",74,1142,4,"74 m","E",103.9,"TSLR",38.8],["Turn right",146,1146,7,"0.1 km","S",160.2,"TR",85.9],["At the roundabout, take the 3rd exit onto N2",471,1158,23,"0.5 km","N",6.1,"EXIT3",0.0],["Continue on N2",1159,1160,56,"1.2 km","N",19.7,"C",0.2],["Slight right",99,1170,5,"99 m","NE",64.3,"TSLR",27.3],["At the roundabout, take the 3rd exit onto N2",20390,1175,979,"20.4 km","N",347.9,"EXIT3",0.0],["Slight right",105,1206,5,"0.1 km","NE",63.1,"TSLR",30.6],["At the roundabout, take the 2nd exit onto N2",3368,1212,162,"3.4 km","N",342.1,"EXIT2",0.0],["Slight right",85,1225,4,"85 m","E",104.5,"TSLR",26.1],["At the roundabout, take the 2nd exit onto N2",14887,1231,715,"14.9 km","NE",25.3,"EXIT2",0.0],["Continue",23,1262,1,"23 m","NE",65.9,"C",5.0],["At the roundabout, take the 1st exit onto N2",398,1267,19,"0.4 km","N",8.6,"EXIT1",0.0],["Continue on D51",123,1274,6,"0.1 km","E",74.8,"C",0.7],["Continue on D51",337,1275,17,"0.3 km","E",75.9,"C",1.1],["Continue on D51",76,1279,4,"76 m","E",71.4,"C",358.0],["Continue on D51",30,1282,2,"30 m","NE",37.4,"C",345.0],["Continue on D51",927,1283,48,"0.9 km","NE",26.6,"C",349.2],["Continue",85,1292,4,"85 m","E",102.1,"C",21.2],["At the roundabout, take the 2nd exit",252,1297,13,"0.3 km","N",17.8,"EXIT2",0.0],["Slight right",96,1301,5,"96 m","NE",67.4,"TSLR",25.3],["At the roundabout, take the 2nd exit",9058,1305,466,"9.1 km","NE",39.6,"EXIT2",0.0],["Continue on D963",4712,1349,226,"4.7 km","N",17.6,"C",3.6],["Turn right",30,1384,1,"30 m","SE",117.7,"TR",61.6],["At the roundabout, take the 1st exit onto D1043",23138,1388,1111,"23.1 km","SE",129.6,"EXIT1",0.0],["Turn right",431,1424,21,"0.4 km","SE",115.0,"TR",87.7],["Slight left",6100,1429,732,"6.1 km","E",72.0,"TSLL",341.9],["Turn right",1041,1483,62,"1.0 km","SE",121.9,"TR",56.7],["Continue",598,1498,36,"0.6 km","NE",48.9,"C",346.2],["Continue",1658,1503,99,"1.7 km","NE",31.5,"C",359.4],["Turn right",3169,1513,190,"3.2 km","E",102.8,"TR",58.1],["Slight left",1796,1522,108,"1.8 km","NE",30.3,"TSLL",314.3],["Continue",1067,1536,64,"1.1 km","E",68.6,"C",16.8],["Turn left",3521,1548,211,"3.5 km","E",98.2,"TL",309.2],["Turn left",89,1580,11,"89 m","NE",42.3,"TL",309.9],["Turn left",86,1583,5,"86 m","N",354.6,"TL",286.0],["Turn right",88,1584,5,"88 m","E",78.3,"TR",83.7],["Turn right",60,1585,14,"60 m","SE",129.3,"TR",51.0],["Slight left",749,1586,180,"0.7 km","E",87.1,"TSLL",317.8],["Continue",1678,1594,403,"1.7 km","N",21.2,"C",4.4],["Slight left",2983,1604,716,"3.0 km","NE",26.6,"TSLL",311.9],["Continue",834,1630,200,"0.8 km","E",67.7,"C",0.1],["Turn left at Rue le Faubourg",117,1637,6,"0.1 km","N",358.3,"TL",306.7],["Turn right at Rue le Faubourg",126,1640,6,"0.1 km","N",20.0,"TR",50.2],["Continue",245,1644,29,"0.2 km","NE",40.0,"C",348.5],["Slight right at N939\/Rue de Boussu",2813,1649,145,"2.8 km","N",16.5,"TSLR",23.2],["Slight left at N939\/Rue du Hachet",707,1666,36,"0.7 km","NE",37.9,"TSLL",334.5],["Continue on N939\/Rue du perron",4,1681,0,"4 m","NE",46.6,"C",11.6],["Turn left",42,1682,5,"42 m","NW",327.6,"TL",280.9],["Slight right",56,1684,7,"56 m","N",358.6,"TSLR",36.8],["Turn left at N939\/Rue Alphonse Thomas",1012,1687,52,"1.0 km","NW",330.2,"TL",270.8],["Turn right",1625,1706,390,"1.6 km","E",84.3,"TR",81.2],["Turn left",380,1733,91,"0.4 km","NW",305.1,"TL",288.0],["Turn right at N939",1718,1741,88,"1.7 km","NE",60.9,"TR",111.9],["Turn right",49,1757,3,"49 m","E",97.9,"TR",53.2],["At the roundabout, take the 3rd exit",81,1762,4,"81 m","NE",48.3,"EXIT3",0.0],["Slight right",117,1763,6,"0.1 km","SE",113.3,"TSLR",48.7],["At the roundabout, take the 2nd exit",5351,1772,257,"5.4 km","W",284.5,"EXIT2",0.0],["Continue on N5\/Route de Mariembourg",2196,1806,93,"2.2 km","N",359.5,"C",359.0],["Continue on N5\/Route de Mariembourg",1255,1818,53,"1.3 km","NE",35.8,"C",360.0],["Slight left",1300,1821,156,"1.3 km","NE",31.1,"TSLL",350.8],["Continue on N5\/Route de Mariembourg",1555,1829,66,"1.6 km","N",11.7,"C",360.0],["Continue",538,1839,26,"0.5 km","N",358.0,"C",0.2],["Turn right at N40",147,1840,7,"0.1 km","E",75.1,"TR",77.1],["Continue on N40",1153,1842,55,"1.2 km","E",69.5,"C",357.2],["Turn right",56,1850,7,"56 m","SE",145.0,"TR",69.8],["Turn left",330,1852,79,"0.3 km","NE",48.3,"TL",277.2],["Turn left",2321,1860,139,"2.3 km","NE",41.4,"TL",307.3],["Continue",1234,1870,74,"1.2 km","N",11.5,"C",0.0],["Turn left",1618,1879,97,"1.6 km","NW",332.2,"TL",302.1],["Continue",843,1896,51,"0.8 km","NE",30.7,"C",357.0],["Continue",1812,1903,109,"1.8 km","NE",44.6,"C",2.9],["Turn right at N975",68,1937,3,"68 m","SE",141.2,"TR",64.9],["Turn left at N975",182,1938,9,"0.2 km","NE",55.7,"TL",274.5],["Turn right at N975",80,1941,4,"80 m","SE",133.1,"TR",92.6],["Slight left",130,1943,16,"0.1 km","NE",61.2,"TSLL",318.5],["Turn left at N98\/Rue du Tray Marie",5462,1950,262,"5.5 km","NE",27.4,"TL",286.0],["Continue on N98\/Rue du Tray Marie",227,1978,11,"0.2 km","NE",34.1,"C",360.0],["Continue on N98\/Rue du Tray Marie",1473,1980,71,"1.5 km","NE",34.0,"C",359.8],["Continue on N932",1070,1985,55,"1.1 km","NE",64.1,"C",7.7],["Continue on N932",2887,1991,148,"2.9 km","E",71.0,"C",359.7],["Continue on N932",2859,1998,147,"2.9 km","E",70.6,"C",358.5],["Slight left",871,2003,52,"0.9 km","N",18.6,"TSLL",312.1],["Turn right",221,2012,27,"0.2 km","NE",56.8,"TR",58.5],["Turn right",2852,2013,171,"2.9 km","SE",126.0,"TR",79.9],["Turn left at Rue de la Chapelle",298,2035,18,"0.3 km","W",267.1,"TL",263.8],["Turn right",97,2040,6,"97 m","NE",53.6,"TR",79.7],["Turn right",310,2042,19,"0.3 km","E",105.3,"TR",57.9],["Continue on Rue du Stampia",174,2046,9,"0.2 km","E",100.4,"C",359.8],["Continue on Rue du Stampia",88,2048,5,"88 m","E",101.6,"C",0.4],["Continue on Rue du Stampia",426,2049,22,"0.4 km","E",96.3,"C",354.7],["Turn left at N951\/Rue des Anges",145,2053,7,"0.1 km","NE",29.8,"TL",303.0],["Continue on N951\/Rue des Anges",3705,2055,191,"3.7 km","NE",42.0,"C",2.2],["Continue on N951\/Rue des Anges",733,2071,38,"0.7 km","NE",54.1,"C",359.8],["Continue on Rue Joseph Pochet",1853,2082,222,"1.9 km","NE",24.1,"C",17.7],["Continue on N951\/Rue Gilet Ville",576,2109,30,"0.6 km","E",71.5,"C",359.9],["Slight right",71,2113,4,"71 m","E",98.6,"TSLR",36.8],["At the roundabout, take the 3rd exit onto Rue Raymond Noel",176,2117,9,"0.2 km","NE",57.7,"EXIT3",0.0],["Continue on Rue Raymond Noel",5,2119,0,"5 m","NE",52.9,"C",359.3],["Continue on Rue Raymond Noel",1456,2120,75,"1.5 km","NE",52.0,"C",359.0],["Continue on Rue Raymond Noel",2218,2130,114,"2.2 km","NE",60.2,"C",359.6],["Continue on Route de Saint-Gérard",1934,2146,99,"1.9 km","N",16.6,"C",359.8],["Continue on Route de Saint-Gérard",1019,2158,52,"1.0 km","NE",62.4,"C",0.2],["Continue on Route de Saint-Gérard",236,2161,12,"0.2 km","NE",62.5,"C",0.0],["Turn left at Avenue du Parc de Wépion",404,2163,48,"0.4 km","N",350.2,"TL",287.5],["Turn right at Vieux Tienne",227,2167,27,"0.2 km","NE",46.3,"TR",72.8],["Turn left at Route de Saint-Gérard",421,2174,22,"0.4 km","NW",325.4,"TL",254.8],["Continue on Route de Saint-Gérard",59,2179,3,"59 m","N",13.7,"C",353.6],["Turn left at N92\/Chaussee de Dinant",2799,2182,134,"2.8 km","NW",334.3,"TL",305.6],["Slight right at N92\/Chaussee de Dinant",1545,2228,74,"1.5 km","E",76.5,"TSLR",33.4],["Continue on Boulevard Isabelle Brunell",14,2268,1,"14 m","E",101.7,"C",349.5],["At the roundabout, take the 1st exit onto N92\/Boulevard Isabelle Brunell",147,2271,7,"0.1 km","E",101.5,"EXIT1",0.0],["Slight right at N4K\/Rue des Quatre Fils Aymon",585,2279,30,"0.6 km","NE",64.6,"TSLR",15.2],["Continue",34,2296,2,"34 m","N",356.4,"C",0.1],["Turn right at N80\/Avenue Albert Ier",717,2300,34,"0.7 km","E",83.2,"TR",50.3],["Slight right at Avenue Albert Ier",54,2302,3,"54 m","SE",127.8,"TSLR",28.4],["At the roundabout, take the 1st exit onto N80\/Avenue Albert Ier",832,2306,40,"0.8 km","E",85.6,"EXIT1",0.0],["Continue on N80\/Route de Hannut",835,2317,40,"0.8 km","NE",50.4,"C",351.7],["Continue on N80\/Route de Hannut",17,2326,1,"17 m","E",86.2,"C",20.2],["At the roundabout, take the 1st exit onto N80",18,2329,1,"18 m","E",69.3,"EXIT1",0.0],["Continue on N80\/Route de Hannut",27,2330,1,"27 m","E",70.6,"C",348.2],["At the roundabout, take the 2nd exit onto N80\/Route de Hannut",446,2334,21,"0.4 km","NE",32.0,"EXIT2",0.0],["Continue on N80\/Route de Hannut",20,2336,1,"20 m","NE",40.9,"C",356.7],["Continue on N80\/Route de Hannut",176,2337,8,"0.2 km","NE",43.6,"C",2.8],["Turn right at N80\/Route de Hannut",77,2340,4,"77 m","E",110.4,"TR",56.4],["At the roundabout, take the 3rd exit onto N80",308,2347,15,"0.3 km","NE",45.0,"EXIT3",0.0],["Slight right at N80\/Route de Hannut",113,2350,5,"0.1 km","E",89.0,"TSLR",44.0],["At the roundabout, take the 3rd exit onto N80\/Route de Hannut",148,2355,7,"0.1 km","N",20.1,"EXIT3",0.0],["Continue on N80\/Route de Hannut",2455,2357,118,"2.5 km","NE",23.9,"C",357.0],["Continue on N80\/Route de Hannut",613,2375,29,"0.6 km","NE",50.0,"C",359.8],["Continue on N80\/Route de Hannut",4172,2384,200,"4.2 km","NE",64.4,"C",353.4],["Turn right",106,2417,5,"0.1 km","SE",132.6,"TR",72.9],["At the roundabout, take the 2nd exit onto N80\/Grand Route",2271,2426,109,"2.3 km","NE",51.9,"EXIT2",0.0],["Continue on N80\/Grand Route",7128,2445,342,"7.1 km","N",20.6,"C",356.6],["Turn right",982,2496,236,"1.0 km","E",96.5,"TR",65.3],["Slight left",246,2516,59,"0.2 km","NE",55.7,"TSLL",313.8],["Continue on N652\/Rue de Wasseiges",503,2526,26,"0.5 km","NE",42.7,"C",1.5],["Continue",48,2537,12,"48 m","NE",48.2,"C",0.4],["Continue",4048,2539,972,"4.0 km","NE",55.6,"C",5.2],["Turn left",461,2596,55,"0.5 km","NE",47.3,"TL",291.0],["Slight left",3941,2605,946,"3.9 km","NE",23.5,"TSLL",311.3],["Slight right",1344,2631,323,"1.3 km","E",70.3,"TSLR",47.5],["Turn left",1482,2667,356,"1.5 km","NW",322.1,"TL",269.8],["Turn right",492,2688,59,"0.5 km","E",92.4,"TR",100.4],["Turn right",22,2698,3,"22 m","S",174.8,"TR",56.4],["Turn left",7,2706,1,"7 m","NE",29.1,"TL",301.4],["Turn left",9,2708,1,"9 m","N",345.6,"TL",305.0],["Turn right at Rue du Centre",3129,2711,188,"3.1 km","NE",24.0,"TR",85.0],["Continue",1027,2728,123,"1.0 km","N",21.2,"C",355.4],["Slight right at N69\/Chaussée Romaine",5595,2734,269,"5.6 km","E",71.3,"TSLR",49.9],["Turn right",84,2753,4,"84 m","SE",118.9,"TR",65.2],["At the roundabout, take the 2nd exit onto N69\/Chaussée Romaine",4771,2757,229,"4.8 km","NE",49.8,"EXIT2",0.0],["Turn right at N69",36,2776,2,"36 m","SE",114.4,"TR",58.2],["At the roundabout, take the 1st exit onto N69",14,2780,1,"14 m","NE",61.0,"EXIT1",0.0],["Continue on N69",195,2781,9,"0.2 km","NE",62.3,"C",353.6],["Turn right at N69",67,2785,3,"67 m","SE",138.7,"TR",54.7],["At the roundabout, take the 2nd exit onto N69",4777,2791,229,"4.8 km","NE",54.7,"EXIT2",0.0],["Turn right at N3",57,2821,3,"57 m","SE",115.1,"TR",64.7],["At the roundabout, take the 3rd exit onto N69",8922,2831,428,"8.9 km","NE",49.0,"EXIT3",0.0],["Continue on N69\/Romeinse Kassei",471,2910,23,"0.5 km","NE",30.2,"C",356.4],["Turn right at Romeinse Kassei",51,2915,2,"51 m","E",101.6,"TR",66.3],["At the roundabout, take the 2nd exit onto Rode Kruislaan",52,2924,6,"52 m","NE",41.1,"EXIT2",0.0],["Turn left at Romeinse Kassei",581,2928,70,"0.6 km","N",21.5,"TL",300.3],["Continue on N79\/Sint-Truidersteenweg",334,2935,16,"0.3 km","E",72.6,"C",12.7],["Turn left at R72\/Elisabethwal",57,2940,3,"57 m","N",358.2,"TL",285.5],["Continue on R72\/Elisabethwal",358,2942,17,"0.4 km","N",356.9,"C",358.8],["Continue on R72\/Pliniuswal",139,2948,7,"0.1 km","NE",33.0,"C",3.7],["Continue on R72\/Sint-Maternuswal",559,2953,27,"0.6 km","E",76.0,"C",8.3],["Slight right at R72\/18de Oogstwal",198,2967,10,"0.2 km","SE",124.6,"TSLR",26.0],["Turn left at N79\/Jaminéstraat",278,2972,13,"0.3 km","E",95.4,"TL",299.7],["Turn left at N79\/Maastrichtersteenweg",229,2977,11,"0.2 km","NE",25.0,"TL",289.4],["Slight right at N79\/Maastrichtersteenweg",9402,2984,451,"9.4 km","NE",58.1,"TSLR",38.3],["Slight right at RiemstKruispunt",35,3031,2,"35 m","E",98.7,"TSLR",41.1],["At the roundabout, take the 3rd exit onto N79\/Maastrichtersteenweg",6020,3038,289,"6.0 km","NE",57.5,"EXIT3",0.0],["Turn left",200,3082,12,"0.2 km","NW",328.8,"TL",269.8],["Turn right at Madoerastraat",67,3086,16,"67 m","NE",44.4,"TR",76.8],["Continue on Madoerastraat",269,3088,65,"0.3 km","NE",43.9,"C",359.3],["Continue on Madoerastraat",307,3095,74,"0.3 km","E",72.2,"C",20.6],["Slight left at Fatimaplein",83,3100,20,"83 m","NE",39.7,"TSLL",330.5],["Turn right at Fatimaplein",15,3105,4,"15 m","NE",60.1,"TR",61.8],["Turn left at Gentiaanstraat",176,3106,42,"0.2 km","N",346.2,"TL",293.7],["Turn left at Begoniastraat",226,3115,54,"0.2 km","NW",335.6,"TL",278.1],["Turn right at Rozenstraat",148,3119,36,"0.1 km","NE",24.1,"TR",91.7],["Turn left at Ruttensingel",70,3124,4,"70 m","NW",335.1,"TL",277.2],["Slight right at Sint Annadal",149,3126,36,"0.1 km","N",359.7,"TSLR",24.7],["Slight right at Sint Annalaan",347,3134,83,"0.3 km","NE",66.4,"TSLR",33.4],["Turn left at Sint Annalaan",10,3138,2,"10 m","N",354.3,"TL",272.0],["Turn right at Sint Annalaan",11,3139,1,"11 m","E",78.8,"TR",84.5],["Continue on Sint Annalaan",32,3140,2,"32 m","E",94.6,"C",15.8],["Turn right at Koningin Emmaplein",133,3141,7,"0.1 km","S",158.6,"TR",57.0],["At the roundabout, take the 3rd exit",46,3163,2,"46 m","N",0.5,"EXIT3",0.0],["Slight right at Statensingel",786,3168,40,"0.8 km","NE",43.0,"TSLR",25.9],["Turn right at Frontensingel",394,3182,19,"0.4 km","E",85.6,"TR",76.1],["Slight left at Noorderbrug",2115,3189,102,"2.1 km","NE",32.0,"TSLL",349.8],["Turn left",535,3239,28,"0.5 km","NE",25.5,"TL",272.1],["Turn left",13,3252,1,"13 m","NW",318.0,"TL",302.1],["Turn right",22,3255,1,"22 m","N",19.0,"TR",61.6],["Turn left at Meerssenerweg",33,3261,2,"33 m","NE",26.1,"TL",303.4],["Continue on Meerssenerweg",2402,3262,124,"2.4 km","NE",25.6,"C",359.5],["Turn right",66,3298,3,"66 m","SE",143.4,"TR",63.4],["At the roundabout, take the 2nd exit onto Klinkenberg",1453,3307,87,"1.5 km","E",68.6,"EXIT2",0.0],["Turn right at Stationstraat",300,3344,72,"0.3 km","E",68.4,"TR",68.4],["Turn right at Beekstraat",66,3351,16,"66 m","E",93.5,"TR",77.0],["Turn left at Gasthuisstraat",5393,3353,1294,"5.4 km","NE",26.0,"TL",288.6],["Turn right at Oensel",77,3457,4,"77 m","SE",151.2,"TR",62.9],["Turn left at Langstraat",1307,3460,78,"1.3 km","E",79.6,"TL",296.0],["Turn left at N583\/Op de Bies",203,3481,10,"0.2 km","NE",38.3,"TL",307.0],["Turn right at Rozemarijnstraat",845,3485,203,"0.8 km","SE",113.7,"TR",57.0],["Continue on Maastrichterweg",993,3497,238,"1.0 km","NE",63.4,"C",351.4],["Turn left",1359,3504,326,"1.4 km","N",338.6,"TL",272.9],["Turn right",89,3513,21,"89 m","SE",126.0,"TR",91.9],["Turn left",3523,3514,846,"3.5 km","NE",61.5,"TL",295.5],["Turn right at Stationsstraat",794,3586,41,"0.8 km","E",79.1,"TR",77.4],["Turn right at N582\/Dorpsstraat",970,3597,50,"1.0 km","E",100.9,"TR",67.5],["Turn left at Oirsbekerweg",1639,3620,98,"1.6 km","NE",32.6,"TL",284.6],["Turn right at Dorpstraat",681,3640,41,"0.7 km","SE",117.7,"TR",62.9],["Turn left at Altaarstraat",180,3653,11,"0.2 km","E",70.5,"TL",275.7],["Turn left at Provincialeweg Zuid",79,3658,4,"79 m","NW",334.9,"TL",269.0],["Turn right at Hulterweg",1373,3660,330,"1.4 km","NE",44.2,"TR",71.0],["Turn right at Plein",97,3675,6,"97 m","E",111.9,"TR",53.3],["Slight left at Geerstraat",267,3679,64,"0.3 km","NE",34.3,"TSLL",325.0],["Turn left at Belenweg",1267,3683,76,"1.3 km","N",13.7,"TL",309.7],["Turn right at Maastrichterweg",2567,3700,616,"2.6 km","E",77.9,"TR",51.8],["Turn right at Etzenraderweg",51,3738,3,"51 m","E",94.8,"TR",54.9],["Turn left at Bredestraat",1167,3739,280,"1.2 km","N",20.2,"TL",285.4],["Continue",311,3779,112,"0.3 km","NE",58.1,"C",2.5],["Turn left",1392,3796,501,"1.4 km","SE",135.5,"TL",300.8],["Continue",41,3837,2,"41 m","E",71.9,"C",1.1],["Slight right",23,3842,1,"23 m","E",103.2,"TSLR",38.9],["At the roundabout, take the 1st exit",1650,3854,99,"1.7 km","E",90.0,"EXIT1",0.0],["Turn right at B56",70,3923,3,"70 m","E",77.3,"TR",51.8],["At the roundabout, take the 2nd exit onto Frankenstraße",646,3932,78,"0.6 km","N",359.5,"EXIT2",0.0],["Turn right",591,3942,213,"0.6 km","E",77.3,"TR",76.7],["Turn left",517,3949,186,"0.5 km","N",3.0,"TL",286.3],["Turn right",771,3954,278,"0.8 km","E",79.8,"TR",76.8],["Turn left",625,3964,150,"0.6 km","N",16.2,"TL",279.1],["Turn right",1342,3971,322,"1.3 km","E",98.0,"TR",80.9],["Turn right at L227\/Hauptstraße",4259,4006,219,"4.3 km","E",83.6,"TR",77.7],["Turn right at L227",43,4174,2,"43 m","SE",116.0,"TR",58.0],["At the roundabout, take the 2nd exit onto L227",3352,4187,172,"3.4 km","NE",45.4,"EXIT2",0.0],["Continue on L227",1794,4271,92,"1.8 km","NE",58.9,"C",352.0],["Turn left at Jägerstraße",622,4319,75,"0.6 km","N",6.0,"TL",298.3],["Turn left at L227\/Erkelenzer Straße",124,4332,6,"0.1 km","N",360.0,"TL",305.6],["Continue on L227\/Erkelenzer Straße",792,4336,41,"0.8 km","NE",42.7,"C",13.8],["Turn right",83,4356,4,"83 m","E",93.7,"TR",66.9],["At the roundabout, take the 2nd exit onto L227\/Kranzes",2050,4364,105,"2.1 km","NE",30.2,"EXIT2",0.0],["Turn left at L227",61,4394,3,"61 m","N",352.2,"TL",304.7],["Turn left at L227",1354,4399,70,"1.4 km","E",69.9,"TL",306.3],["Turn right at L227\/Schmitterstraße",882,4436,53,"0.9 km","SE",117.3,"TR",84.3],["Turn left at L228\/Jacobastraße",70,4450,4,"70 m","NW",326.7,"TL",289.6],["Turn right at L227\/Buscherbahn",2148,4451,110,"2.1 km","NE",53.9,"TR",87.2],["Turn left at Stephanusstraße",16,4496,4,"16 m","N",21.4,"TL",291.4],["Continue on Stephanusstraße",8,4497,2,"8 m","NE",32.4,"C",11.0],["Slight right at Stephanusstraße",1022,4498,245,"1.0 km","NE",59.5,"TSLR",34.0],["Turn left at K26\/Erkelenzer Straße",1554,4509,93,"1.6 km","NE",45.1,"TL",304.8],["Continue on K26\/Terreicken",223,4539,13,"0.2 km","E",92.4,"C",12.8],["Turn right at K26\/Terreicken",1006,4544,60,"1.0 km","SE",146.2,"TR",55.4],["Turn left at L202",486,4569,25,"0.5 km","N",9.4,"TL",285.5],["Continue on L202\/Hoven",2123,4579,109,"2.1 km","NE",59.2,"C",354.8],["Turn right at L46\/Rheinweg",2912,4612,150,"2.9 km","E",87.6,"TR",74.8],["Slight left",2508,4668,602,"2.5 km","NE",42.3,"TSLL",329.4],["Turn right at L127\/Am Alten Schlagbaum",534,4679,27,"0.5 km","E",105.1,"TR",85.6],["Turn left at B57\/Gladbacher Straße",1793,4687,86,"1.8 km","N",6.2,"TL",276.2],["Continue",553,4714,31,"0.6 km","NE",28.9,"C",5.3],["Slight right at L370",52,4725,3,"52 m","E",82.2,"TSLR",27.8],["At the roundabout, take the 2nd exit onto Erkelenzer Straße",736,4732,44,"0.7 km","NE",42.3,"EXIT2",0.0],["Continue on Erkelenzer Straße",998,4739,60,"1.0 km","NE",27.0,"C",1.9],["Slight right at Erkelenzer Straße",36,4752,2,"36 m","E",95.9,"TSLR",38.8],["At the roundabout, take the 2nd exit onto Gladbacher Straße",1098,4755,66,"1.1 km","NE",46.0,"EXIT2",0.0],["Slight right at Gladbacher Straße",1529,4774,100,"1.5 km","N",19.0,"TSLR",22.9],["Continue on B57\/Gladbacher Straße",1513,4786,73,"1.5 km","NE",45.9,"C",2.7],["Continue on B57\/Gladbacher Straße",1251,4794,60,"1.3 km","NE",49.7,"C",0.1],["Continue on B57\/Aachener Straße",264,4803,13,"0.3 km","NE",47.0,"C",357.5],["Continue on B57\/Aachener Straße",322,4809,15,"0.3 km","NE",41.5,"C",357.7],["Slight left at B57\/Aachener Straße",876,4814,42,"0.9 km","NE",33.5,"TSLL",352.6],["Continue on B57\/Aachener Straße",527,4837,25,"0.5 km","NE",45.7,"C",358.5],["Continue on B57\/Aachener Straße",352,4842,17,"0.4 km","NE",42.9,"C",0.4],["Continue on K13\/Aachener Straße",345,4846,21,"0.3 km","NE",41.5,"C",358.4],["Continue on K13\/Aachener Straße",987,4848,59,"1.0 km","NE",42.2,"C",1.6],["Continue on K13\/Aachener Straße",372,4874,22,"0.4 km","E",69.7,"C",339.1],["Turn right at K13\/Viersener Straße",43,4879,3,"43 m","SE",150.1,"TR",87.2],["Continue on K13\/Viersener Straße",1879,4880,113,"1.9 km","SE",141.5,"C",351.3],["Continue on Hindenburgstraße",872,4929,52,"0.9 km","NE",45.7,"C",352.4],["Continue on Krefelder Straße",1428,4950,86,"1.4 km","NE",43.3,"C",1.0],["Continue on B57\/Krefelder Straße",901,4968,43,"0.9 km","NE",44.0,"C",358.9],["Continue on B57\/Krefelder Straße",1086,4982,52,"1.1 km","NE",34.3,"C",0.6],["Continue on Krefelder Straße",3402,4995,204,"3.4 km","N",341.7,"C",358.0],["Continue on L361\/Beckershöfe",4851,5047,249,"4.9 km","NE",52.3,"C",0.1],["Slight right at L461\/Anrather Straße",382,5098,20,"0.4 km","E",82.1,"TSLR",45.0],["Turn left at B57\/Gladbacher Straße",2060,5105,99,"2.1 km","N",10.8,"TL",271.1],["Continue on B57\/Gladbacher Straße",1834,5118,88,"1.8 km","NE",52.2,"C",359.7],["Slight left at L382",1282,5143,66,"1.3 km","NE",42.8,"TSLL",320.0],["Slight right",953,5166,49,"1.0 km","NE",60.7,"TSLR",38.6],["Turn left at L382\/Siemensstraße",386,5192,20,"0.4 km","N",358.0,"TL",296.1],["Turn right at Bahnstraße",1596,5200,82,"1.6 km","NE",35.7,"TR",55.6],["Continue on B57\/Glockenspitz",909,5228,44,"0.9 km","NE",53.9,"C",340.8],["Continue on B57\/Berliner Straße",1651,5235,79,"1.7 km","NE",62.1,"C",352.5],["Continue on B57\/Berliner Straße",293,5245,14,"0.3 km","NE",62.0,"C",0.3],["Continue on B288\/Berliner Straße",2018,5249,97,"2.0 km","NE",55.2,"C",357.3],["Continue on B288\/Berliner Straße",2989,5281,143,"3.0 km","E",86.4,"C",359.4],["Continue on B288\/Krefelder Straße",38,5310,2,"38 m","E",94.1,"C",359.1],["Turn left at L59\/Uerdinger Straße",5057,5312,260,"5.1 km","NE",28.9,"TL",293.2],["Turn left at K1\/Düsseldorfer Landstraße",2091,5406,108,"2.1 km","NE",33.1,"TL",290.7],["Continue on L60\/Sittardsberger Allee",334,5443,17,"0.3 km","NE",51.6,"C",358.2],["Continue on L60\/Sittardsberger Allee",829,5448,43,"0.8 km","NE",47.5,"C",5.5],["Continue on L60\/Sittardsberger Allee",77,5452,4,"77 m","NE",57.9,"C",359.5],["Slight left at L436\/Großenbaumer Allee",388,5455,20,"0.4 km","N",22.1,"TSLL",321.1],["Slight right at L60\/Wedauer Straße",1101,5465,57,"1.1 km","E",81.4,"TSLR",45.4],["Slight right",130,5493,47,"0.1 km","E",107.1,"TSLR",35.1],["Turn left",72,5502,26,"72 m","N",11.9,"TL",280.1],["Turn right",41,5507,15,"41 m","NE",64.1,"TR",71.7],["Turn left",343,5516,123,"0.3 km","NE",39.5,"TL",297.7],["Turn right at K3\/Bissingheimer Straße",28,5555,2,"28 m","SE",148.7,"TR",84.8],["Turn left at K3\/Worringer Weg",2550,5556,153,"2.6 km","E",74.6,"TL",274.5],["Turn right at Kesselbruchweg",563,5605,68,"0.6 km","NE",62.6,"TR",66.2],["Slight right at Aschenbruch",1210,5612,73,"1.2 km","E",91.0,"TSLR",45.6],["Turn right at Heerstraße",613,5642,74,"0.6 km","E",86.5,"TR",57.7],["Slight right at K1\/Heerstraße",23,5667,1,"23 m","NE",65.8,"TSLR",46.0],["At the roundabout, take the 1st exit onto K1\/Heerstraße",664,5672,40,"0.7 km","NE",65.6,"EXIT1",0.0],["Slight left at Emmericher Straße",1196,5688,62,"1.2 km","E",88.3,"TSLL",346.4],["Continue on Konrad-Adenauer-Brücke",1012,5707,52,"1.0 km","E",72.4,"C",357.5],["Turn left at L445\/Friedrich-Ebert-Straße",232,5723,11,"0.2 km","N",6.1,"TL",266.9],["Slight right at L445\/Aktienstraße",326,5729,17,"0.3 km","N",345.6,"TSLR",22.0],["Continue on L445\/Aktienstraße",512,5739,26,"0.5 km","NE",62.2,"C",10.3],["Continue on L445\/Aktienstraße",2357,5751,121,"2.4 km","NE",61.0,"C",358.0],["Slight right at L445\/Aktienstraße",294,5786,15,"0.3 km","E",79.8,"TSLR",28.0],["Continue on L445\/Aktienstraße",2494,5791,128,"2.5 km","NE",41.2,"C",356.3],["Slight right at L445\/Aktienstraße",676,5805,35,"0.7 km","E",67.8,"TSLR",32.2],["Continue on B231\/Frintroper Straße",708,5822,34,"0.7 km","E",78.3,"C",349.6],["Turn left at L20\/Bocholder Straße",2679,5831,138,"2.7 km","NE",29.8,"TL",299.8],["Turn left at K1\/Haus-Berge-Straße",435,5883,22,"0.4 km","N",348.7,"TL",275.5],["Turn right at L64\/Hafenstraße",1189,5889,61,"1.2 km","NE",61.7,"TR",94.9],["Turn right at L64\/Vogelheimer Straße",1660,5926,85,"1.7 km","E",90.0,"TR",83.2],["Turn left at Winkhausstraße",487,5961,58,"0.5 km","N",6.5,"TL",300.0],["Turn left at Winkhausstraße",486,5976,58,"0.5 km","N",18.5,"TL",308.9],["Turn right at Hospitalstraße",185,5985,22,"0.2 km","NE",63.3,"TR",64.1],["Continue on Karlstraße",4917,5988,590,"4.9 km","NE",36.7,"C",358.6],["Continue on A42\/Emscherschnellweg",2798,6067,112,"2.8 km","NE",54.8,"C",359.1],["Continue on A42\/Emscherschnellweg",4155,6103,166,"4.2 km","NE",58.3,"C",356.2],["Continue on A42",1337,6120,53,"1.3 km","E",90.6,"C",356.3],["Slight left at A42\/Emscherschnellweg",1673,6134,67,"1.7 km","NE",61.4,"TSLL",358.4],["Continue on A42\/Emscherschnellweg",1938,6148,78,"1.9 km","E",84.6,"C",0.4],["Slight left at A42",1219,6172,49,"1.2 km","E",85.7,"TSLL",357.4],["Continue on A42",1897,6184,76,"1.9 km","NE",60.4,"C",0.2],["Continue on A42",2357,6196,94,"2.4 km","NE",56.7,"C",0.5],["Continue on A42",811,6218,32,"0.8 km","E",89.7,"C",354.5],["Continue on A42",2100,6225,84,"2.1 km","E",77.2,"C",2.3],["Continue on A42",1282,6242,51,"1.3 km","E",81.4,"C",356.9],["Slight right at A42",528,6261,24,"0.5 km","E",84.5,"TSLR",6.5],["Slight right at A42",406,6265,18,"0.4 km","E",91.8,"TSLR",1.8],["Turn left at L657\/Pallasstraße",530,6277,27,"0.5 km","E",96.9,"TL",272.5],["Continue on L657\/Pallasstraße",1341,6292,69,"1.3 km","NE",62.6,"C",359.4],["Continue on L657\/Oststraße",2548,6314,131,"2.5 km","NE",45.8,"C",5.2],["Turn left at Nierhausstraße",227,6361,14,"0.2 km","NE",25.4,"TL",306.3],["Turn right at L658\/Strünkedestraße",1184,6366,61,"1.2 km","SE",116.0,"TR",91.5],["Turn left at L654\/Burgring",773,6401,40,"0.8 km","N",20.5,"TL",280.0],["Turn left at L654\/Waltroper Straße",422,6424,22,"0.4 km","N",357.3,"TL",268.6],["Slight right at L654\/Königsheide",5605,6443,288,"5.6 km","NE",60.0,"TSLR",25.8],["Continue on Brambauerstraße",2998,6560,154,"3.0 km","NE",56.8,"C",8.5],["Turn left at B54;B236\/Dortmunder Straße",1639,6600,79,"1.6 km","NE",38.5,"TL",271.2],["Continue on B54;B236\/Dortmunder Straße",1489,6631,71,"1.5 km","E",86.0,"C",7.5],["Continue on B54\/Viktoriastraße",1952,6652,94,"2.0 km","E",90.0,"C",0.0],["Turn left at L736\/Hammer Straße",10188,6683,524,"10.2 km","N",359.9,"TL",278.9],["Continue on L736\/Ostenhellweg",920,6760,47,"0.9 km","E",88.2,"C",357.4],["Continue on L736",1414,6772,73,"1.4 km","NE",67.1,"C",359.2],["Turn left at K4\/Am Tibaum",1879,6788,113,"1.9 km","N",344.5,"TL",269.6],["Turn right at L507\/Hammer Straße",22,6835,1,"22 m","NE",58.4,"TR",66.0],["At the roundabout, take the 1st exit onto L507\/Hammer Straße",7996,6838,411,"8.0 km","E",88.5,"EXIT1",0.0],["Continue on L507\/Bockumer Weg",50,6966,3,"50 m","E",75.9,"C",348.4],["Continue on B61\/Heessener Straße",1022,6972,49,"1.0 km","NE",47.9,"C",13.0],["Slight right at B61\/Heessener Straße",43,6999,2,"43 m","SE",126.7,"TSLR",42.8],["At the roundabout, take the 1st exit onto B61\/Heessener Straße",7986,7006,383,"8.0 km","E",71.3,"EXIT1",0.0],["Continue on B61\/Alleestraße",1005,7135,48,"1.0 km","NE",41.7,"C",358.1],["Continue on B61\/Alleestraße",6657,7140,320,"6.7 km","NE",62.3,"C",359.5],["Continue on B61\/Hammer Straße",778,7166,37,"0.8 km","NE",51.6,"C",0.5],["Slight right at B61",52,7171,2,"52 m","SE",123.2,"TSLR",49.2],["At the roundabout, take the 2nd exit onto B61\/Hammer Straße",1123,7178,54,"1.1 km","NE",52.9,"EXIT2",0.0],["Turn right at Weststraße",212,7194,25,"0.2 km","SE",147.5,"TR",75.5],["Turn right at Westwall",89,7199,11,"89 m","S",168.8,"TR",80.3],["Turn left at Südstraße",200,7201,24,"0.2 km","E",77.9,"TL",274.3],["Continue on Südstraße",668,7204,80,"0.7 km","E",104.1,"C",18.5],["Turn left",120,7224,6,"0.1 km","NE",31.6,"TL",277.3],["Turn right at B61\/Sternstraße",3799,7227,182,"3.8 km","E",104.4,"TR",52.1],["Continue on B61\/Stromberger Straße",7462,7254,358,"7.5 km","NE",62.5,"C",0.0],["Turn right at B61\/Beckumer Straße",98,7290,5,"98 m","SE",124.9,"TR",62.4],["At the roundabout, take the 2nd exit onto B61\/Beckumer Straße",1471,7296,71,"1.5 km","NE",54.5,"EXIT2",0.0],["Turn left at B61\/Auf dem Borgkamp",660,7313,32,"0.7 km","E",78.6,"TL",278.2],["Turn right at B61\/Auf dem Borgkamp",247,7317,12,"0.2 km","SE",140.5,"TR",61.5],["Turn left at B61\/Batenhorster Straße",713,7320,34,"0.7 km","E",83.1,"TL",296.8],["Slight left at L791\/St.-Viter-Straße",7085,7326,364,"7.1 km","E",71.7,"TSLL",336.0],["Turn left at Wippermannstraße",63,7398,8,"63 m","NE",25.6,"TL",275.9],["Turn right at Fritz-Burmann-Straße",163,7399,20,"0.2 km","E",110.3,"TR",84.6],["Turn left at Lümernweg",113,7400,14,"0.1 km","NE",25.6,"TL",275.3],["Turn right at K1\/Hauptstraße",297,7405,18,"0.3 km","E",111.1,"TR",65.3],["Turn right at Klingelbrink",63,7420,8,"63 m","E",108.1,"TR",66.6],["Turn left at In der Halle",113,7421,14,"0.1 km","NE",25.3,"TL",277.3],["Turn right at Wichernstraße",180,7423,22,"0.2 km","E",84.1,"TR",58.0],["Turn left at Wasserstraße",575,7428,30,"0.6 km","NE",24.8,"TL",271.9],["Turn right at Varenseller Straße",72,7445,9,"72 m","E",97.0,"TR",77.8],["Slight left at Varenseller Straße",275,7447,33,"0.3 km","NE",66.3,"TSLL",324.3],["Slight right at Varenseller Straße",405,7452,49,"0.4 km","E",80.9,"TSLR",34.5],["Continue on L791\/Varenseller Straße",1850,7458,95,"1.9 km","E",73.0,"C",0.3],["Continue on L791\/Varenseller Straße",7917,7473,407,"7.9 km","NE",58.5,"C",348.7],["Turn left at Hauptstraße",437,7562,52,"0.4 km","N",356.6,"TL",269.5],["Turn left at L791\/Varenseller Straße",662,7571,34,"0.7 km","N",9.0,"TL",295.2],["Continue on L791\/Varenseller Straße",122,7577,6,"0.1 km","N",22.2,"C",358.6],["Turn right at Westfalenweg",3630,7578,871,"3.6 km","E",95.1,"TR",72.9],["Turn left at K57\/Westring",312,7607,16,"0.3 km","N",351.2,"TL",290.5],["Turn right at L757\/Gütersloher Straße",2101,7613,108,"2.1 km","E",78.3,"TR",88.4],["Continue on L757",199,7658,10,"0.2 km","E",75.8,"C",338.7],["Turn right at Schmiedestrang",2261,7670,271,"2.3 km","E",78.7,"TR",87.2],["Turn left at K43\/Bergstraße",2415,7697,145,"2.4 km","NE",67.2,"TL",290.1],["Turn left at L751\/Schloßstraße",1885,7717,97,"1.9 km","NE",31.5,"TL",302.9],["Turn right at K43\/Holter Straße",1600,7734,96,"1.6 km","SE",127.4,"TR",89.1],["Turn right",44,7754,3,"44 m","SE",154.3,"TR",55.0],["At the roundabout, take the 2nd exit onto K43",557,7758,33,"0.6 km","E",84.1,"EXIT2",0.0],["Continue on K43",1351,7770,81,"1.4 km","E",90.0,"C",0.8],["Slight right",75,7786,5,"75 m","E",101.6,"TSLR",46.8],["At the roundabout, take the 2nd exit onto K43",1385,7790,83,"1.4 km","NE",44.7,"EXIT2",0.0],["Turn right at Lüchtenstraße",704,7808,84,"0.7 km","SE",140.1,"TR",64.7],["Turn right at L756\/Hauptstraße",61,7822,3,"61 m","SE",145.9,"TR",69.0],["Slight right",62,7823,3,"62 m","S",194.3,"TSLR",38.9],["At the roundabout, take the 3rd exit onto L758\/Augustdorfer Straße",1570,7829,81,"1.6 km","E",101.3,"EXIT3",0.0],["Turn right",86,7850,4,"86 m","S",179.4,"TR",64.3],["At the roundabout, take the 2nd exit onto L758\/Augustdorfer Straße",3148,7854,162,"3.1 km","SE",119.0,"EXIT2",0.0],["Turn right at L942\/Stukenbrocker Straße",884,7885,45,"0.9 km","SE",121.6,"TR",83.4],["Turn left at Pivitsheider Straße",456,7896,55,"0.5 km","E",74.0,"TL",303.3],["Slight right",10,7903,1,"10 m","SE",133.6,"TSLR",48.8],["At the roundabout, take the 1st exit onto Lopshorner Weg",3552,7906,426,"3.6 km","SE",139.6,"EXIT1",0.0],["Turn right",62,7941,15,"62 m","E",70.8,"TR",68.3],["Turn left",4233,7944,1016,"4.2 km","E",72.4,"TL",272.6],["Slight left at Arminiusweg",804,8022,96,"0.8 km","NE",43.6,"TSLL",316.3],["Continue on L936\/Hiddeser Straße",239,8028,12,"0.2 km","N",17.8,"C",347.7],["Slight right at Bollweg",575,8036,69,"0.6 km","NE",25.8,"TSLR",19.1],["Slight left at Auf den Klippen",734,8048,88,"0.7 km","NE",45.5,"TSLL",326.8],["Slight left at Theodor-Heuss-Straße",25,8060,3,"25 m","E",79.1,"TSLL",327.3],["Slight left at Theodor-Heuss-Straße",25,8061,3,"25 m","NE",54.0,"TSLL",334.9],["Continue on Theodor-Heuss-Straße",12,8062,1,"12 m","E",69.3,"C",15.3],["Continue on Theodor-Heuss-Straße",7,8063,1,"7 m","E",76.0,"C",6.8],["Slight right at Theodor-Heuss-Straße",5,8064,1,"5 m","E",99.9,"TSLR",23.9],["Slight right at Theodor-Heuss-Straße",11,8065,1,"11 m","SE",145.0,"TSLR",45.1],["Turn left at L828\/Theodor-Heuss-Straße",1493,8066,77,"1.5 km","NE",57.1,"TL",272.0],["Turn right at L758\/Bielefelder Straße",63,8089,3,"63 m","E",93.6,"TR",69.8],["Turn left at Hermannstraße",368,8092,44,"0.4 km","N",352.2,"TL",271.9],["Turn right at Bismarckstraße",170,8100,10,"0.2 km","E",98.7,"TR",83.9],["Turn left at K13\/Paulinenstraße",328,8105,17,"0.3 km","N",13.7,"TL",271.5],["Turn right at Wotanstraße",403,8111,21,"0.4 km","E",106.9,"TR",93.9],["Turn left at Robert-Koch-Straße",308,8123,37,"0.3 km","NE",40.5,"TL",274.0],["Turn right at Sofienstraße",238,8126,29,"0.2 km","SE",114.8,"TR",76.7],["Turn left at Siegfriedstraße",154,8129,8,"0.2 km","NE",26.2,"TL",273.9],["Turn right",7,8131,0,"7 m","E",90.0,"TR",56.1],["At the roundabout, take the 1st exit onto Marienstraße",270,8134,32,"0.3 km","SE",138.4,"EXIT1",0.0],["Turn left at Richthofenstraße",278,8138,17,"0.3 km","NE",55.5,"TL",278.6],["Slight left at Richthofenstraße",851,8143,51,"0.9 km","NE",33.5,"TSLL",334.4],["Slight right at Richthofenstraße",48,8159,3,"48 m","E",97.0,"TSLR",42.2],["At the roundabout, take the 2nd exit onto Richthofenstraße",122,8167,7,"0.1 km","NE",46.1,"EXIT2",0.0],["Turn right at B239\/Barntruper Straße",680,8171,33,"0.7 km","E",105.0,"TR",50.4],["Continue on B239\/Barntruper Straße",357,8175,17,"0.4 km","SE",123.6,"C",5.4],["Continue on B239\/Barntruper Straße",207,8180,10,"0.2 km","SE",112.6,"C",359.4],["Turn left at K89\/Barntruper Straße",1415,8181,85,"1.4 km","N",22.1,"TL",269.5],["Turn right at Broker Holz",4356,8202,523,"4.4 km","E",95.6,"TR",73.5],["Turn left at L758\/Barntruper Straße",2399,8248,123,"2.4 km","NE",59.5,"TL",281.8],["Slight left at L758\/Residenzstraße",6452,8286,332,"6.5 km","SE",139.7,"TSLL",331.9],["Continue on L758\/Detmolder Straße",2589,8365,133,"2.6 km","E",86.3,"C",359.9],["Slight left at L758\/Selbecker Straße",106,8394,5,"0.1 km","E",93.5,"TSLL",346.5],["Continue on L758\/Selbecker Straße",141,8396,7,"0.1 km","NE",50.3,"C",346.9],["Turn right at B66\/Mittelstraße",145,8398,7,"0.1 km","SE",122.3,"TR",77.8],["Continue on B66\/Mittelstraße",2090,8401,100,"2.1 km","SE",112.9,"C",353.6],["Turn left at B1\/Sevinghausen",14578,8442,700,"14.6 km","NE",47.2,"TL",286.1],["Continue on B1\/Hamelner Straße",1618,8657,78,"1.6 km","E",69.1,"C",1.8],["Slight left at B1\/Hamelner Straße",4640,8685,223,"4.6 km","NE",62.6,"TSLL",357.4],["Slight right at B1\/Brückenkopf",296,8744,14,"0.3 km","N",342.5,"TSLR",14.7],["Slight right at B1\/Brückenkopf",534,8747,26,"0.5 km","N",353.6,"TSLR",16.7],["Continue on B1\/Münsterwall",622,8766,30,"0.6 km","E",100.3,"C",353.1],["Slight right",1099,8788,57,"1.1 km","NE",32.5,"TSLR",17.6],["Continue on Deisterstraße",111,8814,5,"0.1 km","E",103.6,"C",2.1],["Continue on B1\/Tunnelstraße",201,8820,10,"0.2 km","E",106.4,"C",341.9],["Slight left at B1\/Tunnelstraße",101,8834,5,"0.1 km","S",161.1,"TSLL",355.9],["Turn left at B1\/Hastenbecker Weg",5506,8837,264,"5.5 km","E",84.8,"TL",291.5],["Continue on B1\/Hamelner Straße",1923,8948,92,"1.9 km","E",78.3,"C",5.3],["Slight left at B1\/Hamelner Straße",1591,8966,76,"1.6 km","NE",67.2,"TSLL",354.3],["Continue on B1\/Hamelner Straße",3626,8974,174,"3.6 km","E",74.3,"C",0.9],["Slight right at B1\/Bahnhofstraße",170,9009,8,"0.2 km","SE",123.4,"TSLR",39.2],["Continue on B1\/Dammstraße",499,9013,24,"0.5 km","SE",142.9,"C",2.9],["Slight right at B1\/Alte Heerstraße",2489,9026,119,"2.5 km","SE",121.8,"TSLR",28.7],["Continue on B1",5555,9053,267,"5.6 km","SE",139.2,"C",359.8],["Continue on B1\/Heerstraße",420,9098,20,"0.4 km","NE",58.3,"C",356.0],["Continue on B1\/Heerstraße",1429,9102,69,"1.4 km","NE",46.7,"C",8.1],["Continue on B1",411,9128,20,"0.4 km","NE",61.7,"C",343.5],["Continue on B1",2392,9132,115,"2.4 km","NE",43.8,"C",3.9],["Turn right",1352,9152,81,"1.4 km","E",94.8,"TR",63.2],["Turn right at Alte Poststraße",1148,9163,69,"1.1 km","E",90.4,"TR",51.5],["Turn left",41,9178,2,"41 m","N",12.8,"TL",301.1],["Turn right at B1",1339,9179,64,"1.3 km","E",91.4,"TR",78.6],["Continue on B1",5028,9187,241,"5.0 km","E",72.3,"C",354.3],["Turn left at L410\/Poppenburger Straße",151,9228,8,"0.2 km","NW",332.2,"TL",264.8],["Slight right at Mühlenweg",6719,9234,806,"6.7 km","NE",26.2,"TSLR",1.7],["Continue on B1",1679,9305,81,"1.7 km","E",91.4,"C",357.8],["Slight left at B1",4053,9312,195,"4.1 km","E",92.3,"TSLL",350.8],["Slight left at B1\/Bückebergstraße",1199,9329,51,"1.2 km","E",88.1,"TSLL",345.1],["Continue on B1\/Bückebergstraße",749,9336,32,"0.7 km","E",104.7,"C",5.2],["Slight left at B1\/Bückebergstraße",1244,9347,53,"1.2 km","E",95.3,"TSLL",353.5],["Continue on B1\/Schützenallee",176,9378,8,"0.2 km","E",72.1,"C",3.4],["Continue on B1\/Kaiserstraße",698,9385,34,"0.7 km","NE",61.9,"C",0.6],["Continue on B1\/Kaiserstraße",973,9396,47,"1.0 km","E",78.6,"C",0.0],["Turn right at B1;B6\/Berliner Kreisel",209,9412,10,"0.2 km","S",166.5,"TR",52.9],["At the roundabout, take the 2nd exit onto B1",1012,9422,49,"1.0 km","NE",59.9,"EXIT2",0.0],["Continue on B1",350,9433,17,"0.4 km","NE",64.6,"C",358.9],["Continue on B1",697,9438,33,"0.7 km","E",78.8,"C",3.9],["Continue on B1",8496,9445,408,"8.5 km","E",90.0,"C",359.8],["Continue on B1",365,9542,18,"0.4 km","NE",37.1,"C",352.8],["Continue on B1",4120,9547,198,"4.1 km","NE",41.7,"C",356.4],["Slight left at B1",2570,9587,123,"2.6 km","NE",49.5,"TSLL",350.5],["Continue on B1;B444\/Hauptstraße",4149,9616,199,"4.1 km","E",72.7,"C",356.8],["Continue on B1;B444\/Bierstraße",7646,9667,367,"7.6 km","NE",58.6,"C",358.2],["Slight left at B1\/Breite Straße",722,9727,35,"0.7 km","NE",32.1,"TSLL",323.9],["Continue on B1\/Breite Straße",362,9738,17,"0.4 km","E",94.7,"C",358.6],["Slight right",1130,9747,58,"1.1 km","E",96.9,"TSLR",20.0],["Turn left at Hildesheimer Straße",670,9783,80,"0.7 km","E",67.8,"TL",288.0],["Continue on Hildesheimer Straße",1050,9793,126,"1.1 km","E",73.6,"C",0.4],["Continue on Hildesheimer Straße",5391,9824,647,"5.4 km","E",92.8,"C",4.3],["Turn right",275,9896,99,"0.3 km","SE",143.8,"TR",70.7],["Turn left",36,9909,13,"36 m","E",72.8,"TL",305.0],["Turn right",190,9910,68,"0.2 km","SE",155.5,"TR",82.7],["Turn left at Madamenweg",4153,9920,498,"4.2 km","E",83.7,"TL",295.8],["Turn right at Güldenstraße",417,10008,21,"0.4 km","S",171.8,"TR",91.3],["Continue on Gieseler",158,10017,8,"0.2 km","SE",155.5,"C",356.0],["Slight left at Europaplatz",87,10019,4,"87 m","SE",156.5,"TSLL",357.4],["Slight left at Europaplatz",112,10029,6,"0.1 km","E",73.3,"TSLL",335.4],["Slight right at Konrad-Adenauer-Straße",130,10035,7,"0.1 km","E",80.5,"TSLR",7.8],["Continue on Konrad-Adenauer-Straße",350,10040,18,"0.4 km","E",79.8,"C",0.0],["Continue on Augusttorwall",325,10051,17,"0.3 km","E",100.6,"C",350.9],["Turn right at Kurt-Schumacher-Straße",137,10062,7,"0.1 km","E",68.0,"TR",52.0],["Continue on Kurt-Schumacher-Straße",339,10066,17,"0.3 km","E",84.1,"C",4.3],["Turn left at Ottmerstraße",905,10075,47,"0.9 km","E",85.2,"TL",304.4],["Turn right at B1\/Helmstedter Straße",458,10094,22,"0.5 km","SE",126.1,"TR",68.4],["Continue on B1\/Helmstedter Straße",128,10105,6,"0.1 km","E",101.6,"C",355.6],["Continue on B1\/Helmstedter Straße",1235,10109,59,"1.2 km","E",94.8,"C",359.0],["Continue on Helmstedter Straße",5582,10130,268,"5.6 km","E",110.8,"C",15.2],["Continue on Hauptstraße",1088,10237,65,"1.1 km","E",99.6,"C",357.1],["Continue on Hauptstraße",56,10260,3,"56 m","E",74.4,"C",339.4],["Turn right at B1",3764,10263,181,"3.8 km","SE",130.0,"TR",81.4],["Continue on B1",7267,10293,349,"7.3 km","E",101.8,"C",5.2],["Turn right at Am Kleiberg",1239,10365,149,"1.2 km","S",182.3,"TR",67.8],["Turn right at Schöppenstedter Straße",148,10375,18,"0.1 km","SE",143.2,"TR",83.4],["Continue on Schöppenstedter Straße",702,10381,84,"0.7 km","SE",137.9,"C",0.1],["Turn right at B1\/Helmstedter Straße",1374,10400,66,"1.4 km","SE",128.4,"TR",56.5],["Continue on B1",154,10426,7,"0.2 km","SE",139.7,"C",358.0],["Continue on B1",5364,10428,257,"5.4 km","SE",123.2,"C",350.8],["Continue on B1\/Helmstedter Straße",6092,10498,292,"6.1 km","SE",116.8,"C",354.1],["Slight right at Henkestraße",21,10564,1,"21 m","SE",118.8,"TSLR",30.7],["Continue on Henkestraße",266,10565,16,"0.3 km","SE",120.9,"C",2.1],["Continue on Henkestraße",1272,10568,76,"1.3 km","SE",117.8,"C",358.7],["Slight right",2269,10608,126,"2.3 km","NE",61.3,"TSLR",24.9],["Continue",45,10669,2,"45 m","SE",124.0,"C",11.0],["Continue",50,10671,3,"50 m","SE",143.0,"C",20.7],["Turn left at B1",736,10674,35,"0.7 km","NE",58.2,"TL",259.9],["Turn left",135,10682,6,"0.1 km","N",341.5,"TL",268.8],["Turn right",251,10684,90,"0.3 km","E",73.9,"TR",92.9],["Turn right",31,10693,1,"31 m","E",97.2,"TR",90.2],["Continue",1638,10696,74,"1.6 km","E",75.3,"C",6.0],["Continue on A2",5221,10708,209,"5.2 km","E",95.3,"C",1.0],["Continue on A2",9376,10737,375,"9.4 km","E",90.0,"C",357.8],["Continue on A2",2403,10764,96,"2.4 km","E",101.2,"C",0.5],["Continue on A2",6968,10770,279,"7.0 km","E",102.4,"C",359.2],["Continue on A2",7303,10787,292,"7.3 km","E",89.2,"C",359.4],["Slight left at A2",4749,10811,190,"4.7 km","SE",114.8,"TSLL",357.8],["Continue on A2",4258,10817,170,"4.3 km","SE",123.6,"C",2.2],["Continue on A2",4696,10845,188,"4.7 km","E",77.7,"C",0.6],["Continue on A2",3469,10857,139,"3.5 km","NE",66.7,"C",0.1],["Continue on A2",5010,10860,200,"5.0 km","NE",65.7,"C",358.8],["Continue on A2",3904,10877,156,"3.9 km","NE",46.8,"C",359.7],["Continue on A2",5257,10895,210,"5.3 km","E",81.5,"C",0.4],["Continue on A2",7331,10901,293,"7.3 km","E",73.3,"C",359.5],["Continue on A2",4617,10916,185,"4.6 km","E",96.3,"C",0.8],["Continue on A2",5199,10927,208,"5.2 km","E",79.0,"C",359.9],["Continue on A2",7828,10939,313,"7.8 km","E",87.7,"C",0.0],["Continue on A2",5543,10957,222,"5.5 km","E",77.8,"C",359.6],["Continue on A2",13671,10961,547,"13.7 km","E",78.3,"C",360.0],["Continue on A2",3637,10971,145,"3.6 km","E",98.1,"C",0.0],["Continue on A2",14225,10984,569,"14.2 km","NE",58.4,"C",359.6],["Continue on A2",7062,11004,282,"7.1 km","NE",40.1,"C",358.3],["Continue on A2",7345,11027,294,"7.3 km","NE",52.3,"C",358.7],["Continue on A2",3684,11045,147,"3.7 km","E",91.6,"C",0.2],["Continue on A2",4571,11062,183,"4.6 km","SE",113.7,"C",359.0],["Continue on A2",3988,11083,160,"4.0 km","E",80.6,"C",0.5],["Continue on A2",6080,11107,243,"6.1 km","E",83.6,"C",360.0],["Continue on A2",3817,11119,153,"3.8 km","E",95.3,"C",359.6],["Continue on A10\/Südlicher Berliner Ring",3671,11147,147,"3.7 km","SE",115.3,"C",0.2],["Continue on A10\/Südlicher Berliner Ring",3332,11158,133,"3.3 km","SE",129.2,"C",0.4],["Continue on A10\/Südlicher Berliner Ring",3151,11168,126,"3.2 km","SE",128.9,"C",359.8],["Continue on A10\/Südlicher Berliner Ring",2193,11188,88,"2.2 km","E",69.2,"C",359.8],["Continue on A10\/Südlicher Berliner Ring",2585,11191,103,"2.6 km","E",69.7,"C",0.0],["Slight right",276,11200,99,"0.3 km","E",98.6,"TSLR",7.7],["Continue",277,11206,100,"0.3 km","E",97.5,"C",352.8],["Continue",828,11211,298,"0.8 km","E",111.0,"C",357.7],["Continue on A10\/Südlicher Berliner Ring",3039,11223,122,"3.0 km","SE",115.5,"C",0.7],["Continue on A10\/Südlicher Berliner Ring",8662,11268,346,"8.7 km","E",93.0,"C",359.7],["Continue on A10\/Südlicher Berliner Ring",1541,11328,62,"1.5 km","E",68.2,"C",359.7],["Continue on A10\/Südlicher Berliner Ring",5000,11346,200,"5.0 km","E",93.4,"C",359.8],["Continue on A10\/Südlicher Berliner Ring",2622,11386,105,"2.6 km","E",79.2,"C",1.5],["Continue on A10\/Südlicher Berliner Ring",10411,11409,416,"10.4 km","E",97.3,"C",0.0],["Continue on A10\/Südlicher Berliner Ring",5806,11459,232,"5.8 km","E",77.4,"C",357.5],["Continue on A10\/Südlicher Berliner Ring",5600,11478,224,"5.6 km","E",71.7,"C",0.1],["Continue on A10\/Südlicher Berliner Ring",5245,11501,210,"5.2 km","E",87.3,"C",0.1],["Continue on A10\/Südlicher Berliner Ring",6638,11530,266,"6.6 km","SE",125.4,"C",1.1],["Continue on A10\/Südlicher Berliner Ring",4785,11566,191,"4.8 km","E",72.8,"C",0.2],["Continue on A10\/Südlicher Berliner Ring",3474,11571,139,"3.5 km","E",68.5,"C",359.9],["Slight right",4439,11583,200,"4.4 km","E",95.1,"TSLR",2.4],["Continue on A12",7091,11605,284,"7.1 km","E",107.8,"C",358.7],["Continue on A12",8001,11627,320,"8.0 km","E",84.2,"C",0.0],["Continue on A12",609,11640,24,"0.6 km","E",82.2,"C",3.4],["Continue on A12",5648,11649,226,"5.6 km","E",98.6,"C",3.4],["Slight left at A12",9739,11671,390,"9.7 km","E",94.2,"TSLL",358.4],["Continue on A12",2560,11714,102,"2.6 km","E",88.3,"C",0.0],["Continue on A12",14488,11724,580,"14.5 km","E",87.8,"C",0.3],["Continue on A12",10434,11764,417,"10.4 km","E",111.8,"C",357.6],["Continue on A12",4344,11774,174,"4.3 km","E",93.9,"C",0.5],["Continue on A12",10826,11780,433,"10.8 km","E",93.2,"C",359.8],["Continue on A12",1028,11791,41,"1.0 km","E",91.8,"C",359.7],["Continue on A12",4853,11794,194,"4.9 km","E",91.9,"C",0.6],["Continue on A12",5447,11801,218,"5.4 km","E",95.5,"C",0.2],["Slight left",1802,11843,649,"1.8 km","E",76.5,"TSLL",352.7],["Continue on A2",18537,11853,741,"18.5 km","NE",66.6,"C",1.3],["Continue on A2",15146,11924,606,"15.1 km","E",74.3,"C",358.9],["Continue on A2",112630,11953,4505,"113 km","E",86.7,"C",359.8],["Continue on A2",32955,12043,1318,"33.0 km","E",87.8,"C",359.8],["Continue on A2",51178,12064,2047,"51.2 km","E",72.7,"C",359.9],["Continue on A2",18549,12111,742,"18.5 km","E",104.4,"C",359.9],["Continue on A2",6561,12160,262,"6.6 km","E",86.8,"C",0.7],["Continue on A2\/Południowa Obwodnica Poznania",5693,12174,228,"5.7 km","E",90.1,"C",359.9],["Continue on A2\/Południowa Obwodnica Poznania",6319,12194,253,"6.3 km","E",97.5,"C",359.3],["Continue on A2\/Południowa Obwodnica Poznania",7398,12208,296,"7.4 km","E",98.0,"C",359.9],["Continue on A2",6912,12220,276,"6.9 km","SE",112.7,"C",2.3],["Slight left",18440,12231,738,"18.4 km","SE",113.6,"TSLL",356.6],["Continue on A2",15019,12268,601,"15.0 km","E",77.7,"C",0.4],["Slight right",1508,12285,68,"1.5 km","E",109.7,"TSLR",6.7],["Slight right",14,12298,1,"14 m","SE",143.2,"TSLR",35.4],["At the roundabout, take the 1st exit onto 92",1291,12300,62,"1.3 km","S",168.0,"EXIT1",0.0],["Slight right",94,12317,5,"94 m","S",176.7,"TSLR",35.8],["At the roundabout, take the 2nd exit onto 15,92\/Wrocławska",1269,12326,61,"1.3 km","N",16.0,"EXIT2",0.0],["Slight right",29,12332,1,"29 m","E",95.1,"TSLR",47.9],["At the roundabout, take the 1st exit onto 92\/Objazdowa",2160,12334,104,"2.2 km","E",107.9,"EXIT1",0.0],["Slight right",44,12348,2,"44 m","SE",120.8,"TSLR",38.0],["At the roundabout, take the 1st exit onto 92\/Generała Władysława Sikorskiego",2620,12351,126,"2.6 km","NE",50.8,"EXIT1",0.0],["Continue on 92",20328,12359,976,"20.3 km","E",81.4,"C",359.9],["Slight right at 92",74,12429,4,"74 m","S",180.0,"TSLR",24.1],["At the roundabout, take the 3rd exit onto Poznańska",61,12438,4,"61 m","E",101.5,"EXIT3",0.0],["Slight right",32,12442,2,"32 m","S",173.0,"TSLR",32.6],["At the roundabout, take the 2nd exit onto Poznańska",1138,12445,137,"1.1 km","SE",156.8,"EXIT2",0.0],["Continue on Warszawska",803,12462,48,"0.8 km","SE",118.0,"C",11.1],["Turn right at 92",103,12471,5,"0.1 km","SW",220.1,"TR",107.4],["At the roundabout, take the 4th exit",3973,12484,204,"4.0 km","NE",25.4,"EXIT4",0.0],["Continue",27194,12496,1399,"27.2 km","NE",61.4,"C",0.0],["Turn right",80,12563,4,"80 m","S",193.1,"TR",61.5],["At the roundabout, take the 2nd exit",21951,12569,1129,"22.0 km","E",108.2,"EXIT2",0.0],["Slight left at 11 Listopada",1373,12650,82,"1.4 km","NE",55.8,"TSLL",320.1],["Turn right at plac Wolności",23,12660,1,"23 m","S",185.1,"TR",92.2],["Turn left at plac Wolności",69,12661,4,"69 m","E",90.0,"TL",264.9],["Turn left at plac Wolności",74,12662,4,"74 m","N",359.4,"TL",269.4],["Turn right at plac Wolności",1643,12663,99,"1.6 km","E",91.4,"TR",92.0],["Slight right",48,12673,2,"48 m","SE",153.7,"TSLR",33.9],["At the roundabout, take the 2nd exit",864,12677,44,"0.9 km","E",90.0,"EXIT2",0.0],["Slight left at 269",8031,12684,413,"8.0 km","NE",52.1,"TSLL",342.7],["Continue on 269",10151,12717,522,"10.2 km","E",85.4,"C",352.0],["Continue on 269\/Kolska",1260,12763,65,"1.3 km","NE",53.4,"C",359.6],["Turn right at 269\/plac Wolności",366,12775,19,"0.4 km","E",110.4,"TR",81.7],["Continue on 269\/Warszawska",651,12779,33,"0.7 km","E",110.7,"C",2.9],["Continue on 269",2874,12784,148,"2.9 km","E",110.1,"C",359.6],["Continue",6590,12793,1582,"6.6 km","NE",60.9,"C",4.4],["Turn left",440,12814,106,"0.4 km","E",70.5,"TL",286.5],["Turn right",161,12816,10,"0.2 km","S",170.8,"TR",88.5],["Turn left",8573,12818,514,"8.6 km","E",97.6,"TL",300.5],["Turn left at 269",846,12862,44,"0.8 km","NE",49.8,"TL",291.1],["Turn right at aleja Zwycięstwa",336,12866,40,"0.3 km","SE",137.5,"TR",57.2],["Turn left at plac Kościuszki",446,12871,54,"0.4 km","E",82.1,"TL",291.9],["Slight left at Kaliska",1519,12879,91,"1.5 km","E",93.6,"TSLL",332.2],["Continue",5872,12886,352,"5.9 km","E",85.2,"C",351.3],["Continue",2995,12900,180,"3.0 km","E",87.6,"C",16.9],["Turn left at Plac Wolności",57,12914,3,"57 m","NE",48.5,"TL",281.4],["Turn left at 1\/Tadeusza Kościuszki",857,12915,41,"0.9 km","NW",328.2,"TL",279.7],["Turn right",9171,12922,550,"9.2 km","E",90.7,"TR",67.5],["Turn right",8540,12955,2050,"8.5 km","S",161.5,"TR",97.0],["Turn right",4204,13024,504,"4.2 km","E",102.8,"TR",69.3],["Turn right at 265",3258,13062,168,"3.3 km","SE",118.0,"TR",82.7],["Turn left at 60;573\/Jana Pawła II",612,13080,29,"0.6 km","N",9.2,"TL",281.3],["Slight right at 60\/Płocka",11269,13088,541,"11.3 km","NE",29.3,"TSLR",26.5],["Continue",65,13133,3,"65 m","E",97.9,"C",18.7],["At the roundabout, take the 2nd exit",1087,13141,52,"1.1 km","N",11.3,"EXIT2",0.0],["Continue on 60\/Płocka",2782,13149,134,"2.8 km","NE",35.8,"C",11.6],["Continue on 60\/Płocka",1645,13163,79,"1.6 km","NE",59.3,"C",2.4],["Continue on 60;62",69,13175,3,"69 m","NE",43.8,"C",349.3],["At the roundabout, take the 2nd exit onto 62",5395,13179,259,"5.4 km","N",351.9,"EXIT2",0.0],["Continue on 62\/Rondo Jana Marka Lajourdie",33,13214,2,"33 m","E",96.2,"C",18.1],["At the roundabout, take the 1st exit onto Plac Majora Wojska Polskiego Janusza Mościckiego",1203,13217,62,"1.2 km","E",69.5,"EXIT1",0.0],["Continue on Mostowa",845,13224,43,"0.8 km","NE",37.5,"C",358.8],["Slight left at Aleja Jana Kilińskiego",36,13237,2,"36 m","NE",64.7,"TSLL",332.3],["Slight left at Aleja Jana Kilińskiego",1055,13239,54,"1.1 km","N",12.2,"TSLL",316.7],["Slight right at Aleja Jana Kilińskiego",30,13256,2,"30 m","NE",58.4,"TSLR",39.5],["Turn right at 60\/Aleja Józefa Piłsudskiego",203,13258,10,"0.2 km","SE",122.4,"TR",53.2],["Slight left at 567\/Otolińska",2397,13261,123,"2.4 km","E",101.1,"TSLL",343.9],["Continue on 567",4056,13292,209,"4.1 km","NE",65.7,"C",344.8],["Continue on 567",3194,13307,164,"3.2 km","NE",54.6,"C",359.8],["Slight left at 567",17571,13316,904,"17.6 km","NE",60.7,"TSLL",342.7],["Continue on 567\/Płocka",2207,13356,114,"2.2 km","E",85.9,"C",0.6],["Continue on 567",7046,13366,362,"7.0 km","NE",66.5,"C",0.0],["Slight right at 10",29,13389,1,"29 m","E",97.9,"TSLR",24.3],["At the roundabout, take the 1st exit onto 10",19588,13391,940,"19.6 km","E",71.3,"EXIT1",0.0],["Turn right",110,13447,5,"0.1 km","S",192.1,"TR",69.4],["At the roundabout, take the 3rd exit onto Płocka",22149,13457,1139,"22.1 km","NE",44.1,"EXIT3",0.0],["Slight left at 632\/Rynek Główny",18,13564,1,"18 m","SE",147.0,"TSLL",325.6],["Turn left at 632\/Rynek Główny",50,13566,3,"50 m","E",79.7,"TL",306.2],["Continue",578,13567,69,"0.6 km","E",86.3,"C",6.6],["Slight left at 620",17825,13575,917,"17.8 km","E",82.0,"TSLL",326.8],["Turn left at 620",351,13623,18,"0.4 km","NE",25.1,"TL",298.3],["Turn right at 620",5974,13624,307,"6.0 km","SE",112.5,"TR",87.4],["Turn right",1844,13637,111,"1.8 km","E",90.0,"TR",51.6],["Turn left",3928,13647,236,"3.9 km","N",12.5,"TL",296.0],["Turn left",587,13669,35,"0.6 km","NE",66.8,"TL",270.2],["Turn right",474,13670,28,"0.5 km","SE",153.7,"TR",86.9],["Turn left",4055,13671,487,"4.1 km","E",79.9,"TL",286.2],["Turn right",336,13688,40,"0.3 km","S",166.2,"TR",90.6],["Turn left",500,13690,60,"0.5 km","E",81.4,"TL",272.6],["Turn left at 619",3801,13692,195,"3.8 km","NE",45.5,"TL",306.4],["Continue on 619\/Nasielska",151,13700,8,"0.2 km","NE",57.9,"C",2.4],["Continue on 619\/Nasielska",602,13702,31,"0.6 km","NE",56.4,"C",359.7],["Turn left at 61\/Ignacego Daszyńskiego",560,13708,27,"0.6 km","NE",45.8,"TL",264.3],["Turn right",23,13712,1,"23 m","SE",113.7,"TR",59.3],["Turn right at 618\/Wyszkowska",1079,13716,55,"1.1 km","SE",115.0,"TR",64.4],["Turn left at Nadnarwiańska",12,13722,1,"12 m","NE",28.0,"TL",278.3],["Turn left",15641,13723,3754,"15.6 km","W",291.5,"TL",263.5],["Slight left",4388,13768,263,"4.4 km","NE",65.0,"TSLL",334.1],["Continue",9061,13782,544,"9.1 km","SE",124.0,"C",0.6],["Slight left",13656,13799,819,"13.7 km","E",68.0,"TSLL",335.0],["Turn left",1175,13841,71,"1.2 km","NE",30.4,"TL",261.0],["Turn right",2929,13843,703,"2.9 km","SE",121.9,"TR",88.9],["Turn left at 8",14879,13851,714,"14.9 km","NE",53.3,"TL",271.9],["Continue on 8",5036,13876,242,"5.0 km","NE",55.1,"C",0.2],["Continue on 8",2907,13887,123,"2.9 km","NE",52.8,"C",356.3],["Slight right at 60",620,13896,32,"0.6 km","NE",29.4,"TSLR",19.5],["Turn right at Bolesława Prusa",926,13902,56,"0.9 km","E",71.0,"TR",52.0],["Continue on Bolesława Prusa",962,13907,58,"1.0 km","E",90.0,"C",0.0],["Turn right at Pocztowa",316,13915,19,"0.3 km","E",108.2,"TR",68.2],["Turn left at 3 Maja",616,13918,32,"0.6 km","NE",27.4,"TL",288.7],["Slight right at Armii Krajowej",179,13924,11,"0.2 km","NE",49.7,"TSLR",28.0],["Continue on Armii Krajowej",3836,13925,230,"3.8 km","NE",49.7,"C",360.0],["Turn right at 8",20479,13941,983,"20.5 km","NE",48.4,"TR",83.0],["Continue on 8",11121,13960,534,"11.1 km","NE",50.2,"C",1.2],["Slight right",75,13983,4,"75 m","SE",126.5,"TSLR",49.1],["At the roundabout, take the 2nd exit onto 8\/Białostocka",30252,13988,1452,"30.3 km","NE",51.9,"EXIT2",0.0],["Continue on 8",8076,14023,388,"8.1 km","E",74.9,"C",359.9],["Continue on 8",12615,14031,606,"12.6 km","E",75.1,"C",0.2],["Continue on 8",10025,14052,481,"10.0 km","E",75.0,"C",359.0],["Continue on 8",4640,14081,223,"4.6 km","E",106.4,"C",0.0],["Continue on 676",39,14097,2,"39 m","SE",122.5,"C",355.8],["At the roundabout, take the 1st exit onto 676\/Aleja Jana Pawła II",1392,14099,72,"1.4 km","E",99.9,"EXIT1",0.0],["Slight left at 676\/Aleja Solidarności",961,14107,49,"1.0 km","E",71.9,"TSLL",329.9],["Continue on 676\/Aleja Solidarności",562,14116,29,"0.6 km","SE",123.7,"C",359.3],["Continue on Jana Henryka Dąbrowskiego",367,14121,19,"0.4 km","E",107.6,"C",359.4],["Continue on Jana Henryka Dąbrowskiego",1719,14126,88,"1.7 km","E",106.0,"C",349.6],["Slight right",63,14142,3,"63 m","S",199.8,"TSLR",25.5],["At the roundabout, take the 2nd exit onto Jana Klemensa Branickiego",2484,14146,128,"2.5 km","SE",124.4,"EXIT2",0.0],["Continue on 19;65\/Nowowarszawska",229,14161,11,"0.2 km","SE",116.3,"C",358.6],["Turn left at 65\/Ciołkowskiego",1131,14164,54,"1.1 km","NE",50.6,"TL",282.5],["Continue on 65\/Baranowicka",14406,14171,691,"14.4 km","E",83.9,"C",0.1],["Slight left at 65",28552,14185,1370,"28.6 km","NE",57.2,"TSLL",327.5],["Continue on 65",3944,14210,189,"3.9 km","E",109.5,"C",357.0],["Continue on 65",530,14225,25,"0.5 km","E",90.8,"C",360.0],["Continue on 65",19620,14226,942,"19.6 km","E",90.8,"C",0.0],["Continue on P99",33850,14282,1625,"33.9 km","SE",129.5,"C",0.0],["Continue on P99",1318,14354,63,"1.3 km","E",73.2,"C",359.9],["Slight right at P99",745,14368,36,"0.7 km","E",75.9,"TSLR",8.4],["Slight left at P99\/129-й Орловской дивизии ул.",1254,14387,60,"1.3 km","NE",63.2,"TSLL",336.6],["Continue on P99\/129-й Орловской дивизии ул.",570,14396,27,"0.6 km","E",84.3,"C",10.9],["Continue on P99\/129-й Орловской дивизии ул.",3948,14403,190,"3.9 km","SE",115.0,"C",4.1],["Turn right",295,14425,14,"0.3 km","SE",156.8,"TR",76.6],["At the roundabout, take the 2nd exit onto P99",25559,14430,1227,"25.6 km","E",80.1,"EXIT2",0.0],["Continue on P99",1911,14507,92,"1.9 km","E",81.3,"C",4.2],["Turn right at P99",243,14513,12,"0.2 km","E",85.9,"TR",63.7],["Continue on P99",7887,14514,379,"7.9 km","E",82.6,"C",356.7],["Continue on P99",809,14532,39,"0.8 km","E",97.8,"C",360.0],["Continue on P99",27664,14533,1328,"27.7 km","E",97.7,"C",359.9],["Turn left",4065,14578,209,"4.1 km","N",21.6,"TL",241.3],["Turn left at Брестская ул.",457,14619,22,"0.5 km","NE",59.8,"TL",297.9],["Continue on Ружанская ул.",22,14625,1,"22 m","NE",62.2,"C",358.6],["Continue on Ружанская ул.",437,14626,21,"0.4 km","NE",66.9,"C",4.8],["Turn right at Октябрьская ул.",79,14629,9,"79 m","SE",133.4,"TR",79.5],["Turn left at Гастелло ул.",320,14630,38,"0.3 km","NE",36.6,"TL",263.2],["Turn left at ул. Карла Маркса",26,14632,2,"26 m","NW",325.8,"TL",276.9],["Turn right at Аптечный пер.",308,14633,37,"0.3 km","NE",58.1,"TR",92.3],["Continue on площадь Ленина",143,14646,7,"0.1 km","N",352.5,"C",351.4],["Turn right at Советская ул.",28649,14652,1375,"28.6 km","E",81.3,"TR",79.9],["Slight left",11487,14743,2757,"11.5 km","E",97.5,"TSLL",340.2],["Turn right",3042,14763,730,"3.0 km","SE",129.7,"TR",51.0],["Slight right at P108",260,14799,12,"0.3 km","SE",155.2,"TSLR",36.2],["Slight left at P108",482,14802,23,"0.5 km","SE",150.8,"TSLL",353.6],["Slight left at P2",12308,14806,591,"12.3 km","NE",55.7,"TSLL",333.4],["Continue on P2",26531,14824,1273,"26.5 km","NE",59.6,"C",0.9],["Continue on P2",29410,14858,1412,"29.4 km","NE",50.1,"C",359.9],["Continue on P2",7123,14878,342,"7.1 km","NE",42.5,"C",0.1],["Continue on Магистральная",46,14904,2,"46 m","NE",41.8,"C",358.9],["Continue on Магистральная",139,14905,7,"0.1 km","NE",42.2,"C",0.4],["Continue on Магистральная",3985,14907,191,"4.0 km","NE",42.9,"C",357.8],["Continue on P2",23160,14921,1112,"23.2 km","E",81.5,"C",0.3],["Continue on M1",1077,14952,43,"1.1 km","NE",30.8,"C",354.9],["Continue on M1",7991,14957,320,"8.0 km","N",13.1,"C",1.5],["Slight right",681,14967,31,"0.7 km","NE",57.4,"TSLR",19.0],["Turn right",2980,14977,715,"3.0 km","NE",32.4,"TR",70.4],["Continue on Минская ул.",141,14986,7,"0.1 km","E",69.9,"C",357.9],["Continue on Минская ул.",2587,14987,133,"2.6 km","E",72.0,"C",2.0],["Continue on Минская ул.",878,14999,45,"0.9 km","NE",46.8,"C",360.0],["Continue on Минская ул.",16299,15002,838,"16.3 km","NE",67.0,"C",17.3],["Continue on P1",2405,15053,115,"2.4 km","NE",36.7,"C",0.0],["Continue on P1",4818,15059,231,"4.8 km","NE",36.7,"C",358.1],["Continue on P1",6917,15073,332,"6.9 km","NE",56.8,"C",1.9],["Continue on P1",199,15102,10,"0.2 km","NE",24.3,"C",354.7],["Continue on P1",599,15105,29,"0.6 km","NE",33.6,"C",358.9],["Continue on просп. Дзержинского",804,15107,39,"0.8 km","NE",32.1,"C",359.5],["Turn right at ул. Яна Чечота",561,15121,29,"0.6 km","E",96.6,"TR",89.3],["Turn left at Каролинская ул.",912,15129,47,"0.9 km","NE",44.4,"TL",295.0],["Turn right at Каролинский проезд",2320,15146,119,"2.3 km","SE",117.0,"TR",52.4],["Turn right at Железнодорожная ул.",3849,15180,198,"3.8 km","NE",54.6,"TR",70.8],["Continue on Суражская ул.",227,15216,12,"0.2 km","NE",64.2,"C",356.8],["Slight left",17,15218,1,"17 m","NE",34.3,"TSLL",319.1],["Turn left",734,15220,38,"0.7 km","N",350.7,"TL",309.3],["Continue on Московская ул.",3390,15234,163,"3.4 km","NE",37.0,"C",17.7],["Continue on просп. Независимости",148,15272,7,"0.1 km","E",70.4,"C",338.3],["At the roundabout, take the 2nd exit onto просп. Независимости",3472,15281,167,"3.5 km","N",5.1,"EXIT2",0.0],["Continue on просп. Независимости",3736,15322,179,"3.7 km","NE",65.6,"C",0.5],["Continue on просп. Независимости",772,15353,37,"0.8 km","NE",61.6,"C",358.6],["Continue on просп. Независимости",406,15359,17,"0.4 km","NE",61.7,"C",1.8],["Continue on просп. Независимости",824,15362,35,"0.8 km","NE",62.0,"C",355.3],["Continue on просп. Независимости",2388,15366,101,"2.4 km","NE",61.3,"C",358.9],["Continue on просп. Независимости",2216,15381,94,"2.2 km","NE",54.2,"C",357.4],["Continue on M2",754,15390,32,"0.8 km","NE",49.9,"C",357.8],["Continue on M2",1572,15396,67,"1.6 km","NE",51.8,"C",359.2],["Continue on M2",1665,15404,71,"1.7 km","NE",55.6,"C",0.1],["Continue on M2",2121,15410,90,"2.1 km","NE",56.7,"C",2.1],["Continue on M2",1118,15418,47,"1.1 km","NE",58.2,"C",359.7],["Continue on M2",4485,15421,190,"4.5 km","NE",56.2,"C",356.9],["Continue on M2",893,15430,38,"0.9 km","E",71.0,"C",359.4],["Continue on M2",9638,15436,408,"9.6 km","E",78.5,"C",359.0],["Continue on P53",8895,15462,427,"8.9 km","E",70.9,"C",0.1],["Continue on P53",12739,15482,611,"12.7 km","E",70.6,"C",359.6],["Continue on просп. Ленина",15705,15501,754,"15.7 km","E",69.9,"C",2.1],["Continue on Юрия Гагарина",3603,15533,173,"3.6 km","NE",46.8,"C",2.0],["Continue on Юрия Гагарина",6934,15548,333,"6.9 km","N",18.9,"C",1.6],["Continue on P53",7193,15585,345,"7.2 km","E",81.8,"C",9.2],["Continue",704,15590,32,"0.7 km","E",82.7,"C",357.8],["Continue",2196,15592,99,"2.2 km","E",84.4,"C",0.1],["Continue on M1",910,15605,36,"0.9 km","E",76.7,"C",1.5],["Continue on M1",1115,15608,45,"1.1 km","E",89.9,"C",359.9],["Continue",438,15612,20,"0.4 km","E",87.4,"C",4.1],["Continue",3188,15615,765,"3.2 km","NE",64.2,"C",0.5],["Continue on ул. Мичурина",635,15624,38,"0.6 km","E",101.1,"C",359.8],["Continue on ул. Мичурина",2616,15634,157,"2.6 km","NE",56.5,"C",359.7],["Slight left",111,15639,5,"0.1 km","NE",26.4,"TSLL",330.8],["Turn right at M1",6455,15640,258,"6.5 km","E",94.5,"TR",68.2],["Continue on M1",3219,15655,129,"3.2 km","E",74.5,"C",0.0],["Continue on M1",3228,15661,129,"3.2 km","E",83.0,"C",360.0],["Continue on M1",10605,15672,424,"10.6 km","E",79.9,"C",356.7],["Continue on M1",18254,15692,730,"18.3 km","NE",48.0,"C",0.1],["Continue on M1",569,15716,23,"0.6 km","E",91.5,"C",359.6],["Continue on M1",2958,15718,118,"3.0 km","E",90.8,"C",358.1],["Continue on M1",3262,15727,130,"3.3 km","NE",62.0,"C",359.9],["Continue on M1",15068,15734,603,"15.1 km","E",75.2,"C",0.3],["Continue on M1",18089,15745,724,"18.1 km","E",76.9,"C",358.7],["Continue on M1",2506,15764,100,"2.5 km","E",77.5,"C",0.7],["Continue on M1",7125,15768,285,"7.1 km","E",78.1,"C",1.5],["Continue on M1",3744,15784,150,"3.7 km","NE",61.5,"C",359.3],["Continue on M1",10106,15794,404,"10.1 km","E",80.8,"C",2.6],["Continue on M1",8130,15816,325,"8.1 km","E",108.0,"C",0.2],["Continue on M1",1530,15831,61,"1.5 km","E",75.9,"C",0.1],["Continue on M1",3307,15833,132,"3.3 km","E",76.0,"C",0.0],["Continue on M1",7001,15836,280,"7.0 km","E",75.9,"C",0.3],["Continue on M1",3263,15840,131,"3.3 km","E",75.8,"C",359.6],["Continue on M1",2230,15846,89,"2.2 km","NE",66.3,"C",3.6],["Continue on M1",1096,15852,44,"1.1 km","E",83.7,"C",359.9],["Continue on M1",4500,15855,180,"4.5 km","E",80.0,"C",0.1],["Continue on M1",2884,15865,115,"2.9 km","NE",49.2,"C",0.7],["Continue on M1",4814,15868,193,"4.8 km","NE",49.6,"C",359.9],["Continue on M1",2397,15878,96,"2.4 km","E",76.6,"C",0.1],["Continue on M1",585,15881,23,"0.6 km","E",76.6,"C",359.4],["Continue on M1",6039,15883,242,"6.0 km","E",76.9,"C",0.3],["Continue on M1",3827,15893,153,"3.8 km","NE",47.4,"C",0.1],["Continue on M1",7102,15900,284,"7.1 km","NE",60.8,"C",0.0],["Continue on M1",8175,15909,327,"8.2 km","NE",35.2,"C",359.9],["Continue on M1",971,15928,41,"1.0 km","E",75.4,"C",357.6],["Continue on M1",2071,15930,88,"2.1 km","E",77.8,"C",0.0],["Continue on M1",46244,15932,1959,"46.2 km","E",77.8,"C",0.0],["Continue on M-1",2071,15970,88,"2.1 km","E",94.3,"C",360.0],["Continue on M-1",38279,15977,1621,"38.3 km","E",80.3,"C",359.9],["Continue on M-1",489,16005,21,"0.5 km","NE",45.8,"C",357.7],["Continue on M-1",26554,16007,1125,"26.6 km","NE",46.4,"C",359.7],["Continue on М1",10096,16033,428,"10.1 km","E",86.3,"C",0.2],["Continue on М1",1892,16066,80,"1.9 km","E",82.9,"C",359.1],["Continue on М1",1291,16073,55,"1.3 km","E",73.2,"C",356.1],["Continue on М1",514,16077,22,"0.5 km","NE",65.3,"C",359.8],["Continue on М1",1242,16079,53,"1.2 km","NE",64.9,"C",359.7],["Continue on М1",1077,16083,46,"1.1 km","NE",65.2,"C",360.0],["Continue on М1",9976,16084,423,"10.0 km","NE",65.5,"C",0.2],["Continue on М1",12641,16117,535,"12.6 km","NE",51.0,"C",359.8],["Continue on М1",2397,16132,102,"2.4 km","NE",41.8,"C",358.7],["Continue on М1",26980,16137,1143,"27.0 km","NE",63.2,"C",0.0],["Continue on М1",1917,16167,81,"1.9 km","NE",65.3,"C",359.8],["Continue on М1",2320,16170,98,"2.3 km","NE",65.6,"C",359.9],["Continue on М1",683,16175,29,"0.7 km","E",71.9,"C",0.1],["Continue on М1",2281,16178,97,"2.3 km","E",72.6,"C",0.0],["Continue on М1",3885,16192,165,"3.9 km","E",86.6,"C",2.0],["Continue on М1",57144,16207,2420,"57.1 km","E",76.6,"C",2.0],["Continue on М1",14847,16281,629,"14.8 km","E",91.5,"C",359.4],["Continue on М1",46718,16296,1979,"46.7 km","E",81.1,"C",0.4],["Continue on М1",35054,16352,1485,"35.1 km","NE",62.3,"C",359.1],["Continue on М1",978,16386,41,"1.0 km","NE",53.6,"C",359.8],["Continue on М1",11242,16390,476,"11.2 km","NE",46.7,"C",360.0],["Continue on М1",499,16399,21,"0.5 km","NE",54.9,"C",0.1],["Continue on М1",13753,16401,582,"13.8 km","NE",55.0,"C",0.1],["Continue on М1",32293,16415,1368,"32.3 km","NE",51.7,"C",357.7],["Continue on М1",15972,16450,676,"16.0 km","E",101.2,"C",360.0],["Continue on М1",22105,16472,936,"22.1 km","E",103.3,"C",0.5],["Continue on М1",6395,16509,271,"6.4 km","E",88.5,"C",0.0],["Continue on М1",16100,16522,682,"16.1 km","E",95.1,"C",359.9],["Continue on М1\/Минское шоссе",2427,16549,103,"2.4 km","NE",61.8,"C",0.5],["Continue on М1\/Минское шоссе",12287,16554,520,"12.3 km","E",69.3,"C",0.0],["Continue on М1\/Минское шоссе",2720,16565,115,"2.7 km","E",71.8,"C",359.9],["Continue on М1\/Минское шоссе",19200,16571,813,"19.2 km","E",72.1,"C",359.9],["Continue on М1\/Минское шоссе",19731,16604,836,"19.7 km","E",78.3,"C",358.9],["Continue on М1\/Минское шоссе",597,16642,25,"0.6 km","E",78.9,"C",0.0],["Continue on М1\/Минское шоссе",1152,16644,49,"1.2 km","E",77.4,"C",359.2],["Continue on М1\/Минское шоссе",5312,16649,225,"5.3 km","E",78.3,"C",0.4],["Continue on М1\/Минское шоссе",750,16654,32,"0.8 km","E",70.4,"C",355.5],["Slight left at М1\/Минское шоссе",1105,16658,47,"1.1 km","E",71.9,"TSLL",337.1],["Continue on М1\/Минское шоссе",460,16662,19,"0.5 km","E",71.9,"C",1.5],["Continue on М1\/Минское шоссе",4732,16665,200,"4.7 km","E",76.4,"C",3.3],["Continue on М1\/Минское шоссе",10840,16671,459,"10.8 km","E",83.3,"C",1.8],["Continue on М1\/Минское шоссе",5580,16736,236,"5.6 km","NE",61.6,"C",356.8],["Continue on М1\/Можайское шоссе",3192,16786,135,"3.2 km","NE",43.3,"C",3.2],["Continue on М1\/Можайское шоссе",340,16822,14,"0.3 km","E",75.5,"C",0.8],["Continue on Можайское шоссе",1099,16826,53,"1.1 km","E",74.8,"C",359.4],["Continue on Можайское шоссе",637,16833,31,"0.6 km","E",73.8,"C",0.7],["Continue on Можайское шоссе",4223,16839,203,"4.2 km","E",72.4,"C",0.0],["Continue on Кутузовский проспект",3257,16868,156,"3.3 km","E",72.0,"C",360.0],["Continue on Кутузовский проспект",1150,16885,55,"1.2 km","E",69.5,"C",1.7],["Slight right",184,16889,9,"0.2 km","E",92.9,"TSLR",26.2],["Continue",1323,16893,68,"1.3 km","E",107.6,"C",358.5],["Slight right",492,16915,25,"0.5 km","N",359.1,"TSLR",7.3],["Continue",394,16919,20,"0.4 km","N",349.2,"C",358.1],["Continue",338,16923,17,"0.3 km","N",359.5,"C",3.0],["Continue",282,16929,15,"0.3 km","N",7.4,"C",355.8],["Continue",3322,16931,171,"3.3 km","N",12.5,"C",359.4],["Turn right at Беговая аллея",423,16990,22,"0.4 km","SE",121.2,"TR",92.5],["Continue on Беговая аллея",284,17000,15,"0.3 km","NE",28.9,"C",359.2],["Turn right",10,17005,1,"10 m","SE",124.2,"TR",84.8],["Continue",50,17006,6,"50 m","SE",128.9,"C",4.7],["Continue",87,17010,10,"87 m","E",90.0,"C",340.7],["Turn left",28,17018,10,"28 m","NE",36.3,"TL",287.0],["Turn left",36,17020,13,"36 m","NW",308.3,"TL",269.8],["Turn right",55,17021,20,"55 m","NE",37.7,"TR",89.5],["Continue",79,17022,28,"79 m","NE",37.8,"C",0.0],["Turn right",40,17023,14,"40 m","SE",125.9,"TR",88.1],["Turn left at Скаковая аллея",13,17026,3,"13 m","NE",41.4,"TL",275.2],["Turn right at Скаковая улица",468,17027,112,"0.5 km","SE",128.4,"TR",101.7],["Turn left",5,17040,2,"5 m","NE",42.5,"TL",254.7]]}
//SLIDER - 1 indicator
function slider(container,width,height){
//initialize some variables
var indicWidth = 12, clickListenerTest=false, hoverListenerTest=false, clickListener, hoverListener, indicPos = width/2;
var indicatorStartPosition = 0;
var axisScale = d3.scale.sqrt();
var sliderSVG = container.append("svg")
.attr("width", width)
.attr("height", height);
var sliderGroup = sliderSVG.append("g");
//this is the background of the slider
sliderGroup.append("rect").attr("x", 0).attr("y", 0).attr("width", width).attr("height", height)
.attr("id","_background")
this.currentValue = sliderGroup.append("text").attr("x", width/6).attr("y", height/2-10).text("Current value: "+indicatorStartPosition.toFixed(8)).style("text-anchor","middle").style("fill","#fff");
var maxVal = indicatorStartPosition;
var xAxisGroup = sliderGroup.append("g");
//this is the interactive area of the slider
var sliderArea = sliderGroup.append("rect").attr("x", 0).attr("y", 0).attr("width", width).attr("height", height)
.attr("id","sliderSVG")
.on("mousemove",overAction);
var indicator = sliderGroup.append("rect").attr("x", indicatorStartPosition).attr("y", 0) .attr("width", indicWidth).attr("height", height)
.attr("id","indicator").attr("class","static")
.on("mousedown",mousedown);
var tester = false;
function mousedown(){
if(tester==true){
tester = false;
indicator.attr("class","static");
//execute the user defined function for a click event...when there is one
if(clickListenerTest==true )clickListener();
}
else {
tester = true;
indicator.attr("class","dynamic");
}
}
function overAction(){
if(tester==true){
var value = (d3.mouse(this)[0]);
indicPos = value;
indicator.attr("x", value-(indicWidth/2))
//execute the user defined function for a hover event...when there is one
if(hoverListenerTest==true )hoverListener();
}
}
//add the scalebar...has to be done from 'outside'...returns the 'xAxisGroup'
this.addScalebar=addScalebar;
function addScalebar(domain_){
//add the text and something like a 'scalebar'
axisScale.domain(domain_).range([0,width]); //tutorial for the time scale: http://bl.ocks.org/mbostock/4149176
var xAxis = d3.svg.axis()
.scale(axisScale);
xAxisGroup.call(xAxis).attr("class", "axis");
xAxisGroup.selectAll("text").attr("transform","rotate(-90, 0, 0)").text(function(d){return d});
xAxisGroup.attr("transform","translate(0,"+(height/2)+")");
return xAxisGroup;
}
this.reDefineIndicator=reDefineIndicator;
function reDefineIndicator(width_){
indicator.attr("width", width_);
}
this.addClickListener=addClickListener;
function addClickListener(listener_){
clickListener = listener_;
clickListenerTest = true;
}
this.getClickListener=getClickListener;
function getClickListener(){
return clickListener();
}
this.addHoverListener=addHoverListener;
function addHoverListener(listener_){
hoverListener = listener_;
hoverListenerTest = true;
}
this.getHoverListener=getHoverListener;
function getHoverListener(){
return hoverListener();
}
this.getIndicPosition=getIndicPosition;
function getIndicPosition(){
var value_ = axisScale.invert(indicPos).toFixed(8)
this.currentValue.text("Current value: "+value_ )
return axisScale.invert(indicPos);
}
}
<!DOCTYPE html>
<html>
<head>
<title>Testmap</title>
<meta charset="utf-8" />
<script src="http://cdn.leafletjs.com/leaflet-0.6.1/leaflet.js"></script>
<script src="http://d3js.org/d3.v3.min.js"></script>
<style>
@import url(http://cdn.leafletjs.com/leaflet-0.6.1/leaflet.css);
#overlay{
fill:None;
stroke:#41b611;
stroke-width:2px;
}
</style>
</head>
<body>
<div id="map" style="width: 600px; height: 300px"></div>
<script>
var map = L.map('map').setView([52.67, 21.97], 4);
var toolserver = L.tileLayer('http://{s}.www.toolserver.org/tiles/bw-mapnik/{z}/{x}/{y}.png');
var stamen = L.tileLayer('http://{s}.tile.stamen.com/toner/{z}/{x}/{y}.png', {attribution: 'Add some attributes here!'}).addTo(map);
var baseLayers = {"stamen": stamen, "toolserver-mapnik":toolserver};
var control = L.control.layers(baseLayers).addTo(map);
var svgContainer= d3.select(map.getPanes().overlayPane).append("svg");
var group= svgContainer.append("g").attr("class", "leaflet-zoom-hide");
var path = d3.geo.path().projection(project);
d3.json("shortest_paris-moscow.js", function(navigation_route) {
console.log(navigation_route);
var allPoints = navigation_route.route_geometry
var routeGeometry = {'type':'LineString', 'coordinates':allPoints};
var routeFeature = {'type':'Feature', 'geometry':routeGeometry}
var collection = routeFeature
var feature;
setFeature();
var bounds = d3.geo.bounds(routeFeature);
reset();
map.on("viewreset", reset);
map.on("drag", reset);
function reset() {
//bounds = [[map.getBounds()._southWest.lng, map.getBounds()._southWest.lat],[map.getBounds()._northEast.lng, map.getBounds()._northEast.lat]]
var bottomLeft = project(bounds[0]),
topRight = project(bounds[1]);
svgContainer.attr("width", topRight[0] - bottomLeft[0])
.attr("height", bottomLeft[1] - topRight[1])
.style("margin-left", bottomLeft[0] + "px")
.style("margin-top", topRight[1] + "px");
group.attr("transform", "translate(" + -bottomLeft[0] + "," + -topRight[1] + ")");
feature.attr("d", path);
}
//this is just a function from the existing code...as I need it to restore the removed paths
function setFeature(){
feature = group.selectAll("path")
.data([routeGeometry])
.enter()
.append("path")
.attr("id","overlay")
.attr("d", path);
}
})
function project(point) {
var latlng = new L.LatLng(point[0], point[1]);
var layerPoint = map.latLngToLayerPoint(latlng);
return [layerPoint.x, layerPoint.y];
}
</script>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>Testmap</title>
<meta charset="utf-8" />
<script src="http://cdn.leafletjs.com/leaflet-0.6.1/leaflet.js"></script>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://bl.ocks.org/milkbread/raw/5909613/adamiller_simplify.js"></script>
<style>
@import url(http://cdn.leafletjs.com/leaflet-0.6.1/leaflet.css);
#overlay{
fill:None;
stroke:#41b611;
stroke-width:2px;
}
</style>
</head>
<body>
<div id="map" style="width: 600px; height: 300px"></div>
<script>
var map = L.map('map').setView([52.67, 21.97], 4);
var toolserver = L.tileLayer('http://{s}.www.toolserver.org/tiles/bw-mapnik/{z}/{x}/{y}.png');
var stamen = L.tileLayer('http://{s}.tile.stamen.com/toner/{z}/{x}/{y}.png', {attribution: 'Add some attributes here!'}).addTo(map);
var baseLayers = {"stamen": stamen, "toolserver-mapnik":toolserver};
var control = L.control.layers(baseLayers).addTo(map);
var svgContainer= d3.select(map.getPanes().overlayPane).append("svg");
var group= svgContainer.append("g").attr("class", "leaflet-zoom-hide");
var path = d3.geo.path().projection(project);
d3.json("shortest_paris-moscow.js", function(navigation_route) {
console.log(navigation_route);
var allPoints = navigation_route.route_geometry
var allPointObjects = pointsConversion(allPoints, 'toObject')
console.log(allPoints.length)
allPointObjects = simplifyPath(allPointObjects,0.1)
allPoints = pointsConversion(allPointObjects, 'toArray')
console.log(allPoints.length)
var routeGeometry = {'type':'LineString', 'coordinates':allPoints};
var routeFeature = {'type':'Feature', 'geometry':routeGeometry}
var collection = routeFeature
var feature;
setFeature();
var bounds = d3.geo.bounds(routeFeature);
reset();
map.on("viewreset", reset);
map.on("drag", reset);
function reset() {
//bounds = [[map.getBounds()._southWest.lng, map.getBounds()._southWest.lat],[map.getBounds()._northEast.lng, map.getBounds()._northEast.lat]]
var bottomLeft = project(bounds[0]),
topRight = project(bounds[1]);
svgContainer.attr("width", topRight[0] - bottomLeft[0])
.attr("height", bottomLeft[1] - topRight[1])
.style("margin-left", bottomLeft[0] + "px")
.style("margin-top", topRight[1] + "px");
group.attr("transform", "translate(" + -bottomLeft[0] + "," + -topRight[1] + ")");
feature.attr("d", path);
}
//this is just a function from the existing code...as I need it to restore the removed paths
function setFeature(){
feature = group.selectAll("path")
.data([routeGeometry])
.enter()
.append("path")
.attr("id","overlay")
.attr("d", path);
}
})
//converts an array of points between array & object --> direction: 'toObject' {'x':0,'y':0} from array |or| 'toArray' [y,x] from object
function pointsConversion(points, direction){
var cache;
if(direction=='toObject'){
cache = points.map(function(point){return {'y':point[0],'x':point[1]}});
}
else if(direction=='toArray'){
cache = points.map(function(point){return [point.y,point.x]});
}
return cache;
}
function project(point) {
var latlng = new L.LatLng(point[0], point[1]);
var layerPoint = map.latLngToLayerPoint(latlng);
return [layerPoint.x, layerPoint.y];
}
</script>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>Testmap</title>
<meta charset="utf-8" />
<script src="http://cdn.leafletjs.com/leaflet-0.6.1/leaflet.js"></script>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://mourner.github.io/simplify-js/simplify.js"></script>
<script src="http://bl.ocks.org/milkbread/raw/5909613/simplify_RK_1.1.js"></script>
<script src="http://bl.ocks.org/adammiller/raw/826148/douglasPeucker.js"></script>
<style>
@import url(http://cdn.leafletjs.com/leaflet-0.6.1/leaflet.css);
#overlay{
fill:None;
stroke:#41b611;
stroke-width:2px;
}
</style>
</head>
<body>
<div id="map" style="width: 600px; height: 300px"></div>
<script>
var map = L.map('map').setView([52.67, 21.97], 4);
var toolserver = L.tileLayer('http://{s}.www.toolserver.org/tiles/bw-mapnik/{z}/{x}/{y}.png');
var stamen = L.tileLayer('http://{s}.tile.stamen.com/toner/{z}/{x}/{y}.png', {attribution: 'Add some attributes here!'}).addTo(map);
var baseLayers = {"stamen": stamen, "toolserver-mapnik":toolserver};
var control = L.control.layers(baseLayers).addTo(map);
var svgContainer= d3.select(map.getPanes().overlayPane).append("svg");
var group= svgContainer.append("g").attr("class", "leaflet-zoom-hide");
var path = d3.geo.path().projection(project);
d3.json("shortest_paris-moscow.js", function(navigation_route) {
//console.log(navigation_route);
var allPoints = navigation_route.route_geometry
var allPointObjects = pointsConversion(allPoints, 'toObject')
console.log(allPoints.length)
var start_time = Date.now();
//This distinction is added to access all 3 different simplification libraries (algorithms) from 1 file
//1. get the 'search' value of the URL
var inputValue = window.location.hash.replace('#','');
if (inputValue=='') inputValue = 'miller'; //define it, where nothing was specified
//2. Distinguish and execute the corresponding library
if(inputValue=='miller') allPointObjects = simplifyPath(allPointObjects,0.1)
else if(inputValue=='mourner') allPointObjects = simplify(allPointObjects,0.1,true)
else if(inputValue=='bostock') {
var d3Simplify = d3.simplify()
.projection(function (point){return point}); //return the point as it is...as my coords are geographic, this projection is geographic
d3Simplify( {'type':'LineString', 'coordinates':allPoints})
var numPoints = allPoints.length;
allPoints = allPoints.filter(function(point,i){if (point[2]>0.1 || i==0 || i==numPoints-1) return point})
}
//***End of additional distinction
console.log('The calculation took: ',((Date.now() - start_time)/1000).toFixed(4))
if(inputValue=='miller' || inputValue=='mourner')allPoints = pointsConversion(allPointObjects, 'toArray')
console.log(allPoints.length)
var routeGeometry = {'type':'LineString', 'coordinates':allPoints};
var routeFeature = {'type':'Feature', 'geometry':routeGeometry}
var collection = routeFeature
var feature;
setFeature();
var bounds = d3.geo.bounds(routeFeature);
reset();
map.on("viewreset", reset);
map.on("drag", reset);
function reset() {
//bounds = [[map.getBounds()._southWest.lng, map.getBounds()._southWest.lat],[map.getBounds()._northEast.lng, map.getBounds()._northEast.lat]]
var bottomLeft = project(bounds[0]),
topRight = project(bounds[1]);
svgContainer.attr("width", topRight[0] - bottomLeft[0])
.attr("height", bottomLeft[1] - topRight[1])
.style("margin-left", bottomLeft[0] + "px")
.style("margin-top", topRight[1] + "px");
group.attr("transform", "translate(" + -bottomLeft[0] + "," + -topRight[1] + ")");
feature.attr("d", path);
}
//this is just a function from the existing code...as I need it to restore the removed paths
function setFeature(){
feature = group.selectAll("path")
.data([routeGeometry])
.enter()
.append("path")
.attr("id","overlay")
.attr("d", path);
}
})
//converts an array of points between array & object --> direction: 'toObject' {'x':0,'y':0} from array |or| 'toArray' [y,x] from object
function pointsConversion(points, direction){
var cache;
if(direction=='toObject'){
cache = points.map(function(point){return {'y':point[0],'x':point[1]}});
}
else if(direction=='toArray'){
cache = points.map(function(point){return [point.y,point.x]});
}
return cache;
}
function project(point) {
var latlng = new L.LatLng(point[0], point[1]);
var layerPoint = map.latLngToLayerPoint(latlng);
return [layerPoint.x, layerPoint.y];
}
</script>
</body>
</html>
<!DOCTYPE html>
<html>
<head>
<title>Testmap</title>
<meta charset="utf-8" />
<script src="http://cdn.leafletjs.com/leaflet-0.6.1/leaflet.js"></script>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://mourner.github.io/simplify-js/simplify.js"></script>
<script src="http://bl.ocks.org/milkbread/raw/5909613/simplify_RK_1.1.js"></script>
<script src="http://bl.ocks.org/adammiller/raw/826148/douglasPeucker.js"></script>
<script src="http://bl.ocks.org/milkbread/raw/5917907/slider.js"></script>
<style>
@import url(http://cdn.leafletjs.com/leaflet-0.6.1/leaflet.css);
@import url(http://bl.ocks.org/milkbread/raw/5743667/RKToolbox_0.1.css);
#overlay{
fill:None;
stroke:#41b611;
stroke-width:2px;
}
.axis text {
font-family: sans-serif;
font-size: 16px;
text-anchor:left;
fill:#0f0;
opacity:0.8;
}
#info {
background-color:#c8ba09;
}
.leaflet-clickable_modified{
stroke:#f00;
}
</style>
</head>
<body>
<div id=slider></div>
<div id="map" style="width: 600px; height: 300px"></div>
<div id=info style="width: 600px;"></div>
<script>
//1. get the 'search' value of the URL
var inputValue = window.location.hash.replace('#','').split(':');
if (inputValue[0]=='') inputValue[0] = 'DP_pure'; //define it, where nothing was specified
var algorithms = ['DP_pure', 'DP_combined','Visvalingam'];
var head = d3.select('#info').append('text').text('Choose the algorithm (currently "'+ inputValue +'")')
var row = d3.select('#info').append("table").attr('width',"600").append("tr");
var unit_selector = row.append('td').append("form").attr("name","unit_form").append("select").attr("name","unit_sel").attr("onChange","changedSelektor(value)").attr("size","3");
unit_selector.selectAll("option").data(algorithms).enter().append("option").attr("value",function(d){return d}).text(function(d,i){return d});
function changedSelektor(value){
window.location.hash=value;
window.location.reload();
}
var infos = [], cell = row.append('td');
infos[0] = cell.append('text');
infos[1] = cell.append('text').text("Simplified number of points: ");
infos[1].append('br');
infos[2] = cell.append('text').text('The calculation took: ') ;
infos[2].append('br');
infos[3] = cell.append('text').text('Average time of calculation: ') ;
var timeArray = [];
var slider = new slider(d3.select("#slider"),600,75);
slider.reDefineIndicator(6);
slider.addScalebar([0,1]);
var view = [52.67, 21.97, 4];
if (inputValue[1] != undefined){var cache = inputValue[1].split(';'); view = [cache[0], cache[1], cache[2]];}
var map = L.map('map').setView([view[0], view[1]], view[2]);
var toolserver = L.tileLayer('http://{s}.www.toolserver.org/tiles/bw-mapnik/{z}/{x}/{y}.png');
var stamen = L.tileLayer('http://{s}.tile.stamen.com/toner/{z}/{x}/{y}.png', {attribution: 'Overlay: <a href= "http://d3js.org/" target="_blank">D3</a> | API: <a href= "http://developers.cloudmade.com/wiki/routing-http-api/Documentation" target="_blank">Cloudmade</a> | Data: © <a href="http://www.openstreetmap.org" target="_blank">OpenStreetMap</a>-contributers'}).addTo(map);
var baseLayers = {"stamen": stamen, "toolserver-mapnik":toolserver};
var control = L.control.layers(baseLayers).addTo(map);
var centerPoint = L.circle([map.getCenter().lat, map.getCenter().lng], 200).addTo(map);
var essenPoint = L.circle([51.47, 6.97], 200).addTo(map);
essenPoint._path.className.baseVal = 'leaflet-clickable_modified'
var berlinPoint = L.circle([52.31, 13.30], 200).addTo(map);
berlinPoint._path.className.baseVal = 'leaflet-clickable_modified'
var plonskPoint = L.circle([52.62, 20.38], 200).addTo(map);
plonskPoint._path.className.baseVal = 'leaflet-clickable_modified'
var minskPoint = L.circle([53.90, 27.56], 200).addTo(map);
minskPoint._path.className.baseVal = 'leaflet-clickable_modified'
var svgContainer= d3.select(map.getPanes().overlayPane).append("svg");
var group= svgContainer.append("g").attr("class", "leaflet-zoom-hide");
var path = d3.geo.path().projection(project);
///milkbread/raw/5917907/
d3.json("shortest_paris-moscow.js", function(navigation_route) {
slider.addHoverListener(hoverAction);
//console.log(navigation_route);
var allPoints = navigation_route.route_geometry
infos[0].text("Total number of points: " + allPoints.length).append('br')
var allPointObjects = pointsConversion(allPoints, 'toObject')
//This distinction is added to access all 3 different simplification libraries (algorithms) from 1 file
function simplifyGeometry(points_array_, maxValue_){
var allPointObjects_ = pointsConversion(points_array_, 'toObject');
//2. Distinguish and execute the corresponding library
//Douglas-Peucker
if(inputValue=='DP_pure') allPointObjects_ = simplifyPath(allPointObjects_,maxValue_)
//combined Douglas-Peucker
else if(inputValue=='DP_combined') allPointObjects_ = simplify(allPointObjects_,maxValue_,false)
//Visvalingam
else if(inputValue=='Visvalingam') {
var d3Simplify = d3.simplify()
.projection(function (point){return point}); //return the point as it is...as my coords are geographic, this projection is geographic
d3Simplify( {'type':'LineString', 'coordinates':points_array_})
var numPoints = points_array_.length;
points_array_ = points_array_.filter(function(point,i){if (point[2]>maxValue_ || i==0 || i==numPoints-1) return point})
}
if(inputValue=='DP_pure' || inputValue=='DP_combined')points_array_ = pointsConversion(allPointObjects_, 'toArray')
return points_array_;
}
//***End of additional distinction
console.log(allPoints.length)
var routeGeometry = {'type':'LineString', 'coordinates':allPoints};
var routeFeature = {'type':'Feature', 'geometry':routeGeometry}
var collection = routeFeature
var feature;
setFeature();
var bounds = d3.geo.bounds(routeFeature);
reset();
map.on("viewreset", reset);
map.on("drag", reset);
function reset() {
//bounds = [[map.getBounds()._southWest.lng, map.getBounds()._southWest.lat],[map.getBounds()._northEast.lng, map.getBounds()._northEast.lat]]
var bottomLeft = project(bounds[0]),
topRight = project(bounds[1]);
svgContainer.attr("width", topRight[0] - bottomLeft[0])
.attr("height", bottomLeft[1] - topRight[1])
.style("margin-left", bottomLeft[0] + "px")
.style("margin-top", topRight[1] + "px");
group.attr("transform", "translate(" + -bottomLeft[0] + "," + -topRight[1] + ")");
feature.attr("d", path);
centerPoint.setLatLng([map.getCenter().lat, map.getCenter().lng])
head.text('Choose the algorithm (currently "'+ inputValue[0] +'")' + ' || Center: Lat: '+map.getCenter().lat.toFixed(2)+', Lng: '+map.getCenter().lng.toFixed(2)+ ' || Zoom: '+map.getZoom())
}
//this is just a function from the existing code...as I need it to restore the removed paths
function setFeature(){
group.selectAll("path").remove();
feature = group.selectAll("path")
.data([routeGeometry])
.enter()
.append("path")
.attr("id","overlay")
.attr("d", path);
}
//This is the function that I've commited to the slider as kind of 'action listener' for hovering
function hoverAction(){
var start_time = Date.now();
var allPoints2 = simplifyGeometry(allPoints.slice(0), slider.getIndicPosition())
infos[1].text("Simplified number of points: " + allPoints2.length).append('br')
var processingTime = ((Date.now() - start_time)/1000);
infos[2].text('The calculation took: '+processingTime.toFixed(4)).append('br')
timeArray.push(processingTime)
var averageTime = 0;
timeArray.forEach(function(d){averageTime = averageTime + d})
averageTime = averageTime/(timeArray.length)
infos[3].text('Average time of calculation: '+averageTime.toFixed(4)+ " ("+timeArray.length+" iterations)")
routeGeometry = {'type':'LineString', 'coordinates':allPoints2}
setFeature();
}
})
//converts an array of points between array & object --> direction: 'toObject' {'x':0,'y':0} from array |or| 'toArray' [y,x] from object
function pointsConversion(points, direction){
var cache;
if(direction=='toObject'){
cache = points.map(function(point){return {'y':point[0],'x':point[1]}});
}
else if(direction=='toArray'){
cache = points.map(function(point){return [point.y,point.x]});
}
return cache;
}
function project(point) {
var latlng = new L.LatLng(point[0], point[1]);
var layerPoint = map.latLngToLayerPoint(latlng);
return [layerPoint.x, layerPoint.y];
}
</script>
</body>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment