Skip to content

Instantly share code, notes, and snippets.

@BobHarper1
Last active October 18, 2018 12:47
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save BobHarper1/b6ebe7b7a54cd06ada1a32e1892747ac to your computer and use it in GitHub Desktop.
Save BobHarper1/b6ebe7b7a54cd06ada1a32e1892747ac to your computer and use it in GitHub Desktop.
Fermanagh Community Transport trips made on a weekday in October 2016. See http://data.nicva.org/article/stormont-threat-lifeline-rural-communities for more context
<!DOCTYPE html>
<html >
<head>
<meta charset="UTF-8">
<title>Fermanagh Community Transport</title>
<link rel='stylesheet prefetch' href='https://api.tiles.mapbox.com/mapbox-gl-js/v0.26.0/mapbox-gl.css'>
<link rel="stylesheet" href="style.css">
</head>
<body>
<div id='map'></div>
<div class='overlay'>
<button id='route-one'>Bus 1</button>
<button id='route-two'>Bus 2</button>
<button id='route-three'>Bus 3</button>
<button id='route-four'>Bus 4</button>
<button id='route-five'>Bus 5</button>
<button id='route-six'>Bus 6</button>
<button id='route-seven'>Bus 7</button>
<button id='route-eight'>Bus 8</button>
<button id='route-nine'>Bus 9</button>
<button id='route-ten'>Bus 10</button>
</div>
<div class="caption"><strong>Click on a bus route to view journeys</strong><br/>Rural pick-up/drop-off points have been moved to protect passenger privacy<br/>There were also 200 miles undertaken by volunteer car drivers, these are not included here.</div>
<script src='https://api.tiles.mapbox.com/mapbox-gl-js/v0.26.0/mapbox-gl.js'></script>
<script src='https://api.tiles.mapbox.com/mapbox.js/plugins/turf/v2.0.0/turf.min.js'></script>
<script src="index.js"></script>
</body>
</html>
// Bob Harper 2016. MIT license.
///////////////////////////////////////////////// requestAnimationFrame polyfill for IE9
// requestAnimationFrame polyfill by Erik Möller. fixes from Paul Irish and Tino Zijdel
// MIT license
(function() {
var lastTime = 0;
var vendors = ['ms', 'moz', 'webkit', 'o'];
for(var x = 0; x < vendors.length && !window.requestAnimationFrame; ++x) {
window.requestAnimationFrame = window[vendors[x]+'RequestAnimationFrame'];
window.cancelAnimationFrame = window[vendors[x]+'CancelAnimationFrame']
|| window[vendors[x]+'CancelRequestAnimationFrame'];
}
if (!window.requestAnimationFrame)
window.requestAnimationFrame = function(callback, element) {
var currTime = new Date().getTime();
var timeToCall = Math.max(0, 16 - (currTime - lastTime));
var id = window.setTimeout(function() { callback(currTime + timeToCall); },
timeToCall);
lastTime = currTime + timeToCall;
return id;
};
if (!window.cancelAnimationFrame)
window.cancelAnimationFrame = function(id) {
clearTimeout(id);
};
}());
////////////////////////////////////////////////////////////////
mapboxgl.accessToken = 'pk.eyJ1IjoiYm9iaGFycGVyIiwiYSI6ImQwOTg1YTg2MTQzYzk3Mzc5MWVjYzFkZDQzN2M1NTUzIn0.mA2WO4WAZzh-qwoqN4QVjg';
var map = new mapboxgl.Map({
container: 'map',
style: 'mapbox://styles/mapbox/bright-v9',
center: [-7.6503,54.3440],
zoom: 9,
maxZoom: 12,
minZoom: 7
});
var route1 = {"type":"Feature","properties":{"name":"Bus 1","desc":"\n173 miles"},"geometry":{"type":"LineString","coordinates":[[-7.5497046,54.3642582],[-7.5366743,54.3660891],[-7.5352708,54.3664408],[-7.5343765,54.3666978],[-7.53281,54.3673621],[-7.5256642,54.3705192],[-7.5242711,54.3711168],[-7.5234877,54.3713245],[-7.5226806,54.3714714],[-7.5217737,54.3715549],[-7.52075,54.3715685],[-7.5198814,54.3714871],[-7.5170412,54.3709234],[-7.5068256,54.3689574],[-7.5032148,54.3684046],[-7.4976032,54.3675154],[-7.4918568,54.3665326],[-7.4896836,54.3660573],[-7.4887015,54.3659273],[-7.4877394,54.3658565],[-7.4877661,54.365985],[-7.4876575,54.3660582],[-7.4864801,54.366238],[-7.4857544,54.3663762],[-7.4852258,54.3665993],[-7.4847227,54.3666725],[-7.4832883,54.3669372],[-7.4810423,54.3671937],[-7.4804079,54.3673283],[-7.4780077,54.368101],[-7.4769731,54.3684921],[-7.4764617,54.368657],[-7.4760673,54.3687484],[-7.4747357,54.3688816],[-7.4739985,54.3689949],[-7.4731985,54.3692711],[-7.4725147,54.369448],[-7.4722184,54.3694892],[-7.4713725,54.3695307],[-7.4709685,54.3696503],[-7.4707515,54.3696805],[-7.4691511,54.3696824],[-7.4690886,54.3696524],[-7.4679201,54.3702007],[-7.4673625,54.3705517],[-7.4669571,54.3708616],[-7.4665459,54.3712334],[-7.4663808,54.3714126],[-7.4659999,54.3719624],[-7.4657578,54.3725985],[-7.4655613,54.37324],[-7.4654532,54.3735107],[-7.4650951,54.3740503],[-7.464494,54.3747255],[-7.4637968,54.3754377],[-7.4635241,54.3756467],[-7.4631944,54.3758324],[-7.4622946,54.3762258],[-7.4615415,54.3766894],[-7.4614242,54.3767932],[-7.460531,54.3777661],[-7.4595304,54.3787236],[-7.4594473,54.3788566],[-7.4593469,54.379239],[-7.4592415,54.3795194],[-7.4591389,54.3797548],[-7.4590724,54.3798546],[-7.4588548,54.3800931],[-7.4581479,54.3805737],[-7.4588548,54.3800931],[-7.4590724,54.3798546],[-7.4591389,54.3797548],[-7.4592415,54.3795194],[-7.4593469,54.379239],[-7.4594473,54.3788566],[-7.4595304,54.3787236],[-7.460531,54.3777661],[-7.4612111,54.3770256],[-7.4614242,54.3767932],[-7.4615415,54.3766894],[-7.4622946,54.3762258],[-7.4631944,54.3758324],[-7.4635241,54.3756467],[-7.4637968,54.3754377],[-7.464494,54.3747255],[-7.4649568,54.3742127],[-7.4650951,54.3740503],[-7.4654532,54.3735107],[-7.4655613,54.37324],[-7.4657578,54.3725985],[-7.4659999,54.3719624],[-7.4663808,54.3714126],[-7.4665459,54.3712334],[-7.4669571,54.3708616],[-7.4673625,54.3705517],[-7.4679201,54.3702007],[-7.4690886,54.3696524],[-7.4691511,54.3696824],[-7.4707515,54.3696805],[-7.4709685,54.3696503],[-7.4713725,54.3695307],[-7.4722184,54.3694892],[-7.4725147,54.369448],[-7.4731985,54.3692711],[-7.4739985,54.3689949],[-7.4747357,54.3688816],[-7.4760673,54.3687484],[-7.4764617,54.368657],[-7.4769731,54.3684921],[-7.4780077,54.368101],[-7.4804079,54.3673283],[-7.4810423,54.3671937],[-7.4832883,54.3669372],[-7.4847227,54.3666725],[-7.4852258,54.3665993],[-7.4857544,54.3663762],[-7.4864801,54.366238],[-7.4876575,54.3660582],[-7.4877661,54.365985],[-7.4877394,54.3658565],[-7.4887015,54.3659273],[-7.4896836,54.3660573],[-7.4918568,54.3665326],[-7.4976032,54.3675154],[-7.5032148,54.3684046],[-7.5068256,54.3689574],[-7.5107056,54.3696973],[-7.5127451,54.3700992],[-7.5126223,54.3698135],[-7.5122848,54.3690906],[-7.5129602,54.3691528],[-7.5134979,54.3691208],[-7.5149065,54.3688632],[-7.5156709,54.3687531],[-7.5164953,54.3686128],[-7.51744,54.3684003],[-7.5179081,54.3682552],[-7.5183719,54.3680624],[-7.5197547,54.367357],[-7.5208954,54.3667411],[-7.5218117,54.3664138],[-7.5226061,54.3661811],[-7.5233705,54.3659859],[-7.5239587,54.3658708],[-7.5244268,54.3657283],[-7.524736,54.3656156],[-7.5253974,54.3654732],[-7.5259557,54.3654007],[-7.5265053,54.3653782],[-7.5277852,54.3653832],[-7.529125,54.3653681],[-7.5296014,54.3653456],[-7.529933,54.3652997],[-7.5313194,54.3653204],[-7.5319849,54.3653055],[-7.5324222,54.3652444],[-7.5333942,54.3651897],[-7.5342832,54.365172],[-7.5355664,54.3649484],[-7.5368998,54.3646894],[-7.5387588,54.364189],[-7.5423216,54.3631624],[-7.5437737,54.362825],[-7.5447401,54.3626825],[-7.5456489,54.3626034],[-7.5483247,54.362283],[-7.5494192,54.3621755],[-7.5506944,54.3620166],[-7.5512918,54.3619559],[-7.5547315,54.3614696],[-7.5560178,54.3612496],[-7.5612662,54.3601631],[-7.563781,54.3596684],[-7.5657749,54.3595499],[-7.5663183,54.3594916],[-7.5682897,54.3594326],[-7.5698467,54.3593085],[-7.5725958,54.3591357],[-7.5754562,54.3589679],[-7.5756466,54.3589582],[-7.5763948,54.3589092],[-7.5765205,54.3589284],[-7.5767003,54.3590442],[-7.576729,54.359072],[-7.5785642,54.3585806],[-7.579316,54.3584107],[-7.5803006,54.3582126],[-7.5833717,54.3577596],[-7.5838884,54.3577031],[-7.5844453,54.3576616],[-7.587124,54.3575815],[-7.5877072,54.3575299],[-7.5882591,54.357437],[-7.5888874,54.3572542],[-7.5898627,54.3569],[-7.5921107,54.356047],[-7.5965,54.3540333],[-7.5996827,54.3525257],[-7.6011132,54.3518706],[-7.6018253,54.3515741],[-7.6025342,54.3513096],[-7.6039012,54.3508676],[-7.6052124,54.3505364],[-7.6067969,54.3502077],[-7.6074457,54.3501166],[-7.6087149,54.3499748],[-7.6101199,54.3498554],[-7.6114986,54.3496848],[-7.612534,54.3495107],[-7.6135663,54.3492998],[-7.6149514,54.3489629],[-7.6153504,54.3488816],[-7.6156476,54.3488051],[-7.615642,54.3487144],[-7.6157056,54.3486401],[-7.6157996,54.3485965],[-7.6158911,54.3485793],[-7.61605,54.3485903],[-7.6161101,54.3486095],[-7.6162124,54.348682],[-7.616234,54.3487837],[-7.6161884,54.3488505],[-7.6161276,54.3488896],[-7.6160226,54.3489222],[-7.616044,54.3490172],[-7.6168531,54.3503868],[-7.6180437,54.3519714],[-7.6181941,54.352223],[-7.6183161,54.3528232],[-7.6183084,54.3530581],[-7.6182356,54.3532993],[-7.6179907,54.3538027],[-7.6179737,54.354006],[-7.6180998,54.3539916],[-7.6182114,54.3540063],[-7.6183447,54.3540749],[-7.6187908,54.3539883],[-7.6189475,54.3539773],[-7.6191189,54.3539855],[-7.6197503,54.3541147],[-7.6205157,54.3544075],[-7.6217379,54.3549596],[-7.622108,54.3551455],[-7.6224683,54.3552929],[-7.62283,54.3553746],[-7.6230459,54.3553854],[-7.6233815,54.3553117],[-7.6235501,54.3552349],[-7.6236581,54.3551314],[-7.6244462,54.3538387],[-7.6247396,54.3537882],[-7.6245926,54.3527764],[-7.6246194,54.352533],[-7.6246826,54.3523178],[-7.6248307,54.352042],[-7.6252745,54.3515549],[-7.62701,54.3500756],[-7.6285586,54.3486876],[-7.6285897,54.3486553],[-7.6289264,54.3486632],[-7.6293196,54.3486447],[-7.6295126,54.3483864],[-7.629635,54.3483193],[-7.6297741,54.3482943],[-7.6299578,54.3482847],[-7.6299665,54.3485046],[-7.6300323,54.348868],[-7.6300839,54.3490156],[-7.6301709,54.3491312],[-7.6302769,54.349264],[-7.630839,54.3496019],[-7.6315591,54.3499949],[-7.6320384,54.3502026],[-7.632604,54.3504893],[-7.6336741,54.3512116],[-7.6344065,54.3516583],[-7.6349322,54.3519347],[-7.6347616,54.3520287],[-7.6349322,54.3519347],[-7.6357789,54.3523763],[-7.6359773,54.3524605],[-7.6361993,54.3525293],[-7.6365143,54.3526028],[-7.6365577,54.3523044],[-7.6369181,54.3518198],[-7.6372329,54.3515456],[-7.6375754,54.3512843],[-7.6383699,54.350878],[-7.6387482,54.3506318],[-7.639078,54.3503831],[-7.6393166,54.3501471],[-7.6394969,54.3498552],[-7.639597,54.3495589],[-7.6396407,54.3493156],[-7.6396456,54.3492888],[-7.6396117,54.3486576],[-7.6396597,54.3484922],[-7.6397421,54.3483303],[-7.6399952,54.3479587],[-7.6400302,54.3479056],[-7.6400637,54.3478335],[-7.6400034,54.3478116],[-7.6399637,54.3477734],[-7.6399669,54.3477138],[-7.6400062,54.3476791],[-7.6400978,54.3476545],[-7.6401736,54.3476607],[-7.6402474,54.3476957],[-7.6402722,54.3477354],[-7.6402603,54.3477825],[-7.6410273,54.3479915],[-7.6412763,54.3480421],[-7.6421276,54.3481401],[-7.6426728,54.3481858],[-7.6430051,54.3481923],[-7.6432703,54.3481617],[-7.643386,54.3481271],[-7.6434981,54.3480574],[-7.6438602,54.3472412],[-7.6439002,54.3471237],[-7.644044,54.3468232],[-7.6442649,54.3465597],[-7.6449228,54.3467087],[-7.6457891,54.3469277],[-7.6459721,54.3469594],[-7.6462904,54.3466915],[-7.647598,54.3459783],[-7.6491294,54.3452251],[-7.6496359,54.3449271],[-7.6499097,54.3446871],[-7.6500377,54.3445271],[-7.6502669,54.3441906],[-7.65034,54.3439993],[-7.6503431,54.3439095],[-7.6502468,54.3436472],[-7.6501168,54.3434636],[-7.6498616,54.3432861],[-7.6485932,54.3427493],[-7.6483102,54.3425622],[-7.6480882,54.3423544],[-7.6479353,54.3421323],[-7.6476615,54.3415417],[-7.6475985,54.3410088],[-7.6476011,54.3405761],[-7.647674,54.3400348],[-7.6477568,54.339751],[-7.6482368,54.3386479],[-7.648384,54.3378419],[-7.6484799,54.3375996],[-7.6485893,54.337458],[-7.6488454,54.3372731],[-7.6493867,54.3370084],[-7.6503463,54.3366146],[-7.6512094,54.336298],[-7.6516732,54.3361922],[-7.6520726,54.3361639],[-7.6523108,54.3361732],[-7.6525364,54.3362009],[-7.6540792,54.3364768],[-7.6545585,54.3365353],[-7.655379,54.3365761],[-7.6560762,54.3365129],[-7.6567449,54.3363956],[-7.6576752,54.3360923],[-7.6582176,54.3358852],[-7.6599719,54.3351644],[-7.6618241,54.3343582],[-7.6627955,54.3338708],[-7.6632671,54.3335616],[-7.6634537,54.3334083],[-7.6635944,54.3332475],[-7.6637721,54.3330851],[-7.6637378,54.3330724],[-7.6636961,54.3330223],[-7.6637177,54.3329773],[-7.6637916,54.3329476],[-7.6638983,54.3329633],[-7.6642796,54.3326243],[-7.6671759,54.329439],[-7.667619,54.3290329],[-7.6679488,54.328799],[-7.668319,54.3285939],[-7.6685179,54.328503],[-7.6691579,54.3282689],[-7.6698769,54.3280958],[-7.6711468,54.3278518],[-7.6716559,54.3277378],[-7.6721338,54.327603],[-7.672588,54.327448],[-7.6732078,54.3271489],[-7.6750578,54.3260899],[-7.6763879,54.3253019],[-7.6772708,54.3247518],[-7.677681,54.3244659],[-7.6784288,54.32389],[-7.6789688,54.3234239],[-7.67949,54.3229288],[-7.6801078,54.3222579],[-7.6807799,54.3214259],[-7.6809279,54.3212629],[-7.6812768,54.3209548],[-7.6816859,54.320679],[-7.6819248,54.320557],[-7.6824348,54.32034],[-7.682701,54.3202489],[-7.6832769,54.3200948],[-7.6833922,54.3200684],[-7.6832997,54.3198955],[-7.6832009,54.3196038],[-7.6831948,54.319431],[-7.6832317,54.3192438],[-7.6834973,54.3182571],[-7.68412,54.3167369],[-7.6842248,54.3159398],[-7.684231,54.3153509],[-7.6841669,54.3149849],[-7.683789,54.3142309],[-7.6837258,54.3140329],[-7.6836746,54.3132843],[-7.6834755,54.3124999],[-7.6833479,54.3121588],[-7.6833268,54.3118059],[-7.6836649,54.310652],[-7.6838359,54.3101669],[-7.6839009,54.3100539],[-7.6838868,54.3100094],[-7.6840073,54.3098153],[-7.6841334,54.3096724],[-7.684439,54.3094403],[-7.6848114,54.3092349],[-7.6852778,54.3089355],[-7.6854644,54.308788],[-7.6856948,54.3085366],[-7.6858591,54.3082745],[-7.6861387,54.3076978],[-7.686173,54.3075009],[-7.6861529,54.306581],[-7.686249,54.3060639],[-7.6864466,54.3055802],[-7.6867202,54.3052961],[-7.6877102,54.3044825],[-7.6881762,54.3041295],[-7.6885,54.3039414],[-7.6896358,54.3033405],[-7.6902289,54.3029792],[-7.6904418,54.302822],[-7.6910216,54.3023353],[-7.6913209,54.3020214],[-7.6914266,54.3018342],[-7.6914789,54.3016539],[-7.6914068,54.3012799],[-7.6912189,54.3007328],[-7.6911889,54.3005618],[-7.691201,54.300397],[-7.691264,54.3002429],[-7.6913649,54.3000939],[-7.6916629,54.2998119],[-7.6937239,54.2981329],[-7.6941019,54.2978019],[-7.6947428,54.2971279],[-7.6951738,54.296576],[-7.6960599,54.2952719],[-7.6964199,54.294688],[-7.6967379,54.2940679],[-7.6968709,54.2936509],[-7.697054,54.2928369],[-7.6975709,54.2910826],[-7.6975899,54.2910247],[-7.6989749,54.2871368],[-7.6998509,54.2844669],[-7.7001029,54.2838099],[-7.7007415,54.2824608],[-7.7011475,54.2816742],[-7.7015467,54.280972],[-7.7017275,54.2805471],[-7.7018443,54.2803162],[-7.7021424,54.279708],[-7.702622,54.278266],[-7.7027818,54.277655],[-7.7028254,54.2772056],[-7.7031305,54.2758481],[-7.7036099,54.2739986],[-7.7045744,54.2706373],[-7.705166,54.268719],[-7.705169,54.2684128],[-7.7049404,54.2680386],[-7.7037258,54.2664378],[-7.7034099,54.2660628],[-7.7031929,54.265866],[-7.6998619,54.2632069],[-7.6996509,54.2630109],[-7.6994799,54.262804],[-7.6993449,54.2625769],[-7.6992409,54.2623389],[-7.6991079,54.2618399],[-7.6988978,54.260054],[-7.698646,54.258329],[-7.6986749,54.2578938],[-7.698847,54.257222],[-7.6991312,54.2557248],[-7.6990653,54.2556955],[-7.6954415,54.2550682],[-7.6936288,54.2547501],[-7.6934988,54.2547266],[-7.6933816,54.2554191],[-7.6932549,54.2558224],[-7.6930944,54.2566997],[-7.6929964,54.2569916],[-7.692757,54.2580622],[-7.6924533,54.2598161],[-7.6923406,54.2600515],[-7.6922649,54.260577],[-7.6919546,54.2622373],[-7.6919237,54.2625555],[-7.69174,54.2636222],[-7.6915411,54.2650019],[-7.6911267,54.2669765],[-7.6910423,54.26755],[-7.6907409,54.2691628],[-7.6902021,54.2714651],[-7.6901829,54.2715858],[-7.6902265,54.2722332],[-7.6902125,54.2725031],[-7.6900558,54.2730541],[-7.6898346,54.2733501],[-7.6884532,54.2747577],[-7.6882651,54.2748571],[-7.6865578,54.2762575],[-7.6862577,54.2764652],[-7.6860949,54.2766049],[-7.6850703,54.2773669],[-7.6842425,54.2781222],[-7.6831916,54.2791766],[-7.6828509,54.2796318],[-7.6823769,54.2803395],[-7.6822758,54.280522],[-7.6821457,54.2808914],[-7.6820005,54.2811926],[-7.6819662,54.2813894],[-7.6820211,54.2815817],[-7.6821118,54.2816835],[-7.6821763,54.2818441],[-7.6821692,54.2818896],[-7.6819621,54.2823006],[-7.6816538,54.2827454],[-7.6814448,54.2831796],[-7.6813791,54.2834523],[-7.6812655,54.2837228],[-7.6809216,54.2844498],[-7.6807063,54.2847718],[-7.6802501,54.2855906],[-7.6800559,54.2860799],[-7.6799475,54.2864307],[-7.6798767,54.2868852],[-7.6797917,54.2878571],[-7.6795325,54.289974],[-7.6794961,54.2906827],[-7.6793801,54.2908439],[-7.6788172,54.2912562],[-7.6787373,54.2913576],[-7.6787315,54.2913907],[-7.6783556,54.2913855],[-7.6776905,54.2913497],[-7.6761614,54.2912287],[-7.6745111,54.2910908],[-7.6712565,54.2907857],[-7.6705705,54.2907384],[-7.6690068,54.290682],[-7.6682754,54.2906894],[-7.662447,54.2909346],[-7.656881,54.2911313],[-7.6559599,54.2911812],[-7.6557182,54.2912158],[-7.6554108,54.2912838],[-7.6548543,54.2914636],[-7.6537004,54.291911],[-7.6496838,54.2932658],[-7.6483963,54.2936775],[-7.6478416,54.2938883],[-7.647315,54.2941253],[-7.6463014,54.2945079],[-7.6443367,54.2953284],[-7.6438427,54.2955493],[-7.6425381,54.296193],[-7.6423274,54.2963482],[-7.6422907,54.2963811],[-7.642561,54.2964709],[-7.6434929,54.2968319],[-7.6438539,54.2970189],[-7.6443259,54.2973549],[-7.6446589,54.2977049],[-7.6448291,54.2979884],[-7.645081,54.2985239],[-7.645699,54.2996719],[-7.6465896,54.3014335],[-7.6466959,54.3016438],[-7.6469429,54.3022922],[-7.6470099,54.3027195],[-7.6470099,54.3029341],[-7.6469455,54.3033534],[-7.646873,54.3035694],[-7.6467685,54.303754],[-7.6465055,54.3041048],[-7.6462829,54.3043583],[-7.6456606,54.3049936],[-7.6453792,54.3053662],[-7.6451966,54.3056713],[-7.6450281,54.3061185],[-7.6444669,54.3083339],[-7.6441619,54.309765],[-7.6438749,54.3109708],[-7.64328,54.3132539],[-7.6430455,54.3143098],[-7.6429963,54.3145946],[-7.6429838,54.3152879],[-7.6430289,54.3156729],[-7.6431775,54.3160521],[-7.6433536,54.3164075],[-7.6434858,54.3165916],[-7.6439872,54.3171189],[-7.6462518,54.3191428],[-7.6466964,54.3194561],[-7.6477969,54.3204316],[-7.6482089,54.3209649],[-7.6485669,54.3214989],[-7.6488359,54.322073],[-7.6489569,54.3224669],[-7.64929,54.3238749],[-7.649439,54.3242869],[-7.6497093,54.3246764],[-7.6501006,54.3250126],[-7.6503523,54.3251828],[-7.6507104,54.3253834],[-7.6524362,54.3261533],[-7.6527387,54.3263149],[-7.6531643,54.3266532],[-7.6535029,54.3270488],[-7.6536359,54.3272578],[-7.6538499,54.327676],[-7.6541239,54.3282899],[-7.6543586,54.3286349],[-7.6545654,54.3288537],[-7.6549791,54.3291981],[-7.6553926,54.3294377],[-7.6571209,54.3302112],[-7.6589227,54.3309857],[-7.659026,54.3310332],[-7.6589336,54.3311068],[-7.6586246,54.3315406],[-7.6584019,54.3317796],[-7.658107,54.3320701],[-7.657705,54.3323872],[-7.6565336,54.3329722],[-7.6562743,54.3330726],[-7.6559774,54.3331471],[-7.6555777,54.3332157],[-7.6552,54.3332114],[-7.654963,54.3332323],[-7.654774,54.3332883],[-7.6534184,54.3340243],[-7.6530514,54.3342867],[-7.652062,54.3349107],[-7.6507825,54.3357496],[-7.6504625,54.3359281],[-7.6502785,54.3360052],[-7.6496349,54.3362175],[-7.6483359,54.3365709],[-7.648064,54.3366456],[-7.6483819,54.3369352],[-7.6487629,54.3372118],[-7.6488454,54.3372731],[-7.6485893,54.337458],[-7.6484799,54.3375996],[-7.648384,54.3378419],[-7.6482368,54.3386479],[-7.6477568,54.339751],[-7.647674,54.3400348],[-7.6476011,54.3405761],[-7.6475985,54.3410088],[-7.647635,54.3414311],[-7.6476615,54.3415417],[-7.6479353,54.3421323],[-7.6480882,54.3423544],[-7.6483102,54.3425622],[-7.6485932,54.3427493],[-7.6498616,54.3432861],[-7.6501168,54.3434636],[-7.6502468,54.3436472],[-7.6503431,54.3439095],[-7.65034,54.3439993],[-7.6502669,54.3441906],[-7.6500377,54.3445271],[-7.6499097,54.3446871],[-7.6496359,54.3449271],[-7.6491294,54.3452251],[-7.647598,54.3459783],[-7.6462904,54.3466915],[-7.6459721,54.3469594],[-7.6458944,54.3471473],[-7.6458756,54.3472766],[-7.6456435,54.3472922],[-7.6448165,54.3472533],[-7.6443277,54.3471902],[-7.6439002,54.3471237],[-7.6436773,54.347683],[-7.6434981,54.3480574],[-7.643386,54.3481271],[-7.6432703,54.3481617],[-7.6430051,54.3481923],[-7.6426728,54.3481858],[-7.6421276,54.3481401],[-7.6412763,54.3480421],[-7.6410273,54.3479915],[-7.6403668,54.3478065],[-7.6402603,54.3477825],[-7.6402005,54.3478238],[-7.6400637,54.3478335],[-7.6400302,54.3479056],[-7.6399952,54.3479587],[-7.6397421,54.3483303],[-7.6396597,54.3484922],[-7.6396117,54.3486576],[-7.6396456,54.3492888],[-7.639597,54.3495589],[-7.6394969,54.3498552],[-7.6393166,54.3501471],[-7.639078,54.3503831],[-7.6387482,54.3506318],[-7.6383699,54.350878],[-7.6375754,54.3512843],[-7.6372329,54.3515456],[-7.6369181,54.3518198],[-7.6365577,54.3523044],[-7.6365143,54.3526028],[-7.6365566,54.3529752],[-7.636847,54.3546804],[-7.6365707,54.3557358],[-7.6363368,54.356352],[-7.6361967,54.356975],[-7.6357912,54.3592838],[-7.6357178,54.3594447],[-7.6354556,54.3597826],[-7.6352978,54.3599025],[-7.6350361,54.3601447],[-7.6348327,54.3602738],[-7.6345101,54.3604783],[-7.6345403,54.3605286],[-7.634535,54.3605884],[-7.6344972,54.3606359],[-7.6344266,54.360675],[-7.6343408,54.3606953],[-7.6342517,54.3606964],[-7.6341627,54.3606776],[-7.6340865,54.3606372],[-7.6340444,54.3605817],[-7.6340437,54.360523],[-7.634078,54.3604725],[-7.634142,54.3604326],[-7.6331772,54.3597369],[-7.6319517,54.3587477],[-7.6318515,54.3586619],[-7.6311806,54.3580872],[-7.630525,54.3576372],[-7.6301802,54.3574405],[-7.6296897,54.3572],[-7.6291725,54.356992],[-7.627208,54.3563538],[-7.6269215,54.3562421],[-7.6267321,54.3561387],[-7.6260643,54.3556123],[-7.6252727,54.3549542],[-7.6250518,54.3547279],[-7.6249458,54.3545735],[-7.6248225,54.3542133],[-7.6247396,54.3537882],[-7.6244462,54.3538387],[-7.6237019,54.3550634],[-7.6235501,54.3552349],[-7.6233815,54.3553117],[-7.6230459,54.3553854],[-7.62283,54.3553746],[-7.6224683,54.3552929],[-7.622108,54.3551455],[-7.6217379,54.3549596],[-7.6205157,54.3544075],[-7.6197503,54.3541147],[-7.6191189,54.3539855],[-7.6189475,54.3539773],[-7.6187908,54.3539883],[-7.6183447,54.3540749],[-7.6183863,54.3541792],[-7.6183237,54.3542706],[-7.6181911,54.3543262],[-7.6180937,54.354336],[-7.6179972,54.3543271],[-7.6178731,54.3542796],[-7.617809,54.3542136],[-7.6178035,54.3541268],[-7.617864,54.3540544],[-7.6179737,54.354006],[-7.6179907,54.3538027],[-7.6182356,54.3532993],[-7.6183084,54.3530581],[-7.6183161,54.3528232],[-7.6181941,54.352223],[-7.6180437,54.3519714],[-7.6168531,54.3503868],[-7.616044,54.3490172],[-7.6160226,54.3489222],[-7.61592,54.3489291],[-7.6158002,54.3489107],[-7.6157093,54.3488695],[-7.6156476,54.3488051],[-7.6135663,54.3492998],[-7.612534,54.3495107],[-7.6114986,54.3496848],[-7.6101199,54.3498554],[-7.6087149,54.3499748],[-7.6074457,54.3501166],[-7.6067969,54.3502077],[-7.6052124,54.3505364],[-7.6039012,54.3508676],[-7.6025342,54.3513096],[-7.6018253,54.3515741],[-7.6011132,54.3518706],[-7.5996827,54.3525257],[-7.5965,54.3540333],[-7.5921107,54.356047],[-7.5898627,54.3569],[-7.5888874,54.3572542],[-7.5882591,54.357437],[-7.5877072,54.3575299],[-7.587124,54.3575815],[-7.5844453,54.3576616],[-7.5838884,54.3577031],[-7.5833717,54.3577596],[-7.5803006,54.3582126],[-7.579316,54.3584107],[-7.5785642,54.3585806],[-7.5775172,54.3588611],[-7.576729,54.359072],[-7.5765205,54.3589284],[-7.5763948,54.3589092],[-7.5758707,54.3589431],[-7.5756466,54.3589582],[-7.5754562,54.3589679],[-7.5698467,54.3593085],[-7.5682897,54.3594326],[-7.5663183,54.3594916],[-7.5657749,54.3595499],[-7.563781,54.3596684],[-7.5612662,54.3601631],[-7.5560178,54.3612496],[-7.5547315,54.3614696],[-7.5512918,54.3619559],[-7.5506944,54.3620166],[-7.5494192,54.3621755],[-7.5483247,54.362283],[-7.5456489,54.3626034],[-7.5447401,54.3626825],[-7.5437737,54.362825],[-7.5423216,54.3631624],[-7.5387588,54.364189],[-7.5368998,54.3646894],[-7.5355664,54.3649484],[-7.5342832,54.365172],[-7.5333942,54.3651897],[-7.5324222,54.3652444],[-7.5319849,54.3653055],[-7.5313194,54.3653204],[-7.529933,54.3652997],[-7.5296014,54.3653456],[-7.529125,54.3653681],[-7.5277852,54.3653832],[-7.5265053,54.3653782],[-7.5259557,54.3654007],[-7.5253974,54.3654732],[-7.524736,54.3656156],[-7.5244268,54.3657283],[-7.5239587,54.3658708],[-7.5233705,54.3659859],[-7.5226061,54.3661811],[-7.5218117,54.3664138],[-7.5208954,54.3667411],[-7.5197547,54.367357],[-7.5183719,54.3680624],[-7.5179081,54.3682552],[-7.51744,54.3684003],[-7.5164953,54.3686128],[-7.5156709,54.3687531],[-7.5149065,54.3688632],[-7.5134979,54.3691208],[-7.5129602,54.3691528],[-7.5126225,54.3691217],[-7.5122848,54.3690906],[-7.5126946,54.3699794],[-7.5127451,54.3700992],[-7.5068256,54.3689574],[-7.5032148,54.3684046],[-7.4976032,54.3675154],[-7.4918568,54.3665326],[-7.4896836,54.3660573],[-7.4887015,54.3659273],[-7.4877394,54.3658565],[-7.4877661,54.365985],[-7.4876575,54.3660582],[-7.4864801,54.366238],[-7.4857544,54.3663762],[-7.4852258,54.3665993],[-7.4847227,54.3666725],[-7.4832883,54.3669372],[-7.4810423,54.3671937],[-7.4804079,54.3673283],[-7.4780077,54.368101],[-7.4769731,54.3684921],[-7.4764617,54.368657],[-7.4760673,54.3687484],[-7.4747357,54.3688816],[-7.4739985,54.3689949],[-7.4731985,54.3692711],[-7.4725147,54.369448],[-7.4722184,54.3694892],[-7.4713725,54.3695307],[-7.4709685,54.3696503],[-7.4707515,54.3696805],[-7.4691511,54.3696824],[-7.4690886,54.3696524],[-7.4679201,54.3702007],[-7.4673625,54.3705517],[-7.4669571,54.3708616],[-7.4665459,54.3712334],[-7.4663808,54.3714126],[-7.4659999,54.3719624],[-7.4657578,54.3725985],[-7.4655613,54.37324],[-7.4654532,54.3735107],[-7.4650951,54.3740503],[-7.464494,54.3747255],[-7.4637968,54.3754377],[-7.4635241,54.3756467],[-7.4631944,54.3758324],[-7.4622946,54.3762258],[-7.4615415,54.3766894],[-7.4614242,54.3767932],[-7.460531,54.3777661],[-7.4595304,54.3787236],[-7.4594473,54.3788566],[-7.4593469,54.379239],[-7.4592415,54.3795194],[-7.4591389,54.3797548],[-7.4590724,54.3798546],[-7.4588548,54.3800931],[-7.4576165,54.380935],[-7.4566712,54.3815102],[-7.4557079,54.3821718],[-7.4550761,54.3827097],[-7.4546786,54.3831042],[-7.453707,54.3839403],[-7.4534716,54.3840828],[-7.4526464,54.3844502],[-7.4518865,54.3848385],[-7.4510334,54.3854076],[-7.4503043,54.3860895],[-7.4487299,54.3869612],[-7.4478458,54.3873946],[-7.4470004,54.3878418],[-7.4449044,54.3891038],[-7.4444953,54.3892383],[-7.4441248,54.3893159],[-7.443672,54.3893593],[-7.4432336,54.3893772],[-7.4421312,54.3893124],[-7.4411426,54.3893411],[-7.4405527,54.389402],[-7.4391572,54.389649],[-7.4382212,54.390023],[-7.4376667,54.3901936],[-7.4363597,54.3905468],[-7.4354524,54.3907139],[-7.4338842,54.3908886],[-7.4154256,54.3926363],[-7.4141554,54.3927821],[-7.4132636,54.3929311],[-7.4117668,54.3932607],[-7.4097596,54.3938068],[-7.4049109,54.3951987],[-7.3973931,54.3973147],[-7.3945911,54.3980104],[-7.3939344,54.3981272],[-7.3927544,54.3982479],[-7.3921429,54.3982725],[-7.3910849,54.3982749],[-7.3903255,54.3982386],[-7.389633,54.3981635],[-7.388832,54.3980411],[-7.387042,54.3977243],[-7.3859913,54.3975695],[-7.3849737,54.397451],[-7.3841141,54.3973978],[-7.3834622,54.3973786],[-7.3828809,54.3973954],[-7.3818883,54.3974607],[-7.3809331,54.3975935],[-7.3788997,54.3980918],[-7.3777536,54.3984381],[-7.3697176,54.4007259],[-7.3693739,54.4007943],[-7.3691001,54.4005788],[-7.3687188,54.4002795],[-7.3689135,54.4004323],[-7.3693739,54.4007943],[-7.3697176,54.4007259],[-7.3777536,54.3984381],[-7.3788997,54.3980918],[-7.3809331,54.3975935],[-7.3818883,54.3974607],[-7.3828809,54.3973954],[-7.3834622,54.3973786],[-7.3841141,54.3973978],[-7.3849737,54.397451],[-7.3859913,54.3975695],[-7.387042,54.3977243],[-7.388832,54.3980411],[-7.389633,54.3981635],[-7.3903255,54.3982386],[-7.3910849,54.3982749],[-7.3921429,54.3982725],[-7.3927544,54.3982479],[-7.3939344,54.3981272],[-7.3945911,54.3980104],[-7.3973931,54.3973147],[-7.4049109,54.3951987],[-7.4097596,54.3938068],[-7.4117668,54.3932607],[-7.4132636,54.3929311],[-7.4141554,54.3927821],[-7.4154256,54.3926363],[-7.4338842,54.3908886],[-7.4354524,54.3907139],[-7.4363597,54.3905468],[-7.4376667,54.3901936],[-7.4382212,54.390023],[-7.4391572,54.389649],[-7.4405527,54.389402],[-7.4411426,54.3893411],[-7.4421312,54.3893124],[-7.4432336,54.3893772],[-7.443672,54.3893593],[-7.4441248,54.3893159],[-7.4444953,54.3892383],[-7.4449044,54.3891038],[-7.4470004,54.3878418],[-7.4478458,54.3873946],[-7.4487299,54.3869612],[-7.4503043,54.3860895],[-7.4510334,54.3854076],[-7.4518865,54.3848385],[-7.4526464,54.3844502],[-7.4534716,54.3840828],[-7.453707,54.3839403],[-7.4546786,54.3831042],[-7.4550761,54.3827097],[-7.4557079,54.3821718],[-7.4566712,54.3815102],[-7.4576165,54.380935],[-7.4588548,54.3800931],[-7.4590724,54.3798546],[-7.4591389,54.3797548],[-7.4592415,54.3795194],[-7.4593469,54.379239],[-7.4594473,54.3788566],[-7.4595304,54.3787236],[-7.460531,54.3777661],[-7.4612111,54.3770256],[-7.4614242,54.3767932],[-7.4615415,54.3766894],[-7.4622946,54.3762258],[-7.4631944,54.3758324],[-7.4635241,54.3756467],[-7.4637968,54.3754377],[-7.464494,54.3747255],[-7.4649568,54.3742127],[-7.4650951,54.3740503],[-7.4654532,54.3735107],[-7.4655613,54.37324],[-7.4657578,54.3725985],[-7.4659999,54.3719624],[-7.4663808,54.3714126],[-7.4665459,54.3712334],[-7.4669571,54.3708616],[-7.4673625,54.3705517],[-7.4679201,54.3702007],[-7.4690886,54.3696524],[-7.4691511,54.3696824],[-7.4707515,54.3696805],[-7.4709685,54.3696503],[-7.4713725,54.3695307],[-7.4722184,54.3694892],[-7.4725147,54.369448],[-7.4731985,54.3692711],[-7.4739985,54.3689949],[-7.4747357,54.3688816],[-7.4760673,54.3687484],[-7.4764617,54.368657],[-7.4769731,54.3684921],[-7.4780077,54.368101],[-7.4804079,54.3673283],[-7.4810423,54.3671937],[-7.4832883,54.3669372],[-7.4847227,54.3666725],[-7.4852258,54.3665993],[-7.4857544,54.3663762],[-7.4864801,54.366238],[-7.4876575,54.3660582],[-7.4877661,54.365985],[-7.4877394,54.3658565],[-7.4887015,54.3659273],[-7.4896836,54.3660573],[-7.4918568,54.3665326],[-7.4976032,54.3675154],[-7.5032148,54.3684046],[-7.5068256,54.3689574],[-7.5107056,54.3696973],[-7.5127451,54.3700992],[-7.5126223,54.3698135],[-7.5122848,54.3690906],[-7.5129602,54.3691528],[-7.5134979,54.3691208],[-7.5149065,54.3688632],[-7.5156709,54.3687531],[-7.5164953,54.3686128],[-7.51744,54.3684003],[-7.5179081,54.3682552],[-7.5183719,54.3680624],[-7.5197547,54.367357],[-7.5208954,54.3667411],[-7.5218117,54.3664138],[-7.5226061,54.3661811],[-7.5233705,54.3659859],[-7.5239587,54.3658708],[-7.5244268,54.3657283],[-7.524736,54.3656156],[-7.5253974,54.3654732],[-7.5259557,54.3654007],[-7.5265053,54.3653782],[-7.5277852,54.3653832],[-7.529125,54.3653681],[-7.5296014,54.3653456],[-7.529933,54.3652997],[-7.5313194,54.3653204],[-7.5319849,54.3653055],[-7.5324222,54.3652444],[-7.5333942,54.3651897],[-7.5342832,54.365172],[-7.5355664,54.3649484],[-7.5368998,54.3646894],[-7.5387588,54.364189],[-7.5423216,54.3631624],[-7.5437737,54.362825],[-7.5447401,54.3626825],[-7.5456489,54.3626034],[-7.5483247,54.362283],[-7.5494192,54.3621755],[-7.5506944,54.3620166],[-7.5512918,54.3619559],[-7.5547315,54.3614696],[-7.5560178,54.3612496],[-7.5612662,54.3601631],[-7.563781,54.3596684],[-7.5657749,54.3595499],[-7.5663183,54.3594916],[-7.5682897,54.3594326],[-7.5698467,54.3593085],[-7.5725958,54.3591357],[-7.5754562,54.3589679],[-7.5756466,54.3589582],[-7.5763948,54.3589092],[-7.5765205,54.3589284],[-7.5767003,54.3590442],[-7.576729,54.359072],[-7.5785642,54.3585806],[-7.579316,54.3584107],[-7.5803006,54.3582126],[-7.5833717,54.3577596],[-7.5838884,54.3577031],[-7.5844453,54.3576616],[-7.587124,54.3575815],[-7.5877072,54.3575299],[-7.5882591,54.357437],[-7.5888874,54.3572542],[-7.5898627,54.3569],[-7.5921107,54.356047],[-7.5965,54.3540333],[-7.5996827,54.3525257],[-7.6011132,54.3518706],[-7.6018253,54.3515741],[-7.6025342,54.3513096],[-7.6039012,54.3508676],[-7.6052124,54.3505364],[-7.6067969,54.3502077],[-7.6074457,54.3501166],[-7.6087149,54.3499748],[-7.6101199,54.3498554],[-7.6114986,54.3496848],[-7.612534,54.3495107],[-7.6135663,54.3492998],[-7.6149514,54.3489629],[-7.6153504,54.3488816],[-7.6156476,54.3488051],[-7.615642,54.3487144],[-7.6157056,54.3486401],[-7.6157996,54.3485965],[-7.6158911,54.3485793],[-7.61605,54.3485903],[-7.6161101,54.3486095],[-7.616343,54.3485169],[-7.6164964,54.3484253],[-7.6169083,54.3482469],[-7.6172056,54.3481468],[-7.6174062,54.3480287],[-7.6179057,54.347821],[-7.6181177,54.347716],[-7.6192666,54.3470955],[-7.6204955,54.3463615],[-7.6211152,54.3459407],[-7.6217953,54.3451835],[-7.6223312,54.3448494],[-7.6237319,54.3440641],[-7.6253963,54.3430856],[-7.6258855,54.342772],[-7.6260224,54.3426503],[-7.6265542,54.3427941],[-7.6275261,54.3429962],[-7.6277729,54.3430424],[-7.6273508,54.3438404],[-7.6271459,54.3439739],[-7.6271459,54.3440267],[-7.6276621,54.3445188],[-7.6280219,54.3446762],[-7.6284135,54.3448924],[-7.6285032,54.3450222],[-7.629825,54.3448708],[-7.6300829,54.3448745],[-7.6303014,54.3449099],[-7.6304506,54.3449336],[-7.6305063,54.3448633],[-7.6306505,54.3446812],[-7.6314103,54.3439991],[-7.6315714,54.3438808],[-7.631325,54.3438033],[-7.6293429,54.3433056],[-7.6292204,54.3432732],[-7.6289534,54.3432455],[-7.6284343,54.343151],[-7.6282155,54.3431153],[-7.6272162,54.3429383],[-7.6262895,54.3427317],[-7.6260224,54.3426503],[-7.6258855,54.342772],[-7.6253963,54.3430856],[-7.6237319,54.3440641],[-7.6223312,54.3448494],[-7.6217953,54.3451835],[-7.6211152,54.3459407],[-7.6204955,54.3463615],[-7.6192666,54.3470955],[-7.6181177,54.347716],[-7.6179057,54.347821],[-7.6174062,54.3480287],[-7.6172056,54.3481468],[-7.6169083,54.3482469],[-7.6164964,54.3484253],[-7.616343,54.3485169],[-7.6161101,54.3486095],[-7.6162124,54.348682],[-7.616234,54.3487837],[-7.6161884,54.3488505],[-7.6161276,54.3488896],[-7.6160226,54.3489222],[-7.61592,54.3489291],[-7.6158002,54.3489107],[-7.6157093,54.3488695],[-7.6156476,54.3488051],[-7.6135663,54.3492998],[-7.612534,54.3495107],[-7.6114986,54.3496848],[-7.6101199,54.3498554],[-7.6087149,54.3499748],[-7.6074457,54.3501166],[-7.6067969,54.3502077],[-7.6052124,54.3505364],[-7.6039012,54.3508676],[-7.6025342,54.3513096],[-7.6018253,54.3515741],[-7.6011132,54.3518706],[-7.5986717,54.3530037],[-7.5983557,54.3531543],[-7.6011132,54.3518706],[-7.6018253,54.3515741],[-7.6025342,54.3513096],[-7.6039012,54.3508676],[-7.6052124,54.3505364],[-7.6067969,54.3502077],[-7.6074457,54.3501166],[-7.6087149,54.3499748],[-7.6101199,54.3498554],[-7.6114986,54.3496848],[-7.612534,54.3495107],[-7.6135663,54.3492998],[-7.6149514,54.3489629],[-7.6153504,54.3488816],[-7.6156476,54.3488051],[-7.615642,54.3487144],[-7.6157056,54.3486401],[-7.6157996,54.3485965],[-7.6158911,54.3485793],[-7.61605,54.3485903],[-7.6161101,54.3486095],[-7.616343,54.3485169],[-7.6164964,54.3484253],[-7.6169083,54.3482469],[-7.6172056,54.3481468],[-7.6174062,54.3480287],[-7.6179057,54.347821],[-7.6181177,54.347716],[-7.6192666,54.3470955],[-7.6204955,54.3463615],[-7.6211152,54.3459407],[-7.6217953,54.3451835],[-7.6223312,54.3448494],[-7.6237319,54.3440641],[-7.6253963,54.3430856],[-7.6258855,54.342772],[-7.6260224,54.3426503],[-7.6262895,54.3427317],[-7.6272162,54.3429383],[-7.6282155,54.3431153],[-7.628308,54.3431063],[-7.6284677,54.3430376],[-7.6285172,54.3430108],[-7.6287528,54.3431317],[-7.6290626,54.3432317],[-7.631325,54.3438033],[-7.6315714,54.3438808],[-7.6316638,54.3437892],[-7.6318037,54.3437158],[-7.6320246,54.3436297],[-7.6326508,54.3434891],[-7.6334564,54.3434276],[-7.6340791,54.3434166],[-7.6342312,54.3434194],[-7.6350663,54.3434312],[-7.6372096,54.3434694],[-7.6377775,54.3435001],[-7.638473,54.3435817],[-7.6388353,54.3436618],[-7.6394657,54.3438668],[-7.6400945,54.3441621],[-7.6406998,54.3445992],[-7.6415974,54.3454678],[-7.6419914,54.3457362],[-7.6422484,54.3458822],[-7.6428601,54.3461743],[-7.6430438,54.3462324],[-7.643782,54.3464442],[-7.6442649,54.3465597],[-7.6449228,54.3467087],[-7.6457891,54.3469277],[-7.6459721,54.3469594],[-7.6462904,54.3466915],[-7.647598,54.3459783],[-7.6491294,54.3452251],[-7.6496359,54.3449271],[-7.6499097,54.3446871],[-7.6500377,54.3445271],[-7.6502669,54.3441906],[-7.65034,54.3439993],[-7.6503431,54.3439095],[-7.6502468,54.3436472],[-7.6501168,54.3434636],[-7.6498616,54.3432861],[-7.6485932,54.3427493],[-7.6483102,54.3425622],[-7.6480882,54.3423544],[-7.6479353,54.3421323],[-7.6476615,54.3415417],[-7.6475985,54.3410088],[-7.6476011,54.3405761],[-7.647674,54.3400348],[-7.6477568,54.339751],[-7.6482368,54.3386479],[-7.648384,54.3378419],[-7.6484799,54.3375996],[-7.6485893,54.337458],[-7.6488454,54.3372731],[-7.6493867,54.3370084],[-7.6503463,54.3366146],[-7.6512094,54.336298],[-7.6516732,54.3361922],[-7.6520726,54.3361639],[-7.6523108,54.3361732],[-7.6525364,54.3362009],[-7.6540792,54.3364768],[-7.6545585,54.3365353],[-7.655379,54.3365761],[-7.6560762,54.3365129],[-7.6567449,54.3363956],[-7.6576752,54.3360923],[-7.6586122,54.3357198],[-7.6592959,54.3354405],[-7.6582176,54.3358852],[-7.6576752,54.3360923],[-7.6569743,54.3363269],[-7.6567449,54.3363956],[-7.6563846,54.3364651],[-7.6557875,54.336547],[-7.655379,54.3365761],[-7.6545585,54.3365353],[-7.6540792,54.3364768],[-7.6525364,54.3362009],[-7.6523108,54.3361732],[-7.6520726,54.3361639],[-7.6516732,54.3361922],[-7.6512094,54.336298],[-7.6503463,54.3366146],[-7.6493867,54.3370084],[-7.6488454,54.3372731],[-7.6485893,54.337458],[-7.6484799,54.3375996],[-7.648384,54.3378419],[-7.6482368,54.3386479],[-7.6477568,54.339751],[-7.647674,54.3400348],[-7.6476011,54.3405761],[-7.6475985,54.3410088],[-7.6476615,54.3415417],[-7.6479353,54.3421323],[-7.6480882,54.3423544],[-7.6483102,54.3425622],[-7.6485932,54.3427493],[-7.6498616,54.3432861],[-7.6501168,54.3434636],[-7.6502468,54.3436472],[-7.6503431,54.3439095],[-7.65034,54.3439993],[-7.6502669,54.3441906],[-7.6500377,54.3445271],[-7.6499097,54.3446871],[-7.6496359,54.3449271],[-7.6491294,54.3452251],[-7.647598,54.3459783],[-7.6462904,54.3466915],[-7.6459721,54.3469594],[-7.6457891,54.3469277],[-7.6449228,54.3467087],[-7.643782,54.3464442],[-7.6433984,54.3463337],[-7.6430438,54.3462324],[-7.6428601,54.3461743],[-7.6426584,54.3460834],[-7.6422484,54.3458822],[-7.6419914,54.3457362],[-7.6415974,54.3454678],[-7.6406998,54.3445992],[-7.6400945,54.3441621],[-7.6394657,54.3438668],[-7.6388353,54.3436618],[-7.638473,54.3435817],[-7.6377775,54.3435001],[-7.6372096,54.3434694],[-7.6351059,54.3434312],[-7.6350663,54.3434312],[-7.6342312,54.3434194],[-7.6334564,54.3434276],[-7.6326508,54.3434891],[-7.6320246,54.3436297],[-7.6318037,54.3437158],[-7.6316638,54.3437892],[-7.6315714,54.3438808],[-7.6314103,54.3439991],[-7.6306505,54.3446812],[-7.6305063,54.3448633],[-7.6306505,54.3446812],[-7.6314103,54.3439991],[-7.6315714,54.3438808],[-7.631325,54.3438033],[-7.6293429,54.3433056],[-7.6292204,54.3432732],[-7.6289534,54.3432455],[-7.6284343,54.343151],[-7.6282155,54.3431153],[-7.6272162,54.3429383],[-7.6262895,54.3427317],[-7.6260224,54.3426503],[-7.6258855,54.342772],[-7.6253963,54.3430856],[-7.6237319,54.3440641],[-7.6223312,54.3448494],[-7.6217953,54.3451835],[-7.6211152,54.3459407],[-7.6204955,54.3463615],[-7.6192666,54.3470955],[-7.6181177,54.347716],[-7.6179057,54.347821],[-7.6174062,54.3480287],[-7.6172056,54.3481468],[-7.6169083,54.3482469],[-7.6164964,54.3484253],[-7.616343,54.3485169],[-7.6161101,54.3486095],[-7.6162124,54.348682],[-7.616234,54.3487837],[-7.6161884,54.3488505],[-7.6161276,54.3488896],[-7.6160226,54.3489222],[-7.61592,54.3489291],[-7.6158002,54.3489107],[-7.6157093,54.3488695],[-7.6156476,54.3488051],[-7.6135663,54.3492998],[-7.612534,54.3495107],[-7.6114986,54.3496848],[-7.6101199,54.3498554],[-7.6087149,54.3499748],[-7.6074457,54.3501166],[-7.6067969,54.3502077],[-7.6052124,54.3505364],[-7.6039012,54.3508676],[-7.6025342,54.3513096],[-7.6018253,54.3515741],[-7.6011132,54.3518706],[-7.5996827,54.3525257],[-7.5965,54.3540333],[-7.5921107,54.356047],[-7.5898627,54.3569],[-7.5888874,54.3572542],[-7.5882591,54.357437],[-7.5877072,54.3575299],[-7.587124,54.3575815],[-7.5844453,54.3576616],[-7.5838884,54.3577031],[-7.5833717,54.3577596],[-7.5803006,54.3582126],[-7.579316,54.3584107],[-7.5785642,54.3585806],[-7.5775172,54.3588611],[-7.576729,54.359072],[-7.5765205,54.3589284],[-7.5763948,54.3589092],[-7.5758707,54.3589431],[-7.5756466,54.3589582],[-7.5754562,54.3589679],[-7.5698467,54.3593085],[-7.5682897,54.3594326],[-7.5663183,54.3594916],[-7.5657749,54.3595499],[-7.563781,54.3596684],[-7.5612662,54.3601631],[-7.5560178,54.3612496],[-7.5547315,54.3614696],[-7.5512918,54.3619559],[-7.5506944,54.3620166],[-7.5494192,54.3621755],[-7.5483247,54.362283],[-7.5456489,54.3626034],[-7.5447401,54.3626825],[-7.5437737,54.362825],[-7.5423216,54.3631624],[-7.5387588,54.364189],[-7.5368998,54.3646894],[-7.5355664,54.3649484],[-7.5342832,54.365172],[-7.5333942,54.3651897],[-7.5324222,54.3652444],[-7.5319849,54.3653055],[-7.5313194,54.3653204],[-7.529933,54.3652997],[-7.5296014,54.3653456],[-7.529125,54.3653681],[-7.5277852,54.3653832],[-7.5265053,54.3653782],[-7.5259557,54.3654007],[-7.5253974,54.3654732],[-7.524736,54.3656156],[-7.5244268,54.3657283],[-7.5239587,54.3658708],[-7.5233705,54.3659859],[-7.5226061,54.3661811],[-7.5218117,54.3664138],[-7.5208954,54.3667411],[-7.5197547,54.367357],[-7.5183719,54.3680624],[-7.5179081,54.3682552],[-7.51744,54.3684003],[-7.5164953,54.3686128],[-7.5156709,54.3687531],[-7.5149065,54.3688632],[-7.5134979,54.3691208],[-7.5129602,54.3691528],[-7.5126225,54.3691217],[-7.5122848,54.3690906],[-7.5126946,54.3699794],[-7.5127451,54.3700992],[-7.5068256,54.3689574],[-7.5032148,54.3684046],[-7.4976032,54.3675154],[-7.4918568,54.3665326],[-7.4896836,54.3660573],[-7.4887015,54.3659273],[-7.4877394,54.3658565],[-7.4877661,54.365985],[-7.4876575,54.3660582],[-7.4864801,54.366238],[-7.4857544,54.3663762],[-7.4852258,54.3665993],[-7.4847227,54.3666725],[-7.4832883,54.3669372],[-7.4810423,54.3671937],[-7.4804079,54.3673283],[-7.4780077,54.368101],[-7.4769731,54.3684921],[-7.4764617,54.368657],[-7.4760673,54.3687484],[-7.4747357,54.3688816],[-7.4739985,54.3689949],[-7.4731985,54.3692711],[-7.4725147,54.369448],[-7.4722184,54.3694892],[-7.4713725,54.3695307],[-7.4709685,54.3696503],[-7.4707515,54.3696805],[-7.4691511,54.3696824],[-7.4690886,54.3696524],[-7.4679201,54.3702007],[-7.4673625,54.3705517],[-7.4669571,54.3708616],[-7.4665459,54.3712334],[-7.4663808,54.3714126],[-7.4659999,54.3719624],[-7.4657578,54.3725985],[-7.4655613,54.37324],[-7.4654532,54.3735107],[-7.4650951,54.3740503],[-7.464494,54.3747255],[-7.4637968,54.3754377],[-7.4635241,54.3756467],[-7.4631944,54.3758324],[-7.4622946,54.3762258],[-7.4615415,54.3766894],[-7.4614242,54.3767932],[-7.460531,54.3777661],[-7.4595304,54.3787236],[-7.4594473,54.3788566],[-7.4593469,54.379239],[-7.4592415,54.3795194],[-7.4591389,54.3797548],[-7.4590724,54.3798546],[-7.4588548,54.3800931],[-7.4586568,54.3802277],[-7.4576165,54.380935],[-7.4566712,54.3815102],[-7.4557079,54.3821718],[-7.4550761,54.3827097],[-7.4546786,54.3831042],[-7.453707,54.3839403],[-7.4534716,54.3840828],[-7.4526464,54.3844502],[-7.4518865,54.3848385],[-7.4510334,54.3854076],[-7.4503043,54.3860895],[-7.4487299,54.3869612],[-7.4478458,54.3873946],[-7.4470004,54.3878418],[-7.4449044,54.3891038],[-7.4444953,54.3892383],[-7.4441248,54.3893159],[-7.443672,54.3893593],[-7.4432336,54.3893772],[-7.4421312,54.3893124],[-7.4411426,54.3893411],[-7.4405527,54.389402],[-7.4391572,54.389649],[-7.4382212,54.390023],[-7.4376667,54.3901936],[-7.4363597,54.3905468],[-7.4354524,54.3907139],[-7.4338842,54.3908886],[-7.4154256,54.3926363],[-7.4141554,54.3927821],[-7.4132636,54.3929311],[-7.4117668,54.3932607],[-7.4097596,54.3938068],[-7.4049109,54.3951987],[-7.3973931,54.3973147],[-7.3945911,54.3980104],[-7.3939344,54.3981272],[-7.3927544,54.3982479],[-7.3921429,54.3982725],[-7.3910849,54.3982749],[-7.3903255,54.3982386],[-7.389633,54.3981635],[-7.388832,54.3980411],[-7.387042,54.3977243],[-7.3859913,54.3975695],[-7.3849737,54.397451],[-7.3841141,54.3973978],[-7.3834622,54.3973786],[-7.3828809,54.3973954],[-7.3818883,54.3974607],[-7.3809331,54.3975935],[-7.3788997,54.3980918],[-7.3777536,54.3984381],[-7.3697176,54.4007259],[-7.3693739,54.4007943],[-7.3692355,54.4006783],[-7.3692159,54.4006638],[-7.3693739,54.4007943],[-7.3697176,54.4007259],[-7.3777536,54.3984381],[-7.3788997,54.3980918],[-7.3809331,54.3975935],[-7.3818883,54.3974607],[-7.3828809,54.3973954],[-7.3834622,54.3973786],[-7.3841141,54.3973978],[-7.3849737,54.397451],[-7.3859913,54.3975695],[-7.387042,54.3977243],[-7.388832,54.3980411],[-7.389633,54.3981635],[-7.3903255,54.3982386],[-7.3910849,54.3982749],[-7.3921429,54.3982725],[-7.3927544,54.3982479],[-7.3939344,54.3981272],[-7.3945911,54.3980104],[-7.3973931,54.3973147],[-7.4049109,54.3951987],[-7.4097596,54.3938068],[-7.4117668,54.3932607],[-7.4132636,54.3929311],[-7.4141554,54.3927821],[-7.4154256,54.3926363],[-7.4338842,54.3908886],[-7.4354524,54.3907139],[-7.4363597,54.3905468],[-7.4376667,54.3901936],[-7.4382212,54.390023],[-7.4391572,54.389649],[-7.4405527,54.389402],[-7.4411426,54.3893411],[-7.4421312,54.3893124],[-7.4432336,54.3893772],[-7.443672,54.3893593],[-7.4441248,54.3893159],[-7.4444953,54.3892383],[-7.4449044,54.3891038],[-7.4470004,54.3878418],[-7.4478458,54.3873946],[-7.4487299,54.3869612],[-7.4503043,54.3860895],[-7.4510334,54.3854076],[-7.4518865,54.3848385],[-7.4526464,54.3844502],[-7.4534716,54.3840828],[-7.453707,54.3839403],[-7.4546786,54.3831042],[-7.4550761,54.3827097],[-7.4557079,54.3821718],[-7.4566712,54.3815102],[-7.4576165,54.380935],[-7.4588548,54.3800931],[-7.4590724,54.3798546],[-7.4591389,54.3797548],[-7.4592415,54.3795194],[-7.4593469,54.379239],[-7.4594473,54.3788566],[-7.4595304,54.3787236],[-7.460531,54.3777661],[-7.4612111,54.3770256],[-7.4614242,54.3767932],[-7.4615415,54.3766894],[-7.4622946,54.3762258],[-7.4631944,54.3758324],[-7.4635241,54.3756467],[-7.4637968,54.3754377],[-7.464494,54.3747255],[-7.4649568,54.3742127],[-7.4650951,54.3740503],[-7.4654532,54.3735107],[-7.4655613,54.37324],[-7.4657578,54.3725985],[-7.4659999,54.3719624],[-7.4663808,54.3714126],[-7.4665459,54.3712334],[-7.4669571,54.3708616],[-7.4673625,54.3705517],[-7.4679201,54.3702007],[-7.4690886,54.3696524],[-7.4691511,54.3696824],[-7.4707515,54.3696805],[-7.4709685,54.3696503],[-7.4713725,54.3695307],[-7.4722184,54.3694892],[-7.4725147,54.369448],[-7.4731985,54.3692711],[-7.4739985,54.3689949],[-7.4747357,54.3688816],[-7.4760673,54.3687484],[-7.4764617,54.368657],[-7.4769731,54.3684921],[-7.4780077,54.368101],[-7.4804079,54.3673283],[-7.4810423,54.3671937],[-7.4832883,54.3669372],[-7.4847227,54.3666725],[-7.4852258,54.3665993],[-7.4857544,54.3663762],[-7.4864801,54.366238],[-7.4876575,54.3660582],[-7.4877661,54.365985],[-7.4877394,54.3658565],[-7.4887015,54.3659273],[-7.4896836,54.3660573],[-7.4918568,54.3665326],[-7.4976032,54.3675154],[-7.5032148,54.3684046],[-7.5068256,54.3689574],[-7.5107056,54.3696973],[-7.5127451,54.3700992],[-7.5126223,54.3698135],[-7.5122848,54.3690906],[-7.5129602,54.3691528],[-7.5134979,54.3691208],[-7.5149065,54.3688632],[-7.5156709,54.3687531],[-7.5164953,54.3686128],[-7.51744,54.3684003],[-7.5179081,54.3682552],[-7.5183719,54.3680624],[-7.5197547,54.367357],[-7.5208954,54.3667411],[-7.5218117,54.3664138],[-7.5226061,54.3661811],[-7.5233705,54.3659859],[-7.5239587,54.3658708],[-7.5244268,54.3657283],[-7.524736,54.3656156],[-7.5253974,54.3654732],[-7.5259557,54.3654007],[-7.5265053,54.3653782],[-7.5277852,54.3653832],[-7.529125,54.3653681],[-7.5296014,54.3653456],[-7.529933,54.3652997],[-7.5313194,54.3653204],[-7.5319849,54.3653055],[-7.5324222,54.3652444],[-7.5333942,54.3651897],[-7.5342832,54.365172],[-7.5355664,54.3649484],[-7.5368998,54.3646894],[-7.5387588,54.364189],[-7.5423216,54.3631624],[-7.5437737,54.362825],[-7.5447401,54.3626825],[-7.5456489,54.3626034],[-7.5483247,54.362283],[-7.5494192,54.3621755],[-7.5506944,54.3620166],[-7.5512918,54.3619559],[-7.5547315,54.3614696],[-7.5560178,54.3612496],[-7.5612662,54.3601631],[-7.563781,54.3596684],[-7.5657749,54.3595499],[-7.5663183,54.3594916],[-7.5682897,54.3594326],[-7.5698467,54.3593085],[-7.5725958,54.3591357],[-7.5754562,54.3589679],[-7.5756466,54.3589582],[-7.5763948,54.3589092],[-7.5765205,54.3589284],[-7.5767003,54.3590442],[-7.576729,54.359072],[-7.5785642,54.3585806],[-7.579316,54.3584107],[-7.5803006,54.3582126],[-7.5833717,54.3577596],[-7.5838884,54.3577031],[-7.5844453,54.3576616],[-7.587124,54.3575815],[-7.5877072,54.3575299],[-7.5882591,54.357437],[-7.5888874,54.3572542],[-7.5898627,54.3569],[-7.5921107,54.356047],[-7.5965,54.3540333],[-7.5996827,54.3525257],[-7.6011132,54.3518706],[-7.6018253,54.3515741],[-7.6025342,54.3513096],[-7.6039012,54.3508676],[-7.6052124,54.3505364],[-7.6067969,54.3502077],[-7.6074457,54.3501166],[-7.6087149,54.3499748],[-7.6101199,54.3498554],[-7.6114986,54.3496848],[-7.612534,54.3495107],[-7.6135663,54.3492998],[-7.6149514,54.3489629],[-7.6153504,54.3488816],[-7.6156476,54.3488051],[-7.615642,54.3487144],[-7.6157056,54.3486401],[-7.6157996,54.3485965],[-7.6158911,54.3485793],[-7.61605,54.3485903],[-7.6161101,54.3486095],[-7.6162124,54.348682],[-7.616234,54.3487837],[-7.6161884,54.3488505],[-7.6161276,54.3488896],[-7.6160226,54.3489222],[-7.616044,54.3490172],[-7.6168531,54.3503868],[-7.6180437,54.3519714],[-7.6181941,54.352223],[-7.6183161,54.3528232],[-7.6183084,54.3530581],[-7.6182356,54.3532993],[-7.6179907,54.3538027],[-7.6179737,54.354006],[-7.6180998,54.3539916],[-7.6182114,54.3540063],[-7.6183447,54.3540749],[-7.6187908,54.3539883],[-7.6189475,54.3539773],[-7.6191189,54.3539855],[-7.6197503,54.3541147],[-7.6205157,54.3544075],[-7.6217379,54.3549596],[-7.622108,54.3551455],[-7.6224683,54.3552929],[-7.62283,54.3553746],[-7.6230459,54.3553854],[-7.6233815,54.3553117],[-7.6235501,54.3552349],[-7.6236581,54.3551314],[-7.6244462,54.3538387],[-7.6247396,54.3537882],[-7.6245926,54.3527764],[-7.6246194,54.352533],[-7.6246826,54.3523178],[-7.6248307,54.352042],[-7.6252745,54.3515549],[-7.62701,54.3500756],[-7.6285586,54.3486876],[-7.6285897,54.3486553],[-7.6289264,54.3486632],[-7.6293196,54.3486447],[-7.6295126,54.3483864],[-7.629635,54.3483193],[-7.6297741,54.3482943],[-7.6299578,54.3482847],[-7.6299665,54.3485046],[-7.6300323,54.348868],[-7.6300839,54.3490156],[-7.6301709,54.3491312],[-7.6302769,54.349264],[-7.630839,54.3496019],[-7.6315591,54.3499949],[-7.6320384,54.3502026],[-7.632604,54.3504893],[-7.6336741,54.3512116],[-7.6344065,54.3516583],[-7.6349322,54.3519347],[-7.6347616,54.3520287],[-7.6349322,54.3519347],[-7.6344065,54.3516583],[-7.6336741,54.3512116],[-7.632604,54.3504893],[-7.6320384,54.3502026],[-7.6315591,54.3499949],[-7.630839,54.3496019],[-7.6302769,54.349264],[-7.6301709,54.3491312],[-7.6300839,54.3490156],[-7.6300323,54.348868],[-7.6299665,54.3485046],[-7.6299578,54.3482847],[-7.6297741,54.3482943],[-7.629635,54.3483193],[-7.6295126,54.3483864],[-7.6293196,54.3486447],[-7.6289264,54.3486632],[-7.6285897,54.3486553],[-7.62701,54.3500756],[-7.6252745,54.3515549],[-7.624991,54.3518537],[-7.6248307,54.352042],[-7.6246826,54.3523178],[-7.6246194,54.352533],[-7.6245926,54.3527764],[-7.6246584,54.3532561],[-7.6247396,54.3537882],[-7.6244462,54.3538387],[-7.6237019,54.3550634],[-7.6235501,54.3552349],[-7.6233815,54.3553117],[-7.6230459,54.3553854],[-7.62283,54.3553746],[-7.6224683,54.3552929],[-7.622108,54.3551455],[-7.6217379,54.3549596],[-7.6205157,54.3544075],[-7.6197503,54.3541147],[-7.6191189,54.3539855],[-7.6189475,54.3539773],[-7.6187908,54.3539883],[-7.6183447,54.3540749],[-7.6183863,54.3541792],[-7.6183237,54.3542706],[-7.6181911,54.3543262],[-7.6180937,54.354336],[-7.6179972,54.3543271],[-7.6178731,54.3542796],[-7.617809,54.3542136],[-7.6178035,54.3541268],[-7.617864,54.3540544],[-7.6179737,54.354006],[-7.6179907,54.3538027],[-7.6182356,54.3532993],[-7.6183084,54.3530581],[-7.6183161,54.3528232],[-7.6181941,54.352223],[-7.6180437,54.3519714],[-7.6168531,54.3503868],[-7.616044,54.3490172],[-7.6160226,54.3489222],[-7.61592,54.3489291],[-7.6158002,54.3489107],[-7.6157093,54.3488695],[-7.6156476,54.3488051],[-7.6135663,54.3492998],[-7.612534,54.3495107],[-7.6114986,54.3496848],[-7.6101199,54.3498554],[-7.6087149,54.3499748],[-7.6074457,54.3501166],[-7.6067969,54.3502077],[-7.6052124,54.3505364],[-7.6039012,54.3508676],[-7.6025342,54.3513096],[-7.6018253,54.3515741],[-7.6011132,54.3518706],[-7.5996827,54.3525257],[-7.5965,54.3540333],[-7.5921107,54.356047],[-7.5898627,54.3569],[-7.5888874,54.3572542],[-7.5882591,54.357437],[-7.5877072,54.3575299],[-7.587124,54.3575815],[-7.5844453,54.3576616],[-7.5838884,54.3577031],[-7.5833717,54.3577596],[-7.5803006,54.3582126],[-7.579316,54.3584107],[-7.5785642,54.3585806],[-7.5775172,54.3588611],[-7.576729,54.359072],[-7.5765205,54.3589284],[-7.5763948,54.3589092],[-7.5758707,54.3589431],[-7.5756466,54.3589582],[-7.5754562,54.3589679],[-7.5698467,54.3593085],[-7.5682897,54.3594326],[-7.5663183,54.3594916],[-7.5657749,54.3595499],[-7.563781,54.3596684],[-7.5612662,54.3601631],[-7.5560178,54.3612496],[-7.5547315,54.3614696],[-7.5512918,54.3619559],[-7.5506944,54.3620166],[-7.5494192,54.3621755],[-7.5483247,54.362283],[-7.5456489,54.3626034],[-7.5447401,54.3626825],[-7.5437737,54.362825],[-7.5423216,54.3631624],[-7.5387588,54.364189],[-7.5368998,54.3646894],[-7.5355664,54.3649484],[-7.5342832,54.365172],[-7.5333942,54.3651897],[-7.5324222,54.3652444],[-7.5319849,54.3653055],[-7.5313194,54.3653204],[-7.529933,54.3652997],[-7.5296014,54.3653456],[-7.529125,54.3653681],[-7.5277852,54.3653832],[-7.5265053,54.3653782],[-7.5259557,54.3654007],[-7.5253974,54.3654732],[-7.524736,54.3656156],[-7.5244268,54.3657283],[-7.5239587,54.3658708],[-7.5233705,54.3659859],[-7.5226061,54.3661811],[-7.5218117,54.3664138],[-7.5208954,54.3667411],[-7.5197547,54.367357],[-7.5183719,54.3680624],[-7.5179081,54.3682552],[-7.51744,54.3684003],[-7.5164953,54.3686128],[-7.5156709,54.3687531],[-7.5149065,54.3688632],[-7.5134979,54.3691208],[-7.5129602,54.3691528],[-7.5126225,54.3691217],[-7.5122848,54.3690906],[-7.5126946,54.3699794],[-7.5127451,54.3700992],[-7.5068256,54.3689574],[-7.5032148,54.3684046],[-7.4976032,54.3675154],[-7.4918568,54.3665326],[-7.4896836,54.3660573],[-7.4887015,54.3659273],[-7.4877394,54.3658565],[-7.4877661,54.365985],[-7.4876575,54.3660582],[-7.4864801,54.366238],[-7.4857544,54.3663762],[-7.4852258,54.3665993],[-7.4847227,54.3666725],[-7.4832883,54.3669372],[-7.4810423,54.3671937],[-7.4804079,54.3673283],[-7.4780077,54.368101],[-7.4769731,54.3684921],[-7.4764617,54.368657],[-7.4760673,54.3687484],[-7.4747357,54.3688816],[-7.4739985,54.3689949],[-7.4731985,54.3692711],[-7.4725147,54.369448],[-7.4722184,54.3694892],[-7.4713725,54.3695307],[-7.4709685,54.3696503],[-7.4707515,54.3696805],[-7.4691511,54.3696824],[-7.4690886,54.3696524],[-7.4679201,54.3702007],[-7.4673625,54.3705517],[-7.4669571,54.3708616],[-7.4665459,54.3712334],[-7.4663808,54.3714126],[-7.4659999,54.3719624],[-7.4657578,54.3725985],[-7.4655613,54.37324],[-7.4654532,54.3735107],[-7.4650951,54.3740503],[-7.464494,54.3747255],[-7.4637968,54.3754377],[-7.4635241,54.3756467],[-7.4631944,54.3758324],[-7.4622946,54.3762258],[-7.4615415,54.3766894],[-7.4614242,54.3767932],[-7.460531,54.3777661],[-7.4595304,54.3787236],[-7.4594473,54.3788566],[-7.4593469,54.379239],[-7.4592415,54.3795194],[-7.4591389,54.3797548],[-7.4590724,54.3798546],[-7.4588548,54.3800931],[-7.4576165,54.380935],[-7.4573988,54.3810708],[-7.4570909,54.3809379],[-7.4568094,54.3807576],[-7.4568094,54.3807576],[-7.4570909,54.3809379],[-7.457334,54.3810378],[-7.4573988,54.3810708],[-7.4588548,54.3800931],[-7.4590724,54.3798546],[-7.4591389,54.3797548],[-7.4592415,54.3795194],[-7.4593469,54.379239],[-7.4594473,54.3788566],[-7.4595304,54.3787236],[-7.460531,54.3777661],[-7.4612111,54.3770256],[-7.4614242,54.3767932],[-7.4615415,54.3766894],[-7.4622946,54.3762258],[-7.4631944,54.3758324],[-7.4635241,54.3756467],[-7.4637968,54.3754377],[-7.464494,54.3747255],[-7.4649568,54.3742127],[-7.4650951,54.3740503],[-7.4654532,54.3735107],[-7.4655613,54.37324],[-7.4657578,54.3725985],[-7.4659999,54.3719624],[-7.4663808,54.3714126],[-7.4665459,54.3712334],[-7.4669571,54.3708616],[-7.4673625,54.3705517],[-7.4679201,54.3702007],[-7.4690886,54.3696524],[-7.4691511,54.3696824],[-7.4707515,54.3696805],[-7.4709685,54.3696503],[-7.4713725,54.3695307],[-7.4722184,54.3694892],[-7.4725147,54.369448],[-7.4731985,54.3692711],[-7.4739985,54.3689949],[-7.4747357,54.3688816],[-7.4760673,54.3687484],[-7.4764617,54.368657],[-7.4769731,54.3684921],[-7.4780077,54.368101],[-7.4804079,54.3673283],[-7.4810423,54.3671937],[-7.4832883,54.3669372],[-7.4847227,54.3666725],[-7.4852258,54.3665993],[-7.4857544,54.3663762],[-7.4864801,54.366238],[-7.4876575,54.3660582],[-7.4877661,54.365985],[-7.4877394,54.3658565],[-7.4887015,54.3659273],[-7.4896836,54.3660573],[-7.4918568,54.3665326],[-7.4976032,54.3675154],[-7.5032148,54.3684046],[-7.5068256,54.3689574],[-7.5107056,54.3696973],[-7.5127451,54.3700992],[-7.5126223,54.3698135],[-7.5122848,54.3690906],[-7.5129602,54.3691528],[-7.5134979,54.3691208],[-7.5149065,54.3688632],[-7.5156709,54.3687531],[-7.5164953,54.3686128],[-7.51744,54.3684003],[-7.5179081,54.3682552],[-7.5183719,54.3680624],[-7.5197547,54.367357],[-7.5208954,54.3667411],[-7.5218117,54.3664138],[-7.5226061,54.3661811],[-7.5233705,54.3659859],[-7.5239587,54.3658708],[-7.5244268,54.3657283],[-7.524736,54.3656156],[-7.5253974,54.3654732],[-7.5259557,54.3654007],[-7.5265053,54.3653782],[-7.5277852,54.3653832],[-7.529125,54.3653681],[-7.5296014,54.3653456],[-7.529933,54.3652997],[-7.5313194,54.3653204],[-7.5319849,54.3653055],[-7.5324222,54.3652444],[-7.5333942,54.3651897],[-7.5342832,54.365172],[-7.5355664,54.3649484],[-7.5368998,54.3646894],[-7.5387588,54.364189],[-7.5423216,54.3631624],[-7.5437737,54.362825],[-7.5447401,54.3626825],[-7.5456489,54.3626034],[-7.5483247,54.362283],[-7.5494192,54.3621755],[-7.5506944,54.3620166],[-7.5512918,54.3619559],[-7.5547315,54.3614696],[-7.5560178,54.3612496],[-7.5612662,54.3601631],[-7.563781,54.3596684],[-7.5657749,54.3595499],[-7.5663183,54.3594916],[-7.5682897,54.3594326],[-7.5698467,54.3593085],[-7.5725958,54.3591357],[-7.5754562,54.3589679],[-7.5756466,54.3589582],[-7.5763948,54.3589092],[-7.5765205,54.3589284],[-7.5767003,54.3590442],[-7.576729,54.359072],[-7.5785642,54.3585806],[-7.579316,54.3584107],[-7.5803006,54.3582126],[-7.5833717,54.3577596],[-7.5838884,54.3577031],[-7.5844453,54.3576616],[-7.587124,54.3575815],[-7.5877072,54.3575299],[-7.5882591,54.357437],[-7.5888874,54.3572542],[-7.5898627,54.3569],[-7.5921107,54.356047],[-7.5965,54.3540333],[-7.5996827,54.3525257],[-7.6011132,54.3518706],[-7.6018253,54.3515741],[-7.6025342,54.3513096],[-7.6039012,54.3508676],[-7.6052124,54.3505364],[-7.6067969,54.3502077],[-7.6074457,54.3501166],[-7.6087149,54.3499748],[-7.6101199,54.3498554],[-7.6114986,54.3496848],[-7.612534,54.3495107],[-7.6135663,54.3492998],[-7.6149514,54.3489629],[-7.6153504,54.3488816],[-7.6156476,54.3488051],[-7.615642,54.3487144],[-7.6157056,54.3486401],[-7.6157996,54.3485965],[-7.6158911,54.3485793],[-7.61605,54.3485903],[-7.6161101,54.3486095],[-7.616343,54.3485169],[-7.6164964,54.3484253],[-7.6169083,54.3482469],[-7.6172056,54.3481468],[-7.6174062,54.3480287],[-7.6179057,54.347821],[-7.6181177,54.347716],[-7.6192666,54.3470955],[-7.6204955,54.3463615],[-7.6211152,54.3459407],[-7.6217953,54.3451835],[-7.6223312,54.3448494],[-7.6237319,54.3440641],[-7.6253963,54.3430856],[-7.6258855,54.342772],[-7.6260224,54.3426503],[-7.6262895,54.3427317],[-7.6272162,54.3429383],[-7.6282155,54.3431153],[-7.628308,54.3431063],[-7.6284677,54.3430376],[-7.6285172,54.3430108],[-7.6287528,54.3431317],[-7.6288968,54.3431842],[-7.6294495,54.3433338],[-7.6302958,54.3435392],[-7.6303523,54.3434455],[-7.6303651,54.343244],[-7.630205,54.3426541],[-7.6299652,54.3420673],[-7.6293496,54.3421126],[-7.6290605,54.3421059],[-7.6286162,54.3420925],[-7.6293496,54.3421126],[-7.6299652,54.3420673],[-7.630205,54.3426541],[-7.6303651,54.343244],[-7.6303523,54.3434455],[-7.6302958,54.3435392],[-7.6293429,54.3433056],[-7.6292204,54.3432732],[-7.6289534,54.3432455],[-7.6284343,54.343151],[-7.6282155,54.3431153],[-7.6272162,54.3429383],[-7.6262895,54.3427317],[-7.6260224,54.3426503],[-7.6258855,54.342772],[-7.6253963,54.3430856],[-7.6237319,54.3440641],[-7.6223312,54.3448494],[-7.6217953,54.3451835],[-7.6211152,54.3459407],[-7.6204955,54.3463615],[-7.6192666,54.3470955],[-7.6181177,54.347716],[-7.6179057,54.347821],[-7.6174062,54.3480287],[-7.6172056,54.3481468],[-7.6169083,54.3482469],[-7.6164964,54.3484253],[-7.616343,54.3485169],[-7.6161101,54.3486095],[-7.6162124,54.348682],[-7.616234,54.3487837],[-7.6161884,54.3488505],[-7.6161276,54.3488896],[-7.6160226,54.3489222],[-7.61592,54.3489291],[-7.6158002,54.3489107],[-7.6157093,54.3488695],[-7.6156476,54.3488051],[-7.6135663,54.3492998],[-7.612534,54.3495107],[-7.6114986,54.3496848],[-7.6101199,54.3498554],[-7.6087149,54.3499748],[-7.6074457,54.3501166],[-7.6067969,54.3502077],[-7.6052124,54.3505364],[-7.6039012,54.3508676],[-7.6025342,54.3513096],[-7.6018253,54.3515741],[-7.6011132,54.3518706],[-7.5996827,54.3525257],[-7.5965,54.3540333],[-7.5921107,54.356047],[-7.5898627,54.3569],[-7.5888874,54.3572542],[-7.5882591,54.357437],[-7.5877072,54.3575299],[-7.587124,54.3575815],[-7.5844453,54.3576616],[-7.5838884,54.3577031],[-7.5833717,54.3577596],[-7.5803006,54.3582126],[-7.579316,54.3584107],[-7.5785642,54.3585806],[-7.576729,54.359072],[-7.575465,54.3594497],[-7.5745882,54.3597703],[-7.5741283,54.3599936],[-7.573495,54.3604112],[-7.5722135,54.361347],[-7.5717913,54.3615912],[-7.5713388,54.3618039],[-7.5706502,54.3620753],[-7.5698983,54.3623115],[-7.5693115,54.3624307],[-7.5686509,54.3625359],[-7.5624373,54.3634792],[-7.5609974,54.3636478],[-7.5577726,54.3639078],[-7.5540941,54.3638474],[-7.5524663,54.3639009],[-7.5491171,54.3643325],[-7.5489782,54.3643523],[-7.5524663,54.3639009],[-7.5540941,54.3638474],[-7.5577726,54.3639078],[-7.5609974,54.3636478],[-7.5624373,54.3634792],[-7.5686509,54.3625359],[-7.5693115,54.3624307],[-7.5698983,54.3623115],[-7.5706502,54.3620753],[-7.5713388,54.3618039],[-7.5717913,54.3615912],[-7.5722135,54.361347],[-7.573495,54.3604112],[-7.5741283,54.3599936],[-7.5745882,54.3597703],[-7.575465,54.3594497],[-7.576729,54.359072],[-7.5785642,54.3585806],[-7.579316,54.3584107],[-7.5803006,54.3582126],[-7.5833717,54.3577596],[-7.5838884,54.3577031],[-7.5844453,54.3576616],[-7.587124,54.3575815],[-7.5877072,54.3575299],[-7.5882591,54.357437],[-7.5888874,54.3572542],[-7.5898627,54.3569],[-7.5921107,54.356047],[-7.5965,54.3540333],[-7.5996827,54.3525257],[-7.6011132,54.3518706],[-7.6018253,54.3515741],[-7.6025342,54.3513096],[-7.6039012,54.3508676],[-7.6052124,54.3505364],[-7.6067969,54.3502077],[-7.6074457,54.3501166],[-7.6087149,54.3499748],[-7.6101199,54.3498554],[-7.6114986,54.3496848],[-7.612534,54.3495107],[-7.6135663,54.3492998],[-7.6149514,54.3489629],[-7.6153504,54.3488816],[-7.6156476,54.3488051],[-7.615642,54.3487144],[-7.6157056,54.3486401],[-7.6157996,54.3485965],[-7.6158911,54.3485793],[-7.61605,54.3485903],[-7.6161101,54.3486095],[-7.616343,54.3485169],[-7.6164964,54.3484253],[-7.6169083,54.3482469],[-7.6172056,54.3481468],[-7.6174062,54.3480287],[-7.6179057,54.347821],[-7.6181177,54.347716],[-7.6192666,54.3470955],[-7.6204955,54.3463615],[-7.6211152,54.3459407],[-7.6217953,54.3451835],[-7.6223312,54.3448494],[-7.6237319,54.3440641],[-7.6253963,54.3430856],[-7.6258855,54.342772],[-7.6260224,54.3426503],[-7.6262895,54.3427317],[-7.6272162,54.3429383],[-7.6282155,54.3431153],[-7.628308,54.3431063],[-7.6284677,54.3430376],[-7.6285172,54.3430108],[-7.6287528,54.3431317],[-7.6290626,54.3432317],[-7.631325,54.3438033],[-7.6315714,54.3438808],[-7.6316638,54.3437892],[-7.6318037,54.3437158],[-7.6320246,54.3436297],[-7.6326508,54.3434891],[-7.6334564,54.3434276],[-7.6340791,54.3434166],[-7.6342312,54.3434194],[-7.6350663,54.3434312],[-7.6372096,54.3434694],[-7.6377775,54.3435001],[-7.638473,54.3435817],[-7.6388353,54.3436618],[-7.6394657,54.3438668],[-7.6400945,54.3441621],[-7.6406998,54.3445992],[-7.6415974,54.3454678],[-7.6419914,54.3457362],[-7.6422484,54.3458822],[-7.6428601,54.3461743],[-7.6430438,54.3462324],[-7.643782,54.3464442],[-7.6442649,54.3465597],[-7.6449228,54.3467087],[-7.6457891,54.3469277],[-7.6459149,54.3469495]]}};
var route2 = {"type":"Feature","properties":{"name":"Bus 2","desc":"\n180 miles"},"geometry":{"type":"LineString","coordinates":[[-7.6491782,54.2265455],[-7.6490333,54.2264297],[-7.6490912,54.2264133],[-7.649776,54.2263453],[-7.6531542,54.2260283],[-7.6556627,54.2257563],[-7.6563701,54.2256388],[-7.6570388,54.2254995],[-7.6577622,54.2253281],[-7.6585298,54.2251083],[-7.6621812,54.2238529],[-7.6633327,54.2234345],[-7.6736117,54.2194393],[-7.6751778,54.2188101],[-7.6757034,54.2186189],[-7.6767942,54.2183175],[-7.6775052,54.2181798],[-7.6788312,54.2180453],[-7.6795421,54.2179891],[-7.6802425,54.2179015],[-7.6810285,54.2177548],[-7.682579,54.217367],[-7.6836375,54.2171982],[-7.685307,54.2169754],[-7.6869801,54.2167335],[-7.6875431,54.2166867],[-7.6882884,54.2166744],[-7.6890366,54.2167003],[-7.6894084,54.2167365],[-7.6914627,54.2170024],[-7.691549,54.2170138],[-7.6914627,54.2170024],[-7.6915039,54.2170987],[-7.6917982,54.218641],[-7.6921167,54.221012],[-7.6921834,54.2217365],[-7.6922675,54.222145],[-7.6924385,54.2237018],[-7.6926278,54.2247499],[-7.6928232,54.2263313],[-7.6932344,54.2287583],[-7.69324,54.2290174],[-7.693355,54.2297306],[-7.6933574,54.2300456],[-7.6934893,54.2311448],[-7.6935384,54.231937],[-7.6936904,54.2328023],[-7.6938515,54.2340561],[-7.6940117,54.2351387],[-7.6941175,54.2356861],[-7.6942284,54.2365476],[-7.6948805,54.2392631],[-7.695207,54.2409931],[-7.6953927,54.2417641],[-7.695605,54.2429187],[-7.6956315,54.2433363],[-7.6956278,54.2446432],[-7.6955633,54.2454829],[-7.6953979,54.2465339],[-7.6948836,54.2490798],[-7.6944392,54.250832],[-7.6943649,54.2511237],[-7.6943528,54.2511717],[-7.6943381,54.2512215],[-7.6942397,54.2517829],[-7.6935051,54.2546955],[-7.6934988,54.2547266],[-7.6932886,54.2547005],[-7.6928882,54.254681],[-7.6926662,54.2547098],[-7.6916385,54.2549587],[-7.6896326,54.2554102],[-7.6893955,54.2554489],[-7.6889206,54.2554763],[-7.6884365,54.2554391],[-7.6865131,54.2551902],[-7.6847302,54.2548913],[-7.6840132,54.2548249],[-7.6823624,54.2548104],[-7.6818338,54.2547868],[-7.680746,54.2547734],[-7.6804714,54.2547611],[-7.6818338,54.2547868],[-7.6823624,54.2548104],[-7.6840132,54.2548249],[-7.6847302,54.2548913],[-7.6865131,54.2551902],[-7.6884365,54.2554391],[-7.6889206,54.2554763],[-7.6893955,54.2554489],[-7.6896326,54.2554102],[-7.6916385,54.2549587],[-7.6926662,54.2547098],[-7.6928882,54.254681],[-7.6932886,54.2547005],[-7.6938713,54.2547907],[-7.6990653,54.2556955],[-7.6991312,54.2557248],[-7.7045929,54.2566775],[-7.7049348,54.2567066],[-7.7051978,54.2566921],[-7.7056028,54.256631],[-7.7063456,54.2564441],[-7.7067388,54.2563251],[-7.7076442,54.2561217],[-7.708055,54.2560755],[-7.7085225,54.2561119],[-7.70879,54.2561662],[-7.7089256,54.2562253],[-7.7092513,54.2563985],[-7.709468,54.2565639],[-7.7099662,54.2572186],[-7.7102387,54.2575018],[-7.7103512,54.2575902],[-7.7104673,54.2576487],[-7.710677,54.2577156],[-7.7125752,54.2579955],[-7.7130293,54.2580788],[-7.7131349,54.2581064],[-7.7133113,54.2581922],[-7.7135531,54.2583431],[-7.715203,54.2595201],[-7.7158673,54.2600575],[-7.7166686,54.2607489],[-7.7167561,54.260859],[-7.7167909,54.2609674],[-7.7168723,54.2617387],[-7.7170821,54.2631215],[-7.7173209,54.2650386],[-7.7173713,54.2656553],[-7.7174481,54.2658781],[-7.7174716,54.2659062],[-7.7254481,54.2643246],[-7.7270899,54.2639722],[-7.7292885,54.2635459],[-7.7300843,54.2633819],[-7.7301426,54.2635026],[-7.7301443,54.2635205],[-7.7300992,54.2634004],[-7.7300843,54.2633819],[-7.7270899,54.2639722],[-7.7254481,54.2643246],[-7.7155607,54.2662856],[-7.7129656,54.2668295],[-7.7094881,54.2675228],[-7.7052275,54.2684005],[-7.705169,54.2684128],[-7.705166,54.268719],[-7.7045744,54.2706373],[-7.7036099,54.2739986],[-7.7031305,54.2758481],[-7.7028254,54.2772056],[-7.7027818,54.277655],[-7.702622,54.278266],[-7.7021424,54.279708],[-7.7018443,54.2803162],[-7.7017275,54.2805471],[-7.7015467,54.280972],[-7.7011475,54.2816742],[-7.7007415,54.2824608],[-7.7001029,54.2838099],[-7.6998509,54.2844669],[-7.6989749,54.2871368],[-7.6976478,54.2908973],[-7.6975899,54.2910247],[-7.697054,54.2928369],[-7.6968709,54.2936509],[-7.6967379,54.2940679],[-7.6964199,54.294688],[-7.6960599,54.2952719],[-7.6951738,54.296576],[-7.6947428,54.2971279],[-7.6941019,54.2978019],[-7.6937239,54.2981329],[-7.6916629,54.2998119],[-7.6913649,54.3000939],[-7.691264,54.3002429],[-7.691201,54.300397],[-7.6911889,54.3005618],[-7.6912189,54.3007328],[-7.6914068,54.3012799],[-7.6914789,54.3016539],[-7.6914266,54.3018342],[-7.6913209,54.3020214],[-7.6910216,54.3023353],[-7.6904418,54.302822],[-7.6902289,54.3029792],[-7.6896358,54.3033405],[-7.6885,54.3039414],[-7.6881762,54.3041295],[-7.6877102,54.3044825],[-7.6867202,54.3052961],[-7.6864466,54.3055802],[-7.686249,54.3060639],[-7.6861529,54.306581],[-7.686173,54.3075009],[-7.6861387,54.3076978],[-7.6858591,54.3082745],[-7.6856948,54.3085366],[-7.6854644,54.308788],[-7.6852778,54.3089355],[-7.6848114,54.3092349],[-7.684439,54.3094403],[-7.6841334,54.3096724],[-7.6840073,54.3098153],[-7.6838868,54.3100094],[-7.6839009,54.3100539],[-7.6838359,54.3101669],[-7.6836649,54.310652],[-7.6833268,54.3118059],[-7.6833479,54.3121588],[-7.6834755,54.3124999],[-7.6836746,54.3132843],[-7.6837258,54.3140329],[-7.683789,54.3142309],[-7.6841669,54.3149849],[-7.684231,54.3153509],[-7.6842248,54.3159398],[-7.68412,54.3167369],[-7.6834973,54.3182571],[-7.6833119,54.318891],[-7.6832775,54.3190432],[-7.683059,54.3190668],[-7.6829329,54.3191345],[-7.6825036,54.3194643],[-7.6822378,54.3196094],[-7.6807931,54.3203111],[-7.6793248,54.3210899],[-7.6784115,54.3215171],[-7.6749056,54.3229966],[-7.6744949,54.3231388],[-7.6738801,54.3233215],[-7.6736312,54.3234377],[-7.6734235,54.3235718],[-7.6730231,54.3238928],[-7.6726977,54.3240986],[-7.6709175,54.3249271],[-7.6698033,54.3251843],[-7.668592,54.3254308],[-7.6678561,54.3256245],[-7.6675325,54.3257547],[-7.6672174,54.3259176],[-7.6665189,54.3263217],[-7.6661495,54.3265616],[-7.6657843,54.3267173],[-7.6651934,54.3270166],[-7.664709,54.3272951],[-7.6644886,54.3274305],[-7.6644836,54.3274247],[-7.6645762,54.3275033],[-7.6647591,54.3276024],[-7.6650183,54.3276993],[-7.6657571,54.327884],[-7.6669751,54.3283138],[-7.6672977,54.3284659],[-7.6675774,54.3286814],[-7.6678404,54.3288759],[-7.667619,54.3290329],[-7.6671759,54.329439],[-7.6642796,54.3326243],[-7.6638983,54.3329633],[-7.6639445,54.3330207],[-7.6639352,54.333046],[-7.6638652,54.3330858],[-7.6637721,54.3330851],[-7.6634537,54.3334083],[-7.6632671,54.3335616],[-7.6627955,54.3338708],[-7.6618241,54.3343582],[-7.6599719,54.3351644],[-7.6582176,54.3358852],[-7.6576752,54.3360923],[-7.6567449,54.3363956],[-7.6560762,54.3365129],[-7.655379,54.3365761],[-7.6545585,54.3365353],[-7.6540792,54.3364768],[-7.6525364,54.3362009],[-7.6523108,54.3361732],[-7.6520726,54.3361639],[-7.6516732,54.3361922],[-7.6512094,54.336298],[-7.6503463,54.3366146],[-7.6493867,54.3370084],[-7.6488454,54.3372731],[-7.6485893,54.337458],[-7.6484799,54.3375996],[-7.648384,54.3378419],[-7.6482368,54.3386479],[-7.6477568,54.339751],[-7.647674,54.3400348],[-7.6476011,54.3405761],[-7.6475985,54.3410088],[-7.6476615,54.3415417],[-7.6479353,54.3421323],[-7.6480882,54.3423544],[-7.6483102,54.3425622],[-7.6485932,54.3427493],[-7.6498616,54.3432861],[-7.6501168,54.3434636],[-7.6502468,54.3436472],[-7.6503431,54.3439095],[-7.65034,54.3439993],[-7.6502669,54.3441906],[-7.6500377,54.3445271],[-7.6499097,54.3446871],[-7.6496359,54.3449271],[-7.6491294,54.3452251],[-7.647598,54.3459783],[-7.6462904,54.3466915],[-7.6459721,54.3469594],[-7.6457891,54.3469277],[-7.6449228,54.3467087],[-7.643782,54.3464442],[-7.6433984,54.3463337],[-7.6430438,54.3462324],[-7.6428601,54.3461743],[-7.6426584,54.3460834],[-7.6422484,54.3458822],[-7.6419914,54.3457362],[-7.6415974,54.3454678],[-7.6406998,54.3445992],[-7.6400945,54.3441621],[-7.6394657,54.3438668],[-7.6388353,54.3436618],[-7.638473,54.3435817],[-7.6377775,54.3435001],[-7.6372096,54.3434694],[-7.6351059,54.3434312],[-7.6350663,54.3434312],[-7.6342312,54.3434194],[-7.6334564,54.3434276],[-7.6326508,54.3434891],[-7.6320246,54.3436297],[-7.6318037,54.3437158],[-7.6316638,54.3437892],[-7.6315714,54.3438808],[-7.631325,54.3438033],[-7.6293429,54.3433056],[-7.6292204,54.3432732],[-7.6289534,54.3432455],[-7.6284343,54.343151],[-7.6282155,54.3431153],[-7.6272162,54.3429383],[-7.6262895,54.3427317],[-7.6260224,54.3426503],[-7.6258855,54.342772],[-7.6253963,54.3430856],[-7.6245842,54.3435634],[-7.6248344,54.3437422],[-7.6248227,54.3438098],[-7.6248277,54.3438106],[-7.6248344,54.3437422],[-7.6247444,54.3436664],[-7.6245842,54.3435634],[-7.6257208,54.3428826],[-7.6258855,54.342772],[-7.6260224,54.3426503],[-7.6262895,54.3427317],[-7.6272162,54.3429383],[-7.6282155,54.3431153],[-7.628308,54.3431063],[-7.6284677,54.3430376],[-7.6285172,54.3430108],[-7.6287528,54.3431317],[-7.6290626,54.3432317],[-7.631325,54.3438033],[-7.6315714,54.3438808],[-7.6316638,54.3437892],[-7.6318037,54.3437158],[-7.6320246,54.3436297],[-7.6326508,54.3434891],[-7.6334564,54.3434276],[-7.6340791,54.3434166],[-7.6342312,54.3434194],[-7.6350663,54.3434312],[-7.6372096,54.3434694],[-7.6377775,54.3435001],[-7.638473,54.3435817],[-7.6388353,54.3436618],[-7.6394657,54.3438668],[-7.6400945,54.3441621],[-7.6406998,54.3445992],[-7.6415974,54.3454678],[-7.6419914,54.3457362],[-7.6422484,54.3458822],[-7.6428601,54.3461743],[-7.6430438,54.3462324],[-7.643782,54.3464442],[-7.6442649,54.3465597],[-7.6449228,54.3467087],[-7.6457891,54.3469277],[-7.6459721,54.3469594],[-7.6462904,54.3466915],[-7.647598,54.3459783],[-7.6491294,54.3452251],[-7.6496359,54.3449271],[-7.6499097,54.3446871],[-7.6500377,54.3445271],[-7.6502669,54.3441906],[-7.65034,54.3439993],[-7.6503431,54.3439095],[-7.6502468,54.3436472],[-7.6501168,54.3434636],[-7.6498616,54.3432861],[-7.6485932,54.3427493],[-7.6483102,54.3425622],[-7.6480882,54.3423544],[-7.6479353,54.3421323],[-7.6476615,54.3415417],[-7.6475985,54.3410088],[-7.6476011,54.3405761],[-7.647674,54.3400348],[-7.6477568,54.339751],[-7.6482368,54.3386479],[-7.648384,54.3378419],[-7.6484799,54.3375996],[-7.6485893,54.337458],[-7.6488454,54.3372731],[-7.6483819,54.3369352],[-7.6480871,54.3366664],[-7.648064,54.3366456],[-7.6496349,54.3362175],[-7.6502785,54.3360052],[-7.6504625,54.3359281],[-7.6507825,54.3357496],[-7.652062,54.3349107],[-7.6530514,54.3342867],[-7.6534184,54.3340243],[-7.654774,54.3332883],[-7.654963,54.3332323],[-7.6552,54.3332114],[-7.6555777,54.3332157],[-7.6559774,54.3331471],[-7.6562743,54.3330726],[-7.6565336,54.3329722],[-7.657705,54.3323872],[-7.658107,54.3320701],[-7.6584019,54.3317796],[-7.6586246,54.3315406],[-7.6589336,54.3311068],[-7.6589893,54.3310625],[-7.659026,54.3310332],[-7.6571209,54.3302112],[-7.6553926,54.3294377],[-7.6549791,54.3291981],[-7.6545654,54.3288537],[-7.6543586,54.3286349],[-7.6541239,54.3282899],[-7.6538499,54.327676],[-7.6536359,54.3272578],[-7.6535029,54.3270488],[-7.6531643,54.3266532],[-7.6527387,54.3263149],[-7.6524362,54.3261533],[-7.6507104,54.3253834],[-7.6503523,54.3251828],[-7.6501006,54.3250126],[-7.6497093,54.3246764],[-7.649439,54.3242869],[-7.64929,54.3238749],[-7.6489569,54.3224669],[-7.6488359,54.322073],[-7.6485669,54.3214989],[-7.6482089,54.3209649],[-7.6477969,54.3204316],[-7.6466964,54.3194561],[-7.6462518,54.3191428],[-7.6439872,54.3171189],[-7.6434858,54.3165916],[-7.6433536,54.3164075],[-7.6431775,54.3160521],[-7.6430289,54.3156729],[-7.6429838,54.3152879],[-7.6429963,54.3145946],[-7.6430455,54.3143098],[-7.64328,54.3132539],[-7.6438749,54.3109708],[-7.6441619,54.309765],[-7.6444669,54.3083339],[-7.6450281,54.3061185],[-7.6451966,54.3056713],[-7.6453792,54.3053662],[-7.6456606,54.3049936],[-7.6462829,54.3043583],[-7.6465055,54.3041048],[-7.6467685,54.303754],[-7.646873,54.3035694],[-7.6469455,54.3033534],[-7.6470099,54.3029341],[-7.6470099,54.3027195],[-7.6469429,54.3022922],[-7.6466959,54.3016438],[-7.645699,54.2996719],[-7.645081,54.2985239],[-7.6448759,54.2980849],[-7.6448291,54.2979884],[-7.6446589,54.2977049],[-7.6443259,54.2973549],[-7.6438539,54.2970189],[-7.6434929,54.2968319],[-7.642561,54.2964709],[-7.6422907,54.2963811],[-7.6400656,54.2960052],[-7.6398782,54.2959832],[-7.6422907,54.2963811],[-7.642561,54.2964709],[-7.6434929,54.2968319],[-7.6438539,54.2970189],[-7.6443259,54.2973549],[-7.6446589,54.2977049],[-7.6448291,54.2979884],[-7.645081,54.2985239],[-7.645699,54.2996719],[-7.6466959,54.3016438],[-7.6469429,54.3022922],[-7.6470099,54.3027195],[-7.6470099,54.3029341],[-7.6469455,54.3033534],[-7.646873,54.3035694],[-7.6467685,54.303754],[-7.6465055,54.3041048],[-7.6462829,54.3043583],[-7.6456606,54.3049936],[-7.6453792,54.3053662],[-7.6451966,54.3056713],[-7.6450281,54.3061185],[-7.6449219,54.3065199],[-7.644747,54.3072174],[-7.6449839,54.3072865],[-7.6461064,54.3086107],[-7.6499961,54.3124634],[-7.6501598,54.3126156],[-7.6502327,54.3127322],[-7.6512514,54.3136963],[-7.6517377,54.3143052],[-7.6520528,54.3146045],[-7.6522065,54.3148263],[-7.6523717,54.314997],[-7.6525794,54.3151853],[-7.6527869,54.3153376],[-7.6528964,54.3154554],[-7.6531015,54.3158245],[-7.6531812,54.3161905],[-7.653228,54.3162788],[-7.6534223,54.3164642],[-7.6536925,54.316608],[-7.6542141,54.3168043],[-7.6549865,54.3170475],[-7.6552994,54.3171638],[-7.6555744,54.317291],[-7.6567311,54.3177637],[-7.657172,54.3179988],[-7.6574594,54.3182435],[-7.6586913,54.3199229],[-7.6588509,54.3201988],[-7.6591987,54.3206011],[-7.6598681,54.3215429],[-7.660231,54.3219834],[-7.6603668,54.3220985],[-7.6607114,54.3225247],[-7.6609118,54.3227213],[-7.6613961,54.323304],[-7.6615503,54.323531],[-7.6616181,54.3236964],[-7.6617688,54.3239239],[-7.6623143,54.324665],[-7.6628303,54.325435],[-7.6631604,54.3258133],[-7.6634833,54.3262607],[-7.6638998,54.3267154],[-7.6644391,54.3273737],[-7.6644886,54.3274305],[-7.6651934,54.3270166],[-7.6657843,54.3267173],[-7.6661495,54.3265616],[-7.6665189,54.3263217],[-7.6672174,54.3259176],[-7.6675325,54.3257547],[-7.6678561,54.3256245],[-7.668592,54.3254308],[-7.6698033,54.3251843],[-7.6709175,54.3249271],[-7.6714165,54.3247036],[-7.671771,54.3245207],[-7.6726977,54.3240986],[-7.6730231,54.3238928],[-7.6734235,54.3235718],[-7.6736312,54.3234377],[-7.6738801,54.3233215],[-7.6744949,54.3231388],[-7.6749056,54.3229966],[-7.6784115,54.3215171],[-7.6793248,54.3210899],[-7.6807931,54.3203111],[-7.6822378,54.3196094],[-7.6825036,54.3194643],[-7.6829329,54.3191345],[-7.683059,54.3190668],[-7.6832775,54.3190432],[-7.6831948,54.319431],[-7.6832009,54.3196038],[-7.6832997,54.3198955],[-7.6833922,54.3200684],[-7.684231,54.3199579],[-7.6852308,54.3198858],[-7.688858,54.3195809],[-7.692199,54.3193909],[-7.696352,54.319108],[-7.6968249,54.3190583],[-7.6977882,54.318907],[-7.6986013,54.3187792],[-7.6986628,54.3189525],[-7.6987961,54.3219819],[-7.698714,54.3228972],[-7.698502,54.323657],[-7.6979721,54.3251666],[-7.697883,54.3255475],[-7.6978592,54.3258985],[-7.6983722,54.3279265],[-7.6984439,54.3285207],[-7.6983346,54.3290551],[-7.6979721,54.329422],[-7.697613,54.3297072],[-7.6969771,54.3299963],[-7.6963959,54.3301465],[-7.6954963,54.3303791],[-7.6949594,54.3304668],[-7.6936636,54.3305087],[-7.6933319,54.3305944],[-7.6931368,54.330752],[-7.6929558,54.3310151],[-7.6928327,54.3314558],[-7.6927472,54.3318904],[-7.6927403,54.332351],[-7.6925931,54.3333358],[-7.6927096,54.3336052],[-7.6929282,54.3339659],[-7.6931745,54.3343169],[-7.6932633,54.3346719],[-7.6932497,54.3349729],[-7.6931473,54.335196],[-7.6927746,54.3355231],[-7.692494,54.3357384],[-7.6924564,54.3359158],[-7.6925214,54.3362387],[-7.6924838,54.3365478],[-7.692364,54.3367949],[-7.6915238,54.3376635],[-7.6914014,54.3377166],[-7.6910972,54.3378078],[-7.6909428,54.3378363],[-7.6907072,54.3378406],[-7.6895889,54.3377818],[-7.6877268,54.3379144],[-7.6871348,54.3379434],[-7.6856203,54.3378656],[-7.6853897,54.3378032],[-7.6849351,54.3375284],[-7.68435,54.3372183],[-7.6840358,54.3371287],[-7.6836178,54.3370781],[-7.6830836,54.3370689],[-7.6827271,54.3370898],[-7.6824596,54.3371904],[-7.6822754,54.3374431],[-7.6818891,54.3380532],[-7.681556,54.3381813],[-7.6808786,54.3382541],[-7.68032,54.3382921],[-7.6792797,54.3385278],[-7.6787865,54.3385104],[-7.6783467,54.3385833],[-7.6778175,54.3387773],[-7.6773302,54.3391134],[-7.6767715,54.3397927],[-7.6765695,54.3402395],[-7.6760048,54.3406484],[-7.6753391,54.3410366],[-7.6738115,54.3416602],[-7.6736512,54.3418716],[-7.6734789,54.3422907],[-7.6733004,54.3425125],[-7.6729914,54.3427586],[-7.6726585,54.3431188],[-7.6725039,54.3434757],[-7.6722666,54.3437348],[-7.6721512,54.3438016],[-7.6721027,54.3438111],[-7.6719813,54.3440283],[-7.671763,54.3443295],[-7.6712979,54.3448809],[-7.6710248,54.345281],[-7.6708753,54.3455708],[-7.6707989,54.345709],[-7.6716576,54.3458778],[-7.6721743,54.3460331],[-7.6726425,54.3462335],[-7.6738195,54.346964],[-7.6749911,54.3477961],[-7.675939,54.3485534],[-7.6771214,54.3496708],[-7.6778777,54.3505211],[-7.6790543,54.3522871],[-7.67917,54.3524728],[-7.6792419,54.3526662],[-7.6792043,54.352858],[-7.679134,54.3529791],[-7.6789364,54.3531683],[-7.6789027,54.3532007],[-7.6786356,54.3530869],[-7.6782681,54.3529595],[-7.6775664,54.3527949],[-7.677163,54.3527319],[-7.6763766,54.3526796],[-7.6716756,54.3524827],[-7.6709246,54.352505],[-7.6702807,54.3525537],[-7.6694188,54.3526528],[-7.6688077,54.3527576],[-7.6684344,54.352855],[-7.6679408,54.3530148],[-7.66757,54.3531685],[-7.6669318,54.3534872],[-7.664971,54.3544012],[-7.6647797,54.3545119],[-7.6646622,54.3546229],[-7.6646305,54.3546463],[-7.66339,54.3542692],[-7.6621566,54.3538735],[-7.6597409,54.3530193],[-7.6582411,54.3525328],[-7.6579036,54.3523382],[-7.657776,54.3522199],[-7.657323,54.3515186],[-7.6569889,54.3509151],[-7.6567529,54.3506659],[-7.6558109,54.3500849],[-7.6553807,54.349848],[-7.654975,54.3496872],[-7.6545613,54.3495839],[-7.6539161,54.3495088],[-7.6532859,54.3494684],[-7.6527819,54.3494749],[-7.6524531,54.3494375],[-7.6521663,54.3493596],[-7.6519934,54.3492963],[-7.6515645,54.3491372],[-7.6502083,54.3486045],[-7.6466502,54.3475312],[-7.6460982,54.3473779],[-7.6459482,54.3473224],[-7.6458756,54.3472766],[-7.6456435,54.3472922],[-7.6448165,54.3472533],[-7.6443277,54.3471902],[-7.6439002,54.3471237],[-7.6436773,54.347683],[-7.6434981,54.3480574],[-7.643386,54.3481271],[-7.6432703,54.3481617],[-7.6430051,54.3481923],[-7.6426728,54.3481858],[-7.6421276,54.3481401],[-7.6412763,54.3480421],[-7.6410273,54.3479915],[-7.6403668,54.3478065],[-7.6402603,54.3477825],[-7.6402005,54.3478238],[-7.6400637,54.3478335],[-7.6400302,54.3479056],[-7.6399952,54.3479587],[-7.6397421,54.3483303],[-7.6396597,54.3484922],[-7.6396117,54.3486576],[-7.6396456,54.3492888],[-7.639597,54.3495589],[-7.6394969,54.3498552],[-7.6393166,54.3501471],[-7.639078,54.3503831],[-7.6387482,54.3506318],[-7.6383699,54.350878],[-7.6375754,54.3512843],[-7.6372329,54.3515456],[-7.6369181,54.3518198],[-7.6365577,54.3523044],[-7.6365143,54.3526028],[-7.6361993,54.3525293],[-7.6359773,54.3524605],[-7.6357789,54.3523763],[-7.6349322,54.3519347],[-7.6344065,54.3516583],[-7.6339342,54.3518414],[-7.6337742,54.351876],[-7.6336004,54.3518706],[-7.6331658,54.3520332],[-7.6330896,54.3520625],[-7.6336004,54.3518706],[-7.6337742,54.351876],[-7.6339342,54.3518414],[-7.6344065,54.3516583],[-7.6357789,54.3523763],[-7.6359773,54.3524605],[-7.6361993,54.3525293],[-7.6365143,54.3526028],[-7.6365577,54.3523044],[-7.6369181,54.3518198],[-7.6372329,54.3515456],[-7.6375754,54.3512843],[-7.6383699,54.350878],[-7.6387482,54.3506318],[-7.639078,54.3503831],[-7.6393166,54.3501471],[-7.6394969,54.3498552],[-7.639597,54.3495589],[-7.6396407,54.3493156],[-7.6396456,54.3492888],[-7.6396117,54.3486576],[-7.6396597,54.3484922],[-7.6397421,54.3483303],[-7.6399952,54.3479587],[-7.6400302,54.3479056],[-7.6400637,54.3478335],[-7.6400034,54.3478116],[-7.6399637,54.3477734],[-7.6399669,54.3477138],[-7.6400062,54.3476791],[-7.6400978,54.3476545],[-7.6401736,54.3476607],[-7.6402474,54.3476957],[-7.6402722,54.3477354],[-7.6402603,54.3477825],[-7.6410273,54.3479915],[-7.6412763,54.3480421],[-7.6421276,54.3481401],[-7.6426728,54.3481858],[-7.6430051,54.3481923],[-7.6432703,54.3481617],[-7.643386,54.3481271],[-7.6434981,54.3480574],[-7.6438602,54.3472412],[-7.6439002,54.3471237],[-7.644044,54.3468232],[-7.6442649,54.3465597],[-7.6449228,54.3467087],[-7.6457891,54.3469277],[-7.6459721,54.3469594],[-7.6458944,54.3471473],[-7.6458756,54.3472766],[-7.6459482,54.3473224],[-7.6460982,54.3473779],[-7.6466502,54.3475312],[-7.6502083,54.3486045],[-7.6509302,54.3488774],[-7.6515645,54.3491372],[-7.6521663,54.3493596],[-7.6524531,54.3494375],[-7.6527819,54.3494749],[-7.6532859,54.3494684],[-7.6539161,54.3495088],[-7.6545613,54.3495839],[-7.654975,54.3496872],[-7.6553807,54.349848],[-7.6558109,54.3500849],[-7.6567529,54.3506659],[-7.6569889,54.3509151],[-7.657323,54.3515186],[-7.657776,54.3522199],[-7.6579036,54.3523382],[-7.6582411,54.3525328],[-7.6597409,54.3530193],[-7.6621566,54.3538735],[-7.6636616,54.3543492],[-7.6646305,54.3546463],[-7.6647797,54.3545119],[-7.664971,54.3544012],[-7.6669318,54.3534872],[-7.66757,54.3531685],[-7.6679408,54.3530148],[-7.6684344,54.352855],[-7.6688077,54.3527576],[-7.6694188,54.3526528],[-7.6702807,54.3525537],[-7.6709246,54.352505],[-7.6716756,54.3524827],[-7.6763766,54.3526796],[-7.677163,54.3527319],[-7.6775664,54.3527949],[-7.6782681,54.3529595],[-7.6786356,54.3530869],[-7.6789027,54.3532007],[-7.679134,54.3529791],[-7.6792043,54.352858],[-7.6792419,54.3526662],[-7.67917,54.3524728],[-7.6790543,54.3522871],[-7.6778777,54.3505211],[-7.6771214,54.3496708],[-7.675939,54.3485534],[-7.6749911,54.3477961],[-7.6738195,54.346964],[-7.6726425,54.3462335],[-7.6721743,54.3460331],[-7.6716576,54.3458778],[-7.6708507,54.3457202],[-7.6707989,54.345709],[-7.6710248,54.345281],[-7.6712979,54.3448809],[-7.671763,54.3443295],[-7.6720264,54.3439477],[-7.6721027,54.3438111],[-7.6721512,54.3438016],[-7.6722666,54.3437348],[-7.6725039,54.3434757],[-7.6726585,54.3431188],[-7.6729914,54.3427586],[-7.6733004,54.3425125],[-7.6734789,54.3422907],[-7.6736512,54.3418716],[-7.6738115,54.3416602],[-7.6753391,54.3410366],[-7.6760048,54.3406484],[-7.6765695,54.3402395],[-7.6767715,54.3397927],[-7.6773302,54.3391134],[-7.6778175,54.3387773],[-7.6783467,54.3385833],[-7.6787865,54.3385104],[-7.6792797,54.3385278],[-7.68032,54.3382921],[-7.6808786,54.3382541],[-7.681556,54.3381813],[-7.6818891,54.3380532],[-7.6822754,54.3374431],[-7.6824596,54.3371904],[-7.6827271,54.3370898],[-7.6830836,54.3370689],[-7.6836178,54.3370781],[-7.6840358,54.3371287],[-7.68435,54.3372183],[-7.6849351,54.3375284],[-7.6853897,54.3378032],[-7.6856203,54.3378656],[-7.6871348,54.3379434],[-7.6877268,54.3379144],[-7.6895889,54.3377818],[-7.6907072,54.3378406],[-7.6909428,54.3378363],[-7.6910972,54.3378078],[-7.6914014,54.3377166],[-7.6915238,54.3376635],[-7.692364,54.3367949],[-7.6924838,54.3365478],[-7.6925214,54.3362387],[-7.6924564,54.3359158],[-7.692494,54.3357384],[-7.6927746,54.3355231],[-7.6931473,54.335196],[-7.6932497,54.3349729],[-7.6932633,54.3346719],[-7.6931745,54.3343169],[-7.6929282,54.3339659],[-7.6927096,54.3336052],[-7.6925931,54.3333358],[-7.6927403,54.332351],[-7.6927472,54.3318904],[-7.6928327,54.3314558],[-7.6929558,54.3310151],[-7.6931368,54.330752],[-7.6933319,54.3305944],[-7.6936636,54.3305087],[-7.6949594,54.3304668],[-7.6954963,54.3303791],[-7.6963005,54.3301712],[-7.6969771,54.3299963],[-7.697613,54.3297072],[-7.6979721,54.329422],[-7.6983346,54.3290551],[-7.6984439,54.3285207],[-7.6983722,54.3279265],[-7.6978592,54.3258985],[-7.697883,54.3255475],[-7.6979721,54.3251666],[-7.698502,54.323657],[-7.698714,54.3228972],[-7.6987961,54.3219819],[-7.6987004,54.3195826],[-7.6986628,54.3189525],[-7.6986143,54.3188051],[-7.6986013,54.3187792],[-7.6990217,54.31869],[-7.6992599,54.318607],[-7.6996719,54.3184045],[-7.6998671,54.3182653],[-7.7000748,54.3180662],[-7.7005563,54.3174588],[-7.700686,54.3170218],[-7.7008789,54.3167432],[-7.7016687,54.3160637],[-7.7024324,54.3150527],[-7.7027919,54.3147449],[-7.703002,54.3146119],[-7.70323,54.314498],[-7.7034879,54.3144069],[-7.704336,54.3142219],[-7.7045949,54.3141498],[-7.7053215,54.3138641],[-7.7058773,54.3136767],[-7.7064125,54.3135448],[-7.7070048,54.3134459],[-7.7132849,54.3128082],[-7.7151924,54.312601],[-7.7152278,54.3125977],[-7.7151432,54.3122339],[-7.7149222,54.3087893],[-7.7145677,54.3051706],[-7.7144643,54.3046794],[-7.7142132,54.3041623],[-7.7129464,54.3028823],[-7.7126838,54.302586],[-7.7108921,54.3008258],[-7.7102143,54.2999665],[-7.7088162,54.2966659],[-7.7084387,54.2959417],[-7.7079439,54.2954273],[-7.707471,54.2950445],[-7.7067613,54.294737],[-7.700246,54.292095],[-7.6978227,54.2911275],[-7.6976254,54.2910875],[-7.6975709,54.2910826],[-7.6975899,54.2910247],[-7.6989749,54.2871368],[-7.6998509,54.2844669],[-7.7001029,54.2838099],[-7.7007415,54.2824608],[-7.7011475,54.2816742],[-7.7015467,54.280972],[-7.7017275,54.2805471],[-7.7018443,54.2803162],[-7.7021424,54.279708],[-7.702622,54.278266],[-7.7027818,54.277655],[-7.7028254,54.2772056],[-7.7031305,54.2758481],[-7.7036099,54.2739986],[-7.7045744,54.2706373],[-7.705166,54.268719],[-7.705169,54.2684128],[-7.7049404,54.2680386],[-7.7037258,54.2664378],[-7.7034099,54.2660628],[-7.7031929,54.265866],[-7.6998619,54.2632069],[-7.6996509,54.2630109],[-7.6994799,54.262804],[-7.6993449,54.2625769],[-7.6992409,54.2623389],[-7.6991079,54.2618399],[-7.6988978,54.260054],[-7.698646,54.258329],[-7.6986749,54.2578938],[-7.698847,54.257222],[-7.6991312,54.2557248],[-7.6996149,54.2534829],[-7.699734,54.252679],[-7.6999118,54.250838],[-7.69997,54.2506049],[-7.7002438,54.2499662],[-7.70039,54.2497461],[-7.7007182,54.2493342],[-7.7014897,54.2486477],[-7.7016359,54.2484741],[-7.7017203,54.2483109],[-7.7017821,54.2480777],[-7.7017512,54.2477046],[-7.7016719,54.24748],[-7.7016448,54.2472678],[-7.7016312,54.2468672],[-7.7017842,54.2454707],[-7.7018617,54.2452608],[-7.7020813,54.2449136],[-7.7021433,54.2447622],[-7.7021655,54.2443915],[-7.7020548,54.243854],[-7.7018458,54.2431938],[-7.701646,54.2421089],[-7.7015433,54.2416996],[-7.7015079,54.2412826],[-7.7015523,54.240982],[-7.7016232,54.2407203],[-7.7015929,54.240407],[-7.7015005,54.2402457],[-7.7013546,54.2400981],[-7.7010568,54.2398884],[-7.7008247,54.2396859],[-7.7005271,54.2393698],[-7.6999361,54.238898],[-7.6997636,54.2387304],[-7.6995129,54.2383988],[-7.699186,54.2378279],[-7.6990863,54.2376119],[-7.699047,54.2374452],[-7.6990738,54.2366003],[-7.6990126,54.2362788],[-7.6982189,54.2348319],[-7.69783,54.2340199],[-7.6977478,54.2336389],[-7.6977499,54.232886],[-7.6977119,54.2326949],[-7.6975999,54.232514],[-7.6972229,54.2321849],[-7.696767,54.231842],[-7.6965669,54.2316618],[-7.6962529,54.2312739],[-7.6960459,54.230865],[-7.6958889,54.2304269],[-7.695785,54.2299778],[-7.695709,54.2288438],[-7.6956538,54.2284039],[-7.6955799,54.2269778],[-7.6956279,54.2264999],[-7.6957049,54.2262648],[-7.6958168,54.2260279],[-7.6960999,54.225555],[-7.6964579,54.2250999],[-7.6968809,54.224668],[-7.697355,54.224264],[-7.6976109,54.2240708],[-7.6978739,54.2238909],[-7.6987458,54.2234189],[-7.6990049,54.2232598],[-7.6992228,54.2230899],[-7.699392,54.2229109],[-7.6995129,54.222718],[-7.6997358,54.2221029],[-7.6999539,54.2212308],[-7.7000189,54.2207749],[-7.7000478,54.2192728],[-7.7000908,54.218647],[-7.7002503,54.2175923],[-7.7002543,54.2175718]]}};
var route3 = {"type":"Feature","properties":{"name":"Bus 3","desc":"\n150 miles"},"geometry":{"type":"LineString","coordinates":[[-7.5979896,54.3355772],[-7.5979344,54.3355287],[-7.5977146,54.3354631],[-7.5967491,54.3357884],[-7.5963627,54.3362292],[-7.5962823,54.3362889],[-7.5961267,54.3363231],[-7.5958371,54.3363263],[-7.595703,54.3363449],[-7.5942438,54.3367078],[-7.5938469,54.3369143],[-7.5936965,54.337152],[-7.5936751,54.3373772],[-7.5931763,54.3376085],[-7.5921731,54.3379775],[-7.5920015,54.3379963],[-7.591347,54.3377399],[-7.5909501,54.3379276],[-7.5893622,54.3375897],[-7.5874954,54.3367016],[-7.5860288,54.3362255],[-7.5860407,54.3360871],[-7.5886655,54.3357753],[-7.5890682,54.3356123],[-7.5893659,54.3354406],[-7.5897535,54.3351498],[-7.5899819,54.3349133],[-7.5904447,54.3346294],[-7.5913673,54.3341651],[-7.5915506,54.3340373],[-7.5916828,54.3337726],[-7.591806,54.3333328],[-7.5919384,54.3327107],[-7.5924191,54.3318844],[-7.5925559,54.3317889],[-7.592679,54.3317319],[-7.5933507,54.3315006],[-7.5944627,54.3310556],[-7.5955383,54.3308417],[-7.5961755,54.330649],[-7.5967468,54.3304187],[-7.597053,54.33019],[-7.5973956,54.3298463],[-7.5975519,54.3293732],[-7.5976601,54.329205],[-7.5976781,54.3290018],[-7.5975219,54.3287284],[-7.5971974,54.3282938],[-7.5960433,54.3271934],[-7.5953161,54.3266536],[-7.5949795,54.3263591],[-7.5942823,54.3254023],[-7.5937833,54.3249325],[-7.5931584,54.3244802],[-7.5924791,54.3241088],[-7.5920043,54.3239265],[-7.5915536,54.3238389],[-7.5914034,54.3237639],[-7.5922513,54.3236387],[-7.5930785,54.3234319],[-7.5947121,54.3230926],[-7.5952558,54.3230132],[-7.595882,54.3229719],[-7.5963871,54.3229752],[-7.5967358,54.3230168],[-7.5971907,54.323139],[-7.5981863,54.3235284],[-7.5986827,54.3236352],[-7.5991582,54.3237644],[-7.5996013,54.3238333],[-7.5998848,54.3238592],[-7.6001147,54.323786],[-7.600153,54.3237352],[-7.6001825,54.3236884],[-7.6009245,54.3237639],[-7.6014353,54.3237804],[-7.6027725,54.3237853],[-7.6036302,54.323789],[-7.6044975,54.3238577],[-7.6051161,54.3239472],[-7.6067941,54.3242821],[-7.608507,54.3247986],[-7.6095188,54.3250863],[-7.610788,54.3254838],[-7.6124556,54.3260909],[-7.6133687,54.3264899],[-7.6141827,54.326876],[-7.6149149,54.3272496],[-7.6148476,54.3273171],[-7.6148253,54.3274284],[-7.6148785,54.3277728],[-7.6148704,54.3279999],[-7.6147787,54.3282847],[-7.6146515,54.3285399],[-7.614563,54.3287792],[-7.61459,54.3290512],[-7.6150339,54.3296968],[-7.6152969,54.3304079],[-7.6153662,54.3307002],[-7.6156843,54.3311891],[-7.615776,54.3315749],[-7.6170713,54.3332673],[-7.6175228,54.3342222],[-7.6177742,54.3346255],[-7.6179132,54.3347559],[-7.6181264,54.3349044],[-7.6183861,54.3350519],[-7.6189305,54.3352417],[-7.62015,54.3355052],[-7.6204471,54.3355539],[-7.6209988,54.3356308],[-7.6213935,54.3356664],[-7.6219426,54.3356895],[-7.6238505,54.3356511],[-7.6241277,54.3356319],[-7.624183,54.3356181],[-7.6246921,54.3366055],[-7.6251034,54.337725],[-7.6252205,54.33824],[-7.6252892,54.3387652],[-7.6254666,54.3393749],[-7.6258549,54.3402667],[-7.6260216,54.3405789],[-7.6262576,54.3408838],[-7.6273929,54.3419919],[-7.6283665,54.3428986],[-7.6285172,54.3430108],[-7.6287528,54.3431317],[-7.6290626,54.3432317],[-7.631325,54.3438033],[-7.6315714,54.3438808],[-7.6330295,54.3441434],[-7.6335383,54.3442498],[-7.6337594,54.3442762],[-7.6340444,54.3442817],[-7.6345322,54.3442563],[-7.6345946,54.3442604],[-7.6345049,54.3442906],[-7.6344516,54.3443195],[-7.6344261,54.344475],[-7.6344658,54.3445387],[-7.6346755,54.3446773],[-7.6352717,54.3449384],[-7.6356243,54.3451336],[-7.6359792,54.3453699],[-7.6356243,54.3451336],[-7.6352717,54.3449384],[-7.6346755,54.3446773],[-7.6344658,54.3445387],[-7.6341435,54.3444195],[-7.6339464,54.3443612],[-7.6337941,54.34434],[-7.6335383,54.3442498],[-7.6330295,54.3441434],[-7.6324146,54.3440393],[-7.6315714,54.3438808],[-7.6314103,54.3439991],[-7.6306505,54.3446812],[-7.6304506,54.3449336],[-7.6301334,54.3454769],[-7.6300114,54.3459003],[-7.6298658,54.3463619],[-7.629743,54.3468612],[-7.6295996,54.3472477],[-7.6293655,54.3476901],[-7.6288668,54.3483674],[-7.6285586,54.3486876],[-7.62701,54.3500756],[-7.6252745,54.3515549],[-7.6248307,54.352042],[-7.6246826,54.3523178],[-7.6246194,54.352533],[-7.6245926,54.3527764],[-7.6248225,54.3542133],[-7.6249458,54.3545735],[-7.6250518,54.3547279],[-7.6252727,54.3549542],[-7.6260643,54.3556123],[-7.6267321,54.3561387],[-7.6269215,54.3562421],[-7.627208,54.3563538],[-7.6291725,54.356992],[-7.6296897,54.3572],[-7.6301802,54.3574405],[-7.630525,54.3576372],[-7.6311806,54.3580872],[-7.6319517,54.3587477],[-7.6331772,54.3597369],[-7.6339084,54.3602743],[-7.634142,54.3604326],[-7.6342322,54.3604082],[-7.6343413,54.3604071],[-7.6344326,54.3604295],[-7.6345101,54.3604783],[-7.6345403,54.3605286],[-7.634535,54.3605884],[-7.6344972,54.3606359],[-7.6344266,54.360675],[-7.6345688,54.3608203],[-7.6350124,54.3611855],[-7.6352604,54.3614338],[-7.6354682,54.361722],[-7.635639,54.3622862],[-7.6357322,54.362723],[-7.6357771,54.3632033],[-7.6357411,54.3635528],[-7.6355912,54.3639668],[-7.6343626,54.3664026],[-7.6340711,54.3669215],[-7.6342368,54.3669713],[-7.6343292,54.3670655],[-7.6343166,54.3671773],[-7.6341936,54.3672676],[-7.6341031,54.3672928],[-7.6339051,54.3672905],[-7.6333333,54.3683638],[-7.6328477,54.3692914],[-7.6325957,54.369267],[-7.6323738,54.3693122],[-7.6317411,54.3695587],[-7.6299691,54.3701596],[-7.6294888,54.3702952],[-7.6296806,54.3705688],[-7.6295975,54.3707016],[-7.6293319,54.3710125],[-7.6293105,54.3710814],[-7.6293677,54.3711797],[-7.6294966,54.3713317],[-7.6293105,54.3710814],[-7.6293319,54.3710125],[-7.6296672,54.3706111],[-7.6296806,54.3705688],[-7.6296365,54.3705006],[-7.6294888,54.3702952],[-7.6299691,54.3701596],[-7.6309556,54.3698312],[-7.6317411,54.3695587],[-7.6323738,54.3693122],[-7.6325957,54.369267],[-7.6327758,54.3692778],[-7.6328477,54.3692914],[-7.6324981,54.3700206],[-7.6323423,54.3706506],[-7.632333,54.3711881],[-7.6324249,54.3716579],[-7.6326968,54.3723022],[-7.6347833,54.3755553],[-7.6350218,54.3759619],[-7.6364392,54.3787145],[-7.6367166,54.3793117],[-7.6368496,54.3797878],[-7.6369189,54.3802737],[-7.6368119,54.3821358],[-7.6368147,54.3824102],[-7.6368496,54.3826356],[-7.6369881,54.3830761],[-7.6370662,54.3832646],[-7.6372711,54.3836347],[-7.6376092,54.3840484],[-7.6383138,54.3848219],[-7.6387616,54.385372],[-7.6391557,54.3860951],[-7.639409,54.3867636],[-7.6394027,54.3870487],[-7.6393362,54.3873382],[-7.6393712,54.3874637],[-7.639475,54.3874682],[-7.6395633,54.3874971],[-7.6396255,54.3875496],[-7.6396409,54.3876017],[-7.6396139,54.3876625],[-7.6395701,54.3876964],[-7.6397074,54.3877604],[-7.6399343,54.3879091],[-7.6400079,54.3880158],[-7.6402701,54.388532],[-7.6413164,54.3908198],[-7.6421333,54.3923923],[-7.6430701,54.3945351],[-7.644229,54.3972214],[-7.6444616,54.3979318],[-7.6453913,54.4014285],[-7.6456005,54.4018637],[-7.6458173,54.4021822],[-7.6460808,54.4024191],[-7.6464221,54.4026782],[-7.6466014,54.4027907],[-7.6504402,54.4048634],[-7.6505653,54.4049189],[-7.6503791,54.4050497],[-7.6502463,54.4050966],[-7.6499702,54.4051454],[-7.6493168,54.4053252],[-7.6486828,54.4056452],[-7.6482117,54.4059246],[-7.6472675,54.4069049],[-7.6466774,54.4072296],[-7.6461624,54.4075544],[-7.6459469,54.4077183],[-7.6457118,54.40836],[-7.6456262,54.4088031],[-7.6454008,54.4095025],[-7.6451648,54.4097834],[-7.6442635,54.4107513],[-7.6436628,54.4114881],[-7.6432969,54.411802],[-7.6426757,54.412612],[-7.642504,54.4130989],[-7.6425351,54.4141806],[-7.6426541,54.4149346],[-7.6431477,54.4165266],[-7.6437915,54.4187239],[-7.6446712,54.4214645],[-7.6445533,54.4216392],[-7.6436413,54.4227441],[-7.6416081,54.4250446],[-7.641457,54.4252484],[-7.6414124,54.4252693],[-7.6414052,54.4252726],[-7.6377733,54.4250735],[-7.6369865,54.4250314],[-7.6368144,54.4250236],[-7.6365925,54.4250167],[-7.6363064,54.4250504],[-7.6359624,54.4251959],[-7.6355422,54.4253328],[-7.6338038,54.4256088],[-7.6320434,54.4258448],[-7.6315835,54.4258342],[-7.6310003,54.4257962],[-7.6294537,54.425731],[-7.6276971,54.4256172],[-7.6257478,54.4254572],[-7.6256905,54.4254552],[-7.6256404,54.4256433],[-7.6249134,54.4271083],[-7.6248374,54.4273575],[-7.6228073,54.4273271],[-7.6206745,54.42725],[-7.6168433,54.4271485],[-7.6163418,54.4271191],[-7.6156713,54.4270207],[-7.6144205,54.4267912],[-7.6137049,54.4266307],[-7.6131865,54.4264372],[-7.6123414,54.4260864],[-7.6115019,54.4257849],[-7.6110061,54.4255392],[-7.610623,54.4253917],[-7.6100651,54.4252441],[-7.6071126,54.4245788],[-7.6051239,54.4241688],[-7.6047068,54.424064],[-7.6043801,54.4240049],[-7.6040421,54.4239723],[-7.6036082,54.4240017],[-7.6024756,54.4241984],[-7.6020982,54.4242279],[-7.6011458,54.4241755],[-7.6007852,54.4241886],[-7.6003909,54.4242575],[-7.6000361,54.4243624],[-7.5997598,54.4244246],[-7.5996233,54.4244477],[-7.5994782,54.4244508],[-7.5991683,54.4244212],[-7.5960412,54.4238248],[-7.594217,54.4232662],[-7.5941555,54.4232483],[-7.5946996,54.4226457],[-7.5949091,54.4223887],[-7.5950913,54.4221149],[-7.595063,54.4219094],[-7.5949196,54.4214382],[-7.5948104,54.4208963],[-7.594846,54.4205521],[-7.5950028,54.420104],[-7.5948637,54.4200539],[-7.5947838,54.4199065],[-7.5948028,54.4195543],[-7.5948616,54.4192893],[-7.5948555,54.4191721],[-7.5948257,54.4189858],[-7.5946707,54.4185639],[-7.5945308,54.4183766],[-7.5937763,54.4175153],[-7.593243,54.4172322],[-7.5929077,54.4171241],[-7.591735,54.4169142],[-7.5895388,54.4165812],[-7.5891696,54.4165163],[-7.5888362,54.4164098],[-7.5881623,54.4161308],[-7.5865676,54.4154122],[-7.5850112,54.4145725],[-7.5836219,54.4138865],[-7.5825212,54.4132962],[-7.5816141,54.4125973],[-7.5812338,54.4124399],[-7.5790193,54.4124276],[-7.577922,54.4124055],[-7.5770844,54.4124099],[-7.5769987,54.4121214],[-7.5760197,54.4109519],[-7.5748607,54.4101696],[-7.5744157,54.409966],[-7.5733272,54.4097257],[-7.5703963,54.4092611],[-7.5689535,54.408845],[-7.5680893,54.4085506],[-7.5689535,54.408845],[-7.5703963,54.4092611],[-7.5733272,54.4097257],[-7.5744157,54.409966],[-7.5748607,54.4101696],[-7.5760197,54.4109519],[-7.5769987,54.4121214],[-7.5770844,54.4124099],[-7.577922,54.4124055],[-7.5790193,54.4124276],[-7.5812338,54.4124399],[-7.5816141,54.4125973],[-7.5825212,54.4132962],[-7.5836219,54.4138865],[-7.5850112,54.4145725],[-7.5865676,54.4154122],[-7.5881623,54.4161308],[-7.5888362,54.4164098],[-7.5891696,54.4165163],[-7.5895388,54.4165812],[-7.591735,54.4169142],[-7.5929077,54.4171241],[-7.593243,54.4172322],[-7.5937763,54.4175153],[-7.5945308,54.4183766],[-7.5946707,54.4185639],[-7.5948257,54.4189858],[-7.5948555,54.4191721],[-7.5948616,54.4192893],[-7.5948028,54.4195543],[-7.5947838,54.4199065],[-7.5948637,54.4200539],[-7.5950028,54.420104],[-7.594846,54.4205521],[-7.5948104,54.4208963],[-7.5949196,54.4214382],[-7.595063,54.4219094],[-7.5950913,54.4221149],[-7.5949091,54.4223887],[-7.5946996,54.4226457],[-7.5942771,54.4231021],[-7.5938238,54.4236417],[-7.5936852,54.4237974],[-7.5939588,54.423942],[-7.5943503,54.4242975],[-7.5945055,54.4245412],[-7.5947923,54.4251184],[-7.5949756,54.4255116],[-7.5958386,54.4273342],[-7.5963572,54.4283656],[-7.5973464,54.4305573],[-7.5976878,54.4311055],[-7.5979968,54.4314587],[-7.5983815,54.4317913],[-7.5988315,54.4320994],[-7.599774,54.4325783],[-7.6012745,54.4332721],[-7.6019704,54.4336754],[-7.607675,54.4378092],[-7.6097224,54.4393105],[-7.6102709,54.4397411],[-7.6107617,54.4401751],[-7.6109392,54.4403636],[-7.6110933,54.4406016],[-7.6114066,54.4411746],[-7.6116472,54.4416211],[-7.6117504,54.4418643],[-7.6117849,54.4420687],[-7.6117579,54.442256],[-7.6115677,54.4425837],[-7.6114934,54.4428089],[-7.6115206,54.4429532],[-7.6115874,54.4430829],[-7.6119985,54.4434314],[-7.6126577,54.4438758],[-7.6129854,54.444068],[-7.61376,54.4444223],[-7.6143615,54.4447278],[-7.6145558,54.4448541],[-7.614899,54.4451662],[-7.6153951,54.4457079],[-7.6155459,54.4459305],[-7.6156583,54.4462421],[-7.615654,54.4466508],[-7.6154755,54.4479446],[-7.6154709,54.4484985],[-7.6155459,54.4488971],[-7.6157434,54.4492894],[-7.6159669,54.4496122],[-7.6161302,54.4497845],[-7.6168483,54.4504195],[-7.6172545,54.4508192],[-7.6174149,54.4510278],[-7.6175267,54.4512467],[-7.6175887,54.4514637],[-7.6175395,54.4523125],[-7.6175263,54.4534667],[-7.6174799,54.4541187],[-7.6174203,54.4544433],[-7.6170843,54.4556082],[-7.617051,54.4558424],[-7.6170726,54.4561972],[-7.6173799,54.4567631],[-7.6175323,54.4569104],[-7.6176921,54.4570162],[-7.6179353,54.4571201],[-7.618095,54.4571578],[-7.6202679,54.4575059],[-7.6207958,54.4576665],[-7.6212257,54.4578514],[-7.6216342,54.4580693],[-7.6221634,54.4582903],[-7.6248204,54.4593108],[-7.6250402,54.4593631],[-7.6249022,54.4596399],[-7.624843,54.4598511],[-7.6248262,54.4600689],[-7.6252967,54.4621649],[-7.6254094,54.4628003],[-7.6255079,54.46356],[-7.6255416,54.4641069],[-7.625553,54.4652334],[-7.6255867,54.4655723],[-7.6257108,54.4658867],[-7.625905,54.466237],[-7.626271,54.4668279],[-7.6266769,54.4674699],[-7.6269757,54.4678613],[-7.6272771,54.4681576],[-7.6275503,54.4683737],[-7.6288607,54.4691023],[-7.6310433,54.4702281],[-7.6327925,54.4710559],[-7.633502,54.4713476],[-7.633605,54.4714126],[-7.6336898,54.4714938],[-7.6337609,54.4714813],[-7.6338809,54.4715102],[-7.6339304,54.4715799],[-7.633909,54.4716279],[-7.6338472,54.4716611],[-7.6336985,54.4716639],[-7.6336671,54.4716532],[-7.6336054,54.4716059],[-7.6336006,54.4715476],[-7.633641,54.4715102],[-7.6337609,54.4714813],[-7.6338809,54.4715102],[-7.6339109,54.4715413],[-7.6339304,54.4715799],[-7.633784,54.4718345],[-7.63338,54.4723411],[-7.6328749,54.4728895],[-7.6326979,54.4731238],[-7.6326646,54.4732508],[-7.6324625,54.473843],[-7.632453,54.473964],[-7.6324804,54.4740846],[-7.6326152,54.4742958],[-7.632854,54.4744986],[-7.6332481,54.4747339],[-7.6336002,54.4748914],[-7.6341038,54.4750799],[-7.6351298,54.4753931],[-7.6355252,54.4755579],[-7.6360233,54.4758125],[-7.6379318,54.4768614],[-7.6407526,54.4785145],[-7.6414307,54.4788254],[-7.6441614,54.4798163],[-7.6446751,54.4799832],[-7.6446159,54.480073],[-7.6446336,54.4801259],[-7.6450309,54.4806507],[-7.6456928,54.4816156],[-7.64715,54.4835408],[-7.6484565,54.4849909],[-7.6487224,54.4853118],[-7.6488279,54.4856017],[-7.648818,54.4860589],[-7.6488595,54.4863465],[-7.6490518,54.4866712],[-7.6491143,54.4868655],[-7.6491086,54.4870329],[-7.6489864,54.4874541],[-7.648867,54.487995],[-7.6488025,54.4886331],[-7.6488443,54.4888997],[-7.6489292,54.4891014],[-7.6491453,54.4893638],[-7.649349,54.4897313],[-7.6496912,54.4901974],[-7.6498225,54.490327],[-7.6500701,54.4905041],[-7.6504115,54.4906967],[-7.6505845,54.4908284],[-7.6506983,54.4909515],[-7.6520244,54.492648],[-7.6522508,54.4929667],[-7.652355,54.4931549],[-7.6524041,54.4933022],[-7.6524649,54.493766],[-7.6522659,54.4946638],[-7.652284,54.4951269],[-7.653147,54.4968332],[-7.6535432,54.4975097],[-7.6537734,54.4977472],[-7.6544084,54.498113],[-7.6553175,54.498669],[-7.6555667,54.4988518],[-7.6558998,54.4990623],[-7.6593198,54.5011631],[-7.6618628,54.5027549],[-7.6627644,54.5032703],[-7.6628124,54.5032916],[-7.6628424,54.5033219],[-7.6640958,54.5040359],[-7.6662753,54.5054159],[-7.6667499,54.5056659],[-7.6678268,54.5063288],[-7.6680207,54.5065117],[-7.6681118,54.5067919],[-7.6688658,54.5077098],[-7.6692968,54.5087119],[-7.6693799,54.5089549],[-7.6694447,54.5093448],[-7.6692909,54.5102508],[-7.669252,54.5110119],[-7.6692559,54.511458],[-7.6692909,54.5116599],[-7.669485,54.5121719],[-7.6701498,54.5136838],[-7.6701399,54.5138507],[-7.6700818,54.5140139],[-7.6697133,54.514571],[-7.669585,54.514889],[-7.6694948,54.5153759],[-7.6689089,54.5167958],[-7.6687194,54.5174156],[-7.6686205,54.5174872],[-7.6683709,54.5176062],[-7.6675761,54.5179448],[-7.6674415,54.5180007],[-7.667518,54.5180935],[-7.6673826,54.5190795],[-7.6674193,54.5195022],[-7.6676741,54.5208109],[-7.6677078,54.5211564],[-7.6676732,54.5225791],[-7.6678373,54.5229166],[-7.6680686,54.5234826],[-7.6682091,54.5239736],[-7.6682562,54.5243935],[-7.6682407,54.5249355],[-7.6681511,54.525946],[-7.6679632,54.5262649],[-7.667358,54.5266572],[-7.6639769,54.528682],[-7.6618453,54.5299229],[-7.6609012,54.5305037],[-7.6593162,54.5314389],[-7.6590538,54.5316274],[-7.6586906,54.5319743],[-7.658604,54.5321037],[-7.658554,54.5322382],[-7.6585179,54.5326418],[-7.6584939,54.5326983],[-7.6584177,54.5327029],[-7.6584939,54.5326983],[-7.6584793,54.5327676],[-7.6585168,54.5334452],[-7.6586328,54.5340537],[-7.6586615,54.5341804],[-7.658699,54.5343624],[-7.6587954,54.5347483],[-7.6589409,54.5351508],[-7.6592935,54.5360045],[-7.6598951,54.5373325],[-7.6599603,54.5375503],[-7.6599527,54.5379636],[-7.6599674,54.538291],[-7.6599987,54.538424],[-7.6601066,54.5385688],[-7.6611964,54.5395742],[-7.6622709,54.5403118],[-7.6624011,54.540462],[-7.6625477,54.5404616],[-7.6625783,54.5404796],[-7.6635059,54.5410597],[-7.6658729,54.5426128],[-7.666363,54.5429069],[-7.6667309,54.5430987],[-7.6677045,54.5435724],[-7.6678287,54.5435348],[-7.6688398,54.543453],[-7.6716319,54.5432878],[-7.6747687,54.5430769],[-7.6754989,54.5430618],[-7.675712,54.5430838],[-7.6763879,54.5431987],[-7.6771809,54.5433479],[-7.6788869,54.543714],[-7.6800898,54.5439358],[-7.680624,54.5440168],[-7.6829392,54.5441705],[-7.6832086,54.5441833],[-7.684529,54.5413359],[-7.6854033,54.5392416],[-7.6864868,54.5363068],[-7.6882465,54.5313452],[-7.6880105,54.5308285],[-7.6879622,54.5301936],[-7.6878602,54.5298294],[-7.6876778,54.5296458],[-7.6869322,54.5292814],[-7.6866962,54.5291134],[-7.6865407,54.5289547],[-7.686519,54.5287118],[-7.6863222,54.5283518],[-7.6862134,54.528248],[-7.6856339,54.5279057],[-7.684051,54.5268989],[-7.6839218,54.5267928],[-7.6838782,54.526727],[-7.683864,54.5266894],[-7.6856952,54.5267354],[-7.6871009,54.5268159],[-7.6885996,54.5269829],[-7.6904442,54.5270168],[-7.692224,54.5269308],[-7.6942721,54.5267821],[-7.7037148,54.5253574],[-7.7153552,54.5236859],[-7.7178987,54.523323],[-7.7180829,54.5232981],[-7.7212348,54.5228059],[-7.7221153,54.5226931],[-7.7223351,54.5226787],[-7.722499,54.5226789],[-7.7226546,54.5227216],[-7.7227676,54.5228525],[-7.7228604,54.5230511],[-7.722887,54.5231084],[-7.7236768,54.5229533],[-7.7240344,54.5228544],[-7.7242089,54.5227819],[-7.7244071,54.5226441],[-7.7245418,54.5225249],[-7.7246958,54.5223114],[-7.7248763,54.521864],[-7.7248944,54.5217068],[-7.7248791,54.5216101],[-7.7246463,54.5210554],[-7.7238776,54.5187215],[-7.7232245,54.5168423],[-7.7229597,54.5159386],[-7.722778,54.5151454],[-7.7226337,54.5143745],[-7.7225909,54.5141437],[-7.7225819,54.5141096],[-7.7223794,54.5133478],[-7.7211212,54.5079681],[-7.7211235,54.5078051],[-7.7212628,54.5076327],[-7.7215504,54.5074239],[-7.7220864,54.5070763],[-7.7221915,54.5068986],[-7.7221839,54.5068343],[-7.7220728,54.5067067],[-7.721729,54.5065333],[-7.7203374,54.5059932],[-7.7200735,54.5057911],[-7.7183261,54.503215],[-7.7171422,54.5013973],[-7.7166427,54.5006906],[-7.7164907,54.5004123],[-7.7163897,54.5002417],[-7.7161208,54.5002398],[-7.7153787,54.5000856],[-7.7145727,54.4999703],[-7.713745,54.4999494],[-7.7077089,54.5003223],[-7.7059964,54.5004121],[-7.7057889,54.5004363],[-7.7057369,54.5004441],[-7.7055514,54.5000593],[-7.7053193,54.4996924],[-7.7050745,54.4993739],[-7.7048341,54.4991094],[-7.7042768,54.4985759],[-7.7029943,54.4975734],[-7.7026822,54.4972695],[-7.7026175,54.4971435],[-7.7025944,54.497034],[-7.702641,54.4967675],[-7.7027285,54.496628],[-7.7080576,54.4899999],[-7.7082524,54.4897473],[-7.7083563,54.4895575],[-7.7083424,54.4892919],[-7.7082788,54.4891679],[-7.7064369,54.486731],[-7.7063734,54.4866282],[-7.7063257,54.4864575],[-7.7062864,54.4862612],[-7.7063706,54.4856374],[-7.7063911,54.4852947],[-7.7068424,54.4833067],[-7.706861,54.4829167],[-7.7068399,54.4827108],[-7.7067787,54.4825063],[-7.7065213,54.4820204],[-7.7063121,54.4817562],[-7.7060668,54.481532],[-7.7043455,54.4803173],[-7.7038705,54.4800081],[-7.7036153,54.4798541],[-7.7005451,54.4781667],[-7.7002004,54.4779467],[-7.6995177,54.4772848],[-7.6991873,54.4769111],[-7.6991068,54.4767586],[-7.6989487,54.4762637],[-7.6989412,54.4760528],[-7.6989705,54.4758878],[-7.6990733,54.4757127],[-7.6992839,54.4755372],[-7.7080259,54.4710652],[-7.7122999,54.4689925],[-7.7129397,54.4685883],[-7.7133957,54.46825],[-7.7135471,54.4681081],[-7.7139146,54.467661],[-7.7140873,54.4674157],[-7.7142775,54.4668452],[-7.7149808,54.4643941],[-7.7150198,54.4641973],[-7.7150101,54.4639821],[-7.7149663,54.4638393],[-7.7146059,54.4632872],[-7.7143136,54.4628865],[-7.7140286,54.4625667],[-7.7126672,54.4611936],[-7.7093406,54.4579336],[-7.7076847,54.4563961],[-7.7019397,54.4515596],[-7.6992439,54.4492615],[-7.6909717,54.4424913],[-7.6905236,54.4420053],[-7.6903701,54.4417773],[-7.6902337,54.441497],[-7.6901462,54.4412122],[-7.6899659,54.4395155],[-7.6898213,54.4385091],[-7.6896688,54.4381659],[-7.6888213,54.4370965],[-7.6885838,54.4368605],[-7.6882524,54.4365768],[-7.6877959,54.4362395],[-7.6873602,54.4359776],[-7.6869033,54.4357452],[-7.6859506,54.4353745],[-7.6826418,54.4341899],[-7.6815469,54.433817],[-7.6807434,54.4334964],[-7.6802313,54.433261],[-7.6796952,54.4329745],[-7.6789021,54.4324436],[-7.6784205,54.4320875],[-7.6779639,54.4316388],[-7.6751513,54.4284209],[-7.6746283,54.4274355],[-7.6743875,54.4267085],[-7.6734401,54.4225737],[-7.6733388,54.4223039],[-7.6731793,54.4219795],[-7.6729767,54.4217014],[-7.6726831,54.4213894],[-7.6723752,54.4211174],[-7.6583356,54.4122581],[-7.6574521,54.4116485],[-7.6570757,54.4112996],[-7.6566376,54.410784],[-7.6536616,54.4062833],[-7.6532462,54.4059259],[-7.6527893,54.4056407],[-7.6521607,54.4054241],[-7.6510411,54.405106],[-7.6504402,54.4048634],[-7.6466014,54.4027907],[-7.6464221,54.4026782],[-7.6460808,54.4024191],[-7.6458173,54.4021822],[-7.6456005,54.4018637],[-7.6453913,54.4014285],[-7.6444616,54.3979318],[-7.644229,54.3972214],[-7.6421333,54.3923923],[-7.6413164,54.3908198],[-7.6402701,54.388532],[-7.6400079,54.3880158],[-7.6399343,54.3879091],[-7.6397074,54.3877604],[-7.6395701,54.3876964],[-7.639464,54.387731],[-7.6393353,54.3877286],[-7.6392865,54.3877157],[-7.6391749,54.3876185],[-7.6391825,54.3875587],[-7.6392332,54.3875069],[-7.6393712,54.3874637],[-7.6393362,54.3873382],[-7.6394027,54.3870487],[-7.639409,54.3867636],[-7.6391557,54.3860951],[-7.6387616,54.385372],[-7.6383138,54.3848219],[-7.6376092,54.3840484],[-7.6372711,54.3836347],[-7.6370662,54.3832646],[-7.6369881,54.3830761],[-7.6368496,54.3826356],[-7.6368147,54.3824102],[-7.6368119,54.3821358],[-7.6369189,54.3802737],[-7.6368496,54.3797878],[-7.6367166,54.3793117],[-7.6364392,54.3787145],[-7.6350218,54.3759619],[-7.6347833,54.3755553],[-7.6326968,54.3723022],[-7.6324249,54.3716579],[-7.632333,54.3711881],[-7.6323423,54.3706506],[-7.6324981,54.3700206],[-7.6328477,54.3692914],[-7.6338284,54.3674241],[-7.6339051,54.3672905],[-7.633809,54.3672605],[-7.6337349,54.367214],[-7.6336913,54.3671557],[-7.6336829,54.3670923],[-7.6337105,54.3670309],[-7.6337712,54.366978],[-7.6338583,54.3669398],[-7.6339621,54.3669202],[-7.6340711,54.3669215],[-7.6341601,54.3669394],[-7.6342368,54.3669713],[-7.6343292,54.3670655],[-7.6343374,54.3671203],[-7.6346611,54.3671073],[-7.6352605,54.3669884],[-7.6354554,54.3669145],[-7.6361684,54.3665898],[-7.6363826,54.3665401],[-7.636451,54.3664216],[-7.6366013,54.3663156],[-7.6366842,54.3662817],[-7.6368799,54.3662866],[-7.6369753,54.3663993],[-7.6369557,54.3664497],[-7.6367305,54.3665894],[-7.6366363,54.3666008],[-7.6365733,54.3668878],[-7.6364375,54.3672142],[-7.6365977,54.3673134],[-7.6369718,54.3671687],[-7.637052,54.3671687],[-7.6371221,54.3671913],[-7.6372875,54.367292],[-7.6373573,54.3673346],[-7.6371221,54.3671913],[-7.637052,54.3671687],[-7.6369718,54.3671687],[-7.6365977,54.3673134],[-7.6364375,54.3672142],[-7.6365733,54.3668878],[-7.6366363,54.3666008],[-7.6365515,54.3666116],[-7.6364148,54.3665688],[-7.6363826,54.3665401],[-7.6361684,54.3665898],[-7.6354554,54.3669145],[-7.6352605,54.3669884],[-7.6346611,54.3671073],[-7.6344924,54.3671212],[-7.6343374,54.3671203],[-7.6343166,54.3671773],[-7.6341936,54.3672676],[-7.6341031,54.3672928],[-7.6340036,54.3673006],[-7.6339051,54.3672905],[-7.633809,54.3672605],[-7.6337349,54.367214],[-7.6336913,54.3671557],[-7.6336829,54.3670923],[-7.6337105,54.3670309],[-7.6337712,54.366978],[-7.6338583,54.3669398],[-7.6339621,54.3669202],[-7.6340711,54.3669215],[-7.6343626,54.3664026],[-7.6355912,54.3639668],[-7.6357411,54.3635528],[-7.6357771,54.3632033],[-7.6357322,54.362723],[-7.635639,54.3622862],[-7.6354682,54.361722],[-7.6352604,54.3614338],[-7.6350124,54.3611855],[-7.6345688,54.3608203],[-7.6344266,54.360675],[-7.6343408,54.3606953],[-7.6342517,54.3606964],[-7.6341627,54.3606776],[-7.6340865,54.3606372],[-7.6328538,54.360792],[-7.6320454,54.360867],[-7.6316345,54.3608907],[-7.6312803,54.3608938],[-7.6304927,54.3608633],[-7.6297328,54.3607657],[-7.6293371,54.3606908],[-7.6288843,54.3605768],[-7.6278146,54.3602499],[-7.6270813,54.3599566],[-7.6266704,54.3597658],[-7.6259902,54.3594818],[-7.6258873,54.3595289],[-7.6257907,54.3595404],[-7.6256975,54.3595304],[-7.6256132,54.3594985],[-7.6255573,54.3594505],[-7.6255394,54.3593789],[-7.6255645,54.3593288],[-7.6252149,54.3592094],[-7.6247513,54.3590018],[-7.624066,54.3586022],[-7.6232405,54.3580127],[-7.6224504,54.3574088],[-7.6220227,54.3571075],[-7.6220658,54.3570477],[-7.6220449,54.3570039],[-7.6219743,54.3569683],[-7.6218705,54.3569663],[-7.6218279,54.3569799],[-7.6194169,54.3554093],[-7.618593,54.3547125],[-7.6184643,54.3545577],[-7.6182725,54.3543003],[-7.6181911,54.3543262],[-7.6180937,54.354336],[-7.6179972,54.3543271],[-7.6178731,54.3542796],[-7.617809,54.3542136],[-7.6178035,54.3541268],[-7.617864,54.3540544],[-7.6179737,54.354006],[-7.6179907,54.3538027],[-7.6182356,54.3532993],[-7.6183084,54.3530581],[-7.6183161,54.3528232],[-7.6181941,54.352223],[-7.6180437,54.3519714],[-7.6168531,54.3503868],[-7.616044,54.3490172],[-7.6160226,54.3489222],[-7.61592,54.3489291],[-7.6158002,54.3489107],[-7.6157093,54.3488695],[-7.6156476,54.3488051],[-7.6135663,54.3492998],[-7.612534,54.3495107],[-7.6114986,54.3496848],[-7.6101199,54.3498554],[-7.6087149,54.3499748],[-7.6074457,54.3501166],[-7.6067969,54.3502077],[-7.6052124,54.3505364],[-7.6039012,54.3508676],[-7.6025342,54.3513096],[-7.6018253,54.3515741],[-7.6011132,54.3518706],[-7.5996827,54.3525257],[-7.5965,54.3540333],[-7.5921107,54.356047],[-7.5898627,54.3569],[-7.5888874,54.3572542],[-7.5882591,54.357437],[-7.5877072,54.3575299],[-7.587124,54.3575815],[-7.5844453,54.3576616],[-7.5838884,54.3577031],[-7.5833717,54.3577596],[-7.5803006,54.3582126],[-7.579316,54.3584107],[-7.5785642,54.3585806],[-7.576729,54.359072],[-7.575465,54.3594497],[-7.5745882,54.3597703],[-7.5741283,54.3599936],[-7.573495,54.3604112],[-7.5722135,54.361347],[-7.5717913,54.3615912],[-7.5713388,54.3618039],[-7.5706502,54.3620753],[-7.5698983,54.3623115],[-7.5693115,54.3624307],[-7.563859,54.3632579],[-7.5638313,54.3632621],[-7.5693115,54.3624307],[-7.5698983,54.3623115],[-7.5706502,54.3620753],[-7.5713388,54.3618039],[-7.5717913,54.3615912],[-7.5722135,54.361347],[-7.573495,54.3604112],[-7.5741283,54.3599936],[-7.5745882,54.3597703],[-7.575465,54.3594497],[-7.576729,54.359072],[-7.5785642,54.3585806],[-7.579316,54.3584107],[-7.5803006,54.3582126],[-7.5833717,54.3577596],[-7.5838884,54.3577031],[-7.5844453,54.3576616],[-7.587124,54.3575815],[-7.5877072,54.3575299],[-7.5882591,54.357437],[-7.5888874,54.3572542],[-7.5898627,54.3569],[-7.5921107,54.356047],[-7.5965,54.3540333],[-7.5996827,54.3525257],[-7.6011132,54.3518706],[-7.6018253,54.3515741],[-7.6025342,54.3513096],[-7.6039012,54.3508676],[-7.6052124,54.3505364],[-7.6067969,54.3502077],[-7.6074457,54.3501166],[-7.6087149,54.3499748],[-7.6101199,54.3498554],[-7.6114986,54.3496848],[-7.612534,54.3495107],[-7.6135663,54.3492998],[-7.6149514,54.3489629],[-7.6153504,54.3488816],[-7.6156476,54.3488051],[-7.615642,54.3487144],[-7.6157056,54.3486401],[-7.6157996,54.3485965],[-7.6158911,54.3485793],[-7.61605,54.3485903],[-7.6161101,54.3486095],[-7.616343,54.3485169],[-7.6164964,54.3484253],[-7.6169083,54.3482469],[-7.6172056,54.3481468],[-7.6174062,54.3480287],[-7.6179057,54.347821],[-7.6181177,54.347716],[-7.6192666,54.3470955],[-7.6204955,54.3463615],[-7.6211152,54.3459407],[-7.6217953,54.3451835],[-7.6223312,54.3448494],[-7.6237319,54.3440641],[-7.6253963,54.3430856],[-7.6258855,54.342772],[-7.6260224,54.3426503],[-7.6262895,54.3427317],[-7.6272162,54.3429383],[-7.6282155,54.3431153],[-7.628308,54.3431063],[-7.6284677,54.3430376],[-7.6285172,54.3430108],[-7.6287528,54.3431317],[-7.6290626,54.3432317],[-7.631325,54.3438033],[-7.6315714,54.3438808],[-7.6330295,54.3441434],[-7.6335383,54.3442498],[-7.6337594,54.3442762],[-7.6340444,54.3442817],[-7.6345322,54.3442563],[-7.6345946,54.3442604],[-7.6345049,54.3442906],[-7.6344516,54.3443195],[-7.6344261,54.344475],[-7.6344658,54.3445387],[-7.6346755,54.3446773],[-7.6352717,54.3449384],[-7.6356243,54.3451336],[-7.6359792,54.3453699],[-7.6356243,54.3451336],[-7.6352717,54.3449384],[-7.6346755,54.3446773],[-7.6344658,54.3445387],[-7.6341435,54.3444195],[-7.6339464,54.3443612],[-7.6337941,54.34434],[-7.6335383,54.3442498],[-7.6337594,54.3442762],[-7.6340444,54.3442817],[-7.6343035,54.3442625],[-7.6344117,54.34422],[-7.6345287,54.3441777],[-7.6348442,54.3440639],[-7.6350001,54.3440032],[-7.6356768,54.343889],[-7.6359017,54.3438842],[-7.6369058,54.3440628],[-7.6371273,54.344106],[-7.6377287,54.3442193],[-7.6380633,54.3443077],[-7.6384524,54.3444726],[-7.6386161,54.3445799],[-7.6389301,54.3448494],[-7.639401,54.3452865],[-7.6396011,54.3454723],[-7.6400554,54.3452847],[-7.6402565,54.3451912],[-7.6404936,54.3450615],[-7.6408624,54.3449228],[-7.6409845,54.3448751],[-7.6415974,54.3454678],[-7.6419914,54.3457362],[-7.6422484,54.3458822],[-7.6428601,54.3461743],[-7.6430438,54.3462324],[-7.643782,54.3464442],[-7.6442649,54.3465597],[-7.6449228,54.3467087],[-7.6457891,54.3469277],[-7.6459721,54.3469594],[-7.6458944,54.3471473],[-7.6458756,54.3472766],[-7.6459482,54.3473224],[-7.6460982,54.3473779],[-7.6466502,54.3475312],[-7.6502083,54.3486045],[-7.6509302,54.3488774],[-7.6515645,54.3491372],[-7.6521663,54.3493596],[-7.6524531,54.3494375],[-7.6527819,54.3494749],[-7.6532859,54.3494684],[-7.6539161,54.3495088],[-7.6545613,54.3495839],[-7.654975,54.3496872],[-7.6553807,54.349848],[-7.6558109,54.3500849],[-7.6567529,54.3506659],[-7.6569889,54.3509151],[-7.657323,54.3515186],[-7.657776,54.3522199],[-7.6579036,54.3523382],[-7.6582411,54.3525328],[-7.6597409,54.3530193],[-7.6621566,54.3538735],[-7.66339,54.3542692],[-7.6654604,54.3548997],[-7.6659707,54.3550882],[-7.6668588,54.355492],[-7.6677164,54.3559699],[-7.6695399,54.3570559],[-7.6704319,54.3576718],[-7.671036,54.3581518],[-7.6714059,54.3584929],[-7.6726479,54.3597299],[-7.67303,54.3600689],[-7.673453,54.3603788],[-7.6736919,54.360526],[-7.6742314,54.3607852],[-7.675625,54.3613627],[-7.6760959,54.361543],[-7.6771149,54.3619788],[-7.67773,54.3623178],[-7.6779978,54.3625039],[-7.6781941,54.3626965],[-7.6784829,54.3630733],[-7.6786574,54.363416],[-7.679531,54.3664687],[-7.6796817,54.3669141],[-7.6798111,54.3671791],[-7.679978,54.367431],[-7.6801618,54.367659],[-7.6803818,54.3678789],[-7.6806448,54.3680918],[-7.6809449,54.368291],[-7.6826189,54.3691798],[-7.6832129,54.3695699],[-7.6834569,54.3697859],[-7.6838609,54.3702609],[-7.6845938,54.3714278],[-7.6848678,54.371803],[-7.685012,54.371963],[-7.6854719,54.3722709],[-7.6859569,54.372541],[-7.6863749,54.372834],[-7.6865679,54.3729979],[-7.6872729,54.3737278],[-7.6878888,54.3742259],[-7.6880408,54.3743939],[-7.6881129,54.3745459],[-7.6881491,54.3746521],[-7.6884258,54.3746344],[-7.6886045,54.3745811],[-7.6887872,54.3744952],[-7.6889595,54.3743865],[-7.6899689,54.3747564],[-7.6905599,54.3750065],[-7.6908121,54.3751673],[-7.6910168,54.3754471],[-7.6913241,54.3761333],[-7.691659,54.3766634],[-7.6917723,54.3768055],[-7.6922066,54.3772002],[-7.69368,54.3781661],[-7.6951377,54.3792217],[-7.6960044,54.3798757],[-7.6973634,54.3806533],[-7.6983128,54.3811237],[-7.7000422,54.3818626],[-7.7037375,54.3828606],[-7.7045215,54.3830968],[-7.706121,54.3837921],[-7.7067593,54.3840122],[-7.7073738,54.3842646],[-7.7083034,54.3847579],[-7.7084059,54.3850674],[-7.7084295,54.3853107],[-7.7086344,54.3855079],[-7.7098004,54.3861137],[-7.7099226,54.3862307],[-7.7101353,54.3863866],[-7.7121131,54.387194],[-7.7128971,54.3873937],[-7.7137913,54.3875589],[-7.714788,54.3876736],[-7.7158082,54.3876966],[-7.7168207,54.3878296],[-7.7173645,54.388029],[-7.7188806,54.3886715],[-7.7191176,54.3887849],[-7.7197596,54.3892657],[-7.7210478,54.3906947],[-7.7224661,54.3923461],[-7.7235985,54.3935982],[-7.7238159,54.3937686],[-7.7238772,54.3938051],[-7.7241082,54.3938779],[-7.7244388,54.3939273],[-7.7250544,54.3939871],[-7.7256843,54.3940983],[-7.7259805,54.3941469],[-7.7261386,54.3941568],[-7.726408,54.39411],[-7.727197,54.393815],[-7.7277619,54.393715],[-7.730232,54.393888],[-7.7313285,54.393913],[-7.7317061,54.3938938],[-7.7328054,54.3937449],[-7.7331599,54.3937313],[-7.7334553,54.3937397],[-7.7338183,54.393814],[-7.7342272,54.3939193],[-7.7347651,54.394108],[-7.7351857,54.3942128],[-7.737519,54.394656],[-7.7379247,54.3947703],[-7.7382507,54.3949314],[-7.7389823,54.3954301],[-7.7397445,54.3961351],[-7.7414149,54.3970329],[-7.7432211,54.3979515],[-7.7437078,54.3981499],[-7.7441659,54.3983038],[-7.7460766,54.3987307],[-7.7466359,54.3988823],[-7.7473122,54.399005],[-7.7478662,54.3990844],[-7.7480484,54.399082],[-7.7482588,54.3990555],[-7.7499311,54.3985845],[-7.75235,54.3982013],[-7.7524582,54.3981702],[-7.7525655,54.3981175],[-7.7526227,54.398068],[-7.7526789,54.3979093],[-7.7526981,54.397886],[-7.7529233,54.3979461],[-7.7531336,54.3979772],[-7.7538069,54.3980376],[-7.7548282,54.3981643],[-7.7555884,54.3983045],[-7.7597331,54.3989462],[-7.7612322,54.3991105],[-7.7632958,54.3991976],[-7.7641159,54.3992748],[-7.7643452,54.3993414],[-7.7676531,54.4007643],[-7.7690812,54.4012657],[-7.7702144,54.4015843],[-7.773596,54.4023716],[-7.7753477,54.4027506],[-7.776857,54.4031653],[-7.7803895,54.404021],[-7.7820511,54.4042335],[-7.786469,54.4047349],[-7.788611,54.4049545],[-7.7889845,54.4050242],[-7.7896211,54.4051823],[-7.789954,54.4052002],[-7.7902732,54.4051959],[-7.7910028,54.405092],[-7.7915886,54.4050311],[-7.7921174,54.4050402],[-7.7923696,54.4050197],[-7.7927599,54.4049592],[-7.7931536,54.4049406],[-7.7947531,54.4049163],[-7.7950591,54.4049789],[-7.7961353,54.4053496],[-7.8008171,54.4071031],[-7.8027196,54.4080754],[-7.8037521,54.4087253],[-7.8045206,54.4088834],[-7.8059647,54.4091229],[-7.8067023,54.4093217],[-7.8068498,54.4094934],[-7.8069197,54.4114274],[-7.8069586,54.4119018],[-7.8073544,54.4123988],[-7.8081077,54.4129546],[-7.809544,54.4137],[-7.8106001,54.4141927],[-7.811615,54.4144767],[-7.8128671,54.4150013],[-7.8130718,54.4150687],[-7.8132067,54.4150856],[-7.8134589,54.4150687],[-7.8135434,54.4150689],[-7.8136502,54.4155407],[-7.8137729,54.4157847],[-7.8139765,54.415995],[-7.8142997,54.4162489],[-7.8146979,54.4164888],[-7.8161787,54.4172189],[-7.8180038,54.4181195],[-7.8180993,54.4181666],[-7.8187417,54.4173281],[-7.8190155,54.4170794],[-7.8201719,54.4165365],[-7.8204986,54.4163683],[-7.8205565,54.4163863],[-7.8244783,54.4169228],[-7.8304335,54.4176838],[-7.8337233,54.4178343],[-7.8353584,54.4178913],[-7.8365181,54.4178828],[-7.8390511,54.4177816],[-7.8393077,54.4177783],[-7.8396464,54.4178008],[-7.840383,54.4180193],[-7.8407165,54.4181337],[-7.8414393,54.4185036],[-7.8417962,54.4186513],[-7.8420658,54.418756],[-7.8430012,54.4191518],[-7.8448197,54.4199743],[-7.8453109,54.4201824],[-7.8455452,54.4202524],[-7.8473912,54.4206382],[-7.8489015,54.4209299],[-7.8503014,54.4211433],[-7.8517189,54.4213154],[-7.8548215,54.421658],[-7.8558164,54.4218096],[-7.857953,54.4219813],[-7.8588646,54.4220029],[-7.8597514,54.4219664],[-7.8611448,54.42197],[-7.8628031,54.4219296],[-7.8666648,54.4217433],[-7.8681748,54.4215812],[-7.8684015,54.4215196],[-7.8694114,54.4214482],[-7.8716565,54.4211513],[-7.8722646,54.4210981],[-7.8726565,54.4211161],[-7.8730145,54.4210882],[-7.8745931,54.4207099],[-7.8764414,54.4200598],[-7.8773182,54.4198399],[-7.8786848,54.4196331],[-7.8801298,54.4194832],[-7.8809697,54.4193328],[-7.8819115,54.4192632],[-7.8831414,54.4190147],[-7.8836163,54.4188914],[-7.8838879,54.4187381],[-7.8842346,54.4184246],[-7.8847797,54.4177649],[-7.8852499,54.4173948],[-7.8855349,54.4172696],[-7.8861682,54.4170947],[-7.8874698,54.4168162],[-7.8880465,54.4167365],[-7.889013,54.4166862],[-7.8895913,54.4166216],[-7.8903697,54.4164448],[-7.892395,54.4159097],[-7.8930065,54.4157981],[-7.8943213,54.4157113],[-7.8951213,54.4158216],[-7.8958081,54.4158413],[-7.8965232,54.4158015],[-7.8976698,54.4156714],[-7.8988064,54.4157662],[-7.8999216,54.4157448],[-7.9007832,54.4158447],[-7.9011479,54.415848],[-7.9015866,54.4158015],[-7.9022199,54.4156614],[-7.902953,54.415553],[-7.9034932,54.4155446],[-7.9043748,54.4156031],[-7.9052362,54.4155748],[-7.9086179,54.4153265],[-7.9115322,54.4149299],[-7.9141198,54.4146313],[-7.916748,54.414403],[-7.9194032,54.41398],[-7.9221848,54.4136248],[-7.9272875,54.413199],[-7.92909,54.4131164],[-7.9338083,54.4130915],[-7.9357531,54.4131297],[-7.9397164,54.4133012],[-7.9402499,54.4132915],[-7.9405315,54.4133213],[-7.9410432,54.413263],[-7.9423513,54.4133698],[-7.9444349,54.4133849],[-7.9454115,54.4134415],[-7.9456566,54.4134797],[-7.9468582,54.4135165],[-7.9472778,54.4135514],[-7.9474797,54.4136166],[-7.9478679,54.41363],[-7.9486947,54.4135313],[-7.9495281,54.4135363],[-7.9499015,54.4134948],[-7.9511963,54.4135514],[-7.9513932,54.4135363],[-7.9536198,54.4135912],[-7.9538479,54.4135631],[-7.9543248,54.4135896],[-7.9548163,54.4135614],[-7.9552745,54.4135996],[-7.9554982,54.4135812],[-7.9561865,54.4136883],[-7.9577764,54.4138246],[-7.9588149,54.4139479],[-7.9618215,54.4143963],[-7.9625247,54.4144682],[-7.9636682,54.4144365],[-7.9666771,54.4144782],[-7.968265,54.4144728],[-7.9692185,54.414424],[-7.969805,54.4142992],[-7.9724302,54.4135784],[-7.9732766,54.4133299],[-7.9735923,54.4132718],[-7.9739703,54.4132364],[-7.9744425,54.4132222],[-7.9770729,54.4132614],[-7.9775233,54.4132429],[-7.9785032,54.4131181],[-7.9791382,54.4130999],[-7.981763,54.4132215],[-7.9862812,54.4135229],[-7.9879446,54.4136713],[-7.9956232,54.4144883],[-7.9970481,54.4146615],[-8.0004346,54.4148932],[-8.0030845,54.4152231],[-8.0039147,54.4153848],[-8.0058332,54.4158413],[-8.0074347,54.4162846],[-8.0086965,54.4165931],[-8.0118714,54.4172634],[-8.012104,54.4173502],[-8.0134505,54.4177354],[-8.0137266,54.4178071],[-8.0153862,54.418153],[-8.0168264,54.4183415],[-8.0199026,54.4186574],[-8.0211727,54.4187588],[-8.0224538,54.4188374],[-8.0232296,54.4188277],[-8.0235969,54.4187957],[-8.0239581,54.4187407],[-8.0265181,54.4180713],[-8.0283513,54.4174929],[-8.0287347,54.4173948],[-8.0295797,54.4173447],[-8.0300046,54.41737],[-8.0320695,54.4176565],[-8.0366397,54.4181665],[-8.0380764,54.4182933],[-8.039498,54.4183147],[-8.0407731,54.4181434],[-8.0411563,54.4180724],[-8.042201,54.4177827],[-8.0426315,54.4176775],[-8.0432231,54.4175784],[-8.0448465,54.4174084],[-8.0470148,54.4172498],[-8.0477312,54.4172431],[-8.0483681,54.4172864],[-8.0490315,54.4173761],[-8.0507645,54.4177598],[-8.0536848,54.4184997],[-8.0544915,54.4186416],[-8.0555597,54.4187465],[-8.0607368,54.4187172],[-8.0656247,54.4187981],[-8.0682713,54.4190147],[-8.0705466,54.419288],[-8.0720929,54.4194196],[-8.0760531,54.4193764],[-8.0806313,54.4193664],[-8.0833211,54.419453],[-8.0878038,54.4194521],[-8.0878664,54.4194379],[-8.0879779,54.4190179],[-8.0880346,54.4188849],[-8.0881335,54.4187595],[-8.0882596,54.4186481],[-8.0884186,54.4185632],[-8.0886291,54.4184865],[-8.0894442,54.4182499],[-8.089697,54.4181469],[-8.0899568,54.4179698],[-8.0901919,54.4177488],[-8.0903195,54.4170852],[-8.0903074,54.4169431],[-8.0901615,54.4162774],[-8.090191,54.4161613],[-8.090321,54.4159484],[-8.0903754,54.4157281],[-8.0903502,54.4155861],[-8.0901066,54.4152481],[-8.0900697,54.4152194],[-8.0906633,54.4149471],[-8.0910539,54.4148059],[-8.0917852,54.414658],[-8.092742,54.41456],[-8.092965,54.4145254],[-8.0932064,54.4144572],[-8.0935402,54.4142845],[-8.0937397,54.4141022],[-8.0940332,54.4137501],[-8.0941413,54.4134899],[-8.0941943,54.4132666],[-8.0942793,54.4126893],[-8.0944315,54.4122997],[-8.0946771,54.4118186],[-8.0946676,54.4116103],[-8.0945559,54.4112305],[-8.0941856,54.4101966],[-8.0941537,54.409968],[-8.0941858,54.4097736],[-8.0942485,54.4095828],[-8.0946425,54.4088864],[-8.0948338,54.4080677],[-8.0950119,54.4074786],[-8.0956539,54.4058272],[-8.0957541,54.4056946],[-8.0958309,54.4056454],[-8.0962663,54.4054632],[-8.0965334,54.4053481],[-8.0970366,54.4050979],[-8.0980571,54.4043382],[-8.1000265,54.4030602],[-8.1027219,54.4013779],[-8.1031449,54.4011309],[-8.1034662,54.4010001],[-8.103678,54.400953],[-8.1042295,54.4008776],[-8.1044964,54.4008154],[-8.104803,54.4007701],[-8.1049437,54.4007684],[-8.105885,54.4008552],[-8.1061901,54.4008314],[-8.1065495,54.4006894],[-8.1068018,54.4004901],[-8.1069503,54.4003342],[-8.1070129,54.4002292],[-8.1070483,54.4000841],[-8.1070591,54.3992986],[-8.107122,54.399193],[-8.1072433,54.3990939],[-8.1074059,54.3989885],[-8.1075843,54.3989186],[-8.1079483,54.3988283],[-8.1089113,54.3986625],[-8.109493,54.398496],[-8.1097292,54.3983824],[-8.1099549,54.3982427],[-8.1100292,54.3981829],[-8.1102107,54.3980264],[-8.1103153,54.3978891],[-8.1103852,54.3977463],[-8.110675,54.3966251],[-8.1108918,54.395783],[-8.1110321,54.3957857],[-8.1112843,54.3957493],[-8.1136016,54.3951347],[-8.117521,54.3941674],[-8.117835,54.3941223],[-8.1186054,54.3940705],[-8.1187842,54.3940722],[-8.1193272,54.3941769],[-8.1200508,54.3943874],[-8.1209568,54.3946945],[-8.1214301,54.3948841],[-8.1218442,54.3950263],[-8.1228604,54.395241],[-8.1230434,54.3953075],[-8.1232147,54.3953921],[-8.1236148,54.3956478],[-8.126205,54.3978705],[-8.1268448,54.398472],[-8.1280999,54.3998108],[-8.129018,54.4009049],[-8.1296228,54.4017029],[-8.1300698,54.4024269],[-8.132894,54.405819],[-8.1334298,54.4064068],[-8.1341419,54.4069639],[-8.1387509,54.410148],[-8.1396189,54.410628],[-8.1437239,54.412464],[-8.1457298,54.413245],[-8.1478829,54.4141659],[-8.1494229,54.415084],[-8.15138,54.4160639],[-8.1540989,54.4172068],[-8.1550879,54.4175399],[-8.1572495,54.4180659],[-8.1642594,54.4197229],[-8.1659323,54.4200952],[-8.1688205,54.4211011],[-8.1698131,54.4214032],[-8.1733383,54.4222453],[-8.1742398,54.4224653],[-8.1698131,54.4214032],[-8.1688205,54.4211011],[-8.1659323,54.4200952],[-8.1642594,54.4197229],[-8.1572495,54.4180659],[-8.1550879,54.4175399],[-8.1540989,54.4172068],[-8.15138,54.4160639],[-8.1494229,54.415084],[-8.1478829,54.4141659],[-8.1457298,54.413245],[-8.1437239,54.412464],[-8.1396189,54.410628],[-8.1387509,54.410148],[-8.1341419,54.4069639],[-8.1334298,54.4064068],[-8.132894,54.405819],[-8.1300698,54.4024269],[-8.1296228,54.4017029],[-8.129018,54.4009049],[-8.1280999,54.3998108],[-8.1268448,54.398472],[-8.126205,54.3978705],[-8.1236148,54.3956478],[-8.1232147,54.3953921],[-8.1230434,54.3953075],[-8.1228604,54.395241],[-8.1218442,54.3950263],[-8.1214301,54.3948841],[-8.1209568,54.3946945],[-8.1200508,54.3943874],[-8.1193272,54.3941769],[-8.1187842,54.3940722],[-8.1186054,54.3940705],[-8.117835,54.3941223],[-8.117521,54.3941674],[-8.1136016,54.3951347],[-8.1112843,54.3957493],[-8.1110321,54.3957857],[-8.1108918,54.395783],[-8.111331,54.3940648],[-8.111484,54.3934132],[-8.1115428,54.3930235],[-8.1122037,54.3867734],[-8.1121849,54.3866673],[-8.1118613,54.385862],[-8.111752,54.3852671],[-8.1116371,54.3848208],[-8.111288,54.3840571],[-8.1110749,54.3837034],[-8.1100089,54.3824733],[-8.109854,54.3822288],[-8.1097828,54.3820255],[-8.1097765,54.3818374],[-8.1099359,54.3813757],[-8.1101047,54.381132],[-8.110214,54.3810059],[-8.1112321,54.3800331],[-8.1117246,54.3794784],[-8.1120312,54.3789747],[-8.1121035,54.3788205],[-8.112226,54.3785158],[-8.1123486,54.3780503],[-8.1124384,54.3776919],[-8.1123671,54.3776061],[-8.1122035,54.3771639],[-8.1120893,54.3770348],[-8.1117358,54.3769543],[-8.1110908,54.3768422],[-8.1103353,54.3765622],[-8.1097245,54.3763851],[-8.1095776,54.3763026],[-8.1094863,54.3762037],[-8.1092544,54.3758278],[-8.1090389,54.3755443],[-8.1089666,54.375413],[-8.1089321,54.3751908],[-8.1089321,54.3746813],[-8.108696,54.3742965],[-8.1087092,54.3741821],[-8.1088625,54.3738914],[-8.1091441,54.3732013],[-8.1090581,54.3726354],[-8.1091979,54.3721593],[-8.1093969,54.3719797],[-8.1095615,54.3717061],[-8.1095669,54.3716311],[-8.109474,54.3715569],[-8.1088517,54.3712908],[-8.1085883,54.3711475],[-8.1085222,54.3710056],[-8.108503,54.3708122],[-8.108861,54.3702914],[-8.1088591,54.3700597],[-8.1087641,54.3699228],[-8.1086419,54.3698289],[-8.108506,54.3697727],[-8.107789,54.3696483],[-8.1076223,54.3695857],[-8.1074074,54.3694467],[-8.10735,54.3693769],[-8.1071654,54.3688328],[-8.1068732,54.3678043],[-8.1066707,54.3674202],[-8.106357,54.3669523],[-8.1060899,54.366753],[-8.1054071,54.3666222],[-8.1042794,54.3664365],[-8.1037832,54.3663393],[-8.1034157,54.3662463],[-8.1013637,54.3656261],[-8.0992863,54.3648639],[-8.0992039,54.3647845],[-8.0986002,54.3649116],[-8.0975626,54.3649363],[-8.0972448,54.3649902],[-8.0965359,54.3652075],[-8.0961486,54.3652904],[-8.095859,54.365275],[-8.0956174,54.3652314],[-8.0953617,54.3651621],[-8.0949441,54.365014],[-8.0945924,54.3649695],[-8.0933701,54.3649136],[-8.0931019,54.3649602],[-8.0926008,54.3650906],[-8.0918636,54.3653981],[-8.0915295,54.3655192],[-8.0911973,54.365603],[-8.0907889,54.3656827],[-8.0900762,54.3657717],[-8.0898808,54.3657581],[-8.0896661,54.3657188],[-8.0872906,54.3650731],[-8.0871468,54.3650192],[-8.0870489,54.3649488],[-8.0870384,54.364778],[-8.0872396,54.3643785],[-8.0873338,54.364323],[-8.087769,54.364171],[-8.0879038,54.3640318],[-8.0878427,54.3639804],[-8.0875616,54.3639415],[-8.0872038,54.3639437],[-8.0869503,54.363992],[-8.0867069,54.3641229],[-8.0864729,54.3643669],[-8.0861619,54.3645249],[-8.0857668,54.3645469],[-8.0854557,54.3644658],[-8.0836939,54.3637919],[-8.0824252,54.3629627],[-8.0818849,54.362666],[-8.081192,54.3605099],[-8.0809258,54.359292],[-8.0806719,54.3587559],[-8.0805156,54.3582189],[-8.0796679,54.356208],[-8.078501,54.3539169],[-8.0783538,54.3537228],[-8.0767078,54.3523698],[-8.076112,54.352004],[-8.0755109,54.3517026],[-8.0757091,54.3515363],[-8.0759551,54.3513765],[-8.0761097,54.3513206],[-8.0771048,54.3510287],[-8.0773748,54.3510678],[-8.077671,54.3512278],[-8.0780564,54.3513929],[-8.0785898,54.3515882],[-8.0789296,54.3517406],[-8.0811014,54.3528286],[-8.0812814,54.3525049],[-8.0812814,54.3524443],[-8.0810485,54.3519123],[-8.081037,54.3517632],[-8.0810808,54.3516652],[-8.0812074,54.3515912],[-8.0826806,54.3512245],[-8.0838654,54.3509652],[-8.0842895,54.350898],[-8.0845686,54.3508683],[-8.085124,54.3508858],[-8.0864541,54.3508698],[-8.0870351,54.3507933],[-8.0871573,54.3507502],[-8.0871733,54.3506884],[-8.0870626,54.3503915],[-8.0872379,54.3500583],[-8.0872862,54.3497722],[-8.0873577,54.3497075],[-8.0873946,54.3495948],[-8.0873789,54.3491679],[-8.0874361,54.34904],[-8.0877863,54.3484609],[-8.0877934,54.3482552],[-8.0879617,54.3480107],[-8.0885656,54.3477367],[-8.0888238,54.3475888],[-8.0898358,54.3472651],[-8.0898682,54.3471857],[-8.0897435,54.3464332],[-8.0893101,54.34642],[-8.0882784,54.3463473],[-8.0870526,54.3463097],[-8.0854602,54.3461817],[-8.0849668,54.3461033],[-8.0843437,54.3459698],[-8.0839677,54.3458638],[-8.0830553,54.3455529],[-8.0804927,54.3446044],[-8.0791745,54.3442058],[-8.0784945,54.3440848],[-8.0779131,54.3440106],[-8.0767292,54.3437972],[-8.0761161,54.3436493],[-8.075746,54.3435424],[-8.0754287,54.3434232],[-8.0741391,54.342729],[-8.0732545,54.3421968],[-8.0711719,54.3410136],[-8.0707632,54.3407702],[-8.0706732,54.3406921],[-8.0704706,54.3405884],[-8.0694307,54.3404543],[-8.0692636,54.3403541],[-8.0686787,54.3394811],[-8.0685694,54.3391976],[-8.0685552,54.3388872],[-8.0686608,54.338232],[-8.0686787,54.3379526],[-8.0686258,54.3377451],[-8.0684425,54.3373319],[-8.0682706,54.3367264],[-8.0681873,54.3365649],[-8.0679694,54.3365034],[-8.0677973,54.3364971],[-8.0672409,54.3366705],[-8.0670504,54.3367135],[-8.0668673,54.3367135],[-8.0665432,54.3366664],[-8.0662401,54.3365452],[-8.0660956,54.3364218],[-8.0660252,54.3363131],[-8.0660326,54.3359096],[-8.0659863,54.3357111],[-8.0659032,54.3354205],[-8.0658063,54.3348732],[-8.0657337,54.3346982],[-8.0653921,54.334153],[-8.0651987,54.3339844],[-8.0648737,54.3338371],[-8.0647118,54.3337903],[-8.064368,54.3337426],[-8.0634963,54.3337354],[-8.0632118,54.3337042],[-8.0617968,54.3334707],[-8.0613365,54.3333589],[-8.0612389,54.3333105],[-8.0611261,54.333206],[-8.0609767,54.3329808],[-8.0609187,54.3328122],[-8.0606155,54.330995],[-8.0605103,54.3308119],[-8.0602715,54.3305692],[-8.0601569,54.3304593],[-8.0604056,54.3303198],[-8.0606965,54.330101],[-8.0609718,54.3298353],[-8.0612563,54.3295234],[-8.0621472,54.3282838],[-8.0622515,54.3280908],[-8.0628579,54.3264573],[-8.0631956,54.3257085],[-8.0636242,54.3248289],[-8.0638269,54.3245909],[-8.0639776,54.3244663],[-8.0643661,54.3243055],[-8.0653369,54.3241565],[-8.0655323,54.3240982],[-8.0657098,54.3240231],[-8.0659389,54.3238974],[-8.06621,54.3237084],[-8.0670096,54.323014],[-8.067596,54.3224503],[-8.0677204,54.3223],[-8.0678513,54.3220605],[-8.0679757,54.3218869],[-8.0681935,54.3217314],[-8.0693087,54.3211083],[-8.0698017,54.3204864],[-8.0699438,54.3203491],[-8.0701237,54.3202207],[-8.0710523,54.3196299],[-8.0713522,54.3194707],[-8.0717942,54.3192905],[-8.072765,54.3190432],[-8.0731025,54.318924],[-8.0733603,54.3188087],[-8.0736866,54.3185405],[-8.0738595,54.3182594],[-8.0738926,54.3181567],[-8.0739083,54.3180247],[-8.0738595,54.3176762],[-8.0737527,54.3172966],[-8.0734704,54.3168004],[-8.0732042,54.3163947],[-8.0731951,54.3162755],[-8.0732552,54.3161317],[-8.0738505,54.3152959],[-8.0743214,54.3145807],[-8.0745257,54.3141984],[-8.0746813,54.3139574],[-8.0748144,54.3138058],[-8.0751656,54.3135726],[-8.0755498,54.3133807],[-8.0757564,54.3133316],[-8.0759428,54.3133185],[-8.0763649,54.3133342],[-8.0766937,54.3133159],[-8.0769181,54.3132576],[-8.0770466,54.3132032],[-8.0773111,54.3130348],[-8.0789084,54.3119102],[-8.0792015,54.3116716],[-8.0792772,54.3115628],[-8.0793638,54.3113166],[-8.079315,54.3108824],[-8.0793371,54.3107917],[-8.0793926,54.3107049],[-8.079477,54.3106285],[-8.0796614,54.3105378],[-8.080792,54.3100634],[-8.0809364,54.3099442],[-8.0810364,54.3098121],[-8.0812585,54.3094221],[-8.0813896,54.3092807],[-8.0820093,54.3088791],[-8.0845017,54.3073588],[-8.084948,54.3070464],[-8.0850922,54.306904],[-8.0853701,54.3065242],[-8.0853967,54.3064321],[-8.0853101,54.3062431],[-8.0852412,54.306182],[-8.0846237,54.305827],[-8.0845104,54.305696],[-8.0844659,54.3056092],[-8.0844726,54.3054705],[-8.0846125,54.3052838],[-8.0851559,54.304834],[-8.0852991,54.3047448],[-8.0855278,54.304636],[-8.0857966,54.3045529],[-8.0862518,54.3044427],[-8.0864761,54.3043506],[-8.0867384,54.3042081],[-8.0872694,54.3038427],[-8.0877045,54.3035018],[-8.0877958,54.3034486],[-8.0879038,54.3034096],[-8.0875663,54.3029587],[-8.0871604,54.3025843],[-8.0869807,54.3024671],[-8.0861852,54.3020804],[-8.0858931,54.3020121],[-8.0854757,54.3019482],[-8.0851393,54.3019147],[-8.0848835,54.3019253],[-8.0846855,54.3019603],[-8.0844508,54.3020274],[-8.0839315,54.3022676],[-8.0838013,54.3023058],[-8.083611,54.3023179],[-8.0834975,54.3023041],[-8.0793571,54.3012298],[-8.0775315,54.3007008],[-8.0752199,54.3000671],[-8.0687253,54.2982164],[-8.0675695,54.2979007],[-8.0675589,54.2979142],[-8.0675695,54.2979007],[-8.0687253,54.2982164],[-8.0752199,54.3000671],[-8.0775315,54.3007008],[-8.0793571,54.3012298],[-8.0834975,54.3023041],[-8.083611,54.3023179],[-8.0838013,54.3023058],[-8.0839315,54.3022676],[-8.0844508,54.3020274],[-8.0846855,54.3019603],[-8.0848835,54.3019253],[-8.0851393,54.3019147],[-8.0854757,54.3019482],[-8.0858931,54.3020121],[-8.0861852,54.3020804],[-8.0869807,54.3024671],[-8.0871604,54.3025843],[-8.0875663,54.3029587],[-8.0878172,54.3032869],[-8.0879038,54.3034096],[-8.0877045,54.3035018],[-8.0872694,54.3038427],[-8.0867384,54.3042081],[-8.0864761,54.3043506],[-8.0862518,54.3044427],[-8.0857966,54.3045529],[-8.0855278,54.304636],[-8.0852991,54.3047448],[-8.0851559,54.304834],[-8.0846125,54.3052838],[-8.0844726,54.3054705],[-8.0844659,54.3056092],[-8.0845104,54.305696],[-8.0846237,54.305827],[-8.0852412,54.306182],[-8.0853101,54.3062431],[-8.0853967,54.3064321],[-8.0853701,54.3065242],[-8.0850922,54.306904],[-8.084948,54.3070464],[-8.0845017,54.3073588],[-8.0820093,54.3088791],[-8.0813896,54.3092807],[-8.0812585,54.3094221],[-8.0810364,54.3098121],[-8.0809364,54.3099442],[-8.080792,54.3100634],[-8.0796614,54.3105378],[-8.079477,54.3106285],[-8.0793926,54.3107049],[-8.0793371,54.3107917],[-8.079315,54.3108824],[-8.0793638,54.3113166],[-8.0792772,54.3115628],[-8.0792015,54.3116716],[-8.0789084,54.3119102],[-8.0773111,54.3130348],[-8.0770466,54.3132032],[-8.0769181,54.3132576],[-8.0766937,54.3133159],[-8.0763649,54.3133342],[-8.0759428,54.3133185],[-8.0757564,54.3133316],[-8.0755498,54.3133807],[-8.0751656,54.3135726],[-8.0748144,54.3138058],[-8.0746813,54.3139574],[-8.0745257,54.3141984],[-8.0743214,54.3145807],[-8.0738505,54.3152959],[-8.0732552,54.3161317],[-8.0731951,54.3162755],[-8.0732042,54.3163947],[-8.0734704,54.3168004],[-8.0737527,54.3172966],[-8.0738595,54.3176762],[-8.0739083,54.3180247],[-8.0738926,54.3181567],[-8.0738595,54.3182594],[-8.0736866,54.3185405],[-8.0733603,54.3188087],[-8.0731025,54.318924],[-8.072765,54.3190432],[-8.0717942,54.3192905],[-8.0713522,54.3194707],[-8.0710523,54.3196299],[-8.0701237,54.3202207],[-8.0699438,54.3203491],[-8.0698017,54.3204864],[-8.0693087,54.3211083],[-8.0681935,54.3217314],[-8.0679757,54.3218869],[-8.0678513,54.3220605],[-8.0677204,54.3223],[-8.067596,54.3224503],[-8.0670096,54.323014],[-8.06621,54.3237084],[-8.0659389,54.3238974],[-8.0657098,54.3240231],[-8.0655323,54.3240982],[-8.0653369,54.3241565],[-8.0643661,54.3243055],[-8.0639776,54.3244663],[-8.0638269,54.3245909],[-8.0636242,54.3248289],[-8.0631956,54.3257085],[-8.0628579,54.3264573],[-8.0622515,54.3280908],[-8.0621472,54.3282838],[-8.0612563,54.3295234],[-8.0609718,54.3298353],[-8.0606965,54.330101],[-8.0604056,54.3303198],[-8.0601569,54.3304593],[-8.0605103,54.3308119],[-8.0606155,54.330995],[-8.0609187,54.3328122],[-8.0609767,54.3329808],[-8.0611261,54.333206],[-8.0612389,54.3333105],[-8.0613365,54.3333589],[-8.0617968,54.3334707],[-8.0632118,54.3337042],[-8.0634963,54.3337354],[-8.064368,54.3337426],[-8.0647118,54.3337903],[-8.0648737,54.3338371],[-8.0651987,54.3339844],[-8.0653921,54.334153],[-8.0657337,54.3346982],[-8.0658063,54.3348732],[-8.065868,54.3351919],[-8.0659032,54.3354205],[-8.0660326,54.3359096],[-8.0660252,54.3363131],[-8.0660956,54.3364218],[-8.0662401,54.3365452],[-8.0665432,54.3366664],[-8.0668673,54.3367135],[-8.0670504,54.3367135],[-8.0672409,54.3366705],[-8.0677973,54.3364971],[-8.0679694,54.3365034],[-8.0681873,54.3365649],[-8.0682706,54.3367264],[-8.0684425,54.3373319],[-8.0686258,54.3377451],[-8.0686787,54.3379526],[-8.0686608,54.338232],[-8.0685552,54.3388872],[-8.0685694,54.3391976],[-8.0686787,54.3394811],[-8.0692636,54.3403541],[-8.0694307,54.3404543],[-8.0704706,54.3405884],[-8.0706732,54.3406921],[-8.0707632,54.3407702],[-8.0711719,54.3410136],[-8.0732545,54.3421968],[-8.0741391,54.342729],[-8.0754287,54.3434232],[-8.075746,54.3435424],[-8.0761161,54.3436493],[-8.0767292,54.3437972],[-8.0779131,54.3440106],[-8.0784945,54.3440848],[-8.0791745,54.3442058],[-8.0804927,54.3446044],[-8.0830553,54.3455529],[-8.0839677,54.3458638],[-8.0843437,54.3459698],[-8.0849668,54.3461033],[-8.0854602,54.3461817],[-8.0870526,54.3463097],[-8.0882784,54.3463473],[-8.0893101,54.34642],[-8.0897435,54.3464332],[-8.0898682,54.3471857],[-8.0898358,54.3472651],[-8.0888238,54.3475888],[-8.0885656,54.3477367],[-8.0879617,54.3480107],[-8.0877934,54.3482552],[-8.0877863,54.3484609],[-8.0874361,54.34904],[-8.0873789,54.3491679],[-8.0873946,54.3495948],[-8.0873577,54.3497075],[-8.0872862,54.3497722],[-8.0872379,54.3500583],[-8.0870626,54.3503915],[-8.0871733,54.3506884],[-8.0871573,54.3507502],[-8.0870351,54.3507933],[-8.0864541,54.3508698],[-8.085124,54.3508858],[-8.0845686,54.3508683],[-8.0842895,54.350898],[-8.0838654,54.3509652],[-8.0826806,54.3512245],[-8.0812074,54.3515912],[-8.0810808,54.3516652],[-8.081037,54.3517632],[-8.0810485,54.3519123],[-8.0812814,54.3524443],[-8.0812814,54.3525049],[-8.0811014,54.3528286],[-8.0789296,54.3517406],[-8.0785898,54.3515882],[-8.0780564,54.3513929],[-8.077671,54.3512278],[-8.0773748,54.3510678],[-8.0771048,54.3510287],[-8.0761097,54.3513206],[-8.0759551,54.3513765],[-8.0757091,54.3515363],[-8.0755783,54.3516441],[-8.0755109,54.3517026],[-8.076112,54.352004],[-8.0767078,54.3523698],[-8.0783538,54.3537228],[-8.078501,54.3539169],[-8.0796679,54.356208],[-8.0805156,54.3582189],[-8.0806719,54.3587559],[-8.0809258,54.359292],[-8.081192,54.3605099],[-8.0818849,54.362666],[-8.0824252,54.3629627],[-8.0836939,54.3637919],[-8.0854557,54.3644658],[-8.0857668,54.3645469],[-8.0861619,54.3645249],[-8.0864729,54.3643669],[-8.0867069,54.3641229],[-8.0869503,54.363992],[-8.0872038,54.3639437],[-8.0875616,54.3639415],[-8.0878427,54.3639804],[-8.0879038,54.3640318],[-8.087769,54.364171],[-8.0873338,54.364323],[-8.0872396,54.3643785],[-8.0870384,54.364778],[-8.0870489,54.3649488],[-8.0871468,54.3650192],[-8.0872906,54.3650731],[-8.0896661,54.3657188],[-8.0898808,54.3657581],[-8.0900762,54.3657717],[-8.0907889,54.3656827],[-8.0911973,54.365603],[-8.0915295,54.3655192],[-8.0918636,54.3653981],[-8.0926008,54.3650906],[-8.0931019,54.3649602],[-8.0933701,54.3649136],[-8.0945924,54.3649695],[-8.0949441,54.365014],[-8.0953617,54.3651621],[-8.0956174,54.3652314],[-8.095859,54.365275],[-8.0961486,54.3652904],[-8.0965359,54.3652075],[-8.0972448,54.3649902],[-8.0975626,54.3649363],[-8.0986002,54.3649116],[-8.0989361,54.3648484],[-8.0992039,54.3647845],[-8.0992863,54.3648639],[-8.1013637,54.3656261],[-8.1034157,54.3662463],[-8.1037832,54.3663393],[-8.1060899,54.366753],[-8.106357,54.3669523],[-8.1066707,54.3674202],[-8.1068732,54.3678043],[-8.1071654,54.3688328],[-8.10735,54.3693769],[-8.1074074,54.3694467],[-8.1076223,54.3695857],[-8.107789,54.3696483],[-8.108506,54.3697727],[-8.1086419,54.3698289],[-8.1087641,54.3699228],[-8.1088591,54.3700597],[-8.108861,54.3702914],[-8.108503,54.3708122],[-8.1085222,54.3710056],[-8.1085883,54.3711475],[-8.1088517,54.3712908],[-8.109474,54.3715569],[-8.1095669,54.3716311],[-8.1095615,54.3717061],[-8.1093969,54.3719797],[-8.1091979,54.3721593],[-8.1090581,54.3726354],[-8.1091441,54.3732013],[-8.1088625,54.3738914],[-8.1087092,54.3741821],[-8.108696,54.3742965],[-8.1089321,54.3746813],[-8.1089321,54.3751908],[-8.1089666,54.375413],[-8.1090389,54.3755443],[-8.1092544,54.3758278],[-8.1094863,54.3762037],[-8.1095776,54.3763026],[-8.1097245,54.3763851],[-8.1103353,54.3765622],[-8.1110908,54.3768422],[-8.1117358,54.3769543],[-8.1120893,54.3770348],[-8.1122035,54.3771639],[-8.1123671,54.3776061],[-8.1124384,54.3776919],[-8.112226,54.3785158],[-8.1120312,54.3789747],[-8.1117246,54.3794784],[-8.1112321,54.3800331],[-8.110214,54.3810059],[-8.1101047,54.381132],[-8.1099359,54.3813757],[-8.1097765,54.3818374],[-8.1097828,54.3820255],[-8.109854,54.3822288],[-8.1100089,54.3824733],[-8.1110749,54.3837034],[-8.111288,54.3840571],[-8.1116371,54.3848208],[-8.111752,54.3852671],[-8.1118613,54.385862],[-8.1121849,54.3866673],[-8.1122037,54.3867734],[-8.1115428,54.3930235],[-8.111484,54.3934132],[-8.1111181,54.3949223],[-8.1108918,54.395783],[-8.1110321,54.3957857],[-8.1112843,54.3957493],[-8.1136016,54.3951347],[-8.117521,54.3941674],[-8.117835,54.3941223],[-8.1186054,54.3940705],[-8.1187842,54.3940722],[-8.1193272,54.3941769],[-8.1200508,54.3943874],[-8.1209568,54.3946945],[-8.1214301,54.3948841],[-8.1218442,54.3950263],[-8.1228604,54.395241],[-8.1230434,54.3953075],[-8.1232147,54.3953921],[-8.1236148,54.3956478],[-8.126205,54.3978705],[-8.1268448,54.398472],[-8.1280999,54.3998108],[-8.129018,54.4009049],[-8.1296228,54.4017029],[-8.1300698,54.4024269],[-8.132894,54.405819],[-8.1334298,54.4064068],[-8.1341419,54.4069639],[-8.1387509,54.410148],[-8.1396189,54.410628],[-8.1437239,54.412464],[-8.1457298,54.413245],[-8.1478829,54.4141659],[-8.1494229,54.415084],[-8.15138,54.4160639],[-8.1540989,54.4172068],[-8.1550879,54.4175399],[-8.1572495,54.4180659],[-8.1642594,54.4197229],[-8.1659323,54.4200952],[-8.1688205,54.4211011],[-8.1698131,54.4214032],[-8.1733383,54.4222453],[-8.1743128,54.4224831]]}};
var route4 = {"type":"Feature","properties":{"name":"Bus 4","desc":"\n179 miles"},"geometry":{"type":"LineString","coordinates":[[-7.9819557,54.5261547],[-7.9816012,54.5257541],[-7.9813262,54.5253311],[-7.9808973,54.5247504],[-7.9807024,54.5244117],[-7.9800168,54.5233953],[-7.9785088,54.5210543],[-7.9782249,54.5207013],[-7.9777529,54.519903],[-7.9772036,54.5191479],[-7.9762857,54.5182104],[-7.9757215,54.5176775],[-7.9726763,54.5150026],[-7.9721086,54.5145252],[-7.9716587,54.5141057],[-7.9711905,54.5137526],[-7.9703092,54.5129479],[-7.9699075,54.5126162],[-7.9696014,54.5123165],[-7.9693101,54.5119527],[-7.9691222,54.5116467],[-7.9690212,54.5115206],[-7.9686282,54.510739],[-7.9684328,54.5102275],[-7.9683959,54.5100669],[-7.9683846,54.5096736],[-7.9684423,54.5093824],[-7.9685079,54.509198],[-7.9689303,54.5083617],[-7.9690879,54.5079979],[-7.9691658,54.5075341],[-7.9691531,54.5066006],[-7.9690952,54.5060684],[-7.969079,54.5054712],[-7.9690155,54.5049128],[-7.9690115,54.5044401],[-7.9688579,54.5024774],[-7.9688176,54.5023005],[-7.9687983,54.5022744],[-7.9690834,54.5022142],[-7.9697462,54.501997],[-7.9704991,54.5016817],[-7.9722356,54.5008519],[-7.9731448,54.5004028],[-7.9772415,54.4982531],[-7.9780484,54.4977549],[-7.9783453,54.4975284],[-7.9785794,54.4973123],[-7.9787353,54.4971521],[-7.9788253,54.497018],[-7.9789093,54.4968733],[-7.9789903,54.4960755],[-7.9790503,54.495835],[-7.9792872,54.4954377],[-7.9797985,54.4948668],[-7.9801362,54.4946051],[-7.9807345,54.4942069],[-7.9819988,54.493546],[-7.9832384,54.4928103],[-7.9836175,54.4925398],[-7.9841396,54.4920807],[-7.9853997,54.4912105],[-7.9856329,54.4909873],[-7.9859542,54.4905865],[-7.9862518,54.4899984],[-7.9865554,54.4892102],[-7.986738,54.4889488],[-7.9870136,54.4886927],[-7.9880277,54.4878944],[-7.9884631,54.4876074],[-7.9888413,54.4873963],[-7.9892037,54.4872302],[-7.989723,54.4870445],[-7.9901131,54.4869312],[-7.9905631,54.4868265],[-7.9909891,54.4867517],[-7.9925736,54.4865466],[-7.9940855,54.4863734],[-7.995468,54.4861569],[-7.9969255,54.4858438],[-7.9973575,54.4857201],[-7.9980984,54.4854657],[-7.9991003,54.4851712],[-8.0016788,54.4846038],[-8.0036579,54.4842311],[-8.0044547,54.4841169],[-8.0050759,54.4840577],[-8.0088736,54.4839286],[-8.0106284,54.483913],[-8.0127403,54.4840018],[-8.0137392,54.483953],[-8.0144444,54.4838718],[-8.015939,54.4835811],[-8.0210647,54.4825363],[-8.0217006,54.4824231],[-8.0226244,54.4822942],[-8.0225196,54.4819594],[-8.0221809,54.4797133],[-8.0221508,54.479383],[-8.0219058,54.4778875],[-8.0218902,54.4773416],[-8.0218013,54.4767088],[-8.0217648,54.4765339],[-8.021694,54.4763812],[-8.0216287,54.4762476],[-8.0211712,54.4754735],[-8.0199363,54.4734665],[-8.0196259,54.4731577],[-8.0192421,54.4728623],[-8.0188371,54.4725842],[-8.0184797,54.4723027],[-8.0182375,54.4720178],[-8.0180131,54.4714804],[-8.0167409,54.4680975],[-8.0167426,54.4680581],[-8.0171689,54.4680948],[-8.019262,54.46821],[-8.0210879,54.468348],[-8.0218188,54.4683849],[-8.0225507,54.468375],[-8.0276949,54.4681399],[-8.0304829,54.4679619],[-8.0327429,54.4677869],[-8.0340479,54.4676389],[-8.0344789,54.4675729],[-8.034898,54.4674979],[-8.0383189,54.4667899],[-8.0386044,54.4667468],[-8.0394478,54.4667066],[-8.0396706,54.4667129],[-8.0400167,54.4667495],[-8.0403367,54.4667983],[-8.0404023,54.4666997],[-8.0405129,54.4666323],[-8.0417164,54.4661474],[-8.0427244,54.4657759],[-8.0434272,54.4655533],[-8.044282,54.4653335],[-8.0447813,54.4652431],[-8.0470201,54.4649047],[-8.0490217,54.4646724],[-8.0502808,54.4644664],[-8.0515791,54.4643248],[-8.0541048,54.4640153],[-8.0551661,54.4639069],[-8.056381,54.4637215],[-8.057455,54.4635377],[-8.0584634,54.4632322],[-8.0595363,54.4629802],[-8.0605356,54.4627721],[-8.0612037,54.4626388],[-8.0621798,54.4624684],[-8.065811,54.4617397],[-8.0682581,54.4613143],[-8.0692485,54.4610714],[-8.0704836,54.4608357],[-8.0714598,54.4606688],[-8.0730634,54.4602963],[-8.0748904,54.46003],[-8.0757709,54.4598437],[-8.0760691,54.4597576],[-8.0763318,54.4596455],[-8.0777828,54.4589399],[-8.0782298,54.4587399],[-8.0783404,54.4587103],[-8.0789462,54.4586194],[-8.0808876,54.4583953],[-8.0822738,54.4582115],[-8.0835236,54.4580649],[-8.0848345,54.457884],[-8.0855207,54.4578136],[-8.0857024,54.4576935],[-8.0857785,54.457634],[-8.0859529,54.457732],[-8.0860259,54.4577436],[-8.0860915,54.4577047],[-8.0860259,54.4577436],[-8.090299,54.458166],[-8.0906875,54.4581802],[-8.10309,54.4582979],[-8.1033774,54.4583189],[-8.1037054,54.458359],[-8.1075303,54.4590696],[-8.1085343,54.4592083],[-8.1125498,54.4596766],[-8.1141971,54.4598955],[-8.1163425,54.4601166],[-8.1187954,54.460472],[-8.1199368,54.4605988],[-8.120973,54.4607637],[-8.1224384,54.4608436],[-8.1235394,54.4609589],[-8.1250695,54.4610766],[-8.1285223,54.46138],[-8.1336861,54.4619187],[-8.1341037,54.4619742],[-8.134358,54.4620096],[-8.1343505,54.4620375],[-8.1343318,54.4621048],[-8.1342824,54.4622817],[-8.1342416,54.4626006],[-8.1342803,54.4628595],[-8.134429,54.4631998],[-8.1351941,54.4642729],[-8.1356281,54.4649332],[-8.136048,54.4654175],[-8.1365747,54.4659763],[-8.1371101,54.466674],[-8.1374178,54.4671313],[-8.1374124,54.4671851],[-8.1373453,54.4672231],[-8.1369633,54.4672745],[-8.1354728,54.4673818],[-8.1338797,54.467404],[-8.1329497,54.4674526],[-8.1321679,54.4674433],[-8.1312934,54.4674764],[-8.1310587,54.4674662],[-8.1308974,54.4674815],[-8.1302229,54.4674343],[-8.1300057,54.4674491],[-8.129048,54.4673325],[-8.1284055,54.4671993],[-8.1271561,54.4670698],[-8.1266073,54.467035],[-8.1259711,54.4669512],[-8.1241293,54.4668534],[-8.1225362,54.466797],[-8.1215436,54.4666999],[-8.1210369,54.466669],[-8.1203688,54.4667003],[-8.119774,54.4667889],[-8.1188936,54.4669881],[-8.1174634,54.467379],[-8.1150029,54.467965],[-8.1134759,54.4683716],[-8.1129936,54.4684761],[-8.1120798,54.4686291],[-8.1093315,54.4689798],[-8.1086582,54.4691037],[-8.1077181,54.4692217],[-8.1070766,54.4693532],[-8.106677,54.4693803],[-8.1057277,54.4695252],[-8.1050202,54.4695783],[-8.1032215,54.4698105],[-8.0964841,54.470762],[-8.0964161,54.4707653],[-8.0957806,54.4719816],[-8.0952076,54.4728347],[-8.0949683,54.4733026],[-8.0948386,54.4736344],[-8.0947194,54.4741125],[-8.094481,54.4760875],[-8.0944454,54.4761271],[-8.0949632,54.476294],[-8.095408,54.4764373],[-8.0952698,54.4766138],[-8.0952574,54.4767014],[-8.0953002,54.4767738],[-8.0954365,54.4769337],[-8.0958826,54.4774459],[-8.095894,54.4775182],[-8.095818,54.4776042],[-8.095062,54.4780203],[-8.0948396,54.4781805],[-8.094592,54.4784243],[-8.0944501,54.4785653],[-8.0941571,54.4788486],[-8.093881,54.4791437],[-8.0938138,54.4792864],[-8.0937555,54.4797975],[-8.0937322,54.4798941],[-8.0936881,54.479945],[-8.093626,54.4799781],[-8.09124,54.4801272],[-8.0908094,54.4801715],[-8.0906702,54.4802059],[-8.0906162,54.4802376],[-8.0906702,54.4802059],[-8.0908094,54.4801715],[-8.09124,54.4801272],[-8.0935642,54.4799858],[-8.093626,54.4799781],[-8.0936881,54.479945],[-8.0937322,54.4798941],[-8.0938371,54.4792178],[-8.093881,54.4791437],[-8.0941571,54.4788486],[-8.0944501,54.4785653],[-8.0948396,54.4781805],[-8.095062,54.4780203],[-8.095818,54.4776042],[-8.095894,54.4775182],[-8.0958826,54.4774459],[-8.0955675,54.4770804],[-8.0954365,54.4769337],[-8.0952574,54.4767014],[-8.0952698,54.4766138],[-8.0953676,54.4764842],[-8.095408,54.4764373],[-8.0949632,54.476294],[-8.0944454,54.4761271],[-8.094481,54.4760875],[-8.0947194,54.4741125],[-8.0948386,54.4736344],[-8.0949683,54.4733026],[-8.0952076,54.4728347],[-8.0957806,54.4719816],[-8.0964489,54.4707016],[-8.0964897,54.4704816],[-8.0964358,54.4703123],[-8.0962364,54.4701447],[-8.0961103,54.4700827],[-8.0954634,54.4698526],[-8.0946777,54.4695259],[-8.0943219,54.4693499],[-8.093855,54.4690189],[-8.0932978,54.468543],[-8.0931159,54.4684549],[-8.0929,54.468386],[-8.0926549,54.468329],[-8.0921289,54.4682409],[-8.091636,54.4681349],[-8.0914168,54.4680609],[-8.0912279,54.467971],[-8.0910779,54.4678579],[-8.090896,54.4675599],[-8.0908479,54.4674099],[-8.0908397,54.4672539],[-8.0908719,54.4669329],[-8.0910649,54.466086],[-8.0912448,54.4656149],[-8.091392,54.4651409],[-8.0914259,54.464803],[-8.0913989,54.464649],[-8.091335,54.464502],[-8.0909459,54.4639259],[-8.0908889,54.463778],[-8.0908749,54.4636239],[-8.0908099,54.4633758],[-8.0906989,54.46326],[-8.0905558,54.463154],[-8.0902019,54.462981],[-8.089998,54.4629159],[-8.0893479,54.4628118],[-8.0887308,54.462639],[-8.0881979,54.4624209],[-8.0880549,54.4623389],[-8.0879478,54.4622379],[-8.0878708,54.4621308],[-8.0878248,54.4620159],[-8.0876609,54.461307],[-8.0874579,54.4608579],[-8.0868456,54.459848],[-8.0864919,54.459433],[-8.0859749,54.4589519],[-8.0858106,54.4587233],[-8.0857553,54.4586099],[-8.0857037,54.4583377],[-8.0857295,54.4581923],[-8.0859223,54.4578428],[-8.0860259,54.4577436],[-8.0859529,54.457732],[-8.0852887,54.4573785],[-8.0849238,54.4572312],[-8.0835672,54.4566277],[-8.0792714,54.4546968],[-8.0786658,54.454432],[-8.0762897,54.4533189],[-8.07583,54.4531015],[-8.0738908,54.4521923],[-8.0731533,54.4518811],[-8.0712937,54.4509971],[-8.0708185,54.4507525],[-8.0697861,54.4503084],[-8.0692546,54.4501203],[-8.0650898,54.4488291],[-8.060077,54.4471928],[-8.0559226,54.4458584],[-8.0518313,54.4444858],[-8.0505799,54.4441101],[-8.0499884,54.4439697],[-8.0493446,54.4438685],[-8.0486992,54.4438184],[-8.0474444,54.4437501],[-8.0468265,54.4437737],[-8.0456125,54.443938],[-8.0450037,54.4439972],[-8.0442198,54.4440284],[-8.0434401,54.4440025],[-8.0430619,54.4439589],[-8.0420757,54.4437814],[-8.0414722,54.4436325],[-8.0407439,54.4434086],[-8.0390844,54.4427746],[-8.0384817,54.4425727],[-8.0357315,54.4418453],[-8.0252357,54.439241],[-8.0167158,54.4371667],[-8.0157423,54.4369181],[-8.0094187,54.4354114],[-8.0050362,54.4343279],[-8.0045013,54.4341481],[-8.004172,54.4340163],[-8.0034129,54.4336774],[-8.0008209,54.4323335],[-8.0003826,54.432168],[-7.9996562,54.4320001],[-7.998193,54.4318116],[-7.9978254,54.4318008],[-7.9975253,54.4318096],[-7.9969125,54.4318966],[-7.9942938,54.4323501],[-7.9936076,54.4324341],[-7.993244,54.4324433],[-7.9928748,54.4324202],[-7.9923931,54.4323483],[-7.9901731,54.4319681],[-7.988915,54.4317395],[-7.9883337,54.431609],[-7.9877291,54.4314479],[-7.9869894,54.4311755],[-7.9864178,54.4308615],[-7.9852449,54.4300092],[-7.9840997,54.4291313],[-7.9832194,54.4284987],[-7.9828111,54.4281819],[-7.9810785,54.4269451],[-7.9804806,54.4265523],[-7.9796176,54.4261198],[-7.9785032,54.4256239],[-7.9766117,54.4248221],[-7.9761805,54.4246159],[-7.9761617,54.4245915],[-7.9759786,54.4245753],[-7.975737,54.42453],[-7.9754231,54.4244315],[-7.975008,54.4242569],[-7.974246,54.4240399],[-7.9733839,54.4239179],[-7.9728069,54.423879],[-7.9699458,54.4238449],[-7.9677859,54.4238948],[-7.9666499,54.4240099],[-7.9603799,54.4248409],[-7.954178,54.4257029],[-7.9469299,54.426773],[-7.9453949,54.4269799],[-7.9424269,54.427305],[-7.9383299,54.4276669],[-7.934735,54.4281569],[-7.9330498,54.4284399],[-7.9320868,54.428658],[-7.9311378,54.4289098],[-7.9221629,54.4317749],[-7.9184977,54.4329871],[-7.911928,54.4351059],[-7.9067349,54.4368039],[-7.9040266,54.4376961],[-7.9028837,54.4380988],[-7.9025322,54.4382089],[-7.9020737,54.4383054],[-7.8997228,54.4387179],[-7.8899769,54.440502],[-7.8890599,54.4406098],[-7.8884629,54.4406249],[-7.8877004,54.4405808],[-7.8861527,54.4403709],[-7.8859007,54.4403658],[-7.8856619,54.4403969],[-7.884888,54.4406249],[-7.8844629,54.4406829],[-7.88399,54.4406018],[-7.8825299,54.4401429],[-7.879133,54.4395278],[-7.8785749,54.4393969],[-7.8732379,54.4380029],[-7.8727499,54.437915],[-7.87226,54.4378779],[-7.8717669,54.4378669],[-7.8712718,54.4379518],[-7.870538,54.4382029],[-7.8701269,54.43843],[-7.8693129,54.4389729],[-7.8688269,54.4391968],[-7.8682829,54.4393749],[-7.8676341,54.4395217],[-7.867123,54.4395969],[-7.8662028,54.4396269],[-7.8651968,54.439615],[-7.8602549,54.439488],[-7.845887,54.4394529],[-7.8456545,54.4394531],[-7.8456459,54.4394246],[-7.8450998,54.4389899],[-7.844957,54.4387019],[-7.8449799,54.438395],[-7.8453729,54.4375549],[-7.8454219,54.4372168],[-7.8452829,54.436895],[-7.844992,54.436597],[-7.8445673,54.4363038],[-7.8439979,54.4360398],[-7.8433879,54.43584],[-7.842163,54.4354868],[-7.841347,54.4351979],[-7.8410411,54.4350593],[-7.8407967,54.4349047],[-7.8406257,54.4347457],[-7.8402679,54.434283],[-7.8401079,54.4338829],[-7.8398598,54.43255],[-7.8396669,54.4321069],[-7.839288,54.4316779],[-7.8389693,54.4314002],[-7.82573,54.4229998],[-7.8241972,54.4220303],[-7.8204149,54.4196279],[-7.8193869,54.4189449],[-7.8182734,54.4182564],[-7.8182548,54.4182449],[-7.8180993,54.4181666],[-7.8150321,54.4166514],[-7.8146979,54.4164888],[-7.8142997,54.4162489],[-7.8139765,54.415995],[-7.8137729,54.4157847],[-7.8136502,54.4155407],[-7.8127431,54.4117413],[-7.8123331,54.4103063],[-7.8121414,54.409963],[-7.8118814,54.4096463],[-7.811285,54.4092313],[-7.8089461,54.4081989],[-7.8074094,54.4075181],[-7.8074047,54.407503],[-7.8087415,54.4062047],[-7.8117913,54.402993],[-7.8123618,54.4023673],[-7.8129219,54.4018199],[-7.8133214,54.4014982],[-7.8142263,54.4008515],[-7.8150947,54.4003747],[-7.8160297,54.3999513],[-7.8170631,54.3995849],[-7.8182181,54.3992695],[-7.8190815,54.3991215],[-7.8199448,54.3990464],[-7.8207796,54.3990132],[-7.8218615,54.3990231],[-7.8231731,54.3989397],[-7.823663,54.3988613],[-7.824648,54.3985033],[-7.8251764,54.3981931],[-7.8261945,54.3973747],[-7.8261964,54.3971832],[-7.8263365,54.3968299],[-7.8271348,54.3955847],[-7.8277115,54.3948698],[-7.8283381,54.3943449],[-7.8288946,54.3939813],[-7.8293249,54.3937716],[-7.832458,54.3924398],[-7.8357853,54.3909642],[-7.8358309,54.3909504],[-7.8356929,54.3907848],[-7.835255,54.389977],[-7.8350898,54.3896013],[-7.834398,54.3873268],[-7.8343149,54.3871929],[-7.8341929,54.3870718],[-7.8336479,54.3867649],[-7.8330999,54.3864179],[-7.8325679,54.3859028],[-7.8324104,54.3857223],[-7.8321097,54.3855161],[-7.8305429,54.3852168],[-7.8295469,54.384968],[-7.8291219,54.3847899],[-7.828765,54.384553],[-7.8283019,54.3841249],[-7.8279799,54.3836518],[-7.8278528,54.3831269],[-7.8280249,54.3814649],[-7.8279968,54.3795249],[-7.82809,54.3770469],[-7.8281294,54.3765348],[-7.8280646,54.376528],[-7.827645,54.3763769],[-7.8269929,54.376175],[-7.8264829,54.37608],[-7.8244649,54.375863],[-7.823674,54.3756272],[-7.822161,54.3750151],[-7.8216987,54.3748868],[-7.8203479,54.3745399],[-7.8191299,54.3742728],[-7.8182669,54.374065],[-7.8172838,54.373761],[-7.8158539,54.3734661],[-7.8150842,54.3733454],[-7.8145256,54.3733387],[-7.8143738,54.3733536],[-7.8073319,54.3745779],[-7.8067269,54.374583],[-7.8059329,54.374542],[-7.8051749,54.3744278],[-7.8046979,54.3742769],[-7.8035898,54.3737878],[-7.8026449,54.3733],[-7.802072,54.3728869],[-7.8015469,54.3724026],[-7.8014832,54.3723137],[-7.8014742,54.3722407],[-7.8017332,54.3716849],[-7.8017849,54.3714649],[-7.8013265,54.3693981],[-7.8012716,54.3690247],[-7.8013148,54.368673],[-7.8019015,54.3679017],[-7.8023396,54.3671432],[-7.8029165,54.3663696],[-7.8032099,54.3658546],[-7.8042665,54.363728],[-7.8042932,54.3634481],[-7.8042431,54.3627716],[-7.8043165,54.3625013],[-7.8045729,54.3621165],[-7.8049613,54.361703],[-7.8050032,54.3615199],[-7.8047296,54.3610965],[-7.8043364,54.3607664],[-7.8036362,54.3604448],[-7.8029614,54.360338],[-7.8027582,54.3602399],[-7.8024879,54.3590062],[-7.8023897,54.3587348],[-7.7989897,54.3540915],[-7.7988297,54.3538281],[-7.7980881,54.3520249],[-7.7978166,54.3516547],[-7.7965932,54.3504733],[-7.7954836,54.3496114],[-7.7948505,54.3490931],[-7.7941613,54.3486071],[-7.7940462,54.3485477],[-7.793788,54.3484592],[-7.7934066,54.3483653],[-7.7931248,54.3482755],[-7.7929446,54.3481735],[-7.7925462,54.3478749],[-7.7920502,54.3476705],[-7.7919887,54.3476491],[-7.7919404,54.3476329],[-7.7911291,54.3473369],[-7.789321,54.3467159],[-7.7886768,54.3464563],[-7.7869303,54.3460856],[-7.7864177,54.346035],[-7.7859783,54.346013],[-7.7857122,54.3459342],[-7.7855965,54.3458729],[-7.7851869,54.3455708],[-7.784952,54.3454242],[-7.784673,54.3453121],[-7.78409,54.3451169],[-7.7835847,54.3448397],[-7.7833278,54.3447373],[-7.7830594,54.3446473],[-7.7822149,54.3443124],[-7.7812798,54.3440186],[-7.7806763,54.3439056],[-7.7804668,54.3438894],[-7.7800667,54.3439223],[-7.7789929,54.3440637],[-7.7767782,54.3444364],[-7.7761929,54.3445469],[-7.7742407,54.3450651],[-7.7736663,54.3451975],[-7.7724067,54.3454367],[-7.7717764,54.345536],[-7.771128,54.3455816],[-7.7707348,54.3455682],[-7.7701576,54.3455248],[-7.7693321,54.3453704],[-7.7690445,54.3453415],[-7.7687552,54.345335],[-7.7677445,54.3453456],[-7.7651599,54.3454473],[-7.7648785,54.345476],[-7.7589443,54.3463931],[-7.7576388,54.346607],[-7.7571777,54.3466638],[-7.7570548,54.3466573],[-7.756912,54.3466277],[-7.7567246,54.3465498],[-7.7557808,54.3459795],[-7.7552067,54.3456652],[-7.7549742,54.3455805],[-7.7547325,54.3455723],[-7.7544523,54.3456248],[-7.7534644,54.3458804],[-7.7527154,54.3460962],[-7.7524874,54.3462022],[-7.7522268,54.3464041],[-7.7520771,54.3466284],[-7.7520573,54.3467921],[-7.7520912,54.346948],[-7.7522457,54.3473247],[-7.7522479,54.3473982],[-7.7521251,54.3475344],[-7.7515986,54.3477363],[-7.7511348,54.3478419],[-7.7509768,54.3478482],[-7.7506672,54.3478307],[-7.7503551,54.3477974],[-7.7500315,54.3477238],[-7.7490767,54.3473727],[-7.748721,54.347288],[-7.7479778,54.3472259],[-7.7476269,54.347263],[-7.747375,54.3474159],[-7.7469675,54.3477629],[-7.7465976,54.3481414],[-7.7463115,54.3484754],[-7.7461846,54.3486021],[-7.7459546,54.3487779],[-7.7457556,54.3488807],[-7.7452455,54.3490752],[-7.7447059,54.3492663],[-7.7444319,54.3493419],[-7.7440042,54.3493885],[-7.7433066,54.3493941],[-7.7425841,54.3494697],[-7.7419883,54.3495509],[-7.7397853,54.3499469],[-7.7353429,54.3506148],[-7.7308252,54.3513981],[-7.7297101,54.3515329],[-7.7272687,54.3517514],[-7.7266389,54.3517965],[-7.7263923,54.351801],[-7.725881,54.3517382],[-7.724208,54.351431],[-7.7236812,54.3513651],[-7.7234782,54.351377],[-7.7232854,54.3514385],[-7.7231107,54.3515478],[-7.7228974,54.3517591],[-7.7228693,54.3518764],[-7.722866,54.3520323],[-7.7228352,54.3521077],[-7.7218989,54.3521482],[-7.7210739,54.3522201],[-7.7160628,54.3530305],[-7.7143436,54.3532237],[-7.7102113,54.3536264],[-7.7096203,54.3537133],[-7.7093325,54.3537808],[-7.7089855,54.3538884],[-7.708022,54.3542975],[-7.7076416,54.3544847],[-7.7068141,54.3549399],[-7.706218,54.3553756],[-7.705841,54.3556863],[-7.703915,54.3573885],[-7.7035757,54.3577266],[-7.702088,54.3590167],[-7.7019151,54.3591834],[-7.7016583,54.3591878],[-7.6985668,54.3595637],[-7.6981094,54.3595907],[-7.6976854,54.3595878],[-7.6973308,54.3595563],[-7.6969659,54.3594933],[-7.6965881,54.3593976],[-7.6959379,54.3591774],[-7.6924711,54.3576515],[-7.6921552,54.3575288],[-7.6917928,54.3574135],[-7.6913612,54.3572997],[-7.690883,54.3572067],[-7.6902175,54.357111],[-7.6871283,54.3567467],[-7.6862138,54.3566166],[-7.6855535,54.3564805],[-7.6851345,54.3563652],[-7.6836929,54.3559008],[-7.6833099,54.3557496],[-7.6823335,54.3552795],[-7.68147,54.3547836],[-7.6801644,54.353951],[-7.6793473,54.3534477],[-7.6789027,54.3532007],[-7.6786356,54.3530869],[-7.6782681,54.3529595],[-7.6775664,54.3527949],[-7.677163,54.3527319],[-7.6763766,54.3526796],[-7.6716756,54.3524827],[-7.6709246,54.352505],[-7.6702807,54.3525537],[-7.6694188,54.3526528],[-7.6688077,54.3527576],[-7.6684344,54.352855],[-7.6679408,54.3530148],[-7.66757,54.3531685],[-7.6669318,54.3534872],[-7.664971,54.3544012],[-7.6647797,54.3545119],[-7.6646622,54.3546229],[-7.6646305,54.3546463],[-7.66339,54.3542692],[-7.6621566,54.3538735],[-7.6597409,54.3530193],[-7.6582411,54.3525328],[-7.6579036,54.3523382],[-7.657776,54.3522199],[-7.657323,54.3515186],[-7.6569889,54.3509151],[-7.6567529,54.3506659],[-7.6558109,54.3500849],[-7.6553807,54.349848],[-7.654975,54.3496872],[-7.6545613,54.3495839],[-7.6539161,54.3495088],[-7.6532859,54.3494684],[-7.6527819,54.3494749],[-7.6524531,54.3494375],[-7.6521663,54.3493596],[-7.6519934,54.3492963],[-7.6515645,54.3491372],[-7.6502083,54.3486045],[-7.6466502,54.3475312],[-7.6460982,54.3473779],[-7.6459482,54.3473224],[-7.6458756,54.3472766],[-7.6456435,54.3472922],[-7.6448165,54.3472533],[-7.6443277,54.3471902],[-7.6439002,54.3471237],[-7.6436773,54.347683],[-7.6434981,54.3480574],[-7.643386,54.3481271],[-7.6432703,54.3481617],[-7.6430051,54.3481923],[-7.6426728,54.3481858],[-7.6421276,54.3481401],[-7.6412763,54.3480421],[-7.6410273,54.3479915],[-7.6403668,54.3478065],[-7.6402603,54.3477825],[-7.6402005,54.3478238],[-7.6400637,54.3478335],[-7.6400302,54.3479056],[-7.6399952,54.3479587],[-7.6397421,54.3483303],[-7.6396597,54.3484922],[-7.6396117,54.3486576],[-7.6396456,54.3492888],[-7.639597,54.3495589],[-7.6394969,54.3498552],[-7.6393166,54.3501471],[-7.639078,54.3503831],[-7.6387482,54.3506318],[-7.6383699,54.350878],[-7.6375754,54.3512843],[-7.6372329,54.3515456],[-7.6369181,54.3518198],[-7.6365577,54.3523044],[-7.6365143,54.3526028],[-7.6361993,54.3525293],[-7.6359773,54.3524605],[-7.6357789,54.3523763],[-7.6349322,54.3519347],[-7.6344065,54.3516583],[-7.6339342,54.3518414],[-7.6337742,54.351876],[-7.6336004,54.3518706],[-7.6334363,54.3519276],[-7.6336004,54.3518706],[-7.6337742,54.351876],[-7.6339342,54.3518414],[-7.6344065,54.3516583],[-7.6357789,54.3523763],[-7.6359773,54.3524605],[-7.6361993,54.3525293],[-7.6365143,54.3526028],[-7.6365577,54.3523044],[-7.6369181,54.3518198],[-7.6372329,54.3515456],[-7.6375754,54.3512843],[-7.6383699,54.350878],[-7.6387482,54.3506318],[-7.639078,54.3503831],[-7.6393166,54.3501471],[-7.6394969,54.3498552],[-7.639597,54.3495589],[-7.6396407,54.3493156],[-7.6396456,54.3492888],[-7.6396117,54.3486576],[-7.6396597,54.3484922],[-7.6397421,54.3483303],[-7.6399952,54.3479587],[-7.6400302,54.3479056],[-7.6400637,54.3478335],[-7.6400034,54.3478116],[-7.6399637,54.3477734],[-7.6399669,54.3477138],[-7.6400062,54.3476791],[-7.6400978,54.3476545],[-7.6401736,54.3476607],[-7.6402474,54.3476957],[-7.6402722,54.3477354],[-7.6402603,54.3477825],[-7.6410273,54.3479915],[-7.6412763,54.3480421],[-7.6421276,54.3481401],[-7.6426728,54.3481858],[-7.6430051,54.3481923],[-7.6432703,54.3481617],[-7.643386,54.3481271],[-7.6434981,54.3480574],[-7.6438602,54.3472412],[-7.6439002,54.3471237],[-7.644044,54.3468232],[-7.6442649,54.3465597],[-7.6449228,54.3467087],[-7.6457891,54.3469277],[-7.6459721,54.3469594],[-7.6462904,54.3466915],[-7.647598,54.3459783],[-7.6491294,54.3452251],[-7.6496359,54.3449271],[-7.6499097,54.3446871],[-7.6500377,54.3445271],[-7.6502669,54.3441906],[-7.65034,54.3439993],[-7.6503431,54.3439095],[-7.6502468,54.3436472],[-7.6501168,54.3434636],[-7.6498616,54.3432861],[-7.6485932,54.3427493],[-7.6483102,54.3425622],[-7.6480882,54.3423544],[-7.6479353,54.3421323],[-7.6476615,54.3415417],[-7.6475985,54.3410088],[-7.6476011,54.3405761],[-7.647674,54.3400348],[-7.6477568,54.339751],[-7.6482368,54.3386479],[-7.648384,54.3378419],[-7.6484799,54.3375996],[-7.6485893,54.337458],[-7.6488454,54.3372731],[-7.6493867,54.3370084],[-7.6503463,54.3366146],[-7.6512094,54.336298],[-7.6516732,54.3361922],[-7.6520726,54.3361639],[-7.6523108,54.3361732],[-7.6525364,54.3362009],[-7.6540792,54.3364768],[-7.6545585,54.3365353],[-7.655379,54.3365761],[-7.6560762,54.3365129],[-7.6567449,54.3363956],[-7.6576752,54.3360923],[-7.6582176,54.3358852],[-7.6599719,54.3351644],[-7.6618241,54.3343582],[-7.6627955,54.3338708],[-7.6632671,54.3335616],[-7.6634537,54.3334083],[-7.6635944,54.3332475],[-7.6637721,54.3330851],[-7.6637378,54.3330724],[-7.6636961,54.3330223],[-7.6637177,54.3329773],[-7.6637916,54.3329476],[-7.6638983,54.3329633],[-7.6642796,54.3326243],[-7.6671759,54.329439],[-7.667619,54.3290329],[-7.6679488,54.328799],[-7.668319,54.3285939],[-7.6685179,54.328503],[-7.6691579,54.3282689],[-7.6698769,54.3280958],[-7.6711468,54.3278518],[-7.6716559,54.3277378],[-7.6721338,54.327603],[-7.672588,54.327448],[-7.6732078,54.3271489],[-7.6750578,54.3260899],[-7.6763879,54.3253019],[-7.6772708,54.3247518],[-7.677681,54.3244659],[-7.6784288,54.32389],[-7.6789688,54.3234239],[-7.67949,54.3229288],[-7.6801078,54.3222579],[-7.6807799,54.3214259],[-7.6809279,54.3212629],[-7.6812768,54.3209548],[-7.6816859,54.320679],[-7.6819248,54.320557],[-7.6824348,54.32034],[-7.682701,54.3202489],[-7.6832769,54.3200948],[-7.6833922,54.3200684],[-7.6832997,54.3198955],[-7.6832009,54.3196038],[-7.6831948,54.319431],[-7.6832317,54.3192438],[-7.6834973,54.3182571],[-7.68412,54.3167369],[-7.6842248,54.3159398],[-7.684231,54.3153509],[-7.6841669,54.3149849],[-7.683789,54.3142309],[-7.6837258,54.3140329],[-7.6836746,54.3132843],[-7.6834755,54.3124999],[-7.6833479,54.3121588],[-7.6833268,54.3118059],[-7.6836649,54.310652],[-7.6838359,54.3101669],[-7.6839009,54.3100539],[-7.6838868,54.3100094],[-7.6840073,54.3098153],[-7.6841334,54.3096724],[-7.684439,54.3094403],[-7.6848114,54.3092349],[-7.6852778,54.3089355],[-7.6854644,54.308788],[-7.6856948,54.3085366],[-7.6858591,54.3082745],[-7.6861387,54.3076978],[-7.686173,54.3075009],[-7.6861529,54.306581],[-7.686249,54.3060639],[-7.6864466,54.3055802],[-7.6867202,54.3052961],[-7.6877102,54.3044825],[-7.6881762,54.3041295],[-7.6885,54.3039414],[-7.6896358,54.3033405],[-7.6902289,54.3029792],[-7.6904418,54.302822],[-7.6910216,54.3023353],[-7.6913209,54.3020214],[-7.6914266,54.3018342],[-7.6914789,54.3016539],[-7.6914068,54.3012799],[-7.6912189,54.3007328],[-7.6911889,54.3005618],[-7.691201,54.300397],[-7.691264,54.3002429],[-7.6913649,54.3000939],[-7.6916629,54.2998119],[-7.6937239,54.2981329],[-7.6941019,54.2978019],[-7.6947428,54.2971279],[-7.6951738,54.296576],[-7.6960599,54.2952719],[-7.6964199,54.294688],[-7.6967379,54.2940679],[-7.6968709,54.2936509],[-7.697054,54.2928369],[-7.6975709,54.2910826],[-7.6975899,54.2910247],[-7.6989749,54.2871368],[-7.6998509,54.2844669],[-7.7001029,54.2838099],[-7.7007415,54.2824608],[-7.7011475,54.2816742],[-7.7015467,54.280972],[-7.7017275,54.2805471],[-7.7018443,54.2803162],[-7.7021424,54.279708],[-7.702622,54.278266],[-7.7027818,54.277655],[-7.7028254,54.2772056],[-7.7031305,54.2758481],[-7.7036099,54.2739986],[-7.7045744,54.2706373],[-7.705166,54.268719],[-7.7051818,54.2685374],[-7.705169,54.2684128],[-7.7164328,54.266113],[-7.7174716,54.2659062],[-7.7173713,54.2656553],[-7.7173209,54.2650386],[-7.7170821,54.2631215],[-7.7168723,54.2617387],[-7.7167909,54.2609674],[-7.7167561,54.260859],[-7.7166686,54.2607489],[-7.7158673,54.2600575],[-7.715203,54.2595201],[-7.7135531,54.2583431],[-7.7133113,54.2581922],[-7.7131349,54.2581064],[-7.7130293,54.2580788],[-7.7125752,54.2579955],[-7.710677,54.2577156],[-7.7104673,54.2576487],[-7.7103512,54.2575902],[-7.7102387,54.2575018],[-7.7099662,54.2572186],[-7.709468,54.2565639],[-7.7092513,54.2563985],[-7.7089256,54.2562253],[-7.70879,54.2561662],[-7.7089162,54.2560292],[-7.70879,54.2561662],[-7.7092513,54.2563985],[-7.709468,54.2565639],[-7.7099662,54.2572186],[-7.7102387,54.2575018],[-7.7103512,54.2575902],[-7.7104673,54.2576487],[-7.710677,54.2577156],[-7.7125752,54.2579955],[-7.7130293,54.2580788],[-7.7131349,54.2581064],[-7.7133113,54.2581922],[-7.7135531,54.2583431],[-7.715203,54.2595201],[-7.7158673,54.2600575],[-7.7166686,54.2607489],[-7.7167561,54.260859],[-7.7167909,54.2609674],[-7.7168723,54.2617387],[-7.7170821,54.2631215],[-7.7173209,54.2650386],[-7.7173713,54.2656553],[-7.7174481,54.2658781],[-7.7174716,54.2659062],[-7.7254481,54.2643246],[-7.7270899,54.2639722],[-7.7292885,54.2635459],[-7.7346846,54.2624335],[-7.7379379,54.2617845],[-7.7474542,54.259921],[-7.7487077,54.2596626],[-7.7518914,54.2590515],[-7.75558,54.2582803],[-7.7585515,54.2576912],[-7.759887,54.257396],[-7.760546,54.257317],[-7.7609826,54.2572987],[-7.761517,54.2573066],[-7.7643759,54.2574589],[-7.76645,54.257529],[-7.766768,54.2575599],[-7.7673597,54.2576798],[-7.7696206,54.2584109],[-7.7710645,54.2588935],[-7.7733109,54.259611],[-7.774944,54.2601624],[-7.776845,54.2607577],[-7.7779533,54.2611274],[-7.7802595,54.2619404],[-7.7825976,54.2627852],[-7.7874686,54.2645986],[-7.790022,54.2655607],[-7.7917151,54.266232],[-7.7937227,54.2669724],[-7.8004358,54.2695179],[-7.8013578,54.2698548],[-7.8015629,54.2699168],[-7.8017609,54.2699548],[-7.8019619,54.269972],[-7.8021658,54.2699649],[-7.8029109,54.2698759],[-7.803249,54.269815],[-7.803553,54.2698168],[-7.8036809,54.269847],[-7.8039825,54.2699727],[-7.80448,54.270243],[-7.8050943,54.2704838],[-7.8057745,54.2709292],[-7.8065058,54.2714414],[-7.8066969,54.271555],[-7.8068899,54.2716333],[-7.809836,54.2725005],[-7.8119391,54.273101],[-7.8158483,54.2742628],[-7.8190418,54.2750412],[-7.8234531,54.2760582],[-7.824499,54.276327],[-7.8265987,54.2768235],[-7.8288838,54.2774039],[-7.8292439,54.2774729],[-7.832911,54.2780143],[-7.8379068,54.278591],[-7.8409269,54.2789149],[-7.8428019,54.2791369],[-7.8431615,54.279158],[-7.8449909,54.2793916],[-7.8453712,54.2795413],[-7.8455811,54.2796529],[-7.8460149,54.2799595],[-7.8468015,54.280734],[-7.8469572,54.2808549],[-7.8471862,54.2809849],[-7.8474067,54.2810812],[-7.8482345,54.2813362],[-7.8488927,54.2814572],[-7.8520508,54.2817528],[-7.852716,54.28187],[-7.8530339,54.2819428],[-7.8533389,54.2820369],[-7.8536309,54.2821479],[-7.8541499,54.2823999],[-7.8554738,54.2831118],[-7.8557659,54.283251],[-7.8563949,54.2834749],[-7.8583002,54.2840018],[-7.8592768,54.2843825],[-7.8604307,54.2848711],[-7.8632848,54.2860317],[-7.8640981,54.2864063],[-7.8646321,54.2866816],[-7.8657584,54.2873544],[-7.8661991,54.2875999],[-7.8674506,54.288176],[-7.8680195,54.2884548],[-7.8683611,54.2886178],[-7.8693978,54.2891412],[-7.8700701,54.2893977],[-7.8718595,54.2899518],[-7.8757644,54.291278],[-7.8758238,54.2913088],[-7.8757662,54.2913343],[-7.8752886,54.2919486],[-7.8734603,54.2940396],[-7.8732762,54.2942547],[-7.8715609,54.2962707],[-7.8714067,54.2964319],[-7.8730671,54.2944995],[-7.8732762,54.2942547],[-7.8752886,54.2919486],[-7.8757662,54.2913343],[-7.8758238,54.2913088],[-7.8753423,54.2911275],[-7.8718595,54.2899518],[-7.8700701,54.2893977],[-7.8693978,54.2891412],[-7.8683611,54.2886178],[-7.8674506,54.288176],[-7.8661991,54.2875999],[-7.8657584,54.2873544],[-7.8646321,54.2866816],[-7.8640981,54.2864063],[-7.8632848,54.2860317],[-7.8604307,54.2848711],[-7.8592768,54.2843825],[-7.8583002,54.2840018],[-7.8563949,54.2834749],[-7.8557659,54.283251],[-7.8554738,54.2831118],[-7.8541499,54.2823999],[-7.8536309,54.2821479],[-7.8533389,54.2820369],[-7.8530339,54.2819428],[-7.852716,54.28187],[-7.8520508,54.2817528],[-7.8488927,54.2814572],[-7.8482345,54.2813362],[-7.8474067,54.2810812],[-7.8471862,54.2809849],[-7.8469572,54.2808549],[-7.8468015,54.280734],[-7.8460149,54.2799595],[-7.8455811,54.2796529],[-7.8453712,54.2795413],[-7.8449909,54.2793916],[-7.8431615,54.279158],[-7.8428019,54.2791369],[-7.8409269,54.2789149],[-7.8379068,54.278591],[-7.832911,54.2780143],[-7.8292439,54.2774729],[-7.8288838,54.2774039],[-7.8265987,54.2768235],[-7.824499,54.276327],[-7.8234531,54.2760582],[-7.8190418,54.2750412],[-7.8158483,54.2742628],[-7.8119391,54.273101],[-7.809836,54.2725005],[-7.8068899,54.2716333],[-7.8066969,54.271555],[-7.8065058,54.2714414],[-7.8057745,54.2709292],[-7.8050943,54.2704838],[-7.80448,54.270243],[-7.8039825,54.2699727],[-7.8036809,54.269847],[-7.803553,54.2698168],[-7.803249,54.269815],[-7.8029109,54.2698759],[-7.8021658,54.2699649],[-7.8019619,54.269972],[-7.8017609,54.2699548],[-7.8015629,54.2699168],[-7.8013578,54.2698548],[-7.8004358,54.2695179],[-7.7937227,54.2669724],[-7.7917151,54.266232],[-7.790022,54.2655607],[-7.7874686,54.2645986],[-7.7825976,54.2627852],[-7.7802595,54.2619404],[-7.7779533,54.2611274],[-7.776845,54.2607577],[-7.774944,54.2601624],[-7.7733109,54.259611],[-7.7710645,54.2588935],[-7.7696206,54.2584109],[-7.7673597,54.2576798],[-7.766768,54.2575599],[-7.76645,54.257529],[-7.7643759,54.2574589],[-7.761517,54.2573066],[-7.7609826,54.2572987],[-7.760546,54.257317],[-7.759887,54.257396],[-7.7585515,54.2576912],[-7.75558,54.2582803],[-7.7518914,54.2590515],[-7.7487077,54.2596626],[-7.7474542,54.259921],[-7.7379379,54.2617845],[-7.7346846,54.2624335],[-7.7292885,54.2635459],[-7.7270899,54.2639722],[-7.7254481,54.2643246],[-7.7221461,54.2649779],[-7.7174716,54.2659062],[-7.7173713,54.2656553],[-7.7173209,54.2650386],[-7.7170821,54.2631215],[-7.7168723,54.2617387],[-7.7167909,54.2609674],[-7.7167561,54.260859],[-7.7166686,54.2607489],[-7.7158673,54.2600575],[-7.715203,54.2595201],[-7.7135531,54.2583431],[-7.7133113,54.2581922],[-7.7131349,54.2581064],[-7.7130293,54.2580788],[-7.7125752,54.2579955],[-7.710677,54.2577156],[-7.7104673,54.2576487],[-7.7103512,54.2575902],[-7.7102387,54.2575018],[-7.7099662,54.2572186],[-7.709468,54.2565639],[-7.7092513,54.2563985],[-7.7089256,54.2562253],[-7.70879,54.2561662],[-7.7085225,54.2561119],[-7.708055,54.2560755],[-7.7076442,54.2561217],[-7.7067388,54.2563251],[-7.7063456,54.2564441],[-7.7056028,54.256631],[-7.7051978,54.2566921],[-7.7049348,54.2567066],[-7.7045929,54.2566775],[-7.6991808,54.2557309],[-7.6991312,54.2557248],[-7.6990653,54.2556955],[-7.6938713,54.2547907],[-7.6932886,54.2547005],[-7.6928882,54.254681],[-7.6926662,54.2547098],[-7.6916385,54.2549587],[-7.6896326,54.2554102],[-7.6893955,54.2554489],[-7.6889206,54.2554763],[-7.6884365,54.2554391],[-7.6865131,54.2551902],[-7.6847302,54.2548913],[-7.6840132,54.2548249],[-7.6823624,54.2548104],[-7.6818338,54.2547868],[-7.680746,54.2547734],[-7.67968,54.2547288],[-7.6768631,54.2546806],[-7.6755676,54.2546102],[-7.6708516,54.2542919],[-7.6700967,54.2541989],[-7.6655812,54.253512],[-7.6623866,54.2530627],[-7.6612566,54.2528656],[-7.6605273,54.2527539],[-7.6597236,54.2526438],[-7.657456,54.2524247],[-7.657166,54.2524169],[-7.6566513,54.2524437],[-7.6557133,54.2525505],[-7.6550281,54.2525797],[-7.6529661,54.2525348],[-7.6522138,54.2525421],[-7.6509788,54.2526153],[-7.6498845,54.2527006],[-7.6481813,54.2528867],[-7.6475326,54.2529295],[-7.6461024,54.2529033],[-7.6434217,54.2527796],[-7.6427003,54.2527816],[-7.6414598,54.2529102],[-7.6406801,54.2529224],[-7.638634,54.2526583],[-7.6373026,54.2525304],[-7.6346272,54.2523478],[-7.6333582,54.2522033],[-7.6326571,54.2521712],[-7.632111,54.2521725],[-7.6320426,54.2521886],[-7.632114,54.2522752],[-7.6320426,54.2521886],[-7.632111,54.2521725],[-7.6326571,54.2521712],[-7.6333582,54.2522033],[-7.6346272,54.2523478],[-7.6373026,54.2525304],[-7.638634,54.2526583],[-7.6406801,54.2529224],[-7.6414598,54.2529102],[-7.6427003,54.2527816],[-7.6434217,54.2527796],[-7.6461024,54.2529033],[-7.6475326,54.2529295],[-7.6481813,54.2528867],[-7.6498845,54.2527006],[-7.6509788,54.2526153],[-7.6522138,54.2525421],[-7.6529661,54.2525348],[-7.6550281,54.2525797],[-7.6557133,54.2525505],[-7.6566513,54.2524437],[-7.657166,54.2524169],[-7.657456,54.2524247],[-7.6597236,54.2526438],[-7.6605273,54.2527539],[-7.6612566,54.2528656],[-7.6623866,54.2530627],[-7.6655812,54.253512],[-7.6700967,54.2541989],[-7.6708516,54.2542919],[-7.6755676,54.2546102],[-7.6768631,54.2546806],[-7.67968,54.2547288],[-7.680746,54.2547734],[-7.6818338,54.2547868],[-7.6823624,54.2548104],[-7.6840132,54.2548249],[-7.6847302,54.2548913],[-7.6865131,54.2551902],[-7.6884365,54.2554391],[-7.6889206,54.2554763],[-7.6893955,54.2554489],[-7.6896326,54.2554102],[-7.6916385,54.2549587],[-7.6926662,54.2547098],[-7.6928882,54.254681],[-7.6932886,54.2547005],[-7.6938713,54.2547907],[-7.6990653,54.2556955],[-7.6991312,54.2557248],[-7.7045929,54.2566775],[-7.7049348,54.2567066],[-7.7051978,54.2566921],[-7.7056028,54.256631],[-7.7063456,54.2564441],[-7.7067388,54.2563251],[-7.7076442,54.2561217],[-7.7078309,54.2560936],[-7.708055,54.2560755],[-7.7085225,54.2561119],[-7.70879,54.2561662],[-7.7089048,54.2562162],[-7.70879,54.2561662],[-7.7085225,54.2561119],[-7.708055,54.2560755],[-7.7078309,54.2560936],[-7.7076442,54.2561217],[-7.7067388,54.2563251],[-7.7063456,54.2564441],[-7.7056028,54.256631],[-7.7051978,54.2566921],[-7.7049348,54.2567066],[-7.7045929,54.2566775],[-7.6991808,54.2557309],[-7.6991312,54.2557248],[-7.6990653,54.2556955],[-7.6936288,54.2547501],[-7.6934988,54.2547266],[-7.6933816,54.2554191],[-7.6932549,54.2558224],[-7.6930944,54.2566997],[-7.6929964,54.2569916],[-7.692757,54.2580622],[-7.6924533,54.2598161],[-7.6923406,54.2600515],[-7.6922649,54.260577],[-7.6919546,54.2622373],[-7.6919237,54.2625555],[-7.69174,54.2636222],[-7.6915411,54.2650019],[-7.6911267,54.2669765],[-7.6910423,54.26755],[-7.6907409,54.2691628],[-7.6902021,54.2714651],[-7.6901829,54.2715858],[-7.6902265,54.2722332],[-7.6902125,54.2725031],[-7.6900558,54.2730541],[-7.6898346,54.2733501],[-7.6884532,54.2747577],[-7.6882651,54.2748571],[-7.6865578,54.2762575],[-7.6862577,54.2764652],[-7.6860949,54.2766049],[-7.6850703,54.2773669],[-7.6842425,54.2781222],[-7.6831916,54.2791766],[-7.6828509,54.2796318],[-7.6823769,54.2803395],[-7.6822758,54.280522],[-7.6821457,54.2808914],[-7.6820005,54.2811926],[-7.6819662,54.2813894],[-7.6820211,54.2815817],[-7.6821118,54.2816835],[-7.6821763,54.2818441],[-7.6821692,54.2818896],[-7.6819621,54.2823006],[-7.6816538,54.2827454],[-7.6814448,54.2831796],[-7.6813791,54.2834523],[-7.6812655,54.2837228],[-7.6809216,54.2844498],[-7.6807063,54.2847718],[-7.6802501,54.2855906],[-7.6800559,54.2860799],[-7.6799475,54.2864307],[-7.6798767,54.2868852],[-7.6797917,54.2878571],[-7.6795325,54.289974],[-7.6794961,54.2906827],[-7.6793801,54.2908439],[-7.6788172,54.2912562],[-7.6787373,54.2913576],[-7.6787315,54.2913907],[-7.6783556,54.2913855],[-7.6776905,54.2913497],[-7.6761614,54.2912287],[-7.6745111,54.2910908],[-7.6712565,54.2907857],[-7.6705705,54.2907384],[-7.6690068,54.290682],[-7.6682754,54.2906894],[-7.662447,54.2909346],[-7.656881,54.2911313],[-7.6559599,54.2911812],[-7.6557182,54.2912158],[-7.6554108,54.2912838],[-7.6548543,54.2914636],[-7.6537004,54.291911],[-7.6496838,54.2932658],[-7.6483963,54.2936775],[-7.6478416,54.2938883],[-7.647315,54.2941253],[-7.6463014,54.2945079],[-7.6443367,54.2953284],[-7.6438427,54.2955493],[-7.6425381,54.296193],[-7.6423274,54.2963482],[-7.6422907,54.2963811],[-7.6400656,54.2960052],[-7.6398865,54.2959841],[-7.6421244,54.2963569],[-7.6422907,54.2963811],[-7.6425381,54.296193],[-7.6438427,54.2955493],[-7.6443367,54.2953284],[-7.6463014,54.2945079],[-7.647315,54.2941253],[-7.6478416,54.2938883],[-7.6483963,54.2936775],[-7.6496838,54.2932658],[-7.6537004,54.291911],[-7.6548543,54.2914636],[-7.6554108,54.2912838],[-7.6557182,54.2912158],[-7.6559599,54.2911812],[-7.656881,54.2911313],[-7.662447,54.2909346],[-7.6682754,54.2906894],[-7.6690068,54.290682],[-7.6705705,54.2907384],[-7.6712565,54.2907857],[-7.6745111,54.2910908],[-7.6776905,54.2913497],[-7.6783556,54.2913855],[-7.6787315,54.2913907],[-7.6788172,54.2912562],[-7.6793801,54.2908439],[-7.6794961,54.2906827],[-7.6795325,54.289974],[-7.6797917,54.2878571],[-7.6798767,54.2868852],[-7.6799475,54.2864307],[-7.6800559,54.2860799],[-7.6802501,54.2855906],[-7.6807063,54.2847718],[-7.6809216,54.2844498],[-7.6810863,54.2841139],[-7.6813791,54.2834523],[-7.6814448,54.2831796],[-7.6816538,54.2827454],[-7.6819621,54.2823006],[-7.6821692,54.2818896],[-7.6821763,54.2818441],[-7.6821118,54.2816835],[-7.6820211,54.2815817],[-7.6819662,54.2813894],[-7.6820005,54.2811926],[-7.6821457,54.2808914],[-7.6822758,54.280522],[-7.6823769,54.2803395],[-7.6828509,54.2796318],[-7.6831916,54.2791766],[-7.6842425,54.2781222],[-7.6850703,54.2773669],[-7.6860949,54.2766049],[-7.6862577,54.2764652],[-7.6865578,54.2762575],[-7.6882651,54.2748571],[-7.6884532,54.2747577],[-7.6898346,54.2733501],[-7.6900558,54.2730541],[-7.6902125,54.2725031],[-7.6902265,54.2722332],[-7.6901829,54.2715858],[-7.6902021,54.2714651],[-7.6907409,54.2691628],[-7.6910423,54.26755],[-7.6911267,54.2669765],[-7.6915411,54.2650019],[-7.69174,54.2636222],[-7.6919237,54.2625555],[-7.6919546,54.2622373],[-7.6922649,54.260577],[-7.6923406,54.2600515],[-7.6924533,54.2598161],[-7.692757,54.2580622],[-7.6929964,54.2569916],[-7.6930944,54.2566997],[-7.6932549,54.2558224],[-7.6933816,54.2554191],[-7.6935015,54.2547583],[-7.6934988,54.2547266],[-7.6990653,54.2556955],[-7.6991312,54.2557248],[-7.7045929,54.2566775],[-7.7049348,54.2567066],[-7.7051978,54.2566921],[-7.7056028,54.256631],[-7.7063456,54.2564441],[-7.7067388,54.2563251],[-7.7076442,54.2561217],[-7.708055,54.2560755],[-7.7085225,54.2561119],[-7.70879,54.2561662],[-7.7089493,54.2559933],[-7.70879,54.2561662],[-7.7092513,54.2563985],[-7.709468,54.2565639],[-7.7099662,54.2572186],[-7.7102387,54.2575018],[-7.7103512,54.2575902],[-7.7104673,54.2576487],[-7.710677,54.2577156],[-7.7125752,54.2579955],[-7.7130293,54.2580788],[-7.7131349,54.2581064],[-7.7133113,54.2581922],[-7.7135531,54.2583431],[-7.715203,54.2595201],[-7.7158673,54.2600575],[-7.7166686,54.2607489],[-7.7167561,54.260859],[-7.7167909,54.2609674],[-7.7168723,54.2617387],[-7.7170821,54.2631215],[-7.7173209,54.2650386],[-7.7173713,54.2656553],[-7.7174481,54.2658781],[-7.7174716,54.2659062],[-7.7155607,54.2662856],[-7.7129656,54.2668295],[-7.7094881,54.2675228],[-7.7052275,54.2684005],[-7.705169,54.2684128],[-7.705166,54.268719],[-7.7045744,54.2706373],[-7.7036099,54.2739986],[-7.7031305,54.2758481],[-7.7028254,54.2772056],[-7.7027818,54.277655],[-7.702622,54.278266],[-7.7021424,54.279708],[-7.7018443,54.2803162],[-7.7017275,54.2805471],[-7.7015467,54.280972],[-7.7011475,54.2816742],[-7.7007415,54.2824608],[-7.7001029,54.2838099],[-7.6998509,54.2844669],[-7.6989749,54.2871368],[-7.6976478,54.2908973],[-7.6975899,54.2910247],[-7.697054,54.2928369],[-7.6968709,54.2936509],[-7.6967379,54.2940679],[-7.6964199,54.294688],[-7.6960599,54.2952719],[-7.6951738,54.296576],[-7.6947428,54.2971279],[-7.6941019,54.2978019],[-7.6937239,54.2981329],[-7.6916629,54.2998119],[-7.6913649,54.3000939],[-7.691264,54.3002429],[-7.691201,54.300397],[-7.6911889,54.3005618],[-7.6912189,54.3007328],[-7.6914068,54.3012799],[-7.6914789,54.3016539],[-7.6914266,54.3018342],[-7.6913209,54.3020214],[-7.6910216,54.3023353],[-7.6904418,54.302822],[-7.6902289,54.3029792],[-7.6896358,54.3033405],[-7.6885,54.3039414],[-7.6881762,54.3041295],[-7.6877102,54.3044825],[-7.6867202,54.3052961],[-7.6864466,54.3055802],[-7.686249,54.3060639],[-7.6861529,54.306581],[-7.686173,54.3075009],[-7.6861387,54.3076978],[-7.6858591,54.3082745],[-7.6856948,54.3085366],[-7.6854644,54.308788],[-7.6852778,54.3089355],[-7.6848114,54.3092349],[-7.684439,54.3094403],[-7.6841334,54.3096724],[-7.6840073,54.3098153],[-7.6838868,54.3100094],[-7.6839009,54.3100539],[-7.6838359,54.3101669],[-7.6836649,54.310652],[-7.6833268,54.3118059],[-7.6833479,54.3121588],[-7.6834755,54.3124999],[-7.6836746,54.3132843],[-7.6837258,54.3140329],[-7.683789,54.3142309],[-7.6841669,54.3149849],[-7.684231,54.3153509],[-7.6842248,54.3159398],[-7.68412,54.3167369],[-7.6834973,54.3182571],[-7.6833119,54.318891],[-7.6831948,54.319431],[-7.6832009,54.3196038],[-7.6832997,54.3198955],[-7.6833922,54.3200684],[-7.682701,54.3202489],[-7.6824348,54.32034],[-7.6819248,54.320557],[-7.6816859,54.320679],[-7.6812768,54.3209548],[-7.6809279,54.3212629],[-7.6807799,54.3214259],[-7.6801078,54.3222579],[-7.67949,54.3229288],[-7.6789688,54.3234239],[-7.6784288,54.32389],[-7.677681,54.3244659],[-7.6772708,54.3247518],[-7.6763879,54.3253019],[-7.6750578,54.3260899],[-7.6732078,54.3271489],[-7.672588,54.327448],[-7.6721338,54.327603],[-7.6716559,54.3277378],[-7.6711468,54.3278518],[-7.6698769,54.3280958],[-7.6691579,54.3282689],[-7.6685179,54.328503],[-7.668319,54.3285939],[-7.6679488,54.328799],[-7.667619,54.3290329],[-7.6671759,54.329439],[-7.6642796,54.3326243],[-7.6638983,54.3329633],[-7.6639445,54.3330207],[-7.6639352,54.333046],[-7.6638652,54.3330858],[-7.6637721,54.3330851],[-7.6634537,54.3334083],[-7.6632671,54.3335616],[-7.6627955,54.3338708],[-7.6618241,54.3343582],[-7.6599719,54.3351644],[-7.6582176,54.3358852],[-7.6576752,54.3360923],[-7.6567449,54.3363956],[-7.6560762,54.3365129],[-7.655379,54.3365761],[-7.6545585,54.3365353],[-7.6540792,54.3364768],[-7.6525364,54.3362009],[-7.6523108,54.3361732],[-7.6520726,54.3361639],[-7.6516732,54.3361922],[-7.6512094,54.336298],[-7.6503463,54.3366146],[-7.6493867,54.3370084],[-7.6488454,54.3372731],[-7.6485893,54.337458],[-7.6484799,54.3375996],[-7.648384,54.3378419],[-7.6482368,54.3386479],[-7.6477568,54.339751],[-7.647674,54.3400348],[-7.6476011,54.3405761],[-7.6475985,54.3410088],[-7.6476615,54.3415417],[-7.6479353,54.3421323],[-7.6480882,54.3423544],[-7.6483102,54.3425622],[-7.6485932,54.3427493],[-7.6498616,54.3432861],[-7.6501168,54.3434636],[-7.6502468,54.3436472],[-7.6503431,54.3439095],[-7.65034,54.3439993],[-7.6502669,54.3441906],[-7.6500377,54.3445271],[-7.6499097,54.3446871],[-7.6496359,54.3449271],[-7.6491294,54.3452251],[-7.647598,54.3459783],[-7.6462904,54.3466915],[-7.6459721,54.3469594],[-7.6457891,54.3469277],[-7.6449228,54.3467087],[-7.643782,54.3464442],[-7.6433984,54.3463337],[-7.6430438,54.3462324],[-7.6428601,54.3461743],[-7.6426584,54.3460834],[-7.6422484,54.3458822],[-7.6419914,54.3457362],[-7.6415974,54.3454678],[-7.6406998,54.3445992],[-7.6400945,54.3441621],[-7.6394657,54.3438668],[-7.6388353,54.3436618],[-7.638473,54.3435817],[-7.6377775,54.3435001],[-7.6372096,54.3434694],[-7.6351059,54.3434312],[-7.6350663,54.3434312],[-7.6342312,54.3434194],[-7.6334564,54.3434276],[-7.6326508,54.3434891],[-7.6320246,54.3436297],[-7.6318037,54.3437158],[-7.6316638,54.3437892],[-7.6315714,54.3438808],[-7.6314103,54.3439991],[-7.6306505,54.3446812],[-7.6304506,54.3449336],[-7.6301334,54.3454769],[-7.6300114,54.3459003],[-7.6298658,54.3463619],[-7.629743,54.3468612],[-7.6295996,54.3472477],[-7.6293655,54.3476901],[-7.6288668,54.3483674],[-7.6285586,54.3486876],[-7.62701,54.3500756],[-7.6252745,54.3515549],[-7.625012,54.3518316],[-7.6248307,54.352042],[-7.6246826,54.3523178],[-7.6246194,54.352533],[-7.6245926,54.3527764],[-7.6247396,54.3537882],[-7.6248225,54.3542133],[-7.6249037,54.3544845],[-7.6250518,54.3547279],[-7.6252727,54.3549542],[-7.6260643,54.3556123],[-7.6267321,54.3561387],[-7.6269215,54.3562421],[-7.6276693,54.3565082],[-7.6291725,54.356992],[-7.6296897,54.3572],[-7.6301802,54.3574405],[-7.630525,54.3576372],[-7.6311806,54.3580872],[-7.6319517,54.3587477],[-7.6331772,54.3597369],[-7.6339084,54.3602743],[-7.634142,54.3604326],[-7.6342322,54.3604082],[-7.6343413,54.3604071],[-7.6344326,54.3604295],[-7.6345101,54.3604783],[-7.6345403,54.3605286],[-7.634535,54.3605884],[-7.6344972,54.3606359],[-7.6344266,54.360675],[-7.6345688,54.3608203],[-7.6350124,54.3611855],[-7.6352604,54.3614338],[-7.6354682,54.361722],[-7.635639,54.3622862],[-7.6357322,54.362723],[-7.6357771,54.3632033],[-7.6357411,54.3635528],[-7.6355912,54.3639668],[-7.6343626,54.3664026],[-7.6340711,54.3669215],[-7.6342368,54.3669713],[-7.6343292,54.3670655],[-7.6343166,54.3671773],[-7.6341936,54.3672676],[-7.6341031,54.3672928],[-7.6339051,54.3672905],[-7.6328477,54.3692914],[-7.6324981,54.3700206],[-7.6323423,54.3706506],[-7.632333,54.3711881],[-7.6324249,54.3716579],[-7.6326968,54.3723022],[-7.6347833,54.3755553],[-7.6350218,54.3759619],[-7.6364392,54.3787145],[-7.6367166,54.3793117],[-7.6368496,54.3797878],[-7.6369189,54.3802737],[-7.6368119,54.3821358],[-7.6368147,54.3824102],[-7.6368496,54.3826356],[-7.6369881,54.3830761],[-7.6370662,54.3832646],[-7.6372711,54.3836347],[-7.6376092,54.3840484],[-7.6383138,54.3848219],[-7.6387616,54.385372],[-7.6391557,54.3860951],[-7.639409,54.3867636],[-7.6394027,54.3870487],[-7.6393362,54.3873382],[-7.6393712,54.3874637],[-7.639475,54.3874682],[-7.6395633,54.3874971],[-7.6396255,54.3875496],[-7.6396409,54.3876017],[-7.6396139,54.3876625],[-7.6395701,54.3876964],[-7.6397074,54.3877604],[-7.6399343,54.3879091],[-7.6400079,54.3880158],[-7.6402701,54.388532],[-7.6413164,54.3908198],[-7.6421333,54.3923923],[-7.644229,54.3972214],[-7.6444616,54.3979318],[-7.6453913,54.4014285],[-7.6456005,54.4018637],[-7.6458173,54.4021822],[-7.6460808,54.4024191],[-7.6464221,54.4026782],[-7.6466014,54.4027907],[-7.6504402,54.4048634],[-7.6510411,54.405106],[-7.6521607,54.4054241],[-7.6527893,54.4056407],[-7.6532462,54.4059259],[-7.6536616,54.4062833],[-7.6566376,54.410784],[-7.6570757,54.4112996],[-7.6574521,54.4116485],[-7.6583356,54.4122581],[-7.6723752,54.4211174],[-7.6726831,54.4213894],[-7.6729767,54.4217014],[-7.6731793,54.4219795],[-7.6733388,54.4223039],[-7.6734401,54.4225737],[-7.6743875,54.4267085],[-7.6746283,54.4274355],[-7.6751513,54.4284209],[-7.6779639,54.4316388],[-7.6784205,54.4320875],[-7.6789021,54.4324436],[-7.6796952,54.4329745],[-7.6802313,54.433261],[-7.6807434,54.4334964],[-7.6815469,54.433817],[-7.6826418,54.4341899],[-7.6859506,54.4353745],[-7.6869033,54.4357452],[-7.6873602,54.4359776],[-7.6877959,54.4362395],[-7.6882524,54.4365768],[-7.6885838,54.4368605],[-7.6888213,54.4370965],[-7.6896688,54.4381659],[-7.6898213,54.4385091],[-7.6899659,54.4395155],[-7.6901462,54.4412122],[-7.6902337,54.441497],[-7.6903701,54.4417773],[-7.6905236,54.4420053],[-7.6909717,54.4424913],[-7.6919945,54.4433267],[-7.6926898,54.4438987],[-7.6909717,54.4424913],[-7.6905236,54.4420053],[-7.6903701,54.4417773],[-7.6902337,54.441497],[-7.6901462,54.4412122],[-7.6899659,54.4395155],[-7.6898213,54.4385091],[-7.6896688,54.4381659],[-7.6888213,54.4370965],[-7.6885838,54.4368605],[-7.6882524,54.4365768],[-7.6877959,54.4362395],[-7.6873602,54.4359776],[-7.6869033,54.4357452],[-7.6859506,54.4353745],[-7.6826418,54.4341899],[-7.6815469,54.433817],[-7.6807434,54.4334964],[-7.6802313,54.433261],[-7.6796952,54.4329745],[-7.6789021,54.4324436],[-7.6784205,54.4320875],[-7.6779639,54.4316388],[-7.6751513,54.4284209],[-7.6746283,54.4274355],[-7.6743875,54.4267085],[-7.6734401,54.4225737],[-7.6733388,54.4223039],[-7.6731793,54.4219795],[-7.6729767,54.4217014],[-7.6726831,54.4213894],[-7.6723752,54.4211174],[-7.6583356,54.4122581],[-7.6574521,54.4116485],[-7.6570757,54.4112996],[-7.6566376,54.410784],[-7.6536616,54.4062833],[-7.6532462,54.4059259],[-7.6527893,54.4056407],[-7.6521607,54.4054241],[-7.6510411,54.405106],[-7.6504402,54.4048634],[-7.6466014,54.4027907],[-7.6464221,54.4026782],[-7.6460808,54.4024191],[-7.6458173,54.4021822],[-7.6456005,54.4018637],[-7.6453913,54.4014285],[-7.6444616,54.3979318],[-7.644229,54.3972214],[-7.6421333,54.3923923],[-7.6413164,54.3908198],[-7.6402701,54.388532],[-7.6400079,54.3880158],[-7.6399343,54.3879091],[-7.6397074,54.3877604],[-7.6395701,54.3876964],[-7.639464,54.387731],[-7.6393353,54.3877286],[-7.6392865,54.3877157],[-7.6391749,54.3876185],[-7.6391825,54.3875587],[-7.6392332,54.3875069],[-7.6393712,54.3874637],[-7.6393362,54.3873382],[-7.6394027,54.3870487],[-7.639409,54.3867636],[-7.6391557,54.3860951],[-7.6387616,54.385372],[-7.6383138,54.3848219],[-7.6376092,54.3840484],[-7.6372711,54.3836347],[-7.6370662,54.3832646],[-7.6369881,54.3830761],[-7.6368496,54.3826356],[-7.6368147,54.3824102],[-7.6368119,54.3821358],[-7.6369189,54.3802737],[-7.6368496,54.3797878],[-7.6367166,54.3793117],[-7.6364392,54.3787145],[-7.6350218,54.3759619],[-7.6347833,54.3755553],[-7.6326968,54.3723022],[-7.6324249,54.3716579],[-7.632333,54.3711881],[-7.6323423,54.3706506],[-7.6324981,54.3700206],[-7.6328477,54.3692914],[-7.6338284,54.3674241],[-7.6339051,54.3672905],[-7.633809,54.3672605],[-7.6337349,54.367214],[-7.6336913,54.3671557],[-7.6336829,54.3670923],[-7.6337105,54.3670309],[-7.6337712,54.366978],[-7.6338583,54.3669398],[-7.6339621,54.3669202],[-7.6340711,54.3669215],[-7.6343626,54.3664026],[-7.6355912,54.3639668],[-7.6357411,54.3635528],[-7.6357771,54.3632033],[-7.6357322,54.362723],[-7.635639,54.3622862],[-7.6354682,54.361722],[-7.6352604,54.3614338],[-7.6350124,54.3611855],[-7.6345688,54.3608203],[-7.6344266,54.360675],[-7.6343408,54.3606953],[-7.6342517,54.3606964],[-7.6341627,54.3606776],[-7.6340865,54.3606372],[-7.6340444,54.3605817],[-7.6340437,54.360523],[-7.634078,54.3604725],[-7.634142,54.3604326],[-7.6342322,54.3604082],[-7.6343413,54.3604071],[-7.6344326,54.3604295],[-7.6345101,54.3604783],[-7.6350361,54.3601447],[-7.6352978,54.3599025],[-7.6354556,54.3597826],[-7.6357178,54.3594447],[-7.6357912,54.3592838],[-7.6361967,54.356975],[-7.6363368,54.356352],[-7.6365707,54.3557358],[-7.636847,54.3546804],[-7.6365566,54.3529752],[-7.6365143,54.3526028],[-7.6365577,54.3523044],[-7.6369181,54.3518198],[-7.6372329,54.3515456],[-7.6375754,54.3512843],[-7.6383699,54.350878],[-7.6387482,54.3506318],[-7.639078,54.3503831],[-7.6393166,54.3501471],[-7.6394969,54.3498552],[-7.639597,54.3495589],[-7.6396407,54.3493156],[-7.6396456,54.3492888],[-7.6396117,54.3486576],[-7.6396597,54.3484922],[-7.6397421,54.3483303],[-7.6399952,54.3479587],[-7.6400302,54.3479056],[-7.6400637,54.3478335],[-7.6400034,54.3478116],[-7.6399637,54.3477734],[-7.6399669,54.3477138],[-7.6400062,54.3476791],[-7.6400978,54.3476545],[-7.6401736,54.3476607],[-7.6402474,54.3476957],[-7.6402722,54.3477354],[-7.6402603,54.3477825],[-7.6410273,54.3479915],[-7.6412763,54.3480421],[-7.6421276,54.3481401],[-7.6426728,54.3481858],[-7.6430051,54.3481923],[-7.6432703,54.3481617],[-7.643386,54.3481271],[-7.6434981,54.3480574],[-7.6438602,54.3472412],[-7.6439002,54.3471237],[-7.644044,54.3468232],[-7.6442649,54.3465597],[-7.6449228,54.3467087],[-7.6457891,54.3469277],[-7.6459721,54.3469594],[-7.6458944,54.3471473],[-7.6458756,54.3472766],[-7.6459482,54.3473224],[-7.6460982,54.3473779],[-7.6466502,54.3475312],[-7.6502083,54.3486045],[-7.6509302,54.3488774],[-7.6515645,54.3491372],[-7.6521663,54.3493596],[-7.6524531,54.3494375],[-7.6527819,54.3494749],[-7.6532859,54.3494684],[-7.6539161,54.3495088],[-7.6545613,54.3495839],[-7.654975,54.3496872],[-7.6553807,54.349848],[-7.6558109,54.3500849],[-7.6567529,54.3506659],[-7.6569889,54.3509151],[-7.657323,54.3515186],[-7.657776,54.3522199],[-7.6579036,54.3523382],[-7.6582411,54.3525328],[-7.6597409,54.3530193],[-7.6621566,54.3538735],[-7.66339,54.3542692],[-7.6654604,54.3548997],[-7.6659707,54.3550882],[-7.6668588,54.355492],[-7.6677164,54.3559699],[-7.6695399,54.3570559],[-7.6704319,54.3576718],[-7.671036,54.3581518],[-7.6714059,54.3584929],[-7.6726479,54.3597299],[-7.67303,54.3600689],[-7.673453,54.3603788],[-7.6736919,54.360526],[-7.6742314,54.3607852],[-7.675625,54.3613627],[-7.6760959,54.361543],[-7.6771149,54.3619788],[-7.67773,54.3623178],[-7.6779978,54.3625039],[-7.6781941,54.3626965],[-7.6784829,54.3630733],[-7.6786574,54.363416],[-7.679531,54.3664687],[-7.6796817,54.3669141],[-7.6798111,54.3671791],[-7.679978,54.367431],[-7.6801618,54.367659],[-7.6803818,54.3678789],[-7.6806448,54.3680918],[-7.6809449,54.368291],[-7.6826189,54.3691798],[-7.6832129,54.3695699],[-7.6834569,54.3697859],[-7.6838609,54.3702609],[-7.6845938,54.3714278],[-7.6848678,54.371803],[-7.685012,54.371963],[-7.6854719,54.3722709],[-7.6859569,54.372541],[-7.6863749,54.372834],[-7.6865679,54.3729979],[-7.6872729,54.3737278],[-7.6878888,54.3742259],[-7.6880408,54.3743939],[-7.6881129,54.3745459],[-7.6881671,54.3747409],[-7.688133,54.3749348],[-7.6877424,54.3760856],[-7.6877499,54.37633],[-7.687654,54.3772309],[-7.6876439,54.377672],[-7.6876869,54.3778858],[-7.6878559,54.378288],[-7.6879749,54.3784789],[-7.688272,54.378849],[-7.688641,54.3792008],[-7.6888479,54.3793649],[-7.6893059,54.379687],[-7.6905859,54.3804579],[-7.6908309,54.3806219],[-7.6912919,54.3809659],[-7.6916989,54.3813319],[-7.6920599,54.3817229],[-7.692362,54.3821159],[-7.6924929,54.3823239],[-7.6927619,54.3829559],[-7.692872,54.383159],[-7.693005,54.3833449],[-7.6931709,54.3835149],[-7.6933499,54.383661],[-7.6935649,54.3838008],[-7.6945349,54.384279],[-7.694746,54.384409],[-7.6951219,54.3846819],[-7.6954599,54.3849888],[-7.6967789,54.3865069],[-7.698397,54.3885789],[-7.698999,54.389432],[-7.6996708,54.3902909],[-7.701185,54.3920229],[-7.7021628,54.3929947],[-7.7028289,54.3934797],[-7.7030383,54.3935833],[-7.7052377,54.3944861],[-7.7081732,54.3957683],[-7.709988,54.3966386],[-7.7139038,54.3982728],[-7.7152239,54.3987469],[-7.715532,54.398873],[-7.7158039,54.3990209],[-7.7160328,54.399193],[-7.7162189,54.399383],[-7.716373,54.3995959],[-7.7164929,54.3998289],[-7.717089,54.401352],[-7.7176159,54.4029149],[-7.717813,54.4034009],[-7.7179499,54.4036199],[-7.718662,54.40446],[-7.7189199,54.4049329],[-7.7194769,54.4061239],[-7.7198379,54.4067648],[-7.7200999,54.4071159],[-7.7204509,54.407422],[-7.7206699,54.407571],[-7.7211888,54.4078269],[-7.7214278,54.4079709],[-7.721618,54.4081478],[-7.7217858,54.408336],[-7.7220458,54.4087499],[-7.722687,54.4099829],[-7.722825,54.4101699],[-7.7229889,54.4103389],[-7.7231988,54.4104989],[-7.7234419,54.4106429],[-7.7242849,54.4110118],[-7.7248089,54.4112879],[-7.725049,54.4114479],[-7.7254889,54.411813],[-7.72586,54.4121808],[-7.7260179,54.4123649],[-7.726302,54.4129039],[-7.7264089,54.413082],[-7.7265449,54.4132459],[-7.7276669,54.4143968],[-7.7279819,54.414745],[-7.7283729,54.4152618],[-7.728819,54.4156189],[-7.7300889,54.4164249],[-7.73056,54.4167749],[-7.7308308,54.4169379],[-7.73136,54.4173149],[-7.7337839,54.4187189],[-7.734428,54.419071],[-7.7364629,54.4200898],[-7.7371819,54.420408],[-7.737924,54.4207078],[-7.7390799,54.4211389],[-7.7410333,54.4218022],[-7.7432582,54.4225848],[-7.74379,54.4227949],[-7.7458089,54.4234498],[-7.7499479,54.4245829],[-7.7507108,54.4247639],[-7.7518159,54.424964],[-7.7554997,54.4255625],[-7.7561028,54.4256439],[-7.7569419,54.4257329],[-7.7586179,54.4258609],[-7.7599129,54.425919],[-7.7615689,54.4259529],[-7.7619949,54.4259938],[-7.7624069,54.4260499],[-7.7632369,54.4262108],[-7.7640127,54.4264141],[-7.7643523,54.4265258],[-7.7646524,54.4266488],[-7.7673958,54.428116],[-7.7679999,54.4283959],[-7.7686449,54.4286269],[-7.7693589,54.4288029],[-7.770546,54.429043],[-7.772157,54.4293319],[-7.77341,54.429594],[-7.774248,54.4297908],[-7.7750578,54.4300099],[-7.775829,54.430253],[-7.7765548,54.4305329],[-7.7779019,54.4311688],[-7.778292,54.4313752],[-7.7796358,54.4321369],[-7.7800099,54.4323758],[-7.7801769,54.432507],[-7.780415,54.4328149],[-7.7807769,54.4334958],[-7.7810559,54.4338069],[-7.7816319,54.4342459],[-7.7823639,54.4348459],[-7.7825859,54.4349709],[-7.7830799,54.4351739],[-7.783618,54.435352],[-7.785872,54.4358359],[-7.7868098,54.4360199],[-7.7873979,54.4360939],[-7.7880159,54.4360668],[-7.7883249,54.4360398],[-7.7886589,54.4359908],[-7.789265,54.4359719],[-7.7898189,54.4360059],[-7.7900719,54.4360519],[-7.790293,54.436119],[-7.7904899,54.4362149],[-7.790648,54.4363429],[-7.7910678,54.4368359],[-7.7917859,54.4375639],[-7.7921729,54.437893],[-7.7928429,54.4383829],[-7.793032,54.43856],[-7.7935209,54.4391089],[-7.793767,54.4394729],[-7.7939018,54.439857],[-7.7939449,54.4404079],[-7.7938668,54.4410058],[-7.7935198,54.442433],[-7.793431,54.442932],[-7.7933749,54.4434679],[-7.7931629,54.4446339],[-7.7931849,54.444771],[-7.7932479,54.4449029],[-7.793485,54.445175],[-7.7938039,54.4454719],[-7.7940579,54.4458079],[-7.794139,54.4459828],[-7.7941909,54.446165],[-7.7943358,54.4469169],[-7.7944459,54.4472509],[-7.7945558,54.447399],[-7.7946979,54.4475279],[-7.794879,54.4476478],[-7.7951029,54.4477579],[-7.795639,54.4479619],[-7.795926,54.4480489],[-7.7965509,54.4481919],[-7.7974159,54.448305],[-7.7976689,54.4483629],[-7.7978879,54.448454],[-7.7980699,54.4485879],[-7.798351,54.4488979],[-7.7986149,54.4492389],[-7.7989299,54.44955],[-7.7991258,54.4496859],[-7.7993549,54.4497999],[-7.79962,54.4498938],[-7.7999089,54.449962],[-7.8002199,54.4500179],[-7.8012729,54.4501509],[-7.8020589,54.4502149],[-7.8028509,54.4502559],[-7.8040279,54.4502539],[-7.8058358,54.4502209],[-7.8071736,54.4501037],[-7.8073401,54.4501356],[-7.80745,54.4502036],[-7.8075278,54.450282],[-7.8075534,54.4503545],[-7.8074278,54.4512109],[-7.807461,54.4515039],[-7.8075139,54.45163],[-7.8075889,54.4517349],[-7.8076919,54.4518259],[-7.8078339,54.4519029],[-7.8082088,54.4520429],[-7.808649,54.452167],[-7.8088919,54.452211],[-7.8094,54.452246],[-7.8096758,54.4522359],[-7.8105438,54.452154],[-7.8108139,54.4520949],[-7.8110769,54.4520159],[-7.811326,54.4519159],[-7.8124579,54.451343],[-7.8126849,54.4512608],[-7.8129308,54.451215],[-7.8131949,54.4512088],[-7.8137649,54.4512498],[-7.8140529,54.4512899],[-7.8143408,54.4513409],[-7.8146269,54.451413],[-7.815812,54.4518319],[-7.816335,54.4520439],[-7.8165639,54.4521579],[-7.8173349,54.45278],[-7.8180618,54.453271],[-7.81972,54.4542569],[-7.8220678,54.455541],[-7.8226929,54.4558468],[-7.823997,54.456409],[-7.8249559,54.4568029],[-7.825847,54.4571349],[-7.8261038,54.4572479],[-7.8263339,54.457388],[-7.8265238,54.4575469],[-7.8268168,54.4579218],[-7.8270448,54.458316],[-7.8271018,54.4585059],[-7.827105,54.45904],[-7.8271549,54.4592059],[-7.8272538,54.4593609],[-7.8273769,54.4594969],[-7.827726,54.459748],[-7.828339,54.4601229],[-7.8291889,54.460605],[-7.8303318,54.4612019],[-7.8313159,54.461749],[-7.8317668,54.4620509],[-7.832274,54.4624616],[-7.8323578,54.4625544],[-7.8334138,54.464157],[-7.8335009,54.4643547],[-7.8335836,54.4644768],[-7.8337394,54.4649557],[-7.8337476,54.4654732],[-7.8334769,54.4661637],[-7.8330079,54.4667647],[-7.8326559,54.4671494],[-7.832298,54.4675023],[-7.8321747,54.4677156],[-7.8321898,54.4678536],[-7.8322369,54.4679669],[-7.8323731,54.4681567],[-7.8327676,54.4684849],[-7.8330325,54.4686456],[-7.8333592,54.4687833],[-7.8350728,54.4693039],[-7.836446,54.4696729],[-7.837148,54.469878],[-7.8374829,54.4699878],[-7.8378169,54.470119],[-7.837865,54.470142],[-7.8374829,54.4699878],[-7.837148,54.469878],[-7.836446,54.4696729],[-7.8350728,54.4693039],[-7.8333592,54.4687833],[-7.8330325,54.4686456],[-7.8327676,54.4684849],[-7.8323731,54.4681567],[-7.8322369,54.4679669],[-7.8321898,54.4678536],[-7.8321747,54.4677156],[-7.832298,54.4675023],[-7.8326559,54.4671494],[-7.8330079,54.4667647],[-7.8334769,54.4661637],[-7.8337476,54.4654732],[-7.8337394,54.4649557],[-7.8335836,54.4644768],[-7.8335009,54.4643547],[-7.8334138,54.464157],[-7.8323578,54.4625544],[-7.832274,54.4624616],[-7.8317668,54.4620509],[-7.8313159,54.461749],[-7.8303318,54.4612019],[-7.8291889,54.460605],[-7.828339,54.4601229],[-7.827726,54.459748],[-7.8273769,54.4594969],[-7.8272538,54.4593609],[-7.8271549,54.4592059],[-7.827105,54.45904],[-7.8271018,54.4585059],[-7.8270448,54.458316],[-7.8268168,54.4579218],[-7.8265238,54.4575469],[-7.8263339,54.457388],[-7.8261038,54.4572479],[-7.825847,54.4571349],[-7.8249559,54.4568029],[-7.823997,54.456409],[-7.8226929,54.4558468],[-7.8220678,54.455541],[-7.81972,54.4542569],[-7.8180618,54.453271],[-7.8173349,54.45278],[-7.8165639,54.4521579],[-7.816335,54.4520439],[-7.815812,54.4518319],[-7.8146269,54.451413],[-7.8143408,54.4513409],[-7.8140529,54.4512899],[-7.8137649,54.4512498],[-7.8131949,54.4512088],[-7.8129308,54.451215],[-7.8126849,54.4512608],[-7.8124579,54.451343],[-7.811326,54.4519159],[-7.8110769,54.4520159],[-7.8108139,54.4520949],[-7.8105438,54.452154],[-7.8096758,54.4522359],[-7.8094,54.452246],[-7.8088919,54.452211],[-7.808649,54.452167],[-7.8082088,54.4520429],[-7.8078339,54.4519029],[-7.8076919,54.4518259],[-7.8075889,54.4517349],[-7.8075139,54.45163],[-7.807461,54.4515039],[-7.8074278,54.4512109],[-7.8075534,54.4503545],[-7.8075278,54.450282],[-7.80745,54.4502036],[-7.8073401,54.4501356],[-7.8071736,54.4501037],[-7.8058358,54.4502209],[-7.8040279,54.4502539],[-7.8028509,54.4502559],[-7.8020589,54.4502149],[-7.8012729,54.4501509],[-7.8002199,54.4500179],[-7.7999089,54.449962],[-7.79962,54.4498938],[-7.7993549,54.4497999],[-7.7991258,54.4496859],[-7.7989299,54.44955],[-7.7986149,54.4492389],[-7.798351,54.4488979],[-7.7980699,54.4485879],[-7.7978879,54.448454],[-7.7976689,54.4483629],[-7.7974159,54.448305],[-7.7965509,54.4481919],[-7.795926,54.4480489],[-7.795639,54.4479619],[-7.7951029,54.4477579],[-7.794879,54.4476478],[-7.7946979,54.4475279],[-7.7945558,54.447399],[-7.7944459,54.4472509],[-7.7943358,54.4469169],[-7.7941909,54.446165],[-7.794139,54.4459828],[-7.7940579,54.4458079],[-7.7938039,54.4454719],[-7.793485,54.445175],[-7.7932479,54.4449029],[-7.7931849,54.444771],[-7.7931629,54.4446339],[-7.7933749,54.4434679],[-7.793431,54.442932],[-7.7935198,54.442433],[-7.7938668,54.4410058],[-7.7939449,54.4404079],[-7.7939018,54.439857],[-7.793767,54.4394729],[-7.7935209,54.4391089],[-7.793032,54.43856],[-7.7928429,54.4383829],[-7.7921729,54.437893],[-7.7917859,54.4375639],[-7.7910678,54.4368359],[-7.790648,54.4363429],[-7.7904899,54.4362149],[-7.790293,54.436119],[-7.7900719,54.4360519],[-7.7898189,54.4360059],[-7.789265,54.4359719],[-7.7886589,54.4359908],[-7.7883249,54.4360398],[-7.7880159,54.4360668],[-7.7873979,54.4360939],[-7.7868098,54.4360199],[-7.785872,54.4358359],[-7.783618,54.435352],[-7.7830799,54.4351739],[-7.7825859,54.4349709],[-7.7823639,54.4348459],[-7.7816319,54.4342459],[-7.7810559,54.4338069],[-7.7807769,54.4334958],[-7.780415,54.4328149],[-7.7801769,54.432507],[-7.7800099,54.4323758],[-7.7796358,54.4321369],[-7.778292,54.4313752],[-7.7779019,54.4311688],[-7.7765548,54.4305329],[-7.775829,54.430253],[-7.7750578,54.4300099],[-7.774248,54.4297908],[-7.77341,54.429594],[-7.772157,54.4293319],[-7.770546,54.429043],[-7.7693589,54.4288029],[-7.7686449,54.4286269],[-7.7679999,54.4283959],[-7.7673958,54.428116],[-7.7646524,54.4266488],[-7.7643523,54.4265258],[-7.7640127,54.4264141],[-7.7632369,54.4262108],[-7.7624069,54.4260499],[-7.7619949,54.4259938],[-7.7615689,54.4259529],[-7.7599129,54.425919],[-7.7586179,54.4258609],[-7.7569419,54.4257329],[-7.7561028,54.4256439],[-7.7554997,54.4255625],[-7.7518159,54.424964],[-7.7507108,54.4247639],[-7.7499479,54.4245829],[-7.7458089,54.4234498],[-7.74379,54.4227949],[-7.7432582,54.4225848],[-7.7410333,54.4218022],[-7.7390799,54.4211389],[-7.737924,54.4207078],[-7.7371819,54.420408],[-7.7364629,54.4200898],[-7.734428,54.419071],[-7.7337839,54.4187189],[-7.73136,54.4173149],[-7.7308308,54.4169379],[-7.73056,54.4167749],[-7.7300889,54.4164249],[-7.728819,54.4156189],[-7.7283729,54.4152618],[-7.7279819,54.414745],[-7.7276669,54.4143968],[-7.7265449,54.4132459],[-7.7264089,54.413082],[-7.726302,54.4129039],[-7.7260179,54.4123649],[-7.72586,54.4121808],[-7.7254889,54.411813],[-7.725049,54.4114479],[-7.7248089,54.4112879],[-7.7242849,54.4110118],[-7.7234419,54.4106429],[-7.7231988,54.4104989],[-7.7229889,54.4103389],[-7.722825,54.4101699],[-7.722687,54.4099829],[-7.7220458,54.4087499],[-7.7217858,54.408336],[-7.721618,54.4081478],[-7.7214278,54.4079709],[-7.7211888,54.4078269],[-7.7206699,54.407571],[-7.7204509,54.407422],[-7.7200999,54.4071159],[-7.7198379,54.4067648],[-7.7194769,54.4061239],[-7.7189199,54.4049329],[-7.718662,54.40446],[-7.7179499,54.4036199],[-7.717813,54.4034009],[-7.7176159,54.4029149],[-7.717089,54.401352],[-7.7164929,54.3998289],[-7.716373,54.3995959],[-7.7162189,54.399383],[-7.7160328,54.399193],[-7.7158039,54.3990209],[-7.715532,54.398873],[-7.7152239,54.3987469],[-7.7139038,54.3982728],[-7.709988,54.3966386],[-7.7081732,54.3957683],[-7.7052377,54.3944861],[-7.7030383,54.3935833],[-7.7028289,54.3934797],[-7.7021628,54.3929947],[-7.701185,54.3920229],[-7.6996708,54.3902909],[-7.698999,54.389432],[-7.698397,54.3885789],[-7.6967789,54.3865069],[-7.6954599,54.3849888],[-7.6951219,54.3846819],[-7.694746,54.384409],[-7.6945349,54.384279],[-7.6935649,54.3838008],[-7.6933499,54.383661],[-7.6931709,54.3835149],[-7.693005,54.3833449],[-7.692872,54.383159],[-7.6927619,54.3829559],[-7.6924929,54.3823239],[-7.692362,54.3821159],[-7.6920599,54.3817229],[-7.6916989,54.3813319],[-7.6912919,54.3809659],[-7.6908309,54.3806219],[-7.6905859,54.3804579],[-7.6893059,54.379687],[-7.6888479,54.3793649],[-7.688641,54.3792008],[-7.688272,54.378849],[-7.6879749,54.3784789],[-7.6878559,54.378288],[-7.6876869,54.3778858],[-7.6876439,54.377672],[-7.687654,54.3772309],[-7.6877499,54.37633],[-7.6877424,54.3760856],[-7.688133,54.3749348],[-7.6881671,54.3747409],[-7.6881129,54.3745459],[-7.6880408,54.3743939],[-7.6878888,54.3742259],[-7.6872729,54.3737278],[-7.6865679,54.3729979],[-7.6863749,54.372834],[-7.6859569,54.372541],[-7.6854719,54.3722709],[-7.685012,54.371963],[-7.6848678,54.371803],[-7.6845938,54.3714278],[-7.6838609,54.3702609],[-7.6834569,54.3697859],[-7.6832129,54.3695699],[-7.6826189,54.3691798],[-7.6809449,54.368291],[-7.6806448,54.3680918],[-7.6803818,54.3678789],[-7.6801618,54.367659],[-7.679978,54.367431],[-7.6798111,54.3671791],[-7.6796817,54.3669141],[-7.679531,54.3664687],[-7.6786574,54.363416],[-7.6784829,54.3630733],[-7.6781941,54.3626965],[-7.6779978,54.3625039],[-7.67773,54.3623178],[-7.6771149,54.3619788],[-7.6760959,54.361543],[-7.675625,54.3613627],[-7.6742314,54.3607852],[-7.6736919,54.360526],[-7.673453,54.3603788],[-7.67303,54.3600689],[-7.6726479,54.3597299],[-7.6714059,54.3584929],[-7.671036,54.3581518],[-7.6704319,54.3576718],[-7.6695399,54.3570559],[-7.6677164,54.3559699],[-7.6668588,54.355492],[-7.6659707,54.3550882],[-7.6654604,54.3548997],[-7.66339,54.3542692],[-7.6621566,54.3538735],[-7.6597409,54.3530193],[-7.6582411,54.3525328],[-7.6579036,54.3523382],[-7.657776,54.3522199],[-7.657323,54.3515186],[-7.6569889,54.3509151],[-7.6567529,54.3506659],[-7.6558109,54.3500849],[-7.6553807,54.349848],[-7.654975,54.3496872],[-7.6545613,54.3495839],[-7.6539161,54.3495088],[-7.6532859,54.3494684],[-7.6527819,54.3494749],[-7.6524531,54.3494375],[-7.6521663,54.3493596],[-7.6519934,54.3492963],[-7.6515645,54.3491372],[-7.6502083,54.3486045],[-7.6466502,54.3475312],[-7.6460982,54.3473779],[-7.6459482,54.3473224],[-7.6458756,54.3472766],[-7.6456435,54.3472922],[-7.6448165,54.3472533],[-7.6443277,54.3471902],[-7.6439002,54.3471237],[-7.644044,54.3468232],[-7.6442649,54.3465597],[-7.643782,54.3464442],[-7.6433984,54.3463337],[-7.6430438,54.3462324],[-7.6428601,54.3461743],[-7.6426584,54.3460834],[-7.6422484,54.3458822],[-7.6419914,54.3457362],[-7.6415974,54.3454678],[-7.6406998,54.3445992],[-7.6400945,54.3441621],[-7.6394657,54.3438668],[-7.6388353,54.3436618],[-7.638473,54.3435817],[-7.6377775,54.3435001],[-7.6372096,54.3434694],[-7.6351059,54.3434312],[-7.6350663,54.3434312],[-7.6342312,54.3434194],[-7.6334564,54.3434276],[-7.6326508,54.3434891],[-7.6320246,54.3436297],[-7.6318037,54.3437158],[-7.6316638,54.3437892],[-7.6315714,54.3438808],[-7.631325,54.3438033],[-7.6290626,54.3432317],[-7.6287528,54.3431317],[-7.6286096,54.3430661],[-7.6285172,54.3430108],[-7.6283665,54.3428986],[-7.6272743,54.3418783],[-7.6262576,54.3408838],[-7.6260216,54.3405789],[-7.6258549,54.3402667],[-7.6254666,54.3393749],[-7.6252892,54.3387652],[-7.6252205,54.33824],[-7.6251034,54.337725],[-7.6246921,54.3366055],[-7.624435,54.3360922],[-7.624183,54.3356181],[-7.6238505,54.3356511],[-7.6219426,54.3356895],[-7.6213935,54.3356664],[-7.6209988,54.3356308],[-7.62015,54.3355052],[-7.6189305,54.3352417],[-7.6183861,54.3350519],[-7.6181264,54.3349044],[-7.6179132,54.3347559],[-7.6177742,54.3346255],[-7.6175228,54.3342222],[-7.6170713,54.3332673],[-7.615776,54.3315749],[-7.6156843,54.3311891],[-7.6153662,54.3307002],[-7.6152969,54.3304079],[-7.6150339,54.3296968],[-7.61459,54.3290512],[-7.614563,54.3287792],[-7.6146515,54.3285399],[-7.6147787,54.3282847],[-7.6148704,54.3279999],[-7.6148785,54.3277728],[-7.6148253,54.3274284],[-7.6148476,54.3273171],[-7.6148812,54.3272725],[-7.6149149,54.3272496],[-7.6141827,54.326876],[-7.6133687,54.3264899],[-7.6124556,54.3260909],[-7.610788,54.3254838],[-7.6095188,54.3250863],[-7.608507,54.3247986],[-7.6067941,54.3242821],[-7.6051161,54.3239472],[-7.6044975,54.3238577],[-7.6036302,54.323789],[-7.6027725,54.3237853],[-7.6014353,54.3237804],[-7.6015863,54.3238814],[-7.6018449,54.3239624],[-7.6029144,54.3242282],[-7.6033812,54.3244003],[-7.6036392,54.3245758],[-7.6038848,54.3248695],[-7.603981,54.3253497],[-7.6039156,54.3260838],[-7.6038055,54.3267871],[-7.6027715,54.3285613],[-7.6019747,54.3288874],[-7.6016413,54.3295081],[-7.6015921,54.3297694],[-7.6017087,54.3299378],[-7.6019913,54.3299557],[-7.6020896,54.3300702],[-7.6022083,54.3303748],[-7.602207,54.3309842],[-7.6021511,54.3311662],[-7.6018132,54.3313165],[-7.6012416,54.331492],[-7.6010424,54.331587],[-7.600851,54.3317701],[-7.6008243,54.3318986],[-7.6017456,54.3322639],[-7.6016964,54.3323497],[-7.6018439,54.3324824],[-7.6018777,54.3325611],[-7.6020773,54.3326237],[-7.6022738,54.3326651],[-7.6022278,54.3327672],[-7.6017886,54.3330212],[-7.6016577,54.3331492],[-7.6013772,54.3333507],[-7.6011836,54.333528],[-7.6010637,54.3339099],[-7.6011088,54.3341384],[-7.6012146,54.3342992],[-7.6016486,54.334727],[-7.6017009,54.3348723],[-7.6016655,54.334991],[-7.6015923,54.3351148],[-7.6003995,54.3356075],[-7.6003598,54.3358394],[-7.6004272,54.3362749],[-7.6006448,54.3366649],[-7.6009443,54.3368961],[-7.6013887,54.3371278],[-7.6023798,54.3375847],[-7.6030502,54.3377704],[-7.6034544,54.337844],[-7.6036542,54.3378594],[-7.6039485,54.3378458],[-7.6041529,54.3378047],[-7.6043404,54.337743],[-7.606215,54.3369156],[-7.6064411,54.33696],[-7.6069385,54.3370114],[-7.6079625,54.3370863],[-7.609583,54.3373414],[-7.610235,54.3374644],[-7.6104991,54.3375653],[-7.6118834,54.3383497],[-7.6121584,54.3384373],[-7.6126709,54.3385553],[-7.6137131,54.338733],[-7.614238,54.3387963],[-7.6146202,54.3388094],[-7.6149389,54.3387809],[-7.6154057,54.3386848],[-7.6156398,54.3386647],[-7.6158713,54.3387092],[-7.6160036,54.3387597],[-7.616456,54.338966],[-7.6173063,54.3394237],[-7.6183442,54.3403844],[-7.6187549,54.3407748],[-7.6192044,54.3410762],[-7.6194318,54.3411722],[-7.6207911,54.3414227],[-7.6221851,54.3416238],[-7.6231096,54.3417296],[-7.6234266,54.3417894],[-7.6243063,54.3420331],[-7.6255211,54.3424194],[-7.6260224,54.3426503],[-7.6262895,54.3427317],[-7.6272162,54.3429383],[-7.6282155,54.3431153],[-7.628308,54.3431063],[-7.6284677,54.3430376],[-7.6285172,54.3430108],[-7.6287528,54.3431317],[-7.6290626,54.3432317],[-7.631325,54.3438033],[-7.6315714,54.3438808],[-7.6316638,54.3437892],[-7.6318037,54.3437158],[-7.6320246,54.3436297],[-7.6326508,54.3434891],[-7.6334564,54.3434276],[-7.6340791,54.3434166],[-7.6342312,54.3434194],[-7.6350663,54.3434312],[-7.6372096,54.3434694],[-7.6377775,54.3435001],[-7.638473,54.3435817],[-7.6388353,54.3436618],[-7.6394657,54.3438668],[-7.6400945,54.3441621],[-7.6406998,54.3445992],[-7.6415974,54.3454678],[-7.6419914,54.3457362],[-7.6422484,54.3458822],[-7.6428601,54.3461743],[-7.6430438,54.3462324],[-7.643782,54.3464442],[-7.6442649,54.3465597],[-7.6449228,54.3467087],[-7.6457891,54.3469277],[-7.6459721,54.3469594],[-7.6458944,54.3471473],[-7.6458756,54.3472766],[-7.6459482,54.3473224],[-7.6460982,54.3473779],[-7.6466502,54.3475312],[-7.6502083,54.3486045],[-7.6509302,54.3488774],[-7.6515645,54.3491372],[-7.6521663,54.3493596],[-7.6524531,54.3494375],[-7.6527819,54.3494749],[-7.6532859,54.3494684],[-7.6539161,54.3495088],[-7.6545613,54.3495839],[-7.654975,54.3496872],[-7.6553807,54.349848],[-7.6558109,54.3500849],[-7.6567529,54.3506659],[-7.6569889,54.3509151],[-7.657323,54.3515186],[-7.657776,54.3522199],[-7.6579036,54.3523382],[-7.6582411,54.3525328],[-7.6597409,54.3530193],[-7.6621566,54.3538735],[-7.66339,54.3542692],[-7.6654604,54.3548997],[-7.6659707,54.3550882],[-7.6668588,54.355492],[-7.6677164,54.3559699],[-7.6695399,54.3570559],[-7.6704319,54.3576718],[-7.671036,54.3581518],[-7.6714059,54.3584929],[-7.6726479,54.3597299],[-7.67303,54.3600689],[-7.673453,54.3603788],[-7.6736919,54.360526],[-7.6742314,54.3607852],[-7.675625,54.3613627],[-7.6760959,54.361543],[-7.6771149,54.3619788],[-7.67773,54.3623178],[-7.6779978,54.3625039],[-7.6781941,54.3626965],[-7.6784829,54.3630733],[-7.6786574,54.363416],[-7.679531,54.3664687],[-7.6796817,54.3669141],[-7.6798111,54.3671791],[-7.679978,54.367431],[-7.6801618,54.367659],[-7.6803818,54.3678789],[-7.6806448,54.3680918],[-7.6809449,54.368291],[-7.6826189,54.3691798],[-7.6832129,54.3695699],[-7.6834569,54.3697859],[-7.6838609,54.3702609],[-7.6845938,54.3714278],[-7.6848678,54.371803],[-7.685012,54.371963],[-7.6854719,54.3722709],[-7.6859569,54.372541],[-7.6863749,54.372834],[-7.6865679,54.3729979],[-7.6872729,54.3737278],[-7.6878888,54.3742259],[-7.6880408,54.3743939],[-7.6881129,54.3745459],[-7.6881491,54.3746521],[-7.6884258,54.3746344],[-7.6886045,54.3745811],[-7.6887872,54.3744952],[-7.6889595,54.3743865],[-7.6899689,54.3747564],[-7.6905599,54.3750065],[-7.6908121,54.3751673],[-7.6910168,54.3754471],[-7.6913241,54.3761333],[-7.691659,54.3766634],[-7.6917723,54.3768055],[-7.6922066,54.3772002],[-7.69368,54.3781661],[-7.6951377,54.3792217],[-7.6960044,54.3798757],[-7.6973634,54.3806533],[-7.6983128,54.3811237],[-7.7000422,54.3818626],[-7.7037375,54.3828606],[-7.7045215,54.3830968],[-7.706121,54.3837921],[-7.7067593,54.3840122],[-7.7073738,54.3842646],[-7.7083034,54.3847579],[-7.7084059,54.3850674],[-7.7084295,54.3853107],[-7.7086344,54.3855079],[-7.7098004,54.3861137],[-7.7099226,54.3862307],[-7.7101353,54.3863866],[-7.7121131,54.387194],[-7.7128971,54.3873937],[-7.7137913,54.3875589],[-7.714788,54.3876736],[-7.7158082,54.3876966],[-7.7168207,54.3878296],[-7.7173645,54.388029],[-7.7188806,54.3886715],[-7.7191176,54.3887849],[-7.7197596,54.3892657],[-7.7210478,54.3906947],[-7.7224661,54.3923461],[-7.7235985,54.3935982],[-7.7238159,54.3937686],[-7.7238772,54.3938051],[-7.7241082,54.3938779],[-7.7244388,54.3939273],[-7.7250544,54.3939871],[-7.7256843,54.3940983],[-7.7259805,54.3941469],[-7.7261386,54.3941568],[-7.726408,54.39411],[-7.727197,54.393815],[-7.7277619,54.393715],[-7.730232,54.393888],[-7.7313285,54.393913],[-7.7317061,54.3938938],[-7.7328054,54.3937449],[-7.7331599,54.3937313],[-7.7334553,54.3937397],[-7.7338183,54.393814],[-7.7342272,54.3939193],[-7.7347651,54.394108],[-7.7351857,54.3942128],[-7.737519,54.394656],[-7.7379247,54.3947703],[-7.7382507,54.3949314],[-7.7389823,54.3954301],[-7.7397445,54.3961351],[-7.7414149,54.3970329],[-7.7432211,54.3979515],[-7.7437078,54.3981499],[-7.7441659,54.3983038],[-7.7460766,54.3987307],[-7.7466359,54.3988823],[-7.7473122,54.399005],[-7.7478662,54.3990844],[-7.7480484,54.399082],[-7.7482588,54.3990555],[-7.7499311,54.3985845],[-7.75235,54.3982013],[-7.7524582,54.3981702],[-7.7525655,54.3981175],[-7.7526227,54.398068],[-7.7526789,54.3979093],[-7.7526981,54.397886],[-7.7529233,54.3979461],[-7.7531336,54.3979772],[-7.7538069,54.3980376],[-7.7548282,54.3981643],[-7.7555884,54.3983045],[-7.7597331,54.3989462],[-7.7612322,54.3991105],[-7.7632958,54.3991976],[-7.7641159,54.3992748],[-7.7643452,54.3993414],[-7.7676531,54.4007643],[-7.7690812,54.4012657],[-7.7702144,54.4015843],[-7.773596,54.4023716],[-7.7753477,54.4027506],[-7.776857,54.4031653],[-7.7803895,54.404021],[-7.7820511,54.4042335],[-7.786469,54.4047349],[-7.788611,54.4049545],[-7.7889845,54.4050242],[-7.7896211,54.4051823],[-7.789954,54.4052002],[-7.7902732,54.4051959],[-7.7910028,54.405092],[-7.7915886,54.4050311],[-7.7921174,54.4050402],[-7.7923696,54.4050197],[-7.7927599,54.4049592],[-7.7931536,54.4049406],[-7.7947531,54.4049163],[-7.7950591,54.4049789],[-7.7961353,54.4053496],[-7.8008171,54.4071031],[-7.8027196,54.4080754],[-7.8037521,54.4087253],[-7.8045206,54.4088834],[-7.8059647,54.4091229],[-7.8067023,54.4093217],[-7.8068498,54.4094934],[-7.8069197,54.4114274],[-7.8069586,54.4119018],[-7.8073544,54.4123988],[-7.8081077,54.4129546],[-7.809544,54.4137],[-7.8106001,54.4141927],[-7.811615,54.4144767],[-7.8128671,54.4150013],[-7.8130718,54.4150687],[-7.8132067,54.4150856],[-7.8134589,54.4150687],[-7.8135434,54.4150689],[-7.8136502,54.4155407],[-7.8137729,54.4157847],[-7.8139765,54.415995],[-7.8142997,54.4162489],[-7.8146979,54.4164888],[-7.8161787,54.4172189],[-7.8180993,54.4181666],[-7.818085,54.4181932],[-7.8180993,54.4181666],[-7.8182548,54.4182449],[-7.8193869,54.4189449],[-7.8204149,54.4196279],[-7.8232281,54.4214151],[-7.8241972,54.4220303],[-7.8389693,54.4314002],[-7.839288,54.4316779],[-7.8396669,54.4321069],[-7.8398598,54.43255],[-7.8401079,54.4338829],[-7.8402679,54.434283],[-7.8406257,54.4347457],[-7.8407967,54.4349047],[-7.8410411,54.4350593],[-7.841347,54.4351979],[-7.842163,54.4354868],[-7.8433879,54.43584],[-7.8439979,54.4360398],[-7.8445673,54.4363038],[-7.844992,54.436597],[-7.8452829,54.436895],[-7.8454219,54.4372168],[-7.8453729,54.4375549],[-7.8449799,54.438395],[-7.844957,54.4387019],[-7.8450998,54.4389899],[-7.8456459,54.4394246],[-7.8456545,54.4394531],[-7.8602549,54.439488],[-7.8651968,54.439615],[-7.8662028,54.4396269],[-7.867123,54.4395969],[-7.8676341,54.4395217],[-7.8682829,54.4393749],[-7.8688269,54.4391968],[-7.8693129,54.4389729],[-7.8701269,54.43843],[-7.870538,54.4382029],[-7.8712718,54.4379518],[-7.8717669,54.4378669],[-7.87226,54.4378779],[-7.8727499,54.437915],[-7.8732379,54.4380029],[-7.8785749,54.4393969],[-7.879133,54.4395278],[-7.8825299,54.4401429],[-7.88399,54.4406018],[-7.8844629,54.4406829],[-7.884888,54.4406249],[-7.8856619,54.4403969],[-7.8859007,54.4403658],[-7.8861527,54.4403709],[-7.8877004,54.4405808],[-7.8884629,54.4406249],[-7.8890599,54.4406098],[-7.8899769,54.440502],[-7.8997228,54.4387179],[-7.9020737,54.4383054],[-7.9025322,54.4382089],[-7.9028837,54.4380988],[-7.9040266,54.4376961],[-7.9067349,54.4368039],[-7.911928,54.4351059],[-7.9182766,54.4330561],[-7.9184977,54.4329871],[-7.9221629,54.4317749],[-7.9311378,54.4289098],[-7.9320868,54.428658],[-7.9330498,54.4284399],[-7.934735,54.4281569],[-7.9383299,54.4276669],[-7.9424269,54.427305],[-7.9453949,54.4269799],[-7.9469299,54.426773],[-7.954178,54.4257029],[-7.9603799,54.4248409],[-7.9666499,54.4240099],[-7.9677859,54.4238948],[-7.9699458,54.4238449],[-7.9728069,54.423879],[-7.9733839,54.4239179],[-7.974246,54.4240399],[-7.975008,54.4242569],[-7.9754231,54.4244315],[-7.975737,54.42453],[-7.9759786,54.4245753],[-7.9761617,54.4245915],[-7.9761805,54.4246159],[-7.9766117,54.4248221],[-7.9785032,54.4256239],[-7.9796176,54.4261198],[-7.9804806,54.4265523],[-7.9810785,54.4269451],[-7.9828111,54.4281819],[-7.9832194,54.4284987],[-7.9840997,54.4291313],[-7.9852449,54.4300092],[-7.9864178,54.4308615],[-7.9869894,54.4311755],[-7.9877291,54.4314479],[-7.9883337,54.431609],[-7.988915,54.4317395],[-7.9901731,54.4319681],[-7.9923931,54.4323483],[-7.9928748,54.4324202],[-7.993244,54.4324433],[-7.9936076,54.4324341],[-7.9942938,54.4323501],[-7.9969125,54.4318966],[-7.9975253,54.4318096],[-7.9978254,54.4318008],[-7.998193,54.4318116],[-7.9996562,54.4320001],[-8.0003826,54.432168],[-8.0008209,54.4323335],[-8.0034129,54.4336774],[-8.004172,54.4340163],[-8.0045013,54.4341481],[-8.0050362,54.4343279],[-8.0094187,54.4354114],[-8.0157423,54.4369181],[-8.0167158,54.4371667],[-8.0252357,54.439241],[-8.0357315,54.4418453],[-8.0384817,54.4425727],[-8.0390844,54.4427746],[-8.0407439,54.4434086],[-8.0414722,54.4436325],[-8.0420757,54.4437814],[-8.0430619,54.4439589],[-8.0434401,54.4440025],[-8.0442198,54.4440284],[-8.0450037,54.4439972],[-8.0456125,54.443938],[-8.0468265,54.4437737],[-8.0474444,54.4437501],[-8.0486992,54.4438184],[-8.0493446,54.4438685],[-8.0499884,54.4439697],[-8.0505799,54.4441101],[-8.0518313,54.4444858],[-8.0559226,54.4458584],[-8.060077,54.4471928],[-8.0650898,54.4488291],[-8.0692546,54.4501203],[-8.0697861,54.4503084],[-8.0708185,54.4507525],[-8.0712937,54.4509971],[-8.0731533,54.4518811],[-8.0738908,54.4521923],[-8.0754073,54.4528979],[-8.07583,54.4531015],[-8.0780929,54.4541569],[-8.0786658,54.454432],[-8.0835672,54.4566277],[-8.0849238,54.4572312],[-8.0852887,54.4573785],[-8.0855731,54.4575182],[-8.0857564,54.4576216],[-8.0859529,54.457732],[-8.0860259,54.4577436],[-8.090299,54.458166],[-8.0906875,54.4581802],[-8.10309,54.4582979],[-8.1033774,54.4583189],[-8.1037054,54.458359],[-8.1075303,54.4590696],[-8.1085343,54.4592083],[-8.1125498,54.4596766],[-8.1141971,54.4598955],[-8.1163425,54.4601166],[-8.1187954,54.460472],[-8.1199368,54.4605988],[-8.120973,54.4607637],[-8.1224384,54.4608436],[-8.1235394,54.4609589],[-8.1250695,54.4610766],[-8.1285223,54.46138],[-8.1336861,54.4619187],[-8.1341037,54.4619742],[-8.1341831,54.4619852],[-8.134358,54.4620096],[-8.1342824,54.4622817],[-8.1342416,54.4626006],[-8.1342803,54.4628595],[-8.134429,54.4631998],[-8.1351941,54.4642729],[-8.1356281,54.4649332],[-8.136048,54.4654175],[-8.1365747,54.4659763],[-8.1371101,54.466674],[-8.1374178,54.4671313],[-8.1374124,54.4671851],[-8.1373453,54.4672231],[-8.1369633,54.4672745],[-8.1354728,54.4673818],[-8.1338797,54.467404],[-8.1329497,54.4674526],[-8.1321679,54.4674433],[-8.1312934,54.4674764],[-8.1310587,54.4674662],[-8.1308974,54.4674815],[-8.1302229,54.4674343],[-8.1300057,54.4674491],[-8.129048,54.4673325],[-8.1284055,54.4671993],[-8.1271561,54.4670698],[-8.1266073,54.467035],[-8.1259711,54.4669512],[-8.1241293,54.4668534],[-8.1225362,54.466797],[-8.1215436,54.4666999],[-8.1210369,54.466669],[-8.1203688,54.4667003],[-8.119774,54.4667889],[-8.1188936,54.4669881],[-8.1174634,54.467379],[-8.1150029,54.467965],[-8.1134759,54.4683716],[-8.1129936,54.4684761],[-8.1120798,54.4686291],[-8.1093315,54.4689798],[-8.1086582,54.4691037],[-8.1077181,54.4692217],[-8.1070766,54.4693532],[-8.106677,54.4693803],[-8.1057277,54.4695252],[-8.1050202,54.4695783],[-8.1032215,54.4698105],[-8.0964841,54.470762],[-8.0964161,54.4707653],[-8.0957806,54.4719816],[-8.0952076,54.4728347],[-8.0949683,54.4733026],[-8.0948386,54.4736344],[-8.0947194,54.4741125],[-8.094481,54.4760875],[-8.0944454,54.4761271],[-8.0949632,54.476294],[-8.095408,54.4764373],[-8.0952698,54.4766138],[-8.0952574,54.4767014],[-8.0953002,54.4767738],[-8.0954365,54.4769337],[-8.0958826,54.4774459],[-8.095894,54.4775182],[-8.095818,54.4776042],[-8.095062,54.4780203],[-8.0948396,54.4781805],[-8.094592,54.4784243],[-8.0944501,54.4785653],[-8.0941571,54.4788486],[-8.093881,54.4791437],[-8.0938138,54.4792864],[-8.0937555,54.4797975],[-8.0937322,54.4798941],[-8.0936881,54.479945],[-8.093626,54.4799781],[-8.09124,54.4801272],[-8.0911871,54.4801326],[-8.0935642,54.4799858],[-8.093626,54.4799781],[-8.0936881,54.479945],[-8.0937322,54.4798941],[-8.0938371,54.4792178],[-8.093881,54.4791437],[-8.0941571,54.4788486],[-8.0944501,54.4785653],[-8.0948396,54.4781805],[-8.095062,54.4780203],[-8.095818,54.4776042],[-8.095894,54.4775182],[-8.0958826,54.4774459],[-8.0955675,54.4770804],[-8.0954365,54.4769337],[-8.0952574,54.4767014],[-8.0952698,54.4766138],[-8.0953676,54.4764842],[-8.095408,54.4764373],[-8.0918105,54.4752543],[-8.0895819,54.4744912],[-8.0876555,54.4738554],[-8.0873115,54.4737647],[-8.0870148,54.4737117],[-8.086326,54.4736355],[-8.0843719,54.4735379],[-8.0837078,54.4734719],[-8.0820359,54.473341],[-8.0747507,54.472845],[-8.072982,54.4726919],[-8.0726419,54.4726509],[-8.0723049,54.4725998],[-8.0702169,54.4722059],[-8.0686869,54.4719349],[-8.065925,54.471405],[-8.0620659,54.470705],[-8.057759,54.469897],[-8.0463938,54.4678799],[-8.0420496,54.4670816],[-8.0400167,54.4667495],[-8.0396706,54.4667129],[-8.0394478,54.4667066],[-8.0386044,54.4667468],[-8.0383189,54.4667899],[-8.034898,54.4674979],[-8.0344789,54.4675729],[-8.0340479,54.4676389],[-8.0327429,54.4677869],[-8.0304829,54.4679619],[-8.0276949,54.4681399],[-8.0225507,54.468375],[-8.0218188,54.4683849],[-8.0210879,54.468348],[-8.019262,54.46821],[-8.0171689,54.4680948],[-8.016512,54.4680269],[-8.0156019,54.4678769],[-8.0147099,54.4676899],[-8.0141447,54.4675541],[-8.0138126,54.4674267],[-8.0131099,54.4670713],[-8.0128621,54.4670045],[-8.0125689,54.4669512],[-8.012405,54.4669318],[-8.0124071,54.4669005],[-8.0123154,54.466824],[-8.0121953,54.4667973],[-8.0119861,54.4667839],[-8.0110015,54.4668472],[-8.0099456,54.4668806],[-8.0047278,54.46713],[-8.0029704,54.4672798],[-7.9996444,54.4674943],[-7.995039,54.4675808],[-7.9929467,54.4675675],[-7.9910176,54.4676705],[-7.9885848,54.4677653],[-7.9807939,54.4681381],[-7.9804474,54.468168],[-7.9778543,54.4685305],[-7.9777341,54.4685605],[-7.9776797,54.4686104],[-7.9776568,54.4687201],[-7.9776596,54.4687576],[-7.9772338,54.4687358],[-7.9768078,54.4687375],[-7.9754332,54.4688282],[-7.9741988,54.468996],[-7.9733659,54.4691798],[-7.9717489,54.4695959],[-7.9700719,54.4699959],[-7.9692369,54.470157],[-7.9648608,54.4708029],[-7.963546,54.470971],[-7.961439,54.4711779],[-7.9606479,54.4713019],[-7.9586578,54.4717039],[-7.9544129,54.47262],[-7.9518828,54.4730709],[-7.950994,54.4731748],[-7.948708,54.4733889],[-7.9464029,54.4736289],[-7.9450279,54.4737439],[-7.9441508,54.473767],[-7.9432748,54.4737418],[-7.942852,54.4737148],[-7.9379439,54.4733048],[-7.9321179,54.4728649],[-7.9302018,54.4726948],[-7.9293659,54.4726399],[-7.9285039,54.4726028],[-7.926213,54.472563],[-7.922972,54.472576],[-7.9135109,54.4727099],[-7.9096869,54.472739],[-7.905422,54.4728129],[-7.902341,54.472837],[-7.9019349,54.4728658],[-7.9015478,54.4729139],[-7.900789,54.4730448],[-7.89936,54.4733648],[-7.898999,54.4734179],[-7.8986298,54.473447],[-7.8982578,54.4734479],[-7.8978808,54.4734289],[-7.8958768,54.473276],[-7.8932039,54.4729958],[-7.892843,54.4729688],[-7.8924889,54.4729539],[-7.8917678,54.4729539],[-7.8910209,54.4729059],[-7.8902479,54.4728809],[-7.8879028,54.472869],[-7.8868689,54.4728159],[-7.8853119,54.4726529],[-7.8848898,54.4726229],[-7.8831769,54.4725458],[-7.8823289,54.4725419],[-7.8819219,54.4725579],[-7.8807,54.472663],[-7.880285,54.4726719],[-7.878666,54.4726458],[-7.8774659,54.4726619],[-7.8770758,54.4726879],[-7.8762879,54.4727729],[-7.8754889,54.4729089],[-7.8750819,54.4729429],[-7.8742688,54.472956],[-7.8738669,54.472945],[-7.8726798,54.4728599],[-7.871913,54.4727399],[-7.8715268,54.4726499],[-7.868664,54.4718859],[-7.8668689,54.471239],[-7.865987,54.4710429],[-7.8645069,54.47083],[-7.863904,54.4707988],[-7.863589,54.470808],[-7.863275,54.4708359],[-7.8629829,54.4708659],[-7.8625856,54.4705275],[-7.8613853,54.4705846],[-7.8599315,54.4705908],[-7.8571558,54.4705338],[-7.8542976,54.4700828],[-7.8526851,54.4697995],[-7.8489542,54.4689843],[-7.8470681,54.4686128],[-7.8458678,54.4684128],[-7.8443436,54.4682697],[-7.8434674,54.4680412],[-7.8417241,54.4676983],[-7.8402666,54.4673554],[-7.8383397,54.4668221],[-7.8364346,54.4661894],[-7.8358024,54.465955],[-7.8349329,54.4655484],[-7.834542,54.4653178],[-7.8337485,54.4645869],[-7.8335836,54.4644768],[-7.8332787,54.4639365],[-7.8323578,54.4625544],[-7.832274,54.4624616],[-7.8317668,54.4620509],[-7.8313159,54.461749],[-7.8303318,54.4612019],[-7.8291889,54.460605],[-7.828339,54.4601229],[-7.827726,54.459748],[-7.8273769,54.4594969],[-7.8272538,54.4593609],[-7.8271549,54.4592059],[-7.827105,54.45904],[-7.8271018,54.4585059],[-7.8270448,54.458316],[-7.8268168,54.4579218],[-7.8265238,54.4575469],[-7.8263339,54.457388],[-7.8261038,54.4572479],[-7.825847,54.4571349],[-7.8249559,54.4568029],[-7.823997,54.456409],[-7.8226929,54.4558468],[-7.8220678,54.455541],[-7.81972,54.4542569],[-7.8180618,54.453271],[-7.8173349,54.45278],[-7.8165639,54.4521579],[-7.816335,54.4520439],[-7.815812,54.4518319],[-7.8146269,54.451413],[-7.8143408,54.4513409],[-7.8140529,54.4512899],[-7.8137649,54.4512498],[-7.8131949,54.4512088],[-7.8129308,54.451215],[-7.8126849,54.4512608],[-7.8124579,54.451343],[-7.811326,54.4519159],[-7.8110769,54.4520159],[-7.8108139,54.4520949],[-7.8105438,54.452154],[-7.8096758,54.4522359],[-7.8094,54.452246],[-7.8088919,54.452211],[-7.808649,54.452167],[-7.8082088,54.4520429],[-7.8078339,54.4519029],[-7.8076919,54.4518259],[-7.8075889,54.4517349],[-7.8075139,54.45163],[-7.807461,54.4515039],[-7.8074278,54.4512109],[-7.8075534,54.4503545],[-7.8075278,54.450282],[-7.80745,54.4502036],[-7.8073401,54.4501356],[-7.8071736,54.4501037],[-7.8058358,54.4502209],[-7.8040279,54.4502539],[-7.8028509,54.4502559],[-7.8020589,54.4502149],[-7.8012729,54.4501509],[-7.8002199,54.4500179],[-7.7999089,54.449962],[-7.79962,54.4498938],[-7.7993549,54.4497999],[-7.7991258,54.4496859],[-7.7989299,54.44955],[-7.7986149,54.4492389],[-7.798351,54.4488979],[-7.7980699,54.4485879],[-7.7978879,54.448454],[-7.7976689,54.4483629],[-7.7974159,54.448305],[-7.7965509,54.4481919],[-7.795926,54.4480489],[-7.795639,54.4479619],[-7.7951029,54.4477579],[-7.794879,54.4476478],[-7.7946979,54.4475279],[-7.7945558,54.447399],[-7.7944459,54.4472509],[-7.7943358,54.4469169],[-7.7941909,54.446165],[-7.794139,54.4459828],[-7.7940579,54.4458079],[-7.7938039,54.4454719],[-7.793485,54.445175],[-7.7932479,54.4449029],[-7.7931849,54.444771],[-7.7931629,54.4446339],[-7.7933749,54.4434679],[-7.793431,54.442932],[-7.7935198,54.442433],[-7.7938668,54.4410058],[-7.7939449,54.4404079],[-7.7939018,54.439857],[-7.793767,54.4394729],[-7.7935209,54.4391089],[-7.793032,54.43856],[-7.7928429,54.4383829],[-7.7921729,54.437893],[-7.7917859,54.4375639],[-7.7910678,54.4368359],[-7.790648,54.4363429],[-7.7904899,54.4362149],[-7.790293,54.436119],[-7.7900719,54.4360519],[-7.7898189,54.4360059],[-7.789265,54.4359719],[-7.7886589,54.4359908],[-7.7883249,54.4360398],[-7.7880159,54.4360668],[-7.7873979,54.4360939],[-7.7868098,54.4360199],[-7.785872,54.4358359],[-7.783618,54.435352],[-7.7830799,54.4351739],[-7.7825859,54.4349709],[-7.7823639,54.4348459],[-7.7816319,54.4342459],[-7.7810559,54.4338069],[-7.7807769,54.4334958],[-7.780415,54.4328149],[-7.7801769,54.432507],[-7.7800099,54.4323758],[-7.7796358,54.4321369],[-7.778292,54.4313752],[-7.7779019,54.4311688],[-7.7765548,54.4305329],[-7.775829,54.430253],[-7.7750578,54.4300099],[-7.774248,54.4297908],[-7.77341,54.429594],[-7.772157,54.4293319],[-7.770546,54.429043],[-7.7693589,54.4288029],[-7.7686449,54.4286269],[-7.7679999,54.4283959],[-7.7673958,54.428116],[-7.7646524,54.4266488],[-7.7643523,54.4265258],[-7.7640127,54.4264141],[-7.7632369,54.4262108],[-7.7624069,54.4260499],[-7.7619949,54.4259938],[-7.7615689,54.4259529],[-7.7599129,54.425919],[-7.7586179,54.4258609],[-7.7569419,54.4257329],[-7.7561028,54.4256439],[-7.7554997,54.4255625],[-7.7518159,54.424964],[-7.7507108,54.4247639],[-7.7499479,54.4245829],[-7.7458089,54.4234498],[-7.74379,54.4227949],[-7.7432582,54.4225848],[-7.7410333,54.4218022],[-7.7390799,54.4211389],[-7.737924,54.4207078],[-7.7371819,54.420408],[-7.7364629,54.4200898],[-7.734428,54.419071],[-7.7337839,54.4187189],[-7.73136,54.4173149],[-7.7308308,54.4169379],[-7.73056,54.4167749],[-7.7300889,54.4164249],[-7.728819,54.4156189],[-7.7283729,54.4152618],[-7.7279819,54.414745],[-7.7276669,54.4143968],[-7.7265449,54.4132459],[-7.7264089,54.413082],[-7.726302,54.4129039],[-7.7260179,54.4123649],[-7.72586,54.4121808],[-7.7254889,54.411813],[-7.725049,54.4114479],[-7.7248089,54.4112879],[-7.7242849,54.4110118],[-7.7234419,54.4106429],[-7.7231988,54.4104989],[-7.7229889,54.4103389],[-7.722825,54.4101699],[-7.722687,54.4099829],[-7.7220458,54.4087499],[-7.7217858,54.408336],[-7.721618,54.4081478],[-7.7214278,54.4079709],[-7.7211888,54.4078269],[-7.7206699,54.407571],[-7.7204509,54.407422],[-7.7200999,54.4071159],[-7.7198379,54.4067648],[-7.7194769,54.4061239],[-7.7189199,54.4049329],[-7.718662,54.40446],[-7.7179499,54.4036199],[-7.717813,54.4034009],[-7.7176159,54.4029149],[-7.717089,54.401352],[-7.7164929,54.3998289],[-7.716373,54.3995959],[-7.7162189,54.399383],[-7.7160328,54.399193],[-7.7158039,54.3990209],[-7.715532,54.398873],[-7.7152239,54.3987469],[-7.7139038,54.3982728],[-7.709988,54.3966386],[-7.7081732,54.3957683],[-7.7052377,54.3944861],[-7.7030383,54.3935833],[-7.7028289,54.3934797],[-7.7021628,54.3929947],[-7.701185,54.3920229],[-7.6996708,54.3902909],[-7.698999,54.389432],[-7.698397,54.3885789],[-7.6967789,54.3865069],[-7.6954599,54.3849888],[-7.6951219,54.3846819],[-7.694746,54.384409],[-7.6945349,54.384279],[-7.6935649,54.3838008],[-7.6933499,54.383661],[-7.6931709,54.3835149],[-7.693005,54.3833449],[-7.692872,54.383159],[-7.6927619,54.3829559],[-7.6924929,54.3823239],[-7.692362,54.3821159],[-7.6920599,54.3817229],[-7.6916989,54.3813319],[-7.6912919,54.3809659],[-7.6908309,54.3806219],[-7.6905859,54.3804579],[-7.6893059,54.379687],[-7.6888479,54.3793649],[-7.688641,54.3792008],[-7.688272,54.378849],[-7.6879749,54.3784789],[-7.6878559,54.378288],[-7.6876869,54.3778858],[-7.6876439,54.377672],[-7.687654,54.3772309],[-7.6877499,54.37633],[-7.6877424,54.3760856],[-7.688133,54.3749348],[-7.6881671,54.3747409],[-7.6881129,54.3745459],[-7.6880408,54.3743939],[-7.6878888,54.3742259],[-7.6872729,54.3737278],[-7.6865679,54.3729979],[-7.6863749,54.372834],[-7.6859569,54.372541],[-7.6854719,54.3722709],[-7.685012,54.371963],[-7.6848678,54.371803],[-7.6845938,54.3714278],[-7.6838609,54.3702609],[-7.6834569,54.3697859],[-7.6832129,54.3695699],[-7.6826189,54.3691798],[-7.6809449,54.368291],[-7.6806448,54.3680918],[-7.6803818,54.3678789],[-7.6801618,54.367659],[-7.679978,54.367431],[-7.6798111,54.3671791],[-7.6796817,54.3669141],[-7.679531,54.3664687],[-7.6786574,54.363416],[-7.6784829,54.3630733],[-7.6781941,54.3626965],[-7.6779978,54.3625039],[-7.67773,54.3623178],[-7.6771149,54.3619788],[-7.6760959,54.361543],[-7.675625,54.3613627],[-7.6742314,54.3607852],[-7.6736919,54.360526],[-7.673453,54.3603788],[-7.67303,54.3600689],[-7.6726479,54.3597299],[-7.6714059,54.3584929],[-7.671036,54.3581518],[-7.6704319,54.3576718],[-7.6695399,54.3570559],[-7.6677164,54.3559699],[-7.6668588,54.355492],[-7.6659707,54.3550882],[-7.6654604,54.3548997],[-7.66339,54.3542692],[-7.6621566,54.3538735],[-7.6597409,54.3530193],[-7.6582411,54.3525328],[-7.6579036,54.3523382],[-7.657776,54.3522199],[-7.657323,54.3515186],[-7.6569889,54.3509151],[-7.6567529,54.3506659],[-7.6558109,54.3500849],[-7.6553807,54.349848],[-7.654975,54.3496872],[-7.6545613,54.3495839],[-7.6539161,54.3495088],[-7.6532859,54.3494684],[-7.6527819,54.3494749],[-7.6524531,54.3494375],[-7.6521663,54.3493596],[-7.6519934,54.3492963],[-7.6515645,54.3491372],[-7.6502083,54.3486045],[-7.6466502,54.3475312],[-7.6460982,54.3473779],[-7.6459482,54.3473224],[-7.6458756,54.3472766],[-7.6456435,54.3472922],[-7.6448165,54.3472533],[-7.6443277,54.3471902],[-7.6439002,54.3471237],[-7.6436773,54.347683],[-7.6434981,54.3480574],[-7.643386,54.3481271],[-7.6432703,54.3481617],[-7.6430051,54.3481923],[-7.6426728,54.3481858],[-7.6421276,54.3481401],[-7.6412763,54.3480421],[-7.640955,54.3479768],[-7.6403668,54.3478065],[-7.6402603,54.3477825],[-7.6402005,54.3478238],[-7.6400637,54.3478335],[-7.6400302,54.3479056],[-7.6399952,54.3479587],[-7.6397421,54.3483303],[-7.6396597,54.3484922],[-7.6396117,54.3486576],[-7.6396456,54.3492888],[-7.639597,54.3495589],[-7.6394969,54.3498552],[-7.6393166,54.3501471],[-7.639078,54.3503831],[-7.6387482,54.3506318],[-7.6383699,54.350878],[-7.6375754,54.3512843],[-7.6372329,54.3515456],[-7.6369181,54.3518198],[-7.6365577,54.3523044],[-7.6365143,54.3526028],[-7.6361993,54.3525293],[-7.6359773,54.3524605],[-7.6357789,54.3523763],[-7.6349322,54.3519347],[-7.6344065,54.3516583],[-7.6339342,54.3518414],[-7.6337742,54.351876],[-7.6336004,54.3518706],[-7.6334853,54.3519106],[-7.6336004,54.3518706],[-7.6337742,54.351876],[-7.6339342,54.3518414],[-7.6344065,54.3516583],[-7.6357789,54.3523763],[-7.6359773,54.3524605],[-7.6361993,54.3525293],[-7.6365143,54.3526028],[-7.6365577,54.3523044],[-7.6369181,54.3518198],[-7.6372329,54.3515456],[-7.6375754,54.3512843],[-7.6383699,54.350878],[-7.6387482,54.3506318],[-7.639078,54.3503831],[-7.6393166,54.3501471],[-7.6394969,54.3498552],[-7.639597,54.3495589],[-7.6396407,54.3493156],[-7.6396456,54.3492888],[-7.6396117,54.3486576],[-7.6396597,54.3484922],[-7.6397421,54.3483303],[-7.6399952,54.3479587],[-7.6400302,54.3479056],[-7.6400637,54.3478335],[-7.6400034,54.3478116],[-7.6399637,54.3477734],[-7.6399669,54.3477138],[-7.6400062,54.3476791],[-7.6400978,54.3476545],[-7.6401736,54.3476607],[-7.6402474,54.3476957],[-7.6402722,54.3477354],[-7.6402603,54.3477825],[-7.6410273,54.3479915],[-7.6412763,54.3480421],[-7.6421276,54.3481401],[-7.6426728,54.3481858],[-7.6430051,54.3481923],[-7.6432703,54.3481617],[-7.643386,54.3481271],[-7.6434981,54.3480574],[-7.6438602,54.3472412],[-7.6439002,54.3471237],[-7.644044,54.3468232],[-7.6442649,54.3465597],[-7.6449228,54.3467087],[-7.6457891,54.3469277],[-7.6459721,54.3469594],[-7.6458944,54.3471473],[-7.6458756,54.3472766],[-7.6459482,54.3473224],[-7.6460982,54.3473779],[-7.6466502,54.3475312],[-7.6502083,54.3486045],[-7.6509302,54.3488774],[-7.6515645,54.3491372],[-7.6521663,54.3493596],[-7.6524531,54.3494375],[-7.6527819,54.3494749],[-7.6532859,54.3494684],[-7.6539161,54.3495088],[-7.6545613,54.3495839],[-7.654975,54.3496872],[-7.6553807,54.349848],[-7.6558109,54.3500849],[-7.6567529,54.3506659],[-7.6569889,54.3509151],[-7.657323,54.3515186],[-7.657776,54.3522199],[-7.6579036,54.3523382],[-7.6582411,54.3525328],[-7.6597409,54.3530193],[-7.6621566,54.3538735],[-7.66339,54.3542692],[-7.6654604,54.3548997],[-7.6659707,54.3550882],[-7.6668588,54.355492],[-7.6677164,54.3559699],[-7.6695399,54.3570559],[-7.6704319,54.3576718],[-7.671036,54.3581518],[-7.6714059,54.3584929],[-7.6726479,54.3597299],[-7.67303,54.3600689],[-7.673453,54.3603788],[-7.6736919,54.360526],[-7.6742314,54.3607852],[-7.675625,54.3613627],[-7.6760959,54.361543],[-7.6771149,54.3619788],[-7.67773,54.3623178],[-7.6779978,54.3625039],[-7.6781941,54.3626965],[-7.6784829,54.3630733],[-7.6786574,54.363416],[-7.679531,54.3664687],[-7.6796817,54.3669141],[-7.6798111,54.3671791],[-7.679978,54.367431],[-7.6801618,54.367659],[-7.6803818,54.3678789],[-7.6806448,54.3680918],[-7.6809449,54.368291],[-7.6826189,54.3691798],[-7.6832129,54.3695699],[-7.6834569,54.3697859],[-7.6838609,54.3702609],[-7.6845938,54.3714278],[-7.6848678,54.371803],[-7.685012,54.371963],[-7.6854719,54.3722709],[-7.6859569,54.372541],[-7.6863749,54.372834],[-7.6865679,54.3729979],[-7.6872729,54.3737278],[-7.6878888,54.3742259],[-7.6880408,54.3743939],[-7.6881129,54.3745459],[-7.6881671,54.3747409],[-7.688133,54.3749348],[-7.6877424,54.3760856],[-7.6877499,54.37633],[-7.687654,54.3772309],[-7.6876439,54.377672],[-7.6876869,54.3778858],[-7.6878559,54.378288],[-7.6879749,54.3784789],[-7.688272,54.378849],[-7.688641,54.3792008],[-7.6888479,54.3793649],[-7.6893059,54.379687],[-7.6905859,54.3804579],[-7.6908309,54.3806219],[-7.6912919,54.3809659],[-7.6916989,54.3813319],[-7.6920599,54.3817229],[-7.692362,54.3821159],[-7.6924929,54.3823239],[-7.6927619,54.3829559],[-7.692872,54.383159],[-7.693005,54.3833449],[-7.6931709,54.3835149],[-7.6933499,54.383661],[-7.6935649,54.3838008],[-7.6945349,54.384279],[-7.694746,54.384409],[-7.6951219,54.3846819],[-7.6954599,54.3849888],[-7.6967789,54.3865069],[-7.698397,54.3885789],[-7.698999,54.389432],[-7.6996708,54.3902909],[-7.701185,54.3920229],[-7.7021628,54.3929947],[-7.7028289,54.3934797],[-7.7030383,54.3935833],[-7.7052377,54.3944861],[-7.7081732,54.3957683],[-7.709988,54.3966386],[-7.7139038,54.3982728],[-7.7152239,54.3987469],[-7.715532,54.398873],[-7.7158039,54.3990209],[-7.7160328,54.399193],[-7.7162189,54.399383],[-7.716373,54.3995959],[-7.7164929,54.3998289],[-7.717089,54.401352],[-7.7176159,54.4029149],[-7.717813,54.4034009],[-7.7179499,54.4036199],[-7.718662,54.40446],[-7.7189199,54.4049329],[-7.7194769,54.4061239],[-7.7198379,54.4067648],[-7.7200999,54.4071159],[-7.7204509,54.407422],[-7.7206699,54.407571],[-7.7211888,54.4078269],[-7.7214278,54.4079709],[-7.721618,54.4081478],[-7.7217858,54.408336],[-7.7220458,54.4087499],[-7.722687,54.4099829],[-7.722825,54.4101699],[-7.7229889,54.4103389],[-7.7231988,54.4104989],[-7.7234419,54.4106429],[-7.7242849,54.4110118],[-7.7248089,54.4112879],[-7.725049,54.4114479],[-7.7254889,54.411813],[-7.72586,54.4121808],[-7.7260179,54.4123649],[-7.726302,54.4129039],[-7.7264089,54.413082],[-7.7265449,54.4132459],[-7.7276669,54.4143968],[-7.7279819,54.414745],[-7.7283729,54.4152618],[-7.728819,54.4156189],[-7.7300889,54.4164249],[-7.73056,54.4167749],[-7.7308308,54.4169379],[-7.73136,54.4173149],[-7.7337839,54.4187189],[-7.734428,54.419071],[-7.7364629,54.4200898],[-7.7371819,54.420408],[-7.737924,54.4207078],[-7.7390799,54.4211389],[-7.7410333,54.4218022],[-7.7432582,54.4225848],[-7.74379,54.4227949],[-7.7458089,54.4234498],[-7.7499479,54.4245829],[-7.7507108,54.4247639],[-7.7518159,54.424964],[-7.7554997,54.4255625],[-7.7561028,54.4256439],[-7.7569419,54.4257329],[-7.7586179,54.4258609],[-7.7599129,54.425919],[-7.7615689,54.4259529],[-7.7619949,54.4259938],[-7.7624069,54.4260499],[-7.7632369,54.4262108],[-7.7640127,54.4264141],[-7.7643523,54.4265258],[-7.7646524,54.4266488],[-7.7673958,54.428116],[-7.7679999,54.4283959],[-7.7686449,54.4286269],[-7.7693589,54.4288029],[-7.770546,54.429043],[-7.772157,54.4293319],[-7.77341,54.429594],[-7.774248,54.4297908],[-7.7750578,54.4300099],[-7.775829,54.430253],[-7.7765548,54.4305329],[-7.7779019,54.4311688],[-7.778292,54.4313752],[-7.7796358,54.4321369],[-7.7800099,54.4323758],[-7.7801769,54.432507],[-7.780415,54.4328149],[-7.7807769,54.4334958],[-7.7810559,54.4338069],[-7.7816319,54.4342459],[-7.7823639,54.4348459],[-7.7825859,54.4349709],[-7.7830799,54.4351739],[-7.783618,54.435352],[-7.785872,54.4358359],[-7.7868098,54.4360199],[-7.7873979,54.4360939],[-7.7880159,54.4360668],[-7.7883249,54.4360398],[-7.7886589,54.4359908],[-7.789265,54.4359719],[-7.7898189,54.4360059],[-7.7900719,54.4360519],[-7.790293,54.436119],[-7.7904899,54.4362149],[-7.790648,54.4363429],[-7.7910678,54.4368359],[-7.7917859,54.4375639],[-7.7921729,54.437893],[-7.7928429,54.4383829],[-7.793032,54.43856],[-7.7935209,54.4391089],[-7.793767,54.4394729],[-7.7939018,54.439857],[-7.7939449,54.4404079],[-7.7938668,54.4410058],[-7.7935198,54.442433],[-7.793431,54.442932],[-7.7933749,54.4434679],[-7.7931629,54.4446339],[-7.7931849,54.444771],[-7.7932479,54.4449029],[-7.793485,54.445175],[-7.7938039,54.4454719],[-7.7940579,54.4458079],[-7.794139,54.4459828],[-7.7941909,54.446165],[-7.7943358,54.4469169],[-7.7944459,54.4472509],[-7.7945558,54.447399],[-7.7946979,54.4475279],[-7.794879,54.4476478],[-7.7951029,54.4477579],[-7.795639,54.4479619],[-7.795926,54.4480489],[-7.7965509,54.4481919],[-7.7974159,54.448305],[-7.7976689,54.4483629],[-7.7978879,54.448454],[-7.7980699,54.4485879],[-7.798351,54.4488979],[-7.7986149,54.4492389],[-7.7989299,54.44955],[-7.7991258,54.4496859],[-7.7993549,54.4497999],[-7.79962,54.4498938],[-7.7999089,54.449962],[-7.8002199,54.4500179],[-7.8012729,54.4501509],[-7.8020589,54.4502149],[-7.8028509,54.4502559],[-7.8040279,54.4502539],[-7.8058358,54.4502209],[-7.8071736,54.4501037],[-7.8073401,54.4501356],[-7.80745,54.4502036],[-7.8075278,54.450282],[-7.8075534,54.4503545],[-7.8074278,54.4512109],[-7.807461,54.4515039],[-7.8075139,54.45163],[-7.8075889,54.4517349],[-7.8076919,54.4518259],[-7.8078339,54.4519029],[-7.8082088,54.4520429],[-7.808649,54.452167],[-7.8088919,54.452211],[-7.8094,54.452246],[-7.8096758,54.4522359],[-7.8105438,54.452154],[-7.8108139,54.4520949],[-7.8110769,54.4520159],[-7.811326,54.4519159],[-7.8124579,54.451343],[-7.8126849,54.4512608],[-7.8129308,54.451215],[-7.8131949,54.4512088],[-7.8137649,54.4512498],[-7.8140529,54.4512899],[-7.8143408,54.4513409],[-7.8146269,54.451413],[-7.815812,54.4518319],[-7.816335,54.4520439],[-7.8165639,54.4521579],[-7.8173349,54.45278],[-7.8180618,54.453271],[-7.81972,54.4542569],[-7.8220678,54.455541],[-7.8226929,54.4558468],[-7.823997,54.456409],[-7.8249559,54.4568029],[-7.825847,54.4571349],[-7.8261038,54.4572479],[-7.8263339,54.457388],[-7.8265238,54.4575469],[-7.8268168,54.4579218],[-7.8270448,54.458316],[-7.8271018,54.4585059],[-7.827105,54.45904],[-7.8271549,54.4592059],[-7.8272538,54.4593609],[-7.8273769,54.4594969],[-7.827726,54.459748],[-7.828339,54.4601229],[-7.8291889,54.460605],[-7.8303318,54.4612019],[-7.8313159,54.461749],[-7.8317668,54.4620509],[-7.832274,54.4624616],[-7.8323578,54.4625544],[-7.8332787,54.4639365],[-7.8334138,54.464157],[-7.8335009,54.4643547],[-7.8335836,54.4644768],[-7.8337485,54.4645869],[-7.834542,54.4653178],[-7.8349329,54.4655484],[-7.8358024,54.465955],[-7.8364346,54.4661894],[-7.8383397,54.4668221],[-7.8402666,54.4673554],[-7.8417241,54.4676983],[-7.8434674,54.4680412],[-7.8443436,54.4682697],[-7.8458678,54.4684128],[-7.8470681,54.4686128],[-7.8489542,54.4689843],[-7.8526851,54.4697995],[-7.8542976,54.4700828],[-7.8571558,54.4705338],[-7.8599315,54.4705908],[-7.8613853,54.4705846],[-7.8625856,54.4705275],[-7.8629829,54.4708659],[-7.863589,54.470808],[-7.863904,54.4707988],[-7.8645069,54.47083],[-7.865987,54.4710429],[-7.8668689,54.471239],[-7.868664,54.4718859],[-7.8715268,54.4726499],[-7.871913,54.4727399],[-7.8726798,54.4728599],[-7.8738669,54.472945],[-7.8742688,54.472956],[-7.8750819,54.4729429],[-7.8754889,54.4729089],[-7.8762879,54.4727729],[-7.8770758,54.4726879],[-7.8774659,54.4726619],[-7.878666,54.4726458],[-7.880285,54.4726719],[-7.8807,54.472663],[-7.8819219,54.4725579],[-7.8823289,54.4725419],[-7.8831769,54.4725458],[-7.8848898,54.4726229],[-7.8853119,54.4726529],[-7.8868689,54.4728159],[-7.8879028,54.472869],[-7.8902479,54.4728809],[-7.8910209,54.4729059],[-7.8917678,54.4729539],[-7.8924889,54.4729539],[-7.892843,54.4729688],[-7.8932039,54.4729958],[-7.8958768,54.473276],[-7.8978808,54.4734289],[-7.8982578,54.4734479],[-7.8986298,54.473447],[-7.898999,54.4734179],[-7.89936,54.4733648],[-7.900789,54.4730448],[-7.9015478,54.4729139],[-7.9019349,54.4728658],[-7.902341,54.472837],[-7.905422,54.4728129],[-7.9096869,54.472739],[-7.9135109,54.4727099],[-7.922972,54.472576],[-7.9257429,54.4725609],[-7.9280559,54.4725909],[-7.9293659,54.4726399],[-7.9302018,54.4726948],[-7.9321179,54.4728649],[-7.9379439,54.4733048],[-7.942852,54.4737148],[-7.9432748,54.4737418],[-7.9441508,54.473767],[-7.9450279,54.4737439],[-7.9464029,54.4736289],[-7.948708,54.4733889],[-7.950994,54.4731748],[-7.9518828,54.4730709],[-7.9544129,54.47262],[-7.9586578,54.4717039],[-7.9606479,54.4713019],[-7.961439,54.4711779],[-7.963546,54.470971],[-7.9648608,54.4708029],[-7.9692369,54.470157],[-7.9700719,54.4699959],[-7.9717489,54.4695959],[-7.9733659,54.4691798],[-7.9741988,54.468996],[-7.9754332,54.4688282],[-7.9768078,54.4687375],[-7.9772338,54.4687358],[-7.9776596,54.4687576],[-7.9776797,54.4686104],[-7.9777341,54.4685605],[-7.9778543,54.4685305],[-7.9804474,54.468168],[-7.9807939,54.4681381],[-7.9885848,54.4677653],[-7.9910176,54.4676705],[-7.9929467,54.4675675],[-7.995039,54.4675808],[-7.9996444,54.4674943],[-8.0029704,54.4672798],[-8.0047278,54.46713],[-8.0099456,54.4668806],[-8.0110015,54.4668472],[-8.0119861,54.4667839],[-8.0121953,54.4667973],[-8.0123154,54.466824],[-8.0124071,54.4669005],[-8.012405,54.4669318],[-8.0128621,54.4670045],[-8.0131099,54.4670713],[-8.0138126,54.4674267],[-8.0141447,54.4675541],[-8.0147099,54.4676899],[-8.0156019,54.4678769],[-8.016512,54.4680269],[-8.0167426,54.4680581],[-8.0167409,54.4680975],[-8.0180131,54.4714804],[-8.0182375,54.4720178],[-8.0184797,54.4723027],[-8.0188371,54.4725842],[-8.0192421,54.4728623],[-8.0196259,54.4731577],[-8.0199363,54.4734665],[-8.0209849,54.4751762],[-8.0211712,54.4754735],[-8.0216287,54.4762476],[-8.0217648,54.4765339],[-8.0218013,54.4767088],[-8.0218902,54.4773416],[-8.0219058,54.4778875],[-8.0221508,54.479383],[-8.0221809,54.4797133],[-8.0225196,54.4819594],[-8.0226036,54.4822539],[-8.0226244,54.4822942],[-8.0217006,54.4824231],[-8.0210647,54.4825363],[-8.015939,54.4835811],[-8.0144444,54.4838718],[-8.0137392,54.483953],[-8.0127403,54.4840018],[-8.0106284,54.483913],[-8.0088736,54.4839286],[-8.0050759,54.4840577],[-8.0044547,54.4841169],[-8.0036579,54.4842311],[-8.0016788,54.4846038],[-7.9991003,54.4851712],[-7.9980984,54.4854657],[-7.9973575,54.4857201],[-7.9969255,54.4858438],[-7.995468,54.4861569],[-7.9940855,54.4863734],[-7.9925736,54.4865466],[-7.9909891,54.4867517],[-7.9905631,54.4868265],[-7.9901131,54.4869312],[-7.989723,54.4870445],[-7.9892037,54.4872302],[-7.9888413,54.4873963],[-7.9884631,54.4876074],[-7.9880277,54.4878944],[-7.9870136,54.4886927],[-7.986738,54.4889488],[-7.9865554,54.4892102],[-7.9862518,54.4899984],[-7.9859542,54.4905865],[-7.9856329,54.4909873],[-7.9853997,54.4912105],[-7.9841396,54.4920807],[-7.9836175,54.4925398],[-7.9832384,54.4928103],[-7.9819988,54.493546],[-7.9807345,54.4942069],[-7.9801362,54.4946051],[-7.9797985,54.4948668],[-7.9792872,54.4954377],[-7.9790503,54.495835],[-7.9789903,54.4960755],[-7.9789093,54.4968733],[-7.9788253,54.497018],[-7.9787353,54.4971521],[-7.9785794,54.4973123],[-7.9783453,54.4975284],[-7.9780484,54.4977549],[-7.9772415,54.4982531],[-7.9731448,54.5004028],[-7.9714185,54.5012505],[-7.9704991,54.5016817],[-7.9697462,54.501997],[-7.9690834,54.5022142],[-7.9687983,54.5022744],[-7.9688579,54.5024774],[-7.9690115,54.5044401],[-7.9690155,54.5049128],[-7.969079,54.5054712],[-7.9690952,54.5060684],[-7.9691531,54.5066006],[-7.9691658,54.5075341],[-7.9690879,54.5079979],[-7.9689303,54.5083617],[-7.9685079,54.509198],[-7.9684423,54.5093824],[-7.9683846,54.5096736],[-7.9683959,54.5100669],[-7.9684328,54.5102275],[-7.9686282,54.510739],[-7.9690212,54.5115206],[-7.9691222,54.5116467],[-7.9693101,54.5119527],[-7.9696014,54.5123165],[-7.9699075,54.5126162],[-7.9703092,54.5129479],[-7.9711905,54.5137526],[-7.9716587,54.5141057],[-7.9721086,54.5145252],[-7.9726763,54.5150026],[-7.9757215,54.5176775],[-7.9762857,54.5182104],[-7.9772036,54.5191479],[-7.9777529,54.519903],[-7.9782249,54.5207013],[-7.9785088,54.5210543],[-7.9800168,54.5233953],[-7.9807024,54.5244117],[-7.9808973,54.5247504],[-7.9813262,54.5253311],[-7.9816012,54.5257541],[-7.9819458,54.5261446],[-7.9819715,54.5261707],[-7.9816012,54.5257541],[-7.9813262,54.5253311],[-7.9808973,54.5247504],[-7.9807024,54.5244117],[-7.9800168,54.5233953],[-7.9785088,54.5210543],[-7.9782249,54.5207013],[-7.9777529,54.519903],[-7.9772036,54.5191479],[-7.9762857,54.5182104],[-7.9757215,54.5176775],[-7.9726763,54.5150026],[-7.9721086,54.5145252],[-7.9716587,54.5141057],[-7.9711905,54.5137526],[-7.9703092,54.5129479],[-7.9699075,54.5126162],[-7.9696014,54.5123165],[-7.9693101,54.5119527],[-7.9691222,54.5116467],[-7.9690212,54.5115206],[-7.9686282,54.510739],[-7.9684328,54.5102275],[-7.9683959,54.5100669],[-7.9683846,54.5096736],[-7.9684423,54.5093824],[-7.9685079,54.509198],[-7.9689303,54.5083617],[-7.9690879,54.5079979],[-7.9691658,54.5075341],[-7.9691531,54.5066006],[-7.9690952,54.5060684],[-7.969079,54.5054712],[-7.9690155,54.5049128],[-7.9690115,54.5044401],[-7.9688579,54.5024774],[-7.9688176,54.5023005],[-7.9687983,54.5022744],[-7.968349,54.5023649],[-7.966911,54.5026046],[-7.9665271,54.5026952],[-7.9662122,54.5028045],[-7.965886,54.5029623],[-7.9651799,54.5033428],[-7.9648467,54.503551],[-7.9646945,54.5036226],[-7.9644771,54.5036961],[-7.9639736,54.5038181],[-7.9633543,54.5039422],[-7.9626733,54.5041441],[-7.9624018,54.5042514],[-7.962054,54.5043376],[-7.9610508,54.504449],[-7.9596382,54.5044974],[-7.9581061,54.5044554],[-7.9571897,54.5045395],[-7.9550166,54.5048635],[-7.9543682,54.5049728],[-7.9540856,54.5050274],[-7.9530425,54.5052988],[-7.9525571,54.5054416],[-7.9510214,54.5057719],[-7.9487035,54.5061379],[-7.9481637,54.5061861],[-7.9468634,54.5061988],[-7.9454254,54.5062552],[-7.9447692,54.5062943],[-7.9441965,54.5063564],[-7.941282,54.5068179],[-7.9397883,54.5070765],[-7.9379493,54.5076399],[-7.936644,54.5079838],[-7.9358665,54.5081246],[-7.9349749,54.5081825],[-7.9339933,54.5081577],[-7.9333605,54.5081846],[-7.9327496,54.5082404],[-7.9312941,54.5084498],[-7.9280483,54.509011],[-7.9245705,54.5095525],[-7.9220123,54.5100114],[-7.9197217,54.5105775],[-7.9167286,54.5112562],[-7.9139519,54.5116647],[-7.9129748,54.5117353],[-7.9124181,54.5117271],[-7.9119561,54.5117092],[-7.9107899,54.5115992],[-7.9099839,54.5115572],[-7.9093289,54.5115412],[-7.9090072,54.5115667],[-7.9083295,54.511704],[-7.9073472,54.5119937],[-7.9069709,54.5120846],[-7.9066157,54.5121337],[-7.9061486,54.5121473],[-7.9057002,54.5121216],[-7.9052117,54.5120646],[-7.9044338,54.5119046],[-7.8995576,54.510848],[-7.897271,54.5103987],[-7.8948937,54.5098418],[-7.8934919,54.5095299],[-7.8920226,54.5092625],[-7.8913953,54.5092342],[-7.8905005,54.5092736],[-7.8876313,54.5095391],[-7.8857735,54.5097734],[-7.8842951,54.5098693],[-7.8807741,54.5100247],[-7.8799037,54.5100107],[-7.8793494,54.5099541],[-7.8788144,54.5098665],[-7.8748703,54.508884],[-7.8739561,54.5087147],[-7.8733658,54.5086443],[-7.8722151,54.508596],[-7.8715283,54.5086543],[-7.8682488,54.5090462],[-7.8661365,54.5093522],[-7.861538,54.5100783],[-7.859304,54.5103456],[-7.857616,54.5104613],[-7.8563495,54.5106136],[-7.8543652,54.5108068],[-7.8521183,54.5109491],[-7.8509917,54.5110441],[-7.8497954,54.5112371],[-7.8478111,54.5116809],[-7.8473266,54.5118607],[-7.8462178,54.5123079],[-7.8401945,54.513768],[-7.8386363,54.5140899],[-7.8368096,54.5145304],[-7.835689,54.5148284],[-7.8337494,54.5154522],[-7.8329852,54.515602],[-7.831886,54.5157704],[-7.8311738,54.5158993],[-7.8300919,54.5161192],[-7.8260649,54.5169867],[-7.8226507,54.5176302],[-7.8217287,54.5177692],[-7.8207072,54.5180029],[-7.8184778,54.5185483],[-7.8180103,54.5186167],[-7.8174356,54.518672],[-7.8162541,54.5187582],[-7.8108672,54.5189514],[-7.8103302,54.5189853],[-7.8097233,54.5190464],[-7.8080015,54.5193917],[-7.8057486,54.5198695],[-7.8043014,54.5202251],[-7.8039452,54.5203471],[-7.8021478,54.5214684],[-7.8014064,54.5219596],[-7.8010505,54.5222643],[-7.8000875,54.5234871],[-7.7998729,54.5237257],[-7.7990662,54.5241849],[-7.7984884,54.5243847],[-7.7979922,54.5245101],[-7.7973796,54.5245676],[-7.7965274,54.5246049],[-7.7921325,54.5246827],[-7.7911755,54.524798],[-7.7905159,54.5249638],[-7.7898681,54.5251842],[-7.7894352,54.5253937],[-7.7883148,54.5261053],[-7.7850418,54.5282769],[-7.7846311,54.5284712],[-7.7842206,54.52859],[-7.7836575,54.5287092],[-7.780936,54.5290395],[-7.7784605,54.5293867],[-7.7773286,54.5296247],[-7.7758094,54.530047],[-7.7729763,54.5308773],[-7.7711346,54.5313709],[-7.7703308,54.5315479],[-7.7682955,54.5318372],[-7.7670989,54.5318882],[-7.7638436,54.5319018],[-7.7605706,54.5318882],[-7.7582419,54.5319631],[-7.7568106,54.532072],[-7.7546347,54.5323749],[-7.7539418,54.53252],[-7.7520713,54.5330863],[-7.7516314,54.5331781],[-7.748629,54.5335186],[-7.7443464,54.5338689],[-7.7377006,54.533961],[-7.7339114,54.5339099],[-7.7313362,54.5338453],[-7.7306004,54.5338304],[-7.7302944,54.5340181],[-7.7301409,54.5342243],[-7.7301063,54.5342582],[-7.7289125,54.5337557],[-7.7279128,54.5332131],[-7.727661,54.5330974],[-7.7273132,54.5329643],[-7.7263929,54.5326586],[-7.7254088,54.5323041],[-7.7234341,54.5314924],[-7.7228095,54.5312013],[-7.7224696,54.5310038],[-7.7222936,54.5308384],[-7.7217163,54.5301178],[-7.7211454,54.529358],[-7.7210409,54.529138],[-7.7209523,54.5288277],[-7.7209039,54.528555],[-7.7209022,54.5282244],[-7.7209823,54.5277252],[-7.7212747,54.5264102],[-7.7215915,54.5256338],[-7.7222627,54.5247975],[-7.7227168,54.5242713],[-7.7228401,54.5240983],[-7.7229565,54.5238779],[-7.7229529,54.5234027],[-7.722887,54.5231084],[-7.7227676,54.5228525],[-7.7226546,54.5227216],[-7.722499,54.5226789],[-7.7225493,54.5226156],[-7.7225387,54.522526],[-7.7215394,54.5215835],[-7.7195115,54.5195461],[-7.7188915,54.5189294],[-7.7127535,54.5128211],[-7.7116322,54.5115632],[-7.7106288,54.5101578],[-7.7101514,54.5093521],[-7.7084824,54.5065637],[-7.7081034,54.5058332],[-7.7074058,54.5043246],[-7.7057369,54.5004441],[-7.7055514,54.5000593],[-7.7053193,54.4996924],[-7.7050745,54.4993739],[-7.7048341,54.4991094],[-7.7042768,54.4985759],[-7.7029943,54.4975734],[-7.7026822,54.4972695],[-7.7026175,54.4971435],[-7.7025944,54.497034],[-7.702641,54.4967675],[-7.7027285,54.496628],[-7.7080576,54.4899999],[-7.7082524,54.4897473],[-7.7083563,54.4895575],[-7.7083424,54.4892919],[-7.7082788,54.4891679],[-7.7064369,54.486731],[-7.7063734,54.4866282],[-7.7063257,54.4864575],[-7.7062864,54.4862612],[-7.7063706,54.4856374],[-7.7063911,54.4852947],[-7.7068424,54.4833067],[-7.706861,54.4829167],[-7.7068399,54.4827108],[-7.7067787,54.4825063],[-7.7065213,54.4820204],[-7.7063121,54.4817562],[-7.7060668,54.481532],[-7.7043455,54.4803173],[-7.7036153,54.4798541],[-7.7005451,54.4781667],[-7.7002004,54.4779467],[-7.6995177,54.4772848],[-7.6991873,54.4769111],[-7.6991068,54.4767586],[-7.699006,54.4764784],[-7.6989487,54.4762637],[-7.6989412,54.4760528],[-7.6989705,54.4758878],[-7.6990733,54.4757127],[-7.6992839,54.4755372],[-7.7080259,54.4710652],[-7.7122999,54.4689925],[-7.7129397,54.4685883],[-7.7133957,54.46825],[-7.7135471,54.4681081],[-7.7139146,54.467661],[-7.7140873,54.4674157],[-7.7142775,54.4668452],[-7.7149808,54.4643941],[-7.7150198,54.4641973],[-7.7150101,54.4639821],[-7.7149663,54.4638393],[-7.7146059,54.4632872],[-7.7143136,54.4628865],[-7.7140286,54.4625667],[-7.7126672,54.4611936],[-7.7093406,54.4579336],[-7.7076847,54.4563961],[-7.7019397,54.4515596],[-7.6992439,54.4492615],[-7.6909717,54.4424913],[-7.6905236,54.4420053],[-7.6903701,54.4417773],[-7.6902337,54.441497],[-7.6901462,54.4412122],[-7.6899659,54.4395155],[-7.6898213,54.4385091],[-7.6896688,54.4381659],[-7.6888213,54.4370965],[-7.6885838,54.4368605],[-7.6882524,54.4365768],[-7.6877959,54.4362395],[-7.6873602,54.4359776],[-7.6869033,54.4357452],[-7.6859506,54.4353745],[-7.6826418,54.4341899],[-7.6815469,54.433817],[-7.6807434,54.4334964],[-7.6802313,54.433261],[-7.6796952,54.4329745],[-7.6789021,54.4324436],[-7.6784205,54.4320875],[-7.6779639,54.4316388],[-7.6751513,54.4284209],[-7.6746283,54.4274355],[-7.6743875,54.4267085],[-7.6734401,54.4225737],[-7.6733388,54.4223039],[-7.6731793,54.4219795],[-7.6729767,54.4217014],[-7.6726831,54.4213894],[-7.6723752,54.4211174],[-7.6583356,54.4122581],[-7.6574521,54.4116485],[-7.6570757,54.4112996],[-7.6566376,54.410784],[-7.6536616,54.4062833],[-7.6532462,54.4059259],[-7.6527893,54.4056407],[-7.6521607,54.4054241],[-7.6510411,54.405106],[-7.6504402,54.4048634],[-7.6466014,54.4027907],[-7.6464221,54.4026782],[-7.6460808,54.4024191],[-7.6458173,54.4021822],[-7.6456005,54.4018637],[-7.6453913,54.4014285],[-7.6453826,54.4013957]]}};
var route5 = {"type":"Feature","properties":{"name":"Bus 5","desc":"\n281 miles"},"geometry":{"type":"LineString","coordinates":[[-7.1740696,54.2393365],[-7.1737727,54.2396112],[-7.1736824,54.2396802],[-7.1743346,54.2391098],[-7.1744509,54.2390493],[-7.1748271,54.238933],[-7.1751618,54.2389062],[-7.1754701,54.2389032],[-7.1755606,54.2392227],[-7.1755603,54.2393477],[-7.175442,54.2398027],[-7.1754493,54.2398852],[-7.1754962,54.239988],[-7.1755606,54.2400594],[-7.1757575,54.2401775],[-7.1766892,54.2404857],[-7.1769623,54.2406035],[-7.1787541,54.2414689],[-7.179567,54.2418878],[-7.179754,54.2420072],[-7.1799881,54.2422202],[-7.1800373,54.2423326],[-7.1800692,54.2425242],[-7.1800716,54.2426643],[-7.1800392,54.2427926],[-7.1799285,54.2430461],[-7.1792919,54.244073],[-7.1790879,54.2444647],[-7.1785552,54.245343],[-7.1784997,54.245478],[-7.1784679,54.2458746],[-7.1785332,54.2461424],[-7.1786873,54.246473],[-7.1795769,54.2478126],[-7.1800813,54.2485184],[-7.1802404,54.2487823],[-7.1803527,54.2491573],[-7.1803486,54.2494801],[-7.1802655,54.2497908],[-7.1797646,54.2509061],[-7.1796946,54.2511531],[-7.1796175,54.2515199],[-7.1796298,54.2518287],[-7.1797747,54.2524691],[-7.1801744,54.2536947],[-7.1811069,54.2558501],[-7.1813389,54.2562929],[-7.1816424,54.2566332],[-7.1826054,54.2575496],[-7.1830593,54.2580216],[-7.1835343,54.2584372],[-7.1836587,54.2585212],[-7.1839535,54.2586704],[-7.184283,54.2588006],[-7.1853593,54.2591364],[-7.1856903,54.2592601],[-7.1857841,54.2593184],[-7.1860919,54.2595967],[-7.1870532,54.2605964],[-7.1873406,54.2607685],[-7.1883445,54.2611866],[-7.1895204,54.2618227],[-7.1897037,54.2620457],[-7.1909681,54.2641242],[-7.1911176,54.2642861],[-7.1914255,54.2645072],[-7.1918001,54.2646759],[-7.1929671,54.2650574],[-7.1954649,54.2659313],[-7.1960103,54.2660895],[-7.1961907,54.2661627],[-7.1963513,54.2662525],[-7.1964547,54.2663514],[-7.1964958,54.2665432],[-7.1964469,54.2666622],[-7.1962215,54.2669372],[-7.196195,54.2670245],[-7.1962127,54.2671208],[-7.1963073,54.2672585],[-7.1969034,54.2678223],[-7.1970597,54.2679419],[-7.1975831,54.2682502],[-7.1977678,54.2683504],[-7.1983838,54.2685802],[-7.1996663,54.2689784],[-7.200711,54.2693253],[-7.2015047,54.2696078],[-7.2032559,54.2703723],[-7.2039442,54.2707139],[-7.2040805,54.2708161],[-7.2041517,54.2708832],[-7.2042614,54.2711056],[-7.2044482,54.2712803],[-7.2053456,54.2717722],[-7.2055878,54.2718737],[-7.2059374,54.2719829],[-7.2066985,54.2721692],[-7.2074443,54.2723735],[-7.2087951,54.272893],[-7.2120251,54.2742015],[-7.2125723,54.2744377],[-7.2130901,54.2746385],[-7.213014,54.2747718],[-7.2128972,54.2748584],[-7.2127457,54.2749316],[-7.2124867,54.2749885],[-7.2124131,54.27506],[-7.2130633,54.2766062],[-7.2132446,54.2768563],[-7.2136523,54.2776096],[-7.2136469,54.2777364],[-7.2135329,54.2778059],[-7.212362,54.2781482],[-7.212012,54.2782114],[-7.2118429,54.2782051],[-7.2118643,54.2783023],[-7.2120322,54.2785571],[-7.212354,54.2787981],[-7.2136201,54.2795968],[-7.2140852,54.2797225],[-7.2147289,54.2798963],[-7.2152976,54.2801187],[-7.2157122,54.2803391],[-7.2160432,54.2804883],[-7.2164364,54.2807932],[-7.2166601,54.2810082],[-7.2171537,54.2813904],[-7.2173306,54.2814967],[-7.2181906,54.2810814],[-7.2184911,54.2808262],[-7.2193345,54.2806325],[-7.2196375,54.2805777],[-7.2197811,54.2805334],[-7.2210565,54.2798511],[-7.221381,54.2797147],[-7.2218867,54.2795812],[-7.2221666,54.2794964],[-7.2222251,54.2795398],[-7.2227832,54.2793556],[-7.2231812,54.2792561],[-7.224267,54.2791172],[-7.2249753,54.2790056],[-7.2255647,54.2788847],[-7.2259525,54.2787761],[-7.2261179,54.2786676],[-7.226278,54.2785226],[-7.2268985,54.2777137],[-7.2271053,54.2775658],[-7.2276223,54.2772488],[-7.229132,54.2763795],[-7.229742,54.2760051],[-7.2300058,54.2758693],[-7.230352,54.2757788],[-7.2309311,54.2756853],[-7.2318926,54.2756005],[-7.232875,54.2755886],[-7.2332266,54.2755614],[-7.2334593,54.2754677],[-7.2336765,54.2753411],[-7.2337799,54.2752142],[-7.2343899,54.2730226],[-7.2346275,54.2727449],[-7.234974,54.2724914],[-7.2353359,54.2723072],[-7.2366645,54.2718242],[-7.2368456,54.2717214],[-7.2370317,54.2714496],[-7.2372798,54.2707705],[-7.2373936,54.2705803],[-7.2375694,54.2703538],[-7.2380658,54.2698466],[-7.2384741,54.2695689],[-7.2390634,54.2692761],[-7.2395444,54.2690677],[-7.2399115,54.2688382],[-7.2400251,54.268624],[-7.2400769,54.2684427],[-7.2400717,54.2681136],[-7.2400251,54.2676969],[-7.2399476,54.2673166],[-7.2397666,54.267078],[-7.2393583,54.2667036],[-7.2390945,54.2665285],[-7.2389239,54.2662839],[-7.2388462,54.2661299],[-7.2388826,54.2659125],[-7.2389807,54.265822],[-7.2395546,54.2654566],[-7.2396839,54.2653359],[-7.2409298,54.2638262],[-7.2415659,54.2630077],[-7.2418604,54.2626697],[-7.2421087,54.2622983],[-7.2422689,54.2619086],[-7.2423931,54.2612231],[-7.2424033,54.2609422],[-7.2423206,54.2606737],[-7.2423,54.2604954],[-7.2423102,54.2603082],[-7.2444971,54.2578862],[-7.2450788,54.2572173],[-7.2451435,54.2570843],[-7.2451563,54.2569787],[-7.2451357,54.2568835],[-7.2448358,54.2562827],[-7.2446782,54.256047],[-7.244466,54.2556438],[-7.2444247,54.2554584],[-7.2443805,54.2551489],[-7.2446013,54.2546717],[-7.2453631,54.2541106],[-7.248708,54.2522726],[-7.2501657,54.2514491],[-7.2523832,54.2499752],[-7.2529142,54.2495442],[-7.254171,54.248101],[-7.2563035,54.2467191],[-7.2569217,54.2463643],[-7.257827,54.2457449],[-7.2584783,54.2453901],[-7.2602115,54.2448613],[-7.2628261,54.2436098],[-7.2652103,54.2423268],[-7.2652517,54.2422987],[-7.2649954,54.242151],[-7.2648477,54.2420215],[-7.2647467,54.2418833],[-7.2647074,54.2417451],[-7.264727,54.241584],[-7.2652792,54.2407258],[-7.2653522,54.240572],[-7.2654757,54.239569],[-7.265584,54.2383066],[-7.2655717,54.2379799],[-7.265451,54.2376158],[-7.2653008,54.2374344],[-7.2651358,54.2372934],[-7.26486,54.2371524],[-7.2644463,54.2370443],[-7.2634782,54.2369551],[-7.2631204,54.2369124],[-7.2629397,54.2368754],[-7.2626123,54.2367901],[-7.2621368,54.2365677],[-7.2617829,54.2363065],[-7.2616081,54.2361113],[-7.2605721,54.2346765],[-7.2604971,54.2343491],[-7.2604974,54.2343234],[-7.2636179,54.2345085],[-7.264837,54.2345122],[-7.2653096,54.2344983],[-7.2658665,54.2344349],[-7.2662893,54.2343584],[-7.2666254,54.2342748],[-7.2691792,54.2334494],[-7.2697507,54.2332859],[-7.2706504,54.2330992],[-7.2735015,54.2326366],[-7.2756216,54.2322743],[-7.277647,54.2319565],[-7.2781678,54.2318544],[-7.2791643,54.2315862],[-7.2807744,54.2310397],[-7.2815835,54.2307057],[-7.2822302,54.230464],[-7.283115,54.2302174],[-7.2839545,54.2300769],[-7.2854379,54.2299521],[-7.2864165,54.2298454],[-7.2873749,54.2297146],[-7.2883339,54.2295127],[-7.2905414,54.2289334],[-7.2910541,54.2288453],[-7.2956081,54.2282003],[-7.2970103,54.2280422],[-7.3045084,54.227038],[-7.3057486,54.2268916],[-7.307429,54.2266396],[-7.3081808,54.2265787],[-7.3099138,54.2265237],[-7.3109295,54.2265569],[-7.3129987,54.2266701],[-7.3137294,54.2267251],[-7.3162768,54.2269967],[-7.3170353,54.2270525],[-7.3177716,54.227071],[-7.318625,54.2270404],[-7.3190501,54.227006],[-7.3199393,54.2268864],[-7.3207633,54.2266889],[-7.3211126,54.2265746],[-7.3215659,54.2264027],[-7.3222659,54.2261],[-7.3227677,54.2258411],[-7.3237041,54.2253061],[-7.3247708,54.2248973],[-7.3250294,54.2248265],[-7.3257657,54.2246728],[-7.3265597,54.2245529],[-7.3275145,54.224426],[-7.32881,54.2243053],[-7.3300676,54.2242517],[-7.331578,54.2242832],[-7.3349627,54.2244817],[-7.3437098,54.2248595],[-7.3440573,54.2248811],[-7.344356,54.2248997],[-7.3447844,54.2249217],[-7.3447952,54.2250837],[-7.3450114,54.2253618],[-7.3455672,54.2257476],[-7.3458677,54.2258923],[-7.3462305,54.2260301],[-7.3468119,54.2261873],[-7.3474411,54.226327],[-7.3480617,54.2264287],[-7.3504129,54.2270255],[-7.3511349,54.2273597],[-7.3515003,54.2275661],[-7.3518973,54.2278717],[-7.3525732,54.228494],[-7.3528738,54.2287133],[-7.3533466,54.2289971],[-7.3538303,54.2291964],[-7.35444,54.2295455],[-7.3554037,54.2302306],[-7.3559474,54.2305647],[-7.3567951,54.2311386],[-7.3570356,54.2312843],[-7.3572939,54.2314122],[-7.3576534,54.2315572],[-7.3582113,54.2317449],[-7.35917,54.2319939],[-7.3602319,54.2321756],[-7.3607377,54.2322774],[-7.361363,54.2324501],[-7.3619155,54.2326287],[-7.3625339,54.2329033],[-7.363447,54.2333434],[-7.3642468,54.2338117],[-7.3650615,54.2344163],[-7.3656088,54.2349528],[-7.3659288,54.2353054],[-7.366143,54.2356153],[-7.3663465,54.2358533],[-7.3667887,54.2362663],[-7.3674164,54.2367767],[-7.3680373,54.2372401],[-7.3687037,54.2377871],[-7.3693445,54.2382767],[-7.3702857,54.2389265],[-7.3711684,54.2394242],[-7.3717396,54.2396653],[-7.3734751,54.2404846],[-7.3740683,54.2407948],[-7.3759256,54.2419036],[-7.3767077,54.2424292],[-7.3787622,54.2437163],[-7.3795104,54.2442224],[-7.380511,54.2448609],[-7.3806898,54.2449568],[-7.3808919,54.2451062],[-7.3817121,54.2455805],[-7.382377,54.2459398],[-7.3829142,54.2461538],[-7.3841052,54.2465347],[-7.3861331,54.2472909],[-7.3866641,54.2475807],[-7.3876982,54.2480792],[-7.3884135,54.2483819],[-7.3885917,54.2484504],[-7.3885536,54.248472],[-7.3881883,54.2490019],[-7.3880339,54.2493087],[-7.3879268,54.2497872],[-7.3877906,54.2502123],[-7.3876234,54.2506217],[-7.3873825,54.2510296],[-7.386959,54.2515247],[-7.3827212,54.2559165],[-7.3821908,54.2564909],[-7.3816141,54.2572222],[-7.3813904,54.2576703],[-7.3812203,54.2581563],[-7.3811026,54.2586817],[-7.3808515,54.2604801],[-7.3806964,54.2612749],[-7.3805781,54.2621016],[-7.3804775,54.26299],[-7.3804404,54.2635751],[-7.3805021,54.2638467],[-7.3808934,54.2644964],[-7.3811842,54.2648996],[-7.3814643,54.265188],[-7.3820757,54.2659431],[-7.3826795,54.2665987],[-7.3829701,54.2669802],[-7.3837837,54.2679518],[-7.3838224,54.268035],[-7.3854763,54.2679333],[-7.3860014,54.2679179],[-7.3872879,54.2678987],[-7.3906746,54.267924],[-7.3925437,54.2678501],[-7.3946081,54.2676666],[-7.3952563,54.2675479],[-7.396061,54.2673613],[-7.3965203,54.267222],[-7.3969269,54.2670713],[-7.3979551,54.2666429],[-7.3997196,54.265836],[-7.4008364,54.2654173],[-7.4011555,54.2653127],[-7.4015343,54.2651885],[-7.4019437,54.2650926],[-7.4031001,54.2648892],[-7.4035995,54.2648212],[-7.403926,54.2648046],[-7.4050005,54.2648011],[-7.4057946,54.2648259],[-7.4070586,54.2648111],[-7.4085381,54.2646688],[-7.4111968,54.2643457],[-7.412559,54.2640979],[-7.4139207,54.2638096],[-7.4178621,54.2630878],[-7.4182451,54.2630735],[-7.4185831,54.2630968],[-7.4188249,54.2630821],[-7.4192254,54.2629992],[-7.4196065,54.2628952],[-7.4200611,54.2627241],[-7.4205907,54.2625628],[-7.4207824,54.2625184],[-7.4219987,54.2622854],[-7.4229693,54.2621451],[-7.42395,54.2620298],[-7.4241167,54.2619963],[-7.4244164,54.2618931],[-7.4245373,54.2618181],[-7.4254552,54.2611624],[-7.4258733,54.2608368],[-7.4266664,54.2599806],[-7.427095,54.2595749],[-7.4272416,54.2594655],[-7.4274117,54.2593754],[-7.4275611,54.259315],[-7.427386,54.2590165],[-7.4272761,54.2586655],[-7.4272031,54.2582563],[-7.4273357,54.2574384],[-7.4273206,54.2572503],[-7.427221,54.2570624],[-7.427044,54.2569046],[-7.4265851,54.2566077],[-7.4263634,54.2564792],[-7.4262677,54.2564432],[-7.4261619,54.256414],[-7.4250968,54.2563009],[-7.4248723,54.2562506],[-7.4242323,54.2560616],[-7.423713,54.255792],[-7.4232589,54.2555277],[-7.4227501,54.2552679],[-7.4215624,54.254778],[-7.4214747,54.2547266],[-7.4213363,54.2545966],[-7.4213102,54.2545569],[-7.4213082,54.2544506],[-7.4212216,54.2542656],[-7.42115,54.2541745],[-7.4209589,54.2539836],[-7.4204316,54.2535222],[-7.4202919,54.253371],[-7.4202515,54.253295],[-7.4202312,54.2531469],[-7.4202897,54.2527556],[-7.4204121,54.2523618],[-7.42067,54.2519693],[-7.4207302,54.2517808],[-7.4208498,54.2516273],[-7.4208202,54.2514359],[-7.4208505,54.2512263],[-7.4210398,54.2507305],[-7.4213186,54.2496142],[-7.4215838,54.2490053],[-7.4217858,54.2484644],[-7.4218273,54.2482867],[-7.4218161,54.2480768],[-7.4216863,54.2478441],[-7.4213611,54.2474854],[-7.4212242,54.2472507],[-7.4212054,54.2472289],[-7.4216459,54.2472101],[-7.4235527,54.2471771],[-7.4239414,54.2471788],[-7.4241735,54.2472043],[-7.4243419,54.2472069],[-7.4245112,54.2471807],[-7.42527,54.2469564],[-7.426049,54.246839],[-7.4265681,54.2467906],[-7.4268976,54.2467999],[-7.4276574,54.2468906],[-7.4282126,54.246983],[-7.4284276,54.2469797],[-7.4285075,54.2469761],[-7.4283996,54.246484],[-7.4284432,54.2462862],[-7.4285602,54.246142],[-7.4292561,54.245625],[-7.4294282,54.2454074],[-7.4295606,54.2451859],[-7.4297327,54.2446957],[-7.4297638,54.2444688],[-7.4297244,54.2442498],[-7.4296184,54.2439845],[-7.4296286,54.2438894],[-7.4297517,54.2437336],[-7.4298831,54.2436176],[-7.4300349,54.2435274],[-7.430307,54.2434328],[-7.4306065,54.243392],[-7.4309688,54.2433812],[-7.4311856,54.2433917],[-7.4315786,54.2434135],[-7.431698,54.2433891],[-7.4317599,54.243308],[-7.4317831,54.2432721],[-7.4325567,54.2434898],[-7.4327692,54.2435353],[-7.4346263,54.2440682],[-7.4351949,54.2442669],[-7.4355803,54.2444543],[-7.4359102,54.2446622],[-7.4363775,54.2450796],[-7.4365146,54.2452008],[-7.4378807,54.2445888],[-7.4380982,54.244499],[-7.4365768,54.2451703],[-7.4365146,54.2452008],[-7.4376682,54.2461119],[-7.4380969,54.2464244],[-7.4393458,54.2472943],[-7.4408045,54.2482014],[-7.4410407,54.2483789],[-7.4411941,54.2485713],[-7.44125,54.248687],[-7.4413463,54.2493244],[-7.4416695,54.2508355],[-7.4418714,54.2512436],[-7.4424352,54.2522349],[-7.4428215,54.2528427],[-7.4429041,54.2529297],[-7.4435683,54.2534855],[-7.4439101,54.2536871],[-7.4450621,54.2542893],[-7.4451308,54.2543446],[-7.4452555,54.2543829],[-7.4457578,54.2546243],[-7.4462883,54.2549077],[-7.4470743,54.2553767],[-7.4477983,54.2558885],[-7.4489444,54.2566243],[-7.4495425,54.2570607],[-7.4499102,54.2573054],[-7.4508454,54.2578627],[-7.4517295,54.2584521],[-7.4525179,54.2591204],[-7.4529473,54.2595002],[-7.4530272,54.2594801],[-7.4531497,54.2594998],[-7.4532026,54.2595445],[-7.4532086,54.2595902],[-7.4539998,54.2597094],[-7.4552471,54.2599543],[-7.4563242,54.2602082],[-7.4567985,54.2603581],[-7.4583908,54.2609832],[-7.4586417,54.2611157],[-7.4589705,54.2613427],[-7.4595157,54.2618641],[-7.4609818,54.2631806],[-7.4612589,54.2634082],[-7.4622268,54.2643321],[-7.4623408,54.2645072],[-7.4624795,54.2647897],[-7.4626481,54.2652856],[-7.4634464,54.2681581],[-7.4649188,54.2729986],[-7.4651399,54.2734523],[-7.4664481,54.2751608],[-7.4667493,54.2757501],[-7.4669072,54.2765579],[-7.4669242,54.2768865],[-7.4669095,54.2779823],[-7.4670331,54.279549],[-7.4671007,54.2814595],[-7.4670248,54.282312],[-7.466831,54.2832362],[-7.4663214,54.2847839],[-7.4660564,54.2857629],[-7.4654247,54.2876703],[-7.4648872,54.2886586],[-7.4642174,54.2895327],[-7.4641099,54.2897676],[-7.464043,54.2900798],[-7.4640352,54.2904082],[-7.4641542,54.2911277],[-7.4641352,54.2914704],[-7.4640326,54.2917018],[-7.4642353,54.2917595],[-7.4643859,54.2918884],[-7.4644416,54.2920043],[-7.4647501,54.2930686],[-7.4648369,54.2940016],[-7.4648507,54.2944429],[-7.4648972,54.2947344],[-7.4649235,54.2947783],[-7.4651249,54.2949895],[-7.466127,54.2957316],[-7.4663451,54.296014],[-7.4666804,54.2965646],[-7.4669869,54.2971523],[-7.4670223,54.2973599],[-7.4670095,54.2974443],[-7.4669864,54.2974982],[-7.4677203,54.2976699],[-7.4683044,54.2978105],[-7.4680304,54.2980894],[-7.4677149,54.298338],[-7.467227,54.298661],[-7.4665993,54.2991118],[-7.4649948,54.3001591],[-7.464353,54.3006086],[-7.463968,54.301108],[-7.4637325,54.3016032],[-7.4632298,54.3023585],[-7.4628768,54.30281],[-7.4625524,54.303301],[-7.4620638,54.3048094],[-7.4616004,54.3064863],[-7.4614255,54.3067818],[-7.4611082,54.3071686],[-7.460908,54.3073238],[-7.4595749,54.3079925],[-7.458983,54.3083628],[-7.4586943,54.3086167],[-7.4586194,54.3087165],[-7.4586905,54.3089994],[-7.4603028,54.312062],[-7.4604021,54.312411],[-7.4603649,54.3128087],[-7.4602036,54.3135033],[-7.4597461,54.3149362],[-7.4596748,54.3156664],[-7.4598281,54.3161343],[-7.460181,54.3167708],[-7.460452,54.3171098],[-7.4611544,54.3177587],[-7.461497,54.3181622],[-7.4617965,54.3187092],[-7.4621172,54.3200902],[-7.4623205,54.3212756],[-7.4626593,54.3224028],[-7.4630871,54.3233802],[-7.4647238,54.3268136],[-7.4653622,54.3283605],[-7.465437,54.3286058],[-7.4654432,54.3289373],[-7.4654192,54.3293919],[-7.4652189,54.330074],[-7.4652074,54.3301209],[-7.4666478,54.3300764],[-7.4686598,54.3298797],[-7.4700771,54.3297594],[-7.4709808,54.3297404],[-7.4714115,54.3297703],[-7.4716134,54.3298018],[-7.4733509,54.3302427],[-7.4737398,54.3302913],[-7.4740777,54.33028],[-7.476623,54.3300661],[-7.4809424,54.3296616],[-7.4812487,54.329656],[-7.4815435,54.3296834],[-7.4823912,54.3298165],[-7.4826818,54.3298407],[-7.4828528,54.3298324],[-7.4869092,54.3290787],[-7.4877135,54.3290441],[-7.4886692,54.3290476],[-7.4891159,54.3290296],[-7.4903857,54.3288908],[-7.4918054,54.3286839],[-7.4930005,54.3284477],[-7.4935175,54.3283093],[-7.4946618,54.3279684],[-7.496405,54.327407],[-7.4985368,54.3267458],[-7.5023508,54.3255121],[-7.5042801,54.3249362],[-7.5051512,54.3247559],[-7.5057875,54.3246609],[-7.506983,54.324521],[-7.5084086,54.3243027],[-7.5098645,54.3240269],[-7.5107703,54.3238132],[-7.5157478,54.32277],[-7.5171379,54.3225023],[-7.5186698,54.3221698],[-7.5189942,54.3221018],[-7.5211359,54.3216608],[-7.5226927,54.3213195],[-7.5234242,54.3211258],[-7.5256338,54.3204187],[-7.5271096,54.3199715],[-7.5291045,54.3193285],[-7.5310321,54.3187319],[-7.5312586,54.3186554],[-7.5314198,54.3186084],[-7.5320236,54.3185012],[-7.532333,54.3184864],[-7.5329302,54.3185198],[-7.5337397,54.3186107],[-7.5339189,54.3186505],[-7.5340701,54.3186818],[-7.5343298,54.3185397],[-7.535069,54.3180668],[-7.5354116,54.3177799],[-7.5360086,54.3172129],[-7.5363574,54.3169697],[-7.5364025,54.3169326],[-7.5369229,54.3170274],[-7.5370531,54.3170576],[-7.5383344,54.317358],[-7.5416902,54.3180578],[-7.5423617,54.3181834],[-7.5428897,54.3182499],[-7.5436592,54.3183451],[-7.5444111,54.3184034],[-7.5464684,54.3184537],[-7.5466323,54.31852],[-7.5467044,54.3186757],[-7.5467318,54.3187411],[-7.5527545,54.3185075],[-7.5534787,54.3184617],[-7.5551014,54.3183128],[-7.5618204,54.3176449],[-7.5625133,54.3176024],[-7.56364,54.317584],[-7.5647604,54.317627],[-7.5657014,54.3177092],[-7.5670739,54.3178652],[-7.5681219,54.3179131],[-7.5688924,54.3179163],[-7.5751081,54.3178811],[-7.5781094,54.3178153],[-7.5785197,54.3177915],[-7.580149,54.3176477],[-7.5808378,54.3176278],[-7.5816108,54.3176456],[-7.5820086,54.3176816],[-7.582533,54.3177419],[-7.5888509,54.3186731],[-7.5893484,54.318766],[-7.5897865,54.3188668],[-7.5906019,54.3191045],[-7.5910255,54.3192658],[-7.5950865,54.3211266],[-7.5964661,54.3217856],[-7.5968245,54.3219957],[-7.5971357,54.3222032],[-7.5981308,54.3229311],[-7.5983763,54.3230823],[-7.5986378,54.3232174],[-7.5992036,54.3234489],[-7.5994864,54.3235344],[-7.6000029,54.3236584],[-7.6004451,54.3237235],[-7.6009245,54.3237639],[-7.6014353,54.3237804],[-7.6027725,54.3237853],[-7.6036302,54.323789],[-7.6044975,54.3238577],[-7.6051161,54.3239472],[-7.6067941,54.3242821],[-7.608507,54.3247986],[-7.6095188,54.3250863],[-7.610788,54.3254838],[-7.6124556,54.3260909],[-7.6133687,54.3264899],[-7.6141827,54.326876],[-7.6149149,54.3272496],[-7.6148476,54.3273171],[-7.6148253,54.3274284],[-7.6148785,54.3277728],[-7.6148704,54.3279999],[-7.6147787,54.3282847],[-7.6146515,54.3285399],[-7.614563,54.3287792],[-7.61459,54.3290512],[-7.6150339,54.3296968],[-7.6152969,54.3304079],[-7.6153662,54.3307002],[-7.6156843,54.3311891],[-7.615776,54.3315749],[-7.6170713,54.3332673],[-7.6175228,54.3342222],[-7.6177742,54.3346255],[-7.6179132,54.3347559],[-7.6181264,54.3349044],[-7.6183861,54.3350519],[-7.6189305,54.3352417],[-7.62015,54.3355052],[-7.6204471,54.3355539],[-7.6209988,54.3356308],[-7.6213935,54.3356664],[-7.6219426,54.3356895],[-7.6238505,54.3356511],[-7.6241277,54.3356319],[-7.624183,54.3356181],[-7.6246921,54.3366055],[-7.6251034,54.337725],[-7.6252205,54.33824],[-7.6252892,54.3387652],[-7.6254666,54.3393749],[-7.6258549,54.3402667],[-7.6260216,54.3405789],[-7.6262576,54.3408838],[-7.6273929,54.3419919],[-7.6283665,54.3428986],[-7.6285172,54.3430108],[-7.6287528,54.3431317],[-7.6290626,54.3432317],[-7.631325,54.3438033],[-7.6315714,54.3438808],[-7.6314103,54.3439991],[-7.6306505,54.3446812],[-7.6304506,54.3449336],[-7.6301334,54.3454769],[-7.6300114,54.3459003],[-7.6301001,54.3459005],[-7.6301412,54.3459225],[-7.6302076,54.3460432],[-7.630218,54.3462356],[-7.630064,54.3466863],[-7.6300155,54.3470633],[-7.6299781,54.3472773],[-7.6299665,54.3485046],[-7.6300323,54.348868],[-7.6300839,54.3490156],[-7.6301709,54.3491312],[-7.6302769,54.349264],[-7.630839,54.3496019],[-7.6315591,54.3499949],[-7.6320384,54.3502026],[-7.632604,54.3504893],[-7.6336741,54.3512116],[-7.6344065,54.3516583],[-7.6349322,54.3519347],[-7.6347616,54.3520287],[-7.6349322,54.3519347],[-7.6344065,54.3516583],[-7.6336741,54.3512116],[-7.632604,54.3504893],[-7.6320384,54.3502026],[-7.6315591,54.3499949],[-7.630839,54.3496019],[-7.6302769,54.349264],[-7.6301709,54.3491312],[-7.6300839,54.3490156],[-7.6300323,54.348868],[-7.6299665,54.3485046],[-7.6299829,54.3475124],[-7.6299781,54.3472773],[-7.630064,54.3466863],[-7.630218,54.3462356],[-7.6302076,54.3460432],[-7.6301412,54.3459225],[-7.6301001,54.3459005],[-7.6300114,54.3459003],[-7.6301334,54.3454769],[-7.6304506,54.3449336],[-7.6306505,54.3446812],[-7.6314103,54.3439991],[-7.6315714,54.3438808],[-7.631325,54.3438033],[-7.6290626,54.3432317],[-7.6287528,54.3431317],[-7.6286096,54.3430661],[-7.6285172,54.3430108],[-7.6283665,54.3428986],[-7.6272743,54.3418783],[-7.6262576,54.3408838],[-7.6260216,54.3405789],[-7.6258549,54.3402667],[-7.6254666,54.3393749],[-7.6252892,54.3387652],[-7.6252205,54.33824],[-7.6251034,54.337725],[-7.6246921,54.3366055],[-7.624435,54.3360922],[-7.624183,54.3356181],[-7.6238505,54.3356511],[-7.6219426,54.3356895],[-7.6213935,54.3356664],[-7.6209988,54.3356308],[-7.62015,54.3355052],[-7.6189305,54.3352417],[-7.6183861,54.3350519],[-7.6181264,54.3349044],[-7.6179132,54.3347559],[-7.6177742,54.3346255],[-7.6175228,54.3342222],[-7.6170713,54.3332673],[-7.615776,54.3315749],[-7.6156843,54.3311891],[-7.6153662,54.3307002],[-7.6152969,54.3304079],[-7.6150339,54.3296968],[-7.61459,54.3290512],[-7.614563,54.3287792],[-7.6146515,54.3285399],[-7.6147787,54.3282847],[-7.6148704,54.3279999],[-7.6148785,54.3277728],[-7.6148253,54.3274284],[-7.6148476,54.3273171],[-7.6148812,54.3272725],[-7.6149149,54.3272496],[-7.6141827,54.326876],[-7.6133687,54.3264899],[-7.6124556,54.3260909],[-7.610788,54.3254838],[-7.6095188,54.3250863],[-7.608507,54.3247986],[-7.6067941,54.3242821],[-7.6051161,54.3239472],[-7.6044975,54.3238577],[-7.6036302,54.323789],[-7.6027725,54.3237853],[-7.6014353,54.3237804],[-7.6009245,54.3237639],[-7.6004451,54.3237235],[-7.6000029,54.3236584],[-7.5994864,54.3235344],[-7.5992036,54.3234489],[-7.5986378,54.3232174],[-7.5983763,54.3230823],[-7.5981308,54.3229311],[-7.5971357,54.3222032],[-7.5968245,54.3219957],[-7.5964661,54.3217856],[-7.5950865,54.3211266],[-7.5910255,54.3192658],[-7.5906019,54.3191045],[-7.5897865,54.3188668],[-7.5893484,54.318766],[-7.5888509,54.3186731],[-7.5877325,54.3185039],[-7.582533,54.3177419],[-7.5816108,54.3176456],[-7.5808378,54.3176278],[-7.580149,54.3176477],[-7.5785197,54.3177915],[-7.5781094,54.3178153],[-7.5751081,54.3178811],[-7.5739449,54.3178941],[-7.5739354,54.3178326],[-7.5737871,54.3176978],[-7.5733209,54.3174119],[-7.5728161,54.3169803],[-7.5718677,54.3162293],[-7.5713105,54.3155483],[-7.5707918,54.3147934],[-7.5704777,54.3145017],[-7.570021,54.3141208],[-7.5694466,54.3137689],[-7.5687161,54.31325],[-7.5683614,54.3130388],[-7.5671838,54.3124729],[-7.5664757,54.3121588],[-7.5660124,54.3119117],[-7.5654646,54.3115054],[-7.5650683,54.3112881],[-7.5648099,54.3112054],[-7.5645452,54.3111711],[-7.5640986,54.3111525],[-7.5637642,54.311115],[-7.5628143,54.3109193],[-7.5622521,54.310782],[-7.5617673,54.3105177],[-7.5615329,54.3104447],[-7.5612157,54.3103914],[-7.5609449,54.3103254],[-7.5607421,54.3102357],[-7.5605696,54.3101233],[-7.5602235,54.3096646],[-7.5600024,54.309526],[-7.5597398,54.3093951],[-7.559332,54.3092378],[-7.5589599,54.3090391],[-7.5576588,54.3082359],[-7.5572602,54.3079351],[-7.5571822,54.3078567],[-7.5571403,54.30778],[-7.5571326,54.3075065],[-7.5571623,54.3074052],[-7.557277,54.3072001],[-7.557518,54.3069704],[-7.5578457,54.3068026],[-7.5581349,54.306624],[-7.5583622,54.3065188],[-7.5593272,54.3059551],[-7.5603114,54.3051713],[-7.5604617,54.3048709],[-7.5604187,54.3045827],[-7.5602041,54.304345],[-7.5599039,54.3041947],[-7.5596034,54.3040696],[-7.5589467,54.3039358],[-7.5585441,54.3037978],[-7.5577793,54.3034215],[-7.557087,54.3031429],[-7.5566636,54.3029937],[-7.5564099,54.3029214],[-7.5557988,54.3027907],[-7.5552832,54.3027126],[-7.5547825,54.30268],[-7.5544892,54.3026336],[-7.5542861,54.3025692],[-7.5540324,54.3024332],[-7.5538939,54.3023107],[-7.5535854,54.3019085],[-7.5531861,54.3012916],[-7.553106,54.3011515],[-7.5530682,54.3010241],[-7.5530644,54.3008852],[-7.5531877,54.3006842],[-7.5533802,54.3005212],[-7.5536966,54.3003145],[-7.5544037,54.2997968],[-7.5546212,54.2996164],[-7.5548362,54.2993472],[-7.5548665,54.299268],[-7.554831,54.2990779],[-7.5546272,54.2988696],[-7.5544581,54.2987813],[-7.5541718,54.298693],[-7.5528914,54.2984347],[-7.5524697,54.2984153],[-7.5515425,54.2984745],[-7.550919,54.2985617],[-7.550668,54.2986593],[-7.5503668,54.2987301],[-7.5498439,54.298818],[-7.5492061,54.2988517],[-7.5489444,54.2988253],[-7.54866,54.2987545],[-7.5483508,54.2985926],[-7.5482227,54.2984623],[-7.5479181,54.2982246],[-7.5478123,54.2978776],[-7.5477332,54.2977589],[-7.5475666,54.2976369],[-7.5473632,54.2975592],[-7.5466255,54.2973793],[-7.5462727,54.2973327],[-7.5459305,54.2973083],[-7.5439973,54.2972603],[-7.5437506,54.2972286],[-7.5433707,54.2971439],[-7.5430862,54.297025],[-7.5426791,54.2968175],[-7.542263,54.2965273],[-7.542146,54.2963996],[-7.5420519,54.2962302],[-7.5420275,54.2959408],[-7.5420961,54.2957437],[-7.5423157,54.2953641],[-7.5423717,54.2951548],[-7.5423237,54.2950018],[-7.5422093,54.2948906],[-7.5419094,54.2947779],[-7.5411409,54.2946789],[-7.540673,54.2945725],[-7.5404847,54.2944769],[-7.5400991,54.2942208],[-7.5399265,54.2940424],[-7.5398557,54.293861],[-7.5398691,54.2937544],[-7.5400606,54.2933674],[-7.540204,54.2931928],[-7.5402934,54.2930433],[-7.5401787,54.2927598],[-7.5398385,54.2922006],[-7.5394744,54.2918024],[-7.5393287,54.291726],[-7.5387399,54.2915353],[-7.5383998,54.2914835],[-7.5364129,54.2913434],[-7.5361466,54.2913432],[-7.5358992,54.291381],[-7.5354712,54.2914952],[-7.5350931,54.2916299],[-7.5349182,54.2916634],[-7.5345598,54.2916737],[-7.5339129,54.2916368],[-7.5309608,54.2913874],[-7.5292222,54.291287],[-7.5266816,54.2910711],[-7.525008,54.2907829],[-7.5236991,54.290451],[-7.5229909,54.2902068],[-7.5225401,54.2899438],[-7.5216284,54.2892675],[-7.5212851,54.289161],[-7.5203312,54.288962],[-7.520123,54.2889387],[-7.519466,54.2889268],[-7.5192077,54.2888616],[-7.5189808,54.2887292],[-7.5188402,54.2885673],[-7.5187787,54.2884479],[-7.5187405,54.2882926],[-7.5187458,54.2880601],[-7.5188294,54.2878977],[-7.5189179,54.2878064],[-7.5195111,54.2873307],[-7.5196758,54.2871163],[-7.519724,54.2869988],[-7.519724,54.2867732],[-7.5196001,54.2865257],[-7.5194953,54.2864314],[-7.5190503,54.2861349],[-7.5185988,54.2859274],[-7.518395,54.2858676],[-7.5181812,54.2858279],[-7.5177397,54.2857739],[-7.517463,54.2857231],[-7.5172188,54.2856415],[-7.5170478,54.2855426],[-7.5169066,54.2853883],[-7.5168624,54.2852449],[-7.5168963,54.2845559],[-7.5168583,54.2843639],[-7.5167285,54.2840396],[-7.5165432,54.2837848],[-7.5164616,54.2837155],[-7.5161807,54.2835674],[-7.5157476,54.2834372],[-7.5150128,54.2832772],[-7.5147377,54.2831884],[-7.5140601,54.2828673],[-7.5135242,54.2825793],[-7.5132871,54.282415],[-7.5130995,54.2822379],[-7.5127726,54.2818413],[-7.5125148,54.2814362],[-7.5114049,54.2792349],[-7.5112967,54.2790565],[-7.5110681,54.2788432],[-7.510899,54.2787467],[-7.5101131,54.2783837],[-7.5079001,54.2775468],[-7.5077718,54.2774723],[-7.5072093,54.2772404],[-7.506229,54.2767475],[-7.5047498,54.2759349],[-7.5029518,54.2749933],[-7.5011972,54.2740245],[-7.500069,54.2734674],[-7.4991192,54.273026],[-7.4965017,54.272096],[-7.4944569,54.2714047],[-7.4942289,54.2713457],[-7.4939808,54.2713271],[-7.4936654,54.2713557],[-7.4930619,54.2714703],[-7.4919529,54.2718011],[-7.4918421,54.2718166],[-7.4917191,54.271794],[-7.4915504,54.2717294],[-7.4907597,54.271276],[-7.4902616,54.2709638],[-7.4897291,54.270706],[-7.4892329,54.2705157],[-7.4886268,54.2703438],[-7.485432,54.2695978],[-7.4843095,54.2692387],[-7.4831879,54.2687445],[-7.4823433,54.2684359],[-7.4815107,54.268082],[-7.4812947,54.2679603],[-7.4801372,54.2670704],[-7.4791303,54.2661893],[-7.4774064,54.2648087],[-7.4766954,54.2643665],[-7.4764274,54.2642492],[-7.4761839,54.2641773],[-7.4731769,54.2636652],[-7.468499,54.2626125],[-7.4658382,54.2619358],[-7.4638832,54.2613872],[-7.4625633,54.2609745],[-7.4610237,54.2605377],[-7.4604364,54.2603792],[-7.4598606,54.2602562],[-7.4589968,54.2601186],[-7.4576417,54.2600133],[-7.4566895,54.2599852],[-7.456598,54.2599984],[-7.4564874,54.2600374],[-7.4564088,54.2600849],[-7.4563242,54.2602082],[-7.4552471,54.2599543],[-7.4539998,54.2597094],[-7.4532086,54.2595902],[-7.4531829,54.2596272],[-7.4531281,54.2596567],[-7.4530609,54.2596686],[-7.4529851,54.2596611],[-7.4529232,54.2596343],[-7.4528878,54.2595864],[-7.4528996,54.2595367],[-7.4529473,54.2595002],[-7.4517295,54.2584521],[-7.4508454,54.2578627],[-7.4499102,54.2573054],[-7.4495425,54.2570607],[-7.4489444,54.2566243],[-7.4477983,54.2558885],[-7.4470743,54.2553767],[-7.4462883,54.2549077],[-7.4457578,54.2546243],[-7.4452555,54.2543829],[-7.4451308,54.2543446],[-7.4450621,54.2542893],[-7.4439101,54.2536871],[-7.4435683,54.2534855],[-7.4429041,54.2529297],[-7.4428215,54.2528427],[-7.4427811,54.2528492],[-7.4426915,54.252833],[-7.4424742,54.2527047],[-7.4419882,54.2525849],[-7.4415685,54.2524942],[-7.4406829,54.2523463],[-7.4403032,54.2522808],[-7.4402308,54.2522689],[-7.4389698,54.2520559],[-7.4380668,54.2519321],[-7.437817,54.2518417],[-7.4375922,54.2517099],[-7.4368087,54.251166],[-7.4363963,54.2507947],[-7.436246,54.2506994],[-7.435953,54.2504613],[-7.4345559,54.2495293],[-7.4341617,54.2492968],[-7.4334804,54.2490467],[-7.4331855,54.2489641],[-7.4327562,54.2488853],[-7.4318956,54.24885],[-7.4311549,54.2488473],[-7.4307455,54.2488162],[-7.4299356,54.2486371],[-7.4298007,54.2485845],[-7.4295165,54.2483349],[-7.4285075,54.2469761],[-7.4282126,54.246983],[-7.4276574,54.2468906],[-7.4268976,54.2467999],[-7.4265681,54.2467906],[-7.426049,54.246839],[-7.42527,54.2469564],[-7.4245112,54.2471807],[-7.4243419,54.2472069],[-7.4241735,54.2472043],[-7.4239414,54.2471788],[-7.4235527,54.2471771],[-7.4209731,54.2472289],[-7.4201176,54.2471237],[-7.4192459,54.247095],[-7.4190387,54.2470693],[-7.4188543,54.2470352],[-7.4179815,54.2468027],[-7.4175097,54.2466966],[-7.4172128,54.2466653],[-7.4168984,54.2466511],[-7.4164152,54.2466848],[-7.4152887,54.2469476],[-7.4149506,54.2470657],[-7.4143015,54.2473768],[-7.4137769,54.2477009],[-7.4135655,54.2478508],[-7.4126107,54.248326],[-7.4120804,54.248556],[-7.411832,54.2486438],[-7.4112395,54.2487911],[-7.4104486,54.2489021],[-7.4096268,54.2489535],[-7.4087357,54.2489807],[-7.4083041,54.2490291],[-7.4078895,54.2491089],[-7.4072957,54.2493026],[-7.4071348,54.2493776],[-7.4067497,54.2496215],[-7.4064353,54.2497455],[-7.406066,54.2498444],[-7.4051928,54.2499303],[-7.4043166,54.2499171],[-7.4036656,54.2499333],[-7.4027745,54.2500139],[-7.4017264,54.2500856],[-7.4009871,54.250075],[-7.4000841,54.2499513],[-7.3992863,54.2498111],[-7.3986284,54.2497142],[-7.3983988,54.2497071],[-7.3981777,54.2497274],[-7.3980031,54.2497697],[-7.3978219,54.2498606],[-7.3967598,54.250735],[-7.3965629,54.2508715],[-7.396342,54.2509816],[-7.3957888,54.2511105],[-7.3953973,54.2511695],[-7.3951775,54.2511695],[-7.3947536,54.2511265],[-7.3943579,54.251051],[-7.393997,54.250935],[-7.3932729,54.2506169],[-7.3913049,54.2496094],[-7.3901202,54.2490746],[-7.3893303,54.2487589],[-7.3889181,54.2485773],[-7.3885917,54.2484504],[-7.3885536,54.248472],[-7.3881883,54.2490019],[-7.3880339,54.2493087],[-7.3879268,54.2497872],[-7.3877906,54.2502123],[-7.3876234,54.2506217],[-7.3873825,54.2510296],[-7.386959,54.2515247],[-7.3832039,54.2554227],[-7.3827353,54.2559021],[-7.3821908,54.2564909],[-7.3816141,54.2572222],[-7.3813904,54.2576703],[-7.3812203,54.2581563],[-7.3811026,54.2586817],[-7.3808515,54.2604801],[-7.3806964,54.2612749],[-7.3804775,54.26299],[-7.3804404,54.2635751],[-7.3805021,54.2638467],[-7.3808934,54.2644964],[-7.3811842,54.2648996],[-7.3814643,54.265188],[-7.3820757,54.2659431],[-7.3826795,54.2665987],[-7.3829701,54.2669802],[-7.3837837,54.2679518],[-7.3838224,54.268035],[-7.3854763,54.2679333],[-7.3860014,54.2679179],[-7.3872879,54.2678987],[-7.3888393,54.2679117],[-7.3889622,54.2679128],[-7.3889868,54.2679572],[-7.3900349,54.2684191],[-7.391034,54.2689155],[-7.391293,54.2690667],[-7.3921639,54.2694532],[-7.3922947,54.2695434],[-7.3931133,54.2699062],[-7.3937058,54.2702253],[-7.3946671,54.2706386],[-7.3948789,54.2707668],[-7.395097,54.2708616],[-7.3957925,54.2712147],[-7.396356,54.271564],[-7.3971074,54.2721293],[-7.3978921,54.2728043],[-7.3989542,54.2736373],[-7.3991339,54.2738116],[-7.3999505,54.2744446],[-7.4007194,54.2750905],[-7.4013399,54.2755532],[-7.4015435,54.275616],[-7.4022366,54.2760451],[-7.402678,54.2764179],[-7.4029013,54.2766874],[-7.4030867,54.2770104],[-7.4033847,54.2774611],[-7.4036693,54.2778042],[-7.4039576,54.2782151],[-7.4039858,54.2783535],[-7.4042558,54.2790505],[-7.4045462,54.2794048],[-7.4048573,54.2795391],[-7.4053596,54.2796691],[-7.405574,54.2797026],[-7.4068008,54.2798246],[-7.4073415,54.2798168],[-7.4081976,54.2798857],[-7.4102221,54.2804171],[-7.4122412,54.2808662],[-7.4131254,54.2811126],[-7.4136272,54.2811989],[-7.41495,54.281552],[-7.4154582,54.2817625],[-7.4158255,54.281872],[-7.4165806,54.2822619],[-7.4172998,54.282749],[-7.4175115,54.2828633],[-7.4181448,54.2832975],[-7.4188387,54.2836894],[-7.4192405,54.2838545],[-7.4195655,54.283936],[-7.4208831,54.2840146],[-7.4215187,54.2841109],[-7.4225303,54.2842266],[-7.4235918,54.2843142],[-7.4246146,54.2843183],[-7.4258502,54.2842892],[-7.4262695,54.2842764],[-7.4286308,54.2842421],[-7.4326278,54.2842762],[-7.4355194,54.2843211],[-7.4364874,54.2844172],[-7.4372642,54.2845727],[-7.4383007,54.2848741],[-7.4431577,54.2871368],[-7.4436616,54.2873981],[-7.4442006,54.2877103],[-7.4445801,54.2878672],[-7.4460108,54.288205],[-7.4468322,54.2883157],[-7.4478453,54.2883557],[-7.4489016,54.288233],[-7.4500862,54.2880516],[-7.4516771,54.2878975],[-7.4524224,54.287886],[-7.4529834,54.287935],[-7.4559903,54.2880013],[-7.4563257,54.2879839],[-7.4566021,54.2879985],[-7.4572356,54.2880948],[-7.4582256,54.2884161],[-7.4611027,54.2896834],[-7.4627952,54.2903603],[-7.4632937,54.290582],[-7.4636815,54.2907803],[-7.4638063,54.2908006],[-7.464022,54.2907962],[-7.4640978,54.2907967],[-7.4641542,54.2911277],[-7.4641352,54.2914704],[-7.4640326,54.2917018],[-7.4642353,54.2917595],[-7.4643859,54.2918884],[-7.4644416,54.2920043],[-7.4647501,54.2930686],[-7.4648369,54.2940016],[-7.4648507,54.2944429],[-7.4648972,54.2947344],[-7.4649235,54.2947783],[-7.4651249,54.2949895],[-7.466127,54.2957316],[-7.4663451,54.296014],[-7.4666804,54.2965646],[-7.4669869,54.2971523],[-7.4670223,54.2973599],[-7.4670095,54.2974443],[-7.4669864,54.2974982],[-7.4695276,54.2981192],[-7.4709739,54.298522],[-7.4721556,54.2988773],[-7.473522,54.2993094],[-7.4748574,54.2997669],[-7.476443,54.3003769],[-7.477566,54.3008278],[-7.476443,54.3003769],[-7.4748574,54.2997669],[-7.473522,54.2993094],[-7.4709739,54.298522],[-7.4695276,54.2981192],[-7.4677203,54.2976699],[-7.4669864,54.2974982],[-7.4670223,54.2973599],[-7.4669869,54.2971523],[-7.4666804,54.2965646],[-7.4663451,54.296014],[-7.466127,54.2957316],[-7.4654342,54.2952233],[-7.4651249,54.2949895],[-7.4649235,54.2947783],[-7.4648972,54.2947344],[-7.4648507,54.2944429],[-7.4648369,54.2940016],[-7.4647501,54.2930686],[-7.4644416,54.2920043],[-7.4643859,54.2918884],[-7.4642353,54.2917595],[-7.4641011,54.2917182],[-7.4640326,54.2917018],[-7.4641352,54.2914704],[-7.4641542,54.2911277],[-7.4640352,54.2904082],[-7.464043,54.2900798],[-7.4641099,54.2897676],[-7.4642174,54.2895327],[-7.4648872,54.2886586],[-7.4654247,54.2876703],[-7.4660564,54.2857629],[-7.4663214,54.2847839],[-7.466831,54.2832362],[-7.4670248,54.282312],[-7.4671007,54.2814595],[-7.4670331,54.279549],[-7.4669095,54.2779823],[-7.4669242,54.2768865],[-7.4669072,54.2765579],[-7.4667493,54.2757501],[-7.4664481,54.2751608],[-7.4651399,54.2734523],[-7.4649188,54.2729986],[-7.4634464,54.2681581],[-7.4626481,54.2652856],[-7.4624795,54.2647897],[-7.4623408,54.2645072],[-7.4622268,54.2643321],[-7.4612589,54.2634082],[-7.4609818,54.2631806],[-7.4595157,54.2618641],[-7.4589705,54.2613427],[-7.4586417,54.2611157],[-7.4583908,54.2609832],[-7.4567985,54.2603581],[-7.4563242,54.2602082],[-7.4552471,54.2599543],[-7.4539998,54.2597094],[-7.4532086,54.2595902],[-7.4531829,54.2596272],[-7.4531281,54.2596567],[-7.4530609,54.2596686],[-7.4529851,54.2596611],[-7.4529232,54.2596343],[-7.4528878,54.2595864],[-7.4528996,54.2595367],[-7.4529473,54.2595002],[-7.4517295,54.2584521],[-7.4508454,54.2578627],[-7.4499102,54.2573054],[-7.4495425,54.2570607],[-7.4489444,54.2566243],[-7.4477983,54.2558885],[-7.4470743,54.2553767],[-7.4462883,54.2549077],[-7.4457578,54.2546243],[-7.4452555,54.2543829],[-7.4451308,54.2543446],[-7.4450621,54.2542893],[-7.4439101,54.2536871],[-7.4435683,54.2534855],[-7.4429041,54.2529297],[-7.4428215,54.2528427],[-7.4424352,54.2522349],[-7.4418714,54.2512436],[-7.4416695,54.2508355],[-7.4413463,54.2493244],[-7.4412713,54.2488522],[-7.44125,54.248687],[-7.4411941,54.2485713],[-7.4410407,54.2483789],[-7.4408045,54.2482014],[-7.4393458,54.2472943],[-7.4380969,54.2464244],[-7.4376682,54.2461119],[-7.4365146,54.2452008],[-7.4359102,54.2446622],[-7.4355803,54.2444543],[-7.4351949,54.2442669],[-7.435295,54.2441395],[-7.4352758,54.2440492],[-7.4349098,54.2435532],[-7.434844,54.2434036],[-7.4350169,54.2431186],[-7.4355705,54.242769],[-7.4358195,54.2425911],[-7.436041,54.2422554],[-7.4362069,54.2418451],[-7.4363002,54.2414834],[-7.4363062,54.2408326],[-7.436111,54.2404746],[-7.4358817,54.2402967],[-7.4352003,54.2398925],[-7.4347529,54.2395332],[-7.4345292,54.2393082],[-7.4343078,54.2389342],[-7.4334197,54.2371319],[-7.4333807,54.2368135],[-7.4332112,54.2363404],[-7.4329968,54.2355196],[-7.4328704,54.2351645],[-7.4325662,54.2350098],[-7.4320409,54.2348792],[-7.4316686,54.2347373],[-7.4314398,54.2345588],[-7.4311461,54.2341893],[-7.4306726,54.2332516],[-7.4304826,54.2327383],[-7.4304301,54.2323372],[-7.4304851,54.2314301],[-7.4305283,54.2311444],[-7.4305132,54.2309624],[-7.4305294,54.2305098],[-7.4303919,54.2294801],[-7.43015,54.2284288],[-7.43006,54.2277715],[-7.4300511,54.2274819],[-7.4299091,54.2272233],[-7.4296908,54.2269937],[-7.4289219,54.2262995],[-7.4286749,54.2261087],[-7.4282583,54.2259601],[-7.4278844,54.225842],[-7.4282316,54.2253307],[-7.429694,54.2230095],[-7.4301667,54.2223607],[-7.4304161,54.2220999],[-7.430692,54.2219502],[-7.4308364,54.2218159],[-7.4314534,54.2209062],[-7.4322214,54.2198584],[-7.4329961,54.2188988],[-7.433239,54.2186723],[-7.4334163,54.218419],[-7.4334688,54.2182731],[-7.4333573,54.2181044],[-7.4332325,54.2180314],[-7.4330158,54.2179854],[-7.4328583,54.2179124],[-7.4327074,54.2177857],[-7.4322544,54.2172407],[-7.4320245,54.2169296],[-7.4318277,54.2165843],[-7.4316896,54.2162887],[-7.4317356,54.21597],[-7.4319808,54.2150117],[-7.431978,54.2145305],[-7.4319115,54.2141468],[-7.4319336,54.2136821],[-7.4318643,54.2135476],[-7.4316095,54.2132868],[-7.4315736,54.2132107],[-7.4315985,54.2131265],[-7.431676,54.2130713],[-7.4323268,54.2127636],[-7.4327037,54.2126373],[-7.4337359,54.212482],[-7.4342573,54.2124868],[-7.4344234,54.2124559],[-7.4345646,54.2123913],[-7.4347226,54.212273],[-7.4348997,54.21207],[-7.4352233,54.2114367],[-7.4357305,54.2105804],[-7.4358128,54.2104024],[-7.4357688,54.2102245],[-7.4356509,54.2099998],[-7.435555,54.2096567],[-7.4356921,54.2094403],[-7.4364763,54.2088519],[-7.4368108,54.2086369],[-7.4372632,54.208454],[-7.4376361,54.2083259],[-7.4380612,54.2080932],[-7.4385464,54.2077943],[-7.4390253,54.2074461],[-7.4387533,54.2073096],[-7.4380953,54.2070619],[-7.4379474,54.2070269],[-7.4377065,54.2070269],[-7.4374903,54.2070583],[-7.4372954,54.2070511],[-7.4372008,54.2070269],[-7.4370548,54.2069427],[-7.4370095,54.2066229],[-7.4366415,54.2061814],[-7.4361292,54.2056645],[-7.4359475,54.205409],[-7.4357953,54.2050409],[-7.435633,54.2047507],[-7.4355349,54.2043974],[-7.4353384,54.2039116],[-7.4350189,54.2036732],[-7.434326,54.2032535],[-7.4340293,54.2030257],[-7.4336191,54.2027778],[-7.4332336,54.202477],[-7.4330486,54.2022943],[-7.4320698,54.2020702],[-7.4313919,54.2019151],[-7.4312888,54.2018916],[-7.4312473,54.2019137],[-7.4310889,54.2021164],[-7.4306384,54.2028894],[-7.4304156,54.2031671],[-7.4302312,54.203466],[-7.429707,54.2042146],[-7.4295031,54.2044268],[-7.4293401,54.204658],[-7.4289635,54.2050936],[-7.4282793,54.2055688],[-7.4280273,54.2057727],[-7.4279453,54.2058985],[-7.4278464,54.2059981],[-7.4277371,54.2062021],[-7.4276347,54.2063388],[-7.4274357,54.2068769],[-7.4274065,54.2070218],[-7.4274229,54.207196],[-7.4273372,54.2075583],[-7.4272914,54.2076561],[-7.4272023,54.2077531],[-7.4269336,54.2078392],[-7.4262425,54.2082676],[-7.4255958,54.2085645],[-7.4252764,54.2087273],[-7.4251869,54.2088048],[-7.4246358,54.2099071],[-7.4245233,54.2100384],[-7.4244713,54.2101371],[-7.424467,54.2102662],[-7.4243335,54.2104066],[-7.4242679,54.2104409],[-7.4241586,54.2104603],[-7.422645,54.2103472],[-7.4219784,54.2103573],[-7.4217664,54.210413],[-7.4217232,54.2104459],[-7.4216494,54.2105884],[-7.4212599,54.2108686],[-7.4207451,54.2111496],[-7.4202126,54.2113722],[-7.4197668,54.2115317],[-7.4195189,54.2115656],[-7.4192345,54.2115646],[-7.4190138,54.2115317],[-7.418542,54.211433],[-7.4184075,54.2114251],[-7.4176982,54.2113218],[-7.417421,54.2112508],[-7.4169108,54.2112065],[-7.4167536,54.211223],[-7.4166553,54.2112659],[-7.4169462,54.2120689],[-7.4173579,54.2129914],[-7.4189007,54.2162077],[-7.4192673,54.2169175],[-7.419475,54.2172835],[-7.4197378,54.2176072],[-7.4199661,54.2178378],[-7.4206956,54.2184263],[-7.4215295,54.2192013],[-7.4182404,54.2206454],[-7.4166203,54.2213951],[-7.4156211,54.2218097],[-7.4138982,54.2225865],[-7.41268,54.2231132],[-7.4126279,54.2231313],[-7.4130473,54.2237443],[-7.4144408,54.2255995],[-7.4152212,54.2265284],[-7.4158748,54.2270695],[-7.416412,54.2274556],[-7.4171439,54.2278198],[-7.4174724,54.2280289],[-7.4176661,54.2282519],[-7.4178371,54.2286954],[-7.4178206,54.2290776],[-7.417834,54.2294673],[-7.4178686,54.2296794],[-7.4179789,54.230128],[-7.4182207,54.2305131],[-7.418669,54.2309013],[-7.4192269,54.2313048],[-7.4216528,54.2332777],[-7.422151,54.2337338],[-7.4233075,54.2357893],[-7.4245536,54.2378639],[-7.4254708,54.2392946],[-7.4263209,54.2406964],[-7.4268937,54.2413468],[-7.4275281,54.2419606],[-7.4281955,54.2422497],[-7.4304761,54.2429158],[-7.4317375,54.2432598],[-7.4317831,54.2432721],[-7.431698,54.2433891],[-7.4315786,54.2434135],[-7.4309688,54.2433812],[-7.4306065,54.243392],[-7.430307,54.2434328],[-7.4300349,54.2435274],[-7.4298831,54.2436176],[-7.4297517,54.2437336],[-7.4296286,54.2438894],[-7.4296184,54.2439845],[-7.4297244,54.2442498],[-7.4297638,54.2444688],[-7.4297327,54.2446957],[-7.4295606,54.2451859],[-7.4294282,54.2454074],[-7.4292561,54.245625],[-7.4285602,54.246142],[-7.4284432,54.2462862],[-7.4283996,54.246484],[-7.4284274,54.2466796],[-7.4285075,54.2469761],[-7.4295165,54.2483349],[-7.4298007,54.2485845],[-7.4299356,54.2486371],[-7.4307455,54.2488162],[-7.4311549,54.2488473],[-7.4318956,54.24885],[-7.4327562,54.2488853],[-7.4331855,54.2489641],[-7.4334804,54.2490467],[-7.4341617,54.2492968],[-7.4345559,54.2495293],[-7.435953,54.2504613],[-7.436246,54.2506994],[-7.4363963,54.2507947],[-7.4368087,54.251166],[-7.4375922,54.2517099],[-7.437817,54.2518417],[-7.4380668,54.2519321],[-7.4389698,54.2520559],[-7.4398221,54.252202],[-7.4401799,54.2522606],[-7.4403032,54.2522808],[-7.4415685,54.2524942],[-7.4419882,54.2525849],[-7.4424742,54.2527047],[-7.4426915,54.252833],[-7.4427811,54.2528492],[-7.4428215,54.2528427],[-7.4435683,54.2534855],[-7.4444998,54.2540056],[-7.4450621,54.2542893],[-7.4451308,54.2543446],[-7.4452555,54.2543829],[-7.4457578,54.2546243],[-7.4462883,54.2549077],[-7.4470743,54.2553767],[-7.4477983,54.2558885],[-7.4489444,54.2566243],[-7.4495425,54.2570607],[-7.4499102,54.2573054],[-7.4508454,54.2578627],[-7.4517295,54.2584521],[-7.4525179,54.2591204],[-7.4529473,54.2595002],[-7.4530272,54.2594801],[-7.4531497,54.2594998],[-7.4532026,54.2595445],[-7.4532086,54.2595902],[-7.4539998,54.2597094],[-7.4552471,54.2599543],[-7.4563242,54.2602082],[-7.4567985,54.2603581],[-7.4583908,54.2609832],[-7.4586417,54.2611157],[-7.4589705,54.2613427],[-7.4595157,54.2618641],[-7.4609818,54.2631806],[-7.4612589,54.2634082],[-7.4622268,54.2643321],[-7.4623408,54.2645072],[-7.4624795,54.2647897],[-7.4626481,54.2652856],[-7.4634464,54.2681581],[-7.4649188,54.2729986],[-7.4651399,54.2734523],[-7.4664481,54.2751608],[-7.4667493,54.2757501],[-7.4669072,54.2765579],[-7.4669242,54.2768865],[-7.4669095,54.2779823],[-7.4670331,54.279549],[-7.4671007,54.2814595],[-7.4670248,54.282312],[-7.466831,54.2832362],[-7.4663214,54.2847839],[-7.4660564,54.2857629],[-7.4654247,54.2876703],[-7.4648872,54.2886586],[-7.4642174,54.2895327],[-7.4641099,54.2897676],[-7.464043,54.2900798],[-7.4640352,54.2904082],[-7.4641542,54.2911277],[-7.4641352,54.2914704],[-7.4640326,54.2917018],[-7.4642353,54.2917595],[-7.4643859,54.2918884],[-7.4644416,54.2920043],[-7.4647501,54.2930686],[-7.4648369,54.2940016],[-7.4648507,54.2944429],[-7.4648972,54.2947344],[-7.4649235,54.2947783],[-7.4651249,54.2949895],[-7.466127,54.2957316],[-7.4663451,54.296014],[-7.4666804,54.2965646],[-7.4669869,54.2971523],[-7.4670223,54.2973599],[-7.4670095,54.2974443],[-7.4669864,54.2974982],[-7.4695276,54.2981192],[-7.4709739,54.298522],[-7.4721556,54.2988773],[-7.473522,54.2993094],[-7.4748574,54.2997669],[-7.476443,54.3003769],[-7.477566,54.3008278],[-7.4783876,54.3012097],[-7.4791116,54.3015805],[-7.4801551,54.3021579],[-7.4810054,54.3025791],[-7.482373,54.3031571],[-7.4826075,54.3032427],[-7.4827354,54.3030803],[-7.4827319,54.3029941],[-7.4825581,54.3026547],[-7.4822139,54.3022919],[-7.4807266,54.3012564],[-7.4800255,54.3002752],[-7.4794549,54.3000801],[-7.479009,54.2998954],[-7.4787156,54.2997104],[-7.4784867,54.2995357],[-7.4782872,54.2992584],[-7.4782932,54.2989879],[-7.4787626,54.2985358],[-7.4789326,54.298457],[-7.4790912,54.298303],[-7.4792437,54.2980873],[-7.4791791,54.297779],[-7.4790912,54.297571],[-7.4791947,54.297549],[-7.479752,54.2972795],[-7.4801905,54.2969986],[-7.4807288,54.2967151],[-7.4818006,54.296234],[-7.4822796,54.2960377],[-7.4825201,54.2959574],[-7.4829591,54.2958926],[-7.4838254,54.2958169],[-7.4863354,54.2956722],[-7.4880272,54.2956484],[-7.489671,54.2956444],[-7.4930584,54.2955945],[-7.4956262,54.2955223],[-7.4960459,54.295561],[-7.4962713,54.2955964],[-7.4967107,54.295719],[-7.4968798,54.2958035],[-7.4970294,54.2959043],[-7.4971875,54.2958853],[-7.4973535,54.2959268],[-7.4976967,54.2960771],[-7.4984908,54.2963401],[-7.4990915,54.296478],[-7.5000785,54.2966782],[-7.500894,54.2968036],[-7.5016236,54.2968786],[-7.5027862,54.297139],[-7.5039584,54.2973748],[-7.504834,54.297646],[-7.5054943,54.2977168],[-7.5074345,54.2978152],[-7.5085178,54.2977647],[-7.5089898,54.2978021],[-7.5095476,54.2979649],[-7.5101539,54.2982296],[-7.5108426,54.2985332],[-7.5124658,54.2993299],[-7.513174,54.2995802],[-7.5154105,54.3004517],[-7.516369,54.3008653],[-7.5166352,54.3009303],[-7.5170468,54.3009474],[-7.5172271,54.3009234],[-7.5178517,54.3007447],[-7.5180843,54.3006948],[-7.5183555,54.3006605],[-7.5187577,54.3006388],[-7.520796,54.3005968],[-7.521427,54.3006013],[-7.5242411,54.3006779],[-7.5248508,54.3006127],[-7.5255172,54.3004829],[-7.5257409,54.3004525],[-7.5261462,54.3004024],[-7.5263973,54.3003867],[-7.5268727,54.3004003],[-7.5273694,54.300491],[-7.527831,54.3006181],[-7.5285138,54.3007665],[-7.5292753,54.3008764],[-7.5300773,54.3008939],[-7.5311232,54.3008887],[-7.5314987,54.3009075],[-7.53505,54.3012363],[-7.5398056,54.3013222],[-7.5399993,54.3013339],[-7.5389769,54.3005698],[-7.53862,54.300175],[-7.5380288,54.299702],[-7.537451,54.2991028],[-7.5373683,54.2972849],[-7.537597,54.2965195],[-7.5376384,54.2961943],[-7.5377002,54.2949823],[-7.5378567,54.2947247],[-7.5380953,54.2945131],[-7.538642,54.2941687],[-7.5389638,54.293991],[-7.5400606,54.2933674],[-7.540204,54.2931928],[-7.5402934,54.2930433],[-7.5407997,54.2926035],[-7.5423289,54.2906859],[-7.5428327,54.2901739],[-7.5428588,54.290075],[-7.5437978,54.2889428],[-7.5460719,54.2863759],[-7.5465225,54.2858071],[-7.5466387,54.2854791],[-7.546726,54.2847763],[-7.5467445,54.2843032],[-7.546892,54.2843017],[-7.547134,54.2842924],[-7.5482329,54.2842322],[-7.5501188,54.2841374],[-7.550553,54.2840588],[-7.5507257,54.2840128],[-7.5517352,54.2836],[-7.5530028,54.2831712],[-7.5533405,54.2830433],[-7.5544875,54.2824033],[-7.555992,54.281599],[-7.556545,54.2814326],[-7.5586082,54.2810026],[-7.5627541,54.2800355],[-7.5633542,54.2798729],[-7.5636474,54.2798311],[-7.5641075,54.2796864],[-7.5643886,54.2795434],[-7.56493,54.2792066],[-7.5652961,54.2789214],[-7.565389,54.278821],[-7.5658463,54.2780903],[-7.566092,54.2777999],[-7.5663805,54.2775999],[-7.5671917,54.2771352],[-7.5675905,54.2768431],[-7.5683757,54.2763275],[-7.5692989,54.2758334],[-7.5711574,54.274876],[-7.5744554,54.2735129],[-7.576626,54.2726616],[-7.5769253,54.2725037],[-7.5775513,54.2721185],[-7.5780161,54.271803],[-7.5785072,54.2715413],[-7.579132,54.2713807],[-7.5799033,54.2712717],[-7.5805032,54.2711505],[-7.5809318,54.2709786],[-7.5815519,54.2706599],[-7.5827086,54.270268],[-7.5837647,54.2699791],[-7.5843893,54.2698433],[-7.5850775,54.2697934],[-7.5857514,54.2697913],[-7.5871505,54.2698315],[-7.5878642,54.2698075],[-7.5915888,54.2694568],[-7.5918233,54.2694139],[-7.5919933,54.2693527],[-7.5921029,54.2692973],[-7.5922588,54.2691748],[-7.5925097,54.2689323],[-7.5929552,54.2684416],[-7.5935706,54.2678938],[-7.5953569,54.2659803],[-7.595559,54.2658064],[-7.5957993,54.2654279],[-7.5960459,54.2649318],[-7.596183,54.2644828],[-7.5963817,54.2633531],[-7.5964866,54.2631476],[-7.5966623,54.2629558],[-7.5968079,54.2628407],[-7.5971564,54.2626626],[-7.5978283,54.2624223],[-7.6000778,54.2618002],[-7.6006913,54.2615761],[-7.601244,54.2613084],[-7.6014951,54.2611645],[-7.6041763,54.259373],[-7.6048152,54.2590038],[-7.6054219,54.2587086],[-7.6099016,54.2569065],[-7.6104024,54.2567174],[-7.6111393,54.256574],[-7.6116692,54.2565246],[-7.6132068,54.2564956],[-7.6145729,54.2564505],[-7.6152695,54.2563842],[-7.6158723,54.2562352],[-7.6164998,54.2560511],[-7.6175121,54.2558818],[-7.6184627,54.2557639],[-7.6198092,54.2556339],[-7.6203674,54.2556011],[-7.6213049,54.2555916],[-7.6216865,54.2555354],[-7.6222963,54.2553908],[-7.6228736,54.2552111],[-7.6234018,54.2550205],[-7.6239172,54.254821],[-7.6254407,54.2540655],[-7.6260045,54.253873],[-7.6273674,54.2536368],[-7.6279515,54.2534855],[-7.6291457,54.2531203],[-7.6307744,54.2526028],[-7.631477,54.2523577],[-7.6319838,54.2522051],[-7.6320426,54.2521886],[-7.632111,54.2521725],[-7.6326571,54.2521712],[-7.6333582,54.2522033],[-7.6346272,54.2523478],[-7.6373026,54.2525304],[-7.638634,54.2526583],[-7.6406801,54.2529224],[-7.6414598,54.2529102],[-7.6427003,54.2527816],[-7.6434217,54.2527796],[-7.6461024,54.2529033],[-7.6475326,54.2529295],[-7.6481813,54.2528867],[-7.6498845,54.2527006],[-7.6509788,54.2526153],[-7.6522138,54.2525421],[-7.6529661,54.2525348],[-7.6550281,54.2525797],[-7.6557133,54.2525505],[-7.6566513,54.2524437],[-7.657166,54.2524169],[-7.657456,54.2524247],[-7.6597236,54.2526438],[-7.6605273,54.2527539],[-7.6612566,54.2528656],[-7.6623866,54.2530627],[-7.6655812,54.253512],[-7.6700967,54.2541989],[-7.6708516,54.2542919],[-7.6755676,54.2546102],[-7.6768631,54.2546806],[-7.67968,54.2547288],[-7.680746,54.2547734],[-7.6818338,54.2547868],[-7.6823624,54.2548104],[-7.6840132,54.2548249],[-7.6847302,54.2548913],[-7.6865131,54.2551902],[-7.6884365,54.2554391],[-7.6889206,54.2554763],[-7.6893955,54.2554489],[-7.6896326,54.2554102],[-7.6916385,54.2549587],[-7.6926662,54.2547098],[-7.6928882,54.254681],[-7.6932886,54.2547005],[-7.6938713,54.2547907],[-7.6990653,54.2556955],[-7.6991312,54.2557248],[-7.7045929,54.2566775],[-7.7049348,54.2567066],[-7.7051978,54.2566921],[-7.7056028,54.256631],[-7.7063456,54.2564441],[-7.7067388,54.2563251],[-7.7076442,54.2561217],[-7.708055,54.2560755],[-7.7085225,54.2561119],[-7.70879,54.2561662],[-7.7089256,54.2562253],[-7.7092513,54.2563985],[-7.709468,54.2565639],[-7.7099662,54.2572186],[-7.7102387,54.2575018],[-7.7103512,54.2575902],[-7.7104673,54.2576487],[-7.710677,54.2577156],[-7.7125752,54.2579955],[-7.7131349,54.2581064],[-7.7131576,54.2581174],[-7.7133113,54.2581922],[-7.7135531,54.2583431],[-7.715203,54.2595201],[-7.7158673,54.2600575],[-7.7166686,54.2607489],[-7.7167561,54.260859],[-7.7167909,54.2609674],[-7.7168723,54.2617387],[-7.7170821,54.2631215],[-7.7173209,54.2650386],[-7.7173713,54.2656553],[-7.7174481,54.2658781],[-7.7174716,54.2659062],[-7.7155607,54.2662856],[-7.7129656,54.2668295],[-7.7094881,54.2675228],[-7.7052275,54.2684005],[-7.705169,54.2684128],[-7.6908519,54.2714016],[-7.6905958,54.2714461],[-7.6903187,54.2714684],[-7.6902021,54.2714651],[-7.6901829,54.2715858],[-7.6902265,54.2722332],[-7.6902125,54.2725031],[-7.6900558,54.2730541],[-7.6898346,54.2733501],[-7.6884532,54.2747577],[-7.6882651,54.2748571],[-7.6865578,54.2762575],[-7.6862577,54.2764652],[-7.6860949,54.2766049],[-7.6850703,54.2773669],[-7.6842425,54.2781222],[-7.6831916,54.2791766],[-7.6828509,54.2796318],[-7.6823769,54.2803395],[-7.6822758,54.280522],[-7.6821457,54.2808914],[-7.6820005,54.2811926],[-7.6819662,54.2813894],[-7.6820211,54.2815817],[-7.6821118,54.2816835],[-7.6821763,54.2818441],[-7.6821692,54.2818896],[-7.6819621,54.2823006],[-7.6816538,54.2827454],[-7.6814448,54.2831796],[-7.6813791,54.2834523],[-7.6812655,54.2837228],[-7.6809216,54.2844498],[-7.6807063,54.2847718],[-7.6802501,54.2855906],[-7.6800559,54.2860799],[-7.6799475,54.2864307],[-7.6798767,54.2868852],[-7.6797917,54.2878571],[-7.6795325,54.289974],[-7.6794961,54.2906827],[-7.6793801,54.2908439],[-7.6788172,54.2912562],[-7.6787373,54.2913576],[-7.6787315,54.2913907],[-7.6783556,54.2913855],[-7.6776905,54.2913497],[-7.6761614,54.2912287],[-7.6745111,54.2910908],[-7.6712565,54.2907857],[-7.6705705,54.2907384],[-7.6690068,54.290682],[-7.6682754,54.2906894],[-7.662447,54.2909346],[-7.656881,54.2911313],[-7.6559599,54.2911812],[-7.6557182,54.2912158],[-7.6554108,54.2912838],[-7.6548543,54.2914636],[-7.6537004,54.291911],[-7.6496838,54.2932658],[-7.6483963,54.2936775],[-7.6478416,54.2938883],[-7.647315,54.2941253],[-7.6463014,54.2945079],[-7.6443367,54.2953284],[-7.6438427,54.2955493],[-7.6432412,54.2958488],[-7.6426568,54.2961349],[-7.6438427,54.2955493],[-7.6443367,54.2953284],[-7.6463014,54.2945079],[-7.647315,54.2941253],[-7.6478416,54.2938883],[-7.6483963,54.2936775],[-7.6496838,54.2932658],[-7.6537004,54.291911],[-7.6548543,54.2914636],[-7.6554108,54.2912838],[-7.6557182,54.2912158],[-7.6559599,54.2911812],[-7.656881,54.2911313],[-7.662447,54.2909346],[-7.6682754,54.2906894],[-7.6690068,54.290682],[-7.6705705,54.2907384],[-7.6712565,54.2907857],[-7.6745111,54.2910908],[-7.6776905,54.2913497],[-7.6783556,54.2913855],[-7.6787315,54.2913907],[-7.6788172,54.2912562],[-7.6793801,54.2908439],[-7.6794961,54.2906827],[-7.6795325,54.289974],[-7.6797917,54.2878571],[-7.6798767,54.2868852],[-7.6799475,54.2864307],[-7.6800559,54.2860799],[-7.6802501,54.2855906],[-7.6807063,54.2847718],[-7.6809216,54.2844498],[-7.6810863,54.2841139],[-7.6813791,54.2834523],[-7.6814448,54.2831796],[-7.6816538,54.2827454],[-7.6819621,54.2823006],[-7.6821692,54.2818896],[-7.6821763,54.2818441],[-7.6821118,54.2816835],[-7.6820211,54.2815817],[-7.6819662,54.2813894],[-7.6820005,54.2811926],[-7.6821457,54.2808914],[-7.6822758,54.280522],[-7.6823769,54.2803395],[-7.6828509,54.2796318],[-7.6831916,54.2791766],[-7.6842425,54.2781222],[-7.6850703,54.2773669],[-7.6860949,54.2766049],[-7.6862577,54.2764652],[-7.6865578,54.2762575],[-7.6882651,54.2748571],[-7.6884532,54.2747577],[-7.6898346,54.2733501],[-7.6900558,54.2730541],[-7.6902125,54.2725031],[-7.6902265,54.2722332],[-7.69019,54.2718937],[-7.6901991,54.2714923],[-7.6902021,54.2714651],[-7.6905958,54.2714461],[-7.6908519,54.2714016],[-7.7050997,54.2684269],[-7.705169,54.2684128],[-7.7052275,54.2684005],[-7.7053321,54.2683789],[-7.7052275,54.2684005],[-7.705169,54.2684128],[-7.6908519,54.2714016],[-7.6905958,54.2714461],[-7.6903187,54.2714684],[-7.6902021,54.2714651],[-7.6901829,54.2715858],[-7.6902265,54.2722332],[-7.6902125,54.2725031],[-7.6900558,54.2730541],[-7.6898346,54.2733501],[-7.6884532,54.2747577],[-7.6882651,54.2748571],[-7.6865578,54.2762575],[-7.6862577,54.2764652],[-7.6860949,54.2766049],[-7.6850703,54.2773669],[-7.6842425,54.2781222],[-7.6831916,54.2791766],[-7.6828509,54.2796318],[-7.6823769,54.2803395],[-7.6822758,54.280522],[-7.6821457,54.2808914],[-7.6820005,54.2811926],[-7.6819662,54.2813894],[-7.6820211,54.2815817],[-7.6821118,54.2816835],[-7.6821763,54.2818441],[-7.6821692,54.2818896],[-7.6819621,54.2823006],[-7.6816538,54.2827454],[-7.6814448,54.2831796],[-7.6813791,54.2834523],[-7.6812655,54.2837228],[-7.6809216,54.2844498],[-7.6807063,54.2847718],[-7.6802501,54.2855906],[-7.6800559,54.2860799],[-7.6799475,54.2864307],[-7.6798767,54.2868852],[-7.6797917,54.2878571],[-7.6795325,54.289974],[-7.6794961,54.2906827],[-7.6793801,54.2908439],[-7.6788172,54.2912562],[-7.6787373,54.2913576],[-7.6787315,54.2913907],[-7.6783556,54.2913855],[-7.6776905,54.2913497],[-7.6761614,54.2912287],[-7.6745111,54.2910908],[-7.6712565,54.2907857],[-7.6705705,54.2907384],[-7.6690068,54.290682],[-7.6682754,54.2906894],[-7.662447,54.2909346],[-7.656881,54.2911313],[-7.6559599,54.2911812],[-7.6557182,54.2912158],[-7.6554108,54.2912838],[-7.6548543,54.2914636],[-7.6537004,54.291911],[-7.6496838,54.2932658],[-7.6483963,54.2936775],[-7.6478416,54.2938883],[-7.647315,54.2941253],[-7.6463014,54.2945079],[-7.6443367,54.2953284],[-7.6438427,54.2955493],[-7.6425381,54.296193],[-7.6423274,54.2963482],[-7.6422907,54.2963811],[-7.6421244,54.2963569],[-7.6416632,54.2962776],[-7.6417275,54.2961394],[-7.6416031,54.2961187],[-7.6413857,54.2960827],[-7.6413059,54.2962211],[-7.6400656,54.2960052],[-7.6396199,54.2959527],[-7.6390572,54.2959313],[-7.6387457,54.295887],[-7.638523,54.2958156],[-7.6382799,54.2956418],[-7.6377099,54.2946049],[-7.637419,54.294192],[-7.6368246,54.2935354],[-7.6362852,54.2929809],[-7.635518,54.2921999],[-7.6353598,54.2919899],[-7.6350968,54.2915358],[-7.6348949,54.2910519],[-7.6346753,54.2903113],[-7.6340189,54.2865089],[-7.633988,54.2859909],[-7.633991,54.2854768],[-7.634064,54.2847169],[-7.6345799,54.2822559],[-7.6350465,54.2807671],[-7.6352876,54.2802735],[-7.6361321,54.2788646],[-7.6368054,54.2779249],[-7.6376155,54.2766093],[-7.6378859,54.2762059],[-7.6380739,54.2758188],[-7.6382169,54.2754379],[-7.6383389,54.274846],[-7.638325,54.2740309],[-7.638035,54.2718808],[-7.6380068,54.271553],[-7.6380148,54.2712458],[-7.6380469,54.2709558],[-7.638116,54.2706559],[-7.638789,54.2686679],[-7.6389,54.2681539],[-7.6388679,54.2676629],[-7.6387029,54.267176],[-7.6381109,54.2661249],[-7.6379839,54.2656719],[-7.6379459,54.264697],[-7.6377243,54.2613438],[-7.6376859,54.260409],[-7.6375479,54.2592089],[-7.6373599,54.2585949],[-7.6371679,54.2581909],[-7.636923,54.2577849],[-7.636467,54.2571698],[-7.6356368,54.2562197],[-7.6323749,54.2525918],[-7.6320426,54.2521886],[-7.631477,54.2523577],[-7.6307744,54.2526028],[-7.6291457,54.2531203],[-7.6279515,54.2534855],[-7.6273674,54.2536368],[-7.6260045,54.253873],[-7.6254407,54.2540655],[-7.6239172,54.254821],[-7.6234018,54.2550205],[-7.6228736,54.2552111],[-7.6222963,54.2553908],[-7.6216865,54.2555354],[-7.6213049,54.2555916],[-7.6203674,54.2556011],[-7.6198092,54.2556339],[-7.6184627,54.2557639],[-7.6175121,54.2558818],[-7.6164998,54.2560511],[-7.6158723,54.2562352],[-7.6152695,54.2563842],[-7.6145729,54.2564505],[-7.6132068,54.2564956],[-7.6116692,54.2565246],[-7.6111393,54.256574],[-7.6104024,54.2567174],[-7.6099016,54.2569065],[-7.6054219,54.2587086],[-7.6048152,54.2590038],[-7.6041763,54.259373],[-7.6014951,54.2611645],[-7.601244,54.2613084],[-7.6006913,54.2615761],[-7.6000778,54.2618002],[-7.5978283,54.2624223],[-7.5971564,54.2626626],[-7.5968079,54.2628407],[-7.5966623,54.2629558],[-7.5964866,54.2631476],[-7.5963817,54.2633531],[-7.596183,54.2644828],[-7.5961612,54.2645543],[-7.5960459,54.2649318],[-7.5957993,54.2654279],[-7.595559,54.2658064],[-7.5953569,54.2659803],[-7.5935706,54.2678938],[-7.5929552,54.2684416],[-7.5925097,54.2689323],[-7.5922588,54.2691748],[-7.5921029,54.2692973],[-7.5919933,54.2693527],[-7.5918233,54.2694139],[-7.5915888,54.2694568],[-7.5878642,54.2698075],[-7.5871505,54.2698315],[-7.5857514,54.2697913],[-7.5850775,54.2697934],[-7.5843893,54.2698433],[-7.5837647,54.2699791],[-7.5827086,54.270268],[-7.5815519,54.2706599],[-7.5809318,54.2709786],[-7.5805032,54.2711505],[-7.5799033,54.2712717],[-7.579132,54.2713807],[-7.5785072,54.2715413],[-7.5780161,54.271803],[-7.5775513,54.2721185],[-7.5769253,54.2725037],[-7.576626,54.2726616],[-7.5744554,54.2735129],[-7.5711574,54.274876],[-7.5692989,54.2758334],[-7.5683757,54.2763275],[-7.5675905,54.2768431],[-7.5671917,54.2771352],[-7.5663805,54.2775999],[-7.566092,54.2777999],[-7.5658463,54.2780903],[-7.565389,54.278821],[-7.5652961,54.2789214],[-7.56493,54.2792066],[-7.5643886,54.2795434],[-7.5641075,54.2796864],[-7.5636474,54.2798311],[-7.5633542,54.2798729],[-7.5627541,54.2800355],[-7.5586082,54.2810026],[-7.556545,54.2814326],[-7.555992,54.281599],[-7.5544875,54.2824033],[-7.5533405,54.2830433],[-7.5530028,54.2831712],[-7.5517352,54.2836],[-7.5507257,54.2840128],[-7.550553,54.2840588],[-7.5501188,54.2841374],[-7.5485984,54.2842158],[-7.5482329,54.2842322],[-7.547134,54.2842924],[-7.5467445,54.2843032],[-7.546726,54.2847763],[-7.5466387,54.2854791],[-7.5465225,54.2858071],[-7.5460719,54.2863759],[-7.5437978,54.2889428],[-7.5428588,54.290075],[-7.5428327,54.2901739],[-7.5423289,54.2906859],[-7.5407997,54.2926035],[-7.5405104,54.292868],[-7.5402934,54.2930433],[-7.540204,54.2931928],[-7.5400606,54.2933674],[-7.5398691,54.2937544],[-7.5398557,54.293861],[-7.5399265,54.2940424],[-7.5400991,54.2942208],[-7.5404847,54.2944769],[-7.540673,54.2945725],[-7.5411409,54.2946789],[-7.5419094,54.2947779],[-7.5422093,54.2948906],[-7.5423237,54.2950018],[-7.5423717,54.2951548],[-7.5423157,54.2953641],[-7.5420961,54.2957437],[-7.5420275,54.2959408],[-7.5420519,54.2962302],[-7.542146,54.2963996],[-7.542263,54.2965273],[-7.5426791,54.2968175],[-7.5430862,54.297025],[-7.5433707,54.2971439],[-7.5437506,54.2972286],[-7.5439973,54.2972603],[-7.5459305,54.2973083],[-7.5462727,54.2973327],[-7.5466255,54.2973793],[-7.5473632,54.2975592],[-7.5475666,54.2976369],[-7.5477332,54.2977589],[-7.5478123,54.2978776],[-7.5479181,54.2982246],[-7.5482227,54.2984623],[-7.5483508,54.2985926],[-7.54866,54.2987545],[-7.5489444,54.2988253],[-7.5492061,54.2988517],[-7.5498439,54.298818],[-7.5503668,54.2987301],[-7.550668,54.2986593],[-7.550919,54.2985617],[-7.5515425,54.2984745],[-7.5524697,54.2984153],[-7.5528914,54.2984347],[-7.5541718,54.298693],[-7.5544581,54.2987813],[-7.5546272,54.2988696],[-7.554831,54.2990779],[-7.5548665,54.299268],[-7.5548362,54.2993472],[-7.5546212,54.2996164],[-7.5544037,54.2997968],[-7.5536966,54.3003145],[-7.5533802,54.3005212],[-7.5531877,54.3006842],[-7.5530644,54.3008852],[-7.5530682,54.3010241],[-7.553106,54.3011515],[-7.5531861,54.3012916],[-7.5535854,54.3019085],[-7.5538939,54.3023107],[-7.5540324,54.3024332],[-7.5542861,54.3025692],[-7.5544892,54.3026336],[-7.5547825,54.30268],[-7.5552832,54.3027126],[-7.5557988,54.3027907],[-7.5564099,54.3029214],[-7.5566636,54.3029937],[-7.557087,54.3031429],[-7.5577793,54.3034215],[-7.5585441,54.3037978],[-7.5589467,54.3039358],[-7.5596034,54.3040696],[-7.5599039,54.3041947],[-7.5602041,54.304345],[-7.5604187,54.3045827],[-7.5604617,54.3048709],[-7.5603114,54.3051713],[-7.5593272,54.3059551],[-7.5583622,54.3065188],[-7.5581349,54.306624],[-7.5578457,54.3068026],[-7.557518,54.3069704],[-7.557277,54.3072001],[-7.5571623,54.3074052],[-7.5571326,54.3075065],[-7.5571403,54.30778],[-7.5571822,54.3078567],[-7.5572602,54.3079351],[-7.5576588,54.3082359],[-7.5589599,54.3090391],[-7.559332,54.3092378],[-7.5597398,54.3093951],[-7.5600024,54.309526],[-7.5602235,54.3096646],[-7.5605696,54.3101233],[-7.5607421,54.3102357],[-7.5609449,54.3103254],[-7.5612157,54.3103914],[-7.5615329,54.3104447],[-7.5617673,54.3105177],[-7.5622521,54.310782],[-7.5628143,54.3109193],[-7.5637642,54.311115],[-7.5640986,54.3111525],[-7.5645452,54.3111711],[-7.5648099,54.3112054],[-7.5650683,54.3112881],[-7.5654646,54.3115054],[-7.5660124,54.3119117],[-7.5664757,54.3121588],[-7.5671838,54.3124729],[-7.5683614,54.3130388],[-7.5687161,54.31325],[-7.5694466,54.3137689],[-7.570021,54.3141208],[-7.5704777,54.3145017],[-7.5707918,54.3147934],[-7.5713105,54.3155483],[-7.5718677,54.3162293],[-7.5728161,54.3169803],[-7.5733209,54.3174119],[-7.5737063,54.3176417],[-7.5739354,54.3178326],[-7.5739449,54.3178941],[-7.5781094,54.3178153],[-7.5785197,54.3177915],[-7.580149,54.3176477],[-7.5808378,54.3176278],[-7.5816108,54.3176456],[-7.582533,54.3177419],[-7.5877325,54.3185039],[-7.5888509,54.3186731],[-7.5893484,54.318766],[-7.5897865,54.3188668],[-7.5906019,54.3191045],[-7.5910255,54.3192658],[-7.5950865,54.3211266],[-7.5964661,54.3217856],[-7.5968245,54.3219957],[-7.5971357,54.3222032],[-7.5981308,54.3229311],[-7.5983763,54.3230823],[-7.5986378,54.3232174],[-7.5992036,54.3234489],[-7.5994864,54.3235344],[-7.6000029,54.3236584],[-7.6004451,54.3237235],[-7.6009245,54.3237639],[-7.6014353,54.3237804],[-7.6027725,54.3237853],[-7.6036302,54.323789],[-7.6044975,54.3238577],[-7.6051161,54.3239472],[-7.6067941,54.3242821],[-7.608507,54.3247986],[-7.6095188,54.3250863],[-7.610788,54.3254838],[-7.6124556,54.3260909],[-7.6133687,54.3264899],[-7.6141827,54.326876],[-7.6149149,54.3272496],[-7.6148476,54.3273171],[-7.6148253,54.3274284],[-7.6148785,54.3277728],[-7.6148704,54.3279999],[-7.6147787,54.3282847],[-7.6146515,54.3285399],[-7.614563,54.3287792],[-7.61459,54.3290512],[-7.6150339,54.3296968],[-7.6152969,54.3304079],[-7.6153662,54.3307002],[-7.6156843,54.3311891],[-7.615776,54.3315749],[-7.6170713,54.3332673],[-7.6175228,54.3342222],[-7.6177742,54.3346255],[-7.6179132,54.3347559],[-7.6181264,54.3349044],[-7.6183861,54.3350519],[-7.6189305,54.3352417],[-7.62015,54.3355052],[-7.6204471,54.3355539],[-7.6209988,54.3356308],[-7.6213935,54.3356664],[-7.6219426,54.3356895],[-7.6238505,54.3356511],[-7.6241277,54.3356319],[-7.624183,54.3356181],[-7.6246921,54.3366055],[-7.6251034,54.337725],[-7.6252205,54.33824],[-7.6252892,54.3387652],[-7.6254666,54.3393749],[-7.6259179,54.3403956],[-7.6260216,54.3405789],[-7.6262576,54.3408838],[-7.6272743,54.3418783],[-7.6273929,54.3419919],[-7.6266123,54.3423359],[-7.6262027,54.3425453],[-7.6260224,54.3426503],[-7.6258855,54.342772],[-7.6253963,54.3430856],[-7.6245842,54.3435634],[-7.6248344,54.3437422],[-7.6248227,54.3438098],[-7.6247208,54.343981],[-7.6246901,54.3441007],[-7.6247208,54.343981],[-7.6248227,54.3438098],[-7.6248344,54.3437422],[-7.6247444,54.3436664],[-7.6245842,54.3435634],[-7.6257208,54.3428826],[-7.6258855,54.342772],[-7.6260224,54.3426503],[-7.6265542,54.3427941],[-7.6275261,54.3429962],[-7.6277729,54.3430424],[-7.6273508,54.3438404],[-7.6271459,54.3439739],[-7.6271459,54.3440267],[-7.6276621,54.3445188],[-7.6280219,54.3446762],[-7.6284135,54.3448924],[-7.6285032,54.3450222],[-7.629825,54.3448708],[-7.6300829,54.3448745],[-7.6303014,54.3449099],[-7.6304506,54.3449336],[-7.6301334,54.3454769],[-7.6300114,54.3459003],[-7.6301001,54.3459005],[-7.6301412,54.3459225],[-7.6302076,54.3460432],[-7.630218,54.3462356],[-7.630064,54.3466863],[-7.6300155,54.3470633],[-7.6299781,54.3472773],[-7.6299665,54.3485046],[-7.6300323,54.348868],[-7.6300839,54.3490156],[-7.6301709,54.3491312],[-7.6302769,54.349264],[-7.630839,54.3496019],[-7.6315591,54.3499949],[-7.6320384,54.3502026],[-7.632604,54.3504893],[-7.6336741,54.3512116],[-7.6344065,54.3516583],[-7.6349322,54.3519347],[-7.6347658,54.3520264],[-7.6349322,54.3519347],[-7.6344065,54.3516583],[-7.6336741,54.3512116],[-7.632604,54.3504893],[-7.6320384,54.3502026],[-7.6315591,54.3499949],[-7.630839,54.3496019],[-7.6302769,54.349264],[-7.6301709,54.3491312],[-7.6300839,54.3490156],[-7.6300323,54.348868],[-7.6299665,54.3485046],[-7.6299829,54.3475124],[-7.6299781,54.3472773],[-7.630064,54.3466863],[-7.630218,54.3462356],[-7.6302076,54.3460432],[-7.6301412,54.3459225],[-7.6301001,54.3459005],[-7.6300114,54.3459003],[-7.6301334,54.3454769],[-7.6304506,54.3449336],[-7.6306505,54.3446812],[-7.6314103,54.3439991],[-7.6315714,54.3438808],[-7.631325,54.3438033],[-7.6290626,54.3432317],[-7.6287528,54.3431317],[-7.6286096,54.3430661],[-7.6285172,54.3430108],[-7.6283665,54.3428986],[-7.6272743,54.3418783],[-7.6262576,54.3408838],[-7.6260216,54.3405789],[-7.6258549,54.3402667],[-7.6254666,54.3393749],[-7.6252892,54.3387652],[-7.6252205,54.33824],[-7.6251034,54.337725],[-7.6246921,54.3366055],[-7.624435,54.3360922],[-7.624183,54.3356181],[-7.6238505,54.3356511],[-7.6219426,54.3356895],[-7.6213935,54.3356664],[-7.6209988,54.3356308],[-7.62015,54.3355052],[-7.6189305,54.3352417],[-7.6183861,54.3350519],[-7.6181264,54.3349044],[-7.6179132,54.3347559],[-7.6177742,54.3346255],[-7.6175228,54.3342222],[-7.6170713,54.3332673],[-7.615776,54.3315749],[-7.6156843,54.3311891],[-7.6153662,54.3307002],[-7.6152969,54.3304079],[-7.6150339,54.3296968],[-7.61459,54.3290512],[-7.614563,54.3287792],[-7.6146515,54.3285399],[-7.6147787,54.3282847],[-7.6148704,54.3279999],[-7.6148785,54.3277728],[-7.6148253,54.3274284],[-7.6148476,54.3273171],[-7.6148812,54.3272725],[-7.6149149,54.3272496],[-7.6141827,54.326876],[-7.6133687,54.3264899],[-7.6124556,54.3260909],[-7.610788,54.3254838],[-7.6095188,54.3250863],[-7.608507,54.3247986],[-7.6067941,54.3242821],[-7.6051161,54.3239472],[-7.6044975,54.3238577],[-7.6036302,54.323789],[-7.6027725,54.3237853],[-7.6014353,54.3237804],[-7.6009245,54.3237639],[-7.6004451,54.3237235],[-7.6000029,54.3236584],[-7.5994864,54.3235344],[-7.5992036,54.3234489],[-7.5986378,54.3232174],[-7.5983763,54.3230823],[-7.5981308,54.3229311],[-7.5971357,54.3222032],[-7.5968245,54.3219957],[-7.5964661,54.3217856],[-7.5950865,54.3211266],[-7.5910255,54.3192658],[-7.5906019,54.3191045],[-7.5897865,54.3188668],[-7.5893484,54.318766],[-7.5888509,54.3186731],[-7.582533,54.3177419],[-7.5820086,54.3176816],[-7.5816108,54.3176456],[-7.5808378,54.3176278],[-7.580149,54.3176477],[-7.5785197,54.3177915],[-7.5781094,54.3178153],[-7.5751081,54.3178811],[-7.5688924,54.3179163],[-7.5681219,54.3179131],[-7.5670739,54.3178652],[-7.5657014,54.3177092],[-7.5647604,54.317627],[-7.56364,54.317584],[-7.5625133,54.3176024],[-7.5618204,54.3176449],[-7.5551014,54.3183128],[-7.5534787,54.3184617],[-7.5527545,54.3185075],[-7.5476609,54.3187025],[-7.5467318,54.3187411],[-7.5466323,54.31852],[-7.5464684,54.3184537],[-7.5444111,54.3184034],[-7.5436592,54.3183451],[-7.5428897,54.3182499],[-7.5422769,54.3181702],[-7.5416902,54.3180578],[-7.5383344,54.317358],[-7.5369229,54.3170274],[-7.5364025,54.3169326],[-7.5361759,54.3168953],[-7.5364025,54.3169326],[-7.5360086,54.3172129],[-7.5354116,54.3177799],[-7.535069,54.3180668],[-7.5343298,54.3185397],[-7.5340701,54.3186818],[-7.5337397,54.3186107],[-7.5329302,54.3185198],[-7.532333,54.3184864],[-7.5320236,54.3185012],[-7.5317241,54.3185455],[-7.5314198,54.3186084],[-7.5312586,54.3186554],[-7.5271096,54.3199715],[-7.5256338,54.3204187],[-7.5234242,54.3211258],[-7.5226927,54.3213195],[-7.5211359,54.3216608],[-7.5194236,54.3220143],[-7.5189942,54.3221018],[-7.5171379,54.3225023],[-7.5157478,54.32277],[-7.5107703,54.3238132],[-7.5098645,54.3240269],[-7.5084086,54.3243027],[-7.506983,54.324521],[-7.5057875,54.3246609],[-7.5051512,54.3247559],[-7.5042801,54.3249362],[-7.5023508,54.3255121],[-7.4985368,54.3267458],[-7.496405,54.327407],[-7.4946618,54.3279684],[-7.4935175,54.3283093],[-7.4930005,54.3284477],[-7.4918054,54.3286839],[-7.4903857,54.3288908],[-7.4891159,54.3290296],[-7.4886692,54.3290476],[-7.4877135,54.3290441],[-7.4869092,54.3290787],[-7.4828528,54.3298324],[-7.4826818,54.3298407],[-7.4823912,54.3298165],[-7.4815435,54.3296834],[-7.4812487,54.329656],[-7.4809424,54.3296616],[-7.476623,54.3300661],[-7.4740777,54.33028],[-7.4737398,54.3302913],[-7.4733509,54.3302427],[-7.4716134,54.3298018],[-7.4714115,54.3297703],[-7.4709808,54.3297404],[-7.4700771,54.3297594],[-7.4686598,54.3298797],[-7.4666478,54.3300764],[-7.4652491,54.3301229],[-7.4652074,54.3301209],[-7.4652189,54.330074],[-7.4653241,54.3297156],[-7.4652189,54.330074],[-7.4652074,54.3301209],[-7.4666478,54.3300764],[-7.4686598,54.3298797],[-7.4700771,54.3297594],[-7.4709808,54.3297404],[-7.4714115,54.3297703],[-7.4716134,54.3298018],[-7.4733509,54.3302427],[-7.4737398,54.3302913],[-7.4740777,54.33028],[-7.476623,54.3300661],[-7.4809424,54.3296616],[-7.4812487,54.329656],[-7.4815435,54.3296834],[-7.4823912,54.3298165],[-7.4826818,54.3298407],[-7.4828528,54.3298324],[-7.4869092,54.3290787],[-7.4877135,54.3290441],[-7.4886692,54.3290476],[-7.4891159,54.3290296],[-7.4903857,54.3288908],[-7.4918054,54.3286839],[-7.4930005,54.3284477],[-7.4935175,54.3283093],[-7.4946618,54.3279684],[-7.496405,54.327407],[-7.4985368,54.3267458],[-7.5023508,54.3255121],[-7.5042801,54.3249362],[-7.5051512,54.3247559],[-7.5057875,54.3246609],[-7.506983,54.324521],[-7.5084086,54.3243027],[-7.5098645,54.3240269],[-7.5107703,54.3238132],[-7.5157478,54.32277],[-7.5171379,54.3225023],[-7.5186698,54.3221698],[-7.5189942,54.3221018],[-7.5211359,54.3216608],[-7.5226927,54.3213195],[-7.5234242,54.3211258],[-7.5256338,54.3204187],[-7.5271096,54.3199715],[-7.5291045,54.3193285],[-7.5310321,54.3187319],[-7.5312586,54.3186554],[-7.5314198,54.3186084],[-7.5320236,54.3185012],[-7.532333,54.3184864],[-7.5329302,54.3185198],[-7.5337397,54.3186107],[-7.5339189,54.3186505],[-7.5339449,54.3186559],[-7.5340701,54.3186818],[-7.5343298,54.3185397],[-7.535069,54.3180668],[-7.5354116,54.3177799],[-7.5360086,54.3172129],[-7.5363574,54.3169697],[-7.5364025,54.3169326],[-7.5357184,54.3168222],[-7.5354023,54.3167475],[-7.5351206,54.3166601],[-7.5338719,54.3160741],[-7.5336257,54.3160033],[-7.5333038,54.3159726],[-7.5329661,54.3159937],[-7.5326076,54.3160473],[-7.5301466,54.3168203],[-7.5299598,54.3168875],[-7.5298024,54.3169926],[-7.5297665,54.3170231],[-7.52868,54.3166523],[-7.5276168,54.3163338],[-7.5264981,54.3160225],[-7.5248675,54.315634],[-7.5232373,54.3153144],[-7.5206913,54.3149288],[-7.5027246,54.3125347],[-7.5019292,54.3123924],[-7.5008286,54.3121508],[-7.4992955,54.3117306],[-7.4985901,54.3115069],[-7.4978202,54.3112217],[-7.4968707,54.3108231],[-7.4959079,54.3103692],[-7.4952747,54.3100406],[-7.4942287,54.3094001],[-7.4935581,54.3089298],[-7.4927619,54.3082279],[-7.491871,54.3074821],[-7.491152,54.3069136],[-7.4903903,54.306382],[-7.4893659,54.3057748],[-7.4887635,54.3054597],[-7.4879871,54.3050862],[-7.4871706,54.3047325],[-7.4860774,54.3043382],[-7.4836017,54.3035855],[-7.4832154,54.3034618],[-7.482373,54.3031571],[-7.4810054,54.3025791],[-7.4801551,54.3021579],[-7.4791116,54.3015805],[-7.4783876,54.3012097],[-7.4776269,54.3008522],[-7.476443,54.3003769],[-7.4748574,54.2997669],[-7.473522,54.2993094],[-7.4709739,54.298522],[-7.4690318,54.2979914],[-7.4669864,54.2974982],[-7.4656291,54.2971968],[-7.4640184,54.2968818],[-7.4615242,54.296477],[-7.4590025,54.2961552],[-7.4576426,54.296028],[-7.4571272,54.2959985],[-7.4561562,54.2959708],[-7.4552415,54.2959848],[-7.4545936,54.2960118],[-7.4533807,54.2960905],[-7.4530093,54.2961325],[-7.4525349,54.296196],[-7.4516171,54.2963472],[-7.4500879,54.2966808],[-7.4492715,54.296906],[-7.448559,54.2971361],[-7.44754,54.2975196],[-7.4466696,54.2979234],[-7.4460985,54.2982145],[-7.4455533,54.29852],[-7.444622,54.2991509],[-7.4442746,54.2994152],[-7.4416863,54.301625],[-7.4409995,54.3021777],[-7.4407883,54.3023338],[-7.4406981,54.3022987],[-7.4405426,54.3022717],[-7.4401213,54.3022816],[-7.4394587,54.3023405],[-7.4389757,54.3024008],[-7.4388752,54.3024131],[-7.4388534,54.3023747],[-7.4384907,54.3021436],[-7.438281,54.3019571],[-7.4374195,54.3014088],[-7.4363138,54.3006401],[-7.4357841,54.3003093],[-7.4350931,54.2999678],[-7.4345769,54.2997341],[-7.4338861,54.2991481],[-7.4336543,54.2988255],[-7.4334517,54.2986144],[-7.4325461,54.2980165],[-7.4315365,54.2971694],[-7.4307026,54.2966827],[-7.4301682,54.2962848],[-7.4297674,54.2959406],[-7.4291501,54.2956368],[-7.4286572,54.2954621],[-7.4274365,54.2949135],[-7.4267776,54.2945963],[-7.4252942,54.2939671],[-7.4233684,54.293115],[-7.4231058,54.2930261],[-7.42294,54.2929375],[-7.4226755,54.2931237],[-7.4221145,54.2934452],[-7.4203225,54.2946101],[-7.4195675,54.2953086],[-7.4192509,54.295726],[-7.4191972,54.2958344],[-7.4189547,54.2958603],[-7.4172735,54.2961928],[-7.4164295,54.2963767],[-7.4160298,54.2965052],[-7.4156172,54.2966927],[-7.4154503,54.2967496],[-7.4153183,54.2967661],[-7.4151292,54.2967386],[-7.4130403,54.296212],[-7.412092,54.2960248],[-7.4114863,54.2959728],[-7.4108675,54.2958248],[-7.4095672,54.2954038],[-7.4089749,54.2952581],[-7.4081912,54.2951905],[-7.4052648,54.2939848],[-7.4027365,54.2930051],[-7.4017525,54.292597],[-7.401365,54.2923839],[-7.4007995,54.291976],[-7.3997931,54.2914431],[-7.397794,54.2901722],[-7.3967159,54.2895249],[-7.3957586,54.2888596],[-7.3936807,54.2875621],[-7.3923772,54.2868379],[-7.3917787,54.2863968],[-7.3895193,54.2846582],[-7.3893305,54.2845496],[-7.3887229,54.2844062],[-7.3885906,54.284351],[-7.3885118,54.2842611],[-7.388323,54.2837887],[-7.3881781,54.2836416],[-7.3859552,54.2819432],[-7.3844218,54.2807098],[-7.3837196,54.2802024],[-7.3829544,54.2795791],[-7.3819708,54.2787165],[-7.381569,54.2783641],[-7.3793854,54.2763173],[-7.3784455,54.2752533],[-7.3772372,54.2741298],[-7.3768409,54.2736744],[-7.3760671,54.2729388],[-7.3756005,54.2722519],[-7.3754215,54.2719533],[-7.375185,54.271479],[-7.3744304,54.2703628],[-7.3740149,54.2697989],[-7.3735352,54.2693018],[-7.3734972,54.2692739],[-7.3743725,54.2691031],[-7.3748113,54.2690576],[-7.3754513,54.2689647],[-7.3797606,54.2683044],[-7.3811911,54.2681967],[-7.3838224,54.268035],[-7.3837837,54.2679518],[-7.3829701,54.2669802],[-7.3826795,54.2665987],[-7.3820757,54.2659431],[-7.3814643,54.265188],[-7.3811842,54.2648996],[-7.3808934,54.2644964],[-7.3805021,54.2638467],[-7.3804404,54.2635751],[-7.3804775,54.26299],[-7.3805781,54.2621016],[-7.3806964,54.2612749],[-7.3808515,54.2604801],[-7.3811026,54.2586817],[-7.3812203,54.2581563],[-7.3813904,54.2576703],[-7.3816141,54.2572222],[-7.3821908,54.2564909],[-7.3827212,54.2559165],[-7.386959,54.2515247],[-7.3873825,54.2510296],[-7.3876234,54.2506217],[-7.3877906,54.2502123],[-7.3879268,54.2497872],[-7.3880339,54.2493087],[-7.3881883,54.2490019],[-7.3885536,54.248472],[-7.3885917,54.2484504],[-7.3876982,54.2480792],[-7.3866641,54.2475807],[-7.3861331,54.2472909],[-7.3841052,54.2465347],[-7.3829142,54.2461538],[-7.382377,54.2459398],[-7.3817121,54.2455805],[-7.3808919,54.2451062],[-7.3806898,54.2449568],[-7.380511,54.2448609],[-7.3795104,54.2442224],[-7.3787622,54.2437163],[-7.3767077,54.2424292],[-7.3759256,54.2419036],[-7.3740683,54.2407948],[-7.3734751,54.2404846],[-7.3717396,54.2396653],[-7.3711684,54.2394242],[-7.3702857,54.2389265],[-7.3693445,54.2382767],[-7.3687037,54.2377871],[-7.3680373,54.2372401],[-7.3674164,54.2367767],[-7.3667887,54.2362663],[-7.3663465,54.2358533],[-7.366143,54.2356153],[-7.3659288,54.2353054],[-7.3656088,54.2349528],[-7.3650615,54.2344163],[-7.3642468,54.2338117],[-7.363447,54.2333434],[-7.3625339,54.2329033],[-7.3619155,54.2326287],[-7.361363,54.2324501],[-7.3607377,54.2322774],[-7.3602319,54.2321756],[-7.35917,54.2319939],[-7.3582113,54.2317449],[-7.3576534,54.2315572],[-7.3572939,54.2314122],[-7.3570356,54.2312843],[-7.3567951,54.2311386],[-7.3559474,54.2305647],[-7.3554037,54.2302306],[-7.35444,54.2295455],[-7.3538303,54.2291964],[-7.3533466,54.2289971],[-7.3528738,54.2287133],[-7.3525732,54.228494],[-7.3518973,54.2278717],[-7.3515003,54.2275661],[-7.3511349,54.2273597],[-7.3504129,54.2270255],[-7.3480617,54.2264287],[-7.3474411,54.226327],[-7.3468119,54.2261873],[-7.3462305,54.2260301],[-7.3458677,54.2258923],[-7.3455672,54.2257476],[-7.3452893,54.2255548],[-7.3450477,54.225387],[-7.3455672,54.2257476],[-7.3458677,54.2258923],[-7.3462305,54.2260301],[-7.3468119,54.2261873],[-7.3474411,54.226327],[-7.3480617,54.2264287],[-7.3504129,54.2270255],[-7.3511349,54.2273597],[-7.3515003,54.2275661],[-7.3518973,54.2278717],[-7.3525732,54.228494],[-7.3528738,54.2287133],[-7.3533466,54.2289971],[-7.3538303,54.2291964],[-7.35444,54.2295455],[-7.3554037,54.2302306],[-7.3559474,54.2305647],[-7.3567951,54.2311386],[-7.3570356,54.2312843],[-7.3572939,54.2314122],[-7.3576534,54.2315572],[-7.3582113,54.2317449],[-7.35917,54.2319939],[-7.3602319,54.2321756],[-7.3607377,54.2322774],[-7.361363,54.2324501],[-7.3619155,54.2326287],[-7.3625339,54.2329033],[-7.363447,54.2333434],[-7.3642468,54.2338117],[-7.3650615,54.2344163],[-7.3656088,54.2349528],[-7.3659288,54.2353054],[-7.366143,54.2356153],[-7.3663465,54.2358533],[-7.3667887,54.2362663],[-7.3674164,54.2367767],[-7.3680373,54.2372401],[-7.3687037,54.2377871],[-7.3693445,54.2382767],[-7.3702857,54.2389265],[-7.3711684,54.2394242],[-7.3717396,54.2396653],[-7.3734751,54.2404846],[-7.3740683,54.2407948],[-7.3759256,54.2419036],[-7.3767077,54.2424292],[-7.3787622,54.2437163],[-7.3795104,54.2442224],[-7.380511,54.2448609],[-7.3806898,54.2449568],[-7.3808919,54.2451062],[-7.3817121,54.2455805],[-7.382377,54.2459398],[-7.3829142,54.2461538],[-7.3841052,54.2465347],[-7.3861331,54.2472909],[-7.3866641,54.2475807],[-7.3876982,54.2480792],[-7.3884135,54.2483819],[-7.3885917,54.2484504],[-7.3885536,54.248472],[-7.3881883,54.2490019],[-7.3880339,54.2493087],[-7.3879268,54.2497872],[-7.3877906,54.2502123],[-7.3876234,54.2506217],[-7.3873825,54.2510296],[-7.386959,54.2515247],[-7.3827212,54.2559165],[-7.3821908,54.2564909],[-7.3816141,54.2572222],[-7.3813904,54.2576703],[-7.3812203,54.2581563],[-7.3811026,54.2586817],[-7.3808515,54.2604801],[-7.3806964,54.2612749],[-7.3805781,54.2621016],[-7.3804775,54.26299],[-7.3804404,54.2635751],[-7.3805021,54.2638467],[-7.3808934,54.2644964],[-7.3811842,54.2648996],[-7.3814643,54.265188],[-7.3820757,54.2659431],[-7.3826795,54.2665987],[-7.3829701,54.2669802],[-7.3837837,54.2679518],[-7.3838224,54.268035],[-7.3854763,54.2679333],[-7.3860014,54.2679179],[-7.3872879,54.2678987],[-7.3906746,54.267924],[-7.3925437,54.2678501],[-7.3946081,54.2676666],[-7.3952563,54.2675479],[-7.396061,54.2673613],[-7.3965203,54.267222],[-7.3969269,54.2670713],[-7.3979551,54.2666429],[-7.3997196,54.265836],[-7.4008364,54.2654173],[-7.4011905,54.2653012],[-7.4008364,54.2654173],[-7.3997196,54.265836],[-7.3979551,54.2666429],[-7.3969269,54.2670713],[-7.3965203,54.267222],[-7.396061,54.2673613],[-7.3952563,54.2675479],[-7.3946081,54.2676666],[-7.3925437,54.2678501],[-7.3906746,54.267924],[-7.3872879,54.2678987],[-7.3854763,54.2679333],[-7.3811911,54.2681967],[-7.3797606,54.2683044],[-7.3754513,54.2689647],[-7.3748113,54.2690576],[-7.3743725,54.2691031],[-7.3719805,54.2695901],[-7.3704915,54.2699455],[-7.369468,54.2702188],[-7.3679426,54.2707793],[-7.3673263,54.2709817],[-7.3660029,54.2712648],[-7.36537,54.2713749],[-7.364922,54.2714085],[-7.3612548,54.2714615],[-7.3553687,54.2714969],[-7.3543148,54.2714774],[-7.3516611,54.2715068],[-7.350816,54.271491],[-7.3489643,54.271376],[-7.346344,54.2711685],[-7.3459264,54.2711037],[-7.3455358,54.2709935],[-7.338939,54.2689308],[-7.3381241,54.268732],[-7.3370803,54.2685176],[-7.3361709,54.2683997],[-7.3294934,54.2676209],[-7.3285438,54.2675621],[-7.3259173,54.2674853],[-7.3204655,54.2674401],[-7.3199166,54.2674047],[-7.3193442,54.2673121],[-7.3181554,54.2670605],[-7.3174111,54.2668442],[-7.3159935,54.2662385],[-7.3158318,54.2660831],[-7.3157366,54.2656864],[-7.3156576,54.2656166],[-7.3155749,54.2655841],[-7.3158141,54.2653077],[-7.3158579,54.2652232],[-7.3158733,54.26516],[-7.315688,54.2651583],[-7.3154777,54.2651889],[-7.3139349,54.2654852],[-7.3128458,54.2657481],[-7.3125852,54.2657816],[-7.31233,54.2657495],[-7.3120091,54.2656357],[-7.3116278,54.2652576],[-7.3110627,54.2648234],[-7.3108898,54.2646698],[-7.3107142,54.2644133],[-7.3104152,54.2638653],[-7.3101053,54.262803],[-7.3099773,54.2625061],[-7.3098831,54.2624057],[-7.3097158,54.2622888],[-7.309488,54.2621895],[-7.3091505,54.2621092],[-7.3088122,54.2620822],[-7.3078967,54.2621092],[-7.3073592,54.262098],[-7.306816,54.2620403],[-7.3053684,54.2618354],[-7.3043046,54.2616052],[-7.3036138,54.2615377],[-7.303187,54.2615457],[-7.3025487,54.2616478],[-7.3021468,54.2617408],[-7.300627,54.2622439],[-7.2990441,54.2628734],[-7.2984954,54.2630306],[-7.2978096,54.2631076],[-7.2965065,54.2631651],[-7.2950277,54.263375],[-7.2938125,54.2635095],[-7.2936808,54.2634872],[-7.2935272,54.2634231],[-7.2933873,54.2633222],[-7.2930909,54.2630754],[-7.2925176,54.2624089],[-7.2919305,54.2619619],[-7.2915273,54.2618177],[-7.2909347,54.261643],[-7.2903558,54.2615403],[-7.2879664,54.2612537],[-7.2843563,54.2610756],[-7.2800629,54.260789],[-7.2775637,54.2606511],[-7.2763813,54.2606077],[-7.2752923,54.2606142],[-7.2745187,54.2605934],[-7.2730701,54.2605325],[-7.271575,54.2604237],[-7.2714675,54.2604462],[-7.2714435,54.2604572],[-7.2713509,54.260387],[-7.2712328,54.2604175],[-7.2711421,54.2604157],[-7.2703769,54.2603106],[-7.2681727,54.2601435],[-7.2666907,54.2600148],[-7.2646646,54.2598971],[-7.2642421,54.2598459],[-7.2640186,54.2597977],[-7.2633018,54.2597086],[-7.2621649,54.2594655],[-7.2618531,54.25943],[-7.2605803,54.2593808],[-7.2596891,54.2592329],[-7.2587574,54.2590315],[-7.2570078,54.2586845],[-7.2562486,54.2586266],[-7.2561754,54.2585752],[-7.25608,54.2584659],[-7.2559552,54.2582839],[-7.255735,54.2581254],[-7.2555665,54.2580339],[-7.2548914,54.2578596],[-7.2544895,54.257729],[-7.2539929,54.2576131],[-7.2535852,54.2574904],[-7.2533706,54.2574569],[-7.2531383,54.2573989],[-7.2529027,54.257309],[-7.2526322,54.2572704],[-7.2522836,54.2571737],[-7.2517738,54.2571022],[-7.2513679,54.2569847],[-7.251033,54.2569448],[-7.2508754,54.2568526],[-7.2502957,54.2567155],[-7.2485206,54.2562335],[-7.248095,54.2561027],[-7.2468236,54.255822],[-7.2457637,54.2556378],[-7.2444247,54.2554584],[-7.2440201,54.2553871],[-7.2437487,54.25537],[-7.2434701,54.2553335],[-7.2427401,54.2552178],[-7.2423404,54.25519],[-7.241537,54.2551043],[-7.2396926,54.2548849],[-7.2391163,54.2548322],[-7.2368644,54.2547463],[-7.2361052,54.2546649],[-7.2356539,54.2546523],[-7.2352506,54.2546223],[-7.2346966,54.2545515],[-7.2339192,54.2544873],[-7.2317146,54.2542011],[-7.2305668,54.2540695],[-7.2300715,54.2540264],[-7.2277497,54.2537351],[-7.2247311,54.2533302],[-7.2241187,54.2532765],[-7.2234902,54.2531922],[-7.222967,54.2530986],[-7.2222957,54.253013],[-7.2214301,54.2529381],[-7.2204582,54.2527794],[-7.2197502,54.2526874],[-7.2195193,54.2526809],[-7.218354,54.2524925],[-7.2175497,54.2524324],[-7.2168711,54.2523316],[-7.2161669,54.2522523],[-7.2156533,54.2521623],[-7.2143331,54.2520381],[-7.2108682,54.2515923],[-7.2103679,54.2515426],[-7.2097877,54.2514198],[-7.2092468,54.2513263],[-7.2089674,54.2512388],[-7.2083371,54.2511891],[-7.2079619,54.2510723],[-7.2075668,54.2509991],[-7.2072468,54.2510021],[-7.2070567,54.2509758],[-7.2069643,54.2508953],[-7.2066314,54.2508121],[-7.2059214,54.2507156],[-7.2046308,54.2504965],[-7.2040425,54.2504231],[-7.2021449,54.2500581],[-7.2013797,54.2498683],[-7.2010996,54.2498273],[-7.2002843,54.2496665],[-7.1995439,54.2494503],[-7.1984535,54.249009],[-7.1979033,54.2488423],[-7.1966229,54.248407],[-7.1961878,54.2482258],[-7.1959978,54.248103],[-7.1956824,54.2480701],[-7.1954025,54.248065],[-7.1951974,54.2481148],[-7.1946323,54.2481295],[-7.1939887,54.2480414],[-7.1937768,54.2480475],[-7.1934467,54.248027],[-7.1931051,54.2479859],[-7.1925916,54.2480876],[-7.1922863,54.2481937],[-7.1920112,54.2482638],[-7.1918912,54.248366],[-7.1916461,54.2484771],[-7.1914561,54.248521],[-7.191088,54.2486508],[-7.1906907,54.248708],[-7.1904525,54.2487248],[-7.190256,54.2486507],[-7.1901055,54.2485473],[-7.1880147,54.2467878],[-7.1876947,54.246446],[-7.1874946,54.2462853],[-7.1872394,54.2461363],[-7.1868593,54.2456453],[-7.1867592,54.2454231],[-7.1866341,54.2452387],[-7.1860155,54.2449172],[-7.1843834,54.2441168],[-7.1828164,54.2433959],[-7.1800848,54.2420412],[-7.179668,54.241885],[-7.179567,54.2418878],[-7.1787541,54.2414689],[-7.1771906,54.2407076],[-7.1766892,54.2404857],[-7.1757575,54.2401775],[-7.1755606,54.2400594],[-7.1754962,54.239988],[-7.1754493,54.2398852],[-7.175442,54.2398027],[-7.1755603,54.2393477],[-7.1755606,54.2392227],[-7.1754895,54.2389465],[-7.1754701,54.2389032],[-7.1751618,54.2389062],[-7.1748271,54.238933],[-7.1744509,54.2390493],[-7.1743346,54.2391098],[-7.1741415,54.2392635],[-7.1739988,54.2394101],[-7.1736546,54.2397014],[-7.1736292,54.2397194]]}};
var route6 = {"type":"Feature","properties":{"name":"Bus 6","desc":"\n228 miles"},"geometry":{"type":"LineString","coordinates":[[-8.0315137,54.3758577],[-8.0314705,54.3760491],[-8.0314495,54.3760928],[-8.0323879,54.376528],[-8.0334149,54.3769739],[-8.0355069,54.3778309],[-8.038353,54.3788998],[-8.0429899,54.3805839],[-8.0444017,54.3811129],[-8.0450779,54.3814019],[-8.047549,54.3826359],[-8.0656908,54.392082],[-8.066405,54.3923979],[-8.0679651,54.3929861],[-8.0694275,54.3934737],[-8.072448,54.39439],[-8.0731111,54.3946573],[-8.0739668,54.3951436],[-8.0744365,54.3955469],[-8.0746194,54.3957274],[-8.0749795,54.3961528],[-8.0753999,54.3968334],[-8.0762168,54.398509],[-8.0766385,54.3990118],[-8.0770329,54.399399],[-8.0785049,54.4005021],[-8.0822458,54.403388],[-8.0830652,54.4039779],[-8.0851803,54.4051831],[-8.0854788,54.4054133],[-8.0858225,54.4057696],[-8.0865938,54.4067192],[-8.0869798,54.4071562],[-8.087323,54.4077124],[-8.0889361,54.4108673],[-8.0903774,54.4135735],[-8.0906691,54.4141977],[-8.0908221,54.414454],[-8.091004,54.4147586],[-8.0910539,54.4148059],[-8.0906633,54.4149471],[-8.0903189,54.4150987],[-8.0900697,54.4152194],[-8.0901388,54.4152794],[-8.0903502,54.4155861],[-8.0903754,54.4157281],[-8.090321,54.4159484],[-8.090191,54.4161613],[-8.0901615,54.4162774],[-8.0903074,54.4169431],[-8.0903195,54.4170852],[-8.0901919,54.4177488],[-8.0899568,54.4179698],[-8.089697,54.4181469],[-8.0894442,54.4182499],[-8.0886291,54.4184865],[-8.0884186,54.4185632],[-8.0882596,54.4186481],[-8.0881335,54.4187595],[-8.0880346,54.4188849],[-8.0879779,54.4190179],[-8.0878664,54.4194379],[-8.0878038,54.4194521],[-8.0833211,54.419453],[-8.0806313,54.4193664],[-8.0760531,54.4193764],[-8.0720929,54.4194196],[-8.0705466,54.419288],[-8.0682713,54.4190147],[-8.0656247,54.4187981],[-8.0607368,54.4187172],[-8.0555597,54.4187465],[-8.0544915,54.4186416],[-8.0536848,54.4184997],[-8.0507645,54.4177598],[-8.0490315,54.4173761],[-8.0483681,54.4172864],[-8.0477312,54.4172431],[-8.0470148,54.4172498],[-8.0448465,54.4174084],[-8.0432231,54.4175784],[-8.0426315,54.4176775],[-8.042201,54.4177827],[-8.0411563,54.4180724],[-8.0407731,54.4181434],[-8.039498,54.4183147],[-8.0380764,54.4182933],[-8.0366397,54.4181665],[-8.0320695,54.4176565],[-8.0300046,54.41737],[-8.0295797,54.4173447],[-8.0287347,54.4173948],[-8.0283513,54.4174929],[-8.0265181,54.4180713],[-8.0239581,54.4187407],[-8.0235969,54.4187957],[-8.0232296,54.4188277],[-8.0224538,54.4188374],[-8.0211727,54.4187588],[-8.0199026,54.4186574],[-8.0168264,54.4183415],[-8.0153862,54.418153],[-8.0137266,54.4178071],[-8.012104,54.4173502],[-8.0118714,54.4172634],[-8.0086965,54.4165931],[-8.0074347,54.4162846],[-8.0058332,54.4158413],[-8.0039147,54.4153848],[-8.0030845,54.4152231],[-8.0004346,54.4148932],[-7.9970481,54.4146615],[-7.9956232,54.4144883],[-7.9879446,54.4136713],[-7.9862812,54.4135229],[-7.981763,54.4132215],[-7.9791382,54.4130999],[-7.9785032,54.4131181],[-7.9775233,54.4132429],[-7.9770729,54.4132614],[-7.9744425,54.4132222],[-7.9739703,54.4132364],[-7.9735923,54.4132718],[-7.9732766,54.4133299],[-7.9724302,54.4135784],[-7.969805,54.4142992],[-7.9692185,54.414424],[-7.968265,54.4144728],[-7.9666771,54.4144782],[-7.9636682,54.4144365],[-7.9625247,54.4144682],[-7.9618215,54.4143963],[-7.9588149,54.4139479],[-7.9577764,54.4138246],[-7.9561865,54.4136883],[-7.9554982,54.4135812],[-7.9552745,54.4135996],[-7.9548163,54.4135614],[-7.9543248,54.4135896],[-7.9538479,54.4135631],[-7.9536198,54.4135912],[-7.9513932,54.4135363],[-7.9511963,54.4135514],[-7.9499015,54.4134948],[-7.9495281,54.4135363],[-7.9486947,54.4135313],[-7.9478679,54.41363],[-7.9474797,54.4136166],[-7.9472778,54.4135514],[-7.9468582,54.4135165],[-7.9456566,54.4134797],[-7.9454115,54.4134415],[-7.9444349,54.4133849],[-7.9423513,54.4133698],[-7.9410432,54.413263],[-7.9405315,54.4133213],[-7.9402499,54.4132915],[-7.9397164,54.4133012],[-7.9357531,54.4131297],[-7.9338083,54.4130915],[-7.92909,54.4131164],[-7.9272875,54.413199],[-7.9221848,54.4136248],[-7.9194032,54.41398],[-7.916748,54.414403],[-7.9141198,54.4146313],[-7.9115322,54.4149299],[-7.9086179,54.4153265],[-7.9052362,54.4155748],[-7.9043748,54.4156031],[-7.9034932,54.4155446],[-7.902953,54.415553],[-7.9022199,54.4156614],[-7.9015866,54.4158015],[-7.9011479,54.415848],[-7.9007832,54.4158447],[-7.8999216,54.4157448],[-7.8988064,54.4157662],[-7.8976698,54.4156714],[-7.8965232,54.4158015],[-7.8958081,54.4158413],[-7.8951213,54.4158216],[-7.8943213,54.4157113],[-7.8930065,54.4157981],[-7.892395,54.4159097],[-7.8903697,54.4164448],[-7.8895913,54.4166216],[-7.889013,54.4166862],[-7.8880465,54.4167365],[-7.8874698,54.4168162],[-7.8861682,54.4170947],[-7.8855349,54.4172696],[-7.8852499,54.4173948],[-7.8847797,54.4177649],[-7.8842346,54.4184246],[-7.8838879,54.4187381],[-7.8836163,54.4188914],[-7.8831414,54.4190147],[-7.8819115,54.4192632],[-7.8809697,54.4193328],[-7.8801298,54.4194832],[-7.8786848,54.4196331],[-7.8773182,54.4198399],[-7.8764414,54.4200598],[-7.8745931,54.4207099],[-7.8730145,54.4210882],[-7.8726565,54.4211161],[-7.8722646,54.4210981],[-7.8716565,54.4211513],[-7.8694114,54.4214482],[-7.8684015,54.4215196],[-7.8681748,54.4215812],[-7.8666648,54.4217433],[-7.8628031,54.4219296],[-7.8611448,54.42197],[-7.8597514,54.4219664],[-7.8588646,54.4220029],[-7.857953,54.4219813],[-7.8558164,54.4218096],[-7.8548215,54.421658],[-7.8517189,54.4213154],[-7.8503014,54.4211433],[-7.8489015,54.4209299],[-7.8473912,54.4206382],[-7.8455452,54.4202524],[-7.8453109,54.4201824],[-7.8430012,54.4191518],[-7.8420658,54.418756],[-7.8414393,54.4185036],[-7.8407165,54.4181337],[-7.840383,54.4180193],[-7.8396464,54.4178008],[-7.8393077,54.4177783],[-7.8390511,54.4177816],[-7.8365181,54.4178828],[-7.8353584,54.4178913],[-7.8337233,54.4178343],[-7.8304335,54.4176838],[-7.8244783,54.4169228],[-7.8205565,54.4163863],[-7.8204986,54.4163683],[-7.8190155,54.4170794],[-7.8187417,54.4173281],[-7.8184292,54.4177511],[-7.8181146,54.4181316],[-7.8180993,54.4181666],[-7.8161787,54.4172189],[-7.8155331,54.4168994],[-7.8161787,54.4172189],[-7.8180993,54.4181666],[-7.8182548,54.4182449],[-7.8193869,54.4189449],[-7.8204149,54.4196279],[-7.8232281,54.4214151],[-7.8241972,54.4220303],[-7.8389693,54.4314002],[-7.839288,54.4316779],[-7.8396669,54.4321069],[-7.8398598,54.43255],[-7.8401079,54.4338829],[-7.8402679,54.434283],[-7.8406257,54.4347457],[-7.8407967,54.4349047],[-7.8410411,54.4350593],[-7.841347,54.4351979],[-7.842163,54.4354868],[-7.8433879,54.43584],[-7.8439979,54.4360398],[-7.8445673,54.4363038],[-7.844992,54.436597],[-7.8452829,54.436895],[-7.8454219,54.4372168],[-7.8453729,54.4375549],[-7.8449799,54.438395],[-7.844957,54.4387019],[-7.8450998,54.4389899],[-7.8456459,54.4394246],[-7.8456545,54.4394531],[-7.8602549,54.439488],[-7.8651968,54.439615],[-7.8662028,54.4396269],[-7.867123,54.4395969],[-7.8676341,54.4395217],[-7.8682829,54.4393749],[-7.8688269,54.4391968],[-7.8693129,54.4389729],[-7.8701269,54.43843],[-7.870538,54.4382029],[-7.8712718,54.4379518],[-7.8717669,54.4378669],[-7.87226,54.4378779],[-7.8727499,54.437915],[-7.8732379,54.4380029],[-7.8785749,54.4393969],[-7.879133,54.4395278],[-7.8825299,54.4401429],[-7.88399,54.4406018],[-7.8844629,54.4406829],[-7.884888,54.4406249],[-7.8856619,54.4403969],[-7.8859007,54.4403658],[-7.8861527,54.4403709],[-7.8877004,54.4405808],[-7.8884629,54.4406249],[-7.8890599,54.4406098],[-7.8899769,54.440502],[-7.8997228,54.4387179],[-7.9020737,54.4383054],[-7.9025322,54.4382089],[-7.9028837,54.4380988],[-7.9040266,54.4376961],[-7.9067349,54.4368039],[-7.911928,54.4351059],[-7.9182766,54.4330561],[-7.9184977,54.4329871],[-7.9221629,54.4317749],[-7.9311378,54.4289098],[-7.9320868,54.428658],[-7.9330498,54.4284399],[-7.934735,54.4281569],[-7.9383299,54.4276669],[-7.9424269,54.427305],[-7.9453949,54.4269799],[-7.9469299,54.426773],[-7.954178,54.4257029],[-7.9603799,54.4248409],[-7.9666499,54.4240099],[-7.9677859,54.4238948],[-7.9699458,54.4238449],[-7.9728069,54.423879],[-7.9733839,54.4239179],[-7.974246,54.4240399],[-7.975008,54.4242569],[-7.9754231,54.4244315],[-7.975737,54.42453],[-7.9759786,54.4245753],[-7.9761617,54.4245915],[-7.9761805,54.4246159],[-7.9766117,54.4248221],[-7.9785032,54.4256239],[-7.9796176,54.4261198],[-7.9804806,54.4265523],[-7.9810785,54.4269451],[-7.9828111,54.4281819],[-7.9832194,54.4284987],[-7.9840997,54.4291313],[-7.9852449,54.4300092],[-7.9864178,54.4308615],[-7.9869894,54.4311755],[-7.9877291,54.4314479],[-7.9883337,54.431609],[-7.988915,54.4317395],[-7.9901731,54.4319681],[-7.9923931,54.4323483],[-7.9928748,54.4324202],[-7.993244,54.4324433],[-7.9936076,54.4324341],[-7.9942938,54.4323501],[-7.9969125,54.4318966],[-7.9975253,54.4318096],[-7.9978254,54.4318008],[-7.998193,54.4318116],[-7.9996562,54.4320001],[-8.0003826,54.432168],[-8.0008209,54.4323335],[-8.0034129,54.4336774],[-8.004172,54.4340163],[-8.0045013,54.4341481],[-8.0050362,54.4343279],[-8.0094187,54.4354114],[-8.0157423,54.4369181],[-8.0167158,54.4371667],[-8.0252357,54.439241],[-8.0357315,54.4418453],[-8.0384817,54.4425727],[-8.0390844,54.4427746],[-8.0407439,54.4434086],[-8.0414722,54.4436325],[-8.0420757,54.4437814],[-8.0430619,54.4439589],[-8.0434401,54.4440025],[-8.0442198,54.4440284],[-8.0450037,54.4439972],[-8.0456125,54.443938],[-8.0468265,54.4437737],[-8.0474444,54.4437501],[-8.0486992,54.4438184],[-8.0493446,54.4438685],[-8.0499884,54.4439697],[-8.0505799,54.4441101],[-8.0518313,54.4444858],[-8.0559226,54.4458584],[-8.060077,54.4471928],[-8.0650898,54.4488291],[-8.0692546,54.4501203],[-8.0697861,54.4503084],[-8.0708185,54.4507525],[-8.0712937,54.4509971],[-8.0731533,54.4518811],[-8.0738908,54.4521923],[-8.0754073,54.4528979],[-8.07583,54.4531015],[-8.0780929,54.4541569],[-8.0786658,54.454432],[-8.0835672,54.4566277],[-8.0849238,54.4572312],[-8.0852887,54.4573785],[-8.0859529,54.457732],[-8.0860259,54.4577436],[-8.0859223,54.4578428],[-8.0857295,54.4581923],[-8.0857037,54.4583377],[-8.0857553,54.4586099],[-8.0858106,54.4587233],[-8.0859749,54.4589519],[-8.0864919,54.459433],[-8.0868456,54.459848],[-8.0874579,54.4608579],[-8.0876609,54.461307],[-8.0878248,54.4620159],[-8.0878708,54.4621308],[-8.0879478,54.4622379],[-8.0880549,54.4623389],[-8.0881979,54.4624209],[-8.0887308,54.462639],[-8.0893479,54.4628118],[-8.089998,54.4629159],[-8.0902019,54.462981],[-8.0905558,54.463154],[-8.0906989,54.46326],[-8.0908099,54.4633758],[-8.0908749,54.4636239],[-8.0908889,54.463778],[-8.0909459,54.4639259],[-8.091335,54.464502],[-8.0913989,54.464649],[-8.0914259,54.464803],[-8.091392,54.4651409],[-8.0912448,54.4656149],[-8.0910649,54.466086],[-8.0908719,54.4669329],[-8.0908397,54.4672539],[-8.0908479,54.4674099],[-8.090896,54.4675599],[-8.0910779,54.4678579],[-8.0912279,54.467971],[-8.0914168,54.4680609],[-8.091636,54.4681349],[-8.0921289,54.4682409],[-8.0926549,54.468329],[-8.0929,54.468386],[-8.0931159,54.4684549],[-8.0932978,54.468543],[-8.093855,54.4690189],[-8.0943219,54.4693499],[-8.0946777,54.4695259],[-8.0954634,54.4698526],[-8.0961103,54.4700827],[-8.0962364,54.4701447],[-8.0964358,54.4703123],[-8.0964897,54.4704816],[-8.0964489,54.4707016],[-8.0957806,54.4719816],[-8.0952076,54.4728347],[-8.0949683,54.4733026],[-8.0948386,54.4736344],[-8.0947194,54.4741125],[-8.094481,54.4760875],[-8.0944454,54.4761271],[-8.0949632,54.476294],[-8.095408,54.4764373],[-8.0952698,54.4766138],[-8.0952574,54.4767014],[-8.0953002,54.4767738],[-8.0954365,54.4769337],[-8.0958826,54.4774459],[-8.095894,54.4775182],[-8.095818,54.4776042],[-8.095062,54.4780203],[-8.0948396,54.4781805],[-8.094592,54.4784243],[-8.0944501,54.4785653],[-8.0941571,54.4788486],[-8.093881,54.4791437],[-8.0938138,54.4792864],[-8.0937555,54.4797975],[-8.0937322,54.4798941],[-8.0936881,54.479945],[-8.093626,54.4799781],[-8.0917753,54.4800983],[-8.0915083,54.4801137],[-8.0935642,54.4799858],[-8.093626,54.4799781],[-8.0936881,54.479945],[-8.0937322,54.4798941],[-8.0938371,54.4792178],[-8.093881,54.4791437],[-8.0941571,54.4788486],[-8.0944501,54.4785653],[-8.0948396,54.4781805],[-8.095062,54.4780203],[-8.095818,54.4776042],[-8.095894,54.4775182],[-8.0958826,54.4774459],[-8.0955675,54.4770804],[-8.0954365,54.4769337],[-8.0952574,54.4767014],[-8.0952698,54.4766138],[-8.0953676,54.4764842],[-8.095408,54.4764373],[-8.0949632,54.476294],[-8.0944454,54.4761271],[-8.094481,54.4760875],[-8.0947194,54.4741125],[-8.0948386,54.4736344],[-8.0949683,54.4733026],[-8.0952076,54.4728347],[-8.0957806,54.4719816],[-8.0964489,54.4707016],[-8.0964897,54.4704816],[-8.0964358,54.4703123],[-8.0962364,54.4701447],[-8.0961103,54.4700827],[-8.0954634,54.4698526],[-8.0946777,54.4695259],[-8.0943219,54.4693499],[-8.093855,54.4690189],[-8.0932978,54.468543],[-8.0931159,54.4684549],[-8.0929,54.468386],[-8.0926549,54.468329],[-8.0921289,54.4682409],[-8.091636,54.4681349],[-8.0914168,54.4680609],[-8.0912279,54.467971],[-8.0910779,54.4678579],[-8.090896,54.4675599],[-8.0908479,54.4674099],[-8.0908397,54.4672539],[-8.0908719,54.4669329],[-8.0910649,54.466086],[-8.0912448,54.4656149],[-8.091392,54.4651409],[-8.0914259,54.464803],[-8.0913989,54.464649],[-8.091335,54.464502],[-8.0909459,54.4639259],[-8.0908889,54.463778],[-8.0908749,54.4636239],[-8.0908099,54.4633758],[-8.0906989,54.46326],[-8.0905558,54.463154],[-8.0902019,54.462981],[-8.089998,54.4629159],[-8.0893479,54.4628118],[-8.0887308,54.462639],[-8.0881979,54.4624209],[-8.0880549,54.4623389],[-8.0879478,54.4622379],[-8.0878708,54.4621308],[-8.0878248,54.4620159],[-8.0876609,54.461307],[-8.0874579,54.4608579],[-8.0868456,54.459848],[-8.0864919,54.459433],[-8.0859749,54.4589519],[-8.0858106,54.4587233],[-8.0857553,54.4586099],[-8.0857037,54.4583377],[-8.0857295,54.4581923],[-8.0859223,54.4578428],[-8.0860259,54.4577436],[-8.0859529,54.457732],[-8.0852887,54.4573785],[-8.0849238,54.4572312],[-8.0835672,54.4566277],[-8.0792714,54.4546968],[-8.0786658,54.454432],[-8.0762897,54.4533189],[-8.07583,54.4531015],[-8.0738908,54.4521923],[-8.0731533,54.4518811],[-8.0712937,54.4509971],[-8.0708185,54.4507525],[-8.0697861,54.4503084],[-8.0692546,54.4501203],[-8.0650898,54.4488291],[-8.060077,54.4471928],[-8.0559226,54.4458584],[-8.0518313,54.4444858],[-8.0505799,54.4441101],[-8.0499884,54.4439697],[-8.0493446,54.4438685],[-8.0486992,54.4438184],[-8.0474444,54.4437501],[-8.0468265,54.4437737],[-8.0456125,54.443938],[-8.0450037,54.4439972],[-8.0442198,54.4440284],[-8.0434401,54.4440025],[-8.0430619,54.4439589],[-8.0420757,54.4437814],[-8.0414722,54.4436325],[-8.0407439,54.4434086],[-8.0390844,54.4427746],[-8.0384817,54.4425727],[-8.0357315,54.4418453],[-8.0252357,54.439241],[-8.0167158,54.4371667],[-8.0157423,54.4369181],[-8.0094187,54.4354114],[-8.0050362,54.4343279],[-8.0045013,54.4341481],[-8.004172,54.4340163],[-8.0034129,54.4336774],[-8.0008209,54.4323335],[-8.0003826,54.432168],[-7.9996562,54.4320001],[-7.998193,54.4318116],[-7.9978254,54.4318008],[-7.9975253,54.4318096],[-7.9969125,54.4318966],[-7.9942938,54.4323501],[-7.9936076,54.4324341],[-7.993244,54.4324433],[-7.9928748,54.4324202],[-7.9923931,54.4323483],[-7.9901731,54.4319681],[-7.988915,54.4317395],[-7.9883337,54.431609],[-7.9877291,54.4314479],[-7.9869894,54.4311755],[-7.9864178,54.4308615],[-7.9852449,54.4300092],[-7.9840997,54.4291313],[-7.9832194,54.4284987],[-7.9828111,54.4281819],[-7.9810785,54.4269451],[-7.9804806,54.4265523],[-7.9796176,54.4261198],[-7.9785032,54.4256239],[-7.9766117,54.4248221],[-7.9761805,54.4246159],[-7.9761617,54.4245915],[-7.9759786,54.4245753],[-7.975737,54.42453],[-7.9754231,54.4244315],[-7.975008,54.4242569],[-7.974246,54.4240399],[-7.9733839,54.4239179],[-7.9728069,54.423879],[-7.9699458,54.4238449],[-7.9677859,54.4238948],[-7.9666499,54.4240099],[-7.9603799,54.4248409],[-7.954178,54.4257029],[-7.9469299,54.426773],[-7.9453949,54.4269799],[-7.9424269,54.427305],[-7.9383299,54.4276669],[-7.934735,54.4281569],[-7.9330498,54.4284399],[-7.9320868,54.428658],[-7.9311378,54.4289098],[-7.9221629,54.4317749],[-7.9184977,54.4329871],[-7.911928,54.4351059],[-7.9067349,54.4368039],[-7.9040266,54.4376961],[-7.9028837,54.4380988],[-7.9025322,54.4382089],[-7.9020737,54.4383054],[-7.8997228,54.4387179],[-7.8899769,54.440502],[-7.8890599,54.4406098],[-7.8884629,54.4406249],[-7.8877004,54.4405808],[-7.8861527,54.4403709],[-7.8859007,54.4403658],[-7.8856619,54.4403969],[-7.884888,54.4406249],[-7.8844629,54.4406829],[-7.88399,54.4406018],[-7.8825299,54.4401429],[-7.879133,54.4395278],[-7.8785749,54.4393969],[-7.8732379,54.4380029],[-7.8727499,54.437915],[-7.87226,54.4378779],[-7.8717669,54.4378669],[-7.8712718,54.4379518],[-7.870538,54.4382029],[-7.8701269,54.43843],[-7.8693129,54.4389729],[-7.8688269,54.4391968],[-7.8682829,54.4393749],[-7.8676341,54.4395217],[-7.867123,54.4395969],[-7.8662028,54.4396269],[-7.8651968,54.439615],[-7.8602549,54.439488],[-7.845887,54.4394529],[-7.8456545,54.4394531],[-7.8456459,54.4394246],[-7.8450998,54.4389899],[-7.844957,54.4387019],[-7.8449799,54.438395],[-7.8453729,54.4375549],[-7.8454219,54.4372168],[-7.8452829,54.436895],[-7.844992,54.436597],[-7.8445673,54.4363038],[-7.8439979,54.4360398],[-7.8433879,54.43584],[-7.842163,54.4354868],[-7.841347,54.4351979],[-7.8410411,54.4350593],[-7.8407967,54.4349047],[-7.8406257,54.4347457],[-7.8402679,54.434283],[-7.8401079,54.4338829],[-7.8398598,54.43255],[-7.8396669,54.4321069],[-7.839288,54.4316779],[-7.8389693,54.4314002],[-7.82573,54.4229998],[-7.8241972,54.4220303],[-7.8204149,54.4196279],[-7.8193869,54.4189449],[-7.8182548,54.4182449],[-7.8180993,54.4181666],[-7.8180747,54.4182125],[-7.8180052,54.4182628],[-7.817862,54.4183171],[-7.8177661,54.4183173],[-7.8172374,54.4182443],[-7.8169628,54.4182093],[-7.8177661,54.4183173],[-7.817862,54.4183171],[-7.8180052,54.4182628],[-7.8180747,54.4182125],[-7.8180993,54.4181666],[-7.8150321,54.4166514],[-7.8146979,54.4164888],[-7.8142997,54.4162489],[-7.8139765,54.415995],[-7.8137729,54.4157847],[-7.8136502,54.4155407],[-7.8135934,54.4152976],[-7.8132098,54.4151177],[-7.8128671,54.4150013],[-7.811615,54.4144767],[-7.8106001,54.4141927],[-7.809544,54.4137],[-7.8081077,54.4129546],[-7.8073544,54.4123988],[-7.8069586,54.4119018],[-7.8069197,54.4114274],[-7.8068498,54.4094934],[-7.8067023,54.4093217],[-7.8059647,54.4091229],[-7.8045206,54.4088834],[-7.8037521,54.4087253],[-7.8027196,54.4080754],[-7.8008171,54.4071031],[-7.7961353,54.4053496],[-7.7950591,54.4049789],[-7.7947531,54.4049163],[-7.7931536,54.4049406],[-7.7927599,54.4049592],[-7.7923696,54.4050197],[-7.7921174,54.4050402],[-7.7915886,54.4050311],[-7.7910028,54.405092],[-7.7902732,54.4051959],[-7.789954,54.4052002],[-7.7896211,54.4051823],[-7.7889845,54.4050242],[-7.788611,54.4049545],[-7.786469,54.4047349],[-7.7820511,54.4042335],[-7.7803895,54.404021],[-7.776857,54.4031653],[-7.7753477,54.4027506],[-7.773596,54.4023716],[-7.7702144,54.4015843],[-7.7690812,54.4012657],[-7.7676531,54.4007643],[-7.7643452,54.3993414],[-7.7641159,54.3992748],[-7.7632958,54.3991976],[-7.7612322,54.3991105],[-7.7597331,54.3989462],[-7.7555884,54.3983045],[-7.7548282,54.3981643],[-7.7538069,54.3980376],[-7.7531336,54.3979772],[-7.7529233,54.3979461],[-7.7526981,54.397886],[-7.7526227,54.398068],[-7.7525655,54.3981175],[-7.7524582,54.3981702],[-7.75235,54.3982013],[-7.7499311,54.3985845],[-7.7482588,54.3990555],[-7.7480484,54.399082],[-7.7478662,54.3990844],[-7.7473122,54.399005],[-7.7466359,54.3988823],[-7.7460766,54.3987307],[-7.7441659,54.3983038],[-7.7437078,54.3981499],[-7.7432211,54.3979515],[-7.7414149,54.3970329],[-7.7397445,54.3961351],[-7.7389823,54.3954301],[-7.7382507,54.3949314],[-7.7379247,54.3947703],[-7.737519,54.394656],[-7.7351857,54.3942128],[-7.7347651,54.394108],[-7.7342272,54.3939193],[-7.7338183,54.393814],[-7.7334553,54.3937397],[-7.7331599,54.3937313],[-7.7328054,54.3937449],[-7.7317061,54.3938938],[-7.7313285,54.393913],[-7.730232,54.393888],[-7.7277619,54.393715],[-7.727197,54.393815],[-7.726408,54.39411],[-7.7261386,54.3941568],[-7.7259805,54.3941469],[-7.7256843,54.3940983],[-7.7250544,54.3939871],[-7.7244388,54.3939273],[-7.7241082,54.3938779],[-7.7239951,54.3938465],[-7.7238772,54.3938051],[-7.7235985,54.3935982],[-7.7224661,54.3923461],[-7.7210478,54.3906947],[-7.7197596,54.3892657],[-7.7191176,54.3887849],[-7.7188806,54.3886715],[-7.7173645,54.388029],[-7.7168207,54.3878296],[-7.7158082,54.3876966],[-7.714788,54.3876736],[-7.7137913,54.3875589],[-7.7128971,54.3873937],[-7.7121131,54.387194],[-7.7101353,54.3863866],[-7.7099226,54.3862307],[-7.7098004,54.3861137],[-7.7086344,54.3855079],[-7.7084295,54.3853107],[-7.7084059,54.3850674],[-7.7083034,54.3847579],[-7.7073738,54.3842646],[-7.7067593,54.3840122],[-7.706121,54.3837921],[-7.7045215,54.3830968],[-7.7037375,54.3828606],[-7.7000422,54.3818626],[-7.6983128,54.3811237],[-7.6973634,54.3806533],[-7.6960044,54.3798757],[-7.6951377,54.3792217],[-7.69368,54.3781661],[-7.6922066,54.3772002],[-7.6917723,54.3768055],[-7.691659,54.3766634],[-7.6913241,54.3761333],[-7.6910168,54.3754471],[-7.6908121,54.3751673],[-7.6905599,54.3750065],[-7.6899689,54.3747564],[-7.6889949,54.3744014],[-7.6889595,54.3743865],[-7.6887872,54.3744952],[-7.6886045,54.3745811],[-7.6884258,54.3746344],[-7.6881949,54.3746491],[-7.6881491,54.3746521],[-7.6880408,54.3743939],[-7.6878888,54.3742259],[-7.6872729,54.3737278],[-7.6865679,54.3729979],[-7.6863749,54.372834],[-7.6859569,54.372541],[-7.6854719,54.3722709],[-7.685012,54.371963],[-7.6848678,54.371803],[-7.6845938,54.3714278],[-7.6838609,54.3702609],[-7.6834569,54.3697859],[-7.6832129,54.3695699],[-7.6826189,54.3691798],[-7.6809449,54.368291],[-7.6806448,54.3680918],[-7.6803818,54.3678789],[-7.6801618,54.367659],[-7.679978,54.367431],[-7.6798111,54.3671791],[-7.6796817,54.3669141],[-7.679531,54.3664687],[-7.6786574,54.363416],[-7.6784829,54.3630733],[-7.6781941,54.3626965],[-7.6779978,54.3625039],[-7.67773,54.3623178],[-7.6771149,54.3619788],[-7.6760959,54.361543],[-7.675625,54.3613627],[-7.6742314,54.3607852],[-7.6736919,54.360526],[-7.673453,54.3603788],[-7.67303,54.3600689],[-7.6726479,54.3597299],[-7.6714059,54.3584929],[-7.671036,54.3581518],[-7.6704319,54.3576718],[-7.6695399,54.3570559],[-7.6677164,54.3559699],[-7.6668588,54.355492],[-7.6659707,54.3550882],[-7.6654604,54.3548997],[-7.66339,54.3542692],[-7.6621566,54.3538735],[-7.6597409,54.3530193],[-7.6582411,54.3525328],[-7.6579036,54.3523382],[-7.657776,54.3522199],[-7.657323,54.3515186],[-7.6569889,54.3509151],[-7.6567529,54.3506659],[-7.6558109,54.3500849],[-7.6553807,54.349848],[-7.654975,54.3496872],[-7.6545613,54.3495839],[-7.6539161,54.3495088],[-7.6532859,54.3494684],[-7.6527819,54.3494749],[-7.6524531,54.3494375],[-7.6521663,54.3493596],[-7.6519934,54.3492963],[-7.6515645,54.3491372],[-7.6502083,54.3486045],[-7.6466502,54.3475312],[-7.6460982,54.3473779],[-7.6459482,54.3473224],[-7.6458756,54.3472766],[-7.6456435,54.3472922],[-7.6448165,54.3472533],[-7.6443277,54.3471902],[-7.6439002,54.3471237],[-7.644044,54.3468232],[-7.6442649,54.3465597],[-7.643782,54.3464442],[-7.6433984,54.3463337],[-7.6430438,54.3462324],[-7.6428601,54.3461743],[-7.6426584,54.3460834],[-7.6422484,54.3458822],[-7.6419914,54.3457362],[-7.6415974,54.3454678],[-7.6406998,54.3445992],[-7.6400945,54.3441621],[-7.6394657,54.3438668],[-7.6388353,54.3436618],[-7.638473,54.3435817],[-7.6377775,54.3435001],[-7.6372096,54.3434694],[-7.6351059,54.3434312],[-7.6350663,54.3434312],[-7.6342312,54.3434194],[-7.6334564,54.3434276],[-7.6326508,54.3434891],[-7.6320246,54.3436297],[-7.6318037,54.3437158],[-7.6316638,54.3437892],[-7.6315714,54.3438808],[-7.6314103,54.3439991],[-7.6306505,54.3446812],[-7.6304506,54.3449336],[-7.6300829,54.3448745],[-7.629825,54.3448708],[-7.6289216,54.3449775],[-7.6286001,54.3450119],[-7.629825,54.3448708],[-7.6300829,54.3448745],[-7.6303014,54.3449099],[-7.6304506,54.3449336],[-7.6306505,54.3446812],[-7.6314103,54.3439991],[-7.6315714,54.3438808],[-7.6316638,54.3437892],[-7.6318037,54.3437158],[-7.6320246,54.3436297],[-7.6326508,54.3434891],[-7.6334564,54.3434276],[-7.6340791,54.3434166],[-7.6342312,54.3434194],[-7.6350663,54.3434312],[-7.6372096,54.3434694],[-7.6377775,54.3435001],[-7.638473,54.3435817],[-7.6388353,54.3436618],[-7.6394657,54.3438668],[-7.6400945,54.3441621],[-7.6406998,54.3445992],[-7.6415974,54.3454678],[-7.6419914,54.3457362],[-7.6422484,54.3458822],[-7.6428601,54.3461743],[-7.6430438,54.3462324],[-7.643782,54.3464442],[-7.6442649,54.3465597],[-7.6449228,54.3467087],[-7.6457891,54.3469277],[-7.6459721,54.3469594],[-7.6458944,54.3471473],[-7.6458756,54.3472766],[-7.6459482,54.3473224],[-7.6460982,54.3473779],[-7.6466502,54.3475312],[-7.6502083,54.3486045],[-7.6509302,54.3488774],[-7.6515645,54.3491372],[-7.6521663,54.3493596],[-7.6524531,54.3494375],[-7.6527819,54.3494749],[-7.6532859,54.3494684],[-7.6539161,54.3495088],[-7.6545613,54.3495839],[-7.654975,54.3496872],[-7.6553807,54.349848],[-7.6558109,54.3500849],[-7.6567529,54.3506659],[-7.6569889,54.3509151],[-7.657323,54.3515186],[-7.657776,54.3522199],[-7.6579036,54.3523382],[-7.6582411,54.3525328],[-7.6597409,54.3530193],[-7.6621566,54.3538735],[-7.6636616,54.3543492],[-7.6646305,54.3546463],[-7.6647797,54.3545119],[-7.664971,54.3544012],[-7.6669318,54.3534872],[-7.66757,54.3531685],[-7.6679408,54.3530148],[-7.6684344,54.352855],[-7.6688077,54.3527576],[-7.6694188,54.3526528],[-7.6702807,54.3525537],[-7.6709246,54.352505],[-7.6716756,54.3524827],[-7.6763766,54.3526796],[-7.677163,54.3527319],[-7.6775664,54.3527949],[-7.6782681,54.3529595],[-7.6786356,54.3530869],[-7.6789027,54.3532007],[-7.6793473,54.3534477],[-7.6801644,54.353951],[-7.68147,54.3547836],[-7.6823335,54.3552795],[-7.6833099,54.3557496],[-7.6836929,54.3559008],[-7.6841784,54.3560672],[-7.6851345,54.3563652],[-7.6855535,54.3564805],[-7.6862138,54.3566166],[-7.6871283,54.3567467],[-7.6899713,54.3570778],[-7.690883,54.3572067],[-7.6913612,54.3572997],[-7.6917928,54.3574135],[-7.6921552,54.3575288],[-7.6924711,54.3576515],[-7.6941652,54.3583972],[-7.6959379,54.3591774],[-7.6965881,54.3593976],[-7.6969659,54.3594933],[-7.6973308,54.3595563],[-7.6976854,54.3595878],[-7.6981094,54.3595907],[-7.6985668,54.3595637],[-7.7016583,54.3591878],[-7.7019151,54.3591834],[-7.7035757,54.3577266],[-7.703915,54.3573885],[-7.705841,54.3556863],[-7.706218,54.3553756],[-7.7068141,54.3549399],[-7.7076416,54.3544847],[-7.708022,54.3542975],[-7.7089855,54.3538884],[-7.7093325,54.3537808],[-7.7096203,54.3537133],[-7.7102113,54.3536264],[-7.7143436,54.3532237],[-7.7160628,54.3530305],[-7.7210739,54.3522201],[-7.7218989,54.3521482],[-7.7227864,54.3521072],[-7.7228352,54.3521077],[-7.722866,54.3520323],[-7.7228693,54.3518764],[-7.7228974,54.3517591],[-7.7231107,54.3515478],[-7.7232854,54.3514385],[-7.7234782,54.351377],[-7.7236812,54.3513651],[-7.724208,54.351431],[-7.725881,54.3517382],[-7.7263923,54.351801],[-7.7266389,54.3517965],[-7.7272687,54.3517514],[-7.7297101,54.3515329],[-7.7308252,54.3513981],[-7.7353429,54.3506148],[-7.7397853,54.3499469],[-7.7419883,54.3495509],[-7.7425841,54.3494697],[-7.7433066,54.3493941],[-7.7440042,54.3493885],[-7.7444319,54.3493419],[-7.7447059,54.3492663],[-7.7452455,54.3490752],[-7.7457556,54.3488807],[-7.7459546,54.3487779],[-7.7461846,54.3486021],[-7.7463115,54.3484754],[-7.7465976,54.3481414],[-7.7469675,54.3477629],[-7.747375,54.3474159],[-7.7476269,54.347263],[-7.7479778,54.3472259],[-7.748721,54.347288],[-7.7490767,54.3473727],[-7.7500315,54.3477238],[-7.7503551,54.3477974],[-7.7506672,54.3478307],[-7.7509768,54.3478482],[-7.7511348,54.3478419],[-7.7515986,54.3477363],[-7.7521251,54.3475344],[-7.7522479,54.3473982],[-7.7522457,54.3473247],[-7.7520912,54.346948],[-7.7520573,54.3467921],[-7.7520771,54.3466284],[-7.7522268,54.3464041],[-7.7524874,54.3462022],[-7.7527154,54.3460962],[-7.7534644,54.3458804],[-7.7544523,54.3456248],[-7.7547325,54.3455723],[-7.7549742,54.3455805],[-7.7552067,54.3456652],[-7.7557808,54.3459795],[-7.7567246,54.3465498],[-7.756912,54.3466277],[-7.7570548,54.3466573],[-7.7571777,54.3466638],[-7.7576388,54.346607],[-7.7589443,54.3463931],[-7.7648785,54.345476],[-7.7651599,54.3454473],[-7.7677445,54.3453456],[-7.7687552,54.345335],[-7.7690445,54.3453415],[-7.7693321,54.3453704],[-7.7701576,54.3455248],[-7.7707348,54.3455682],[-7.771128,54.3455816],[-7.7717764,54.345536],[-7.7724067,54.3454367],[-7.7736663,54.3451975],[-7.7742407,54.3450651],[-7.7761929,54.3445469],[-7.7767782,54.3444364],[-7.7789929,54.3440637],[-7.7800667,54.3439223],[-7.7804668,54.3438894],[-7.7806763,54.3439056],[-7.7812798,54.3440186],[-7.7822149,54.3443124],[-7.7830594,54.3446473],[-7.7833278,54.3447373],[-7.7835847,54.3448397],[-7.78409,54.3451169],[-7.784673,54.3453121],[-7.784952,54.3454242],[-7.7851869,54.3455708],[-7.7855965,54.3458729],[-7.7857122,54.3459342],[-7.7859783,54.346013],[-7.7864177,54.346035],[-7.7869303,54.3460856],[-7.7886768,54.3464563],[-7.789321,54.3467159],[-7.7911291,54.3473369],[-7.7914962,54.347471],[-7.7919278,54.3476286],[-7.7919887,54.3476491],[-7.7921955,54.3474768],[-7.7927286,54.3471043],[-7.7934313,54.3468489],[-7.7940319,54.3466837],[-7.7951372,54.3464405],[-7.7956663,54.3463605],[-7.797035,54.3462834],[-7.7979382,54.3462065],[-7.798231,54.3462048],[-7.7986387,54.346248],[-7.7992389,54.3463375],[-7.8003798,54.3466398],[-7.8005982,54.3466854],[-7.8010995,54.3467446],[-7.8019705,54.3467828],[-7.8023178,54.3468281],[-7.8032739,54.347143],[-7.8035017,54.3471784],[-7.8037865,54.347198],[-7.8043884,54.347193],[-7.8054581,54.3470652],[-7.805714,54.3470186],[-7.8059098,54.3469599],[-7.8061864,54.3468394],[-7.8064451,54.3466589],[-7.8067314,54.346401],[-7.8068843,54.3461989],[-7.8075064,54.3452377],[-7.8077193,54.3449436],[-7.8079099,54.3447458],[-7.8081963,54.344583],[-7.8086082,54.3444199],[-7.8099314,54.344085],[-7.8115379,54.3437163],[-7.814889,54.3431484],[-7.8159511,54.3430478],[-7.8196548,54.3422482],[-7.8208648,54.3420699],[-7.8213315,54.3419515],[-7.8230683,54.3414048],[-7.8238513,54.341198],[-7.8241449,54.3410446],[-7.8256346,54.3400449],[-7.8262899,54.3395479],[-7.8274613,54.3384465],[-7.8284329,54.3378548],[-7.8286298,54.337768],[-7.8299964,54.3373664],[-7.8318132,54.3367547],[-7.8348329,54.3358398],[-7.835223,54.3356613],[-7.8363679,54.3349949],[-7.8378713,54.3343931],[-7.8382313,54.3341831],[-7.8388614,54.3337113],[-7.8392165,54.3334966],[-7.8400932,54.3331332],[-7.841618,54.3326031],[-7.8445064,54.3317066],[-7.847663,54.3307732],[-7.8506747,54.3298182],[-7.8513149,54.3296465],[-7.8517381,54.3295781],[-7.8524846,54.3295098],[-7.8557381,54.3293095],[-7.8582099,54.3291233],[-7.8591663,54.3289679],[-7.8603515,54.328736],[-7.8607255,54.3286166],[-7.861268,54.3283264],[-7.8615347,54.3281221],[-7.861885,54.3278107],[-7.8620486,54.3275685],[-7.8620693,54.3275052],[-7.8620607,54.3274135],[-7.8620119,54.3273124],[-7.8617971,54.3271382],[-7.8601904,54.3266331],[-7.8600148,54.3265683],[-7.8599119,54.3264982],[-7.859878,54.3264291],[-7.8599209,54.3263429],[-7.8603212,54.3259895],[-7.8603521,54.3258795],[-7.8603348,54.325763],[-7.8596432,54.3242614],[-7.859588,54.3238579],[-7.859748,54.3230428],[-7.8595508,54.3225956],[-7.8592731,54.3217913],[-7.8590896,54.3214279],[-7.8590099,54.3211165],[-7.858878,54.3209364],[-7.8582082,54.3203329],[-7.8578047,54.3198082],[-7.8574732,54.3194729],[-7.8567233,54.3188822],[-7.8566767,54.3188176],[-7.8566693,54.3187377],[-7.8580579,54.3149346],[-7.8582015,54.3144195],[-7.858468,54.3139731],[-7.858948,54.313508],[-7.8591064,54.3132366],[-7.8591365,54.3129497],[-7.8590866,54.3127446],[-7.8588381,54.3122862],[-7.8585481,54.3119581],[-7.857948,54.3116231],[-7.8575564,54.3113382],[-7.8574132,54.3111215],[-7.857318,54.3106915],[-7.8571131,54.3104396],[-7.8567032,54.3102997],[-7.8558031,54.3102033],[-7.8556148,54.3101563],[-7.855293,54.3100181],[-7.8548714,54.3096346],[-7.8547114,54.3092947],[-7.8547099,54.3091632],[-7.8548316,54.3088847],[-7.8553315,54.3083581],[-7.8556748,54.307758],[-7.8557646,54.3076732],[-7.8568512,54.3071847],[-7.8577779,54.3066493],[-7.8578085,54.306613],[-7.8581408,54.306687],[-7.8586278,54.3067192],[-7.8601338,54.3068678],[-7.860632,54.3068291],[-7.8611191,54.3067579],[-7.8619642,54.3064727],[-7.8622566,54.3063899],[-7.8621218,54.3058443],[-7.8621143,54.3056342],[-7.8621292,54.3055247],[-7.862178,54.3054151],[-7.8639008,54.3031617],[-7.8640809,54.3028398],[-7.8645499,54.3018433],[-7.8647451,54.3013639],[-7.8648727,54.3009411],[-7.8653008,54.3000476],[-7.8653982,54.2999161],[-7.8660719,54.2992466],[-7.86609,54.2992209],[-7.8666152,54.2992421],[-7.8672437,54.2994159],[-7.8675603,54.299436],[-7.8678824,54.2993867],[-7.8681385,54.299315],[-7.868251,54.2992451],[-7.868341,54.2991259],[-7.8683374,54.298834],[-7.8684345,54.2985584],[-7.8685695,54.2983179],[-7.8687167,54.2981361],[-7.868734,54.2980804],[-7.8687183,54.2980553],[-7.8686893,54.2980381],[-7.8695135,54.2975296],[-7.8703359,54.2969684],[-7.8707304,54.2967637],[-7.8709829,54.2966711],[-7.8712938,54.2965244],[-7.8713976,54.2964415],[-7.8722805,54.2954345],[-7.8730671,54.2944995],[-7.8732762,54.2942547],[-7.8752886,54.2919486],[-7.8757662,54.2913343],[-7.8758238,54.2913088],[-7.8759007,54.2913062],[-7.8768555,54.2914419],[-7.8783166,54.2915034],[-7.8786269,54.291514],[-7.8789934,54.291504],[-7.8794455,54.2914444],[-7.8796998,54.2914131],[-7.8811446,54.2911847],[-7.8820171,54.2910696],[-7.8825792,54.2910433],[-7.8828093,54.2910482],[-7.8836877,54.2911443],[-7.8874625,54.2917362],[-7.8881396,54.2917763],[-7.8888344,54.291751],[-7.8891944,54.2917111],[-7.8895509,54.2916502],[-7.8898532,54.2915766],[-7.9012381,54.2884641],[-7.9026351,54.2880964],[-7.9033082,54.2879473],[-7.9041401,54.2878148],[-7.9049861,54.2877202],[-7.9086047,54.2874365],[-7.9130188,54.2870498],[-7.9178758,54.2866525],[-7.9182072,54.2866462],[-7.9187544,54.2866631],[-7.9194056,54.2867231],[-7.920721,54.2868969],[-7.921407,54.286956],[-7.9221278,54.2869889],[-7.9227649,54.286974],[-7.9238901,54.2869012],[-7.9267083,54.2865672],[-7.9272577,54.286541],[-7.92841,54.2865959],[-7.9292921,54.2866747],[-7.9315614,54.2868271],[-7.9319484,54.286839],[-7.9322616,54.2868271],[-7.9326484,54.28679],[-7.9333767,54.286668],[-7.9361085,54.2860826],[-7.9370862,54.2858982],[-7.9377914,54.2858298],[-7.938532,54.2858339],[-7.9388918,54.285863],[-7.9392549,54.2859129],[-7.9399757,54.2860811],[-7.9424659,54.286801],[-7.943164,54.286975],[-7.943533,54.2870459],[-7.9446729,54.2870916],[-7.9450624,54.2870767],[-7.9454392,54.2870426],[-7.9458645,54.2869593],[-7.9462105,54.2868671],[-7.9468217,54.2866456],[-7.9473792,54.2863662],[-7.9478146,54.2860542],[-7.9480259,54.2858536],[-7.9481915,54.2856558],[-7.9483366,54.2854301],[-7.9484306,54.2852056],[-7.9484764,54.284965],[-7.948474,54.2842546],[-7.9484994,54.2840241],[-7.9485834,54.2837686],[-7.9486879,54.2835618],[-7.948949,54.2832118],[-7.9491168,54.2830438],[-7.949313,54.2828859],[-7.9495737,54.28274],[-7.9498283,54.2826151],[-7.9500906,54.2825111],[-7.9504114,54.28241],[-7.9507068,54.2823416],[-7.9513738,54.2822511],[-7.9544064,54.2819978],[-7.9551114,54.281965],[-7.9557899,54.2819629],[-7.9587314,54.2820371],[-7.959429,54.2820697],[-7.9630315,54.2823699],[-7.9639276,54.2824664],[-7.9650784,54.2826463],[-7.9654934,54.2826938],[-7.9665678,54.2827639],[-7.9677261,54.282752],[-7.9697782,54.2826136],[-7.9701194,54.2826016],[-7.9709239,54.2826061],[-7.9720747,54.2826613],[-7.9728359,54.2827194],[-7.9730563,54.2827413],[-7.973391,54.2827831],[-7.9742106,54.2829451],[-7.9751603,54.2832156],[-7.9758732,54.283397],[-7.9763798,54.283498],[-7.9816865,54.284401],[-7.9820514,54.2844347],[-7.9825409,54.2844362],[-7.9839138,54.2842991],[-7.9842342,54.2842829],[-7.9850584,54.2842752],[-7.9853157,54.2843089],[-7.9859955,54.2844438],[-7.9872044,54.2848322],[-7.9877388,54.2849739],[-7.9880349,54.2850369],[-7.9877324,54.2858695],[-7.9872964,54.2865745],[-7.9870492,54.2868854],[-7.9857461,54.2880227],[-7.985764,54.2881473],[-7.9862922,54.288805],[-7.9870503,54.2901901],[-7.987315,54.2910661],[-7.9874994,54.2914881],[-7.9890758,54.2944747],[-7.9892399,54.2949718],[-7.9894492,54.2960293],[-7.9893973,54.296301],[-7.9893051,54.2964348],[-7.9891799,54.2965629],[-7.9876129,54.2976362],[-7.985878,54.2989808],[-7.9856748,54.2992194],[-7.9856394,54.2993299],[-7.9856427,54.2995677],[-7.9857403,54.299775],[-7.986268,54.3007012],[-7.9863533,54.3009025],[-7.9864073,54.3011147],[-7.9867396,54.303115],[-7.9869205,54.3043637],[-7.9869954,54.3046813],[-7.9870889,54.3049092],[-7.9868859,54.3049394],[-7.9859426,54.3049199],[-7.9853883,54.3048666],[-7.9851961,54.3048727],[-7.9846824,54.3050447],[-7.9842448,54.305276],[-7.9838689,54.305358],[-7.9835879,54.3053909],[-7.9834379,54.3053919],[-7.9829449,54.305352],[-7.98261,54.3053639],[-7.9819299,54.305455],[-7.981604,54.3055235],[-7.9814335,54.3055964],[-7.9813566,54.305697],[-7.9818789,54.3061596],[-7.9819556,54.3062727],[-7.981991,54.3064158],[-7.981924,54.306847],[-7.9817207,54.3072979],[-7.9817684,54.3073961],[-7.9819454,54.3075089],[-7.981937,54.3075684],[-7.9818891,54.3076363],[-7.9817913,54.3076971],[-7.9815356,54.3078111],[-7.9813652,54.3079178],[-7.9808764,54.3084067],[-7.980543,54.3087979],[-7.980497,54.3088828],[-7.980459,54.3090508],[-7.9805139,54.3094198],[-7.9805469,54.3100108],[-7.9805989,54.3102159],[-7.9806348,54.310625],[-7.980801,54.3111798],[-7.9807514,54.3112568],[-7.9803368,54.3114078],[-7.9791369,54.311931],[-7.9789605,54.3121061],[-7.9788752,54.3125109],[-7.9789311,54.3126962],[-7.9790341,54.3128935],[-7.9790238,54.3130579],[-7.9791699,54.313204],[-7.9792589,54.3132619],[-7.9794848,54.313364],[-7.9796109,54.3133889],[-7.9797909,54.3134869],[-7.9799039,54.3135199],[-7.979971,54.3136048],[-7.9799229,54.3136819],[-7.9797499,54.3136579],[-7.9795159,54.313584],[-7.9792758,54.3135448],[-7.9790749,54.3135899],[-7.978995,54.3136329],[-7.9789465,54.3143],[-7.978905,54.3144201],[-7.9786671,54.3146323],[-7.978574,54.314766],[-7.9784827,54.3152572],[-7.9785056,54.3154488],[-7.978672,54.315598],[-7.9788821,54.3157266],[-7.9789175,54.3158007],[-7.9788363,54.3159437],[-7.9786781,54.3160577],[-7.978691,54.316613],[-7.9785049,54.31718],[-7.9783039,54.3175],[-7.9777069,54.3188359],[-7.977391,54.3194103],[-7.976608,54.3211988],[-7.9759415,54.3226038],[-7.9757988,54.3229979],[-7.9754695,54.3236504],[-7.9754364,54.3238007],[-7.9754863,54.3241392],[-7.9756025,54.3243551],[-7.9757046,54.3246825],[-7.9759354,54.3251821],[-7.9760248,54.3257644],[-7.9760186,54.3259558],[-7.9759644,54.3260711],[-7.975979,54.3261464],[-7.9760691,54.3262218],[-7.9761557,54.3262943],[-7.9785909,54.3276536],[-7.979898,54.3288029],[-7.9808248,54.3297148],[-7.9814009,54.3301237],[-7.9819435,54.3304279],[-7.9821182,54.3305819],[-7.9824349,54.330993],[-7.982569,54.3310839],[-7.9830717,54.3312865],[-7.9838129,54.3314752],[-7.9846159,54.3317341],[-7.986201,54.3323892],[-7.9873742,54.3327802],[-7.9885213,54.3331281],[-7.989306,54.3332499],[-7.989613,54.3332829],[-7.9898959,54.3334059],[-7.9907505,54.3339239],[-7.9911189,54.3341049],[-7.992021,54.3343284],[-7.9931384,54.3347075],[-7.9941118,54.3350161],[-7.9965468,54.3356058],[-7.9969702,54.3357312],[-7.9974145,54.3358031],[-7.9985049,54.3358616],[-7.9987585,54.3358906],[-7.9990685,54.3359549],[-7.9993471,54.336035],[-8.0001745,54.3363455],[-8.0006648,54.3364662],[-8.0009485,54.3364923],[-8.0016579,54.3364634],[-8.0025459,54.3363082],[-8.0030521,54.3361708],[-8.0042157,54.3356414],[-8.0044528,54.3355211],[-8.0051944,54.3361451],[-8.0054281,54.3362889],[-8.0058925,54.3365103],[-8.0064543,54.3367376],[-8.0083994,54.3374476],[-8.0095686,54.3378509],[-8.0102472,54.3381141],[-8.0110079,54.3384579],[-8.011491,54.3387066],[-8.0117801,54.3389187],[-8.0119718,54.3391061],[-8.0120789,54.3392898],[-8.0122411,54.3396513],[-8.0125756,54.3407247],[-8.0126472,54.3408762],[-8.0127446,54.3409917],[-8.0128519,54.3410788],[-8.0133162,54.3413666],[-8.0144493,54.3419459],[-8.015614,54.3424499],[-8.0187468,54.343963],[-8.0202689,54.3448119],[-8.0205515,54.3449975],[-8.0207301,54.3451603],[-8.0209281,54.345429],[-8.0217432,54.3470946],[-8.0218375,54.3473276],[-8.0220876,54.3476588],[-8.0224514,54.3478784],[-8.0231009,54.3481396],[-8.025858,54.3491446],[-8.0292905,54.3503749],[-8.0304163,54.3507583],[-8.0306558,54.3508549],[-8.0310764,54.3511179],[-8.0321247,54.3518716],[-8.0332,54.3526718],[-8.0333594,54.3528206],[-8.0334334,54.3529564],[-8.033816,54.3540566],[-8.0339204,54.3542554],[-8.0340397,54.3544064],[-8.0341844,54.3545409],[-8.0347784,54.3549716],[-8.0354629,54.3555965],[-8.0359753,54.3559288],[-8.0362467,54.356048],[-8.036631,54.3561806],[-8.0373125,54.3563261],[-8.0377936,54.3563965],[-8.0376213,54.3567733],[-8.0375479,54.35687],[-8.037366,54.3569398],[-8.0349389,54.3569178],[-8.0340067,54.3569929],[-8.0331473,54.3571747],[-8.0328667,54.3572444],[-8.0325693,54.357315],[-8.031803,54.3574699],[-8.0309847,54.3577599],[-8.0305999,54.3580079],[-8.030328,54.3582768],[-8.0280408,54.3610309],[-8.0277689,54.3614958],[-8.027716,54.3618429],[-8.0278329,54.3625559],[-8.0283889,54.364548],[-8.0318229,54.3728358],[-8.0318559,54.3739849],[-8.0316245,54.375367],[-8.0314705,54.3760491],[-8.0314495,54.3760928],[-8.0310395,54.3771814],[-8.0308998,54.3774306],[-8.0302402,54.3780341],[-8.0300348,54.3782818],[-8.0295324,54.3791895],[-8.0294384,54.3794389],[-8.0294097,54.3796185],[-8.0294041,54.3799358],[-8.0294954,54.3806308],[-8.0294298,54.3808783],[-8.0291985,54.3814288],[-8.0288986,54.3828598],[-8.0287902,54.3830943],[-8.0285534,54.3833104],[-8.0282595,54.3834734],[-8.0279255,54.3836095],[-8.0275459,54.383731],[-8.0271462,54.3838208],[-8.026761,54.3838621],[-8.026173,54.3838621],[-8.025842,54.3838157],[-8.0254851,54.3837094],[-8.0243234,54.3832705],[-8.0217602,54.3824409],[-8.0213435,54.382328],[-8.0210552,54.3822681],[-8.02067,54.3822299],[-8.0203416,54.3822265],[-8.0199275,54.3822615],[-8.0189401,54.3825324],[-8.0185005,54.3825856],[-8.0181096,54.3825924],[-8.0176586,54.3825691],[-8.016965,54.3824925],[-8.0164026,54.3824841],[-8.0160228,54.3825057],[-8.0149982,54.3826954],[-8.0147272,54.3827335],[-8.0144672,54.3827419],[-8.0141649,54.3827071],[-8.0133,54.3825009],[-8.0129774,54.3824476],[-8.0125237,54.3824212],[-8.0116732,54.3824392],[-8.0111394,54.3824975],[-8.0105029,54.3826039],[-8.0098148,54.3827602],[-8.0092328,54.3829347],[-8.0077426,54.3835231],[-8.0047658,54.3847489],[-8.0041863,54.3849667],[-8.0037525,54.3851064],[-8.0031644,54.3852576],[-8.0028791,54.3852975],[-8.0016088,54.3852708],[-8.0013292,54.3852775],[-8.0010837,54.3853059],[-8.0007125,54.3854079],[-8.0004577,54.385554],[-7.9998733,54.3858112],[-7.9995822,54.3859092],[-7.9992883,54.3859757],[-7.9990057,54.3859989],[-7.9987716,54.3859939],[-7.9982636,54.3859175],[-7.9976441,54.3857697],[-7.9965938,54.3854754],[-7.9963339,54.3854521],[-7.995704,54.3854459],[-7.9954779,54.3854655],[-7.9932,54.3859125],[-7.992552,54.3860122],[-7.9922611,54.3860405],[-7.9919413,54.3860355],[-7.9913363,54.3859324],[-7.9903087,54.3856083],[-7.9893811,54.3852876],[-7.9884019,54.384867],[-7.9868721,54.3842918],[-7.9852221,54.383755],[-7.9849398,54.383677],[-7.9846114,54.3836136],[-7.9842918,54.3835822],[-7.9840805,54.3835771],[-7.9837123,54.3836338],[-7.9831414,54.3838148],[-7.9814717,54.384518],[-7.9812329,54.384575],[-7.9810664,54.3845943],[-7.9803727,54.384553],[-7.9789,54.384119],[-7.9782607,54.3839495],[-7.9773158,54.3837399],[-7.9766735,54.3836403],[-7.9762425,54.3835971],[-7.9757459,54.3835939],[-7.9736138,54.3837783],[-7.9727149,54.383886],[-7.9721389,54.383994],[-7.9718327,54.3840743],[-7.970982,54.3843701],[-7.970771,54.3845062],[-7.9705767,54.3846958],[-7.9703068,54.385266],[-7.9699039,54.3857879],[-7.9693437,54.3861586],[-7.9691097,54.3862484],[-7.9685844,54.3863746],[-7.9681819,54.3864095],[-7.9658246,54.3862595],[-7.9655388,54.3862582],[-7.9642717,54.3863396],[-7.9638235,54.3864078],[-7.9630356,54.3865991],[-7.9619208,54.386918],[-7.9618368,54.3869679],[-7.9614174,54.3873767],[-7.9609778,54.3876394],[-7.9597447,54.388271],[-7.9588599,54.3886897],[-7.9570502,54.3894445],[-7.9566136,54.3895924],[-7.9563651,54.3896488],[-7.9560883,54.389687],[-7.9557886,54.3896937],[-7.9555318,54.3896654],[-7.9524975,54.3890522],[-7.9522323,54.3890172],[-7.9516642,54.3889775],[-7.9499088,54.3889026],[-7.9492895,54.3888942],[-7.9487899,54.3889158],[-7.9480735,54.3890138],[-7.9478167,54.3890921],[-7.9473998,54.3892532],[-7.9471601,54.3893862],[-7.9468975,54.3896073],[-7.9461839,54.3904199],[-7.9459498,54.3906177],[-7.9456873,54.3908021],[-7.945399,54.3909351],[-7.9451308,54.3910283],[-7.9444827,54.3911844],[-7.9440318,54.3912326],[-7.9434723,54.3912509],[-7.9427617,54.391241],[-7.9422591,54.3912509],[-7.941632,54.3913129],[-7.9410119,54.3914172],[-7.9402214,54.3916431],[-7.9392338,54.3921189],[-7.9385247,54.3924249],[-7.9378156,54.3927844],[-7.9375818,54.3928814],[-7.937105,54.3929788],[-7.9364775,54.3930876],[-7.9348845,54.3932851],[-7.9321632,54.3935397],[-7.9308873,54.3936401],[-7.9290939,54.3936902],[-7.927813,54.393606],[-7.9246282,54.3934492],[-7.9241069,54.3934749],[-7.9236329,54.3936289],[-7.923051,54.3939459],[-7.9214383,54.3950052],[-7.9213003,54.3951959],[-7.9211889,54.3955279],[-7.9208659,54.396744],[-7.9206249,54.3971439],[-7.9203669,54.3973939],[-7.9198778,54.3977005],[-7.9192312,54.3980668],[-7.9186534,54.3983079],[-7.9179428,54.3984513],[-7.9144904,54.3987348],[-7.9099119,54.3991865],[-7.9089392,54.399242],[-7.9082064,54.3992386],[-7.9066927,54.3991339],[-7.9038065,54.3988203],[-7.9022746,54.3985923],[-7.9014413,54.3985219],[-7.9004859,54.3985019],[-7.8997319,54.3985059],[-7.8986909,54.3985459],[-7.8945551,54.3989209],[-7.8939605,54.3989995],[-7.8936284,54.3990783],[-7.8926897,54.3994035],[-7.8921039,54.3996782],[-7.8918178,54.3998555],[-7.8900838,54.4011389],[-7.8890398,54.4019365],[-7.8886159,54.4021471],[-7.8879177,54.4023749],[-7.8868622,54.4024252],[-7.8864982,54.4024079],[-7.8858988,54.4022969],[-7.884443,54.4017079],[-7.8837261,54.4014785],[-7.8824393,54.4012251],[-7.8812191,54.401008],[-7.8807739,54.4009333],[-7.880383,54.4009089],[-7.8795507,54.4010039],[-7.8783318,54.4010009],[-7.8778608,54.4010307],[-7.8767095,54.4011776],[-7.876193,54.4012989],[-7.8756871,54.4014451],[-7.8751903,54.4016262],[-7.8748383,54.4017228],[-7.8744583,54.4017739],[-7.8740084,54.4017957],[-7.8729167,54.4017819],[-7.8726763,54.4017955],[-7.8724848,54.4018312],[-7.87229,54.4019166],[-7.8722341,54.4019957],[-7.8722089,54.4020879],[-7.8722618,54.4023099],[-7.872428,54.4024819],[-7.8728748,54.402684],[-7.8741709,54.402906],[-7.8747138,54.403099],[-7.8750038,54.4032798],[-7.8752309,54.4035289],[-7.8754838,54.4038869],[-7.875534,54.4041309],[-7.875538,54.4044555],[-7.8753829,54.4046762],[-7.8744449,54.4053719],[-7.8727528,54.4063159],[-7.8721478,54.4065668],[-7.8712379,54.406771],[-7.867747,54.4070578],[-7.8668568,54.4072448],[-7.865436,54.407433],[-7.8643709,54.4076189],[-7.8630969,54.407796],[-7.8610659,54.4079999],[-7.859947,54.4080709],[-7.8595839,54.408138],[-7.8591728,54.4083069],[-7.859,54.4084598],[-7.8587429,54.4087869],[-7.858507,54.409475],[-7.8584319,54.4101928],[-7.8585479,54.4106669],[-7.8588106,54.4111501],[-7.8588419,54.4112907],[-7.8588324,54.4114023],[-7.8587884,54.4115062],[-7.8587038,54.4116347],[-7.8584432,54.4118543],[-7.8582764,54.411951],[-7.857893,54.4120944],[-7.8576174,54.4121501],[-7.855358,54.4124219],[-7.8544319,54.4125169],[-7.8538028,54.4125279],[-7.8531949,54.4124969],[-7.851702,54.412315],[-7.8502498,54.4121699],[-7.8484729,54.41197],[-7.8471307,54.4118729],[-7.8466624,54.4118625],[-7.8463633,54.411908],[-7.8460894,54.4119845],[-7.8456879,54.4122419],[-7.8451648,54.4128449],[-7.8446019,54.4132949],[-7.8437868,54.4136419],[-7.8428149,54.4138369],[-7.841762,54.4138978],[-7.8399679,54.4138349],[-7.8382449,54.4137948],[-7.837268,54.4137449],[-7.8356769,54.4136149],[-7.8325,54.4133249],[-7.8316718,54.4131818],[-7.8311209,54.4130306],[-7.830802,54.4129905],[-7.8305518,54.4129956],[-7.8286219,54.4133979],[-7.8276928,54.4135249],[-7.8271169,54.4135398],[-7.8262649,54.4134528],[-7.8254394,54.4133316],[-7.8248531,54.4133117],[-7.8242928,54.4133517],[-7.8238029,54.4135229],[-7.8233357,54.4137581],[-7.8230685,54.4141143],[-7.8228049,54.414598],[-7.8223228,54.415192],[-7.821792,54.415675],[-7.8210959,54.4160823],[-7.8190155,54.4170794],[-7.8187417,54.4173281],[-7.8184292,54.4177511],[-7.8181146,54.4181316],[-7.8180993,54.4181666],[-7.8161787,54.4172189],[-7.81571,54.4169869],[-7.8150321,54.4166514],[-7.8146979,54.4164888],[-7.8142997,54.4162489],[-7.8139765,54.415995],[-7.8137729,54.4157847],[-7.8136502,54.4155407],[-7.8127431,54.4117413],[-7.8123331,54.4103063],[-7.8121414,54.409963],[-7.8118814,54.4096463],[-7.811285,54.4092313],[-7.8089461,54.4081989],[-7.8074094,54.4075181],[-7.8074047,54.407503],[-7.8087415,54.4062047],[-7.8117913,54.402993],[-7.8123618,54.4023673],[-7.8129219,54.4018199],[-7.8133214,54.4014982],[-7.8142263,54.4008515],[-7.8150947,54.4003747],[-7.8160297,54.3999513],[-7.8170631,54.3995849],[-7.8182181,54.3992695],[-7.8190815,54.3991215],[-7.8199448,54.3990464],[-7.8207796,54.3990132],[-7.8218615,54.3990231],[-7.8231731,54.3989397],[-7.823663,54.3988613],[-7.824648,54.3985033],[-7.8251764,54.3981931],[-7.8261945,54.3973747],[-7.8261964,54.3971832],[-7.8263365,54.3968299],[-7.8271348,54.3955847],[-7.8277115,54.3948698],[-7.8283381,54.3943449],[-7.8288946,54.3939813],[-7.8293249,54.3937716],[-7.832458,54.3924398],[-7.8357853,54.3909642],[-7.8358309,54.3909504],[-7.8356929,54.3907848],[-7.835255,54.389977],[-7.8350898,54.3896013],[-7.834398,54.3873268],[-7.8343149,54.3871929],[-7.8341929,54.3870718],[-7.8336479,54.3867649],[-7.8330999,54.3864179],[-7.8325679,54.3859028],[-7.8324104,54.3857223],[-7.8321097,54.3855161],[-7.8305429,54.3852168],[-7.8295469,54.384968],[-7.8291219,54.3847899],[-7.828765,54.384553],[-7.8283019,54.3841249],[-7.8279799,54.3836518],[-7.8278528,54.3831269],[-7.8280249,54.3814649],[-7.8279968,54.3795249],[-7.82809,54.3770469],[-7.8281294,54.3765348],[-7.8280646,54.376528],[-7.827645,54.3763769],[-7.8269929,54.376175],[-7.8264829,54.37608],[-7.8244649,54.375863],[-7.823674,54.3756272],[-7.822161,54.3750151],[-7.8216987,54.3748868],[-7.8212498,54.3747787],[-7.8223672,54.3731117],[-7.8232344,54.3719049],[-7.8239379,54.3708439],[-7.8240342,54.3706137],[-7.8240728,54.3703723],[-7.8239571,54.3701197],[-7.8237548,54.369912],[-7.8235332,54.3697211],[-7.8231767,54.3695415],[-7.8224057,54.3693169],[-7.8204784,54.3688959],[-7.8185992,54.3684299],[-7.8175969,54.3682841],[-7.8169225,54.3681213],[-7.8163249,54.3679078],[-7.8159587,54.3676552],[-7.8156793,54.3674194],[-7.8156022,54.3672229],[-7.8156793,54.3670883],[-7.8158624,54.3669255],[-7.8161804,54.3667962],[-7.8167297,54.3666615],[-7.8171344,54.366538],[-7.8194182,54.3651287],[-7.8198615,54.3648143],[-7.820276,54.364382],[-7.8206528,54.3641402],[-7.8207178,54.3640713],[-7.8207333,54.3640233],[-7.8206809,54.3639082],[-7.8206049,54.3638292],[-7.8201314,54.3636016],[-7.8197461,54.3632704],[-7.8191774,54.362883],[-7.8186281,54.3625797],[-7.8178668,54.362226],[-7.817279,54.3619284],[-7.8167105,54.361423],[-7.8161998,54.3611874],[-7.8154482,54.3609628],[-7.8145711,54.3607437],[-7.814176,54.3605696],[-7.8133955,54.3601316],[-7.8128654,54.3597049],[-7.8125089,54.3593568],[-7.8122198,54.359031],[-7.8118537,54.3587671],[-7.8111501,54.3579136],[-7.8106971,54.3572453],[-7.8105528,54.3567681],[-7.8105528,54.3564593],[-7.8105911,54.3562065],[-7.8106008,54.3558358],[-7.8106535,54.3553333],[-7.8107079,54.3551427],[-7.8108579,54.3549203],[-7.8109806,54.3548011],[-7.8117369,54.3544755],[-7.8119209,54.3542889],[-7.8120163,54.3541222],[-7.811996,54.3539434],[-7.8115461,54.3534112],[-7.8113418,54.3532644],[-7.8109601,54.3531413],[-7.8102652,54.3529547],[-7.8099586,54.3528155],[-7.8097269,54.3526488],[-7.8096108,54.3523907],[-7.8095293,54.3522875],[-7.809427,54.3522359],[-7.8091817,54.3521605],[-7.8090181,54.3520571],[-7.808698,54.3511874],[-7.8085411,54.3509212],[-7.8082686,54.3502779],[-7.8070966,54.3490308],[-7.8064289,54.3483478],[-7.8062652,54.3482247],[-7.8056315,54.347903],[-7.8050678,54.3476489],[-7.8045772,54.3473669],[-7.8043952,54.3472177],[-7.8043884,54.347193],[-7.8054581,54.3470652],[-7.805714,54.3470186],[-7.8059098,54.3469599],[-7.8061864,54.3468394],[-7.8064451,54.3466589],[-7.8067314,54.346401],[-7.8068843,54.3461989],[-7.8075064,54.3452377],[-7.8077193,54.3449436],[-7.8079099,54.3447458],[-7.8081963,54.344583],[-7.8086082,54.3444199],[-7.8099314,54.344085],[-7.8115379,54.3437163],[-7.814889,54.3431484],[-7.8159511,54.3430478],[-7.8196548,54.3422482],[-7.8208648,54.3420699],[-7.8213315,54.3419515],[-7.8230683,54.3414048],[-7.8238513,54.341198],[-7.8241449,54.3410446],[-7.8256346,54.3400449],[-7.8262899,54.3395479],[-7.8274613,54.3384465],[-7.8284329,54.3378548],[-7.8286298,54.337768],[-7.8299964,54.3373664],[-7.8318132,54.3367547],[-7.8348329,54.3358398],[-7.835223,54.3356613],[-7.8363679,54.3349949],[-7.8378713,54.3343931],[-7.8382313,54.3341831],[-7.8388614,54.3337113],[-7.8392165,54.3334966],[-7.8400932,54.3331332],[-7.841618,54.3326031],[-7.8445064,54.3317066],[-7.847663,54.3307732],[-7.8506747,54.3298182],[-7.8513149,54.3296465],[-7.8517381,54.3295781],[-7.8524846,54.3295098],[-7.8557381,54.3293095],[-7.8582099,54.3291233],[-7.8591663,54.3289679],[-7.8603515,54.328736],[-7.8607255,54.3286166],[-7.861268,54.3283264],[-7.8615347,54.3281221],[-7.861885,54.3278107],[-7.8620486,54.3275685],[-7.8620693,54.3275052],[-7.8620607,54.3274135],[-7.8620119,54.3273124],[-7.8617971,54.3271382],[-7.8601904,54.3266331],[-7.8600148,54.3265683],[-7.8599119,54.3264982],[-7.859878,54.3264291],[-7.8599209,54.3263429],[-7.8603212,54.3259895],[-7.8603521,54.3258795],[-7.8603348,54.325763],[-7.8596432,54.3242614],[-7.859588,54.3238579],[-7.859748,54.3230428],[-7.8595508,54.3225956],[-7.8592731,54.3217913],[-7.8590896,54.3214279],[-7.8590099,54.3211165],[-7.858878,54.3209364],[-7.8582082,54.3203329],[-7.8578047,54.3198082],[-7.8574732,54.3194729],[-7.8567233,54.3188822],[-7.8566767,54.3188176],[-7.8566693,54.3187377],[-7.8580579,54.3149346],[-7.8582015,54.3144195],[-7.858468,54.3139731],[-7.858948,54.313508],[-7.8591064,54.3132366],[-7.8591365,54.3129497],[-7.8590866,54.3127446],[-7.8588381,54.3122862],[-7.8585481,54.3119581],[-7.857948,54.3116231],[-7.8575564,54.3113382],[-7.8574132,54.3111215],[-7.857318,54.3106915],[-7.8571131,54.3104396],[-7.8567032,54.3102997],[-7.8558031,54.3102033],[-7.8556148,54.3101563],[-7.855293,54.3100181],[-7.8548714,54.3096346],[-7.8547114,54.3092947],[-7.8547099,54.3091632],[-7.8548316,54.3088847],[-7.8553315,54.3083581],[-7.8556748,54.307758],[-7.8557646,54.3076732],[-7.8568512,54.3071847],[-7.8577779,54.3066493],[-7.8578085,54.306613],[-7.8581408,54.306687],[-7.8586278,54.3067192],[-7.8601338,54.3068678],[-7.860632,54.3068291],[-7.8611191,54.3067579],[-7.8619642,54.3064727],[-7.8622566,54.3063899],[-7.8627849,54.3063129],[-7.8633822,54.3061904],[-7.8642473,54.3060712],[-7.866044,54.3059676],[-7.8672541,54.3059397],[-7.8679388,54.3057756],[-7.8682439,54.305678],[-7.8684669,54.3056284],[-7.8686872,54.3056144],[-7.86887,54.3056144],[-7.8695675,54.3056856],[-7.8706525,54.3058858],[-7.8718152,54.3058923],[-7.872236,54.3058212],[-7.8728119,54.305634],[-7.8730553,54.305634],[-7.8734098,54.305705],[-7.873781,54.3058173],[-7.8739989,54.3058523],[-7.8741515,54.3058534],[-7.8745613,54.3057566],[-7.874785,54.3056815],[-7.8749265,54.3056597],[-7.8753712,54.305645],[-7.875894,54.3056713],[-7.8770747,54.3058149],[-7.878455,54.3058819],[-7.8795431,54.3060291],[-7.8802677,54.3060212],[-7.8825878,54.3057215],[-7.8827938,54.3056815],[-7.8828487,54.3056506],[-7.8828987,54.3056249],[-7.8831017,54.3056971],[-7.8834193,54.3057513],[-7.8933842,54.3068667],[-7.8980548,54.3073696],[-7.8998277,54.3075307],[-7.9005236,54.3075719],[-7.9011014,54.307582],[-7.902137,54.3075542],[-7.9029111,54.3074985],[-7.904009,54.3073558],[-7.9044348,54.3072759],[-7.9056343,54.3070111],[-7.9067195,54.3067195],[-7.907154,54.3066206],[-7.9076042,54.3065327],[-7.9080619,54.3064636],[-7.9085519,54.3064036],[-7.9093318,54.3063569],[-7.9100208,54.3063489],[-7.910388,54.3063789],[-7.911141,54.3064718],[-7.9117598,54.3066054],[-7.9123456,54.3067605],[-7.9131467,54.3070071],[-7.9152085,54.3077066],[-7.9161433,54.3079996],[-7.9168029,54.3081886],[-7.917602,54.3083685],[-7.9182925,54.308509],[-7.9212665,54.308992],[-7.9237228,54.3093509],[-7.9285933,54.3102657],[-7.9299569,54.3105439],[-7.9302309,54.3106268],[-7.9304978,54.310739],[-7.9310009,54.3110349],[-7.931217,54.3111988],[-7.932077,54.311935],[-7.934607,54.3141709],[-7.9350969,54.314552],[-7.9356369,54.3149029],[-7.9362119,54.3152439],[-7.9371449,54.3157198],[-7.937805,54.316003],[-7.9384928,54.316263],[-7.9388428,54.3163789],[-7.9395579,54.3165528],[-7.9412678,54.3168969],[-7.9418858,54.3170509],[-7.942174,54.3171649],[-7.9436269,54.317834],[-7.9439389,54.3179589],[-7.944569,54.318205],[-7.9455219,54.3185209],[-7.9458348,54.318609],[-7.9464609,54.318745],[-7.9467788,54.3187848],[-7.9474298,54.3188148],[-7.9477459,54.3187969],[-7.948054,54.318756],[-7.9483328,54.318745],[-7.9492168,54.318639],[-7.949516,54.3186248],[-7.9498099,54.3186319],[-7.9500848,54.3186708],[-7.9503519,54.3187308],[-7.950894,54.3188949],[-7.9514639,54.3191268],[-7.9519808,54.3193939],[-7.9541519,54.32079],[-7.9545859,54.3211189],[-7.9549499,54.3214849],[-7.9552529,54.321888],[-7.955566,54.3223699],[-7.956817,54.324616],[-7.9570858,54.3249856],[-7.9571962,54.3250923],[-7.9574451,54.3253328],[-7.96014,54.3274299],[-7.9618329,54.3286949],[-7.9635136,54.3298301],[-7.9639876,54.3301704],[-7.9643195,54.330464],[-7.9650089,54.3312169],[-7.965431,54.331622],[-7.9656819,54.331801],[-7.9662589,54.3321009],[-7.96721,54.3325189],[-7.9678159,54.3328139],[-7.968092,54.3329679],[-7.969182,54.3336549],[-7.9694418,54.333838],[-7.9704229,54.334603],[-7.9706939,54.3347689],[-7.9709059,54.3349438],[-7.971075,54.335118],[-7.9713389,54.335479],[-7.9714289,54.335666],[-7.9714809,54.335864],[-7.9715159,54.3362799],[-7.9714075,54.3405346],[-7.9714108,54.3410859],[-7.97149,54.3415529],[-7.9729939,54.3451279],[-7.973093,54.3453029],[-7.9732189,54.345468],[-7.9735489,54.3457628],[-7.9737499,54.3458949],[-7.974232,54.3461668],[-7.974956,54.3465073],[-7.9855408,54.351752],[-7.992007,54.3550913],[-7.9937417,54.356007],[-7.9945495,54.3565395],[-7.9991558,54.360328],[-8.000337,54.3613379],[-8.0020768,54.362769],[-8.0025898,54.3631689],[-8.0039069,54.3641229],[-8.0047378,54.364681],[-8.005967,54.3653999],[-8.0075357,54.3662258],[-8.017453,54.370436],[-8.018511,54.37087],[-8.0203447,54.371505],[-8.021041,54.3717739],[-8.0234799,54.3727609],[-8.026984,54.3741399],[-8.0276759,54.374431],[-8.030016,54.3754849],[-8.0314495,54.3760928],[-8.0314705,54.3760491],[-8.0314915,54.375956],[-8.0314705,54.3760491],[-8.0314495,54.3760928],[-8.0310395,54.3771814],[-8.0308998,54.3774306],[-8.0302402,54.3780341],[-8.0300348,54.3782818],[-8.0295324,54.3791895],[-8.0294384,54.3794389],[-8.0294097,54.3796185],[-8.0294041,54.3799358],[-8.0294954,54.3806308],[-8.0294298,54.3808783],[-8.0291985,54.3814288],[-8.0288986,54.3828598],[-8.0287902,54.3830943],[-8.0285534,54.3833104],[-8.0282595,54.3834734],[-8.0279255,54.3836095],[-8.0275459,54.383731],[-8.0271462,54.3838208],[-8.026761,54.3838621],[-8.026173,54.3838621],[-8.025842,54.3838157],[-8.0254851,54.3837094],[-8.0243234,54.3832705],[-8.0217602,54.3824409],[-8.0213435,54.382328],[-8.0210552,54.3822681],[-8.02067,54.3822299],[-8.0203416,54.3822265],[-8.0199275,54.3822615],[-8.0189401,54.3825324],[-8.0185005,54.3825856],[-8.0181096,54.3825924],[-8.0176586,54.3825691],[-8.016965,54.3824925],[-8.0164026,54.3824841],[-8.0160228,54.3825057],[-8.0149982,54.3826954],[-8.0147272,54.3827335],[-8.0144672,54.3827419],[-8.0141649,54.3827071],[-8.0133,54.3825009],[-8.0129774,54.3824476],[-8.0125237,54.3824212],[-8.0116732,54.3824392],[-8.0111394,54.3824975],[-8.0105029,54.3826039],[-8.0098148,54.3827602],[-8.0092328,54.3829347],[-8.0077426,54.3835231],[-8.0047658,54.3847489],[-8.0041863,54.3849667],[-8.0037525,54.3851064],[-8.0031644,54.3852576],[-8.0028791,54.3852975],[-8.0016088,54.3852708],[-8.0013292,54.3852775],[-8.0010837,54.3853059],[-8.0007125,54.3854079],[-8.0004577,54.385554],[-7.9998733,54.3858112],[-7.9995822,54.3859092],[-7.9992883,54.3859757],[-7.9990057,54.3859989],[-7.9987716,54.3859939],[-7.9982636,54.3859175],[-7.9976441,54.3857697],[-7.9965938,54.3854754],[-7.9963339,54.3854521],[-7.995704,54.3854459],[-7.9954779,54.3854655],[-7.9932,54.3859125],[-7.992552,54.3860122],[-7.9922611,54.3860405],[-7.9919413,54.3860355],[-7.9913363,54.3859324],[-7.9903087,54.3856083],[-7.9893811,54.3852876],[-7.9884019,54.384867],[-7.9868721,54.3842918],[-7.9852221,54.383755],[-7.9849398,54.383677],[-7.9846114,54.3836136],[-7.9842918,54.3835822],[-7.9840805,54.3835771],[-7.9837123,54.3836338],[-7.9831414,54.3838148],[-7.9814717,54.384518],[-7.9812329,54.384575],[-7.9810664,54.3845943],[-7.9803727,54.384553],[-7.9789,54.384119],[-7.9782607,54.3839495],[-7.9773158,54.3837399],[-7.9766735,54.3836403],[-7.9762425,54.3835971],[-7.9757459,54.3835939],[-7.9736138,54.3837783],[-7.9727149,54.383886],[-7.9721389,54.383994],[-7.9718327,54.3840743],[-7.970982,54.3843701],[-7.970771,54.3845062],[-7.9705767,54.3846958],[-7.9703068,54.385266],[-7.9699039,54.3857879],[-7.9693437,54.3861586],[-7.9691097,54.3862484],[-7.9685844,54.3863746],[-7.9681819,54.3864095],[-7.9658246,54.3862595],[-7.9655388,54.3862582],[-7.9642717,54.3863396],[-7.9638235,54.3864078],[-7.9630356,54.3865991],[-7.9619208,54.386918],[-7.9618368,54.3869679],[-7.9614174,54.3873767],[-7.9609778,54.3876394],[-7.9597447,54.388271],[-7.9588599,54.3886897],[-7.9570502,54.3894445],[-7.9566136,54.3895924],[-7.9563651,54.3896488],[-7.9560883,54.389687],[-7.9557886,54.3896937],[-7.9555318,54.3896654],[-7.9524975,54.3890522],[-7.9522323,54.3890172],[-7.9516642,54.3889775],[-7.9499088,54.3889026],[-7.9492895,54.3888942],[-7.9487899,54.3889158],[-7.9480735,54.3890138],[-7.9478167,54.3890921],[-7.9473998,54.3892532],[-7.9471601,54.3893862],[-7.9468975,54.3896073],[-7.9461839,54.3904199],[-7.9459498,54.3906177],[-7.9456873,54.3908021],[-7.945399,54.3909351],[-7.9451308,54.3910283],[-7.9444827,54.3911844],[-7.9440318,54.3912326],[-7.9434723,54.3912509],[-7.9427617,54.391241],[-7.9422591,54.3912509],[-7.941632,54.3913129],[-7.9410119,54.3914172],[-7.9402214,54.3916431],[-7.9392338,54.3921189],[-7.9385247,54.3924249],[-7.9378156,54.3927844],[-7.9375818,54.3928814],[-7.937105,54.3929788],[-7.9364775,54.3930876],[-7.9348845,54.3932851],[-7.9321632,54.3935397],[-7.9308873,54.3936401],[-7.9290939,54.3936902],[-7.927813,54.393606],[-7.9246282,54.3934492],[-7.9241069,54.3934749],[-7.9236329,54.3936289],[-7.923051,54.3939459],[-7.9214383,54.3950052],[-7.9213003,54.3951959],[-7.9211889,54.3955279],[-7.9208659,54.396744],[-7.9206249,54.3971439],[-7.9203669,54.3973939],[-7.9198778,54.3977005],[-7.9192312,54.3980668],[-7.9186534,54.3983079],[-7.9179428,54.3984513],[-7.9144904,54.3987348],[-7.9099119,54.3991865],[-7.9089392,54.399242],[-7.9082064,54.3992386],[-7.9066927,54.3991339],[-7.9038065,54.3988203],[-7.9022746,54.3985923],[-7.9014413,54.3985219],[-7.9004859,54.3985019],[-7.8997319,54.3985059],[-7.8986909,54.3985459],[-7.8945551,54.3989209],[-7.8939605,54.3989995],[-7.8936284,54.3990783],[-7.8926897,54.3994035],[-7.8921039,54.3996782],[-7.8918178,54.3998555],[-7.8900838,54.4011389],[-7.8890398,54.4019365],[-7.8886159,54.4021471],[-7.8879177,54.4023749],[-7.8868622,54.4024252],[-7.8864982,54.4024079],[-7.8858988,54.4022969],[-7.884443,54.4017079],[-7.8837261,54.4014785],[-7.8824393,54.4012251],[-7.8812191,54.401008],[-7.8807739,54.4009333],[-7.880383,54.4009089],[-7.8795507,54.4010039],[-7.8783318,54.4010009],[-7.8778608,54.4010307],[-7.8767095,54.4011776],[-7.876193,54.4012989],[-7.8756871,54.4014451],[-7.8751903,54.4016262],[-7.8748383,54.4017228],[-7.8744583,54.4017739],[-7.8740084,54.4017957],[-7.8729167,54.4017819],[-7.8726763,54.4017955],[-7.8724848,54.4018312],[-7.87229,54.4019166],[-7.8722341,54.4019957],[-7.8722089,54.4020879],[-7.8722618,54.4023099],[-7.872428,54.4024819],[-7.8728748,54.402684],[-7.8741709,54.402906],[-7.8747138,54.403099],[-7.8750038,54.4032798],[-7.8752309,54.4035289],[-7.8754838,54.4038869],[-7.875534,54.4041309],[-7.875538,54.4044555],[-7.8753829,54.4046762],[-7.8744449,54.4053719],[-7.8727528,54.4063159],[-7.8721478,54.4065668],[-7.8712379,54.406771],[-7.867747,54.4070578],[-7.8668568,54.4072448],[-7.865436,54.407433],[-7.8643709,54.4076189],[-7.8630969,54.407796],[-7.8610659,54.4079999],[-7.859947,54.4080709],[-7.8595839,54.408138],[-7.8591728,54.4083069],[-7.859,54.4084598],[-7.8587429,54.4087869],[-7.858507,54.409475],[-7.8584319,54.4101928],[-7.8585479,54.4106669],[-7.8588106,54.4111501],[-7.8588419,54.4112907],[-7.8588324,54.4114023],[-7.8587884,54.4115062],[-7.8587038,54.4116347],[-7.8584432,54.4118543],[-7.8582764,54.411951],[-7.857893,54.4120944],[-7.8576174,54.4121501],[-7.855358,54.4124219],[-7.8544319,54.4125169],[-7.8538028,54.4125279],[-7.8531949,54.4124969],[-7.851702,54.412315],[-7.8502498,54.4121699],[-7.8484729,54.41197],[-7.8471307,54.4118729],[-7.8466624,54.4118625],[-7.8463633,54.411908],[-7.8460894,54.4119845],[-7.8456879,54.4122419],[-7.8451648,54.4128449],[-7.8446019,54.4132949],[-7.8437868,54.4136419],[-7.8428149,54.4138369],[-7.841762,54.4138978],[-7.8399679,54.4138349],[-7.8382449,54.4137948],[-7.837268,54.4137449],[-7.8356769,54.4136149],[-7.8325,54.4133249],[-7.8316718,54.4131818],[-7.8311209,54.4130306],[-7.830802,54.4129905],[-7.8305518,54.4129956],[-7.8286219,54.4133979],[-7.8276928,54.4135249],[-7.8271169,54.4135398],[-7.8262649,54.4134528],[-7.8254394,54.4133316],[-7.8248531,54.4133117],[-7.8242928,54.4133517],[-7.8238029,54.4135229],[-7.8233357,54.4137581],[-7.8230685,54.4141143],[-7.8228049,54.414598],[-7.8223228,54.415192],[-7.821792,54.415675],[-7.8210959,54.4160823],[-7.8190155,54.4170794],[-7.8187417,54.4173281],[-7.8184292,54.4177511],[-7.8181146,54.4181316],[-7.8180993,54.4181666],[-7.8174426,54.4178426],[-7.8150321,54.4166514],[-7.8146979,54.4164888],[-7.8142997,54.4162489],[-7.8139765,54.415995],[-7.8137729,54.4157847],[-7.8136502,54.4155407],[-7.8127431,54.4117413],[-7.8123331,54.4103063],[-7.8121414,54.409963],[-7.8118814,54.4096463],[-7.811285,54.4092313],[-7.8074094,54.4075181],[-7.8071104,54.4074127],[-7.8026421,54.4054422],[-7.8015897,54.4050069],[-7.7990606,54.4039049],[-7.7982301,54.4035974],[-7.7977395,54.4034655],[-7.7969788,54.4033368],[-7.7965822,54.4033119],[-7.7961583,54.4033081],[-7.7940056,54.4034016],[-7.792433,54.4034525],[-7.7916181,54.4034506],[-7.7904388,54.4033122],[-7.7901631,54.4032618],[-7.7897824,54.4031608],[-7.7894887,54.4030623],[-7.7884054,54.4026378],[-7.7866755,54.4019205],[-7.7860637,54.4016835],[-7.7824904,54.4001845],[-7.7707231,54.395353],[-7.7679813,54.3942113],[-7.7667555,54.3936734],[-7.7660851,54.3934119],[-7.7653089,54.3930766],[-7.7642552,54.3926557],[-7.7619998,54.391694],[-7.760928,54.3911249],[-7.759578,54.390235],[-7.7588118,54.3896229],[-7.758032,54.38886],[-7.7576823,54.3884353],[-7.7569915,54.3874617],[-7.7565934,54.3866674],[-7.7565228,54.3863569],[-7.7564457,54.3857346],[-7.7564213,54.3845964],[-7.7563494,54.3839741],[-7.7563379,54.3833788],[-7.7561486,54.3826259],[-7.7559421,54.3821518],[-7.7556927,54.381764],[-7.7553572,54.3813963],[-7.7549022,54.3809506],[-7.7526385,54.3789088],[-7.7522475,54.3786119],[-7.7518131,54.3783301],[-7.75134,54.378073],[-7.7484004,54.3766248],[-7.7468099,54.3758622],[-7.7463517,54.3755555],[-7.7459438,54.3752215],[-7.7455781,54.3748616],[-7.7442415,54.3733331],[-7.7436339,54.3725998],[-7.743286,54.3722435],[-7.742916,54.3719021],[-7.7421443,54.37125],[-7.7412845,54.3706511],[-7.7407356,54.3703352],[-7.7402357,54.3701003],[-7.7396778,54.3698859],[-7.7390557,54.369712],[-7.7363709,54.3690928],[-7.7338077,54.3685424],[-7.7327616,54.368336],[-7.7321855,54.3682388],[-7.7276401,54.3675567],[-7.7265339,54.3673758],[-7.7259062,54.3672559],[-7.7252226,54.3670747],[-7.7248525,54.3669474],[-7.7243719,54.3667573],[-7.7219341,54.3656922],[-7.7210458,54.3652448],[-7.7193547,54.3643055],[-7.7188754,54.364065],[-7.7183498,54.3638847],[-7.7181684,54.3638368],[-7.7178364,54.3637659],[-7.7172434,54.3636772],[-7.7159045,54.3635144],[-7.7155242,54.3634842],[-7.7145913,54.363444],[-7.7131187,54.3635263],[-7.7126872,54.3635367],[-7.7118672,54.3634963],[-7.7114357,54.3634514],[-7.7109601,54.363378],[-7.7101994,54.3632087],[-7.7087603,54.3628045],[-7.7082239,54.3626267],[-7.7076357,54.3623413],[-7.7074224,54.3622051],[-7.7072527,54.3620643],[-7.7071087,54.3618891],[-7.7070111,54.3617035],[-7.7069135,54.3612094],[-7.7067181,54.3606763],[-7.7065846,54.3604965],[-7.7062735,54.3602106],[-7.70605,54.3600594],[-7.7057417,54.359896],[-7.7054795,54.3597854],[-7.7051531,54.359682],[-7.7042922,54.3594665],[-7.703601,54.3593331],[-7.7029615,54.3592394],[-7.7023931,54.359191],[-7.7020418,54.3591776],[-7.7016583,54.3591878],[-7.6985668,54.3595637],[-7.6981094,54.3595907],[-7.6976854,54.3595878],[-7.6973308,54.3595563],[-7.6969659,54.3594933],[-7.6965881,54.3593976],[-7.6959379,54.3591774],[-7.6941652,54.3583972],[-7.6959379,54.3591774],[-7.6965881,54.3593976],[-7.6969659,54.3594933],[-7.6973308,54.3595563],[-7.6976854,54.3595878],[-7.6981094,54.3595907],[-7.6985668,54.3595637],[-7.7016583,54.3591878],[-7.7020418,54.3591776],[-7.7023931,54.359191],[-7.7029615,54.3592394],[-7.703601,54.3593331],[-7.7042922,54.3594665],[-7.7051531,54.359682],[-7.7054795,54.3597854],[-7.7057417,54.359896],[-7.70605,54.3600594],[-7.7062735,54.3602106],[-7.7065846,54.3604965],[-7.7067181,54.3606763],[-7.7067926,54.3608394],[-7.7069135,54.3612094],[-7.7070111,54.3617035],[-7.7071087,54.3618891],[-7.7072527,54.3620643],[-7.7074224,54.3622051],[-7.7076357,54.3623413],[-7.7082239,54.3626267],[-7.7087603,54.3628045],[-7.7101994,54.3632087],[-7.7109601,54.363378],[-7.7114357,54.3634514],[-7.7118672,54.3634963],[-7.7126872,54.3635367],[-7.7131187,54.3635263],[-7.7145913,54.363444],[-7.7155242,54.3634842],[-7.7159045,54.3635144],[-7.7172434,54.3636772],[-7.7178364,54.3637659],[-7.7181684,54.3638368],[-7.7183498,54.3638847],[-7.7188754,54.364065],[-7.7193547,54.3643055],[-7.7210458,54.3652448],[-7.7219341,54.3656922],[-7.7243719,54.3667573],[-7.7248525,54.3669474],[-7.7252226,54.3670747],[-7.7259062,54.3672559],[-7.7265339,54.3673758],[-7.7276401,54.3675567],[-7.7321855,54.3682388],[-7.7327616,54.368336],[-7.7338077,54.3685424],[-7.7363709,54.3690928],[-7.7390557,54.369712],[-7.7396778,54.3698859],[-7.7402357,54.3701003],[-7.7407356,54.3703352],[-7.7412845,54.3706511],[-7.7421443,54.37125],[-7.742916,54.3719021],[-7.743286,54.3722435],[-7.7436339,54.3725998],[-7.7442415,54.3733331],[-7.7455781,54.3748616],[-7.7459438,54.3752215],[-7.7463517,54.3755555],[-7.7468099,54.3758622],[-7.7484004,54.3766248],[-7.75134,54.378073],[-7.7518131,54.3783301],[-7.7522475,54.3786119],[-7.7526385,54.3789088],[-7.7549022,54.3809506],[-7.7553572,54.3813963],[-7.7556927,54.381764],[-7.7559421,54.3821518],[-7.7561486,54.3826259],[-7.7563379,54.3833788],[-7.7563494,54.3839741],[-7.7564213,54.3845964],[-7.7564457,54.3857346],[-7.7565228,54.3863569],[-7.7565934,54.3866674],[-7.7569915,54.3874617],[-7.7575749,54.388292],[-7.7576823,54.3884353],[-7.758032,54.38886],[-7.7588118,54.3896229],[-7.759578,54.390235],[-7.760928,54.3911249],[-7.7619998,54.391694],[-7.7642552,54.3926557],[-7.7653089,54.3930766],[-7.7660851,54.3934119],[-7.7667555,54.3936734],[-7.7679813,54.3942113],[-7.7707231,54.395353],[-7.7824904,54.4001845],[-7.7860637,54.4016835],[-7.7866755,54.4019205],[-7.7884054,54.4026378],[-7.7894887,54.4030623],[-7.7897824,54.4031608],[-7.7901631,54.4032618],[-7.7904388,54.4033122],[-7.7916181,54.4034506],[-7.792433,54.4034525],[-7.7940056,54.4034016],[-7.7961583,54.4033081],[-7.7965822,54.4033119],[-7.7969788,54.4033368],[-7.7977395,54.4034655],[-7.7982301,54.4035974],[-7.7990606,54.4039049],[-7.8015897,54.4050069],[-7.8026421,54.4054422],[-7.8071104,54.4074127],[-7.8074094,54.4075181],[-7.811285,54.4092313],[-7.8118814,54.4096463],[-7.8121414,54.409963],[-7.8123331,54.4103063],[-7.8127431,54.4117413],[-7.8136502,54.4155407],[-7.8137729,54.4157847],[-7.8139765,54.415995],[-7.8142997,54.4162489],[-7.8146979,54.4164888],[-7.8161787,54.4172189],[-7.8180993,54.4181666],[-7.8187417,54.4173281],[-7.8190155,54.4170794],[-7.8201719,54.4165365],[-7.8204986,54.4163683],[-7.8205565,54.4163863],[-7.8244783,54.4169228],[-7.8304335,54.4176838],[-7.8337233,54.4178343],[-7.8353584,54.4178913],[-7.8365181,54.4178828],[-7.8390511,54.4177816],[-7.8393077,54.4177783],[-7.8396464,54.4178008],[-7.840383,54.4180193],[-7.8407165,54.4181337],[-7.8414393,54.4185036],[-7.8417962,54.4186513],[-7.8420658,54.418756],[-7.8430012,54.4191518],[-7.8448197,54.4199743],[-7.8453109,54.4201824],[-7.8455452,54.4202524],[-7.8473912,54.4206382],[-7.8489015,54.4209299],[-7.8503014,54.4211433],[-7.8517189,54.4213154],[-7.8548215,54.421658],[-7.8558164,54.4218096],[-7.857953,54.4219813],[-7.8588646,54.4220029],[-7.8597514,54.4219664],[-7.8611448,54.42197],[-7.8628031,54.4219296],[-7.8666648,54.4217433],[-7.8681748,54.4215812],[-7.8684015,54.4215196],[-7.8694114,54.4214482],[-7.8716565,54.4211513],[-7.8722646,54.4210981],[-7.8726565,54.4211161],[-7.8730145,54.4210882],[-7.8745931,54.4207099],[-7.8764414,54.4200598],[-7.8773182,54.4198399],[-7.8786848,54.4196331],[-7.8801298,54.4194832],[-7.8809697,54.4193328],[-7.8819115,54.4192632],[-7.8831414,54.4190147],[-7.8836163,54.4188914],[-7.8838879,54.4187381],[-7.8842346,54.4184246],[-7.8847797,54.4177649],[-7.8852499,54.4173948],[-7.8855349,54.4172696],[-7.8861682,54.4170947],[-7.8874698,54.4168162],[-7.8880465,54.4167365],[-7.889013,54.4166862],[-7.8895913,54.4166216],[-7.8903697,54.4164448],[-7.892395,54.4159097],[-7.8930065,54.4157981],[-7.8943213,54.4157113],[-7.8951213,54.4158216],[-7.8958081,54.4158413],[-7.8965232,54.4158015],[-7.8976698,54.4156714],[-7.8988064,54.4157662],[-7.8999216,54.4157448],[-7.9007832,54.4158447],[-7.9011479,54.415848],[-7.9015866,54.4158015],[-7.9022199,54.4156614],[-7.902953,54.415553],[-7.9034932,54.4155446],[-7.9043748,54.4156031],[-7.9052362,54.4155748],[-7.9086179,54.4153265],[-7.9115322,54.4149299],[-7.9141198,54.4146313],[-7.916748,54.414403],[-7.9194032,54.41398],[-7.9221848,54.4136248],[-7.9272875,54.413199],[-7.92909,54.4131164],[-7.9338083,54.4130915],[-7.9357531,54.4131297],[-7.9397164,54.4133012],[-7.9402499,54.4132915],[-7.9405315,54.4133213],[-7.9410432,54.413263],[-7.9423513,54.4133698],[-7.9444349,54.4133849],[-7.9454115,54.4134415],[-7.9456566,54.4134797],[-7.9468582,54.4135165],[-7.9472778,54.4135514],[-7.9474797,54.4136166],[-7.9478679,54.41363],[-7.9486947,54.4135313],[-7.9495281,54.4135363],[-7.9499015,54.4134948],[-7.9511963,54.4135514],[-7.9513932,54.4135363],[-7.9536198,54.4135912],[-7.9538479,54.4135631],[-7.9543248,54.4135896],[-7.9548163,54.4135614],[-7.9552745,54.4135996],[-7.9554982,54.4135812],[-7.9561865,54.4136883],[-7.9577764,54.4138246],[-7.9588149,54.4139479],[-7.9618215,54.4143963],[-7.9625247,54.4144682],[-7.9636682,54.4144365],[-7.9666771,54.4144782],[-7.968265,54.4144728],[-7.9692185,54.414424],[-7.969805,54.4142992],[-7.9724302,54.4135784],[-7.9732766,54.4133299],[-7.9735923,54.4132718],[-7.9739703,54.4132364],[-7.9744425,54.4132222],[-7.9770729,54.4132614],[-7.9775233,54.4132429],[-7.9785032,54.4131181],[-7.9791382,54.4130999],[-7.981763,54.4132215],[-7.9862812,54.4135229],[-7.9879446,54.4136713],[-7.9956232,54.4144883],[-7.9970481,54.4146615],[-8.0004346,54.4148932],[-8.0030845,54.4152231],[-8.0039147,54.4153848],[-8.0058332,54.4158413],[-8.0074347,54.4162846],[-8.0086965,54.4165931],[-8.0118714,54.4172634],[-8.012104,54.4173502],[-8.0134505,54.4177354],[-8.0137266,54.4178071],[-8.0153862,54.418153],[-8.0168264,54.4183415],[-8.0199026,54.4186574],[-8.0211727,54.4187588],[-8.0224538,54.4188374],[-8.0232296,54.4188277],[-8.0235969,54.4187957],[-8.0239581,54.4187407],[-8.0265181,54.4180713],[-8.0283513,54.4174929],[-8.0287347,54.4173948],[-8.0295797,54.4173447],[-8.0300046,54.41737],[-8.0320695,54.4176565],[-8.0366397,54.4181665],[-8.0380764,54.4182933],[-8.039498,54.4183147],[-8.0407731,54.4181434],[-8.0411563,54.4180724],[-8.042201,54.4177827],[-8.0426315,54.4176775],[-8.0432231,54.4175784],[-8.0448465,54.4174084],[-8.0470148,54.4172498],[-8.0477312,54.4172431],[-8.0483681,54.4172864],[-8.0490315,54.4173761],[-8.0507645,54.4177598],[-8.0536848,54.4184997],[-8.0544915,54.4186416],[-8.0555597,54.4187465],[-8.0607368,54.4187172],[-8.0656247,54.4187981],[-8.0682713,54.4190147],[-8.0705466,54.419288],[-8.0720929,54.4194196],[-8.0760531,54.4193764],[-8.0806313,54.4193664],[-8.0833211,54.419453],[-8.0878038,54.4194521],[-8.0878664,54.4194379],[-8.0879779,54.4190179],[-8.0880346,54.4188849],[-8.0881335,54.4187595],[-8.0882596,54.4186481],[-8.0884186,54.4185632],[-8.0886291,54.4184865],[-8.0894442,54.4182499],[-8.089697,54.4181469],[-8.0899568,54.4179698],[-8.0901919,54.4177488],[-8.0903195,54.4170852],[-8.0903074,54.4169431],[-8.0901615,54.4162774],[-8.090191,54.4161613],[-8.090321,54.4159484],[-8.0903754,54.4157281],[-8.0903502,54.4155861],[-8.0901066,54.4152481],[-8.0900697,54.4152194],[-8.0906633,54.4149471],[-8.0910539,54.4148059],[-8.091004,54.4147586],[-8.0908314,54.4144694],[-8.091004,54.4147586],[-8.0910539,54.4148059],[-8.0906633,54.4149471],[-8.0903189,54.4150987],[-8.0900697,54.4152194],[-8.0901388,54.4152794],[-8.0903502,54.4155861],[-8.0903754,54.4157281],[-8.090321,54.4159484],[-8.090191,54.4161613],[-8.0901615,54.4162774],[-8.0903074,54.4169431],[-8.0903195,54.4170852],[-8.0901919,54.4177488],[-8.0899568,54.4179698],[-8.089697,54.4181469],[-8.0894442,54.4182499],[-8.0886291,54.4184865],[-8.0884186,54.4185632],[-8.0882596,54.4186481],[-8.0881335,54.4187595],[-8.0880346,54.4188849],[-8.0879779,54.4190179],[-8.0878664,54.4194379],[-8.0878038,54.4194521],[-8.0833211,54.419453],[-8.0806313,54.4193664],[-8.0760531,54.4193764],[-8.0720929,54.4194196],[-8.0705466,54.419288],[-8.0682713,54.4190147],[-8.0656247,54.4187981],[-8.0607368,54.4187172],[-8.0555597,54.4187465],[-8.0544915,54.4186416],[-8.0536848,54.4184997],[-8.0507645,54.4177598],[-8.0490315,54.4173761],[-8.0483681,54.4172864],[-8.0477312,54.4172431],[-8.0470148,54.4172498],[-8.0448465,54.4174084],[-8.0432231,54.4175784],[-8.0426315,54.4176775],[-8.042201,54.4177827],[-8.0411563,54.4180724],[-8.0407731,54.4181434],[-8.039498,54.4183147],[-8.0380764,54.4182933],[-8.0366397,54.4181665],[-8.0320695,54.4176565],[-8.0300046,54.41737],[-8.0295797,54.4173447],[-8.0287347,54.4173948],[-8.0283513,54.4174929],[-8.0265181,54.4180713],[-8.0239581,54.4187407],[-8.0235969,54.4187957],[-8.0232296,54.4188277],[-8.0224538,54.4188374],[-8.0211727,54.4187588],[-8.0199026,54.4186574],[-8.0168264,54.4183415],[-8.0153862,54.418153],[-8.0137266,54.4178071],[-8.012104,54.4173502],[-8.0118714,54.4172634],[-8.0086965,54.4165931],[-8.0074347,54.4162846],[-8.0058332,54.4158413],[-8.0039147,54.4153848],[-8.0030845,54.4152231],[-8.0004346,54.4148932],[-7.9970481,54.4146615],[-7.9956232,54.4144883],[-7.9879446,54.4136713],[-7.9862812,54.4135229],[-7.981763,54.4132215],[-7.9791382,54.4130999],[-7.9785032,54.4131181],[-7.9775233,54.4132429],[-7.9770729,54.4132614],[-7.9744425,54.4132222],[-7.9739703,54.4132364],[-7.9735923,54.4132718],[-7.9732766,54.4133299],[-7.9724302,54.4135784],[-7.969805,54.4142992],[-7.9692185,54.414424],[-7.968265,54.4144728],[-7.9666771,54.4144782],[-7.9636682,54.4144365],[-7.9625247,54.4144682],[-7.9618215,54.4143963],[-7.9588149,54.4139479],[-7.9577764,54.4138246],[-7.9561865,54.4136883],[-7.9554982,54.4135812],[-7.9552745,54.4135996],[-7.9548163,54.4135614],[-7.9543248,54.4135896],[-7.9538479,54.4135631],[-7.9536198,54.4135912],[-7.9513932,54.4135363],[-7.9511963,54.4135514],[-7.9499015,54.4134948],[-7.9495281,54.4135363],[-7.9486947,54.4135313],[-7.9478679,54.41363],[-7.9474797,54.4136166],[-7.9472778,54.4135514],[-7.9468582,54.4135165],[-7.9456566,54.4134797],[-7.9454115,54.4134415],[-7.9444349,54.4133849],[-7.9423513,54.4133698],[-7.9410432,54.413263],[-7.9405315,54.4133213],[-7.9402499,54.4132915],[-7.9397164,54.4133012],[-7.9357531,54.4131297],[-7.9338083,54.4130915],[-7.92909,54.4131164],[-7.9272875,54.413199],[-7.9221848,54.4136248],[-7.9194032,54.41398],[-7.916748,54.414403],[-7.9141198,54.4146313],[-7.9115322,54.4149299],[-7.9086179,54.4153265],[-7.9052362,54.4155748],[-7.9043748,54.4156031],[-7.9034932,54.4155446],[-7.902953,54.415553],[-7.9022199,54.4156614],[-7.9015866,54.4158015],[-7.9011479,54.415848],[-7.9007832,54.4158447],[-7.8999216,54.4157448],[-7.8988064,54.4157662],[-7.8976698,54.4156714],[-7.8965232,54.4158015],[-7.8958081,54.4158413],[-7.8951213,54.4158216],[-7.8943213,54.4157113],[-7.8930065,54.4157981],[-7.892395,54.4159097],[-7.8903697,54.4164448],[-7.8895913,54.4166216],[-7.889013,54.4166862],[-7.8880465,54.4167365],[-7.8874698,54.4168162],[-7.8861682,54.4170947],[-7.8855349,54.4172696],[-7.8852499,54.4173948],[-7.8847797,54.4177649],[-7.8842346,54.4184246],[-7.8838879,54.4187381],[-7.8836163,54.4188914],[-7.8831414,54.4190147],[-7.8819115,54.4192632],[-7.8809697,54.4193328],[-7.8801298,54.4194832],[-7.8786848,54.4196331],[-7.8773182,54.4198399],[-7.8764414,54.4200598],[-7.8745931,54.4207099],[-7.8730145,54.4210882],[-7.8726565,54.4211161],[-7.8722646,54.4210981],[-7.8716565,54.4211513],[-7.8694114,54.4214482],[-7.8684015,54.4215196],[-7.8681748,54.4215812],[-7.8666648,54.4217433],[-7.8628031,54.4219296],[-7.8611448,54.42197],[-7.8597514,54.4219664],[-7.8588646,54.4220029],[-7.857953,54.4219813],[-7.8558164,54.4218096],[-7.8548215,54.421658],[-7.8517189,54.4213154],[-7.8503014,54.4211433],[-7.8489015,54.4209299],[-7.8473912,54.4206382],[-7.8455452,54.4202524],[-7.8453109,54.4201824],[-7.8430012,54.4191518],[-7.8420658,54.418756],[-7.8419354,54.4188091],[-7.8395355,54.4192716],[-7.8381898,54.419578],[-7.8375745,54.4196681],[-7.8329813,54.4205581],[-7.8320047,54.4206982],[-7.829586,54.4209476],[-7.8253209,54.4216012],[-7.8251602,54.4216358],[-7.8249048,54.4217232],[-7.8221809,54.4228929],[-7.8209212,54.423467],[-7.8203903,54.4236695],[-7.818969,54.4240956],[-7.8179361,54.4244344],[-7.8166429,54.4249076],[-7.8152625,54.4253412],[-7.8151841,54.4253868],[-7.8139983,54.4257057],[-7.8129355,54.4260482],[-7.8119678,54.4263809],[-7.8103332,54.4267907],[-7.8100864,54.4268324],[-7.8098638,54.4268464],[-7.8086257,54.4267775],[-7.8063277,54.426512],[-7.8057285,54.4263969],[-7.8052888,54.4263394],[-7.8041782,54.4262978],[-7.8031348,54.4245432],[-7.8026254,54.4240131],[-7.8015868,54.4231978],[-7.8012535,54.422759],[-7.8007245,54.4222803],[-7.8002836,54.4221091],[-7.7976774,54.4212713],[-7.7959631,54.4206898],[-7.7948559,54.4201653],[-7.7928964,54.4195668],[-7.7908585,54.4190993],[-7.7891145,54.4186433],[-7.7880464,54.4185747],[-7.787155,54.4183697],[-7.7858029,54.4181417],[-7.7846957,54.4179135],[-7.7837845,54.4176114],[-7.7823344,54.416933],[-7.7815704,54.4166536],[-7.7810511,54.4163344],[-7.7802574,54.4159467],[-7.7770691,54.4148167],[-7.7762963,54.4144041],[-7.7758813,54.4141439],[-7.7756135,54.414031],[-7.7752435,54.413923],[-7.7744553,54.4138138],[-7.7736018,54.4135784],[-7.7727575,54.4132446],[-7.7716945,54.4128849],[-7.7698426,54.4121667],[-7.767893,54.4113171],[-7.7666584,54.4108895],[-7.7654434,54.4103934],[-7.7642972,54.4098175],[-7.7614952,54.4081581],[-7.7598099,54.4072344],[-7.7553226,54.4041093],[-7.7530006,54.4024441],[-7.7514624,54.4014004],[-7.7499241,54.4004652],[-7.7479076,54.3994718],[-7.7468948,54.3990363],[-7.7466359,54.3988823],[-7.7460766,54.3987307],[-7.7441659,54.3983038],[-7.7437078,54.3981499],[-7.7432211,54.3979515],[-7.7414149,54.3970329],[-7.7397445,54.3961351],[-7.7389823,54.3954301],[-7.7382507,54.3949314],[-7.7379247,54.3947703],[-7.737519,54.394656],[-7.7351857,54.3942128],[-7.7347651,54.394108],[-7.7342272,54.3939193],[-7.7338183,54.393814],[-7.7334553,54.3937397],[-7.7331599,54.3937313],[-7.7328054,54.3937449],[-7.7317061,54.3938938],[-7.7313285,54.393913],[-7.730232,54.393888],[-7.7277619,54.393715],[-7.727197,54.393815],[-7.726408,54.39411],[-7.7261386,54.3941568],[-7.7259805,54.3941469],[-7.7256843,54.3940983],[-7.7250544,54.3939871],[-7.7244388,54.3939273],[-7.7241082,54.3938779],[-7.7239951,54.3938465],[-7.7238772,54.3938051],[-7.7235985,54.3935982],[-7.7224661,54.3923461],[-7.7210478,54.3906947],[-7.7197596,54.3892657],[-7.7191176,54.3887849],[-7.7188806,54.3886715],[-7.7173645,54.388029],[-7.7168207,54.3878296],[-7.7158082,54.3876966],[-7.714788,54.3876736],[-7.7137913,54.3875589],[-7.7128971,54.3873937],[-7.7121131,54.387194],[-7.7101353,54.3863866],[-7.7099226,54.3862307],[-7.7098004,54.3861137],[-7.7086344,54.3855079],[-7.7084295,54.3853107],[-7.7084059,54.3850674],[-7.7083034,54.3847579],[-7.7073738,54.3842646],[-7.7067593,54.3840122],[-7.706121,54.3837921],[-7.7045215,54.3830968],[-7.7037375,54.3828606],[-7.7000422,54.3818626],[-7.6983128,54.3811237],[-7.6973634,54.3806533],[-7.6960044,54.3798757],[-7.6951377,54.3792217],[-7.69368,54.3781661],[-7.6922066,54.3772002],[-7.6917723,54.3768055],[-7.691659,54.3766634],[-7.6913241,54.3761333],[-7.6910168,54.3754471],[-7.6908121,54.3751673],[-7.6905599,54.3750065],[-7.6899689,54.3747564],[-7.6889949,54.3744014],[-7.6889595,54.3743865],[-7.6887872,54.3744952],[-7.6886045,54.3745811],[-7.6884258,54.3746344],[-7.6881949,54.3746491],[-7.6881491,54.3746521],[-7.6880408,54.3743939],[-7.6878888,54.3742259],[-7.6872729,54.3737278],[-7.6865679,54.3729979],[-7.6863749,54.372834],[-7.6859569,54.372541],[-7.6854719,54.3722709],[-7.685012,54.371963],[-7.6848678,54.371803],[-7.6845938,54.3714278],[-7.6838609,54.3702609],[-7.6834569,54.3697859],[-7.6832129,54.3695699],[-7.6826189,54.3691798],[-7.6809449,54.368291],[-7.6806448,54.3680918],[-7.6803818,54.3678789],[-7.6801618,54.367659],[-7.679978,54.367431],[-7.6798111,54.3671791],[-7.6796817,54.3669141],[-7.679531,54.3664687],[-7.6786574,54.363416],[-7.6784829,54.3630733],[-7.6781941,54.3626965],[-7.6779978,54.3625039],[-7.67773,54.3623178],[-7.6771149,54.3619788],[-7.6760959,54.361543],[-7.675625,54.3613627],[-7.6742314,54.3607852],[-7.6736919,54.360526],[-7.673453,54.3603788],[-7.67303,54.3600689],[-7.6726479,54.3597299],[-7.6714059,54.3584929],[-7.671036,54.3581518],[-7.6704319,54.3576718],[-7.6695399,54.3570559],[-7.6677164,54.3559699],[-7.6668588,54.355492],[-7.6659707,54.3550882],[-7.6654604,54.3548997],[-7.66339,54.3542692],[-7.6621566,54.3538735],[-7.6597409,54.3530193],[-7.6582411,54.3525328],[-7.6579036,54.3523382],[-7.657776,54.3522199],[-7.657323,54.3515186],[-7.6569889,54.3509151],[-7.6567529,54.3506659],[-7.6558109,54.3500849],[-7.6553807,54.349848],[-7.654975,54.3496872],[-7.6545613,54.3495839],[-7.6539161,54.3495088],[-7.6532859,54.3494684],[-7.6527819,54.3494749],[-7.6524531,54.3494375],[-7.6521663,54.3493596],[-7.6519934,54.3492963],[-7.6515645,54.3491372],[-7.6502083,54.3486045],[-7.6466502,54.3475312],[-7.6460982,54.3473779],[-7.6459482,54.3473224],[-7.6458756,54.3472766],[-7.6456435,54.3472922],[-7.6448165,54.3472533],[-7.6443277,54.3471902],[-7.6439002,54.3471237],[-7.644044,54.3468232],[-7.6442649,54.3465597],[-7.643782,54.3464442],[-7.6433984,54.3463337],[-7.6430438,54.3462324],[-7.6428601,54.3461743],[-7.6422484,54.3458822],[-7.6417897,54.3456036],[-7.6415974,54.3454678],[-7.6406998,54.3445992],[-7.6400945,54.3441621],[-7.6394657,54.3438668],[-7.6388353,54.3436618],[-7.638473,54.3435817],[-7.6377775,54.3435001],[-7.6369885,54.343461],[-7.6351059,54.3434312],[-7.6350663,54.3434312],[-7.6342312,54.3434194],[-7.6334564,54.3434276],[-7.6326508,54.3434891],[-7.6320246,54.3436297],[-7.6318037,54.3437158],[-7.6316638,54.3437892],[-7.6315714,54.3438808],[-7.631325,54.3438033],[-7.6293429,54.3433056],[-7.6292204,54.3432732],[-7.6289534,54.3432455],[-7.6284343,54.343151],[-7.6282155,54.3431153],[-7.6272162,54.3429383],[-7.6262895,54.3427317],[-7.6260224,54.3426503],[-7.6258855,54.342772],[-7.6253963,54.3430856],[-7.6237319,54.3440641],[-7.6223312,54.3448494],[-7.6217953,54.3451835],[-7.6211152,54.3459407],[-7.6204955,54.3463615],[-7.6192666,54.3470955],[-7.6181177,54.347716],[-7.6179057,54.347821],[-7.6174062,54.3480287],[-7.6172056,54.3481468],[-7.6169083,54.3482469],[-7.6164964,54.3484253],[-7.616343,54.3485169],[-7.6161101,54.3486095],[-7.6162124,54.348682],[-7.616234,54.3487837],[-7.6161884,54.3488505],[-7.6161276,54.3488896],[-7.6160226,54.3489222],[-7.6160293,54.3489519],[-7.6160226,54.3489222],[-7.61592,54.3489291],[-7.6158002,54.3489107],[-7.6156745,54.348841],[-7.6156476,54.3488051],[-7.615642,54.3487144],[-7.6157056,54.3486401],[-7.6157996,54.3485965],[-7.6158911,54.3485793],[-7.61605,54.3485903],[-7.6161101,54.3486095],[-7.616343,54.3485169],[-7.6164964,54.3484253],[-7.6169083,54.3482469],[-7.6172056,54.3481468],[-7.6174062,54.3480287],[-7.6179057,54.347821],[-7.6181177,54.347716],[-7.6192666,54.3470955],[-7.6204955,54.3463615],[-7.6211152,54.3459407],[-7.6217953,54.3451835],[-7.6223312,54.3448494],[-7.6237319,54.3440641],[-7.6253963,54.3430856],[-7.6258855,54.342772],[-7.6260224,54.3426503],[-7.6262895,54.3427317],[-7.6272162,54.3429383],[-7.6282155,54.3431153],[-7.628308,54.3431063],[-7.6284677,54.3430376],[-7.6285172,54.3430108],[-7.6287528,54.3431317],[-7.6290626,54.3432317],[-7.631325,54.3438033],[-7.6315714,54.3438808],[-7.6316638,54.3437892],[-7.6318037,54.3437158],[-7.6320246,54.3436297],[-7.6326508,54.3434891],[-7.6334564,54.3434276],[-7.6340791,54.3434166],[-7.6342312,54.3434194],[-7.6350663,54.3434312],[-7.6369885,54.343461],[-7.6377775,54.3435001],[-7.638473,54.3435817],[-7.6388353,54.3436618],[-7.6394657,54.3438668],[-7.6400945,54.3441621],[-7.6406998,54.3445992],[-7.6415974,54.3454678],[-7.6417897,54.3456036],[-7.6422484,54.3458822],[-7.6428601,54.3461743],[-7.6430438,54.3462324],[-7.643782,54.3464442],[-7.6442649,54.3465597],[-7.6449228,54.3467087],[-7.6457891,54.3469277],[-7.6459721,54.3469594],[-7.6458944,54.3471473],[-7.6458756,54.3472766],[-7.6459482,54.3473224],[-7.6460982,54.3473779],[-7.6466502,54.3475312],[-7.6502083,54.3486045],[-7.6509302,54.3488774],[-7.6515645,54.3491372],[-7.6521663,54.3493596],[-7.6524531,54.3494375],[-7.6527819,54.3494749],[-7.6532859,54.3494684],[-7.6539161,54.3495088],[-7.6545613,54.3495839],[-7.654975,54.3496872],[-7.6553807,54.349848],[-7.6558109,54.3500849],[-7.6567529,54.3506659],[-7.6569889,54.3509151],[-7.657323,54.3515186],[-7.657776,54.3522199],[-7.6579036,54.3523382],[-7.6582411,54.3525328],[-7.6597409,54.3530193],[-7.6621566,54.3538735],[-7.66339,54.3542692],[-7.6654604,54.3548997],[-7.6659707,54.3550882],[-7.6668588,54.355492],[-7.6677164,54.3559699],[-7.6695399,54.3570559],[-7.6704319,54.3576718],[-7.671036,54.3581518],[-7.6714059,54.3584929],[-7.6726479,54.3597299],[-7.67303,54.3600689],[-7.673453,54.3603788],[-7.6736919,54.360526],[-7.6742314,54.3607852],[-7.675625,54.3613627],[-7.6760959,54.361543],[-7.6771149,54.3619788],[-7.67773,54.3623178],[-7.6779978,54.3625039],[-7.6781941,54.3626965],[-7.6784829,54.3630733],[-7.6786574,54.363416],[-7.679531,54.3664687],[-7.6796817,54.3669141],[-7.6798111,54.3671791],[-7.679978,54.367431],[-7.6801618,54.367659],[-7.6803818,54.3678789],[-7.6806448,54.3680918],[-7.6809449,54.368291],[-7.6826189,54.3691798],[-7.6832129,54.3695699],[-7.6834569,54.3697859],[-7.6838609,54.3702609],[-7.6845938,54.3714278],[-7.6848678,54.371803],[-7.685012,54.371963],[-7.6854719,54.3722709],[-7.6859569,54.372541],[-7.6863749,54.372834],[-7.6865679,54.3729979],[-7.6872729,54.3737278],[-7.6878888,54.3742259],[-7.6880408,54.3743939],[-7.6881129,54.3745459],[-7.6881671,54.3747409],[-7.688133,54.3749348],[-7.6877424,54.3760856],[-7.6877499,54.37633],[-7.687654,54.3772309],[-7.6876439,54.377672],[-7.6876869,54.3778858],[-7.6878559,54.378288],[-7.6879749,54.3784789],[-7.688272,54.378849],[-7.688641,54.3792008],[-7.6888479,54.3793649],[-7.6893059,54.379687],[-7.6905859,54.3804579],[-7.6908309,54.3806219],[-7.6912919,54.3809659],[-7.6916989,54.3813319],[-7.6920599,54.3817229],[-7.692362,54.3821159],[-7.6924929,54.3823239],[-7.6927619,54.3829559],[-7.692872,54.383159],[-7.693005,54.3833449],[-7.6931709,54.3835149],[-7.6933499,54.383661],[-7.6935649,54.3838008],[-7.6945349,54.384279],[-7.694746,54.384409],[-7.6951219,54.3846819],[-7.6954599,54.3849888],[-7.6967789,54.3865069],[-7.698397,54.3885789],[-7.698999,54.389432],[-7.6996708,54.3902909],[-7.701185,54.3920229],[-7.7021628,54.3929947],[-7.7028289,54.3934797],[-7.7030383,54.3935833],[-7.7052377,54.3944861],[-7.7081732,54.3957683],[-7.709988,54.3966386],[-7.7139038,54.3982728],[-7.7152239,54.3987469],[-7.715532,54.398873],[-7.7158039,54.3990209],[-7.7160328,54.399193],[-7.7162189,54.399383],[-7.716373,54.3995959],[-7.7164929,54.3998289],[-7.717089,54.401352],[-7.7176159,54.4029149],[-7.717813,54.4034009],[-7.7179499,54.4036199],[-7.718662,54.40446],[-7.7189199,54.4049329],[-7.7194769,54.4061239],[-7.7198379,54.4067648],[-7.7200999,54.4071159],[-7.7204509,54.407422],[-7.7206699,54.407571],[-7.7211888,54.4078269],[-7.7214278,54.4079709],[-7.721618,54.4081478],[-7.7217858,54.408336],[-7.7220458,54.4087499],[-7.722687,54.4099829],[-7.722825,54.4101699],[-7.7229889,54.4103389],[-7.7231988,54.4104989],[-7.7234419,54.4106429],[-7.7242849,54.4110118],[-7.7248089,54.4112879],[-7.725049,54.4114479],[-7.7254889,54.411813],[-7.72586,54.4121808],[-7.7260179,54.4123649],[-7.726302,54.4129039],[-7.7264089,54.413082],[-7.7265449,54.4132459],[-7.7276669,54.4143968],[-7.7279819,54.414745],[-7.7283729,54.4152618],[-7.728819,54.4156189],[-7.7300889,54.4164249],[-7.73056,54.4167749],[-7.7308308,54.4169379],[-7.73136,54.4173149],[-7.7337839,54.4187189],[-7.734428,54.419071],[-7.7364629,54.4200898],[-7.7371819,54.420408],[-7.737924,54.4207078],[-7.7390799,54.4211389],[-7.7410333,54.4218022],[-7.7432582,54.4225848],[-7.74379,54.4227949],[-7.7458089,54.4234498],[-7.7499479,54.4245829],[-7.7507108,54.4247639],[-7.7518159,54.424964],[-7.7554997,54.4255625],[-7.7561028,54.4256439],[-7.7569419,54.4257329],[-7.7586179,54.4258609],[-7.7599129,54.425919],[-7.7615689,54.4259529],[-7.7619949,54.4259938],[-7.7624069,54.4260499],[-7.7632369,54.4262108],[-7.7640127,54.4264141],[-7.7643523,54.4265258],[-7.7646524,54.4266488],[-7.7673958,54.428116],[-7.7679999,54.4283959],[-7.7686449,54.4286269],[-7.7693589,54.4288029],[-7.770546,54.429043],[-7.772157,54.4293319],[-7.77341,54.429594],[-7.774248,54.4297908],[-7.7750578,54.4300099],[-7.775829,54.430253],[-7.7765548,54.4305329],[-7.7779019,54.4311688],[-7.778292,54.4313752],[-7.7796358,54.4321369],[-7.7800099,54.4323758],[-7.7801769,54.432507],[-7.780415,54.4328149],[-7.7807769,54.4334958],[-7.7810559,54.4338069],[-7.7816319,54.4342459],[-7.7823639,54.4348459],[-7.7825859,54.4349709],[-7.7830799,54.4351739],[-7.783618,54.435352],[-7.785872,54.4358359],[-7.7868098,54.4360199],[-7.7873979,54.4360939],[-7.7880159,54.4360668],[-7.7883249,54.4360398],[-7.7886589,54.4359908],[-7.789265,54.4359719],[-7.7898189,54.4360059],[-7.7900719,54.4360519],[-7.790293,54.436119],[-7.7904899,54.4362149],[-7.790648,54.4363429],[-7.7910678,54.4368359],[-7.7917859,54.4375639],[-7.7921729,54.437893],[-7.7928429,54.4383829],[-7.793032,54.43856],[-7.7935209,54.4391089],[-7.793767,54.4394729],[-7.7939018,54.439857],[-7.7939449,54.4404079],[-7.7938668,54.4410058],[-7.7935198,54.442433],[-7.793431,54.442932],[-7.7933749,54.4434679],[-7.7931629,54.4446339],[-7.7931849,54.444771],[-7.7932479,54.4449029],[-7.793485,54.445175],[-7.7938039,54.4454719],[-7.7940579,54.4458079],[-7.794139,54.4459828],[-7.7941909,54.446165],[-7.7943358,54.4469169],[-7.7944459,54.4472509],[-7.7945558,54.447399],[-7.7946979,54.4475279],[-7.794879,54.4476478],[-7.7951029,54.4477579],[-7.795639,54.4479619],[-7.795926,54.4480489],[-7.7965509,54.4481919],[-7.7974159,54.448305],[-7.7976689,54.4483629],[-7.7978879,54.448454],[-7.7980699,54.4485879],[-7.798351,54.4488979],[-7.7986149,54.4492389],[-7.7989299,54.44955],[-7.7991258,54.4496859],[-7.7993549,54.4497999],[-7.79962,54.4498938],[-7.7999089,54.449962],[-7.8002199,54.4500179],[-7.8012729,54.4501509],[-7.8020589,54.4502149],[-7.8028509,54.4502559],[-7.8040279,54.4502539],[-7.8058358,54.4502209],[-7.8071736,54.4501037],[-7.8073401,54.4501356],[-7.80745,54.4502036],[-7.8075278,54.450282],[-7.8075534,54.4503545],[-7.8074278,54.4512109],[-7.807461,54.4515039],[-7.8075139,54.45163],[-7.8075889,54.4517349],[-7.8076919,54.4518259],[-7.8078339,54.4519029],[-7.8082088,54.4520429],[-7.808649,54.452167],[-7.8088919,54.452211],[-7.8094,54.452246],[-7.8096758,54.4522359],[-7.8105438,54.452154],[-7.8108139,54.4520949],[-7.8110769,54.4520159],[-7.811326,54.4519159],[-7.8124579,54.451343],[-7.8126849,54.4512608],[-7.8129308,54.451215],[-7.8131949,54.4512088],[-7.8137649,54.4512498],[-7.8140529,54.4512899],[-7.8143408,54.4513409],[-7.8146269,54.451413],[-7.815812,54.4518319],[-7.816335,54.4520439],[-7.8165639,54.4521579],[-7.8173349,54.45278],[-7.8180618,54.453271],[-7.81972,54.4542569],[-7.8220678,54.455541],[-7.8226929,54.4558468],[-7.823997,54.456409],[-7.8249559,54.4568029],[-7.825847,54.4571349],[-7.8261038,54.4572479],[-7.8263339,54.457388],[-7.8265238,54.4575469],[-7.8268168,54.4579218],[-7.8270448,54.458316],[-7.8271018,54.4585059],[-7.827105,54.45904],[-7.8271549,54.4592059],[-7.8272538,54.4593609],[-7.8273769,54.4594969],[-7.827726,54.459748],[-7.828339,54.4601229],[-7.8291889,54.460605],[-7.8303318,54.4612019],[-7.8313159,54.461749],[-7.8317668,54.4620509],[-7.832274,54.4624616],[-7.8323578,54.4625544],[-7.8332787,54.4639365],[-7.8334138,54.464157],[-7.8335009,54.4643547],[-7.8335836,54.4644768],[-7.8337485,54.4645869],[-7.834542,54.4653178],[-7.8349329,54.4655484],[-7.8358024,54.465955],[-7.8364346,54.4661894],[-7.8383397,54.4668221],[-7.8402666,54.4673554],[-7.8417241,54.4676983],[-7.8434674,54.4680412],[-7.8443436,54.4682697],[-7.8458678,54.4684128],[-7.8470681,54.4686128],[-7.8489542,54.4689843],[-7.8526851,54.4697995],[-7.8542976,54.4700828],[-7.8571558,54.4705338],[-7.8599315,54.4705908],[-7.8613853,54.4705846],[-7.8625856,54.4705275],[-7.8629829,54.4708659],[-7.863589,54.470808],[-7.863904,54.4707988],[-7.8645069,54.47083],[-7.865987,54.4710429],[-7.8668689,54.471239],[-7.868664,54.4718859],[-7.8715268,54.4726499],[-7.871913,54.4727399],[-7.8726798,54.4728599],[-7.8738669,54.472945],[-7.8742688,54.472956],[-7.8750819,54.4729429],[-7.8754889,54.4729089],[-7.8762879,54.4727729],[-7.8770758,54.4726879],[-7.8774659,54.4726619],[-7.878666,54.4726458],[-7.880285,54.4726719],[-7.8807,54.472663],[-7.8819219,54.4725579],[-7.8823289,54.4725419],[-7.8831769,54.4725458],[-7.8848898,54.4726229],[-7.8853119,54.4726529],[-7.8868689,54.4728159],[-7.8879028,54.472869],[-7.8902479,54.4728809],[-7.8910209,54.4729059],[-7.8917678,54.4729539],[-7.8924889,54.4729539],[-7.892843,54.4729688],[-7.8932039,54.4729958],[-7.8958768,54.473276],[-7.8978808,54.4734289],[-7.8982578,54.4734479],[-7.8986298,54.473447],[-7.898999,54.4734179],[-7.89936,54.4733648],[-7.900789,54.4730448],[-7.9015478,54.4729139],[-7.9019349,54.4728658],[-7.902341,54.472837],[-7.905422,54.4728129],[-7.9096869,54.472739],[-7.9135109,54.4727099],[-7.922972,54.472576],[-7.926213,54.472563],[-7.9285039,54.4726028],[-7.9293659,54.4726399],[-7.9302018,54.4726948],[-7.9321179,54.4728649],[-7.9379439,54.4733048],[-7.942852,54.4737148],[-7.9432748,54.4737418],[-7.9441508,54.473767],[-7.9450279,54.4737439],[-7.9464029,54.4736289],[-7.948708,54.4733889],[-7.950994,54.4731748],[-7.9518828,54.4730709],[-7.9544129,54.47262],[-7.9586578,54.4717039],[-7.9606479,54.4713019],[-7.961439,54.4711779],[-7.963546,54.470971],[-7.9648608,54.4708029],[-7.9692369,54.470157],[-7.9700719,54.4699959],[-7.9717489,54.4695959],[-7.9733659,54.4691798],[-7.9741988,54.468996],[-7.9754332,54.4688282],[-7.9768078,54.4687375],[-7.9772338,54.4687358],[-7.9776596,54.4687576],[-7.9776797,54.4686104],[-7.9777341,54.4685605],[-7.9778543,54.4685305],[-7.9804474,54.468168],[-7.9807939,54.4681381],[-7.9885848,54.4677653],[-7.9910176,54.4676705],[-7.9929467,54.4675675],[-7.995039,54.4675808],[-7.9996444,54.4674943],[-8.0029704,54.4672798],[-8.0047278,54.46713],[-8.0099456,54.4668806],[-8.0110015,54.4668472],[-8.0119861,54.4667839],[-8.0121953,54.4667973],[-8.0123154,54.466824],[-8.0124071,54.4669005],[-8.012405,54.4669318],[-8.0128621,54.4670045],[-8.0131099,54.4670713],[-8.0138126,54.4674267],[-8.0141447,54.4675541],[-8.0147099,54.4676899],[-8.0156019,54.4678769],[-8.016512,54.4680269],[-8.0171689,54.4680948],[-8.019262,54.46821],[-8.0210879,54.468348],[-8.0218188,54.4683849],[-8.0225507,54.468375],[-8.0276949,54.4681399],[-8.0304829,54.4679619],[-8.0327429,54.4677869],[-8.0340479,54.4676389],[-8.0344789,54.4675729],[-8.034898,54.4674979],[-8.0383189,54.4667899],[-8.0386044,54.4667468],[-8.0394478,54.4667066],[-8.0396706,54.4667129],[-8.0400167,54.4667495],[-8.0420496,54.4670816],[-8.0463938,54.4678799],[-8.057759,54.469897],[-8.0620659,54.470705],[-8.065925,54.471405],[-8.0686869,54.4719349],[-8.0702169,54.4722059],[-8.0723049,54.4725998],[-8.0726419,54.4726509],[-8.072982,54.4726919],[-8.0747507,54.472845],[-8.0820359,54.473341],[-8.0837078,54.4734719],[-8.0843719,54.4735379],[-8.086326,54.4736355],[-8.0870148,54.4737117],[-8.0873115,54.4737647],[-8.0876555,54.4738554],[-8.0895819,54.4744912],[-8.0918105,54.4752543],[-8.0944454,54.4761271],[-8.0979679,54.4772492],[-8.0980495,54.477273],[-8.0997534,54.4778432],[-8.1049643,54.4794425],[-8.1054747,54.4796602],[-8.1058554,54.4798789],[-8.1065899,54.4803943],[-8.1071254,54.4808001],[-8.1073491,54.4809557],[-8.1075313,54.4810566],[-8.1079159,54.4812135],[-8.108527,54.4814139],[-8.1095202,54.4817059],[-8.1109865,54.482166],[-8.1114065,54.4822621],[-8.1198502,54.4835151],[-8.121757,54.48385],[-8.1284789,54.485158],[-8.1299137,54.4854657],[-8.1318589,54.4858229],[-8.1354126,54.4864439],[-8.1375673,54.4868453],[-8.1381217,54.4870543],[-8.1393691,54.4876277],[-8.1411216,54.4881829],[-8.1450771,54.4894924],[-8.145768,54.4896674],[-8.1470301,54.4899571],[-8.1506388,54.4907571],[-8.1513405,54.4909795],[-8.152177,54.4913136],[-8.1525492,54.4914453],[-8.153332,54.4916629],[-8.156562,54.4924009],[-8.1578515,54.4925789],[-8.1617752,54.4930057],[-8.1623515,54.4930267],[-8.1633732,54.4929992],[-8.1641724,54.4930508],[-8.1648627,54.4931588],[-8.1652429,54.4932553],[-8.1669802,54.4938249],[-8.1685465,54.4943919],[-8.169662,54.4948182],[-8.171341,54.4955532],[-8.176345,54.4979294],[-8.1767999,54.4981158],[-8.1769332,54.4981468],[-8.1770269,54.4980825],[-8.1771718,54.4980818],[-8.1772162,54.4980983],[-8.17727,54.4981505],[-8.1772627,54.498211],[-8.1772363,54.4982375],[-8.1776194,54.4983844],[-8.1788627,54.4987396],[-8.1797868,54.4989475],[-8.1809763,54.4991843],[-8.1823815,54.4994279],[-8.1835641,54.4995816],[-8.1837827,54.4996088],[-8.1848128,54.4997587],[-8.1882784,54.5001694],[-8.188983,54.5002478],[-8.1895543,54.5002877],[-8.1897004,54.5002961],[-8.1897302,54.5002352],[-8.1898548,54.5002065],[-8.1898969,54.5002137],[-8.189973,54.5002705],[-8.1899535,54.5003302],[-8.1898939,54.5003533]]}};
var route7 = {"type":"Feature","properties":{"name":"Bus 7","desc":"\n138 miles"},"geometry":{"type":"LineString","coordinates":[[-7.6585202,54.5326047],[-7.6585179,54.5326418],[-7.6584939,54.5326983],[-7.6585746,54.5326912],[-7.658956,54.5326323],[-7.6615032,54.5320761],[-7.6621558,54.531967],[-7.6645726,54.5317051],[-7.6655067,54.5315391],[-7.6661488,54.5314019],[-7.6672498,54.53114],[-7.6682832,54.5309463],[-7.6690245,54.5307872],[-7.6719142,54.5300744],[-7.6728504,54.5297965],[-7.6732199,54.5296536],[-7.6741025,54.5292349],[-7.6765153,54.527958],[-7.6771334,54.5276894],[-7.6782087,54.5272752],[-7.6793056,54.5270347],[-7.6803896,54.5268926],[-7.6812303,54.526816],[-7.682067,54.5267536],[-7.6828617,54.5267138],[-7.683864,54.5266894],[-7.6856952,54.5267354],[-7.6871009,54.5268159],[-7.6885996,54.5269829],[-7.6904442,54.5270168],[-7.692224,54.5269308],[-7.6942721,54.5267821],[-7.7037148,54.5253574],[-7.7153552,54.5236859],[-7.7178987,54.523323],[-7.7180829,54.5232981],[-7.7212348,54.5228059],[-7.7221153,54.5226931],[-7.7223351,54.5226787],[-7.722499,54.5226789],[-7.7225493,54.5226156],[-7.7225493,54.5226156],[-7.7225387,54.522526],[-7.7215394,54.5215835],[-7.7195115,54.5195461],[-7.7188915,54.5189294],[-7.7127535,54.5128211],[-7.7116322,54.5115632],[-7.7106288,54.5101578],[-7.7101514,54.5093521],[-7.710078,54.5093793],[-7.7097958,54.5093999],[-7.7095717,54.5093563],[-7.709107,54.5092153],[-7.7086393,54.5090492],[-7.7080011,54.5087817],[-7.7062212,54.507969],[-7.705134,54.5075656],[-7.7028572,54.5069034],[-7.7023789,54.5067948],[-7.7019891,54.5067343],[-7.7015266,54.5066959],[-7.7006953,54.5066846],[-7.6994493,54.5067403],[-7.6980371,54.5067704],[-7.6967127,54.5068235],[-7.6961676,54.5068218],[-7.6939715,54.5066505],[-7.6927408,54.5065769],[-7.6919857,54.506516],[-7.690906,54.506296],[-7.6903554,54.5062331],[-7.6891031,54.506171],[-7.6882062,54.506004],[-7.688142,54.5060066],[-7.6881397,54.5054394],[-7.6879488,54.5052284],[-7.6872915,54.5048538],[-7.6872339,54.5047754],[-7.6869659,54.5046154],[-7.6854607,54.5034436],[-7.6845087,54.5026467],[-7.6838191,54.5020375],[-7.6831352,54.5013583],[-7.681586,54.4992889],[-7.6808488,54.4981879],[-7.6804314,54.4976038],[-7.6801095,54.49723],[-7.6795896,54.4967103],[-7.6790549,54.4962562],[-7.6784706,54.495805],[-7.6773478,54.4948922],[-7.6770613,54.4946869],[-7.6767405,54.4944898],[-7.674128,54.4932189],[-7.6732863,54.4927654],[-7.6725866,54.492359],[-7.6719882,54.4918994],[-7.6713551,54.4913073],[-7.6680671,54.488558],[-7.665622,54.4865566],[-7.6655095,54.4864968],[-7.6645324,54.4857704],[-7.6639162,54.4854156],[-7.6625304,54.4847545],[-7.6619066,54.4845321],[-7.6613197,54.4844066],[-7.6588351,54.4839646],[-7.6572023,54.4835347],[-7.6446751,54.4799832],[-7.6441614,54.4798163],[-7.6414307,54.4788254],[-7.6407526,54.4785145],[-7.6379318,54.4768614],[-7.6360233,54.4758125],[-7.6355252,54.4755579],[-7.6351298,54.4753931],[-7.6341038,54.4750799],[-7.6336002,54.4748914],[-7.6332481,54.4747339],[-7.632854,54.4744986],[-7.6326152,54.4742958],[-7.632509,54.4743951],[-7.6324943,54.4744442],[-7.632509,54.4743951],[-7.6325895,54.4743176],[-7.6326152,54.4742958],[-7.6324804,54.4740846],[-7.632453,54.473964],[-7.6325131,54.4736604],[-7.6326646,54.4732508],[-7.6326979,54.4731238],[-7.6328719,54.4727829],[-7.6330781,54.4724691],[-7.6335262,54.4716382],[-7.6336006,54.4715476],[-7.633641,54.4715102],[-7.6336898,54.4714938],[-7.633605,54.4714126],[-7.633502,54.4713476],[-7.6327925,54.4710559],[-7.6310433,54.4702281],[-7.6288607,54.4691023],[-7.6275503,54.4683737],[-7.6272771,54.4681576],[-7.6269757,54.4678613],[-7.6266769,54.4674699],[-7.6263517,54.4669568],[-7.626271,54.4668279],[-7.6257108,54.4658867],[-7.6255867,54.4655723],[-7.625553,54.4652334],[-7.6255416,54.4641069],[-7.6255079,54.46356],[-7.6254094,54.4628003],[-7.6252967,54.4621649],[-7.6248262,54.4600689],[-7.624843,54.4598511],[-7.6249022,54.4596399],[-7.6251415,54.4591715],[-7.6253135,54.4589062],[-7.6256938,54.4585197],[-7.6259304,54.4583461],[-7.6262461,54.4581513],[-7.6266685,54.4579336],[-7.6291617,54.4568527],[-7.6295081,54.4566759],[-7.6296717,54.4565498],[-7.6298097,54.4563907],[-7.6299166,54.4561961],[-7.6299801,54.4560253],[-7.6300341,54.4557248],[-7.6300101,54.4554415],[-7.6298386,54.4547464],[-7.6295618,54.4537972],[-7.629249,54.4528763],[-7.6288884,54.4519114],[-7.6284574,54.4509779],[-7.6282546,54.4506748],[-7.6265419,54.4487308],[-7.6256635,54.4476857],[-7.625491,54.4473532],[-7.6254431,54.4471729],[-7.6254178,54.4466979],[-7.6255388,54.4420323],[-7.6255811,54.4417621],[-7.6258007,54.4408609],[-7.626001,54.4392931],[-7.6259952,54.4390998],[-7.6259333,54.4387049],[-7.6257756,54.4380332],[-7.6257445,54.4377743],[-7.6258121,54.4366208],[-7.6257868,54.4363537],[-7.6256404,54.4356589],[-7.6248796,54.4328916],[-7.6247781,54.4322983],[-7.6247725,54.4282311],[-7.6248007,54.4276197],[-7.6248374,54.4273575],[-7.6249134,54.4271083],[-7.6256404,54.4256433],[-7.6256905,54.4254552],[-7.6259445,54.4215835],[-7.6259782,54.420377],[-7.6260714,54.4197884],[-7.6262208,54.417053],[-7.6264214,54.416155],[-7.6266721,54.4153026],[-7.6267253,54.4150421],[-7.6267093,54.4148157],[-7.6266359,54.4146533],[-7.6265175,54.414527],[-7.6258996,54.4140098],[-7.6248089,54.413046],[-7.6245859,54.412808],[-7.624424,54.4125252],[-7.6243874,54.4123191],[-7.6243995,54.4121838],[-7.6247968,54.4111953],[-7.6265158,54.407123],[-7.6269006,54.4060917],[-7.6313549,54.3957875],[-7.6316304,54.3952118],[-7.631856,54.3948467],[-7.6322395,54.3943462],[-7.632464,54.394096],[-7.6351803,54.3915021],[-7.6377649,54.3888855],[-7.6384924,54.3881199],[-7.6387098,54.3879523],[-7.6389903,54.3878078],[-7.6391749,54.3876185],[-7.6391825,54.3875587],[-7.6392332,54.3875069],[-7.6393712,54.3874637],[-7.6393362,54.3873382],[-7.6394027,54.3870487],[-7.639409,54.3867636],[-7.6391557,54.3860951],[-7.6387616,54.385372],[-7.6383138,54.3848219],[-7.6376092,54.3840484],[-7.6372711,54.3836347],[-7.6370662,54.3832646],[-7.6368496,54.3826356],[-7.6368147,54.3824102],[-7.6368119,54.3821358],[-7.6369189,54.3802737],[-7.6368496,54.3797878],[-7.6367166,54.3793117],[-7.6364392,54.3787145],[-7.6350218,54.3759619],[-7.6347833,54.3755553],[-7.6326968,54.3723022],[-7.6324249,54.3716579],[-7.632333,54.3711881],[-7.6323423,54.3706506],[-7.6324981,54.3700206],[-7.6328477,54.3692914],[-7.6338284,54.3674241],[-7.6339051,54.3672905],[-7.633809,54.3672605],[-7.6337349,54.367214],[-7.6336913,54.3671557],[-7.6336829,54.3670923],[-7.6337105,54.3670309],[-7.6337712,54.366978],[-7.6338583,54.3669398],[-7.6339621,54.3669202],[-7.6340711,54.3669215],[-7.6341601,54.3669394],[-7.6342368,54.3669713],[-7.6343292,54.3670655],[-7.6343374,54.3671203],[-7.6346611,54.3671073],[-7.6352605,54.3669884],[-7.6354554,54.3669145],[-7.6361684,54.3665898],[-7.6363826,54.3665401],[-7.636451,54.3664216],[-7.6366013,54.3663156],[-7.6366488,54.3658203],[-7.6366192,54.3655266],[-7.6363642,54.3650831],[-7.6363498,54.3649589],[-7.6363731,54.3648194],[-7.6365312,54.3646428],[-7.6368356,54.3645387],[-7.6369503,54.3645239],[-7.6370085,54.3645199],[-7.637007,54.3644805],[-7.6370822,54.364415],[-7.6372158,54.3644025],[-7.6372778,54.3644204],[-7.6373411,54.3644837],[-7.6373175,54.3645504],[-7.6372476,54.3645847],[-7.6374933,54.3647195],[-7.6386049,54.3654268],[-7.6386267,54.3654527],[-7.6386887,54.36544],[-7.6388135,54.3654588],[-7.6388763,54.3655421],[-7.6389728,54.3655724],[-7.6391835,54.3657015],[-7.639203,54.3657365],[-7.63918,54.3658062],[-7.6391129,54.3658468],[-7.6389784,54.3658449],[-7.6387029,54.3657322],[-7.6386854,54.3657183],[-7.6386994,54.3656928],[-7.6387282,54.3656335],[-7.6386062,54.3656119],[-7.6385463,54.3655493],[-7.6385779,54.3654784],[-7.6386267,54.3654527],[-7.6386049,54.3654268],[-7.6381646,54.3651362],[-7.6373106,54.3646128],[-7.6372476,54.3645847],[-7.6372173,54.3645934],[-7.6370859,54.3645826],[-7.6370362,54.364556],[-7.637007,54.3644805],[-7.6370822,54.364415],[-7.6372158,54.3644025],[-7.6373225,54.3644509],[-7.6384369,54.3643705],[-7.6389218,54.3643975],[-7.6390344,54.3643952],[-7.6390764,54.3643675],[-7.639198,54.364353],[-7.6392555,54.3643688],[-7.6393869,54.3643103],[-7.6394362,54.364198],[-7.6393701,54.36419],[-7.6393384,54.3641669],[-7.6393343,54.3641322],[-7.6394372,54.3637798],[-7.6394372,54.3636785],[-7.639374,54.3635356],[-7.6384092,54.3623238],[-7.6383697,54.3621901],[-7.6383736,54.3620144],[-7.6383076,54.3619997],[-7.6376395,54.3612034],[-7.6373532,54.3608976],[-7.637006,54.3607076],[-7.6354392,54.3604697],[-7.6351536,54.3604015],[-7.634912,54.3603052],[-7.6348327,54.3602738],[-7.6345101,54.3604783],[-7.6345403,54.3605286],[-7.634535,54.3605884],[-7.6344972,54.3606359],[-7.6344266,54.360675],[-7.6343408,54.3606953],[-7.6342517,54.3606964],[-7.6341627,54.3606776],[-7.6340865,54.3606372],[-7.6340444,54.3605817],[-7.6340437,54.360523],[-7.634078,54.3604725],[-7.634142,54.3604326],[-7.6331772,54.3597369],[-7.6319517,54.3587477],[-7.6311806,54.3580872],[-7.630525,54.3576372],[-7.6301802,54.3574405],[-7.6296897,54.3572],[-7.6291725,54.356992],[-7.627208,54.3563538],[-7.6269215,54.3562421],[-7.6267321,54.3561387],[-7.6260643,54.3556123],[-7.6252727,54.3549542],[-7.6250518,54.3547279],[-7.6249037,54.3544845],[-7.6248225,54.3542133],[-7.6247396,54.3537882],[-7.6245926,54.3527764],[-7.6246194,54.352533],[-7.6246826,54.3523178],[-7.6248307,54.352042],[-7.6252745,54.3515549],[-7.62701,54.3500756],[-7.6285586,54.3486876],[-7.6288668,54.3483674],[-7.6293655,54.3476901],[-7.6295996,54.3472477],[-7.629743,54.3468612],[-7.6298658,54.3463619],[-7.6299658,54.346083],[-7.6300114,54.3459003],[-7.6301334,54.3454769],[-7.6304506,54.3449336],[-7.6306505,54.3446812],[-7.6314103,54.3439991],[-7.6315714,54.3438808],[-7.631325,54.3438033],[-7.6308908,54.3437027],[-7.6302958,54.3435392],[-7.6303523,54.3434455],[-7.6303651,54.343244],[-7.630205,54.3426541],[-7.6299652,54.3420673],[-7.6299233,54.3414178],[-7.6299574,54.3413227],[-7.6306308,54.3404956],[-7.6300548,54.3403498],[-7.6297076,54.3402023],[-7.6294593,54.3400548],[-7.6288981,54.3396664],[-7.628838,54.3395436],[-7.6289283,54.3393507],[-7.6295057,54.3389893],[-7.6301697,54.3386667],[-7.6303761,54.3386142],[-7.63172,54.3384177],[-7.6303761,54.3386142],[-7.6301697,54.3386667],[-7.6295057,54.3389893],[-7.6289283,54.3393507],[-7.628838,54.3395436],[-7.6288981,54.3396664],[-7.6294593,54.3400548],[-7.6297076,54.3402023],[-7.6300548,54.3403498],[-7.6306308,54.3404956],[-7.6299574,54.3413227],[-7.6299233,54.3414178],[-7.6299652,54.3420673],[-7.630205,54.3426541],[-7.6303651,54.343244],[-7.6303523,54.3434455],[-7.6302958,54.3435392],[-7.6293429,54.3433056],[-7.6292204,54.3432732],[-7.6289534,54.3432455],[-7.6284343,54.343151],[-7.6282155,54.3431153],[-7.6272162,54.3429383],[-7.6262895,54.3427317],[-7.6260224,54.3426503],[-7.6258855,54.342772],[-7.6253963,54.3430856],[-7.6237319,54.3440641],[-7.6223312,54.3448494],[-7.6217953,54.3451835],[-7.6211152,54.3459407],[-7.6204955,54.3463615],[-7.6192666,54.3470955],[-7.6181177,54.347716],[-7.6179057,54.347821],[-7.6174062,54.3480287],[-7.6172056,54.3481468],[-7.6169083,54.3482469],[-7.6164964,54.3484253],[-7.616343,54.3485169],[-7.6161101,54.3486095],[-7.6162124,54.348682],[-7.616234,54.3487837],[-7.6161884,54.3488505],[-7.6161276,54.3488896],[-7.6160226,54.3489222],[-7.61592,54.3489291],[-7.6158958,54.3489254],[-7.6158002,54.3489107],[-7.6157093,54.3488695],[-7.6156476,54.3488051],[-7.615642,54.3487144],[-7.6157056,54.3486401],[-7.6157996,54.3485965],[-7.6158911,54.3485793],[-7.61605,54.3485903],[-7.6161101,54.3486095],[-7.616343,54.3485169],[-7.6164964,54.3484253],[-7.6169083,54.3482469],[-7.6172056,54.3481468],[-7.6174062,54.3480287],[-7.6179057,54.347821],[-7.6181177,54.347716],[-7.6192666,54.3470955],[-7.6204955,54.3463615],[-7.6211152,54.3459407],[-7.6217953,54.3451835],[-7.6223312,54.3448494],[-7.6237319,54.3440641],[-7.6253963,54.3430856],[-7.6258855,54.342772],[-7.6260224,54.3426503],[-7.6262895,54.3427317],[-7.6272162,54.3429383],[-7.6282155,54.3431153],[-7.628308,54.3431063],[-7.6284677,54.3430376],[-7.6285172,54.3430108],[-7.6287528,54.3431317],[-7.6290626,54.3432317],[-7.631325,54.3438033],[-7.6315714,54.3438808],[-7.6316638,54.3437892],[-7.6318037,54.3437158],[-7.6320246,54.3436297],[-7.6326508,54.3434891],[-7.6334564,54.3434276],[-7.6340791,54.3434166],[-7.6342312,54.3434194],[-7.6350663,54.3434312],[-7.6372096,54.3434694],[-7.6377775,54.3435001],[-7.638473,54.3435817],[-7.6388353,54.3436618],[-7.6394657,54.3438668],[-7.6400945,54.3441621],[-7.6406998,54.3445992],[-7.6415974,54.3454678],[-7.6419914,54.3457362],[-7.6422484,54.3458822],[-7.6428601,54.3461743],[-7.6430438,54.3462324],[-7.643782,54.3464442],[-7.6442649,54.3465597],[-7.6449228,54.3467087],[-7.6457891,54.3469277],[-7.6459721,54.3469594],[-7.6462904,54.3466915],[-7.647598,54.3459783],[-7.6491294,54.3452251],[-7.6496359,54.3449271],[-7.6499097,54.3446871],[-7.6500377,54.3445271],[-7.6502669,54.3441906],[-7.65034,54.3439993],[-7.6503431,54.3439095],[-7.6502468,54.3436472],[-7.6501168,54.3434636],[-7.6498616,54.3432861],[-7.6485932,54.3427493],[-7.6483102,54.3425622],[-7.6480882,54.3423544],[-7.6479353,54.3421323],[-7.6476615,54.3415417],[-7.647635,54.3414311],[-7.6475985,54.3410088],[-7.6476011,54.3405761],[-7.647674,54.3400348],[-7.6477568,54.339751],[-7.6482368,54.3386479],[-7.648384,54.3378419],[-7.6484799,54.3375996],[-7.6485893,54.337458],[-7.6488454,54.3372731],[-7.6488547,54.3372685],[-7.6485893,54.337458],[-7.6484799,54.3375996],[-7.648384,54.3378419],[-7.6482368,54.3386479],[-7.6477568,54.339751],[-7.647674,54.3400348],[-7.6476011,54.3405761],[-7.6475985,54.3410088],[-7.647635,54.3414311],[-7.6476615,54.3415417],[-7.6479353,54.3421323],[-7.6480882,54.3423544],[-7.6483102,54.3425622],[-7.6485932,54.3427493],[-7.6498616,54.3432861],[-7.6501168,54.3434636],[-7.6502468,54.3436472],[-7.6503431,54.3439095],[-7.65034,54.3439993],[-7.6502669,54.3441906],[-7.6500377,54.3445271],[-7.6499097,54.3446871],[-7.6496359,54.3449271],[-7.6491294,54.3452251],[-7.647598,54.3459783],[-7.6462904,54.3466915],[-7.6459721,54.3469594],[-7.6458944,54.3471473],[-7.6458756,54.3472766],[-7.6456435,54.3472922],[-7.6448165,54.3472533],[-7.6443277,54.3471902],[-7.6439002,54.3471237],[-7.6436773,54.347683],[-7.6434981,54.3480574],[-7.643386,54.3481271],[-7.6432703,54.3481617],[-7.6430051,54.3481923],[-7.6426728,54.3481858],[-7.6421276,54.3481401],[-7.6412763,54.3480421],[-7.6410273,54.3479915],[-7.6403668,54.3478065],[-7.6402603,54.3477825],[-7.6402005,54.3478238],[-7.6400637,54.3478335],[-7.6400302,54.3479056],[-7.6399952,54.3479587],[-7.6397421,54.3483303],[-7.6396597,54.3484922],[-7.6396117,54.3486576],[-7.6396456,54.3492888],[-7.639597,54.3495589],[-7.6394969,54.3498552],[-7.6393166,54.3501471],[-7.639078,54.3503831],[-7.6387482,54.3506318],[-7.6383699,54.350878],[-7.6375754,54.3512843],[-7.6372329,54.3515456],[-7.6369181,54.3518198],[-7.6365577,54.3523044],[-7.6365143,54.3526028],[-7.6365566,54.3529752],[-7.636847,54.3546804],[-7.6365707,54.3557358],[-7.6363368,54.356352],[-7.6361967,54.356975],[-7.6357912,54.3592838],[-7.6357178,54.3594447],[-7.6354556,54.3597826],[-7.6352978,54.3599025],[-7.6350361,54.3601447],[-7.6348327,54.3602738],[-7.6345101,54.3604783],[-7.6345403,54.3605286],[-7.634535,54.3605884],[-7.6344972,54.3606359],[-7.6344266,54.360675],[-7.6345688,54.3608203],[-7.6350124,54.3611855],[-7.6352604,54.3614338],[-7.6354682,54.361722],[-7.635639,54.3622862],[-7.6357322,54.362723],[-7.6357771,54.3632033],[-7.6357411,54.3635528],[-7.6355912,54.3639668],[-7.6343626,54.3664026],[-7.6340711,54.3669215],[-7.6342368,54.3669713],[-7.6343292,54.3670655],[-7.6343166,54.3671773],[-7.6341936,54.3672676],[-7.6341031,54.3672928],[-7.6339051,54.3672905],[-7.6328477,54.3692914],[-7.6324981,54.3700206],[-7.6323423,54.3706506],[-7.632333,54.3711881],[-7.6324249,54.3716579],[-7.6326968,54.3723022],[-7.6347833,54.3755553],[-7.6350218,54.3759619],[-7.6364392,54.3787145],[-7.6367166,54.3793117],[-7.6368496,54.3797878],[-7.6369189,54.3802737],[-7.6368119,54.3821358],[-7.6368147,54.3824102],[-7.6368496,54.3826356],[-7.6369881,54.3830761],[-7.6370662,54.3832646],[-7.6372711,54.3836347],[-7.6376092,54.3840484],[-7.6383138,54.3848219],[-7.6387616,54.385372],[-7.6391557,54.3860951],[-7.639409,54.3867636],[-7.6394027,54.3870487],[-7.6393362,54.3873382],[-7.6393712,54.3874637],[-7.639475,54.3874682],[-7.6395633,54.3874971],[-7.6396255,54.3875496],[-7.6396409,54.3876017],[-7.6396139,54.3876625],[-7.6395385,54.3877115],[-7.639464,54.387731],[-7.6393353,54.3877286],[-7.6391915,54.3877616],[-7.6389903,54.3878078],[-7.6387098,54.3879523],[-7.6384924,54.3881199],[-7.6377649,54.3888855],[-7.6351803,54.3915021],[-7.632464,54.394096],[-7.6322395,54.3943462],[-7.631856,54.3948467],[-7.6316304,54.3952118],[-7.6313549,54.3957875],[-7.6269006,54.4060917],[-7.6265158,54.407123],[-7.6247968,54.4111953],[-7.6243995,54.4121838],[-7.6243874,54.4123191],[-7.624424,54.4125252],[-7.6245859,54.412808],[-7.6248089,54.413046],[-7.6258996,54.4140098],[-7.6265175,54.414527],[-7.6266359,54.4146533],[-7.6267093,54.4148157],[-7.6267253,54.4150421],[-7.6263744,54.416396],[-7.6263591,54.416461],[-7.6263074,54.416472],[-7.6263591,54.416461],[-7.6262208,54.417053],[-7.6260714,54.4197884],[-7.6259782,54.420377],[-7.6259445,54.4215835],[-7.6256905,54.4254552],[-7.6256404,54.4256433],[-7.6249134,54.4271083],[-7.6248374,54.4273575],[-7.6248007,54.4276197],[-7.6247725,54.4282311],[-7.6247781,54.4322983],[-7.6248796,54.4328916],[-7.6256404,54.4356589],[-7.6257868,54.4363537],[-7.6258121,54.4366208],[-7.6257445,54.4377743],[-7.6257756,54.4380332],[-7.6259333,54.4387049],[-7.6259952,54.4390998],[-7.626001,54.4392931],[-7.6258007,54.4408609],[-7.6255811,54.4417621],[-7.6255388,54.4420323],[-7.6254178,54.4466979],[-7.6254431,54.4471729],[-7.625491,54.4473532],[-7.6256635,54.4476857],[-7.6265419,54.4487308],[-7.6282546,54.4506748],[-7.6284574,54.4509779],[-7.6288884,54.4519114],[-7.629249,54.4528763],[-7.6295618,54.4537972],[-7.6298386,54.4547464],[-7.6300101,54.4554415],[-7.6300341,54.4557248],[-7.6299801,54.4560253],[-7.6299166,54.4561961],[-7.6298097,54.4563907],[-7.6296717,54.4565498],[-7.6295081,54.4566759],[-7.6291617,54.4568527],[-7.6266685,54.4579336],[-7.6262461,54.4581513],[-7.6259304,54.4583461],[-7.6256938,54.4585197],[-7.6253135,54.4589062],[-7.6251415,54.4591715],[-7.6249022,54.4596399],[-7.624843,54.4598511],[-7.6248262,54.4600689],[-7.6252967,54.4621649],[-7.6254094,54.4628003],[-7.6255079,54.46356],[-7.6255416,54.4641069],[-7.625553,54.4652334],[-7.6255867,54.4655723],[-7.6257108,54.4658867],[-7.625905,54.466237],[-7.626271,54.4668279],[-7.6266769,54.4674699],[-7.6269757,54.4678613],[-7.6272771,54.4681576],[-7.6275503,54.4683737],[-7.6288607,54.4691023],[-7.6300105,54.4696999],[-7.6310433,54.4702281],[-7.6327925,54.4710559],[-7.633502,54.4713476],[-7.6336959,54.4712554],[-7.6341837,54.4707452],[-7.6347792,54.4704055],[-7.6351387,54.4702278],[-7.6366996,54.4695542],[-7.6371504,54.4692925],[-7.6372841,54.4691413],[-7.6376028,54.468548],[-7.638073,54.4675124],[-7.6380677,54.4671225],[-7.6379336,54.4668327],[-7.6377781,54.4666301],[-7.6371774,54.4659649],[-7.6370753,54.4658911],[-7.6369036,54.4656917],[-7.6365469,54.4652031],[-7.6366726,54.4651688],[-7.6365469,54.4652031],[-7.6365791,54.4652646],[-7.6370753,54.4658911],[-7.6371774,54.4659649],[-7.6377781,54.4666301],[-7.6379336,54.4668327],[-7.6380677,54.4671225],[-7.638073,54.4675124],[-7.6376028,54.468548],[-7.6372841,54.4691413],[-7.6371504,54.4692925],[-7.6366996,54.4695542],[-7.6351387,54.4702278],[-7.6347792,54.4704055],[-7.6341837,54.4707452],[-7.6337548,54.4712002],[-7.6336959,54.4712554],[-7.6335916,54.4713085],[-7.633502,54.4713476],[-7.633605,54.4714126],[-7.6336898,54.4714938],[-7.6337609,54.4714813],[-7.6338809,54.4715102],[-7.6339304,54.4715799],[-7.6340727,54.4715679],[-7.6349703,54.4717091],[-7.6368796,54.4717914],[-7.6377481,54.4718758],[-7.6393289,54.4721755],[-7.6405926,54.4724855],[-7.6414188,54.472654],[-7.6463915,54.4736012],[-7.6472469,54.4737452],[-7.6474026,54.4737747],[-7.6472469,54.4737452],[-7.6472636,54.4737042],[-7.6473454,54.4736606],[-7.6495049,54.4733781],[-7.6507723,54.4731761],[-7.6513329,54.4730232],[-7.6517911,54.472842],[-7.6521568,54.472723],[-7.6527368,54.4725956],[-7.6532192,54.472451],[-7.653648,54.4722735],[-7.6544154,54.4717684],[-7.6544963,54.4716817],[-7.6545762,54.4715171],[-7.6546136,54.4713157],[-7.6547352,54.4710602],[-7.6549282,54.4707672],[-7.6554969,54.4701749],[-7.6558618,54.4698383],[-7.6567521,54.4688218],[-7.6567843,54.4686972],[-7.6567737,54.4685475],[-7.6566128,54.468111],[-7.6564947,54.4678991],[-7.6564088,54.4674252],[-7.6564733,54.4672568],[-7.6566128,54.4670074],[-7.6569024,54.4668018],[-7.6586298,54.4658789],[-7.6588981,54.465698],[-7.6591663,54.4653925],[-7.6593486,54.4651493],[-7.6596275,54.464401],[-7.6600702,54.4636681],[-7.659924,54.4636841],[-7.6593203,54.4640045],[-7.6591324,54.4640855],[-7.6588735,54.4641291],[-7.6580286,54.4641766],[-7.6574599,54.4641766],[-7.6568914,54.4641514],[-7.6564409,54.4641079],[-7.6561341,54.4640734],[-7.6549925,54.4639333],[-7.6530151,54.463522],[-7.6523531,54.4632972],[-7.6519025,54.4630914],[-7.6517736,54.4629105],[-7.6517844,54.4626675],[-7.6517202,54.4623119],[-7.651688,54.4618006],[-7.6516129,54.4614014],[-7.6515054,54.4611207],[-7.6511729,54.4607778],[-7.6508941,54.4605597],[-7.6503897,54.4598299],[-7.6499391,54.4595805],[-7.647171,54.4579466],[-7.6462146,54.457336],[-7.6458748,54.4571613],[-7.6457161,54.4571026],[-7.645604,54.4570631],[-7.6452507,54.4569486],[-7.6419139,54.4553331],[-7.6411523,54.4544912],[-7.6404655,54.4535619],[-7.6404333,54.4532],[-7.6394785,54.4465692],[-7.63906,54.4433502],[-7.6385731,54.4400665],[-7.6380838,54.4370296],[-7.6382661,54.4363619],[-7.638663,54.4351389],[-7.6392962,54.432986],[-7.6394571,54.4323494],[-7.6397467,54.4317066],[-7.6399827,54.43029],[-7.64009,54.4299218],[-7.6400686,54.4295848],[-7.6401437,54.4291853],[-7.6401437,54.428736],[-7.64009,54.4282804],[-7.6399827,54.4279995],[-7.6395448,54.4274663],[-7.6395409,54.4273912],[-7.6395912,54.4272958],[-7.6399624,54.4269272],[-7.6403381,54.4264198],[-7.6410889,54.4256742],[-7.6413527,54.4253047],[-7.6414052,54.4252726],[-7.6412761,54.4252654],[-7.6414052,54.4252726],[-7.6413527,54.4253047],[-7.6410889,54.4256742],[-7.6403381,54.4264198],[-7.6399624,54.4269272],[-7.6395912,54.4272958],[-7.6395409,54.4273912],[-7.6395448,54.4274663],[-7.6399827,54.4279995],[-7.64009,54.4282804],[-7.6401437,54.428736],[-7.6401437,54.4291853],[-7.6400686,54.4295848],[-7.64009,54.4299218],[-7.6399827,54.43029],[-7.6397467,54.4317066],[-7.6394571,54.4323494],[-7.6392962,54.432986],[-7.638663,54.4351389],[-7.6382661,54.4363619],[-7.6380838,54.4370296],[-7.6385731,54.4400665],[-7.63906,54.4433502],[-7.6394785,54.4465692],[-7.6398112,54.4488835],[-7.6402357,54.4518213],[-7.6396515,54.4517958],[-7.6388674,54.4517309],[-7.6374274,54.451584],[-7.6369757,54.4515696],[-7.6361075,54.4516479],[-7.6354612,54.4517468],[-7.6347876,54.4519453],[-7.6325623,54.4527249],[-7.6316319,54.4530981],[-7.6304354,54.4535442],[-7.6296355,54.4537843],[-7.6295618,54.4537972],[-7.6298386,54.4547464],[-7.6300101,54.4554415],[-7.6300341,54.4557248],[-7.6299801,54.4560253],[-7.6299166,54.4561961],[-7.6298097,54.4563907],[-7.6296717,54.4565498],[-7.6295081,54.4566759],[-7.6291617,54.4568527],[-7.6266685,54.4579336],[-7.6262461,54.4581513],[-7.6259304,54.4583461],[-7.6256938,54.4585197],[-7.6253135,54.4589062],[-7.6251415,54.4591715],[-7.6249022,54.4596399],[-7.624843,54.4598511],[-7.6248262,54.4600689],[-7.6252967,54.4621649],[-7.6254094,54.4628003],[-7.6255079,54.46356],[-7.6255416,54.4641069],[-7.625553,54.4652334],[-7.6255867,54.4655723],[-7.6257108,54.4658867],[-7.625905,54.466237],[-7.626271,54.4668279],[-7.6266769,54.4674699],[-7.6269757,54.4678613],[-7.6272771,54.4681576],[-7.6275503,54.4683737],[-7.6288607,54.4691023],[-7.6300105,54.4696999],[-7.6310433,54.4702281],[-7.6327925,54.4710559],[-7.633502,54.4713476],[-7.6336959,54.4712554],[-7.6341837,54.4707452],[-7.6347792,54.4704055],[-7.6351387,54.4702278],[-7.6366996,54.4695542],[-7.6371504,54.4692925],[-7.6372841,54.4691413],[-7.6376028,54.468548],[-7.638073,54.4675124],[-7.6380677,54.4671225],[-7.6379336,54.4668327],[-7.6377781,54.4666301],[-7.6371774,54.4659649],[-7.6370753,54.4658911],[-7.6369036,54.4656917],[-7.6365469,54.4652031],[-7.636623,54.4651823],[-7.6365469,54.4652031],[-7.6365791,54.4652646],[-7.6370753,54.4658911],[-7.6371774,54.4659649],[-7.6377781,54.4666301],[-7.6379336,54.4668327],[-7.6380677,54.4671225],[-7.638073,54.4675124],[-7.6376028,54.468548],[-7.6372841,54.4691413],[-7.6371504,54.4692925],[-7.6366996,54.4695542],[-7.6351387,54.4702278],[-7.6347792,54.4704055],[-7.6341837,54.4707452],[-7.6337548,54.4712002],[-7.6336959,54.4712554],[-7.6335916,54.4713085],[-7.633502,54.4713476],[-7.633605,54.4714126],[-7.6336898,54.4714938],[-7.6337609,54.4714813],[-7.6338809,54.4715102],[-7.6339304,54.4715799],[-7.633784,54.4718345],[-7.63338,54.4723411],[-7.6328749,54.4728895],[-7.6326979,54.4731238],[-7.6326646,54.4732508],[-7.6324625,54.473843],[-7.632453,54.473964],[-7.6324804,54.4740846],[-7.6326056,54.4742808],[-7.6324973,54.4741111],[-7.6324804,54.4740846],[-7.632456,54.4739775],[-7.6324625,54.473843],[-7.6325131,54.4736604],[-7.6326646,54.4732508],[-7.6326979,54.4731238],[-7.6328719,54.4727829],[-7.6330781,54.4724691],[-7.6335262,54.4716382],[-7.6336006,54.4715476],[-7.633641,54.4715102],[-7.6337609,54.4714813],[-7.6338809,54.4715102],[-7.6339304,54.4715799],[-7.6340727,54.4715679],[-7.6349703,54.4717091],[-7.6368796,54.4717914],[-7.6377481,54.4718758],[-7.6393289,54.4721755],[-7.6405926,54.4724855],[-7.6414188,54.472654],[-7.6463915,54.4736012],[-7.6472469,54.4737452],[-7.6474026,54.4737747],[-7.6472469,54.4737452],[-7.6472636,54.4737042],[-7.6473454,54.4736606],[-7.6495049,54.4733781],[-7.6507723,54.4731761],[-7.6513329,54.4730232],[-7.6517911,54.472842],[-7.6521568,54.472723],[-7.6527368,54.4725956],[-7.6532192,54.472451],[-7.653648,54.4722735],[-7.6544154,54.4717684],[-7.6544963,54.4716817],[-7.6545762,54.4715171],[-7.6546136,54.4713157],[-7.6547352,54.4710602],[-7.6549282,54.4707672],[-7.6554969,54.4701749],[-7.6558618,54.4698383],[-7.6567521,54.4688218],[-7.6567843,54.4686972],[-7.6567737,54.4685475],[-7.6566128,54.468111],[-7.6564947,54.4678991],[-7.6564088,54.4674252],[-7.6564733,54.4672568],[-7.6566128,54.4670074],[-7.6569024,54.4668018],[-7.6586298,54.4658789],[-7.6588981,54.465698],[-7.6591663,54.4653925],[-7.6593486,54.4651493],[-7.6596275,54.464401],[-7.6600702,54.4636681],[-7.659924,54.4636841],[-7.6593203,54.4640045],[-7.6591324,54.4640855],[-7.6588735,54.4641291],[-7.6580286,54.4641766],[-7.6574599,54.4641766],[-7.6568914,54.4641514],[-7.6564409,54.4641079],[-7.6561341,54.4640734],[-7.6549925,54.4639333],[-7.6530151,54.463522],[-7.6523531,54.4632972],[-7.6519025,54.4630914],[-7.6517736,54.4629105],[-7.6517844,54.4626675],[-7.6517202,54.4623119],[-7.651688,54.4618006],[-7.6516129,54.4614014],[-7.6515054,54.4611207],[-7.6511729,54.4607778],[-7.6508941,54.4605597],[-7.6503897,54.4598299],[-7.6499391,54.4595805],[-7.647171,54.4579466],[-7.6462146,54.457336],[-7.6458748,54.4571613],[-7.6457161,54.4571026],[-7.645604,54.4570631],[-7.6452507,54.4569486],[-7.6419139,54.4553331],[-7.6411523,54.4544912],[-7.6404655,54.4535619],[-7.6404333,54.4532],[-7.6394785,54.4465692],[-7.63906,54.4433502],[-7.6385731,54.4400665],[-7.6380838,54.4370296],[-7.6382661,54.4363619],[-7.638663,54.4351389],[-7.6392962,54.432986],[-7.6394571,54.4323494],[-7.6397467,54.4317066],[-7.6399827,54.43029],[-7.64009,54.4299218],[-7.6400686,54.4295848],[-7.6401437,54.4291853],[-7.6401437,54.428736],[-7.64009,54.4282804],[-7.6399827,54.4279995],[-7.6395448,54.4274663],[-7.6395409,54.4273912],[-7.6395912,54.4272958],[-7.6399624,54.4269272],[-7.6403381,54.4264198],[-7.6410889,54.4256742],[-7.6413527,54.4253047],[-7.641457,54.4252484],[-7.6416081,54.4250446],[-7.6436413,54.4227441],[-7.6445533,54.4216392],[-7.6446712,54.4214645],[-7.6437915,54.4187239],[-7.6431477,54.4165266],[-7.6426541,54.4149346],[-7.6425351,54.4141806],[-7.642504,54.4130989],[-7.6426757,54.412612],[-7.6432969,54.411802],[-7.6436628,54.4114881],[-7.6442635,54.4107513],[-7.6451648,54.4097834],[-7.6454008,54.4095025],[-7.6456262,54.4088031],[-7.6457118,54.40836],[-7.6459469,54.4077183],[-7.6461624,54.4075544],[-7.6466774,54.4072296],[-7.6472675,54.4069049],[-7.6482117,54.4059246],[-7.6486828,54.4056452],[-7.6493168,54.4053252],[-7.6499702,54.4051454],[-7.6502463,54.4050966],[-7.6503791,54.4050497],[-7.6505,54.4049676],[-7.6505653,54.4049189],[-7.6499102,54.4045816],[-7.6466014,54.4027907],[-7.6464221,54.4026782],[-7.6460808,54.4024191],[-7.6458173,54.4021822],[-7.6456005,54.4018637],[-7.6453913,54.4014285],[-7.6444616,54.3979318],[-7.644229,54.3972214],[-7.6421333,54.3923923],[-7.6413164,54.3908198],[-7.6402701,54.388532],[-7.6400079,54.3880158],[-7.6399343,54.3879091],[-7.6397074,54.3877604],[-7.6395701,54.3876964],[-7.639464,54.387731],[-7.6393353,54.3877286],[-7.6392865,54.3877157],[-7.6391749,54.3876185],[-7.6391825,54.3875587],[-7.6392332,54.3875069],[-7.6393712,54.3874637],[-7.6393362,54.3873382],[-7.6394027,54.3870487],[-7.639409,54.3867636],[-7.6391557,54.3860951],[-7.6387616,54.385372],[-7.6383138,54.3848219],[-7.6376092,54.3840484],[-7.6372711,54.3836347],[-7.6370662,54.3832646],[-7.6369881,54.3830761],[-7.6368496,54.3826356],[-7.6368147,54.3824102],[-7.6368119,54.3821358],[-7.6369189,54.3802737],[-7.6368496,54.3797878],[-7.6367166,54.3793117],[-7.6364392,54.3787145],[-7.6350218,54.3759619],[-7.6347833,54.3755553],[-7.6326968,54.3723022],[-7.6324249,54.3716579],[-7.632333,54.3711881],[-7.6323423,54.3706506],[-7.6324981,54.3700206],[-7.6328477,54.3692914],[-7.6338284,54.3674241],[-7.6339051,54.3672905],[-7.633809,54.3672605],[-7.6337349,54.367214],[-7.6336913,54.3671557],[-7.6336829,54.3670923],[-7.6337105,54.3670309],[-7.6337712,54.366978],[-7.6338583,54.3669398],[-7.6339621,54.3669202],[-7.6340711,54.3669215],[-7.6343626,54.3664026],[-7.6355912,54.3639668],[-7.6357411,54.3635528],[-7.6357771,54.3632033],[-7.6357322,54.362723],[-7.635639,54.3622862],[-7.6354682,54.361722],[-7.6352604,54.3614338],[-7.6350124,54.3611855],[-7.6345688,54.3608203],[-7.6344266,54.360675],[-7.6343408,54.3606953],[-7.6342517,54.3606964],[-7.6341627,54.3606776],[-7.6340865,54.3606372],[-7.6340444,54.3605817],[-7.6340437,54.360523],[-7.634078,54.3604725],[-7.634142,54.3604326],[-7.6342322,54.3604082],[-7.6343413,54.3604071],[-7.6344326,54.3604295],[-7.6345101,54.3604783],[-7.6350361,54.3601447],[-7.6352978,54.3599025],[-7.6354556,54.3597826],[-7.6357178,54.3594447],[-7.6357912,54.3592838],[-7.6361967,54.356975],[-7.6363368,54.356352],[-7.6365707,54.3557358],[-7.636847,54.3546804],[-7.6365566,54.3529752],[-7.6365143,54.3526028],[-7.6365577,54.3523044],[-7.6369181,54.3518198],[-7.6372329,54.3515456],[-7.6375754,54.3512843],[-7.6383699,54.350878],[-7.6387482,54.3506318],[-7.639078,54.3503831],[-7.6393166,54.3501471],[-7.6394969,54.3498552],[-7.639597,54.3495589],[-7.6396407,54.3493156],[-7.6396456,54.3492888],[-7.6396117,54.3486576],[-7.6396597,54.3484922],[-7.6397421,54.3483303],[-7.6399952,54.3479587],[-7.6400302,54.3479056],[-7.6400637,54.3478335],[-7.6400034,54.3478116],[-7.6399637,54.3477734],[-7.6399669,54.3477138],[-7.6400062,54.3476791],[-7.6400978,54.3476545],[-7.6401736,54.3476607],[-7.6402474,54.3476957],[-7.6402722,54.3477354],[-7.6402603,54.3477825],[-7.6410273,54.3479915],[-7.6412763,54.3480421],[-7.6421276,54.3481401],[-7.6426728,54.3481858],[-7.6430051,54.3481923],[-7.6432703,54.3481617],[-7.643386,54.3481271],[-7.6434981,54.3480574],[-7.6438602,54.3472412],[-7.6439002,54.3471237],[-7.644044,54.3468232],[-7.6442649,54.3465597],[-7.6449228,54.3467087],[-7.6457891,54.3469277],[-7.6459721,54.3469594],[-7.6462904,54.3466915],[-7.647598,54.3459783],[-7.6491294,54.3452251],[-7.6496359,54.3449271],[-7.6499097,54.3446871],[-7.6500377,54.3445271],[-7.6502669,54.3441906],[-7.65034,54.3439993],[-7.6503431,54.3439095],[-7.6502468,54.3436472],[-7.6501168,54.3434636],[-7.6498616,54.3432861],[-7.6485932,54.3427493],[-7.6483102,54.3425622],[-7.6480882,54.3423544],[-7.6479353,54.3421323],[-7.6476615,54.3415417],[-7.6475985,54.3410088],[-7.6476011,54.3405761],[-7.647674,54.3400348],[-7.6477568,54.339751],[-7.6482368,54.3386479],[-7.648384,54.3378419],[-7.6484799,54.3375996],[-7.6485893,54.337458],[-7.6488265,54.3372867],[-7.6485893,54.337458],[-7.6484799,54.3375996],[-7.648384,54.3378419],[-7.6482368,54.3386479],[-7.6477568,54.339751],[-7.647674,54.3400348],[-7.6476011,54.3405761],[-7.6475985,54.3410088],[-7.647635,54.3414311],[-7.6476615,54.3415417],[-7.6479353,54.3421323],[-7.6480882,54.3423544],[-7.6483102,54.3425622],[-7.6485932,54.3427493],[-7.6498616,54.3432861],[-7.6501168,54.3434636],[-7.6502468,54.3436472],[-7.6503431,54.3439095],[-7.65034,54.3439993],[-7.6502669,54.3441906],[-7.6500377,54.3445271],[-7.6499097,54.3446871],[-7.6496359,54.3449271],[-7.6491294,54.3452251],[-7.647598,54.3459783],[-7.6462904,54.3466915],[-7.6459721,54.3469594],[-7.6458944,54.3471473],[-7.6458756,54.3472766],[-7.6456435,54.3472922],[-7.6448165,54.3472533],[-7.6443277,54.3471902],[-7.6439002,54.3471237],[-7.6436773,54.347683],[-7.6434981,54.3480574],[-7.643386,54.3481271],[-7.6432703,54.3481617],[-7.6430051,54.3481923],[-7.6426728,54.3481858],[-7.6421276,54.3481401],[-7.6412763,54.3480421],[-7.6410273,54.3479915],[-7.6403668,54.3478065],[-7.6402603,54.3477825],[-7.6402005,54.3478238],[-7.6400637,54.3478335],[-7.6400302,54.3479056],[-7.6399952,54.3479587],[-7.6397421,54.3483303],[-7.6396597,54.3484922],[-7.6396117,54.3486576],[-7.6396456,54.3492888],[-7.639597,54.3495589],[-7.6394969,54.3498552],[-7.6393166,54.3501471],[-7.639078,54.3503831],[-7.6387482,54.3506318],[-7.6383699,54.350878],[-7.6375754,54.3512843],[-7.6372329,54.3515456],[-7.6369181,54.3518198],[-7.6365577,54.3523044],[-7.6365143,54.3526028],[-7.6365566,54.3529752],[-7.636847,54.3546804],[-7.6365707,54.3557358],[-7.6363368,54.356352],[-7.6361967,54.356975],[-7.6357912,54.3592838],[-7.6357178,54.3594447],[-7.6354556,54.3597826],[-7.6352978,54.3599025],[-7.6350361,54.3601447],[-7.6348327,54.3602738],[-7.6345101,54.3604783],[-7.6345403,54.3605286],[-7.634535,54.3605884],[-7.6344972,54.3606359],[-7.6344266,54.360675],[-7.6345688,54.3608203],[-7.6350124,54.3611855],[-7.6352604,54.3614338],[-7.6354682,54.361722],[-7.635639,54.3622862],[-7.6357322,54.362723],[-7.6357771,54.3632033],[-7.6357411,54.3635528],[-7.6355912,54.3639668],[-7.6343626,54.3664026],[-7.6340711,54.3669215],[-7.6342368,54.3669713],[-7.6343292,54.3670655],[-7.6343166,54.3671773],[-7.6341936,54.3672676],[-7.6341031,54.3672928],[-7.6339051,54.3672905],[-7.6328477,54.3692914],[-7.6324981,54.3700206],[-7.6323423,54.3706506],[-7.632333,54.3711881],[-7.6324249,54.3716579],[-7.6326968,54.3723022],[-7.6347833,54.3755553],[-7.6350218,54.3759619],[-7.6364392,54.3787145],[-7.6367166,54.3793117],[-7.6368496,54.3797878],[-7.6369189,54.3802737],[-7.6368119,54.3821358],[-7.6368147,54.3824102],[-7.6368496,54.3826356],[-7.6369881,54.3830761],[-7.6370662,54.3832646],[-7.6372711,54.3836347],[-7.6376092,54.3840484],[-7.6383138,54.3848219],[-7.6387616,54.385372],[-7.6391557,54.3860951],[-7.639409,54.3867636],[-7.6394027,54.3870487],[-7.6393362,54.3873382],[-7.6393712,54.3874637],[-7.639475,54.3874682],[-7.6395633,54.3874971],[-7.6396255,54.3875496],[-7.6396409,54.3876017],[-7.6396139,54.3876625],[-7.6395385,54.3877115],[-7.639464,54.387731],[-7.6393353,54.3877286],[-7.6391915,54.3877616],[-7.6389903,54.3878078],[-7.6387098,54.3879523],[-7.6384924,54.3881199],[-7.6377649,54.3888855],[-7.6351803,54.3915021],[-7.632464,54.394096],[-7.6322395,54.3943462],[-7.631856,54.3948467],[-7.6316304,54.3952118],[-7.6313549,54.3957875],[-7.6269006,54.4060917],[-7.6265158,54.407123],[-7.6247968,54.4111953],[-7.6243995,54.4121838],[-7.6243874,54.4123191],[-7.624424,54.4125252],[-7.6245859,54.412808],[-7.6248089,54.413046],[-7.6258996,54.4140098],[-7.6265175,54.414527],[-7.6266359,54.4146533],[-7.6267093,54.4148157],[-7.6267253,54.4150421],[-7.6266721,54.4153026],[-7.6264214,54.416155],[-7.6263591,54.416461],[-7.6263507,54.4164971]]}};
var route8 = {"type":"Feature","properties":{"name":"Bus 8","desc":"\n24 miles"},"geometry":{"type":"LineString","coordinates":[[-7.577323,54.3589131],[-7.5785642,54.3585806],[-7.579316,54.3584107],[-7.5803006,54.3582126],[-7.5833717,54.3577596],[-7.5838884,54.3577031],[-7.5844453,54.3576616],[-7.587124,54.3575815],[-7.5877072,54.3575299],[-7.5882591,54.357437],[-7.5888874,54.3572542],[-7.5898627,54.3569],[-7.5921107,54.356047],[-7.5965,54.3540333],[-7.5996827,54.3525257],[-7.6011132,54.3518706],[-7.6018253,54.3515741],[-7.6025342,54.3513096],[-7.6039012,54.3508676],[-7.6052124,54.3505364],[-7.6067969,54.3502077],[-7.6074457,54.3501166],[-7.6087149,54.3499748],[-7.6101199,54.3498554],[-7.6114986,54.3496848],[-7.612534,54.3495107],[-7.6135663,54.3492998],[-7.6149514,54.3489629],[-7.6153504,54.3488816],[-7.6156476,54.3488051],[-7.615642,54.3487144],[-7.6157056,54.3486401],[-7.6157996,54.3485965],[-7.6158911,54.3485793],[-7.61605,54.3485903],[-7.6161101,54.3486095],[-7.6162124,54.348682],[-7.616234,54.3487837],[-7.6161884,54.3488505],[-7.6161276,54.3488896],[-7.6160226,54.3489222],[-7.616044,54.3490172],[-7.6168531,54.3503868],[-7.6180437,54.3519714],[-7.6181941,54.352223],[-7.6183161,54.3528232],[-7.6183084,54.3530581],[-7.6182356,54.3532993],[-7.6179907,54.3538027],[-7.6179737,54.354006],[-7.6180998,54.3539916],[-7.6182114,54.3540063],[-7.6183447,54.3540749],[-7.6183863,54.3541792],[-7.6183237,54.3542706],[-7.6182725,54.3543003],[-7.618593,54.3547125],[-7.6194169,54.3554093],[-7.6206878,54.3562424],[-7.6218279,54.3569799],[-7.6218705,54.3569663],[-7.6219743,54.3569683],[-7.6220225,54.3569871],[-7.6220658,54.3570477],[-7.6220553,54.3570801],[-7.6220227,54.3571075],[-7.624066,54.3586022],[-7.6247513,54.3590018],[-7.6252149,54.3592094],[-7.6255645,54.3593288],[-7.6256933,54.3592592],[-7.6258028,54.3592482],[-7.6258736,54.3592566],[-7.6259641,54.3592895],[-7.6260242,54.3593434],[-7.6260261,54.3594421],[-7.6259902,54.3594818],[-7.6266704,54.3597658],[-7.6270813,54.3599566],[-7.6278146,54.3602499],[-7.6288843,54.3605768],[-7.6293371,54.3606908],[-7.6297328,54.3607657],[-7.6304927,54.3608633],[-7.6312803,54.3608938],[-7.6316345,54.3608907],[-7.6320454,54.360867],[-7.6328538,54.360792],[-7.6332884,54.3607351],[-7.6340865,54.3606372],[-7.6340444,54.3605817],[-7.6340437,54.360523],[-7.634078,54.3604725],[-7.634142,54.3604326],[-7.6342322,54.3604082],[-7.6343413,54.3604071],[-7.6344326,54.3604295],[-7.6345101,54.3604783],[-7.6345403,54.3605286],[-7.634535,54.3605884],[-7.6344972,54.3606359],[-7.6344266,54.360675],[-7.6345688,54.3608203],[-7.6350124,54.3611855],[-7.6352604,54.3614338],[-7.6354682,54.361722],[-7.635639,54.3622862],[-7.6357322,54.362723],[-7.6357771,54.3632033],[-7.6357411,54.3635528],[-7.6355912,54.3639668],[-7.6343626,54.3664026],[-7.6340711,54.3669215],[-7.6342368,54.3669713],[-7.6343292,54.3670655],[-7.6343374,54.3671203],[-7.6346611,54.3671073],[-7.6352605,54.3669884],[-7.6354554,54.3669145],[-7.6361684,54.3665898],[-7.6363826,54.3665401],[-7.636451,54.3664216],[-7.6366013,54.3663156],[-7.6366842,54.3662817],[-7.6368799,54.3662866],[-7.6369753,54.3663993],[-7.6369557,54.3664497],[-7.6367305,54.3665894],[-7.6366363,54.3666008],[-7.6365733,54.3668878],[-7.6364375,54.3672142],[-7.6365977,54.3673134],[-7.6369718,54.3671687],[-7.637052,54.3671687],[-7.6371221,54.3671913],[-7.6372875,54.367292],[-7.6375935,54.3671419],[-7.6372875,54.367292],[-7.6371221,54.3671913],[-7.637052,54.3671687],[-7.6369718,54.3671687],[-7.6365977,54.3673134],[-7.6364375,54.3672142],[-7.6365733,54.3668878],[-7.6366363,54.3666008],[-7.6365515,54.3666116],[-7.6364148,54.3665688],[-7.6363826,54.3665401],[-7.6361684,54.3665898],[-7.6354554,54.3669145],[-7.6352605,54.3669884],[-7.6346611,54.3671073],[-7.6344924,54.3671212],[-7.6343374,54.3671203],[-7.6343166,54.3671773],[-7.6341936,54.3672676],[-7.6341031,54.3672928],[-7.6340036,54.3673006],[-7.6339051,54.3672905],[-7.633809,54.3672605],[-7.6337349,54.367214],[-7.6336913,54.3671557],[-7.6336829,54.3670923],[-7.6337105,54.3670309],[-7.6337712,54.366978],[-7.6338583,54.3669398],[-7.6339621,54.3669202],[-7.6340711,54.3669215],[-7.6343626,54.3664026],[-7.6355912,54.3639668],[-7.6357411,54.3635528],[-7.6357771,54.3632033],[-7.6357322,54.362723],[-7.635639,54.3622862],[-7.6354682,54.361722],[-7.6352604,54.3614338],[-7.6350124,54.3611855],[-7.6345688,54.3608203],[-7.6344266,54.360675],[-7.6343408,54.3606953],[-7.6342517,54.3606964],[-7.6341627,54.3606776],[-7.6340865,54.3606372],[-7.6340444,54.3605817],[-7.6340437,54.360523],[-7.634078,54.3604725],[-7.634142,54.3604326],[-7.6342322,54.3604082],[-7.6343413,54.3604071],[-7.6344326,54.3604295],[-7.6345101,54.3604783],[-7.6350361,54.3601447],[-7.6352978,54.3599025],[-7.6354556,54.3597826],[-7.6357178,54.3594447],[-7.6357912,54.3592838],[-7.6361967,54.356975],[-7.6363368,54.356352],[-7.6365707,54.3557358],[-7.636847,54.3546804],[-7.6365566,54.3529752],[-7.6365259,54.3527049],[-7.6365143,54.3526028],[-7.6364422,54.352586],[-7.6359773,54.3524605],[-7.6357789,54.3523763],[-7.6344065,54.3516583],[-7.6336741,54.3512116],[-7.632604,54.3504893],[-7.6320384,54.3502026],[-7.6315591,54.3499949],[-7.630839,54.3496019],[-7.6302769,54.349264],[-7.6301709,54.3491312],[-7.6300839,54.3490156],[-7.6300323,54.348868],[-7.6299665,54.3485046],[-7.6299578,54.3482847],[-7.6297741,54.3482943],[-7.629635,54.3483193],[-7.6295126,54.3483864],[-7.6293196,54.3486447],[-7.6289264,54.3486632],[-7.6285897,54.3486553],[-7.62701,54.3500756],[-7.6252745,54.3515549],[-7.624991,54.3518537],[-7.6248307,54.352042],[-7.6246826,54.3523178],[-7.6246194,54.352533],[-7.6245926,54.3527764],[-7.6246584,54.3532561],[-7.6247396,54.3537882],[-7.6244462,54.3538387],[-7.6237019,54.3550634],[-7.6235501,54.3552349],[-7.6233815,54.3553117],[-7.6230459,54.3553854],[-7.62283,54.3553746],[-7.6224683,54.3552929],[-7.622108,54.3551455],[-7.6217379,54.3549596],[-7.6205157,54.3544075],[-7.6197503,54.3541147],[-7.6191189,54.3539855],[-7.6189475,54.3539773],[-7.6187908,54.3539883],[-7.6183447,54.3540749],[-7.6183863,54.3541792],[-7.6183237,54.3542706],[-7.6181911,54.3543262],[-7.6180937,54.354336],[-7.6179972,54.3543271],[-7.6178731,54.3542796],[-7.617809,54.3542136],[-7.6178035,54.3541268],[-7.617864,54.3540544],[-7.6179737,54.354006],[-7.6179907,54.3538027],[-7.6182356,54.3532993],[-7.6183084,54.3530581],[-7.6183161,54.3528232],[-7.6181941,54.352223],[-7.6180437,54.3519714],[-7.6168531,54.3503868],[-7.616044,54.3490172],[-7.6160226,54.3489222],[-7.61592,54.3489291],[-7.6158002,54.3489107],[-7.6157093,54.3488695],[-7.6156476,54.3488051],[-7.6135663,54.3492998],[-7.612534,54.3495107],[-7.6114986,54.3496848],[-7.6101199,54.3498554],[-7.6087149,54.3499748],[-7.6074457,54.3501166],[-7.6067969,54.3502077],[-7.6052124,54.3505364],[-7.6039012,54.3508676],[-7.6025342,54.3513096],[-7.6018253,54.3515741],[-7.6011132,54.3518706],[-7.5996827,54.3525257],[-7.5965,54.3540333],[-7.5958076,54.3543543],[-7.5965,54.3540333],[-7.5962035,54.3538981],[-7.5953377,54.3536599],[-7.5951544,54.3535925],[-7.5949853,54.3535017],[-7.5948257,54.3533702],[-7.5945915,54.3530933],[-7.594352,54.3527373],[-7.594138,54.3525229],[-7.5938497,54.3523965],[-7.593623,54.3523456],[-7.5906575,54.3521251],[-7.5902929,54.3521174],[-7.589942,54.3521344],[-7.5895486,54.3521983],[-7.588903,54.3522495],[-7.5885258,54.3522549],[-7.5876066,54.3521513],[-7.5868778,54.3520301],[-7.5863229,54.3520088],[-7.5859738,54.3520258],[-7.5855529,54.352085],[-7.5850423,54.35224],[-7.5847605,54.352362],[-7.5845197,54.3524212],[-7.5837232,54.3524594],[-7.5829264,54.3525468],[-7.5827328,54.3525492],[-7.582516,54.3524913],[-7.5821685,54.3522839],[-7.581881,54.3520843],[-7.5817562,54.3519967],[-7.581301,54.3515164],[-7.5808905,54.3509088],[-7.5806269,54.3503062],[-7.5804077,54.3492227],[-7.5802322,54.3488083],[-7.5798496,54.3481757],[-7.5795527,54.3475627],[-7.5794322,54.3474085],[-7.5781233,54.3464019],[-7.5776242,54.3458658],[-7.5771484,54.3452992],[-7.576568,54.3446806],[-7.5761884,54.3443379],[-7.5756745,54.3440503],[-7.5754268,54.3439434],[-7.575655,54.3437281],[-7.576427,54.343216],[-7.5767336,54.3429549],[-7.5771544,54.3426984],[-7.5773528,54.3424415],[-7.5774604,54.3421659],[-7.5775275,54.3419187],[-7.5775865,54.3411364],[-7.57757,54.3406666],[-7.577513,54.3404237],[-7.577512,54.3403202],[-7.5773295,54.3397411],[-7.5773006,54.3395159],[-7.5773056,54.3392825],[-7.5774265,54.3386568],[-7.5775035,54.3384367],[-7.5777523,54.3379926],[-7.5779255,54.3375381],[-7.5781276,54.3371475],[-7.5783269,54.3366189],[-7.5784599,54.336129],[-7.5785275,54.3356315],[-7.5785139,54.3351105],[-7.5784307,54.3342561],[-7.5781535,54.3331391],[-7.5780887,54.332785],[-7.5779648,54.3323624],[-7.5779294,54.332077],[-7.5777823,54.3314547],[-7.5776761,54.330874],[-7.5774481,54.3300842],[-7.5773412,54.3295956],[-7.5771849,54.3292389],[-7.5770078,54.3290106],[-7.5768402,54.3286896],[-7.5768107,54.3285239],[-7.5765967,54.327985],[-7.5761752,54.3270686],[-7.5758967,54.3265558],[-7.5755648,54.3260704],[-7.575487,54.3258666],[-7.5755248,54.3257157],[-7.5761376,54.3250945],[-7.5765239,54.3248168],[-7.5769514,54.3243432],[-7.5775023,54.3237862],[-7.5775871,54.3230928],[-7.5777074,54.3228439],[-7.5778112,54.3227197],[-7.5781682,54.3224488],[-7.5785737,54.3221879],[-7.5786706,54.3220936],[-7.5785911,54.3217969],[-7.5776977,54.3200451],[-7.577323,54.3195407],[-7.5768011,54.3191777],[-7.5765369,54.3189018],[-7.5762382,54.3184037],[-7.5762221,54.3183773],[-7.575883,54.3183568],[-7.5753694,54.318264],[-7.5752878,54.3181642],[-7.5753402,54.3179142],[-7.5753582,54.3178762],[-7.5751081,54.3178811],[-7.5739449,54.3178941],[-7.5739354,54.3178326],[-7.5737871,54.3176978],[-7.5733209,54.3174119],[-7.5728161,54.3169803],[-7.5718677,54.3162293],[-7.5713105,54.3155483],[-7.5707918,54.3147934],[-7.5704777,54.3145017],[-7.570021,54.3141208],[-7.5694466,54.3137689],[-7.5687161,54.31325],[-7.5683614,54.3130388],[-7.5671838,54.3124729],[-7.5664757,54.3121588],[-7.5660124,54.3119117],[-7.5654646,54.3115054],[-7.5650683,54.3112881],[-7.5648099,54.3112054],[-7.5645452,54.3111711],[-7.5640986,54.3111525],[-7.5637642,54.311115],[-7.5628143,54.3109193],[-7.5622521,54.310782],[-7.5617673,54.3105177],[-7.5615329,54.3104447],[-7.5612157,54.3103914],[-7.5609449,54.3103254],[-7.5607421,54.3102357],[-7.5605696,54.3101233],[-7.5602235,54.3096646],[-7.5600024,54.309526],[-7.5597398,54.3093951],[-7.559332,54.3092378],[-7.5589599,54.3090391],[-7.5576588,54.3082359],[-7.5572602,54.3079351],[-7.5571822,54.3078567],[-7.5571403,54.30778],[-7.5571326,54.3075065],[-7.5571623,54.3074052],[-7.557277,54.3072001],[-7.557518,54.3069704],[-7.5578457,54.3068026],[-7.5581349,54.306624],[-7.5583622,54.3065188],[-7.5593272,54.3059551],[-7.5603114,54.3051713],[-7.5604617,54.3048709],[-7.5604187,54.3045827],[-7.5602041,54.304345],[-7.5599039,54.3041947],[-7.5596034,54.3040696],[-7.5589467,54.3039358],[-7.5585441,54.3037978],[-7.5577793,54.3034215],[-7.557087,54.3031429],[-7.5566636,54.3029937],[-7.5564099,54.3029214],[-7.5557988,54.3027907],[-7.5552832,54.3027126],[-7.5547825,54.30268],[-7.5544892,54.3026336],[-7.5542861,54.3025692],[-7.5540324,54.3024332],[-7.5538939,54.3023107],[-7.5535854,54.3019085],[-7.5531861,54.3012916],[-7.553106,54.3011515],[-7.5530682,54.3010241],[-7.5530644,54.3008852],[-7.5531877,54.3006842],[-7.5533802,54.3005212],[-7.5536966,54.3003145],[-7.5544037,54.2997968],[-7.5546212,54.2996164],[-7.5548362,54.2993472],[-7.5548665,54.299268],[-7.554831,54.2990779],[-7.5546272,54.2988696],[-7.5544581,54.2987813],[-7.5541718,54.298693],[-7.5528914,54.2984347],[-7.5524697,54.2984153],[-7.5515425,54.2984745],[-7.550919,54.2985617],[-7.550668,54.2986593],[-7.5503668,54.2987301],[-7.5498439,54.298818],[-7.5492061,54.2988517],[-7.5489444,54.2988253],[-7.54866,54.2987545],[-7.5483508,54.2985926],[-7.5482227,54.2984623],[-7.5479181,54.2982246],[-7.5478123,54.2978776],[-7.5477332,54.2977589],[-7.5475666,54.2976369],[-7.5473632,54.2975592],[-7.5466255,54.2973793],[-7.5462727,54.2973327],[-7.5459305,54.2973083],[-7.5439973,54.2972603],[-7.5437506,54.2972286],[-7.5433707,54.2971439],[-7.5430862,54.297025],[-7.5426791,54.2968175],[-7.542263,54.2965273],[-7.542146,54.2963996],[-7.5420519,54.2962302],[-7.5420275,54.2959408],[-7.5420961,54.2957437],[-7.5423157,54.2953641],[-7.5423717,54.2951548],[-7.5423237,54.2950018],[-7.5422093,54.2948906],[-7.5419094,54.2947779],[-7.5411409,54.2946789],[-7.540673,54.2945725],[-7.5404847,54.2944769],[-7.5400991,54.2942208],[-7.5399265,54.2940424],[-7.5398557,54.293861],[-7.5398691,54.2937544],[-7.5400606,54.2933674],[-7.540204,54.2931928],[-7.5402934,54.2930433],[-7.5407997,54.2926035],[-7.5423289,54.2906859],[-7.5428327,54.2901739],[-7.5428588,54.290075],[-7.5437978,54.2889428],[-7.5460719,54.2863759],[-7.5465225,54.2858071],[-7.5466387,54.2854791],[-7.546726,54.2847763],[-7.5467445,54.2843032],[-7.546892,54.2843017],[-7.547134,54.2842924],[-7.5482329,54.2842322],[-7.5501188,54.2841374],[-7.550553,54.2840588],[-7.5507257,54.2840128],[-7.5517352,54.2836],[-7.5530028,54.2831712],[-7.5533405,54.2830433],[-7.5544875,54.2824033],[-7.555992,54.281599],[-7.556545,54.2814326],[-7.5586082,54.2810026],[-7.5627541,54.2800355],[-7.5633542,54.2798729],[-7.5636474,54.2798311],[-7.5641075,54.2796864],[-7.5643886,54.2795434],[-7.56493,54.2792066],[-7.5652961,54.2789214],[-7.565389,54.278821],[-7.5658463,54.2780903],[-7.566092,54.2777999],[-7.5663805,54.2775999],[-7.5671917,54.2771352],[-7.5675905,54.2768431],[-7.5683757,54.2763275],[-7.5692989,54.2758334],[-7.5711574,54.274876],[-7.5744554,54.2735129],[-7.576626,54.2726616],[-7.5769253,54.2725037],[-7.5775513,54.2721185],[-7.5780161,54.271803],[-7.5785072,54.2715413],[-7.579132,54.2713807],[-7.5799033,54.2712717],[-7.5805032,54.2711505],[-7.5809318,54.2709786],[-7.5815519,54.2706599],[-7.5827086,54.270268],[-7.5837647,54.2699791],[-7.5843893,54.2698433],[-7.5850775,54.2697934],[-7.5857514,54.2697913],[-7.5871505,54.2698315],[-7.5878642,54.2698075],[-7.5915888,54.2694568],[-7.5918233,54.2694139],[-7.5919933,54.2693527],[-7.5921029,54.2692973],[-7.5922588,54.2691748],[-7.5925097,54.2689323],[-7.5929552,54.2684416],[-7.5935706,54.2678938],[-7.5953569,54.2659803],[-7.595559,54.2658064],[-7.5957993,54.2654279],[-7.5960459,54.2649318],[-7.596183,54.2644828],[-7.5963817,54.2633531],[-7.5964866,54.2631476],[-7.5966623,54.2629558],[-7.5968079,54.2628407],[-7.5971564,54.2626626],[-7.5978283,54.2624223],[-7.6000778,54.2618002],[-7.6006913,54.2615761],[-7.601244,54.2613084],[-7.6014951,54.2611645],[-7.6041763,54.259373],[-7.6048152,54.2590038],[-7.6054219,54.2587086],[-7.6099016,54.2569065],[-7.6104024,54.2567174],[-7.6111393,54.256574],[-7.6116692,54.2565246],[-7.6132068,54.2564956],[-7.6145729,54.2564505],[-7.6152695,54.2563842],[-7.6158723,54.2562352],[-7.6164998,54.2560511],[-7.6175121,54.2558818],[-7.6184627,54.2557639],[-7.6198092,54.2556339],[-7.6203674,54.2556011],[-7.6213049,54.2555916],[-7.6216865,54.2555354],[-7.6222963,54.2553908],[-7.6228736,54.2552111],[-7.6234018,54.2550205],[-7.6239172,54.254821],[-7.6254407,54.2540655],[-7.6260045,54.253873],[-7.6273674,54.2536368],[-7.6279515,54.2534855],[-7.6307744,54.2526028],[-7.631477,54.2523577],[-7.6318208,54.2522542],[-7.6319838,54.2522051],[-7.6320426,54.2521886],[-7.6310629,54.2510538],[-7.629955,54.2498658],[-7.6286789,54.248562],[-7.6285569,54.248394],[-7.6284699,54.248218],[-7.628355,54.247857],[-7.6282728,54.2476839],[-7.6281639,54.2475249],[-7.627848,54.2472408],[-7.6271929,54.2468469],[-7.626774,54.246531],[-7.6257985,54.2455646],[-7.6243251,54.2441758],[-7.6237149,54.2435738],[-7.6232144,54.2429903],[-7.6204048,54.2394998],[-7.6186908,54.2373088],[-7.6167099,54.2348449],[-7.6142449,54.2316719],[-7.613457,54.2308451],[-7.6122533,54.229837],[-7.6112959,54.2288969],[-7.6105954,54.2282783],[-7.6075639,54.2258549],[-7.6026119,54.2218079],[-7.6015159,54.2209289],[-7.6005889,54.2202209],[-7.5995808,54.219336],[-7.598325,54.2182763],[-7.5971668,54.2173979],[-7.5970258,54.217272],[-7.5966069,54.2168359],[-7.5944139,54.2144018],[-7.5918158,54.2112169],[-7.5908799,54.2101459],[-7.588858,54.207956],[-7.588161,54.2070598],[-7.5872009,54.205713],[-7.5870765,54.2055517],[-7.5868673,54.205338],[-7.5866813,54.2052149],[-7.5824663,54.2037659],[-7.5799664,54.2028856],[-7.5793536,54.2026521],[-7.5791374,54.2025429],[-7.5789381,54.2024084],[-7.5774459,54.2012178],[-7.5760459,54.2000684],[-7.5749937,54.1991577],[-7.5732909,54.1977585],[-7.572791,54.1973603],[-7.5712032,54.1960818],[-7.5702317,54.1952449],[-7.5699048,54.1949788]]}};
var route9 = {"type":"Feature","properties":{"name":"Bus 9","desc":"\n92 miles"},"geometry":{"type":"LineString","coordinates":[[-7.5942671,54.4231141],[-7.5941555,54.4232483],[-7.5960412,54.4238248],[-7.5991683,54.4244212],[-7.5994782,54.4244508],[-7.5996233,54.4244477],[-7.5997598,54.4244246],[-7.6000361,54.4243624],[-7.6003909,54.4242575],[-7.6007852,54.4241886],[-7.6011458,54.4241755],[-7.6020982,54.4242279],[-7.6024756,54.4241984],[-7.6036082,54.4240017],[-7.6040421,54.4239723],[-7.6043801,54.4240049],[-7.6047068,54.424064],[-7.6051239,54.4241688],[-7.6071126,54.4245788],[-7.6100651,54.4252441],[-7.610623,54.4253917],[-7.6110061,54.4255392],[-7.6115019,54.4257849],[-7.6123414,54.4260864],[-7.6131865,54.4264372],[-7.6137049,54.4266307],[-7.6144205,54.4267912],[-7.6156713,54.4270207],[-7.6163418,54.4271191],[-7.6168433,54.4271485],[-7.6206745,54.42725],[-7.6228073,54.4273271],[-7.6238666,54.4273469],[-7.6248374,54.4273575],[-7.6249134,54.4271083],[-7.6250937,54.4267199],[-7.6256404,54.4256433],[-7.6256905,54.4254552],[-7.6276971,54.4256172],[-7.6294537,54.425731],[-7.6310003,54.4257962],[-7.6315835,54.4258342],[-7.6320434,54.4258448],[-7.6338038,54.4256088],[-7.6355422,54.4253328],[-7.6359624,54.4251959],[-7.6363064,54.4250504],[-7.6365925,54.4250167],[-7.6368144,54.4250236],[-7.6369865,54.4250314],[-7.6404203,54.4252171],[-7.6414052,54.4252726],[-7.641457,54.4252484],[-7.6415479,54.4251258],[-7.6436413,54.4227441],[-7.6445533,54.4216392],[-7.6446712,54.4214645],[-7.6437915,54.4187239],[-7.6431477,54.4165266],[-7.6426541,54.4149346],[-7.6425351,54.4141806],[-7.642504,54.4130989],[-7.6426757,54.412612],[-7.6432969,54.411802],[-7.6436628,54.4114881],[-7.6442635,54.4107513],[-7.6451648,54.4097834],[-7.6454008,54.4095025],[-7.6456262,54.4088031],[-7.6457118,54.40836],[-7.6459469,54.4077183],[-7.6461624,54.4075544],[-7.6466774,54.4072296],[-7.6472675,54.4069049],[-7.6482117,54.4059246],[-7.6486828,54.4056452],[-7.6493168,54.4053252],[-7.6499702,54.4051454],[-7.6502463,54.4050966],[-7.6503791,54.4050497],[-7.6505,54.4049676],[-7.6505653,54.4049189],[-7.6499102,54.4045816],[-7.6466014,54.4027907],[-7.6464221,54.4026782],[-7.6460808,54.4024191],[-7.6458173,54.4021822],[-7.6456005,54.4018637],[-7.6453913,54.4014285],[-7.6444616,54.3979318],[-7.644229,54.3972214],[-7.6421333,54.3923923],[-7.6413164,54.3908198],[-7.6402701,54.388532],[-7.6400079,54.3880158],[-7.6399343,54.3879091],[-7.6397074,54.3877604],[-7.6395701,54.3876964],[-7.639464,54.387731],[-7.6393353,54.3877286],[-7.6392865,54.3877157],[-7.6391749,54.3876185],[-7.6391825,54.3875587],[-7.6392332,54.3875069],[-7.6393712,54.3874637],[-7.6393362,54.3873382],[-7.6394027,54.3870487],[-7.639409,54.3867636],[-7.6391557,54.3860951],[-7.6387616,54.385372],[-7.6383138,54.3848219],[-7.6376092,54.3840484],[-7.6372711,54.3836347],[-7.6370662,54.3832646],[-7.6369881,54.3830761],[-7.6368496,54.3826356],[-7.6368147,54.3824102],[-7.6368119,54.3821358],[-7.6369189,54.3802737],[-7.6368496,54.3797878],[-7.6367166,54.3793117],[-7.6364392,54.3787145],[-7.6350218,54.3759619],[-7.6347833,54.3755553],[-7.6326968,54.3723022],[-7.6324249,54.3716579],[-7.632333,54.3711881],[-7.6323423,54.3706506],[-7.6324981,54.3700206],[-7.6328477,54.3692914],[-7.6338284,54.3674241],[-7.6339051,54.3672905],[-7.633809,54.3672605],[-7.6337349,54.367214],[-7.6336913,54.3671557],[-7.6336829,54.3670923],[-7.6337105,54.3670309],[-7.6337712,54.366978],[-7.6338583,54.3669398],[-7.6339621,54.3669202],[-7.6340711,54.3669215],[-7.6343626,54.3664026],[-7.6355912,54.3639668],[-7.6357411,54.3635528],[-7.6357771,54.3632033],[-7.6357322,54.362723],[-7.635639,54.3622862],[-7.6354682,54.361722],[-7.6352604,54.3614338],[-7.6350124,54.3611855],[-7.6345688,54.3608203],[-7.6344266,54.360675],[-7.6343408,54.3606953],[-7.6342517,54.3606964],[-7.6341627,54.3606776],[-7.6340865,54.3606372],[-7.6340444,54.3605817],[-7.6340437,54.360523],[-7.634078,54.3604725],[-7.634142,54.3604326],[-7.6342322,54.3604082],[-7.6343413,54.3604071],[-7.6344326,54.3604295],[-7.6345101,54.3604783],[-7.6350361,54.3601447],[-7.6352978,54.3599025],[-7.6354556,54.3597826],[-7.6357178,54.3594447],[-7.6357912,54.3592838],[-7.6361967,54.356975],[-7.6363368,54.356352],[-7.6365707,54.3557358],[-7.636847,54.3546804],[-7.6365566,54.3529752],[-7.6365143,54.3526028],[-7.6361993,54.3525293],[-7.6359773,54.3524605],[-7.6357789,54.3523763],[-7.6350156,54.3519802],[-7.6349334,54.3519354],[-7.6344065,54.3516583],[-7.6336741,54.3512116],[-7.632604,54.3504893],[-7.6320384,54.3502026],[-7.6315591,54.3499949],[-7.630839,54.3496019],[-7.6302769,54.349264],[-7.6301709,54.3491312],[-7.6300839,54.3490156],[-7.6300323,54.348868],[-7.6299665,54.3485046],[-7.6299829,54.3475124],[-7.6299781,54.3472773],[-7.630064,54.3466863],[-7.630218,54.3462356],[-7.6302076,54.3460432],[-7.6301412,54.3459225],[-7.6301001,54.3459005],[-7.6300114,54.3459003],[-7.6301334,54.3454769],[-7.6304506,54.3449336],[-7.6300829,54.3448745],[-7.629825,54.3448708],[-7.6285032,54.3450222],[-7.6284135,54.3448924],[-7.6280219,54.3446762],[-7.6276621,54.3445188],[-7.6271459,54.3440267],[-7.6271459,54.3439739],[-7.6273508,54.3438404],[-7.6275976,54.3433641],[-7.6277729,54.3430424],[-7.6272162,54.3429383],[-7.6262895,54.3427317],[-7.6260224,54.3426503],[-7.6255211,54.3424194],[-7.6253321,54.3423536],[-7.6243063,54.3420331],[-7.6234266,54.3417894],[-7.6231096,54.3417296],[-7.6221851,54.3416238],[-7.6207911,54.3414227],[-7.6194318,54.3411722],[-7.6192044,54.3410762],[-7.6187549,54.3407748],[-7.6183442,54.3403844],[-7.6173063,54.3394237],[-7.6170567,54.3392902],[-7.6173063,54.3394237],[-7.6183442,54.3403844],[-7.6187549,54.3407748],[-7.6192044,54.3410762],[-7.6194318,54.3411722],[-7.6207911,54.3414227],[-7.6221851,54.3416238],[-7.6231096,54.3417296],[-7.6234266,54.3417894],[-7.6243063,54.3420331],[-7.6255211,54.3424194],[-7.6260224,54.3426503],[-7.6265542,54.3427941],[-7.6275261,54.3429962],[-7.6277729,54.3430424],[-7.6273508,54.3438404],[-7.6271459,54.3439739],[-7.6271459,54.3440267],[-7.6276621,54.3445188],[-7.6280219,54.3446762],[-7.6284135,54.3448924],[-7.6285032,54.3450222],[-7.629825,54.3448708],[-7.6300829,54.3448745],[-7.6303014,54.3449099],[-7.6304506,54.3449336],[-7.6301334,54.3454769],[-7.6300114,54.3459003],[-7.6298658,54.3463619],[-7.629743,54.3468612],[-7.6295996,54.3472477],[-7.6293655,54.3476901],[-7.6288668,54.3483674],[-7.6285586,54.3486876],[-7.62701,54.3500756],[-7.6252745,54.3515549],[-7.6248307,54.352042],[-7.6246826,54.3523178],[-7.6246194,54.352533],[-7.6245926,54.3527764],[-7.6248225,54.3542133],[-7.6249458,54.3545735],[-7.6250518,54.3547279],[-7.6252727,54.3549542],[-7.6260643,54.3556123],[-7.6267321,54.3561387],[-7.6269215,54.3562421],[-7.627208,54.3563538],[-7.6291725,54.356992],[-7.6296897,54.3572],[-7.6301802,54.3574405],[-7.630525,54.3576372],[-7.6311806,54.3580872],[-7.6319517,54.3587477],[-7.6331772,54.3597369],[-7.6339084,54.3602743],[-7.634142,54.3604326],[-7.6342322,54.3604082],[-7.6343413,54.3604071],[-7.6344326,54.3604295],[-7.6345101,54.3604783],[-7.6345403,54.3605286],[-7.634535,54.3605884],[-7.6344972,54.3606359],[-7.6344266,54.360675],[-7.6345688,54.3608203],[-7.6350124,54.3611855],[-7.6352604,54.3614338],[-7.6354682,54.361722],[-7.635639,54.3622862],[-7.6357322,54.362723],[-7.6357771,54.3632033],[-7.6357411,54.3635528],[-7.6355912,54.3639668],[-7.6343626,54.3664026],[-7.6340711,54.3669215],[-7.6342368,54.3669713],[-7.6343292,54.3670655],[-7.6343166,54.3671773],[-7.6341936,54.3672676],[-7.6341031,54.3672928],[-7.6339051,54.3672905],[-7.6328477,54.3692914],[-7.6324981,54.3700206],[-7.6323423,54.3706506],[-7.632333,54.3711881],[-7.6324249,54.3716579],[-7.6326968,54.3723022],[-7.6347833,54.3755553],[-7.6350218,54.3759619],[-7.6364392,54.3787145],[-7.6367166,54.3793117],[-7.6368496,54.3797878],[-7.6369189,54.3802737],[-7.6368119,54.3821358],[-7.6368147,54.3824102],[-7.6368496,54.3826356],[-7.6369881,54.3830761],[-7.6370662,54.3832646],[-7.6372711,54.3836347],[-7.6376092,54.3840484],[-7.6383138,54.3848219],[-7.6387616,54.385372],[-7.6391557,54.3860951],[-7.639409,54.3867636],[-7.6394027,54.3870487],[-7.6393362,54.3873382],[-7.6393712,54.3874637],[-7.639475,54.3874682],[-7.6395633,54.3874971],[-7.6396255,54.3875496],[-7.6396409,54.3876017],[-7.6396139,54.3876625],[-7.6395701,54.3876964],[-7.6397074,54.3877604],[-7.6399343,54.3879091],[-7.6400079,54.3880158],[-7.6402701,54.388532],[-7.6413164,54.3908198],[-7.6421333,54.3923923],[-7.6430701,54.3945351],[-7.644229,54.3972214],[-7.6444616,54.3979318],[-7.6453913,54.4014285],[-7.6456005,54.4018637],[-7.6458173,54.4021822],[-7.6460808,54.4024191],[-7.6464221,54.4026782],[-7.6466014,54.4027907],[-7.6504402,54.4048634],[-7.6505653,54.4049189],[-7.6503791,54.4050497],[-7.6502463,54.4050966],[-7.6499702,54.4051454],[-7.6493168,54.4053252],[-7.6486828,54.4056452],[-7.6482117,54.4059246],[-7.6472675,54.4069049],[-7.6466774,54.4072296],[-7.6461624,54.4075544],[-7.6459469,54.4077183],[-7.6457118,54.40836],[-7.6456262,54.4088031],[-7.6454008,54.4095025],[-7.6451648,54.4097834],[-7.6442635,54.4107513],[-7.643792,54.4113295],[-7.6442635,54.4107513],[-7.6451648,54.4097834],[-7.6454008,54.4095025],[-7.6456262,54.4088031],[-7.6457118,54.40836],[-7.6459469,54.4077183],[-7.6461624,54.4075544],[-7.6466774,54.4072296],[-7.6472675,54.4069049],[-7.6482117,54.4059246],[-7.6486828,54.4056452],[-7.6493168,54.4053252],[-7.6499702,54.4051454],[-7.6502463,54.4050966],[-7.6503791,54.4050497],[-7.6505,54.4049676],[-7.6505653,54.4049189],[-7.6499102,54.4045816],[-7.6466014,54.4027907],[-7.6464221,54.4026782],[-7.6460808,54.4024191],[-7.6458173,54.4021822],[-7.6456005,54.4018637],[-7.6453913,54.4014285],[-7.6444616,54.3979318],[-7.644229,54.3972214],[-7.6421333,54.3923923],[-7.6413164,54.3908198],[-7.6402701,54.388532],[-7.6400079,54.3880158],[-7.6399343,54.3879091],[-7.6397074,54.3877604],[-7.6395701,54.3876964],[-7.639464,54.387731],[-7.6393353,54.3877286],[-7.6392865,54.3877157],[-7.6391749,54.3876185],[-7.6391825,54.3875587],[-7.6392332,54.3875069],[-7.6393712,54.3874637],[-7.6393362,54.3873382],[-7.6394027,54.3870487],[-7.639409,54.3867636],[-7.6391557,54.3860951],[-7.6387616,54.385372],[-7.6383138,54.3848219],[-7.6376092,54.3840484],[-7.6372711,54.3836347],[-7.6370662,54.3832646],[-7.6369881,54.3830761],[-7.6368496,54.3826356],[-7.6368147,54.3824102],[-7.6368119,54.3821358],[-7.6369189,54.3802737],[-7.6368496,54.3797878],[-7.6367166,54.3793117],[-7.6364392,54.3787145],[-7.6350218,54.3759619],[-7.6347833,54.3755553],[-7.6326968,54.3723022],[-7.6324249,54.3716579],[-7.632333,54.3711881],[-7.6323423,54.3706506],[-7.6324981,54.3700206],[-7.6328477,54.3692914],[-7.6338284,54.3674241],[-7.6339051,54.3672905],[-7.633809,54.3672605],[-7.6337349,54.367214],[-7.6336913,54.3671557],[-7.6336829,54.3670923],[-7.6337105,54.3670309],[-7.6337712,54.366978],[-7.6338583,54.3669398],[-7.6339621,54.3669202],[-7.6340711,54.3669215],[-7.6343626,54.3664026],[-7.6355912,54.3639668],[-7.6357411,54.3635528],[-7.6357771,54.3632033],[-7.6357322,54.362723],[-7.635639,54.3622862],[-7.6354682,54.361722],[-7.6352604,54.3614338],[-7.6350124,54.3611855],[-7.6345688,54.3608203],[-7.6344266,54.360675],[-7.6343408,54.3606953],[-7.6342517,54.3606964],[-7.6341627,54.3606776],[-7.6340865,54.3606372],[-7.6340444,54.3605817],[-7.6340437,54.360523],[-7.634078,54.3604725],[-7.634142,54.3604326],[-7.6342322,54.3604082],[-7.6343413,54.3604071],[-7.6344326,54.3604295],[-7.6345101,54.3604783],[-7.6350361,54.3601447],[-7.6352978,54.3599025],[-7.6354556,54.3597826],[-7.6357178,54.3594447],[-7.6357912,54.3592838],[-7.6361967,54.356975],[-7.6363368,54.356352],[-7.6365707,54.3557358],[-7.636847,54.3546804],[-7.6365566,54.3529752],[-7.6365143,54.3526028],[-7.6365577,54.3523044],[-7.6369181,54.3518198],[-7.6372329,54.3515456],[-7.6375754,54.3512843],[-7.6383699,54.350878],[-7.6387482,54.3506318],[-7.639078,54.3503831],[-7.6393166,54.3501471],[-7.6394969,54.3498552],[-7.639597,54.3495589],[-7.6396407,54.3493156],[-7.6396456,54.3492888],[-7.6396117,54.3486576],[-7.6396597,54.3484922],[-7.6397421,54.3483303],[-7.6399952,54.3479587],[-7.6400302,54.3479056],[-7.6400637,54.3478335],[-7.6400034,54.3478116],[-7.6399637,54.3477734],[-7.6399669,54.3477138],[-7.6400062,54.3476791],[-7.6400978,54.3476545],[-7.6401736,54.3476607],[-7.6402474,54.3476957],[-7.6402722,54.3477354],[-7.6402603,54.3477825],[-7.6410273,54.3479915],[-7.6412763,54.3480421],[-7.6421276,54.3481401],[-7.6426728,54.3481858],[-7.6430051,54.3481923],[-7.6432703,54.3481617],[-7.643386,54.3481271],[-7.6434981,54.3480574],[-7.6438602,54.3472412],[-7.6439002,54.3471237],[-7.644044,54.3468232],[-7.6442649,54.3465597],[-7.6449228,54.3467087],[-7.6457891,54.3469277],[-7.6459721,54.3469594],[-7.6458944,54.3471473],[-7.6458756,54.3472766],[-7.6459482,54.3473224],[-7.6460982,54.3473779],[-7.6466502,54.3475312],[-7.6502083,54.3486045],[-7.6509302,54.3488774],[-7.6515645,54.3491372],[-7.6521663,54.3493596],[-7.6524531,54.3494375],[-7.6527819,54.3494749],[-7.6532859,54.3494684],[-7.6539161,54.3495088],[-7.6545613,54.3495839],[-7.654975,54.3496872],[-7.6553807,54.349848],[-7.6558109,54.3500849],[-7.6567529,54.3506659],[-7.6569889,54.3509151],[-7.657323,54.3515186],[-7.657776,54.3522199],[-7.6579036,54.3523382],[-7.6582411,54.3525328],[-7.6597409,54.3530193],[-7.6621566,54.3538735],[-7.6636616,54.3543492],[-7.6646305,54.3546463],[-7.6647797,54.3545119],[-7.664971,54.3544012],[-7.6669318,54.3534872],[-7.66757,54.3531685],[-7.6679408,54.3530148],[-7.6684344,54.352855],[-7.6688077,54.3527576],[-7.6694188,54.3526528],[-7.6702807,54.3525537],[-7.6709246,54.352505],[-7.6716756,54.3524827],[-7.6763766,54.3526796],[-7.677163,54.3527319],[-7.6775664,54.3527949],[-7.6782681,54.3529595],[-7.6786356,54.3530869],[-7.6789027,54.3532007],[-7.6793473,54.3534477],[-7.6801644,54.353951],[-7.68147,54.3547836],[-7.6823335,54.3552795],[-7.6833099,54.3557496],[-7.6836929,54.3559008],[-7.6841784,54.3560672],[-7.6851345,54.3563652],[-7.6855535,54.3564805],[-7.6864784,54.3566615],[-7.6899713,54.3570778],[-7.690883,54.3572067],[-7.6913612,54.3572997],[-7.6917928,54.3574135],[-7.6921552,54.3575288],[-7.6924711,54.3576515],[-7.6959379,54.3591774],[-7.6965881,54.3593976],[-7.6969659,54.3594933],[-7.6973308,54.3595563],[-7.6976854,54.3595878],[-7.6981094,54.3595907],[-7.6985668,54.3595637],[-7.7016583,54.3591878],[-7.7020418,54.3591776],[-7.7023931,54.359191],[-7.7029615,54.3592394],[-7.703601,54.3593331],[-7.7042922,54.3594665],[-7.7051531,54.359682],[-7.7054795,54.3597854],[-7.7057417,54.359896],[-7.70605,54.3600594],[-7.7062735,54.3602106],[-7.7065846,54.3604965],[-7.7067181,54.3606763],[-7.7069135,54.3612094],[-7.7070111,54.3617035],[-7.7071087,54.3618891],[-7.7072527,54.3620643],[-7.7074224,54.3622051],[-7.7076357,54.3623413],[-7.7082239,54.3626267],[-7.7087603,54.3628045],[-7.7101994,54.3632087],[-7.7109601,54.363378],[-7.7114357,54.3634514],[-7.7118672,54.3634963],[-7.7126872,54.3635367],[-7.7131187,54.3635263],[-7.7145913,54.363444],[-7.7155242,54.3634842],[-7.7159045,54.3635144],[-7.7172434,54.3636772],[-7.7178364,54.3637659],[-7.7181684,54.3638368],[-7.7183498,54.3638847],[-7.7188754,54.364065],[-7.7193547,54.3643055],[-7.7210458,54.3652448],[-7.7219341,54.3656922],[-7.7243719,54.3667573],[-7.7248525,54.3669474],[-7.7252226,54.3670747],[-7.7259062,54.3672559],[-7.7265339,54.3673758],[-7.7276401,54.3675567],[-7.7321855,54.3682388],[-7.7327616,54.368336],[-7.7338077,54.3685424],[-7.7363709,54.3690928],[-7.7390557,54.369712],[-7.7396778,54.3698859],[-7.7402357,54.3701003],[-7.7407356,54.3703352],[-7.7412845,54.3706511],[-7.7421443,54.37125],[-7.742916,54.3719021],[-7.743286,54.3722435],[-7.7436339,54.3725998],[-7.7442415,54.3733331],[-7.7455781,54.3748616],[-7.7459438,54.3752215],[-7.7463517,54.3755555],[-7.7468099,54.3758622],[-7.7484004,54.3766248],[-7.75134,54.378073],[-7.7518131,54.3783301],[-7.7522475,54.3786119],[-7.7526385,54.3789088],[-7.7549022,54.3809506],[-7.7553572,54.3813963],[-7.7556927,54.381764],[-7.7559421,54.3821518],[-7.7561486,54.3826259],[-7.7563379,54.3833788],[-7.7563494,54.3839741],[-7.7564213,54.3845964],[-7.7564457,54.3857346],[-7.7565228,54.3863569],[-7.7565934,54.3866674],[-7.7569915,54.3874617],[-7.7575749,54.388292],[-7.7576823,54.3884353],[-7.7579219,54.3881618],[-7.7581171,54.3879979],[-7.7581549,54.3879158],[-7.758167,54.3871042],[-7.7582478,54.386742],[-7.7585649,54.38608],[-7.7588569,54.385703],[-7.7592237,54.3851667],[-7.7594198,54.3851125],[-7.760467,54.385052],[-7.7614529,54.3849128],[-7.7624949,54.3846279],[-7.7635649,54.3843019],[-7.7642957,54.3840342],[-7.7647829,54.3836319],[-7.7648884,54.3834888],[-7.7650087,54.3832612],[-7.7654028,54.3821319],[-7.7657129,54.3816368],[-7.7662023,54.3810758],[-7.7667734,54.3806613],[-7.7687029,54.379462],[-7.7701727,54.3784418],[-7.77185,54.377143],[-7.77322,54.3757948],[-7.7740349,54.3751099],[-7.7747499,54.3744029],[-7.7748678,54.3740318],[-7.7749239,54.3735347],[-7.7750893,54.3733168],[-7.7755432,54.3730029],[-7.7761778,54.3726496],[-7.7764446,54.3725441],[-7.7767676,54.3724884],[-7.7778032,54.3724184],[-7.7783992,54.3724059],[-7.7800294,54.3724869],[-7.7814055,54.3726157],[-7.7838795,54.3729144],[-7.7842124,54.3729833],[-7.7846901,54.3731491],[-7.7853665,54.373416],[-7.787177,54.3735129],[-7.7876368,54.3736669],[-7.7883569,54.374073],[-7.7886999,54.374168],[-7.7895129,54.3742319],[-7.7901048,54.37426],[-7.7903619,54.3741728],[-7.7906279,54.3739579],[-7.7911219,54.3734849],[-7.7916318,54.3730498],[-7.7920198,54.3727919],[-7.7925568,54.3725769],[-7.7936198,54.3723169],[-7.7944768,54.3722169],[-7.7948348,54.3721129],[-7.7955019,54.3717529],[-7.7957999,54.3717249],[-7.796718,54.372058],[-7.7973269,54.3723379],[-7.797765,54.3724419],[-7.7996101,54.3725493],[-7.7999832,54.3725389],[-7.8008281,54.3724417],[-7.8011377,54.372394],[-7.8014435,54.3723241],[-7.8014832,54.3723137],[-7.8015469,54.3724026],[-7.802072,54.3728869],[-7.8026449,54.3733],[-7.8035898,54.3737878],[-7.8046979,54.3742769],[-7.8051749,54.3744278],[-7.8059329,54.374542],[-7.8067269,54.374583],[-7.8073319,54.3745779],[-7.8143738,54.3733536],[-7.8145256,54.3733387],[-7.8148439,54.3733378],[-7.8150842,54.3733454],[-7.8158539,54.3734661],[-7.8172838,54.373761],[-7.8182669,54.374065],[-7.8191299,54.3742728],[-7.8203479,54.3745399],[-7.8211214,54.3747448],[-7.8203479,54.3745399],[-7.8191299,54.3742728],[-7.8182669,54.374065],[-7.8172838,54.373761],[-7.8158539,54.3734661],[-7.8150842,54.3733454],[-7.8148439,54.3733378],[-7.8145256,54.3733387],[-7.8143738,54.3733536],[-7.8073319,54.3745779],[-7.8067269,54.374583],[-7.8059329,54.374542],[-7.8051749,54.3744278],[-7.8046979,54.3742769],[-7.8035898,54.3737878],[-7.8026449,54.3733],[-7.802072,54.3728869],[-7.8015469,54.3724026],[-7.8014832,54.3723137],[-7.8011377,54.372394],[-7.8008281,54.3724417],[-7.7999832,54.3725389],[-7.7996101,54.3725493],[-7.797765,54.3724419],[-7.7973269,54.3723379],[-7.796718,54.372058],[-7.7957999,54.3717249],[-7.7955019,54.3717529],[-7.7948348,54.3721129],[-7.7944768,54.3722169],[-7.7936198,54.3723169],[-7.7925568,54.3725769],[-7.7920198,54.3727919],[-7.7916318,54.3730498],[-7.7911219,54.3734849],[-7.7906279,54.3739579],[-7.7903619,54.3741728],[-7.7901048,54.37426],[-7.7895129,54.3742319],[-7.7886999,54.374168],[-7.7883569,54.374073],[-7.7876368,54.3736669],[-7.787177,54.3735129],[-7.7853665,54.373416],[-7.7846901,54.3731491],[-7.7842124,54.3729833],[-7.7838795,54.3729144],[-7.7814055,54.3726157],[-7.7800294,54.3724869],[-7.7783992,54.3724059],[-7.7778032,54.3724184],[-7.7767676,54.3724884],[-7.7764446,54.3725441],[-7.7761778,54.3726496],[-7.7755432,54.3730029],[-7.7750893,54.3733168],[-7.7749239,54.3735347],[-7.7748678,54.3740318],[-7.7747499,54.3744029],[-7.7740349,54.3751099],[-7.77322,54.3757948],[-7.77185,54.377143],[-7.7701727,54.3784418],[-7.7687029,54.379462],[-7.7667734,54.3806613],[-7.7662023,54.3810758],[-7.7657129,54.3816368],[-7.7654028,54.3821319],[-7.7650087,54.3832612],[-7.7648884,54.3834888],[-7.7647829,54.3836319],[-7.7642957,54.3840342],[-7.7635649,54.3843019],[-7.7624949,54.3846279],[-7.7614529,54.3849128],[-7.760467,54.385052],[-7.7594198,54.3851125],[-7.7592237,54.3851667],[-7.7588569,54.385703],[-7.7585649,54.38608],[-7.7582478,54.386742],[-7.758167,54.3871042],[-7.7581549,54.3879158],[-7.7581171,54.3879979],[-7.7579219,54.3881618],[-7.7577038,54.3883928],[-7.7576823,54.3884353],[-7.7569915,54.3874617],[-7.7565934,54.3866674],[-7.7565228,54.3863569],[-7.7564457,54.3857346],[-7.7564213,54.3845964],[-7.7563494,54.3839741],[-7.7563379,54.3833788],[-7.7561486,54.3826259],[-7.7559421,54.3821518],[-7.7556927,54.381764],[-7.7553572,54.3813963],[-7.7549022,54.3809506],[-7.7526385,54.3789088],[-7.7522475,54.3786119],[-7.7518131,54.3783301],[-7.75134,54.378073],[-7.7484004,54.3766248],[-7.7468099,54.3758622],[-7.7463517,54.3755555],[-7.7459438,54.3752215],[-7.7455781,54.3748616],[-7.7442415,54.3733331],[-7.7436339,54.3725998],[-7.743286,54.3722435],[-7.742916,54.3719021],[-7.7421443,54.37125],[-7.7412845,54.3706511],[-7.7407356,54.3703352],[-7.7402357,54.3701003],[-7.7396778,54.3698859],[-7.7390557,54.369712],[-7.7363709,54.3690928],[-7.7338077,54.3685424],[-7.7327616,54.368336],[-7.7321855,54.3682388],[-7.7276401,54.3675567],[-7.7265339,54.3673758],[-7.7259062,54.3672559],[-7.7252226,54.3670747],[-7.7248525,54.3669474],[-7.7243719,54.3667573],[-7.7219341,54.3656922],[-7.7210458,54.3652448],[-7.7193547,54.3643055],[-7.7188754,54.364065],[-7.7183498,54.3638847],[-7.7181684,54.3638368],[-7.7178364,54.3637659],[-7.7172434,54.3636772],[-7.7159045,54.3635144],[-7.7155242,54.3634842],[-7.7145913,54.363444],[-7.7131187,54.3635263],[-7.7126872,54.3635367],[-7.7118672,54.3634963],[-7.7114357,54.3634514],[-7.7109601,54.363378],[-7.7101994,54.3632087],[-7.7087603,54.3628045],[-7.7082239,54.3626267],[-7.7076357,54.3623413],[-7.7074224,54.3622051],[-7.7072527,54.3620643],[-7.7071087,54.3618891],[-7.7070111,54.3617035],[-7.7069135,54.3612094],[-7.7067181,54.3606763],[-7.7065846,54.3604965],[-7.7062735,54.3602106],[-7.70605,54.3600594],[-7.7057417,54.359896],[-7.7054795,54.3597854],[-7.7051531,54.359682],[-7.7042922,54.3594665],[-7.703601,54.3593331],[-7.7029615,54.3592394],[-7.7023931,54.359191],[-7.7020418,54.3591776],[-7.7016583,54.3591878],[-7.6985668,54.3595637],[-7.6981094,54.3595907],[-7.6976854,54.3595878],[-7.6973308,54.3595563],[-7.6969659,54.3594933],[-7.6965881,54.3593976],[-7.6959379,54.3591774],[-7.6924711,54.3576515],[-7.6921552,54.3575288],[-7.6917928,54.3574135],[-7.6913612,54.3572997],[-7.690883,54.3572067],[-7.6899713,54.3570778],[-7.6864784,54.3566615],[-7.6855535,54.3564805],[-7.6851345,54.3563652],[-7.6841784,54.3560672],[-7.6836929,54.3559008],[-7.6833099,54.3557496],[-7.6823335,54.3552795],[-7.68147,54.3547836],[-7.6801644,54.353951],[-7.6793473,54.3534477],[-7.6789027,54.3532007],[-7.6786356,54.3530869],[-7.6782681,54.3529595],[-7.6775664,54.3527949],[-7.677163,54.3527319],[-7.6763766,54.3526796],[-7.6716756,54.3524827],[-7.6709246,54.352505],[-7.6702807,54.3525537],[-7.6694188,54.3526528],[-7.6688077,54.3527576],[-7.6684344,54.352855],[-7.6679408,54.3530148],[-7.66757,54.3531685],[-7.6669318,54.3534872],[-7.664971,54.3544012],[-7.6647797,54.3545119],[-7.6646622,54.3546229],[-7.6646305,54.3546463],[-7.66339,54.3542692],[-7.6621566,54.3538735],[-7.6597409,54.3530193],[-7.6582411,54.3525328],[-7.6579036,54.3523382],[-7.657776,54.3522199],[-7.657323,54.3515186],[-7.6569889,54.3509151],[-7.6567529,54.3506659],[-7.6558109,54.3500849],[-7.6553807,54.349848],[-7.654975,54.3496872],[-7.6545613,54.3495839],[-7.6539161,54.3495088],[-7.6532859,54.3494684],[-7.6527819,54.3494749],[-7.6524531,54.3494375],[-7.6521663,54.3493596],[-7.6519934,54.3492963],[-7.6515645,54.3491372],[-7.6502083,54.3486045],[-7.6466502,54.3475312],[-7.6460982,54.3473779],[-7.6459482,54.3473224],[-7.6458756,54.3472766],[-7.6456435,54.3472922],[-7.6448165,54.3472533],[-7.6443277,54.3471902],[-7.6439002,54.3471237],[-7.644044,54.3468232],[-7.6442649,54.3465597],[-7.643782,54.3464442],[-7.6433984,54.3463337],[-7.6430438,54.3462324],[-7.6428601,54.3461743],[-7.6426584,54.3460834],[-7.6422484,54.3458822],[-7.6419914,54.3457362],[-7.6415974,54.3454678],[-7.6406998,54.3445992],[-7.6400945,54.3441621],[-7.6394657,54.3438668],[-7.6388353,54.3436618],[-7.638473,54.3435817],[-7.6377775,54.3435001],[-7.6372096,54.3434694],[-7.6351059,54.3434312],[-7.6350663,54.3434312],[-7.6342312,54.3434194],[-7.6334564,54.3434276],[-7.6326508,54.3434891],[-7.6320246,54.3436297],[-7.6318037,54.3437158],[-7.6316638,54.3437892],[-7.6315714,54.3438808],[-7.6314103,54.3439991],[-7.6306505,54.3446812],[-7.6304506,54.3449336],[-7.6301382,54.3454687],[-7.6304506,54.3449336],[-7.6306505,54.3446812],[-7.6314103,54.3439991],[-7.6315714,54.3438808],[-7.6316638,54.3437892],[-7.6318037,54.3437158],[-7.6320246,54.3436297],[-7.6326508,54.3434891],[-7.6334564,54.3434276],[-7.6340791,54.3434166],[-7.6342312,54.3434194],[-7.6350663,54.3434312],[-7.6372096,54.3434694],[-7.6377775,54.3435001],[-7.638473,54.3435817],[-7.6388353,54.3436618],[-7.6394657,54.3438668],[-7.6400945,54.3441621],[-7.6406998,54.3445992],[-7.6415974,54.3454678],[-7.6419914,54.3457362],[-7.6422484,54.3458822],[-7.6428601,54.3461743],[-7.6430438,54.3462324],[-7.643782,54.3464442],[-7.6442649,54.3465597],[-7.6449228,54.3467087],[-7.6457891,54.3469277],[-7.6459721,54.3469594],[-7.6458944,54.3471473],[-7.6458756,54.3472766],[-7.6459482,54.3473224],[-7.6460982,54.3473779],[-7.6466502,54.3475312],[-7.6502083,54.3486045],[-7.6509302,54.3488774],[-7.6515645,54.3491372],[-7.6521663,54.3493596],[-7.6524531,54.3494375],[-7.6527819,54.3494749],[-7.6532859,54.3494684],[-7.6539161,54.3495088],[-7.6545613,54.3495839],[-7.654975,54.3496872],[-7.6553807,54.349848],[-7.6558109,54.3500849],[-7.6567529,54.3506659],[-7.6569889,54.3509151],[-7.657323,54.3515186],[-7.657776,54.3522199],[-7.6579036,54.3523382],[-7.6582411,54.3525328],[-7.6597409,54.3530193],[-7.6621566,54.3538735],[-7.66339,54.3542692],[-7.6654604,54.3548997],[-7.6659707,54.3550882],[-7.6668588,54.355492],[-7.6677164,54.3559699],[-7.6695399,54.3570559],[-7.6704319,54.3576718],[-7.671036,54.3581518],[-7.6714059,54.3584929],[-7.6726479,54.3597299],[-7.67303,54.3600689],[-7.673453,54.3603788],[-7.6736919,54.360526],[-7.6742314,54.3607852],[-7.675625,54.3613627],[-7.6760959,54.361543],[-7.6771149,54.3619788],[-7.67773,54.3623178],[-7.6779978,54.3625039],[-7.6781941,54.3626965],[-7.6784829,54.3630733],[-7.6786574,54.363416],[-7.679531,54.3664687],[-7.6796817,54.3669141],[-7.6798111,54.3671791],[-7.679978,54.367431],[-7.6801618,54.367659],[-7.6803818,54.3678789],[-7.6806448,54.3680918],[-7.6809449,54.368291],[-7.6826189,54.3691798],[-7.6832129,54.3695699],[-7.6834569,54.3697859],[-7.6838609,54.3702609],[-7.6845938,54.3714278],[-7.6848678,54.371803],[-7.685012,54.371963],[-7.6854719,54.3722709],[-7.6859569,54.372541],[-7.6863749,54.372834],[-7.6865679,54.3729979],[-7.6872729,54.3737278],[-7.6878888,54.3742259],[-7.6880408,54.3743939],[-7.6881129,54.3745459],[-7.6881671,54.3747409],[-7.688133,54.3749348],[-7.6877424,54.3760856],[-7.6877499,54.37633],[-7.687654,54.3772309],[-7.6876439,54.377672],[-7.6876869,54.3778858],[-7.6878559,54.378288],[-7.6879749,54.3784789],[-7.688272,54.378849],[-7.688641,54.3792008],[-7.6888479,54.3793649],[-7.6893059,54.379687],[-7.6905859,54.3804579],[-7.6908309,54.3806219],[-7.6912919,54.3809659],[-7.6916989,54.3813319],[-7.6920599,54.3817229],[-7.692362,54.3821159],[-7.6924929,54.3823239],[-7.6927619,54.3829559],[-7.692872,54.383159],[-7.693005,54.3833449],[-7.6931709,54.3835149],[-7.6933499,54.383661],[-7.6935649,54.3838008],[-7.6945349,54.384279],[-7.694746,54.384409],[-7.6951219,54.3846819],[-7.6954599,54.3849888],[-7.6967789,54.3865069],[-7.698397,54.3885789],[-7.698999,54.389432],[-7.6996708,54.3902909],[-7.701185,54.3920229],[-7.7021628,54.3929947],[-7.7028289,54.3934797],[-7.7030383,54.3935833],[-7.7052377,54.3944861],[-7.7081732,54.3957683],[-7.709988,54.3966386],[-7.7139038,54.3982728],[-7.7152239,54.3987469],[-7.715532,54.398873],[-7.7158039,54.3990209],[-7.7160328,54.399193],[-7.7162189,54.399383],[-7.716373,54.3995959],[-7.7164929,54.3998289],[-7.717089,54.401352],[-7.7176159,54.4029149],[-7.717813,54.4034009],[-7.7179499,54.4036199],[-7.718662,54.40446],[-7.7189199,54.4049329],[-7.7194769,54.4061239],[-7.7198379,54.4067648],[-7.7200999,54.4071159],[-7.7204509,54.407422],[-7.7206699,54.407571],[-7.7211888,54.4078269],[-7.7214278,54.4079709],[-7.721618,54.4081478],[-7.7217858,54.408336],[-7.7220458,54.4087499],[-7.722687,54.4099829],[-7.722825,54.4101699],[-7.7229889,54.4103389],[-7.7231988,54.4104989],[-7.7234419,54.4106429],[-7.7242849,54.4110118],[-7.7248089,54.4112879],[-7.725049,54.4114479],[-7.7254889,54.411813],[-7.72586,54.4121808],[-7.7260179,54.4123649],[-7.726302,54.4129039],[-7.7264089,54.413082],[-7.7265449,54.4132459],[-7.7276669,54.4143968],[-7.7279819,54.414745],[-7.7283729,54.4152618],[-7.728819,54.4156189],[-7.7300889,54.4164249],[-7.73056,54.4167749],[-7.7308308,54.4169379],[-7.73136,54.4173149],[-7.7337839,54.4187189],[-7.734428,54.419071],[-7.7364629,54.4200898],[-7.7371819,54.420408],[-7.737924,54.4207078],[-7.7390799,54.4211389],[-7.7410333,54.4218022],[-7.7432582,54.4225848],[-7.74379,54.4227949],[-7.7458089,54.4234498],[-7.7499479,54.4245829],[-7.7507108,54.4247639],[-7.7518159,54.424964],[-7.7554997,54.4255625],[-7.7561028,54.4256439],[-7.7569419,54.4257329],[-7.7586179,54.4258609],[-7.7599129,54.425919],[-7.7615689,54.4259529],[-7.7619949,54.4259938],[-7.7624069,54.4260499],[-7.7632369,54.4262108],[-7.7640127,54.4264141],[-7.7643523,54.4265258],[-7.7646524,54.4266488],[-7.7673958,54.428116],[-7.7679999,54.4283959],[-7.7686449,54.4286269],[-7.7693589,54.4288029],[-7.770546,54.429043],[-7.772157,54.4293319],[-7.77341,54.429594],[-7.774248,54.4297908],[-7.7750578,54.4300099],[-7.775829,54.430253],[-7.7765548,54.4305329],[-7.7779019,54.4311688],[-7.778292,54.4313752],[-7.7796358,54.4321369],[-7.7800099,54.4323758],[-7.7801769,54.432507],[-7.780415,54.4328149],[-7.7807769,54.4334958],[-7.7810559,54.4338069],[-7.7816319,54.4342459],[-7.7823639,54.4348459],[-7.7825859,54.4349709],[-7.7830799,54.4351739],[-7.783618,54.435352],[-7.785872,54.4358359],[-7.7868098,54.4360199],[-7.7873979,54.4360939],[-7.7880159,54.4360668],[-7.7883249,54.4360398],[-7.7886589,54.4359908],[-7.789265,54.4359719],[-7.7898189,54.4360059],[-7.7900719,54.4360519],[-7.790293,54.436119],[-7.7904899,54.4362149],[-7.790648,54.4363429],[-7.7910678,54.4368359],[-7.7917859,54.4375639],[-7.7921729,54.437893],[-7.7928429,54.4383829],[-7.793032,54.43856],[-7.7935209,54.4391089],[-7.793767,54.4394729],[-7.7939018,54.439857],[-7.7939449,54.4404079],[-7.7938668,54.4410058],[-7.7935198,54.442433],[-7.793431,54.442932],[-7.7933749,54.4434679],[-7.7931629,54.4446339],[-7.7931849,54.444771],[-7.7932479,54.4449029],[-7.793485,54.445175],[-7.7938039,54.4454719],[-7.7940579,54.4458079],[-7.794139,54.4459828],[-7.7941909,54.446165],[-7.7943358,54.4469169],[-7.7944459,54.4472509],[-7.7945558,54.447399],[-7.7946979,54.4475279],[-7.794879,54.4476478],[-7.7951029,54.4477579],[-7.795639,54.4479619],[-7.795926,54.4480489],[-7.7965509,54.4481919],[-7.7974159,54.448305],[-7.7976689,54.4483629],[-7.7978879,54.448454],[-7.7980699,54.4485879],[-7.798351,54.4488979],[-7.7986149,54.4492389],[-7.7989299,54.44955],[-7.7991258,54.4496859],[-7.7993549,54.4497999],[-7.79962,54.4498938],[-7.7999089,54.449962],[-7.8002199,54.4500179],[-7.8012729,54.4501509],[-7.8020589,54.4502149],[-7.8028509,54.4502559],[-7.8040279,54.4502539],[-7.8058358,54.4502209],[-7.8071736,54.4501037],[-7.8073401,54.4501356],[-7.80745,54.4502036],[-7.8075278,54.450282],[-7.8075534,54.4503545],[-7.8074278,54.4512109],[-7.807461,54.4515039],[-7.8075139,54.45163],[-7.8075889,54.4517349],[-7.8076919,54.4518259],[-7.8078339,54.4519029],[-7.8082088,54.4520429],[-7.808649,54.452167],[-7.8088919,54.452211],[-7.8094,54.452246],[-7.8096758,54.4522359],[-7.8105438,54.452154],[-7.8108139,54.4520949],[-7.8110769,54.4520159],[-7.811326,54.4519159],[-7.8124579,54.451343],[-7.8126849,54.4512608],[-7.8129308,54.451215],[-7.8131949,54.4512088],[-7.8137649,54.4512498],[-7.8143408,54.4513409],[-7.8146269,54.451413],[-7.815812,54.4518319],[-7.816335,54.4520439],[-7.8165639,54.4521579],[-7.8173349,54.45278],[-7.8180618,54.453271],[-7.81972,54.4542569],[-7.8220678,54.455541],[-7.8226929,54.4558468],[-7.823997,54.456409],[-7.8249559,54.4568029],[-7.825847,54.4571349],[-7.8261038,54.4572479],[-7.8263339,54.457388],[-7.8265238,54.4575469],[-7.8268168,54.4579218],[-7.8270448,54.458316],[-7.8271018,54.4585059],[-7.827105,54.45904],[-7.8271549,54.4592059],[-7.8272538,54.4593609],[-7.8273769,54.4594969],[-7.8275358,54.459623],[-7.828339,54.4601229],[-7.8291889,54.460605],[-7.8303318,54.4612019],[-7.8313159,54.461749],[-7.8317668,54.4620509],[-7.832274,54.4624616],[-7.8323578,54.4625544],[-7.8332787,54.4639365],[-7.8334138,54.464157],[-7.8335009,54.4643547],[-7.8335836,54.4644768],[-7.8337485,54.4645869],[-7.834542,54.4653178],[-7.8349329,54.4655484],[-7.8358024,54.465955],[-7.8364346,54.4661894],[-7.8383397,54.4668221],[-7.8402666,54.4673554],[-7.8417241,54.4676983],[-7.8434674,54.4680412],[-7.8443436,54.4682697],[-7.8458678,54.4684128],[-7.8470681,54.4686128],[-7.8489542,54.4689843],[-7.8526851,54.4697995],[-7.8542976,54.4700828],[-7.8571558,54.4705338],[-7.8599315,54.4705908],[-7.8613853,54.4705846],[-7.8625856,54.4705275],[-7.8629829,54.4708659],[-7.863589,54.470808],[-7.863904,54.4707988],[-7.8645069,54.47083],[-7.865987,54.4710429],[-7.8668689,54.471239],[-7.868664,54.4718859],[-7.8715268,54.4726499],[-7.871913,54.4727399],[-7.8726798,54.4728599],[-7.8738669,54.472945],[-7.8742688,54.472956],[-7.8750819,54.4729429],[-7.8754889,54.4729089],[-7.8762879,54.4727729],[-7.8770758,54.4726879],[-7.8774659,54.4726619],[-7.878666,54.4726458],[-7.880285,54.4726719],[-7.8807,54.472663],[-7.8819219,54.4725579],[-7.8823289,54.4725419],[-7.8831769,54.4725458],[-7.8848898,54.4726229],[-7.8853119,54.4726529],[-7.8868689,54.4728159],[-7.8879028,54.472869],[-7.8902479,54.4728809],[-7.8910209,54.4729059],[-7.8917678,54.4729539],[-7.8924889,54.4729539],[-7.892843,54.4729688],[-7.8932039,54.4729958],[-7.8958768,54.473276],[-7.8978808,54.4734289],[-7.8982578,54.4734479],[-7.8986298,54.473447],[-7.898999,54.4734179],[-7.89936,54.4733648],[-7.900789,54.4730448],[-7.9015478,54.4729139],[-7.9019349,54.4728658],[-7.902341,54.472837],[-7.905422,54.4728129],[-7.9096869,54.472739],[-7.9135109,54.4727099],[-7.922972,54.472576],[-7.9257429,54.4725609],[-7.9280559,54.4725909],[-7.9293659,54.4726399],[-7.9302018,54.4726948],[-7.9321179,54.4728649],[-7.9379439,54.4733048],[-7.942852,54.4737148],[-7.9432748,54.4737418],[-7.9441508,54.473767],[-7.9450279,54.4737439],[-7.9464029,54.4736289],[-7.948708,54.4733889],[-7.950994,54.4731748],[-7.9518828,54.4730709],[-7.9544129,54.47262],[-7.9586578,54.4717039],[-7.9606479,54.4713019],[-7.961439,54.4711779],[-7.963546,54.470971],[-7.9648608,54.4708029],[-7.9692369,54.470157],[-7.9700719,54.4699959],[-7.9717489,54.4695959],[-7.9733659,54.4691798],[-7.9741988,54.468996],[-7.9754332,54.4688282],[-7.9768078,54.4687375],[-7.9772338,54.4687358],[-7.9776596,54.4687576],[-7.9776797,54.4686104],[-7.9777341,54.4685605],[-7.9778543,54.4685305],[-7.9804474,54.468168],[-7.9807939,54.4681381],[-7.9885848,54.4677653],[-7.9910176,54.4676705],[-7.9929467,54.4675675],[-7.995039,54.4675808],[-7.9996444,54.4674943],[-8.0029704,54.4672798],[-8.0047278,54.46713],[-8.0099456,54.4668806],[-8.0110015,54.4668472],[-8.0119861,54.4667839],[-8.0121953,54.4667973],[-8.0123154,54.466824],[-8.0124071,54.4669005],[-8.012405,54.4669318],[-8.0128621,54.4670045],[-8.0131099,54.4670713],[-8.0138126,54.4674267],[-8.0141447,54.4675541],[-8.0147099,54.4676899],[-8.0156019,54.4678769],[-8.016512,54.4680269],[-8.0167426,54.4680581],[-8.0167409,54.4680975],[-8.0180131,54.4714804],[-8.0182375,54.4720178],[-8.0184797,54.4723027],[-8.0188371,54.4725842],[-8.0192421,54.4728623],[-8.0196259,54.4731577],[-8.0199363,54.4734665],[-8.0209849,54.4751762],[-8.0211712,54.4754735],[-8.0216287,54.4762476],[-8.0217648,54.4765339],[-8.0218013,54.4767088],[-8.0218902,54.4773416],[-8.0219058,54.4778875],[-8.0221508,54.479383],[-8.0221809,54.4797133],[-8.0225196,54.4819594],[-8.0226036,54.4822539],[-8.0226244,54.4822942],[-8.0217006,54.4824231],[-8.0210647,54.4825363],[-8.015939,54.4835811],[-8.0144444,54.4838718],[-8.0137392,54.483953],[-8.0127403,54.4840018],[-8.0106284,54.483913],[-8.0088736,54.4839286],[-8.0050759,54.4840577],[-8.0044547,54.4841169],[-8.0036579,54.4842311],[-8.0016788,54.4846038],[-7.9991003,54.4851712],[-7.9980984,54.4854657],[-7.9973575,54.4857201],[-7.9969255,54.4858438],[-7.995468,54.4861569],[-7.9940855,54.4863734],[-7.9925736,54.4865466],[-7.9909891,54.4867517],[-7.9905631,54.4868265],[-7.9901131,54.4869312],[-7.989723,54.4870445],[-7.9892037,54.4872302],[-7.9888413,54.4873963],[-7.9884631,54.4876074],[-7.9880277,54.4878944],[-7.9870136,54.4886927],[-7.986738,54.4889488],[-7.9865554,54.4892102],[-7.9862518,54.4899984],[-7.9859542,54.4905865],[-7.9856329,54.4909873],[-7.9853997,54.4912105],[-7.9841396,54.4920807],[-7.9836175,54.4925398],[-7.9832384,54.4928103],[-7.9819988,54.493546],[-7.9807345,54.4942069],[-7.9801362,54.4946051],[-7.9797985,54.4948668],[-7.9792872,54.4954377],[-7.9790503,54.495835],[-7.9789903,54.4960755],[-7.9789093,54.4968733],[-7.9788253,54.497018],[-7.9787353,54.4971521],[-7.9783453,54.4975284],[-7.9780484,54.4977549],[-7.9777215,54.4979691],[-7.9772415,54.4982531],[-7.9731448,54.5004028],[-7.9714185,54.5012505],[-7.9704991,54.5016817],[-7.9697462,54.501997],[-7.9690834,54.5022142],[-7.968349,54.5023649],[-7.966911,54.5026046],[-7.9665271,54.5026952],[-7.9662122,54.5028045],[-7.965886,54.5029623],[-7.9651799,54.5033428],[-7.9648467,54.503551],[-7.9646945,54.5036226],[-7.9644771,54.5036961],[-7.9639736,54.5038181],[-7.9633543,54.5039422],[-7.9626733,54.5041441],[-7.9624018,54.5042514],[-7.962054,54.5043376],[-7.9610508,54.504449],[-7.9596382,54.5044974],[-7.9581061,54.5044554],[-7.9571897,54.5045395],[-7.9550166,54.5048635],[-7.9543682,54.5049728],[-7.9540856,54.5050274],[-7.9530425,54.5052988],[-7.9525571,54.5054416],[-7.9510214,54.5057719],[-7.9487035,54.5061379],[-7.9481637,54.5061861],[-7.9468634,54.5061988],[-7.9454254,54.5062552],[-7.9447692,54.5062943],[-7.9441965,54.5063564],[-7.941282,54.5068179],[-7.9397883,54.5070765],[-7.9379493,54.5076399],[-7.936644,54.5079838],[-7.9358665,54.5081246],[-7.9349749,54.5081825],[-7.9339933,54.5081577],[-7.9333605,54.5081846],[-7.9327496,54.5082404],[-7.9312941,54.5084498],[-7.9280483,54.509011],[-7.9245705,54.5095525],[-7.9220123,54.5100114],[-7.9197217,54.5105775],[-7.9167286,54.5112562],[-7.9139519,54.5116647],[-7.9129748,54.5117353],[-7.9124181,54.5117271],[-7.9119561,54.5117092],[-7.9107899,54.5115992],[-7.9099839,54.5115572],[-7.9093289,54.5115412],[-7.9090072,54.5115667],[-7.9083295,54.511704],[-7.9073472,54.5119937],[-7.9069709,54.5120846],[-7.9066157,54.5121337],[-7.9061486,54.5121473],[-7.9057002,54.5121216],[-7.9052117,54.5120646],[-7.9044338,54.5119046],[-7.8995576,54.510848],[-7.897271,54.5103987],[-7.8948937,54.5098418],[-7.8934919,54.5095299],[-7.8920226,54.5092625],[-7.8913953,54.5092342],[-7.8905005,54.5092736],[-7.8876313,54.5095391],[-7.8857735,54.5097734],[-7.8842951,54.5098693],[-7.8807741,54.5100247],[-7.8799037,54.5100107],[-7.8793494,54.5099541],[-7.8788144,54.5098665],[-7.8748703,54.508884],[-7.8739561,54.5087147],[-7.8733658,54.5086443],[-7.8722151,54.508596],[-7.8715283,54.5086543],[-7.8682488,54.5090462],[-7.8661365,54.5093522],[-7.861538,54.5100783],[-7.859304,54.5103456],[-7.857616,54.5104613],[-7.8563495,54.5106136],[-7.8543652,54.5108068],[-7.8521183,54.5109491],[-7.8509917,54.5110441],[-7.8497954,54.5112371],[-7.8478111,54.5116809],[-7.8473266,54.5118607],[-7.8462178,54.5123079],[-7.8401945,54.513768],[-7.8386363,54.5140899],[-7.8368096,54.5145304],[-7.835689,54.5148284],[-7.8337494,54.5154522],[-7.8329852,54.515602],[-7.831886,54.5157704],[-7.8311738,54.5158993],[-7.8300919,54.5161192],[-7.8260649,54.5169867],[-7.8226507,54.5176302],[-7.8217287,54.5177692],[-7.8207072,54.5180029],[-7.8184778,54.5185483],[-7.8180103,54.5186167],[-7.8174356,54.518672],[-7.8162541,54.5187582],[-7.8108672,54.5189514],[-7.8103302,54.5189853],[-7.8097233,54.5190464],[-7.8080015,54.5193917],[-7.8057486,54.5198695],[-7.8043014,54.5202251],[-7.8039452,54.5203471],[-7.8021478,54.5214684],[-7.8014064,54.5219596],[-7.8010505,54.5222643],[-7.8000875,54.5234871],[-7.7998729,54.5237257],[-7.7990662,54.5241849],[-7.7984884,54.5243847],[-7.7979922,54.5245101],[-7.7973796,54.5245676],[-7.7965274,54.5246049],[-7.7921325,54.5246827],[-7.7911755,54.524798],[-7.7905159,54.5249638],[-7.7898681,54.5251842],[-7.7894352,54.5253937],[-7.7883148,54.5261053],[-7.7850418,54.5282769],[-7.7846311,54.5284712],[-7.7842206,54.52859],[-7.7836575,54.5287092],[-7.780936,54.5290395],[-7.7784605,54.5293867],[-7.7773286,54.5296247],[-7.7758094,54.530047],[-7.7729763,54.5308773],[-7.7711346,54.5313709],[-7.7703308,54.5315479],[-7.7682955,54.5318372],[-7.7670989,54.5318882],[-7.7638436,54.5319018],[-7.7605706,54.5318882],[-7.7582419,54.5319631],[-7.7568106,54.532072],[-7.7546347,54.5323749],[-7.7539418,54.53252],[-7.7520713,54.5330863],[-7.7516314,54.5331781],[-7.748629,54.5335186],[-7.7443464,54.5338689],[-7.7377006,54.533961],[-7.7339114,54.5339099],[-7.7313362,54.5338453],[-7.7306004,54.5338304],[-7.7302944,54.5340181],[-7.7301409,54.5342243],[-7.7301063,54.5342582],[-7.7289125,54.5337557],[-7.7279128,54.5332131],[-7.727661,54.5330974],[-7.7273132,54.5329643],[-7.7263929,54.5326586],[-7.7254088,54.5323041],[-7.7234341,54.5314924],[-7.7228095,54.5312013],[-7.7224696,54.5310038],[-7.7222936,54.5308384],[-7.7217163,54.5301178],[-7.7211454,54.529358],[-7.7210409,54.529138],[-7.7209523,54.5288277],[-7.7209039,54.528555],[-7.7209022,54.5282244],[-7.7209823,54.5277252],[-7.7212747,54.5264102],[-7.7215915,54.5256338],[-7.7222627,54.5247975],[-7.7227168,54.5242713],[-7.7228401,54.5240983],[-7.7229565,54.5238779],[-7.7229529,54.5234027],[-7.722887,54.5231084],[-7.7227676,54.5228525],[-7.7226546,54.5227216],[-7.722499,54.5226789],[-7.7221153,54.5226931],[-7.7212348,54.5228059],[-7.7187661,54.5231889],[-7.7180829,54.5232981],[-7.7178987,54.523323],[-7.7037148,54.5253574],[-7.6942721,54.5267821],[-7.692224,54.5269308],[-7.6904442,54.5270168],[-7.6885996,54.5269829],[-7.6871009,54.5268159],[-7.6856952,54.5267354],[-7.683864,54.5266894],[-7.6828617,54.5267138],[-7.682067,54.5267536],[-7.6812303,54.526816],[-7.6803896,54.5268926],[-7.6793056,54.5270347],[-7.6782087,54.5272752],[-7.6771334,54.5276894],[-7.6765153,54.527958],[-7.6741025,54.5292349],[-7.6732199,54.5296536],[-7.6728504,54.5297965],[-7.6719142,54.5300744],[-7.6690245,54.5307872],[-7.6682832,54.5309463],[-7.6672498,54.53114],[-7.6661488,54.5314019],[-7.6655067,54.5315391],[-7.6645726,54.5317051],[-7.6621558,54.531967],[-7.6615032,54.5320761],[-7.658956,54.5326323],[-7.6586686,54.532683],[-7.6584939,54.5326983],[-7.6570313,54.5328545],[-7.6551454,54.5331189],[-7.6547267,54.5332263],[-7.6548461,54.5333709],[-7.6548911,54.5334556],[-7.6548884,54.5334964],[-7.6548574,54.5335355],[-7.6545426,54.5336432],[-7.6544357,54.5336987],[-7.6544329,54.5337523],[-7.654475,54.5337997],[-7.6545313,54.5338242],[-7.654475,54.5337997],[-7.6544329,54.5337523],[-7.6544357,54.5336987],[-7.6545426,54.5336432],[-7.6548574,54.5335355],[-7.6548884,54.5334964],[-7.6548911,54.5334556],[-7.6548461,54.5333709],[-7.6547557,54.5332645],[-7.6547267,54.5332263],[-7.6492293,54.5349966],[-7.6437248,54.536756],[-7.6435169,54.5368181],[-7.6322047,54.5404294],[-7.6259622,54.5423533],[-7.6224347,54.5433224],[-7.6205689,54.543722],[-7.6190701,54.5439919],[-7.6175991,54.5441925],[-7.6145086,54.544484],[-7.6085962,54.5449943],[-7.6048042,54.5453244],[-7.6048054,54.5453576],[-7.6046655,54.5455133],[-7.6043069,54.5457536],[-7.6042617,54.5457858],[-7.6046655,54.5455133],[-7.6048054,54.5453576],[-7.6048042,54.5453244],[-7.5979315,54.5459216],[-7.5963676,54.5460143],[-7.5953208,54.5460572],[-7.5934531,54.546081],[-7.5889461,54.5460691],[-7.5805815,54.5460415],[-7.5797291,54.5460411],[-7.5796092,54.545435],[-7.5796002,54.5453222],[-7.5795943,54.5450282],[-7.579657,54.5449429],[-7.57978,54.5448509],[-7.5823247,54.5435642],[-7.5830892,54.5432131],[-7.5833348,54.5431349],[-7.5840125,54.5429957],[-7.5843151,54.5429035],[-7.5845038,54.5428286],[-7.5848037,54.5426897],[-7.5855771,54.5422585],[-7.5865961,54.541782],[-7.5868988,54.5416203],[-7.5871806,54.541429],[-7.5874114,54.5412186],[-7.5880468,54.5407022],[-7.5888322,54.5398397],[-7.5891679,54.5396223],[-7.591374,54.5387632],[-7.5923811,54.5382782],[-7.5934153,54.5378869],[-7.5937539,54.5377842],[-7.5946471,54.5376034],[-7.5950786,54.5374974],[-7.5955793,54.5373547],[-7.5986555,54.5363794],[-7.5992087,54.5362295],[-7.6000437,54.5360462],[-7.6003214,54.5359037],[-7.6005433,54.5357122],[-7.6006841,54.5355297],[-7.6009029,54.5349767],[-7.6015472,54.5321853],[-7.6019849,54.5304303],[-7.6020568,54.5301625],[-7.6021887,54.5298529],[-7.6022908,54.5296946],[-7.6024256,54.5295398],[-7.6026205,54.5293762],[-7.6031688,54.528964],[-7.603614,54.5286832],[-7.6036591,54.5286371],[-7.6037673,54.5286126],[-7.603878,54.5285092],[-7.6044118,54.5281385],[-7.6049559,54.5277239],[-7.6052898,54.52737],[-7.605562,54.5269408],[-7.6060848,54.5260619],[-7.6062349,54.525637],[-7.6068427,54.5232899],[-7.6071679,54.5217698],[-7.607191,54.5215675],[-7.6071953,54.5214075],[-7.6069755,54.5200258],[-7.606836,54.5193284],[-7.6067664,54.5186716],[-7.6067932,54.5184008],[-7.6069005,54.5180739],[-7.6071903,54.5175972],[-7.6073296,54.5172765],[-7.6075654,54.5168965],[-7.6077266,54.51647],[-7.6076355,54.515981],[-7.6071687,54.5147761],[-7.6071365,54.5145704],[-7.6071687,54.5143618],[-7.6073995,54.5132252],[-7.6075818,54.5125059],[-7.6076463,54.5123377],[-7.6081129,54.5116681],[-7.6092239,54.5101955],[-7.6092522,54.5101653],[-7.6098226,54.5094521],[-7.6100707,54.5090324],[-7.6101512,54.5087182],[-7.610186,54.5081251],[-7.6102447,54.5078564],[-7.6103449,54.507693],[-7.6106431,54.5074265],[-7.611037,54.507229],[-7.6114094,54.5071202],[-7.6119466,54.5070342],[-7.6123973,54.5069992],[-7.6140566,54.5069381],[-7.6149003,54.5068654],[-7.6156597,54.5067747],[-7.615936,54.5067237],[-7.6160656,54.5066743],[-7.6162426,54.5065257],[-7.6163703,54.5062599],[-7.6164299,54.5058864],[-7.6163804,54.5054943],[-7.6161368,54.5047161],[-7.6160483,54.5042488],[-7.6160816,54.5039413],[-7.6162075,54.5035969],[-7.6173801,54.5019641],[-7.6185994,54.5003546],[-7.6192995,54.4994486],[-7.6198192,54.4989222],[-7.6199351,54.4987342],[-7.6202962,54.497246],[-7.6203724,54.4968187],[-7.620288,54.4965123],[-7.6196002,54.495491],[-7.6187035,54.4942477],[-7.6186102,54.4940866],[-7.6183405,54.4934197],[-7.6180985,54.4929729],[-7.6177748,54.4924838],[-7.6175853,54.4920427],[-7.6171923,54.4912796],[-7.6171623,54.4912529],[-7.6174343,54.491127],[-7.6178239,54.490991],[-7.6183518,54.4907049],[-7.6186575,54.4903631],[-7.6192872,54.4894856],[-7.6195856,54.4890131],[-7.6201357,54.4880358],[-7.6207394,54.4868152],[-7.6209983,54.4854396],[-7.6209983,54.4850684],[-7.6208252,54.4842538],[-7.6206358,54.4836004],[-7.6206188,54.4832655],[-7.6206487,54.4825411],[-7.6206885,54.4823525],[-7.6207284,54.482275],[-7.6207958,54.4822029],[-7.620988,54.4820641],[-7.6214293,54.4818278],[-7.6218054,54.4816761],[-7.6219337,54.4816011],[-7.6222349,54.4812943],[-7.6223256,54.481157],[-7.6225865,54.4808888],[-7.6229352,54.4807148],[-7.6238176,54.4803687],[-7.6243691,54.4800735],[-7.6254789,54.4792482],[-7.62568,54.4791049],[-7.6258125,54.4790204],[-7.6263172,54.4787877],[-7.6283788,54.47799],[-7.6301846,54.4772531],[-7.630348,54.4771641],[-7.6305186,54.4770216],[-7.6307732,54.4767627],[-7.6311095,54.4763557],[-7.6314576,54.4758563],[-7.6322783,54.4749915],[-7.6323841,54.4748104],[-7.632509,54.4743951],[-7.6325895,54.4743176],[-7.6326152,54.4742958],[-7.6324804,54.4740846],[-7.632453,54.473964],[-7.6325131,54.4736604],[-7.6326646,54.4732508],[-7.6326979,54.4731238],[-7.6328719,54.4727829],[-7.6330781,54.4724691],[-7.6335262,54.4716382],[-7.6336006,54.4715476],[-7.633641,54.4715102],[-7.6336898,54.4714938],[-7.633605,54.4714126],[-7.633502,54.4713476],[-7.6327925,54.4710559],[-7.6310433,54.4702281],[-7.6288607,54.4691023],[-7.6275503,54.4683737],[-7.6272771,54.4681576],[-7.6269757,54.4678613],[-7.6266769,54.4674699],[-7.6263517,54.4669568],[-7.626271,54.4668279],[-7.6257108,54.4658867],[-7.6255867,54.4655723],[-7.625553,54.4652334],[-7.6255416,54.4641069],[-7.6255079,54.46356],[-7.6254094,54.4628003],[-7.6252967,54.4621649],[-7.6248262,54.4600689],[-7.624843,54.4598511],[-7.6249022,54.4596399],[-7.6251415,54.4591715],[-7.6253135,54.4589062],[-7.6256938,54.4585197],[-7.6259304,54.4583461],[-7.6262461,54.4581513],[-7.6266685,54.4579336],[-7.6291617,54.4568527],[-7.6295081,54.4566759],[-7.6296717,54.4565498],[-7.6298097,54.4563907],[-7.6299166,54.4561961],[-7.6299801,54.4560253],[-7.6300341,54.4557248],[-7.6300101,54.4554415],[-7.6298386,54.4547464],[-7.6295618,54.4537972],[-7.629249,54.4528763],[-7.6288884,54.4519114],[-7.6284574,54.4509779],[-7.6282546,54.4506748],[-7.6265419,54.4487308],[-7.6256635,54.4476857],[-7.625491,54.4473532],[-7.6254431,54.4471729],[-7.6254178,54.4466979],[-7.6255388,54.4420323],[-7.6255811,54.4417621],[-7.6258007,54.4408609],[-7.626001,54.4392931],[-7.6259952,54.4390998],[-7.6259333,54.4387049],[-7.6257756,54.4380332],[-7.6257445,54.4377743],[-7.6258121,54.4366208],[-7.6257868,54.4363537],[-7.6256404,54.4356589],[-7.6248796,54.4328916],[-7.6247781,54.4322983],[-7.6247725,54.4282311],[-7.6248007,54.4276197],[-7.6248374,54.4273575],[-7.6249134,54.4271083],[-7.6256404,54.4256433],[-7.6256905,54.4254552],[-7.6259445,54.4215835],[-7.6259782,54.420377],[-7.6260714,54.4197884],[-7.6262208,54.417053],[-7.6264214,54.416155],[-7.6266721,54.4153026],[-7.6267253,54.4150421],[-7.6267093,54.4148157],[-7.6266359,54.4146533],[-7.6265175,54.414527],[-7.6258996,54.4140098],[-7.6248089,54.413046],[-7.6245859,54.412808],[-7.624424,54.4125252],[-7.6243874,54.4123191],[-7.6243995,54.4121838],[-7.6247968,54.4111953],[-7.6265158,54.407123],[-7.6269006,54.4060917],[-7.6313549,54.3957875],[-7.6316304,54.3952118],[-7.631856,54.3948467],[-7.6322395,54.3943462],[-7.632464,54.394096],[-7.6351803,54.3915021],[-7.6377649,54.3888855],[-7.6384924,54.3881199],[-7.6387098,54.3879523],[-7.6389903,54.3878078],[-7.6391749,54.3876185],[-7.6391825,54.3875587],[-7.6392332,54.3875069],[-7.6393712,54.3874637],[-7.6393362,54.3873382],[-7.6394027,54.3870487],[-7.639409,54.3867636],[-7.6391557,54.3860951],[-7.6387616,54.385372],[-7.6383138,54.3848219],[-7.6376092,54.3840484],[-7.6372711,54.3836347],[-7.6370662,54.3832646],[-7.6368496,54.3826356],[-7.6368147,54.3824102],[-7.6368119,54.3821358],[-7.6369189,54.3802737],[-7.6368496,54.3797878],[-7.6367166,54.3793117],[-7.6364392,54.3787145],[-7.6350218,54.3759619],[-7.6347833,54.3755553],[-7.6326968,54.3723022],[-7.6324249,54.3716579],[-7.632333,54.3711881],[-7.6323423,54.3706506],[-7.6324981,54.3700206],[-7.6328477,54.3692914],[-7.6338284,54.3674241],[-7.6339051,54.3672905],[-7.633809,54.3672605],[-7.6337349,54.367214],[-7.6336913,54.3671557],[-7.6336829,54.3670923],[-7.6337105,54.3670309],[-7.6337712,54.366978],[-7.6338583,54.3669398],[-7.6339621,54.3669202],[-7.6340711,54.3669215],[-7.6343626,54.3664026],[-7.6355912,54.3639668],[-7.6357411,54.3635528],[-7.6357771,54.3632033],[-7.6357322,54.362723],[-7.635639,54.3622862],[-7.6354682,54.361722],[-7.6352604,54.3614338],[-7.6350124,54.3611855],[-7.6345688,54.3608203],[-7.6344266,54.360675],[-7.6343408,54.3606953],[-7.6342517,54.3606964],[-7.6341627,54.3606776],[-7.6340865,54.3606372],[-7.6340444,54.3605817],[-7.6340437,54.360523],[-7.634078,54.3604725],[-7.634142,54.3604326],[-7.6342322,54.3604082],[-7.6343413,54.3604071],[-7.6344326,54.3604295],[-7.6345101,54.3604783],[-7.6350361,54.3601447],[-7.6352978,54.3599025],[-7.6354556,54.3597826],[-7.6357178,54.3594447],[-7.6357912,54.3592838],[-7.6361967,54.356975],[-7.6363368,54.356352],[-7.6365707,54.3557358],[-7.636847,54.3546804],[-7.6365566,54.3529752],[-7.6365143,54.3526028],[-7.6365577,54.3523044],[-7.6369181,54.3518198],[-7.6372329,54.3515456],[-7.6375754,54.3512843],[-7.6383699,54.350878],[-7.6387482,54.3506318],[-7.639078,54.3503831],[-7.6393166,54.3501471],[-7.6394969,54.3498552],[-7.639597,54.3495589],[-7.6396407,54.3493156],[-7.6396456,54.3492888],[-7.6396117,54.3486576],[-7.6396597,54.3484922],[-7.6397421,54.3483303],[-7.6399952,54.3479587],[-7.6400302,54.3479056],[-7.6400637,54.3478335],[-7.6400034,54.3478116],[-7.6399637,54.3477734],[-7.6399669,54.3477138],[-7.6400062,54.3476791],[-7.6400978,54.3476545],[-7.6401736,54.3476607],[-7.6402474,54.3476957],[-7.6402722,54.3477354],[-7.6402603,54.3477825],[-7.6410273,54.3479915],[-7.6412763,54.3480421],[-7.6421276,54.3481401],[-7.6426728,54.3481858],[-7.6430051,54.3481923],[-7.6432703,54.3481617],[-7.643386,54.3481271],[-7.6434981,54.3480574],[-7.6438602,54.3472412],[-7.6439002,54.3471237],[-7.6439272,54.3470673]]}};
var route10 = {"type":"Feature","properties":{"name":"Bus 10","desc":"\n71 miles"},"geometry":{"type":"LineString","coordinates":[[-7.6503533,54.3440981],[-7.6503072,54.3440965],[-7.6501865,54.3443226],[-7.6499097,54.3446871],[-7.6496359,54.3449271],[-7.6491294,54.3452251],[-7.647598,54.3459783],[-7.6462904,54.3466915],[-7.6459721,54.3469594],[-7.6457891,54.3469277],[-7.6449228,54.3467087],[-7.643782,54.3464442],[-7.6433984,54.3463337],[-7.6430438,54.3462324],[-7.6428601,54.3461743],[-7.6426584,54.3460834],[-7.6422484,54.3458822],[-7.6419914,54.3457362],[-7.6415974,54.3454678],[-7.6406998,54.3445992],[-7.6400945,54.3441621],[-7.6394657,54.3438668],[-7.6388353,54.3436618],[-7.638473,54.3435817],[-7.6377775,54.3435001],[-7.6372096,54.3434694],[-7.6351059,54.3434312],[-7.6350663,54.3434312],[-7.6342312,54.3434194],[-7.6334564,54.3434276],[-7.6326508,54.3434891],[-7.6320246,54.3436297],[-7.6318037,54.3437158],[-7.6316638,54.3437892],[-7.6315714,54.3438808],[-7.631325,54.3438033],[-7.6290626,54.3432317],[-7.6287528,54.3431317],[-7.6286096,54.3430661],[-7.6285172,54.3430108],[-7.6283665,54.3428986],[-7.6272743,54.3418783],[-7.6262576,54.3408838],[-7.6260216,54.3405789],[-7.6258549,54.3402667],[-7.6254666,54.3393749],[-7.6252892,54.3387652],[-7.6252205,54.33824],[-7.6251034,54.337725],[-7.6246921,54.3366055],[-7.624435,54.3360922],[-7.624183,54.3356181],[-7.6238505,54.3356511],[-7.6219426,54.3356895],[-7.6213935,54.3356664],[-7.6209988,54.3356308],[-7.62015,54.3355052],[-7.6189305,54.3352417],[-7.6183861,54.3350519],[-7.6181264,54.3349044],[-7.6179132,54.3347559],[-7.6177742,54.3346255],[-7.6175228,54.3342222],[-7.6170713,54.3332673],[-7.615776,54.3315749],[-7.6156843,54.3311891],[-7.6153662,54.3307002],[-7.6152969,54.3304079],[-7.6150339,54.3296968],[-7.61459,54.3290512],[-7.614563,54.3287792],[-7.6146515,54.3285399],[-7.6147787,54.3282847],[-7.6148704,54.3279999],[-7.6148785,54.3277728],[-7.6148253,54.3274284],[-7.6148476,54.3273171],[-7.6148812,54.3272725],[-7.6149149,54.3272496],[-7.6141827,54.326876],[-7.6133687,54.3264899],[-7.6124556,54.3260909],[-7.610788,54.3254838],[-7.6095188,54.3250863],[-7.608507,54.3247986],[-7.6067941,54.3242821],[-7.6051161,54.3239472],[-7.6044975,54.3238577],[-7.6036302,54.323789],[-7.6027725,54.3237853],[-7.6014353,54.3237804],[-7.6009245,54.3237639],[-7.6004451,54.3237235],[-7.6001825,54.3236884],[-7.6001147,54.323786],[-7.5998848,54.3238592],[-7.5996013,54.3238333],[-7.5991582,54.3237644],[-7.5986827,54.3236352],[-7.5981863,54.3235284],[-7.5971907,54.323139],[-7.5967358,54.3230168],[-7.5963871,54.3229752],[-7.595882,54.3229719],[-7.5952558,54.3230132],[-7.5947121,54.3230926],[-7.5930785,54.3234319],[-7.5922513,54.3236387],[-7.5914034,54.3237639],[-7.5904965,54.3238248],[-7.5899677,54.3238402],[-7.5868243,54.3235232],[-7.5859044,54.3233818],[-7.5855706,54.3233044],[-7.5844796,54.3229491],[-7.5836127,54.3227156],[-7.5824713,54.3224759],[-7.5818082,54.322374],[-7.5814856,54.3223563],[-7.5795216,54.322362],[-7.578904,54.3223935],[-7.5782319,54.3224524],[-7.5781682,54.3224488],[-7.5778112,54.3227197],[-7.5777074,54.3228439],[-7.5761603,54.3227184],[-7.5758522,54.3227297],[-7.5743932,54.3228357],[-7.5733537,54.3229315],[-7.5725214,54.3229542],[-7.5721215,54.3229391],[-7.5717671,54.322853],[-7.571312,54.3227202],[-7.5707922,54.3225137],[-7.5704254,54.322411],[-7.5702879,54.3223984],[-7.5694507,54.3224624],[-7.567855,54.3224844],[-7.5673014,54.3224671],[-7.5669752,54.3224142],[-7.5642111,54.3217949],[-7.5638216,54.3216922],[-7.5629134,54.3214041],[-7.5615378,54.3209155],[-7.5612735,54.3208753],[-7.5578293,54.3205545],[-7.5557524,54.3203943],[-7.5534155,54.3201462],[-7.5518381,54.3199359],[-7.5510671,54.3198516],[-7.5492337,54.3195854],[-7.5480899,54.3193585],[-7.5476024,54.3192872],[-7.5469807,54.3192494],[-7.5461453,54.3191611],[-7.5450346,54.3190974],[-7.544736,54.3190646],[-7.5446589,54.3190542],[-7.5447146,54.3188502],[-7.5447203,54.3188089],[-7.5414346,54.3189208],[-7.5401868,54.3189355],[-7.5394641,54.3189245],[-7.5378816,54.3188416],[-7.5370135,54.3187612],[-7.5355163,54.3185636],[-7.534657,54.3184123],[-7.5344132,54.3183626],[-7.533366,54.3181487],[-7.532487,54.3179217],[-7.5315924,54.3176587],[-7.5310228,54.3174728],[-7.52868,54.3166523],[-7.5276168,54.3163338],[-7.5264981,54.3160225],[-7.5248675,54.315634],[-7.5232373,54.3153144],[-7.5206913,54.3149288],[-7.5027246,54.3125347],[-7.5019292,54.3123924],[-7.5008286,54.3121508],[-7.4992955,54.3117306],[-7.4985901,54.3115069],[-7.4978202,54.3112217],[-7.4968707,54.3108231],[-7.4959079,54.3103692],[-7.4952747,54.3100406],[-7.4942287,54.3094001],[-7.4935581,54.3089298],[-7.4927619,54.3082279],[-7.491871,54.3074821],[-7.491152,54.3069136],[-7.4903903,54.306382],[-7.4893659,54.3057748],[-7.4887635,54.3054597],[-7.4879871,54.3050862],[-7.4871706,54.3047325],[-7.4860774,54.3043382],[-7.4836017,54.3035855],[-7.4832154,54.3034618],[-7.482373,54.3031571],[-7.4810054,54.3025791],[-7.4801551,54.3021579],[-7.4791116,54.3015805],[-7.4783876,54.3012097],[-7.4776269,54.3008522],[-7.476443,54.3003769],[-7.4748574,54.2997669],[-7.473522,54.2993094],[-7.4709739,54.298522],[-7.4695276,54.2981192],[-7.4677203,54.2976699],[-7.4669864,54.2974982],[-7.4670223,54.2973599],[-7.4669869,54.2971523],[-7.4666804,54.2965646],[-7.4663451,54.296014],[-7.466127,54.2957316],[-7.4654342,54.2952233],[-7.4651249,54.2949895],[-7.4649235,54.2947783],[-7.4648972,54.2947344],[-7.4648507,54.2944429],[-7.4648369,54.2940016],[-7.4647501,54.2930686],[-7.4644416,54.2920043],[-7.4643859,54.2918884],[-7.4642353,54.2917595],[-7.4641011,54.2917182],[-7.4640326,54.2917018],[-7.4641352,54.2914704],[-7.4641542,54.2911277],[-7.463962,54.2910307],[-7.4637167,54.2908168],[-7.4636815,54.2907803],[-7.4632937,54.290582],[-7.4627952,54.2903603],[-7.4611027,54.2896834],[-7.4582256,54.2884161],[-7.4572356,54.2880948],[-7.4566021,54.2879985],[-7.4563257,54.2879839],[-7.4559903,54.2880013],[-7.4529834,54.287935],[-7.4524224,54.287886],[-7.4516771,54.2878975],[-7.4500862,54.2880516],[-7.4489016,54.288233],[-7.4478453,54.2883557],[-7.4468322,54.2883157],[-7.4460108,54.288205],[-7.4445801,54.2878672],[-7.4442006,54.2877103],[-7.4436616,54.2873981],[-7.4431577,54.2871368],[-7.4383007,54.2848741],[-7.4372642,54.2845727],[-7.4364874,54.2844172],[-7.4355194,54.2843211],[-7.4326278,54.2842762],[-7.4286308,54.2842421],[-7.4266448,54.2842778],[-7.4262695,54.2842764],[-7.4246146,54.2843183],[-7.4235918,54.2843142],[-7.4225303,54.2842266],[-7.4215187,54.2841109],[-7.4208831,54.2840146],[-7.4195655,54.283936],[-7.4192405,54.2838545],[-7.4188387,54.2836894],[-7.4181448,54.2832975],[-7.4175115,54.2828633],[-7.4172998,54.282749],[-7.4165806,54.2822619],[-7.4158255,54.281872],[-7.4154582,54.2817625],[-7.41495,54.281552],[-7.4136272,54.2811989],[-7.4131254,54.2811126],[-7.4122412,54.2808662],[-7.4102221,54.2804171],[-7.4081976,54.2798857],[-7.4073415,54.2798168],[-7.4068008,54.2798246],[-7.405574,54.2797026],[-7.4053596,54.2796691],[-7.4048573,54.2795391],[-7.4045462,54.2794048],[-7.4042558,54.2790505],[-7.4039858,54.2783535],[-7.4039576,54.2782151],[-7.4036693,54.2778042],[-7.4033847,54.2774611],[-7.4030867,54.2770104],[-7.4029013,54.2766874],[-7.402678,54.2764179],[-7.4022366,54.2760451],[-7.4015435,54.275616],[-7.4013399,54.2755532],[-7.4007194,54.2750905],[-7.3999505,54.2744446],[-7.3991339,54.2738116],[-7.3989542,54.2736373],[-7.3978921,54.2728043],[-7.3971074,54.2721293],[-7.396356,54.271564],[-7.3957925,54.2712147],[-7.395097,54.2708616],[-7.3948789,54.2707668],[-7.3946671,54.2706386],[-7.3937058,54.2702253],[-7.3931133,54.2699062],[-7.3922947,54.2695434],[-7.3921639,54.2694532],[-7.391293,54.2690667],[-7.391034,54.2689155],[-7.3900349,54.2684191],[-7.3889868,54.2679572],[-7.3889622,54.2679128],[-7.3872879,54.2678987],[-7.3860014,54.2679179],[-7.3854763,54.2679333],[-7.3844583,54.2679991],[-7.3838224,54.268035],[-7.3837837,54.2679518],[-7.3829701,54.2669802],[-7.3826795,54.2665987],[-7.3820757,54.2659431],[-7.3814643,54.265188],[-7.3811842,54.2648996],[-7.3808934,54.2644964],[-7.3805021,54.2638467],[-7.3804404,54.2635751],[-7.3804775,54.26299],[-7.3805781,54.2621016],[-7.3806964,54.2612749],[-7.3808515,54.2604801],[-7.3811026,54.2586817],[-7.3812203,54.2581563],[-7.3813904,54.2576703],[-7.3816141,54.2572222],[-7.3821908,54.2564909],[-7.3827212,54.2559165],[-7.386959,54.2515247],[-7.3873825,54.2510296],[-7.3876234,54.2506217],[-7.3877906,54.2502123],[-7.3879268,54.2497872],[-7.3880339,54.2493087],[-7.3881883,54.2490019],[-7.3885536,54.248472],[-7.3885917,54.2484504],[-7.3876982,54.2480792],[-7.3866641,54.2475807],[-7.3861331,54.2472909],[-7.3841052,54.2465347],[-7.3829142,54.2461538],[-7.382377,54.2459398],[-7.3817121,54.2455805],[-7.3808919,54.2451062],[-7.3806898,54.2449568],[-7.380511,54.2448609],[-7.3795104,54.2442224],[-7.3787622,54.2437163],[-7.3767077,54.2424292],[-7.3759256,54.2419036],[-7.3740683,54.2407948],[-7.3734751,54.2404846],[-7.3717396,54.2396653],[-7.3711684,54.2394242],[-7.3702857,54.2389265],[-7.3693445,54.2382767],[-7.3687037,54.2377871],[-7.3680373,54.2372401],[-7.3674164,54.2367767],[-7.3667887,54.2362663],[-7.3663465,54.2358533],[-7.366143,54.2356153],[-7.3659288,54.2353054],[-7.3656088,54.2349528],[-7.3650615,54.2344163],[-7.3642468,54.2338117],[-7.363447,54.2333434],[-7.3625339,54.2329033],[-7.3619155,54.2326287],[-7.361363,54.2324501],[-7.3607377,54.2322774],[-7.3602319,54.2321756],[-7.35917,54.2319939],[-7.3582113,54.2317449],[-7.3576534,54.2315572],[-7.3572939,54.2314122],[-7.3570356,54.2312843],[-7.3567951,54.2311386],[-7.3559474,54.2305647],[-7.3554037,54.2302306],[-7.35444,54.2295455],[-7.3538303,54.2291964],[-7.3533466,54.2289971],[-7.3528738,54.2287133],[-7.3525732,54.228494],[-7.3518973,54.2278717],[-7.3515003,54.2275661],[-7.3511349,54.2273597],[-7.3504129,54.2270255],[-7.3480617,54.2264287],[-7.3474411,54.226327],[-7.3468119,54.2261873],[-7.3462305,54.2260301],[-7.3458677,54.2258923],[-7.3455672,54.2257476],[-7.3450114,54.2253618],[-7.3447952,54.2250837],[-7.3447877,54.224958],[-7.3447854,54.2249326],[-7.3447952,54.2250837],[-7.3450114,54.2253618],[-7.3455672,54.2257476],[-7.3458677,54.2258923],[-7.3462305,54.2260301],[-7.3468119,54.2261873],[-7.3474411,54.226327],[-7.3480617,54.2264287],[-7.3504129,54.2270255],[-7.3511349,54.2273597],[-7.3515003,54.2275661],[-7.3518973,54.2278717],[-7.3525732,54.228494],[-7.3528738,54.2287133],[-7.3533466,54.2289971],[-7.3538303,54.2291964],[-7.35444,54.2295455],[-7.3554037,54.2302306],[-7.3559474,54.2305647],[-7.3567951,54.2311386],[-7.3570356,54.2312843],[-7.3572939,54.2314122],[-7.3576534,54.2315572],[-7.3582113,54.2317449],[-7.35917,54.2319939],[-7.3602319,54.2321756],[-7.3607377,54.2322774],[-7.361363,54.2324501],[-7.3619155,54.2326287],[-7.3625339,54.2329033],[-7.363447,54.2333434],[-7.3642468,54.2338117],[-7.3650615,54.2344163],[-7.3656088,54.2349528],[-7.3659288,54.2353054],[-7.366143,54.2356153],[-7.3663465,54.2358533],[-7.3667887,54.2362663],[-7.3674164,54.2367767],[-7.3680373,54.2372401],[-7.3687037,54.2377871],[-7.3693445,54.2382767],[-7.3702857,54.2389265],[-7.3711684,54.2394242],[-7.3717396,54.2396653],[-7.3734751,54.2404846],[-7.3740683,54.2407948],[-7.3759256,54.2419036],[-7.3767077,54.2424292],[-7.3787622,54.2437163],[-7.3795104,54.2442224],[-7.380511,54.2448609],[-7.3806898,54.2449568],[-7.3808919,54.2451062],[-7.3817121,54.2455805],[-7.382377,54.2459398],[-7.3829142,54.2461538],[-7.3841052,54.2465347],[-7.3861331,54.2472909],[-7.3866641,54.2475807],[-7.3876982,54.2480792],[-7.3901202,54.2490746],[-7.3913049,54.2496094],[-7.3932729,54.2506169],[-7.393997,54.250935],[-7.3943579,54.251051],[-7.3947536,54.2511265],[-7.3951775,54.2511695],[-7.3953973,54.2511695],[-7.3957888,54.2511105],[-7.396342,54.2509816],[-7.3965629,54.2508715],[-7.3967598,54.250735],[-7.3978219,54.2498606],[-7.3980031,54.2497697],[-7.3981777,54.2497274],[-7.3983988,54.2497071],[-7.3986284,54.2497142],[-7.3992863,54.2498111],[-7.4000841,54.2499513],[-7.4009871,54.250075],[-7.4017264,54.2500856],[-7.4027745,54.2500139],[-7.4036656,54.2499333],[-7.4043166,54.2499171],[-7.4051928,54.2499303],[-7.406066,54.2498444],[-7.4064353,54.2497455],[-7.4067497,54.2496215],[-7.4071348,54.2493776],[-7.4072957,54.2493026],[-7.4078895,54.2491089],[-7.4083041,54.2490291],[-7.4087357,54.2489807],[-7.4096268,54.2489535],[-7.4104486,54.2489021],[-7.4112395,54.2487911],[-7.411832,54.2486438],[-7.4120804,54.248556],[-7.4126107,54.248326],[-7.4135655,54.2478508],[-7.4137769,54.2477009],[-7.4143015,54.2473768],[-7.4149506,54.2470657],[-7.4152887,54.2469476],[-7.4164152,54.2466848],[-7.4168984,54.2466511],[-7.4172128,54.2466653],[-7.4175097,54.2466966],[-7.4179815,54.2468027],[-7.4188543,54.2470352],[-7.4190387,54.2470693],[-7.4192459,54.247095],[-7.4201176,54.2471237],[-7.4209731,54.2472289],[-7.4235527,54.2471771],[-7.4239414,54.2471788],[-7.4241735,54.2472043],[-7.4243419,54.2472069],[-7.4245112,54.2471807],[-7.42527,54.2469564],[-7.426049,54.246839],[-7.4265681,54.2467906],[-7.4268976,54.2467999],[-7.4276574,54.2468906],[-7.4282126,54.246983],[-7.4285075,54.2469761],[-7.4295165,54.2483349],[-7.4298007,54.2485845],[-7.4299356,54.2486371],[-7.4307455,54.2488162],[-7.4311549,54.2488473],[-7.4318956,54.24885],[-7.4327562,54.2488853],[-7.4331855,54.2489641],[-7.4334804,54.2490467],[-7.4341617,54.2492968],[-7.4345559,54.2495293],[-7.435953,54.2504613],[-7.436246,54.2506994],[-7.4363963,54.2507947],[-7.4368087,54.251166],[-7.4375922,54.2517099],[-7.437817,54.2518417],[-7.4380668,54.2519321],[-7.4389698,54.2520559],[-7.4398221,54.252202],[-7.4403032,54.2522808],[-7.4415685,54.2524942],[-7.4419882,54.2525849],[-7.4424742,54.2527047],[-7.4426915,54.252833],[-7.4427811,54.2528492],[-7.4428215,54.2528427],[-7.4424352,54.2522349],[-7.4421055,54.2516635],[-7.442005,54.2514729],[-7.4420616,54.251447],[-7.443008,54.2512764],[-7.4441887,54.2510825],[-7.4442841,54.2510915],[-7.4443716,54.2511369],[-7.4445227,54.251431],[-7.4446408,54.2515985],[-7.4448742,54.251667],[-7.4449057,54.2516842],[-7.4448847,54.2516949],[-7.4447809,54.2517328],[-7.4424896,54.252224],[-7.4424352,54.2522349],[-7.4428215,54.2528427],[-7.4429041,54.2529297],[-7.4435683,54.2534855],[-7.4444998,54.2540056],[-7.4450098,54.2542656],[-7.4446853,54.2545135],[-7.4445961,54.2546471],[-7.4444735,54.2549006],[-7.4444439,54.2550233],[-7.44444,54.255503],[-7.4443411,54.2556782],[-7.4439548,54.2561806],[-7.4434938,54.2568349],[-7.4433664,54.2572365],[-7.4433215,54.2576884],[-7.4432671,54.2579305],[-7.4429925,54.25844],[-7.4428534,54.2586182],[-7.4424522,54.2589481],[-7.4418621,54.2593294],[-7.4415754,54.2594916],[-7.4409418,54.2598034],[-7.4405897,54.2600012],[-7.4405195,54.2600588],[-7.4404813,54.2601219],[-7.4403209,54.2606247],[-7.4400857,54.2611794],[-7.4397504,54.2618497],[-7.4396277,54.262049],[-7.4386049,54.2621617],[-7.4379215,54.2621751],[-7.4372848,54.2621455],[-7.4366802,54.2620503],[-7.4361188,54.2619866],[-7.4346866,54.2619306],[-7.4339013,54.2618644],[-7.4331818,54.261776],[-7.4327256,54.2616899],[-7.4295843,54.2649169],[-7.428205,54.2655597],[-7.428037,54.2656162],[-7.4281033,54.2657527],[-7.4284378,54.2662499],[-7.4293826,54.2675494],[-7.4294535,54.2676796],[-7.4301362,54.26954],[-7.4301546,54.2696803],[-7.4302716,54.2700929],[-7.4302694,54.2702463],[-7.4304633,54.2702756],[-7.4306192,54.2703114],[-7.4304562,54.2704257],[-7.4304228,54.2704974],[-7.4304011,54.2709106],[-7.4305329,54.2720336],[-7.4305301,54.2723202],[-7.4305987,54.2726788],[-7.4305676,54.2728127],[-7.4307207,54.2746692],[-7.4307104,54.2748618],[-7.4308466,54.2755944],[-7.4308771,54.2758863],[-7.4307985,54.2762754],[-7.4306696,54.2765274],[-7.4304044,54.2767876],[-7.4298739,54.2775459],[-7.4290579,54.2784731],[-7.428786,54.2789278],[-7.4281961,54.2800396],[-7.4279532,54.2805524],[-7.4277183,54.281173],[-7.4273713,54.2817486],[-7.4273202,54.2819948],[-7.427028,54.2825268],[-7.4261064,54.2846111],[-7.4253924,54.2863061],[-7.4253447,54.2866773],[-7.4251408,54.2875507],[-7.4250964,54.2880588],[-7.4250353,54.28842],[-7.4250364,54.2892189],[-7.4252348,54.2898654],[-7.4252495,54.2902817],[-7.4251883,54.2904842],[-7.4250556,54.2907502],[-7.4247395,54.291143],[-7.4241819,54.2914922],[-7.42392,54.291796],[-7.4233897,54.2926016],[-7.4226755,54.2931237],[-7.4221145,54.2934452],[-7.4203225,54.2946101],[-7.4195675,54.2953086],[-7.4192509,54.295726],[-7.4191155,54.2960606],[-7.4190618,54.2963491],[-7.4190367,54.297185],[-7.4189832,54.2975728],[-7.4186619,54.298723],[-7.4184542,54.2990833],[-7.418108,54.299548],[-7.4175978,54.300136],[-7.4172986,54.3004097],[-7.4164549,54.3011042],[-7.4161652,54.3014498],[-7.4154757,54.3025044],[-7.4148144,54.3035974],[-7.4125694,54.3065882],[-7.4124625,54.3068067],[-7.4124563,54.3070289],[-7.4127206,54.3082765],[-7.412757,54.30875],[-7.4127368,54.3094956],[-7.4126635,54.3100414],[-7.4125632,54.3102686],[-7.4123785,54.3104573],[-7.4116902,54.3110185],[-7.4100174,54.3124764],[-7.4090835,54.313022],[-7.4083267,54.3133508],[-7.408007,54.3135271],[-7.4078606,54.3136355],[-7.4078072,54.3137035],[-7.4078254,54.3137689],[-7.4078426,54.313809],[-7.4071696,54.3140543],[-7.4068256,54.3142774],[-7.4062112,54.3146786]]}};
// this part of the script defines how the animation runs.
var globalID; // the animation frame attaches to this global variable
function animateRoute(route, colour) {
var origin = route.geometry.coordinates[0],
destination = route.geometry.coordinates[route.geometry.coordinates.length - 1];
// Calculate the distance in kilometers between route start/end point.
var lineDistance = turf.lineDistance(route, 'kilometers');
// Used to increment the value of the point measurement against the route.
var counter = 0;
// A single point that animates along the route.
// Coordinates are initially set to origin.
var point = {
"type": "FeatureCollection",
"features": [{
"type": "Feature",
"geometry": {
"type": "Point",
"coordinates": origin
}
}]
};
// Add a source and layer displaying a point which will be animated in a circle.
map.addSource('route', {
"type": "geojson",
"data": route
});
map.addSource('point', {
"type": "geojson",
"data": point
});
map.addLayer({
"id": "route",
"source": "route",
"type": "line",
"layout": {
"line-cap": "round"
},
"paint": {
"line-width": 5,
"line-color": colour,
"line-blur": 2
}
});
map.addLayer({
"id": "point",
"source": "point",
"type": "symbol",
"layout": {
"icon-image": "bus-15",
"text-field": route.properties.name + route.properties.desc,
"text-anchor": "bottom",
"text-offset": [0,-1]
}
});
function animate() {
// Update point geometry to a new position based on counter denoting
// the index to access the arc.
point.features[0].geometry.coordinates = route.geometry.coordinates[counter];
// Update the source with this new data.
map.getSource('point').setData(point);
// Request the next frame of animation so long as destination has not
// been reached.
if (point.features[0].geometry.coordinates[0] !== destination) {
globalID = requestAnimationFrame(animate);
}
counter = counter + 1;
}
// Start the animation.
animate(counter);
}
function removeCurrentAnimation() {
if (globalID !== undefined) {
cancelAnimationFrame(globalID); // this cancels the currently running animation
map.removeLayer('point')
.removeLayer('route')
.removeSource('point')
.removeSource('route');
}
}
document.getElementById('route-one').addEventListener('click', function() {
removeCurrentAnimation();
animateRoute(route1, '#F44336');
});
document.getElementById('route-two').addEventListener('click', function() {
removeCurrentAnimation();
animateRoute(route2, "#6caf54");
});
document.getElementById('route-three').addEventListener('click', function() {
removeCurrentAnimation();
animateRoute(route3, "#00BCD4");
});
document.getElementById('route-four').addEventListener('click', function() {
removeCurrentAnimation();
animateRoute(route4, "#3F51B5");
});
document.getElementById('route-five').addEventListener('click', function() {
removeCurrentAnimation();
animateRoute(route5, "#FF5722");
});
document.getElementById('route-six').addEventListener('click', function() {
removeCurrentAnimation();
animateRoute(route6, "#673AB7");
});
document.getElementById('route-seven').addEventListener('click', function() {
removeCurrentAnimation();
animateRoute(route7, "#E91E63");
});
document.getElementById('route-eight').addEventListener('click', function() {
removeCurrentAnimation();
animateRoute(route8, "#FFAE00");
});
document.getElementById('route-nine').addEventListener('click', function() {
removeCurrentAnimation();
animateRoute(route9, "#009688");
});
document.getElementById('route-ten').addEventListener('click', function() {
removeCurrentAnimation();
animateRoute(route10, "#2196F3");
});
body { margin:0; padding:0; }
#map { position:absolute; top:0; bottom:0; width:100%; }
.caption {
font:600 12px 'Helvetica Neue', Arial, Helvetica, sans-serif;
position: absolute;
bottom: 10px;
left: 10px;
color: #ffffff;
background-color: #000;
opacity: 0.8;
border-radius: 5px;
padding: 5px;
max-width: 40%;
min-width: 290
}
.overlay {
position: absolute;
top: 10px;
left: 10px;
}
.overlay button {
font:600 12px/20px 'Helvetica Neue', Arial, Helvetica, sans-serif;
color: #fff;
display: inline-block;
margin: 0;
padding: 5px 10px;
cursor: pointer;
border: solid;
border-radius: 3px;
}
.overlay button:hover {
border-color: lightblue;
}
#route-one {
background-color: #F44336;
}
#route-two {
background-color: #6caf54;
}
#route-three {
background-color: #00BCD4;
}
#route-four {
background-color: #3F51B5;
}
#route-five {
background-color: #FF5722;
}
#route-six {
background-color: #673AB7;
}
#route-seven {
background-color: #E91E63;
}
#route-eight {
background-color: #FFAE00;
}
#route-nine {
background-color: #009688;
}
#route-ten {
background-color: #2196F3;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment