Skip to content

Instantly share code, notes, and snippets.

@espinielli
Last active February 19, 2016 16:32
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 espinielli/75209760a6d8f8922e9c to your computer and use it in GitHub Desktop.
Save espinielli/75209760a6d8f8922e9c to your computer and use it in GitHub Desktop.
SES RP2 FABs
<!DOCTYPE html>
<meta charset="utf-8">
<style>
svg {
background: #00FFFF;
}
.graticule {
fill: none;
stroke: #777;
stroke-width: .5px;
stroke-opacity: .5;
}
.land {
fill: #ddd;
opacity: 0.4;
stroke: #aaa;
}
.countryboundary {
fill: none;
stroke: #aaa;
stroke-width: .5px;
}
.firboundary {
stroke: black;
fill: none;
stroke-width: .5px;
}
.fabboundary {
stroke: rgb(206,0,18);
fill: none;
stroke-width: .5px;
}
.SWFAB {
fill: rgb(247,243,38);
}
.NEFAB {
fill: rgb(13,24,73);
}
.FABEC {
fill: rgb(238,138,27);
}
.FABCE {
fill: rgb(169,0,25);
}
.UKEI {
fill: rgb(125,59,148);
}
.BALTIC {
fill: rgb(238,234,49);
}
.DKSE {
fill: orange;
}
.DANUBE {
fill: rgb(179,179,179);
}
.BLUEMED {
fill: rgb(30,37,108);
}
.fab {
opacity: 0.3;
pointer-events: none;
}
.fir {
opacity: 0.1;
}
#tooltip {
position: absolute;
width: auto;
height: auto;
padding: 2px 2px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
-webkit-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
-moz-box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
box-shadow: 2px 2px 5px rgba(0, 0, 0, 0.4);
pointer-events: none;
background-color: #bbb;
}
#tooltip.hidden {
display: none;
}
#tooltip p {
margin: 0 0 0 0;
padding: 2px 2px;
font-family: sans-serif;
font-size: 11px;
}
.hidden{
display: none;
}
</style>
<body>
<div id="tooltip" class="hidden">
<p id="info"></p>
</div>
<script src="//d3js.org/d3.v3.min.js" charset="utf-8"></script>
<script src="//d3js.org/topojson.v1.min.js"></script>
<script src="//cdnjs.cloudflare.com/ajax/libs/queue-async/1.0.7/queue.min.js"></script>
<script>
var width = 960,
height = 630;
var scale = 570,
cLat = 52.4,
cLon = 0;
var color = d3.scale.category10();
var tooltip = d3.select("#tooltip").classed("hidden", true);
var info = d3.select("#info");
var projection = d3.geo.albers()
.center([cLon, cLat])
.rotate([4.4, 0])
.parallels([50, 60])
.scale(scale)
.translate([width / 2, height / 2]);
var path = d3.geo.path()
.projection(projection);
var graticule = d3.geo.graticule()
.majorStep([5, 5])
.precision(2.5);
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
svg.append("path")
.datum(graticule)
.attr("class", "graticule")
.attr("d", path);
svg.on("mousemove", function () {
// update tooltip position
tooltip.style("top", (event.pageY + 8) + "px").style("left", (event.pageX + 8) + "px");
return true;
});
queue()
.defer(d3.json, "rp2.json")
.defer(d3.json, "world-50m.json")
.await(ready);
function ready(error, rp2, world) {
if (error) return console.error(error);
var firs = topojson.feature(rp2, rp2.objects.firs);
var firborders = topojson.mesh(rp2, rp2.objects.firs, function (a, b) { return (a !== b) || (a === b); });
var fabs = topojson.feature(rp2, rp2.objects.fabs);
// FAB borders (interior [a !== b] and exterior [a === b])
var fabborders = topojson.mesh(rp2, rp2.objects.fabs, function (a, b) { return (a !== b) || (a === b); });
var land = topojson.feature(world, world.objects.land);
var countryborders = topojson.mesh(world, world.objects.countries, function (a, b) { return (a !== b) || (a === b); });
svg.insert("path", ".graticule")
.datum(topojson.feature(world, world.objects.land))
.attr("class", "land")
.attr("d", path);
svg.insert("path", ".graticule")
.datum(countryborders)
.attr("class", "countryboundary")
.attr("d", path);
svg.selectAll(".fir")
.data(firs.features)
.enter().insert("path", ".graticule")
.attr("class", function(d) { return "fir " + d.id + " " + d.properties.fab; })
.attr("d", path)
.on("mouseover", function (d, i) {
d3.select(this).style({'stroke-opacity': 1, 'stroke': '#F00'});
// http://stackoverflow.com/questions/17917072/#answer-17917341
tooltip.classed("hidden", false);
info.text("FIR: " + d.id + ". " + d.properties.fab);
})
.on("mouseout", function () {
this.style.stroke = "none";
tooltip.classed("hidden", true);
});
svg.insert("path", ".graticule")
.datum(firborders)
.attr("class", "firboundary")
.attr("d", path);
svg.selectAll(".fab")
.data(fabs.features)
.enter().insert("path", ".graticule")
.attr("class", function(d) { return "fab " + d.properties.id; })
.attr("d", path);
svg.insert("path", ".graticule")
.datum(fabborders)
.attr("class", "fabboundary")
.attr("d", path);
}
</script>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"firs":{"type":"GeometryCollection","geometries":[{"type":"Polygon","id":"LJLAFIR","properties":{"id":"LJLAFIR","name":"LJUBLJANA FIR","fab":"FABCE"},"arcs":[[0,1,2,3]]},{"type":"Polygon","id":"LZBBFIR","properties":{"id":"LZBBFIR","name":"BRATISLAVA FIR","fab":"FABCE"},"arcs":[[4,5,6,7,8]]},{"type":"Polygon","id":"LHCCFIR","properties":{"id":"LHCCFIR","name":"BUDAPEST FIR","fab":"FABCE"},"arcs":[[9,10,11,12,-3,13,-6]]},{"type":"Polygon","id":"EGPXFIR","properties":{"id":"EGPXFIR","name":"SCOTTISH FIR","fab":"UKEI"},"arcs":[[14,15,16,17,18]]},{"type":"Polygon","id":"EETTFIR","properties":{"id":"EETTFIR","name":"TALLINN FIR","fab":"NEFAB"},"arcs":[[19,20,21,22]]},{"type":"Polygon","id":"ENORFIR","properties":{"id":"ENORFIR","name":null,"fab":"NEFAB"},"arcs":[[23,24,25,26,-15,27,28]]},{"type":"Polygon","id":"EPWWFIR","properties":{"id":"EPWWFIR","name":"WARSZAWA FIR","fab":"BALTIC"},"arcs":[[29,30,31,32,-9,33,34,35]]},{"type":"Polygon","id":"EDWWFIR","properties":{"id":"EDWWFIR","name":"BREMEN FIR","fab":"FABEC"},"arcs":[[36,37,-36,38,39,40]]},{"type":"Polygon","id":"EHAAFIR","properties":{"id":"EHAAFIR","name":"AMSTERDAM FIR","fab":"FABEC"},"arcs":[[41,42,-41,43,44]]},{"type":"Polygon","id":"LMMMFIR","properties":{"id":"LMMMFIR","name":"MALTA FIR","fab":"BLUEMED"},"arcs":[[45,46,47]]},{"type":"Polygon","id":"EKDKFIR","properties":{"id":"EKDKFIR","name":"COPENHAGEN FIR","fab":"DKSE"},"arcs":[[-43,-16,-27,48,-37]]},{"type":"Polygon","id":"EDMMFIR","properties":{"id":"EDMMFIR","name":"MUNCHEN FIR","fab":"FABEC"},"arcs":[[49,50,51,-39,-35,52]]},{"type":"Polygon","id":"LOVVFIR","properties":{"id":"LOVVFIR","name":"WIEN FIR","fab":"FABCE"},"arcs":[[53,-7,-14,-2,54,55,-50]]},{"type":"Polygon","id":"LFEEFIR","properties":{"id":"LFEEFIR","name":"REIMS FIR","fab":"FABEC"},"arcs":[[56,57,58,59,60]]},{"type":"Polygon","id":"LDZOFIR","properties":{"id":"LDZOFIR","name":"ZAGREB FIR","fab":"FABCE"},"arcs":[[61,-4,-13,62,63]]},{"type":"Polygon","id":"LFBBFIR","properties":{"id":"LFBBFIR","name":"BORDEAUX FIR","fab":"FABEC"},"arcs":[[64,65,66,67,68]]},{"type":"Polygon","id":"EBBUFIR","properties":{"id":"EBBUFIR","name":"BRUSSELS FIR","fab":"FABEC"},"arcs":[[-45,69,-59,70,71]]},{"type":"Polygon","id":"LCCCFIR","properties":{"id":"LCCCFIR","name":"NICOSIA FIR","fab":"BLUEMED"},"arcs":[[72,73]]},{"type":"Polygon","id":"EISNFIR","properties":{"id":"EISNFIR","name":"SHANNON FIR","fab":"UKEI"},"arcs":[[74,75,-18]]},{"type":"Polygon","id":"EFINFIR","properties":{"id":"EFINFIR","name":"FINLAND FIR","fab":"NEFAB"},"arcs":[[-25,76,-21,77]]},{"type":"Polygon","id":"ESAAFIR","properties":{"id":"ESAAFIR","name":"SWEDEN FIR","fab":"DKSE"},"arcs":[[-78,-20,78,79,80,-30,-38,-49,-26]]},{"type":"Polygon","id":"ENOBFIR","properties":{"id":"ENOBFIR","name":"BODO OCEANIC FIR","fab":"NEFAB"},"arcs":[[-29,81,82,83,84,85,86]]},{"type":"Polygon","id":"LFRRFIR","properties":{"id":"LFRRFIR","name":"BREST FIR","fab":"FABEC"},"arcs":[[87,88,-65,89,90,91]]},{"type":"Polygon","id":"LECMFIR","properties":{"id":"LECMFIR","name":"MADRID FIR","fab":"SWFAB"},"arcs":[[92,-91,-90,-69,93,94,95,96]]},{"type":"Polygon","id":"LSASFIR","properties":{"id":"LSASFIR","name":"SWITZERLAND FIR","fab":"FABEC"},"arcs":[[97,-51,-56,98,99,-61]]},{"type":"Polygon","id":"LECBFIR","properties":{"id":"LECBFIR","name":"BARCELONA FIR","fab":"SWFAB"},"arcs":[[-94,-68,100,101]]},{"type":"Polygon","id":"EYVLFIR","properties":{"id":"EYVLFIR","name":"VILNIUS FIR","fab":"BALTIC"},"arcs":[[102,-32,103,-80,104]]},{"type":"Polygon","id":"LGGGFIR","properties":{"id":"LGGGFIR","name":"ATHINAI FIR","fab":"BLUEMED"},"arcs":[[105,106,107,108,109,-73,110,-47,111]]},{"type":"Polygon","id":"LPPCFIR","properties":{"id":"LPPCFIR","name":"LISBOA FIR","fab":"SWFAB"},"arcs":[[112,113,114,-97,-96]]},{"type":"Polygon","id":"LBSRFIR","properties":{"id":"LBSRFIR","name":"SOFIA FIR","fab":"DANUBE"},"arcs":[[115,116,-108,117]]},{"type":"Polygon","id":"LIRRFIR","properties":{"id":"LIRRFIR","name":"ROMA FIR","fab":"BLUEMED"},"arcs":[[-112,-46,118,119,120,121]]},{"type":"Polygon","id":"EDGGFIR","properties":{"id":"EDGGFIR","name":"LANGEN FIR","fab":"FABEC"},"arcs":[[-70,-44,-40,-52,-98,-60]]},{"type":"Polygon","id":"LKAAFIR","properties":{"id":"LKAAFIR","name":"PRAHA FIR","fab":"FABCE"},"arcs":[[-54,-53,-34,-8]]},{"type":"Polygon","id":"LIBBFIR","properties":{"id":"LIBBFIR","name":"BRINDISI FIR","fab":"BLUEMED"},"arcs":[[122,-64,123,-106,-122]]},{"type":"Polygon","id":"LRBBFIR","properties":{"id":"LRBBFIR","name":"BUCAREST FIR","fab":"DANUBE"},"arcs":[[124,-11,125,-116]]},{"type":"Polygon","id":"GCCCFIR","properties":{"id":"GCCCFIR","name":"CANARIAS FIR","fab":"SWFAB"},"arcs":[[-114,126,127]]},{"type":"Polygon","id":"EVRRFIR","properties":{"id":"EVRRFIR","name":"RIGA FIR","fab":"NEFAB"},"arcs":[[-79,-23,128,-105]]},{"type":"Polygon","id":"LFMMFIR","properties":{"id":"LFMMFIR","name":"MARSEILLE FIR","fab":"FABEC"},"arcs":[[129,-57,-100,130,-120,131,-101,-67]]},{"type":"Polygon","id":"EGTTFIR","properties":{"id":"EGTTFIR","name":"LONDON FIR","fab":"UKEI"},"arcs":[[-42,-72,132,-88,133,-75,-17]]},{"type":"Polygon","id":"LFFFFIR","properties":{"id":"LFFFFIR","name":"PARIS FIR","fab":"FABEC"},"arcs":[[-89,-133,-71,-58,-130,-66]]},{"type":"Polygon","id":"LIMMFIR","properties":{"id":"LIMMFIR","name":"MILANO FIR","fab":"BLUEMED"},"arcs":[[-55,-1,-62,-123,-121,-131,-99]]}]},"states":{"type":"GeometryCollection","geometries":[{"type":"Polygon","properties":{"id":"LJ"},"arcs":[[134,135,136,137]]},{"type":"Polygon","properties":{"id":"LZ"},"arcs":[[138,139,140,141,142]]},{"type":"Polygon","properties":{"id":"LH"},"arcs":[[143,144,145,146,-137,147,-140]]},{"type":"Polygon","properties":{"id":"EG"},"arcs":[[148,149,150,151,152,153,154,155]]},{"type":"Polygon","properties":{"id":"EE"},"arcs":[[156,157,158,159]]},{"type":"Polygon","properties":{"id":"EN"},"arcs":[[160,161,162,-149,163,164,165,166,167,168]]},{"type":"Polygon","properties":{"id":"EP"},"arcs":[[169,170,171,172,-143,173,174]]},{"type":"Polygon","properties":{"id":"ED"},"arcs":[[175,176,-175,177,178,179,180,181,182]]},{"type":"Polygon","properties":{"id":"EH"},"arcs":[[-151,183,-183,184]]},{"type":"Polygon","properties":{"id":"LM"},"arcs":[[185,186,187]]},{"type":"Polygon","properties":{"id":"EK"},"arcs":[[-184,-150,-163,188,-176]]},{"type":"Polygon","properties":{"id":"LO"},"arcs":[[189,-141,-148,-136,190,191,-179]]},{"type":"Polygon","properties":{"id":"LF"},"arcs":[[-181,192,193,194,195,196,197,-153,198]]},{"type":"Polygon","properties":{"id":"LD"},"arcs":[[-138,-147,199,200]]},{"type":"Polygon","properties":{"id":"EB"},"arcs":[[-185,-182,-199,-152]]},{"type":"Polygon","properties":{"id":"LC"},"arcs":[[201,202]]},{"type":"Polygon","properties":{"id":"EI"},"arcs":[[-155,203]]},{"type":"Polygon","properties":{"id":"EF"},"arcs":[[-161,204,-158,205]]},{"type":"Polygon","properties":{"id":"ES"},"arcs":[[-206,-157,206,207,208,-170,-177,-189,-162]]},{"type":"MultiPolygon","properties":{"id":"LE"},"arcs":[[[209,-197,-196,210,211,212]],[[213,214,215]]]},{"type":"Polygon","properties":{"id":"LS"},"arcs":[[-180,-192,216,-193]]},{"type":"Polygon","properties":{"id":"EY"},"arcs":[[217,-172,218,-208,219]]},{"type":"Polygon","properties":{"id":"LG"},"arcs":[[220,221,222,223,-202,224,-187,225]]},{"type":"Polygon","properties":{"id":"LP"},"arcs":[[226,-214,227,-213,-212]]},{"type":"Polygon","properties":{"id":"LB"},"arcs":[[228,229,-222,230]]},{"type":"Polygon","properties":{"id":"LI"},"arcs":[[-186,231,-194,-217,-191,-135,-201,232,-226]]},{"type":"Polygon","properties":{"id":"LK"},"arcs":[[-190,-178,-174,-142]]},{"type":"Polygon","properties":{"id":"LR"},"arcs":[[233,-145,234,-229]]},{"type":"Polygon","properties":{"id":"EV"},"arcs":[[-207,-160,235,-220]]}]},"fabs":{"type":"GeometryCollection","geometries":[{"type":"Polygon","properties":{"id":"FABCE"},"arcs":[[134,190,191,-179,-178,-174,142,138,143,144,145,199,200]]},{"type":"Polygon","properties":{"id":"UKEI"},"arcs":[[148,149,150,151,152,153,203,155]]},{"type":"Polygon","properties":{"id":"NEFAB"},"arcs":[[156,205,161,162,-149,163,164,165,166,167,168,204,158,235,-220,-207]]},{"type":"Polygon","properties":{"id":"BALTIC"},"arcs":[[169,170,218,-208,219,217,172,-143,173,174]]},{"type":"Polygon","properties":{"id":"FABEC"},"arcs":[[175,176,-175,177,178,-192,216,193,194,195,196,197,-153,-152,-151,183]]},{"type":"Polygon","properties":{"id":"BLUEMED"},"arcs":[[187,231,-194,-217,-191,-135,-201,232,220,221,222,223,202,224]]},{"type":"Polygon","properties":{"id":"DKSE"},"arcs":[[-184,-150,-163,-162,-206,-157,206,207,208,-170,-177,-176]]},{"type":"Polygon","properties":{"id":"SWFAB"},"arcs":[[209,-197,-196,210,226,214,215,227]]},{"type":"Polygon","properties":{"id":"DANUBE"},"arcs":[[229,-222,230,233,-145,234]]}]}},"arcs":[[[6318,4215],[19,12],[5,0],[33,-3],[17,-6],[14,9],[-20,19],[-16,5],[-18,11],[7,14],[5,8],[-10,3],[-1,-4],[-15,1],[16,20],[15,11],[-14,1],[-23,4],[-11,14],[21,17],[16,4],[12,4],[0,4],[2,5]],[[6372,4368],[20,-1],[13,1],[8,-4],[11,-1],[9,-1],[5,-1],[10,-7],[20,-1],[5,0],[6,1],[4,1],[4,1],[4,0],[2,-4],[11,0],[8,-7],[5,10],[5,2],[12,4],[8,3],[5,3],[9,6],[4,6],[2,2],[9,1],[20,7],[6,-1],[21,0],[7,-1],[18,2],[10,1],[7,-7],[8,0],[6,5],[0,3],[5,3],[3,0],[5,-1],[4,5],[23,0],[3,-1],[9,3],[21,-6],[8,-4],[-5,9],[-2,14],[-1,4],[20,6]],[[6767,4423],[42,-3],[9,-26],[-1,-7],[19,-22]],[[6836,4365],[-27,11],[-21,-11],[7,-16],[-2,-4],[-33,5],[-5,-6],[-11,-10],[-8,-3],[-16,-3],[-8,-7],[-29,-4],[4,-5],[6,-15],[6,-16],[-3,-17],[-4,-4],[-27,-5],[-11,-2],[-12,-4],[-1,-14],[0,-3],[0,-5],[-8,-9],[5,-20],[-20,3],[-33,4],[-23,-4],[-11,4],[-10,5],[-26,18],[-6,-2],[-12,-15],[-11,-5],[-3,-1],[-6,-2],[-2,0],[-6,2],[-4,-1],[-2,-1],[-2,4],[-2,0],[-3,-1],[-3,-5],[-12,1],[-20,8],[-2,-1],[-37,-9],[-10,1],[-16,0],[-5,1],[-7,3],[-7,2],[-13,6],[-6,2]],[[7829,4776],[-19,-22],[-12,-21],[-4,-8],[-15,-19],[-3,-3],[-14,-15],[-1,-11],[-1,-1],[3,-5]],[[7763,4671],[-25,-7],[-14,-4],[-24,-3],[-19,9],[-9,18],[-27,11],[-16,-3],[-10,-6],[-18,-1],[-12,-4],[-60,12],[-18,-3],[-20,-5],[-4,-5],[-7,-6],[-5,-8],[-7,-12],[-14,-9],[-38,-15],[-27,-2],[-37,14],[-11,-3],[-33,-23],[-6,1],[-8,0],[-11,-3],[-20,0],[-48,-4],[-3,-4],[-7,-13],[4,-18],[-11,-3],[-1,-2],[-3,-2],[-2,0],[-16,-2],[-22,-1],[-22,-4],[-22,0],[-12,3],[-2,0],[-8,0],[-49,-1],[-17,6],[-8,5],[-31,16],[-9,4],[-7,0],[-5,6],[-11,6],[-12,-2]],[[6939,4604],[-13,3],[1,6],[0,7],[-13,3],[-5,7],[-1,1],[0,2],[-2,4],[-2,4],[-3,5],[-3,5],[-11,11],[-1,1],[3,8],[-1,3],[15,26]],[[6903,4700],[23,27],[15,11],[1,1],[31,-7],[8,1],[20,0],[12,3],[11,3],[6,1],[31,17],[3,5],[5,3],[4,0],[15,2],[4,5],[4,10],[2,4],[-1,3],[4,4],[2,3],[-1,2],[3,2],[3,7],[16,3],[15,3],[8,11],[4,0],[16,6],[3,12],[23,-2],[25,3]],[[7218,4843],[18,0],[3,-20],[36,4],[10,19],[34,13],[30,-25],[-2,-5],[25,-8],[2,-11],[8,-17],[25,4],[16,-1],[13,15],[13,6],[73,11],[38,-20],[13,7],[14,5],[17,6],[5,2],[17,5],[18,-6],[185,-51]],[[7763,4671],[11,-3],[14,-11],[46,-33],[14,-6],[25,3],[6,-26]],[[7879,4595],[-70,-25],[-40,-25],[-15,-10],[-15,-28],[-26,-24],[0,-6],[-3,-4],[-6,-4],[-5,-6],[-2,-3],[-11,-7],[-3,-7],[-10,-23],[-7,-2],[-10,-23],[-3,-4],[-14,-8],[-16,-3],[-2,-5],[-6,-11],[0,-3],[0,-10],[-2,-2],[-9,-8],[-11,-11],[-5,-6],[-3,-2],[-38,5],[-24,-19],[-50,-1],[-23,-5]],[[7450,4305],[-28,6],[-25,2],[-12,-4],[-17,-3],[-6,6],[-5,3],[-16,-2],[-10,-3],[-10,-9],[-20,-8],[-12,-8],[-33,-5],[-26,-6],[-13,-5],[-5,-5]],[[7212,4264],[-66,-19],[-8,1],[-39,1],[-44,2],[-49,26],[-27,2],[-17,7],[-19,19],[0,1],[-6,8],[-30,11],[-12,9],[-42,28],[-17,5]],[[6767,4423],[18,21],[21,23],[14,15],[6,7],[5,5],[6,7],[10,11],[3,3],[3,4],[11,12],[16,6],[5,2],[30,13],[12,4],[2,8],[0,2],[3,10],[4,14],[0,2],[2,8],[1,4]],[[4115,6666],[0,-159],[2,-1],[108,-56],[161,-88],[15,-8],[69,-38],[73,-44],[37,-20],[29,-15],[26,-19],[70,-41],[4,-2],[73,-45],[14,-8],[59,-38],[83,-53]],[[4938,6031],[0,-66],[0,-7],[0,-19],[0,-27],[0,-31],[0,-16],[0,-2],[0,-23],[0,-30],[0,-4],[0,-15],[0,-16],[0,-7],[0,-6],[0,-9],[0,-11],[0,-8],[0,-7],[0,-13]],[[4938,5714],[-158,0],[-89,0],[-63,0],[-11,0],[-11,0],[-620,0],[-14,0],[-20,0],[-46,0],[-39,0],[-68,0],[-34,0],[-56,0],[-40,0],[-120,0],[-13,0],[-80,0],[-148,0],[-98,0],[0,-16],[0,-156]],[[3210,5542],[-40,7],[-49,10],[-5,1],[-22,4],[-11,2],[-23,4],[-40,7],[-19,4],[-11,2],[-12,2],[-36,6],[-44,8],[-51,9],[-31,5],[-14,3],[-31,5],[10,8],[8,5],[27,20],[8,6],[32,23],[60,41],[15,11],[23,16],[11,8],[8,6],[3,2],[-68,13],[-94,-8],[-27,-3],[-30,-2],[-22,-19],[-12,-6],[-15,-11],[-32,-25],[-10,-7],[-24,-19],[-100,-22],[-73,-13]],[[2469,5645],[0,5],[0,19],[0,5],[0,40],[0,18],[0,20],[0,41],[0,27],[0,13],[0,3],[0,8],[0,28],[0,15],[0,7],[0,18],[0,2],[0,11],[0,1],[0,17],[0,9],[0,13],[0,1],[0,12],[0,1],[0,15],[0,37],[0,3],[0,37],[0,3],[0,10],[0,11],[0,10],[0,6],[0,7],[0,32],[0,3],[0,6],[0,28],[0,3],[0,16],[0,24],[0,37],[0,2],[0,24],[0,3],[0,47],[0,2],[0,1],[0,3],[0,26],[0,26],[0,21],[0,3],[0,3],[0,76],[0,3],[0,76],[0,4],[0,26],[0,53],[318,0],[150,0],[26,0],[82,0],[3,0],[67,0],[12,0],[83,0],[58,0],[51,0],[41,0],[96,0],[354,0],[305,0]],[[7512,6255],[22,34],[28,44],[9,16]],[[7571,6349],[125,29],[31,7],[32,8],[6,1],[94,21],[10,3],[20,4],[1,0],[8,2],[28,6],[108,24],[11,2],[19,4],[29,6],[47,9],[34,8],[31,6],[24,1],[6,0],[2,0],[34,2],[13,1],[15,-1],[27,-1],[5,0],[7,-1],[34,-1]],[[8372,6489],[18,-3],[274,-40],[67,-23],[9,-2],[16,-11],[-120,-86],[-9,-23],[17,-59],[17,-46],[32,-22],[-42,-11],[-29,-37]],[[8622,6126],[-26,0],[-68,-2],[-35,-10],[-35,8],[-78,45],[-153,25],[-86,-14],[-27,-4],[-14,0],[-49,0],[-52,0],[8,-19],[-11,-18],[-29,-12],[-8,0],[-29,-1],[-30,19],[-15,12],[-19,15],[-14,10],[-20,-2],[-11,-3],[-39,-13],[-29,-8],[-31,-4],[-12,2],[-21,4],[-9,9],[-2,2],[-6,6],[-11,20],[-10,15],[-139,47]],[[9053,8253],[149,-52],[133,-48],[-28,-17],[-50,-31],[-18,-11],[-52,-32],[3,-42],[-44,2],[-71,20],[-9,-2],[-9,-37],[-81,-14],[-7,-4],[-73,-47]],[[8896,7938],[-35,14],[0,4],[0,14],[82,42],[-16,15],[-9,11],[-8,9],[-40,6],[-16,2],[-43,7],[-33,14],[-27,5],[-26,29],[-1,1],[-70,-5],[-90,-25],[-40,6],[-48,-6],[-12,-1],[-32,-19],[-14,-5],[-27,-10],[-10,-4],[-27,-54],[-26,-52],[-23,-14],[-25,-15],[-70,-41],[-46,12],[-99,25],[-25,6],[-41,-12],[-46,-15],[-61,5],[-96,6],[-71,53],[-23,17],[-76,23],[-17,-17],[-24,-25],[-88,1]],[[7497,7945],[-35,-20],[0,-8],[-2,-14],[-2,-4],[-55,-33],[46,-11],[-49,-22],[-7,1],[-123,20],[-12,2],[-78,1],[-34,13],[-48,-8],[-3,-17],[-1,-3],[10,-32],[-43,-38],[-43,13],[-33,5],[-26,6],[-29,-15],[-13,-3],[-6,-2],[-40,-13],[-62,-59],[-34,-4],[-9,-9],[37,-31],[14,-31],[-19,-11],[-25,-13],[-28,-13],[-17,-8],[-4,-3],[-29,-20],[-43,-22],[8,-27],[6,-10],[-17,-2],[-52,-14],[-7,-2],[-72,-3],[-11,0],[11,-53],[-3,-8],[-11,-26],[-1,-5],[-2,-6],[-13,-40],[-20,-26],[-56,-41],[-34,-27],[-5,-4],[-2,-1],[-7,-7],[11,-7],[34,-8],[29,-6],[9,-42],[-39,-32],[-23,6],[-32,3],[-37,4],[-30,-1],[-31,-1],[-4,-2],[-28,-15],[-106,-57],[14,-21],[-8,-6],[-19,-13],[-5,-3],[-9,-8],[41,-45],[-20,-10],[-7,-3],[-6,-39],[20,-27],[2,-10],[8,-12],[5,-7],[8,-8],[-10,-26],[-5,-16],[-1,-14],[1,-20],[0,-18],[20,-6],[40,-11],[14,-11],[27,-21],[-19,-34],[-79,-24],[9,-13],[10,-13],[7,-16],[35,-35],[-4,-22],[-14,-11],[0,-1],[6,-19],[-6,-13],[-18,-14],[-36,-18],[-12,-1],[-8,0],[-5,0],[-3,1],[-14,-2],[-14,-8],[16,-7],[-2,-14],[-9,-8],[-13,-1],[-13,-7],[0,-5],[4,-8],[11,-24],[4,-8],[-8,-31],[-17,-35],[-33,-3],[-19,36],[-18,-3],[-20,-12],[-25,-9],[-23,-4],[-18,-4],[-18,-16],[-2,-7],[-4,-11],[-7,-18],[-5,-13]],[[5843,6269],[-47,-21],[-11,-5],[-3,-2],[-20,-9],[-22,-10],[-14,-7],[-28,-13],[-5,-2],[-10,-5],[-5,-2],[-7,-3],[-3,-2],[-34,-16],[-7,-3],[-22,-11],[-41,-20],[-3,-1],[-7,-3],[-13,-7],[-15,-7],[-86,-43],[-25,-12],[-48,-25],[-18,-9],[-7,0],[-19,0],[-19,0],[-48,0],[-17,0],[-4,0],[-13,0],[-5,0],[-40,0],[-75,0],[-5,0],[-32,0],[-14,0],[-18,0],[-12,0],[-54,0],[-29,0]],[[4115,6666],[0,34],[0,45],[0,5],[0,75],[0,69],[0,89],[0,3]],[[4115,6986],[5,-3],[81,0],[124,0],[119,0],[175,0],[108,0],[46,0],[13,12],[5,6],[16,15],[5,5],[20,20],[32,31],[2,1],[26,24],[13,13],[33,32],[15,12],[34,30],[21,19],[8,7],[15,14],[38,33],[77,64],[0,1],[6,5],[77,61],[12,11],[7,6],[19,15],[73,46],[43,27],[44,27],[22,13],[82,49],[75,42],[20,12],[39,22],[50,27],[96,52],[44,23],[64,32],[36,17],[92,47],[15,7],[161,76],[104,47],[63,27],[36,16],[48,20],[110,45],[200,33],[13,2],[280,40],[90,14],[77,10],[369,47],[278,32],[92,6],[82,9],[105,13],[60,6],[221,0],[85,0],[81,0],[40,0],[66,0],[280,-45],[47,-7],[3,-1]],[[6478,5700],[4,-3],[3,-2],[3,-2],[4,-1],[4,-2],[3,-1],[5,-2],[4,-1],[4,-1],[5,-1],[4,-1],[5,0],[5,-1],[5,0],[4,0],[5,0],[5,0],[5,0],[5,1],[4,0],[5,1],[6,2],[3,1],[4,1],[4,1],[4,2],[3,2],[4,1],[3,2],[3,2],[4,2],[25,0],[60,0],[31,0],[3,0],[22,14],[12,5],[27,16],[44,22],[35,20],[27,14],[44,21],[2,3],[5,1],[59,33]],[[7003,5849],[65,-41],[37,-23],[36,-23],[1,-1],[2,-1],[7,-5],[75,-50],[9,-5],[6,-3],[2,-3],[32,-20],[15,-12],[11,-6],[8,-5],[8,-5],[20,-12],[13,-8],[35,-1],[22,-2],[82,-10],[33,0],[126,-5],[117,0],[101,5],[44,-9]],[[7910,5604],[57,-18],[56,-42]],[[8023,5544],[-32,-16],[13,-38],[23,-33],[21,-32],[14,-29],[-10,-23],[2,-4],[0,-7],[-126,-86],[7,-2],[32,-7],[24,-11],[19,-16],[-12,-39],[-8,-7],[3,-9],[9,-27],[5,-31],[75,-75],[-9,-26],[3,-26],[-40,-16],[-56,-29],[-45,-31],[-12,-9],[-13,-13],[-19,-12],[-47,-38],[0,-10],[13,-47],[0,-1],[16,-18],[-11,-15],[-33,15]],[[7218,4843],[-8,24],[-29,9],[-9,20],[-1,5],[-16,5],[-22,5],[2,-2],[-5,-2],[-6,3],[-1,4],[-9,1],[-2,4],[-1,1],[-4,1],[-3,-4],[-7,2],[-4,5],[-15,5],[-1,-4],[-7,-4],[-4,-2],[-11,-3],[-13,7],[-6,9],[-7,3],[-17,9],[-2,1],[24,7],[2,1],[0,15],[-8,4],[-11,-9],[-27,0],[-3,-2],[-41,19],[-49,11],[12,-22],[3,-3],[4,-3],[0,-2],[-1,-6],[-5,3],[-21,-5],[-27,-17],[-10,5],[-10,5],[-2,9],[-9,6],[-5,4],[-8,7],[-19,9],[-18,8],[36,22],[4,2],[-5,4],[-13,8],[-16,2],[-2,-5],[-6,-3],[-6,5],[-9,1],[-2,-2],[-67,17],[-25,4],[-25,4],[-13,23],[-9,8],[-24,2],[-5,2],[-5,-2],[-1,3],[-9,-6],[5,-2],[2,0],[-3,-12],[1,-6],[-23,0],[-6,0]],[[6555,5058],[0,3],[5,4],[12,12],[10,21],[3,13],[-8,32],[7,15],[-43,13],[-4,19]],[[6537,5190],[-8,8],[-8,8],[2,5],[7,11],[13,25],[-13,13],[-2,11],[-14,13],[-6,17],[16,22],[-5,10],[-13,5],[-25,15],[-23,14],[-13,14],[29,42],[7,2],[6,15],[1,9],[-2,4],[-3,3],[-10,21],[-2,22],[-6,6],[2,8],[-3,4],[-7,15],[0,12],[-1,19],[6,18],[3,27],[8,53],[2,15],[3,24]],[[5185,5714],[25,0],[98,0],[27,0],[34,0],[3,0],[10,0],[1,0],[2,0],[18,0],[8,0],[13,0],[8,0],[12,2],[6,1],[20,4],[16,3],[10,1],[4,-1],[5,1],[2,-1],[9,-6],[25,-18],[19,-2],[12,-1],[25,0],[2,1],[29,-7],[5,1],[2,-5],[8,1],[6,-5],[32,7],[37,-4],[2,0],[17,2],[5,0],[1,1],[11,-6],[7,-3],[9,-4],[15,-3],[3,0],[6,-1],[22,-6],[27,-7],[14,0],[13,0],[3,0],[25,0],[27,-2],[15,-3],[13,-3],[6,-2],[11,-3],[7,-2],[3,-1],[12,-3],[16,-6],[24,-5],[3,0],[4,-1],[18,-2],[5,0],[2,0],[26,0],[11,6],[36,20],[38,20],[13,7],[30,15],[12,6]],[[6230,5700],[25,0],[63,0],[29,0],[16,0],[15,0],[2,0],[67,0],[29,0],[2,0]],[[6537,5190],[-159,-30],[-68,0],[-15,0],[-20,0],[-4,0],[-76,18],[-72,40],[-33,5],[-130,-11],[-84,-43],[-51,-37]],[[5825,5132],[-54,0],[-21,0],[-58,0],[-10,0],[-58,0],[-43,0],[-23,0],[19,26],[6,8],[4,5],[3,4],[6,10],[0,14],[0,61],[-42,-1],[-26,-1],[-96,-2],[0,19],[0,8],[-23,-1],[-98,-5],[-34,-2]],[[5277,5275],[1,47],[-1,20],[4,23],[19,31],[-1,12],[1,2],[0,4],[3,16],[-3,11],[-1,3],[-21,1],[-12,5],[-12,2],[5,8],[-7,6],[-7,6],[-8,3],[-13,1],[-16,6],[-23,20],[0,6],[0,5],[0,16],[0,7],[0,7],[0,12],[0,29],[0,11],[0,39],[0,27],[0,46],[0,7]],[[4444,5158],[9,11],[9,11],[7,9],[2,2],[1,1],[9,11],[11,14],[11,13],[20,24],[1,2],[1,1],[15,18],[2,2],[8,9],[1,2],[7,8],[14,17],[9,9],[11,14],[16,18],[12,14],[13,15],[2,2],[16,18],[8,9],[10,12],[10,12],[22,24],[9,10],[5,6],[10,11],[39,43],[4,4],[19,21],[16,17],[58,62],[77,80]],[[4938,5714],[46,0],[47,0],[47,0],[1,0],[2,0],[10,0],[9,0],[9,0],[18,0],[33,0],[12,0],[13,0]],[[5277,5275],[-36,-13],[6,-2],[-1,0],[-10,-4],[-8,-15],[5,-14],[-3,-2],[-9,-1],[-10,-1],[-8,-1],[-4,-1],[-14,-4],[-11,-1],[-10,1],[5,-7],[-3,2],[-39,10],[-8,-3],[-7,-4],[-5,0],[-13,-4],[13,-21],[1,-4],[11,-8],[5,-6],[12,-10],[3,-9],[0,-10],[-1,-1],[0,-6],[-15,-13],[-1,0],[-6,-5],[0,-11],[8,1],[-5,-7],[-7,-1],[-8,-8],[-7,-7],[0,-6],[4,-3],[5,0],[-1,-6],[3,-2],[4,-1],[1,-3],[1,-4],[1,-3],[-9,-5],[0,-1],[1,-1],[-1,-10]],[[5106,5040],[-3,0],[-1,0],[-12,0],[-2,-1],[-8,2],[-4,0],[-23,1],[-8,9],[-1,1],[0,1],[6,8],[9,7],[2,3],[3,8],[4,10],[0,11],[-4,8],[-8,1],[-20,4],[-7,6],[-1,3],[-8,3],[-13,-4],[-6,1],[-8,-1],[-9,0],[-8,7],[-17,4],[-4,13],[-1,1],[-2,6],[-5,5],[-6,-3],[-4,0],[-5,-5],[-10,-5],[-12,1],[-4,13],[-1,2],[-19,-14],[-9,1],[-8,0],[-5,0],[-3,-1],[1,6],[-4,1],[-2,0],[-20,-3],[-3,-7],[-5,-3],[2,-2],[1,-1],[-2,0],[-1,0],[-9,1],[-6,-3],[-3,-2],[-4,-3],[-8,-5],[-7,-3],[-15,-5],[-24,-1],[-35,0],[-6,8],[-6,1],[-4,0],[-7,-5],[-9,-3],[-9,5],[-4,2],[-3,14],[-59,5],[-84,8],[-30,3],[-7,0],[-31,3],[-14,1]],[[6008,2778],[20,0],[33,0],[50,0],[75,0],[43,0],[60,0],[54,0],[42,0],[30,0],[20,0],[25,0],[10,0],[24,0],[2,0],[16,0],[44,0],[28,0],[101,0],[63,0],[75,0],[66,0],[94,0],[57,0],[92,0],[110,0]],[[7242,2778],[355,-156],[132,-61],[171,-81],[96,-46]],[[7996,2434],[-348,0],[-162,0],[-238,0],[-149,0],[-172,0],[-23,0],[-95,0],[-198,0],[-77,0],[-159,0],[-69,0],[-11,0],[-62,0],[-38,0],[-187,0],[0,30],[0,83],[0,97],[0,26],[0,108]],[[5843,6269],[11,-12],[53,-59],[7,-8],[1,-2],[4,-4],[29,-34],[1,0],[13,-15],[20,-23],[10,-13],[13,-14],[2,-3],[12,-11],[12,-18],[20,-24],[50,-61],[9,-11],[18,-22],[1,-1],[5,-7],[11,-13],[6,-7],[11,-9],[7,-2],[3,-2],[11,-6],[14,-7],[1,-3],[-1,-10],[0,-9],[4,-3],[4,-10],[18,-16],[15,-14],[-3,-5],[-17,-7],[-9,-4],[-1,-8],[-2,-2],[-7,-3],[-8,-5],[2,-9],[2,-6],[7,-13],[2,-3],[7,-13],[4,-9],[5,-9],[2,-4],[8,-16]],[[6384,4734],[4,-35],[-12,-12],[-3,-3],[-35,12],[-9,-18],[-4,-12],[-17,-7],[-24,-9],[-2,-1],[-12,-4],[-13,-4],[-8,-7],[-17,-2],[-5,-3],[-10,-6],[-2,-8],[6,-5],[9,-49],[-18,-5],[-24,-3],[-22,-2],[-43,-6],[-6,-1],[-17,-2],[-2,-1],[-44,-4],[-29,-1],[-18,-15],[-26,-21],[-38,0],[-18,10],[-2,1],[-23,13],[-19,3],[-3,3],[-8,2],[-29,2],[-6,3],[-1,-10],[-1,-7],[-1,-13],[0,-2],[-15,-12],[-5,0],[-12,-5],[-10,-1],[3,10],[3,8],[-22,10],[1,9],[-23,2],[-21,5],[-3,3],[-3,4],[-3,-2],[-5,-7],[-30,-1]],[[5687,4528],[-1,2],[-16,7]],[[5670,4537],[17,39],[0,8],[0,1],[0,11],[0,2],[0,10],[0,21],[0,20],[0,11],[0,5],[0,8],[0,4],[0,7],[0,2],[8,11],[4,4],[10,13],[15,17],[15,6],[38,16],[26,11],[7,3],[30,12],[17,11],[12,7],[1,1],[29,20],[21,14],[-50,88],[-62,36],[4,4],[30,34],[5,6],[7,5],[22,20],[-34,107],[-17,0]],[[6555,5058],[-4,-5],[-28,13],[-8,-1],[-1,7],[-2,7],[-27,3],[-21,0],[4,-11],[16,-1],[1,-4],[-2,-3],[-9,-3],[-93,-23],[-23,-3],[-102,-31],[-16,-7],[-27,-7],[-19,-7],[-7,-2],[-17,-6],[-8,-2],[-9,-6],[-5,-8],[-2,-8],[-4,-2],[-17,-3],[-1,-9],[1,0],[8,-5],[7,-2],[3,-2],[0,-1],[11,-3],[11,-4],[7,-3],[-1,-7],[-5,-19],[-3,-2],[-7,-7],[12,-8],[11,-6],[6,-5],[-1,-9],[2,-2],[4,-5],[80,-52],[3,-2],[25,-14],[70,-35],[16,-9]],[[6384,4734],[45,-24],[-8,-6],[9,-6],[38,-5],[8,-1],[16,7],[3,6],[34,-10],[6,0],[3,15],[9,8],[9,9],[21,-4],[3,3],[-4,2],[3,15],[1,13],[4,5],[22,-1],[3,0],[2,-7],[3,0],[14,2],[1,4],[15,0],[36,-14],[5,-1],[36,-2],[35,-18],[9,-3],[17,0],[19,-2],[11,0],[13,12],[14,-1],[12,-3],[9,-2],[1,-7],[6,2],[12,-4],[18,1],[6,-17]],[[6372,4368],[-24,3],[-28,5],[-3,-1],[-8,-1],[-2,0],[-14,0],[-11,5],[-41,3],[-73,11],[-32,20],[5,3],[-4,8],[-11,1],[-10,4],[-5,15],[10,4],[7,7],[-7,3],[-33,-7],[-22,-4],[0,-3],[-17,3],[-10,0],[-27,0],[-13,-5],[-12,-1],[-3,0],[-17,-1],[-7,-5],[-32,-27],[-7,-1],[-16,0],[-11,2],[-3,3],[-8,-1],[-2,0],[-1,1],[5,5],[-10,3],[-4,4],[-20,-5],[0,1],[-7,0],[-6,3]],[[5838,4423],[3,13],[-16,8],[-19,-14],[-20,-16],[-6,5],[-49,28],[-37,5],[-2,0],[8,13],[-3,3],[-13,19],[8,6],[3,7],[3,3],[9,3],[-4,3],[-6,6],[-6,7],[-4,6]],[[5117,4372],[-13,0],[-109,-7],[-30,0],[-24,0],[-11,0],[-20,0]],[[4910,4365],[-82,145],[41,37],[29,24],[29,25],[3,3],[8,6],[20,18],[7,6],[55,8],[38,5],[-153,111],[124,51],[42,15],[31,15]],[[5102,4834],[10,2],[9,1],[12,3],[3,1],[3,1],[21,-7],[7,1],[1,0]],[[5168,4836],[11,0],[13,-2],[3,-4],[20,-29],[8,-4],[50,-8],[20,-4],[31,-5],[39,-6],[22,-4],[19,-2],[28,-3],[11,-4],[8,-1],[17,-3],[-11,-9],[-22,-22],[-9,-10],[-27,-31],[-2,-1],[-9,-12],[-5,-14],[-8,-21],[-1,-3],[-12,-18],[6,-13],[1,-2],[-6,-13],[-4,-11],[0,-1],[-4,-8],[0,-15],[-6,-9],[13,-4]],[[5362,4540],[-17,-17],[-7,-1],[-8,-12],[-30,2],[-10,11],[-25,0],[1,-4],[-5,-2],[-11,-13],[27,-5],[-9,-4],[-9,-12],[-22,-18],[-17,-13],[-12,-4],[-19,-8],[-8,-2],[-7,-6],[4,-11],[-10,-12],[7,-3],[-5,-1],[-3,-2],[-12,-5],[-5,-2],[-2,-2],[-4,-2],[-15,-10],[-12,-10]],[[6501,3889],[-12,10],[-16,13],[-9,8],[-41,36],[-12,9],[-5,5],[-26,23],[-13,10],[-36,31],[-22,19],[-11,15],[-11,24],[-11,19],[-6,13],[-15,28],[0,1],[0,1],[0,2],[-1,6],[0,6],[1,6],[19,13],[1,1],[10,6],[15,10],[9,6],[9,5]],[[7212,4264],[19,-8],[5,-23],[-35,-14],[51,-8],[12,-4],[-7,-3],[-13,-14],[-2,-8],[40,-12],[20,-6],[-12,-5],[-8,-8],[-22,-3],[-5,-1],[-1,-4],[0,-6],[4,-10],[-14,-21],[4,-3],[-33,0],[-18,23],[-10,14],[-47,3],[-63,5],[-17,-12],[-5,-2],[-4,0],[-29,11],[-18,0],[-6,-2],[-3,2],[-2,3],[-5,-1],[-1,5],[-7,-4],[-1,0],[-6,0],[-1,1],[-11,5],[-6,-3],[-4,-2],[-8,1],[-3,1],[-15,7],[-10,5],[-11,2],[0,-1],[-18,-3],[-8,-4],[-9,1],[-9,1],[-20,3],[-5,0],[-6,-4],[-4,-8],[-4,-3],[-10,-12],[-12,-9],[-62,35],[-4,1],[-3,0],[-25,-5],[1,-40],[4,-27],[33,-14],[29,-37],[21,-45],[5,-2],[2,-4],[28,-15],[31,-25],[8,-8],[4,-4],[13,-10],[20,-16],[15,-12],[14,-7],[13,-3],[2,0],[5,-2],[2,-5],[4,-16],[15,-12],[14,-11],[34,-26],[6,-15],[-26,-7],[28,-10],[20,4],[3,-2],[65,-40],[10,2],[22,-12],[2,-6],[4,-8],[13,-6],[0,-9],[0,-2],[1,-1],[5,-19],[1,-3],[-7,-17],[-5,-12],[23,-14],[-12,-10],[-19,3],[-8,-23],[-15,-39],[-19,-8]],[[7114,3562],[-15,10],[-85,39],[-49,21],[-11,7],[-147,67],[-30,-3],[-13,8],[5,14],[-13,6],[-18,12],[-19,11],[-12,8],[-37,23],[-10,6],[-28,18],[-30,18],[-52,32],[-27,16],[-22,14]],[[3821,3902],[3,76],[1,22],[7,97],[7,119],[1,66],[6,83],[8,0],[25,0],[13,0],[36,0],[40,0],[32,0],[74,0],[0,20],[0,66],[0,19]],[[4074,4470],[49,0],[21,0],[13,0],[94,0],[38,0],[66,0],[89,0],[28,-13],[109,-53],[1,-3],[7,-30],[1,-6],[4,-20]],[[4594,4345],[1,-7],[1,-12],[4,-30],[11,-106],[1,-28],[2,-12],[3,-43],[-2,-33],[-1,-8],[-22,-58],[-14,-36],[-16,-49],[-2,-80],[-22,7],[-49,-41],[54,-46],[24,-20],[14,-21]],[[4581,3722],[-23,-5],[-26,-3],[-52,5],[-9,-8],[-10,0],[-16,-2],[-46,21],[-8,18],[-5,0],[-27,0],[-18,13],[-24,4],[-19,8],[-19,0],[-22,7],[-19,5],[-2,0],[-29,-25],[-24,2],[-8,0],[-35,5],[-36,-5]],[[4104,3762],[-22,10],[-7,4],[-9,7],[-27,-3],[-32,9],[-12,4],[-19,5],[-22,7],[-22,6],[-37,6],[-19,1],[-3,37],[-4,-1],[-3,1],[-9,-6],[-9,6],[-16,4],[-4,6],[-7,5],[0,32]],[[5106,5040],[2,-1],[7,-3],[10,-5],[0,-1],[11,-9],[2,0],[10,-2],[-4,-3],[-1,-2],[-2,-1],[-6,-2],[6,-11],[16,-1],[1,-4],[5,-9],[5,-11],[0,-2],[-4,-3],[-14,-5],[-2,-2],[-4,-1],[-2,0],[-3,-4],[-1,-1],[-5,-2],[1,-6],[-6,-3],[-1,-2],[-2,-3],[-3,-8],[2,-2],[6,-14],[0,-2],[5,-2],[1,0],[2,-1],[2,-4],[2,-5],[18,-4],[8,-1],[-3,-4],[7,-3],[18,-8],[-2,-6],[-10,-6],[-4,-4],[-2,-4],[-7,-6],[1,-3],[2,-18]],[[5102,4834],[-25,12],[-2,2],[-2,0],[-1,1],[-10,-2],[-1,0],[-29,-2],[-22,-1],[2,4],[-1,4],[-4,5],[-6,2],[-2,2],[-9,3],[-4,5],[-5,2],[-16,4],[-7,3],[-1,0],[-21,10],[-8,0],[-14,0],[0,10],[2,20],[-50,-2],[-5,-1],[-8,-3],[-19,2],[-36,3],[-1,0],[4,27],[1,12],[-9,11],[-5,3],[-19,2],[-8,1],[-9,1],[-14,0],[-18,0],[-2,2],[0,10],[-3,6],[-2,3],[-6,2],[-7,2],[-7,5],[-5,-1],[-17,-4],[-3,3],[-13,13],[-2,2],[-20,27],[-39,-14],[-2,1],[-41,17],[0,2],[-10,31],[-6,11],[-51,3],[-40,2]],[[4444,5097],[0,3],[0,10],[0,3],[0,5],[0,18],[0,4],[0,2],[0,7],[0,8],[0,1]],[[9053,2301],[0,37],[0,94],[0,28],[0,13],[0,11],[0,35],[0,7],[0,8],[0,37],[0,61],[0,13],[0,27],[0,39]],[[9053,2711],[116,-4],[19,-2],[120,-3],[238,-12],[47,-2],[5,-1],[21,-1],[18,-1],[77,0],[106,0],[165,0],[-22,-58],[31,-57],[5,-97],[-76,-7],[-39,-9],[-29,-18],[-21,-19],[-21,-34],[-3,-14],[-2,-8],[-1,-10],[5,-29],[53,-77],[-11,-10],[-44,-2],[-8,-37],[-2,-12],[-31,-26],[-26,-20],[-4,1],[-19,-26],[-10,-26],[-2,-53],[-145,61],[-168,66],[-69,28],[-117,46],[-156,63]],[[3210,5542],[0,-18],[0,-6],[0,-1],[0,-11],[0,-2],[0,-2],[0,-27],[0,-3],[0,-2],[0,-13],[0,-16],[0,-1],[0,-4],[0,-9],[0,-1],[0,-2],[0,-14],[0,-4],[0,-2],[0,-15],[0,-32],[0,-2],[0,-11],[0,-18],[0,-1],[0,-21],[0,-14],[-29,-13],[-1,-1],[-1,-1],[-22,-11],[-4,-1],[-1,-1],[-45,-22],[-18,-9],[-1,-1],[-3,-1],[-24,-13],[-26,-13],[-25,-12],[-26,-14],[-37,-19],[-22,-12],[-31,-16],[-13,-7],[-2,-1],[-10,-5],[-19,-9],[-52,-29]],[[2798,5079],[-82,0],[-576,0],[-83,0],[-246,0],[-165,0],[0,40],[0,39],[0,40],[0,40],[0,10],[0,29],[0,40],[0,40],[0,39],[0,40],[0,40],[0,30],[0,9],[0,40],[247,29],[466,50],[110,11]],[[8896,7938],[-79,-12],[-25,-4],[64,-6],[-57,-59],[144,-64],[110,-64],[-151,-116],[88,-42],[23,-48],[18,-37],[14,-23],[35,-56],[-58,-14],[-31,-83],[-1,-20],[76,-37],[69,-74],[-80,-79],[191,-78],[15,-15],[38,-24],[9,-8],[-73,-83],[-137,-80],[-32,-19],[-22,-12],[-49,-28],[-33,-18],[-55,-29],[-59,-28],[-69,-34],[-28,-18],[-85,-64],[-4,-2],[-25,-16],[-29,-4],[-13,-2],[-45,-3],[-18,-2],[-20,-2],[-9,-1],[-18,-2],[-72,-25],[-41,-14]],[[7571,6349],[-8,4],[-6,3],[-16,9],[-1,1],[-3,1],[-2,1],[-6,4],[-3,1],[-6,4],[-2,1],[-22,11],[-18,10],[-47,25],[-20,10],[-2,1],[-1,1],[-2,1],[-2,1],[-10,7],[-8,5],[-12,9],[-13,9],[-9,6],[-8,5],[-26,18],[-9,6],[-1,0],[-1,1],[-15,10],[-6,4],[-10,7],[-12,7],[-6,5],[-2,1],[5,9],[3,8],[3,9],[0,2],[4,16],[10,36],[10,48],[3,10],[17,48],[11,38],[0,2],[2,8],[4,8],[3,7],[15,38],[16,30],[15,33],[1,3],[1,8],[29,58],[26,53],[67,40],[6,3],[9,5],[36,7],[25,4],[22,4],[3,0],[20,3],[21,4],[11,1],[13,10],[38,29],[1,0],[4,4],[18,11],[3,3],[10,8],[8,7],[5,3],[7,5],[72,52],[19,13],[5,4],[10,7],[4,3],[17,10],[7,3],[67,48],[32,22],[26,18],[9,6],[21,13],[20,13],[18,12],[2,10],[-2,27],[-10,28],[-23,24],[-20,13],[-3,4],[-13,11],[-2,1],[-9,7],[6,10],[9,14],[4,8],[5,9],[15,25],[16,11],[-7,6],[-18,15],[-20,16],[-17,28],[26,19],[3,14],[-48,43],[14,33],[8,11],[-22,9],[-26,17],[-3,1],[-35,19],[-100,29],[-183,52],[-35,10],[-103,36]],[[7512,6255],[-10,-17],[-14,-22],[-13,-22],[-23,-38],[-35,-59],[-38,-66],[-44,-20],[-81,-39],[-32,-15],[-30,-15],[-31,-15]],[[7161,5927],[-37,-18],[-36,-18],[-7,-3]],[[7081,5888],[-53,-26],[-25,-13]],[[4115,6986],[0,37],[0,36],[0,4],[0,79],[0,80],[0,79],[0,159],[0,79],[0,79],[0,80],[0,79],[0,79],[0,80],[0,53]],[[4115,7989],[0,26],[0,79],[0,80],[0,79],[0,159],[0,61],[0,98],[0,158]],[[4115,8729],[0,159],[0,185],[0,132],[0,159]],[[4115,9364],[0,80],[0,79],[0,159],[0,158],[0,159]],[[4115,9999],[823,0],[823,0],[823,0],[823,0],[823,0]],[[8230,9999],[823,0],[0,-14],[0,-13],[0,-528],[0,-80],[0,-79],[0,-80],[0,-79],[0,-79],[0,-80],[0,-79],[0,-79],[0,-80],[0,-79],[0,-79],[0,-80],[-2,-61],[2,-7],[0,-13],[0,-104],[0,-34],[0,-16],[0,-3]],[[2798,4735],[70,15],[59,13],[177,36],[46,9],[98,19],[39,7],[5,1],[14,2],[76,15],[20,3],[28,5],[26,5],[30,5],[48,8],[44,8],[14,3],[2,0],[16,2],[5,1],[6,2],[81,13],[23,3],[21,4],[11,2],[2,0],[9,1],[17,3],[1,0],[4,0],[15,0],[4,0],[2,0],[10,0],[11,0],[4,0],[30,0],[2,0],[20,0],[21,0],[10,0],[22,0],[9,0],[28,0],[49,0],[27,0],[20,0]],[[4074,4920],[0,-29],[0,-46],[0,-13],[0,-44],[0,-35],[0,-3],[0,-14],[0,-16],[0,-13],[0,-17],[0,-3],[0,-11],[0,-16],[0,-30],[0,-38],[0,-13],[0,-69],[0,-40]],[[3821,3902],[-29,10],[-9,3],[-8,3],[-17,5],[-58,19],[-34,12],[-2,0],[-17,6],[-12,4],[-39,12],[-122,39],[-15,5],[-41,8],[-33,5],[-28,5]],[[3357,4038],[-57,10],[-31,6],[-80,13],[-35,5],[-178,28],[-178,27]],[[2798,4127],[0,79],[0,79],[0,80],[0,79],[0,40],[0,39],[0,52],[0,28],[0,50],[0,27],[0,2],[0,12],[0,41]],[[1975,3809],[0,80],[0,79],[0,79],[0,80],[14,0],[55,0],[13,0],[36,0],[47,0],[71,0],[11,0],[82,0],[83,0],[82,0],[27,0],[55,0],[61,0],[21,0],[42,0],[123,0]],[[4104,3762],[-37,-96],[-17,-50],[-37,-106],[-25,-65],[-26,-75],[-7,-23],[-5,-14],[-6,-14],[-35,-121],[-2,-20],[-5,-3],[-7,-27],[-4,-19],[-16,-70],[-17,-58],[-1,-4],[-34,-126],[-10,-38],[-5,-12],[-4,-13],[-35,-136]],[[3769,2672],[-3,0],[-93,0],[-60,0],[-31,0],[-4,0],[-28,0],[-2,0],[-9,0],[-34,0],[-42,0],[-7,0],[-61,0],[-87,0],[-36,0],[-4,0],[-86,0],[-5,0],[-42,0],[-47,0],[-14,0],[-21,0],[-30,0],[-14,0],[-5,0],[-41,0],[-63,0],[0,21]],[[2900,2693],[0,9],[0,102],[0,16],[0,10],[0,14],[0,19],[0,6],[0,8],[-8,19],[1,16],[-2,11],[-11,26],[31,39],[11,11],[20,17],[4,3],[17,10],[-4,6],[4,4],[-28,32],[-22,24],[3,8],[6,13],[4,16],[12,11],[13,15],[16,16],[3,4],[-1,2],[-1,3],[-1,3],[-6,5],[-1,2]],[[2960,3193],[-2,-1],[-5,2],[-15,6],[-12,9],[-13,18],[-11,31],[-3,2],[-19,20],[83,0],[0,3],[20,30],[0,3],[0,16],[-19,21],[34,38],[-5,5],[3,19],[12,17],[-7,7],[-8,16],[-3,10],[9,47],[64,40],[18,16],[5,16],[-20,15],[-21,15],[-11,26],[-10,1],[-80,-1],[-1,0],[-24,-13],[-34,-3],[-22,4],[-28,8],[-50,-15],[-25,52],[-55,-12],[-46,-32],[-13,1],[-72,9],[-6,1],[-99,10],[-11,4],[-123,41],[-195,63],[-83,25],[-82,26]],[[5362,4540],[17,-6],[4,-5],[12,3],[9,4],[2,0],[1,1],[8,0],[1,-1],[6,-5],[23,2],[19,9],[13,-2],[30,-5],[11,9],[0,2],[-18,6],[14,14],[21,0],[43,-18],[18,3],[6,1],[55,-12],[13,-3]],[[5838,4423],[0,-27],[2,-21],[-23,-3],[-21,14],[-2,-2],[-9,-1],[-14,-18],[-3,-4],[-24,-10],[-57,-17],[-5,5],[-2,2],[-24,25],[-15,-4],[1,-11],[1,-17],[1,-16],[-10,-8],[-3,-2],[-29,-19],[6,-24],[-6,-1],[-11,-2],[-10,9],[-10,13],[-30,18],[-16,10],[-11,9],[-4,3],[-3,2],[-2,3],[0,1],[-2,29],[-24,-8],[5,-4],[-15,-9],[-23,-11],[-1,0],[9,-13],[-18,-16],[-10,-13],[-10,-1],[-5,-6],[-1,-2],[-3,-3],[-21,2],[-29,6],[-16,-8],[-58,-7],[-8,3]],[[5275,4269],[-10,17],[-30,22],[1,15],[-5,16],[-6,1],[-14,3],[-21,-1],[-9,4],[-30,-10],[-13,-18],[-22,-3],[-13,-7],[-5,0],[0,8],[25,22],[-9,14],[4,17],[-1,3]],[[4581,3722],[12,2],[13,3],[24,-8],[6,0],[2,0],[4,0],[28,-9],[21,-7],[54,-11],[15,-7],[13,-1],[6,-2],[13,-4],[36,-12],[13,-3],[4,-2],[38,-11],[0,-42],[0,-50],[0,-57],[0,-32],[0,-48],[0,-9],[0,-17],[0,-17],[0,-16],[0,-19],[0,-5],[0,-12],[0,-38],[0,-21],[3,-93]],[[4886,3174],[-121,-82],[-33,-24],[-33,-11],[-21,-8],[-36,-12],[-8,-3],[-93,-34],[-43,-16],[-33,-13],[-103,-44],[-62,-27],[-169,-56],[-20,-8],[-165,-66],[-18,-8],[-59,-24],[-87,-58],[4,-8],[-17,0]],[[8498,5822],[-13,-35],[-13,-52],[-113,-44],[-8,-26],[4,-19],[-24,-16],[-5,-13],[-5,-10],[41,-14],[-4,-12],[-38,-1],[-4,22],[-42,-3],[-7,-2],[-5,-8],[-21,-4],[-49,-11],[6,-11],[-20,-11],[-89,-4],[-41,-1],[-25,-3]],[[7910,5604],[-50,54],[-3,46],[-23,18],[-145,14],[-46,15],[-80,8],[-5,2],[-103,28],[-75,21],[-76,20],[-8,2],[-39,10],[-176,46]],[[7161,5927],[64,-7],[60,-7],[4,-1],[47,-6],[84,-10],[17,-3],[7,0],[44,-6],[28,-4],[14,0],[52,0],[5,1],[22,13],[8,4],[6,4],[20,6],[20,10],[8,3],[40,7],[16,1],[9,6],[27,1],[31,-4],[43,-2],[106,-1],[28,-2],[54,1],[14,-5],[31,-6],[6,-3],[72,-1],[2,1],[19,14],[43,13],[11,-13],[18,-20],[15,-11],[34,-3],[34,-3],[48,-22],[73,-31],[53,-19]],[[7242,3156],[0,65],[0,16],[0,26],[0,41],[0,18],[0,20],[0,30],[0,17],[0,10]],[[7242,3399],[74,-66],[22,-4],[28,-4],[15,-8],[22,-10],[4,-24],[19,-3],[15,-4],[6,10],[9,18],[11,0],[-14,26],[18,0],[2,12],[11,2],[21,1],[11,4],[7,27],[14,27],[27,6],[13,17],[2,5],[-15,34],[7,6],[20,-2],[39,3],[12,8],[44,1],[14,0],[22,23],[14,9],[5,0],[25,5],[4,1],[38,-9],[7,0],[6,2],[17,8],[23,11],[5,13],[32,3]],[[7898,3547],[49,6],[28,3],[9,-3],[21,-3],[66,14],[14,14],[8,0],[17,6],[7,-9],[14,3],[10,-2],[23,-13],[16,-4],[17,-2],[12,-2],[29,-5],[7,-3],[4,0],[20,-15],[15,-2],[25,8],[9,-1],[6,6],[9,-2],[5,1],[10,-3],[3,4],[16,4],[9,-6],[18,4],[22,5],[6,8],[-17,50],[39,0]],[[8444,3608],[41,-16],[8,-47],[-47,-14],[-4,-29],[4,-18],[-11,-11],[-57,-34],[0,-16],[-3,-11],[6,-18],[-59,-45],[10,-31],[43,-72],[44,-14],[36,11],[11,-3],[10,-13],[6,-8],[-1,-3],[37,-42],[-20,-18],[-32,-8],[-20,-37],[-2,-19],[-17,-21],[-5,-16],[13,-13],[9,-9],[37,-20],[57,-4],[21,-1],[5,-11],[2,-6],[7,-23],[-18,-8]],[[8555,2960],[1,-4],[22,-30],[-3,-48],[13,-13],[37,-29],[-28,-24],[21,-17],[29,-7],[30,11],[24,10],[9,-5],[13,-27],[9,-2],[26,8],[45,2],[11,-26],[44,-26],[71,-22],[11,16],[30,-2],[13,-4],[22,-10],[16,-1],[32,1]],[[9053,2301],[-206,34],[-80,14],[-106,20],[-47,4],[-28,8],[-57,0],[-217,0],[-58,0],[-115,0],[-47,0],[-96,53]],[[7242,2778],[0,42],[0,32],[0,68],[0,56],[0,94],[0,28],[0,33],[0,25]],[[2900,2693],[-39,0],[-44,0],[-19,0],[-52,0],[-104,0],[-50,0],[-20,0],[-28,0],[-5,0],[-74,0],[-117,0],[-117,0],[-91,0],[-52,-67],[-65,-87],[-118,-158],[-115,-159],[-81,-119],[-30,-40],[-157,-79]],[[1522,1984],[-46,-13],[-86,-2],[-40,7],[-23,5],[-9,3],[-70,24],[-6,5]],[[1242,2013],[-43,24],[-68,79],[-45,103],[55,150],[44,38],[258,215],[139,107],[64,49],[0,79],[0,159],[0,79],[0,79],[0,80],[0,79],[0,159],[0,158],[165,80],[164,79]],[[7846,4000],[59,-16],[-29,-37],[22,-11],[44,5],[40,-3],[32,-3],[18,-2],[5,-1],[10,-2],[18,-4],[15,-3],[24,-5],[19,6],[30,7],[29,-8],[23,-3],[47,0],[30,-8],[7,-2],[9,-1],[22,1],[3,2],[12,6],[1,2],[28,8],[23,18],[3,1],[4,2],[36,16],[46,9],[13,3],[41,4],[27,8],[5,1],[43,-4],[22,-15],[23,0],[17,5],[15,-16],[7,2],[23,6],[11,-27],[39,-11],[35,-4],[9,0],[21,1],[29,-7],[32,-5],[5,11],[19,0],[1,0],[48,-2],[32,-1],[147,-5]],[[9140,3918],[18,-69],[18,-72],[-25,-9],[-55,-21],[-41,-15],[-24,-8],[-40,-16],[-43,-16],[-15,-6],[-21,-8],[-24,-9],[-38,-6],[-47,-10],[-27,-5],[-52,0],[-25,2],[-12,-5],[-34,-10],[-25,14],[-23,12],[-11,0],[-13,3],[-21,-7],[-40,-11],[-24,2],[-8,-18],[-44,-22]],[[7898,3547],[-9,19],[17,39],[-11,8],[-14,32],[-45,21],[-1,3],[-40,31],[31,17],[1,9],[-14,14],[-3,5],[-1,32],[8,8],[8,3],[8,4],[8,-2],[18,2],[8,13],[16,10],[6,5],[9,7],[1,2],[1,5],[0,2],[-28,25],[-10,4],[0,4],[-16,9],[-24,10],[-6,11],[2,11],[-13,8],[-9,18],[1,5],[3,13],[7,14],[30,13],[9,19]],[[6008,2778],[0,17],[0,2],[0,34],[0,56],[-1,49],[-33,15],[-16,8],[-14,5],[-2,1],[-23,10],[-9,4],[-20,8],[-26,11],[-56,24],[-82,34],[-121,49],[-15,6],[-12,5],[-4,2],[-60,24],[-82,32]],[[5432,3174],[0,24],[0,10],[0,77],[0,48],[0,56],[0,11],[0,30],[0,21],[0,19],[0,8],[0,14],[26,25],[20,20],[8,8],[19,0],[20,0],[20,0],[20,0],[37,0],[12,0],[26,0],[8,0],[30,0],[20,0],[22,0],[0,53],[0,10],[0,3],[0,6],[0,23],[0,62],[0,14],[0,14],[0,19],[0,32],[0,21],[0,34]],[[5720,3836],[51,37],[39,30],[36,4],[26,4],[6,1],[10,2],[65,9],[56,-4],[9,-1],[12,-1],[48,-4],[183,-18],[48,-4]],[[6309,3891],[-6,-24],[-35,-71],[6,-6],[52,-55],[2,-2],[14,-16],[11,-11],[1,-1],[22,-25],[3,-3],[51,-56],[52,-58],[27,-9],[43,-14],[13,-6],[38,-11],[9,-14],[10,-16],[30,-50],[9,-14],[25,-41],[20,-34],[33,-56],[16,-26],[34,-61],[28,-25],[140,-66],[19,7],[22,8],[244,21]],[[6309,3891],[54,-1],[138,-1]],[[7114,3562],[55,-24],[51,-25],[14,-38],[8,-23],[0,-24],[0,-29]],[[7846,4000],[-19,17],[14,45],[-31,5],[-151,23],[-16,13],[-4,22],[-17,40],[-27,22],[-86,75],[-59,43]],[[7879,4595],[38,10],[40,2],[143,-19],[61,8],[49,-36],[27,1],[20,21],[80,8],[11,2],[10,1],[29,2],[85,43],[25,4],[34,-2],[18,-6],[5,-9],[10,-1],[0,-5],[11,-13],[10,-5],[-1,-3],[4,-3],[-3,-4],[8,-2],[0,-4],[4,-8],[0,-3],[3,-8],[7,-2],[-4,-5],[24,-22],[7,-9],[2,-6],[14,-10],[5,-3],[-1,-13],[11,-3],[19,-8],[15,-14],[1,-10],[41,-29],[2,-1],[8,-22],[1,-4],[12,-20],[-4,-18],[2,-3],[0,-3],[3,-5],[-2,-7],[-6,-4],[0,-10],[-9,-5],[-6,-8],[2,-6],[-4,-23],[-1,-2],[0,-15],[11,-48],[-12,-5],[11,-10],[8,-11],[19,-20],[2,-3],[64,-17],[64,24],[64,7],[28,-32],[22,-5],[27,-6],[14,-27],[5,-10],[11,-23],[3,-9],[10,-17],[6,-17],[22,-39],[4,-14],[3,-12],[11,-45],[4,-19]],[[1522,1984],[74,-32],[73,-31],[73,-32],[70,-31],[23,-11],[46,-20],[70,-32],[71,-33],[35,-16],[-12,-43],[-24,-76],[-16,-55],[-30,-104],[-27,-92],[94,0],[224,0],[118,0],[226,0],[78,0],[0,-53],[0,-212],[-416,0],[-132,0],[0,-405],[-102,-5],[-63,-40],[-27,-68],[27,-223],[-159,0],[-170,0],[-173,0],[-134,0],[-11,0],[-17,-66],[0,-24],[-118,-95],[-41,-40],[-164,-145],[-121,93],[-44,39],[-115,85],[-210,156],[-268,249],[-230,172],[0,158],[0,159],[0,159]],[[0,1270],[0,158],[0,159],[0,159],[165,0],[164,0],[165,0],[164,0],[101,0],[64,0],[419,267]],[[8622,6126],[52,-8],[-2,-26],[35,-100],[38,-39],[11,-23],[-8,-31],[-54,-20],[-42,-41],[-97,5],[-57,-21]],[[4594,4345],[58,20],[58,0],[129,0],[23,0],[22,0],[26,0]],[[5275,4269],[-30,-23],[29,-43],[-2,-2],[-2,-2],[11,-8],[-21,-34],[-52,-12],[22,-17],[20,-27],[19,-6],[5,-23],[-7,-11],[-14,-22],[15,-33],[12,-4],[34,-12],[56,1],[14,-13],[-7,-10],[-14,-16],[-8,-20],[24,-1],[5,-5],[21,-5],[80,-21],[36,-11],[9,-2],[19,-4],[14,-4],[3,-1],[23,-7],[36,-9],[95,-26]],[[5432,3174],[-61,0],[-11,0],[-39,0],[-49,0],[-52,0],[-76,0],[-27,0],[-118,0],[-61,0],[-52,0]],[[4444,5097],[-44,-9],[-10,-2],[-9,-2],[-10,-2],[-15,-3],[0,-5],[0,-2],[0,-6],[0,-2],[0,-8],[0,-12],[0,-5],[0,-13],[-2,-1],[-8,-2],[-6,-2],[-23,-10],[-21,-6],[-6,-3],[-11,-2],[-5,-4],[-14,-5],[-10,-4],[-8,-3],[-22,-8],[-32,-12],[-30,-11],[-27,-12],[-16,-5],[-18,-7],[-23,-9]],[[2798,4735],[0,26],[0,27],[0,13],[0,10],[0,30],[0,13],[0,66],[0,12],[0,28],[0,18],[0,47],[0,14],[0,40]],[[6318,4215],[19,12],[5,0],[33,-3],[17,-6],[14,9],[-20,19],[-16,5],[-18,11],[7,14],[5,8],[-10,3],[-1,-4],[-15,1],[16,20],[15,11],[-14,1],[-23,4],[-11,14],[21,17],[16,4],[12,4],[0,4],[2,5]],[[6372,4368],[20,-1],[13,1],[8,-4],[11,-1],[9,-1],[5,-1],[10,-7],[20,-1],[5,0],[6,1],[4,1],[4,1],[4,0],[2,-4],[11,0],[8,-7],[5,10],[5,2],[12,4],[8,3],[5,3],[9,6],[4,6],[2,2],[9,1],[20,7],[6,-1],[21,0],[7,-1],[18,2],[10,1],[7,-7],[8,0],[6,5],[0,3],[5,3],[3,0],[5,-1],[4,5],[23,0],[3,-1],[9,3],[21,-6],[8,-4],[-5,9],[-2,14],[-1,4],[20,6]],[[6767,4423],[42,-3],[9,-26],[-1,-7],[19,-22]],[[6836,4365],[-27,11],[-21,-11],[7,-16],[-2,-4],[-33,5],[-5,-6],[-11,-10],[-8,-3],[-16,-3],[-8,-7],[-29,-4],[4,-5],[6,-15],[6,-16],[-3,-17],[-4,-4],[-27,-5],[-11,-2],[-12,-4],[-1,-14],[0,-3],[0,-5],[-8,-9],[5,-20],[-20,3],[-33,4],[-23,-4],[-11,4],[-10,5],[-26,18],[-6,-2],[-12,-15],[-11,-5],[-3,-1],[-6,-2],[-2,0],[-6,2],[-4,-1],[-2,-1],[-2,4],[-2,0],[-3,-1],[-3,-5],[-12,1],[-20,8],[-2,-1],[-37,-9],[-10,1],[-16,0],[-5,1],[-7,3],[-7,2],[-13,6],[-6,2]],[[7829,4776],[-19,-22],[-12,-21],[-4,-8],[-15,-19],[-3,-3],[-14,-15],[-1,-11],[-1,-1],[3,-5]],[[7763,4671],[-25,-7],[-14,-4],[-24,-3],[-19,9],[-9,18],[-27,11],[-16,-3],[-10,-6],[-18,-1],[-12,-4],[-60,12],[-18,-3],[-20,-5],[-4,-5],[-7,-6],[-5,-8],[-7,-12],[-14,-9],[-38,-15],[-27,-2],[-37,14],[-11,-3],[-33,-23],[-6,1],[-8,0],[-11,-3],[-20,0],[-48,-4],[-3,-4],[-7,-13],[4,-18],[-11,-3],[-1,-2],[-3,-2],[-2,0],[-16,-2],[-22,-1],[-22,-4],[-22,0],[-12,3],[-2,0],[-8,0],[-49,-1],[-17,6],[-8,5],[-31,16],[-9,4],[-7,0],[-5,6],[-11,6],[-12,-2]],[[6939,4604],[-13,3],[1,6],[0,7],[-13,3],[-5,7],[-1,1],[0,2],[-2,4],[-2,4],[-3,5],[-3,5],[-11,11],[-1,1],[3,8],[-1,3],[15,26]],[[6903,4700],[23,27],[15,11],[1,1],[31,-7],[8,1],[20,0],[12,3],[11,3],[6,1],[31,17],[3,5],[5,3],[4,0],[15,2],[4,5],[4,10],[2,4],[-1,3],[4,4],[2,3],[-1,2],[3,2],[3,7],[16,3],[15,3],[8,11],[4,0],[16,6],[3,12],[23,-2],[25,3]],[[7218,4843],[18,0],[3,-20],[36,4],[10,19],[34,13],[30,-25],[-2,-5],[25,-8],[2,-11],[8,-17],[25,4],[16,-1],[13,15],[13,6],[73,11],[38,-20],[13,7],[14,5],[17,6],[5,2],[17,5],[18,-6],[185,-51]],[[7763,4671],[11,-3],[14,-11],[46,-33],[14,-6],[25,3],[6,-26]],[[7879,4595],[-70,-25],[-40,-25],[-15,-10],[-15,-28],[-26,-24],[0,-6],[-3,-4],[-6,-4],[-5,-6],[-2,-3],[-11,-7],[-3,-7],[-10,-23],[-7,-2],[-10,-23],[-3,-4],[-14,-8],[-16,-3],[-2,-5],[-6,-11],[0,-3],[0,-10],[-2,-2],[-9,-8],[-11,-11],[-5,-6],[-3,-2],[-38,5],[-24,-19],[-50,-1],[-23,-5]],[[7450,4305],[-28,6],[-25,2],[-12,-4],[-17,-3],[-6,6],[-5,3],[-16,-2],[-10,-3],[-10,-9],[-20,-8],[-12,-8],[-33,-5],[-26,-6],[-13,-5],[-5,-5]],[[7212,4264],[-66,-19],[-8,1],[-39,1],[-44,2],[-49,26],[-27,2],[-17,7],[-19,19],[0,1],[-6,8],[-30,11],[-12,9],[-42,28],[-17,5]],[[6767,4423],[18,21],[21,23],[14,15],[6,7],[5,5],[6,7],[10,11],[3,3],[3,4],[11,12],[16,6],[5,2],[30,13],[12,4],[2,8],[0,2],[3,10],[4,14],[0,2],[2,8],[1,4]],[[4115,6666],[0,-159],[2,-1],[108,-56],[161,-88],[15,-8],[69,-38],[73,-44],[37,-20],[29,-15],[26,-19],[70,-41],[4,-2],[73,-45],[14,-8],[59,-38],[83,-53]],[[4938,6031],[0,-66],[0,-7],[0,-19],[0,-27],[0,-31],[0,-16],[0,-2],[0,-23],[0,-30],[0,-4],[0,-15],[0,-16],[0,-7],[0,-6],[0,-9],[0,-11],[0,-8],[0,-7],[0,-13]],[[4938,5714],[-77,-80],[-58,-62],[-16,-17],[-19,-21],[-4,-4],[-39,-43],[-10,-11],[-5,-6],[-9,-10],[-22,-24],[-10,-12],[-10,-12],[-8,-9],[-16,-18],[-2,-2],[-13,-15],[-12,-14],[-16,-18],[-11,-14],[-9,-9],[-14,-17],[-7,-8],[-1,-2],[-8,-9],[-2,-2],[-15,-18],[-1,-1],[-1,-2],[-20,-24],[-11,-13],[-11,-14],[-9,-11],[-1,-1],[-2,-2],[-7,-9],[-9,-11],[-9,-11]],[[4444,5158],[0,-1],[0,-8],[0,-7],[0,-2],[0,-4],[0,-18],[0,-5],[0,-3],[0,-10],[0,-3]],[[4444,5097],[-44,-9],[-10,-2],[-9,-2],[-10,-2],[-15,-3],[0,-5],[0,-2],[0,-6],[0,-2],[0,-8],[0,-12],[0,-5],[0,-13],[-2,-1],[-8,-2],[-6,-2],[-23,-10],[-21,-6],[-6,-3],[-11,-2],[-5,-4],[-14,-5],[-10,-4],[-8,-3],[-22,-8],[-32,-12],[-30,-11],[-27,-12],[-16,-5],[-18,-7],[-23,-9],[-20,0],[-27,0],[-49,0],[-28,0],[-9,0],[-22,0],[-10,0],[-21,0],[-20,0],[-2,0],[-30,0],[-4,0],[-11,0],[-10,0],[-2,0],[-4,0],[-15,0],[-4,0],[-1,0],[-17,-3],[-9,-1],[-2,0],[-11,-2],[-21,-4],[-23,-3],[-81,-13],[-6,-2],[-5,-1],[-16,-2],[-2,0],[-14,-3],[-44,-8],[-48,-8],[-30,-5],[-26,-5],[-28,-5],[-20,-3],[-76,-15],[-14,-2],[-5,-1],[-39,-7],[-98,-19],[-46,-9],[-177,-36],[-59,-13],[-70,-15]],[[2798,4735],[0,26],[0,27],[0,13],[0,10],[0,30],[0,13],[0,66],[0,12],[0,28],[0,18],[0,47],[0,14],[0,40]],[[2798,5079],[52,29],[19,9],[10,5],[2,1],[13,7],[31,16],[22,12],[37,19],[26,14],[25,12],[26,13],[24,13],[3,1],[1,1],[18,9],[45,22],[1,1],[4,1],[22,11],[1,1],[1,1],[29,13],[0,14],[0,21],[0,1],[0,18],[0,11],[0,2],[0,32],[0,15],[0,2],[0,4],[0,14],[0,2],[0,1],[0,9],[0,4],[0,1],[0,16],[0,13],[0,2],[0,3],[0,27],[0,2],[0,2],[0,11],[0,1],[0,6],[0,18],[-40,7],[-49,10],[-5,1],[-22,4],[-11,2],[-23,4],[-40,7],[-19,4],[-11,2],[-12,2],[-36,6],[-44,8],[-51,9],[-31,5],[-14,3],[-31,5],[10,8],[8,5],[27,20],[8,6],[32,23],[60,41],[15,11],[23,16],[11,8],[8,6],[3,2],[-68,13],[-94,-8],[-27,-3],[-30,-2],[-22,-19],[-12,-6],[-15,-11],[-32,-25],[-10,-7],[-24,-19],[-100,-22],[-73,-13]],[[2469,5645],[0,5],[0,19],[0,5],[0,40],[0,18],[0,20],[0,41],[0,27],[0,13],[0,3],[0,8],[0,28],[0,15],[0,7],[0,18],[0,2],[0,11],[0,1],[0,17],[0,9],[0,13],[0,1],[0,12],[0,1],[0,15],[0,37],[0,3],[0,37],[0,3],[0,10],[0,11],[0,10],[0,6],[0,7],[0,32],[0,3],[0,6],[0,28],[0,3],[0,16],[0,24],[0,37],[0,2],[0,24],[0,3],[0,47],[0,2],[0,1],[0,3],[0,26],[0,26],[0,21],[0,3],[0,3],[0,76],[0,3],[0,76],[0,4],[0,26],[0,53],[318,0],[150,0],[26,0],[82,0],[3,0],[67,0],[12,0],[83,0],[58,0],[51,0],[41,0],[96,0],[354,0],[305,0]],[[7512,6255],[22,34],[28,44],[9,16]],[[7571,6349],[125,29],[31,7],[32,8],[6,1],[94,21],[10,3],[20,4],[1,0],[8,2],[28,6],[108,24],[11,2],[19,4],[29,6],[47,9],[34,8],[31,6],[24,1],[6,0],[2,0],[34,2],[13,1],[15,-1],[27,-1],[5,0],[7,-1],[34,-1]],[[8372,6489],[18,-3],[274,-40],[67,-23],[9,-2],[16,-11],[-120,-86],[-9,-23],[17,-59],[17,-46],[32,-22],[-42,-11],[-29,-37]],[[8622,6126],[-26,0],[-68,-2],[-35,-10],[-35,8],[-78,45],[-153,25],[-86,-14],[-27,-4],[-14,0],[-49,0],[-52,0],[8,-19],[-11,-18],[-29,-12],[-8,0],[-29,-1],[-30,19],[-15,12],[-19,15],[-14,10],[-20,-2],[-11,-3],[-39,-13],[-29,-8],[-31,-4],[-12,2],[-21,4],[-9,9],[-2,2],[-6,6],[-11,20],[-10,15],[-139,47]],[[8896,7938],[-35,14],[0,4],[0,14],[82,42],[-16,15],[-9,11],[-8,9],[-40,6],[-16,2],[-43,7],[-33,14],[-27,5],[-26,29],[-1,1],[-70,-5],[-90,-25],[-40,6],[-48,-6],[-12,-1],[-32,-19],[-14,-5],[-27,-10],[-10,-4],[-27,-54],[-26,-52],[-23,-14],[-25,-15],[-70,-41],[-46,12],[-99,25],[-25,6],[-41,-12],[-46,-15],[-61,5],[-96,6],[-71,53],[-23,17],[-76,23],[-17,-17],[-24,-25],[-88,1]],[[7497,7945],[-35,-20],[0,-8],[-2,-14],[-2,-4],[-55,-33],[46,-11],[-49,-22],[-7,1],[-123,20],[-12,2],[-78,1],[-34,13],[-48,-8],[-3,-17],[-1,-3],[10,-32],[-43,-38],[-43,13],[-33,5],[-26,6],[-29,-15],[-13,-3],[-6,-2],[-40,-13],[-62,-59],[-34,-4],[-9,-9],[37,-31],[14,-31],[-19,-11],[-25,-13],[-28,-13],[-17,-8],[-4,-3],[-29,-20],[-43,-22],[8,-27],[6,-10],[-17,-2],[-52,-14],[-7,-2],[-72,-3],[-11,0],[11,-53],[-3,-8],[-11,-26],[-1,-5],[-2,-6],[-13,-40],[-20,-26],[-56,-41],[-34,-27],[-5,-4],[-2,-1],[-7,-7],[11,-7],[34,-8],[29,-6],[9,-42],[-39,-32],[-23,6],[-32,3],[-37,4],[-30,-1],[-31,-1],[-4,-2],[-28,-15],[-106,-57],[14,-21],[-8,-6],[-19,-13],[-5,-3],[-9,-8],[41,-45],[-20,-10],[-7,-3],[-6,-39],[20,-27],[2,-10],[8,-12],[5,-7],[8,-8],[-10,-26],[-5,-16],[-1,-14],[1,-20],[0,-18],[20,-6],[40,-11],[14,-11],[27,-21],[-19,-34],[-79,-24],[9,-13],[10,-13],[7,-16],[35,-35],[-4,-22],[-14,-11],[0,-1],[6,-19],[-6,-13],[-18,-14],[-36,-18],[-12,-1],[-8,0],[-5,0],[-3,1],[-14,-2],[-14,-8],[16,-7],[-2,-14],[-9,-8],[-13,-1],[-13,-7],[0,-5],[4,-8],[11,-24],[4,-8],[-8,-31],[-17,-35],[-33,-3],[-19,36],[-18,-3],[-20,-12],[-25,-9],[-23,-4],[-18,-4],[-18,-16],[-2,-7],[-4,-11],[-7,-18],[-5,-13]],[[5843,6269],[-47,-21],[-11,-5],[-3,-2],[-20,-9],[-22,-10],[-14,-7],[-28,-13],[-5,-2],[-10,-5],[-5,-2],[-7,-3],[-3,-2],[-34,-16],[-7,-3],[-22,-11],[-41,-20],[-3,-1],[-7,-3],[-13,-7],[-15,-7],[-86,-43],[-25,-12],[-48,-25],[-18,-9],[-7,0],[-19,0],[-19,0],[-48,0],[-17,0],[-4,0],[-13,0],[-5,0],[-40,0],[-75,0],[-5,0],[-32,0],[-14,0],[-18,0],[-12,0],[-54,0],[-29,0]],[[4115,6666],[0,34],[0,45],[0,5],[0,75],[0,69],[0,89],[0,3],[0,37],[0,36],[0,4],[0,79],[0,80],[0,79],[0,159],[0,79],[0,79],[0,80],[0,79],[0,79],[0,80],[0,53]],[[4115,7989],[0,26],[0,79],[0,80],[0,79],[0,159],[0,61],[0,98],[0,158]],[[4115,8729],[0,159],[0,185],[0,132],[0,159]],[[4115,9364],[0,80],[0,79],[0,159],[0,158],[0,159]],[[4115,9999],[823,0],[823,0],[823,0],[823,0],[823,0]],[[8230,9999],[823,0],[0,-14],[0,-13],[0,-528],[0,-80],[0,-79],[0,-80],[0,-79],[0,-79],[0,-80],[0,-79],[0,-79],[0,-80],[0,-79],[0,-79],[0,-80],[-2,-61],[2,-7],[0,-13],[0,-104],[0,-34],[0,-16],[0,-3],[149,-52],[133,-48],[-28,-17],[-50,-31],[-18,-11],[-52,-32],[3,-42],[-44,2],[-71,20],[-9,-2],[-9,-37],[-81,-14],[-7,-4],[-73,-47]],[[6478,5700],[4,-3],[3,-2],[3,-2],[4,-1],[4,-2],[3,-1],[5,-2],[4,-1],[4,-1],[5,-1],[4,-1],[5,0],[5,-1],[5,0],[4,0],[5,0],[5,0],[5,0],[5,1],[4,0],[5,1],[6,2],[3,1],[4,1],[4,1],[4,2],[3,2],[4,1],[3,2],[3,2],[4,2],[25,0],[60,0],[31,0],[3,0],[22,14],[12,5],[27,16],[44,22],[35,20],[27,14],[44,21],[2,3],[5,1],[59,33]],[[7003,5849],[65,-41],[37,-23],[36,-23],[1,-1],[2,-1],[7,-5],[75,-50],[9,-5],[6,-3],[2,-3],[32,-20],[15,-12],[11,-6],[8,-5],[8,-5],[20,-12],[13,-8],[35,-1],[22,-2],[82,-10],[33,0],[126,-5],[117,0],[101,5],[44,-9]],[[7910,5604],[57,-18],[56,-42]],[[8023,5544],[-32,-16],[13,-38],[23,-33],[21,-32],[14,-29],[-10,-23],[2,-4],[0,-7],[-126,-86],[7,-2],[32,-7],[24,-11],[19,-16],[-12,-39],[-8,-7],[3,-9],[9,-27],[5,-31],[75,-75],[-9,-26],[3,-26],[-40,-16],[-56,-29],[-45,-31],[-12,-9],[-13,-13],[-19,-12],[-47,-38],[0,-10],[13,-47],[0,-1],[16,-18],[-11,-15],[-33,15]],[[7218,4843],[-8,24],[-29,9],[-9,20],[-1,5],[-16,5],[-22,5],[2,-2],[-5,-2],[-6,3],[-1,4],[-9,1],[-2,4],[-1,1],[-4,1],[-3,-4],[-7,2],[-4,5],[-15,5],[-1,-4],[-7,-4],[-4,-2],[-11,-3],[-13,7],[-6,9],[-7,3],[-17,9],[-2,1],[24,7],[2,1],[0,15],[-8,4],[-11,-9],[-27,0],[-3,-2],[-41,19],[-49,11],[12,-22],[3,-3],[4,-3],[0,-2],[-1,-6],[-5,3],[-21,-5],[-27,-17],[-10,5],[-10,5],[-2,9],[-9,6],[-5,4],[-8,7],[-19,9],[-18,8],[36,22],[4,2],[-5,4],[-13,8],[-16,2],[-2,-5],[-6,-3],[-6,5],[-9,1],[-2,-2],[-67,17],[-25,4],[-25,4],[-13,23],[-9,8],[-24,2],[-5,2],[-5,-2],[-1,3],[-9,-6],[5,-2],[2,0],[-3,-12],[1,-6],[-23,0],[-6,0]],[[6555,5058],[0,3],[5,4],[12,12],[10,21],[3,13],[-8,32],[7,15],[-43,13],[-4,19],[-8,8],[-8,8],[2,5],[7,11],[13,25],[-13,13],[-2,11],[-14,13],[-6,17],[16,22],[-5,10],[-13,5],[-25,15],[-23,14],[-13,14],[29,42],[7,2],[6,15],[1,9],[-2,4],[-3,3],[-10,21],[-2,22],[-6,6],[2,8],[-3,4],[-7,15],[0,12],[-1,19],[6,18],[3,27],[8,53],[2,15],[3,24]],[[5185,5714],[25,0],[98,0],[27,0],[34,0],[3,0],[10,0],[1,0],[2,0],[18,0],[8,0],[13,0],[8,0],[12,2],[6,1],[20,4],[16,3],[10,1],[4,-1],[5,1],[2,-1],[9,-6],[25,-18],[19,-2],[12,-1],[25,0],[2,1],[29,-7],[5,1],[2,-5],[8,1],[6,-5],[32,7],[37,-4],[2,0],[17,2],[5,0],[1,1],[11,-6],[7,-3],[9,-4],[15,-3],[3,0],[6,-1],[22,-6],[27,-7],[14,0],[13,0],[3,0],[25,0],[27,-2],[15,-3],[13,-3],[6,-2],[11,-3],[7,-2],[3,-1],[12,-3],[16,-6],[24,-5],[3,0],[4,-1],[18,-2],[5,0],[2,0],[26,0],[11,6],[36,20],[38,20],[13,7],[30,15],[12,6]],[[6230,5700],[25,0],[63,0],[29,0],[16,0],[15,0],[2,0],[67,0],[29,0],[2,0]],[[6555,5058],[-4,-5],[-28,13],[-8,-1],[-1,7],[-2,7],[-27,3],[-21,0],[4,-11],[16,-1],[1,-4],[-2,-3],[-9,-3],[-93,-23],[-23,-3],[-102,-31],[-16,-7],[-27,-7],[-19,-7],[-7,-2],[-17,-6],[-8,-2],[-9,-6],[-5,-8],[-2,-8],[-4,-2],[-17,-3],[-1,-9],[1,0],[8,-5],[7,-2],[3,-2],[0,-1],[11,-3],[11,-4],[7,-3],[-1,-7],[-5,-19],[-3,-2],[-7,-7],[12,-8],[11,-6],[6,-5],[-1,-9],[2,-2],[4,-5],[80,-52],[3,-2],[25,-14],[70,-35],[16,-9]],[[6384,4734],[4,-35],[-12,-12],[-3,-3],[-35,12],[-9,-18],[-4,-12],[-17,-7],[-24,-9],[-2,-1],[-12,-4],[-13,-4],[-8,-7],[-17,-2],[-5,-3],[-10,-6],[-2,-8],[6,-5],[9,-49],[-18,-5],[-24,-3],[-22,-2],[-43,-6],[-6,-1],[-17,-2],[-2,-1],[-44,-4],[-29,-1],[-18,-15],[-26,-21],[-38,0],[-18,10],[-2,1],[-23,13],[-19,3],[-3,3],[-8,2],[-29,2],[-6,3],[-1,-10],[-1,-7],[-1,-13],[0,-2],[-15,-12],[-5,0],[-12,-5],[-10,-1],[3,10],[3,8],[-22,10],[1,9],[-23,2],[-21,5],[-3,3],[-3,4],[-3,-2],[-5,-7],[-30,-1]],[[5687,4528],[-1,2],[-16,7],[-13,3],[-55,12],[-6,-1],[-18,-3],[-43,18],[-21,0],[-14,-14],[18,-6],[0,-2],[-11,-9],[-30,5],[-13,2],[-19,-9],[-23,-2],[-6,5],[-1,1],[-8,0],[-1,-1],[-2,0],[-9,-4],[-12,-3],[-4,5],[-17,6]],[[5362,4540],[-13,4],[6,9],[0,15],[4,8],[0,1],[4,11],[6,13],[-1,2],[-6,13],[12,18],[1,3],[8,21],[5,14],[9,12],[2,1],[27,31],[9,10],[22,22],[11,9],[-17,3],[-8,1],[-11,4],[-28,3],[-19,2],[-22,4],[-39,6],[-31,5],[-20,4],[-50,8],[-8,4],[-20,29],[-3,4],[-13,2],[-11,0]],[[5168,4836],[-2,18],[-1,3],[7,6],[2,4],[4,4],[10,6],[2,6],[-18,8],[-7,3],[3,4],[-8,1],[-18,4],[-2,5],[-2,4],[-2,1],[-1,0],[-5,2],[0,2],[-6,14],[-2,2],[3,8],[2,3],[1,2],[6,3],[-1,6],[5,2],[1,1],[3,4],[2,0],[4,1],[2,2],[14,5],[4,3],[0,2],[-5,11],[-5,9],[-1,4],[-16,1],[-6,11],[6,2],[2,1],[1,2],[4,3],[-10,2],[-2,0],[-11,9],[0,1],[-10,5],[-7,3],[-2,1]],[[5106,5040],[1,10],[-1,1],[0,1],[9,5],[-1,3],[-1,4],[-1,3],[-4,1],[-3,2],[1,6],[-5,0],[-4,3],[0,6],[7,7],[8,8],[7,1],[5,7],[-8,-1],[0,11],[6,5],[1,0],[15,13],[0,6],[1,1],[0,10],[-3,9],[-12,10],[-5,6],[-11,8],[-1,4],[-13,21],[13,4],[5,0],[7,4],[8,3],[39,-10],[3,-2],[-5,7],[10,-1],[11,1],[14,4],[4,1],[8,1],[10,1],[9,1],[3,2],[-5,14],[8,15],[10,4],[1,0],[-6,2],[36,13],[1,47],[-1,20],[4,23],[19,31],[-1,12],[1,2],[0,4],[3,16],[-3,11],[-1,3],[-21,1],[-12,5],[-12,2],[5,8],[-7,6],[-7,6],[-8,3],[-13,1],[-16,6],[-23,20],[0,6],[0,5],[0,16],[0,7],[0,7],[0,12],[0,29],[0,11],[0,39],[0,27],[0,46],[0,7]],[[4938,5714],[46,0],[47,0],[47,0],[1,0],[2,0],[10,0],[9,0],[9,0],[18,0],[33,0],[12,0],[13,0]],[[5106,5040],[-3,0],[-1,0],[-12,0],[-2,-1],[-8,2],[-4,0],[-23,1],[-8,9],[-1,1],[0,1],[6,8],[9,7],[2,3],[3,8],[4,10],[0,11],[-4,8],[-8,1],[-20,4],[-7,6],[-1,3],[-8,3],[-13,-4],[-6,1],[-8,-1],[-9,0],[-8,7],[-17,4],[-4,13],[-1,1],[-2,6],[-5,5],[-6,-3],[-4,0],[-5,-5],[-10,-5],[-12,1],[-4,13],[-1,2],[-19,-14],[-9,1],[-8,0],[-5,0],[-3,-1],[1,6],[-4,1],[-2,0],[-20,-3],[-3,-7],[-5,-3],[2,-2],[1,-1],[-2,0],[-1,0],[-9,1],[-6,-3],[-3,-2],[-4,-3],[-8,-5],[-7,-3],[-15,-5],[-24,-1],[-35,0],[-6,8],[-6,1],[-4,0],[-7,-5],[-9,-3],[-9,5],[-4,2],[-3,14],[-59,5],[-84,8],[-30,3],[-7,0],[-31,3],[-14,1]],[[6008,2778],[20,0],[33,0],[50,0],[75,0],[43,0],[60,0],[54,0],[42,0],[30,0],[20,0],[25,0],[10,0],[24,0],[2,0],[16,0],[44,0],[28,0],[101,0],[63,0],[75,0],[66,0],[94,0],[57,0],[92,0],[110,0]],[[7242,2778],[355,-156],[132,-61],[171,-81],[96,-46]],[[7996,2434],[-348,0],[-162,0],[-238,0],[-149,0],[-172,0],[-23,0],[-95,0],[-198,0],[-77,0],[-159,0],[-69,0],[-11,0],[-62,0],[-38,0],[-187,0],[0,30],[0,83],[0,97],[0,26],[0,108]],[[5843,6269],[11,-12],[53,-59],[7,-8],[1,-2],[4,-4],[29,-34],[1,0],[13,-15],[20,-23],[10,-13],[13,-14],[2,-3],[12,-11],[12,-18],[20,-24],[50,-61],[9,-11],[18,-22],[1,-1],[5,-7],[11,-13],[6,-7],[11,-9],[7,-2],[3,-2],[11,-6],[14,-7],[1,-3],[-1,-10],[0,-9],[4,-3],[4,-10],[18,-16],[15,-14],[-3,-5],[-17,-7],[-9,-4],[-1,-8],[-2,-2],[-7,-3],[-8,-5],[2,-9],[2,-6],[7,-13],[2,-3],[7,-13],[4,-9],[5,-9],[2,-4],[8,-16]],[[6384,4734],[45,-24],[-8,-6],[9,-6],[38,-5],[8,-1],[16,7],[3,6],[34,-10],[6,0],[3,15],[9,8],[9,9],[21,-4],[3,3],[-4,2],[3,15],[1,13],[4,5],[22,-1],[3,0],[2,-7],[3,0],[14,2],[1,4],[15,0],[36,-14],[5,-1],[36,-2],[35,-18],[9,-3],[17,0],[19,-2],[11,0],[13,12],[14,-1],[12,-3],[9,-2],[1,-7],[6,2],[12,-4],[18,1],[6,-17]],[[6372,4368],[-24,3],[-28,5],[-3,-1],[-8,-1],[-2,0],[-14,0],[-11,5],[-41,3],[-73,11],[-32,20],[5,3],[-4,8],[-11,1],[-10,4],[-5,15],[10,4],[7,7],[-7,3],[-33,-7],[-22,-4],[0,-3],[-17,3],[-10,0],[-27,0],[-13,-5],[-12,-1],[-3,0],[-17,-1],[-7,-5],[-32,-27],[-7,-1],[-16,0],[-11,2],[-3,3],[-8,-1],[-2,0],[-1,1],[5,5],[-10,3],[-4,4],[-20,-5],[0,1],[-7,0],[-6,3]],[[5838,4423],[3,13],[-16,8],[-19,-14],[-20,-16],[-6,5],[-49,28],[-37,5],[-2,0],[8,13],[-3,3],[-13,19],[8,6],[3,7],[3,3],[9,3],[-4,3],[-6,6],[-6,7],[-4,6]],[[5362,4540],[-17,-17],[-7,-1],[-8,-12],[-30,2],[-10,11],[-25,0],[1,-4],[-5,-2],[-11,-13],[27,-5],[-9,-4],[-9,-12],[-22,-18],[-17,-13],[-12,-4],[-19,-8],[-8,-2],[-7,-6],[4,-11],[-10,-12],[7,-3],[-5,-1],[-3,-2],[-12,-5],[-5,-2],[-2,-2],[-4,-2],[-15,-10],[-12,-10],[1,-3],[-4,-17],[9,-14],[-25,-22],[0,-8],[5,0],[13,7],[22,3],[13,18],[30,10],[9,-4],[21,1],[14,-3],[6,-1],[5,-16],[-1,-15],[30,-22],[10,-17]],[[5275,4269],[-30,-23],[29,-43],[-2,-2],[-2,-2],[11,-8],[-21,-34],[-52,-12],[22,-17],[20,-27],[19,-6],[5,-23],[-7,-11],[-14,-22],[15,-33],[12,-4],[34,-12],[56,1],[14,-13],[-7,-10],[-14,-16],[-8,-20],[24,-1],[5,-5],[21,-5],[80,-21],[36,-11],[9,-2],[19,-4],[14,-4],[3,-1],[23,-7],[36,-9],[95,-26],[0,-34],[0,-21],[0,-32],[0,-19],[0,-14],[0,-14],[0,-62],[0,-23],[0,-6],[0,-3],[0,-10],[0,-53],[-22,0],[-20,0],[-30,0],[-8,0],[-26,0],[-12,0],[-37,0],[-20,0],[-20,0],[-20,0],[-19,0],[-8,-8],[-20,-20],[-26,-25],[0,-14],[0,-8],[0,-19],[0,-21],[0,-30],[0,-11],[0,-56],[0,-48],[0,-77],[0,-10],[0,-24]],[[5432,3174],[-61,0],[-11,0],[-39,0],[-49,0],[-52,0],[-76,0],[-27,0],[-118,0],[-61,0],[-52,0]],[[4886,3174],[-3,93],[0,21],[0,38],[0,12],[0,5],[0,19],[0,16],[0,17],[0,17],[0,9],[0,48],[0,32],[0,57],[0,50],[0,42],[-38,11],[-4,2],[-13,3],[-36,12],[-13,4],[-6,2],[-13,1],[-15,7],[-54,11],[-21,7],[-28,9],[-4,0],[-2,0],[-6,0],[-24,8],[-13,-3],[-12,-2],[-23,-5],[-26,-3],[-52,5],[-9,-8],[-10,0],[-16,-2],[-46,21],[-8,18],[-5,0],[-27,0],[-18,13],[-24,4],[-19,8],[-19,0],[-22,7],[-19,5],[-2,0],[-29,-25],[-24,2],[-8,0],[-35,5],[-36,-5],[-22,10],[-7,4],[-9,7],[-27,-3],[-32,9],[-12,4],[-19,5],[-22,7],[-22,6],[-37,6],[-19,1],[-3,37],[-4,-1],[-3,1],[-9,-6],[-9,6],[-16,4],[-4,6],[-7,5],[0,32],[-29,10],[-9,3],[-8,3],[-17,5],[-58,19],[-34,12],[-2,0],[-17,6],[-12,4],[-39,12],[-122,39],[-15,5],[-41,8],[-33,5],[-28,5]],[[3357,4038],[-57,10],[-31,6],[-80,13],[-35,5],[-178,28],[-178,27]],[[2798,4127],[0,79],[0,79],[0,80],[0,79],[0,40],[0,39],[0,52],[0,28],[0,50],[0,27],[0,2],[0,12],[0,41]],[[4444,5097],[40,-2],[51,-3],[6,-11],[10,-31],[0,-2],[41,-17],[2,-1],[39,14],[20,-27],[2,-2],[13,-13],[3,-3],[17,4],[5,1],[7,-5],[7,-2],[6,-2],[2,-3],[3,-6],[0,-10],[2,-2],[18,0],[14,0],[9,-1],[8,-1],[19,-2],[5,-3],[9,-11],[-1,-12],[-4,-27],[1,0],[36,-3],[19,-2],[8,3],[5,1],[50,2],[-2,-20],[0,-10],[14,0],[8,0],[21,-10],[1,0],[7,-3],[16,-4],[5,-2],[4,-5],[9,-3],[2,-2],[6,-2],[4,-5],[1,-4],[-2,-4],[22,1],[29,2],[1,0],[10,2],[1,-1],[2,0],[2,-2],[25,-12],[10,2],[9,1],[12,3],[3,1],[3,1],[21,-7],[7,1],[1,0]],[[7212,4264],[19,-8],[5,-23],[-35,-14],[51,-8],[12,-4],[-7,-3],[-13,-14],[-2,-8],[40,-12],[20,-6],[-12,-5],[-8,-8],[-22,-3],[-5,-1],[-1,-4],[0,-6],[4,-10],[-14,-21],[4,-3],[-33,0],[-18,23],[-10,14],[-47,3],[-63,5],[-17,-12],[-5,-2],[-4,0],[-29,11],[-18,0],[-6,-2],[-3,2],[-2,3],[-5,-1],[-1,5],[-7,-4],[-1,0],[-6,0],[-1,1],[-11,5],[-6,-3],[-4,-2],[-8,1],[-3,1],[-15,7],[-10,5],[-11,2],[0,-1],[-18,-3],[-8,-4],[-9,1],[-9,1],[-20,3],[-5,0],[-6,-4],[-4,-8],[-4,-3],[-10,-12],[-12,-9],[-62,35],[-4,1],[-3,0],[-25,-5],[1,-40],[4,-27],[33,-14],[29,-37],[21,-45],[5,-2],[2,-4],[28,-15],[31,-25],[8,-8],[4,-4],[13,-10],[20,-16],[15,-12],[14,-7],[13,-3],[2,0],[5,-2],[2,-5],[4,-16],[15,-12],[14,-11],[34,-26],[6,-15],[-26,-7],[28,-10],[20,4],[3,-2],[65,-40],[10,2],[22,-12],[2,-6],[4,-8],[13,-6],[0,-9],[0,-2],[1,-1],[5,-19],[1,-3],[-7,-17],[-5,-12],[23,-14],[-12,-10],[-19,3],[-8,-23],[-15,-39],[-19,-8]],[[7114,3562],[-15,10],[-85,39],[-49,21],[-11,7],[-147,67],[-30,-3],[-13,8],[5,14],[-13,6],[-18,12],[-19,11],[-12,8],[-37,23],[-10,6],[-28,18],[-30,18],[-52,32],[-27,16],[-22,14],[-12,10],[-16,13],[-9,8],[-41,36],[-12,9],[-5,5],[-26,23],[-13,10],[-36,31],[-22,19],[-11,15],[-11,24],[-11,19],[-6,13],[-15,28],[0,1],[0,1],[0,2],[-1,6],[0,6],[1,6],[19,13],[1,1],[10,6],[15,10],[9,6],[9,5]],[[9053,2301],[0,37],[0,94],[0,28],[0,13],[0,11],[0,35],[0,7],[0,8],[0,37],[0,61],[0,13],[0,27],[0,39]],[[9053,2711],[116,-4],[19,-2],[120,-3],[238,-12],[47,-2],[5,-1],[21,-1],[18,-1],[77,0],[106,0],[165,0],[-22,-58],[31,-57],[5,-97],[-76,-7],[-39,-9],[-29,-18],[-21,-19],[-21,-34],[-3,-14],[-2,-8],[-1,-10],[5,-29],[53,-77],[-11,-10],[-44,-2],[-8,-37],[-2,-12],[-31,-26],[-26,-20],[-4,1],[-19,-26],[-10,-26],[-2,-53],[-145,61],[-168,66],[-69,28],[-117,46],[-156,63]],[[2798,5079],[-82,0],[-576,0],[-83,0],[-246,0],[-165,0],[0,40],[0,39],[0,40],[0,40],[0,10],[0,29],[0,40],[0,40],[0,39],[0,40],[0,40],[0,30],[0,9],[0,40],[247,29],[466,50],[110,11]],[[8896,7938],[-79,-12],[-25,-4],[64,-6],[-57,-59],[144,-64],[110,-64],[-151,-116],[88,-42],[23,-48],[18,-37],[14,-23],[35,-56],[-58,-14],[-31,-83],[-1,-20],[76,-37],[69,-74],[-80,-79],[191,-78],[15,-15],[38,-24],[9,-8],[-73,-83],[-137,-80],[-32,-19],[-22,-12],[-49,-28],[-33,-18],[-55,-29],[-59,-28],[-69,-34],[-28,-18],[-85,-64],[-4,-2],[-25,-16],[-29,-4],[-13,-2],[-45,-3],[-18,-2],[-20,-2],[-9,-1],[-18,-2],[-72,-25],[-41,-14]],[[7571,6349],[-8,4],[-6,3],[-16,9],[-1,1],[-3,1],[-2,1],[-6,4],[-3,1],[-6,4],[-2,1],[-22,11],[-18,10],[-47,25],[-20,10],[-2,1],[-1,1],[-2,1],[-2,1],[-10,7],[-8,5],[-12,9],[-13,9],[-9,6],[-8,5],[-26,18],[-9,6],[-1,0],[-1,1],[-15,10],[-6,4],[-10,7],[-12,7],[-6,5],[-2,1],[5,9],[3,8],[3,9],[0,2],[4,16],[10,36],[10,48],[3,10],[17,48],[11,38],[0,2],[2,8],[4,8],[3,7],[15,38],[16,30],[15,33],[1,3],[1,8],[29,58],[26,53],[67,40],[6,3],[9,5],[36,7],[25,4],[22,4],[3,0],[20,3],[21,4],[11,1],[13,10],[38,29],[1,0],[4,4],[18,11],[3,3],[10,8],[8,7],[5,3],[7,5],[72,52],[19,13],[5,4],[10,7],[4,3],[17,10],[7,3],[67,48],[32,22],[26,18],[9,6],[21,13],[20,13],[18,12],[2,10],[-2,27],[-10,28],[-23,24],[-20,13],[-3,4],[-13,11],[-2,1],[-9,7],[6,10],[9,14],[4,8],[5,9],[15,25],[16,11],[-7,6],[-18,15],[-20,16],[-17,28],[26,19],[3,14],[-48,43],[14,33],[8,11],[-22,9],[-26,17],[-3,1],[-35,19],[-100,29],[-183,52],[-35,10],[-103,36]],[[7512,6255],[-10,-17],[-14,-22],[-13,-22],[-23,-38],[-35,-59],[-38,-66],[-44,-20],[-81,-39],[-32,-15],[-30,-15],[-31,-15]],[[7161,5927],[-37,-18],[-36,-18],[-7,-3]],[[7081,5888],[-53,-26],[-25,-13]],[[1975,3809],[0,80],[0,79],[0,79],[0,80],[14,0],[55,0],[13,0],[36,0],[47,0],[71,0],[11,0],[82,0],[83,0],[82,0],[27,0],[55,0],[61,0],[21,0],[42,0],[123,0]],[[4886,3174],[-121,-82],[-33,-24],[-33,-11],[-21,-8],[-36,-12],[-8,-3],[-93,-34],[-43,-16],[-33,-13],[-103,-44],[-62,-27],[-169,-56],[-20,-8],[-165,-66],[-18,-8],[-59,-24],[-87,-58],[4,-8],[-17,0],[-3,0],[-93,0],[-60,0],[-31,0],[-4,0],[-28,0],[-2,0],[-9,0],[-34,0],[-42,0],[-7,0],[-61,0],[-87,0],[-36,0],[-4,0],[-86,0],[-5,0],[-42,0],[-47,0],[-14,0],[-21,0],[-30,0],[-14,0],[-5,0],[-41,0],[-63,0],[0,21]],[[2900,2693],[0,9],[0,102],[0,16],[0,10],[0,14],[0,19],[0,6],[0,8],[-8,19],[1,16],[-2,11],[-11,26],[31,39],[11,11],[20,17],[4,3],[17,10],[-4,6],[4,4],[-28,32],[-22,24],[3,8],[6,13],[4,16],[12,11],[13,15],[16,16],[3,4],[-1,2],[-1,3],[-1,3],[-6,5],[-1,2]],[[2960,3193],[-2,-1],[-5,2],[-15,6],[-12,9],[-13,18],[-11,31],[-3,2],[-19,20],[83,0],[0,3],[20,30],[0,3],[0,16],[-19,21],[34,38],[-5,5],[3,19],[12,17],[-7,7],[-8,16],[-3,10],[9,47],[64,40],[18,16],[5,16],[-20,15],[-21,15],[-11,26],[-10,1],[-80,-1],[-1,0],[-24,-13],[-34,-3],[-22,4],[-28,8],[-50,-15],[-25,52],[-55,-12],[-46,-32],[-13,1],[-72,9],[-6,1],[-99,10],[-11,4],[-123,41],[-195,63],[-83,25],[-82,26]],[[1242,2013],[6,-5],[70,-24],[9,-3],[23,-5],[40,-7],[86,2],[46,13]],[[1522,1984],[74,-32],[73,-31],[73,-32],[70,-31],[23,-11],[46,-20],[70,-32],[71,-33],[35,-16],[-12,-43],[-24,-76],[-16,-55],[-30,-104],[-27,-92],[94,0],[224,0],[118,0],[226,0],[78,0],[0,-53],[0,-212],[-416,0],[-132,0],[0,-405],[-102,-5],[-63,-40],[-27,-68],[27,-223],[-159,0],[-170,0],[-173,0],[-134,0],[-11,0],[-17,-66],[0,-24],[-118,-95],[-41,-40],[-164,-145],[-121,93],[-44,39],[-115,85],[-210,156],[-268,249],[-230,172],[0,158],[0,159],[0,159]],[[0,1270],[0,158],[0,159],[0,159],[165,0],[164,0],[165,0],[164,0],[101,0],[64,0],[419,267]],[[5838,4423],[0,-27],[2,-21],[-23,-3],[-21,14],[-2,-2],[-9,-1],[-14,-18],[-3,-4],[-24,-10],[-57,-17],[-5,5],[-2,2],[-24,25],[-15,-4],[1,-11],[1,-17],[1,-16],[-10,-8],[-3,-2],[-29,-19],[6,-24],[-6,-1],[-11,-2],[-10,9],[-10,13],[-30,18],[-16,10],[-11,9],[-4,3],[-3,2],[-2,3],[0,1],[-2,29],[-24,-8],[5,-4],[-15,-9],[-23,-11],[-1,0],[9,-13],[-18,-16],[-10,-13],[-10,-1],[-5,-6],[-1,-2],[-3,-3],[-21,2],[-29,6],[-16,-8],[-58,-7],[-8,3]],[[8498,5822],[-13,-35],[-13,-52],[-113,-44],[-8,-26],[4,-19],[-24,-16],[-5,-13],[-5,-10],[41,-14],[-4,-12],[-38,-1],[-4,22],[-42,-3],[-7,-2],[-5,-8],[-21,-4],[-49,-11],[6,-11],[-20,-11],[-89,-4],[-41,-1],[-25,-3]],[[7910,5604],[-50,54],[-3,46],[-23,18],[-145,14],[-46,15],[-80,8],[-5,2],[-103,28],[-75,21],[-76,20],[-8,2],[-39,10],[-176,46]],[[7161,5927],[64,-7],[60,-7],[4,-1],[47,-6],[84,-10],[17,-3],[7,0],[44,-6],[28,-4],[14,0],[52,0],[5,1],[22,13],[8,4],[6,4],[20,6],[20,10],[8,3],[40,7],[16,1],[9,6],[27,1],[31,-4],[43,-2],[106,-1],[28,-2],[54,1],[14,-5],[31,-6],[6,-3],[72,-1],[2,1],[19,14],[43,13],[11,-13],[18,-20],[15,-11],[34,-3],[34,-3],[48,-22],[73,-31],[53,-19]],[[7242,3399],[74,-66],[22,-4],[28,-4],[15,-8],[22,-10],[4,-24],[19,-3],[15,-4],[6,10],[9,18],[11,0],[-14,26],[18,0],[2,12],[11,2],[21,1],[11,4],[7,27],[14,27],[27,6],[13,17],[2,5],[-15,34],[7,6],[20,-2],[39,3],[12,8],[44,1],[14,0],[22,23],[14,9],[5,0],[25,5],[4,1],[38,-9],[7,0],[6,2],[17,8],[23,11],[5,13],[32,3]],[[7898,3547],[49,6],[28,3],[9,-3],[21,-3],[66,14],[14,14],[8,0],[17,6],[7,-9],[14,3],[10,-2],[23,-13],[16,-4],[17,-2],[12,-2],[29,-5],[7,-3],[4,0],[20,-15],[15,-2],[25,8],[9,-1],[6,6],[9,-2],[5,1],[10,-3],[3,4],[16,4],[9,-6],[18,4],[22,5],[6,8],[-17,50],[39,0]],[[8444,3608],[41,-16],[8,-47],[-47,-14],[-4,-29],[4,-18],[-11,-11],[-57,-34],[0,-16],[-3,-11],[6,-18],[-59,-45],[10,-31],[43,-72],[44,-14],[36,11],[11,-3],[10,-13],[6,-8],[-1,-3],[37,-42],[-20,-18],[-32,-8],[-20,-37],[-2,-19],[-17,-21],[-5,-16],[13,-13],[9,-9],[37,-20],[57,-4],[21,-1],[5,-11],[2,-6],[7,-23],[-18,-8]],[[8555,2960],[1,-4],[22,-30],[-3,-48],[13,-13],[37,-29],[-28,-24],[21,-17],[29,-7],[30,11],[24,10],[9,-5],[13,-27],[9,-2],[26,8],[45,2],[11,-26],[44,-26],[71,-22],[11,16],[30,-2],[13,-4],[22,-10],[16,-1],[32,1]],[[9053,2301],[-206,34],[-80,14],[-106,20],[-47,4],[-28,8],[-57,0],[-217,0],[-58,0],[-115,0],[-47,0],[-96,53]],[[7242,2778],[0,42],[0,32],[0,68],[0,56],[0,94],[0,28],[0,33],[0,25],[0,65],[0,16],[0,26],[0,41],[0,18],[0,20],[0,30],[0,17],[0,10]],[[2900,2693],[-39,0],[-44,0],[-19,0],[-52,0],[-104,0],[-50,0],[-20,0],[-28,0],[-5,0],[-74,0],[-117,0],[-117,0],[-91,0],[-52,-67],[-65,-87],[-118,-158],[-115,-159],[-81,-119],[-30,-40],[-157,-79]],[[1242,2013],[-43,24],[-68,79],[-45,103],[55,150],[44,38],[258,215],[139,107],[64,49],[0,79],[0,159],[0,79],[0,79],[0,80],[0,79],[0,159],[0,158],[165,80],[164,79]],[[7846,4000],[59,-16],[-29,-37],[22,-11],[44,5],[40,-3],[32,-3],[18,-2],[5,-1],[10,-2],[18,-4],[15,-3],[24,-5],[19,6],[30,7],[29,-8],[23,-3],[47,0],[30,-8],[7,-2],[9,-1],[22,1],[3,2],[12,6],[1,2],[28,8],[23,18],[3,1],[4,2],[36,16],[46,9],[13,3],[41,4],[27,8],[5,1],[43,-4],[22,-15],[23,0],[17,5],[15,-16],[7,2],[23,6],[11,-27],[39,-11],[35,-4],[9,0],[21,1],[29,-7],[32,-5],[5,11],[19,0],[1,0],[48,-2],[32,-1],[147,-5]],[[9140,3918],[18,-69],[18,-72],[-25,-9],[-55,-21],[-41,-15],[-24,-8],[-40,-16],[-43,-16],[-15,-6],[-21,-8],[-24,-9],[-38,-6],[-47,-10],[-27,-5],[-52,0],[-25,2],[-12,-5],[-34,-10],[-25,14],[-23,12],[-11,0],[-13,3],[-21,-7],[-40,-11],[-24,2],[-8,-18],[-44,-22]],[[7898,3547],[-9,19],[17,39],[-11,8],[-14,32],[-45,21],[-1,3],[-40,31],[31,17],[1,9],[-14,14],[-3,5],[-1,32],[8,8],[8,3],[8,4],[8,-2],[18,2],[8,13],[16,10],[6,5],[9,7],[1,2],[1,5],[0,2],[-28,25],[-10,4],[0,4],[-16,9],[-24,10],[-6,11],[2,11],[-13,8],[-9,18],[1,5],[3,13],[7,14],[30,13],[9,19]],[[6008,2778],[0,17],[0,2],[0,34],[0,56],[-1,49],[-33,15],[-16,8],[-14,5],[-2,1],[-23,10],[-9,4],[-20,8],[-26,11],[-56,24],[-82,34],[-121,49],[-15,6],[-12,5],[-4,2],[-60,24],[-82,32]],[[7114,3562],[55,-24],[51,-25],[14,-38],[8,-23],[0,-24],[0,-29]],[[7846,4000],[-19,17],[14,45],[-31,5],[-151,23],[-16,13],[-4,22],[-17,40],[-27,22],[-86,75],[-59,43]],[[7879,4595],[38,10],[40,2],[143,-19],[61,8],[49,-36],[27,1],[20,21],[80,8],[11,2],[10,1],[29,2],[85,43],[25,4],[34,-2],[18,-6],[5,-9],[10,-1],[0,-5],[11,-13],[10,-5],[-1,-3],[4,-3],[-3,-4],[8,-2],[0,-4],[4,-8],[0,-3],[3,-8],[7,-2],[-4,-5],[24,-22],[7,-9],[2,-6],[14,-10],[5,-3],[-1,-13],[11,-3],[19,-8],[15,-14],[1,-10],[41,-29],[2,-1],[8,-22],[1,-4],[12,-20],[-4,-18],[2,-3],[0,-3],[3,-5],[-2,-7],[-6,-4],[0,-10],[-9,-5],[-6,-8],[2,-6],[-4,-23],[-1,-2],[0,-15],[11,-48],[-12,-5],[11,-10],[8,-11],[19,-20],[2,-3],[64,-17],[64,24],[64,7],[28,-32],[22,-5],[27,-6],[14,-27],[5,-10],[11,-23],[3,-9],[10,-17],[6,-17],[22,-39],[4,-14],[3,-12],[11,-45],[4,-19]],[[8622,6126],[52,-8],[-2,-26],[35,-100],[38,-39],[11,-23],[-8,-31],[-54,-20],[-42,-41],[-97,5],[-57,-21]]],"transform":{"scale":[0.006075607560756077,0.0063006300630063],"translate":[-25,19]}}
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment