Skip to content

Instantly share code, notes, and snippets.

@HarryStevens
Last active January 15, 2022 18:07
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
Star You must be signed in to star a gist
Save HarryStevens/8c8d3a489aa1372e14b8084f94b32464 to your computer and use it in GitHub Desktop.
Scale Bars for D3 Maps
license: gpl-3.0

Scale bars help viewers understand the geographic extent of maps. Printed maps, even those produced over a century ago, seldom lack them, yet scale bars are commonly missing from modern maps published on the internet. d3-geo-scale-bar makes it easy to add scale bars to maps created with d3-geo, a popular open source library for publishing maps on the web.

<!DOCTYPE html>
<html>
<head>
<style>
body {
margin: 0;
}
svg {
margin: 0 auto;
display: table;
}
path {
fill: #eee;
stroke: #ddd;
}
</style>
</head>
<body>
<script src="https://d3js.org/d3-dispatch.v1.min.js"></script>
<script src="https://d3js.org/d3-selection.v1.min.js"></script>
<script src="https://d3js.org/d3-transition.v1.min.js"></script>
<script src="https://d3js.org/d3-zoom.v1.min.js"></script>
<script src="https://d3js.org/d3-drag.v1.min.js"></script>
<script src="https://d3js.org/d3-array.v1.min.js"></script>
<script src="https://d3js.org/d3-geo.v1.min.js"></script>
<script src="india.js"></script>
<script src="https://unpkg.com/d3-geo-scale-bar@1"></script>
<script>
let width, height;
const svg = d3.select("body").append("svg");
const g = svg.append("g");
const polygon = g.append("path").datum(india);
const projection = d3.geoMercator();
const path = d3.geoPath().projection(projection);
const miles = d3.geoScaleBar()
.units(d3.geoScaleMiles)
.top(.1)
.left(.5)
.distance(500);
const scaleBarMiles = svg.append("g");
const kilometers = d3.geoScaleBar()
.left(.5)
.top(.1)
.distance(800);
const scaleBarKilometers = svg.append("g")
.attr("transform", "translate(0, 40)")
.append("g");
redraw();
window.onresize = _ => redraw();
function redraw(){
width = window.innerWidth;
height = Math.min(width * 1.12, window.innerHeight);
svg.attr("width", width).attr("height", height);
projection.fitSize([width, height], india);
polygon.attr("d", path);
miles.size([width, height]).projection(projection);
scaleBarMiles.call(miles);
kilometers.size([width, height]).projection(projection);
scaleBarKilometers.call(kilometers);
}
</script>
</body>
</html>
var india = {"type":"FeatureCollection", "features": [{"type":"Feature","geometry":{"type":"MultiPolygon","coordinates":[[[[93.855317,7.214179],[93.865001,7.20067],[93.87672,7.16356],[93.880626,7.144273],[93.883149,7.104722],[93.887055,7.089301],[93.903087,7.060858],[93.912934,7.035102],[93.928722,7.012356],[93.929861,6.959052],[93.921072,6.933824],[93.893565,6.876776],[93.889415,6.841783],[93.904145,6.819241],[93.903087,6.808295],[93.889903,6.800971],[93.859386,6.804267],[93.847911,6.785305],[93.834239,6.745551],[93.812673,6.753974],[93.809337,6.769029],[93.813243,6.788031],[93.813731,6.808295],[93.792166,6.825873],[93.784434,6.836412],[93.793223,6.849189],[93.775727,6.867377],[93.773123,6.877997],[93.779552,6.890204],[93.766124,6.901109],[93.76531,6.924302],[93.748057,6.92357],[93.737478,6.943264],[93.72877,6.970526],[93.71754,6.992621],[93.684337,7.020901],[93.664561,7.026516],[93.649181,7.013088],[93.649669,7.119615],[93.653575,7.131496],[93.676443,7.181871],[93.70753,7.184394],[93.717296,7.18769],[93.730154,7.202216],[93.76531,7.219143],[93.772146,7.211737],[93.797618,7.234605],[93.813975,7.241848],[93.830821,7.235907],[93.855317,7.214179]]],[[[93.644216,7.257514],[93.628184,7.253323],[93.617931,7.259955],[93.617442,7.276068],[93.61085,7.294501],[93.594005,7.314765],[93.606944,7.326402],[93.61671,7.367255],[93.638682,7.376166],[93.667247,7.382758],[93.677989,7.3994],[93.683767,7.421698],[93.696951,7.445054],[93.696951,7.417792],[93.699473,7.398749],[93.72169,7.381171],[93.731212,7.369371],[93.734386,7.350816],[93.728526,7.337104],[93.696951,7.314765],[93.67921,7.298326],[93.644216,7.257514]]],[[[93.433116,7.954291],[93.459809,7.910793],[93.46046,7.899848],[93.454438,7.869289],[93.43686,7.883287],[93.421235,7.891791],[93.40211,7.890082],[93.367849,7.878607],[93.354259,7.883287],[93.340343,7.901272],[93.341075,7.912584],[93.348155,7.924872],[93.340668,7.931708],[93.332693,7.924954],[93.31365,7.929185],[93.305024,7.949937],[93.313324,7.989732],[93.322602,8.002102],[93.344412,8.012112],[93.370291,8.01732],[93.391368,8.01557],[93.396169,7.997219],[93.396007,7.976386],[93.401215,7.967963],[93.433116,7.954291]]],[[[93.565929,7.999335],[93.574229,7.968817],[93.573985,7.924872],[93.518321,7.965806],[93.510753,7.98017],[93.511485,7.99551],[93.520763,8.004381],[93.539317,7.999335],[93.540294,8.016181],[93.54835,8.020087],[93.558604,8.013617],[93.565929,7.999335]]],[[[93.525157,8.095038],[93.537608,8.057318],[93.531912,8.034735],[93.514903,8.027655],[93.494965,7.996283],[93.484386,7.991889],[93.479259,8.002916],[93.477306,8.030992],[93.480805,8.040513],[93.495616,8.049384],[93.497813,8.061998],[93.516938,8.0633],[93.511485,8.074856],[93.497813,8.082506],[93.492198,8.063625],[93.479747,8.063218],[93.466319,8.074408],[93.457367,8.089993],[93.446625,8.154364],[93.446544,8.164496],[93.465098,8.183295],[93.477306,8.209133],[93.48585,8.22012],[93.504649,8.226996],[93.523448,8.225816],[93.531668,8.213202],[93.531016,8.193752],[93.510509,8.166571],[93.505219,8.14704],[93.508556,8.128811],[93.525157,8.095038]]],[[[73.056651,8.259996],[73.032725,8.249498],[73.029307,8.259996],[73.04835,8.267564],[73.063162,8.279486],[73.066091,8.270453],[73.056651,8.259996]]],[[[93.17628,8.212877],[93.167328,8.204535],[93.153494,8.205512],[93.124685,8.212877],[93.10255,8.221503],[93.081554,8.242377],[93.065766,8.268134],[93.059581,8.291409],[93.06129,8.320746],[93.069835,8.346625],[93.083751,8.355902],[93.095063,8.35517],[93.10141,8.345771],[93.100759,8.299262],[93.104015,8.27558],[93.114106,8.256415],[93.134532,8.24018],[93.173025,8.221259],[93.17628,8.212877]]],[[[93.609711,8.438422],[93.600352,8.450344],[93.607107,8.49079],[93.607677,8.507066],[93.595551,8.541734],[93.594981,8.55801],[93.607677,8.569159],[93.607677,8.548041],[93.626801,8.505845],[93.628184,8.486558],[93.618337,8.453925],[93.609711,8.438422]]],[[[92.831981,9.145025],[92.799565,9.110154],[92.731212,9.130845],[92.720225,9.147121],[92.711681,9.175116],[92.708507,9.201606],[92.713878,9.213446],[92.729259,9.217841],[92.745128,9.229071],[92.754405,9.244452],[92.750987,9.261217],[92.763031,9.264146],[92.811373,9.23117],[92.833849,9.202359],[92.831981,9.145025]]],[[[73.637055,10.062567],[73.631684,10.067816],[73.637462,10.087063],[73.646332,10.084703],[73.637055,10.062567]]],[[[72.188162,10.836127],[72.172699,10.809231],[72.172618,10.829983],[72.179047,10.8487],[72.200043,10.878119],[72.200043,10.864447],[72.188162,10.836127]]],[[[92.582116,10.790261],[92.585092,10.771269],[92.586986,10.736294],[92.598059,10.709302],[92.595908,10.678364],[92.574492,10.655484],[92.551056,10.634603],[92.539835,10.620669],[92.54176,10.59172],[92.574213,10.580624],[92.546675,10.547781],[92.535423,10.524861],[92.513027,10.507969],[92.479558,10.516073],[92.444139,10.545143],[92.421788,10.546203],[92.406466,10.529266],[92.384111,10.529328],[92.378057,10.541329],[92.402557,10.575206],[92.413855,10.606117],[92.417003,10.629059],[92.408917,10.647055],[92.379486,10.672122],[92.378671,10.750037],[92.37568,10.775031],[92.385878,10.781981],[92.407265,10.789891],[92.41542,10.798863],[92.428966,10.850816],[92.482796,10.885622],[92.527592,10.895466],[92.54888,10.874373],[92.56506,10.849308],[92.567981,10.815301],[92.582116,10.790261]]],[[[72.775483,11.186754],[72.770356,11.203681],[72.774181,11.222886],[72.789073,11.248033],[72.784923,11.216376],[72.775483,11.186754]]],[[[92.646007,11.359076],[92.61964,11.360745],[92.593516,11.378363],[92.600841,11.406317],[92.608165,11.411322],[92.631196,11.416246],[92.637218,11.430162],[92.635265,11.447008],[92.627615,11.477362],[92.63559,11.508043],[92.654145,11.508124],[92.675059,11.490424],[92.6963,11.454413],[92.679698,11.429389],[92.676524,11.412543],[92.69988,11.384426],[92.682791,11.371527],[92.646007,11.359076]]],[[[92.273204,11.531073],[92.252127,11.529242],[92.234548,11.540351],[92.230235,11.577338],[92.217296,11.591254],[92.217296,11.59809],[92.254893,11.593817],[92.278087,11.583808],[92.286876,11.563178],[92.285004,11.544013],[92.273204,11.531073]]],[[[93.066417,11.899115],[93.049327,11.896145],[93.035411,11.911933],[93.024913,11.940131],[92.990571,11.954413],[92.96754,11.978583],[92.953136,11.981106],[92.947032,11.989691],[92.957205,12.008694],[92.980723,12.036322],[93.014659,12.037177],[93.025401,12.031562],[93.018565,12.015815],[93.048676,11.952786],[93.066417,11.899115]]],[[[93.103282,12.102037],[93.094249,12.090969],[93.08546,12.095852],[93.074229,12.110338],[93.059581,12.138739],[93.061534,12.172309],[93.066254,12.189846],[93.082042,12.204779],[93.098481,12.199408],[93.103282,12.18008],[93.094981,12.15176],[93.102306,12.119534],[93.103282,12.102037]]],[[[93.872813,12.268866],[93.85377,12.260566],[93.851899,12.271552],[93.860606,12.281195],[93.872813,12.268866]]],[[[92.694672,12.803778],[92.682791,12.797309],[92.670258,12.867662],[92.677745,12.890367],[92.684906,12.945054],[92.682791,12.961737],[92.708344,12.988674],[92.722504,12.985785],[92.730723,12.977484],[92.737478,12.961737],[92.732188,12.945705],[92.729991,12.895209],[92.724376,12.872382],[92.697113,12.838202],[92.694672,12.803778]]],[[[94.290782,13.422919],[94.274913,13.420315],[94.261892,13.429267],[94.280935,13.443549],[94.290782,13.422919]]],[[[93.016287,13.567369],[93.042491,13.571234],[93.049978,13.566392],[93.066417,13.537095],[93.055024,13.503079],[93.053722,13.471422],[93.059581,13.406806],[93.080089,13.413031],[93.07838,13.397121],[93.057872,13.38288],[93.046886,13.357408],[93.004242,13.331041],[93.003673,13.348619],[92.995128,13.357367],[92.984386,13.356431],[92.977061,13.345364],[92.97934,13.329779],[92.990489,13.317816],[93.004568,13.311835],[93.025564,13.316148],[93.035655,13.306952],[93.052745,13.283881],[93.075694,13.26911],[93.079438,13.259833],[93.056895,13.224799],[93.052582,13.196967],[93.052745,13.133043],[93.048106,13.103705],[93.036794,13.062161],[93.019542,13.033637],[92.998057,13.043687],[92.990571,13.043687],[92.97934,13.029527],[92.964041,13.036851],[92.956554,13.064154],[92.937022,13.067084],[92.928884,13.050198],[92.928396,13.027493],[92.932628,13.013007],[92.950694,12.993638],[92.956228,12.981676],[92.942882,12.954291],[92.936046,12.954291],[92.934744,12.973049],[92.927419,12.981024],[92.905284,12.982245],[92.880707,12.930406],[92.876801,12.911526],[92.896332,12.899726],[92.915538,12.919582],[92.92449,12.914374],[92.932628,12.89289],[92.940684,12.889309],[92.964041,12.864936],[92.960704,12.847154],[92.968028,12.803168],[92.956554,12.783026],[92.973155,12.76435],[92.984386,12.745103],[92.990489,12.724311],[92.990571,12.701117],[92.976817,12.654934],[92.972911,12.628119],[92.989024,12.592108],[92.991547,12.567084],[92.990571,12.519232],[92.9817,12.506049],[92.964854,12.491034],[92.955903,12.477444],[92.970225,12.468329],[92.962413,12.454413],[92.93865,12.438137],[92.936046,12.419908],[92.906016,12.448961],[92.901866,12.433539],[92.873302,12.431383],[92.84669,12.433539],[92.863617,12.385484],[92.894054,12.368109],[92.902517,12.357123],[92.901866,12.344794],[92.912771,12.333645],[92.879242,12.312974],[92.885753,12.295559],[92.900157,12.283189],[92.901866,12.269029],[92.879893,12.243598],[92.892589,12.214545],[92.891612,12.200832],[92.872569,12.201483],[92.874522,12.183743],[92.864024,12.171536],[92.842947,12.156195],[92.827403,12.140123],[92.833669,12.118232],[92.806407,12.10456],[92.80893,12.095771],[92.799327,12.089545],[92.768809,12.084703],[92.757498,12.07746],[92.767263,12.061225],[92.792654,12.036322],[92.771251,12.036078],[92.765391,12.02204],[92.745616,11.996649],[92.740571,11.983629],[92.737478,11.961168],[92.737478,11.878648],[92.744884,11.878648],[92.749034,11.912258],[92.753754,11.931586],[92.761973,11.940131],[92.787934,11.934516],[92.795909,11.922187],[92.79949,11.899115],[92.796886,11.865139],[92.76002,11.708686],[92.754731,11.701117],[92.734548,11.699286],[92.722911,11.693793],[92.689952,11.660061],[92.68393,11.649888],[92.682791,11.61518],[92.696788,11.611233],[92.710704,11.621731],[92.710704,11.659573],[92.731212,11.652737],[92.730235,11.671454],[92.736013,11.682441],[92.746104,11.683743],[92.758556,11.673245],[92.761485,11.663642],[92.765391,11.618598],[92.747569,11.597846],[92.744884,11.587592],[92.744884,11.557115],[92.735118,11.523871],[92.726736,11.506171],[92.713145,11.50731],[92.689708,11.51557],[92.658946,11.546291],[92.654796,11.555894],[92.654633,11.573798],[92.633556,11.582587],[92.625662,11.595404],[92.621348,11.618598],[92.62794,11.625149],[92.645681,11.629828],[92.642833,11.64525],[92.61964,11.651313],[92.614513,11.662991],[92.60377,11.718899],[92.579845,11.714179],[92.563243,11.725572],[92.560313,11.74136],[92.566661,11.7862],[92.566661,11.827135],[92.563243,11.83393],[92.534353,11.846869],[92.524913,11.857489],[92.531993,11.864976],[92.539724,11.894436],[92.562999,11.930162],[92.577159,11.927395],[92.600271,11.895494],[92.614513,11.899115],[92.607677,11.882799],[92.61085,11.87051],[92.621348,11.874945],[92.624522,11.930162],[92.629405,11.943752],[92.621348,11.987942],[92.625011,12.003119],[92.641856,12.036322],[92.640147,12.136135],[92.645274,12.156073],[92.668223,12.200995],[92.681814,12.219631],[92.689708,12.207668],[92.697113,12.207668],[92.703868,12.225165],[92.713064,12.232571],[92.720958,12.226549],[92.724376,12.20425],[92.719493,12.176256],[92.727794,12.172838],[92.741059,12.180325],[92.765391,12.180325],[92.784028,12.189358],[92.792654,12.207668],[92.7824,12.248603],[92.758556,12.265937],[92.764496,12.274319],[92.7942,12.283189],[92.792654,12.296373],[92.778494,12.310126],[92.754731,12.310045],[92.733653,12.318061],[92.722341,12.337795],[92.717784,12.362494],[92.72169,12.599433],[92.726817,12.612982],[92.76002,12.651109],[92.778982,12.652655],[92.783214,12.664984],[92.754731,12.677191],[92.747732,12.692694],[92.744884,12.762519],[92.737478,12.807196],[92.740896,12.819648],[92.765391,12.84512],[92.785655,12.840033],[92.800304,12.857815],[92.809337,12.884508],[92.813243,12.90648],[92.813243,12.958075],[92.828136,12.985175],[92.834727,13.002021],[92.830252,13.009508],[92.807953,13.020087],[92.809255,13.044745],[92.8296,13.103461],[92.854177,13.146064],[92.833669,13.174018],[92.844737,13.186998],[92.842784,13.226996],[92.864024,13.2355],[92.863943,13.244696],[92.849864,13.289008],[92.854177,13.310614],[92.841156,13.324897],[92.847423,13.344916],[92.886892,13.393459],[92.89503,13.413031],[92.89503,13.454576],[92.901866,13.468248],[92.915538,13.475735],[92.937999,13.50137],[92.945486,13.519721],[92.945486,13.536933],[92.958507,13.550238],[92.984386,13.557603],[92.997325,13.546698],[93.011729,13.550767],[93.004568,13.562201],[93.016287,13.567369]]],[[[93.042817,13.662055],[93.052745,13.640204],[93.019542,13.6494],[93.000499,13.657701],[92.990571,13.667467],[93.019542,13.680121],[93.033214,13.680243],[93.042817,13.662055]]],[[[80.97169,15.750474],[80.942638,15.741034],[80.917979,15.755113],[80.8685,15.811957],[80.879161,15.840074],[80.888357,15.846747],[80.937266,15.818915],[80.968272,15.795233],[80.983165,15.780748],[80.988536,15.770738],[80.984874,15.761786],[80.97169,15.750474]]],[[[88.90797,21.530707],[88.879731,21.529975],[88.862478,21.523586],[88.838715,21.531928],[88.830821,21.577379],[88.841319,21.614],[88.902029,21.580268],[88.911306,21.566881],[88.91391,21.548407],[88.90797,21.530707]]],[[[88.139415,21.630316],[88.130056,21.625922],[88.091563,21.636542],[88.063487,21.636664],[88.051768,21.641588],[88.043142,21.65762],[88.043956,21.680854],[88.050548,21.70539],[88.090017,21.808661],[88.119314,21.859524],[88.146739,21.869859],[88.167003,21.765448],[88.163422,21.705471],[88.132579,21.684963],[88.144379,21.657782],[88.146007,21.643744],[88.139415,21.630316]]],[[[88.649181,21.842353],[88.646332,21.787909],[88.636241,21.79267],[88.591807,21.804389],[88.584972,21.826606],[88.586274,21.843004],[88.598643,21.869859],[88.616466,21.897935],[88.636241,21.921373],[88.650157,21.927436],[88.663259,21.921291],[88.670584,21.907416],[88.667003,21.890326],[88.655284,21.866604],[88.649181,21.842353]]],[[[88.104991,21.861151],[88.080903,21.849351],[88.072276,21.856757],[88.071056,21.873603],[88.077322,21.904608],[88.094249,21.937893],[88.105723,21.947577],[88.118907,21.945014],[88.132579,21.920478],[88.125011,21.888658],[88.104991,21.861151]]],[[[78.011169,35.768801],[78.096313,35.826721],[78.200684,35.813359],[78.263855,35.873472],[78.3078,35.873472],[78.384705,35.857892],[78.585205,35.920196],[78.670349,36.044658],[78.799438,35.978006],[78.843384,36.033553],[79.104309,36.029111],[79.241638,36.104596],[79.40918,36.064642],[79.428406,35.915747],[79.508057,35.880149],[79.634399,35.926869],[79.61792,35.85344],[79.670105,35.802222],[79.686584,35.757657],[79.694824,35.728677],[79.708557,35.699686],[79.782715,35.733136],[79.862366,35.686302],[79.969482,35.717528],[80.002441,35.677379],[79.966736,35.643905],[80.027161,35.532226],[80.104065,35.57915],[80.104065,35.634977],[80.194702,35.608185],[80.249634,35.563512],[80.288086,35.518814],[80.271606,35.447246],[80.238647,35.384572],[80.216675,35.321848],[80.205688,35.268047],[80.139771,35.196256],[80.068359,35.115415],[80.040894,35.074965],[80.018921,35.038992],[79.980469,34.994004],[79.974976,34.957995],[79.903564,34.885931],[79.903564,34.849875],[79.898071,34.849875],[79.958496,34.795762],[79.996948,34.737098],[79.958496,34.646766],[79.881592,34.57443],[79.848633,34.492975],[79.755249,34.429567],[79.667358,34.420505],[79.562988,34.461277],[79.425659,34.461277],[79.332275,34.411442],[79.271851,34.357042],[79.321289,34.248136],[79.282837,34.161818],[79.194946,34.107256],[79.052124,34.089061],[78.980713,34.048108],[78.95874,33.979809],[78.969727,33.792844],[78.909302,33.683211],[78.876343,33.637489],[78.815918,33.600894],[78.781372,33.552785],[78.800905,33.494236],[78.824263,33.461059],[78.917694,33.386258],[78.973298,33.30957],[78.989111,33.301974],[79.026111,33.292646],[79.060218,33.276807],[79.072827,33.26363],[79.078925,33.221177],[79.0874,33.215596],[79.122229,33.228903],[79.153649,33.226914],[79.229613,33.192161],[79.264443,33.181981],[79.344852,33.17932],[79.378648,33.164282],[79.381852,33.127333],[79.37317,33.11214],[79.351363,33.084855],[79.344231,33.065941],[79.339787,33.013257],[79.333586,32.994292],[79.334206,32.956827],[79.354257,32.930575],[79.412754,32.886547],[79.431978,32.855386],[79.438799,32.824613],[79.448721,32.795622],[79.499984,32.74684],[79.505048,32.71418],[79.495747,32.678213],[79.47642,32.645424],[79.434769,32.60243],[79.33679,32.535664],[79.294312,32.494581],[79.276019,32.490189],[79.235608,32.504296],[79.215247,32.507914],[79.191166,32.50427],[79.1614,32.496467],[79.132875,32.48546],[79.112928,32.472386],[79.102902,32.449855],[79.09174,32.390556],[79.075307,32.37079],[79.066316,32.370067],[79.028178,32.377095],[78.989834,32.364098],[78.976192,32.361618],[78.943429,32.346373],[78.911286,32.354745],[78.881521,32.376268],[78.855682,32.400452],[78.77145,32.461663],[78.754707,32.493806],[78.73693,32.545792],[78.734966,32.560649],[78.749126,32.595867],[78.750986,32.612791],[78.736827,32.629844],[78.713262,32.637518],[78.694452,32.629663],[78.664893,32.599019],[78.647736,32.585971],[78.630166,32.578013],[78.589859,32.569925],[78.447542,32.566256],[78.408165,32.558376],[78.384807,32.547549],[78.380983,32.528041],[78.409198,32.476623],[78.448782,32.426782],[78.452193,32.416782],[78.43638,32.396163],[78.43886,32.373296],[78.462735,32.281803],[78.461391,32.260151],[78.456327,32.242116],[78.457981,32.229662],[78.476481,32.224417],[78.513068,32.20757],[78.534978,32.181344],[78.551825,32.15039],[78.649287,32.036444],[78.678329,32.016755],[78.722151,31.994586],[78.733829,31.984664],[78.744578,31.9642],[78.741994,31.945338],[78.720187,31.902912],[78.714192,31.883016],[78.706648,31.840797],[78.700343,31.821676],[78.674091,31.78695],[78.670887,31.770517],[78.695589,31.746694],[78.693212,31.71853],[78.710472,31.69817],[78.71843,31.6806],[78.731349,31.668042],[78.758117,31.666595],[78.795324,31.633781],[78.818889,31.607374],[78.814031,31.595023],[78.796978,31.578849],[78.699516,31.510016],[78.695382,31.488105],[78.733003,31.467744],[78.762561,31.44511],[78.760081,31.412037],[78.745508,31.373538],[78.73848,31.334988],[78.740857,31.317728],[78.753156,31.301966],[78.784472,31.288272],[78.821989,31.293698],[78.861987,31.291476],[78.877387,31.298246],[78.901261,31.323671],[78.918108,31.354418],[78.934747,31.347338],[78.959552,31.325117],[78.976192,31.320002],[78.988801,31.343256],[78.995622,31.386819],[79.014639,31.425473],[79.063318,31.433638],[79.077788,31.427178],[79.10559,31.406198],[79.139179,31.388628],[79.149515,31.359276],[79.159953,31.344496],[79.186722,31.339535],[79.198401,31.324911],[79.194163,31.295352],[79.197987,31.287342],[79.213387,31.276903],[79.219588,31.260832],[79.215557,31.243727],[79.219691,31.233702],[79.234987,31.223418],[79.266097,31.212308],[79.271884,31.191017],[79.275088,31.154224],[79.28222,31.138204],[79.295656,31.124148],[79.32108,31.112314],[79.348262,31.105389],[79.372343,31.094072],[79.388363,31.069474],[79.394978,31.036711],[79.401592,31.023637],[79.414408,31.020382],[79.446344,31.023792],[79.47642,31.014025],[79.497607,30.981211],[79.529646,30.953564],[79.577809,30.938371],[79.589488,30.940231],[79.630312,30.962504],[79.648192,30.96576],[79.6885,30.967413],[79.739039,30.979247],[79.76064,30.977232],[79.833504,30.961522],[79.85035,30.954494],[79.862856,30.941523],[79.880426,30.912843],[79.903164,30.890209],[79.934893,30.872535],[80.005586,30.847266],[80.028634,30.830781],[80.044447,30.8067],[80.062534,30.784789],[80.092196,30.774505],[80.109249,30.778122],[80.140669,30.793212],[80.157102,30.79316],[80.169297,30.785254],[80.196066,30.748098],[80.224591,30.734094],[80.231412,30.724947],[80.207021,30.686138],[80.19989,30.680712],[80.172915,30.679162],[80.16692,30.661902],[80.19989,30.625884],[80.2033,30.60635],[80.197823,30.591364],[80.179839,30.559479],[80.21622,30.566818],[80.252806,30.565009],[80.325877,30.546509],[80.424992,30.497829],[80.475429,30.480466],[80.508295,30.462328],[80.525141,30.458607],[80.575267,30.466255],[80.596351,30.459796],[80.694743,30.411737],[80.723062,30.392048],[80.735361,30.378199],[80.754998,30.345797],[80.767194,30.331431],[80.781663,30.320993],[80.866981,30.288488],[80.943772,30.270143],[80.976018,30.255209],[80.996275,30.22689],[81.003303,30.212731],[80.996017,30.196969],[80.988162,30.196556],[80.920828,30.17666],[80.903309,30.180433],[80.883879,30.210405],[80.867911,30.200173],[80.83644,30.170046],[80.849669,30.143381],[80.829825,30.117129],[80.769674,30.077287],[80.755721,30.064574],[80.725749,30.022768],[80.715827,30.013311],[80.680171,29.992072],[80.654126,29.970575],[80.622293,29.958173],[80.586223,29.954142],[80.57134,29.946855],[80.562865,29.929699],[80.549533,29.89368],[80.527312,29.862416],[80.476152,29.80614],[80.454861,29.790586],[80.395227,29.776582],[80.368975,29.757926],[80.354299,29.730279],[80.354402,29.70488],[80.363911,29.679714],[80.377553,29.652946],[80.386752,29.626823],[80.385201,29.604835],[80.373316,29.58419],[80.350785,29.562073],[80.32722,29.548585],[80.323603,29.54166],[80.32722,29.52484],[80.311511,29.508122],[80.29115,29.494609],[80.266242,29.47213],[80.257457,29.450064],[80.228312,29.441718],[80.217666,29.434639],[80.213739,29.416888],[80.220974,29.400119],[80.242161,29.367408],[80.249499,29.326997],[80.254977,29.316635],[80.272754,29.315705],[80.280092,29.31015],[80.282779,29.291314],[80.278748,29.268085],[80.258181,29.202456],[80.236063,29.213076],[80.218803,29.211086],[80.213739,29.196565],[80.230482,29.154733],[80.233066,29.139308],[80.220664,29.126079],[80.20144,29.121169],[80.16351,29.123366],[80.132607,29.110214],[80.113073,29.072206],[80.104702,29.027609],[80.107906,28.994588],[80.099431,28.977276],[80.052922,28.949113],[80.04052,28.932809],[80.033905,28.915936],[80.030288,28.87767],[80.036386,28.837026],[80.054782,28.824185],[80.081861,28.819353],[80.11421,28.802584],[80.147593,28.76331],[80.162063,28.753285],[80.181183,28.74729],[80.216426,28.741942],[80.233273,28.732718],[80.257044,28.702745],[80.283399,28.695356],[80.291047,28.689671],[80.318332,28.640113],[80.329701,28.627479],[80.349751,28.620218],[80.388302,28.627246],[80.408353,28.626342],[80.426543,28.616807],[80.468814,28.571849],[80.488451,28.562444],[80.493412,28.575647],[80.484937,28.639287],[80.487624,28.656469],[80.497546,28.670137],[80.517596,28.680033],[80.555837,28.678948],[80.556871,28.655022],[80.563588,28.647038],[80.598522,28.633783],[80.635625,28.627866],[80.648338,28.619753],[80.668182,28.586344],[80.67862,28.574717],[80.695777,28.567508],[80.727093,28.559679],[80.743526,28.549964],[80.781663,28.514746],[80.798406,28.505703],[80.81701,28.502551],[80.857989,28.502447],[80.872252,28.496866],[80.880365,28.48188],[80.88667,28.452786],[80.905273,28.440849],[80.941188,28.432684],[80.960515,28.432271],[80.976018,28.436922],[80.9878,28.430979],[80.993175,28.407828],[81.000409,28.397002],[81.146344,28.372249],[81.169701,28.361319],[81.190372,28.338116],[81.210732,28.278637],[81.224323,28.250783],[81.282356,28.191588],[81.295947,28.167455],[81.280754,28.161977],[81.283079,28.146087],[81.299409,28.142521],[81.296205,28.12831],[81.307057,28.123814],[81.338115,28.132728],[81.357907,28.165982],[81.373203,28.167843],[81.396044,28.160634],[81.417335,28.147017],[81.435267,28.129783],[81.448237,28.111412],[81.458211,28.07728],[81.473455,28.066402],[81.561926,28.025991],[81.582183,28.013278],[81.595102,27.994881],[81.615049,27.981239],[81.665433,27.9708],[81.688946,27.963204],[81.710392,27.94752],[81.750131,27.909667],[81.800154,27.884087],[81.827852,27.865639],[81.855654,27.850937],[81.883198,27.849051],[81.906091,27.863107],[81.946398,27.905352],[81.975905,27.916953],[82.02722,27.912406],[82.051611,27.905171],[82.090369,27.872331],[82.107422,27.863572],[82.151037,27.848275],[82.270409,27.760477],[82.347924,27.726009],[82.401926,27.677175],[82.440683,27.666426],[82.526156,27.675211],[82.652143,27.70415],[82.679687,27.694409],[82.69705,27.669397],[82.709246,27.630924],[82.718857,27.556123],[82.72971,27.518166],[82.752137,27.494964],[82.876264,27.487548],[82.901275,27.480365],[82.947164,27.457317],[83.010468,27.443391],[83.132786,27.444217],[83.169631,27.431195],[83.21924,27.393781],[83.231591,27.381224],[83.249419,27.348099],[83.259496,27.338126],[83.282441,27.330943],[83.304868,27.331925],[83.32435,27.341691],[83.341145,27.356936],[83.362746,27.385616],[83.370962,27.410214],[83.355821,27.428663],[83.353857,27.44029],[83.360989,27.462201],[83.387034,27.470469],[83.480981,27.469746],[83.590432,27.45662],[83.663399,27.43228],[83.801995,27.365928],[83.847988,27.351045],[83.877391,27.361742],[83.87119,27.38944],[83.842717,27.418069],[83.834087,27.434037],[83.853517,27.440962],[83.899871,27.443856],[83.923022,27.449954],[83.975835,27.439722],[84.007668,27.440807],[84.028907,27.453726],[84.079601,27.509536],[84.099548,27.516874],[84.11717,27.513283],[84.121563,27.494964],[84.141716,27.480753],[84.165746,27.472174],[84.175099,27.462976],[84.185848,27.438636],[84.195253,27.436053],[84.225536,27.440393],[84.239023,27.431143],[84.248893,27.412436],[84.267703,27.388562],[84.289408,27.376108],[84.577039,27.329031],[84.606546,27.310479],[84.631919,27.277044],[84.648197,27.240716],[84.657654,27.203405],[84.659824,27.165113],[84.654398,27.125374],[84.644528,27.103721],[84.630369,27.080829],[84.62148,27.057988],[84.627268,27.03649],[84.640239,27.028377],[84.760697,26.999025],[84.771962,26.99918],[84.785501,27.008482],[84.801934,27.013753],[84.817489,27.0106],[84.828134,26.994943],[84.851751,26.982127],[84.901567,26.967192],[84.924046,26.955668],[84.938567,26.9366],[84.952726,26.897636],[84.975774,26.886887],[85.000837,26.882236],[85.018045,26.874433],[85.018562,26.845804],[85.043987,26.843737],[85.100211,26.863529],[85.122845,26.8657],[85.162016,26.851024],[85.16553,26.820793],[85.165685,26.786273],[85.194934,26.758885],[85.287279,26.736974],[85.302369,26.737336],[85.337044,26.746792],[85.353219,26.757593],[85.369238,26.775008],[85.385878,26.788443],[85.421535,26.782656],[85.439622,26.78772],[85.519462,26.826426],[85.598578,26.854383],[85.609379,26.851024],[85.687772,26.811853],[85.701828,26.796608],[85.709631,26.76245],[85.702241,26.68845],[85.712887,26.653206],[85.727046,26.6376],[85.780996,26.599204],[85.789988,26.597034],[85.809728,26.603028],[85.817635,26.596724],[85.821614,26.571713],[85.828538,26.566131],[85.844765,26.568509],[85.866366,26.579929],[85.934682,26.632897],[85.952148,26.642044],[85.975713,26.64437],[86.01137,26.654447],[86.041704,26.645455],[86.122061,26.60029],[86.144798,26.60153],[86.167794,26.596621],[86.185364,26.584425],[86.202883,26.58458],[86.225155,26.597396],[86.263086,26.609075],[86.284428,26.61202],[86.301378,26.609023],[86.308613,26.60215],[86.309026,26.587991],[86.323185,26.580084],[86.353674,26.582616],[86.383647,26.572849],[86.444832,26.543084],[86.475476,26.531973],[86.494906,26.527839],[86.510616,26.520139],[86.537746,26.49487],[86.5579,26.484018],[86.625337,26.456319],[86.695204,26.418234],[86.713601,26.414565],[86.724091,26.421954],[86.738199,26.44371],[86.751893,26.445519],[86.796438,26.431514],[86.821863,26.438129],[86.846357,26.45265],[86.865684,26.472442],[86.875968,26.494921],[86.907129,26.511509],[86.972448,26.531973],[86.985212,26.540655],[87.015443,26.568974],[87.029912,26.579774],[87.041333,26.580187],[87.045002,26.544272],[87.056474,26.494921],[87.066706,26.465621],[87.083294,26.432083],[87.10629,26.404746],[87.135022,26.394204],[87.188455,26.399578],[87.2191,26.408105],[87.229435,26.398752],[87.2453,26.370226],[87.258425,26.36294],[87.30049,26.34599],[87.314029,26.343768],[87.326225,26.353328],[87.344932,26.389346],[87.356404,26.403712],[87.384206,26.418647],[87.416452,26.426967],[87.449628,26.428621],[87.480324,26.423401],[87.552051,26.386711],[87.586984,26.378029],[87.623984,26.392912],[87.659641,26.41751],[87.68119,26.424228],[87.710904,26.405676],[87.727544,26.403764],[87.74222,26.410482],[87.756173,26.446914],[87.768988,26.451461],[87.804439,26.437354],[87.821595,26.437509],[87.852084,26.46066],[87.870688,26.460712],[87.902004,26.435287],[87.914768,26.40826],[87.928979,26.396426],[87.961225,26.378959],[87.975488,26.366557],[88.006648,26.369864],[88.044321,26.405676],[88.074189,26.453942],[88.082251,26.49487],[88.079822,26.517556],[88.101681,26.581944],[88.14664,26.661216],[88.163383,26.705141],[88.169067,26.744002],[88.167827,26.762915],[88.159042,26.802551],[88.155321,26.845598],[88.151394,26.862806],[88.142816,26.878412],[88.12044,26.90885],[88.096824,26.959337],[88.076877,26.99179],[88.055948,27.018042],[88.042822,27.028946],[88.009491,27.045637],[87.9913,27.081501],[87.970733,27.10274],[87.970837,27.119224],[87.985461,27.14837],[87.989337,27.218391],[88.029024,27.298076],[88.035122,27.322571],[88.032538,27.333888],[88.020136,27.35337],[88.014762,27.378072],[88.02582,27.412075],[88.039308,27.42949],[88.039773,27.442357],[88.028094,27.455121],[88.0221,27.484241],[88.02334,27.494912],[88.048765,27.545348],[88.11088,27.639503],[88.134858,27.723167],[88.149327,27.748772],[88.159662,27.77412],[88.154598,27.815151],[88.166587,27.833599],[88.164623,27.845356],[88.156407,27.851273],[88.118218,27.860885],[88.104885,27.879721],[88.097496,27.904008],[88.099924,27.928322],[88.115737,27.947262],[88.126693,27.95044],[88.16297,27.9469],[88.197851,27.958295],[88.37877,27.982634],[88.399906,27.994881],[88.455768,28.03152],[88.475405,28.036248],[88.50207,28.028885],[88.51716,28.039582],[88.530802,28.059012],[88.552817,28.078055],[88.594003,28.106606],[88.610488,28.105831],[88.631675,28.083352],[88.652035,28.069399],[88.71012,28.061983],[88.735648,28.055265],[88.780141,28.028342],[88.802931,28.011005],[88.81771,27.994726],[88.819674,27.977337],[88.809752,27.944497],[88.810682,27.927857],[88.818899,27.915196],[88.842773,27.892407],[88.851558,27.877163],[88.855072,27.859179],[88.853883,27.843676],[88.805669,27.655109],[88.783087,27.622036],[88.767377,27.586198],[88.748154,27.560128],[88.741022,27.54571],[88.741642,27.53168],[88.757559,27.511448],[88.754355,27.464216],[88.759781,27.435071],[88.773578,27.408509],[88.795386,27.385926],[88.830836,27.367323],[88.852023,27.342363],[88.892331,27.315543],[88.884631,27.286346],[88.861428,27.270378],[88.801174,27.256425],[88.775852,27.240871],[88.754355,27.212604],[88.738438,27.179789],[88.730067,27.150954],[88.742572,27.142737],[88.805256,27.113023],[88.827632,27.097882],[88.840809,27.075248],[88.845615,27.049565],[88.845615,26.994839],[88.851713,26.945436],[88.867113,26.964247],[88.88644,26.978975],[88.906645,26.981093],[88.924474,26.961663],[88.9253,26.929365],[88.932328,26.919237],[88.954549,26.912622],[88.975323,26.921717],[88.996614,26.922751],[89.021574,26.912674],[89.04488,26.897119],[89.060693,26.881461],[89.074335,26.856398],[89.082448,26.836037],[89.096504,26.821413],[89.128079,26.813455],[89.184613,26.810561],[89.212828,26.813041],[89.240837,26.819759],[89.273599,26.843892],[89.300161,26.844409],[89.341657,26.854331],[89.407338,26.813403],[89.442891,26.797022],[89.50542,26.803688],[89.546503,26.797539],[89.586087,26.784051],[89.611357,26.765964],[89.613475,26.748549],[89.597507,26.720954],[89.609806,26.712221],[89.628307,26.712531],[89.66324,26.725502],[89.685151,26.724571],[89.738739,26.703281],[89.760288,26.70018],[89.800079,26.70049],[89.81367,26.696149],[89.822093,26.701007],[89.829741,26.72762],[89.890409,26.714856],[89.912113,26.716717],[89.975262,26.731858],[90.089157,26.741728],[90.127191,26.751392],[90.152202,26.771752],[90.17742,26.832058],[90.210907,26.851489],[90.229148,26.852884],[90.265994,26.851592],[90.284442,26.85707],[90.328574,26.890659],[90.348831,26.896654],[90.382627,26.891796],[90.475232,26.83242],[90.587783,26.780072],[90.717077,26.767049],[91.007395,26.782139],[91.062069,26.804567],[91.091938,26.804773],[91.127078,26.800898],[91.198185,26.802344],[91.232498,26.795161],[91.261954,26.779038],[91.27601,26.774077],[91.296577,26.774594],[91.330063,26.785498],[91.358382,26.806169],[91.388457,26.858465],[91.406338,26.869524],[91.420187,26.871539],[91.460598,26.869369],[91.475067,26.865545],[91.484472,26.852729],[91.507417,26.808029],[91.520646,26.79759],[91.539353,26.79883],[91.57563,26.810148],[91.593716,26.810768],[91.637951,26.798985],[91.653764,26.797952],[91.702133,26.803481],[91.731589,26.816194],[91.795254,26.853504],[91.825123,26.858465],[91.843934,26.84937],[91.852408,26.818519],[91.863054,26.804773],[91.87866,26.803016],[91.886928,26.814437],[91.885895,26.83087],[91.874009,26.844306],[91.895507,26.853504],[91.89313,26.881358],[91.908219,26.885182],[91.925686,26.878671],[91.957415,26.854279],[91.975088,26.846631],[92.03586,26.854848],[92.072757,26.887766],[92.083919,26.937323],[92.066969,26.994839],[92.049709,27.026827],[91.999893,27.071527],[91.987697,27.104031],[91.987904,27.122273],[91.995862,27.158033],[92.002994,27.172606],[92.021494,27.19183],[92.029969,27.20847],[92.03679,27.236478],[92.050639,27.251413],[92.081852,27.275132],[92.088776,27.29234],[92.084849,27.304226],[91.997309,27.448662],[91.975088,27.472433],[91.963306,27.468919],[91.933747,27.449127],[91.920931,27.445148],[91.884345,27.447163],[91.857369,27.443081],[91.779648,27.418844],[91.750089,27.416157],[91.743681,27.439153],[91.727041,27.460005],[91.704924,27.468764],[91.657382,27.479151],[91.641672,27.494964],[91.632887,27.511655],[91.604465,27.532145],[91.59506,27.546382],[91.573252,27.619711],[91.579867,27.657977],[91.626686,27.716423],[91.632887,27.759444],[91.773757,27.76381],[91.814788,27.754534],[91.849411,27.735259],[91.864914,27.729988],[91.908736,27.7319],[91.952247,27.72482],[91.975088,27.726577],[92.012192,27.741331],[92.069656,27.794041],[92.106553,27.810862],[92.126294,27.812722],[92.210009,27.806263],[92.229026,27.810655],[92.234917,27.821171],[92.229336,27.849206],[92.239568,27.865277],[92.24918,27.862641],[92.258275,27.848198],[92.275225,27.811689],[92.288764,27.793085],[92.303854,27.78616],[92.31729,27.803679],[92.329175,27.832928],[92.350053,27.802542],[92.367933,27.803834],[92.381058,27.842462],[92.392841,27.856027],[92.404416,27.853831],[92.417335,27.828948],[92.427567,27.821171],[92.439039,27.82329],[92.47511,27.846596],[92.523479,27.860006],[92.538051,27.869179],[92.564406,27.895223],[92.576499,27.901011],[92.600683,27.904887],[92.628485,27.915765],[92.662385,27.939123],[92.68781,27.967855],[92.69091,27.994985],[92.701349,28.025241],[92.701349,28.037825],[92.689257,28.048315],[92.65422,28.052087],[92.638924,28.057487],[92.63727,28.071983],[92.65484,28.105831],[92.678611,28.133064],[92.70786,28.155414],[92.770079,28.192182],[92.779174,28.195903],[92.790232,28.178901],[92.819895,28.179263],[92.85028,28.19195],[92.86537,28.205205],[92.889554,28.235823],[92.903817,28.249698],[92.922007,28.258638],[92.960351,28.270214],[93.000762,28.308712],[93.09316,28.366642],[93.116724,28.390594],[93.136361,28.424468],[93.149694,28.461468],[93.155378,28.494851],[93.220043,28.541654],[93.264191,28.562257],[93.31717,28.603463],[93.446213,28.671894],[93.551736,28.678948],[93.607133,28.672204],[93.62553,28.67236],[93.64341,28.68024],[93.674726,28.703004],[93.705525,28.691893],[93.722475,28.696647],[93.791412,28.751011],[93.807121,28.759124],[93.865826,28.775299],[93.877298,28.79243],[93.908614,28.798243],[93.912128,28.806098],[93.907167,28.82527],[93.918536,28.833228],[93.938483,28.836665],[93.97507,28.835037],[94.01145,28.85302],[94.026849,28.864182],[94.079474,28.883072],[94.135396,28.897788],[94.173658,28.930164],[94.250183,28.933107],[94.291389,28.977256],[94.347311,29.024349],[94.309048,29.059668],[94.270786,29.09793],[94.287505,29.147938],[94.323782,29.146026],[94.346313,29.159074],[94.36254,29.185326],[94.372875,29.196307],[94.396439,29.207081],[94.422381,29.210492],[94.474987,29.210802],[94.514778,29.22106],[94.528628,29.23124],[94.582681,29.302915],[94.599941,29.316635],[94.63043,29.319452],[94.668464,29.30661],[94.704224,29.284699],[94.756417,29.230517],[94.767683,29.213851],[94.761482,29.174706],[94.776571,29.166696],[94.854086,29.170004],[94.891293,29.160495],[94.965914,29.130187],[94.988238,29.124296],[94.964673,29.150108],[94.954648,29.169073],[94.989065,29.153984],[95.047666,29.140806],[95.099032,29.11378],[95.116912,29.108095],[95.191533,29.09683],[95.207863,29.089595],[95.216338,29.064997],[95.224916,29.059364],[95.281553,29.052672],[95.274437,29.112646],[95.306813,29.136192],[95.371564,29.139136],[95.409827,29.130306],[95.424543,29.177398],[95.445146,29.186228],[95.448089,29.147965],[95.466348,29.12272],[95.474926,29.136776],[95.511307,29.131789],[95.521435,29.137861],[95.522675,29.161193],[95.511927,29.197547],[95.515337,29.209433],[95.550167,29.212482],[95.553785,29.239043],[95.56443,29.245606],[95.592335,29.249689],[95.646697,29.22835],[95.717165,29.218284],[95.747365,29.273651],[95.744781,29.340432],[95.776407,29.345548],[95.79594,29.352886],[95.863134,29.323985],[95.953735,29.359219],[96.074536,29.369286],[96.141966,29.368467],[96.150957,29.354075],[96.166047,29.303174],[96.176279,29.286456],[96.205424,29.256949],[96.235293,29.241214],[96.26785,29.24173],[96.304126,29.261212],[96.323247,29.27501],[96.337096,29.279713],[96.349912,29.274235],[96.366242,29.257233],[96.366862,29.244211],[96.342367,29.210647],[96.327484,29.180442],[96.316425,29.171864],[96.210075,29.145767],[96.193642,29.136931],[96.174625,29.108845],[96.195338,29.027015],[96.280906,29.077348],[96.351373,29.097482],[96.366568,29.036537],[96.457605,28.994588],[96.451198,28.981385],[96.460086,28.96335],[96.474659,28.962058],[96.492229,28.948002],[96.500394,28.929243],[96.510832,28.885525],[96.523751,28.864415],[96.576668,28.808527],[96.592584,28.757884],[96.59801,28.70991],[96.502375,28.644476],[96.435178,28.611226],[96.467141,28.563942],[96.426874,28.518641],[96.462108,28.488441],[96.495226,28.42147],[96.512382,28.428808],[96.517475,28.488441],[96.527542,28.533741],[96.557743,28.584075],[96.61311,28.609242],[96.698678,28.589109],[96.769145,28.518641],[96.839613,28.478374],[96.884913,28.42804],[96.897889,28.354704],[96.933959,28.336618],[96.965791,28.330468],[96.997417,28.337083],[97.032971,28.35703],[97.078446,28.375143],[97.11555,28.366564],[97.182729,28.314991],[97.210531,28.308092],[97.220763,28.283391],[97.229651,28.274606],[97.285255,28.235668],[97.323496,28.217478],[97.328663,28.190012],[97.298898,28.12924],[97.292903,28.095082],[97.306546,28.069657],[97.355122,28.023045],[97.362253,27.994881],[97.356775,27.980567],[97.340032,27.951809],[97.335691,27.935609],[97.338172,27.901554],[97.333521,27.894164],[97.314917,27.884604],[97.292903,27.87755],[97.288046,27.897756],[97.276367,27.910339],[97.260657,27.912044],[97.241227,27.907858],[97.222933,27.899719],[97.210944,27.889513],[97.182109,27.857267],[97.131776,27.816856],[97.106041,27.805539],[97.092192,27.785489],[97.06532,27.773991],[97.060359,27.750452],[97.004032,27.734277],[96.990906,27.726629],[96.957006,27.688079],[96.93954,27.674023],[96.899749,27.649476],[96.883523,27.636325],[96.87019,27.61909],[96.862129,27.599298],[96.862025,27.578369],[96.877321,27.553074],[96.890241,27.492483],[96.877011,27.463079],[96.881352,27.444114],[96.905123,27.408406],[97.067904,27.2171],[97.101287,27.183303],[97.104388,27.156018],[97.129296,27.13788],[97.134773,27.127338],[97.119167,27.087288],[97.106041,27.082586],[97.077206,27.096487],[97.047854,27.087805],[97.02677,27.091474],[97.002999,27.114522],[96.865332,27.171624],[96.842698,27.188522],[96.841768,27.204387],[96.859648,27.240716],[96.853757,27.248725],[96.821718,27.273065],[96.809935,27.285777],[96.789161,27.317972],[96.776346,27.330633],[96.758879,27.341743],[96.724152,27.356264],[96.687255,27.361742],[96.675887,27.357659],[96.659247,27.341433],[96.636406,27.335542],[96.614185,27.348409],[96.5869,27.353577],[96.576048,27.345412],[96.56747,27.328307],[96.547316,27.306448],[96.510936,27.292495],[96.490058,27.290738],[96.474659,27.295389],[96.407789,27.29818],[96.142586,27.25751],[96.074166,27.229864],[96.013188,27.190796],[95.974844,27.142892],[95.938361,27.079899],[95.91645,27.051373],[95.888855,27.027034],[95.861466,27.014218],[95.804932,27.004761],[95.777957,26.995149],[95.734962,26.947297],[95.709227,26.907454],[95.699305,26.896189],[95.686076,26.89128],[95.639981,26.886422],[95.624271,26.880738],[95.613316,26.867922],[95.603394,26.844254],[95.591302,26.823739],[95.574765,26.816142],[95.531357,26.820276],[95.489809,26.810716],[95.462731,26.777178],[95.439993,26.735372],[95.410641,26.701627],[95.392658,26.691757],[95.31597,26.669071],[95.278969,26.652948],[95.260573,26.647625],[95.239075,26.649641],[95.223262,26.670363],[95.204865,26.667572],[95.195564,26.660751],[95.181611,26.641682],[95.163421,26.629745],[95.132622,26.620805],[95.119082,26.604217],[95.114948,26.562566],[95.099239,26.536107],[95.069887,26.506239],[95.054384,26.494921],[95.040638,26.475594],[95.042601,26.459678],[95.061722,26.426605],[95.066062,26.407433],[95.064202,26.392602],[95.050456,26.359064],[95.043635,26.327696],[95.041775,26.287596],[95.046322,26.24796],[95.058724,26.217677],[95.066373,26.211011],[95.090764,26.202691],[95.094484,26.195043],[95.078361,26.171324],[95.08818,26.104093],[95.101719,26.093395],[95.137479,26.082957],[95.150088,26.070968],[95.151225,26.049936],[95.139546,26.029937],[95.10823,25.995107],[95.065856,25.953817],[95.049423,25.943741],[95.012009,25.931442],[95.00064,25.922036],[94.994026,25.900436],[94.993199,25.880954],[95.013456,25.777704],[95.015316,25.755122],[95.008805,25.737138],[94.999917,25.731557],[94.978626,25.729077],[94.961469,25.717966],[94.871656,25.598025],[94.853466,25.586036],[94.86101,25.571412],[94.850778,25.562782],[94.822356,25.559113],[94.80799,25.542628],[94.782359,25.504594],[94.764375,25.491675],[94.745772,25.486611],[94.711149,25.482787],[94.692028,25.476327],[94.659472,25.455502],[94.630533,25.42739],[94.608003,25.394627],[94.550125,25.245282],[94.553329,25.204147],[94.576893,25.173607],[94.612964,25.161359],[94.653271,25.154125],[94.689135,25.138518],[94.706808,25.109941],[94.713836,25.068264],[94.708565,25.02589],[94.689755,24.99509],[94.673528,24.974807],[94.654821,24.889154],[94.639112,24.862799],[94.599011,24.813474],[94.593223,24.783786],[94.589502,24.74725],[94.581544,24.73012],[94.569452,24.716399],[94.555706,24.708855],[94.516329,24.704953],[94.507957,24.689011],[94.48708,24.620462],[94.474987,24.597389],[94.430236,24.570904],[94.418453,24.560311],[94.410805,24.545945],[94.397059,24.495069],[94.370394,24.477732],[94.363676,24.46582],[94.361196,24.425409],[94.352204,24.413937],[94.328743,24.394481],[94.33174,24.371098],[94.323679,24.354664],[94.302802,24.341022],[94.289986,24.31676],[94.286885,24.283067],[94.282751,24.266427],[94.233969,24.160335],[94.222186,24.122637],[94.218466,24.08667],[94.214125,24.069178],[94.199139,24.048094],[94.19025,23.995281],[94.144878,23.938876],[94.13506,23.919006],[94.13506,23.877303],[94.131856,23.856969],[94.11687,23.841647],[94.099713,23.842628],[94.071084,23.876115],[94.055065,23.887949],[93.997911,23.916965],[93.94055,23.928876],[93.912334,23.939005],[93.883189,23.94531],[93.803711,23.936059],[93.782833,23.945465],[93.743042,23.995281],[93.711106,24.005461],[93.660464,24.011223],[93.612404,24.009052],[93.588013,23.995229],[93.581812,23.979597],[93.571063,23.968021],[93.561348,23.965696],[93.543468,23.980889],[93.526828,23.975385],[93.495719,23.959133],[93.474842,23.957505],[93.456652,23.95996],[93.449004,23.968926],[93.439185,23.995229],[93.406526,24.025847],[93.3965,24.037526],[93.368285,24.07848],[93.348545,24.088893],[93.32219,24.080056],[93.309684,24.063984],[93.302966,24.041143],[93.301106,24.016571],[93.302966,23.995281],[93.316092,23.961097],[93.337589,23.928411],[93.355986,23.906991],[93.35919,23.890946],[93.35826,23.855263],[93.374796,23.739017],[93.406319,23.719122],[93.425956,23.690803],[93.430297,23.680339],[93.432364,23.647317],[93.400221,23.454022],[93.399808,23.426091],[93.407249,23.347258],[93.403735,23.338757],[93.384201,23.313126],[93.377897,23.296822],[93.37645,23.279485],[93.380791,23.237265],[93.372729,23.169827],[93.3749,23.129726],[93.333352,23.052289],[93.318262,23.03366],[93.298832,23.01795],[93.272787,23.00591],[93.246535,23.004488],[93.225555,23.020379],[93.212119,23.039887],[93.196512,23.053839],[93.177082,23.058439],[93.152381,23.049938],[93.140082,23.031903],[93.138221,23.005264],[93.143182,22.977513],[93.151141,22.956223],[93.171088,22.920437],[93.177392,22.900205],[93.175532,22.881705],[93.161062,22.860983],[93.125302,22.821554],[93.112383,22.799953],[93.079517,22.77272],[93.070835,22.69288],[93.073936,22.671899],[93.081894,22.65283],[93.104425,22.615933],[93.110523,22.596348],[93.109076,22.574696],[93.098224,22.535266],[93.099154,22.51196],[93.109593,22.479042],[93.117861,22.462868],[93.153518,22.427521],[93.16592,22.386593],[93.174292,22.269391],[93.169021,22.246912],[93.129747,22.231616],[93.123132,22.218387],[93.141735,22.187277],[93.119515,22.180973],[93.090576,22.197148],[93.045824,22.206863],[93.024533,22.201902],[93.02257,22.120976],[93.025464,22.112915],[92.995181,22.103251],[92.985466,22.095965],[92.967172,22.062685],[92.968413,22.036175],[92.977921,22.016487],[92.978955,21.995351],[92.968103,21.987238],[92.955597,21.989615],[92.937407,22.013024],[92.920974,22.021809],[92.906194,22.017314],[92.889244,21.966722],[92.877462,21.957007],[92.867024,21.966516],[92.862063,21.995403],[92.853898,22.024135],[92.836121,22.046511],[92.771629,22.104182],[92.708067,22.147952],[92.683779,22.154308],[92.67396,22.147073],[92.671067,22.133896],[92.67396,22.095242],[92.662075,22.094777],[92.656184,22.075294],[92.658354,22.032816],[92.650913,22.019174],[92.639854,22.013386],[92.615256,22.008787],[92.597996,21.989305],[92.575879,21.977574],[92.559962,22.061342],[92.537328,22.128625],[92.549317,22.138495],[92.5642,22.13834],[92.575568,22.143301],[92.577015,22.168674],[92.518931,22.495372],[92.517381,22.51258],[92.504565,22.543793],[92.500844,22.560536],[92.502911,22.61862],[92.495883,22.695618],[92.491543,22.71107],[92.480691,22.726159],[92.453715,22.747967],[92.442037,22.762927],[92.435009,22.793287],[92.426327,22.87106],[92.411858,22.887932],[92.378681,22.900438],[92.359871,22.926612],[92.352223,22.960331],[92.35305,23.029913],[92.327625,23.171429],[92.328555,23.211194],[92.332689,23.226258],[92.350673,23.260984],[92.357494,23.278942],[92.356874,23.289122],[92.347055,23.315426],[92.349536,23.344959],[92.344885,23.359118],[92.331656,23.368652],[92.325351,23.382166],[92.326901,23.396015],[92.31977,23.412164],[92.306748,23.423869],[92.296826,23.44658],[92.291038,23.495285],[92.252797,23.609309],[92.250007,23.642615],[92.261686,23.685119],[92.259309,23.706487],[92.238742,23.716848],[92.222102,23.707779],[92.209389,23.661606],[92.1943,23.648144],[92.180761,23.665378],[92.170632,23.703645],[92.150788,23.731653],[92.108414,23.718243],[92.092187,23.701345],[92.059631,23.659487],[92.042371,23.64556],[92.019013,23.640057],[92.00351,23.647421],[91.961652,23.691139],[91.936641,23.72354],[91.922688,23.722972],[91.916487,23.709872],[91.91442,23.688323],[91.915971,23.65016],[91.942325,23.53443],[91.940775,23.495182],[91.918141,23.459939],[91.905118,23.446632],[91.889099,23.435935],[91.833805,23.413895],[91.817682,23.400924],[91.791637,23.368342],[91.762595,23.321549],[91.743681,23.272327],[91.749159,23.232407],[91.763938,23.200626],[91.779028,23.131767],[91.795564,23.089496],[91.791327,23.080375],[91.776237,23.06526],[91.760941,23.065492],[91.75505,23.048233],[91.738307,23.024668],[91.706991,22.995368],[91.694692,22.988133],[91.646943,22.976583],[91.625756,22.981544],[91.616661,22.978056],[91.602398,22.952967],[91.586068,22.944466],[91.576766,22.968806],[91.536562,22.981854],[91.523643,22.995213],[91.519406,23.005625],[91.518165,23.035081],[91.503283,23.044408],[91.498115,23.069962],[91.475067,23.143085],[91.470416,23.153291],[91.463595,23.184116],[91.446438,23.197887],[91.446438,23.215535],[91.436206,23.215716],[91.413572,23.248634],[91.394349,23.262664],[91.372128,23.261889],[91.360966,23.247523],[91.355695,23.224139],[91.355901,23.179646],[91.374608,23.095723],[91.370887,23.062779],[91.337401,23.071074],[91.313527,23.101046],[91.300504,23.142309],[91.27725,23.303256],[91.265778,23.329352],[91.282934,23.347646],[91.283968,23.361443],[91.270945,23.364596],[91.25813,23.373639],[91.247898,23.393767],[91.234462,23.436271],[91.22733,23.468775],[91.220819,23.477896],[91.195084,23.495182],[91.185886,23.511563],[91.177514,23.544275],[91.169866,23.561974],[91.140824,23.6121],[91.136276,23.629515],[91.139687,23.65357],[91.166456,23.654087],[91.175241,23.670313],[91.168936,23.685377],[91.136587,23.69889],[91.132349,23.720646],[91.141754,23.739896],[91.176584,23.746536],[91.194981,23.755166],[91.205213,23.771573],[91.225263,23.826144],[91.228157,23.84498],[91.212758,23.88074],[91.216272,23.908387],[91.250378,23.964042],[91.274149,23.988227],[91.291616,23.994816],[91.327066,23.987865],[91.339055,23.995229],[91.349287,24.036053],[91.350837,24.074242],[91.363033,24.099848],[91.404581,24.103129],[91.480442,24.088014],[91.517545,24.085198],[91.55868,24.089668],[91.581831,24.096101],[91.596507,24.10499],[91.606015,24.118865],[91.613767,24.140104],[91.624515,24.203459],[91.629063,24.215319],[91.639502,24.211702],[91.657175,24.171368],[91.666167,24.155917],[91.68415,24.145478],[91.703684,24.142946],[91.72115,24.148992],[91.732623,24.164314],[91.732002,24.181678],[91.723011,24.220977],[91.732933,24.234284],[91.796598,24.221598],[91.809724,24.214544],[91.813755,24.183124],[91.844244,24.155323],[91.864501,24.150594],[91.87711,24.158036],[91.884345,24.175554],[91.905945,24.260639],[91.906875,24.280354],[91.896437,24.320119],[91.899847,24.33805],[91.921862,24.34451],[91.953074,24.322987],[91.972194,24.316062],[91.971368,24.329679],[91.948837,24.363527],[91.949974,24.375387],[92.033379,24.36885],[92.062732,24.37102],[92.08826,24.38164],[92.107587,24.405979],[92.111204,24.434298],[92.105933,24.49525],[92.110894,24.514293],[92.123193,24.525378],[92.153165,24.544549],[92.163604,24.5592],[92.168875,24.574315],[92.173422,24.608396],[92.182931,24.647256],[92.233781,24.777533],[92.236881,24.80859],[92.235021,24.824765],[92.221792,24.856908],[92.217658,24.874581],[92.223032,24.891376],[92.252177,24.902977],[92.290418,24.891298],[92.358321,24.853652],[92.363592,24.841017],[92.380748,24.836702],[92.442037,24.855409],[92.477693,24.86391],[92.491543,24.883728],[92.49454,24.894864],[92.491336,24.912279],[92.483791,24.928221],[92.474386,24.93667],[92.449788,24.946437],[92.458056,24.953284],[92.412478,24.984083],[92.38695,24.99509],[92.381058,25.023435],[92.356254,25.037],[92.328142,25.048007],[92.312122,25.0686],[92.303544,25.074285],[92.251557,25.080796],[92.220138,25.090382],[92.194093,25.109166],[92.17921,25.126684],[92.164741,25.133557],[92.150995,25.129733],[92.138593,25.1364],[92.124123,25.136968],[92.110377,25.144875],[92.092911,25.164718],[92.066039,25.174537],[92.033999,25.181668],[92.001753,25.18296],[91.956278,25.169783],[91.900571,25.177586],[91.793704,25.165338],[91.745335,25.169369],[91.730142,25.167457],[91.710712,25.144668],[91.688904,25.152988],[91.677432,25.152626],[91.672264,25.136503],[91.662033,25.127201],[91.638675,25.124049],[91.613147,25.125134],[91.596197,25.128907],[91.580177,25.140895],[91.566121,25.159964],[91.548758,25.161101],[91.523436,25.145185],[91.471036,25.133919],[91.431866,25.13795],[91.283968,25.178981],[91.235702,25.201925],[91.224953,25.201615],[91.203146,25.191332],[91.190847,25.189471],[91.135346,25.191228],[90.975149,25.167819],[90.94342,25.157432],[90.82198,25.142291],[90.793972,25.145391],[90.753974,25.167561],[90.737955,25.169421],[90.722038,25.156605],[90.707672,25.152988],[90.670568,25.158776],[90.637599,25.171075],[90.62344,25.171436],[90.583339,25.162031],[90.50138,25.168801],[90.399784,25.149009],[90.364644,25.149991],[90.286923,25.180066],[90.130085,25.211589],[89.908134,25.296907],[89.870204,25.295563],[89.834599,25.282437],[89.819044,25.284969],[89.807365,25.304503],[89.798529,25.340056],[89.795015,25.374163],[89.800699,25.412869],[89.82323,25.489143],[89.82509,25.564487],[89.834392,25.634767],[89.824212,25.674093],[89.801526,25.724684],[89.783129,25.814446],[89.786953,25.839147],[89.830051,25.90798],[89.834392,25.931752],[89.826434,25.937488],[89.810724,25.93878],[89.792017,25.949115],[89.811551,25.955213],[89.825607,25.965703],[89.828656,25.979397],[89.814135,25.99614],[89.795531,25.98596],[89.789434,25.987976],[89.776411,26.008233],[89.750211,26.041564],[89.749849,26.083887],[89.728765,26.114169],[89.718482,26.145537],[89.706545,26.154167],[89.677709,26.153133],[89.658175,26.159231],[89.658382,26.207859],[89.653008,26.22269],[89.634921,26.225842],[89.61332,26.219383],[89.606396,26.211011],[89.608463,26.180677],[89.614406,26.164192],[89.586759,26.169205],[89.573426,26.16073],[89.562781,26.142591],[89.569395,26.130086],[89.585777,26.122903],[89.604225,26.120732],[89.566915,26.098977],[89.567018,26.087091],[89.57694,26.082647],[89.603864,26.084662],[89.611357,26.072208],[89.602882,26.055258],[89.559163,26.022237],[89.550689,25.995055],[89.549087,25.968855],[89.541697,25.959709],[89.528416,25.957125],[89.518184,25.962086],[89.495343,25.995055],[89.480615,25.999241],[89.426407,25.995055],[89.406615,25.995055],[89.391422,26.015467],[89.379743,26.015312],[89.351476,25.996864],[89.335301,25.998569],[89.315147,26.006786],[89.296906,26.018155],[89.272979,26.043476],[89.237633,26.0581],[89.229261,26.067196],[89.22306,26.086574],[89.212621,26.098977],[89.197842,26.10771],[89.131593,26.133755],[89.11919,26.146622],[89.111697,26.164502],[89.103377,26.22517],[89.095884,26.241035],[89.075885,26.271059],[89.069426,26.287389],[89.068857,26.314261],[89.08033,26.315604],[89.094799,26.309506],[89.103532,26.313692],[89.102912,26.327335],[89.095729,26.334518],[89.055215,26.347023],[89.057282,26.36263],[89.043743,26.381078],[89.010877,26.390173],[88.986537,26.412704],[88.975323,26.417872],[88.950157,26.43694],[88.94101,26.439421],[88.924577,26.432135],[88.911968,26.421231],[88.899462,26.404488],[88.891246,26.385781],[88.891866,26.368779],[88.912433,26.348935],[88.941217,26.340099],[88.966021,26.328472],[88.975323,26.299946],[88.989689,26.289404],[89.007983,26.297156],[89.004365,26.27571],[89.0116,26.269199],[89.034338,26.265788],[89.039712,26.247185],[89.019455,26.234472],[88.975323,26.224344],[88.946849,26.232922],[88.902718,26.272919],[88.875794,26.277364],[88.855641,26.265116],[88.840654,26.232043],[88.824841,26.226566],[88.807995,26.233439],[88.798486,26.24765],[88.784017,26.279947],[88.747947,26.292505],[88.663404,26.264444],[88.645834,26.27602],[88.653276,26.2831],[88.690121,26.299843],[88.702988,26.309661],[88.712238,26.328265],[88.709706,26.340616],[88.69627,26.350279],[88.673378,26.360718],[88.667435,26.368159],[88.66852,26.385729],[88.652242,26.391517],[88.649865,26.39839],[88.656273,26.415133],[88.633018,26.420094],[88.611521,26.430843],[88.591161,26.461228],[88.579172,26.466034],[88.549768,26.466654],[88.526823,26.475388],[88.506825,26.487635],[88.475405,26.514972],[88.462383,26.528821],[88.446467,26.535539],[88.411016,26.545099],[88.397891,26.55869],[88.394997,26.578379],[88.394377,26.618015],[88.385282,26.623544],[88.372518,26.611607],[88.352829,26.578689],[88.332365,26.514662],[88.313865,26.481537],[88.315105,26.465052],[88.322546,26.451772],[88.34022,26.454149],[88.34301,26.477196],[88.353552,26.484586],[88.37691,26.475336],[88.434581,26.465156],[88.461143,26.45389],[88.475405,26.432031],[88.495456,26.378081],[88.497626,26.352708],[88.475405,26.355808],[88.448637,26.353431],[88.431687,26.362216],[88.413807,26.340202],[88.366781,26.313434],[88.351692,26.30098],[88.336602,26.281808],[88.332933,26.267235],[88.334535,26.230803],[88.326267,26.21592],[88.308697,26.206102],[88.250303,26.188015],[88.218884,26.18016],[88.196921,26.159645],[88.163796,26.140473],[88.155632,26.128484],[88.139922,26.085334],[88.141162,26.075464],[88.156407,26.061408],[88.157905,26.050452],[88.151032,26.031332],[88.125866,26.0134],[88.106539,25.979966],[88.088039,25.923225],[88.074396,25.908135],[88.082044,25.863849],[88.088969,25.848656],[88.087574,25.830983],[88.103335,25.814808],[88.114911,25.787264],[88.127726,25.774914],[88.146433,25.77574],[88.18271,25.792432],[88.227462,25.804266],[88.259915,25.789021],[88.320273,25.725253],[88.392981,25.680759],[88.41944,25.653784],[88.423781,25.592237],[88.437785,25.579835],[88.475405,25.562575],[88.485586,25.542628],[88.512767,25.523715],[88.530286,25.500202],[88.550956,25.496481],[88.593589,25.495086],[88.613175,25.486404],[88.645421,25.467336],[88.66635,25.462891],[88.67808,25.465889],[88.706192,25.491675],[88.732651,25.491003],[88.742572,25.495189],[88.741952,25.512759],[88.772338,25.501959],[88.805824,25.471676],[88.814919,25.458602],[88.816315,25.437208],[88.799313,25.401706],[88.810372,25.388426],[88.81833,25.359642],[88.841998,25.332822],[88.859258,25.324709],[88.880187,25.323468],[88.902873,25.303418],[88.926489,25.300472],[88.975323,25.302643],[88.984935,25.284969],[88.975323,25.265229],[88.937754,25.240166],[88.929073,25.229417],[88.930778,25.202649],[88.927884,25.192727],[88.909642,25.189161],[88.924163,25.167871],[88.898635,25.169318],[88.830216,25.191332],[88.81709,25.196809],[88.802517,25.188128],[88.792337,25.166579],[88.784224,25.160946],[88.724537,25.166475],[88.664593,25.186888],[88.634259,25.192262],[88.599119,25.19314],[88.590127,25.190143],[88.577725,25.177482],[88.55938,25.170764],[88.523154,25.179808],[88.475405,25.195104],[88.441299,25.18973],[88.43148,25.173038],[88.434168,25.116659],[88.425796,25.051056],[88.414117,25.021523],[88.391018,24.99509],[88.387865,24.968761],[88.37567,24.94561],[88.340892,24.90414],[88.322753,24.874684],[88.313606,24.868302],[88.296812,24.869698],[88.25485,24.879955],[88.242758,24.880601],[88.24188,24.898766],[88.232836,24.918273],[88.21878,24.935146],[88.20245,24.9453],[88.18302,24.94698],[88.16452,24.941114],[88.114911,24.916413],[88.124936,24.898145],[88.138062,24.863496],[88.140955,24.844583],[88.117391,24.819261],[88.107779,24.801097],[88.094808,24.803112],[88.088245,24.796136],[88.084008,24.770453],[88.07698,24.761177],[88.053209,24.754976],[88.048455,24.711206],[88.035432,24.693817],[88.027164,24.67573],[88.02179,24.645603],[88.05724,24.634105],[88.067265,24.613667],[88.08499,24.593875],[88.08499,24.541733],[88.098787,24.522484],[88.10995,24.500986],[88.138785,24.49525],[88.401301,24.369418],[88.475405,24.315468],[88.49835,24.310972],[88.5631,24.308207],[88.612451,24.292885],[88.634517,24.294125],[88.649503,24.315364],[88.660149,24.338257],[88.681801,24.33389],[88.714564,24.315416],[88.737508,24.287097],[88.747482,24.226972],[88.746397,24.214079],[88.731617,24.189842],[88.69379,24.175321],[88.67808,24.154289],[88.68299,24.124291],[88.674101,24.08264],[88.67901,24.071219],[88.697821,24.056259],[88.700921,24.04365],[88.725002,24.038379],[88.725468,24.028896],[88.701593,23.995281],[88.714357,23.964404],[88.717148,23.943139],[88.71415,23.925156],[88.704435,23.913709],[88.666505,23.8795],[88.653121,23.869784],[88.633949,23.866141],[88.593589,23.866916],[88.577621,23.85516],[88.574366,23.845626],[88.577518,23.818521],[88.557674,23.785681],[88.552507,23.765424],[88.561188,23.741007],[88.540104,23.649953],[88.541551,23.638765],[88.566356,23.62874],[88.561705,23.602023],[88.581549,23.588329],[88.609247,23.588794],[88.624233,23.573859],[88.647643,23.535076],[88.664489,23.518307],[88.704642,23.495182],[88.719421,23.468104],[88.731927,23.472625],[88.743709,23.489317],[88.756835,23.498799],[88.770168,23.488826],[88.767894,23.467277],[88.719266,23.348292],[88.69503,23.312609],[88.685935,23.293308],[88.686607,23.271604],[88.69658,23.252354],[88.710016,23.241218],[88.775697,23.221633],[88.794197,23.224966],[88.809545,23.236051],[88.822671,23.237963],[88.839621,23.23481],[88.926954,23.206517],[88.954239,23.207422],[88.959975,23.202693],[88.954704,23.183806],[88.945868,23.174349],[88.919099,23.153859],[88.864787,23.100271],[88.8513,23.07513],[88.848716,23.023841],[88.839414,22.995368],[88.838794,22.975808],[88.842773,22.964568],[88.872177,22.926767],[88.893468,22.879638],[88.905147,22.866435],[88.933103,22.858115],[88.944524,22.848012],[88.945144,22.815094],[88.936876,22.782331],[88.914965,22.7544],[88.908144,22.740784],[88.910573,22.722593],[88.92251,22.693706],[88.930003,22.658618],[88.942354,22.637482],[88.952017,22.611903],[88.95641,22.584979],[88.950312,22.561983],[88.927988,22.548134],[88.959045,22.536817],[88.970982,22.527928],[88.979974,22.490928],[88.998371,22.451241],[89.002505,22.427986],[88.99217,22.406954],[88.989586,22.386903],[89.001523,22.333677],[89.023537,22.294816],[89.00912,22.285618],[89.018628,22.264689],[89.062295,22.211565],[89.070718,22.194822],[89.076196,22.17503],[89.078159,22.150845],[89.060693,22.130485],[89.048595,22.122952],[89.036876,22.085598],[89.04005,22.069525],[89.054047,22.043647],[89.057384,22.031236],[89.065603,21.967108],[89.060883,21.938463],[89.036876,21.925116],[89.023123,21.931098],[89.008067,21.920559],[89.009532,21.904608],[88.993012,21.912665],[88.96046,21.934312],[88.944672,21.938788],[88.937836,21.948717],[88.928722,21.986558],[88.91391,21.986558],[88.90504,21.969428],[88.910818,21.946479],[88.924083,21.926337],[88.937836,21.91767],[88.968272,21.904731],[88.99586,21.884182],[89.01588,21.853339],[89.030935,21.770453],[89.043712,21.733344],[89.067882,21.709133],[89.085216,21.674709],[89.088227,21.633734],[89.082693,21.617336],[89.06422,21.609198],[89.053233,21.609809],[89.027598,21.624579],[89.019786,21.606106],[89.000255,21.60342],[88.975759,21.615912],[88.933848,21.643948],[88.896983,21.650133],[88.881602,21.672024],[88.872081,21.74901],[88.866059,21.766832],[88.858653,21.766832],[88.855723,21.748847],[88.841563,21.716254],[88.838227,21.701972],[88.842947,21.684149],[88.859874,21.652574],[88.858653,21.636542],[88.844249,21.622219],[88.823985,21.617255],[88.805837,21.62287],[88.797862,21.640204],[88.81837,21.65762],[88.816661,21.675035],[88.810883,21.691718],[88.800466,21.661851],[88.779063,21.65119],[88.776866,21.63345],[88.781749,21.614244],[88.796641,21.584418],[88.790538,21.568264],[88.762462,21.555854],[88.727875,21.559882],[88.70753,21.578315],[88.722179,21.609198],[88.687999,21.678127],[88.684906,21.697211],[88.703624,21.810614],[88.694509,21.83983],[88.714692,21.897854],[88.71697,21.951972],[88.722179,21.966132],[88.758311,21.999457],[88.763031,22.017279],[88.754649,22.037584],[88.717052,22.058051],[88.708507,22.072211],[88.714854,22.086982],[88.730154,22.103583],[88.763031,22.130561],[88.743907,22.12934],[88.726573,22.121161],[88.712169,22.109036],[88.694835,22.081529],[88.692882,22.065863],[88.699473,22.053209],[88.718516,22.048041],[88.730723,22.037177],[88.723318,22.013088],[88.701671,21.97602],[88.689952,21.94599],[88.678722,21.936672],[88.667003,21.945014],[88.642589,21.940904],[88.63087,21.945461],[88.625987,21.955512],[88.631684,21.979804],[88.646332,22.00023],[88.653494,22.018012],[88.639496,22.109524],[88.656993,22.151068],[88.674002,22.162055],[88.683116,22.184963],[88.679942,22.204413],[88.661143,22.198961],[88.649669,22.169094],[88.634939,22.144965],[88.63087,22.1258],[88.622081,22.116034],[88.618337,22.102973],[88.619965,22.078315],[88.625987,22.048041],[88.620372,22.029975],[88.60255,22.006415],[88.598643,21.990302],[88.600271,21.947211],[88.598399,21.929348],[88.567068,21.850816],[88.564627,21.832343],[88.56544,21.771186],[88.581309,21.769436],[88.604177,21.778754],[88.624034,21.778022],[88.632823,21.750067],[88.623383,21.710273],[88.612641,21.697496],[88.591807,21.70539],[88.59962,21.637274],[88.595063,21.612128],[88.578136,21.62344],[88.578136,21.571682],[88.572276,21.557929],[88.55893,21.555569],[88.54477,21.561998],[88.536469,21.5751],[88.529633,21.553371],[88.543956,21.534084],[88.51295,21.524644],[88.493907,21.534817],[88.487966,21.556545],[88.495616,21.581855],[88.514008,21.600816],[88.518809,21.639146],[88.529633,21.65762],[88.509532,21.712307],[88.504893,21.741523],[88.512706,21.763414],[88.532888,21.795315],[88.531016,21.824123],[88.51588,21.850816],[88.495616,21.876695],[88.514659,21.916205],[88.514985,21.937201],[88.495616,21.951809],[88.499848,21.933661],[88.481212,21.909898],[88.474457,21.890326],[88.477061,21.871812],[88.492035,21.837144],[88.495616,21.818671],[88.4935,21.805162],[88.474457,21.800971],[88.468272,21.777248],[88.457693,21.758857],[88.452159,21.722805],[88.454763,21.70539],[88.468598,21.677151],[88.472179,21.663275],[88.468272,21.643948],[88.456309,21.62401],[88.426117,21.611029],[88.409679,21.59927],[88.393077,21.600246],[88.383556,21.631415],[88.382823,21.671332],[88.392589,21.698554],[88.364513,21.686957],[88.346202,21.688625],[88.331228,21.719062],[88.324718,21.701361],[88.327403,21.691107],[88.345714,21.6706],[88.349457,21.660956],[88.34547,21.636542],[88.33546,21.61579],[88.321788,21.605658],[88.309744,21.610175],[88.304454,21.63345],[88.302013,21.745185],[88.298188,21.764106],[88.289806,21.780219],[88.273123,21.797919],[88.261567,21.798651],[88.264171,21.775295],[88.295421,21.676581],[88.297048,21.653876],[88.28419,21.621243],[88.287608,21.600287],[88.300629,21.589342],[88.305837,21.571682],[88.278982,21.555162],[88.254405,21.554674],[88.249278,21.558295],[88.245942,21.579901],[88.237478,21.601711],[88.224376,21.613023],[88.208263,21.602973],[88.189464,21.641791],[88.181895,21.665229],[88.180919,21.684963],[88.203461,21.724351],[88.21046,21.74726],[88.201427,21.774319],[88.209727,21.78856],[88.203787,21.805406],[88.154063,21.888088],[88.159434,21.906155],[88.146739,21.959215],[88.149913,21.976386],[88.164317,22.003119],[88.206798,22.053371],[88.222423,22.077948],[88.212738,22.100043],[88.20338,22.15176],[88.198009,22.167792],[88.165294,22.185004],[88.118419,22.200181],[88.081309,22.217353],[88.077322,22.240424],[88.059744,22.229478],[88.043468,22.224758],[88.027029,22.227851],[88.009044,22.240424],[87.985118,22.265937],[87.972667,22.283189],[87.964203,22.319281],[87.950694,22.356187],[87.946137,22.394924],[87.94044,22.413031],[87.927989,22.424221],[87.906586,22.42475],[87.906586,22.418606],[87.922862,22.397773],[87.935802,22.35517],[87.94752,22.277655],[87.95281,22.262437],[87.965343,22.244818],[87.991954,22.215888],[88.008474,22.204901],[88.025401,22.200914],[88.057384,22.198879],[88.09547,22.19123],[88.132579,22.179145],[88.160981,22.156562],[88.173513,22.116889],[88.164317,22.089789],[88.140636,22.060126],[88.111176,22.034857],[88.084727,22.020697],[88.048595,22.020738],[88.043142,22.017279],[88.050792,21.985012],[88.0324,21.95718],[87.983653,21.854193],[87.97047,21.836493],[87.948009,21.825385],[87.909028,21.798814],[87.899181,21.794827],[87.892914,21.774319],[87.867198,21.7508],[87.833995,21.729315],[87.755707,21.691718],[87.703787,21.655504],[87.683848,21.650133],[87.6421,21.652086],[87.621348,21.650621],[87.468761,21.611396],[87.341807,21.562405],[87.293468,21.553656],[87.256114,21.561998],[87.235199,21.554511],[87.200938,21.551988],[87.113048,21.507961],[87.063731,21.475002],[86.917654,21.327379],[86.866954,21.256049],[86.83725,21.174709],[86.844005,21.082221],[86.952159,20.849107],[86.965668,20.805976],[86.953868,20.780585],[86.93629,20.787502],[86.916515,20.788072],[86.878754,20.780585],[86.889334,20.764472],[86.910655,20.756415],[86.957205,20.753241],[86.979991,20.755561],[86.986583,20.751858],[87.000011,20.728217],[86.998709,20.711127],[86.988617,20.70425],[86.961192,20.712836],[86.948253,20.709052],[86.940196,20.697984],[86.961192,20.695054],[86.974294,20.684394],[86.986502,20.684394],[86.994884,20.670722],[87.019379,20.680365],[87.003591,20.65705],[86.976248,20.637885],[86.923188,20.621731],[86.774181,20.511949],[86.751475,20.489162],[86.733897,20.462226],[86.72462,20.431952],[86.72047,20.368476],[86.741954,20.379543],[86.756358,20.393744],[86.769786,20.400702],[86.788748,20.390123],[86.789806,20.4147],[86.796153,20.437323],[86.809825,20.415107],[86.7942,20.37816],[86.768321,20.343451],[86.751475,20.32807],[86.719737,20.31509],[86.701671,20.303778],[86.693696,20.293931],[86.701671,20.284654],[86.717459,20.286933],[86.628184,20.235256],[86.583832,20.218207],[86.53419,20.206122],[86.511485,20.197455],[86.495128,20.184068],[86.490408,20.174058],[86.478852,20.12934],[86.468516,20.10928],[86.467133,20.094672],[86.41505,20.036322],[86.391449,20.020209],[86.404145,20.002631],[86.414073,19.998847],[86.397227,19.982856],[86.348399,20.008857],[86.275401,20.067369],[86.231293,20.064887],[86.209158,20.066636],[86.173025,20.1022],[86.163097,20.134833],[86.152517,20.143134],[86.14503,20.122016],[86.154307,20.089993],[86.167735,20.072943],[86.187755,20.063666],[86.213715,20.042426],[86.230235,20.035305],[86.268565,20.026435],[86.284679,20.027493],[86.293223,20.02143],[86.295909,20.006578],[86.314952,19.986884],[86.341563,19.979885],[86.372406,19.964993],[86.268565,19.910346],[86.111583,19.855699],[86.089041,19.844224],[86.07838,19.843573],[86.056651,19.856879],[86.032074,19.841498],[86.01352,19.839057],[85.888845,19.802965],[85.846365,19.795844],[85.808604,19.773383],[85.788829,19.765692],[85.744395,19.765692],[85.714854,19.754218],[85.684581,19.747748],[85.635997,19.72663],[85.614268,19.727932],[85.549164,19.690619],[85.480479,19.666327],[85.456798,19.663316],[85.44988,19.666693],[85.446788,19.690619],[85.430431,19.691718],[85.43686,19.704657],[85.450857,19.716295],[85.47755,19.723863],[85.521983,19.739081],[85.525564,19.734036],[85.514985,19.711127],[85.558848,19.738105],[85.576508,19.745836],[85.563243,19.756903],[85.570323,19.773179],[85.567149,19.791653],[85.570323,19.875637],[85.55714,19.881781],[85.514985,19.889309],[85.476817,19.901028],[85.463552,19.902899],[85.440115,19.896226],[85.41627,19.879787],[85.374522,19.837795],[85.319591,19.793647],[85.290294,19.789944],[85.268077,19.780015],[85.246837,19.762641],[85.220958,19.736029],[85.20338,19.707261],[85.206554,19.683783],[85.189952,19.670966],[85.175141,19.636908],[85.150157,19.613471],[85.140147,19.596584],[85.139334,19.579779],[85.151378,19.567776],[85.151378,19.560289],[85.122895,19.549018],[85.102875,19.529608],[85.104503,19.514879],[85.115489,19.507473],[85.128754,19.509508],[85.128673,19.487982],[85.135753,19.481594],[85.151378,19.498847],[85.162446,19.503485],[85.185557,19.505683],[85.202891,19.517157],[85.1963,19.538479],[85.199229,19.554104],[85.214529,19.547268],[85.233246,19.554104],[85.203787,19.570502],[85.232595,19.601549],[85.247569,19.60871],[85.237315,19.620551],[85.233246,19.632554],[85.247813,19.653144],[85.260753,19.656073],[85.309093,19.642239],[85.350597,19.677639],[85.383067,19.676093],[85.391449,19.690619],[85.403168,19.671291],[85.405284,19.645941],[85.384613,19.635972],[85.37794,19.614936],[85.352306,19.599433],[85.336762,19.596096],[85.326427,19.618801],[85.311046,19.6105],[85.309093,19.595038],[85.302501,19.586656],[85.302908,19.57392],[85.330577,19.576402],[85.576508,19.690619],[85.540294,19.669582],[85.46339,19.631049],[85.380219,19.593817],[85.336681,19.575181],[85.285411,19.536282],[85.240571,19.518052],[85.180431,19.475002],[85.069509,19.372138],[84.99586,19.32331],[84.872081,19.219875],[84.791026,19.120592],[84.775157,19.115302],[84.73878,19.14765],[84.731212,19.128811],[84.720958,19.114244],[84.719981,19.10163],[84.740489,19.073676],[84.760997,19.10163],[84.775238,19.100491],[84.778331,19.09101],[84.75115,19.0539],[84.741059,19.028144],[84.699473,18.977484],[84.679535,18.945705],[84.66505,18.930121],[84.63087,18.915717],[84.547862,18.796088],[84.54184,18.775784],[84.448253,18.68065],[84.437185,18.662787],[84.432628,18.645697],[84.423676,18.636461],[84.370453,18.601304],[84.349457,18.56981],[84.332856,18.553697],[84.306326,18.543687],[84.281749,18.52558],[84.250011,18.524237],[84.237641,18.510932],[84.24936,18.501654],[84.271007,18.50019],[84.287934,18.505764],[84.240082,18.460761],[84.230479,18.446234],[84.188324,18.418036],[84.17449,18.399848],[84.143891,18.374823],[84.132823,18.343411],[84.124034,18.333808],[84.113129,18.298285],[84.077403,18.271552],[83.775157,18.139594],[83.613943,18.045152],[83.582286,18.01911],[83.556651,17.973456],[83.526134,17.942532],[83.486583,17.916897],[83.472911,17.902493],[83.465587,17.902493],[83.451915,17.922919],[83.448985,17.906887],[83.452973,17.868476],[83.431163,17.854234],[83.425304,17.838609],[83.417735,17.80622],[83.402354,17.784491],[83.341319,17.717434],[83.304373,17.692206],[83.292735,17.691148],[83.282237,17.699286],[83.276378,17.71308],[83.26824,17.717475],[83.246918,17.716254],[83.242035,17.706529],[83.249278,17.69538],[83.271983,17.688137],[83.298595,17.672797],[83.299083,17.664293],[83.26824,17.648586],[83.246918,17.634223],[83.212901,17.634914],[83.233897,17.607733],[83.238943,17.592963],[83.209239,17.583686],[83.171397,17.559801],[83.088227,17.530707],[83.053233,17.506496],[83.019867,17.490912],[82.99643,17.473456],[82.975841,17.453681],[82.945486,17.443101],[82.896821,17.409329],[82.888682,17.410142],[82.883311,17.422065],[82.837657,17.392768],[82.796397,17.383043],[82.758149,17.359198],[82.718516,17.348619],[82.474864,17.205959],[82.451915,17.18244],[82.435069,17.153795],[82.422862,17.13996],[82.387706,17.126939],[82.370372,17.110093],[82.342052,17.073188],[82.311697,17.046617],[82.299327,17.030341],[82.291677,16.99844],[82.252696,16.929185],[82.250743,16.907864],[82.255138,16.885321],[82.267914,16.867499],[82.29835,16.858466],[82.31422,16.846625],[82.334646,16.854071],[82.352061,16.845404],[82.367442,16.860297],[82.365571,16.811591],[82.352061,16.761298],[82.345958,16.706122],[82.338145,16.678412],[82.31422,16.62816],[82.312836,16.60814],[82.299327,16.610093],[82.293793,16.625637],[82.280935,16.620836],[82.285492,16.606513],[82.307384,16.579779],[82.259044,16.565497],[82.203461,16.512681],[82.188243,16.504055],[82.173025,16.500922],[82.122895,16.477362],[82.090668,16.454779],[82.068614,16.444281],[82.037364,16.447659],[82.007823,16.419582],[81.992686,16.408433],[81.956228,16.407172],[81.94809,16.391547],[81.940766,16.388373],[81.899913,16.38581],[81.861664,16.375393],[81.783214,16.338568],[81.76295,16.322577],[81.717621,16.312201],[81.696056,16.314927],[81.656261,16.337348],[81.636404,16.332709],[81.620942,16.339504],[81.584972,16.342108],[81.568126,16.346381],[81.573904,16.358344],[81.569184,16.36758],[81.556977,16.373033],[81.540212,16.373684],[81.549083,16.352362],[81.535981,16.350043],[81.49586,16.360663],[81.475352,16.358629],[81.416677,16.340155],[81.428233,16.365668],[81.411388,16.382514],[81.398936,16.382636],[81.375743,16.367499],[81.35963,16.374335],[81.317393,16.367499],[81.259613,16.332709],[81.248546,16.320136],[81.259613,16.288642],[81.254161,16.271308],[81.230317,16.243598],[81.218516,16.199449],[81.190278,16.138861],[81.180024,16.086737],[81.161957,16.057074],[81.156016,16.03852],[81.155447,15.9855],[81.14975,15.969631],[81.135102,15.966498],[81.088227,15.92121],[81.043305,15.89411],[81.026866,15.880845],[80.998871,15.846747],[80.998383,15.834703],[81.012543,15.811957],[81.019054,15.784166],[81.004731,15.77851],[80.988292,15.791205],[80.979015,15.803412],[80.949473,15.827867],[80.921641,15.838609],[80.910004,15.852688],[80.904307,15.871283],[80.90268,15.890815],[80.910167,15.965888],[80.906016,15.999823],[80.896495,16.010565],[80.889008,16.00373],[80.895763,15.936021],[80.890147,15.89525],[80.855723,15.822699],[80.830252,15.747626],[80.820079,15.726874],[80.80714,15.716376],[80.80836,15.803941],[80.802745,15.842434],[80.776134,15.884263],[80.760102,15.892971],[80.736339,15.89761],[80.69044,15.900702],[80.670177,15.907701],[80.663097,15.900702],[80.662852,15.88935],[80.618419,15.887681],[80.600108,15.882229],[80.571137,15.86872],[80.56072,15.880845],[80.553884,15.880845],[80.52589,15.85692],[80.491873,15.83926],[80.469086,15.834662],[80.43629,15.808295],[80.393321,15.797024],[80.35963,15.775824],[80.279633,15.70067],[80.263194,15.674547],[80.219493,15.56745],[80.217459,15.548163],[80.201345,15.518297],[80.197602,15.503079],[80.211192,15.496649],[80.20045,15.482164],[80.183848,15.452297],[80.172862,15.4383],[80.14031,15.406399],[80.126801,15.388129],[80.121267,15.370022],[80.090587,15.304877],[80.09254,15.296576],[80.082367,15.204088],[80.052989,15.092597],[80.054535,15.014146],[80.061534,14.974677],[80.073416,14.942043],[80.073009,14.920559],[80.105154,14.763861],[80.108165,14.714342],[80.110688,14.704779],[80.128184,14.688463],[80.151866,14.672797],[80.159841,14.662665],[80.166352,14.62816],[80.178477,14.60578],[80.175955,14.592963],[80.160899,14.57982],[80.141856,14.571234],[80.149181,14.565009],[80.190196,14.571234],[80.196951,14.565009],[80.190196,14.547593],[80.188243,14.525702],[80.175955,14.468736],[80.178722,14.38939],[80.174978,14.34455],[80.159434,14.324774],[80.137055,14.269924],[80.128184,14.256537],[80.097911,14.254299],[80.087169,14.250312],[80.070079,14.229193],[80.055024,14.221584],[80.046641,14.20661],[80.050629,14.196112],[80.073497,14.20185],[80.090994,14.216742],[80.106619,14.234036],[80.121104,14.242011],[80.13559,14.229193],[80.123383,14.193508],[80.125824,14.148505],[80.149669,14.027737],[80.16391,13.987982],[80.237153,13.839667],[80.249278,13.800279],[80.245453,13.755601],[80.227387,13.720526],[80.220958,13.696967],[80.227712,13.677069],[80.238048,13.660224],[80.259044,13.591742],[80.309581,13.479316],[80.313731,13.440904],[80.306895,13.440904],[80.245453,13.591742],[80.197276,13.643622],[80.183604,13.679185],[80.152517,13.71894],[80.141856,13.728949],[80.141775,13.649115],[80.13559,13.619086],[80.121267,13.627265],[80.117686,13.638861],[80.121267,13.663764],[80.117849,13.674506],[80.100841,13.686265],[80.091319,13.659125],[80.075531,13.648383],[80.052989,13.619086],[80.056488,13.59516],[80.069509,13.574408],[80.101329,13.537095],[80.112071,13.511542],[80.119395,13.500678],[80.131847,13.496161],[80.175955,13.489325],[80.219737,13.487779],[80.227712,13.485582],[80.243419,13.472154],[80.26588,13.468248],[80.26238,13.451239],[80.27475,13.440009],[80.293142,13.429145],[80.306895,13.413031],[80.313731,13.427232],[80.326996,13.430365],[80.333995,13.413031],[80.344005,13.375434],[80.34783,13.349066],[80.345551,13.321234],[80.336274,13.270941],[80.334158,13.242906],[80.319835,13.249172],[80.313731,13.215033],[80.334158,13.221177],[80.332774,13.198147],[80.313813,13.164293],[80.306895,13.146064],[80.313731,13.10578],[80.289724,13.076728],[80.285818,13.067572],[80.282725,13.029364],[80.269054,12.957261],[80.263194,12.835354],[80.25172,12.762519],[80.233653,12.711005],[80.228689,12.674994],[80.222179,12.65998],[80.203868,12.632148],[80.196462,12.613715],[80.185069,12.567125],[80.179698,12.53262],[80.156016,12.474514],[80.121267,12.416816],[80.117035,12.400946],[80.095958,12.36225],[80.087169,12.35102],[80.057465,12.331244],[80.025727,12.276516],[80.005138,12.256049],[79.952159,12.229926],[79.943858,12.217841],[79.953136,12.213568],[79.973806,12.222398],[80.005138,12.241767],[79.947602,12.153632],[79.927501,12.129869],[79.896983,12.068752],[79.870128,12.037421],[79.861827,12.02204],[79.861827,11.977973],[79.850352,11.959133],[79.844981,11.933254],[79.820323,11.878648],[79.803233,11.796088],[79.792735,11.788072],[79.785899,11.769192],[79.7671,11.673651],[79.763438,11.634263],[79.754161,11.596991],[79.751964,11.576972],[79.757335,11.536078],[79.780772,11.465074],[79.785981,11.426174],[79.792979,11.426174],[79.799164,11.442206],[79.809337,11.451361],[79.816661,11.443061],[79.821951,11.391059],[79.810313,11.378892],[79.7588,11.378363],[79.740408,11.366441],[79.684337,11.312201],[79.683116,11.296454],[79.6963,11.303412],[79.742035,11.335598],[79.751964,11.340522],[79.759288,11.358344],[79.776378,11.362982],[79.796886,11.359036],[79.833018,11.341986],[79.834972,11.263861],[79.855317,11.159857],[79.852224,11.006985],[79.840668,10.950141],[79.849864,10.755194],[79.850271,10.592108],[79.85963,10.551459],[79.86378,10.37873],[79.8567,10.29328],[79.851329,10.282213],[79.814627,10.272406],[79.795095,10.269232],[79.778575,10.275377],[79.78004,10.296617],[79.757091,10.309068],[79.633149,10.328599],[79.621267,10.324164],[79.614106,10.309556],[79.630382,10.310492],[79.661794,10.307074],[79.67628,10.30272],[79.703624,10.289049],[79.730805,10.289049],[79.758962,10.282213],[79.773692,10.273668],[79.772472,10.261705],[79.759776,10.258246],[79.580089,10.295885],[79.556651,10.298651],[79.551768,10.3133],[79.573904,10.316962],[79.604015,10.329088],[79.607107,10.336005],[79.586925,10.343695],[79.567719,10.335883],[79.528575,10.338324],[79.532237,10.323188],[79.511485,10.316596],[79.459727,10.308295],[79.437266,10.309556],[79.398123,10.324652],[79.385509,10.320136],[79.36378,10.301907],[79.304942,10.268134],[79.286143,10.252834],[79.272227,10.234442],[79.269216,10.197821],[79.248302,10.189195],[79.240001,10.179755],[79.236339,10.166571],[79.244314,10.084947],[79.254161,10.054267],[79.279063,10.035834],[79.240733,10.010566],[79.200369,9.970282],[79.141856,9.891181],[79.121348,9.850246],[79.100841,9.826077],[79.094086,9.802314],[79.07781,9.782172],[79.038829,9.747219],[78.980805,9.667182],[78.980235,9.649115],[78.97283,9.631293],[78.956798,9.617499],[78.938324,9.583686],[78.931488,9.561672],[78.925304,9.513617],[78.913259,9.47427],[78.915294,9.45303],[78.933442,9.416449],[78.959727,9.384955],[79.039887,9.314683],[79.074718,9.299872],[79.115571,9.291246],[79.25172,9.28852],[79.273774,9.296698],[79.29713,9.312649],[79.320079,9.32331],[79.341075,9.315863],[79.345714,9.306545],[79.336681,9.290473],[79.335704,9.267646],[79.353526,9.240912],[79.367931,9.227607],[79.438243,9.176337],[79.453624,9.159003],[79.440278,9.151353],[79.424002,9.159084],[79.361013,9.213446],[79.292735,9.250312],[79.232432,9.25788],[79.21697,9.267401],[79.20102,9.266506],[79.165375,9.274237],[79.129405,9.256334],[79.098643,9.257229],[79.087169,9.253811],[79.060802,9.264594],[79.025727,9.273749],[78.988943,9.278266],[78.956798,9.274848],[78.928966,9.253811],[78.918468,9.251614],[78.895518,9.253811],[78.861013,9.248969],[78.843761,9.243964],[78.815196,9.22842],[78.77711,9.219387],[78.740733,9.192816],[78.727794,9.187445],[78.67628,9.184149],[78.661306,9.177191],[78.648936,9.151435],[78.618826,9.14053],[78.48585,9.124823],[78.44988,9.116604],[78.41212,9.09984],[78.377452,9.07746],[78.239757,8.965562],[78.217621,8.938951],[78.182791,8.877102],[78.177908,8.86107],[78.17449,8.79442],[78.170421,8.771877],[78.175792,8.763902],[78.20045,8.76968],[78.210216,8.788275],[78.21518,8.765448],[78.2046,8.753323],[78.1692,8.733629],[78.154959,8.698879],[78.140473,8.680609],[78.136729,8.669867],[78.142589,8.657904],[78.114594,8.657904],[78.135509,8.6258],[78.142345,8.593085],[78.128266,8.488023],[78.114594,8.466132],[78.079845,8.431952],[78.062755,8.373196],[78.055919,8.363715],[78.038829,8.360907],[77.999766,8.344916],[77.806163,8.228664],[77.793468,8.215318],[77.768321,8.181545],[77.752452,8.173814],[77.643809,8.155707],[77.595225,8.138983],[77.561046,8.114569],[77.565278,8.082506],[77.510916,8.075995],[77.449718,8.08747],[77.315603,8.127753],[77.294688,8.14704],[77.26295,8.168402],[77.238943,8.175116],[77.225271,8.184394],[77.128754,8.271796],[76.99586,8.368109],[76.962576,8.40469],[76.880138,8.520697],[76.826508,8.56981],[76.813731,8.601264],[76.74171,8.684516],[76.731293,8.707953],[76.695649,8.739814],[76.66033,8.79975],[76.644542,8.818996],[76.558604,8.890692],[76.543956,8.912502],[76.548106,8.924221],[76.559093,8.925238],[76.573253,8.904446],[76.591156,8.908149],[76.609874,8.917955],[76.60727,8.925767],[76.581554,8.919908],[76.572276,8.931627],[76.573985,8.942572],[76.593272,8.968207],[76.603282,8.973212],[76.657563,8.966376],[76.65211,8.977281],[76.634288,8.986884],[76.668468,8.999823],[76.657888,9.010688],[76.632091,9.002346],[76.620616,8.987128],[76.606456,8.989407],[76.582774,9.000556],[76.576834,8.994127],[76.565929,8.963284],[76.558604,8.952094],[76.551117,8.966376],[76.561534,8.97899],[76.549653,8.984442],[76.538829,8.972602],[76.528087,8.946967],[76.521495,8.96133],[76.513845,9.002143],[76.500173,9.022284],[76.489268,9.055569],[76.46046,9.114936],[76.476573,9.116604],[76.476248,9.131252],[76.482758,9.17182],[76.462413,9.151353],[76.44337,9.212144],[76.428233,9.245347],[76.414561,9.246975],[76.416026,9.236314],[76.446788,9.159613],[76.442556,9.145168],[76.362966,9.325181],[76.311778,9.492987],[76.291026,9.633205],[76.29713,9.658433],[76.277354,9.809272],[76.253184,9.883734],[76.246755,9.893744],[76.240245,9.939399],[76.236339,9.952704],[76.251475,9.963121],[76.269542,9.950995],[76.284679,9.928534],[76.291026,9.908596],[76.285655,9.904364],[76.262218,9.911566],[76.256847,9.908596],[76.26059,9.884711],[76.277354,9.870754],[76.289073,9.877143],[76.284434,9.848212],[76.299978,9.847805],[76.304698,9.856269],[76.29713,9.870754],[76.308604,9.879625],[76.313813,9.861314],[76.338878,9.699408],[76.346202,9.699408],[76.347341,9.726874],[76.337576,9.789252],[76.346202,9.816107],[76.323985,9.846177],[76.320079,9.86164],[76.332693,9.870754],[76.337413,9.856187],[76.353038,9.82982],[76.361095,9.80386],[76.359223,9.768297],[76.368012,9.715562],[76.377127,9.695502],[76.394054,9.678941],[76.392426,9.662828],[76.372895,9.624335],[76.353282,9.535346],[76.357432,9.520697],[76.37672,9.514472],[76.425792,9.505276],[76.435069,9.507636],[76.458995,9.497301],[76.477061,9.50373],[76.503266,9.53498],[76.484386,9.543769],[76.466563,9.556383],[76.448497,9.563422],[76.428233,9.555406],[76.406993,9.569078],[76.419688,9.594184],[76.419607,9.614488],[76.41505,9.636176],[76.414561,9.682685],[76.410004,9.700263],[76.3921,9.716946],[76.394054,9.747219],[76.382091,9.774726],[76.384044,9.802639],[76.396495,9.822659],[76.394054,9.842841],[76.38559,9.861518],[76.36378,9.899237],[76.359223,9.915432],[76.320811,9.953315],[76.311534,9.966946],[76.294281,9.951321],[76.278168,9.977932],[76.269298,10.016262],[76.273936,10.035834],[76.255056,10.047675],[76.245128,10.1022],[76.227712,10.109565],[76.215343,10.138251],[76.20753,10.117133],[76.213552,10.098822],[76.223481,10.082099],[76.229015,10.065904],[76.230968,10.025824],[76.235037,10.005072],[76.228201,9.999945],[76.21461,10.024482],[76.182384,10.105658],[76.181163,10.121161],[76.184581,10.144924],[76.177745,10.155341],[76.177501,10.17064],[76.224132,10.196926],[76.236339,10.210273],[76.24171,10.223944],[76.240245,10.238959],[76.22283,10.234442],[76.206309,10.262885],[76.194835,10.268622],[76.207856,10.234565],[76.209483,10.21601],[76.201671,10.199693],[76.184093,10.189358],[76.170584,10.193752],[76.153168,10.22016],[76.138194,10.261054],[76.120616,10.343573],[76.10613,10.38467],[76.070079,10.432807],[76.065115,10.449856],[76.063324,10.47016],[76.052419,10.513983],[76.044607,10.529283],[76.018728,10.553412],[76.008067,10.567084],[75.999685,10.605536],[75.939138,10.72606],[75.93214,10.750963],[75.922048,10.76557],[75.924083,10.780707],[75.94158,10.79621],[75.911143,10.809231],[75.894542,10.849758],[75.880138,10.932685],[75.832774,11.097846],[75.742931,11.310126],[75.730805,11.331732],[75.729259,11.343655],[75.742442,11.35871],[75.735525,11.371527],[75.722179,11.367499],[75.711192,11.381781],[75.69516,11.419989],[75.677094,11.4501],[75.664806,11.462633],[75.650157,11.46776],[75.630138,11.468736],[75.616547,11.473619],[75.608897,11.484931],[75.600841,11.523383],[75.581879,11.549791],[75.585297,11.563381],[75.530772,11.693671],[75.506114,11.72724],[75.379731,11.864976],[75.355805,11.857652],[75.349376,11.871975],[75.324555,11.899115],[75.307628,11.932196],[75.326508,11.935858],[75.400238,11.920233],[75.400238,11.926459],[75.386567,11.935126],[75.382823,11.945502],[75.393403,11.97484],[75.380219,11.968695],[75.361339,11.951239],[75.349132,11.947577],[75.331716,11.94953],[75.316091,11.955634],[75.302257,11.966051],[75.290375,11.981106],[75.278819,12.003241],[75.281098,12.010647],[75.314708,12.008368],[75.329763,12.012641],[75.324962,12.02265],[75.30421,12.043158],[75.264334,12.013332],[75.260509,11.997789],[75.276703,11.967434],[75.245616,12.002916],[75.222179,12.02204],[75.207042,12.01203],[75.193696,12.022284],[75.18629,12.041571],[75.180512,12.077297],[75.143809,12.161322],[75.13087,12.207831],[75.139659,12.241767],[75.12672,12.245836],[75.105479,12.221259],[75.104747,12.24608],[75.098643,12.269029],[75.082856,12.305894],[75.018403,12.41474],[75.006602,12.449449],[74.992035,12.461737],[74.985362,12.49136],[74.976736,12.507025],[74.955252,12.537258],[74.879649,12.725491],[74.870128,12.742865],[74.855723,12.759426],[74.852306,12.797309],[74.827647,12.824652],[74.824962,12.838202],[74.85141,12.825507],[74.866954,12.830024],[74.881114,12.848049],[74.917491,12.85814],[74.932872,12.866441],[74.940929,12.878607],[74.894786,12.871161],[74.850597,12.857164],[74.817556,12.861762],[74.770274,13.052436],[74.783377,13.084662],[74.769216,13.099555],[74.76295,13.118801],[74.759776,13.155219],[74.74879,13.170844],[74.737804,13.221381],[74.733409,13.262763],[74.715098,13.331041],[74.689464,13.381578],[74.694591,13.393134],[74.687511,13.410346],[74.680919,13.468248],[74.690766,13.439114],[74.693696,13.415269],[74.701915,13.420356],[74.701427,13.461371],[74.677094,13.52676],[74.677989,13.54914],[74.671397,13.603949],[74.680919,13.646959],[74.696788,13.640448],[74.723806,13.645575],[74.712901,13.656195],[74.701427,13.673733],[74.688324,13.68594],[74.701427,13.69477],[74.687755,13.711819],[74.676036,13.701077],[74.660492,13.660061],[74.646983,13.692084],[74.623057,13.774156],[74.614594,13.835517],[74.595958,13.871487],[74.583995,13.903876],[74.550792,13.945502],[74.536388,13.969875],[74.504731,14.01024],[74.495372,14.030585],[74.496267,14.06151],[74.491384,14.080634],[74.474864,14.105699],[74.473155,14.161689],[74.467459,14.181383],[74.438731,14.22012],[74.429047,14.240424],[74.43336,14.263373],[74.447032,14.253974],[74.471039,14.248684],[74.494965,14.247463],[74.500011,14.257961],[74.436371,14.27969],[74.427745,14.28384],[74.415375,14.301093],[74.412608,14.344794],[74.396983,14.372748],[74.394216,14.410793],[74.381602,14.43122],[74.374278,14.467271],[74.353852,14.505072],[74.351899,14.530219],[74.367035,14.512356],[74.377452,14.484605],[74.388845,14.462714],[74.407237,14.461982],[74.401134,14.479722],[74.427745,14.476264],[74.385427,14.524115],[74.372406,14.530219],[74.379242,14.544582],[74.342947,14.563666],[74.342947,14.536851],[74.339041,14.523993],[74.32488,14.517239],[74.309825,14.519436],[74.300548,14.527411],[74.303559,14.537665],[74.295909,14.565009],[74.295177,14.587307],[74.307384,14.601874],[74.339041,14.605943],[74.339041,14.612779],[74.323904,14.618598],[74.28712,14.605943],[74.27589,14.610175],[74.268077,14.619941],[74.266856,14.631293],[74.276215,14.640082],[74.269216,14.658922],[74.263194,14.701606],[74.25294,14.71894],[74.23406,14.734076],[74.22047,14.738105],[74.208751,14.731838],[74.194347,14.715806],[74.180675,14.742174],[74.173839,14.749945],[74.153331,14.749945],[74.145844,14.763617],[74.111339,14.780341],[74.096446,14.793362],[74.091319,14.811428],[74.109141,14.802639],[74.114024,14.808417],[74.118663,14.831855],[74.140473,14.838772],[74.151541,14.83511],[74.159516,14.82567],[74.178966,14.856269],[74.190684,14.863105],[74.208018,14.866645],[74.226899,14.862738],[74.235199,14.876532],[74.19752,14.890855],[74.166189,14.876532],[74.154063,14.862128],[74.125011,14.845852],[74.111827,14.846177],[74.103038,14.85692],[74.091156,14.8876],[74.077159,14.898383],[74.035981,14.921291],[74.030284,14.935207],[74.035981,14.979641],[74.031261,14.995307],[73.995779,15.010688],[73.972992,15.056871],[73.964366,15.064643],[73.913097,15.078925],[73.922537,15.107856],[73.937022,15.130439],[73.958263,15.143134],[73.962169,15.152045],[73.954112,15.16828],[73.947276,15.160834],[73.891287,15.343207],[73.882579,15.355292],[73.869477,15.359565],[73.848399,15.360093],[73.827403,15.36518],[73.810395,15.37759],[73.782888,15.407904],[73.839366,15.404039],[73.860118,15.407864],[73.884939,15.398017],[73.899587,15.407904],[73.93336,15.395413],[73.945323,15.385688],[73.954112,15.366278],[73.967784,15.373765],[73.959972,15.380683],[73.937022,15.411322],[73.927582,15.417385],[73.885916,15.435207],[73.865082,15.434312],[73.841563,15.448879],[73.806163,15.452216],[73.795177,15.460761],[73.800466,15.475002],[73.817556,15.496649],[73.828136,15.50141],[73.872244,15.510932],[73.860525,15.525865],[73.865977,15.537584],[73.796397,15.500393],[73.786388,15.492174],[73.766287,15.49726],[73.751231,15.513129],[73.756114,15.537584],[73.741222,15.559963],[73.735118,15.586005],[73.737071,15.598538],[73.760427,15.632025],[73.787364,15.641791],[73.838145,15.654283],[73.838145,15.661119],[73.801036,15.661851],[73.783865,15.659125],[73.76824,15.646918],[73.733246,15.625067],[73.718272,15.627143],[73.697927,15.662828],[73.686778,15.713121],[73.700857,15.723212],[73.656016,15.730292],[73.646251,15.736884],[73.643565,15.749091],[73.646251,15.792141],[73.638845,15.817206],[73.604666,15.880845],[73.587576,15.902899],[73.528982,15.949164],[73.510102,15.967597],[73.490977,15.993476],[73.487315,16.014228],[73.515961,16.017401],[73.515961,16.024848],[73.499278,16.024319],[73.483897,16.028225],[73.472504,16.036363],[73.46811,16.048489],[73.450369,16.058905],[73.447032,16.068915],[73.460704,16.08633],[73.460704,16.14468],[73.46339,16.159573],[73.487966,16.189358],[73.465017,16.182278],[73.45281,16.166571],[73.440196,16.162014],[73.440196,16.202338],[73.435232,16.217841],[73.419688,16.216702],[73.410411,16.230455],[73.406098,16.2508],[73.378673,16.332709],[73.378673,16.35692],[73.358246,16.367499],[73.364431,16.389309],[73.384939,16.401597],[73.352061,16.418118],[73.341319,16.432074],[73.333995,16.468166],[73.319184,16.509752],[73.305837,16.52265],[73.302989,16.533026],[73.303722,16.555569],[73.314952,16.557603],[73.323497,16.544989],[73.344005,16.523586],[73.355723,16.519436],[73.350841,16.538153],[73.365001,16.554389],[73.336436,16.565619],[73.322765,16.576158],[73.316091,16.600043],[73.326996,16.607123],[73.358246,16.620673],[73.358409,16.603949],[73.371267,16.610175],[73.366466,16.628079],[73.354259,16.63467],[73.338878,16.631659],[73.323497,16.620673],[73.312185,16.644721],[73.312511,16.658393],[73.321462,16.670844],[73.321625,16.69245],[73.300304,16.713202],[73.289561,16.74022],[73.295258,16.768052],[73.304454,16.793524],[73.286632,16.820868],[73.274669,16.848822],[73.269379,16.875637],[73.279552,16.887641],[73.269379,16.929185],[73.274913,16.958645],[73.289399,16.983832],[73.26238,16.996975],[73.254568,17.006741],[73.262706,17.018541],[73.251231,17.032172],[73.258962,17.044094],[73.269379,17.031643],[73.277354,17.054674],[73.275727,17.078599],[73.267426,17.101386],[73.255138,17.120998],[73.261973,17.134955],[73.255138,17.165188],[73.236176,17.199205],[73.236013,17.220608],[73.218028,17.253241],[73.211192,17.275092],[73.193126,17.294013],[73.203461,17.298733],[73.231212,17.279283],[73.249034,17.284857],[73.234711,17.302314],[73.207367,17.353746],[73.195974,17.369371],[73.170584,17.389716],[73.165294,17.413031],[73.185395,17.441881],[73.17335,17.457424],[73.180675,17.477688],[73.165538,17.503404],[73.131684,17.539374],[73.125987,17.556545],[73.12794,17.564683],[73.163422,17.569485],[73.200694,17.586493],[73.185883,17.592515],[73.154063,17.595608],[73.139171,17.600775],[73.128184,17.611558],[73.121348,17.62641],[73.120291,17.642035],[73.12615,17.655422],[73.110525,17.675727],[73.105479,17.68891],[73.108165,17.699774],[73.12322,17.723334],[73.123302,17.735785],[73.109874,17.758287],[73.106619,17.785549],[73.101329,17.796332],[73.079438,17.824612],[73.073741,17.857123],[73.065196,17.878363],[73.018565,17.951728],[73.0171,17.972113],[73.035411,17.991848],[73.018891,17.992499],[73.008637,18.00023],[73.005219,18.012356],[73.0088,18.025946],[73.019542,18.035875],[73.042247,18.048977],[73.043468,18.066962],[73.022716,18.057685],[73.0088,18.039008],[72.987315,18.066555],[72.980968,18.080552],[72.988129,18.096015],[72.976085,18.118638],[72.967296,18.19599],[72.954845,18.217515],[72.926931,18.223944],[72.939952,18.251288],[72.933279,18.266588],[72.939952,18.286037],[72.953136,18.281317],[72.964529,18.25495],[72.976736,18.24258],[72.995128,18.245063],[73.0324,18.23786],[73.050955,18.227484],[73.063487,18.210354],[73.047618,18.201158],[73.047618,18.188788],[73.057465,18.185614],[73.071544,18.204088],[73.073985,18.224189],[73.065278,18.257554],[73.071544,18.273017],[73.056977,18.280951],[73.042979,18.282375],[73.012462,18.279202],[72.994884,18.283596],[72.977387,18.295071],[72.968028,18.310614],[72.974783,18.327582],[72.950857,18.332953],[72.933604,18.354926],[72.917328,18.356391],[72.909841,18.368069],[72.912608,18.385647],[72.910167,18.399237],[72.897227,18.417304],[72.889659,18.441311],[72.891449,18.480902],[72.895763,18.502997],[72.907237,18.523586],[72.924653,18.535631],[72.946788,18.532416],[72.961111,18.517727],[72.990245,18.469957],[73.0088,18.450507],[73.014985,18.469957],[72.98878,18.489936],[72.977875,18.524115],[72.960297,18.554674],[72.950206,18.56037],[72.921153,18.554877],[72.910167,18.558987],[72.905772,18.577135],[72.882172,18.635484],[72.864513,18.648912],[72.855317,18.681138],[72.851736,18.719672],[72.852387,18.769924],[72.856944,18.7862],[72.865571,18.799384],[72.879161,18.807359],[72.902029,18.799506],[72.912608,18.799994],[72.926931,18.826646],[72.938975,18.816962],[72.974783,18.779486],[72.966319,18.76142],[72.969574,18.746975],[72.980642,18.736762],[72.995128,18.731024],[72.988048,18.753852],[72.99171,18.779364],[73.002452,18.801459],[73.016287,18.813625],[72.987966,18.824937],[72.974783,18.848334],[72.9817,18.871487],[72.96697,18.872138],[72.946137,18.858303],[72.91627,18.87051],[72.896821,18.894477],[72.912608,18.923489],[72.928071,18.911363],[72.934581,18.920803],[72.936778,18.947414],[72.949229,18.951483],[72.977224,18.948432],[72.988292,18.964423],[72.953624,18.964423],[72.992035,18.982489],[73.042166,18.995754],[73.056814,19.015326],[73.039806,19.017524],[73.011892,19.009426],[72.988292,18.998603],[72.983572,19.010443],[72.987804,19.036933],[72.980968,19.046373],[72.991873,19.067206],[72.973806,19.078559],[72.967296,19.09101],[72.974783,19.163072],[72.967296,19.163072],[72.950043,19.127916],[72.935557,19.115058],[72.93393,19.080308],[72.926931,19.06684],[72.94337,19.055121],[72.934255,19.034084],[72.891449,18.991767],[72.885265,19.025865],[72.869314,19.01142],[72.851085,18.987128],[72.836274,18.959133],[72.827647,18.918362],[72.8213,18.903306],[72.812511,18.897447],[72.802745,18.909817],[72.802013,18.920478],[72.807384,18.942816],[72.802745,18.957587],[72.775401,18.93651],[72.770356,18.948188],[72.776052,18.959703],[72.795909,18.984931],[72.804942,19.011054],[72.802745,19.040188],[72.817068,19.032701],[72.824229,19.053534],[72.8213,19.063178],[72.809581,19.06684],[72.821951,19.097113],[72.821056,19.119208],[72.811778,19.137356],[72.812185,19.153713],[72.822439,19.163764],[72.818044,19.17536],[72.805186,19.17182],[72.799571,19.156887],[72.784923,19.150377],[72.783377,19.168647],[72.802501,19.211615],[72.819835,19.240627],[72.815115,19.253648],[72.789399,19.217353],[72.775401,19.204657],[72.772227,19.265123],[72.775645,19.299018],[72.785411,19.31391],[72.839366,19.319078],[72.867035,19.316799],[72.885509,19.296047],[72.900564,19.290758],[72.930349,19.286566],[72.959727,19.294827],[72.972667,19.293687],[72.988292,19.27912],[73.010509,19.224311],[73.026622,19.205512],[73.049653,19.217719],[73.03004,19.227729],[73.029145,19.259345],[73.012462,19.272447],[72.987804,19.300686],[72.970958,19.307034],[72.916759,19.303371],[72.898936,19.307034],[72.883556,19.316392],[72.855317,19.339504],[72.836925,19.348049],[72.818533,19.330268],[72.802094,19.331936],[72.787608,19.345201],[72.763438,19.380194],[72.759776,19.388983],[72.74822,19.444241],[72.746837,19.467963],[72.754405,19.481757],[72.769216,19.490465],[72.879161,19.532375],[72.8567,19.541327],[72.835948,19.536689],[72.815929,19.52851],[72.795909,19.526801],[72.781261,19.536566],[72.770681,19.566148],[72.741954,19.580797],[72.734548,19.580797],[72.740733,19.560736],[72.734548,19.546617],[72.749278,19.534247],[72.755626,19.519355],[72.741547,19.516018],[72.722504,19.536282],[72.710785,19.587592],[72.718028,19.606676],[72.709646,19.64997],[72.686697,19.724799],[72.694102,19.720201],[72.707774,19.697455],[72.72641,19.705797],[72.714041,19.745836],[72.731293,19.754584],[72.734548,19.762641],[72.728282,19.793647],[72.690115,19.748969],[72.677908,19.746568],[72.675792,19.764146],[72.679861,19.800482],[72.672862,19.812812],[72.650076,19.841986],[72.649181,19.851996],[72.65919,19.866441],[72.664236,19.881578],[72.666189,19.916571],[72.662771,19.941799],[72.665212,19.952948],[72.684337,19.964016],[72.70338,19.997626],[72.707774,20.012763],[72.707774,20.071112],[72.710297,20.082912],[72.728282,20.129462],[72.737641,20.184272],[72.752289,20.203762],[72.755626,20.215155],[72.741954,20.225043],[72.743012,20.247748],[72.74822,20.280341],[72.777517,20.330064],[72.781586,20.352281],[72.798188,20.35932],[72.817068,20.375922],[72.820811,20.386135],[72.82309,20.416815],[72.829438,20.437934],[72.840017,20.458726],[72.879161,20.512437],[72.886485,20.531562],[72.890391,20.55268],[72.890636,20.587063],[72.885265,20.619208],[72.888438,20.628485],[72.902598,20.641913],[72.905772,20.653306],[72.909434,20.698676],[72.90797,20.718329],[72.898936,20.732164],[72.940278,20.759426],[72.944998,20.770006],[72.919444,20.787421],[72.924978,20.810614],[72.919444,20.821519],[72.900238,20.79914],[72.885753,20.807115],[72.880138,20.829901],[72.893809,20.870063],[72.875336,20.862494],[72.836925,20.835842],[72.845877,20.851793],[72.854259,20.887152],[72.864919,20.897284],[72.836681,20.929918],[72.856456,20.947984],[72.886485,20.962104],[72.888438,20.982611],[72.85377,20.974921],[72.832693,20.972357],[72.8213,20.991604],[72.80836,21.003974],[72.787608,21.006903],[72.771983,21.023871],[72.766856,21.03856],[72.783946,21.040432],[72.82309,21.03384],[72.844981,21.038316],[72.849864,21.048],[72.815929,21.121487],[72.809581,21.130032],[72.799571,21.128811],[72.755626,21.109565],[72.741954,21.123236],[72.735606,21.110745],[72.730154,21.087836],[72.700369,21.074774],[72.705821,21.10635],[72.720551,21.129706],[72.728689,21.148098],[72.714041,21.16413],[72.706554,21.157701],[72.686697,21.158149],[72.672699,21.145738],[72.671235,21.099799],[72.658702,21.097602],[72.637869,21.085395],[72.629649,21.087958],[72.615001,21.105862],[72.615489,21.119818],[72.630382,21.135972],[72.693533,21.178453],[72.721039,21.198798],[72.723643,21.209133],[72.687673,21.220445],[72.673188,21.239081],[72.646983,21.253607],[72.645763,21.273383],[72.618419,21.252916],[72.60613,21.266588],[72.602061,21.277655],[72.597911,21.307563],[72.586762,21.341213],[72.603201,21.352729],[72.63852,21.357164],[72.638682,21.371243],[72.623383,21.370266],[72.594086,21.362779],[72.578868,21.367011],[72.567638,21.37641],[72.573741,21.390082],[72.635102,21.407457],[72.676443,21.431627],[72.728282,21.465806],[72.747081,21.452867],[72.752615,21.463568],[72.748546,21.479641],[72.738292,21.482856],[72.683279,21.465806],[72.66505,21.457221],[72.612478,21.421861],[72.583669,21.417426],[72.589854,21.432766],[72.61964,21.487372],[72.635102,21.499335],[72.651052,21.507025],[72.690115,21.540676],[72.703949,21.548407],[72.726817,21.553168],[72.75115,21.565131],[72.773204,21.580512],[72.789073,21.595526],[72.810395,21.635077],[72.82309,21.643948],[72.833995,21.644477],[72.871593,21.636542],[72.889659,21.64053],[72.935557,21.658352],[72.965343,21.678778],[73.022472,21.698554],[73.084972,21.729682],[73.108165,21.733344],[73.126964,21.746772],[73.132009,21.757799],[73.118826,21.764716],[73.083995,21.746405],[73.046641,21.733344],[73.022472,21.71601],[72.991466,21.708441],[72.950206,21.689154],[72.926931,21.684963],[72.882823,21.69302],[72.858165,21.694973],[72.840343,21.688381],[72.819184,21.675035],[72.798106,21.673529],[72.755626,21.684963],[72.733246,21.687486],[72.676443,21.678127],[72.634939,21.684638],[72.616059,21.685452],[72.570486,21.670478],[72.550304,21.666693],[72.534679,21.672919],[72.528494,21.695136],[72.532074,21.713853],[72.550141,21.751939],[72.556326,21.774319],[72.562755,21.839423],[72.566905,21.849351],[72.58546,21.858873],[72.598806,21.881008],[72.618419,21.925116],[72.634044,21.937486],[72.65211,21.941067],[72.690115,21.938788],[72.702322,21.947577],[72.714041,21.982978],[72.734548,21.986558],[72.734548,21.994045],[72.7199,21.996324],[72.700938,21.988918],[72.693533,21.972317],[72.623057,21.96662],[72.602712,21.94359],[72.581798,21.928168],[72.558604,21.915269],[72.542735,21.910834],[72.533377,21.920315],[72.507091,21.962307],[72.50172,21.97602],[72.504568,21.994208],[72.517752,22.032131],[72.522227,22.054267],[72.519542,22.088446],[72.53004,22.107489],[72.535899,22.14053],[72.542166,22.156724],[72.557384,22.176662],[72.57545,22.194525],[72.590505,22.205024],[72.614106,22.211737],[72.634451,22.210395],[72.652354,22.202338],[72.681895,22.181586],[72.707774,22.185777],[72.729259,22.177436],[72.74822,22.164049],[72.790212,22.217231],[72.812266,22.234117],[72.847423,22.240424],[72.865082,22.233466],[72.881114,22.220404],[72.897227,22.213039],[72.916026,22.22309],[72.92213,22.236518],[72.922699,22.254584],[72.917491,22.27143],[72.905772,22.281399],[72.899669,22.269192],[72.886078,22.262397],[72.869477,22.262397],[72.838634,22.276557],[72.818207,22.273424],[72.756602,22.24372],[72.726573,22.248928],[72.659434,22.273912],[72.625011,22.271389],[72.606619,22.28384],[72.573741,22.288235],[72.553071,22.282457],[72.521169,22.253119],[72.50172,22.240424],[72.479015,22.233385],[72.457042,22.236721],[72.454845,22.245307],[72.46697,22.255845],[72.463878,22.263983],[72.448741,22.266832],[72.413748,22.246324],[72.391856,22.253485],[72.381033,22.289944],[72.380382,22.312405],[72.388194,22.322333],[72.404959,22.332953],[72.408051,22.353461],[72.397227,22.366767],[72.371348,22.355902],[72.34962,22.324368],[72.340505,22.303209],[72.328298,22.260728],[72.309093,22.257229],[72.288341,22.261298],[72.275157,22.260321],[72.263194,22.276353],[72.264659,22.295233],[72.240408,22.301907],[72.208507,22.300442],[72.200938,22.291449],[72.206309,22.273912],[72.161794,22.280951],[72.148774,22.277899],[72.166026,22.260321],[72.190684,22.251288],[72.209239,22.259426],[72.240408,22.288235],[72.246104,22.27558],[72.234141,22.243557],[72.239106,22.238918],[72.268321,22.226752],[72.306488,22.22956],[72.317231,22.184882],[72.307628,22.079006],[72.298025,22.061672],[72.283458,22.043606],[72.275157,22.027533],[72.25766,22.012152],[72.237315,22.007025],[72.220958,22.010972],[72.214366,21.994045],[72.19516,22.003648],[72.186371,21.986558],[72.163422,21.973212],[72.151703,21.993883],[72.134288,22.004584],[72.11378,22.010565],[72.097016,22.007025],[72.119314,21.993638],[72.128103,21.983547],[72.124848,21.972317],[72.114919,21.969387],[72.08253,21.973375],[72.104503,21.959215],[72.096202,21.94302],[72.073253,21.954495],[72.055186,21.953518],[72.038422,21.947577],[72.028656,21.938788],[72.087576,21.919664],[72.104503,21.91767],[72.1421,21.924994],[72.152354,21.897854],[72.16977,21.890448],[72.160004,21.865912],[72.161876,21.839179],[72.13087,21.846259],[72.111339,21.869859],[72.077647,21.894436],[72.057953,21.898749],[72.049327,21.880439],[72.061534,21.873114],[72.086436,21.865627],[72.104503,21.835761],[72.086762,21.830268],[72.062836,21.834377],[72.004161,21.857733],[71.997325,21.854926],[71.99464,21.839504],[71.996104,21.799506],[72.005382,21.792955],[72.021821,21.800971],[72.021821,21.774319],[72.054942,21.78559],[72.073904,21.788723],[72.103201,21.775214],[72.117442,21.776597],[72.166026,21.793931],[72.171072,21.790961],[72.177013,21.766669],[72.195811,21.757799],[72.202403,21.748114],[72.214366,21.712836],[72.223806,21.700588],[72.240408,21.691718],[72.271739,21.690904],[72.278331,21.671942],[72.295665,21.653876],[72.298839,21.626288],[72.295665,21.616034],[72.275157,21.595526],[72.242198,21.48078],[72.2199,21.444729],[72.16684,21.392076],[72.151622,21.360175],[72.116059,21.32274],[72.104503,21.315009],[72.111502,21.296088],[72.097016,21.287665],[72.10255,21.2744],[72.090831,21.252916],[72.104503,21.222154],[72.104747,21.205064],[72.090831,21.191474],[72.066661,21.181342],[72.055024,21.168362],[71.990733,21.136379],[71.972423,21.13227],[71.92628,21.130032],[71.806163,21.062079],[71.788585,21.047512],[71.76295,21.032294],[71.743663,21.027574],[71.717621,21.03205],[71.68336,21.011461],[71.639985,20.996812],[71.583507,20.958238],[71.549571,20.951239],[71.562348,20.972968],[71.551117,20.973578],[71.536794,20.964301],[71.493419,20.929145],[71.484386,20.917141],[71.480723,20.900377],[71.46225,20.885321],[71.378103,20.859442],[71.318614,20.849311],[71.140636,20.765692],[71.116954,20.766913],[71.110118,20.759467],[71.09547,20.763739],[71.062348,20.738959],[71.024181,20.744534],[71.00766,20.741604],[71.000824,20.722154],[70.982432,20.71015],[70.84018,20.70189],[70.819672,20.702948],[70.801606,20.709052],[70.774587,20.727362],[70.751638,20.719631],[70.730805,20.723212],[70.698578,20.746405],[70.541515,20.807847],[70.484141,20.84394],[70.463064,20.848863],[70.451427,20.855902],[70.417003,20.890448],[70.398774,20.90351],[70.336681,20.927069],[70.299978,20.958564],[70.26352,20.980414],[70.152192,21.078518],[70.057628,21.149237],[69.971202,21.254136],[69.958263,21.273342],[69.911632,21.315009],[69.844981,21.389594],[69.814708,21.433661],[69.808604,21.465806],[69.788748,21.469306],[69.756358,21.490424],[69.629731,21.616034],[69.568207,21.650133],[69.552745,21.665188],[69.519786,21.704779],[69.49936,21.720201],[69.478526,21.752631],[69.4463,21.766303],[69.427419,21.781236],[69.397716,21.815253],[69.391775,21.83218],[69.395193,21.861314],[69.39088,21.876695],[69.367849,21.856106],[69.355479,21.853176],[69.336192,21.862454],[69.243907,21.94595],[69.21225,21.967475],[69.198416,21.979722],[69.150645,22.041205],[69.119314,22.062079],[69.103038,22.076361],[69.092052,22.099595],[69.048188,22.157904],[69.012543,22.185614],[68.994151,22.203925],[68.980479,22.235541],[68.953298,22.276028],[68.944591,22.295071],[68.944021,22.318264],[68.960623,22.349514],[68.967621,22.387193],[68.974376,22.404731],[68.992931,22.431586],[69.007498,22.443183],[69.047537,22.464016],[69.073578,22.481879],[69.085216,22.472886],[69.082286,22.45954],[69.074473,22.449449],[69.056,22.44184],[69.048188,22.431586],[69.062266,22.407701],[69.071788,22.399482],[69.097423,22.398871],[69.122732,22.411078],[69.146983,22.404853],[69.154633,22.407701],[69.178559,22.427639],[69.188243,22.426418],[69.202159,22.414862],[69.20574,22.398668],[69.18214,22.366441],[69.185313,22.349677],[69.169688,22.327948],[69.173839,22.308295],[69.19044,22.292304],[69.212087,22.281399],[69.212087,22.273912],[69.286469,22.284613],[69.335704,22.306138],[69.346446,22.324897],[69.359874,22.329169],[69.435395,22.33039],[69.468923,22.337836],[69.485362,22.347561],[69.502696,22.37226],[69.519867,22.377631],[69.525645,22.392076],[69.513682,22.431586],[69.515961,22.448147],[69.530772,22.446112],[69.547862,22.452094],[69.559825,22.411526],[69.561697,22.391588],[69.554698,22.377631],[69.569021,22.370551],[69.601085,22.363837],[69.616059,22.355902],[69.619884,22.371039],[69.629731,22.383775],[69.640391,22.375963],[69.657725,22.396877],[69.674653,22.411078],[69.699392,22.404283],[69.708995,22.418891],[69.725352,22.464545],[69.733409,22.480048],[69.742198,22.472968],[69.788748,22.423163],[69.806977,22.420966],[69.822276,22.452094],[69.833263,22.463813],[69.86378,22.465766],[69.884776,22.473578],[69.905284,22.486396],[69.962087,22.535346],[69.973888,22.539984],[70.002696,22.543158],[70.020844,22.555121],[70.059093,22.558417],[70.144705,22.547797],[70.178477,22.561957],[70.189708,22.577786],[70.207286,22.614976],[70.234874,22.648871],[70.267263,22.705959],[70.319102,22.778266],[70.323253,22.787665],[70.32252,22.822659],[70.342947,22.843166],[70.375255,22.902655],[70.404633,22.919501],[70.43686,22.954901],[70.45338,22.96662],[70.486339,22.96369],[70.504731,22.97956],[70.527192,23.023586],[70.528494,23.047065],[70.523692,23.07038],[70.514903,23.089545],[70.484223,23.122138],[70.467133,23.129706],[70.459646,23.114],[70.450938,23.105658],[70.410655,23.086005],[70.398774,23.069037],[70.401052,23.045396],[70.410981,23.023179],[70.401866,22.999254],[70.403819,22.981879],[70.398774,22.945502],[70.384532,22.93887],[70.363536,22.938707],[70.34669,22.931301],[70.330414,22.943305],[70.319102,22.945502],[70.303477,22.938137],[70.291759,22.95303],[70.269298,22.958564],[70.249685,22.987454],[70.233084,23.000149],[70.231944,22.974921],[70.222016,22.959174],[70.204112,22.952216],[70.178477,22.95303],[70.163097,22.948961],[70.147472,22.966051],[70.12908,22.969306],[70.125011,22.975979],[70.109548,22.959174],[70.132335,22.941067],[70.135427,22.929999],[70.120128,22.925035],[70.061778,22.918199],[69.996918,22.893785],[69.940684,22.886135],[69.884288,22.867825],[69.852875,22.863593],[69.833181,22.858466],[69.806814,22.845282],[69.780121,22.82746],[69.760102,22.808336],[69.728852,22.754828],[69.715831,22.746894],[69.694347,22.749701],[69.653819,22.760484],[69.585704,22.761176],[69.575694,22.76435],[69.556977,22.77851],[69.544444,22.781684],[69.510753,22.780504],[69.489431,22.784735],[69.472179,22.794664],[69.424653,22.804267],[69.405935,22.813666],[69.372569,22.818996],[69.338145,22.833075],[69.23878,22.841946],[69.201915,22.85224],[69.13559,22.888373],[69.039887,22.950507],[68.866222,23.019965],[68.691254,23.13052],[68.650645,23.162055],[68.649669,23.180854],[68.622569,23.191555],[68.609141,23.206773],[68.599946,23.225043],[68.609386,23.226711],[68.620128,23.245429],[68.623057,23.267646],[68.605317,23.259589],[68.57781,23.255276],[68.552257,23.259711],[68.541026,23.278225],[68.561046,23.316107],[68.599132,23.322252],[68.603038,23.332831],[68.592052,23.340074],[68.571056,23.346381],[68.561046,23.363918],[68.541026,23.357001],[68.520681,23.369208],[68.515147,23.377021],[68.515147,23.399319],[68.536388,23.421332],[68.522146,23.42475],[68.513194,23.418524],[68.501475,23.423285],[68.490489,23.409329],[68.475352,23.404853],[68.462576,23.409125],[68.458832,23.419827],[68.465505,23.445787],[68.44044,23.434272],[68.423676,23.445787],[68.432953,23.465888],[68.447439,23.487454],[68.465587,23.505276],[68.48585,23.514106],[68.481293,23.525133],[68.447439,23.516343],[68.446951,23.502997],[68.431163,23.493598],[68.411632,23.494696],[68.406098,23.508734],[68.410818,23.548814],[68.404959,23.597602],[68.408865,23.621324],[68.427501,23.631415],[68.471528,23.618638],[68.491466,23.618842],[68.492686,23.6376],[68.468761,23.640815],[68.465505,23.65526],[68.504731,23.674221],[68.523936,23.67593],[68.538829,23.684027],[68.554698,23.706488],[68.583507,23.735297],[68.601736,23.748684],[68.637869,23.761542],[68.654552,23.799058],[68.670746,23.815741],[68.680186,23.817776],[68.715587,23.815741],[68.725597,23.818915],[68.745128,23.833075],[68.768809,23.841132],[68.821625,23.878404],[68.805675,23.884426],[68.78004,23.874091],[68.766938,23.878404],[68.740245,23.853461],[68.717784,23.84101],[68.691905,23.836656],[68.654063,23.836249],[68.633474,23.833075],[68.623057,23.824408],[68.609386,23.795233],[68.598888,23.781887],[68.587738,23.775702],[68.554698,23.768541],[68.538341,23.761298],[68.51002,23.744086],[68.47283,23.737494],[68.449718,23.723334],[68.427745,23.714301],[68.410818,23.700507],[68.34197,23.623969],[68.353038,23.610663],[68.34197,23.596625],[68.327322,23.5869],[68.294119,23.590399],[68.230805,23.58808],[68.181407,23.594062],[68.1574,23.600816],[68.143403,23.612698],[68.150076,23.631415],[68.174327,23.631415],[68.184255,23.651923],[68.209321,23.662746],[68.220063,23.659247],[68.232677,23.645006],[68.245128,23.659125],[68.27589,23.665839],[68.280447,23.685981],[68.258962,23.674709],[68.240977,23.674018],[68.224864,23.681871],[68.208751,23.696234],[68.19752,23.714545],[68.195811,23.733466],[68.197765,23.774807],[68.178233,23.754299],[68.163748,23.757717],[68.166026,23.773179],[68.175629,23.798245],[68.183517,23.8433],[68.207288,23.877019],[68.239948,23.893116],[68.256794,23.891928],[68.251937,23.904821],[68.254934,23.929109],[68.274003,23.937687],[68.286198,23.916371],[68.300409,23.910505],[68.314052,23.915906],[68.335033,23.940995],[68.330433,23.966574],[68.342629,23.968564],[68.352396,23.956549],[68.353636,23.939289],[68.385469,23.960425],[68.431564,23.967143],[68.724466,23.965179],[68.725086,24.10406],[68.725913,24.289216],[68.747307,24.331177],[68.79919,24.329085],[68.813815,24.30844],[68.819654,24.250304],[68.838774,24.236455],[68.848903,24.244025],[68.880116,24.297355],[68.890296,24.319473],[68.913189,24.317251],[68.929415,24.302368],[68.94869,24.270277],[68.962643,24.257229],[68.980781,24.255394],[69.007808,24.264567],[69.048477,24.285237],[69.067701,24.288441],[69.091886,24.281904],[69.148213,24.25666],[69.166713,24.253172],[69.206246,24.258572],[69.280815,24.283739],[69.563071,24.276762],[69.59232,24.264618],[69.670558,24.188706],[69.714587,24.168578],[69.769054,24.162557],[69.972039,24.165219],[70.015964,24.174055],[70.052137,24.202064],[70.062989,24.220306],[70.087174,24.28255],[70.097871,24.298828],[70.109705,24.3049],[70.144586,24.307897],[70.202205,24.325571],[70.242565,24.330609],[70.2791,24.355078],[70.29853,24.363424],[70.353204,24.366266],[70.370774,24.372364],[70.416353,24.401948],[70.520946,24.424919],[70.562907,24.424092],[70.575206,24.400036],[70.569211,24.389882],[70.546474,24.373139],[70.545647,24.362183],[70.555362,24.327018],[70.56022,24.287253],[70.567661,24.272809],[70.584714,24.2579],[70.621508,24.241157],[70.755453,24.231442],[70.776021,24.236687],[70.813589,24.254464],[70.851468,24.264877],[70.857566,24.271672],[70.844544,24.288286],[70.840926,24.30583],[70.856532,24.323814],[70.917717,24.361718],[70.936321,24.367196],[70.955338,24.365904],[70.977145,24.357248],[70.996679,24.356602],[71.007118,24.363966],[71.025101,24.38629],[71.073057,24.402103],[71.082772,24.411508],[71.07502,24.436417],[71.040087,24.446778],[71.00009,24.452901],[70.977145,24.464942],[70.973218,24.48724],[70.977145,24.515068],[70.981899,24.52853],[70.977145,24.54039],[70.957767,24.556022],[70.954821,24.584521],[70.962779,24.615785],[70.977145,24.639686],[71.043343,24.669064],[71.063858,24.682577],[71.036935,24.72074],[71.00319,24.808203],[70.943039,24.894063],[70.915237,24.946618],[70.893326,25.001886],[70.859891,25.139449],[70.848574,25.163323],[70.831418,25.183322],[70.768372,25.233086],[70.734886,25.267348],[70.723104,25.287295],[70.718556,25.310808],[70.710495,25.335871],[70.670394,25.375558],[70.654478,25.39659],[70.646623,25.431369],[70.657475,25.63363],[70.653857,25.674455],[70.632308,25.701378],[70.592259,25.708819],[70.554432,25.698794],[70.516657,25.68386],[70.477227,25.676315],[70.360129,25.673473],[70.303698,25.684583],[70.264579,25.697296],[70.249231,25.707683],[70.234452,25.730989],[70.213988,25.786334],[70.195591,25.806953],[70.15425,25.839406],[70.114976,25.881729],[70.083246,25.929943],[70.064643,25.980327],[70.064281,25.99552],[70.072911,26.047455],[70.073893,26.083112],[70.078285,26.099648],[70.132029,26.18047],[70.146912,26.217419],[70.151614,26.254058],[70.144018,26.294313],[70.142467,26.313692],[70.157144,26.354],[70.160503,26.371311],[70.156989,26.410947],[70.162931,26.493319],[70.158074,26.530113],[70.1296,26.562514],[70.093685,26.580394],[70.056064,26.589076],[69.815562,26.580291],[69.772258,26.59507],[69.700221,26.653],[69.659396,26.677701],[69.50416,26.735165],[69.472844,26.766584],[69.465093,26.80777],[69.507571,27.050081],[69.534443,27.125581],[69.575577,27.188419],[69.666114,27.270016],[69.730606,27.310324],[69.848015,27.410369],[69.908063,27.497289],[69.993536,27.571083],[70.016894,27.60059],[70.090688,27.79355],[70.101953,27.81174],[70.199002,27.90096],[70.267731,27.945272],[70.323852,28.000437],[70.341939,28.01147],[70.359509,28.016327],[70.398266,28.02165],[70.43692,28.035344],[70.456247,28.039788],[70.477227,28.037256],[70.506786,28.028962],[70.534898,28.015965],[70.559806,27.998447],[70.592879,27.964496],[70.621198,27.944135],[70.633187,27.93163],[70.64161,27.911269],[70.637631,27.874217],[70.640732,27.854787],[70.671738,27.791095],[70.710391,27.74115],[70.761758,27.709783],[70.831573,27.701463],[70.91379,27.717818],[71.150675,27.822411],[71.226329,27.845356],[71.31144,27.861711],[71.397791,27.868378],[71.477115,27.862435],[71.560727,27.868533],[71.860864,27.950207],[71.874403,27.95969],[71.879984,27.974909],[71.89156,28.097097],[71.896934,28.115546],[71.908303,28.135571],[71.988195,28.228097],[72.110978,28.317627],[72.149942,28.353774],[72.17764,28.397053],[72.197794,28.44488],[72.256499,28.645591],[72.28027,28.687165],[72.354581,28.767186],[72.382176,28.784006],[72.52563,28.84992],[72.77254,28.96335],[72.901524,29.022622],[72.918164,29.032854],[72.930359,29.047685],[72.962915,29.116829],[72.98865,29.15463],[73.050869,29.228217],[73.1289,29.360302],[73.232873,29.536596],[73.284756,29.683745],[73.370332,29.927322],[73.385215,29.942308],[73.557815,30.012536],[73.739716,30.048451],[73.778266,30.067313],[73.944354,30.188288],[73.948902,30.217278],[73.934639,30.261048],[73.911901,30.303784],[73.891644,30.329778],[73.842345,30.35298],[73.85175,30.372669],[73.867666,30.387449],[73.887614,30.396544],[73.906114,30.394838],[73.899913,30.422124],[73.916656,30.417163],[73.939083,30.426051],[73.98983,30.487804],[74.004402,30.50894],[74.04409,30.518655],[74.057526,30.531367],[74.061453,30.555604],[74.057112,30.591571],[74.067448,30.610536],[74.09587,30.637149],[74.132663,30.655494],[74.155711,30.659577],[74.163669,30.664899],[74.170077,30.687172],[74.18465,30.696835],[74.191161,30.717041],[74.215139,30.737453],[74.235706,30.764118],[74.266712,30.788354],[74.256687,30.815278],[74.279941,30.824683],[74.300198,30.83817],[74.31136,30.855947],[74.304022,30.874034],[74.319215,30.893413],[74.329757,30.899614],[74.353632,30.901112],[74.379677,30.894498],[74.401277,30.893103],[74.424325,30.932325],[74.441585,30.946174],[74.458535,30.953409],[74.499463,30.956509],[74.519306,30.962452],[74.548762,30.992166],[74.564058,31.004362],[74.564265,31.025032],[74.579458,31.042706],[74.600955,31.056607],[74.658833,31.083789],[74.631961,31.107508],[74.616975,31.11526],[74.596924,31.115776],[74.553103,31.108955],[74.536773,31.115156],[74.514862,31.141821],[74.506387,31.175411],[74.509074,31.195668],[74.525094,31.235407],[74.525301,31.280211],[74.532225,31.303207],[74.571603,31.389248],[74.583695,31.40656],[74.61191,31.440201],[74.617181,31.458908],[74.614598,31.477821],[74.584522,31.517509],[74.555583,31.612232],[74.499463,31.699875],[74.489437,31.711192],[74.503287,31.730571],[74.518273,31.741836],[74.523027,31.758476],[74.53698,31.775736],[74.540804,31.810876],[74.550415,31.826999],[74.565608,31.840538],[74.641056,31.890561],[74.669995,31.904152],[74.698417,31.950247],[74.763012,31.938982],[74.783683,31.942858],[74.802493,31.968851],[74.811278,32.003732],[74.828641,32.025436],[74.873186,32.011691],[74.889103,32.028899],[74.908843,32.031896],[74.931374,32.029829],[74.955662,32.032206],[74.967858,32.037891],[74.986151,32.063212],[74.995556,32.067398],[75.030179,32.066416],[75.022635,32.094683],[75.040825,32.09799],[75.102113,32.078095],[75.11896,32.08104],[75.13839,32.093494],[75.17415,32.086828],[75.173117,32.109721],[75.195751,32.128634],[75.226447,32.14207],[75.263344,32.150907],[75.294659,32.148891],[75.308405,32.193902],[75.31657,32.210748],[75.34861,32.242012],[75.359048,32.261675],[75.35295,32.284387],[75.326906,32.312473],[75.230167,32.380195],[75.196164,32.3973],[75.125988,32.411744],[75.092191,32.429339],[75.054881,32.455539],[75.023668,32.466262],[74.990699,32.463368],[74.948427,32.44877],[74.906983,32.445178],[74.83815,32.474866],[74.799393,32.47267],[74.763529,32.462671],[74.724978,32.46081],[74.689322,32.471352],[74.662553,32.498379],[74.632581,32.568168],[74.629584,32.58809],[74.636922,32.606254],[74.656042,32.64067],[74.657282,32.660592],[74.650151,32.701235],[74.649738,32.723146],[74.656972,32.745341],[74.682294,32.787328],[74.689115,32.808825],[74.685291,32.831227],[74.671752,32.840581],[74.653562,32.837428],[74.635888,32.82208],[74.614081,32.770404],[74.59341,32.757872],[74.573773,32.75255],[74.52096,32.745289],[74.500909,32.746013],[74.484476,32.753532],[74.455331,32.778595],[74.438691,32.785984],[74.418951,32.784615],[74.386394,32.767768],[74.367688,32.763531],[74.34619,32.76689],[74.329344,32.776424],[74.316321,32.791075],[74.306503,32.809911],[74.289551,32.787275],[74.267578,32.819595],[74.229126,32.842674],[74.196167,32.865746],[74.179688,32.87036],[74.141235,32.893426],[74.119263,32.911874],[74.086304,32.921097],[74.086304,32.934929],[74.036865,32.944149],[74.003906,32.962586],[73.959961,32.98102],[73.877563,33.017876],[73.795166,33.040903],[73.751221,33.082337],[73.718262,33.086939],[73.674316,33.123751],[73.674316,33.165145],[73.685303,33.192731],[73.630371,33.229498],[73.624878,33.261657],[73.624878,33.280028],[73.602905,33.316758],[73.602905,33.335118],[73.586426,33.358062],[73.586426,33.390173],[73.613892,33.440609],[73.624878,33.486435],[73.613892,33.536816],[73.619385,33.582591],[73.602905,33.614619],[73.613892,33.642063],[73.597412,33.692352],[73.575439,33.742613],[73.575439,33.774581],[73.564453,33.824794],[73.564453,33.847608],[73.553467,33.893217],[73.553467,33.916013],[73.526001,33.966142],[73.498535,34.0299],[73.509521,34.066312],[73.471069,34.129995],[73.471069,34.161818],[73.449097,34.225429],[73.432617,34.307144],[73.405151,34.370645],[73.394165,34.411442],[73.43811,34.50203],[73.465576,34.547287],[73.493042,34.560859],[73.553467,34.578952],[73.608398,34.601563],[73.635864,34.619647],[73.674316,34.682911],[73.701782,34.723555],[73.718262,34.755153],[73.800659,34.79125],[73.844604,34.818313],[73.88855,34.83635],[73.943481,34.840859],[73.981934,34.849875],[74.020386,34.872412],[74.053345,34.903953],[74.053345,34.944488],[74.058838,34.989504],[74.053345,35.016501],[74.064331,35.088451],[74.058838,35.142371],[73.97644,35.191767],[73.916016,35.209722],[73.844604,35.227672],[73.778687,35.232159],[73.751221,35.241133],[73.712769,35.272532],[73.696289,35.321848],[73.696289,35.357696],[73.718262,35.398006],[73.745728,35.424868],[73.762207,35.478565],[73.729248,35.523285],[73.674316,35.536696],[73.630371,35.545636],[73.564453,35.541166],[73.449097,35.554574],[73.399658,35.572449],[73.339233,35.585852],[73.300781,35.599252],[73.256836,35.630512],[73.24585,35.652833],[73.207397,35.688533],[73.157959,35.724218],[73.130493,35.75097],[73.125,35.773258],[73.103027,35.831175],[73.048096,35.844535],[73.00415,35.866795],[72.976685,35.857892],[72.927246,35.875698],[72.872314,35.871247],[72.828369,35.85344],[72.773438,35.844535],[72.723999,35.844535],[72.658081,35.862344],[72.614136,35.862344],[72.559204,35.880149],[72.537231,35.906849],[72.526245,35.95133],[72.537231,36.004673],[72.526245,36.062422],[72.526245,36.137875],[72.548218,36.195525],[72.58667,36.253133],[72.630615,36.288563],[72.680054,36.319551],[72.756958,36.363799],[72.806396,36.399178],[72.89978,36.483141],[72.965698,36.514051],[73.037109,36.5626],[73.048096,36.659606],[73.103027,36.708064],[73.196411,36.734482],[73.311768,36.725677],[73.394165,36.747688],[73.509521,36.73008],[73.613892,36.712467],[73.685303,36.734482],[73.806152,36.734482],[73.850098,36.782892],[73.954468,36.813683],[74.058838,36.81808],[74.102783,36.870832],[74.163208,36.892801],[74.207153,36.914764],[74.267578,36.936721],[74.328003,36.96306],[74.393921,36.993778],[74.465332,36.989391],[74.503784,36.976227],[74.525757,36.993778],[74.553223,37.028869],[74.613647,37.046409],[74.690552,37.042024],[74.729004,37.020098],[74.783936,37.020098],[74.822388,36.989391],[74.849854,36.971838],[74.86084,36.949892],[74.877319,36.93233],[74.882812,36.919156],[74.904785,36.945502],[74.943237,36.985003],[74.987183,36.993778],[75.064087,36.993778],[75.146484,36.980615],[75.17395,36.967449],[75.195923,36.949892],[75.234375,36.941111],[75.267334,36.936721],[75.300293,36.936721],[75.338745,36.927939],[75.38269,36.884014],[75.39917,36.844461],[75.415649,36.778492],[75.437622,36.738884],[75.487061,36.734482],[75.525513,36.752089],[75.574951,36.75649],[75.62439,36.75649],[75.673828,36.747688],[75.723267,36.73008],[75.778198,36.694851],[75.83313,36.650793],[75.866089,36.619937],[75.899048,36.593479],[75.953979,36.544949],[75.970459,36.518466],[75.992432,36.474307],[76.052856,36.461054],[76.124268,36.421282],[76.14624,36.372645],[76.151733,36.350527],[76.168213,36.323977],[76.195679,36.292991],[76.212158,36.279707],[76.300049,36.253133],[76.322021,36.244273],[76.360474,36.239843],[76.382446,36.239843],[76.404419,36.199958],[76.404419,36.168923],[76.442871,36.160053],[76.486816,36.146747],[76.541748,36.102376],[76.563721,36.093499],[76.607666,36.080182],[76.673584,36.071302],[76.690063,36.066862],[76.717529,36.05354],[76.766968,36.057981],[76.810913,36.022447],[76.821899,35.991341],[76.821899,35.964669],[76.78894,35.906849],[76.794434,35.848987],[76.827393,35.822267],[76.871338,35.795538],[76.937256,35.782171],[76.997681,35.777714],[77.080078,35.755428],[77.107544,35.759886],[77.189941,35.742054],[77.200928,35.742054],[77.23938,35.724218],[77.266846,35.697456],[77.277832,35.670685],[77.277832,35.648369],[77.305298,35.630512],[77.354736,35.648369],[77.404175,35.657296],[77.428894,35.634977],[77.44812,35.581384],[77.478333,35.538931],[77.387695,35.538931],[77.34375,35.500928],[77.376709,35.474092],[77.420654,35.478565],[77.478333,35.471855],[77.516785,35.478565],[77.514038,35.500928],[77.55249,35.518814],[77.579956,35.550105],[77.582703,35.563512],[77.618408,35.599252],[77.722778,35.659528],[77.763977,35.639441],[77.838135,35.590319],[77.851868,35.612651],[77.928772,35.650601],[77.953491,35.777714],[78.011169,35.768801]]]]},"properties":{"country":"India"}}]};
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment