Skip to content

Instantly share code, notes, and snippets.

@awoodruff
Last active August 29, 2015 14:19
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 awoodruff/9180acad6ee2b6b580a0 to your computer and use it in GitHub Desktop.
Save awoodruff/9180acad6ee2b6b580a0 to your computer and use it in GitHub Desktop.
Rat projections!
<!DOCTYPE html>
<meta charset="utf-8">
<title>RAT PROJECTION!</title>
<style>
body{ text-align: center }
</style>
<div id="map"></div>
<select id="projection-menu"></select>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/d3.geo.projection.v0.min.js"></script>
<script src="http://d3js.org/d3.geo.polyhedron.v0.min.js"></script>
<script>
var ratio = window.devicePixelRatio || 1,
width = 960 * ratio,
height = 450 * ratio;
var options = [
{name: "Aitoff", projection: d3.geo.aitoff()},
{name: "Albers", projection: d3.geo.albers().scale(145).parallels([20, 50])},
{name: "August", projection: d3.geo.august().scale(60)},
{name: "Baker", projection: d3.geo.baker().scale(100)},
{name: "Berghaus", projection: d3.geo.berghaus().scale(100)},
{name: "Boggs", projection: d3.geo.boggs()},
{name: "Bonne", projection: d3.geo.bonne().scale(100)},
{name: "Bromley", projection: d3.geo.bromley()},
{name: "Collignon", projection: d3.geo.collignon().scale(93)},
{name: "Craster Parabolic", projection: d3.geo.craster()},
{name: "Eckert I", projection: d3.geo.eckert1().scale(165)},
{name: "Eckert II", projection: d3.geo.eckert2().scale(165)},
{name: "Eckert III", projection: d3.geo.eckert3().scale(180)},
{name: "Eckert IV", projection: d3.geo.eckert4().scale(180)},
{name: "Eckert V", projection: d3.geo.eckert5().scale(170)},
{name: "Eckert VI", projection: d3.geo.eckert6().scale(170)},
{name: "Eisenlohr", projection: d3.geo.eisenlohr().scale(60)},
{name: "Equirectangular (Plate Carrée)", projection: d3.geo.equirectangular()},
{name: "Fahey", projection: d3.geo.fahey().scale(120)},
{name: "Gall Stereographic", projection: d3.geo.cylindricalStereographic().parallel(45).scale(140)},
{name: "Goode Homolosine", projection: d3.geo.homolosine()},
{name: "Ginzburg IV", projection: d3.geo.ginzburg4().scale(120)},
{name: "Ginzburg V", projection: d3.geo.ginzburg5().scale(120)},
{name: "Ginzburg VI", projection: d3.geo.ginzburg6().scale(120)},
{name: "Ginzburg VIII", projection: d3.geo.ginzburg8().scale(120)},
{name: "Ginzburg IX", projection: d3.geo.ginzburg9().scale(120)},
{name: "Gringorten", projection: d3.geo.gringorten().scale(220)},
{name: "Guyou", projection: d3.geo.guyou().scale(150)},
{name: "Hammer", projection: d3.geo.hammer().scale(165)},
{name: "Hammer Retroazimuthal", projection: d3.geo.hammerRetroazimuthal().scale(90)},
{name: "HEALPix", projection: d3.geo.healpix()},
{name: "Hill", projection: d3.geo.hill().scale(120)},
{name: "Kavrayskiy VII", projection: d3.geo.kavrayskiy7()},
{name: "Lagrange", projection: d3.geo.lagrange().scale(120)},
{name: "Lambert cylindrical equal-area", projection: d3.geo.cylindricalEqualArea()},
{name: "Larrivée", projection: d3.geo.larrivee().scale(95)},
{name: "Laskowski", projection: d3.geo.laskowski().scale(120)},
{name: "Loximuthal", projection: d3.geo.loximuthal()},
{name: "Mercator", projection: d3.geo.mercator().scale(100)},
{name: "Miller", projection: d3.geo.miller().scale(100)},
{name: "McBryde–Thomas Flat-Polar Parabolic", projection: d3.geo.mtFlatPolarParabolic()},
{name: "McBryde–Thomas Flat-Polar Quartic", projection: d3.geo.mtFlatPolarQuartic()},
{name: "McBryde–Thomas Flat-Polar Sinusoidal", projection: d3.geo.mtFlatPolarSinusoidal()},
{name: "Mollweide", projection: d3.geo.mollweide().scale(165)},
{name: "Natural Earth", projection: d3.geo.naturalEarth()},
{name: "Nell–Hammer", projection: d3.geo.nellHammer()},
{name: "Orthographic", projection: d3.geo.orthographic().scale(200)},
{name: "Polyconic", projection: d3.geo.polyconic().scale(100)},
{name: "Rectangular Polyconic", projection: d3.geo.rectangularPolyconic().scale(120)},
{name: "Robinson", projection: d3.geo.robinson()},
{name: "Sinusoidal", projection: d3.geo.sinusoidal()},
{name: "Sinu-Mollweide", projection: d3.geo.sinuMollweide()},
{name: "Stereographic", projection: d3.geo.stereographic()},
{name: "Times", projection: d3.geo.times().scale(140)},
{name: "Van der Grinten", projection: d3.geo.vanDerGrinten().scale(75)},
{name: "Van der Grinten II", projection: d3.geo.vanDerGrinten2().scale(75)},
{name: "Van der Grinten III", projection: d3.geo.vanDerGrinten3().scale(75)},
{name: "Van der Grinten IV", projection: d3.geo.vanDerGrinten4().scale(120)},
{name: "Wagner IV", projection: d3.geo.wagner4()},
{name: "Wagner VI", projection: d3.geo.wagner6()},
{name: "Wagner VII", projection: d3.geo.wagner7()},
{name: "Waterman", projection: d3.geo.polyhedron.waterman().scale(70)},
{name: "Winkel Tripel", projection: d3.geo.winkel3()}
];
var menu = d3.select("#projection-menu")
.on("change", change);
menu.selectAll("option")
.data(options)
.enter().append("option")
.text(function(d) { return d.name; });
function change() {
update(options[this.selectedIndex]);
}
var i = 0,
n = options.length - 1;
rando();
var projection = options[i].projection;
options.forEach(function(option) {
option.projection
.translate([width / 2, height / 2])
.scale(option.projection.scale() * ratio)
.clipExtent([[2 * ratio, 2 * ratio], [width - 2 * ratio, height - 2 * ratio]]);
});
var graticule = d3.geo.graticule()(),
rat,
boundaries;
var canvas = d3.select("#map").append("canvas")
.attr("width", width)
.attr("height", height)
.style("width", width / ratio + "px")
.style("height", height / ratio + "px");
var context = canvas.node().getContext("2d");
context.fillStyle = "#f9f9f9";
context.strokeStyle = "#000";
var path = d3.geo.path()
.projection(projection)
.context(context);
function rando() {
var j = Math.floor(Math.random() * n);
i = j + (j >= i);
menu.property("selectedIndex", i = j + (j >= i));
}
function change() {
update(options[this.selectedIndex]);
}
function pathTween(projection0, projection1) {
var t = 0,
projection = d3.geo.projection(function(λ, φ) {
λ *= 180 / Math.PI, φ *= 180 / Math.PI;
var p0 = projection0([λ, φ]), p1 = projection1([λ, φ]);
return [(1 - t) * p0[0] + t * p1[0], (1 - t) * -p0[1] + t * -p1[1]];
})
.scale(1)
.translate([width / 2, height / 2])
.clipExtent(projection0.clipExtent()),
path = d3.geo.path().projection(projection).context(context);
return function() {
return function(u) {
t = u;
redraw(path);
};
};
}
function update(option) {
canvas.transition()
.duration(750)
.ease( d3.ease("quad") )
.tween("path", pathTween(projection, projection = option.projection));
path.projection(projection);
}
function redraw(path) {
context.clearRect(0, 0, width, height);
context.lineWidth = .5 * ratio;
context.strokeStyle = "#999";
context.beginPath(), path(graticule), context.stroke();
context.beginPath(), path({type: "Sphere"}), context.stroke();
context.lineWidth = 2 * ratio;
if (rat) {
context.fillStyle = "#000";
context.beginPath(), path(rat), context.fill();
}
}
d3.json("/awoodruff/raw/9180acad6ee2b6b580a0/WorldRat.json", function(error, data) {
rat = data;
redraw(path)
});
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"GeometryCollection","geometries":[{"type":"Polygon","coordinates":[[[-63.034566872829544,65.54265805061306],[-67.41760122820546,59.50864962180998],[-67.4655847916294,59.52609819032784],[-67.56790624090138,58.94738373232667],[-67.6420577229872,58.359823314192],[-67.68695781266223,57.76930687140549],[-67.70249585127647,57.17728976302931],[-67.68863354451042,56.58523104659548],[-67.64540505675365,55.9945898821814],[-67.57291692690472,55.40682193623229],[-67.47134780580046,54.8233757939945],[-67.34094801592158,54.24568938939967],[-67.18203893445951,53.67518646120129],[-66.99501220126552,53.113273044094115],[-66.78032875363334,52.56133400346846],[-66.53851769029478,52.02072962233456],[-66.27017496742792,51.49279224883418],[-65.97596192989175,50.97882301259739],[-65.65660368130625,50.48008861803993],[-65.40105464894543,50.116776599614354],[-64.95746940900233,49.52383953956968],[-64.53775018760206,49.006099390108204],[-64.09558610972005,48.5073910430678],[-63.6318391503126,48.02868670339927],[-63.14741335899657,47.57091957932306],[-62.786986598809335,47.25533306102335],[-62.062053217875075,46.67793462325881],[-61.51953294570137,46.29077723735776],[-60.96045166832556,45.927945027562316],[-60.385899284461345,45.5901453156427],[-59.79699585290757,45.27803662386788],[-59.19488940905461,44.992227391253095],[-58.58075372685124,44.733274787439655],[-57.955786030595846,44.50168362652391],[-57.32120466101202,44.297905382949125],[-56.678246700160344,44.12233731138036],[-56.02816555981212,43.97532167227763],[-55.37222853799267,43.85714506467849],[-54.71171434845087,43.768037867488204],[-54.047910627877,43.70817379036839],[-53.38211142572396,43.677669535099994],[-52.90306215536299,43.67391499675557],[-52.23686661952229,43.69397977193722],[-51.572206134450596,43.74343203944147],[-50.91037641981677,43.822175394747376],[-50.252667676855935,43.93005633194241],[-49.600362073191945,44.06686454297386],[-48.954731243320566,44.232333327633455],[-48.1688553505432,44.47562319007153],[-47.20632908772802,45.04997584035203],[-46.48565000681816,45.469977417842244],[-45.033321473762044,46.29083451861413],[-43.56674268293955,47.08595161572987],[-42.08636978491489,47.85508140361384],[-40.59266322063894,48.597984659532756],[-39.08608757823754,49.31443031800188],[-37.567111448511184,50.00419554265284],[-36.03620727918849,50.66706579554301],[-34.493851227981054,51.302834903883536],[-32.94052301448346,51.9113051241643],[-31.37670577096617,52.49228720365903],[-29.8028858921067,53.045600439288876],[-28.219552883706115,53.57107273382553],[-26.627199210437993,54.06854064941962],[-25.026320142676354,54.537849458434266],[-23.417413602452086,54.97885319157058],[-21.800980008584247,55.39141468326818],[-20.177522121033974,55.77540561436774],[-18.547544884530964,56.13070655202267],[-16.911555271521024,56.45720698684613],[-15.270062124481399,56.7548053672823],[-13.623575997655735,57.02340913119258],[-11.972608998256021,57.262934734645626],[-10.317674627181987,57.47330767790061],[-8.659287619306156,57.65446252858055],[-6.9979637833761785,57.80634294202241],[-5.334219841582581,57.92890167880313],[-3.668573268842124,58.02210061943157],[-2.0015421318477706,58.08591077620554],[-0.33364492793390355,58.12031230222772],[1.3345995761918061,58.12529449757784],[3.0026725058009447,58.10085581264201],[4.6700550395298706,58.04700384859382],[6.3362285707490855,57.96375535503023],[8.000674868865701,57.851136224762115],[9.66287624050858,57.70918148576084],[11.32231569054693,57.537935290263476],[12.97847708289197,57.337450901039745],[14.630845301029694,57.107790674826276],[16.278906408239266,56.84902604293143],[17.922147807441547,56.56123748901808],[19.560058400633693,56.244514524070325],[21.192128747855122,55.89895565855369],[22.817851225639004,55.52466837177491],[24.436720184899286,55.121769078452246],[26.048232108201944,54.69038309250766],[27.651885766375074,54.23064458808983],[29.247182374405668,53.74269655784258],[31.080675717015197,53.143540650585635],[32.36918147942714,52.25111597463581],[33.64070619516059,51.33465877471224],[34.894801681583374,50.394492080478415],[36.131025899457654,49.43094727863763],[37.34894310874779,48.44436399612772],[38.548124022209834,47.435089980411135],[39.72814595670468,46.40348097690054],[40.888592982183354,45.3499006035683],[42.029056068293244,44.27472022277942],[42.59166773426642,43.7291481657773],[43.14913322855176,43.17831881039439],[43.70140342668998,42.62228069630606],[44.248429662036756,42.06108282218963],[44.79016373005146,41.49477464140557],[45.32655789254477,40.92340605764059],[45.857564881885935,40.34702742050928],[46.383137905167416,39.765689521117395],[46.9032306483287,39.179443587586434],[47.41779728023727,38.58834128053911],[47.92679245672798,37.99243468854684],[48.43017132459761,37.39177632354006],[48.927889525558896,36.786419116180184],[49.41990320014821,36.176416411196215],[49.906168991590675,35.56182196268304],[50.38664404962174,34.94268992936486],[50.86128603426158,34.31907486982283],[51.330053119548154,33.6910317376873],[51.79290399722106,33.05861587679516],[52.24979788036296,32.421883016312734],[52.70069450699282,31.780889265825067],[53.145554143614845,31.135691110391406],[53.58433758871877,30.48634540556742],[54.01700617623533,29.832909372395875],[54.44352177894291,29.175440592363316],[54.86384681182716,28.51399700232605],[55.2779442353941,27.848636889405384],[55.68577755893301,27.179418885850737],[56.08731084373238,26.50640196387269],[56.48250870624702,25.82964543044693],[56.87133632121578,25.149208922087666],[57.25375942473079,24.465152399592114],[57.62974431725655,23.777536142757867],[57.99925786659958,23.086420745069006],[58.36226751082819,22.39186710835878],[58.71874126114204,21.693936437440982],[59.068647704690136,20.99269023471743],[59.411956007340336,20.288190294758635],[59.74863591639536,19.580498698857525],[60.07865776325934,18.869677809558993],[60.40199246605181,18.15579026516525],[60.718611532170826,17.438898974214794],[61.02848706080334,16.71906710994017],[61.33159174538446,15.996358104699652],[61.6278988760028,15.270835644388967],[61.98868400790792,14.360073570137615],[62.317655377953656,13.70785421459658],[62.62012540221758,13.042930057663114],[62.895604486553566,12.366377381114376],[63.143646725792394,11.679291289270395],[63.36385062550926,10.982783936400665],[63.55585975190348,10.277982726531377],[63.64119235429939,9.922827960203392],[63.771107282383014,9.308643778842566],[64.66262972999795,9.235232279222146],[65.55351831710908,9.15449165603519],[66.44371279269626,9.066427369790347],[67.33315295268181,8.971045376297582],[68.22177864400271,8.868352126265393],[69.10952976867861,8.758354564863964],[69.99634628787646,8.641060131256324],[70.88216822597087,8.516476758094882],[71.76693567460006,8.38461287098437],[72.65058879671767,8.245477387912956],[73.53306783063954,8.099079718648738],[74.4143130940854,7.945429764102812],[75.29426498821505,7.784537915660621],[76.1728640016596,7.61641505447858],[77.0500507145453,7.441072550748174],[77.92576580251307,7.2585222629274995],[78.79995004072987,7.068776536938685],[79.67254430789444,6.871848205332924],[80.54348959023599,6.667750586423267],[81.41272698550478,6.456497483383373],[82.28019770695596,6.2381031833139104],[83.14584308732492,6.0125824562765615],[84.00960458279593,5.779950554295226],[84.8714237769604,5.540223210324427],[85.73124238476822,5.293416637184976],[86.58900225646971,5.039547526467743],[87.44464538154767,4.77863304740481],[88.29811389264108,4.51069084570878],[89.14935006945865,4.2357390423781],[89.99829634268241,3.9537962324731097],[90.84489529786111,3.6648814838571298],[91.68908967929355,3.3690143359079343],[92.5308223939,3.0662147981951193],[93.37003651508394,2.7565033491285362],[94.20667528658237,2.4399009345715967],[95.04068212630335,2.116428966425417],[95.87200063015348,1.7861093211814705],[96.70057457585199,1.4489643384406463],[97.52634792673331,1.105016819403545],[98.34926483553693,0.7542900253276912],[99.16926964818413,0.3968076759550172],[99.9863069075422,0.03259394790723036],[100.80032135717437,-0.3383265269491176],[101.61125794507768,-0.7159286631685404],[102.41906182740547,-1.1001869234230526],[103.22367837217695,-1.4910753202292426],[104.02505316297163,-1.8885674177060991],[104.82313200260955,-2.2926363333623954],[105.61786091681728,-2.7032547399152236],[106.40918615787706,-3.120394867137861],[107.19705420826278,-3.5440285037381045],[107.9814117842588,-3.9741269992657067],[108.76220583956399,-4.410661266050909],[109.53938356887886,-4.85360178117071],[110.31289241147721,-5.302918588446062],[111.08268005475992,-5.758581300467483],[111.84869443779434,-6.22055910065086],[112.61088375483371,-6.688820745320356],[113.36919645882199,-7.163334565822595],[114.12358126487925,-7.64406847066806],[114.8739871537698,-8.130989947700868],[115.6203633753538,-8.624066066298667],[116.36265945201887,-9.12326347959862],[117.10082518209344,-9.628548426753525],[117.83481064324235,-10.139886735214532],[118.56456619584321,-10.657243823042506],[119.29004248634328,-11.180584701246858],[120.01119045059806,-11.70987397615147],[120.72796131718792,-12.24507585178884],[121.4403066107177,-12.786154132320803],[122.1481781550956,-13.333072224486216],[122.85152807678935,-13.88579314007643],[123.55030880806635,-14.444279498436003],[124.24447309020877,-15.008493528991266],[124.93397397671072,-15.578397073804524],[125.61876483645267,-16.15395159015503],[126.29879935685574,-16.73511815314515],[126.9740315470134,-17.321857458333227],[127.64441574080172,-17.914129824391807],[128.3099065999678,-18.511895195790828],[128.97045911719704,-19.115113145507166],[129.62602861915525,-19.723742877758013],[130.2765707695114,-20.337743230760907],[130.9220415719352,-20.95707267951667],[131.56239737307305,-21.581689338617764],[132.19759486550038,-22.211550965081813],[132.86679218191057,-22.8864782173531],[133.21294076355275,-23.411855305102506],[133.49010907253887,-23.847373042750405],[134.02568238873334,-24.73003886762001],[134.535877366077,-25.627612720016202],[135.02027935869182,-26.539365123337802],[135.47849468318555,-27.464555077785576],[135.91015093860574,-28.402430662588188],[136.3148973090979,-29.352229647103115],[136.6924048490198,-30.31318011029782],[137.04236675028426,-31.284501068105044],[137.3644985917067,-32.265403108144596],[137.65853857016077,-33.25508903129543],[137.92424771335038,-34.25275449959503],[138.16141007402825,-35.25758868994177],[138.36983290550063,-36.26877495306701],[138.54934681827513,-37.285491477242886],[138.69980591772855,-38.30691195618573],[138.82108792267843,-39.33220626061126],[138.9130942647622,-40.36054111289849],[138.97575016854626,-41.39108076431074],[139.00900471229818,-42.42298767422659],[139.0128308693711,-43.455423190825115],[138.98722553016898,-44.48754823267643],[138.93220950467366,-45.518523970679325],[138.84782750553325,-46.54751250979592],[138.73414811172142,-47.57367757002487],[138.59126371280365,-48.59618516606406],[138.41929043384835,-49.61420428510729],[138.21836804105203,-50.62690756222503],[137.98865982814698,-51.633471952781406],[137.7303524836891,-52.63307940133865],[137.44365593933253,-53.624917506508154],[137.12880319921453,-54.60818018120506],[136.78605015058702,-55.58206830777232],[136.41567535585284,-56.545790387439354],[136.01797982617222,-57.498563183589624],[135.5932867768239,-58.43961235831284],[135.14194136452318,-59.368173101725574],[134.66431040690418,-60.28349075354714],[134.1607820844015,-61.184821416428235],[133.63176562476633,-62.071432560530866],[133.07769097047913,-62.94260361887069],[132.49900842932834,-63.797626572936394],[131.89618830843347,-64.63580652811089],[131.26972053201837,-65.45646227842605],[130.62011424323907,-66.25892686019324],[129.94789739039413,-67.04254809405762],[129.25361629784857,-67.80668911503858],[128.5378352220256,-68.55072889012189],[127.80113589282462,-69.27406272298663],[127.04411704083589,-69.97610274545389],[126.26739391074148,-70.6562783952595],[125.47159776129251,-71.31403687976137],[124.65737535227231,-71.9488436252056],[122.97631313383397,-73.14755728993953],[121.22967107945169,-74.24852330492104],[119.42312616212246,-75.24816328709073],[117.56255005239689,-76.1432281854079],[115.65399003415189,-76.93080884098327],[113.703649349579,-77.60834544249019],[111.71786703727787,-78.17363584611695],[109.70309732897601,-78.6248427330217],[107.66588867184993,-78.96049958102446],[105.61286244462252,-79.17951543112906],[104.58250157285744,-79.24504564818557],[103.03450492105827,-79.28821067813931],[101.9053250377844,-79.2779397491505],[100.8736651415253,-79.23774529850533],[98.81587747610234,-79.06923845498312],[96.77103673439899,-78.7837371881717],[94.74578910110125,-78.38216944033496],[92.74671707895902,-77.86584039547176],[92.45700708420424,-77.92767082692222],[91.9729213940135,-77.88657085659497],[91.61234291212901,-77.72691692442066],[91.31434879638982,-77.46864240643322],[91.10508257298375,-77.1344061615431],[91.00290352051024,-76.75353129903232],[91.01677597951561,-76.35943261273911],[91.14548289578221,-75.9866850448571],[91.37773259454798,-75.6679903679638],[91.69314941817032,-75.43130820337825],[92.06406131692421,-75.29740307644249],[92.45792756457939,-75.27802270970477],[92.84019361117595,-75.37486737541411],[93.24202664813123,-75.63694733419669],[95.25596014218695,-75.93660172778334],[96.26857967958972,-76.04265991951377],[97.28384107620866,-76.1194125357431],[98.30089639661708,-76.1667954735093],[99.46207952799267,-76.18493691967893],[101.05243536895841,-76.14765364745244],[102.06873301739546,-76.08612513906792],[103.08282829920523,-75.99525475349697],[104.09387425288764,-75.87511838471102],[106.10344376894659,-75.54747340275424],[108.09072948372545,-75.1042845469475],[110.04909374460021,-74.54703209445972],[111.97199549832533,-73.87757730166476],[113.85301213854075,-73.0981561874346],[115.68586095765966,-72.21137206470252],[117.4644201314859,-71.22018684524375],[119.18274916647158,-70.12791114671302],[120.83510874131866,-68.93819323498508],[121.6348161836778,-68.30802288166939],[122.41597987665466,-67.65500683872904],[123.17794740071315,-66.97969049815748],[123.92008236875165,-66.28263787691776],[124.64176495760648,-65.56443114588103],[125.34239242572164,-64.8256701436041],[126.02137961655194,-64.06697187535048],[126.67815944728034,-63.288969997774814],[127.31218338243741,-62.492314289698584],[127.92292189203488,-61.67767010942276],[128.5098648938215,-60.84571783902709],[129.07252217929874,-59.99715231612265],[129.61042382313792,-59.13268225353062],[130.12312057565703,-58.25302964737347],[130.61018423802807,-57.358929174070624],[131.07120801990607,-56.45112757674576],[131.50580687917386,-55.530383041553876],[131.9136178435267,-54.59746456445299],[132.29430031362222,-53.6531513089468],[132.64753634754538,-52.69823195533576],[132.97303092635013,-51.733504042019604],[133.2705122004562,-50.759773299401786],[133.53973171669452,-49.777852976952374],[133.78046462581403,-48.78856316399077],[133.99250987027074,-47.792730104755435],[134.17569035215206,-46.791185508334365],[134.32985308108414,-45.784765854029615],[134.4548693020099,-44.77431169273967],[134.55063460272288,-43.760666944939885],[134.6170690010714,-42.74467819584925],[134.65411701175822,-41.727193988371425],[134.66174769268252,-40.70906411440086],[134.63995467078132,-39.691138905085836],[134.58875614735302,-38.67426852064074],[134.50819488285504,-37.65930224030177],[134.39833816119096,-36.647087753017615],[134.25927773351634,-35.63847044946897],[134.0911297416086,-34.634292716007394],[133.8940346208666,-33.63539323110291],[133.66815698302082,-32.642606264889196],[133.41368547865125,-31.656760982389642],[133.1308326396279,-30.678680751008244],[132.81983470160787,-29.70918245286117],[132.48095140673252,-28.749075802526306],[132.1144657866945,-27.799162670778117],[131.72068392635128,-26.860236414873214],[131.38086347439366,-26.105990416972702],[130.78534214160425,-25.563580750136907],[130.07499087633755,-24.92575518479231],[129.35974595711548,-24.293422141689007],[128.63964985165615,-23.666619165646466],[127.91474531571737,-23.04538347313604],[127.1850753905577,-22.429751950071534],[126.45068340038085,-21.81976114961833],[125.71161294976389,-21.215447290023747],[124.9679079210672,-20.616846252466416],[124.21961247183026,-20.02399357892557],[123.46677103214847,-19.43692447007095],[122.70942830203637,-18.855673783172847],[121.94762924877216,-18.280276030032383],[121.18141910422912,-17.710765374932066],[120.41084336218955,-17.147175632607514],[119.63594777564253,-16.589540266240192],[118.85677835406943,-16.03789238546966],[118.07338136070985,-15.492264744428041],[117.2858033098164,-14.952689739795744],[116.49409096389184,-14.419199408876807],[115.6982913309131,-13.891825427698052],[114.89845166154032,-13.370599109126942],[114.09461944631119,-12.855551401013372],[113.2868424128203,-12.346712884351973],[112.47516852288709,-11.844113771465743],[111.65964596970639,-11.347783904213145],[110.84032317498821,-10.857752752215106],[110.0172487860819,-10.374049411106341],[109.19047167308787,-9.89670260080743],[108.36004092595618,-9.425740663819056],[107.52600585157182,-8.961191563540012],[106.68841597082695,-8.503082882606009],[105.84732101568017,-8.051441821253036],[105.00277092620462,-7.606295195701136],[104.15481584762227,-7.167669436562846],[103.30350612732616,-6.735590587274032],[102.44889231189177,-6.310084302547239],[101.59102514407545,-5.891175846848284],[100.72995555980117,-5.478890092896904],[99.8657346851374,-5.073251520188933],[98.99841383325986,-4.674284213543615],[98.12804450140612,-4.282011861673311],[97.2546783678174,-3.896457755776794],[96.37836728867023,-3.5176447881567583],[95.49916329499729,-3.145595450860071],[94.61711858959842,-2.780331834342576],[93.73228554394115,-2.421875626157828],[92.84471669505069,-2.070248109668512],[91.95446474239048,-1.7254701627837221],[91.06158254473388,-1.387562256718411],[90.16612311702517,-1.0565444547787592],[89.26813962723173,-0.7324364111703972],[88.36768539318723,-0.4152573698315223],[87.46481387942617,-0.1050261632902334],[86.5595786940089,0.19823878845329546],[85.65203358533927,0.4945194790209939],[84.7422324389729,0.7837983167257789],[83.83022927441777,1.066058125615939],[82.9160782419267,1.341282146495189],[81.99983361928264,1.6094540379176578],[81.08154980857518,1.8705578771582054],[80.1612813329715,2.1245781611577286],[79.2390828334776,2.3714998074437403],[78.31500906569528,2.6113081550258244],[77.38911489657062,2.8439889652663055],[76.46145530113574,3.0695284227254547],[75.53208535924546,3.287913135981853],[74.60106025230607,3.499130138427745],[73.66843526000008,3.7031668890381866],[72.73426575700307,3.900011273117002],[71.79860720969538,4.089651603014488],[70.86151517287044,4.272076618822496],[69.92304528643467,4.4472754890429655],[68.98325327210449,4.615237811230486],[68.04219493009782,4.7759536126098965],[67.09992613582097,4.929413350669336],[66.15650283655049,5.0756079137258325],[65.21198104811248,5.21452862146657],[64.26641685155533,5.346167225464683],[64.07179507795001,6.903141414306901],[64.09913672293044,6.172792549015128],[64.09706342125219,5.4419350170682605],[64.06557853229856,4.711753031292972],[64.0047330712232,3.983429709923996],[63.914625626290444,3.2581451595916633],[63.85864243924766,2.89700991268586],[63.75443003008138,2.3239903456971547],[63.57613854409419,1.5213507084783942],[63.38729227491643,0.815309550187294],[63.17018446489317,0.11744048695982201],[62.925166895106315,-0.5711257197909276],[62.652636568988555,-1.2492733821251818],[62.353035069055636,-1.9159036933331208],[62.026847841408426,-2.5699365083378893],[61.67460340916119,-3.2103120938610346],[61.29687251607231,-3.835992845514454],[60.894267201765274,-4.445964969037334],[60.46743981003658,-5.039240122952663],[60.01708193185988,-5.614857019983447],[59.54392328479622,-6.1718829846316225],[59.04873053062897,-6.709415464397864],[58.532306033137274,-7.226583492193129],[57.99548655801999,-7.722549097571289],[57.43914191708103,-8.19650866449831],[56.8641735588663,-8.647694233455468],[56.27151310804288,-9.075374745769352],[55.662120855880744,-9.47885722814982],[55.03698420428759,-9.857487915519869],[54.39711606591595,-10.210653310313944],[53.743553222934,-10.537781176532349],[53.07735464712181,-10.838341466938687],[52.39959978401299,-11.11184718189827],[51.71138680386224,-11.357855158466748],[51.01383082227409,-11.575966788449534],[50.30806209337385,-11.765828664269236],[49.59522417845045,-11.927133151593807],[48.87647209303748,-12.059618887798536],[48.152970435433815,-12.163071205453434],[47.425891499699105,-12.237322480149885],[46.39901234544419,-12.550332909872452],[45.87564958028679,-13.013664069215395],[45.35769682415241,-13.514496891807255],[44.88426993500349,-14.014032540128596],[44.432562622465696,-14.533291037519803],[44.00339570969828,-15.071328809705449],[43.59754906041201,-15.627168157517644],[43.21576016173515,-16.199799033527825],[43.07391923008322,-16.759609115103387],[42.79955077056172,-17.748910316333877],[42.49695217533201,-18.729944978566152],[42.166371862453104,-19.701907722231397],[41.80808122155054,-20.664000615344094],[41.42237439102058,-21.615433828564335],[41.0095680165565,-22.55542628360763],[40.570000991199436,-23.483206294469483],[40.10403417712388,-24.398012200941764],[39.612050109388235,-25.29909299389567],[39.094452681893245,-26.185708931823115],[38.55166681580539,-27.05713214812596],[37.98413811071873,-27.91264724865829],[37.39233247883948,-28.751551899028186],[36.776735762495946,-29.573157401178378],[36.047793492832284,-29.625440034395808],[35.319414443837275,-29.685057709826026],[34.59167242310241,-29.7520043863326],[33.864641173668076,-29.826273280122336],[33.13839436655178,-29.907856865431995],[32.41300559328192,-29.99674687529142],[31.68854835844178,-30.09293430236079],[30.96509607221998,-30.1964093998439],[30.2427220429729,-30.307161682474884],[29.521499469795742,-30.425179927582064],[28.801501435104626,-30.55045217622353],[28.08280089723246,-30.682965734400568],[27.365470683034232,-30.822707174342668],[26.649583480508966,-30.96966233586909],[25.935211831433207,-31.123816327822965],[25.22242812401032,-31.285153529580953],[24.51130458553564,-31.453657592635693],[23.80191327507771,-31.6293114422524],[23.09432607617532,-31.812097279199122],[22.38861468955554,-32.0019965815506],[21.684850625865693,-32.19899010656485],[20.98310519842937,-32.403057892632944],[20.28344951601838,-32.6141792613023],[19.585954475648748,-32.832332819371345],[18.890690755394928,-33.05749646105767],[18.197728807229453,-33.2896473702383],[17.507138849883233,-33.52876202276116],[16.818990861730015,-33.77481618882916],[16.13335457369601,-34.027784935455145],[15.450299462193414,-34.28764262898892],[14.76989474208034,-34.554362937714075],[14.092209359647427,-34.827918834516595],[13.417311985631386,-35.10828259962341],[12.745271008256339,-35.395425823411756],[12.076154526304151,-35.68931940928684],[11.410030342213759,-35.98993357663164],[10.746965955210328,-36.29723786382357],[10.087028554466372,-36.61120113132148],[9.287054673436558,-37.00280093876199],[9.01985327080564,-37.05865633800204],[8.60741142493032,-37.087814021479744],[8.28422703150602,-37.063524960431096],[8.016309728629494,-37.011211157170976],[7.755569792019287,-36.930395931818964],[7.292839769552359,-36.70329566920651],[7.069398298611247,-36.54648264597239],[6.864111443922752,-36.366555653877356],[6.6793590322072305,-36.16560053063472],[6.517282840768075,-35.94594688654763],[6.379761768532433,-35.710141098061854],[6.2683900545607685,-35.46091678841458],[6.184458796527906,-35.201163137588935],[6.128940983429288,-34.93389138894918],[6.102480216022229,-34.66219994083127],[6.105383245760947,-34.38923842777399],[6.137616418723894,-34.11817120778426],[6.198806065752308,-33.85214067891832],[6.288242834280993,-33.594230850436816],[6.404889911641817,-33.34743159084434],[6.547395044511177,-33.114603967272615],[6.714106215162701,-32.89844707801802],[6.903090792794956,-32.701466762734015],[7.112157937920017,-32.52594655301061],[7.476992780326839,-32.29745214128786],[7.726170303111417,-32.185975788050314],[7.985888688371119,-32.10193546707086],[8.253137101564448,-32.046305431677695],[8.746647637670776,-32.01975634339374],[9.039399888850483,-32.04970524703958],[10.30200003673707,-31.831534815990835],[11.559255812145068,-31.584420701398756],[12.810503804302982,-31.308493296910115],[14.055083772541025,-31.00389819995695],[15.292338994676584,-30.670796134929674],[16.52161661354478,-30.30936286836851],[17.74226798148817,-29.919789116217544],[18.95364900262672,-29.502280443190557],[20.15512047272381,-29.057057154300992],[21.34604841647416,-28.584354178615456],[22.525804422028784,-28.084420945288628],[23.69376597258872,-27.557521251949254],[24.849316774883505,-27.003933125502215],[25.99184708436951,-26.423948675423674],[27.120754026970815,-25.817873939624747],[27.67991229454799,-25.50515212039261],[28.356473086567917,-25.11537127862823],[29.112300327041737,-24.972227962843988],[29.674080443618834,-24.83101281673106],[30.227970361534233,-24.66147056328174],[30.772542711043343,-24.46403811148309],[31.30639413369812,-24.239224243133094],[31.828148898790857,-23.987608301714033],[32.33646244860006,-23.709838699429383],[32.830024863305425,-23.406631246250527],[33.307564236639905,-23.078767305280394],[33.76784995358156,-22.72709177918773],[34.20969586163858,-22.35251093289918],[34.63196332755467,-21.95599005816257],[35.03356417155686,-21.53855098599786],[35.41346347158657,-21.101269453446946],[35.77068223028448,-20.645272331408307],[36.104299897859164,-20.17173472070033],[36.413456744335974,-19.68187692383526],[36.69735607507488,-19.17696130031078],[36.95526628384442,-18.658289013519266],[37.1865227381665,-18.127196677660947],[37.390529492067685,-17.585052913299762],[37.5667608218281,-17.033254820439765],[37.714762580766035,-16.47322437820975],[37.834153369570856,-15.906404780434968],[37.92462551916566,-15.334256716538277],[37.985945883567865,-14.75825460735581],[38.01383151806391,-14.297484170559642],[37.119551972034515,-14.402230566542414],[35.87266281270979,-14.52282077500098],[34.62328541194688,-14.614093358399941],[33.37210900802853,-14.675997964813291],[32.11982383168515,-14.708500443611342],[30.925840468890783,-14.712095673118426],[29.673382264839006,-14.687135282082863],[28.421855747928134,-14.632766619359472],[27.171951342033992,-14.549019678258276],[25.924358576169652,-14.43594065906916],[24.679765704097008,-14.293591943574256],[23.43885932463934,-14.12205206063453],[22.202324002910416,-13.921415642868169],[20.970841892662236,-13.6917933744445],[19.936210410639887,-13.475596403080488],[19.454188758113105,-13.958178770482903],[18.702652623355732,-14.676103360395302],[17.931090458080405,-15.372461101619535],[17.140120935571815,-16.046693623164856],[16.330378290806436,-16.698260295037755],[15.50251181189617,-17.326638661743686],[14.657185319459188,-17.93132486121499],[13.795076634338159,-18.51183402883072],[12.916877034093773,-19.067700686202386],[12.02329069870683,-19.598479114416023],[11.11503414593551,-20.103743711429388],[10.192835656778414,-20.583089333338478],[9.25743469150683,-21.03613161924119],[8.309581296731324,-21.462507299433923],[7.350035503981701,-21.86187448669864],[6.379566720278774,-22.233912950442743],[5.398953111188973,-22.578324373474857],[4.408980976856981,-22.89483259120874],[3.41044412151399,-23.183183813104336],[2.4041432169701125,-23.4431468261688],[1.3908851606004191,-23.674513180353244],[0.37148242833637823,-23.87709735569763],[-0.1388442846422322,-24.323390928654305],[-0.5584574534634044,-24.645801307412],[-0.9953388089985538,-24.944395254043002],[-1.4481381700755378,-25.218249964404322],[-1.9154561609503276,-25.466519090925658],[-2.39584853607505,-25.68843535824493],[-2.887830643537029,-25.883312934471917],[-3.3898820133734944,-26.05054955075036],[-3.8924159071366375,-26.187674101706648],[-4.336706229840729,-26.284754613905022],[-4.858827149805052,-26.370855767871774],[-5.384925970406414,-26.427809211496935],[-6.1448964776974435,-26.458280914456395],[-6.715144476670275,-26.441248702451674],[-7.480129870669657,-26.36431857854228],[-8.001814848555625,-26.27561430791792],[-8.341153338212791,-26.201700795561067],[-8.844541928552815,-26.067747878567275],[-9.347637886983307,-25.903680452215212],[-9.840839083220487,-25.711909120131793],[-10.322621279709495,-25.493026551330274],[-11.020637662625177,-25.11537127862823],[-11.02713689748606,-24.764010889908775],[-11.004271248008308,-24.413335078241005],[-10.952200457227548,-24.06579372018075],[-10.87128829990445,-23.723814794496434],[-10.762100041137842,-23.389787419926108],[-10.6253984873332,-23.066045164416778],[-10.462138657116157,-22.754849742451086],[-10.27346110942284,-22.45837521435243],[-10.060683975373934,-22.178692797956955],[-9.825293749603532,-21.91775639875857],[-9.568934905372657,-21.677388959617076],[-9.293398406019719,-21.459269725391323],[-9.000609193008017,-21.264922511470274],[-8.543610411282998,-21.025376718845735],[-8.175673176095358,-20.880815004471742],[-7.838481386738124,-20.781829854045327],[-7.494201163599996,-20.71134942576265],[-7.145237702646341,-20.6698661070173],[-6.810506324661162,-20.657585156078028],[-6.113866180746356,-20.583839732637614],[-5.420933653185784,-20.480930112870453],[-4.7329291278660435,-20.34903754017688],[-4.051064311525295,-20.18839430244634],[-3.3765400977068225,-19.999283322953772],[-2.7105444517579826,-19.782037662078437],[-2.0542503185967576,-19.537039930720994],[-1.4088135569336373,-19.264721616452903],[-0.7753709035837346,-18.965562323585175],[-0.1550379714580572,-18.64008892849364],[0.45109271524347605,-18.288874651689923],[1.0419536451743738,-17.912538048270505],[1.6165041999321943,-17.511741918524308],[2.173732486785127,-17.087192140614945],[2.7126571208082737,-16.639636427395658],[3.232328953287208,-16.16986300954403],[3.7318327433512195,-15.678699247338727],[4.210288769885665,-15.167010173520453],[4.666854380887401,-14.635696969804712],[5.100725477536173,-14.085695379729941],[5.51113793036518,-13.51797406063497],[5.897368925037938,-12.933532877669336],[6.258738235361761,-12.333401142841012],[6.5946094212959565,-11.718635802201845],[6.904390949843105,-11.09031957436514],[7.058161612161655,-10.751393772633207],[5.853362510334534,-10.775642273445044],[4.47632809625469,-10.796457533420153],[3.099202122863062,-10.809915097021701],[1.7220239031274787,-10.816014580075091],[0.34483275150677173,-10.814755808457733],[-1.0323320171702903,-10.806138818104046],[-2.4094310888283985,-10.790163855004039],[-3.7864251512681903,-10.766831375196887],[-5.163274895287202,-10.736142044757287],[-6.539941015803208,-10.6980967397771],[-7.916384212976197,-10.652696546340053],[-9.292565193329779,-10.599942760490137],[-10.668444670872645,-10.539836888195623],[-12.043983368221063,-10.472380645305634],[-13.419142017719594,-10.39757595750092],[-14.793881362561649,-10.315424960239284],[-16.16816215791107,-10.225929998694198],[-17.541945172021485,-10.129093627688349],[-18.915191187357152,-10.024918611620308],[-20.28786100171186,-9.913407924385638],[-21.659915429328294,-9.794564749292704],[-23.031315302016594,-9.668392478970418],[-24.40202147027287,-9.534894715272856],[-25.771994804396172,-9.394075269175175],[-27.141196195605744,-9.245938160665844],[-28.50958655715806,-9.0904876186313],[-29.877126825461744,-8.927728080735449],[-31.243777961193075,-8.757664193292669],[-32.60950095041085,-8.580300811135828],[-33.97425680566943,-8.395642997477012],[-35.33800656713231,-8.2036960237632],[-36.70071130368399,-8.004465369525803],[-37.38165962977132,-7.902120431424123],[-38.062332114041226,-7.797956722224626],[-38.74272389867656,-7.691974985321735],[-39.42283012786385,-7.58417597708484],[-40.10264594782757,-7.4745604668529495],[-40.782166506864485,-7.363129236928955],[-41.46138695537883,-7.249883082574229],[-42.1403024459168,-7.134822812002824],[-42.81890813320041,-7.017949246375849],[-43.49719917416354,-6.89926321979533],[-44.175170727985005,-6.778765579298636],[-44.85281795612377,-6.6564571848521155],[-45.5301360223537,-6.532338909345185],[-46.20712009279765,-6.406411638584075],[-46.88376533596221,-6.278676271285121],[-47.56006692277214,-6.1491337190689705],[-48.236020026604706,-6.017784906453812],[-48.911619823324145,-5.8846307708482755],[-49.58686149131648,-5.749672262545857],[-50.261740211523374,-5.612910344716852],[-50.93625116747671,-5.474345993402721],[-51.61038954533325,-5.333980197507856],[-52.2841505339087,-5.191813958793659],[-52.95752932471203,-5.047848291871048],[-53.630521111979874,-4.9020842241924925],[-54.30312109271108,-4.7545227960457055],[-54.97532446670033,-4.60516506054563],[-55.647126436573046,-4.454012083627049],[-56.31852220781951,-4.301064944037421],[-56.98950698882862,-4.146324733328129],[-57.660075990922735,-3.9897925558476004],[-58.330224428391375,-3.8314695287334075],[-58.999947518525516,-3.6713567819036257],[-59.66924048165191,-3.5094554580494446],[-60.338098541166914,-3.3457667126266415],[-61.0065169235707,-3.180291713847623],[-61.67449085850143,-3.0130316426725585],[-62.342015578769065,-2.8439876928017043],[-63.00908632038943,-2.6731610706663105],[-63.6756983226187,-2.500552995420094],[-64.3418468279865,-2.326164698930654],[-65.2570354869855,-2.0834763121189326],[-65.84004760546554,-3.034861555869668],[-66.41678247406128,-3.9900651486536276],[-66.98721508608133,-4.949045673724584],[-67.5513207080943,-5.911761550572351],[-68.10907488100088,-6.878171036725462],[-68.66045342109527,-7.848232229560665],[-69.20543242111307,-8.821903068120037],[-69.74398825126781,-9.799141334935086],[-70.27609756027601,-10.779904657856775],[-70.80173727636912,-11.764150511892694],[-71.32088460829448,-12.751836221051349],[-71.83351704630292,-13.742918960192185],[-72.33961236312513,-14.737355756882607],[-72.83914861493565,-15.735103493261192],[-73.33210414230359,-16.73611890790704],[-73.81845757113234,-17.74035859771618],[-74.29818781358631,-18.747779019782683],[-74.77127406900513,-19.758336493286947],[-75.00531928011645,-20.264777936827272],[-75.4108816550164,-21.15289472525029],[-75.62794195402142,-21.482675186285803],[-75.80613046059324,-21.687970493096657],[-76.00544660720595,-21.872822814078233],[-76.22355921933729,-22.035070141643757],[-76.45791728156172,-22.17281485313282],[-76.70577977388143,-22.28444590514789],[-77.06329363656295,-22.392956533633992],[-77.46686752991928,-22.449475079532476],[-77.85312897344835,-22.44216090830838],[-78.11359310272348,-22.403257291100772],[-78.46517603148584,-22.304675915356768],[-78.69257185384521,-22.209845676290115],[-78.93136516697245,-22.079941632940233],[-79.15473380037776,-21.925010162659134],[-79.36006526492685,-21.746863322835964],[-79.54495803175706,-21.547584694662476],[-79.70724962023274,-21.329505013850792],[-79.84504189002371,-21.09517491066572],[-79.95672324149689,-20.847335078100514],[-80.04098746476603,-20.588884217104237],[-80.09684901694459,-20.322845133770443],[-80.12365454892131,-20.05232938500842],[-80.12109054684277,-19.780500886196705],[-80.08918699892808,-19.51053890646017],[-80.02831704473152,-19.245600884370162],[-79.9391926109526,-18.98878549897347],[-79.82285608483829,-18.743096428063666],[-79.62101299298041,-18.428692094802898],[-79.13725169380524,-17.50470827641533],[-78.65510912027116,-16.57987876239241],[-78.17458675079018,-15.654206388574323],[-77.69568605880659,-14.72769399338506],[-77.21840851279148,-13.800344417824931],[-76.74275557623923,-12.872160505461068],[-76.26872870766243,-11.94314510241918],[-75.79632936058795,-11.013301057374406],[-75.32555898355139,-10.08263122154284],[-74.85641902009422,-9.151138448672839],[-74.38891090875802,-8.218825595035923],[-73.92303608308055,-7.285695519418482],[-73.4587959715916,-6.351751083112674],[-72.8519640164281,-5.124717953555717],[-72.40584357766647,-4.287513073176001],[-71.98587128638201,-3.436890517534721],[-71.5924502327141,-2.573666715648244],[-71.22595802287827,-1.6986701912310878],[-70.88674641673833,-0.8127407674774076],[-70.57514099018692,0.08327123900249944],[-70.29144082265742,0.9885058343181186],[-70.03591821006677,1.9020941727218315],[-69.80881840346518,2.8231593905289287],[-69.7059962398182,3.2862198238738642],[-69.52991414219997,4.17309353970461],[-84.07879911553061,3.6125837333617596],[-84.39468327549474,3.25866867027338],[-84.9581460870449,2.6622044907222175],[-85.54261616409741,2.0863098940139935],[-86.14734309283608,1.5317242837193135],[-86.77155045123328,0.9991597043392062],[-87.41443680591482,0.4892999270946916],[-88.07517674113791,0.0027995720188300766],[-88.75292191856039,-0.45971673252421397],[-89.44680216644025,-0.8976551518134102],[-90.15592659686877,-1.3104534072084562],[-90.87938474959998,-1.6975814980701216],[-91.61624776101115,-2.058542382241342],[-92.36556955669028,-2.392872614209125],[-93.12638806612216,-2.7001429401332757],[-93.897726457911,-2.9799588489734106],[-94.67859439395596,-3.2319610790120805],[-95.46798930096747,-3.455826079116889],[-96.26489765769276,-3.6512664241558923],[-97.06829629619796,-3.8180311840284844],[-97.87715371553577,-3.955906245840538],[-98.84681763804633,-4.089817128801712],[-99.13041812606986,-4.107661503955228],[-99.35348905985387,-4.097030496560649],[-99.61029436833985,-4.057487923874987],[-99.86099549709735,-3.9892125581797586],[-100.1023883980186,-3.8930769825276457],[-100.3313879854029,-3.770309843198845],[-100.54506756443112,-3.6224801471716432],[-100.74069623534899,-3.4514772096644037],[-100.91577379532123,-3.259486508026839],[-101.06806269189832,-3.0489617505742785],[-101.19561661971909,-2.8225935173376797],[-101.29680539497417,-2.5832748735099926],[-101.37033578972512,-2.334064395060693],[-101.41526805980982,-2.078147079065502],[-101.43102795510151,-1.8187936383295664],[-101.41741405862649,-1.5593187005342202],[-101.3746003607431,-1.3030384461354743],[-101.30313403548439,-1.0532282264182413],[-101.19861741838145,-0.8021128432187083],[-101.01534249377818,-0.4909236290337162],[-100.85450892676323,-0.28685220711884085],[-100.6716696828006,-0.1022380354301049],[-99.64734721464765,0.3767691377134952],[-98.63582430378904,0.8822449447448548],[-97.63778476075373,1.413847673503824],[-96.65390328103388,1.971217949487425],[-95.68484498897584,2.5539789787948735],[-94.73126498814332,3.1617368028482815],[-93.79380791845267,3.7940805647158413],[-92.8731075203836,4.450582786860991],[-91.9697862065575,5.130799660125092],[-91.08445464097292,5.834271343752391],[-90.21771132618443,6.56052227625139],[-89.37014219870275,7.309061496884226],[-88.54232023288876,8.079382977567207],[-87.7348050536113,8.870965964955417],[-87.33883364815267,9.274563848239666],[-86.94814255792915,9.683275332483106],[-86.56279781455714,10.09703134040069],[-86.18286454605368,10.515761942120605],[-85.80840696583022,10.939396367003155],[-85.43948836183938,11.367863015602325],[-85.07617108587829,11.801089471766716],[-84.71851654305055,12.239002514877996],[-84.36658518138779,12.681528132227811],[-84.02043648163396,13.128591531524762],[-83.68012894719106,13.580117153537344],[-83.34572009423243,14.036028684862401],[-83.01726644198135,14.496249070824888],[-82.69482350315889,14.96070052849933],[-82.37844577460106,15.429304559857485],[-82.0681867280486,15.901981965034452],[-81.54011360968366,16.738728309742612],[-81.23788817678098,17.237363014628045],[-80.95123063593314,17.72471510460764],[-80.67093299406338,18.215752615694726],[-80.39704262493251,18.710392556489808],[-80.1296058193933,19.208551326738302],[-79.86866777756649,19.710144731459593],[-79.63081323243227,19.99316221669892],[-79.41620423331665,20.294188227353857],[-79.22619849832239,20.61131833040531],[-79.06199809365876,20.94254621072406],[-78.92464182880144,21.28577636396915],[-78.81499868449265,21.63883735374037],[-78.73376231515738,21.999495549112794],[-78.68144666051711,22.365469255643518],[-78.65838269416417,22.734443150449295],[-78.66471632966591,23.104082930036896],[-78.70040749744629,23.472050078209975],[-78.76523039828538,23.83601666063055],[-78.85877493183182,24.193680052433194],[-78.98044929109176,24.5427775057193],[-79.1294837064803,24.88110046477169],[-79.30493531574746,25.206508538423464],[-79.50569412897215,25.516943041184845],[-79.73049005088262,25.810440017463236],[-79.97790091608118,26.085142666474667],[-80.24636148633516,26.33931308924457],[-80.53417335301492,26.57134328338003],[-80.83951568203037,26.779765316053158],[-81.16045673328989,26.963260610839143],[-81.49496608180203,27.12066828965476],[-81.80806569948163,27.2399486824703],[-82.16251662560501,27.345011628186114],[-82.52419634382767,27.421571820313204],[-82.89081669706928,27.46914490284064],[-83.3409491139613,27.487510640763276],[-83.64687447155052,27.475068939476955],[-84.01419527622647,27.433246600418045],[-84.37703027745914,27.362363291574866],[-84.73308400930142,27.26286745430781],[-85.06941825387503,27.139788269043095],[-86.09850983533642,27.15498160925148],[-87.03947614421708,27.161182111149685],[-87.9804621840351,27.16003601353094],[-88.92141059704937,27.151543386255526],[-89.86226402781233,27.135704746990882],[-90.80296512666592,27.112521061180303],[-91.74345655323759,27.081993741983695],[-92.68368097993527,27.044124650191918],[-93.62358109544192,26.99891609411293],[-94.56309960820886,26.946370829431032],[-95.5021792499478,26.88649205903954],[-96.44076277912194,26.819283432844713],[-97.37879298443522,26.74474904754402],[-98.31621268831901,26.662893446375847],[-99.25296475041796,26.573721618843024],[-100.18899207107268,26.477239000408304],[-101.12423759480055,26.373451472163026],[-102.05864431377302,26.262365360469346],[-102.99215527129098,26.143987436573468],[-103.92471356525664,26.018324916194047],[-104.8562623516413,25.88538545908159],[-106.36772972828129,25.653859561526474],[-106.96378885769678,25.7305276194989],[-107.5553819738796,25.83627288775199],[-108.14109148975456,25.97084197739116],[-108.71951391664533,26.13391243131423],[-109.28926322734168,26.32509349688769],[-109.84897417732526,26.543927062277646],[-110.39730557619532,26.78988875418503],[-110.93294350145567,27.062389194360208],[-111.44656738795294,27.35591761277726],[-112.03096454823219,27.731807671022125],[-112.51855092478422,28.083125194458717],[-112.98836085784859,28.457882587537142],[-113.43926857961162,28.855181849211647],[-113.87019361611078,29.274070963167958],[-114.2801033762874,29.713546179061552],[-114.66801562630178,30.172554417725905],[-115.03300084318118,30.649995794579752],[-115.37418444216138,31.1447262551942],[-115.69074887238361,31.655560316696608],[-115.981935575926,32.1812739084487],[-116.24704680547512,32.72060730518916],[-116.48544729628202,33.27226814561186],[-116.69656578839573,33.83493452914689],[-116.87989639552791,34.407258183525585],[-117.03499981726725,34.987867695536465],[-117.1615043917406,35.57537179723306],[-117.25910698619481,36.168362699716965],[-117.32757372337136,36.7654194665098],[-117.3667405419261,37.36511141842948],[-117.37651358955708,37.966001561810685],[-117.35686944789529,38.5666500318589],[-117.30785518861967,39.165617542881364],[-117.2295882606636,39.76146883713267],[-117.12225620878104,40.35277612400773],[-116.98611622414853,40.93812250134101],[-116.8214945280784,41.5161053506157],[-116.62878559032032,42.08533969794638],[-116.40845118382623,42.6444615327801],[-116.16101927823985,43.19213107636523],[-115.8870827747661,43.72703599215623],[-115.58729808544922,44.24789453046003],[-115.26238356026539,44.75345859978984],[-114.91311776579852,45.242516757566875],[-114.54033761962324,45.71389711300213],[-114.05812625193369,46.21596889016217],[-113.24992054391947,47.02329754526545],[-112.42119929860337,47.809552670132405],[-111.57251181963125,48.574213109055165],[-110.70442064492437,49.31677201999349],[-109.81750117381034,50.03673721052485],[-108.91234128563002,50.73363146408633],[-107.98954095007105,51.40699285628966],[-107.0497118294889,52.05637506109929],[-106.09347687347679,52.681347646672634],[-105.12146990595409,53.28149636066365],[-104.1343352050472,53.856423404803536],[-103.13272707604108,54.4057476985742],[-102.11730941768354,54.92910513180078],[-101.08875528213207,55.42614880599609],[-100.04774642883217,55.89654926429631],[-98.99497287262557,56.339994709835764],[-97.9311324263848,56.75619121241607],[-96.85693023848069,57.14486290333252],[-95.77307832538668,57.505752158229484],[-94.68029509973047,57.838619767861644],[-93.57930489410728,58.143245096650446],[-92.47083748096793,58.41942622892782],[-91.35562758890183,58.66698010277298],[-90.23441441563483,58.88574263135183],[-89.10794113806458,59.07556881167898],[-87.97695441965817,59.236332820730695],[-86.84220391554032,59.36792809884446],[-85.70444177559563,59.470267420349785],[-84.56442214592005,59.54328295138521],[-83.58348954635835,59.58256504982484],[-82.61474618837957,59.95575969130266],[-81.65696596499396,60.356253109160264],[-80.71091796479033,60.783723710917116],[-79.7773618554915,61.23782824166619],[-78.85704727394875,61.71820205970312],[-77.95071322418971,62.22445942933149],[-77.05908748400543,62.75619383060388],[-76.18288602055145,63.31297828575407],[-75.32281241543296,63.89436570205618],[-74.47955729973552,64.49988923083578],[-73.65379779945425,65.12906264234545],[-72.84619699176807,65.78138071620253],[-72.05740337259556,66.45631964707587],[-71.2880503358578,67.15333746529734],[-70.61567835173372,67.79621255084487],[-70.62212713829626,68.00257372084565],[-67.76413049782201,70.93680235633354],[-67.46431830561914,71.26504880698155],[-66.9679713006725,71.66281902034655],[-66.40325477227373,71.96622512419651],[-65.79269738650913,72.16162138820437],[-65.07653196331972,72.24433463819065],[-64.59124287402176,72.2163685165828],[-63.96544524839305,72.07730970507635],[-63.37547545467163,71.82651962593366],[-62.84109798195806,71.47239995978066],[-62.38021492938941,71.02681401615683],[-62.00826627061531,70.50468930257182],[-61.73771260156872,69.92351744032669],[-61.57761769992129,69.30276818034605],[-61.533344880832544,68.66323714998862],[-61.60637732133961,68.02634918187033],[-61.79426837266499,67.41344056377795],[-61.9294642400597,67.12244553689004],[-62.1807122515026,66.71217382260278],[-62.826161943174476,65.81337990158792],[-63.034566872829544,65.54265805061306]]]}]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment