Skip to content

Instantly share code, notes, and snippets.

@emeeks
Last active March 17, 2016 02:14
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 emeeks/31b4b8aa83583fecd5d8 to your computer and use it in GitHub Desktop.
Save emeeks/31b4b8aa83583fecd5d8 to your computer and use it in GitHub Desktop.
Showing off Textures.js
path,circle,rect,polygon,ellipse,line {
vector-effect: non-scaling-stroke;
}
svg, canvas {
top: 0;
}
#d3MapZoomBox {
position: absolute;
z-index: 10;
height: 100px;
width: 25px;
top: 10px;
right: 50px;
}
#d3MapZoomBox > button {
height:25px;
width: 25px;
line-height: 25px;
}
.d3MapControlsBox > button {
font-size:22px;
font-weight:900;
border: none;
height:25px;
width:25px;
background: rgba(35,31,32,.85);
color: white;
padding: 0;
cursor: pointer;
}
.d3MapControlsBox > button:hover {
background: black;
}
#d3MapPanBox {
position: absolute;
z-index: 10;
height: 100px;
width: 25px;
top: 60px;
right: 50px;
}
#d3MapPanBox > button {
height:25px;
width: 25px;
line-height: 25px;
}
#d3MapPanBox > button#left {
position: absolute;
left: -25px;
top: 10px;
}
#d3MapPanBox > button#right {
position: absolute;
right: -25px;
top: 10px;
}
#d3MapLayerBox {
position: relative;
z-index: 10;
height: 100px;
width: 120px;
top: 10px;
left: 10px;
overflow: auto;
color: white;
background: rgba(35,31,32,.85);
}
#d3MapLayerBox > div {
margin: 5px;
border: none;
}
#d3MapLayerBox ul {
list-style: none;
padding: 0;
margin: 0;
cursor: pointer;
}
#d3MapLayerBox li {
list-style: none;
padding: 0;
}
#d3MapLayerBox li:hover {
font-weight:700;
}
#d3MapLayerBox li input {
cursor: pointer;
}
div.d3MapModal {
position: absolute;
z-index: 11;
background: rgba(35,31,32,.90);
top: 50px;
left: 50px;
color: white;
max-width: 400px;
}
div.d3MapModalContent {
width:100%;
height: 100%;
overflow: auto;
}
div.d3MapModalContent > p {
padding: 0px 20px;
margin: 5px 0;
}
div.d3MapModalContent > h1 {
padding: 0px 20px;
font-size: 20px;
}
div.d3MapModalArrow {
content: "";
width: 0;
height: 0;
border-left: 20px solid transparent;
border-right: 20px solid transparent;
border-top: 20px solid rgba(35,31,32,.90);
position: absolute;
bottom: -20px;
left: 33px;
}
#d3MapSVG {
}
rect.minimap-extent {
fill: rgba(200,255,255,0.35);
stroke: black;
stroke-width: 2px;
stroke-dasharray: 5 5;
}
circle.newpoints {
fill: black;
stroke: red;
stroke-width: 2px;
}
path.newfeatures {
fill: steelblue;
fill-opacity: .5;
stroke: pink;
stroke-width: 2px;
}
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>d3.carto with awesome textures</title>
<meta charset="utf-8" />
<link type="text/css" rel="stylesheet" href="d3map.css" />
</head>
<style>
html,body {
height: 100%;
width: 100%;
margin: 0;
}
#map {
height: 100%;
width: 100%;
position: absolute;
}
.country {
stroke: #A39480;
stroke-width: 1px;
}
.smallmap {
width: 33%;
float: left;
border: 1px lightgray solid;
}
#legend {
position: absolute;
left: 20px;
bottom: 20px;
width: 400px;
height: 95px;
background: white;
z-index: 99;
}
#buttondiv {
position: absolute;
left: 120px;
top: 20px;
background: white;
z-index: 99;
}
</style>
<script>
function makeSomeMaps() {
legendSVG = d3.select("#legend").append("svg").style("width", "100%").style("height", "100%");
texturesArray = [];
for (var x = 0; x<5;x++) {
var t = textures.lines().size(4).strokeWidth(1);
switch(x) {
case 0:
t = textures.circles()
.heavier();
break;
case 1:
t = textures.lines().orientation("vertical")
.strokeWidth(1)
.shapeRendering("crispEdges");
break;
case 2:
t = textures.lines().lighter();
break;
case 3:
t = textures.lines().heavier();
break;
case 4:
t = textures.lines()
.orientation("3/8", "7/8");
break;
}
t.background("#FAEBD7");
legendSVG.call(t);
texturesArray.push(t.url());
}
colorScale = d3.scale.linear().domain([250,500,2000,10000,16000])
.range(texturesArray)
legend = d3.svg.legend().unitLabel("billion")
.unitTranslate([10,0])
.formatter(d3.format(".0f"))
.title("GDP")
.scale(colorScale);
legendSVG.append("g").attr("transform", "translate(20,35)").attr("class", "legend").call(legend);
map = d3.carto.map();
d3.select("#map").call(map);
map.mode("globe");
projection = d3.geo.conicEquidistant()
.scale(350)
.translate([550,600]);
map.projection(projection);
map.refresh();
countryLayer = d3.carto.layer.topojson();
countryLayer.path("world.topojson")
.label("Countries")
.renderMode("svg")
.cssClass("country")
.on("load", applyTextures);
map.addCartoLayer(countryLayer);
function applyTextures() {
d3.selectAll("path.country").style("fill", function(d) {return colorScale(parseFloat(d.properties.gdp))});
}
d3.select("#buttondiv").append("button").html("globe").on("click", function() {map.mode("globe")});
d3.select("#buttondiv").append("button").html("mercator").on("click", function() {map.mode("transform")});
d3.select("#buttondiv").append("button").html("equidistant").on("click", function() {map.mode("projection")});
}
</script>
<body onload="makeSomeMaps()">
<div id="map"></div>
<div id="legend"></div>
<div id="buttondiv"></div>
<footer>
<script src="https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.5/d3.min.js"></script>
<script src="http://d3js.org/colorbrewer.v1.min.js" charset="utf-8" type="text/javascript"></script>
<script src="https://rawgit.com/emeeks/d3-carto-map/master/d3.carto.map.js" type="text/javascript">
</script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/topojson/1.6.19/topojson.min.js"></script>
<script src="textures.min.js" type="text/javascript">
</script>
<script src="legend.js" type="text/javascript">
</script>
</footer>
</body>
</html>
d3.svg.legend = function() {
var data = [];
var size = [300,20];
var xScale = d3.scale.linear();
var scale;
var title = "Legend";
var numberFormat = d3.format(".4n");
var units = "Units";
var unitTranslate =[0,0];
function legend(gSelection) {
createLegendData(scale);
var xMin = d3.min(data, function(d) {return d.domain[0]});
var xMax = d3.max(data, function(d) {return d.domain[1]});
xScale.domain([xMin,xMax]).range([0,size[0]])
console.log(data)
gSelection.selectAll("rect")
.data(data)
.enter()
.append("rect")
.attr("height", size[1])
// .attr("width", function (d) {return xScale(d.domain[1]) - xScale(d.domain[0])})
.attr("width", size[0] / scale.domain().length)
// .attr("x", function (d) {return xScale(d.domain[0])})
.attr("x", function(d,i) {return i * (size[0] / scale.domain().length)})
.style("fill", function(d) {return d.color})
gSelection.selectAll("line")
.data(data)
.enter()
.append("line")
// .attr("x1", function (d) {return xScale(d.domain[0])})
// .attr("x2", function (d) {return xScale(d.domain[0])})
.attr("x1", function(d,i) {return (i + .5) * (size[0] / scale.domain().length)})
.attr("x2", function(d,i) {return (i + .5) * (size[0] / scale.domain().length)})
.attr("y1", 0)
.attr("y2", size[1] + 5)
.style("stroke", "black")
.style("stroke-width", "2px")
gSelection.selectAll("text")
.data(data)
.enter()
.append("g")
// .attr("transform", function (d) {return "translate(" + (xScale(d.domain[0])) +"," + (size[1] + 20) + ")"})
.attr("transform", function (d,i) {return "translate(" + ((i + .5) * (size[0] / scale.domain().length)) +"," + (size[1] + 20) + ")"})
.style("text-anchor", "middle")
.append("text")
.text(function(d) {return numberFormat(d.domain[0])})
gSelection.append("text")
.attr("transform", function (d) {return "translate(" + (xScale(xMin)) +"," + (size[1] - 30) + ")"})
.text(title)
gSelection.append("text")
.attr("transform", function (d) {return "translate(" + (xScale(xMax) + unitTranslate[0]) +"," + (size[1] + 20 + unitTranslate[1]) + ")"})
.text(units)
return legend;
}
function createLegendData(incScale) {
var rangeArray = incScale.range();
data = [];
for (x in rangeArray) {
var colorValue = rangeArray[x];
if (incScale.invertExtent) {
var domainValues = incScale.invertExtent(colorValue);
}
else {
if (x == incScale.domain().length) {
var domainValues = [incScale.domain()[x],incScale.domain()[x]];
}
else {
var domainValues = [incScale.domain()[x],incScale.domain()[parseInt(x) + 1]];
}
}
data.push({color: colorValue, domain: domainValues})
}
}
legend.scale = function(newScale) {
if (!arguments.length) return scale;
scale = newScale;
return this;
}
legend.title = function(newTitle) {
if (!arguments.length) return title;
title = newTitle;
return this;
}
legend.unitLabel = function(newUnits) {
if (!arguments.length) return units;
units = newUnits;
return this;
}
legend.unitTranslate = function(newTranslate) {
if (!arguments.length) return unitTranslate;
unitTranslate = newTranslate;
return this;
}
legend.formatter = function(newFormatter) {
if (!arguments.length) return numberFormat;
numberFormat = newFormatter;
return this;
}
return legend;
}
(function(){var rand,root,__slice=[].slice;root=typeof exports!=="undefined"&&exports!==null?exports:this;rand=function(){return(Math.random().toString(36)+"00000000000000000").replace(/[^a-z]+/g,"").slice(0,5)};root.textures={circles:function(){var background,circles,complement,fill,id,radius,size,stroke,strokeWidth;size=20;background="";radius=2;complement=false;fill="#343434";stroke="#343434";strokeWidth=0;id=rand();circles=function(){var corner,g,_i,_len,_ref,_results;g=this.append("defs").append("pattern").attr("id",id).attr("patternUnits","userSpaceOnUse").attr("width",size).attr("height",size);if(background){g.append("rect").attr("width",size).attr("height",size).attr("fill",background)}g.append("circle").attr("cx",size/2).attr("cy",size/2).attr("r",radius).attr("fill",fill).attr("stroke",stroke).attr("stroke-width",strokeWidth);if(complement){_ref=[[0,0],[0,size],[size,0],[size,size]];_results=[];for(_i=0,_len=_ref.length;_i<_len;_i++){corner=_ref[_i];_results.push(g.append("circle").attr("cx",corner[0]).attr("cy",corner[1]).attr("r",radius).attr("fill",fill).attr("stroke",stroke).attr("stroke-width",strokeWidth))}return _results}};circles.heavier=function(_){if(!arguments.length){radius=radius*2}else{radius=_?radius*2*_:radius*2}return circles};circles.lighter=function(_){if(!arguments.length){radius=radius/2}else{radius=_?radius/(2*_):radius/2}return circles};circles.thinner=function(_){if(!arguments.length){size=size*2}else{size=_?size*2*_:size*2}return circles};circles.thicker=function(_){if(!arguments.length){size=size/2}else{size=_?size/(2*_):size/2}return circles};circles.background=function(_){background=_;return circles};circles.size=function(_){size=_;return circles};circles.complement=function(){complement=true;return circles};circles.radius=function(_){radius=_;return circles};circles.fill=function(_){fill=_;return circles};circles.stroke=function(_){stroke=_;return circles};circles.strokeWidth=function(_){strokeWidth=_;return circles};circles.id=function(_){if(!arguments.length){return id}else{id=_;return circles}};circles.url=function(){return"url(#"+circles.id()+")"};return circles},lines:function(){var background,id,lines,orientation,path,shapeRendering,size,stroke,strokeWidth;size=20;strokeWidth=2;stroke="#343434";id=rand();background="";orientation=["diagonal"];shapeRendering="auto";path=function(orientation){switch(orientation){case"0/8":return function(s){return"M "+s/2+", 0 l 0, "+s}(size);case"vertical":return function(s){return"M "+s/2+", 0 l 0, "+s}(size);case"1/8":return function(s){return"M "+s/4+",0 l "+s/2+","+s+" M "+-s/4+",0 l "+s/2+","+s+" M "+s*3/4+",0 l "+s/2+","+s}(size);case"2/8":return function(s){return"M 0,"+s+" l "+s+","+-s+" M "+-s/4+","+s/4+" l "+s/2+","+-s/2+" M "+3/4*s+","+5/4*s+" l "+s/2+","+-s/2}(size);case"diagonal":return function(s){return"M 0,"+s+" l "+s+","+-s+" M "+-s/4+","+s/4+" l "+s/2+","+-s/2+" M "+3/4*s+","+5/4*s+" l "+s/2+","+-s/2}(size);case"3/8":return function(s){return"M 0,"+3/4*s+" l "+s+","+-s/2+" M 0,"+s/4+" l "+s+","+-s/2+" M 0,"+s*5/4+" l "+s+","+-s/2}(size);case"4/8":return function(s){return"M 0,"+s/2+" l "+s+",0"}(size);case"horizontal":return function(s){return"M 0,"+s/2+" l "+s+",0"}(size);case"5/8":return function(s){return"M 0,"+-s/4+" l "+s+","+s/2+"M 0,"+s/4+" l "+s+","+s/2+"M 0,"+s*3/4+" l "+s+","+s/2}(size);case"6/8":return function(s){return"M 0,0 l "+s+","+s+" M "+-s/4+","+3/4*s+" l "+s/2+","+s/2+" M "+s*3/4+","+-s/4+" l "+s/2+","+s/2}(size);case"7/8":return function(s){return"M "+-s/4+",0 l "+s/2+","+s+" M "+s/4+",0 l "+s/2+","+s+" M "+s*3/4+",0 l "+s/2+","+s}(size);default:return function(s){return"M "+s/2+", 0 l 0, "+s}(size)}};lines=function(){var g,o,_i,_len,_results;g=this.append("defs").append("pattern").attr("id",id).attr("patternUnits","userSpaceOnUse").attr("width",size).attr("height",size);if(background){g.append("rect").attr("width",size).attr("height",size).attr("fill",background)}_results=[];for(_i=0,_len=orientation.length;_i<_len;_i++){o=orientation[_i];_results.push(g.append("path").attr("d",path(o)).attr("stroke-width",strokeWidth).attr("shape-rendering",shapeRendering).attr("stroke",stroke).attr("stroke-linecap","square"))}return _results};lines.background=function(_){background=_;return lines};lines.shapeRendering=function(_){shapeRendering=_;return lines};lines.heavier=function(_){if(!arguments.length){strokeWidth=strokeWidth*2}else{strokeWidth=_?strokeWidth*2*_:strokeWidth*2}return lines};lines.lighter=function(_){if(!arguments.length){strokeWidth=strokeWidth/2}else{strokeWidth=_?strokeWidth/(2*_):strokeWidth/2}return lines};lines.thinner=function(_){if(!arguments.length){size=size*2}else{size=_?size*2*_:size*2}return lines};lines.thicker=function(_){if(!arguments.length){size=size/2}else{size=_?size/(2*_):size/2}return lines};lines.orientation=function(){var args;args=1<=arguments.length?__slice.call(arguments,0):[];orientation=args;return lines};lines.size=function(_){size=_;return lines};lines.stroke=function(_){stroke=_;return lines};lines.strokeWidth=function(_){strokeWidth=_;return lines};lines.id=function(_){if(!arguments.length){return id}else{id=_;return lines}};lines.url=function(){return"url(#"+lines.id()+")"};return lines},paths:function(){var background,d,fill,height,id,paths,shapeRendering,size,stroke,strokeWidth,svgPath,width;size=20;height=1;width=1;strokeWidth=2;stroke="#343434";background="";d="";shapeRendering="auto";fill="transparent";id=void 0;svgPath=function(_){switch(_){case"squares":return function(s){return"M "+s/4+" "+s/4+" l "+s/2+" 0 l 0 "+s/2+" l "+-s/2+" 0 Z"}(size);case"nylon":return function(s){return"M 0 "+s/4+" l "+s/4+" 0 l 0 "+-s/4+" M "+s*3/4+" "+s+" l 0 "+-s/4+" l "+s/4+" 0 M "+s/4+" "+s/2+" l 0 "+s/4+" l "+s/4+" 0 M "+s/2+" "+s/4+" l "+s/4+" 0 l 0 "+s/4}(size);case"waves":return function(s){return"M 0 "+s/2+" c "+s/8+" "+-s/4+" , "+s*3/8+" "+-s/4+" , "+s/2+" 0 c "+s/8+" "+s/4+" , "+s*3/8+" "+s/4+" , "+s/2+" 0 M "+-s/2+" "+s/2+" c "+s/8+" "+s/4+" , "+s*3/8+" "+s/4+" , "+s/2+" 0 M "+s+" "+s/2+" c "+s/8+" "+-s/4+" , "+s*3/8+" "+-s/4+" , "+s/2+" 0"}(size);case"woven":return function(s){return"M "+s/4+","+s/4+"l"+s/2+","+s/2+"M"+s*3/4+","+s/4+"l"+s/2+","+-s/2+"M"+s/4+","+s*3/4+"l"+-s/2+","+s/2+"M"+s*3/4+","+s*5/4+"l"+s/2+","+-s/2+"M"+-s/4+","+s/4+"l"+s/2+","+-s/2}(size);case"crosses":return function(s){return"M "+s/4+","+s/4+"l"+s/2+","+s/2+"M"+s/4+","+s*3/4+"l"+s/2+","+-s/2}(size);case"caps":return function(s){return"M "+s/4+","+s*3/4+"l"+s/4+","+-s/2+"l"+s/4+","+s/2}(size);case"hexagons":return function(s){width=3;height=Math.sqrt(3);return"M "+s+",0 l "+s+",0 l "+s/2+","+s*Math.sqrt(3)/2+" l "+-s/2+","+s*Math.sqrt(3)/2+" l "+-s+",0 l "+-s/2+","+-s*Math.sqrt(3)/2+" Z M 0,"+s*Math.sqrt(3)/2+" l "+s/2+",0 M "+3*s+","+s*Math.sqrt(3)/2+" l "+-s/2+",0"}(size);default:return _(size)}};paths=function(){var g,path;path=svgPath(d);id=rand();g=this.append("defs").append("pattern").attr("id",id).attr("patternUnits","userSpaceOnUse").attr("width",size*width).attr("height",size*height);if(background){g.append("rect").attr("width",size*width).attr("height",size*height).attr("fill",background)}return g.append("path").attr("d",path).attr("fill",fill).attr("stroke-width",strokeWidth).attr("shape-rendering",shapeRendering).attr("stroke",stroke).attr("stroke-linecap","square")};paths.background=function(_){background=_;return paths};paths.shapeRendering=function(_){shapeRendering=_;return paths};paths.heavier=function(_){if(!arguments.length){strokeWidth=strokeWidth*2}else{strokeWidth=_?strokeWidth*2*_:strokeWidth*2}return paths};paths.lighter=function(_){if(!arguments.length){strokeWidth=strokeWidth/2}else{strokeWidth=_?strokeWidth/(2*_):strokeWidth/2}return paths};paths.thinner=function(_){if(!arguments.length){size=size*2}else{size=_?size*2*_:size*2}return paths};paths.thicker=function(_){if(!arguments.length){size=size/2}else{size=_?size/(2*_):size/2}return paths};paths.d=function(_){d=_;return paths};paths.size=function(_){size=_;return paths};paths.stroke=function(_){stroke=_;return paths};paths.strokeWidth=function(_){strokeWidth=_;return paths};paths.id=function(_){if(!arguments.length){return id}else{id=_;return paths}};paths.url=function(){return"url(#"+paths.id()+")"};return paths}}}).call(this);
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"world":{"type":"GeometryCollection","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}},"geometries":[{"type":"Polygon","properties":{"pop":32854159,"iso":"DZA","label":"Algeria","stats_gdp":"235.5000","stats_r":"NorthAfrica","gdp":235.5},"arcs":[[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16]]},{"type":"MultiPolygon","properties":{"pop":8352021,"iso":"AZE","label":"Azerbaijan","stats_gdp":"73.6500","stats_r":"Asia","gdp":73.65},"arcs":[[[17,18,19,20]],[[21]],[[22]],[[23,24,25,26,27,28,29,30],[31,32]]]},{"type":"Polygon","properties":{"pop":3153731,"iso":"ALB","label":"Albania","stats_gdp":"21.8200","stats_r":"Europe","gdp":21.82},"arcs":[[33,34,35,36,37]]},{"type":"MultiPolygon","properties":{"pop":3017661,"iso":"ARM","label":"Armenia","stats_gdp":"18.9200","stats_r":"Asia","gdp":18.92},"arcs":[[[38,39]],[[-27,40,41,42,43,44,45,46,47],[-23],[-22]]]},{"type":"MultiPolygon","properties":{"pop":16095214,"iso":"AGO","label":"Angola","stats_gdp":"110.3000","stats_r":"Sub Saharan Africa","gdp":110.3},"arcs":[[[48]],[[49,50,51,52,53,54,55,56]],[[57,58,59]]]},{"type":"MultiPolygon","properties":{"pop":38747148,"iso":"ARG","label":"Argentina","stats_gdp":"575.6000","stats_r":"Latin America","gdp":575.6},"arcs":[[[60]],[[61]],[[62]],[[63]],[[64]],[[65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86]]]},{"type":"MultiPolygon","properties":{"pop":20310208,"iso":"AUS","label":"Australia","stats_gdp":"800.5000","stats_r":"Australia","gdp":800.5},"arcs":[[[87]],[[88]],[[89]],[[90]],[[91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99]],[[100]],[[101]],[[102]],[[103]],[[104]],[[105]],[[106]],[[107]],[[108]],[[109]],[[110]],[[111]],[[112]],[[113]],[[114]],[[115]],[[116]],[[117]],[[118]],[[119]],[[120]],[[121]],[[122]],[[123]],[[124]],[[125]],[[126]],[[127]],[[128]],[[129]],[[130]],[[131]],[[132]],[[133]],[[134]],[[135]],[[136]],[[137]],[[138]],[[139]],[[140]],[[141]],[[142]],[[143]],[[144]],[[145]],[[146]],[[147]],[[148]],[[149]],[[150]],[[151,152]],[[153]],[[154]],[[155]],[[156,157]],[[-157,158]],[[159]],[[160]],[[161]],[[162]],[[163]],[[164]],[[165]],[[166]],[[167]],[[168,169]],[[170]],[[171]],[[172]],[[173]],[[174]],[[175]]]},{"type":"MultiPolygon","properties":{"pop":15328112,"iso":"BGD","label":"Bangladesh","stats_gdp":"224.0000","stats_r":"Asia","gdp":224},"arcs":[[[176]],[[177]],[[178,179]],[[180]],[[181]],[[-183]],[[183]],[[184]],[[185]],[[186]],[[187]],[[188]],[[189]],[[190]],[[191]],[[192]],[[193]],[[194]],[[195,196]],[[197]],[[198]],[[199,200,201,202,203,204,205,206,207,208,209,210,211],[212]]]},{"type":"MultiPolygon","properties":{"pop":275546,"iso":"BLZ","label":"Belize","stats_gdp":"2.8200","stats_r":"Latin America","gdp":2.82},"arcs":[[[213]],[[214]],[[215]],[[216,217]]]},{"type":"Polygon","properties":{"pop":3915238,"iso":"BIH","label":"Bosnia and Herzegovina","stats_gdp":"29.9000","stats_r":"Europe","gdp":29.9},"arcs":[[218,219,220,221,222,223,224,225]]},{"type":"Polygon","properties":{"pop":9182015,"iso":"BOL","label":"Bolivia","stats_gdp":"43.0800","stats_r":"Latin America","gdp":43.08},"arcs":[[226,-85,227,228,229,230,231,232,233,234,235,236,237,238,-66,239]]},{"type":"MultiPolygon","properties":{"pop":47967266,"iso":"MMR","label":"Burma","stats_gdp":"111","stats_r":"Asia","gdp":111},"arcs":[[[240]],[[241]],[[242]],[[243]],[[244]],[[245]],[[246]],[[247]],[[248]],[[249]],[[250]],[[251]],[[252]],[[253]],[[254]],[[255]],[[256]],[[257]],[[258]],[[259]],[[260]],[[261]],[[262]],[[263]],[[264]],[[265]],[[266]],[[267]],[[268]],[[269]],[[270]],[[271,272,273,274,275,276,277,278,279,280,281,282,283,284,-206,285,286,287,288]]]},{"type":"Polygon","properties":{"pop":8490301,"iso":"BEN","label":"Benin","stats_gdp":"12.8400","stats_r":"Sub Saharan Africa","gdp":12.84},"arcs":[[289,290,291,292,293,294,295,296,297]]},{"type":"MultiPolygon","properties":{"pop":472419,"iso":"SLB","label":"Solomon Islands","stats_gdp":"1.0780","stats_r":"Asia","gdp":1.078},"arcs":[[[298]],[[299]],[[300]],[[301]],[[302]],[[303]],[[304]],[[305]],[[306]],[[307]],[[308]],[[309]],[[310]],[[311]],[[312]],[[313]],[[314]],[[315]],[[316]],[[317]],[[318]],[[319]],[[320]],[[321]],[[322]],[[323]],[[324]],[[325]],[[326]],[[327]],[[328]],[[329]]]},{"type":"MultiPolygon","properties":{"pop":186830759,"iso":"BRA","label":"Brazil","stats_gdp":"1990.0000","stats_r":"Latin America","gdp":1990},"arcs":[[[330]],[[331]],[[332]],[[333]],[[334]],[[335]],[[336]],[[337]],[[338]],[[339]],[[340]],[[341]],[[342]],[[343]],[[344]],[[345]],[[346]],[[347]],[[348]],[[349]],[[350]],[[351]],[[352]],[[353]],[[354]],[[355]],[[356]],[[357]],[[358]],[[359]],[[360]],[[361]],[[362]],[[363]],[[364]],[[365]],[[366]],[[367]],[[368]],[[369]],[[370,371,372]],[[373]],[[374]],[[375]],[[-372,376]],[[377]],[[378]],[[379]],[[380]],[[381]],[[382]],[[383]],[[384]],[[385]],[[386]],[[387]],[[388]],[[389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,-74,406,-72,407,408,409,410,-234,411,-232,412,413,414,415,416,417,418,419]]]},{"type":"Polygon","properties":{"pop":7744591,"iso":"BGR","label":"Bulgaria","stats_gdp":"93.7800","stats_r":"Europe","gdp":93.78},"arcs":[[420,421,422,423,424,425,426,427,428,429]]},{"type":"MultiPolygon","properties":{"pop":32270507,"iso":"CAN","label":"Canada","stats_gdp":"1307.0000","stats_r":"North America","gdp":1307},"arcs":[[[430]],[[431]],[[432]],[[433]],[[434]],[[435]],[[436]],[[437]],[[438]],[[439]],[[440]],[[441]],[[442]],[[443]],[[444]],[[445]],[[446]],[[447]],[[448]],[[449]],[[450]],[[451]],[[452]],[[453]],[[454]],[[455]],[[456]],[[457]],[[458]],[[459]],[[460]],[[461]],[[462]],[[463]],[[464]],[[465]],[[466]],[[467]],[[468]],[[469]],[[470]],[[471]],[[472]],[[473]],[[474]],[[475]],[[476]],[[477]],[[478]],[[479]],[[480]],[[481]],[[482]],[[483]],[[484]],[[485]],[[486]],[[487]],[[488]],[[489]],[[490]],[[491]],[[492]],[[493]],[[494]],[[495]],[[496]],[[497]],[[498]],[[499]],[[500]],[[501]],[[502]],[[503]],[[504]],[[505]],[[506]],[[507]],[[508]],[[509]],[[510]],[[511]],[[512]],[[513]],[[514]],[[515]],[[516]],[[517]],[[518]],[[519]],[[520]],[[521]],[[522]],[[523]],[[524]],[[525]],[[526]],[[527]],[[528]],[[529]],[[530]],[[531]],[[532]],[[533]],[[534]],[[535]],[[536]],[[537]],[[538]],[[539]],[[540]],[[541]],[[542]],[[543]],[[544]],[[545]],[[546]],[[547]],[[548]],[[549]],[[550]],[[551]],[[552]],[[553]],[[554]],[[555]],[[556]],[[557]],[[558]],[[559]],[[560]],[[561]],[[562]],[[563]],[[564]],[[565]],[[566]],[[567]],[[568]],[[569]],[[570]],[[571]],[[572]],[[573]],[[574]],[[575]],[[576]],[[577]],[[578]],[[579]],[[580]],[[581]],[[582]],[[583]],[[584]],[[585]],[[586]],[[587]],[[588]],[[589]],[[590]],[[591]],[[592]],[[593]],[[594]],[[595]],[[596]],[[597]],[[598]],[[599]],[[600]],[[601]],[[602]],[[603]],[[604]],[[605]],[[606]],[[607]],[[608]],[[609]],[[610]],[[611]],[[612]],[[613]],[[614]],[[615]],[[616]],[[617]],[[618]],[[619]],[[620]],[[621]],[[622]],[[623]],[[624]],[[625]],[[626]],[[627]],[[628]],[[629]],[[630]],[[631]],[[632]],[[633]],[[634]],[[635]],[[636]],[[637]],[[638]],[[639]],[[640]],[[641]],[[642]],[[643]],[[644]],[[645]],[[646]],[[647]],[[648]],[[649]],[[650]],[[651]],[[652]],[[653]],[[654]],[[655]],[[656]],[[657]],[[658]],[[659]],[[660]],[[661]],[[662]],[[663]],[[664]],[[665]],[[666]],[[667]],[[668]],[[669]],[[670]],[[671]],[[672]],[[673]],[[674]],[[675]],[[676]],[[677]],[[678]],[[679]],[[680]],[[681]],[[682]],[[683]],[[684]],[[685]],[[686]],[[687]],[[688]],[[689]],[[690]],[[691]],[[692]],[[693]],[[694]],[[695]],[[696]],[[697]],[[698]],[[699]],[[700]],[[701]],[[702]],[[703]],[[704]],[[705]],[[706]],[[707]],[[708]],[[709]],[[710]],[[711]],[[712]],[[713]],[[714]],[[715]],[[716]],[[717]],[[718]],[[719]],[[720]],[[721]],[[722]],[[723]],[[724]],[[725]],[[726]],[[727]],[[728]],[[729]],[[730]],[[731]],[[732]],[[733]],[[734]],[[735]],[[736]],[[737]],[[738]],[[739]],[[740]],[[741]],[[742]],[[743]],[[744]],[[745]],[[746]],[[747]],[[748]],[[749]],[[750]],[[751]],[[752]],[[753]],[[754]],[[755]],[[756]],[[757]],[[758]],[[759]],[[760]],[[761]],[[762]],[[763]],[[764]],[[765]],[[766]],[[767]],[[768]],[[769]],[[770]],[[771]],[[772]],[[773]],[[774]],[[775]],[[776]],[[777]],[[778]],[[779]],[[780]],[[781]],[[782]],[[783]],[[784]],[[785]],[[786]],[[787]],[[788]],[[789]],[[790]],[[791]],[[792]],[[793]],[[794]],[[795]],[[796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,813,814,815,816,817,818,819],[820],[821],[822]],[[823]],[[824]],[[825]],[[826]],[[827]],[[828]],[[829]],[[830]],[[831]],[[832]],[[833]],[[834]],[[835]],[[836]],[[837]],[[838]],[[839]],[[840]],[[841]],[[842]],[[843]],[[844,845]],[[846]],[[847]],[[848]],[[849]],[[850]],[[851]],[[852]],[[853]],[[854]],[[855]],[[856]],[[857]],[[858]],[[859]],[[860]],[[861]],[[862]],[[863]],[[864]],[[865]],[[866]],[[867]],[[868]],[[869]],[[870]],[[871]],[[872]],[[873]],[[874]],[[875]],[[876]],[[877]],[[878]],[[879]],[[880]],[[881]],[[882]],[[883]],[[884]],[[885]],[[886]],[[887]],[[888]],[[889]],[[890]],[[891]],[[892]],[[893]],[[894]],[[895]],[[896]],[[897]],[[898]],[[899]],[[900]],[[901]],[[902]],[[903]],[[904]],[[905]],[[906]],[[907]],[[908]],[[909]],[[910]],[[911]],[[912]],[[913]],[[914]],[[915]],[[916]],[[917]],[[918]]]},{"type":"MultiPolygon","properties":{"pop":13955507,"iso":"KHM","label":"Cambodia","stats_gdp":"27.9500","stats_r":"Asia","gdp":27.95},"arcs":[[[919]],[[920]],[[921,922,923,924,925,926,927,928,929,930,931,932,933]]]},{"type":"MultiPolygon","properties":{"pop":19120763,"iso":"LKA","label":"Sri Lanka","stats_gdp":"91.9000","stats_r":"Asia","gdp":91.9},"arcs":[[[934]],[[935]],[[936]],[[937]]]},{"type":"Polygon","properties":{"pop":3609851,"iso":"COG","label":"Congo","stats_gdp":"55","stats_r":"Africa","gdp":55},"arcs":[[938,939,940,941,942,943,944,945,946,947,948]]},{"type":"MultiPolygon","properties":{"pop":58740547,"iso":"COD","label":"Democratic Republic of the Congo","stats_gdp":"55","stats_r":"Africa","gdp":55},"arcs":[[[949]],[[950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,-52,969,-50,970,-58,971,-948,972,973,974,975,976,977]]]},{"type":"Polygon","properties":{"pop":7858791,"iso":"BDI","label":"Burundi","stats_gdp":"3.1030","stats_r":"Sub Saharan Africa","gdp":3.103},"arcs":[[978,979,980,981,982]]},{"type":"MultiPolygon","properties":{"pop":1312978855,"iso":"CHN","label":"China","stats_gdp":"7800.0000","stats_r":"Asia","gdp":7800},"arcs":[[[983]],[[984]],[[985]],[[986]],[[987]],[[988]],[[989]],[[990]],[[991]],[[992]],[[993]],[[994]],[[995]],[[996]],[[997]],[[998]],[[999]],[[1000]],[[1001]],[[1002]],[[1003]],[[1004]],[[1005]],[[1006]],[[1007]],[[1008]],[[1009]],[[1010]],[[1011]],[[1012]],[[1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,-277,1031,1032,-274,1033,-272,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077]]]},{"type":"Polygon","properties":{"pop":25067407,"iso":"AFG","label":"Afghanistan","stats_gdp":"23.0300","stats_r":"Asia","gdp":23.03},"arcs":[[1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088]]},{"type":"Polygon","properties":{"pop":637013,"iso":"BTN","label":"Bhutan","stats_gdp":"3.7890","stats_r":"Asia","gdp":3.789},"arcs":[[1089,1090,1091,1092,1093,-1041,1094]]},{"type":"MultiPolygon","properties":{"pop":16295102,"iso":"CHL","label":"Chile","stats_gdp":"245.3000","stats_r":"Latin America","gdp":245.3},"arcs":[[[1095]],[[1096]],[[1097]],[[1098]],[[1099]],[[1100]],[[1101]],[[1102]],[[1103]],[[1104]],[[1105]],[[1106]],[[1107]],[[1108]],[[1109]],[[1110]],[[1111]],[[1112]],[[1113]],[[1114]],[[1115]],[[1116]],[[1117]],[[1118]],[[1119]],[[1120]],[[1121]],[[1122]],[[1123]],[[1124]],[[1125]],[[1126]],[[1127]],[[1128,1129]],[[1130]],[[1131]],[[1132]],[[1133]],[[1134]],[[1135]],[[1136]],[[1137]],[[1138]],[[1139]],[[1140]],[[1141]],[[1142]],[[1143]],[[1144]],[[1145]],[[1146]],[[1147]],[[1148]],[[1149]],[[1150]],[[1151]],[[1152]],[[1153]],[[1154]],[[1155]],[[1156]],[[1157]],[[1158]],[[1159]],[[1160]],[[1161]],[[1162]],[[1163]],[[1164]],[[1165]],[[1166]],[[1167]],[[1168]],[[1169]],[[1170]],[[1171]],[[1172]],[[1173]],[[1174]],[[1175]],[[1176]],[[1177]],[[1178]],[[1179]],[[1180]],[[1181]],[[1182]],[[1183]],[[1184]],[[1185]],[[1186]],[[1187]],[[1188]],[[1189]],[[1190]],[[1191]],[[1192]],[[1193]],[[1194]],[[1195]],[[1196]],[[1197]],[[1198]],[[1199]],[[1200]],[[1201]],[[1202]],[[1203]],[[1204]],[[1205]],[[1206]],[[1207]],[[1208]],[[1209]],[[1210]],[[1211]],[[1212]],[[1213]],[[1214,1215]],[[1216]],[[1217]],[[1218,-1215]],[[1219]],[[1220,1221]],[[1222]],[[1223]],[[1224]],[[1225]],[[1226]],[[-1228]],[[1228]],[[1229]],[[1230]],[[1231]],[[1232]],[[1233]],[[1234]],[[1235]],[[1236]],[[1237,1238]],[[1239]],[[-228,-84,1240,1241,-81,1242,-79,1243,1244,1245,1246],[1247]]]},{"type":"MultiPolygon","properties":{"pop":17795149,"iso":"CMR","label":"Cameroon","stats_gdp":"42.7600","stats_r":"Sub Saharan Africa","gdp":42.76},"arcs":[[[1248]],[[1249,1250,1251,1252,1253,1254,1255,-944,1256,1257,1258,1259,1260,1261,1262,1263]]]},{"type":"Polygon","properties":{"pop":10145609,"iso":"TCD","label":"Chad","stats_gdp":"16.2600","stats_r":"Sub Saharan Africa","gdp":16.26},"arcs":[[1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,-1250,1278]]},{"type":"MultiPolygon","properties":{"pop":4494579,"iso":"COL","label":"Colombia","stats_gdp":"399.4000","stats_r":"Latin America","gdp":399.4},"arcs":[[[1279]],[[1280,1281]],[[1282]],[[1283]],[[1284]],[[1285]],[[1286]],[[1287,-416,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301]]]},{"type":"MultiPolygon","properties":{"pop":4327228,"iso":"CRI","label":"Costa Rica","stats_gdp":"48.4800","stats_r":"Latin America","gdp":48.48},"arcs":[[[1302]],[[1303,1304,1305,1306,1307,1308]]]},{"type":"Polygon","properties":{"pop":4191429,"iso":"CAF","label":"Central African Republic","stats_gdp":"3.2390","stats_r":"Sub Saharan Africa","gdp":3.239},"arcs":[[1309,-1273,1310,1311,-951,1312,-977,1313,-975,1314,1315,-946,1316,1317,-1254,1318,1319,-1276,1320]]},{"type":"MultiPolygon","properties":{"pop":11259905,"iso":"CUB","label":"Cuba","stats_gdp":"108.2000","stats_r":"Caribbean","gdp":108.2},"arcs":[[[1321]],[[1322]],[[1323]],[[1324]],[[1325,1326]],[[1327]],[[1328]],[[1329]],[[1330]],[[1331]],[[1332]],[[-1334]],[[1334]],[[1335]],[[1336]],[[1337]],[[1338]],[[1339]],[[1340]],[[1341]],[[1342]],[[1343]]]},{"type":"MultiPolygon","properties":{"pop":5416945,"iso":"DNK","label":"Denmark","stats_gdp":"324.293","stats_r":"Europe","gdp":324.293},"arcs":[[[1344]],[[1345]],[[1346]],[[1347]],[[1348]],[[1349]],[[1350]],[[1351]],[[1352]],[[1353]],[[1354]],[[1355]],[[1356]],[[1357]],[[1358]],[[1359]],[[1360]],[[1361]]]},{"type":"Polygon","properties":{"pop":804206,"iso":"DJI","label":"Djibouti","stats_gdp":"1.8890","stats_r":"Sub Saharan Africa","gdp":1.889},"arcs":[[1362,1363,1364,1365]]},{"type":"MultiPolygon","properties":{"pop":9469601,"iso":"DOM","label":"Dominican Republic","stats_gdp":"77.4300","stats_r":"Caribbean","gdp":77.43},"arcs":[[[1366]],[[1367]],[[1368,1369]]]},{"type":"MultiPolygon","properties":{"pop":13060993,"iso":"ECU","label":"Ecuador","stats_gdp":"107.1000","stats_r":"Latin America","gdp":107.1},"arcs":[[[1370]],[[1371]],[[1372]],[[-1294,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383]]]},{"type":"MultiPolygon","properties":{"pop":72849793,"iso":"EGY","label":"Egypt","stats_gdp":"442.6000","stats_r":"NorthAfrica","gdp":442.6},"arcs":[[[1384]],[[1385]],[[1386]],[[-1388]],[[1388]],[[1389,1390,1391,1392,1393,1394]]]},{"type":"MultiPolygon","properties":{"pop":4143294,"iso":"IRL","label":"Ireland","stats_gdp":"192.223","stats_r":"Europe","gdp":192.223},"arcs":[[[1395]],[[1396]],[[1397]],[[1398,1399,1400,1401]]]},{"type":"MultiPolygon","properties":{"pop":484098,"iso":"GNQ","label":"Equatorial Guinea","stats_gdp":"19.3700","stats_r":"Sub Saharan Africa","gdp":19.37},"arcs":[[[1402]],[[1403]],[[1404]]]},{"type":"MultiPolygon","properties":{"pop":1344312,"iso":"EST","label":"Estonia","stats_gdp":"29.994","stats_r":"Europe","gdp":29.994},"arcs":[[[1405]],[[1406]],[[1407]],[[1408]],[[1409]],[[1410,1411,1412,1413,1414]]]},{"type":"MultiPolygon","properties":{"pop":4526722,"iso":"ERI","label":"Eritrea","stats_gdp":"3.9460","stats_r":"Sub Saharan Africa","gdp":3.946},"arcs":[[[1415]],[[1416]],[[1417,1418,1419,1420,1421]]]},{"type":"MultiPolygon","properties":{"pop":6668356,"iso":"SLV","label":"El Salvador","stats_gdp":"43.9400","stats_r":"Latin America","gdp":43.94},"arcs":[[[1422]],[[1423,1424,1425]]]},{"type":"Polygon","properties":{"pop":78985857,"iso":"ETH","label":"Ethiopia","stats_gdp":"66.2900","stats_r":"Sub Saharan Africa","gdp":66.29},"arcs":[[-1420,1426,1427,-1364,1428,1429,1430,1431,1432,1433,1434,1435]]},{"type":"Polygon","properties":{"pop":8291979,"iso":"AUT","label":"Austria","stats_gdp":"373.133","stats_r":"Europe","gdp":373.133},"arcs":[[1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448]]},{"type":"Polygon","properties":{"pop":10191762,"iso":"CZE","label":"Czech Republic","stats_gdp":"295.891","stats_r":"Europe","gdp":295.891},"arcs":[[1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,-1437]]},{"type":"Polygon","properties":{"pop":192099,"iso":"GUF","label":"French Guiana","stats_gdp":"3.81","stats_r":"South America","gdp":3.81},"arcs":[[1459,-398,1460,1461,1462,1463]]},{"type":"MultiPolygon","properties":{"pop":5246004,"iso":"FIN","label":"Finland","stats_gdp":"197.476","stats_r":"Europe","gdp":197.476},"arcs":[[[1464]],[[1465]],[[1466]],[[1467]],[[1468]],[[1469]],[[1470]],[[1471]],[[1472]],[[1473]],[[1474]],[[1475]],[[1476]],[[1477]],[[1478]],[[1479]],[[1480]],[[1481]],[[1482]],[[1483]],[[1484]],[[1485]],[[1486]],[[1487]],[[1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499]]]},{"type":"MultiPolygon","properties":{"pop":60990544,"iso":"FRA","label":"France","stats_gdp":"2337","stats_r":"Europe","gdp":2337},"arcs":[[[1500]],[[1501]],[[1502]],[[1503]],[[1504]],[[1505]],[[1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,1519,1520]]]},{"type":"MultiPolygon","properties":{"pop":1290693,"iso":"GAB","label":"Gabon","stats_gdp":"21.4400","stats_r":"Sub Saharan Africa","gdp":21.44},"arcs":[[[1521]],[[-942,1522,-940,1523,1524,1525]]]},{"type":"Polygon","properties":{"pop":4473409,"iso":"GEO","label":"Georgia","stats_gdp":"21.6000","stats_r":"Asia","gdp":21.6},"arcs":[[1526,1527,1528,1529,-30,1530,1531,1532,1533]]},{"type":"Polygon","properties":{"pop":2253501,"iso":"GHA","label":"Ghana","stats_gdp":"34.0400","stats_r":"Sub Saharan Africa","gdp":34.04},"arcs":[[1534,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545]]},{"type":"MultiPolygon","properties":{"pop":57475,"iso":"GRL","label":"Greenland","stats_gdp":"1.1000","stats_r":"North America","gdp":1.1},"arcs":[[[1546]],[[1547]],[[1548]],[[1549]],[[1550]],[[1551]],[[1552]],[[1553]],[[1554]],[[1555]],[[1556]],[[1557]],[[1558]],[[1559,1560]],[[1561]],[[-1560,1562,1563]],[[1564,1565]],[[1566,1567]],[[1568]],[[1569]],[[1570]],[[1571]],[[1572]],[[1573]],[[1574]],[[1575]],[[1576]],[[1577]],[[1578]],[[1579]],[[1580]],[[1581]],[[1582]],[[1583]],[[1584]],[[1585]],[[1586]],[[1587]],[[1588]],[[1589]],[[1590]],[[1591]],[[1592]],[[1593]],[[1594]],[[1595]],[[1596]],[[1597]],[[1598]],[[1599]],[[1600]],[[1601]],[[1602]],[[1603]],[[1604]],[[1605]],[[1606]],[[1607]],[[1608]],[[1609]],[[1610]],[[1611]],[[1612]],[[1613]],[[1614]],[[1615]],[[1616]],[[1617]],[[1618]],[[1619]],[[1620]],[[1621]],[[1622]],[[1623]],[[1624]],[[1625]],[[1626]],[[1627]],[[1628]],[[1629]],[[1630]],[[1631]],[[1632]],[[1633]],[[1634]],[[1635]],[[1636]],[[1637]],[[1638]],[[1639]],[[1640]],[[1641]],[[1642]],[[1643]],[[1644]],[[1645]],[[1646]],[[1647]],[[1648]],[[1649]],[[1650]],[[1651]],[[1652]],[[1653]],[[1654]],[[1655]],[[1656]],[[1657]],[[1658]],[[1659]],[[1660]],[[1661]],[[1662]],[[1663]],[[1664]],[[1665]],[[1666]],[[1667]],[[1668]],[[1669]],[[1670]],[[1671]],[[1672]],[[1673]],[[1674]],[[1675]],[[1676]],[[1677]],[[1678]],[[1679]],[[1680]],[[1681]],[[1682]],[[1683]],[[1684]],[[1685]],[[1686]],[[1687]],[[1688]],[[-1690]],[[1690]],[[1691]],[[1692]],[[1693]],[[1694]],[[1695]],[[1696]],[[1697]],[[1698]],[[1699]],[[1700]],[[1701]],[[1702]],[[1703]],[[1704]],[[1705]],[[1706]],[[1707]],[[1708]],[[1709]],[[1710]],[[1711]],[[1712]],[[1713]],[[1714]],[[1715]],[[-1717]],[[1717]],[[1718]],[[1719]],[[1720]],[[1721]],[[1722]],[[1723]],[[1724]],[[1725]],[[1726]],[[1727]],[[1728]],[[1729]],[[1730]],[[1731]],[[1732]],[[1733]],[[1734]],[[1735]],[[1736]],[[1737]],[[1738]],[[1739]],[[1740]],[[1741]],[[1742]],[[1743]],[[1744]],[[1745,1746,1747]]]},{"type":"MultiPolygon","properties":{"pop":82652369,"iso":"DEU","label":"Germany","stats_gdp":"3338","stats_r":"Europe","gdp":3338},"arcs":[[[1748]],[[1749]],[[1750]],[[1751]],[[1752]],[[1753]],[[1754]],[[1755]],[[1756]],[[1757]],[[1758,1759]],[[1760]],[[1761]],[[1762]],[[1763]],[[1764]],[[1765]],[[1766]],[[1767,1768,1769,1770,-1451,1771,-1448,1772,1773,1774,1775,-1509,1776,1777,1778,1779,1780,1781,1782]]]},{"type":"MultiPolygon","properties":{"pop":11099737,"iso":"GRC","label":"Greece","stats_gdp":"271","stats_r":"Europe","gdp":271},"arcs":[[[1783]],[[1784]],[[1785]],[[1786]],[[1787]],[[1788]],[[1789]],[[1790]],[[1791]],[[1792]],[[1793]],[[1794]],[[1795,1796,-37,1797,1798,1799,-423,1800,1801]]]},{"type":"Polygon","properties":{"pop":12709564,"iso":"GTM","label":"Guatemala","stats_gdp":"68.0200","stats_r":"Latin America","gdp":68.02},"arcs":[[1802,1803,1804,1805,-1425,1806]]},{"type":"Polygon","properties":{"pop":9002656,"iso":"GIN","label":"Guinea","stats_gdp":"10.4400","stats_r":"Sub Saharan Africa","gdp":10.44},"arcs":[[1807,1808,1809,1810,1811,1812,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825]]},{"type":"MultiPolygon","properties":{"pop":739472,"iso":"GUY","label":"Guyana","stats_gdp":"3.0100","stats_r":"Latin America","gdp":3.01},"arcs":[[[1826]],[[1827,1828,1829,1830,-394,1831,-392,1832,-390,1833,1834,1835,1836,1837,1838]]]},{"type":"MultiPolygon","properties":{"pop":9296291,"iso":"HTI","label":"Haiti","stats_gdp":"11.5900","stats_r":"Caribbean","gdp":11.59},"arcs":[[[1839]],[[1840]],[[1841]],[[-1369,1842]],[[1843]]]},{"type":"MultiPolygon","properties":{"pop":683411,"iso":"HND","label":"Honduras","stats_gdp":"33.6300","stats_r":"Latin America","gdp":33.63},"arcs":[[[1844]],[[1845]],[[1846,1847,1848,1849,1850]],[[1851]],[[1852]],[[1853]]]},{"type":"MultiPolygon","properties":{"pop":455149,"iso":"HRV","label":"Croatia","stats_gdp":"73.3600","stats_r":"Europe","gdp":73.36},"arcs":[[[1854]],[[1855]],[[1856]],[[1857]],[[1858]],[[1859]],[[1860]],[[1861]],[[1862]],[[1863]],[[1864]],[[1865,1866,1867,1868,-221,1869,-219,1870,1871,1872]]]},{"type":"Polygon","properties":{"pop":10086387,"iso":"HUN","label":"Hungary","stats_gdp":"202","stats_r":"Europe","gdp":202},"arcs":[[-1867,1873,-1439,1874,1875,1876,1877,1878,1879]]},{"type":"Polygon","properties":{"pop":295732,"iso":"ISL","label":"Iceland","stats_gdp":"12.1500","stats_r":"Europe","gdp":12.15},"arcs":[[1880]]},{"type":"MultiPolygon","properties":{"pop":1134403141,"iso":"IND","label":"India","stats_gdp":"3267.0000","stats_r":"Asia","gdp":3267},"arcs":[[[1881]],[[1882]],[[1883]],[[1884]],[[1885]],[[1886]],[[1887]],[[1888,1889,-1049,1890,1891,1892,1893,1894,1895,1896,-1043,1897,-1093,1898,1899,1900,1901,-1037,1902,-287,1903,-204,1904,-202,1905,-200,1906,-211,1907,1908,1909,1910,1911,1912,1913,1914]]]},{"type":"MultiPolygon","properties":{"pop":69420607,"iso":"IRN","label":"Iran (Islamic Republic of)","stats_gdp":"974","stats_r":"Asia","gdp":974},"arcs":[[[1915]],[[1916]],[[1917]],[[1918]],[[1919]],[[1920]],[[1921,1922,-25,1923,1924,1925,1926,1927,1928,1929,-1081,1930,1931,1932,1933,1934,1935,1936,1937,1938]]]},{"type":"MultiPolygon","properties":{"pop":6692037,"iso":"ISR","label":"Israel","stats_gdp":"200.7000","stats_r":"Asia","gdp":200.7},"arcs":[[[1939]],[[1940,1941,1942,1943,1944,1945,1946]]]},{"type":"MultiPolygon","properties":{"pop":5864636,"iso":"ITA","label":"Italy","stats_gdp":"1847","stats_r":"Europe","gdp":1847},"arcs":[[[1947,1948,1949,1950,-1515,1951,1952,1953,1954,-1444,1955],[1956,1957]],[[1958]],[[1959]],[[1960]],[[1961]]]},{"type":"MultiPolygon","properties":{"pop":18584701,"iso":"CIV","label":"Cote d'Ivoire","stats_gdp":"34.0000","stats_r":"Sub Saharan Africa","gdp":34},"arcs":[[[1962]],[[1963,1964,1965,-1819,1966,-1817,1967,1968,1969,1970,1971,1972,1973,1974,-1538,1975,1976,1977]]]},{"type":"Polygon","properties":{"pop":27995984,"iso":"IRQ","label":"Iraq","stats_gdp":"112.8000","stats_r":"Asia","gdp":112.8},"arcs":[[-1933,1978,1979,1980,1981,1982,1983,1984,1985,1986,-1936,1987,1988]]},{"type":"MultiPolygon","properties":{"pop":127896740,"iso":"JPN","label":"Japan","stats_gdp":"4348.0000","stats_r":"Asia","gdp":4348},"arcs":[[[1989]],[[1990]],[[1991]],[[1992]],[[1993]],[[1994]],[[1995]],[[1996]],[[1997]],[[1998]],[[1999]],[[2000]],[[2001]],[[2002],[2003]],[[2004]],[[2005]],[[2006]],[[2007]],[[2008]],[[2009]],[[2010]],[[2011]],[[2012]],[[2013]],[[2014]],[[2015]],[[2016]],[[2017]],[[2018]],[[2019]],[[2020]],[[2021]],[[2022]],[[2023]],[[2024]],[[2025]],[[2026]],[[2027]]]},{"type":"Polygon","properties":{"pop":5544066,"iso":"JOR","label":"Jordan","stats_gdp":"30.7600","stats_r":"Asia","gdp":30.76},"arcs":[[2028,2029,2030,-1982,2031,2032]]},{"type":"MultiPolygon","properties":{"pop":35598952,"iso":"KEN","label":"Kenya","stats_gdp":"61.8300","stats_r":"Sub Saharan Africa","gdp":61.83},"arcs":[[[2033]],[[2034,2035,-1433,2036,2037,2038,2039,2040,2041,2042,2043]]]},{"type":"Polygon","properties":{"pop":5203547,"iso":"KGZ","label":"Kyrgyzstan","stats_gdp":"11.4100","stats_r":"Asia","gdp":11.41},"arcs":[[2044,-1059,2045,2046,2047,2048,2049,2050,2051,2052,2053,2054,2055,2056,2057]]},{"type":"MultiPolygon","properties":{"pop":23615611,"iso":"PRK","label":"Korea, Democratic People's Republic of","stats_gdp":"40","stats_r":"Asia","gdp":40},"arcs":[[[2058]],[[2059,2060,2061,-1020,2062]]]},{"type":"MultiPolygon","properties":{"pop":47869837,"iso":"KOR","label":"Korea, Republic of","stats_gdp":"1308","stats_r":"Asia","gdp":1308},"arcs":[[[2063]],[[2064]],[[2065]],[[2066]],[[2067]],[[2068]],[[2069]],[[2070]],[[2071]],[[2072]],[[2073]],[[2074]],[[2075]],[[2076]],[[2077]],[[2078]],[[2079]],[[2080,2081]]]},{"type":"MultiPolygon","properties":{"pop":2700,"iso":"KWT","label":"Kuwait","stats_gdp":"149.1000","stats_r":"Asia","gdp":149.1},"arcs":[[[2082]],[[2083]],[[2084]],[[2085,2086]]]},{"type":"MultiPolygon","properties":{"pop":15210609,"iso":"KAZ","label":"Kazakhstan","stats_gdp":"176.9000","stats_r":"Asia","gdp":176.9},"arcs":[[[2087]],[[2088]],[[2089]],[[2090,2091,-1062,2092,-2057,2093,-2055,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106]]]},{"type":"Polygon","properties":{"pop":566391,"iso":"LAO","label":"Lao People's Democratic Republic","stats_gdp":"20.78","stats_r":"Asia","gdp":20.78},"arcs":[[-933,2107,-931,2108,2109,2110,2111,2112,-280,2113,2114,-1028,2115,2116,2117,2118,2119]]},{"type":"Polygon","properties":{"pop":401074,"iso":"LBN","label":"Lebanon","stats_gdp":"44.0700","stats_r":"Asia","gdp":44.07},"arcs":[[-1947,2120,2121,2122]]},{"type":"Polygon","properties":{"pop":2301793,"iso":"LVA","label":"Latvia","stats_gdp":"41","stats_r":"Europe","gdp":41},"arcs":[[-1414,2123,2124,2125,2126,2127,2128,2129,2130,2131]]},{"type":"Polygon","properties":{"pop":9795287,"iso":"BLR","label":"Belarus","stats_gdp":"114.1000","stats_r":"Europe","gdp":114.1},"arcs":[[-2128,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144]]},{"type":"MultiPolygon","properties":{"pop":3425077,"iso":"LTU","label":"Lithuania","stats_gdp":"71","stats_r":"Europe","gdp":71},"arcs":[[[2145]],[[-2145,2146,2147,2148,2149,-2130,2150]]]},{"type":"Polygon","properties":{"pop":3441796,"iso":"LBR","label":"Liberia","stats_gdp":"1.5320","stats_r":"Sub Saharan Africa","gdp":1.532},"arcs":[[2151,2152,-1821,2153,-1965,2154]]},{"type":"Polygon","properties":{"pop":5386995,"iso":"SVK","label":"Slovakia","stats_gdp":"138","stats_r":"Europe","gdp":138},"arcs":[[2155,2156,2157,2158,2159,2160,-1876]]},{"type":"Polygon","properties":{"pop":34598,"iso":"LIE","label":"Liechtenstein","stats_gdp":"4.1600","stats_r":"Europe","gdp":4.16},"arcs":[[2161]]},{"type":"Polygon","properties":{"pop":5918217,"iso":"LBY","label":"Libyan Arab Jamahiriya","stats_gdp":"70","stats_r":"Africa","gdp":70},"arcs":[[2162,2163,2164,2165,2166,-1394,2167,2168,2169,-1269,2170,2171,-7,2172,2173]]},{"type":"MultiPolygon","properties":{"pop":18642586,"iso":"MDG","label":"Madagascar","stats_gdp":"20.7600","stats_r":"Sub Saharan Africa","gdp":20.76},"arcs":[[[2174]],[[2175,-2176,2176]],[[2177]],[[2175,2178]]]},{"type":"Polygon","properties":{"pop":2580704,"iso":"MNG","label":"Mongolia","stats_gdp":"9.5570","stats_r":"Asia","gdp":9.557},"arcs":[[2179,-1064,2180,2181,2182,-1073,2183,-1071,2184,-1069,2185,-1067,2186]]},{"type":"Polygon","properties":{"pop":2033655,"iso":"MKD","label":"The former Yugoslav Republic of Macedonia","stats_gdp":"22","stats_r":"Europe","gdp":22},"arcs":[[2187,-1799,2188]]},{"type":"Polygon","properties":{"pop":1161109,"iso":"MLI","label":"Mali","stats_gdp":"14.4800","stats_r":"Sub Saharan Africa","gdp":14.48},"arcs":[[-1812,2189,2190,2191,2192,2193,2194,2195,-10,2196,2197,2198,2199,2200,2201,2202,2203,-1970,2204,-1814,2205]]},{"type":"Polygon","properties":{"pop":30494991,"iso":"MAR","label":"Morocco","stats_gdp":"137.3000","stats_r":"NorthAfrica","gdp":137.3},"arcs":[[2206,-15,2207,-13,2208,2209,2210]]},{"type":"MultiPolygon","properties":{"pop":2963105,"iso":"MRT","label":"Mauritania","stats_gdp":"6.3100","stats_r":"Sub Saharan Africa","gdp":6.31},"arcs":[[[2211]],[[-2195,2212,2213,2214,2215,2216,2217,2218]]]},{"type":"MultiPolygon","properties":{"pop":2507042,"iso":"OMN","label":"Oman","stats_gdp":"67.0000","stats_r":"Asia","gdp":67},"arcs":[[[2219]],[[2220]],[[2221,2222,2223,2224,2225,2226,2227,2228]],[[2229]]]},{"type":"MultiPolygon","properties":{"pop":104266392,"iso":"MEX","label":"Mexico","stats_gdp":"1559.0000","stats_r":"Latin America","gdp":1559},"arcs":[[[-2231]],[[2231]],[[2232]],[[2233]],[[2234]],[[2235]],[[2236]],[[2237]],[[2238]],[[2239]],[[2240]],[[2241]],[[2242]],[[2243]],[[2244]],[[2245]],[[2246]],[[2247]],[[2248]],[[2249]],[[2250]],[[2251]],[[2252]],[[2253]],[[2254,2255,2256,2257,2258,-1803,2259,2260,2261]]]},{"type":"MultiPolygon","properties":{"pop":25652985,"iso":"MYS","label":"Malaysia","stats_gdp":"386.6000","stats_r":"Asia","gdp":386.6},"arcs":[[[2262]],[[2263]],[[2264]],[[2265,2266]],[[2267]],[[2268]],[[2269]],[[2270]],[[2271]],[[2272]],[[2273,2274,2275]],[[2276]],[[2277,2278,2279,2280,2281,2282,2283]],[[2284]],[[2285]]]},{"type":"MultiPolygon","properties":{"pop":20532675,"iso":"MOZ","label":"Mozambique","stats_gdp":"18.9500","stats_r":"Sub Saharan Africa","gdp":18.95},"arcs":[[[2286]],[[2287]],[[2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306],[2307]]]},{"type":"MultiPolygon","properties":{"pop":13226091,"iso":"MWI","label":"Malawi","stats_gdp":"11.5600","stats_r":"Sub Saharan Africa","gdp":11.56},"arcs":[[[-2308]],[[2308,2309,2310,2311,-2303,2312,-2301,2313,-2299,2314,2315,2316,2317,2318]]]},{"type":"Polygon","properties":{"pop":1326419,"iso":"NER","label":"Niger","stats_gdp":"9.7840","stats_r":"Sub Saharan Africa","gdp":9.784},"arcs":[[2319,-8,-2172,2320,-1267,2321,2322,2323,2324,2325,-294,2326,2327,2328,2329,-2199,2330]]},{"type":"Polygon","properties":{"pop":10398049,"iso":"BEL","label":"Belgium","stats_gdp":"534","stats_r":"Europe","gdp":534},"arcs":[[2331,2332,-1507,2333,2334]]},{"type":"Polygon","properties":{"pop":456613,"iso":"LUX","label":"Luxembourg","stats_gdp":"42","stats_r":"Europe","gdp":42},"arcs":[[-1778,2335]]},{"type":"Polygon","properties":{"pop":325,"iso":"MCO","label":"Monaco","stats_gdp":"0.9763","stats_r":"Europe","gdp":0.9763},"arcs":[[2336]]},{"type":"MultiPolygon","properties":{"pop":3762005,"iso":"PSE","label":"Palestine","stats_gdp":"12","stats_r":"Asia","gdp":12},"arcs":[[[2337,2338]],[[2339,-1943,2340],[1939]]]},{"type":"Polygon","properties":{"pop":607969,"iso":"MNE","label":"Montenegro","stats_gdp":"6.6000","stats_r":"Europe","gdp":6.6},"arcs":[[-225,2341,2342,-34,2343]]},{"type":"MultiPolygon","properties":{"pop":141356083,"iso":"NGA","label":"Nigeria","stats_gdp":"338.1000","stats_r":"Sub Saharan Africa","gdp":338.1},"arcs":[[[2344]],[[2345]],[[-2323,-1265,-1263,2346,-1261,2347,-1259,2348,2349,2350,-296,2351,-2325,2352]]]},{"type":"MultiPolygon","properties":{"pop":1632769,"iso":"NLD","label":"Netherlands","stats_gdp":"838","stats_r":"Europe","gdp":838},"arcs":[[[2353]],[[2354,2355]],[[2356,2357]],[[2358]],[[2359]],[[2360]],[[2361,-1781,2362,2363,-2332,2364,2365,2366]],[[2367]],[[2368]]]},{"type":"MultiPolygon","properties":{"pop":4638836,"iso":"NOR","label":"Norway","stats_gdp":"256.5000","stats_r":"Europe","gdp":256.5},"arcs":[[[2369]],[[2370]],[[2371]],[[2372]],[[2373]],[[2374]],[[2375]],[[2376]],[[2377]],[[2378]],[[2379,2380]],[[2381]],[[2382]],[[2383]],[[2384]],[[2385]],[[2386]],[[2387]],[[2388]],[[2389]],[[2390]],[[2391]],[[2392]],[[2393]],[[2394]],[[2395]],[[2396]],[[2397]],[[2398]],[[2399]],[[2400]],[[2401]],[[2402]],[[2403]],[[2404,2405]],[[2406]],[[2407]],[[2408]],[[2409]],[[2410]],[[2411]],[[2412]],[[2413]],[[2414]],[[2415]],[[2416]],[[2417]],[[2418]],[[2419]],[[2420]],[[2421]],[[2422]],[[2423]],[[2424]],[[2425]],[[2426]],[[2427]],[[2428]],[[2429]],[[2430]],[[2431]],[[2432]],[[2433]],[[2434]],[[2435]],[[2436]],[[2437]],[[2438]],[[2439]],[[2440]],[[2441]],[[2442]],[[2443]],[[2444]],[[2445]],[[2446]],[[2447]],[[2448]],[[2449]],[[2450]],[[2451]],[[2452]],[[2453]],[[2454]],[[2455]],[[2456]],[[2457,2458,2459,2460,-1489,2461,2462,-1498,2463,2464,2465,2466,2467,2468,2469,2470,2471]],[[2472]]]},{"type":"Polygon","properties":{"pop":27093656,"iso":"NPL","label":"Nepal","stats_gdp":"31.0900","stats_r":"Asia","gdp":31.09},"arcs":[[-1892,2473,2474,-1046,2475,2476,-1894,2477]]},{"type":"Polygon","properties":{"pop":452468,"iso":"SUR","label":"Suriname","stats_gdp":"4.2560","stats_r":"Latin America","gdp":4.256},"arcs":[[-1463,2478,2479,-396,2480,-1830,2481,-1828,2482]]},{"type":"MultiPolygon","properties":{"pop":5462539,"iso":"NIC","label":"Nicaragua","stats_gdp":"16.8300","stats_r":"Latin America","gdp":16.83},"arcs":[[[2483]],[[2484]],[[2485,2486,2487,-1848,2488]]]},{"type":"MultiPolygon","properties":{"pop":4097112,"iso":"NZL","label":"New Zealand","stats_gdp":"116.6000","stats_r":"Australia","gdp":116.6},"arcs":[[[2489]],[[2490]],[[2491]],[[2492]],[[2493]],[[2494]],[[2495]],[[2496]],[[2497]],[[2498]],[[2499]],[[2500]],[[2501]],[[2502]],[[2503]]]},{"type":"Polygon","properties":{"pop":5904342,"iso":"PRY","label":"Paraguay","stats_gdp":"28.7100","stats_r":"Latin America","gdp":28.71},"arcs":[[-70,2504,-68,2505,-238,2506,-236,2507,-410,2508,2509]]},{"type":"Polygon","properties":{"pop":27274266,"iso":"PER","label":"Peru","stats_gdp":"238.9000","stats_r":"Latin America","gdp":238.9},"arcs":[[-1377,2510,-1375,2511,-1292,2512,-1290,2513,-414,2514,-230,2515,2516,-1245,2517,-1382,2518,2519,-1379,2520]]},{"type":"MultiPolygon","properties":{"pop":158080591,"iso":"PAK","label":"Pakistan","stats_gdp":"452.7000","stats_r":"Asia","gdp":452.7},"arcs":[[[2521]],[[-1053,2522,-1914,2523,-1912,2524,-1910,2525,2526,-1931,-1080,2527]]]},{"type":"Polygon","properties":{"pop":38195558,"iso":"POL","label":"Poland","stats_gdp":"814","stats_r":"Europe","gdp":814},"arcs":[[2528,-1456,2529,2530,-1453,2531,-1770,2532,2533,2534,2535,-2143,2536,2537,2538,2539,-2158,2540]]},{"type":"MultiPolygon","properties":{"pop":3231502,"iso":"PAN","label":"Panama","stats_gdp":"38.4900","stats_r":"Latin America","gdp":38.49},"arcs":[[[2541]],[[2542]],[[2543]],[[2544]],[[2545]],[[2546]],[[2547]],[[2548]],[[2549]],[[2550,2551]],[[2552,-1300,2553,2554,-1307,2555,2556,2557,2558]]]},{"type":"Polygon","properties":{"pop":10528226,"iso":"PRT","label":"Portugal","stats_gdp":"251","stats_r":"Europe","gdp":251},"arcs":[[2559,2560,2561,2562,2563,2564]]},{"type":"MultiPolygon","properties":{"pop":6069715,"iso":"PNG","label":"Papua New Guinea","stats_gdp":"13.2900","stats_r":"Asia","gdp":13.29},"arcs":[[[2565]],[[2566]],[[2567]],[[2568]],[[2569]],[[2570]],[[2571]],[[2572]],[[2573]],[[2574]],[[2575]],[[2576]],[[2577]],[[2578]],[[2579]],[[2580]],[[2581]],[[2582]],[[2583]],[[2584]],[[2585]],[[2586]],[[2587]],[[2588]],[[2589]],[[2590]],[[2591]],[[2592]],[[2593]],[[2594]],[[2595]],[[2596]],[[2597,2598,2599]],[[2600]],[[2601]]]},{"type":"MultiPolygon","properties":{"pop":1596929,"iso":"GNB","label":"Guinea-Bissau","stats_gdp":"0.8570","stats_r":"Sub Saharan Africa","gdp":0.857},"arcs":[[[2602]],[[2603,2604]],[[2605]],[[2606]],[[2607]],[[2608]],[[2609]],[[2610]],[[2611]],[[2612]],[[2613]],[[2614]],[[2615]],[[-1808,2616,2617,2618]]]},{"type":"Polygon","properties":{"pop":796186,"iso":"QAT","label":"Qatar","stats_gdp":"85.3500","stats_r":"Asia","gdp":85.35},"arcs":[[2619]]},{"type":"Polygon","properties":{"pop":21627557,"iso":"ROU","label":"Romania","stats_gdp":"372","stats_r":"Europe","gdp":372},"arcs":[[2620,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632]]},{"type":"Polygon","properties":{"pop":3876661,"iso":"MDA","label":"Republic of Moldova","stats_gdp":"8","stats_r":"Europe","gdp":8},"arcs":[[2633,2634,2635,2636,2637,-2625,2638]]},{"type":"MultiPolygon","properties":{"pop":84566163,"iso":"PHL","label":"Philippines","stats_gdp":"320.6000","stats_r":"Asia","gdp":320.6},"arcs":[[[2639]],[[2640]],[[2641]],[[2642]],[[2643]],[[2644]],[[2645]],[[2646]],[[2647]],[[2648]],[[2649]],[[2650]],[[2651]],[[2652]],[[2653]],[[2654]],[[2655]],[[2656]],[[2657]],[[2658]],[[2659]],[[2660]],[[2661]],[[2662]],[[2663]],[[2664]],[[2665]],[[2666]],[[2667]],[[2668]],[[2669]],[[2670]],[[2671]],[[2672]],[[2673]],[[2674]],[[2675]],[[2676]],[[2677]],[[2678]],[[2679]],[[2680]],[[2681]],[[2682]],[[2683,2684]],[[2685]],[[2686]],[[2687]],[[2688]],[[2689]],[[2690,2691]]]},{"type":"MultiPolygon","properties":{"pop":143953092,"iso":"RUS","label":"Russia","stats_gdp":"2225.0000","stats_r":"Europe","gdp":2225},"arcs":[[[2692]],[[2693]],[[2694]],[[2695]],[[2696]],[[2697]],[[2698]],[[2699]],[[2700]],[[2701]],[[2702]],[[2703]],[[2704]],[[2705]],[[2706]],[[2707]],[[2708]],[[2709]],[[2710]],[[2711]],[[2712]],[[2713]],[[2714]],[[2715]],[[2716]],[[2717]],[[2718]],[[2719]],[[2720]],[[2721,2722,2723,2724]],[[2725]],[[2726]],[[2727]],[[2728]],[[2729]],[[2730]],[[2731]],[[2732]],[[2733]],[[2734]],[[2735]],[[2736]],[[2737]],[[2738]],[[2739]],[[2740]],[[2741]],[[2742]],[[2743]],[[2744]],[[2745]],[[2746]],[[2747]],[[2748]],[[2749]],[[2750]],[[2751]],[[2752]],[[2753]],[[2754]],[[2755]],[[2756]],[[2757]],[[2758]],[[2759]],[[2760]],[[2761]],[[2762]],[[2763]],[[2764]],[[2765]],[[2766]],[[2767]],[[2768]],[[2769]],[[2770]],[[2771]],[[2772]],[[2773]],[[2774]],[[2775]],[[2776]],[[2777]],[[2778]],[[2779]],[[2780]],[[2781]],[[2782]],[[2783]],[[2784]],[[2785]],[[2786]],[[2787]],[[2788]],[[2789]],[[2790]],[[2791]],[[2792]],[[2793]],[[2794]],[[2795]],[[2796]],[[2797]],[[2798]],[[2799]],[[2800]],[[2801]],[[2802]],[[2803,-1018,2804,-1016,2805,-1014,2806,-1077,2807,-1075,2808,-2182,2809,-2091,2810,-2106,2811,2812,-2103,2813,-2101,2814,2815,2816,-1528,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,-2139,2827,2828,-2136,2829,-2134,2830,-2126,2831,-1411,2832,-1491,2833,-2460,2834,2835,2836]],[[2837]],[[2838]],[[2839]],[[2840]],[[2841]],[[2842]],[[2843]],[[2844]],[[2845]],[[2846]],[[2847]],[[2848]],[[2849]],[[2850]],[[2851]],[[2852]],[[2853]],[[2854]],[[2855]],[[2856]],[[2857]],[[2858]],[[2859]],[[2860]],[[2861]],[[2862]],[[2863]],[[2864]],[[2865]],[[2866]],[[2867]],[[2868]],[[2869]],[[2870]],[[2871]],[[2872]],[[2873]],[[2874]],[[2875]],[[2876]],[[2877]],[[2878]],[[2879]],[[2880]],[[2881]],[[2882]]]},{"type":"Polygon","properties":{"pop":9233793,"iso":"RWA","label":"Rwanda","stats_gdp":"9.0610","stats_r":"Sub Saharan Africa","gdp":9.061},"arcs":[[-980,2883,2884,2885,2886]]},{"type":"MultiPolygon","properties":{"pop":2361236,"iso":"SAU","label":"Saudi Arabia","stats_gdp":"582.8000","stats_r":"Asia","gdp":582.8},"arcs":[[[2887]],[[2888]],[[2889]],[[2890]],[[2891,-2086,2892,2893,2894,-2225,2895,2896,2897,2898,-2033,2899,-1980]]]},{"type":"Polygon","properties":{"pop":47938663,"iso":"ZAF","label":"South Africa","stats_gdp":"489.7000","stats_r":"Sub Saharan Africa","gdp":489.7},"arcs":[[-2291,2900,2901,2902,2903,2904,2905,2906,2907,2908,2909,2910,2911,2912,2913],[2914,2915,2916,2917,2918]]},{"type":"Polygon","properties":{"pop":1980831,"iso":"LSO","label":"Lesotho","stats_gdp":"3.3700","stats_r":"Sub Saharan Africa","gdp":3.37},"arcs":[[-2915,2919,2920,-2917,2921]]},{"type":"Polygon","properties":{"pop":1835938,"iso":"BWA","label":"Botswana","stats_gdp":"26.0400","stats_r":"Sub Saharan Africa","gdp":26.04},"arcs":[[-2913,2922,-2911,2923,-2909,2924,2925,2926,2927,2928]]},{"type":"Polygon","properties":{"pop":1177034,"iso":"SEN","label":"Senegal","stats_gdp":"21.9000","stats_r":"Sub Saharan Africa","gdp":21.9},"arcs":[[-2214,2929,-2193,2930,-2191,2931,-1810,2932,-2618,2933]]},{"type":"Polygon","properties":{"pop":1999425,"iso":"SVN","label":"Slovenia","stats_gdp":"59.1400","stats_r":"Europe","gdp":59.14},"arcs":[[2934,-1441,2935,-1873,2936,-1949]]},{"type":"MultiPolygon","properties":{"pop":5586403,"iso":"SLE","label":"Sierra Leone","stats_gdp":"4.3070","stats_r":"Sub Saharan Africa","gdp":4.307},"arcs":[[[2937]],[[-1823,2938,-2152,2939,-1825,2940]]]},{"type":"Polygon","properties":{"pop":8196395,"iso":"SOM","label":"Somalia","stats_gdp":"5.5240","stats_r":"Sub Saharan Africa","gdp":5.524},"arcs":[[-1363,2941,-2038,2942,-1431,2943,-1429]]},{"type":"MultiPolygon","properties":{"pop":43397491,"iso":"ESP","label":"Spain","stats_gdp":"1425","stats_r":"Europe","gdp":1425},"arcs":[[[2944]],[[2945]],[[-1520,2946,-1518,2947,2948,-2562,2949,-2560,2950,-2564,2951]]]},{"type":"MultiPolygon","properties":{"pop":36899747,"iso":"SDN","label":"Sudan","stats_gdp":"87.2700","stats_r":"Sub Saharan Africa","gdp":87.27},"arcs":[[[2952,-1421,-1436,2953,-2044,2954,2955,2956,-956,2957,2958,-953,2959,-1311,2960,-1271,2961,-2169,2962,-1392]]]},{"type":"MultiPolygon","properties":{"pop":9038049,"iso":"SWE","label":"Sweden","stats_gdp":"393","stats_r":"Europe","gdp":393},"arcs":[[[2963]],[[2964]],[[2965]],[[2966]],[[2967]],[[2968]],[[2969]],[[2970]],[[2971]],[[2972]],[[2973]],[[2974]],[[2975]],[[2976]],[[2977]],[[2978]],[[2979]],[[-1496,2980,2981,-2471,2982,-2469,2983,-2467,2984,-2465,2985]]]},{"type":"Polygon","properties":{"pop":18893881,"iso":"SYR","label":"Syrian Arab Republic","stats_gdp":"107","stats_r":"Europe","gdp":107},"arcs":[[2986,-1984,2987,-2030,2988,-2122,2989,2990]]},{"type":"Polygon","properties":{"pop":7424389,"iso":"CHE","label":"Switzerland","stats_gdp":"309.9000","stats_r":"Europe","gdp":309.9},"arcs":[[2991,-1774,2992,2993,-1446,2994,2995,-1953,2996,-1513,2997,-1511,2998],[1748]]},{"type":"MultiPolygon","properties":{"pop":63002911,"iso":"THA","label":"Thailand","stats_gdp":"553.4000","stats_r":"Asia","gdp":553.4},"arcs":[[[2999]],[[3000]],[[3001]],[[3002]],[[3003]],[[3004]],[[3005]],[[3006]],[[3007]],[[3008]],[[3009]],[[3010]],[[3011]],[[3012]],[[3013]],[[3014]],[[3015]],[[3016]],[[3017]],[[-2113,3018,-2111,3019,-928,3020,-926,3021,-2274,3022,3023,-283,3024,-281]]]},{"type":"Polygon","properties":{"pop":6550213,"iso":"TJK","label":"Tajikistan","stats_gdp":"15.4000","stats_r":"Asia","gdp":15.4},"arcs":[[-1089,3025,3026,3027,3028,3029,3030,3031,-2049,3032,-2047,3033,-1057,3034,-1055,3035]]},{"type":"Polygon","properties":{"pop":6238572,"iso":"TGO","label":"Togo","stats_gdp":"5.1050","stats_r":"Sub Saharan Africa","gdp":5.105},"arcs":[[3036,-1545,3037,3038,3039,3040,3041,3042,-291,3043]]},{"type":"MultiPolygon","properties":{"pop":10104685,"iso":"TUN","label":"Tunisia","stats_gdp":"81.8800","stats_r":"NorthAfrica","gdp":81.88},"arcs":[[[3044]],[[3045,-2165,3046,-2,3047,3048]]]},{"type":"MultiPolygon","properties":{"pop":72969723,"iso":"TUR","label":"Turkey","stats_gdp":"906.5000","stats_r":"Asia","gdp":906.5},"arcs":[[[3049]],[[3050]],[[3051]],[[3052,3053,-45,3054,-1938,3055,-1986,3056,-2991,3057]],[[3058,-1796,3059]]]},{"type":"MultiPolygon","properties":{"pop":4833266,"iso":"TKM","label":"Turkmenistan","stats_gdp":"29.6500","stats_r":"Asia","gdp":29.65},"arcs":[[[3060]],[[3061,3062,3063,3064,-1087,3065,-1085,3066,-1083,3067,-1929,3068,3069,3070,-1925,3071,-2099,3072,3073,3074,3075,3076,3077]]]},{"type":"MultiPolygon","properties":{"pop":38477873,"iso":"TZA","label":"United Republic of Tanzania","stats_gdp":"32","stats_r":"Europe","gdp":32},"arcs":[[[3078]],[[3079]],[[3080]],[[-2040,3081,-2306,3082,-2310,3083,3084,-963,3085,-982,3086]]]},{"type":"Polygon","properties":{"pop":28947181,"iso":"UGA","label":"Uganda","stats_gdp":"35.8800","stats_r":"Sub Saharan Africa","gdp":35.88},"arcs":[[-2042,3087,-2886,3088,-959,3089,3090,-2956,3091]]},{"type":"MultiPolygon","properties":{"pop":60244834,"iso":"GBR","label":"United Kingdom","stats_gdp":"2497","stats_r":"Europe","gdp":2497},"arcs":[[[3092]],[[3093]],[[3094]],[[3095]],[[3096]],[[-1399,3097]],[[3098]],[[3099]],[[3100]],[[3101]],[[3102]],[[3103]],[[3104]],[[3105]],[[3106]],[[3107]],[[3108]],[[3109]],[[3110]],[[3111]],[[3112]],[[3113]],[[3114]],[[3115]],[[3116]],[[3117]],[[3118]],[[3119]],[[3120]],[[3121]],[[3122]],[[3123]],[[3124]],[[3125]],[[3126]],[[3127]],[[3128]],[[3129]],[[3130]],[[3131]],[[3132]],[[3133]],[[3134]],[[3135]]]},{"type":"MultiPolygon","properties":{"pop":46917544,"iso":"UKR","label":"Ukraine","stats_gdp":"337.0000","stats_r":"Europe","gdp":337},"arcs":[[[3136]],[[3137]],[[3138]],[[3139,-2824,3140,-2822,3141,-2820,3142,-2637,3143,-2635,3144,-2622,3145,3146,-2539,3147,3148,-2141,3149,3150]]]},{"type":"MultiPolygon","properties":{"pop":299846449,"iso":"USA","label":"United States","stats_gdp":"14290.0000","stats_r":"North America","gdp":14290},"arcs":[[[3151]],[[3152]],[[3153]],[[3154]],[[3155,3156]],[[3157]],[[3158]],[[3159]],[[3160]],[[3161,3162]],[[3163]],[[3164]],[[3165]],[[3166]],[[3167]],[[3168]],[[3169]],[[3170]],[[3171]],[[3172]],[[-3174]],[[3174]],[[3175]],[[3176,3177]],[[3178]],[[3179]],[[3180]],[[3181]],[[3182]],[[3183]],[[3184]],[[3185]],[[3186]],[[3187]],[[3188]],[[3189]],[[3190]],[[3191]],[[-3193]],[[3193]],[[3194]],[[3195]],[[3196]],[[3197]],[[3198]],[[3199]],[[3200,3201]],[[3202]],[[3203]],[[3204]],[[3205]],[[3206]],[[3207]],[[3208]],[[-3210]],[[3210]],[[3211]],[[3212]],[[3213]],[[3214]],[[3215]],[[3216]],[[3217]],[[3218]],[[3219]],[[-3221]],[[3221]],[[3222]],[[3223]],[[3224]],[[3225]],[[3226]],[[3227]],[[3228]],[[3229]],[[3230]],[[3231]],[[3232]],[[3233]],[[3234]],[[3235]],[[3236]],[[3237]],[[3238]],[[3239]],[[3240]],[[-809,3241,-807,3242,3243,3244,3245,-3201,3246,3247,3248,3249,3250,3251,3252,-2257,3253,-2255,3254,-2261,3255,3256,3257],[3258]],[[3259]],[[3260]],[[3261]],[[3262]],[[3263]],[[3264]],[[3265]],[[3266]],[[3267]],[[3268]],[[3269]],[[3270]],[[3271]],[[3272]],[[3273]],[[3274]],[[3275]],[[3276]],[[3277]],[[3278]],[[3279]],[[3280]],[[3281]],[[3282]],[[3283]],[[3284]],[[3285]],[[3286]],[[3287]],[[3288]],[[3289]],[[3290]],[[3291]],[[3292]],[[3293]],[[3294]],[[3295]],[[3296]],[[3297]],[[3298]],[[3299]],[[3300]],[[3301]],[[3302]],[[3303]],[[3304]],[[3305]],[[3306]],[[3307]],[[3308]],[[3309,3310]],[[3311]],[[3312]],[[3313]],[[3314]],[[3315]],[[3316]],[[3317]],[[3318]],[[3319]],[[3320]],[[3321]],[[3322]],[[3323]],[[3324]],[[3325]],[[3326]],[[3327]],[[3328]],[[3329]],[[3330]],[[3331]],[[3332]],[[3333]],[[3334]],[[3335]],[[3336]],[[3337]],[[3338]],[[3339]],[[3340]],[[3341]],[[3342]],[[3343]],[[3344]],[[3345]],[[3346]],[[3347]],[[3348]],[[3349]],[[3350]],[[3351]],[[3352]],[[3353]],[[3354]],[[3355]],[[3356]],[[3357]],[[3358]],[[3359]],[[3360]],[[3361]],[[3362]],[[3363]],[[3364]],[[3365]],[[3366]],[[3367]],[[3368]],[[3369]],[[3370]],[[3371,3372]],[[3373]],[[3374]],[[3375]],[[3376]],[[3377,3378]],[[3379,3378]],[[3380,-3381,3381]],[[3382,3381]],[[3383]],[[3384]],[[3385]],[[3386]],[[-819,3387,-817,3388,-815,3389,-3372,3390]]]},{"type":"Polygon","properties":{"pop":13933363,"iso":"BFA","label":"Burkina Faso","stats_gdp":"17.8200","stats_r":"Sub Saharan Africa","gdp":17.82},"arcs":[[3391,-1974,3392,-1972,3393,-2203,3394,-2201,3395,3396,-2328,3397,3398,-3042,3399,-1540]]},{"type":"Polygon","properties":{"pop":3325727,"iso":"URY","label":"Uruguay","stats_gdp":"42.4600","stats_r":"Latin America","gdp":42.46},"arcs":[[3400,-405,3401,-77,3402]]},{"type":"Polygon","properties":{"pop":26593123,"iso":"UZB","label":"Uzbekistan","stats_gdp":"71.6300","stats_r":"Asia","gdp":71.63},"arcs":[[-3062,3403,-3077,3404,-3075,3405,3406,-2097,3407,-2052,3408,3409,-3029,3410,-3027,3411,-3064,3412]]},{"type":"MultiPolygon","properties":{"pop":26725573,"iso":"VEN","label":"Venezuela","stats_gdp":"357.9000","stats_r":"Latin America","gdp":357.9},"arcs":[[[3413]],[[3414]],[[3415,3416,3417]],[[-3418,3418,3419]],[[3420]],[[3421]],[[3422]],[[-3424]],[[3424]],[[3425]],[[3426]],[[3427]],[[3428]],[[3429]],[[3430]],[[3431]],[[3432]],[[3433]],[[3434,3435,-1838,3436,-1836,3437,3438,-417,-1288,3439],[3440]]]},{"type":"MultiPolygon","properties":{"pop":85028643,"iso":"VNM","label":"Viet Nam","stats_gdp":"358","stats_r":"Asia","gdp":358},"arcs":[[[3441]],[[3442]],[[3443]],[[3444]],[[-3446]],[[3446]],[[3447]],[[3448]],[[3449]],[[3450,3451]],[[3452,3453]],[[3454]],[[3455]],[[3456]],[[3457]],[[3458]],[[3459]],[[3460]],[[3461]],[[3462,3463]],[[3464,3465]],[[3466]],[[3467]],[[3468]],[[-1024,3469,3470,-924,3471,-922,3472,-2119,3473,-2117,3474,-1026,3475]]]},{"type":"Polygon","properties":{"pop":2019677,"iso":"NAM","label":"Namibia","stats_gdp":"11.2300","stats_r":"Sub Saharan Africa","gdp":11.23},"arcs":[[3476,3477,-2926,3478,-2907,3479,-56,3480]]},{"type":"Polygon","properties":{"pop":1124529,"iso":"SWZ","label":"Swaziland","stats_gdp":"5.7030","stats_r":"Sub Saharan Africa","gdp":5.703},"arcs":[[3481,-2904,3482,-2902,3483]]},{"type":"MultiPolygon","properties":{"pop":21095679,"iso":"YEM","label":"Yemen","stats_gdp":"55.2900","stats_r":"Asia","gdp":55.29},"arcs":[[[3484]],[[3485]],[[3486]],[[3487]],[[-2898,3488,-2896,-2224,3489]]]},{"type":"Polygon","properties":{"pop":11478317,"iso":"ZMB","label":"Zambia","stats_gdp":"17.3900","stats_r":"Sub Saharan Africa","gdp":17.39},"arcs":[[-3477,3490,-54,3491,-969,3492,-967,3493,-965,3494,3495,-2317,3496,3497,-2297,3498,3499,3500,3501]]},{"type":"Polygon","properties":{"pop":13119679,"iso":"ZWE","label":"Zimbabwe","stats_gdp":"1.9590","stats_r":"Sub Saharan Africa","gdp":1.959},"arcs":[[-2293,3502,-2928,3503,-3501,3504,3505,-2295,3506]]},{"type":"MultiPolygon","properties":{"pop":226063044,"iso":"IDN","label":"Indonesia","stats_gdp":"915.9000","stats_r":"Asia","gdp":915.9},"arcs":[[[3507]],[[3508]],[[3509]],[[3510]],[[3511]],[[3512]],[[3513]],[[3514]],[[3515]],[[3516]],[[3517]],[[3518]],[[3519]],[[3520]],[[3521]],[[3522]],[[3523]],[[3524]],[[3525]],[[3526]],[[3527]],[[3528]],[[3529]],[[3530]],[[3531]],[[3532]],[[3533]],[[3534]],[[3535]],[[3536]],[[3537]],[[3538]],[[3539]],[[3540]],[[3541]],[[3542]],[[3543]],[[3544]],[[3545]],[[3546]],[[3547]],[[3548]],[[3549]],[[3550]],[[3551]],[[3552]],[[3553]],[[3554]],[[3555]],[[3556]],[[3557]],[[3558]],[[3559]],[[3560]],[[3561]],[[3562]],[[3563]],[[3564]],[[3565]],[[3566]],[[3567]],[[3568]],[[3569]],[[3570]],[[3571]],[[3572]],[[3573]],[[3574]],[[3575]],[[3576]],[[3577]],[[3578]],[[3579]],[[3580]],[[3581]],[[3582]],[[3583]],[[3584]],[[3585]],[[3586]],[[3587]],[[3588]],[[3589]],[[3590]],[[3591]],[[3592,3593,3594]],[[3592,3595]],[[3596]],[[3597]],[[3598]],[[3599]],[[3600]],[[3601]],[[3602]],[[3603]],[[3604]],[[3605]],[[3606]],[[3607]],[[3608]],[[3609]],[[3610]],[[3611]],[[3612]],[[3613]],[[3614]],[[3615]],[[3616]],[[3617]],[[3618]],[[3619]],[[3620]],[[3621]],[[3622]],[[3623]],[[3624]],[[-2599,3625,3626]],[[3627]],[[3628]],[[3629]],[[3630]],[[3631]],[[3632]],[[3633]],[[3634]],[[3635]],[[3636]],[[3637]],[[3638]],[[3639]],[[3640]],[[3641]],[[3642]],[[3643]],[[3644]],[[3645]],[[3646]],[[3647]],[[3648]],[[3649]],[[3650]],[[3651]],[[3652]],[[3653]],[[3654]],[[3655]],[[3656]],[[3657]],[[3658]],[[3659]],[[3660]],[[3661]],[[3662]],[[3663]],[[3664]],[[3665]],[[3666]],[[3667]],[[3668]],[[3669]],[[3670]],[[3671]],[[3672]],[[3673]],[[3674]],[[3675]],[[3676]],[[3677]],[[3678]],[[3679]],[[3680]],[[3681]],[[3682]],[[3683]],[[3684]],[[3685]],[[3686]],[[3687]],[[3688]],[[3689]],[[3690]],[[3691]],[[3692]],[[3693]],[[3694]],[[-2267,3695]],[[-2278,3696,3697,-2283,3698,-2281,3699,3700]],[[3701,3702]],[[3703]],[[3704]],[[3705]]]},{"type":"MultiPolygon","properties":{"pop":4104291,"iso":"ARE","label":"United Arab Emirates","stats_gdp":"184.6000","stats_r":"Asia","gdp":184.6},"arcs":[[[3706]],[[3707]],[[3708]],[[3709]],[[3710]],[[3711]],[[3712,3713]],[[-2222,3714,3715,-2227,3716,3717,3718]]]},{"type":"Polygon","properties":{"pop":30214,"iso":"SMR","label":"San Marino","stats_gdp":"1.6620","stats_r":"Europe","gdp":1.662},"arcs":[[3719,3720]]},{"type":"Polygon","properties":{"pop":440428,"iso":"ESH","label":"Western Sahara","stats_gdp":"0.9000","stats_r":"NorthAfrica","gdp":0.9},"arcs":[[3721,-2210,3722,-2217,3723]]},{"type":"Polygon","properties":{"pop":9863026,"iso":"SRB","label":"Serbia","stats_gdp":"83","stats_r":"Europe","gdp":83},"arcs":[[3724,-223,3725,-1868,-1880,3726,-2632,3727,-2630,3728,-426,3729]]},{"type":"MultiPolygon","properties":{"pop":23373000,"iso":"TWN","label":"Taiwan","stats_gdp":"517","stats_r":"Asia","gdp":517},"arcs":[[[3730]],[[3731]]]}]}},"arcs":[[[2604,3226],[0,-8],[3,-24]],[[2607,3194],[5,-4],[3,-21],[10,-15],[7,-67]],[[2632,3087],[-3,-4]],[[2629,3083],[7,-35],[-1,-32]],[[2635,3016],[3,-15],[-3,-19]],[[2635,2982],[2,-23],[-7,-18]],[[2630,2941],[9,-30],[0,-18],[3,-8],[18,-11],[6,-28]],[[2666,2846],[-63,-95],[-23,-51]],[[2580,2700],[-34,-17]],[[2546,2683],[-3,7],[2,8],[-1,16],[-11,8],[-3,8],[-6,1],[-2,10],[-6,6],[0,13]],[[2516,2760],[-79,133],[-58,88]],[[2379,2981],[0,51]],[[2379,3032],[14,24],[8,9],[7,-2],[3,8],[12,4],[8,22],[18,16],[0,5],[-3,2],[1,19],[11,5],[2,9]],[[2460,3153],[23,1],[-1,8]],[[2482,3162],[3,6],[-5,8],[-4,19],[1,30],[-2,10],[1,4],[-2,5]],[[2474,3244],[1,4],[-6,13]],[[2469,3261],[6,1],[14,23],[5,5],[5,-4],[3,11],[11,12],[22,6],[6,7],[25,3],[7,-9],[15,16],[8,-7],[3,1],[1,6],[9,-8],[10,3],[-6,-15],[3,-4],[-2,-20],[2,-24],[-2,-19],[-10,-19]],[[3131,3419],[5,2],[5,-26]],[[3141,3395],[-11,6]],[[3130,3401],[-4,8],[-5,17]],[[3121,3426],[5,2],[5,-9]],[[3128,3472],[0,-1],[-1,1],[0,1],[1,-1]],[[3125,3474],[-1,1],[1,1],[0,-2]],[[3156,3484],[7,-4],[12,22],[12,-42],[12,-10],[0,-4],[-6,3],[-6,-7],[-3,-23],[2,-5],[-4,-14],[-3,7],[-1,-26]],[[3178,3381],[-3,-2],[-9,16],[4,6],[-2,9],[3,5]],[[3171,3415],[-5,11],[-20,-30]],[[3146,3396],[-2,12],[3,1],[-3,7],[2,5],[-5,1],[-8,14],[4,1],[1,8],[-6,8],[-2,8],[3,7],[-7,7]],[[3126,3475],[1,3],[-2,5]],[[3125,3483],[4,6]],[[3129,3489],[16,-15]],[[3145,3474],[3,10],[-7,14],[5,6],[8,-11],[2,-9]],[[3132,3459],[1,1],[-2,0]],[[3131,3460],[0,-2],[1,1]],[[2768,3503],[-1,12]],[[2767,3515],[6,17],[1,-6],[4,2]],[[2778,3528],[7,-12],[1,-9],[-2,-23],[3,-15],[4,0],[1,-12]],[[2792,3457],[-4,-5],[-1,-12],[-5,-4]],[[2782,3436],[0,-9],[-5,-2],[-2,13],[-5,7],[-3,7],[3,-3],[-2,11],[3,9],[-2,4],[3,28],[-4,2]],[[3132,3459],[0,-1],[-1,2]],[[3131,3460],[1,1],[0,-2]],[[3146,3396],[-5,-1]],[[3141,3395],[-6,26],[-4,-2]],[[3131,3419],[-6,10],[-4,-3]],[[3121,3426],[-6,12]],[[3115,3438],[-9,3]],[[3106,3441],[-1,12],[2,10],[-4,14]],[[3103,3477],[22,6]],[[3125,3483],[2,-3],[-1,-5]],[[2663,1403],[0,-2],[-1,8],[0,2],[1,-8]],[[2730,1792],[5,-46],[9,-33],[13,6],[12,-2],[2,36],[15,3],[-1,-13]],[[2785,1743],[17,-1],[0,-25]],[[2802,1717],[2,-18],[-2,-32],[7,-35],[0,-13],[-2,-5],[2,-12],[4,6],[18,0],[2,6]],[[2833,1614],[1,-19],[-2,-9],[1,-26]],[[2833,1560],[-2,-14],[2,-8],[-28,0],[0,-114],[2,-11],[18,-41]],[[2825,1372],[-36,-14]],[[2789,1358],[-7,6],[-20,1],[-6,15],[-62,-1],[-7,15],[-5,2],[-8,-10],[-7,4],[-4,-5]],[[2663,1385],[1,27],[-2,24],[4,9],[7,78],[16,44],[3,42],[-12,69],[5,12],[0,13],[-8,51],[-7,31],[10,8],[14,1],[36,-2]],[[2674,1823],[-1,-25],[-4,-1]],[[2669,1797],[-3,26],[3,10],[8,13]],[[2677,1846],[4,-10],[-7,-13]],[[1546,37],[0,3],[2,-3],[-1,0],[-1,0]],[[1613,43],[-12,-7],[-1,3],[6,4],[7,0]],[[1547,117],[5,-12],[0,-5],[-2,4],[-2,-8],[5,-2],[2,-11],[9,-15],[16,-19],[15,-4],[-3,-10],[-15,-4],[-30,7],[0,79]],[[1640,597],[-2,3],[-1,3],[3,-2],[0,-4]],[[1639,604],[-2,1],[2,0],[0,-1]],[[1606,1184],[6,31],[15,0]],[[1627,1215],[8,-19],[4,-17],[13,-29]],[[1652,1150],[14,-7],[17,-27]],[[1683,1116],[13,-11],[4,-17]],[[1700,1088],[-8,-23],[0,-17],[-7,-18],[1,-5],[11,1],[20,-11],[3,10],[6,-5],[4,16],[6,8]],[[1736,1044],[4,12],[1,31]],[[1741,1087],[7,3],[3,-5]],[[1751,1085],[3,-21],[0,-24],[-2,-10]],[[1752,1030],[-14,-13],[-3,-11],[-10,-14],[1,-6],[-3,1]],[[1723,987],[-27,-77]],[[1696,910],[1,-13],[-4,-21]],[[1693,876],[1,-11],[-3,-4]],[[1691,861],[1,-42],[-4,-1],[-1,-15],[2,-20],[-1,-17],[17,-28],[-2,-23],[4,-12],[5,-1],[0,-21],[-11,-33],[-1,-11],[-10,-12],[-39,-19],[-10,1],[-8,6],[1,-16],[2,-1],[2,-3],[-3,1],[3,-6],[-1,-12],[-2,0],[-3,-16],[3,-10],[-1,-4],[2,2],[-3,-10],[-9,-9],[-10,0],[-14,15],[-5,-4],[2,-45],[7,-6],[-2,-5],[3,-1],[4,0],[1,6],[-4,1],[8,5],[3,-19],[-2,-7],[-5,-2],[-5,13],[-8,-5],[0,-5],[10,-7],[-9,-8],[-6,-16],[1,-23],[-6,-15],[3,-6],[-1,-4],[-9,1],[-10,-10],[-9,-27],[1,-16],[10,-19],[14,-7],[-1,-21],[-5,-3],[4,2],[2,-6],[-25,-38],[-3,-13],[3,5],[-4,-26],[-6,-5],[-4,7],[-6,-3],[6,1],[3,-6],[-8,-9],[-3,-18],[-3,-7],[3,4],[3,-21],[-6,0],[-3,-2],[8,0],[9,-26],[-23,13]],[[1527,141],[-26,0],[-7,17],[2,9],[-2,5],[2,4],[0,13],[-12,-4],[-2,15],[-4,7],[2,13],[-2,9],[1,8],[5,0],[2,12],[6,6],[-1,11],[5,5],[-1,10],[-3,6],[3,16],[7,9],[-1,14],[3,5],[-1,16],[-2,3],[4,6],[-2,12],[6,13],[-3,11],[-7,3],[0,4],[11,-1],[2,10],[-10,6],[3,16],[-3,6],[2,5],[-4,6],[3,9],[-5,7],[0,25],[6,7],[-3,16],[1,25],[-2,8],[4,14],[-2,5],[3,9],[-1,13],[3,0],[1,24],[8,13],[-5,31],[0,30],[2,13],[5,3],[0,5],[4,5],[1,12],[-3,20],[2,3],[5,31],[3,2],[-1,16]],[[1529,793],[1,18],[-4,4]],[[1526,815],[2,10],[-5,22],[1,12],[-5,13]],[[1519,872],[1,10],[3,10]],[[1523,892],[2,17],[5,13]],[[1530,922],[-3,31],[3,8],[2,25],[7,16],[5,30],[7,7],[-4,15],[3,12],[-3,26],[3,12],[-3,12],[5,13],[12,14],[5,36],[-2,7]],[[1567,1186],[6,21]],[[1573,1207],[5,4],[2,12]],[[1580,1223],[7,-12],[14,-2],[5,-25]],[[4546,449],[-1,-5],[-3,4],[3,5],[1,-4]],[[4547,454],[-2,3],[1,3],[0,-2],[1,-4]],[[4557,475],[-1,0],[-1,-3],[0,5],[2,-2]],[[4559,486],[-1,1],[0,1],[1,-1],[0,-1]],[[4514,541],[21,-13],[2,4],[3,-4],[-2,4],[3,3],[12,4],[1,5],[4,-4],[2,-49],[-3,10],[-5,-33],[3,-2],[0,-11],[-3,-1],[-2,6],[0,5],[3,-3],[-1,3],[-4,4],[-1,-8],[-2,7],[-1,-15],[-4,5],[2,-6],[-2,-11],[-13,4],[-1,4],[4,2],[-5,1],[-5,12],[-4,25],[3,-9],[2,6],[-4,6],[-8,35],[0,16],[5,-2]],[[4512,544],[-1,2],[1,2],[1,-3],[-1,-1]],[[4557,549],[-1,1],[0,1],[2,1],[-1,-3]],[[4510,549],[-1,3],[1,4],[0,-3],[0,-4]],[[4512,554],[-1,-1],[0,2],[1,1],[0,-2]],[[4560,559],[1,-5],[-6,1],[1,3],[4,1]],[[4557,561],[-6,13],[2,5],[6,-7],[0,-10],[-2,-1]],[[4499,566],[-2,7],[2,13],[2,-13],[-2,-7]],[[4545,589],[1,1],[0,-2],[-1,1]],[[4536,614],[-2,-1],[-1,2],[2,0],[1,-1]],[[4517,625],[1,-3],[-3,1],[1,2],[1,0]],[[4520,629],[-2,-2],[-1,2],[0,2],[3,-2]],[[4410,726],[7,-8],[-5,0],[-4,-7],[-10,1],[-3,5],[1,5],[14,4]],[[4395,743],[-1,0],[0,1],[0,1],[1,-2]],[[4391,747],[-1,0],[-1,4],[2,-2],[0,-2]],[[4145,752],[-1,0],[0,1],[1,-1]],[[4367,793],[0,3],[1,0],[0,-1],[-1,-2]],[[4355,846],[-1,0],[2,2],[-1,-2]],[[4630,1010],[0,11],[2,0],[-2,-11]],[[4630,1027],[0,-4],[-1,11],[1,1],[0,-8]],[[4072,1067],[-4,13],[0,10],[1,0],[3,-23]],[[4624,1096],[-1,2],[1,-1],[0,-1]],[[4070,1099],[-1,-1],[1,6],[0,-5]],[[4071,1110],[-1,-2],[1,8],[0,-1],[0,-5]],[[4625,1079],[-2,9],[5,31],[1,-12],[-4,-28]],[[4602,1148],[-1,2],[0,2],[1,-3],[0,-1]],[[4600,1151],[-3,7],[0,5],[2,-3],[1,-9]],[[4579,1200],[-1,0],[1,3],[0,-1],[0,-2]],[[4589,1203],[0,1],[0,4],[1,-4],[-1,-1]],[[4587,1223],[-1,1],[1,1],[0,-2]],[[4586,1226],[0,1],[0,1],[1,-1],[-1,-1]],[[4103,1259],[-1,-3],[-1,0],[1,7],[1,-4]],[[4569,1268],[0,1],[1,0],[-1,-1]],[[4568,1281],[1,-4],[0,-1],[-1,0],[0,5]],[[4568,1281],[-1,1],[1,3],[0,-1],[0,-3]],[[4539,1317],[-1,-1],[0,2],[1,1],[0,-2]],[[4531,1341],[-1,1],[-2,8],[3,-2],[0,-7]],[[4438,1391],[-2,-2],[-1,2],[2,4],[1,-4]],[[4431,1399],[0,2],[1,0],[-1,-2]],[[4440,1412],[-4,-1],[-4,-8],[2,11],[6,-2]],[[4397,1438],[0,2],[0,2],[1,-1],[-1,-3]],[[4398,1439],[0,4],[1,0],[0,-2],[-1,-2]],[[4403,1436],[-2,5],[1,4],[1,-6],[0,-3]],[[4395,1443],[0,3],[1,2],[0,-4],[-1,-1]],[[4230,1451],[-1,-1],[-1,6],[1,1],[1,-6]],[[4227,1455],[0,-1],[-1,1],[1,2],[0,-2]],[[4233,1456],[-1,1],[1,0],[0,-1]],[[4280,1459],[-1,2],[0,4],[1,-3],[0,-3]],[[4234,1465],[-1,1],[1,2],[0,-3]],[[4283,1465],[-1,3],[0,3],[0,-2],[1,-4]],[[4385,1470],[-1,-1],[0,3],[1,-1],[0,-1]],[[4300,1470],[-1,2],[0,1],[1,-2],[0,-1]],[[4299,1469],[0,-2],[-1,7],[0,-1],[1,-4]],[[4237,1479],[-1,1],[1,6],[1,-2],[-1,-5]],[[4258,1506],[-2,-1],[0,1],[2,0]],[[4392,1511],[-1,-4],[-2,1],[2,6],[1,-3]],[[4398,1508],[3,2],[-3,-12],[4,-2],[-1,-4],[-8,2],[1,14],[4,6],[0,-6]],[[4390,1520],[0,-1],[-1,6],[1,-3],[0,-2]],[[4399,1569],[0,1],[0,1],[1,-2],[-1,0]],[[4338,1569],[-1,1],[1,1],[0,-2]],[[4372,1569],[0,2],[1,0]],[[4373,1571],[0,-2],[-1,0]],[[4373,1571],[0,2],[1,0],[0,-1],[-1,-1]],[[4392,1572],[-1,-1],[-1,0],[2,3],[0,-2]],[[4376,1576],[-1,-1],[0,2],[1,-1]],[[4395,1581],[0,-1]],[[4395,1580],[0,-3],[0,2],[0,2]],[[4395,1581],[2,2],[-1,-2],[-1,-1]],[[4388,1584],[-1,1],[2,1],[-1,-2]],[[4340,1583],[0,3],[1,0],[0,-2],[-1,-1]],[[4352,1585],[-1,2],[2,1],[-1,-3]],[[4395,1593],[0,-2],[-2,-3],[-3,-3],[5,8]],[[4353,1591],[-1,0],[0,-1],[1,3],[0,-2]],[[4312,1585],[1,-5],[-8,1],[4,17],[3,-13]],[[4313,1597],[8,3],[1,-5],[0,8],[4,-10],[-8,-17],[-6,10],[-2,17],[3,-6]],[[4341,1599],[-1,5],[1,5],[0,-6],[0,-4]],[[4395,1593],[0,2],[4,14],[-1,-7],[-3,-9]],[[4561,1285],[4,-6],[3,-11],[-2,3],[-2,-6],[8,-17],[6,-51],[2,5],[3,-10],[-2,11],[2,7],[8,-16],[0,9],[3,-14],[0,-28],[10,-21],[2,4],[3,-8],[10,-37],[4,-2],[0,-15],[4,-8],[-2,-13],[1,-28],[-1,-3],[7,-37],[1,-17],[-9,-68],[1,-16],[-8,-40],[1,-10],[-15,-32],[-3,-24],[-2,-1],[1,-2],[-5,-18],[0,-18],[-2,1],[-7,-32],[-4,-35],[1,-22],[-7,-9],[-24,-7],[-12,-24],[-9,-3],[1,-7],[2,4],[-1,-12],[-3,11],[-3,-1],[-2,8],[-5,3],[2,7],[-2,5],[-2,0],[-5,-10],[-2,4],[5,9],[-3,10],[-8,-10],[5,0],[-1,-5],[-4,-2],[-11,-19],[-16,18],[-9,3],[-3,-5],[-6,11],[-8,4],[-10,25],[0,27],[-10,31],[8,-20],[-8,22],[1,4],[2,-6],[1,11],[-3,2],[-3,-3],[1,-5],[-7,-4],[-6,1],[5,10],[1,11],[0,11],[-6,21],[-5,-35],[-12,-5],[2,13],[6,-1],[0,28],[7,21],[-2,10],[3,6],[-3,21],[0,-17],[-4,-4],[-4,-20],[-11,-13],[-7,-18],[-2,-10],[3,3],[-1,-10],[-11,15],[1,6],[2,-8],[2,1],[-3,22],[-6,13],[-2,17],[-6,0],[-3,16],[3,0],[-1,9],[-5,-3],[2,6],[-5,10],[-3,-4],[-9,10],[-8,-3],[-14,20],[-30,-8],[-24,-21],[-18,0],[-17,-22],[-7,-3],[-4,-21],[-6,-12],[-20,-5],[-1,8],[-28,-4],[-10,-19],[-5,0],[-15,-21],[1,-3],[-20,4],[-7,7],[-7,15],[-6,5],[-1,26],[5,-4],[5,13],[-1,22],[0,3],[1,2],[0,-9],[1,33],[-10,48],[-2,47],[-10,40],[-3,32],[-10,34],[1,8],[5,-22],[3,5],[-7,28],[1,6],[4,-12],[0,-11],[2,6],[2,-16],[3,6],[0,16],[-12,51],[2,24],[3,12],[1,18],[-2,12],[5,27],[2,1],[0,-26],[3,3],[4,22],[11,11],[17,32],[14,-1],[7,12],[8,2],[4,11],[7,-4],[20,18],[7,16],[4,24],[8,13],[-3,31],[6,10],[-1,4],[3,3],[2,12],[2,-1],[-1,-5],[8,-36],[1,22],[3,-8],[1,0],[-1,7],[1,4],[-7,14],[4,3],[-2,9],[3,1],[2,-8],[1,4],[4,-5],[9,-1],[-7,3],[4,19],[-4,-2],[1,14],[2,0],[1,8],[7,-10],[-1,8],[-3,-1],[2,6],[-3,0],[3,6],[2,-6],[0,5],[2,-4],[1,0],[-4,14],[3,8],[3,-1],[1,12],[1,-2],[-1,-13],[1,9],[3,-9],[2,4],[1,14],[-2,8],[3,-2],[1,-9],[3,9],[1,-9],[4,17],[4,-8],[4,1],[10,-27],[-2,-29],[2,10],[2,-6],[-1,12],[1,5],[1,-5],[1,0],[0,2],[-1,7],[2,2],[8,-5],[1,-10],[1,12],[1,-1],[6,-12],[-1,13],[2,-1],[2,3],[-4,0],[-1,6],[3,3],[-4,-1],[-2,8],[5,12],[2,20],[2,-3],[3,7],[-1,14],[2,1],[3,11],[1,-4],[1,0],[-1,11],[4,-8],[-1,7],[3,3],[0,7],[6,-5],[12,3],[1,-6],[1,8],[4,1],[-2,3],[1,14],[-3,6],[-5,-1],[-5,7],[3,7],[3,-10],[-1,10],[3,0],[5,-14],[3,6],[4,-13],[6,-5],[4,4],[-1,-4],[3,0],[2,-8],[8,3],[1,-5]],[[4372,1569],[5,-6],[10,19],[-4,-15],[5,3],[1,-13],[3,2],[1,6],[-3,3],[6,8],[1,-13],[2,4],[3,-6],[-5,-17],[-2,2],[-1,-17],[-1,7],[-6,-8],[-1,-12],[2,-6],[-2,-15],[-7,-19],[1,-8],[19,-34],[13,-13],[6,-16],[12,-7],[3,-16],[11,-13],[6,2],[5,9],[8,47],[4,38],[-3,40],[3,23],[-1,10],[3,11],[2,-7],[-3,15],[-2,-3],[3,20],[3,-3],[1,40],[5,9],[2,-2],[-2,-4],[4,-8],[1,-27],[5,-5],[-2,-12],[5,-10],[2,-42],[3,-23],[3,-3],[7,12],[2,-14],[9,-14],[2,-54],[5,-16],[2,0],[-1,-6],[3,-22],[-1,-20],[3,-9],[2,-2],[-1,-12],[12,-19],[4,0],[-1,4],[4,-19],[2,4],[8,-17],[1,5]],[[4475,1621],[-1,-3],[-1,4],[1,1],[1,-2]],[[4475,1622],[0,2],[1,0],[0,-1],[-1,-1]],[[4475,1626],[0,-1],[-1,0],[0,1],[1,0]],[[4475,1626],[1,1],[0,-1],[-1,0]],[[4474,1638],[0,2],[2,-1],[-1,-3],[-1,2]],[[4474,1638],[-1,2],[0,3],[1,-1],[0,-4]],[[3776,2773],[-1,8],[0,2],[2,-5],[-1,-5]],[[3737,2782],[-1,1],[0,6],[1,-5],[0,-1],[0,-1]],[[3757,2791],[1,-1]],[[3758,2790],[-2,-3],[0,2],[1,2]],[[3755,2792],[-1,-6],[0,3],[1,3]],[[3755,2792],[0,1],[1,-2],[-1,-3],[0,4]],[[3755,2794],[-1,-2],[0,-1],[1,3]],[[3757,2791],[-1,4],[2,3],[-1,-5],[0,-2]],[[3762,2796],[0,3],[1,-2],[-1,-1]],[[3763,2805],[0,-3],[-1,-2],[1,5]],[[3763,2807],[1,1],[0,-1],[0,-1],[-1,1]],[[3766,2807],[0,-1],[-1,2],[1,0],[0,-1]],[[3758,2807],[0,2],[1,-1],[-1,-1]],[[3764,2795],[0,15],[0,1],[2,-11],[-2,-5]],[[3770,2804],[-1,5],[0,5],[2,-7],[-1,-3]],[[3768,2814],[-1,0],[1,1],[0,-1]],[[3760,2794],[-2,-1],[1,13],[-1,14],[3,-12],[-1,-14]],[[3757,2818],[-1,5],[3,-1],[-2,-2],[0,-2]],[[3757,2829],[1,-3],[0,-2],[-2,2],[1,3]],[[3757,2829],[-1,1]],[[3756,2830],[1,0],[0,-1]],[[3757,2840],[0,-2],[-2,3],[2,-1]],[[3759,2845],[-1,0],[0,1],[1,-1]],[[3733,2944],[3,1],[-1,6],[1,-2],[4,-13],[3,0],[1,7],[2,-2],[1,-31],[8,-5],[23,1]],[[3778,2906],[6,-9],[-4,-1]],[[3780,2896],[-1,-18],[-3,-3],[0,-6],[-8,-2]],[[3768,2867],[-3,-14],[3,-22]],[[3768,2831],[1,6],[3,-11],[2,5],[2,23],[5,-1]],[[3781,2853],[5,-86]],[[3786,2767],[-4,6]],[[3782,2773],[-2,-4],[2,-22],[-4,15],[0,18],[-5,29],[-4,11],[-3,-7],[-5,3],[-3,14],[0,14],[1,1]],[[3759,2845],[0,2],[-2,2]],[[3757,2849],[-1,-1],[1,-7],[-3,1],[4,-6],[-3,-6],[0,-11],[2,-20],[-2,-5]],[[3755,2794],[0,7],[-2,-15],[-2,-1],[-2,8],[1,4],[-1,-6],[-1,10],[1,8],[-2,-8],[1,-13],[-5,-7],[1,22],[-1,-12],[-1,11],[0,-18],[-1,-2],[-1,9],[-2,-12],[-5,47]],[[3733,2826],[2,9],[-4,2],[1,8],[-3,6],[3,20],[-9,11],[-1,6],[1,8],[3,-1],[2,11],[7,-1],[0,5],[-12,19],[1,12],[5,7],[-3,4]],[[3726,2952],[1,3],[6,-11]],[[3753,2799],[-2,-5],[-1,-3],[2,5],[1,3]],[[1280,2628],[-1,-1],[0,-4],[0,5],[1,4],[0,-4]],[[1276,2637],[-1,0],[2,2],[-1,-2]],[[1279,2650],[-1,-5],[-1,0],[3,9],[-1,-4]],[[1261,2573],[1,74],[4,-2]],[[1266,2645],[6,21],[4,-4],[0,-6],[-2,-21],[-1,-35],[-8,-27],[-4,0]],[[2739,3561],[-15,26],[-1,11],[-5,11]],[[2718,3609],[1,14],[7,-7]],[[2726,3616],[3,8],[5,1],[13,-7]],[[2747,3618],[11,1],[3,-8],[7,1]],[[2768,3612],[-3,-19],[7,-11],[-5,-2]],[[2767,3580],[3,-15],[-7,-2],[1,-10]],[[2764,3553],[-2,4],[-3,-4],[-3,-10],[1,-11],[-1,-3]],[[2756,3529],[-11,11],[-6,21]],[[1580,1223],[-1,-10],[-6,-6]],[[1567,1186],[-10,0],[-4,54],[-6,15],[2,9],[-4,8],[-1,11],[4,7],[-2,7],[3,10],[-6,14],[-3,36],[-3,3]],[[1537,1360],[-5,24],[12,34]],[[1544,1418],[-6,6],[-3,20],[4,13],[-3,16],[7,22],[-3,17],[2,30],[4,14],[-13,55]],[[1533,1611],[14,-5],[7,15]],[[1554,1621],[5,-1],[15,29],[15,2]],[[1589,1651],[2,6],[2,-19]],[[1593,1638],[-2,-10],[2,-17],[-2,-11],[6,-27],[7,-8],[1,-8],[19,-7],[4,-12],[9,-6],[4,-14],[11,2],[8,-11],[3,-46],[-5,0],[5,-14],[1,-28],[26,-1],[-3,-14],[2,-21],[9,-12],[3,-22],[-3,-30],[-6,-25],[4,-8]],[[1696,1288],[-3,-6],[-1,11]],[[1692,1293],[-13,17]],[[1679,1310],[-13,2],[-24,-12]],[[1642,1300],[-7,-33],[0,-18],[-5,-42]],[[1630,1207],[-3,8]],[[1606,1184],[-3,24],[-9,4],[-8,-1],[-6,12]],[[3861,2354],[-1,1],[1,1],[0,-1],[0,-1]],[[3864,2362],[-2,-6],[0,1],[1,5],[1,0]],[[3863,2363],[0,4],[0,2],[1,-1],[-1,-5]],[[3859,2376],[0,3],[1,-1],[-1,-2]],[[3863,2379],[0,1],[1,1],[-1,-2]],[[3868,2390],[-1,0],[0,4],[1,-2],[0,-2]],[[3859,2393],[0,-1],[0,3],[1,0],[-1,-2]],[[3863,2396],[1,-5],[0,-4],[-3,7],[2,2]],[[3867,2397],[-1,-1],[0,1],[1,1],[0,-1]],[[3867,2397],[1,4],[0,-3],[0,-2],[-1,1]],[[3863,2414],[1,12],[0,-11],[-1,-1]],[[3867,2418],[-1,0],[-1,8],[3,0],[-1,-8]],[[3862,2420],[-1,2],[-1,6],[2,-8]],[[3856,2428],[-1,1],[1,1],[0,-1],[0,-1]],[[3864,2431],[-1,1],[1,1],[0,-2]],[[3867,2429],[0,1],[-1,7],[4,-6],[-3,-2]],[[3862,2439],[-1,2],[0,3],[1,-1],[0,-4]],[[3870,2446],[-2,-1],[0,2],[1,-1],[1,0]],[[3862,2446],[-2,-2],[-1,2],[2,2],[1,-2]],[[3867,2448],[0,4],[1,-1],[-1,-3]],[[3865,2445],[0,1],[0,12],[2,-4],[-2,-9]],[[3859,2461],[-1,0],[0,2],[0,-1],[1,-1]],[[3865,2471],[-1,-4],[0,10],[1,-6]],[[3858,2510],[-1,1],[1,1],[0,-1],[0,-1]],[[3816,2569],[-1,1],[1,5],[0,-3],[0,-3]],[[3813,2577],[-2,-5],[3,14],[0,-4],[-1,-5]],[[3854,2585],[-1,3],[1,7],[1,-2],[-1,-8]],[[3800,2680],[1,0],[0,-8],[-3,8],[2,0]],[[3802,2693],[1,-1],[1,-13],[-6,20],[4,-6]],[[3802,2694],[-2,8],[0,2],[4,-5],[-2,-5]],[[3798,2711],[-1,2],[-1,5],[2,-2],[0,-5]],[[3862,3012],[3,-22],[2,5],[3,-5]],[[3870,2990],[1,-32],[-1,-17]],[[3870,2941],[-2,-2],[2,-9]],[[3870,2930],[-2,0],[-3,-11],[-2,2],[-9,-31]],[[3854,2890],[0,-9],[3,-8],[-3,-12]],[[3854,2861],[1,-3],[6,9],[12,2],[-3,-7],[3,-28],[8,-3],[1,-6],[-6,-28],[12,-3],[0,-12]],[[3888,2782],[3,-11],[5,1]],[[3896,2772],[7,12],[1,-6],[-6,-11]],[[3898,2767],[-3,-13],[2,-3],[-5,-4],[-3,-14]],[[3889,2733],[-1,3],[-7,-3],[0,-9],[-6,-1],[-1,-11],[-10,-3],[-3,4],[-5,-31],[1,-13]],[[3857,2669],[-6,0],[2,-11]],[[3853,2658],[2,1],[2,-21],[10,-28],[3,-23],[3,4],[-1,-9],[-3,-4],[-1,-24],[-5,-5],[0,-5],[2,-13],[12,-36],[-1,-24],[7,-44],[-12,-41]],[[3871,2386],[-3,-25],[-1,27],[3,7],[1,27],[2,1],[-4,2],[1,8],[0,8],[-2,1],[2,4]],[[3870,2446],[-2,29],[-5,32],[-1,-18],[0,23],[-4,25],[-1,34],[-3,8],[3,18],[-5,-2],[-7,34],[-2,-27],[-5,-7],[-2,11],[0,-15],[-3,0],[-8,-24],[-2,0],[1,9],[0,6],[-2,-13],[-1,13],[-2,-12],[-2,-1],[2,17],[-5,-14],[2,10],[-3,-7],[1,6],[0,8],[-6,-14],[0,14],[5,43],[-5,43],[-3,4],[0,14],[-1,-4],[-1,4],[2,8],[-6,9],[2,8],[-8,5],[1,-9],[-1,5],[0,-5],[-2,11],[2,2],[-2,-2],[1,15],[-3,-16],[-1,14],[-2,7],[1,-16],[-7,32],[2,12]],[[3786,2767],[1,30]],[[3787,2797],[3,-5],[4,9],[-2,16],[1,12],[2,-1],[1,8],[0,30],[11,-8],[8,42],[-2,14],[8,23],[0,20],[14,24],[8,3],[5,-10],[-3,19]],[[3845,2993],[6,12],[3,21]],[[3854,3026],[4,-7],[4,-7]],[[2524,2229],[-3,25],[1,74],[-4,17],[0,17]],[[2518,2362],[-8,13]],[[2510,2375],[0,6],[3,19],[6,14]],[[2519,2414],[9,-1],[4,9],[1,20]],[[2533,2442],[6,6],[11,-26]],[[2550,2422],[-2,-9]],[[2548,2413],[3,-11],[2,-19],[-4,-11],[1,-12],[-7,-18],[-1,-13],[-4,-1]],[[2538,2328],[0,-89],[-1,-7]],[[2537,2232],[-3,-1],[-12,-5],[2,3]],[[4746,1635],[-1,1],[0,2],[1,-2],[0,-1]],[[4743,1635],[8,-6],[3,-14],[-8,4],[-4,13],[-3,1],[0,5],[4,-3]],[[4749,1650],[-1,4],[0,2],[1,0],[0,-6]],[[4741,1664],[-1,0],[1,1],[0,-1]],[[4741,1664],[-1,5],[3,-14],[-2,2],[0,7]],[[4720,1665],[7,1],[6,-16],[-14,2],[-3,18],[4,-5]],[[4725,1676],[1,3],[1,-3],[-1,-2],[-2,1],[1,1]],[[4710,1676],[0,1],[1,3],[0,-2],[-1,-2]],[[4725,1676],[-3,3],[2,2],[1,-2],[0,-3]],[[4709,1677],[-1,2],[1,2],[0,-4]],[[4723,1681],[-1,-1],[0,3],[1,-1],[0,-1]],[[4722,1684],[-1,1],[1,0],[0,-1]],[[4736,1690],[0,-1],[-1,1],[1,0]],[[4688,1690],[0,-2],[-2,3],[1,1],[1,-2]],[[4696,1687],[0,2],[0,3],[1,-4],[-1,-1]],[[4694,1689],[-2,6],[3,3],[0,-6],[-1,-3]],[[4685,1699],[-1,-5],[1,-3],[-3,6],[3,5],[0,-3]],[[4717,1697],[-2,3],[0,3],[1,0],[1,-6]],[[4735,1687],[2,-5],[3,-24],[-7,21],[-4,26],[3,1],[3,-10],[0,-9]],[[4681,1708],[1,-3],[-2,5],[1,0],[0,-2]],[[4682,1707],[0,-1],[-1,5],[1,0],[0,-4]],[[4688,1708],[4,-8],[-1,-5],[-4,13],[-4,0],[4,10],[1,-10]],[[4674,1710],[-1,4],[0,5],[1,-4],[0,-5]],[[4682,1712],[-3,3],[1,7],[2,-3],[0,-7]],[[4676,1721],[-3,6],[0,5],[4,-5],[-1,-6]],[[4701,1729],[-3,1],[0,2],[1,0],[2,-3]],[[4719,1705],[1,-8],[-4,7],[-11,14],[-5,15],[19,-28]],[[4699,1734],[0,-1],[-2,3],[2,-2]],[[4690,1736],[-1,0],[0,2],[1,1],[0,-3]],[[4660,1739],[-1,0],[0,1],[1,1],[0,-2]],[[4664,1749],[-1,-1],[-2,2],[1,4],[2,-5]],[[4686,1741],[1,-2],[-8,6],[-7,20],[8,-9],[6,-15]],[[1825,1007],[1,14],[1,1],[0,-7],[-2,-8]],[[1825,1058],[-2,3],[2,5],[1,-2],[-1,-6]],[[1829,1090],[-1,3],[1,3],[0,-5],[0,-1]],[[1835,1107],[1,4],[2,5],[-2,-6],[-1,-3]],[[1857,1144],[-2,0],[0,1],[1,1],[1,-2]],[[1872,1152],[0,-7],[-3,1],[1,7],[2,-1]],[[1887,1173],[-3,-1],[-1,1],[2,4],[2,-4]],[[1959,1514],[0,-1],[-1,4],[1,0],[0,-3]],[[1957,1524],[2,0],[0,-6],[-2,3],[0,3]],[[1961,1534],[0,2],[2,6],[1,-4],[-3,-4]],[[1985,1611],[0,-1],[-1,-5],[1,6]],[[2016,1753],[-1,-1],[0,1],[1,0]],[[1881,1899],[-1,-3],[-1,1],[1,3],[1,-1]],[[1881,1899],[-1,4],[2,3],[-2,-12],[1,5]],[[1916,1905],[-1,0],[-1,3],[1,-1],[1,-2]],[[1893,1920],[-1,-1],[2,3],[-1,-2]],[[1793,1935],[-2,-3],[-2,6],[1,0],[3,-3]],[[1818,1942],[1,-4],[-1,-1],[-1,0],[1,5]],[[1818,1942],[2,5],[0,-2],[0,-6],[-2,3]],[[1879,1945],[0,-1],[-1,0],[1,4],[0,-3]],[[1777,1947],[-1,0],[-1,-2],[2,7],[2,-3],[-2,-2]],[[1825,1952],[-1,-2],[-1,2],[1,2],[1,-2]],[[1825,1952],[0,3],[0,-1],[1,-5],[-1,3]],[[1772,1949],[-1,2],[4,2],[-1,-2],[-2,-2]],[[1875,1953],[0,5],[1,0],[0,-2],[-1,-3]],[[1866,1955],[-1,0],[1,8],[0,-1],[0,-7]],[[1828,1960],[-2,2],[1,3],[1,0],[0,-5]],[[1854,1967],[-1,2],[1,3],[1,-5],[-1,0]],[[1791,1972],[1,0],[-1,-1],[-1,-5],[-1,-2],[2,8]],[[1788,1967],[0,6],[0,-10],[-2,-3],[2,7]],[[1792,1973],[0,4],[1,0],[0,-3],[-1,-1]],[[1834,1977],[-1,2],[1,2],[1,-2],[-1,-2]],[[1838,1978],[-1,3],[1,2],[0,-2],[0,-3]],[[1789,1969],[1,10],[4,4],[0,-4],[-2,-1],[-3,-9]],[[1791,1980],[-1,1],[1,2],[0,-1],[0,-2]],[[1788,1967],[-9,-16],[0,10],[3,4],[1,12],[6,8],[-1,-18]],[[1786,1986],[2,1],[0,-1],[-2,-2],[0,2]],[[1793,1990],[-1,-5],[-1,-1],[-1,2],[3,4]],[[1793,1990],[1,0],[0,-3],[-2,-4],[1,7]],[[1790,1984],[-1,5],[2,4],[1,-2],[-1,-2],[-1,-5]],[[1793,1991],[-1,1],[-1,3]],[[1791,1995],[2,-2]],[[1793,1993],[0,-2]],[[1793,1991],[2,4],[0,-3],[-1,-1],[-1,0]],[[1786,1986],[2,10],[2,3],[-1,-6],[-3,-7]],[[1809,1995],[8,4],[11,-6],[-4,-28],[-3,-14],[-4,-5],[-7,-6],[-1,5],[-1,-7],[-3,4],[-8,-3],[-3,16],[0,7],[4,3],[-4,4],[1,13],[0,-2],[3,-1],[-3,7],[1,8],[4,6],[9,-5]],[[1791,1995],[1,5],[5,1],[-4,-8]],[[1793,2002],[1,4],[2,-2],[-1,0],[-2,-2]],[[1812,1999],[-3,-1],[-2,3],[5,5],[2,-5],[-2,-2]],[[1799,2003],[-2,1],[-1,6],[3,-1],[0,-6]],[[1802,2012],[1,3],[1,0],[-2,-3]],[[1810,2012],[-5,-11],[-5,6],[5,7],[5,-2]],[[1799,2011],[-1,1],[2,14],[1,-11],[-2,-4]],[[1802,2016],[-1,6],[3,5],[1,-4],[-3,-7]],[[1805,2035],[-1,-4],[-3,-1],[1,5],[3,0]],[[1805,2035],[-1,1],[0,1],[1,-1],[0,-1]],[[1805,2037],[-1,2],[2,2],[0,-2],[-1,-2]],[[1800,2080],[1,-6],[-1,-3],[-2,5],[2,4]],[[1800,2080],[-1,-1],[-1,3],[2,0],[0,-2]],[[1671,2161],[1,-18],[-3,-13]],[[1669,2130],[-3,-30],[4,-15]],[[1670,2085],[0,-15]],[[1670,2070],[7,-17],[6,-7]],[[1683,2046],[4,3],[3,11],[4,-2]],[[1694,2058],[13,18],[4,-5],[11,-1],[1,7],[-3,7]],[[1720,2084],[2,10],[4,-5],[10,6]],[[1736,2095],[12,-16]],[[1748,2079],[5,10]],[[1753,2089],[11,-7],[5,10],[4,25]],[[1773,2117],[8,29],[3,6],[1,-6],[-1,15],[6,-18],[1,-27],[5,-35],[3,-12],[7,-4],[1,-14],[-3,-4],[3,-2],[-8,-18],[-4,-17],[-7,-12],[-6,-21],[-1,-10],[-2,-5],[-1,-7],[-4,0],[-6,-9],[5,3],[2,-6],[13,17],[3,6],[0,4],[2,1],[1,-19],[2,-12],[-2,-4],[-7,9],[-3,-15],[1,-8],[2,18],[4,-9],[0,-12],[0,-2],[2,-3],[-2,5],[1,10],[3,-5],[-1,9],[2,6],[3,-5],[16,8],[-3,-30],[4,24],[4,2],[3,13],[4,-7],[0,6],[3,1],[-4,0],[0,6],[2,-1],[1,12],[3,10],[2,-2],[2,5],[1,-5],[2,5],[2,-7],[-1,8],[3,0],[4,-4],[1,-7],[1,7],[3,-11],[3,-1],[3,3],[-1,-8],[3,-1],[1,5],[2,-7],[1,3],[1,-7],[3,3],[0,-9],[2,8],[0,-15],[2,9],[4,2],[-1,-6],[6,-8],[-2,-18],[3,7],[2,-7],[-4,-8],[-2,-27],[5,14],[1,14],[4,4],[-4,-15],[2,2],[0,-3],[4,11],[6,1],[0,5],[2,1],[15,-17],[6,4],[8,-11],[0,5],[17,2],[21,-32],[18,-43],[7,-6],[17,-3],[3,-15],[5,-55],[0,2]],[[2015,1750],[1,4],[0,-7],[0,-32],[-7,-42],[-15,-45],[-9,-16],[0,2],[-1,5],[0,-1],[1,-7]],[[1985,1611],[-1,-5],[-2,2],[1,-6],[-2,-8],[1,8],[-1,1],[-4,-32],[-10,-31],[-3,-3],[1,10],[-3,6],[-1,-10],[-1,7],[-1,-3],[1,-4],[2,-1],[-5,-18]],[[1957,1524],[0,-6],[1,-5],[-1,-17],[2,9],[-2,-26],[3,-44],[-5,-46],[1,-19],[-7,-19],[-2,-51],[-3,-4],[-3,-19],[-2,2],[-1,-14],[-5,-9],[-2,-13],[0,-27],[-11,-13],[-4,-8],[0,-13],[-15,-1],[0,10],[-2,-2],[0,-9],[-11,-4],[6,3],[-4,4],[-11,-5],[1,-11],[-4,0],[-7,-10],[0,-7],[-7,2],[-5,-9],[0,1]],[[1857,1144],[-1,3],[-1,1],[-22,-41],[1,-4],[-4,-12],[1,7],[-4,-1],[-1,-6],[-3,2],[5,-6],[-6,-11],[3,1],[0,-12],[-2,-1],[-1,6],[4,-41],[-2,-2],[1,-22],[-3,-22],[-1,5],[1,-6],[-13,-31],[-14,-61],[-19,-39],[0,12],[3,-1],[9,14],[1,14],[3,-2],[5,24],[0,10],[-5,-8],[-5,14],[1,-28],[-2,6],[-1,-16],[-7,-9],[-4,-15],[0,-11],[2,-4],[-7,-34],[-11,-23],[-2,4]],[[1756,798],[0,18],[6,15],[-6,10],[-5,17],[-5,6],[-5,12],[-9,8],[-4,14],[-6,-8],[0,10],[-11,25],[-4,0],[-2,-7],[-5,4]],[[1700,922],[23,65]],[[1752,1030],[3,33],[-4,22]],[[1741,1087],[5,55]],[[1746,1142],[-5,9]],[[1741,1151],[-6,-7],[-5,1],[-3,48],[-3,12],[-5,0],[-3,8],[-6,-8],[-16,7],[3,40]],[[1697,1252],[-5,29],[4,7]],[[1593,1638],[-2,18],[-2,-5]],[[1554,1621],[-3,-11],[-4,-5],[-11,7],[-17,-3]],[[1519,1609],[1,57],[-11,-21],[-12,0],[-2,17],[-12,4],[3,16],[-8,22],[-3,15],[1,6],[-4,8],[4,9],[-1,15],[9,16],[-1,12],[5,35],[13,22],[13,5],[3,8]],[[1517,1855],[6,0],[2,-7],[3,3],[8,105]],[[1536,1956],[-3,29],[-6,13],[0,27],[8,5],[5,-3],[-2,14],[-8,1],[0,23],[23,0],[0,9],[3,-8],[7,14],[5,-18],[0,-16],[3,1]],[[1571,2047],[8,-17],[10,9],[1,-12],[5,17],[12,12],[4,17],[9,12],[0,5],[-10,2],[-2,40],[-8,25],[3,-6],[6,0],[2,-8],[9,2],[6,-14],[2,4],[0,13]],[[1628,2148],[17,8],[12,21],[1,4]],[[1658,2181],[-2,9]],[[1656,2190],[9,0],[2,-7],[-3,-18],[7,-4]],[[2888,3508],[-6,-3],[-4,7],[-9,-5],[-3,-9],[-4,0]],[[2862,3498],[0,-13],[-11,-4]],[[2851,3481],[-15,12]],[[2836,3493],[-18,-8]],[[2818,3485],[1,15],[-9,20],[3,6]],[[2813,3526],[-2,12],[4,2],[4,11],[-6,10],[-3,13]],[[2810,3574],[4,14],[5,-5]],[[2819,3583],[-2,-6],[1,-4],[34,-6]],[[2852,3567],[13,14],[13,4],[18,-14]],[[2896,3571],[0,-11],[-6,-3],[-3,-19],[0,-4],[-6,-9],[3,-2],[4,-15]],[[1588,3559],[0,2],[1,1],[-1,-3]],[[1579,3590],[0,-1],[1,5],[0,-1],[-1,-3]],[[1571,3602],[0,5],[1,2],[1,-4],[-2,-3]],[[1653,3632],[-2,3],[3,1],[-1,-1],[0,-3]],[[1512,3682],[2,5],[2,1],[-1,-4],[-3,-2]],[[1660,3683],[2,-5],[-4,-19],[3,3],[-10,-12],[5,4],[-6,-13],[5,0],[6,10],[-6,-2],[7,10],[-5,-5],[5,9],[6,-5],[1,-9],[-8,-10],[-13,-3],[-3,15],[1,6],[12,31],[2,-5]],[[1610,3678],[4,-11],[2,5],[6,-6],[17,2],[-5,-4],[-4,-6],[2,-6],[-4,-2],[-5,9],[2,4],[-2,-2],[-1,-4],[-6,2],[-2,7],[-5,0],[0,8],[-4,2],[5,13],[0,-11]],[[1724,3697],[-2,0],[2,1],[0,-1]],[[1647,3710],[-2,0],[-4,-8],[2,4],[-4,-9],[2,-1],[-3,0],[2,6],[5,8],[2,0]],[[1746,3701],[-1,1],[3,10],[-1,-5],[-1,-6]],[[1749,3705],[-1,0],[1,7],[0,-6],[0,-1]],[[1723,3709],[-2,1],[-1,1],[3,1],[0,-3]],[[1601,3714],[1,5],[2,1],[-2,-6],[-1,0]],[[1603,3720],[1,4],[0,-2],[-1,-2]],[[1754,3729],[2,1],[-1,-4],[-4,4],[3,-1]],[[785,3749],[-1,1],[-1,7],[3,-6],[-1,-2]],[[787,3754],[-3,3],[-2,6],[5,-8],[0,-1]],[[752,3764],[-1,1],[0,2],[2,0],[-1,-3]],[[748,3773],[1,-2],[0,-3],[-2,2],[1,3]],[[786,3771],[0,2],[1,1],[0,-2],[-1,-1]],[[1740,3774],[-1,1],[1,2],[1,-1],[-1,-2]],[[775,3775],[-2,0],[-1,3],[2,-1],[1,-2]],[[787,3775],[-2,0],[0,3],[2,0],[0,-3]],[[1726,3779],[1,0],[0,-1],[-1,-1],[0,2]],[[768,3776],[-2,2],[0,3],[2,-5]],[[1726,3779],[1,3],[1,-1],[-2,-2]],[[1742,3779],[-4,-3],[-1,4],[5,3],[0,-4]],[[1750,3782],[-4,-3],[-1,2],[3,5],[2,-4]],[[776,3782],[-1,2],[2,3],[0,-2],[-1,-3]],[[1711,3786],[-1,0],[0,1],[1,0],[0,-1]],[[771,3785],[2,-1],[3,-7],[-8,11],[3,-3]],[[740,3780],[-4,5],[1,4],[3,0],[0,-9]],[[1637,3773],[6,-9],[-7,-2],[-13,5],[-19,23],[5,3],[14,-6],[14,-14]],[[764,3803],[1,-3],[0,-3],[-2,2],[1,4]],[[1613,3802],[-1,0],[0,1],[0,1],[1,-2]],[[761,3794],[-2,6],[0,5],[2,-2],[0,-9]],[[764,3803],[1,3],[2,-5],[-1,-2],[-2,4]],[[767,3806],[1,-2],[0,-3],[-1,2],[0,3]],[[756,3809],[-1,0],[-2,0],[3,2],[0,-2]],[[761,3808],[2,-6],[-1,-3],[0,5],[-1,2],[-3,0],[3,2]],[[756,3809],[3,2],[-1,-3],[-2,1]],[[753,3810],[-2,0],[0,1],[2,-1]],[[747,3815],[-2,-1],[-4,0],[5,2],[1,-1]],[[743,3816],[-1,1],[3,0],[-1,-1],[-1,0]],[[1675,3814],[0,4],[1,-2],[-1,-2]],[[738,3819],[0,-1],[-4,0],[1,1],[3,0]],[[741,3820],[-1,2],[2,0],[-1,-2]],[[1728,3820],[-1,3],[3,1],[-1,-3],[-1,-1]],[[746,3818],[-3,0],[-2,1],[5,6],[0,-7]],[[740,3823],[-2,0],[-1,1],[5,0],[-2,-1]],[[733,3818],[24,-11],[4,-15],[4,-7],[0,-3],[2,-6],[15,-12],[-2,0],[4,-20],[2,4],[1,-10],[-4,-4],[-21,16],[-1,2],[5,8],[1,4],[-1,4],[-1,-9],[-8,-3],[-4,5],[2,6],[-5,2],[1,6],[-1,-4],[-2,3],[-6,-1],[0,7],[7,3],[-7,1],[-2,7],[-1,1],[-5,-2],[-1,4],[1,4],[-10,1],[1,4],[-3,4],[1,5],[7,-4],[-2,5],[2,3],[-6,1],[4,-2],[-7,-4],[-5,12],[7,3],[10,-8]],[[727,3825],[-1,1],[-2,1],[2,1],[1,-3]],[[1728,3827],[-1,0],[0,2],[1,1],[0,-3]],[[1688,3839],[-2,0],[2,2],[0,-2]],[[1754,3729],[-3,3],[-1,-2],[1,-4],[3,0],[-3,-2],[4,1],[-3,-10],[4,-9],[4,18],[6,3],[-6,-18],[2,-7],[5,14],[2,-10],[-7,-32],[-7,1],[0,18],[-8,-12],[4,21],[-1,13],[-3,3],[-4,-16],[-2,-2],[3,9],[-3,-8],[-3,1],[-6,-17],[-6,-3],[-4,4],[16,21],[-3,3],[2,6],[-3,-7],[-4,4],[0,-8],[-2,-3],[-5,1],[2,5],[-6,-3],[8,7],[-4,-1],[2,11],[-5,-12],[-10,-4],[-16,6],[-16,-5],[-3,12],[13,22],[-11,-1],[6,11],[-2,-6],[3,-1],[5,20],[0,-3],[3,0],[1,-3],[3,0],[-4,6],[3,0],[-2,1],[2,3],[-4,0],[0,5],[3,6],[4,-3],[-3,7],[8,33],[3,1],[-3,3],[6,8],[3,15],[11,10],[1,-5],[6,3],[-3,-9],[-6,2],[5,-10],[-5,-13],[-1,6],[0,-10],[-11,-31],[2,-1],[-1,-6],[10,21],[5,-8],[4,3],[-9,-13],[4,2],[-4,-10],[4,4],[3,-5],[2,4],[-1,-5],[3,5],[0,-7],[1,8],[2,1],[-4,-18],[5,11],[3,-3],[4,9],[1,-10],[2,6],[8,-1],[4,-6],[-9,-15],[4,0],[-1,-3],[0,-3],[4,2],[-5,-5],[3,-2],[-5,-2],[0,-3],[7,7],[0,-4],[7,9],[2,-3],[-3,-9],[-7,-7]],[[723,3846],[-2,2],[-1,6],[2,3],[1,-11]],[[1731,3862],[-1,1],[2,4],[0,-3],[-1,-2]],[[723,3866],[-2,-8],[-2,4],[3,7],[1,-3]],[[1399,3869],[-2,-5],[-4,2],[5,5],[1,-2]],[[680,3865],[-1,2],[0,5],[1,-2],[0,-5]],[[723,3869],[-2,1],[-1,2],[4,1],[-1,-4]],[[718,3871],[2,3],[0,-4],[-1,-3],[-1,4]],[[716,3872],[-1,1],[1,2],[0,-3]],[[718,3871],[-1,1],[0,3],[2,-1],[-1,-3]],[[1368,3876],[-2,0],[-1,0],[2,1],[1,-1]],[[723,3873],[-2,0],[-1,3],[2,1],[1,-4]],[[720,3877],[-1,2],[2,3],[0,-4],[-1,-1]],[[723,3866],[2,9],[8,7],[0,-4],[-5,-5],[-2,-7],[-3,0]],[[713,3876],[-1,4],[0,4],[2,-1],[-1,-7]],[[715,3890],[1,-6],[-1,-2],[-2,2],[-2,0],[0,1],[3,3],[1,2]],[[674,3889],[-2,-1],[-1,4],[3,1],[0,-4]],[[716,3880],[0,13],[1,2],[1,-11],[-2,-4]],[[709,3883],[-5,9],[0,4],[5,-8],[0,-5]],[[718,3888],[0,6],[1,1],[1,1],[-2,-8]],[[672,3896],[-2,0],[-1,1],[1,0],[2,-1]],[[715,3890],[0,2],[0,6],[1,-3],[-1,-5]],[[700,3901],[-1,2],[1,0],[0,-2]],[[701,3903],[-2,1],[1,0],[1,-1]],[[1725,3904],[-1,-1],[1,3],[0,-2]],[[700,3905],[-2,0],[0,2],[1,0],[1,-2]],[[1390,3905],[0,4],[2,-3],[-1,-1],[-1,0]],[[702,3908],[2,-6],[0,-1],[-3,6],[1,1]],[[1373,3910],[6,-18],[-19,11],[3,6],[10,1]],[[670,3910],[2,-6],[-3,1],[-2,-1],[5,-4],[-5,-2],[8,-18],[2,2],[-1,-5],[4,-4],[-3,-2],[-12,22],[2,2],[-5,5],[3,2],[-6,5],[7,1],[3,4],[1,-2]],[[713,3908],[2,-9],[-1,-10],[-2,-1],[1,13],[-3,-11],[-4,8],[4,6],[-2,3],[2,-3],[-3,-5],[-1,4],[1,3],[0,7],[6,-5]],[[704,3914],[2,-1],[0,-7],[-2,1],[0,7]],[[1389,3912],[-1,0],[-1,2],[2,2],[0,-4]],[[704,3914],[-1,-1],[-1,3],[1,1],[1,-3]],[[1725,3917],[-2,1],[-1,1],[4,0],[-1,-2]],[[709,3914],[-3,1],[2,7],[2,-6],[-1,-2]],[[1393,3921],[-1,0],[0,1],[1,-1]],[[695,3920],[-1,1],[2,1],[-1,-2]],[[696,3917],[2,-9],[-11,17],[5,-3],[4,-5]],[[707,3918],[-1,7],[5,3],[-4,-7],[0,-3]],[[693,3923],[-3,2],[-1,2],[2,4],[2,-8]],[[1710,3930],[-1,-1],[-1,2],[2,0],[0,-1]],[[690,3932],[2,3],[5,-7],[5,-11],[-1,-7],[-5,13],[-2,1],[1,1],[-5,7]],[[692,3938],[-1,1],[1,2],[0,-1],[0,-2]],[[690,3932],[-2,2],[1,4],[-5,-5],[5,9],[2,-4],[-1,-6]],[[1687,3940],[-1,1],[3,1],[-1,-1],[-1,-1]],[[655,3943],[4,-1],[-2,-6],[5,6],[2,-4],[-1,-8],[-6,-3],[4,-3],[3,4],[2,11],[5,5],[-4,-32],[-7,-4],[-3,4],[2,2],[-3,1],[5,0],[-8,7],[1,2],[-3,10],[1,10],[3,-1]],[[692,3943],[-1,0],[0,2],[1,-1],[0,-1]],[[1396,3944],[0,1],[1,0],[-1,-1]],[[685,3942],[-2,2],[0,2],[2,-2],[0,-2]],[[689,3948],[0,-1],[-1,2],[1,1],[0,-2]],[[691,3948],[-1,-1],[-1,2],[2,1],[0,-2]],[[685,3951],[-1,0],[0,1],[1,1],[0,-2]],[[1703,3956],[0,1],[1,2],[1,-2],[-2,-1]],[[681,3955],[0,5],[3,1],[0,-3],[-3,-3]],[[1393,3966],[-1,-1],[2,2],[0,-1],[-1,0]],[[691,3964],[-2,-1],[2,4],[0,-3]],[[687,3963],[-1,2],[2,2],[0,-3],[-1,-1]],[[1695,3971],[-1,-4],[2,0],[-4,-2],[-1,3],[4,3]],[[1401,3970],[-2,0],[-7,-4],[4,4],[6,2],[-1,-2]],[[1685,3971],[-1,0],[1,3],[0,-2],[0,-1]],[[689,3966],[-1,2],[4,7],[0,-3],[-3,-6]],[[1347,3984],[0,-1],[-1,1],[1,0]],[[1422,3990],[-1,-1],[6,8],[-5,-7]],[[1653,4005],[-1,0],[-1,3],[3,-2],[-1,-1]],[[1654,4005],[0,3],[3,-1],[-1,-1],[-2,-1]],[[1401,4002],[1,10],[1,1],[0,-2],[-2,-9]],[[1653,4010],[-3,1],[-1,2],[2,3],[2,-6]],[[1644,4024],[2,1],[1,-3],[-6,3],[3,-1]],[[1405,4015],[0,8],[2,3],[0,-10],[-2,-1]],[[1395,4021],[-1,-2],[1,6],[1,1],[-1,-5]],[[1394,4024],[-1,-3],[-6,-4],[8,12],[-1,-5]],[[1646,4029],[4,-2],[0,-1],[-6,1],[2,2]],[[1395,4021],[1,9],[-1,-13],[4,13],[3,-5],[2,0],[-1,-5],[-3,-14],[3,18],[-4,-19],[1,13],[-4,-13],[-4,-3],[3,13],[-6,-9],[6,15]],[[1401,4032],[-2,0],[0,1],[1,1],[1,-2]],[[1650,4031],[0,3],[1,0],[1,-2],[-2,-1]],[[1395,4032],[-1,5],[1,2],[1,-4],[-1,-3]],[[1390,4037],[-1,2],[2,2],[0,-2],[-1,-2]],[[1392,4042],[0,-4],[-1,4],[-1,0],[2,0]],[[1646,4043],[2,-2],[-4,-4],[3,1],[0,-6],[-3,4],[2,7]],[[1436,4049],[-1,0],[-1,4],[1,0],[1,-4]],[[1644,4058],[-1,-2],[-1,1],[0,2],[2,-1]],[[1434,4056],[0,1],[-1,4],[1,-2],[0,-3]],[[1640,4061],[3,4],[0,-5],[-2,0],[-1,1]],[[1640,4062],[-1,0],[-1,3],[4,1],[-2,-4]],[[1391,4061],[0,4],[1,3],[1,-4],[-2,-3]],[[1643,4071],[-1,0],[-2,2],[3,3],[0,-5]],[[1637,4075],[0,1],[3,2],[-1,-4],[-2,1]],[[1421,4090],[-1,1],[-3,2],[2,0],[2,-3]],[[1561,4092],[0,3],[1,-1],[-1,-2]],[[1408,4104],[2,-3],[-3,3],[0,2],[1,-2]],[[1539,4120],[-1,-4],[-2,0],[1,2],[-1,4],[3,-2]],[[1381,4131],[0,2],[1,2],[0,-1],[-1,-3]],[[1385,4140],[-1,0],[3,3],[-1,-1],[-1,-2]],[[1611,4143],[-2,-1],[-1,2],[2,4],[1,-5]],[[1387,4144],[-1,0],[4,4],[0,-1],[-3,-3]],[[1605,4163],[-6,7],[3,1],[3,-4],[0,-4]],[[1552,4162],[-2,1],[4,11],[4,-4],[-6,-8]],[[1601,4174],[0,1],[2,3],[-1,-3],[-1,-1]],[[1407,4178],[1,3],[5,2],[-1,-2],[-5,-3]],[[1528,4187],[-1,2],[1,1],[0,-1],[0,-2]],[[1601,4208],[-2,-7],[-9,10],[7,3],[4,-1],[0,-5]],[[1587,4217],[-1,-1],[-2,1],[2,3],[1,-3]],[[1209,4221],[-2,-2],[-2,3],[2,0],[2,-1]],[[1598,4215],[-3,2],[-2,4],[4,0],[1,-6]],[[1585,4228],[-1,0],[-1,2],[1,0],[1,-2]],[[1219,4238],[-2,0],[0,1],[3,0],[-1,-1]],[[1395,4240],[4,-9],[-6,-19],[-2,-2],[-6,8],[0,11],[3,9],[7,2]],[[1216,4239],[-2,-1],[0,1],[1,1],[1,-1]],[[1602,4244],[3,-1],[-3,-5],[-5,4],[5,2]],[[1416,4246],[2,0],[1,-1],[-4,0],[1,1]],[[1419,4246],[3,0],[-2,-2],[-1,2]],[[1597,4244],[-2,0],[0,1],[4,1],[-2,-2]],[[1228,4247],[-1,1],[-1,1],[2,-1],[0,-1]],[[1236,4249],[-2,-1],[-2,1],[3,1],[1,-1]],[[1467,4249],[3,1],[3,-3],[-10,4],[4,-2]],[[1518,4254],[4,-3],[3,-5],[-8,-1],[-1,7],[-6,5],[8,-3]],[[1578,4255],[-2,1],[-1,1],[0,1],[3,-3]],[[1363,4258],[-1,-8],[-16,-19],[-9,-1],[-3,10],[9,18],[20,0]],[[1572,4260],[-1,1],[-3,4],[2,-2],[2,-3]],[[1559,4267],[-2,1],[0,1],[1,1],[1,-3]],[[1556,4267],[-2,5],[1,-1],[1,-4]],[[1415,4278],[6,-2],[2,-6],[-6,-6],[-9,13],[7,1]],[[1239,4278],[2,-1],[-1,0],[-1,1]],[[1409,4277],[0,3],[1,-1],[0,-1],[-1,-1]],[[1239,4278],[-1,1],[-2,1],[4,-1],[-1,-1]],[[1599,4275],[-1,1],[-2,5],[2,-1],[1,-5]],[[1497,4279],[0,1],[-1,2],[2,-1],[-1,-2]],[[1231,4281],[-1,0],[-2,2],[4,-2],[-1,0]],[[1610,4278],[-2,2],[0,3],[1,-2],[1,-3]],[[1546,4283],[-1,0],[-1,1],[2,1],[0,-2]],[[1610,4270],[-4,5],[-2,9],[2,0],[4,-14]],[[1502,4283],[0,2],[1,0],[-1,-2]],[[1433,4282],[4,-5],[-7,-2],[-6,9],[9,-2]],[[1491,4284],[-2,0],[0,1],[4,0],[-2,-1]],[[1610,4285],[-2,0],[0,1],[2,2],[0,-3]],[[1490,4286],[-1,0],[1,2],[1,-1],[-1,-1]],[[1607,4286],[-1,1],[-1,3],[2,-2],[0,-2]],[[1608,4291],[0,-3],[-3,3],[3,1],[0,-1]],[[1209,4292],[-2,1],[1,0],[1,-1]],[[1603,4289],[2,-3],[-7,4],[5,3],[0,-4]],[[1420,4294],[-3,1],[0,1],[6,1],[-3,-3]],[[1597,4301],[2,-1],[-3,1],[1,0]],[[1604,4301],[0,-1],[-1,2],[1,0],[0,-1]],[[1483,4304],[-1,-2],[-2,1],[0,1],[3,0]],[[1368,4303],[-1,1],[3,1],[-1,-1],[-1,-1]],[[1604,4304],[-2,0],[0,2],[2,-1],[0,-1]],[[1450,4307],[-2,0],[0,2],[3,-1],[-1,-1]],[[1598,4305],[-2,0],[-1,4],[3,-2],[0,-2]],[[1474,4307],[-2,1],[1,2],[1,-1],[0,-2]],[[1476,4306],[-2,2],[1,3],[1,-1],[0,-4]],[[1599,4308],[-1,2],[-1,1],[3,-2],[-1,-1]],[[1468,4311],[-1,1],[-1,1],[4,-1],[-2,-1]],[[1475,4312],[0,3],[2,-2],[-2,-1]],[[1469,4314],[-2,1],[0,1],[3,-1],[-1,-1]],[[1478,4308],[-2,7],[2,2],[1,-4],[-1,-5]],[[1590,4315],[-3,0],[5,7],[2,-2],[-4,-5]],[[1620,4332],[1,-2],[-2,2],[1,0]],[[1620,4343],[2,0],[-1,-1],[-1,1]],[[1570,4343],[-1,0],[0,1],[1,1],[0,-2]],[[1272,4349],[-1,0],[-1,0],[2,0]],[[1628,4351],[-2,2],[0,1],[2,-2],[0,-1]],[[1335,4356],[-1,1],[1,1],[0,-2]],[[1563,4358],[-3,-1],[-1,1],[4,1],[0,-1]],[[1635,4358],[2,-2],[-5,2],[3,1],[0,-1]],[[1343,4362],[-3,-1],[-1,2],[3,0],[1,-1]],[[1588,4362],[0,2],[2,1],[-1,-3],[-1,0]],[[1313,4361],[4,-1],[1,-6],[-3,-2],[4,-5],[1,-7],[7,9],[4,-9],[10,-3],[3,-7],[20,-15],[2,-14],[-5,-5],[15,0],[0,5],[10,-13],[-12,-11],[-20,8],[-1,3],[3,5],[-10,2],[1,7],[-1,1],[-7,-3],[-2,-3],[1,-9],[-23,-23],[-4,2],[0,16],[-2,3],[-20,-4],[3,11],[11,7],[-3,12],[3,14],[1,25],[4,12],[4,3],[1,-5]],[[1637,4363],[-1,1],[-2,2],[3,0],[0,-3]],[[1567,4366],[-1,2],[1,0],[0,-2]],[[1323,4352],[-5,7],[-1,9],[3,1],[5,-12],[-2,-5]],[[1319,4370],[-2,0],[1,1],[1,-1]],[[1338,4371],[-1,2],[2,-1],[-1,-1]],[[1335,4356],[2,3],[-6,1],[0,5],[-4,8],[7,-4],[3,-3],[0,-5],[7,-3],[-9,-2]],[[1325,4373],[-1,0],[0,2],[1,-1],[0,-1]],[[1329,4375],[-1,0],[0,1],[1,-1]],[[1636,4377],[0,-1],[-3,0],[2,2],[1,-1]],[[1346,4377],[2,1],[-2,-3],[-3,5],[3,-3]],[[1574,4378],[0,1],[-4,4],[5,-3],[-1,-2]],[[1569,4386],[2,-1],[-2,0],[0,1]],[[1001,4399],[1,5],[1,0],[-1,-3],[-1,-2]],[[1000,4400],[-2,3],[0,2],[3,-3],[-1,-2]],[[1624,4403],[-1,0],[-1,1],[3,0],[-1,-1]],[[1626,4404],[-2,1],[-1,1],[2,1],[1,-3]],[[1630,4406],[-2,-2],[-2,2],[7,4],[-3,-4]],[[1008,4407],[-2,0],[-1,4],[3,-3],[0,-1]],[[1175,4411],[-2,2],[3,0],[-1,-2]],[[1004,4412],[0,2],[0,1],[1,0],[-1,-3]],[[1620,4414],[-2,0],[-5,0],[4,3],[3,-3]],[[1001,4415],[-2,3],[0,2],[2,2],[0,-7]],[[995,4421],[-2,1],[0,2],[3,0],[-1,-3]],[[998,4420],[-2,1],[1,4],[0,-1],[1,-4]],[[995,4425],[-1,1],[-1,1],[1,0],[1,-2]],[[1610,4423],[1,4],[3,-4],[-2,-1],[-2,1]],[[999,4421],[-1,2],[0,5],[3,-4],[-2,-3]],[[1146,4426],[-1,3],[3,1],[0,-2],[-2,-2]],[[984,4431],[-1,1],[2,1],[-1,-2]],[[1164,4432],[1,2],[1,0],[-2,-2]],[[915,4436],[1,0],[2,0],[-4,-1],[-2,1],[3,0]],[[1141,4435],[-2,0],[0,2],[1,-1],[1,-1]],[[991,4435],[1,2],[3,-1],[-4,-1]],[[925,4436],[-2,0],[-1,0],[5,1],[-2,-1]],[[931,4437],[-1,0],[-2,0],[4,0],[-1,0]],[[957,4434],[0,1],[4,3],[-1,-2],[-3,-2]],[[913,4438],[-1,0],[3,1],[-2,-1]],[[998,4435],[-2,1],[3,3],[0,-3],[-1,-1]],[[983,4440],[4,-1],[1,-3],[-3,0],[-2,4]],[[967,4440],[-1,0],[0,1],[2,1],[-1,-2]],[[1125,4439],[0,1],[-1,2],[1,1],[0,-4]],[[1591,4441],[-1,1],[2,1],[-1,-2]],[[994,4442],[-1,-1],[-1,0],[2,2],[0,-1]],[[981,4439],[-2,2],[-1,1],[2,1],[1,-4]],[[994,4442],[2,1],[-1,-1],[-1,0]],[[969,4441],[-1,0],[6,3],[-1,-1],[-4,-2]],[[933,4445],[-1,0],[-1,0],[3,1],[-1,-1]],[[1469,4444],[11,-5],[1,-5],[-14,-2],[-6,7],[8,5]],[[1588,4446],[2,-1],[-3,-1],[1,2]],[[1007,4445],[-1,1],[1,1],[0,-2]],[[1049,4444],[-1,2],[2,1],[0,-1],[-1,-2]],[[1008,4446],[0,1],[2,0],[-1,0],[-1,-1]],[[948,4448],[-1,-2],[-1,1],[2,1]],[[1130,4446],[-1,0],[0,2],[1,0],[0,-2]],[[1471,4445],[-1,1],[-1,1],[2,1],[0,-3]],[[992,4448],[-1,-3],[-1,1],[2,2]],[[975,4445],[-1,0],[4,4],[-1,-3],[-2,-1]],[[1579,4445],[-4,1],[0,2],[5,1],[-1,-4]],[[1161,4447],[-1,0],[0,1],[2,0],[-1,-1]],[[1408,4447],[-1,0],[2,2],[-1,-2]],[[1299,4442],[1,-7],[-3,-5],[-4,3],[1,7],[-2,2],[4,9],[4,-4],[-1,-5]],[[948,4448],[-1,1],[1,2],[3,0],[-3,-3]],[[1450,4451],[8,-6],[-2,-7],[2,-12],[-3,-6],[-20,-8],[-5,1],[-3,7],[0,14],[7,14],[16,3]],[[1402,4446],[-2,5],[5,-1],[0,-1],[-3,-3]],[[1110,4452],[0,-2],[-2,1],[2,2],[0,-1]],[[1360,4451],[-3,1],[-1,1],[5,-1],[-1,-1]],[[957,4454],[-1,2],[1,0],[0,-1],[0,-1]],[[1124,4455],[-1,1],[1,0],[0,-1]],[[1470,4449],[-2,1],[-2,6],[5,-4],[-1,-3]],[[1101,4454],[-1,1],[-1,1],[1,1],[1,-3]],[[960,4457],[-3,0],[5,0],[-2,0]],[[964,4459],[-2,0],[-1,1],[4,-1],[-1,0]],[[1040,4459],[6,1],[3,-4],[-1,-2],[-5,2],[-3,3]],[[1040,4459],[1,-1],[-4,3],[2,0],[1,-2]],[[919,4461],[-1,0],[-1,1],[3,-1],[-1,0]],[[1101,4461],[-2,1],[1,0],[1,-1]],[[1410,4460],[-4,-4],[-3,1],[4,4],[-3,3],[6,-4]],[[1461,4464],[2,-1],[2,-3],[-5,2],[1,2]],[[916,4462],[-1,1],[-1,1],[1,0],[1,-2]],[[1461,4451],[-8,6],[0,5],[5,2],[3,-7],[0,-6]],[[1554,4468],[6,-3],[-11,3],[5,0]],[[1085,4460],[-5,3],[-1,1],[4,5],[4,-2],[-2,-7]],[[1075,4469],[-2,0],[2,1],[0,-1]],[[1251,4464],[0,6],[2,-3],[-1,-2],[-1,-1]],[[912,4471],[-1,0],[-1,1],[2,0],[0,-1]],[[1557,4470],[0,1],[-1,2],[1,1],[0,-4]],[[1314,4475],[-1,1],[1,0],[0,-1]],[[1251,4473],[-2,1],[0,1],[2,1],[0,-3]],[[1108,4468],[-6,-1],[1,9],[6,-3],[-1,-5]],[[1318,4476],[-1,1],[1,0],[0,-1]],[[1316,4478],[-2,0],[0,1],[2,0],[0,-1]],[[1111,4474],[-2,0],[-2,3],[3,2],[1,-5]],[[1248,4478],[-2,0],[0,2],[2,-1],[0,-1]],[[1088,4479],[-1,4],[3,-1],[-1,-3],[-1,0]],[[1243,4483],[-4,2],[0,3],[3,1],[1,-6]],[[1411,4489],[2,-3],[-8,-13],[-8,-2],[9,17],[5,1]],[[621,4487],[-3,2],[-1,1],[3,0],[1,-3]],[[1431,4490],[4,-2],[-7,-8],[-3,5],[0,5],[6,0]],[[1245,4484],[-2,5],[4,3],[1,-4],[-3,-4]],[[617,4493],[0,-1],[-3,2],[1,1],[2,-2]],[[1096,4494],[-2,-5],[0,4],[-2,2],[4,-1]],[[1157,4496],[7,0],[1,-3],[-2,-4],[-6,7]],[[1565,4495],[-3,-1],[-3,0],[3,3],[3,-2]],[[1156,4495],[-2,1],[0,1],[1,0],[1,-2]],[[1234,4495],[0,2],[3,0],[-3,-2]],[[640,4496],[-1,0],[2,1],[0,-1],[-1,0]],[[1174,4496],[1,-2],[-2,-6],[-3,-1],[1,7],[-2,2],[-1,-8],[-1,0],[1,9],[6,-1]],[[571,4497],[-3,-2],[-3,1],[3,3],[3,-2]],[[618,4496],[-1,1],[2,2],[-1,-2],[0,-1]],[[1556,4494],[-4,2],[0,1],[5,4],[-1,-7]],[[635,4466],[-3,0],[-1,2],[-2,4],[-2,3],[-15,-2],[-1,4],[7,0],[-7,6],[7,-3],[-5,6],[10,-1],[-2,6],[2,2],[10,-1],[-1,10],[5,-7],[5,1],[-13,-20],[4,-8],[2,-2]],[[1081,4499],[-1,1],[0,1],[1,1],[0,-3]],[[1417,4499],[-8,-6],[-5,0],[10,10],[3,-4]],[[1354,4501],[-3,1],[-2,2],[5,-1],[0,-2]],[[1397,4504],[1,-3],[-4,-3],[-6,1],[0,-6],[-11,7],[20,4]],[[1338,4502],[-2,0],[-2,2],[6,0],[-2,-2]],[[1355,4504],[-2,0],[-2,2],[3,0],[1,-2]],[[1229,4502],[-1,0],[-2,2],[4,3],[-1,-5]],[[1224,4505],[0,1],[3,0],[-3,-1]],[[1147,4500],[17,-13],[-1,-10],[3,7],[3,-13],[8,-1],[-18,-14],[-22,8],[-4,7],[-2,-4],[-4,6],[-5,-4],[-6,7],[17,11],[-3,5],[3,1],[-2,4],[8,-6],[-5,6],[4,10],[9,-7]],[[1148,4508],[1,-1],[-3,1],[0,2],[2,-2]],[[1099,4509],[0,2],[1,0],[0,-1],[-1,-1]],[[1290,4517],[7,-1],[2,-4],[-13,3],[4,2]],[[763,4516],[-1,0],[2,1],[0,-1],[-1,0]],[[768,4517],[-1,1],[4,1],[-3,-2]],[[935,4521],[-1,1],[1,1],[0,-2]],[[1100,4521],[-1,1],[0,1],[2,0],[-1,-2]],[[878,4530],[2,-1],[1,0],[-2,-1],[-1,2]],[[882,4531],[3,0],[2,0],[-5,-1],[0,1]],[[882,4531],[-1,0],[-3,0],[4,0]],[[890,4531],[-1,0],[-1,0],[3,1],[-1,-1]],[[877,4531],[-5,0],[-1,1],[1,1],[5,-2]],[[721,4533],[-1,-1],[-3,-1],[2,4],[2,-2]],[[1108,4528],[-6,4],[0,4],[6,-4],[0,-4]],[[1067,4534],[-1,0],[-1,0],[1,2],[1,-2]],[[1064,4536],[-1,1],[0,1],[1,-1],[0,-1]],[[1507,4548],[2,-1],[-9,-6],[-3,4],[4,5],[6,-2]],[[1159,4558],[1,-2],[0,-1],[-2,1],[1,2]],[[1126,4557],[-1,1],[0,1],[0,1],[1,-3]],[[1484,4565],[2,1],[2,-3],[-3,-5],[-4,8],[3,-1]],[[1489,4566],[-2,1],[-2,1],[5,3],[-1,-5]],[[1481,4567],[-1,2],[4,3],[-2,-2],[-1,-3]],[[1153,4573],[-1,0],[3,1],[-2,-1]],[[1177,4577],[-1,-3],[-2,0],[3,3]],[[635,4466],[-4,7],[-1,3],[7,9],[38,25],[3,-5],[3,10],[6,3],[8,-4],[4,7],[4,-5],[-22,-20],[-1,3],[-13,-4],[-2,-6],[-9,-4],[-2,-8],[-8,-8],[2,-2],[4,-2],[2,0],[-6,5],[12,-1],[-4,2],[-2,7],[8,6],[1,-3],[8,9],[-4,0],[4,3],[3,-2],[-1,-3],[4,6],[-1,-7],[2,3],[-1,7],[2,-8],[0,9],[0,-11],[2,8],[-1,-8],[2,2],[-2,-6],[1,-2],[0,4],[8,15],[21,11],[-4,-6],[0,-4],[3,-1],[9,10],[-1,6],[12,4],[-10,6],[3,7],[12,-12],[12,-26],[12,-8],[5,5],[-8,-1],[7,2],[-3,7],[7,1],[-6,4],[7,7],[-6,0],[9,0],[2,2],[-5,2],[5,1],[1,-3],[-2,-12],[6,-1],[-6,-12],[14,1],[4,3],[3,13],[18,-2],[20,-14],[43,-18],[16,-3],[-5,5],[10,1],[21,-18],[1,-8],[-17,-3],[2,-6],[-6,-3],[6,-4],[38,-5],[19,3],[13,9],[5,-10],[9,0],[3,-13],[3,10],[2,-10],[2,3],[5,-5],[1,-9],[-10,3],[19,-28],[-7,20],[2,6],[2,-6],[-3,1],[2,-4],[2,-1],[0,6],[5,-5],[-8,19],[1,5],[-6,7],[5,9],[-4,2],[0,3],[8,-1],[10,7],[3,-4],[-1,7],[10,3],[2,8],[-13,-5],[0,-8],[-4,5],[-15,-5],[4,-4],[-11,-2],[0,6],[-6,-1],[7,13],[30,12],[10,-8],[1,-9],[-2,-2],[13,-6],[-1,-4],[2,-4],[15,5],[1,-6],[16,-10],[54,3],[-5,5],[1,5],[7,-11],[8,-6],[6,2],[0,4],[-8,9],[-5,-3],[-1,-4],[-7,11],[4,1],[-5,7],[13,0],[-3,5],[2,1],[8,-2],[2,-8],[10,2],[-6,-10],[2,-1],[10,9],[-4,-15],[1,-7],[-4,-6],[5,0],[-2,-8],[2,-1],[7,6],[-3,-8],[5,1],[2,-8],[-16,3],[11,-14],[-6,9],[12,2],[-2,6],[3,5],[-8,16],[4,12],[10,0],[15,17],[0,15],[-12,-8],[-1,1],[0,7],[7,6],[-3,1],[0,6],[11,4],[-5,-9],[7,7],[-3,0],[2,4],[-1,1],[-11,-2],[-5,8],[-3,-4],[-15,8],[-8,12],[0,7],[4,9],[6,-1],[-3,3],[3,3],[-5,-3],[-6,6],[3,11],[-2,1],[1,1],[0,4],[-1,0],[7,5],[7,-4],[0,7],[-6,2],[9,6],[1,4]],[[1177,4577],[7,0],[2,1],[-9,0],[1,3],[9,2],[2,-2],[-4,-4],[4,-1],[-1,-5],[10,4],[-1,-4],[11,-11],[2,-7],[-2,-11],[11,-9],[0,-3],[4,-9],[3,3],[3,-6],[-11,1],[-2,-5],[7,-2],[-14,-12],[8,1],[8,-7],[8,5],[2,-1],[-7,-4],[17,-2],[-5,0],[2,-1],[-3,-2],[-1,-4],[-8,3],[14,-17],[-3,-15],[5,-8],[7,16],[1,12],[5,9],[18,-16],[3,-17],[-2,-5],[-4,6],[-2,-3],[2,-6],[-2,-6],[4,-10],[10,-15],[-2,-5],[8,5],[-2,4],[3,2],[5,-2],[0,11],[9,14],[3,24],[12,0],[-6,5],[10,5],[-13,9],[-1,5],[2,1],[-2,1],[0,11],[3,1],[-4,2],[17,0],[9,-5],[20,-2],[-5,-1],[2,-5],[-10,2],[14,-5],[-1,-6],[13,-2],[-10,-11],[9,0],[2,-8],[-10,-8],[-9,3],[5,-8],[-1,-4],[5,1],[-3,-7],[1,-4],[12,-15],[-3,-17],[-6,-1],[-9,-14],[-12,-8],[-8,8],[1,11],[-5,-6],[-2,4],[1,5],[-8,3],[4,-3],[-5,0],[-3,-3],[9,2],[-2,-2],[4,-6],[4,-1],[7,-18],[-12,8],[-2,-3],[4,-6],[-12,4],[-3,11],[-18,-2],[1,-7],[11,-6],[-21,-30],[-9,1],[-11,10],[4,1],[-16,10],[-4,0],[3,-4],[-9,2],[2,1],[-16,2],[20,-6],[13,-17],[29,-7],[-16,-36],[-9,-6],[-7,7],[3,-7],[-7,4],[1,-4],[-5,5]],[[1252,4300],[1,5],[-5,-4],[4,-7],[-6,3],[4,-7],[-3,-7],[-6,3],[1,-4],[-5,-1],[-8,6],[-14,3]],[[1215,4290],[6,-4],[-6,-6],[10,6],[3,-4],[11,-8],[2,-11],[-10,-10],[-15,2],[8,-9],[-12,-4],[3,-12],[-3,5],[-6,2],[5,-4],[-9,-7],[2,-5],[-4,2],[5,-6],[-11,-12],[3,-3],[-12,-30],[-2,-20],[2,-22],[-2,-9],[5,-13],[3,2],[-2,-21],[3,20],[13,0],[11,-51],[-6,-16],[26,13],[30,-16],[20,-30],[23,-12],[8,-10],[-3,-9],[-1,-4],[6,11],[38,-6],[1,-12],[-3,-21],[4,-14],[0,-19],[-2,-10],[10,-21],[-5,-9],[6,2],[12,-19],[3,-12],[-3,-3],[-5,-9],[8,11],[4,-2],[11,-20],[-6,16],[1,8],[5,10],[4,-8],[1,-8],[2,-2],[0,15],[-3,6],[6,13],[1,12],[-3,4],[0,11],[-2,1],[0,13],[-3,8],[3,3],[-4,5],[4,4],[-3,3],[2,3],[-2,3],[1,4],[-4,0],[-3,14],[-3,3],[28,23],[7,10],[8,16],[2,14],[0,25],[-6,24],[-7,15],[-16,15]],[[1408,4104],[2,3],[-2,9],[4,-2],[9,18],[-3,0],[2,5],[0,6],[6,-5],[-3,6],[3,2],[-2,4],[3,5],[5,2],[2,2],[-12,-3],[2,5],[-4,7],[5,5],[-6,3],[4,7],[-9,-1],[7,15],[-1,7],[4,5],[-8,6],[-2,20],[11,10],[23,-9],[-2,-5],[8,5],[10,-7],[-3,3],[15,10],[15,-13],[-2,-9],[7,0],[4,-7],[-5,-4],[5,2],[1,3],[5,-3],[-5,-7],[7,-10],[17,-2],[3,-10],[6,10],[2,-10],[-6,-10],[3,-16],[-19,0],[17,-4],[2,-5],[1,-6],[-3,-6],[2,-4],[-2,-2],[7,-3],[-4,-2],[3,-3],[-3,-10],[-5,8],[1,-8],[-5,-2],[5,-6],[7,10],[13,-3],[2,-13],[-2,-11],[-11,-8],[-3,-5],[14,10],[5,19],[2,-9],[-4,-9],[5,8],[1,6],[0,-19],[2,10],[13,11],[4,12],[6,-9],[-2,-8],[0,-2],[3,11],[-3,5],[4,4],[-3,1],[9,5],[-5,4],[2,8],[3,-4],[-3,8],[8,-4],[-6,5],[-1,7],[2,5],[3,-3],[2,0],[-3,4],[5,17],[6,-3]],[[1605,4163],[-3,1],[-1,-1],[5,-4],[-7,-6],[7,5],[-2,-9],[4,5],[-1,-9],[3,-5],[-1,-4],[2,4],[4,-4],[-5,-5],[10,-6],[-10,-7],[13,2],[-3,-2],[2,-3],[-2,-3],[4,1],[3,-7],[-11,-14],[5,6],[10,1],[-4,-8],[3,-2],[-5,-2],[-5,-6],[12,7],[-1,-4],[3,-1],[-3,-1],[-2,-3],[8,1],[0,-5]],[[1637,4075],[3,-7],[-9,-4],[9,-3]],[[1640,4061],[1,-2],[-3,-5],[9,-5],[-4,-10],[-3,-1],[3,-6],[-11,6],[6,2],[-7,-2],[12,-9],[-6,-3],[6,-6],[-5,-2],[10,0],[-2,-6],[3,0],[-4,-2],[6,-1],[0,-5],[5,0],[-2,-4],[4,3],[-1,-8],[2,8],[3,-1],[-3,-6],[3,-1],[-2,-8],[2,5],[2,-2],[-7,-16],[8,9],[-3,-8],[7,11],[1,-5],[-3,-3],[7,1],[-4,-6],[-3,-8],[11,18],[-3,-10],[5,7],[2,-11],[21,-10],[-5,-4],[4,0],[-3,-3],[-27,-12],[17,6],[-4,-6],[-20,-10],[-1,-9],[-3,5],[-7,5],[11,-11],[-4,-8],[18,15],[7,12],[11,2],[-8,5],[12,-1],[6,-13],[-7,-8],[4,-1],[-1,-5],[5,10],[7,2],[-3,-3],[10,-5],[-4,0],[7,-7],[0,-4],[0,-3],[-5,-4],[4,-4],[-3,-6],[4,-4],[-10,-2],[12,-6],[-2,-3],[-6,3],[7,-6],[0,-5],[-17,-25],[-11,2],[-13,-7],[1,-5],[-6,-5],[0,-9],[-1,2],[-10,-13],[-3,-7],[-24,-6],[2,4],[-11,4],[-57,-2],[-9,-16],[-3,-17],[-11,-2],[0,-6],[-12,-12],[-6,-17],[-5,-5]],[[1530,3729],[0,-9],[-6,-15],[-15,-27],[12,11],[20,43],[21,22],[28,15],[16,-10],[3,-8],[-6,4],[6,-9],[-9,-16],[-8,-7],[-8,8],[-13,-8],[7,3],[8,-7],[2,-9],[12,6],[1,-2]],[[1601,3714],[-3,-14],[-6,-9],[8,-1],[-2,-8],[6,-22],[10,-4],[-5,-4],[6,-7],[14,-2],[3,-5],[8,10],[0,-8],[6,0],[3,-6],[-3,-6],[7,-2],[-34,-25],[-3,5],[1,-8],[-1,-2],[-4,2],[0,6],[-2,-7],[-2,4],[-2,-6],[1,-5],[-17,-29],[-9,14],[0,17],[4,9],[-5,-6],[25,31],[-1,2],[2,-1],[0,-6],[3,-6],[0,8],[11,6],[-22,-1],[9,17],[-3,-2],[-4,12],[3,-10],[-3,-7],[-16,-15],[-2,4],[1,5],[-3,-4],[1,-5],[-4,-4],[-13,2],[-1,5],[0,11]],[[1563,3637],[-5,4],[0,49],[-7,11],[-8,-7],[-5,10],[-11,-27],[-4,-18],[1,-10],[-9,-25],[-6,3],[-2,-10],[-49,-2],[-20,-31],[-5,-17],[-27,0],[-6,-6],[3,-23]],[[1403,3538],[-16,-15],[-16,-7],[-16,-19],[-9,6],[-1,7]],[[1345,3510],[1,9],[8,12],[5,34],[-6,64],[-14,16],[2,7],[-2,3],[-5,-1],[-3,17],[-6,-3],[-4,16],[-49,51],[-13,-12],[-20,4],[-1,5],[-8,-7],[-9,11],[-4,-4],[-8,14],[-12,-4],[-11,7],[-3,21]],[[1183,3770],[-5,3],[0,-14]],[[1178,3759],[-388,0]],[[790,3759],[-2,10],[5,0],[1,6],[-6,-4],[1,13],[-4,-7],[-1,-4],[-7,9],[1,4],[3,-9],[3,7],[-4,-2],[-1,5],[0,4],[-1,3],[3,4],[-1,2],[-2,3],[2,-4],[-2,-4],[1,-6],[-2,3],[-5,-5],[-6,10],[2,-2],[1,9],[-1,3],[1,2],[3,1],[1,3],[-10,-6],[3,9],[0,12],[-4,-17],[-6,2],[2,8],[-4,-11],[-8,3],[1,2]],[[747,3815],[-1,3]],[[746,3818],[7,1],[2,3],[2,6],[-2,6],[-1,-13],[-6,-2],[-1,7],[-5,-1],[1,3],[4,-1],[0,2],[-14,-1],[3,-4],[-8,7],[11,2],[1,2],[1,3],[-8,-5],[-8,4],[9,5],[-9,0],[3,6],[1,5],[11,1],[1,1],[0,4],[-1,-4],[-10,0],[1,7],[-5,-15],[-2,8],[0,8],[3,2],[7,13],[7,-12],[-4,12],[3,2],[-7,3],[4,9],[-1,4],[-9,-19],[-3,-3],[0,11],[-2,-6],[-1,4],[3,4],[-7,-10],[2,6],[1,15],[-4,-2],[-1,11],[-5,6],[0,5],[-1,4],[6,-5],[5,2],[3,-7],[1,-1],[-4,9],[-9,5],[0,6],[5,1],[-3,3],[1,4],[-9,-14],[-1,-9],[-11,20],[1,8],[8,3],[-9,-3],[-2,7],[-3,0],[1,10],[5,-11],[1,0],[-6,12],[7,-2],[-4,4],[0,5],[8,5],[-6,1],[8,16],[-5,3],[0,-10],[-4,-10],[2,10],[-2,10],[2,13],[-2,7]],[[693,4014],[-24,17],[-1,8],[-3,2],[1,6],[-4,2],[1,4],[-16,45],[-21,29]],[[626,4127],[-2,13],[-6,6]],[[618,4146],[-12,-7],[2,-3],[-3,-2],[-2,-11]],[[603,4123],[-13,-9]],[[590,4114],[-1,12],[-22,30],[1,10],[-12,-6],[-14,4],[0,335]],[[542,4499],[25,-5],[8,-9],[44,-21],[4,0],[-7,8],[11,1],[5,-6],[0,-2],[1,0],[3,0],[-1,1]],[[1322,4467],[-1,2],[-1,-1],[1,-1],[1,0]],[[1215,4290],[-18,13],[3,-5],[-3,-3],[4,-4],[4,0],[-2,5],[1,-2],[9,-5],[2,1]],[[1530,3729],[-2,4],[-15,6],[4,-2],[5,-2],[8,-6]],[[998,4583],[-1,0],[0,2],[2,-1],[-1,-1]],[[1307,4594],[0,-3],[-3,3],[3,0]],[[1406,4596],[-3,-1],[-2,3],[2,1],[3,-3]],[[1395,4596],[-1,0],[-1,3],[4,-1],[-2,-2]],[[1389,4598],[-1,0],[-1,4],[3,-2],[-1,-2]],[[966,4604],[-2,0],[0,1],[1,-1],[1,0]],[[993,4605],[-1,0],[-1,1],[2,0],[0,-1]],[[968,4606],[-1,0],[-1,0],[2,0]],[[983,4612],[-2,0],[-1,1],[1,0],[2,-1]],[[1170,4615],[0,-3],[-2,2],[2,1]],[[1156,4609],[-3,1],[-1,1],[5,4],[-1,-6]],[[1170,4615],[-1,3],[0,1],[2,-2],[-1,-2]],[[1170,4624],[0,-3],[-2,2],[0,1],[2,0]],[[1155,4616],[-3,1],[-1,5],[4,4],[3,-4],[-3,-6]],[[1154,4627],[-1,0],[-2,1],[2,1],[1,-2]],[[917,4612],[-9,-7],[15,3],[-2,-3],[4,4],[-3,2],[8,8],[25,-10],[-1,-5],[-8,-8],[3,-3],[5,7],[3,-5],[5,9],[13,-5],[-7,8],[7,2],[-13,9],[15,-2],[-2,-1],[8,-4],[2,-7],[6,-1],[0,-8],[6,-13],[-1,-9],[6,-4],[8,11],[-7,8],[-2,16],[-5,21],[6,1],[-3,6],[14,-7],[4,5],[13,-9],[7,-11],[-3,1],[8,-21],[-1,-4],[9,-18],[-3,-18],[15,-17],[8,-4],[-3,3],[2,3],[20,-14],[1,-6],[7,3],[2,-14],[-1,-5],[-6,1],[-1,8],[-4,-8],[-7,9],[-6,-6],[2,-2],[0,-5],[-4,-1],[-9,6],[6,-8],[-2,-13],[4,9],[8,5],[5,-3],[-4,-7],[7,-2],[-1,-6],[-15,-7],[-32,3],[-1,2],[5,4],[-21,4],[1,8],[-4,4],[-10,-18],[-17,-2],[-8,-9],[-57,-9],[3,2],[-9,11],[2,8],[-2,6],[2,-1],[-42,8],[-12,21],[31,11],[36,-3],[15,5],[-34,13],[-50,-4],[-12,14],[47,19],[-43,-5],[-2,3],[8,3],[-3,2],[3,2],[-17,-3],[-3,7],[6,13],[8,4],[-6,5],[0,4],[17,15],[39,17],[8,-8],[0,-13]],[[1001,4638],[-2,2],[7,0],[-1,0],[-4,-2]],[[773,4639],[0,3],[3,-3],[-3,0]],[[769,4643],[-2,1],[3,0],[-1,-1]],[[1040,4645],[9,-7],[-7,-18],[-5,-3],[1,-3],[-17,19],[-8,3],[7,9],[20,0]],[[1387,4644],[37,-5],[19,-23],[-46,-6],[-8,4],[-2,13],[-11,4],[1,15],[10,-2]],[[1610,4423],[-5,-2],[6,0],[1,-6],[-12,2],[8,-2],[-9,-3],[1,-1],[11,3],[-9,-5],[-1,-5],[17,8],[-4,-8],[0,-1],[9,13],[2,-4],[-4,-4],[0,-5],[-4,-2],[0,-3],[-3,-1],[4,1],[1,3],[0,-8],[3,7],[5,3],[-1,-12],[2,11],[6,-8],[-1,7],[4,5],[0,-5],[5,1],[7,-11],[-3,-3],[-7,5],[-2,-2],[7,-5],[-5,-3],[7,-2],[-6,-3],[-8,5],[-3,0],[5,-4],[-5,-3],[-3,4],[3,-5],[10,-6],[-14,5],[9,-13],[-7,4],[4,-5],[-4,-1],[3,-2],[-1,-4],[-3,6],[-1,-6],[-3,2],[-3,8],[1,-7],[-5,1],[5,-3],[-4,-2],[5,-4],[-5,1],[4,-6]],[[1620,4343],[-3,-15],[-4,4],[2,2],[-10,5],[2,9],[-4,-12],[-5,7],[3,2],[-3,0],[7,5],[-10,-2],[6,8],[-9,-3],[8,6],[-10,0],[2,6],[9,2],[0,9],[5,5],[-5,-3],[-3,-7],[-14,-4],[0,3],[4,4],[2,8],[-8,-9],[-6,3],[-1,5],[2,2],[-5,-1],[-1,7],[-3,2],[3,-2],[-12,0],[8,-5],[-4,-1],[4,-4],[-2,-1],[-10,8],[12,-16],[-1,-3],[0,-2],[-8,-1],[-2,1],[-1,6],[-3,4],[-9,0],[12,-4],[-4,-5],[7,-6],[-3,-10],[10,5],[-2,-5],[5,-2],[-5,-3],[7,-4],[-2,-7],[5,5],[0,-15],[0,10],[8,-6],[-1,-7],[3,6],[0,-5],[2,-1],[-1,7],[3,-1],[0,-6],[2,2],[-2,-9],[9,-2],[-2,-5],[-6,0],[8,-8],[-2,-1],[8,0],[-5,-8],[1,-1],[6,-4],[-1,-15],[-3,2],[-2,11],[-5,7],[3,-6],[0,-4],[2,-11],[-3,2],[7,-14],[-9,3],[5,-12],[-4,-3],[-2,10],[-8,3],[1,4],[-6,4],[3,-7],[-5,3],[-3,12],[-1,-3],[2,-11],[-3,11],[-1,-5],[-2,3],[0,6],[-2,-4],[-11,17],[4,-14],[-12,13],[-7,1],[12,-22],[8,-2],[-3,-2],[0,-3],[3,4],[-1,-5],[4,2],[14,-19],[-2,-4],[7,-3],[-2,-6],[3,-7],[-2,-1],[-35,14],[-12,11],[-2,4],[2,3],[-11,0],[-13,8],[4,5],[0,2],[-7,-4],[-4,4],[-1,8],[-5,2],[7,-1],[5,6],[-4,0],[0,4],[-5,4],[0,-6],[-6,1],[1,10],[-1,-6],[-3,0],[-2,11],[0,-5],[-3,8],[-6,3],[-1,7],[4,4],[-2,3],[-3,-5],[0,4],[-6,-1],[1,-3],[-3,-6],[0,14],[-4,-6],[-5,6],[3,4],[-2,2],[-1,-5],[-4,1],[7,-8],[-3,-7],[-15,9],[2,-6],[-4,1],[3,-4],[-14,-3],[1,-4],[-15,6],[-6,8],[0,14],[12,8],[-3,5],[3,2],[-2,3],[23,-9],[5,-6],[-3,-4],[4,-8],[0,7],[-3,-1],[4,3],[1,5],[-2,-3],[-2,4],[-6,7],[10,-3],[2,6],[8,-3],[4,7],[10,-2],[-3,11],[-11,14],[31,39],[-6,16],[1,3],[-4,5],[-1,11],[-7,2],[2,2],[2,1],[-6,-4],[-3,3],[1,12],[-4,2],[3,-6],[-2,-2],[-10,8],[2,4],[-5,-1],[3,4],[-4,1],[5,2],[-2,3],[-5,-7],[-4,4],[-2,-5],[-15,-6],[2,6],[-2,5],[9,0],[6,3],[0,5],[-15,12],[7,4],[-15,-1],[6,3],[-7,4],[5,3],[-9,-7],[-1,16],[-10,1],[-1,5],[-8,4],[4,3],[-4,5],[-2,-9],[-6,-1],[10,-4],[3,-10],[-2,-4],[-12,-2],[-29,10],[14,-13],[-3,-2],[-16,14],[-12,8],[18,-14],[-6,-5],[-13,8],[-36,3],[-3,-1],[9,-3],[-8,1],[-10,8],[0,5],[3,4],[-1,1],[1,-1],[-4,-2],[-1,-4],[-5,5],[-2,-2],[3,-4],[-13,-2],[-14,11],[-8,13],[4,2],[-5,5],[22,-6],[13,2],[-11,10],[-28,2],[-2,10],[2,5],[-3,8],[7,7],[-5,1],[-1,5],[3,10],[4,2],[-1,4],[3,-1],[1,14],[12,14],[23,11],[23,-1],[3,-2],[-15,-14],[-11,-23],[7,-11],[-3,-5],[0,-9],[22,-27],[-15,-3],[-12,-7],[26,7],[1,-4],[-4,0],[5,-5],[0,17],[4,2],[-2,7],[-9,0],[-10,13],[7,2],[0,7],[19,-9],[-11,10],[7,3],[-15,3],[-1,3],[2,1],[-4,2],[1,9],[5,3],[19,-8],[-22,10],[1,3],[25,-5],[-21,9],[5,6],[6,-6],[-4,6],[6,3],[9,-6],[-1,5],[-5,2],[16,8],[18,0],[5,-7],[0,-9],[8,-5],[0,-8],[5,-7],[-16,-17],[12,9],[-5,-11],[5,-4],[-7,-1],[4,-1],[-3,-5],[8,6],[-1,5],[3,4],[4,-4],[4,-2],[-7,7],[5,6],[3,-6],[-2,-4],[6,7],[4,-5],[1,-3],[-3,-8],[9,-3],[-5,5],[1,5],[5,-3],[3,-9],[5,-2],[-6,6],[7,-5],[-8,11],[-7,4],[4,5],[3,-7],[-1,6],[11,-5],[9,-2],[-21,11],[1,5],[12,6],[12,-1],[9,-9],[2,4],[10,-3],[4,-9],[-15,-6],[-5,-7],[8,8],[8,-1],[-5,-3],[-7,-11],[15,16],[12,-5],[-1,-6],[-16,-5],[6,-1],[-7,-5],[11,5],[-1,-3],[-4,-2],[-2,-2],[4,2],[2,-5],[-5,-7],[6,7],[-1,5],[2,4],[6,4],[-2,-5],[2,-2],[2,7],[3,1],[3,0],[-10,-13],[4,1],[-3,-8],[8,13],[0,-8],[4,1],[-8,-12],[7,11],[5,-3],[-3,-2],[-1,-8],[11,24],[14,-6],[6,-8],[-5,-7],[-6,1],[-10,-10],[6,1],[-5,-9],[24,18],[3,-2],[1,-4],[-3,-7],[-12,-5],[-3,-6],[0,-5],[5,10],[4,-2],[-5,-18],[8,22],[15,9],[2,-1],[-10,-8],[0,-5],[14,11],[16,-8],[-2,-7],[-2,3],[-1,-5],[-14,-4],[-7,-6],[5,-2],[-5,-1],[-4,-4],[10,5],[1,6],[14,0],[-11,-12],[-5,0],[-2,-7],[3,7],[5,-1],[16,11],[-2,3],[3,4],[5,-1],[8,-11],[1,-8],[-12,1],[-4,-5],[-24,-3],[20,2],[25,-9],[2,-4],[-2,-4],[-12,2],[-7,5],[-12,1],[-3,-3],[16,-1],[-12,0],[6,-1],[-7,-4],[0,-4],[12,6],[6,-5],[-8,0],[-3,-2],[10,-6],[-22,3],[19,-7],[-1,-2],[-8,1],[-3,-1],[6,0],[-4,-2],[17,-1],[-1,-6],[2,5],[10,-2],[-14,-4],[-2,-3],[9,4],[3,-2],[-8,-5],[8,4],[3,-2],[-2,-6],[0,-2],[3,5],[0,-6],[2,6],[5,-4],[-7,-6],[5,-1],[6,12],[-1,-19],[3,12],[5,1],[-3,-8],[4,-7],[-3,7],[2,4],[5,6],[5,-2],[-4,-5],[-3,-8],[10,6],[2,-2],[-4,-3],[5,2],[3,-7]],[[772,4651],[-2,0],[0,1],[2,0],[0,-1]],[[1114,4651],[8,-5],[20,6],[11,-6],[-10,-10],[7,0],[0,-4],[-9,-3],[-9,-9],[0,-5],[9,6],[8,-4],[3,-8],[-2,-4],[9,4],[3,-11],[-8,-3],[5,-2],[1,-6],[-6,-2],[6,-1],[-4,-4],[4,0],[-14,-11],[-10,2],[-2,2],[1,7],[-3,-7],[6,-7],[-9,-9],[-4,4],[-4,-1],[-6,15],[-13,15],[-16,4],[-13,15],[3,11],[5,2],[12,-13],[12,1],[2,2],[-2,8],[2,-5],[3,2],[-2,7],[-5,1],[3,4],[4,-3],[4,1],[-8,6],[-7,-4],[-11,8],[10,4],[7,-7],[-3,3],[1,4],[-8,4],[19,6]],[[1250,4654],[-3,1],[-1,1],[5,0],[-1,-2]],[[1126,4648],[-7,3],[25,7],[-7,-8],[-11,-2]],[[1213,4659],[4,-6],[30,-2],[-26,-41],[-31,1],[6,-2],[6,-9],[-11,-15],[2,-3],[-5,2],[-11,-1],[1,4],[6,2],[-6,-1],[0,12],[-7,12],[1,13],[-1,20],[15,-3],[-10,10],[8,6],[29,1]],[[1130,4666],[-3,0],[5,0],[-2,0]],[[831,4665],[8,-2],[-4,-5],[2,-2],[3,7],[5,-1],[0,-8],[7,9],[17,0],[29,-27],[-53,-30],[-2,-10],[-13,-3],[1,-5],[-4,-7],[1,-9],[-2,-6],[-17,-2],[-14,-14],[-7,2],[-11,20],[-17,9],[4,1],[-11,-1],[-3,1],[3,1],[5,15],[5,6],[0,9],[8,3],[-5,6],[15,24],[-6,4],[-8,17],[44,8],[20,-10]],[[1143,4671],[-1,1],[7,4],[-2,-3],[-4,-2]],[[1176,4673],[-5,1],[-3,1],[5,2],[3,-4]],[[1150,4699],[-1,1],[0,3],[1,-1],[0,-3]],[[1056,4693],[-7,-1],[-6,5],[10,9],[8,-9],[-5,-4]],[[1109,4712],[-4,-2],[2,2],[-11,-1],[13,1]],[[1189,4712],[12,-12],[1,-20],[-17,-3],[-17,7],[-3,8],[-2,-5],[-5,3],[2,8],[9,6],[-5,1],[7,0],[-2,2],[1,2],[19,3]],[[1168,4711],[-5,-4],[-3,4],[-5,-8],[-3,5],[9,6],[7,-3]],[[1153,4712],[-1,0],[4,2],[-1,-1],[-2,-1]],[[1158,4717],[-2,0],[4,3],[0,-1],[-2,-2]],[[947,4721],[-2,0],[5,1],[-1,-1],[-2,0]],[[801,4722],[-1,0],[-4,1],[4,0],[1,-1]],[[818,4717],[-3,1],[6,6],[-1,-5],[-2,-2]],[[1169,4723],[-1,2],[2,0],[-1,-2]],[[1189,4718],[-6,0],[-1,6],[6,2],[2,-7],[-1,-1]],[[1067,4717],[-3,1],[19,7],[-5,-3],[-3,-4],[-8,-1]],[[794,4729],[2,0],[1,-1],[-4,-1],[1,2]],[[1078,4730],[1,-3],[-23,-3],[15,5],[7,1]],[[857,4711],[-4,-3],[-12,4],[12,12],[15,6],[-11,-19]],[[1404,4722],[-8,-2],[-4,2],[13,8],[-5,-5],[4,-3]],[[1182,4731],[-2,-3],[-2,3],[4,0]],[[1370,4732],[-2,0],[4,1],[-2,-1]],[[1076,4735],[-12,-7],[-15,4],[19,5],[8,-2]],[[1258,4742],[-3,0],[1,2],[2,-2]],[[1334,4742],[-2,0],[-1,3],[3,-2],[0,-1]],[[1055,4747],[3,2],[11,-7],[-18,-4],[-5,8],[10,3],[-1,-2]],[[1133,4750],[10,-6],[-1,-5],[3,-6],[-1,-12],[-4,-4],[7,-2],[2,-10],[-7,6],[0,-4],[-4,1],[4,-2],[-4,-1],[2,-1],[-4,-1],[8,-7],[-7,3],[2,-8],[-20,-1],[1,5],[-1,-5],[-10,0],[-6,8],[8,1],[-11,4],[15,10],[-2,1],[12,2],[-49,-7],[-5,4],[12,3],[-5,3],[3,3],[4,1],[6,-5],[3,1],[-5,4],[4,4],[-9,2],[8,7],[-11,-1],[4,7],[8,-1],[19,-19],[7,4],[-6,-2],[-4,7],[6,0],[4,1],[-14,2],[8,3],[-16,8],[18,4],[9,-8],[3,1],[-3,6],[9,2]],[[1111,4753],[5,0],[3,-1],[-10,0],[2,1]],[[821,4753],[-1,-1],[-3,1],[3,1],[1,-1]],[[1092,4746],[-5,2],[20,5],[-7,-4],[-8,-3]],[[1251,4744],[-4,1],[-6,8],[13,0],[-2,-5],[2,-3],[-3,-1]],[[991,4756],[3,-4],[-4,-3],[2,-8],[7,-4],[-5,-9],[11,-2],[-5,-7],[11,4],[4,-6],[4,2],[-4,2],[0,4],[8,4],[10,-5],[3,-10],[-5,-6],[2,-1],[-6,-14],[-16,-5],[-8,6],[-2,-6],[-6,0],[-7,5],[-54,-24],[-13,2],[-11,8],[22,11],[18,1],[9,8],[-20,-4],[1,3],[-5,3],[-2,-6],[-15,-2],[1,9],[7,4],[-10,1],[-2,-8],[-5,3],[-1,-1],[4,-4],[-1,-3],[-9,-5],[-3,8],[-5,-2],[1,-3],[-2,-3],[-7,3],[-1,6],[-6,-3],[-14,5],[6,8],[17,0],[15,7],[-32,-3],[6,7],[28,3],[-26,2],[3,2],[-2,5],[5,2],[22,-1],[-17,5],[14,8],[10,-2],[3,-10],[21,0],[1,-5],[9,-4],[-7,-4],[11,1],[3,-12],[32,-1],[1,7],[-17,8],[11,7],[-15,11],[9,4],[-2,1],[8,9],[9,1]],[[1152,4755],[-2,1],[0,1],[3,-1],[-1,-1]],[[924,4754],[-8,-2],[-12,2],[14,5],[6,-5]],[[985,4759],[-2,0],[-1,1],[1,0],[2,-1]],[[1149,4761],[-1,0],[-2,1],[5,1],[-2,-2]],[[1171,4764],[27,-4],[8,-7],[-7,-11],[1,-2],[7,9],[23,2],[13,-7],[-15,0],[32,-7],[1,-2],[-18,-2],[6,-2],[-22,5],[20,-7],[-13,-2],[3,-2],[-3,-4],[5,5],[5,-1],[-1,-2],[7,4],[4,-4],[-1,-4],[8,0],[-1,-6],[-7,-2],[8,1],[3,-6],[3,0],[-2,6],[2,3],[7,-7],[7,3],[3,-4],[4,6],[12,-7],[-2,-2],[37,16],[32,0],[5,-2],[-1,-4],[18,-4],[-5,-3],[11,0],[-2,-1],[3,-2],[-2,-3],[2,0],[-1,-3],[-13,-6],[16,-5],[-8,-3],[-6,5],[-1,-2],[4,-3],[-2,-8],[-22,-5],[-15,4],[-3,4],[1,5],[-6,3],[3,-4],[-3,-7],[-11,-3],[-8,0],[-2,7],[-3,-7],[-4,7],[-1,-7],[-7,-1],[-1,5],[-4,-5],[-5,5],[2,-5],[-25,1],[-1,3],[3,7],[-3,4],[-4,-8],[-1,4],[-3,2],[1,-4],[-3,1],[2,-5],[-5,-3],[-21,6],[3,7],[-6,-6],[1,-4],[-6,1],[-7,5],[-2,10],[2,3],[-6,2],[2,9],[5,5],[-2,5],[0,5],[-13,17],[-32,-4],[8,3],[-18,6],[5,1],[2,3],[-19,5],[9,1],[-7,4],[2,3],[-2,1],[16,2]],[[926,4765],[-1,0],[-2,1],[3,1],[0,-2]],[[920,4766],[-2,0],[-1,1],[4,0],[-1,-1]],[[1052,4765],[-3,1],[6,1],[0,-1],[-3,-1]],[[1177,4768],[-2,1],[-4,2],[4,0],[2,-3]],[[1237,4771],[3,-1],[-8,0],[2,1],[3,0]],[[884,4782],[13,-9],[-12,-4],[0,-5],[7,-3],[-8,-1],[6,-9],[-16,-5],[2,-7],[-3,-2],[-13,4],[5,13],[-2,2],[-9,-4],[3,-5],[-3,-2],[-7,0],[6,-6],[-7,-9],[-8,7],[1,-4],[-3,-3],[4,-4],[-5,-5],[-8,-1],[0,7],[-6,7],[-2,-2],[1,-7],[-1,-1],[-15,4],[-6,-4],[-3,2],[4,4],[-3,1],[3,1],[-2,1],[-6,-3],[6,9],[15,3],[4,8],[12,5],[17,19],[30,-1],[-3,2],[8,1],[-7,3],[11,3]],[[1315,4783],[4,0],[3,-3],[-10,2],[3,1]],[[1241,4785],[10,-4],[4,-6],[-10,-6],[-12,8],[0,7],[8,1]],[[1041,4777],[9,-6],[-5,-5],[-7,3],[-12,19],[9,0],[7,-7],[-1,-4]],[[1175,4790],[24,0],[8,-4],[-7,-8],[-32,1],[-6,5],[13,6]],[[1418,4790],[-1,2],[5,1],[0,-1],[-4,-2]],[[1087,4795],[11,-6],[-16,-2],[-6,5],[11,3]],[[915,4798],[7,-6],[-9,-4],[-12,9],[14,1]],[[978,4801],[-19,-8],[12,-3],[-2,-9],[-25,-7],[-16,7],[-2,10],[14,8],[38,2]],[[1088,4803],[-3,1],[2,3],[1,-4]],[[1068,4803],[-3,1],[7,3],[0,-2],[-4,-2]],[[1189,4804],[-2,0],[-2,3],[3,1],[1,-4]],[[1274,4807],[-2,2],[5,5],[-2,-5],[-1,-2]],[[977,4819],[5,-4],[-2,-6],[-54,1],[37,15],[14,-6]],[[1462,4824],[8,0],[-2,-2],[-5,1],[-1,1]],[[1156,4823],[26,-11],[-7,-6],[7,-4],[-3,-6],[-28,-5],[2,4],[-11,4],[12,4],[-13,3],[-8,10],[5,1],[-5,7],[4,3],[19,-4]],[[1301,4830],[-2,0],[8,6],[10,-1],[-16,-5]],[[1061,4846],[14,-8],[-2,-6],[2,-3],[13,8],[9,-5],[-3,-5],[18,-3],[-2,-3],[7,-2],[-4,-5],[1,-5],[12,-9],[-3,-3],[1,-3],[-12,-4],[-10,4],[-5,11],[-16,3],[-6,-1],[-3,5],[-23,-4],[-8,8],[21,0],[2,4],[-9,1],[10,4],[-12,1],[5,4],[-5,4],[-11,-7],[4,8],[-12,0],[-1,5],[2,6],[26,0]],[[1118,4874],[9,-1],[3,-11],[-3,-4],[-19,9],[2,6],[8,1]],[[1123,4876],[-4,-1],[1,1],[3,0]],[[1180,4894],[1,-1],[-17,1],[10,1],[6,-1]],[[1212,4917],[12,-5],[1,-3],[-2,-1],[19,-15],[-3,-3],[21,-2],[3,-2],[-3,-6],[7,-5],[8,-2],[-6,6],[0,5],[13,1],[2,-9],[-7,-2],[14,-5],[-6,-5],[7,2],[-3,-9],[-4,-4],[16,4],[4,-3],[-1,-4],[6,6],[11,-12],[-25,-12],[-4,4],[0,-5],[-9,-10],[-6,6],[4,10],[-6,-3],[-1,-8],[5,-8],[-5,-4],[-8,6],[4,-7],[-4,-9],[-16,16],[-2,-2],[2,-4],[7,-10],[-11,6],[-7,0],[7,-5],[-2,-2],[-23,3],[-13,9],[19,3],[-23,1],[-7,7],[11,0],[-18,8],[14,6],[41,3],[-26,-2],[-7,2],[22,5],[-27,3],[1,-3],[-5,2],[-7,-6],[-7,5],[-10,-5],[-9,5],[20,12],[-22,-4],[-10,9],[6,1],[-7,3],[4,2],[-6,1],[34,-4],[-5,4],[9,3],[-18,-2],[-4,2],[6,2],[-20,4],[17,0],[-7,9],[30,-2],[-12,5],[8,2],[-20,3],[5,2],[-4,1],[4,4],[11,-2],[7,3],[-6,3],[17,1],[-18,4],[1,3],[22,-1]],[[1226,4925],[-2,1],[-1,1],[5,-1],[-2,-1]],[[1411,4973],[0,2],[4,0],[-4,-2]],[[1462,4824],[-5,-7],[-19,1],[-3,-2],[22,-7],[-26,-4],[19,-3],[-5,-5],[-32,1],[-3,-3],[10,-11],[-13,-10],[-25,-1],[-20,14],[3,-6],[0,-3],[7,-4],[-13,-1],[4,-5],[24,2],[-4,-5],[16,5],[3,-4],[-5,-6],[9,-4],[9,7],[4,-8],[1,-5],[-9,-7],[-6,4],[-6,-10],[-25,-6],[4,11],[-18,3],[4,6],[-7,-2],[-6,7],[3,-7],[6,-2],[-2,-2],[1,-3],[-12,0],[-6,12],[-1,-3],[4,-9],[-15,8],[1,-7],[-11,4],[1,-5],[8,-4],[-8,-1],[-20,3],[2,6],[-5,3],[4,-4],[-6,-6],[-11,10],[2,-10],[-14,2],[-1,15],[-3,-4],[3,-6],[-2,-5],[-1,7],[-3,-7],[-11,6],[4,4],[-2,6],[14,9],[25,3],[-7,4],[5,2],[-11,0],[0,7],[-7,4],[2,6],[22,0],[7,-4],[2,-11],[18,-4],[-1,3],[15,-1],[-5,4],[9,4],[12,18],[-6,-2],[1,-4],[-9,-11],[-8,-4],[-12,1],[-1,2],[5,3],[1,2],[-7,-4],[-6,5],[4,3],[-4,0],[15,2],[-19,2],[19,5],[-11,1],[1,2],[12,0],[-11,1],[5,6],[-4,0],[3,8],[-12,-17],[-11,-1],[7,11],[-13,-10],[-11,1],[6,2],[-6,1],[0,7],[9,5],[-3,1],[3,6],[25,6],[38,-12],[2,1],[-5,3],[5,1],[-15,4],[22,0],[3,8],[-14,-6],[-31,5],[3,4],[9,-4],[5,0],[2,1],[-13,5],[-3,8],[-8,7],[-19,5],[1,8],[16,-2],[-17,3],[-3,4],[2,7],[38,-2],[23,-14],[6,-10],[25,2],[2,2],[-24,1],[-2,6],[3,2],[-25,13],[72,9],[-27,2],[48,9],[-34,0],[7,10],[24,10],[-30,-12],[-8,4],[6,-4],[-8,-10],[-18,-6],[-29,-4],[-2,2],[19,8],[-25,-3],[6,3],[-2,1],[-8,-3],[2,-4],[-2,-4],[-17,-1],[-23,3],[16,14],[39,5],[6,2],[-46,-5],[-27,-15],[-26,11],[39,3],[27,10],[-71,-10],[-7,6],[19,2],[-14,3],[16,7],[22,-1],[-15,3],[-29,-7],[-6,3],[18,6],[-10,3],[-16,-7],[0,3],[-7,2],[21,8],[15,-2],[2,2],[-3,2],[18,6],[19,-7],[-5,2],[10,3],[13,-7],[-4,5],[16,-3],[-32,11],[21,3],[-8,5],[13,2],[29,-13],[-3,-2],[18,-1],[-16,7],[5,2],[47,-17],[-48,21],[16,3],[-12,5],[3,1],[23,-4],[-14,9],[1,1],[23,-6],[-2,1],[20,0],[-26,7],[8,3],[23,-5],[-1,2],[15,-1],[18,-9],[-5,-6],[12,7],[-28,13],[41,1],[25,-12],[2,1],[-16,8],[27,6],[2,0],[-3,-3],[12,-5],[-8,5],[19,3],[53,-6],[-33,-11],[40,8],[9,-3],[-3,1],[3,2],[-2,1],[8,1],[-3,-1],[20,-2],[1,-2],[-6,-2],[13,-5],[-6,-5],[16,3],[-2,-1],[17,-6],[-45,-21],[-53,-6],[-16,5],[13,-6],[-7,0],[4,-1],[28,0],[-50,-12],[80,11],[-44,-20],[-26,-19],[-11,-2],[-1,4],[-7,4],[5,-8],[7,-3],[-3,-2],[-31,0],[7,-3],[-6,-2],[26,1],[-14,-7],[8,0],[-4,-4],[-15,-4],[-27,8],[-9,-2],[20,-3],[4,-7],[-25,-2],[1,-3],[-3,-2],[-29,7],[18,-7],[-21,3],[3,-4],[-12,1],[49,-5],[-5,-2],[6,-4],[-47,6],[-6,-2],[30,-2],[-39,-2],[17,-2],[-9,-8],[1,0],[7,7],[14,2],[14,-2],[-8,-3],[-2,-2],[16,2],[7,-2],[1,-4]],[[3941,2378],[-1,1],[0,1],[1,0],[0,-2]],[[3934,2388],[0,-2],[-2,3],[1,1],[1,-2]],[[3994,2489],[-2,-19]],[[3992,2470],[1,-23],[-12,-15],[-4,1]],[[3977,2433],[1,-12],[-6,4],[-3,-4],[1,-13],[4,-8],[0,-11],[-6,9],[-5,-5],[-4,3],[0,-9],[-3,-6],[-6,-4]],[[3950,2377],[-3,5],[-4,1],[-5,-3],[-1,5],[3,8],[-3,10],[-2,-9],[-3,-1],[-1,17],[-1,7],[-1,0],[2,7],[-3,3],[1,-4],[0,-5],[-3,21]],[[3926,2439],[1,11],[-4,8]],[[3923,2458],[-2,21],[0,11]],[[3921,2490],[3,1],[5,21],[10,9],[4,-4],[12,4]],[[3955,2521],[3,-8],[2,5]],[[3960,2518],[3,-9],[2,2],[7,-8]],[[3972,2503],[2,4],[-3,11]],[[3971,2518],[8,8],[4,-10]],[[3983,2516],[10,15]],[[3993,2531],[-1,-10],[-2,-12],[4,-20]],[[3635,2271],[0,1],[-1,9],[1,-5],[0,-5]],[[3609,2327],[-1,-1],[-2,3],[2,0],[1,-2]],[[3609,2353],[1,-5],[-1,1],[-1,4],[1,0]],[[3609,2353],[3,2],[5,-9],[-5,8],[2,0],[8,-19],[1,-11],[4,-11],[-1,-5],[3,0],[1,-13],[7,-30],[-4,-31],[-14,-18],[-6,4],[-2,7],[-5,66],[1,7],[0,-10],[1,0],[1,34],[4,19],[-2,4],[8,-5],[-10,11]],[[2677,1846],[-11,-22],[-3,16],[-9,23]],[[2654,1863],[5,15],[4,-7],[2,2],[1,12],[-4,5],[1,6],[-3,5],[0,19],[13,0],[-1,16],[3,2],[5,-19],[7,-3],[4,13],[1,-14],[3,-1],[2,19],[3,3],[1,46],[-9,14]],[[2692,1996],[1,20],[8,20],[-4,17]],[[2697,2053],[-6,2],[-8,-8]],[[2683,2047],[1,34]],[[2684,2081],[18,0]],[[2702,2081],[16,-8],[5,-10],[0,18],[6,25],[1,22],[12,9]],[[2742,2137],[10,-9],[4,6]],[[2756,2134],[2,-16]],[[2758,2118],[-7,-35],[-1,-24],[-2,-20],[1,-21],[-4,-34],[-5,-16],[-6,-9],[-10,-33],[1,-42],[-5,-22],[-5,-4],[-12,-30],[-3,0],[-1,22],[-6,-8],[-3,2],[0,-10],[-4,-5]],[[2686,1829],[-9,17]],[[2679,1793],[-1,0],[-2,-2],[2,3],[1,-1]],[[2873,2184],[3,6]],[[2876,2190],[17,-33]],[[2893,2157],[6,10]],[[2899,2167],[6,-8],[4,12]],[[2909,2171],[4,-4],[0,-7],[6,-15]],[[2919,2145],[5,-3],[0,-9],[3,2]],[[2927,2135],[2,-6],[-3,-38]],[[2926,2091],[8,-10],[-18,-48]],[[2916,2033],[0,-12],[-4,-15],[-2,-52]],[[2910,1954],[-4,-9],[-2,-22]],[[2904,1923],[-4,-6],[6,-23]],[[2906,1894],[-1,-31],[3,-21],[-1,-15],[4,-29]],[[2911,1798],[-1,-20],[10,-30]],[[2920,1748],[7,-38]],[[2927,1710],[-26,-10]],[[2901,1700],[-1,-13],[-7,-15]],[[2893,1672],[5,-19],[-1,-17],[1,-14],[-5,-32]],[[2893,1590],[10,-30]],[[2903,1560],[6,-3],[0,8],[4,3],[0,-47],[-3,9],[-8,-7],[-8,32],[-10,8],[-7,26],[-2,-1],[-2,-14],[-12,3],[-9,9],[-1,16],[-12,-9],[-1,12],[-5,9]],[[2802,1717],[0,26],[-17,0]],[[2730,1792],[-51,3],[-7,-7],[-3,9]],[[2674,1823],[7,17],[5,-11]],[[2758,2118],[-1,40],[3,3]],[[2760,2161],[5,19],[8,8],[9,-14]],[[2782,2174],[3,-12]],[[2785,2162],[25,-11],[7,25]],[[2817,2176],[8,-8],[13,19],[5,-8],[8,5],[1,10],[2,2]],[[2854,2196],[5,-6],[14,-6]],[[2906,1894],[-4,9],[1,7],[4,-2],[0,-6]],[[2907,1902],[5,1],[3,4],[0,14]],[[2915,1921],[9,-3],[-2,-17]],[[2922,1901],[6,-4],[0,-10],[-6,-11],[-6,-25],[-8,-7]],[[2908,1844],[-3,25],[1,25]],[[4037,2722],[3,-2],[1,-13],[-7,-17],[0,-13],[-6,-15],[-4,1],[-3,-9],[-12,13],[-1,27],[9,18],[-2,-2],[2,7],[20,5]],[[4035,2752],[0,1],[0,1],[1,0],[-1,-2]],[[4015,2758],[0,-1],[-1,-1],[0,2],[1,0]],[[4035,2758],[-1,-4],[-4,1],[2,4],[3,-1]],[[4034,2763],[-1,-1],[2,1],[-1,-4],[-1,3],[0,1],[1,0]],[[4052,2776],[1,3],[2,0],[0,-1],[-3,-2]],[[4062,2777],[1,3],[1,1],[0,-2],[-2,-2]],[[4066,2779],[-1,2],[2,2],[-1,-4]],[[4074,2792],[-1,0],[1,3],[0,-3]],[[4073,2794],[-1,2],[2,1],[-1,-2],[0,-1]],[[4077,2815],[-2,3],[1,0],[1,-3]],[[4077,2819],[-2,2],[-1,3],[1,0],[2,-5]],[[4126,2842],[-2,1],[-1,0],[3,2],[0,-3]],[[4130,2855],[1,-1],[-2,-6],[0,7],[1,0]],[[4140,2879],[-1,1],[0,3],[2,-2],[-1,-2]],[[4156,2914],[0,3],[1,3],[-1,-5],[0,-1]],[[4163,2920],[0,-6],[-1,1],[0,7],[1,-2]],[[4158,2935],[-2,0],[-1,3],[1,-2],[1,0],[1,-1]],[[4182,3008],[-1,4],[2,2],[0,-4],[-1,-2]],[[4193,3044],[-1,1],[0,3],[1,0],[0,-4]],[[4195,3071],[1,-3],[0,-2],[-2,2],[1,3]],[[4199,3076],[0,-4],[-1,4],[1,0]],[[4192,3077],[-1,1],[1,3],[0,-1],[0,-3]],[[4198,3079],[-4,0],[-1,4],[3,0],[2,-4]],[[4197,3087],[-1,0],[-1,2],[2,2],[0,-4]],[[4199,3093],[-2,1],[0,1],[2,-1],[0,-1]],[[4191,3125],[0,2],[1,0],[-1,-2]],[[4186,3140],[6,-6],[0,-2],[-9,11],[3,-3]],[[4164,3153],[-1,1],[-1,6],[1,0],[1,-7]],[[4186,3415],[-1,-1],[-2,2],[2,2],[1,-3]],[[4250,3894],[-1,-7],[8,-16],[-2,-5],[7,-22],[-2,-4],[3,2],[-1,-9],[5,-11],[1,-16],[3,-4],[-1,-15],[5,-7],[13,0],[4,-8],[6,2],[10,-20],[6,0],[-2,-9],[4,-10],[-2,-8]],[[4314,3727],[4,-14],[22,0]],[[4340,3713],[8,14],[5,-1],[13,11],[5,-4],[-3,-10],[3,-10],[-8,-14],[0,-8],[-5,-22],[1,-8],[-6,-16],[0,-7],[-5,-6]],[[4348,3632],[-1,-13],[-16,9]],[[4331,3628],[-6,-13],[-7,-5],[5,-28],[-2,-18],[2,-6],[-3,-17],[-10,-7],[3,-3]],[[4313,3531],[0,-8],[-5,11]],[[4308,3534],[0,6],[-5,4],[-2,-20],[-5,0],[-6,-15],[-12,-1],[3,-15],[-2,-7],[-12,3],[-5,12],[-5,-6],[-8,-26]],[[4249,3469],[-15,-15],[-11,-23],[-12,-1],[0,-4],[-12,-10],[-6,-14],[-4,-1],[0,-5],[-7,-5],[-1,7],[8,6],[-1,5],[2,4],[-7,7],[4,3],[-1,7],[6,6],[6,19],[-4,8],[-9,7],[-6,-4],[1,-4],[-3,-2],[-5,-16],[-13,-12],[-8,-27],[-5,3],[-3,-6],[-4,7],[-4,-4],[-3,-16],[2,-10],[6,-9],[10,0],[2,-10],[-1,-20],[4,-6],[8,1],[1,7],[12,17],[12,-15],[7,5],[1,-5],[5,-1],[1,-6],[-3,-7],[2,0],[0,-5],[-5,-2],[-3,6],[-5,-8],[-11,-5],[2,-4],[-1,-5],[-2,1],[-1,-10],[-4,-3],[-1,8],[-3,-2],[2,-9],[-8,-13],[-7,-26],[15,-20],[9,-48],[-1,-12],[8,-9],[1,-10],[6,-12],[-13,3],[-6,9],[-6,-6],[-3,12],[-1,2],[-3,-5],[8,-10],[8,3],[0,-7],[7,-6],[9,-22],[0,-6],[-6,-2],[-8,-16],[-6,1],[-4,-6],[5,4],[4,-9],[7,8],[5,-12],[6,-2],[-9,-14],[7,3],[0,-14],[-2,0],[0,6],[-1,-6],[-2,3],[-3,-5],[4,-5],[-2,-3],[1,-7],[-6,4],[4,-6],[3,-12],[-5,-7],[-2,8],[-3,-14],[-5,4],[4,-8],[-4,-10],[1,-5],[-3,-10],[-3,4],[3,-5],[-6,-9],[0,-2],[1,-1],[1,-6],[-4,-4],[3,10],[-3,-6],[-1,6],[-3,-2],[3,-11],[-3,1],[1,-5],[4,1],[-7,-13]],[[4158,2935],[-5,5],[3,-6],[1,-1],[5,2],[-2,-11],[-2,0],[3,-12],[-5,9],[-3,-7],[4,-6],[-4,-5],[0,6],[-3,-1],[2,-10],[-6,-3],[3,-4],[-2,-8],[-6,0],[-1,5],[-2,-9],[-3,1],[5,-7],[-6,-13],[1,6],[-2,-7],[-5,-4],[-1,-5],[-4,1],[-2,-11],[-3,3],[3,-7],[-4,-1],[0,-10],[-10,-7],[-2,5],[-1,-8],[-5,6],[-4,-4],[1,-2],[-1,-4],[-2,2],[0,8],[-3,-4],[1,-7],[-3,4],[-7,-5],[-5,19],[4,4],[-2,1],[-4,-10],[2,-12],[0,-13],[-5,14],[3,-14],[-1,0],[-1,-5],[-2,6],[-2,-12],[-2,3],[-7,-9],[-6,8],[1,-6],[-4,1],[2,-6],[-2,-3],[-9,0],[-7,-12]],[[4034,2763],[-2,7],[-3,-20],[3,0],[-1,-7],[3,-6],[-3,-8],[-5,-1],[1,7],[-5,18],[4,19],[-2,5],[-2,-3],[-1,8],[-1,-8],[-5,-4],[-3,13],[-1,2],[-1,0],[1,-6],[-2,-2],[-3,13],[0,-14],[-2,5],[-2,-7],[-6,6]],[[3996,2780],[-6,-2],[-4,12],[-5,3],[-2,15]],[[3979,2808],[3,13],[-9,6],[-3,-3],[-8,16]],[[3962,2840],[-6,-6],[-2,-13],[-5,-5],[-4,4],[-2,-10],[-4,10],[-2,-7],[-3,7],[-4,-13],[-7,12],[-5,-13]],[[3918,2806],[-6,3]],[[3912,2809],[-2,-10]],[[3910,2799],[3,-13],[0,-25],[-7,1]],[[3906,2762],[-2,22],[-8,-12]],[[3896,2772],[-5,0],[-3,10]],[[3854,2861],[3,8],[-3,21]],[[3854,2890],[4,18],[12,22]],[[3870,2941],[1,16],[-1,33]],[[3862,3012],[-6,13],[-2,1]],[[3854,3026],[-3,-11],[-9,8],[-4,-4],[-1,7],[4,9]],[[3841,3035],[-2,10],[-4,-6],[0,6],[3,7],[-4,7],[-10,-15],[-10,10],[-6,-9],[-4,-14],[-8,-2],[-2,-11],[-7,-6]],[[3787,3012],[-1,-8],[-9,-7],[-5,1]],[[3772,2998],[0,7]],[[3772,3005],[-5,5],[-3,-4],[-10,4],[1,6]],[[3755,3016],[-6,2]],[[3749,3018],[-7,-9],[-8,-27]],[[3734,2982],[-2,8]],[[3732,2990],[1,17],[-3,4]],[[3730,3011],[-12,-11],[-8,0]],[[3710,3000],[-7,11],[-3,-8],[-4,10],[-2,-10],[-4,14],[-9,1],[1,10],[-4,-2],[-5,7],[-5,19],[-8,-3],[-5,16],[-14,16]],[[3641,3081],[-1,10],[-10,1]],[[3630,3092],[0,-8],[-4,-5],[-2,9],[-11,11]],[[3613,3099],[1,6],[-5,8],[-5,0],[-6,17],[-5,-5],[0,24],[-4,10],[-1,11],[5,3],[3,-10],[8,14],[-2,13]],[[3602,3190],[-8,13],[-1,21]],[[3593,3224],[4,8],[-10,13]],[[3587,3245],[-4,22],[1,8],[-17,4]],[[3567,3279],[-4,11],[-6,-3],[-3,9],[1,6],[-2,15]],[[3553,3317],[-20,17],[11,10]],[[3544,3344],[-4,8],[-1,30],[-7,7]],[[3532,3389],[-6,-5],[-3,12]],[[3523,3396],[2,4],[-3,9],[0,8]],[[3522,3417],[4,5],[-1,7],[2,9]],[[3527,3438],[12,10],[0,7],[5,-2],[5,7],[2,-13],[9,2],[7,24],[17,1]],[[3584,3474],[8,18],[22,18]],[[3614,3510],[-1,22],[5,8]],[[3618,3540],[-2,5],[6,5],[-7,34],[1,19],[2,3],[-9,6],[25,16],[3,-7],[9,-1],[1,11],[-4,5],[10,59],[12,-8],[10,0],[1,-6],[11,9],[3,11],[-3,21],[3,15],[12,6],[4,20]],[[3706,3763],[13,2]],[[3719,3765],[1,-6],[-2,-4],[5,-6],[-2,-5],[8,-6]],[[3729,3738],[1,-7],[6,-8],[7,2]],[[3743,3725],[11,-14],[10,-33],[-2,-15]],[[3762,3663],[2,-11],[-5,-15],[3,-12],[9,-6],[28,-5],[16,-21],[9,-2],[-1,-10],[3,-1],[5,-26],[7,-19],[11,2],[32,-8],[19,4],[13,-6],[4,-10],[19,-13],[15,0],[0,-8],[7,-3],[34,32]],[[3992,3525],[28,0],[13,11]],[[4033,3536],[8,20],[13,13]],[[4054,3569],[-7,24],[6,25],[8,1],[6,-9],[10,-3]],[[4077,3607],[13,23],[16,2],[7,10],[5,20],[11,3],[1,7],[4,-2],[16,9]],[[4150,3679],[7,-5],[7,2],[-2,17],[-16,30]],[[4146,3723],[-11,1],[-6,-13],[-7,8],[-8,0],[-5,-7],[-4,8],[-1,8],[4,4],[0,10],[12,47]],[[4120,3789],[16,-11]],[[4136,3778],[10,14],[10,6],[1,9],[-3,2],[13,45]],[[4167,3854],[10,17],[-3,8],[2,7]],[[4176,3886],[-9,2],[-1,6],[12,19]],[[4178,3913],[35,8],[20,-14],[5,2],[12,-15]],[[3540,3338],[-6,0],[-2,-3],[3,-7],[-7,-5]],[[3528,3323],[-21,0],[-13,-13],[-6,-15],[6,-22],[-2,-17],[-7,-15],[3,-7],[-1,-10],[-9,-4],[-8,3],[6,-25],[-11,-11],[-1,-13],[-3,-8],[1,-18],[-7,-12],[-3,8],[-6,0],[-8,-11],[3,-7],[-15,-4],[-5,-10],[-1,-39],[-31,-16],[-22,0],[-22,17]],[[3345,3074],[13,41],[-2,13],[-12,4],[1,26],[-4,30],[5,16],[-6,5],[0,18],[5,6],[-2,7]],[[3343,3240],[4,10],[4,30],[4,-7]],[[3355,3273],[6,1],[4,-11]],[[3365,3263],[2,5],[3,-1],[6,7],[0,14]],[[3376,3288],[19,15]],[[3395,3303],[4,30],[11,5]],[[3410,3338],[2,11]],[[3412,3349],[8,-8],[10,2],[3,-7],[7,1],[4,-10]],[[3444,3327],[12,14],[6,-8],[3,17],[9,-2],[1,6],[-1,9],[11,19],[5,-8],[-1,-12],[5,0],[-3,-30],[4,-14],[13,12],[9,16],[7,-1],[-2,-6],[1,-2],[8,7],[9,-6]],[[3772,3005],[0,-14],[5,-3]],[[3777,2988],[1,-21]],[[3778,2967],[-19,-4]],[[3759,2963],[-4,4],[-9,-7],[-9,5],[-5,11]],[[3732,2976],[12,36],[5,6]],[[3755,3016],[1,-7],[16,-4]],[[1566,1],[-3,2],[3,0],[0,-2]],[[1562,3],[-1,-2],[-4,1],[1,2],[4,-1]],[[1568,0],[-1,2],[1,2],[0,-4]],[[1567,5],[-1,-1],[0,1],[1,1],[0,-1]],[[1565,7],[-1,-2],[-3,2],[3,5],[1,-5]],[[1559,11],[1,4],[1,-1],[0,-2],[-2,-1]],[[1532,18],[-1,0],[0,3],[1,-2],[0,-1]],[[1528,20],[-1,0],[-1,2],[2,1],[0,-3]],[[1571,21],[-3,0],[0,2],[3,2],[0,-4]],[[1575,23],[-1,3],[3,0],[-1,-3],[-1,0]],[[1572,29],[-4,3],[0,1],[3,-1],[1,-3]],[[1550,34],[1,-4],[-4,-3],[-6,4],[11,-8],[-7,0],[8,-4],[3,-7],[-2,-5],[-4,9],[-8,0],[2,3],[-1,2],[1,5],[-3,-3],[-3,5],[-3,-1],[2,0],[-1,-5],[3,-7],[-7,7],[2,5],[-7,0],[23,7]],[[1558,36],[8,-1],[2,-7],[-2,-6],[-4,5],[-8,-3],[-4,11],[8,1]],[[1520,34],[-3,-2],[6,0],[1,-3],[-4,-4],[-7,9],[10,2],[-3,-2]],[[1531,31],[-3,6],[11,-3],[-8,-3]],[[1519,36],[-2,1],[5,0],[-3,-1]],[[1512,37],[3,-1],[-8,1],[1,2],[4,-2]],[[1499,46],[2,-3],[0,-1],[-3,3],[1,1]],[[1495,55],[-2,-2],[-1,4],[2,1],[1,-3]],[[1524,59],[-3,1],[-1,3],[4,-2],[0,-2]],[[1495,59],[-2,0],[0,2],[3,5],[1,-3],[-2,-4]],[[1483,64],[-1,0],[-3,2],[3,1],[1,-3]],[[1510,66],[3,-1],[-1,-10],[-3,3],[-1,7],[-2,-6],[-2,4],[1,2],[0,6],[5,-5]],[[1504,71],[-1,-8],[-3,5],[3,-8],[-1,-3],[-6,14],[8,0]],[[1521,74],[1,-7],[-4,4],[2,-10],[-5,6],[0,6],[4,1],[-1,6],[2,4],[1,-10]],[[1474,83],[0,5],[2,-2],[0,-1],[-2,-2]],[[1487,89],[1,-9],[0,8],[10,-12],[-4,-4],[1,-5],[-7,-3],[-3,2],[4,2],[1,6],[-5,1],[-1,-7],[-3,6],[1,5],[-4,-2],[1,3],[-1,4],[5,-4],[3,1],[-6,7],[7,1]],[[1479,88],[0,-4],[-4,5],[5,1],[-1,-2]],[[1469,93],[0,1],[2,2],[-1,-3],[-1,0]],[[1480,109],[0,-3],[-5,2],[3,2],[2,-1]],[[1517,108],[0,1],[2,2],[-2,-3]],[[1467,106],[10,-4],[2,-7],[0,5],[6,-8],[-6,1],[-6,9],[-6,-1],[-5,12],[5,-7]],[[1480,114],[1,1],[0,-1],[-1,0]],[[1547,117],[-1,-80]],[[1546,37],[-3,3],[2,-4],[-5,-1],[-8,4],[1,5],[-16,-5],[4,7],[-6,-3],[2,1],[-2,0],[0,-1],[-2,-2],[1,6],[-4,-3],[-1,6],[-2,-6],[-7,1],[0,7],[4,-4],[-2,6],[12,-2],[3,5],[2,-1],[-2,-9],[2,8],[7,-6],[-11,15],[10,-11],[0,4],[2,3],[4,-11],[-2,10],[9,-6],[-2,-7],[0,-2],[3,4],[2,5],[-14,12],[-2,10],[11,11],[0,6],[-12,-4],[-3,3],[0,13],[5,4],[-4,5],[7,-2],[7,13],[3,-8],[8,1]],[[1475,115],[-4,4],[5,7],[0,-3],[-1,-8]],[[1462,129],[-1,3],[2,1],[-1,-3],[0,-1]],[[1475,126],[-1,1],[-3,8],[4,-4],[0,-5]],[[1469,135],[4,-6],[0,-1],[-3,-2],[0,7],[-4,2],[3,0]],[[1461,134],[0,2],[3,2],[-2,-4],[-1,0]],[[1467,138],[-1,0],[0,1],[1,-1]],[[1462,137],[2,6],[1,-1],[0,-2],[-3,-3]],[[1476,132],[-6,8],[1,3],[4,-5],[1,-6]],[[1460,135],[2,11],[2,0],[-3,-9],[-1,-2]],[[1457,144],[0,6],[1,0],[0,-4],[-1,-2]],[[1470,142],[-3,2],[-2,7],[6,-6],[-1,-3]],[[1475,147],[-1,0],[-1,5],[2,-2],[0,-3]],[[1461,147],[-1,-8],[-2,-3],[-1,5],[3,5],[-1,7],[2,0],[0,-6]],[[1471,156],[2,-7],[0,-1],[-4,3],[2,5]],[[1470,160],[-1,2],[-1,3],[2,1],[0,-6]],[[1458,162],[-2,-7],[-2,-2],[1,12],[3,-3]],[[1475,163],[-1,0],[-1,2],[2,2],[0,-4]],[[1471,163],[-1,0],[1,5],[1,-1],[-1,-4]],[[1464,166],[0,-4],[-6,-3],[3,10],[3,-3]],[[1458,170],[1,3],[1,-2],[-2,-1]],[[1466,169],[-2,1],[0,3],[1,2],[1,-6]],[[1468,167],[-1,8],[0,4],[2,-10],[-1,-2]],[[1466,181],[0,-8],[-1,3],[-3,-4],[-3,5],[4,3],[0,6],[3,-5]],[[1462,180],[-3,1],[0,5],[3,1],[0,-7]],[[1458,183],[-1,3],[0,3],[1,-1],[0,-5]],[[1463,191],[-1,2],[2,0],[0,-1],[-1,-1]],[[1457,194],[-3,-3],[0,-7],[-3,4],[2,2],[-1,5],[5,-1]],[[1467,194],[2,-10],[0,-2],[-4,4],[1,7],[-3,2],[4,-1]],[[1462,194],[-1,4],[3,0],[0,-1],[-2,-3]],[[1457,206],[4,1],[-6,-11],[-1,1],[1,4],[-3,-2],[1,8],[3,-4],[-4,8],[5,-5]],[[1454,224],[2,-8],[-6,4],[0,6],[4,-2]],[[1451,228],[-1,2],[0,1],[1,0],[0,-3]],[[1468,228],[-2,-3],[0,8],[1,-2],[1,-3]],[[1457,241],[-2,2],[3,4],[1,-10],[-2,4]],[[1454,244],[-3,-6],[-2,2],[4,8],[1,-4]],[[1454,252],[0,-7],[0,5],[-3,-4],[-2,4],[5,2]],[[1456,248],[-1,1],[-1,6],[3,-3],[-1,-4]],[[1458,257],[0,3],[2,0],[-1,-2],[-1,-1]],[[1454,258],[-3,-2],[-2,0],[4,5],[1,-3]],[[1456,254],[-1,2],[2,5],[0,-2],[-1,-5]],[[1454,262],[-4,-3],[2,3],[-3,0],[0,4],[4,2],[1,-6]],[[1468,267],[-2,-2],[-1,3],[0,1],[3,-2]],[[1471,268],[0,-2],[-3,4],[1,0],[2,-2]],[[1468,267],[-2,3],[-1,1],[3,2],[0,-6]],[[1457,241],[2,-5],[1,8],[-3,11],[6,4],[-5,7],[4,1],[0,12],[1,-12],[3,-27],[-2,-18],[1,4],[1,-4],[-1,-8],[-4,-4],[-1,2],[3,2],[-4,0],[0,9],[4,12],[-5,-5],[0,-14],[-6,20],[4,-6],[-2,8],[2,-2],[1,5]],[[1466,273],[-2,-1],[0,6],[3,-2],[-1,-3]],[[1459,278],[2,-1],[-1,-6],[-3,-3],[-3,13],[5,-3]],[[1455,274],[2,-12],[-2,-4],[-1,10],[-4,1],[3,4],[-2,-1],[-1,9],[3,2],[2,-9]],[[1461,287],[-1,-6],[-6,2],[6,8],[1,-4]],[[1473,288],[2,0],[-10,-2],[3,5],[5,-3]],[[1456,289],[-1,0],[-1,3],[2,3],[0,-6]],[[1459,291],[-2,1],[0,3],[2,-1],[0,-3]],[[1466,313],[-1,4],[3,0],[-1,-1],[-1,-3]],[[1470,313],[-1,6],[3,-1],[-1,-4],[-1,-1]],[[1475,348],[-2,5],[0,2],[3,-2],[-1,-5]],[[1476,354],[-2,1],[1,4],[1,-1],[0,-4]],[[1462,361],[-3,-9],[-2,0],[2,3],[-2,5],[5,1]],[[1476,361],[0,-2],[-1,1],[-2,-4],[1,4],[2,1]],[[1472,358],[-2,5],[1,2],[1,-1],[0,-6]],[[1461,366],[-1,2],[0,1],[1,0],[0,-3]],[[1463,364],[-1,4],[2,2],[0,-3],[-1,-3]],[[1472,365],[-2,5],[2,2],[1,-3],[-1,-4]],[[1465,372],[2,3],[2,-7],[-3,-5],[-1,9]],[[1477,364],[-2,3],[1,8],[2,-1],[-1,-10]],[[1465,372],[-1,0],[2,4],[-1,-3],[0,-1]],[[1472,376],[2,-1],[0,-1],[0,-3],[-3,2],[-1,-2],[2,5]],[[1472,376],[0,1],[2,1],[-1,-2],[-1,0]],[[1467,377],[-2,1],[0,2],[2,1],[0,-4]],[[1472,382],[2,0],[1,-3],[-5,3],[2,0]],[[1468,380],[-2,2],[0,4],[2,-2],[0,-4]],[[1474,391],[2,-10],[-7,4],[0,5],[5,1]],[[1472,392],[-4,-2],[-1,1],[3,5],[2,-4]],[[1457,394],[-1,3],[0,2],[2,-2],[-1,-3]],[[1473,399],[-1,-3],[-1,0],[-2,2],[4,1]],[[1473,399],[1,0],[1,-7],[-2,3],[0,4]],[[1475,400],[2,0],[0,-3],[-2,1],[0,2]],[[1467,396],[-2,1],[0,3],[1,1],[1,-5]],[[1466,402],[-3,0],[0,1],[1,2],[2,-3]],[[1469,399],[-3,5],[8,-2],[-5,-3]],[[1461,402],[-1,2],[1,3],[1,-1],[-1,-4]],[[1475,400],[-1,7],[2,1],[2,-6],[-3,-2]],[[1468,406],[-1,2],[3,-1],[-2,-1]],[[1472,407],[-2,1],[0,3],[2,-1],[0,-3]],[[1466,409],[-2,1],[5,0],[-3,-1]],[[1473,411],[0,3]],[[1473,414],[2,-2],[-1,-2],[-1,1]],[[1490,407],[-4,-2],[2,-3],[-5,-9],[-3,5],[3,0],[-4,6],[7,10],[4,-7]],[[1476,411],[-1,2],[2,1],[-1,-3]],[[1473,411],[-2,2],[-1,2],[3,-1]],[[1482,413],[0,1],[0,2],[1,-2],[-1,-1]],[[1472,417],[3,0]],[[1475,417],[-1,-2],[-1,0],[-1,2]],[[1468,416],[-2,1],[0,1],[1,0],[1,-2]],[[1475,417],[0,1],[2,0],[-1,-2],[-1,1]],[[1472,417],[-2,3],[1,2],[2,-4],[-1,-1]],[[1467,420],[0,1],[1,0],[-1,-1]],[[1474,420],[-2,0],[0,2],[1,1],[1,-3]],[[1468,426],[-1,0],[2,0],[-1,0]],[[1477,422],[-2,5],[1,2],[1,-2],[0,-5]],[[1484,426],[-2,1],[0,3],[2,1],[0,-5]],[[1474,435],[1,-4],[-5,0],[0,3],[4,1]],[[1463,441],[-2,-1],[-1,3],[1,1],[2,-3]],[[1477,465],[1,1],[2,-3],[-1,0],[-2,2]],[[1475,477],[2,1],[1,-1],[-1,-1],[-2,1]],[[1480,479],[-3,4],[0,2],[1,0],[2,-6]],[[1484,488],[-1,0],[0,2],[2,-1],[-1,-1]],[[1493,493],[-2,2],[2,1],[0,-3]],[[1475,477],[4,-7],[-2,-5]],[[1477,465],[2,-6],[-4,0],[1,-9],[-2,-1],[-8,5],[3,13],[2,38],[3,0],[-2,0],[7,-1],[2,-14],[-5,-4],[1,-6],[-3,0],[1,-3]],[[1486,504],[-1,0],[0,4],[1,-3],[0,-1]],[[1530,922],[-4,-9],[-3,-21]],[[1523,892],[-3,-6],[-1,-14]],[[1526,815],[5,-8],[-2,-14]],[[1527,141],[22,-12],[-11,4],[-6,-12],[-16,-7],[-2,-37],[-4,-4],[-12,7],[-5,10],[5,6],[-2,-7],[2,0],[4,8],[1,-8],[-3,-5],[2,2],[1,2],[0,9],[6,4],[2,10],[-12,-11],[-4,4],[-3,-2],[5,-4],[-6,-5],[3,-8],[-12,14],[8,-5],[-1,4],[2,1],[-4,2],[0,10],[19,9],[-11,2],[-1,-5],[-2,2],[2,3],[-5,-1],[-2,-3],[3,-1],[-4,-7],[0,-8],[-6,2],[3,4],[-5,4],[5,0],[1,10],[3,0],[-3,1],[-2,-7],[-6,-2],[2,7],[-2,18],[5,-7],[5,6],[0,-4],[2,-3],[1,7],[-1,-5],[-1,4],[3,4],[2,-12],[-5,-5],[6,5],[-3,13],[3,1],[0,5],[-3,7],[-8,5],[10,-12],[-10,6],[4,-6],[-3,-4],[4,1],[-4,-8],[-2,13],[-1,3],[2,-18],[-4,3],[-1,8],[3,-6],[-2,9],[1,3],[-3,-4],[-3,6],[0,9],[5,-9],[-2,16],[-5,-1],[-3,9],[6,1],[1,9],[3,-2],[-2,6],[2,6],[-3,-5],[-1,-8],[-3,-3],[-3,13],[6,-2],[-12,12],[5,4],[2,-5],[5,-2],[-7,10],[7,-2],[-6,6],[-1,3],[4,3],[-3,-1],[-1,4],[6,3],[0,-4],[3,-3],[-2,8],[-4,2],[1,8],[1,-3],[2,-1],[-2,10],[2,2],[-3,0],[-2,-18],[-2,4],[-1,22],[5,2],[-5,5],[5,2],[1,5],[-9,14],[3,1],[3,-9],[-2,9],[8,-1],[3,-8],[3,2],[1,1],[0,3],[-3,-2],[-2,8],[2,-3],[4,0],[-7,7],[0,10],[-1,-9],[-2,-3],[-11,5],[2,6],[3,-2],[1,-4],[1,-1],[-1,4],[3,0],[-6,7],[3,8],[2,-5],[3,11],[-5,9],[-5,0],[2,-4],[-7,5],[1,12],[-10,-12],[3,2],[0,-8],[-4,7],[13,22],[2,11],[4,1],[3,-1],[2,-10],[-4,-6],[-3,3],[2,-3],[4,2],[3,-5],[-2,5],[2,2],[1,-5],[-3,-10],[2,-1],[6,19],[-4,-9],[1,12],[6,11],[-5,-4],[1,12],[4,5],[3,-5],[2,1],[-6,6],[-2,-1],[2,5],[-2,6],[4,1],[5,7],[2,10],[-9,12],[6,13],[-3,2],[-1,10],[4,15],[1,-1],[-1,17],[4,1],[-4,10],[3,3],[3,-10],[-1,18],[-5,2],[7,9],[0,8],[-3,-10],[-5,8],[-4,-11],[-8,1],[1,5],[2,1],[1,3],[-5,1],[-2,19],[3,16],[1,19],[4,3],[3,17],[-4,32],[1,17],[-3,12],[-1,14],[2,7],[5,-1],[1,17],[2,-1],[3,26],[3,7],[-1,8],[6,17],[2,34],[5,17],[-1,21],[3,3],[2,22],[-2,7],[-2,60],[6,22],[-4,34],[9,48],[-1,16],[3,6],[2,25],[-2,18],[4,16],[-2,23],[3,41],[-3,3],[0,15],[5,6],[3,53],[-5,110]],[[1522,1346],[6,3],[3,11]],[[1531,1360],[-1,11],[4,5]],[[1534,1376],[1,-4],[2,-12]],[[1471,355],[-1,-3],[0,-2],[1,2],[0,3]],[[2634,2132],[-1,-1],[0,1],[1,0]],[[2708,2436],[1,-46],[8,-29],[-20,0],[-4,-12]],[[2693,2349],[16,-36],[7,-31]],[[2716,2282],[-11,-51]],[[2705,2231],[-5,-11],[2,-5],[-1,-22]],[[2701,2193],[2,-4],[1,-20]],[[2704,2169],[5,-12],[0,-13],[14,-37]],[[2723,2107],[1,-42],[-22,16]],[[2684,2081],[-2,4],[-45,-3],[-1,5],[1,34],[-5,19],[3,2],[-4,9],[-1,-8],[-6,7],[0,16],[-2,4],[1,-4],[-3,5],[0,-6],[-2,1],[4,23],[1,24]],[[2623,2213],[18,42]],[[2641,2255],[1,-5],[3,0],[2,7]],[[2647,2257],[3,-4],[4,-19]],[[2654,2234],[5,6],[1,10],[4,7],[-1,7],[4,11],[3,30],[7,13],[2,20],[4,9],[1,18],[2,3],[5,32]],[[2691,2400],[12,18],[0,22]],[[2703,2440],[-7,8],[-1,24]],[[2695,2472],[5,0],[2,-12],[3,-4],[1,-17],[2,-3]],[[2695,2472],[-6,23]],[[2689,2495],[-3,26],[3,4]],[[2689,2525],[10,42],[16,42],[3,109],[4,15],[-6,15],[0,6],[-5,20],[-3,54]],[[2708,2828],[14,16]],[[2722,2844],[111,-142]],[[2833,2702],[0,-136]],[[2833,2566],[-12,0],[-3,-5],[0,-16],[-4,-9],[1,-6],[-5,-5],[3,-15],[-7,-13],[3,-15],[-6,-20],[1,-5],[4,3],[3,-4],[2,-36]],[[2813,2420],[5,-7],[0,-8],[-1,-10]],[[2817,2395],[-6,3],[-10,-13],[0,-13]],[[2801,2372],[-18,-41],[-20,-6]],[[2763,2325],[-1,-4],[3,-7],[-7,-22]],[[2758,2292],[-14,-2],[-11,-16],[-3,12],[-9,-14],[-6,1]],[[2715,2273],[1,9]],[[2716,2282],[-5,26],[-18,41]],[[2708,2436],[-7,33],[-6,3]],[[1415,2093],[-2,3],[1,2],[1,0],[0,-5]],[[1417,2095],[-1,1],[1,3]],[[1417,2099],[0,-1],[0,-3]],[[1419,2096],[-1,0],[-1,4],[2,-4]],[[1420,2096],[-1,2],[-1,3],[1,-1],[1,-4]],[[1422,2113],[-1,1],[2,4],[0,-2],[-1,-3]],[[1423,2154],[1,-1],[0,-4],[-1,4],[0,1]],[[1423,2154],[1,5],[2,-3],[-3,-2]],[[1500,2421],[-3,-14],[-4,-5],[-12,-70],[5,5],[3,-8],[6,-35],[-2,-22],[5,-6],[2,-11],[11,-2],[6,5],[9,-5],[9,-30],[3,-2],[3,5],[5,-3],[12,7],[5,-5],[-2,-23],[-4,-8],[0,-27],[4,-29],[4,-13],[-7,-20],[3,-1],[5,-15],[5,-42]],[[1536,1956],[-8,-104],[-5,15]],[[1523,1867],[-6,1]],[[1517,1868],[10,37],[-4,9],[-4,0],[-3,10]],[[1516,1924],[-7,-5],[-5,8],[-7,-13],[-10,0],[-3,6],[0,17],[-5,3],[-1,14],[-9,13],[-2,16],[-6,13]],[[1461,1996],[-13,9],[-7,13]],[[1441,2018],[-4,-7],[-12,6],[-4,17],[-6,2]],[[1415,2036],[-13,26],[3,7],[3,-2],[-1,15],[2,9]],[[1409,2091],[1,2],[2,-2],[5,3],[0,1]],[[1417,2095],[0,4]],[[1417,2099],[1,-4],[1,1]],[[1419,2096],[1,1],[-1,5],[6,19],[-2,-1],[7,24],[-4,-3],[2,8],[-3,-5],[-1,4],[3,8],[-2,3],[0,32],[-2,10],[4,9],[-4,15],[3,14],[-8,24]],[[1418,2263],[2,17],[2,-7]],[[1422,2273],[5,15],[-3,21],[1,5]],[[1425,2314],[8,-19],[-2,-7],[3,-1],[-1,17],[-2,6],[9,14],[3,14],[6,4],[2,40],[3,8],[6,12],[8,-4],[-4,-5],[2,-5],[4,21],[12,-1],[14,21],[1,13],[3,-3],[6,11],[5,-6],[1,-10],[-12,-13]],[[1318,2364],[-1,1],[-1,1],[2,0],[0,-2]],[[1324,2400],[10,-13],[4,8],[4,-22],[11,-27],[-4,2]],[[1349,2348],[-1,-5],[0,-15]],[[1348,2328],[3,-4],[-3,-7]],[[1348,2317],[1,-10],[-2,-6]],[[1347,2301],[1,-2],[1,-5],[-1,-3],[-6,25],[-2,-1],[3,-12],[-6,8],[1,16],[-13,20],[-2,14],[-7,8],[0,-4],[5,-10],[-4,-8],[-3,9],[-4,3],[-3,16],[3,9],[-3,10],[2,1],[2,10]],[[1311,2405],[7,-7],[6,2]],[[2763,2325],[19,5],[19,42]],[[2817,2395],[11,-38],[0,-21],[-3,-9],[2,-1],[-1,-10],[10,-1],[-1,-14],[9,-4],[6,-12],[0,-13],[16,-30],[-1,-9],[3,-7],[-1,-5]],[[2867,2221],[9,-11],[5,-27],[-5,7]],[[2873,2184],[-6,0],[-13,12]],[[2817,2176],[-5,-21],[-3,-4],[-24,11]],[[2782,2174],[-7,12],[-6,1],[-5,-8],[-4,-18]],[[2760,2161],[-3,-2],[1,-31],[-2,6]],[[2742,2137],[-11,-7],[-6,-47],[-2,24]],[[2723,2107],[-12,28],[-3,13],[1,10],[-5,11]],[[2701,2193],[2,22],[-3,6],[5,10]],[[2705,2231],[10,42]],[[2758,2292],[6,19],[1,4],[-4,6],[2,4]],[[1412,2739],[-1,0],[-1,3],[2,-2],[0,-1]],[[1406,2745],[-1,1],[0,1],[1,-1],[0,-1]],[[1451,2746],[-1,1],[0,1],[1,0],[0,-2]],[[1403,2750],[2,-2],[-2,0],[0,1],[0,1]],[[1403,2750],[-1,1],[-1,1]],[[1401,2752],[2,-1],[0,-1]],[[1401,2752],[0,1],[-2,3],[1,0],[1,-4]],[[1397,2760],[1,0],[0,-2],[0,1],[-1,1]],[[1367,2777],[0,1],[3,3],[-1,-2],[-2,-2]],[[1353,2776],[-5,-5],[-4,7],[4,-1],[-2,7],[1,6],[4,-2],[2,-12]],[[1418,2795],[3,-1],[0,-4],[-1,-1],[-2,6]],[[1419,2796],[-3,2],[0,4],[2,-2],[1,-4]],[[1419,2799],[1,-1],[-2,4],[1,-3]],[[1415,2807],[1,-6],[-4,5],[1,1],[2,0]],[[1412,2811],[1,-3],[-3,-1],[-3,3],[5,1]],[[1403,2815],[-1,0],[0,1],[1,0],[0,-1]],[[1398,2814],[-4,6],[0,1],[4,-7]],[[1390,2825],[-1,0],[0,1],[1,0],[0,-1]],[[1385,2827],[0,-1],[-1,1],[1,1],[0,-1]],[[1387,2830],[-1,0],[0,1],[0,1],[1,-2]],[[1376,2832],[-1,-1],[2,3],[1,-1],[-2,-1]],[[1457,2716],[0,6],[-4,-6],[-12,4],[-21,-6],[9,19],[-2,11],[-11,1],[-6,12],[-4,22],[-7,-4],[-10,7],[-7,16],[-6,-5],[-13,5],[-4,8],[7,3],[-4,7],[-12,1],[-8,-18],[-8,-1],[-1,-9],[-7,-6],[0,6],[-6,-2],[8,5],[-1,12],[5,11],[12,13],[17,6],[7,-4],[4,3],[1,-5],[7,3],[5,-7],[3,2],[10,-20],[10,-3],[18,-24],[-4,9],[1,1],[5,-10],[-3,-1],[2,-5],[2,4],[3,-10],[16,-7],[2,-4],[-2,-11],[11,0],[11,-18],[-13,-11]],[[1382,2834],[-1,0],[0,1],[1,-1]],[[2659,3968],[2,3],[3,-8],[-5,-3],[-7,7],[3,6],[4,-5]],[[2667,3970],[1,-2],[-2,-10],[-1,6],[-3,8],[5,-2]],[[2644,3968],[-2,3],[-1,2],[3,-4],[0,-1]],[[2674,3973],[-5,-3],[-1,1],[2,4],[4,-2]],[[2647,3972],[-1,0],[-1,2],[2,2],[0,-4]],[[2635,3977],[3,-3],[1,-4],[-6,6],[2,1]],[[2649,3966],[-1,5],[4,9],[-1,-6],[-2,-8]],[[2709,3974],[-6,4],[1,7],[6,-6],[-1,-5]],[[2617,3986],[-1,2],[0,3],[1,-2],[0,-3]],[[2649,3991],[0,-12],[-4,-4],[-5,2],[-6,15],[9,4],[2,-6],[2,6],[2,-5]],[[2674,3994],[-1,2],[2,3],[1,-4],[-2,-1]],[[2647,4005],[-1,-3],[0,7],[0,1],[1,-5]],[[2674,4010],[0,-11],[-5,-8],[4,-7],[-7,-4],[3,-2],[-2,-5],[-5,3],[0,5],[-6,0],[-3,17],[-3,2],[5,-1],[4,6],[-3,5],[7,-1],[-1,-6],[1,-5],[2,9],[2,-6],[-2,-3],[2,0],[0,2],[0,7],[-3,2],[6,6],[4,-5]],[[2660,4034],[-1,1],[2,1],[-1,-2]],[[2623,4043],[-2,-8],[-3,1],[2,6],[3,1]],[[2638,4048],[3,-2],[2,-1],[0,-8],[-6,-4],[6,2],[0,-2],[-2,-3],[0,-3],[8,2],[2,-7],[-5,-8],[-2,6],[-3,-5],[0,-11],[-4,0],[2,-1],[-1,-4],[-6,0],[4,-3],[-2,-3],[-1,-4],[1,-8],[-3,-2],[4,-5],[0,-6],[-15,3],[0,7],[-3,1],[3,0],[-1,10],[-7,5],[0,15],[1,-6],[3,3],[-2,7],[-2,-2],[1,22],[8,-6],[-1,5],[6,7],[-1,-9],[4,-1],[-2,14],[11,5]],[[2655,4057],[-3,-3],[-2,1],[3,2],[2,0]],[[2644,4067],[2,-13],[-3,-8],[-5,3],[-12,-1],[-6,-4],[-4,-10],[3,1],[-1,-4],[-4,4],[5,15],[11,1],[8,16],[9,5],[-3,-5]],[[3100,2414],[-4,-16]],[[3096,2398],[-16,0],[0,26]],[[3080,2424],[7,24],[2,4],[3,-5],[6,12]],[[3098,2459],[4,-23],[-12,-18],[1,-4],[4,5],[5,-5]],[[1506,2632],[0,3],[1,-2],[-1,-1]],[[1547,2653],[-2,0],[-1,2],[3,-1],[0,-1]],[[1503,2650],[1,10],[-4,10]],[[1500,2670],[4,4],[-1,9],[2,7],[-2,22],[2,5],[12,-2],[11,-7],[3,-13],[7,2],[0,-6],[-5,1],[0,-4],[12,-5],[6,-12],[-2,-10],[-3,-5],[-3,7],[-14,2],[-4,-8],[-5,-2],[-2,9],[-6,-5],[-4,-25],[-5,16]],[[1386,1895],[0,11],[4,0],[-3,-6],[-1,-5]],[[1391,1909],[-1,0],[1,6],[0,-3],[0,-3]],[[1404,2048],[-1,1],[1,4],[0,-4],[0,-1]],[[1441,2018],[13,-18],[-5,-3],[6,-13]],[[1455,1984],[0,-15],[-3,1],[-2,-21]],[[1450,1949],[-7,-22],[-8,-16]],[[1435,1911],[-17,-14],[-5,-20],[-1,4]],[[1412,1881],[-5,-41],[-5,-16]],[[1402,1824],[-4,2]],[[1398,1826],[-4,19],[-7,5]],[[1387,1850],[-5,-5],[2,8]],[[1384,1853],[-2,0],[0,8],[4,3],[-2,18]],[[1384,1882],[5,7],[3,21],[-1,8],[1,13],[-2,-3],[0,-16],[-2,-1],[0,9],[-3,-15],[-9,15],[-1,5],[3,9],[-2,32],[5,5],[2,12],[0,-2],[2,0],[-3,9],[6,16],[0,27],[15,13],[1,2]],[[1404,2048],[1,7],[3,-7],[7,-12]],[[2972,2960],[-1,1],[0,2],[1,-1],[0,-2]],[[2972,2989],[0,-2],[-2,3],[1,0],[1,-1]],[[2945,3119],[-1,0],[0,1],[1,0],[0,-1]],[[2961,3122],[2,-1],[1,-2],[0,1],[-3,2]],[[2961,3122],[-2,0],[-2,-2],[2,3],[1,0],[1,-1]],[[2975,3126],[9,-66]],[[2984,3060],[-9,-63],[-14,30],[-1,16],[-6,16],[-2,20],[-3,-15],[3,-9],[1,-17],[13,-35],[-1,-9],[4,-14],[2,-21],[16,-77],[10,-22],[-5,1],[3,-35],[17,-34]],[[3012,2792],[-76,0],[0,8],[-2,-8],[-87,0]],[[2847,2792],[0,259]],[[2847,3051],[-4,33],[4,23]],[[2847,3107],[-2,21],[4,9],[2,-5],[9,4],[19,-8],[2,-6],[5,1],[1,-5],[7,-1],[9,-9],[14,18],[3,-3],[1,9],[8,3],[-5,-7],[5,1],[3,3],[-2,4],[8,-6],[4,3],[1,0],[4,-8],[-5,8],[-1,-9],[5,-7],[2,2],[-1,6],[7,-10],[5,6],[1,-5],[8,3],[7,7]],[[2365,3910],[0,1],[-1,1],[1,1],[0,-3]],[[2361,3934],[-4,3],[1,2],[3,0],[0,-5]],[[2381,3973],[0,2],[1,-1],[-1,-1]],[[2395,3966],[-6,-3],[3,-3],[-6,-5],[5,-10],[7,-3],[4,11],[6,-13]],[[2408,3940],[7,-2],[-4,-2],[4,-13],[-2,-8],[3,-14],[-3,-15],[-4,-7],[2,-6],[-7,0],[-2,4],[0,-5],[-8,-2],[-8,-11],[-1,3],[-2,0],[1,-5],[-13,-9],[-8,-1],[3,6],[-3,-3],[5,5],[-1,3],[-8,-6],[7,10],[-10,-3],[1,7],[7,6],[-10,1],[10,2],[-1,5],[2,7],[5,0],[7,4],[-15,-4],[6,8],[3,13],[4,0],[0,4],[-9,-1],[1,5],[-9,1],[0,5],[7,2],[-3,6],[5,3],[-6,1]],[[2361,3934],[3,2],[-3,10],[-2,-4],[0,5],[23,1],[-3,3],[7,10],[-9,2],[7,6],[-2,3]],[[2382,3972],[1,0],[1,6],[7,5],[0,-3],[2,-3],[-2,5],[2,2],[2,-6],[-2,-6],[3,4],[-1,6],[2,6],[6,-5],[-6,-11],[-2,-6]],[[2578,1951],[-1,0],[1,2],[0,-2]],[[2657,2039],[-19,-2],[-2,5],[-6,1],[6,29],[-1,15],[4,-6],[18,0],[0,-42]],[[2622,2129],[-2,-11],[-3,3],[3,17],[4,-2],[-2,-7]],[[2833,4085],[-1,1],[0,1],[1,0],[0,-2]],[[2819,4103],[5,-6],[-14,-7],[-5,-11],[3,8],[-5,5],[2,2],[-2,6],[16,3]],[[2824,4101],[-2,0],[-2,2],[2,3],[2,-5]],[[2823,4116],[-2,0],[-1,2],[4,-1],[-1,-1]],[[2815,4117],[5,-5],[-8,-6],[-2,7],[-4,2],[9,2]],[[2880,4110],[1,-21],[5,-12]],[[2886,4077],[-4,-2],[-2,-10],[-7,4]],[[2873,4069],[-5,-5],[-17,21]],[[2851,4085],[-14,-8]],[[2837,4077],[3,16],[-3,3],[-3,-6],[-8,12],[0,6],[5,1],[-5,2],[-1,4],[3,1],[-3,2],[0,7],[19,13],[8,-3],[1,6],[4,-1],[34,-9],[-11,-21]],[[3056,2571],[1,-7],[4,-2],[-6,1],[1,2],[-2,4],[2,2]],[[3057,2579],[-1,-3],[-1,1],[0,3],[2,-1]],[[3098,2459],[-4,-10],[-6,1]],[[3088,2450],[-22,60],[-9,12]],[[3057,2522],[-12,0],[-4,7],[-8,-9],[-7,17],[-5,-28],[-4,12],[-4,-6],[-6,0]],[[3007,2515],[-1,31],[7,40],[0,29],[6,-1],[1,10],[11,8]],[[3031,2632],[5,16],[2,-12],[7,-60],[6,-32],[2,14],[4,-18],[4,1],[5,-11],[5,-2],[7,-25],[9,-13],[1,-13],[6,-13],[4,-1],[0,-4]],[[1282,2475],[-1,0],[0,2],[1,0],[0,-2]],[[1271,2500],[5,5],[5,-5],[-1,-21],[-2,-4],[-11,3],[-15,10],[-4,8]],[[1248,2496],[8,17],[0,7]],[[1256,2520],[3,0],[12,-20]],[[3057,2522],[9,-11],[22,-61]],[[3088,2450],[-8,-26]],[[3096,2398],[-4,-14]],[[3092,2384],[11,-43]],[[3103,2341],[8,-15],[41,-36],[14,0],[-42,-111],[-18,0],[-7,-8],[-4,-13]],[[3095,2158],[-11,-4],[-3,-9],[-10,0]],[[3071,2145],[-5,12],[-13,-15],[-5,-16],[-19,7]],[[3029,2133],[-17,29],[-12,1]],[[3000,2163],[-4,12]],[[2996,2175],[1,19],[-7,2],[-9,47],[-13,35],[-10,5],[0,4],[3,20],[7,-4],[5,8],[0,35],[3,24],[0,12],[4,12],[4,-6],[3,39],[8,30],[6,2],[6,56]],[[2704,3744],[4,16],[15,-10]],[[2723,3750],[8,2],[3,-3],[-1,-13],[5,-12],[-2,-11]],[[2736,3713],[-8,-1],[4,-5],[-4,-5],[1,-14]],[[2729,3688],[-7,-9],[-16,-5]],[[2706,3674],[-5,-8]],[[2701,3666],[-29,10]],[[2672,3676],[-4,9],[1,6],[-14,-5]],[[2655,3686],[-3,-7]],[[2652,3679],[-7,3],[-1,6]],[[2644,3688],[-4,-6]],[[2640,3682],[-7,8],[-1,17],[3,2],[7,-8]],[[2642,3701],[-1,-4],[4,6],[0,6],[9,-7],[22,10],[4,-8],[1,7],[-2,2],[1,5],[-3,10],[9,8],[0,8]],[[2686,3744],[4,-2],[2,9],[12,-7]],[[2704,3744],[-8,1],[-19,26],[-5,13]],[[2672,3784],[2,8],[-7,15],[4,-5],[2,7],[7,1],[18,17],[0,6],[7,-9]],[[2705,3824],[5,7]],[[2710,3831],[3,-8]],[[2713,3823],[14,-5],[1,-2]],[[2728,3816],[-4,-6],[7,-11]],[[2731,3799],[5,4],[-2,8],[12,-5]],[[2746,3806],[0,-4],[-2,-1],[3,-6],[10,-3]],[[2757,3792],[4,-12],[-15,-25]],[[2746,3755],[-8,-1],[-3,-8],[-6,6],[-6,-2]],[[1773,2117],[-5,-28],[-4,-8],[-11,8]],[[1748,2079],[-7,8]],[[1741,2087],[6,16],[3,29]],[[1750,2132],[-5,16]],[[1745,2148],[-2,35],[7,26],[7,-6],[7,-4],[9,-19],[4,-10],[0,-11],[2,11],[3,-20],[-9,-33]],[[2829,4151],[-5,-1],[2,2],[3,-1]],[[2817,4152],[2,0],[1,0],[-2,-2],[-1,2]],[[2811,4153],[-1,0],[0,3],[1,0],[0,-3]],[[2799,4157],[-1,0],[2,2],[-1,-2]],[[2802,4157],[-1,3],[2,0],[0,-1],[-1,-2]],[[2797,4160],[-1,-1],[-1,1],[1,1],[1,-1]],[[2805,4158],[-1,1],[2,2],[0,-1],[-1,-2]],[[2858,4160],[0,1],[1,0],[-1,-1]],[[2813,4161],[3,0],[-1,-8],[-3,0],[-1,8],[2,0]],[[2808,4160],[0,1],[1,1],[0,-1],[-1,-1]],[[2856,4162],[-1,-1],[-1,2],[1,1],[1,-2]],[[2810,4163],[-2,-1],[-2,1],[0,1],[4,-1]],[[2810,4164],[0,1],[2,0],[-2,-1]],[[2805,4165],[-3,2],[0,3],[2,-2],[1,-3]],[[2802,4171],[-1,-2],[0,1],[0,2],[1,-1]],[[2795,4173],[1,-2],[-1,-1],[-1,3],[1,0]],[[2798,4172],[-1,-2],[-1,3],[1,0],[1,-1]],[[2795,4173],[-1,2],[1,1],[0,-1],[0,-2]],[[2796,4185],[-1,0],[0,3],[1,-2],[0,-1]],[[2792,4271],[5,-1],[0,-2],[-2,-2],[-3,5]],[[2808,4270],[-2,1],[0,1],[2,0],[0,-2]],[[2796,4271],[-1,0],[-1,1],[2,1],[0,-2]],[[2817,4289],[0,-1],[-3,1],[2,3],[1,-3]],[[2843,4330],[-3,3],[7,1],[-2,-1],[-2,-3]],[[2904,4501],[2,-8]],[[2906,4493],[-6,-9],[2,-6],[-8,-6],[6,-2]],[[2900,4470],[-5,-11],[3,-12],[9,-4],[9,-14],[-13,-29],[12,-27],[3,-15],[-4,-2],[-4,-15],[4,-4],[-3,-2],[0,-5],[7,-6],[1,-4],[-3,-3],[1,-6],[7,-6],[0,-7],[-8,-11],[17,-18],[5,-11],[-4,-15]],[[2934,4243],[-49,-71],[-8,2],[-10,-5],[4,5],[-1,2],[-4,-9],[-5,2],[0,-5],[-3,4],[1,-6],[-3,4],[-17,-13],[-2,3],[-12,-4],[1,4],[-4,-8],[-4,-2],[4,4],[2,4],[-4,-4],[2,5],[-5,4],[3,7],[-7,-5]],[[2813,4161],[-2,1],[3,5],[-12,4]],[[2802,4171],[1,4],[-6,-1],[-1,10],[0,3],[1,8],[2,5],[-1,9],[2,0],[-5,14],[1,11],[-4,12],[5,16],[4,0],[-3,6],[12,3],[-2,6],[15,16],[15,22],[2,10],[11,1],[-2,5],[4,0],[-3,8],[1,12],[-9,5],[-2,4]],[[2840,4360],[2,5],[-7,-4],[-6,15],[-1,8],[5,13]],[[2833,4397],[-6,13],[3,9],[-5,2],[1,14],[2,3],[-12,16]],[[2816,4454],[-10,3],[-21,21],[7,-1]],[[2792,4477],[0,6],[4,4],[5,-1],[10,-21],[11,-3],[10,8],[14,-9],[11,14],[0,10]],[[2857,4485],[3,15],[7,9]],[[2867,4509],[20,6],[4,-7],[13,-7]],[[2483,3645],[-3,5],[0,3],[2,-3],[1,-5]],[[2482,3657],[-3,2],[-1,1],[1,1],[3,-4]],[[2468,3676],[-1,1],[-1,1],[1,0],[1,-2]],[[2469,3688],[1,-3],[0,-1],[-2,4],[1,0]],[[2457,3698],[-2,0],[-1,3],[0,1],[3,-4]],[[2429,3740],[0,-1],[-1,1],[1,1],[0,-1]],[[2535,3834],[1,-10],[7,-1],[2,-9],[12,-9],[0,-11],[5,-1],[5,8],[0,-13],[9,-11]],[[2576,3777],[13,-1],[4,-11]],[[2593,3765],[10,0],[11,-7],[-6,-14],[-3,-16],[0,-20]],[[2605,3708],[-3,-5],[-5,2]],[[2597,3705],[-1,-7],[-11,-25]],[[2585,3673],[-1,-12],[-2,-2],[3,-2],[5,11],[4,-1]],[[2594,3667],[0,-10]],[[2594,3657],[3,-8],[-3,-7],[5,-13]],[[2599,3629],[-8,-9],[6,-10],[-2,-16]],[[2595,3594],[12,-11],[-3,-11]],[[2604,3572],[-10,-13],[-2,-8],[-7,-5],[-16,11],[3,4],[-3,3],[-2,-6],[-2,7],[1,-7],[-2,-1],[-9,7],[-13,-17],[-1,-9],[3,-14],[-7,-3],[-9,0],[-4,9],[-15,9]],[[2509,3539],[0,-6]],[[2509,3533],[-10,0],[-19,13]],[[2480,3546],[0,8]],[[2480,3554],[-5,3],[4,10],[4,35],[2,2],[-2,4],[-1,-4],[2,32],[8,-24],[-3,20],[-7,9],[3,7],[-1,15],[-9,6],[-5,13],[2,7],[-3,3],[1,5],[5,-2],[-3,4],[-8,-1],[3,8],[-7,1],[2,3],[-6,-1],[0,-5],[-1,7],[-11,8],[-5,-3],[-1,6],[-4,3],[6,2],[-4,3],[0,5],[5,-1],[-3,2],[-5,-1],[0,7],[6,5],[11,1],[0,5],[5,2],[7,-14],[5,7],[5,-6],[0,6],[8,-2],[-2,4],[-1,17],[-4,18],[9,-1],[2,-12],[12,-3],[9,6],[-4,3],[1,7],[18,14],[2,27],[13,8]],[[2625,1976],[-1,4],[1,2],[0,-2],[0,-4]],[[2697,2053],[4,-16],[-9,-25],[0,-16]],[[2654,1863],[-20,53],[5,-7],[1,4],[-7,5],[-4,17],[3,-6],[-1,8],[-3,0],[-4,22],[1,-3],[3,-7],[1,-4],[3,1],[-4,1],[0,3],[1,4],[0,4],[-1,-5],[-3,4],[-5,26],[5,-9],[4,17],[0,26],[2,-8],[6,1],[-2,0],[-3,4]],[[2632,2014],[-1,0],[-2,8],[3,6],[1,-7],[0,19],[24,-1]],[[2657,2039],[0,47],[16,-1],[11,-2],[-1,-36]],[[3055,3558],[1,6],[8,0]],[[3064,3564],[13,-12],[18,-1],[13,-16],[0,-5]],[[3108,3530],[19,4],[8,-8],[-2,-10]],[[3133,3516],[11,-11],[-3,-9],[7,-14],[-3,-8]],[[3129,3489],[-7,-9],[-19,-3]],[[3103,3477],[-9,16]],[[3094,3493],[-14,-5],[-4,3]],[[3076,3491],[4,12],[-4,20],[-1,12],[-15,15],[-5,8]],[[2456,2186],[6,1]],[[2462,2187],[-1,12],[-3,9]],[[2458,2208],[-3,40],[6,40]],[[2461,2288],[4,9],[-4,31]],[[2461,2328],[1,12],[-3,43],[1,15]],[[2460,2398],[31,-4],[5,10]],[[2496,2404],[4,-3],[-2,-16]],[[2498,2385],[6,-9],[1,-12],[-2,-22]],[[2503,2342],[4,-2],[-2,-23]],[[2505,2317],[5,-16],[-2,-3],[-1,-27],[2,-7],[-2,-12]],[[2507,2252],[3,-17]],[[2510,2235],[6,-11],[-3,-13],[-4,-2],[-1,8],[-1,3],[-2,1],[0,-1],[-2,2],[-1,0],[6,-9],[-37,-40],[-15,13]],[[1893,4148],[-3,-2],[-3,1],[2,6],[4,-5]],[[1898,4150],[0,3],[2,-1],[-1,-1],[-1,-1]],[[1884,4149],[1,5],[4,0],[-3,-4],[-2,-1]],[[1897,4151],[-2,-1],[1,5],[2,-1],[-1,-3]],[[1883,4151],[-1,7],[4,-3],[-2,-3],[-1,-1]],[[1897,4156],[4,-1],[-7,1],[0,-6],[-7,8],[10,-2]],[[1871,4158],[-1,1],[1,1],[0,-2]],[[1870,4160],[0,7],[3,0],[-1,-4],[-2,-3]],[[1861,4178],[3,-1],[-1,-1],[-2,-1],[0,3]],[[1861,4178],[-2,-2],[-1,1],[3,2],[1,-1],[-1,0]],[[1856,4177],[-2,1],[3,3],[-1,-4]],[[1844,4181],[-1,0],[-1,1],[2,-1]],[[1847,4181],[-1,1],[1,0],[0,-1]],[[1844,4183],[1,0]],[[1845,4183],[0,-1],[-1,0],[0,1]],[[1836,4182],[2,-2],[-4,-2],[-4,4],[6,0]],[[1844,4183],[2,2]],[[1846,4185],[-1,-2]],[[1844,4183],[-1,1],[1,1]],[[1844,4185],[0,-2]],[[1844,4185],[2,1],[0,-1]],[[1846,4185],[-1,0],[-1,0]],[[1850,4180],[-1,1],[9,5],[0,-1],[-8,-5]],[[1854,4186],[0,1],[-1,2],[2,-1],[-1,-2]],[[1832,4191],[-4,0],[0,1],[2,1],[2,-2]],[[1820,4198],[1,2],[2,0],[-3,-2]],[[1825,4200],[-1,0],[-3,1],[5,1],[-1,-2]],[[1910,4205],[-1,0],[2,2],[-1,-2]],[[1818,4212],[-1,0],[-1,1],[1,1],[1,-2]],[[1814,4214],[-1,1],[-1,1],[2,0],[0,-2]],[[1914,4220],[1,0],[0,-3],[-2,-1],[1,4]],[[1813,4220],[-2,1],[-1,1],[3,0],[0,-2]],[[1810,4231],[-1,1],[-1,1],[2,0],[0,-2]],[[1912,4246],[2,-1],[1,-2],[-2,0],[-1,3]],[[1912,4254],[4,-1],[2,-2],[-8,1],[2,2]],[[1922,4256],[0,5],[2,0],[0,-1],[-2,-4]],[[1796,4263],[0,-1],[-1,1],[1,1],[0,-1]],[[1926,4263],[-2,0],[-1,1],[2,1],[1,-2]],[[1794,4264],[0,3],[2,-2],[-2,-1]],[[1797,4265],[0,3],[2,-2],[-1,-1],[-1,0]],[[1927,4266],[1,-1],[-4,2],[0,1],[3,-2]],[[1929,4269],[-5,0],[-6,9],[3,0],[8,-9]],[[1788,4278],[-2,0],[2,1],[0,-1]],[[1777,4301],[0,1],[2,1],[-2,-2]],[[1935,4307],[0,-3],[-6,1],[3,2],[3,0]],[[1928,4307],[0,-1],[-3,1],[1,1],[2,-1]],[[1783,4306],[2,4],[2,-2],[-1,-1],[-3,-1]],[[1788,4304],[-1,2],[4,10],[3,0],[-6,-12]],[[1787,4310],[-2,1],[5,6],[-2,-6],[-1,-1]],[[1776,4318],[-1,0],[0,1],[1,0],[0,-1]],[[1936,4321],[-4,8],[5,-2],[5,-15],[-5,2],[-1,7]],[[1937,4333],[-1,0],[-1,1],[1,1],[1,-2]],[[1772,4336],[0,3],[2,0],[-2,-3]],[[1951,4344],[-1,-2],[-3,2],[1,2],[3,-2]],[[1954,4349],[-1,1],[2,1],[-1,-2]],[[1765,4348],[-2,1],[-1,1],[3,1],[0,-3]],[[1985,4352],[-2,0],[0,1],[1,0],[1,-1]],[[1960,4351],[-1,0],[2,1],[-1,-1]],[[1764,4352],[-3,0],[-1,2],[6,2],[-2,-4]],[[1986,4353],[-2,1],[-1,3],[3,1],[0,-5]],[[1989,4359],[-1,0],[-1,3],[2,1],[0,-4]],[[1980,4362],[2,-2],[-3,1],[2,-4],[-2,-3],[-5,-1],[-2,4],[4,8],[4,-3]],[[1995,4362],[-1,2],[3,0],[-2,-2]],[[1991,4361],[-2,4],[4,2],[-1,-2],[-1,-4]],[[1756,4370],[-1,0],[-1,1],[4,0],[-2,-1]],[[2007,4374],[-1,2],[2,1],[-1,-3]],[[2029,4397],[-1,0],[0,1],[1,2],[0,-3]],[[1763,4399],[-2,-1],[-4,-1],[2,3],[6,0],[-2,-1]],[[2035,4409],[0,2],[2,0],[-2,-2]],[[2038,4415],[-1,0],[0,1],[1,2],[0,-3]],[[1754,4428],[-1,2],[0,2],[2,-2],[-1,-2]],[[1759,4440],[-1,0],[-1,2],[3,0],[-1,-2]],[[1787,4444],[-8,-2],[-2,1],[11,1],[-1,0]],[[2059,4445],[-3,1],[0,1],[3,1],[-1,-1],[1,-1],[0,-1]],[[2085,4445],[-2,1],[0,1],[4,0],[-2,-2]],[[1776,4444],[-3,2],[12,3],[-1,-2],[-8,-3]],[[1764,4453],[-2,0],[-1,1],[5,1],[-2,-2]],[[1767,4457],[-1,1],[-1,2],[1,0],[1,-3]],[[1769,4459],[-1,0],[3,1],[-2,-1]],[[1778,4461],[-1,0],[-5,-1],[8,2],[-2,-1]],[[1791,4463],[-3,0],[0,1],[2,0],[1,-1]],[[1776,4465],[-3,-2],[-11,-3],[7,5],[7,0]],[[2176,4499],[-3,0],[-1,2],[4,1],[0,-3]],[[1798,4505],[-1,1],[3,1],[-2,-2]],[[1792,4508],[4,-2],[-4,-4],[0,-7],[-4,0],[-2,6],[5,6],[-5,-1],[2,2],[4,0]],[[1768,4509],[9,-5],[2,-2],[-2,-2],[3,-2],[-24,-14],[-10,6],[12,2],[-2,1],[3,4],[-6,-5],[-3,1],[0,4],[-14,4],[8,-1],[-7,6],[2,4],[7,-2],[-8,6],[1,6],[5,3],[16,-4],[8,-10]],[[1740,4525],[-3,0],[-2,4],[4,-2],[1,-2]],[[1784,4535],[-2,1],[-3,1],[3,1],[2,-3]],[[2115,4538],[-1,5],[7,0],[-2,-3],[-4,-2]],[[1783,4543],[-1,-2],[-7,2],[2,4],[6,-4]],[[2147,4544],[1,-9],[-10,-5],[-29,-2],[13,15],[12,2],[8,5],[5,-6]],[[2148,4548],[-1,0],[-3,3],[2,0],[2,-3]],[[2148,4552],[-1,0],[-1,1],[1,2],[1,-3]],[[1755,4548],[-5,3],[0,1],[5,7],[3,-7],[-3,-4]],[[1769,4560],[4,-2],[-9,-5],[-3,6],[8,1]],[[1762,4571],[3,0],[2,0],[-6,-5],[-4,5],[5,0]],[[1728,4577],[-2,0],[-1,2],[5,0],[-2,-2]],[[1725,4586],[-2,0],[3,2],[-1,-2]],[[1731,4589],[-5,1],[10,7],[-1,-3],[-4,-5]],[[1735,4602],[-2,0],[-3,1],[5,1],[0,-2]],[[1727,4604],[-3,-1],[-2,0],[1,2],[4,-1]],[[1734,4605],[-2,0],[4,2],[-1,-2],[-1,0]],[[1738,4608],[-3,0],[0,1],[3,1],[0,-2]],[[1726,4609],[-5,-2],[-2,2],[8,2],[-1,-2]],[[1723,4613],[1,-1],[1,0],[-3,-1],[1,2]],[[1732,4608],[-4,-5],[1,2],[-5,0],[12,7],[-4,-4]],[[2172,4613],[6,0],[17,-15],[-12,1],[9,-6],[0,-5],[-6,0],[-25,16],[-1,9],[12,0]],[[1728,4615],[1,0],[2,-1],[-3,-1],[0,2]],[[2154,4611],[-5,2],[0,1],[7,2],[-2,-5]],[[1735,4618],[-3,-2],[-6,3],[3,2],[6,-3]],[[1725,4619],[-1,1],[-1,0],[3,0],[-1,-1]],[[2186,4619],[9,-3],[-4,-4],[5,-3],[-9,-1],[-9,6],[-20,4],[28,1]],[[2203,4622],[-2,1],[4,1],[0,-1],[-2,-1]],[[1719,4625],[-1,0],[-1,0],[1,2],[1,-2]],[[1721,4622],[1,5],[2,0],[-2,-4],[-1,-1]],[[1726,4629],[-1,0],[-1,2],[3,1],[-1,-3]],[[1723,4630],[-3,-1],[0,1],[4,2],[-1,-2]],[[1728,4630],[0,1],[3,2],[-3,-3]],[[2161,4634],[16,-7],[-6,0],[-8,3],[-9,1],[-2,-1],[29,-6],[-20,-4],[-19,6],[7,8],[12,0]],[[1725,4634],[-4,1],[3,1],[1,-2]],[[1728,4633],[-3,0],[1,3],[-6,3],[3,0],[6,-4],[-1,-2]],[[1716,4638],[-2,1],[5,3],[-2,-3],[-1,-1]],[[1717,4643],[-7,-2],[-2,2],[8,1],[1,-1]],[[1717,4647],[1,-1],[1,-1],[-3,2],[1,0]],[[1717,4647],[-6,3],[2,2],[9,-3],[-5,-2]],[[2222,4651],[-2,0],[-1,1],[1,0],[2,-1]],[[2209,4670],[11,-8],[-15,-4],[-11,5],[6,7],[9,0]],[[1715,4674],[0,-1],[-15,-1],[12,3],[3,-1]],[[1708,4675],[-1,0],[3,1],[0,-1],[-2,0]],[[1705,4676],[-1,0],[3,1],[-2,-1]],[[2238,4674],[-5,1],[0,1],[6,2],[-1,-4]],[[2242,4680],[3,0],[-1,-3],[-2,3]],[[1701,4680],[-2,0],[-1,1],[4,0],[-1,-1]],[[2219,4687],[7,-1],[-5,-6],[-9,4],[3,8],[7,-2],[-3,-3]],[[2252,4702],[-5,-3],[12,-4],[-4,-7],[-18,3],[1,11],[10,4],[4,-4]],[[1596,4727],[-1,0],[-1,1],[4,1],[-2,-2]],[[1610,4729],[-1,1],[2,1],[-1,-2]],[[1640,4731],[-1,1],[0,1],[1,0],[0,-2]],[[2217,4736],[-1,0],[-3,3],[7,0],[-3,-3]],[[1528,4741],[-3,0],[0,1],[4,0],[-1,-1]],[[2216,4743],[-1,1],[3,0],[-2,-1]],[[2203,4743],[-1,1],[-1,0],[3,0],[-1,-1]],[[2211,4741],[-2,0],[-3,2],[6,2],[-1,-4]],[[2212,4747],[-3,-2],[4,2],[-1,0]],[[1532,4746],[-1,0],[-4,1],[8,0],[-3,-1]],[[2207,4747],[-5,0],[-2,2],[8,0],[-1,-2]],[[2227,4752],[-2,0],[-1,1],[3,0],[0,-1]],[[2240,4748],[2,-21],[-1,-4],[-7,23],[5,2],[-4,6],[5,-6]],[[2226,4755],[-1,0],[-1,0],[3,1],[-1,-1]],[[2219,4756],[-2,0],[-1,1],[3,1],[0,-2]],[[1501,4773],[-3,1],[-6,3],[17,-1],[-8,-3]],[[1518,4779],[9,-2],[-18,1],[3,1],[6,0]],[[1580,4780],[-6,0],[-1,1],[6,0],[1,-1]],[[2224,4781],[-1,0],[-2,2],[3,-1],[0,-1]],[[1571,4784],[-1,0],[4,1],[-3,-1]],[[2220,4786],[2,-2],[-6,1],[4,2],[0,-1]],[[2249,4786],[-3,1],[5,7],[4,-2],[-6,-6]],[[2228,4795],[-1,0],[-1,2],[1,0],[1,-2]],[[2223,4797],[-2,0],[11,-5],[-17,5],[8,0]],[[2204,4794],[-2,1],[4,4],[-2,-4],[0,-1]],[[2214,4799],[-1,0],[4,1],[-3,-1]],[[2232,4802],[-1,1],[-1,0],[2,2],[0,-3]],[[2235,4801],[-2,1],[5,3],[-3,-4]],[[2209,4803],[-1,1],[-1,1],[3,-1],[-1,-1]],[[2214,4804],[-1,0],[-2,1],[7,1],[-4,-2]],[[2229,4807],[-1,0],[-1,0],[3,1],[-1,-1]],[[2233,4807],[-2,1],[6,1],[-4,-2]],[[2227,4808],[-1,4],[3,-2],[-1,-1],[-1,-1]],[[2232,4809],[-2,3],[5,-1],[-3,-2]],[[2236,4812],[-1,1],[-1,0],[3,1],[-1,-2]],[[2234,4815],[-2,-1],[4,1],[-2,0]],[[2242,4819],[-3,1],[6,2],[-3,-3]],[[2246,4825],[-1,4],[3,-1],[0,-1],[-2,-2]],[[2231,4827],[2,-1],[-8,1],[8,5],[-2,-5]],[[2249,4834],[-1,3],[4,5],[4,-2],[-7,-6]],[[2230,4839],[-1,2],[2,1],[-1,-3]],[[2223,4872],[-1,1],[3,6],[10,-3],[-12,-4]],[[1575,4892],[-3,0],[-1,2],[5,-2],[-1,0]],[[2213,4930],[2,0],[5,0],[-11,-3],[2,3],[-3,1],[5,-1]],[[2241,4929],[-8,4],[-1,1],[13,-5],[-4,0]],[[2225,4937],[-7,1],[-7,8],[7,0],[7,-9]],[[2238,4941],[-2,0],[-6,8],[9,-8],[-1,0]],[[1779,4949],[-5,0],[-1,2],[7,-2],[-1,0]],[[1785,4940],[-24,5],[-2,5],[7,3],[23,-12],[-4,-1]],[[1830,4956],[-3,2],[-6,3],[11,-3],[-2,-2]],[[1861,4965],[22,-10],[-9,-6],[4,-4],[-4,-1],[-38,20],[25,1]],[[1942,4965],[-1,0],[-3,1],[2,1],[2,-2]],[[1806,4969],[-2,0],[5,0],[-3,0]],[[1839,4970],[-10,0],[-2,2],[14,-2],[-2,0]],[[1855,4971],[-5,1],[-7,3],[12,-4]],[[1950,4977],[-11,3],[-3,3],[18,-3],[-4,-3]],[[1945,4977],[-9,1],[-13,5],[9,0],[13,-6]],[[1967,4982],[-3,0],[-1,1],[9,0],[-5,-1]],[[1942,4985],[-1,0],[-5,0],[7,0],[-1,0]],[[1930,4985],[-7,0],[-1,0],[8,0]],[[1915,4986],[-4,0],[-1,0],[7,0],[-2,0]],[[1927,4988],[-5,0],[-1,1],[3,0],[3,-1]],[[1949,4987],[14,-5],[-28,5],[2,3],[12,-3]],[[1959,4988],[-4,0],[-6,1],[6,3],[4,-4]],[[1936,4321],[-1,-8],[4,-4],[-6,1],[-10,-2],[-1,-2],[14,-5],[-4,-6],[3,-1],[2,-8],[-15,3],[12,-10],[-6,0],[2,-4],[-1,0],[-4,6],[2,-6],[-5,3],[7,-6],[-8,8],[-3,-3],[6,-12],[-8,5],[7,-8],[-3,0],[-6,6],[2,-6],[6,-2],[-2,-5],[-8,-1]],[[1912,4254],[0,5],[-3,-8],[-9,1],[14,-13],[-11,4],[10,-9],[-4,-11],[6,2],[-5,-3],[4,-2]],[[1914,4220],[-2,-4],[-6,2],[-2,-1],[8,-5],[-2,-3],[-9,1],[8,-2],[0,-6],[-10,-1],[8,-3],[1,-2],[-7,0],[7,-3],[-14,1],[12,-3],[-4,-6],[-6,2],[9,-5],[-10,1],[11,-5],[-5,-7],[-3,2],[1,-3],[-6,9],[1,-6],[-8,2],[12,-6],[-4,-5],[6,4],[1,-6],[-3,-1],[3,0],[-1,-5],[-13,4],[2,4],[-2,3],[0,-3],[-5,-5],[-2,-6],[-7,3],[4,4],[5,13],[-10,-15],[8,22],[-8,-11],[1,7],[-5,-5],[2,7],[-3,-8],[-2,6],[-4,-2],[4,4],[-2,0],[8,8],[-2,3],[-4,-8],[-7,-1],[10,9],[4,7],[-3,-4],[-1,5],[-2,-8],[-6,-3],[6,8],[-3,3],[1,4],[-3,-4],[2,-2],[-1,-3],[-4,-4],[-3,4],[0,-1],[-2,-1],[0,-4],[-4,1],[2,-2],[-2,-3],[-1,5],[-1,1],[-11,-3],[6,-1],[-1,-1],[-8,1],[-3,-1],[7,6],[-10,0],[8,2],[-5,5],[4,5],[-7,-7],[2,2],[-5,2],[4,4],[-10,1],[12,5],[-2,3],[-8,-5],[-5,3],[10,3],[-8,3],[5,9],[-6,-9],[-2,2],[2,4],[-3,-2],[8,9],[-3,0],[1,5],[-2,-7],[-7,-1],[-1,4],[4,-1],[2,3],[-5,-1],[4,4],[-7,-1],[-6,10],[5,12],[-5,-5],[2,8],[6,5],[-6,-5],[-3,-5],[3,8],[-6,-1],[0,4],[7,5],[-7,0],[-3,-1],[-1,-2],[1,4],[-3,-3],[-1,6],[11,2],[-13,1],[7,4],[-5,3],[8,0],[0,2],[-8,0],[-1,-2],[0,-4],[-5,7],[8,8],[-7,-4],[1,5],[-3,3],[22,6],[-8,-1],[2,4],[-14,-8],[-4,4],[11,1],[1,2],[-2,0],[2,6],[7,-2],[3,3],[-6,0],[2,3],[-6,3],[8,2],[2,-7],[8,-5],[-7,7],[1,6],[-3,1],[3,5],[-8,-4],[-1,8],[-4,8],[4,-16],[-7,-5],[2,5],[-3,0],[-6,-16],[-5,-4],[-1,6],[1,8],[-1,4],[12,11],[-14,-7],[3,6],[-4,3],[3,6],[-3,-1],[2,4],[-5,-5],[0,5],[11,9],[-2,2],[3,2],[16,1],[-13,2],[-7,-4],[0,-4],[-7,-6],[-2,4],[2,5],[-5,-3],[3,4],[-2,-1],[1,6],[-2,-4],[-6,0],[5,4],[-5,-2],[8,7],[5,-2],[7,3],[0,3],[-7,-5],[-4,3],[-8,-5],[-1,2],[5,4],[-6,-3],[-2,1],[5,2],[-5,0],[19,17],[12,12],[13,0],[-9,4],[13,1],[-9,2],[5,2],[-12,-6],[-32,-29],[-2,2],[7,5],[-7,-2],[0,9],[17,2],[-15,3],[12,2],[-8,2],[5,1],[-4,-1],[2,4],[9,-2],[1,1],[-3,3],[-16,0],[-3,2],[8,1],[-8,2],[4,1],[2,1],[-8,-1],[25,10],[9,-1],[5,-7],[11,2],[-11,-2],[-5,8],[5,2],[-29,-3],[-8,-5],[-1,3],[3,6],[17,12],[24,-10],[9,0],[-11,3],[13,4],[-18,0],[11,5],[-5,3],[2,-2],[-7,-4],[-2,4],[5,1],[-2,3],[-7,-1],[4,-5],[-6,-4],[-1,1],[3,2],[-10,2],[10,5],[-19,-8],[-9,-9],[-2,4],[3,2],[0,2],[-1,3],[9,6],[-3,2],[1,1],[5,-3],[7,-2],[3,2],[-20,6],[2,2],[13,-5],[-6,4],[13,-5],[10,1],[8,-6],[6,2],[-18,9],[7,-1],[-4,4],[1,4],[5,4],[-12,-3],[6,-5],[-16,-4],[-14,6],[4,-1],[9,8],[22,3],[-2,4],[5,4],[-9,-3],[5,6],[-2,0],[0,7],[12,-6],[-6,6],[7,2],[-4,1],[1,5],[-10,-5],[3,9],[9,2],[-9,-1],[1,6],[6,-2],[-6,4],[9,2],[-2,4],[-4,2],[5,3],[-29,1],[-32,22],[8,6],[18,-3],[29,-15],[2,7],[-7,-3],[1,1],[-5,4],[10,2],[-12,4],[11,0],[-18,10],[14,-1],[-7,3],[3,2],[-14,0],[10,5],[-2,3],[-12,-6],[3,3],[2,4],[11,4],[-22,-3],[16,7],[2,4],[-22,0],[5,4],[3,6],[-9,-6],[-1,7],[-6,11],[4,1],[-6,-1],[8,-17],[-7,-4],[2,-4],[-5,3],[4,-6],[-1,-4],[-13,-3],[-6,5],[2,-4],[-3,0],[-5,9],[2,0],[-5,2],[15,8],[4,5],[2,6],[-6,-10],[-6,0],[-4,2],[12,13],[-13,4],[19,0],[-10,2],[5,4],[-3,0],[3,5],[-4,0],[4,2],[-3,7],[-12,1],[8,5],[-5,2],[6,4],[-14,10],[6,3],[-4,5],[4,0],[-7,5],[2,1],[-6,1],[4,8],[-17,-6],[15,6],[-6,2],[8,2],[-9,2],[8,4],[-11,4],[-3,4],[5,1],[-2,4],[-16,4],[3,5],[-6,3],[1,5],[-6,-2],[7,4],[-3,4],[2,3],[-4,1],[2,1],[-9,0],[-2,6],[-8,-3],[3,4],[-16,3],[-2,6],[-19,5],[-7,-3],[-9,6],[-5,-8],[-5,0],[-3,7],[-5,-3],[1,-5],[-10,2],[1,-4],[-3,-2],[-5,3],[4,5],[-3,1],[-6,1],[-3,-7],[-7,6],[-5,-3],[12,-10],[-29,7],[-15,10],[22,11],[-29,4],[8,7],[-2,1],[-12,-8],[-12,9],[17,7],[23,-3],[29,-1],[4,2],[-41,3],[21,4],[19,-5],[-6,6],[8,3],[-9,7],[-23,-7],[-4,6],[-2,0],[3,-5],[-9,-2],[-15,4],[11,4],[1,2],[-16,-2],[9,5],[-19,-2],[-2,1],[4,2],[-26,11],[8,4],[-5,1],[4,8],[52,11],[-5,3],[12,5],[32,2],[16,15],[-3,17],[18,5],[-6,4],[-10,-7],[-30,0],[-6,5],[0,5],[53,29],[13,-14],[-8,14],[32,-1],[2,2],[-6,6],[8,6],[-10,9],[9,4],[27,0],[3,-7],[30,-12],[-41,23],[49,10],[11,-4],[-7,5],[16,3],[13,-9],[0,-8],[-4,-7],[3,-7],[2,0],[-1,6],[8,6],[-1,6],[2,1],[38,-15],[8,1],[-21,10],[23,0],[-17,9],[-6,11],[11,1],[54,-15],[25,-12],[6,3],[-10,5],[6,4],[-5,3],[3,3],[32,-2],[-21,5],[1,2],[-28,13],[50,0],[7,-10],[1,6],[-4,3],[5,0],[24,-12],[-3,6],[1,4],[-3,1],[-28,5],[-53,0],[-13,4],[13,-2],[-10,4],[9,3],[13,-6],[24,-1],[-30,8],[37,-1],[-15,4],[18,2],[13,-3],[-3,-4],[4,2],[15,-6],[16,0],[12,-8],[-8,9],[26,1],[-21,1],[26,4],[-25,2],[-2,1],[0,7],[15,-3],[-4,3],[6,2],[17,-5],[-7,5],[35,4],[7,-5],[2,1],[-5,3],[26,1],[-1,-1],[29,1],[63,-11],[-18,-5],[-43,0],[-26,-4],[-20,4],[13,-4],[-44,-5],[4,-1],[-3,-4],[1,-1],[8,6],[13,0],[1,-4],[5,5],[26,0],[22,7],[26,-3],[42,4],[6,-6],[-16,-8],[26,5],[2,-1],[-2,-4],[9,3],[29,-9],[-17,-10],[-36,-6],[-91,2],[24,-4],[-44,-12],[1,-4],[56,12],[53,0],[-4,-8],[-30,-10],[6,-3],[-5,0],[3,-1],[43,12],[3,11],[24,3],[4,-6],[0,-7],[-3,-10],[-10,-6],[2,-1],[-24,-26],[12,7],[1,6],[51,28],[-5,-8],[31,0],[6,5],[-4,5],[8,-1],[-3,5],[12,3],[26,0],[37,-12],[-26,-16],[-13,-1],[-3,-1],[7,-5],[-19,-8],[-27,3],[-8,-7],[-21,2],[-17,-3],[53,1],[19,-4],[-14,-10],[-36,2],[-12,-6],[3,-1],[-6,-8],[6,-4],[6,3],[-5,2],[3,3],[11,5],[25,-2],[-11,-11],[-14,1],[-5,-4],[-2,-8],[2,-3],[-3,-7],[4,6],[6,-1],[-1,-3],[2,-1],[-4,-1],[2,4],[-3,0],[-9,-8],[2,-3],[-1,-3],[-17,-3],[4,-4],[-7,-2],[7,0],[-6,-12],[1,-3],[-7,-3],[5,-1],[-9,-15],[9,-1],[-4,-4],[2,1],[10,16],[7,-5],[15,-4],[4,-5],[-18,4],[-9,-3],[9,-4],[-3,1],[-2,-1],[3,-1],[-9,1],[15,-3],[-11,-2],[15,-1],[4,-5],[14,4],[4,-14],[-3,-6],[-33,7],[-5,-2],[7,-1],[-16,-1],[11,-1],[-10,-7],[-8,7],[-7,-5],[5,-7],[2,4],[6,-1],[1,-3],[-4,-2],[5,1],[-4,-2],[-7,2],[-1,-1],[4,-2],[9,1],[-2,-7],[26,0],[2,-6],[-32,-3],[30,-3],[7,-18],[-2,-7],[-6,-2],[-3,7],[-8,-2],[-11,9],[-10,5],[11,-8],[-15,3],[15,-4],[13,-10],[-10,-1],[-7,-5],[-3,4],[-7,3],[10,-8],[15,4],[-2,-8],[2,-4],[-7,-2],[24,0],[2,-5],[4,-2],[-10,-9],[-9,8],[-13,1],[-5,-1],[-6,5],[4,-6],[-10,-4],[6,-1],[-1,-6],[-5,-1],[7,-3],[2,-13],[2,2],[-3,11],[2,2],[21,-6],[-4,-6],[3,-7],[-2,-3],[-15,1],[-11,-8],[-16,7],[-7,9],[18,-5],[8,2],[-8,-2],[-18,9],[-6,-4],[0,-6],[-17,15],[14,-16],[-9,-1],[-10,-8],[-18,9],[-2,-2],[15,-7],[-19,-4],[5,-1],[-1,-7],[3,7],[11,3],[20,-4],[-2,-6],[-12,-5],[-9,3],[-10,-1],[15,-4],[-2,-5],[12,9],[11,-4],[3,-7],[-18,-4],[8,-1],[-3,-9],[5,8],[8,2],[29,-19],[-9,-9],[10,6],[-3,-8],[10,6],[-8,-7],[0,-10],[10,9],[2,-4],[-2,-3],[3,0],[-5,-2],[3,-4],[-9,-4],[9,1],[0,-9],[-3,-1],[4,0],[1,-3],[-3,0],[2,-2],[-2,-3],[4,-1],[-12,-4],[-2,15],[-2,-14],[-10,-1],[-9,8],[-2,13],[-8,11],[-5,-1],[-7,9],[-19,1],[-10,13],[-13,7],[4,-4],[-2,-3],[16,-8],[-16,-6],[15,2],[28,-9],[-2,-5],[-3,1],[2,-3],[-12,-7],[-14,-1],[-5,8],[-1,-1],[4,-7],[-11,2],[7,-4],[-6,-11],[-12,-6],[13,4],[1,-5],[20,4],[6,-4],[-31,-12],[17,-3],[6,10],[8,-1],[15,7],[-1,-4],[45,-6],[-17,-9],[5,-2],[-1,-2],[-13,0],[5,-5],[-3,-4],[-8,3],[4,-4],[-8,-3],[0,-5],[-8,1],[3,-4],[-4,-6],[-4,3],[2,-4],[-13,-11],[-17,-7],[-6,3],[1,-4],[-12,-5],[-5,3],[1,-4],[-3,-3],[-7,8],[-5,-6],[3,-5],[-10,5],[-1,0],[5,-7],[-16,0],[-2,1],[1,3],[-1,1],[3,1],[-7,1],[-7,13],[0,-6],[5,-9],[-3,1],[0,-1],[5,-4],[-2,-8],[-15,-6],[2,-2],[-3,-9],[-4,-1],[3,-4],[-8,-9],[-4,-15],[-3,6],[1,-7],[-5,-8],[-3,-2],[-2,5],[-2,-4],[3,-2],[-2,0],[-9,7],[4,-7],[-1,-5],[-10,-7],[0,6],[-3,0],[0,-3],[-6,-6],[-1,8],[-2,-10],[-9,9],[9,12],[-13,1],[6,-4],[-4,-1],[2,-2],[-3,-10],[-6,4],[5,-8],[-2,-6],[-7,2],[2,-4],[-6,-1],[-4,6],[2,-5],[-6,4],[-3,-7],[-3,3],[-2,-3],[6,-3],[-2,-1],[2,-5],[-6,-8],[-5,4],[-8,-6],[8,-10]],[[2620,3712],[0,1],[0,-1],[0,0]],[[2594,3924],[-1,-1],[-1,0],[1,2],[1,-1]],[[2596,3926],[-1,0],[3,1],[-2,-1]],[[2600,3928],[-1,0],[3,0],[-2,0]],[[2613,3928],[-1,0],[1,1],[0,-1]],[[2605,3929],[-2,0],[0,1],[2,-1]],[[2607,3930],[-1,0],[2,0],[-1,0]],[[2616,3936],[0,1],[1,0],[-1,-1]],[[2659,3937],[-1,0],[-1,1],[2,1],[0,-2]],[[2660,3940],[-1,0],[2,2],[-1,-2]],[[2697,3936],[0,-2],[-6,-1]],[[2691,3933],[4,5],[-4,6],[3,-3],[3,-5]],[[2623,3955],[-1,1],[2,1],[-1,-2]],[[2657,3953],[-3,0],[-2,2],[3,2],[2,-4]],[[2620,3956],[-1,0],[0,1],[1,1],[0,-2]],[[2681,3956],[0,3],[1,1],[0,-1],[-1,-3]],[[2685,3961],[4,-2],[-1,-4],[2,-3],[0,-4],[-8,2],[2,2],[-2,6],[5,-2],[-4,2],[2,3]],[[2616,3964],[0,-3],[0,-1],[-1,2],[1,2]],[[2616,3964],[2,1],[0,-2],[-1,0],[-1,1]],[[2652,3952],[2,-7],[-5,-5],[1,-6],[4,5],[4,-4],[15,20],[6,-1],[-6,-2],[-2,-4],[9,5],[6,-11],[4,2],[1,-11]],[[2691,3933],[7,-5]],[[2698,3928],[1,-20],[-3,-10],[7,-11],[-2,-6],[3,-12],[-2,-9]],[[2702,3860],[2,-10],[3,-3],[0,-14],[-2,-9]],[[2672,3784],[3,-10],[15,-19],[1,-10],[-5,-1]],[[2642,3701],[-6,8],[-18,7]],[[2618,3716],[-2,-3]],[[2616,3713],[3,-2],[0,-2]],[[2619,3709],[-14,-1]],[[2593,3765],[-5,11]],[[2588,3776],[2,12]],[[2590,3788],[-6,9],[4,14],[-7,21]],[[2581,3832],[5,12],[-4,16]],[[2582,3860],[11,3],[0,8],[4,4],[0,8],[-5,3],[5,4]],[[2597,3890],[3,21]],[[2600,3911],[2,2],[-5,3],[3,10],[11,2],[1,-10],[3,0],[0,6],[3,-9],[-1,12],[3,8],[8,-2],[4,-9],[4,-2],[-7,11],[-6,3],[-1,3],[3,2],[-3,3],[1,5],[-4,1],[6,6],[-6,13],[-4,0],[0,-4],[0,5],[1,6],[1,-5],[20,-4],[2,-9],[-2,-3],[15,-3]],[[2835,3252],[0,-1],[-2,1],[1,1],[1,-1]],[[2831,3276],[4,3],[-1,-4],[3,-5],[20,0],[1,-9],[7,7],[0,-6],[-3,-5],[-19,-2],[0,6],[-5,3],[-12,4],[1,12],[2,-4],[0,6],[2,-6]],[[2820,3298],[-2,3],[0,6],[2,-5],[0,-4]],[[2821,3338],[-1,1],[1,0],[0,-1]],[[2790,3358],[1,-4],[-2,-2],[-3,8],[4,-2]],[[2786,3379],[3,-10],[-1,-2],[-6,4],[3,11],[1,-3]],[[2786,3379],[0,4],[2,-5],[-1,-2],[-1,3]],[[2786,3386],[-1,4],[2,5],[0,-8],[-1,-1]],[[2825,3396],[8,-17],[-5,1],[-6,15],[-5,0],[6,7],[2,-6]],[[2829,3404],[-1,0],[-1,4],[3,-3],[-1,-1]],[[2826,3407],[-1,-1],[-1,0],[1,2],[1,-1]],[[2831,3406],[-1,0],[2,5],[0,-1],[-1,-4]],[[2869,3485],[-4,-4],[1,-10]],[[2866,3471],[-4,-8],[-13,10],[-20,-10],[2,-12],[-2,-2],[4,-14],[-8,12],[-1,-5],[5,-8],[-5,2],[-1,9],[-6,6],[1,9],[-5,-6],[0,-17],[11,-30],[-2,-2],[-2,-1],[2,3],[-4,7],[-2,-6],[4,-6],[-8,-6],[11,-8],[1,-4],[10,-12],[-15,-11],[2,-21],[0,5],[-6,5],[7,-41],[-8,13],[-2,-15],[-5,23],[-8,5],[1,10],[-7,15],[3,13],[4,-3],[4,7],[13,-14],[5,8],[-11,10],[-1,-4],[-6,3],[-5,-4],[-3,5],[-3,-5],[-2,13],[-4,5],[1,4],[4,-2],[1,5],[-4,4],[-2,-6],[-4,31],[-1,6]],[[2792,3457],[-1,10],[8,1]],[[2799,3468],[6,9],[10,1]],[[2815,3478],[1,7],[20,8]],[[2851,3481],[9,3],[3,4],[-1,10]],[[2862,3498],[3,0],[3,-4],[1,-9]],[[1221,2544],[-2,6],[7,29],[18,1],[0,12],[-14,29],[6,1],[0,20],[26,0]],[[1262,2642],[-1,-69]],[[1261,2573],[8,-7],[1,9],[5,-8],[-13,-23]],[[1262,2544],[-1,-18],[-5,-6]],[[1248,2496],[-7,7],[-10,1],[-12,20],[2,20]],[[2296,2416],[13,7],[0,11],[-4,5],[5,6],[-1,13]],[[2309,2458],[9,-2]],[[2318,2456],[0,-6],[2,3],[8,-9]],[[2328,2444],[13,5],[-1,-9],[2,-6],[6,7]],[[2348,2441],[4,-11],[4,12],[9,-7],[5,8],[-1,7],[3,1],[5,-17],[0,-13]],[[2377,2421],[6,-10],[-4,-15]],[[2379,2396],[5,2],[1,-18]],[[2385,2380],[4,-9],[-3,-11]],[[2386,2360],[0,-15],[6,-16]],[[2392,2329],[-3,-10],[4,-6],[0,-9]],[[2393,2304],[-7,4],[-1,-9]],[[2385,2299],[4,-8]],[[2389,2291],[-1,0],[-2,-16],[-7,4],[-2,-15]],[[2377,2264],[-4,-3],[-3,9],[-2,-3],[2,14],[-2,22],[-3,5]],[[2365,2308],[-9,0],[-5,-7]],[[2351,2301],[3,15],[-1,12],[-3,1],[2,8]],[[2352,2337],[-8,24],[-17,-3]],[[2327,2358],[-4,-17]],[[2323,2341],[-6,-13],[-3,0],[-2,18],[-2,0],[1,6],[-2,1],[0,5],[0,2],[-2,-3],[-8,15],[-1,8],[-2,-1],[2,13],[-3,-7],[-1,9],[1,2],[0,3],[-2,-2],[-1,-8],[-2,4],[6,23]],[[1688,2251],[0,2],[2,0],[-2,-2]],[[1703,2194],[2,-5]],[[1705,2189],[-10,-11],[-2,-31]],[[1693,2147],[6,-23],[5,1],[1,-20],[7,-29],[3,-3]],[[1715,2073],[-12,1],[-3,-10],[-6,-6]],[[1683,2046],[-13,24]],[[1670,2085],[-2,4],[-1,17],[2,24]],[[1671,2161],[-7,5],[2,21],[-2,5],[-8,-2]],[[1656,2190],[-9,26]],[[1647,2216],[3,9]],[[1650,2225],[1,19],[5,2],[6,10]],[[1662,2256],[-4,5],[-2,13]],[[1656,2274],[13,25],[-3,10],[3,-7],[10,-11],[9,-24],[-3,-33],[5,17],[15,-28],[-2,-29]],[[1478,2650],[-1,0],[-1,2],[2,0],[0,-2]],[[1476,2669],[-1,1],[0,1],[1,0],[0,-2]],[[1488,2673],[-5,5],[-1,4],[6,-4],[0,-5]],[[1503,2650],[-4,7],[-11,-4],[-8,5],[-6,-9],[-8,12],[0,9],[2,2],[21,-8],[6,3],[0,6],[-6,12],[1,16],[-11,8],[5,8],[6,0],[13,-8],[1,-34],[-4,-5]],[[1491,2720],[-3,1],[-2,1],[2,1],[3,-3]],[[1283,2480],[0,-2],[-1,0],[0,1],[1,1]],[[1283,2480],[-1,1],[1,2],[0,-3]],[[1345,2541],[-5,0],[-14,-14]],[[1326,2527],[-6,7],[-3,-17],[-8,-18],[-4,8],[-4,-10],[-6,-1],[1,-16],[-3,-2]],[[1293,2478],[-2,-9],[-4,0],[-3,10],[2,5],[-6,0],[2,15],[-2,2],[-5,4],[-4,-5]],[[1271,2500],[-12,21],[3,9],[0,14]],[[1262,2544],[17,28],[21,-4],[7,9],[22,-6],[6,-14],[-5,4],[2,-7],[3,-4],[-1,5],[2,-7],[4,3],[-1,-4],[1,4],[-2,3],[4,-4],[3,-9]],[[1293,2580],[-1,-1],[0,1],[1,1],[0,-1]],[[1297,2587],[3,5],[2,0],[-2,-1],[-3,-4]],[[1306,2591],[1,4],[1,0],[-1,-2],[-1,-2]],[[2734,3534],[-1,1],[0,1],[2,0],[-1,-2]],[[2746,3533],[-5,2],[-1,2],[1,0],[5,-4]],[[2733,3543],[3,0],[2,-2],[-8,2],[3,0]],[[2740,3544],[15,-14],[2,-7],[-21,23],[4,-2]],[[2729,3552],[3,-2],[6,-1],[-7,-1],[-4,3],[2,1]],[[2727,3556],[5,1],[2,-3],[-5,0],[-2,2]],[[2727,3556],[-2,2],[-1,1],[2,-1],[1,-2]],[[2706,3602],[2,-3],[-1,0],[4,-7],[-1,-1],[-6,14],[2,-3]],[[2706,3605],[-3,3],[1,1],[1,-2],[1,-2]],[[2700,3613],[-2,0],[1,0],[-1,9],[2,-9]],[[2704,3614],[-4,5],[1,5],[4,-9],[-1,-1]],[[2730,3669],[15,-23]],[[2745,3646],[10,-3],[6,6]],[[2761,3649],[2,-5],[-1,-8],[3,-2],[-2,-5],[6,-5],[-3,-1]],[[2766,3623],[-3,-12],[-10,10],[-6,-3]],[[2726,3616],[-4,8],[-3,-2],[-1,-13]],[[2739,3561],[6,-18],[-17,20],[-6,-1],[-1,7],[-9,23],[-6,13]],[[2706,3605],[0,15],[-8,8],[-5,-20],[-6,25],[12,0],[3,7]],[[2702,3640],[3,-7],[5,-2],[2,12],[5,3],[0,14],[9,11],[4,-2]],[[2745,3646],[-16,24],[-3,12],[-3,1],[6,5]],[[2736,3713],[3,11]],[[2739,3724],[7,-10],[13,1],[2,2],[0,8],[9,1],[2,6],[4,-4]],[[2776,3728],[12,16],[9,0]],[[2797,3744],[5,-8],[7,2],[8,-13],[-1,-8],[-11,-11],[-11,-44]],[[2794,3662],[-8,-6],[-15,2]],[[2771,3658],[-10,-9]],[[2290,4373],[-1,-1],[7,-4],[-3,-9],[7,1],[-3,-10],[4,6],[9,-5],[-1,-7],[2,-2],[-6,-3],[7,-4],[-7,0],[4,-5],[-5,0],[4,-3],[-3,-4],[-7,2],[2,-4],[-3,-3],[2,-2],[-1,-5],[-6,-5],[-6,4],[-15,-17],[-20,-6],[-1,-7],[-10,-5],[-21,5],[-5,6],[3,2],[-12,4],[2,3],[-23,-5],[0,10],[9,-2],[5,5],[-2,2],[1,4],[6,1],[-10,-2],[1,7],[7,5],[-9,-7],[-4,13],[-20,-3],[-3,6],[31,5],[2,6],[-12,-1],[12,10],[-9,1],[3,4],[-24,-7],[-9,3],[3,5],[7,-4],[-4,4],[4,-1],[-4,7],[8,-6],[4,4],[-9,4],[9,-1],[-8,7],[6,-1],[-4,4],[3,3],[11,-5],[0,-8],[2,5],[1,-4],[-1,8],[-6,5],[7,2],[-11,3],[4,4],[7,-1],[11,-15],[3,0],[-2,-2],[4,-1],[-1,-7],[-6,1],[7,-6],[3,-16],[0,11],[2,5],[4,3],[3,-7],[2,8],[-2,13],[3,2],[10,-15],[0,12],[10,5],[10,-20],[-4,20],[10,-7],[7,8],[7,-4],[-1,2],[4,4],[-2,8],[7,1],[9,-14],[6,9],[3,-1],[-5,-8]],[[3624,2567],[-2,3],[1,1],[1,-3],[0,-1]],[[3698,2722],[0,-1],[-1,0],[0,1],[1,0]],[[3734,2775],[-1,0],[0,2],[1,-1],[0,-1]],[[3509,2778],[-1,0],[0,1],[2,0],[-1,-1]],[[3723,2778],[-1,2],[1,7],[1,-3],[-1,-6]],[[3730,2786],[0,3],[1,-1],[-1,-2]],[[3723,2786],[-1,2],[1,2],[0,-2],[0,-2]],[[3587,3245],[9,-11],[-3,-10]],[[3593,3224],[1,-19],[8,-15]],[[3613,3099],[12,-13],[-9,-17]],[[3616,3069],[-5,-32],[16,-17],[1,-7],[8,-11]],[[3636,3002],[12,-6],[1,-7],[7,-6]],[[3656,2983],[2,5],[6,-4],[4,5],[7,-7],[0,-10],[9,-11],[5,5],[3,-10],[2,3],[10,-9],[4,4],[3,-5],[9,3],[2,-4]],[[3722,2948],[2,14],[-3,13]],[[3721,2975],[2,30],[7,6]],[[3730,3011],[4,-9],[-2,-12]],[[3734,2982],[-2,-6]],[[3759,2963],[14,1],[5,3]],[[3778,2967],[1,14],[-2,7]],[[3777,2988],[-5,0],[0,10]],[[3772,2998],[13,4],[2,10]],[[3841,3035],[-3,-14],[10,-1],[4,-14],[-7,-13]],[[3787,2797],[-2,-6],[-4,62]],[[3768,2831],[-3,20],[3,16]],[[3780,2896],[4,-1],[-1,5],[-5,6]],[[3733,2944],[-6,14],[-1,-6]],[[3733,2826],[4,-48],[-4,1],[-2,-3],[0,23],[-2,-14],[0,-9],[-1,14],[0,-12],[-2,0],[-1,7],[0,-9],[-1,21],[-4,10],[4,-12],[-5,-14],[-12,-11],[-2,-9],[3,-17],[-8,-25],[-2,3]],[[3698,2722],[-2,1],[3,-4],[-13,-11],[2,6],[-2,2],[-4,-13],[1,5],[2,-2],[-9,-17],[-9,-30],[-24,-43],[-1,-18],[-8,-10],[-5,2],[-4,-21],[-2,9],[-1,-10],[-2,5],[-6,-7],[-3,-23],[4,-58],[-3,10],[-1,-4],[4,-10],[-2,-31],[-6,-29],[1,-49],[-7,0],[-6,-29],[2,-5],[4,-3],[2,-4],[-7,5],[-8,-7],[-3,-6],[-2,-20],[-7,-10],[-7,10],[-6,19],[1,4],[-2,-1],[-2,11],[-2,25],[2,-16],[2,0],[-11,68],[-7,21],[-6,30],[-5,58],[-5,12],[-4,21],[2,0],[-7,24],[-8,93],[3,13],[-4,-3],[0,13],[4,-3],[-4,6],[-1,17],[3,33],[-1,12],[-3,-1],[1,4],[-2,6],[8,14],[-8,-3],[2,11],[-3,0],[1,8],[5,2],[-11,1],[3,-5],[-4,-7],[2,-4],[-3,0],[4,-8],[-2,-15],[-18,-18],[-11,16],[-15,41],[2,7],[2,-7],[13,9],[5,16],[-1,5],[-1,-7],[-9,-7],[-7,3],[-11,22],[-1,7],[5,8],[-8,-9],[2,12]],[[3448,2861],[6,1],[1,13],[17,-5],[7,9]],[[3479,2879],[3,-7],[5,6]],[[3487,2878],[-6,46],[-6,1],[-2,9],[1,20],[-9,8]],[[3465,2962],[1,15],[11,30]],[[3477,3007],[3,0],[3,-11],[15,9],[7,30],[7,9],[7,32],[7,7],[-1,9],[12,24],[-3,4],[1,26],[11,12],[-4,9],[-5,0],[-1,11],[-4,0],[0,8],[-5,7],[3,11],[-3,9],[4,8],[-5,3],[1,6],[-3,6],[2,9],[6,5],[18,-10],[11,9],[6,-4],[2,16],[11,14]],[[3580,3275],[4,-1],[3,-29]],[[3250,2952],[-1,1],[-1,1],[2,1],[0,-3]],[[3240,2964],[-2,0],[0,1],[2,0],[0,-1]],[[3282,2965],[0,2],[1,0],[0,-1],[-1,-1]],[[3273,2965],[0,-1],[-1,0],[1,4],[0,-3]],[[3281,2968],[-4,-7],[-10,-6],[7,8],[0,6],[7,-1]],[[3284,2972],[-1,2],[1,1],[0,-2],[0,-1]],[[3130,3401],[16,-5]],[[3146,3396],[20,31],[5,-12]],[[3178,3381],[3,-29],[15,-9],[2,-9],[10,-13],[12,-7],[29,13],[-5,-3],[6,-1],[0,4],[-2,15]],[[3248,3342],[11,3],[2,11],[8,12]],[[3269,3368],[13,0],[1,6]],[[3283,3374],[5,1],[6,0]],[[3294,3375],[2,-10],[12,-12],[15,-4]],[[3323,3349],[2,-11],[8,-7],[4,-14],[12,0]],[[3349,3317],[2,-40],[-5,-32],[-3,-5]],[[3345,3074],[14,-47],[12,-11],[0,-36],[6,0],[2,-5],[-2,-17],[-11,-3],[-2,-7],[-6,-5],[-3,-37]],[[3355,2906],[-2,-4],[-12,7],[-1,6],[-2,-2],[1,-4],[-32,10],[-3,5],[-9,3],[-4,38],[-3,10],[-9,2],[-19,-24],[-7,8],[-7,-1],[-16,23],[-2,11],[-14,11],[-6,28],[-3,7],[2,5],[-4,3],[0,12],[-9,26],[-6,-7],[-8,10],[-1,3],[5,2],[-4,3],[-2,-6],[1,-11],[-6,-2],[-1,8],[-6,10]],[[3166,3096],[1,18],[-5,0],[2,29],[-6,21],[-18,21],[1,10],[-11,26],[2,12],[-2,5],[4,4],[-1,6]],[[3133,3248],[4,13],[4,1]],[[3141,3262],[-2,20],[4,4],[-8,1]],[[3135,3287],[-5,6],[-2,14],[-6,15],[1,8]],[[3123,3330],[-4,15]],[[3119,3345],[0,10],[-5,6],[3,16],[-2,2],[0,16],[-4,20],[5,1],[3,13]],[[3119,3429],[5,-13],[6,-15]],[[2989,3142],[0,1],[0,-1],[0,0]],[[2994,3195],[-1,-31]],[[2993,3164],[-5,6],[-3,-14],[0,-12]],[[2985,3144],[3,-3]],[[2988,3141],[-4,-13],[8,2],[-8,-70]],[[2984,3060],[-9,62],[4,11]],[[2979,3133],[8,56]],[[2987,3189],[4,-1],[3,7]],[[2672,3676],[18,-5]],[[2690,3671],[-5,-9],[4,-4],[-2,-6],[6,-13]],[[2693,3639],[-11,4],[-1,-4],[-11,-6],[-2,-8],[6,-11],[-4,-8],[2,-19],[17,-23],[5,-32],[10,-21],[6,-5],[14,-1],[0,-4],[-4,-6],[1,-5],[29,-30],[7,-18],[-3,-13],[-4,5],[-3,13],[-9,4],[2,3],[-6,-1],[-6,-25],[10,-13],[0,-15],[-8,-6],[0,-14],[-7,-18],[-6,3],[0,8],[4,11],[-2,4],[5,4],[1,6],[-8,40],[-4,-1],[-6,8],[1,6],[-3,10],[-5,2],[-10,19],[-10,0],[-19,37],[-7,9],[-8,18],[-6,34],[-19,15],[-9,-19],[-8,-4]],[[2604,3572],[2,14],[-4,-1],[-7,9]],[[2599,3629],[-5,17],[15,3]],[[2609,3649],[8,19],[0,-8]],[[2617,3660],[8,-14],[4,24],[3,-7],[6,2]],[[2638,3665],[2,-5],[-1,11],[6,0],[0,12],[7,-4]],[[2655,3686],[14,4],[-1,-2],[4,-12]],[[2673,3576],[0,2],[0,2]],[[2673,3580],[-1,-2],[1,-2]],[[2632,3478],[1,-6],[-2,-2],[5,-14],[-3,-10],[1,-8],[-2,-32],[-7,4],[0,-8],[-2,-5],[-5,6],[-2,-4],[0,15],[2,18],[-2,1],[0,21],[-3,4],[0,11],[6,-2],[8,14],[5,-3]],[[2615,3475],[-1,-1],[0,-2],[1,5],[0,-2]],[[2615,3404],[-1,1],[0,2],[1,1],[0,-4]],[[2715,3370],[-6,-24],[3,-16],[-3,-13],[-27,30],[-7,2],[-3,9],[2,9],[5,-1],[5,7],[7,-9],[26,11],[-2,-5]],[[2433,2189],[9,4],[2,-2],[-11,-3],[0,1]],[[2433,2189],[-7,2],[-2,-3],[6,-1],[-12,-4],[-23,-22],[0,23],[2,10],[-1,19]],[[2396,2213],[-4,4],[-2,11],[-10,9]],[[2380,2237],[4,12],[-2,25],[3,0],[4,17]],[[2385,2299],[0,7],[8,-2]],[[2392,2329],[-5,15],[-1,16]],[[2386,2360],[7,18]],[[2393,2378],[9,-11],[1,7],[4,1],[0,11],[3,-5],[3,7],[0,-18],[3,-1]],[[2416,2369],[6,9],[6,-5]],[[2428,2373],[6,-22],[6,-4]],[[2440,2347],[2,9],[7,4],[6,-2]],[[2455,2358],[6,-18]],[[2461,2340],[1,3],[-1,-15]],[[2461,2288],[-7,-48],[4,-32]],[[2458,2208],[3,-5],[1,-16]],[[2462,2187],[-6,1],[0,8],[-2,-9],[-10,5],[4,0],[0,1],[-1,2],[0,1],[1,-4],[-11,1],[-4,-3],[0,-1]],[[3166,3096],[8,-20],[-19,4],[-11,-35],[-23,5]],[[3121,3050],[-37,68],[-23,30],[-17,8]],[[3044,3156],[1,7]],[[3045,3163],[-3,-2],[-4,38]],[[3038,3199],[31,38]],[[3069,3237],[3,13],[2,30],[-1,26],[1,6],[6,3]],[[3080,3315],[14,28]],[[3094,3343],[11,-6],[7,4],[3,-13],[6,7]],[[3121,3335],[2,-5]],[[3135,3287],[8,0],[-5,-8],[3,-17]],[[3141,3262],[-6,-8],[-2,-6]],[[4303,3074],[1,-2],[-1,1],[0,1]],[[4312,3087],[-1,0],[-1,6],[4,-1],[-2,-5]],[[4317,3091],[0,4],[2,13],[1,-5],[-3,-12]],[[4301,3137],[-1,1],[2,5],[0,-2],[-1,-4]],[[4307,3154],[-1,0],[0,4],[1,-2],[0,-2]],[[4310,3163],[-2,1],[0,2],[3,2],[-1,-5]],[[4305,3157],[0,8],[2,5],[1,-8],[-3,-5]],[[4289,3173],[-2,-2],[-2,1],[1,6],[3,-5]],[[4292,3185],[1,0],[-1,-6],[0,12],[0,-6]],[[4441,3187],[0,1],[-1,3],[2,-1],[-1,-3]],[[4296,3192],[1,6],[2,2],[-1,-6],[-2,-2]],[[4336,3213],[-1,1],[1,0],[0,-1]],[[4301,3212],[-1,1],[1,4],[1,-1],[-1,-4]],[[4322,3207],[6,2],[1,-7],[-3,-7],[5,0],[-1,-5],[2,-10],[-4,-11],[-5,-41],[-3,2],[0,-6],[-6,-10],[2,11],[-3,10],[3,4],[-2,1],[-2,-7],[2,-12],[-6,2],[1,13],[-2,14],[6,16],[0,7],[-2,-1],[2,6],[-5,14],[-2,-11],[3,0],[0,-7],[-2,-3],[-1,7],[-5,-8],[2,6],[-3,12],[3,-8],[1,6],[-5,7],[0,6],[3,-3],[0,6],[1,3],[2,-3],[3,7],[2,-2],[4,12],[4,-2],[4,-10]],[[4302,3198],[1,1],[-1,1],[0,-2]],[[4337,3218],[2,1],[-2,-3],[-2,2],[2,0]],[[4437,3223],[-1,1],[1,2],[1,-2],[-1,-1]],[[4340,3228],[0,-2],[0,-2],[-1,1],[1,3]],[[4339,3226],[-1,4],[1,2],[0,-6]],[[4346,3228],[0,3],[1,1],[0,-3],[-1,-1]],[[4296,3232],[-2,-7],[-1,0],[1,8],[2,-1]],[[4363,3234],[5,-4],[3,-15],[-5,-7],[-3,-14],[-4,9],[-4,1],[-5,-5],[-4,-21],[-2,-2],[-3,1],[1,6],[-3,-1],[1,13],[-2,8],[-5,-5],[8,12],[4,16],[3,-7],[6,1],[5,15],[4,-1]],[[4434,3233],[-1,1],[1,3],[0,-2],[0,-2]],[[4365,3237],[-2,2],[0,1],[2,1],[0,-4]],[[4371,3229],[-1,3],[4,11],[-1,-12],[-2,-2]],[[4296,3232],[-1,10],[2,4],[0,-5],[-1,-9]],[[4436,3246],[-1,1],[0,3],[1,-1],[0,-3]],[[4348,3294],[-1,2],[1,1],[0,-3]],[[4346,3295],[0,1],[2,2],[-1,-3],[-1,0]],[[4350,3305],[2,-4],[-2,-2],[-1,4],[1,2]],[[4403,3334],[-2,-2],[0,2],[1,1],[1,-1]],[[4422,3367],[2,0],[-5,-9],[1,6],[-1,4],[4,8],[-1,-9]],[[4340,3228],[-1,5],[-1,2],[-5,-21],[-4,10],[-12,-5],[1,18],[6,0],[17,31],[0,5],[7,5],[4,-5],[25,12],[0,-8],[2,-3],[2,5],[3,-4],[4,9],[1,-3],[-2,11],[11,28],[1,22],[8,5],[0,-2],[-6,-9],[-1,-4],[3,-1],[-1,-8],[4,-3],[18,23],[3,15],[9,12],[8,44],[0,16],[-5,4],[5,11],[-2,13],[5,8],[1,15],[4,-2],[2,-13],[2,6],[4,-4],[1,13],[-7,-2],[2,13],[5,-7],[3,0],[0,-27],[5,-12],[3,-26],[-3,-18],[-3,-1],[-1,-8],[0,-18],[-6,3],[-2,-8],[0,-41],[-6,-27],[4,-18],[-5,-8],[-2,-14],[-8,-6],[5,21],[-2,4],[-4,-7],[0,-12],[-2,6],[-5,-2],[0,-13],[-4,-10],[-2,13],[2,3],[-2,3],[-2,-1],[-5,-18],[-17,-1],[5,6],[-5,1],[0,6],[0,-9],[-2,2],[0,12],[-5,-13],[6,-10],[-1,-6],[-7,-2],[-8,-27],[-10,15],[1,16],[4,9],[-1,5],[-4,-3],[-5,6],[-6,-3],[-5,-4],[2,0],[-2,-5],[-9,-1],[-3,-6],[0,2],[-3,0],[-4,-5]],[[4437,3517],[0,-6],[-1,0],[0,5],[1,1]],[[4517,3563],[0,2],[-1,1],[2,-2],[-1,-1]],[[4499,3585],[-2,0],[-1,1],[2,-1],[1,0]],[[4461,3619],[-1,2],[-1,3],[3,-1],[-1,-4]],[[4458,3625],[-1,7],[1,-1],[0,-6]],[[4472,3630],[24,-47],[14,-6],[8,15],[-4,-20],[3,-17],[7,2],[-11,-14],[-14,-2],[-8,-17],[-2,-18],[-21,24],[-11,-11],[-3,9],[-4,1],[-2,-12],[12,-16],[-3,-3],[-4,4],[-4,-11],[-4,-3],[-2,5],[2,15],[-4,9],[0,13],[10,14],[-3,9],[2,4],[10,-8],[3,6],[-1,15],[4,8],[3,24],[-4,22],[2,6],[5,0]],[[2985,3056],[3,38],[4,25],[1,54],[5,3]],[[2998,3176],[7,-12],[6,-3]],[[3011,3161],[27,38]],[[3045,3163],[0,-4],[-4,-9],[-28,-18]],[[3013,3132],[14,-36],[-4,-6],[-3,-12],[-10,-4],[-10,-25],[-15,7]],[[3071,1927],[-2,-2],[-1,1],[2,4],[1,-3]],[[2999,2169],[1,-6]],[[3000,2163],[14,-3],[15,-27]],[[3071,2145],[10,1],[-12,-41]],[[3069,2105],[0,-133],[8,-29]],[[3077,1943],[-4,-10],[-6,-2],[1,-10],[-1,2],[-3,-11],[-6,-4],[-1,-22],[-10,-49],[-3,-1]],[[3044,1836],[-22,42],[1,7],[-1,11]],[[3022,1896],[-51,72]],[[2971,1968],[-1,39],[9,36],[4,5],[3,23],[-2,23],[-7,31],[1,10],[-3,4],[-3,16]],[[2972,2155],[5,14]],[[2977,2169],[22,0]],[[3614,3510],[-26,-23],[-4,-13]],[[3527,3438],[-2,-20],[-17,-3],[-5,-7]],[[3503,3408],[-3,6],[-4,-3],[0,6],[-3,0],[-1,6],[-7,-8]],[[3485,3415],[-7,8],[-16,-4],[-1,9],[1,9],[3,-3]],[[3465,3434],[0,7]],[[3465,3441],[7,4],[7,-7]],[[3479,3438],[0,-5],[6,13],[10,-4]],[[3495,3442],[7,11],[3,-2],[0,8],[3,-4],[8,11],[-14,7],[0,6],[-4,0],[-3,13],[-1,-8],[-3,1],[0,-8],[-8,5],[-2,8],[-7,1]],[[3474,3491],[15,23],[-5,6]],[[3484,3520],[7,17],[12,-1]],[[3503,3536],[17,-13],[-1,8],[2,15]],[[3521,3546],[10,6],[19,-15]],[[3550,3537],[2,5],[16,2],[31,-7],[4,-12],[7,-1]],[[3610,3524],[4,-9],[0,-5]],[[4233,3419],[1,4],[0,-2],[-1,-2]],[[4314,3519],[-3,1],[-10,-24],[1,-10],[-1,-20],[-31,-39],[1,-15],[-2,4],[-1,-7],[14,-19],[-2,-11],[-15,-3]],[[4265,3376],[-8,-19]],[[4257,3357],[-3,4],[-3,-5],[-8,10],[2,-4],[-5,-9],[2,8],[-7,1],[4,6],[-8,1],[4,17],[9,1],[-7,7],[4,27],[-4,0],[-5,8],[-2,-7],[-4,12],[3,11],[20,24]],[[4308,3534],[6,-11],[0,-4]],[[4258,3194],[-5,-1],[-2,4],[11,8],[-1,-8],[-3,-3]],[[4260,3232],[-2,1],[0,2],[1,0],[1,-3]],[[4266,3237],[-1,0],[0,1],[1,1],[0,-2]],[[4274,3239],[-1,2],[1,0],[0,-2]],[[4252,3234],[-1,3],[2,5],[1,-3],[-2,-5]],[[4274,3242],[-1,2],[1,2],[0,-1],[0,-3]],[[4249,3246],[0,-1],[-1,2],[1,0],[0,-1]],[[4249,3250],[0,-1],[-1,-1],[0,1],[1,1]],[[4278,3251],[-1,1],[0,2],[1,-3]],[[4250,3252],[-1,0],[0,1],[1,2],[0,-3]],[[4276,3250],[2,-3],[-3,1],[0,7],[1,-5]],[[4287,3253],[-2,-6],[-1,5],[3,5],[0,-4]],[[4251,3259],[-1,2],[1,2],[0,-3],[0,-1]],[[4255,3308],[-1,1],[0,6],[0,-1],[1,-6]],[[4317,3345],[-1,1],[0,2],[1,1],[0,-4]],[[4256,3350],[-2,1],[1,8],[1,-3],[0,-6]],[[4231,3362],[-1,0],[0,2],[1,0],[0,-2]],[[4257,3357],[2,-3],[0,9],[6,13]],[[4265,3376],[13,0],[4,11],[2,-10],[13,-46],[-1,-36],[3,-1],[-2,-19],[-4,-13],[-8,2],[-3,-5],[2,-1],[-1,-6],[-2,4],[-10,-1],[3,-3],[-2,-8],[-2,8],[-2,-13],[-3,2],[3,7],[-7,-12],[-1,7],[-3,-11],[-4,14],[5,-2],[-2,4],[2,3],[-4,-1],[1,6],[-2,6],[2,-4],[0,14],[4,5],[-3,3],[4,8],[-2,4],[3,3],[-4,3],[-1,21],[-3,-5],[-2,6],[2,8],[0,-6],[2,2],[-1,5],[2,-5],[0,7],[4,-3],[1,-8],[2,7],[-3,4],[1,5],[-3,-1],[3,4],[-4,18]],[[3171,3059],[0,-2],[-1,1],[0,1],[1,0]],[[3169,3064],[-2,6],[1,8],[3,-9],[-2,-5]],[[3166,3077],[1,2],[1,0],[-2,-2]],[[3162,3026],[-3,17]],[[3159,3043],[-13,3],[9,33],[10,0],[3,-17],[-2,3],[-4,-9],[4,-1],[6,-29],[-10,0]],[[3195,3610],[1,1],[0,-2],[-1,1],[-1,4],[0,4],[1,1],[0,-9]],[[3198,3614],[-1,3],[2,2],[-1,-4],[0,-1]],[[3236,3660],[-1,1],[1,4],[1,-3],[-1,-2]],[[3475,3979],[8,6],[3,-18],[3,-4],[-1,-3],[0,-10],[-3,0],[3,-8],[2,4],[4,-4],[2,5],[6,-4],[-2,9],[6,-9],[0,-8],[3,2],[-2,3],[1,3],[9,-6],[7,4],[-1,-7],[-4,0],[-2,-8],[2,-8],[7,8],[7,-6],[1,7],[4,5],[28,22],[-1,-10],[-5,0],[2,-6],[19,-26],[30,-90],[6,8],[-1,8],[4,4],[7,-4],[-2,-9],[5,1],[1,-8],[14,-1],[4,7],[9,3],[8,-7],[5,-21],[9,-5],[0,-6],[3,-12],[13,-4],[8,11],[-2,-7]],[[3702,3780],[10,-18],[-6,1]],[[3618,3540],[-4,-3],[-1,-6],[1,-15],[-4,8]],[[3550,3537],[-20,15],[-9,-6]],[[3503,3536],[-14,0],[-5,-16]],[[3484,3520],[1,-3],[-5,-8],[-3,2],[-6,-13],[-13,-12]],[[3458,3486],[1,-6],[-7,-10],[1,-11],[-3,-1],[-6,8],[2,8],[-3,5],[-17,0],[-3,29],[-7,0],[2,36],[-4,-4],[-5,16],[-8,15],[-6,-7],[-18,3],[-16,-5],[-12,26],[-36,48],[-36,-20],[0,-132]],[[3277,3484],[-7,-1]],[[3270,3483],[-7,22],[-11,15],[-16,-7],[-8,-14]],[[3228,3499],[-1,13],[5,22],[-12,5],[-3,12],[-6,-1],[1,10],[-7,27],[-7,5],[-1,9],[19,-3],[-9,13],[6,18],[26,-1],[-7,8],[6,25],[-3,8],[3,6],[-2,8],[-8,4],[-5,-6],[-13,11],[-19,-21],[-7,1],[1,-6],[-2,-2],[-9,8]],[[3174,3672],[0,7],[6,0],[-11,34],[-11,5],[-1,-6],[-3,5],[0,16],[-9,5]],[[3145,3738],[4,19],[4,7]],[[3153,3764],[-4,7],[2,19]],[[3151,3790],[6,8],[0,8]],[[3157,3806],[4,5],[9,-21]],[[3170,3790],[7,3],[2,3],[-3,20],[10,10],[0,9],[13,7],[3,12],[3,-2],[0,6],[8,-4],[-1,-6],[5,-1],[3,8],[6,4],[4,-12],[11,1],[4,-9],[11,-13],[-1,-9],[2,-3],[2,3],[-2,11],[1,4],[15,-18],[11,20],[3,-4],[6,4],[5,-8],[3,2],[1,7],[8,1],[3,-4],[1,-8],[12,-6],[0,-6],[4,3],[3,11],[9,-7],[10,4],[4,17],[-10,13],[-8,2],[2,5],[-7,5],[14,14],[-5,12],[6,11],[14,1],[0,4],[-13,6],[1,8],[5,0],[-10,4],[5,7],[-3,4],[5,5],[13,-2],[3,-5],[1,6],[8,5],[24,8],[4,-3],[0,7],[4,4],[38,12],[1,4],[-1,4],[5,0],[2,6],[4,-3],[-1,6]],[[3457,3990],[3,-4],[7,1],[8,-8]],[[3983,2516],[-4,11],[-8,-9]],[[3972,2503],[-11,9],[-1,6]],[[3960,2518],[5,7]],[[3965,2525],[1,16],[-2,4]],[[3964,2545],[2,20],[-12,30]],[[3954,2595],[1,31],[-12,34],[-9,4],[-4,-16],[-5,-6],[-8,14],[-13,-27],[-3,4],[3,19],[-1,12],[4,22],[-2,11],[1,7],[-11,-1],[-1,8],[2,15],[-3,8],[-4,-1]],[[3898,2767],[6,9],[2,-14]],[[3906,2762],[8,2],[-4,35]],[[3912,2809],[6,-2],[6,-18]],[[3924,2789],[1,-10]],[[3925,2779],[4,4],[-1,-18]],[[3928,2765],[4,-15],[7,-6],[6,11],[8,-11],[-4,-8],[8,-9],[0,-7],[-4,-14],[-9,3],[1,-8],[-3,-6],[18,-24],[0,-11],[5,-6],[3,-17],[11,-24],[2,-20],[3,3],[1,-8],[7,-8],[-4,-11],[7,-18],[-3,-9]],[[3992,2542],[1,-11]],[[2987,3189],[8,44],[4,12]],[[2999,3245],[7,-1],[-2,-4],[4,-11],[-5,-10],[2,-3],[-5,0],[-2,-7],[2,-2]],[[3000,3207],[-6,-12]],[[2851,4085],[17,-20],[5,4]],[[2873,4069],[9,-4],[4,-8]],[[2886,4057],[-2,-14],[3,-4]],[[2887,4039],[5,-19],[-9,-17]],[[2883,4003],[-9,1],[-5,-6]],[[2869,3998],[-13,16],[-8,3],[-3,9]],[[2845,4026],[-10,-7],[-29,6]],[[2806,4025],[-14,-12]],[[2792,4013],[-1,15],[1,-2],[0,14],[5,7],[0,9],[4,10],[12,7],[9,-24],[8,-4],[8,10],[-1,22]],[[2883,4003],[7,13],[9,-8],[9,0]],[[2908,4008],[1,-9]],[[2909,3999],[6,6],[8,-2],[6,-7]],[[2929,3996],[-2,-11],[3,-9],[-3,-9],[4,-6],[4,-14],[7,-6],[-1,-10]],[[2941,3931],[10,-3],[-1,-5]],[[2950,3923],[4,-8],[-8,-9],[-10,3],[-2,-6]],[[2934,3903],[4,-8],[0,-17],[3,-7]],[[2941,3871],[-12,-2],[-5,-15]],[[2924,3854],[0,-14],[-5,8],[-12,-4],[-3,10],[-5,-8],[-7,8],[-6,-1],[-1,-5],[-1,4],[-6,0],[-1,6],[-20,6],[-19,-1]],[[2838,3863],[-5,-10],[-6,-3],[1,19]],[[2828,3869],[-7,8]],[[2821,3877],[11,17],[-6,42]],[[2826,3936],[12,-2],[15,15],[1,-5],[4,0],[-4,6],[4,19],[14,15],[-5,2],[2,12]],[[2790,3984],[2,16],[1,-3],[-1,-11],[-2,-2]],[[2826,3936],[-2,11],[-8,4]],[[2816,3951],[-1,12],[2,5],[-4,8],[-18,7]],[[2795,3983],[0,8],[-3,15],[0,7]],[[2792,4013],[4,5],[10,7]],[[2845,4026],[2,-5],[22,-23]],[[2340,2252],[12,30],[0,9],[4,6]],[[2356,2297],[1,11],[8,0]],[[2377,2264],[2,14],[2,1],[3,-24],[-4,-18]],[[2396,2213],[-1,-54],[-22,26],[-24,48],[-7,10],[-2,9]],[[2739,3724],[-6,13],[3,14],[10,4]],[[2746,3755],[11,22],[9,-3]],[[2766,3774],[4,7],[4,-7],[0,-7],[4,-2],[4,8],[8,-3],[10,5]],[[2800,3775],[13,-13]],[[2813,3762],[-7,-25],[-5,-1],[-4,8]],[[2797,3744],[-11,-1],[-10,-15]],[[2631,3690],[0,5],[1,2],[1,-6],[-2,-1]],[[2635,3016],[0,42],[-6,25]],[[2629,3083],[8,8]],[[2637,3091],[4,14],[1,6],[-2,18],[2,10]],[[2642,3139],[18,27],[0,26]],[[2660,3192],[10,-12],[14,3],[26,-19],[8,-36],[23,-11],[22,-29],[9,5],[6,16],[1,11],[-3,21],[2,16],[7,13],[15,14],[20,-11],[0,-11],[2,-4],[25,-9],[2,-11],[-4,-11],[2,-20]],[[2847,3051],[0,-331]],[[2847,2720],[-14,0]],[[2833,2720],[0,-18]],[[2722,2844],[-25,-30]],[[2697,2814],[-9,20],[-22,12]],[[2630,2941],[1,7],[6,5],[0,13],[-2,16]],[[2635,2982],[3,18],[-3,16]],[[3192,1391],[0,6],[2,7],[-1,-6],[-1,-7]],[[3155,1450],[0,1]],[[3155,1450],[0,0]],[[3171,1523],[-2,1],[1,7],[1,0],[0,-8]],[[3155,1451],[-2,8],[5,19],[0,-16],[5,18],[3,-6],[-4,13],[3,6],[0,6],[1,-9],[1,6],[-2,20],[2,3],[3,-10],[1,9],[5,4],[3,22],[-3,14],[3,-2],[5,19],[1,-5],[-2,-5],[4,-4],[1,-11],[5,-14],[4,-55],[4,-24],[-1,-12],[-4,-14],[-4,20],[-3,-5],[0,-18],[3,-6],[-1,-21],[-3,-3],[-2,-15],[1,-14],[-2,-23],[-31,-236],[-27,-23],[-16,21],[-5,24],[-1,24],[2,7],[-5,22],[-2,20],[4,34],[4,4],[9,45],[-1,7],[1,12],[-6,37],[-1,33],[7,28],[0,19],[6,-1],[5,10],[1,-7],[1,5],[3,-3],[1,10],[5,-3],[1,6],[2,-9],[3,-1],[-2,13],[8,15],[2,-5],[-1,-8],[3,4]],[[3743,3725],[-6,-2],[-6,7],[-2,8]],[[3719,3765],[5,4],[1,7]],[[3725,3776],[13,1],[1,5],[6,3],[-1,7],[6,6],[32,26],[4,-5],[5,4],[1,-7],[17,-1],[5,-19],[12,-5],[8,4],[17,-10],[11,12],[2,9],[1,8],[-4,4],[-3,13],[3,16],[9,13],[3,12],[14,-14],[32,-15],[1,-28],[9,-9],[10,-6],[23,12],[19,-5],[7,-11],[11,-3],[-1,-10],[9,-12],[31,-7],[32,17],[2,8],[15,16],[7,-2],[8,-12],[12,5]],[[4114,3796],[6,-7]],[[4146,3723],[16,-29],[3,-17],[-3,-4],[-12,6]],[[4077,3607],[-23,12],[-7,-25],[7,-25]],[[4033,3536],[-16,-12],[-25,1]],[[3762,3663],[1,10],[-1,13],[-12,33],[-4,-2],[-3,8]],[[2818,3485],[-2,-1],[-1,-6]],[[2799,3468],[-10,1],[-5,22],[4,21],[21,9],[10,-22],[-1,-14]],[[2348,2441],[-5,-8],[-3,5],[2,30],[-4,15]],[[2338,2483],[-3,-3]],[[2335,2480],[-3,11],[1,20]],[[2333,2511],[-3,8],[-1,13]],[[2329,2532],[6,4]],[[2335,2536],[2,24],[3,4],[8,-19],[3,12],[18,0],[1,9],[0,-7],[53,0],[2,30],[-3,6],[-14,304],[25,0]],[[2433,2899],[83,-139]],[[2546,2683],[12,7]],[[2558,2690],[0,-99]],[[2558,2591],[-5,-25],[-5,-12],[-30,-3],[-5,-11]],[[2513,2540],[-4,-1],[-20,5]],[[2489,2544],[-4,-11],[-13,-11],[0,-10],[-9,1],[-3,-8],[0,-12],[-6,1],[1,-14],[-3,-5],[-8,12]],[[2444,2487],[-5,-13],[2,-11],[-4,-4]],[[2437,2459],[1,-15],[-3,-8],[-9,-8],[1,-14],[-1,-11],[-3,-3],[0,-23]],[[2423,2377],[-4,0],[-3,-8]],[[2393,2378],[-4,-10],[0,6],[-4,6]],[[2379,2396],[4,13],[-2,6],[-4,6]],[[2469,3261],[6,-12],[-1,-5]],[[2482,3162],[1,-9],[-23,0]],[[2379,3032],[0,-37]],[[2379,2995],[-62,0]],[[2317,2995],[3,10],[20,14],[19,39],[7,26],[0,9],[-3,11],[0,26],[8,26],[0,14],[3,6],[7,19],[23,27],[13,64],[7,4],[3,-12],[7,-13],[19,-1],[5,9],[2,-10],[1,-1],[-2,4],[10,-5]],[[2271,2706],[0,3],[2,6],[-1,-5],[-1,-4]],[[2335,2536],[-3,-5],[-11,17],[-8,31]],[[2313,2579],[-5,3],[-8,18],[-27,-5]],[[2273,2595],[-3,-16],[7,60],[-2,42],[-5,16],[3,6],[-2,-4],[3,14],[1,15],[-10,34],[-2,-15],[1,21]],[[2264,2768],[55,0]],[[2319,2768],[-1,56],[7,14],[8,6],[0,91],[46,0]],[[2379,2935],[0,46]],[[2379,2981],[28,-41],[26,-41]],[[3277,2630],[0,1],[1,0],[-1,-1]],[[3317,2736],[-1,-6],[-2,-4],[3,19],[0,-9]],[[3279,2890],[3,8]],[[3282,2898],[4,-17],[7,-20],[20,-11],[11,-34],[6,-5],[0,-11],[-6,-28],[-7,-15],[-5,-22],[-4,-1],[0,8],[-5,-14],[-2,-18],[1,-27],[-14,-8],[-6,-29],[-13,-4],[-5,-29],[-13,0],[-14,-13]],[[3237,2600],[-15,84]],[[3222,2684],[41,36],[9,72],[-6,25]],[[3266,2817],[0,11],[5,27]],[[3271,2855],[-1,7],[7,4],[-3,6]],[[3274,2872],[0,12],[0,11]],[[3274,2895],[4,2],[1,-7]],[[3282,2949],[2,-2],[-1,-2],[1,-5],[-2,1],[2,-3],[-4,-16],[-2,15],[2,8],[0,-2],[3,0],[-1,6]],[[1286,2663],[1,1],[0,2],[0,-1],[-1,-2]],[[1224,2671],[3,4],[2,1],[0,-1],[-5,-4]],[[1295,2741],[-2,-8],[-2,-4],[1,10],[3,2]],[[1025,2765],[-1,2],[0,1],[1,0],[0,-3]],[[1022,2771],[-1,0],[-1,1],[3,2],[-1,-3]],[[1020,2774],[-1,2],[0,5],[1,0],[0,-7]],[[1018,2783],[0,-1],[0,3],[1,-2],[-1,0]],[[1144,2782],[-1,2],[0,3],[1,-4],[0,-1]],[[1141,2816],[0,1],[1,2],[-1,-3]],[[975,2868],[-1,2],[-1,7],[2,-7],[0,-2]],[[951,2877],[0,-1],[-2,1],[2,0]],[[944,2882],[3,1],[1,-8],[-1,4],[-3,3]],[[967,2878],[0,1],[-1,5],[2,-3],[-1,-3]],[[965,2895],[-2,2],[-1,6],[2,-3],[1,-5]],[[944,2882],[-3,10],[1,17],[-1,-15],[3,-12]],[[988,2915],[1,-2],[-3,2],[2,0]],[[955,2930],[0,6],[2,2],[0,-3],[-2,-5]],[[913,2997],[-1,2],[0,1],[1,0],[0,-3]],[[900,3008],[-2,4],[1,8],[2,-7],[-1,-5]],[[934,3028],[-2,2],[0,1],[1,-1],[1,-2]],[[936,3031],[0,2],[1,0],[0,-2],[-1,0]],[[941,3034],[-5,4],[3,13],[2,-7],[0,-10]],[[928,3043],[-6,15],[0,5],[6,-12],[0,-8]],[[907,3139],[-1,1],[0,3],[0,-1],[1,-3]],[[958,3126],[39,0],[0,16],[25,-1],[3,-10],[18,-32],[5,-32]],[[1048,3067],[17,-25],[5,7],[4,20]],[[1074,3069],[5,5],[12,-4],[11,-23],[5,-30],[11,-26],[0,-18],[5,-22],[24,-22],[4,5]],[[1151,2934],[-8,-52],[-1,-58],[-2,-11],[3,-22],[5,-15],[-1,-10],[0,9],[-5,17],[1,-12],[7,-35],[10,-30],[2,-19],[6,-18],[15,-11],[5,-13],[12,10],[6,-3],[16,14],[2,-5],[-2,0],[-1,-2],[4,-6],[4,2],[4,8],[-3,7],[9,17],[1,16],[3,7],[2,38],[26,19],[17,-4],[2,4],[-4,-1],[4,3],[4,-7],[1,-10],[-10,-33],[0,-5],[0,-5],[0,-2],[0,-1],[0,4],[-4,-11],[1,-6],[4,3],[-4,-9],[0,-4],[3,3],[-5,-40],[-4,12],[1,13],[-11,-35]],[[1266,2645],[-3,4],[-1,-7]],[[1221,2544],[-2,-19],[-8,22],[-16,33],[-6,7],[-1,-3],[5,-6],[-9,6],[2,4],[-3,-2],[-1,6],[-3,-5],[3,-2],[-23,-21],[-17,12],[-14,21],[-13,5],[-17,18],[-14,28],[-3,-2],[-18,14],[-7,20],[-15,18],[-7,24],[-2,13],[6,6],[-1,7],[-3,0],[4,10],[1,14],[-7,19],[-2,24],[-17,47],[-10,18],[2,-1],[0,3],[-5,5],[0,11],[-2,-5],[-1,7],[2,2],[-5,2],[-5,15],[-5,-1],[2,1],[2,9],[-4,-8],[-3,6],[-1,10],[3,11],[1,-2],[-4,16],[-5,-1],[-2,14],[-8,10],[-2,10],[2,8],[-8,3],[-15,37],[-1,11],[-2,4],[-10,46],[0,19],[-7,4],[-5,12],[-1,-6],[-2,1],[-12,16],[4,-12],[-2,-17],[3,-8],[2,-34],[12,-25],[2,-14],[5,-3],[1,-12],[3,-2],[2,-21],[6,-12],[6,-30],[3,-3],[-3,11],[4,-6],[4,-34],[8,-31],[1,-20],[4,-8],[2,8],[11,-32],[-1,-11],[-6,-10],[-5,25],[-25,43],[0,30],[0,-3],[-4,27],[-12,15],[2,9],[-7,-8],[-12,18],[-1,7],[-6,11],[-1,4],[9,-1],[3,-4],[3,0],[-5,6],[3,6],[1,18],[-13,30],[-10,14],[-2,20],[-3,4],[0,13],[-9,27],[1,10],[-3,6],[-4,19]],[[873,3169],[33,7]],[[906,3176],[-1,-8],[25,-19],[28,-23]],[[3945,2087],[1,-1],[0,-1],[-1,1],[0,1]],[[4046,2088],[-1,3],[0,12],[1,-3],[0,-12]],[[3946,2100],[-1,3],[1,4],[1,-6],[-1,-1]],[[4134,2153],[-1,2],[4,-2]],[[4137,2153],[-3,0]],[[4148,2165],[1,-1],[0,-1],[-1,0],[0,2]],[[4146,2168],[-1,0],[-2,3],[2,1],[1,-4]],[[4100,2192],[-1,0],[1,4],[0,-3],[0,-1]],[[3892,2192],[-1,0],[0,7],[2,-1],[-1,-6]],[[4140,2212],[1,1],[0,-1],[-1,0]],[[3886,2233],[1,-3],[-1,-6],[-3,10],[3,-1]],[[3900,2227],[4,0],[-2,-16],[2,-6],[6,11],[4,-7],[3,18]],[[3917,2227],[4,-2],[11,-29],[4,-22],[-2,-36],[2,-9],[0,-21],[5,-12],[6,-44],[-2,1],[-2,10],[1,-8],[-5,0],[-2,-6],[-2,10],[-29,46],[0,16],[-8,22],[2,5],[-3,5],[0,22],[-4,11],[0,31],[-3,17]],[[3890,2234],[1,10],[6,-9],[3,-1],[0,-7]],[[4131,2245],[0,-4],[-2,1],[1,3],[1,0]],[[4132,2153],[-5,7]],[[4127,2160],[-18,0]],[[4109,2160],[-3,-9],[-3,-39]],[[4103,2112],[-5,-4],[0,-11],[2,-3],[-6,-10],[0,-12]],[[4094,2072],[-3,-17],[-9,0]],[[4082,2055],[-4,-8],[-9,13],[-8,0],[-9,-21],[-8,3],[-9,-8],[-13,27],[-1,11]],[[4021,2072],[1,6],[4,-14],[6,4],[5,-9],[-1,-4],[2,5],[5,-8],[3,0],[-5,8],[5,21],[-3,0],[1,9],[2,-3],[1,1],[0,12],[22,17],[12,39],[1,12],[4,-2],[5,-18],[4,12],[-2,13],[4,6],[1,-18],[3,-3],[-3,21],[6,6],[-2,12],[6,6],[13,52],[0,-16],[6,15],[1,-13],[6,-9],[-1,-7],[1,-7],[-3,-3],[7,6],[2,-7],[-3,-3],[0,-4],[6,5],[8,-14],[4,0],[1,-7],[-8,-10],[-5,3],[-3,-5],[2,-8],[4,-6],[0,-6],[-8,-4],[-4,5],[-2,-7]],[[4128,2266],[0,-5],[-3,-3],[0,7],[3,1]],[[4122,2262],[0,-1],[0,3],[2,3],[-2,-5]],[[2957,1070],[-1,0],[1,3],[0,-3]],[[3054,1415],[-2,2],[1,3],[1,0],[0,-5]],[[2956,1042],[-10,0]],[[2946,1042],[-1,25],[-2,12],[1,48]],[[2944,1127],[-6,35]],[[2938,1162],[-4,38]],[[2934,1200],[17,39],[-2,7],[2,8],[0,11],[2,2],[5,22],[1,6],[-4,11],[1,13],[-2,6],[3,6],[-1,9],[3,6]],[[2959,1346],[-2,13],[1,23],[-2,15]],[[2956,1397],[1,8],[-14,10],[-9,15],[-12,0]],[[2922,1430],[-3,37]],[[2919,1467],[42,34]],[[2961,1501],[6,-18]],[[2967,1483],[10,5]],[[2977,1488],[2,-8],[1,-23],[-5,-23]],[[2975,1434],[3,-14],[10,-20],[-1,-10],[3,0],[-3,20],[4,16],[6,4]],[[2997,1430],[1,40],[-11,43]],[[2987,1513],[-8,12]],[[2979,1525],[-2,41],[3,23]],[[2980,1589],[13,-1],[4,7]],[[2997,1595],[5,-11],[5,-1],[4,6],[9,-6],[4,6],[2,10],[8,-4],[6,8],[5,0]],[[3045,1603],[16,25],[3,-13],[-2,-7],[-2,-10],[1,-43],[3,-9],[-3,-7],[2,0],[1,-38],[-2,-5],[3,-1],[-1,-10],[2,2],[1,-10],[-2,-14],[-3,-2],[2,-4],[-1,-9],[-11,-28],[-1,-9],[-9,-16],[-17,-14],[-12,-22],[-2,4],[2,-8],[-10,-28],[-2,3],[-17,-38],[-4,9],[2,-8],[-1,-20],[6,-20],[3,-53],[2,12],[1,-5],[1,-25],[-4,-35],[3,4],[-1,-11],[-6,-20],[-30,-31],[-4,-16],[3,-12],[2,8],[-1,-27]],[[2982,1572],[-1,-1],[1,-1],[0,2]],[[2971,1656],[1,8],[7,-18],[1,-40]],[[2980,1606],[5,-17]],[[2985,1589],[-5,0]],[[2980,1589],[-3,-21],[2,-43]],[[2987,1513],[11,-35],[-1,-48]],[[2975,1434],[5,22],[-1,25],[-2,7]],[[2967,1483],[-7,22],[-2,-1],[-5,12]],[[2953,1516],[4,14],[1,22]],[[2958,1552],[7,9],[-3,7],[-1,27],[2,9],[-2,9],[6,12],[-5,18]],[[2962,1643],[-1,15],[-3,1],[-1,8]],[[2957,1667],[3,-4],[11,-7]],[[2558,2690],[22,10]],[[2697,2814],[11,14]],[[2689,2525],[-2,-3],[2,-27]],[[2689,2495],[-11,-9],[-5,-14],[-14,11],[-11,0],[-8,-5],[-7,-16],[-13,5],[-12,15],[-12,-13],[-7,22]],[[2589,2491],[-12,10]],[[2577,2501],[-15,-7],[-5,-8],[0,-17],[-7,-17]],[[2550,2452],[0,-30]],[[2533,2442],[0,-12]],[[2533,2430],[-5,16],[3,2],[-2,10],[-8,-2],[-8,15],[0,12],[4,-1]],[[2517,2482],[-11,20],[-4,22]],[[2502,2524],[1,17],[10,-1]],[[2558,2591],[0,81],[0,18]],[[2562,3848],[7,0],[3,-8],[9,-4]],[[2581,3836],[-2,-14],[8,-5],[1,-10],[-8,-14],[1,-13],[-5,-3]],[[2535,3834],[11,10]],[[2546,3844],[1,-5],[12,1],[1,1],[-1,3],[3,4]],[[2588,3776],[-8,2],[1,5],[-2,9],[4,9],[3,-10],[4,-3]],[[2603,3571],[0,-1],[-1,0],[0,2],[1,-1]],[[2975,3126],[3,10],[1,-3]],[[2979,3133],[-3,-9],[-1,2]],[[2993,3164],[-1,-32],[-8,-5],[1,9],[3,5]],[[2985,3144],[1,21],[3,4],[4,-5]],[[2764,3553],[-1,11],[20,-26],[-6,-3],[1,-7]],[[2778,3528],[-3,-3],[-3,5],[-5,-15]],[[2768,3503],[-12,26]],[[2603,2163],[0,-1],[-2,1],[1,1],[1,-1]],[[2600,2160],[0,5],[1,-1],[0,-3],[-1,-1]],[[2703,2440],[-1,-24],[-6,-10],[-2,2],[-3,-8]],[[2654,2234],[-1,11],[-6,12]],[[2641,2255],[-5,-8],[-2,-10],[-11,-24]],[[2623,2213],[-1,-25],[-4,-16],[-4,6],[1,-12],[-9,-1],[-2,7],[0,-5],[-4,0],[-2,7],[1,-9],[-2,-2],[-1,10],[0,-13],[-3,15],[2,-16],[-2,1],[0,9],[-1,-10],[-6,-2],[0,6],[-2,-6],[-5,7],[-4,16],[-1,14],[2,4],[2,4],[-6,-4],[0,5],[4,2],[-5,-2],[-9,26],[-15,5],[5,6],[-4,0],[-2,-8],[-9,0]],[[2537,2232],[1,96]],[[2548,2413],[3,12],[-1,27]],[[2577,2501],[4,-5],[8,-5]],[[2546,3844],[6,-1],[6,1],[0,-1],[-4,-5],[-7,2],[-1,4]],[[2575,3876],[-4,4],[4,5]],[[2575,3885],[1,1],[2,2],[3,-2],[-1,-4],[-5,-6]],[[2575,3885],[-5,-4],[-1,8]],[[2569,3889],[6,0],[0,-4]],[[2566,3902],[-1,2],[2,5],[1,-3],[-2,-4]],[[2568,3911],[-1,-1],[3,3],[-2,-2]],[[2572,3915],[-1,1],[6,3],[0,-1],[-5,-3]],[[2600,3911],[0,-8],[-3,-13]],[[2582,3860],[4,-12],[-2,-12],[-3,-4]],[[2581,3832],[3,-4],[-1,-6],[-5,3],[3,11]],[[2562,3848],[-2,-4],[-13,6],[6,3],[6,-6],[-4,5],[3,1],[-7,3],[6,-1],[-4,5],[10,23],[12,-7]],[[2575,3876],[1,0],[4,5],[1,4],[0,3],[-4,2],[2,7],[-5,1],[0,7],[-4,-4],[3,-9],[-4,-3]],[[2569,3889],[0,-9],[-6,4],[2,17],[5,0],[11,15],[14,1],[5,-6]],[[2579,3919],[3,0],[-4,-1],[1,1]],[[2585,3919],[0,1],[3,0],[-3,-1]],[[2579,4120],[-2,2],[1,0],[1,-2]],[[2582,4126],[0,1],[2,0],[-2,-1]],[[2573,4125],[-2,-2],[0,9],[2,-3],[0,-4]],[[2573,4146],[1,-3],[-2,1],[-1,-6],[-1,10],[3,-2]],[[2573,4146],[0,6],[2,-3],[0,-5],[-2,2]],[[2576,4149],[-2,4],[4,3],[0,-3],[-2,-4]],[[2573,4153],[-2,1],[0,4],[2,-3],[0,-2]],[[2582,4156],[0,2],[1,1],[0,-2],[-1,-1]],[[2570,4160],[-2,2],[0,7],[2,-4],[0,-5]],[[2571,4171],[1,-3],[-1,-1],[-2,5],[2,-1]],[[2571,4171],[-2,2],[-1,2],[3,-1]],[[2571,4174],[0,-3]],[[2577,4169],[-3,3],[4,6],[0,-8],[-1,-1]],[[2571,4174],[-2,1],[-2,5],[2,-1],[2,-5]],[[2565,4189],[-1,0],[0,2],[1,-2]],[[2569,4193],[-3,-2],[0,3],[2,2],[1,-3]],[[2568,4217],[-2,2],[6,0],[-1,0],[-3,-2]],[[2570,4222],[-1,3],[2,0],[-1,-3]],[[2578,4232],[-2,1],[4,2],[0,-3],[-2,0]],[[2581,4234],[-1,4],[3,2],[0,-3],[-2,-3]],[[2586,4239],[-2,0],[-1,2],[4,-1],[-1,-1]],[[2593,4249],[-1,0],[4,1],[-1,0],[-2,-1]],[[2595,4253],[-1,1],[0,1],[2,0],[-1,-2]],[[2604,4259],[-2,2],[5,0],[-3,-2]],[[2608,4262],[0,-1],[-2,2],[3,1],[-1,-2]],[[2613,4266],[0,3],[2,-2],[-1,-1],[-1,0]],[[2613,4266],[-2,0],[-1,0],[0,1],[3,-1]],[[2616,4266],[-2,4],[5,-2],[-1,-1],[-2,-1]],[[2618,4272],[-1,1],[3,0],[-2,-1]],[[2613,4274],[-3,-2],[-2,3],[4,3],[1,-4]],[[2617,4276],[-3,1],[10,7],[3,-3],[-10,-5]],[[2622,4290],[0,-4],[-8,-1],[4,2],[4,3]],[[2653,4288],[-1,0],[3,2],[-2,-2]],[[2659,4315],[-4,0],[-2,4],[0,1],[6,-5]],[[2657,4320],[0,-2],[-2,2],[1,1],[1,-1]],[[2656,4328],[-2,-2],[-4,1],[4,4]],[[2654,4331],[2,-3]],[[2654,4331],[-4,-3],[-1,-1],[0,3],[5,1]],[[2661,4335],[-1,0],[3,2],[-2,-2]],[[2668,4334],[-2,1],[3,5],[2,-4],[-3,-2]],[[2667,4340],[3,13],[3,-7],[-4,-5],[-2,-1]],[[2666,4355],[-1,-2],[-2,2],[2,3],[1,-3]],[[2674,4365],[-2,-1],[2,5],[5,0],[-5,-4]],[[2671,4369],[3,7],[1,-4],[-1,-2],[-3,-1]],[[2680,4376],[-1,0],[3,2],[-2,-2]],[[2677,4376],[-1,1],[2,1],[0,-1],[-1,-1]],[[2697,4409],[0,-5],[-3,3],[1,1],[2,1]],[[2697,4417],[2,2],[0,-2],[-2,0]],[[2711,4436],[-4,1],[5,0],[-1,-1]],[[2720,4439],[-4,0],[-1,0],[5,1],[0,-1]],[[2678,4433],[1,7],[3,3],[0,-5],[-4,-5]],[[2686,4444],[-1,-3],[-3,-1],[2,5],[2,-1]],[[2705,4449],[2,1],[0,-1],[-1,-1],[-1,1]],[[2693,4448],[3,0],[-10,-6],[2,7],[5,-1]],[[2694,4449],[-2,1],[0,1],[2,0],[0,-2]],[[2697,4448],[-2,2],[0,1],[2,0],[0,-3]],[[2705,4449],[-8,-4],[4,9],[9,2],[-2,-3],[-3,-4]],[[2727,4455],[-4,-2],[0,1],[3,5],[1,-4]],[[2737,4467],[-4,-1],[3,5],[1,-4]],[[2739,4468],[-2,5],[5,-2],[-3,-3]],[[2707,4471],[-1,0],[0,1],[0,1],[1,-2]],[[2722,4467],[-4,-5],[0,-3],[6,11],[4,0],[2,-7],[-1,-3],[-4,0],[-4,-7],[-9,-1],[4,5],[-1,1],[-7,-9],[6,17],[4,-1],[-4,2],[3,7],[3,0],[2,-7]],[[2729,4471],[-2,1],[-2,3],[5,-1],[-1,-3]],[[2713,4470],[0,-6],[-4,-4],[-4,2],[5,5],[-11,-3],[11,5],[-1,7],[4,-6]],[[2741,4476],[-1,1],[3,2],[0,-2],[-2,-1]],[[2715,4472],[-1,3],[2,4],[8,7],[-9,-14]],[[2744,4494],[3,3],[3,-6],[-2,-7],[2,-1],[-18,-5],[6,5],[-4,1],[4,1],[-3,5],[7,1],[-3,1],[-1,1],[2,2],[4,-3],[-2,5],[2,-3]],[[2762,4501],[-2,-5],[-11,1],[9,3],[-3,4],[5,-4],[-1,7],[5,-3],[-2,-3]],[[2787,4505],[-2,-1],[0,2],[2,2],[0,-3]],[[2914,4503],[-2,0],[2,5],[3,-3],[-3,-2]],[[2801,4509],[-1,0],[1,1],[0,-1]],[[2771,4506],[-1,0],[6,5],[-2,-4],[-3,-1]],[[2790,4513],[0,-1],[3,0],[-5,-1],[2,2]],[[2790,4513],[2,0],[-1,-1],[-1,1]],[[2768,4513],[5,-2],[-7,-7],[-7,5],[9,4]],[[2760,4516],[2,0],[1,-1],[-4,-4],[1,5]],[[2790,4514],[-1,0],[0,2],[0,1],[1,-3]],[[2772,4515],[-1,0],[-3,1],[1,2],[3,-3]],[[2789,4519],[-1,-5],[-5,1],[2,5],[4,-1]],[[2766,4516],[-1,0],[-1,1],[3,4],[-1,-5]],[[2779,4515],[-5,-1],[-3,6],[2,2],[6,-7]],[[2802,4521],[-1,1],[0,3],[2,-1],[-1,-3]],[[2817,4523],[2,-2],[-9,3],[4,2],[3,-3]],[[2828,4527],[-6,-5],[-5,4],[10,6],[1,-5]],[[2831,4530],[-2,1],[-1,6],[7,-3],[-4,-4]],[[2825,4540],[-9,-10],[-9,-2],[2,5],[-5,2],[21,5]],[[2834,4544],[-2,2],[-1,1],[5,-1],[-2,-2]],[[2844,4548],[-2,1],[0,1],[3,1],[-1,-3]],[[2656,4328],[19,9],[4,6],[-6,-6],[-2,1],[5,3],[-6,0],[5,6],[-4,9],[6,-1],[-3,4],[1,6],[7,-2],[-3,7],[-4,1],[13,6],[0,-5],[8,8],[-16,-5],[7,4],[-7,1],[2,3],[-2,4],[3,-1],[7,4],[-7,-2],[0,4],[4,-1],[-4,3],[11,2],[-6,5],[14,4],[-4,2],[1,2],[5,-1],[-2,3],[13,-5],[-2,5],[5,-1],[-9,3],[1,2],[-11,-3],[9,13],[2,-2],[-3,-2],[7,0],[3,-7],[-2,7],[5,3],[-9,-1],[1,7],[7,-1],[-6,4],[-9,-6],[4,4],[-4,2],[16,4],[1,3],[-9,1],[8,2],[1,6],[4,-13],[4,-3],[-4,7],[7,2],[-6,0],[2,5],[-5,3],[10,-5],[-8,7],[1,1],[12,0],[2,-7],[-2,7],[6,0],[-3,2],[2,4],[-15,-1],[7,7],[10,-2],[-6,4],[8,0],[-5,3],[5,1],[-6,1],[3,8],[8,1],[-3,5],[2,2],[2,5],[6,-8],[4,1],[-7,6],[5,3],[3,-5],[5,-3],[-3,-2],[3,-1],[0,4],[-6,4],[3,4],[-3,2],[11,7],[-3,-15],[2,1],[2,10],[6,10],[2,-4],[-2,-14],[-5,-8],[8,11],[5,-3],[-5,6],[1,4],[7,7],[-2,-4],[2,-2],[3,8],[11,-10],[-4,11],[4,3],[-12,3],[4,3],[3,-2],[8,2],[0,-4],[4,-2],[-3,2],[8,1],[-9,-6],[8,2],[6,-6],[3,3],[-5,3],[7,12]],[[2828,4527],[10,1],[-3,4],[3,4],[5,-2],[-7,5],[6,0],[0,7],[9,-6],[1,6],[2,-2],[6,-2],[-12,-12],[2,-4],[-2,-2],[-1,-10],[21,31],[3,0],[-1,-7],[-5,-3],[5,-1],[-2,-9],[7,4],[0,4],[3,-1],[-2,6],[6,2],[-6,6],[7,5],[13,-5],[-4,-6],[-7,0],[5,-2],[-7,-5],[9,4],[-6,-8],[7,1],[-3,-5],[1,-8],[-2,-3],[3,4],[-1,8],[4,8],[1,4],[4,5],[6,-1],[1,-7],[6,3],[-1,-4],[5,3],[4,-4],[-5,-2],[8,0],[7,-9],[-14,-8],[-18,4],[-2,-1],[15,-7],[-5,-4],[5,2],[-3,-9],[10,1],[-1,7],[2,0],[1,-7],[2,5],[6,-4],[-2,-6],[-10,4],[0,-5]],[[2917,4494],[-10,-7]],[[2907,4487],[-4,-10],[-4,4],[7,12]],[[2904,4501],[-21,13],[-16,-5]],[[2867,4509],[-7,-8],[-3,-16]],[[2792,4477],[-13,0]],[[2779,4477],[3,-9],[-5,-9],[3,-2]],[[2780,4457],[-4,-5],[-25,6]],[[2751,4458],[1,-12],[-4,-8],[-9,5],[-7,-7],[-9,-17],[4,-6],[0,-8],[-14,-20],[1,-7],[-13,-5],[2,-11],[-2,-18],[-12,-27],[7,-4],[0,-10],[-2,-6]],[[2694,4297],[-11,3],[-7,-5],[-11,-24]],[[2665,4271],[3,-10],[-1,-4],[0,-11],[3,-12],[-2,-19],[10,-13],[-3,-11],[-6,-2]],[[2669,4189],[6,-20],[-2,-13]],[[2673,4156],[-9,-8],[1,-5],[-4,-4],[2,-13],[-2,-12]],[[2661,4114],[-12,11],[-1,5],[0,5],[-2,9],[3,2],[-1,4],[-3,-2],[2,-9],[-2,-3],[-1,6],[-3,1],[5,-14],[-4,-10],[-5,-3],[-5,6],[2,-5],[-20,-28],[0,-3],[-23,-2],[2,6],[-10,5],[-8,13],[2,11],[8,-8],[-1,5],[7,3],[-6,-2],[-2,-3],[-1,4],[-1,2],[8,9],[-6,0],[6,8],[-3,1],[-1,-4],[-3,-4],[-1,3],[4,2],[-5,-1],[-2,-2],[3,-2],[-5,-3],[-5,9],[5,8],[-1,-8],[2,6],[7,2],[3,4],[-8,-1],[3,5],[4,12],[6,4],[-2,-5],[0,-7],[2,11],[6,4],[-1,3],[-11,-6],[-7,-15],[-1,6],[-2,0],[3,8],[-4,-9],[-4,8],[1,3],[1,3],[3,-4],[3,2],[0,8],[-6,-5],[-5,9],[7,-6],[-3,5],[4,4],[-6,-2],[-1,7],[19,1],[3,4],[5,-3],[2,-8],[-1,9],[6,3],[-2,4],[4,6],[-4,-4],[0,-7],[-10,2],[2,6],[-3,-5],[0,-4],[-16,-2],[-6,6],[10,4],[-10,2],[12,1],[-9,3],[3,2],[-6,3],[7,9],[4,-3],[10,-1],[4,2],[-3,-1],[-15,4],[-4,-2],[4,5],[-5,3],[1,4],[4,-8],[0,6],[13,-4],[-6,6],[5,5],[3,-9],[-2,9],[5,3],[2,-1],[1,-11],[1,-1],[0,7],[5,-2],[-8,9],[-8,-1],[6,2],[-6,3],[12,2],[6,-5],[4,2],[-6,2],[11,3],[-17,1],[1,9],[6,-2],[5,2],[-2,-3],[4,3],[3,-6],[5,-6],[-5,11],[-4,2],[3,4],[6,-10],[-2,4],[4,1],[-7,5],[11,3],[-7,3],[4,2],[-1,2],[5,3],[3,-5],[2,1],[-3,4],[6,5],[5,-9],[4,-4],[-3,5],[12,2],[-2,2],[2,3],[-3,-2],[11,9],[-5,3],[5,5],[-3,4],[-10,-11],[7,1],[-2,-4],[-12,-8],[-4,5],[5,4],[-8,-4],[0,4],[9,6],[-3,2],[9,13],[-2,3],[5,-2],[-3,3],[5,5],[4,-5],[-1,-5],[7,9],[-4,5],[11,8],[-13,-7],[6,6],[-6,-1]],[[2858,4551],[6,-2],[-9,-4],[-4,3],[7,3]],[[3616,3069],[7,16],[5,-6],[2,13]],[[3630,3092],[10,-2],[1,-9]],[[3710,3000],[14,1],[-3,-26]],[[3721,2975],[3,-14],[-2,-13]],[[3656,2983],[-17,21],[-3,-2]],[[1750,2132],[-3,-28],[-6,-17]],[[1741,2087],[-5,8]],[[1720,2084],[3,-13],[-8,2]],[[1693,2147],[3,23],[-1,6],[10,13]],[[1703,2194],[5,24],[14,-6],[1,-5],[1,10],[10,-5],[4,1],[-4,4],[1,2],[15,-9],[-7,-32],[2,-30]],[[1346,2439],[0,1],[1,0],[-1,-1]],[[1350,2518],[0,1],[1,1],[0,-1],[-1,-1]],[[1345,2541],[-4,-7],[3,-17],[-5,-35],[1,-34],[-2,3],[1,10],[0,2],[-1,-28],[-3,-6],[3,-9],[-3,-10],[3,-20],[-8,0],[-6,10]],[[1324,2400],[-3,-4],[-10,9]],[[1311,2405],[-3,-4],[-13,40],[-13,25],[1,5],[3,-5],[6,5],[1,7]],[[1326,2527],[18,13],[1,1]],[[4813,282],[-1,0],[1,2],[0,-2]],[[4825,311],[-1,1],[1,0],[0,-1]],[[4835,323],[-2,-1],[3,-3],[-1,-4],[-9,-5],[4,13],[-1,7],[6,-7]],[[4815,365],[-1,-1],[-2,1],[2,4],[1,-4]],[[4818,386],[1,-5],[0,-1],[-2,2],[1,4]],[[4921,530],[0,-3],[-3,-1],[2,2],[1,2]],[[4913,537],[0,6],[2,2],[0,-6],[-2,-2]],[[4818,386],[5,10],[3,-5],[-1,8],[13,27],[18,16],[15,24],[5,12],[5,29],[8,13],[0,19],[8,13],[3,0],[2,-1],[-5,-4],[3,-7],[2,2],[1,-19],[12,15],[-2,-4],[2,-2],[-2,-8],[4,4],[-3,0],[2,7],[4,-1],[-1,-7],[-3,-1],[3,-1],[1,2],[-4,-8],[4,-11],[-14,-44],[-8,-10],[1,-13],[4,-2],[0,-7],[-9,5],[-16,-22],[-1,-21],[-9,-35],[3,1],[-6,-4],[-9,-21],[-10,-4],[-9,3],[0,6],[-7,1],[-4,9],[-4,-4],[-8,2],[4,9],[-7,-2],[0,7],[7,4],[-3,1],[4,6],[-5,-2],[2,9],[5,-6],[-2,5],[4,1],[-5,6]],[[4950,655],[-1,0],[1,1],[0,-1]],[[4932,684],[-1,0],[-1,1],[2,3],[0,-4]],[[4941,691],[-1,2],[1,0],[0,-2]],[[4928,697],[-1,0],[1,3],[0,-3]],[[4932,706],[-1,-1],[0,1],[0,2],[1,-2]],[[4937,701],[-2,4],[0,6],[2,-4],[0,-6]],[[4902,770],[-1,-4],[5,-17],[2,7],[0,-6],[9,-5],[-1,-3],[2,-4],[2,3],[4,-22],[-3,5],[0,-4],[2,-1],[4,-15],[-1,-10],[2,-11],[5,-4],[2,-9],[3,-1],[-4,27],[7,-9],[-2,-5],[2,2],[1,-15],[4,-13],[-3,3],[0,-4],[17,-13],[4,1],[7,15],[8,-6],[-3,-10],[-1,-19],[-5,-7],[0,-19],[-4,7],[-8,-5],[-2,-9],[1,-8],[2,0],[-4,-18],[-12,-38],[-9,-13],[-2,6],[-4,0],[0,7],[-4,-1],[7,20],[1,22],[-17,20],[-3,9],[12,17],[2,22],[3,3],[-2,9],[2,4],[-2,-1],[-1,13],[1,4],[-1,-2],[-3,10],[2,-4],[3,5],[-2,4],[-3,-4],[-5,20],[4,-6],[0,11],[-3,0],[4,4],[-6,3],[-3,10],[2,-9],[2,-5],[-1,-5],[-10,30],[4,9],[-4,-7],[-4,11],[1,7],[-6,19],[4,2]],[[1700,1088],[-3,13],[-14,15]],[[1652,1150],[-22,57]],[[1642,1300],[25,12],[12,-2]],[[1692,1293],[0,-14],[5,-27]],[[1741,1151],[3,-4],[2,-5]],[[1746,1142],[-1,-23],[-4,-27],[-1,-35],[-4,-13]],[[1435,1911],[15,38]],[[1455,1984],[-6,16],[6,2],[6,-6]],[[1516,1924],[10,-17],[-9,-39]],[[1523,1867],[5,-18],[-11,6]],[[1519,1609],[14,2]],[[1544,1418],[-11,-31],[1,-11]],[[1534,1376],[-4,-6],[1,-10]],[[1522,1346],[-13,23],[-2,15],[-50,65],[-12,29],[-6,28],[2,17],[-12,48],[-2,15],[-6,13],[0,13],[-18,97],[-5,12],[-9,40],[-17,24],[1,9],[3,0],[1,7],[-5,16],[2,7],[-4,11],[1,14],[13,33]],[[1384,1853],[-2,-9],[5,6]],[[1387,1850],[6,-5],[5,-19]],[[1402,1824],[5,15],[5,42]],[[3437,2865],[-1,-1],[-1,1],[2,0]],[[3567,3279],[13,-4]],[[3477,3007],[-12,-36],[0,-9]],[[3487,2878],[-6,-6],[-2,7]],[[3448,2861],[-2,-7],[0,6],[0,-8],[-2,9],[0,-6],[-2,5],[-2,-4],[-3,4],[0,1],[0,1],[0,3]],[[3437,2865],[-1,1],[-1,1],[-3,18],[1,5],[-8,3],[1,13],[-3,12],[-2,3],[-3,-4],[3,2],[2,-5],[-24,-3],[-2,-6],[-7,6],[0,4],[-10,-8],[-12,2],[-11,-8],[0,5],[-2,0]],[[3528,3323],[10,7],[15,-13]],[[2757,3792],[-12,7],[1,7]],[[2731,3799],[-6,11],[3,6]],[[2728,3816],[-2,3],[-13,4]],[[2710,3831],[-5,-5],[3,15],[-6,19]],[[2698,3928],[3,-2],[1,6],[-5,4]],[[2697,3936],[27,12],[5,10],[21,10],[4,0],[1,0],[4,-5],[1,-1],[-5,3],[5,-13],[12,3]],[[2772,3955],[-5,-7],[7,6]],[[2774,3954],[43,-1],[8,-8],[7,-52],[-11,-16]],[[2828,3869],[-2,-17],[9,-27],[-3,-1]],[[2832,3824],[2,-7],[-1,-7],[-4,-1],[-15,-30],[1,-14]],[[2815,3765],[2,-6]],[[2817,3759],[-17,16]],[[2766,3774],[-5,4],[-4,14]],[[1364,2264],[0,-2],[-1,3],[1,-1]],[[1372,2272],[-1,0],[3,3],[0,-2],[-2,-1]],[[1366,2268],[1,-2],[-4,6],[1,5],[2,-9]],[[1358,2297],[-1,0],[-1,1],[1,0],[1,-1]],[[1356,2299],[-1,-1],[0,1],[1,2],[0,-2]],[[1401,2297],[0,1],[0,3],[1,-2],[-1,-2]],[[1405,2301],[-2,0],[0,5],[2,0],[0,-5]],[[1361,2330],[-1,1],[0,1],[1,-1],[0,-1]],[[1358,2338],[2,-1],[0,-1],[-1,0],[-1,2]],[[1358,2338],[-2,2],[0,1]],[[1356,2341],[1,0],[1,-3]],[[1425,2314],[-1,-7],[4,-17],[-2,-11],[-4,-6]],[[1418,2263],[-8,30],[3,1],[1,11],[2,-6]],[[1416,2299],[3,-3],[-4,10],[-4,-4],[-2,10],[-7,13],[1,6],[-10,-10],[-4,-15],[-7,-8],[7,-25],[-6,-10],[-7,0],[-2,23],[-2,-1],[0,-9],[-4,3],[-4,17],[-7,5],[-6,1],[-2,-11],[-2,10]],[[1348,2317],[3,6],[-3,5]],[[1348,2328],[1,20]],[[1349,2348],[7,-7]],[[1356,2341],[2,-15],[5,-2],[-1,8],[6,-13],[4,-1],[24,28],[20,-12],[9,-20]],[[2408,3507],[1,-10],[5,-4],[-11,-20],[2,-18],[-3,-12],[2,-6],[-2,-12],[-7,0]],[[2395,3425],[8,-23],[-4,-12],[-1,-9]],[[2398,3381],[3,-10],[2,2],[-8,-24],[2,-13]],[[2397,3336],[-7,-6],[-15,0],[2,15],[0,33],[2,2],[-1,4],[-6,-4],[-1,9],[5,3],[-1,7],[-2,-8],[-5,2],[2,21],[3,9],[6,38],[-3,42],[10,11]],[[2386,3514],[1,-4]],[[2387,3510],[-1,-6],[22,3]],[[4595,1622],[0,2],[2,-1],[0,-2],[-2,1]],[[4595,1622],[-2,0],[0,4],[2,-1],[0,-3]],[[4598,1644],[2,4],[-1,-10],[-3,3],[-3,15],[5,-12]],[[4592,1665],[2,1],[1,-9],[-5,2],[-2,8],[4,-2]],[[4587,1662],[-3,6],[1,5],[2,-2],[0,-9]],[[4598,1702],[0,-12],[0,-3],[-2,11],[2,4]],[[4494,1691],[-5,8],[-1,3],[4,-4],[2,-7]],[[4493,1699],[-3,3],[0,1],[3,0],[0,-4]],[[4495,1701],[-2,3],[1,1],[1,-1],[0,-3]],[[4495,1711],[1,-2],[-1,-1],[-1,2],[1,1]],[[4495,1711],[-1,0],[0,2],[1,0],[0,-2]],[[4495,1714],[-2,0],[0,2],[1,1],[1,-3]],[[4516,1722],[-1,0],[1,1],[0,-1]],[[4499,1723],[-1,1],[-1,3],[2,-1],[0,-3]],[[4555,1797],[-2,1],[-1,9],[3,-4],[0,-6]],[[4556,1808],[0,1],[0,2],[1,-2],[-1,-1]],[[4549,1811],[0,2],[0,1],[1,-2],[-1,-1]],[[4543,1808],[-2,4],[1,6],[2,-7],[-1,-3]],[[4571,1827],[-1,1],[1,1],[0,-1],[0,-1]],[[4530,1829],[0,1],[0,2],[1,-1],[-1,-2]],[[4576,1834],[-1,1],[0,1],[1,1],[0,-3]],[[4526,1833],[-1,3],[2,5],[1,-4],[-2,-4]],[[4613,1853],[3,-17],[-2,-11],[-4,0],[2,-17],[-4,-5],[-5,2],[-1,-10],[-13,-16],[-12,-1],[-4,8],[-4,-3],[-10,17],[2,8],[11,-5],[9,2],[3,19],[1,-2],[-2,-9],[2,-8],[10,2],[5,18],[6,3],[-3,25],[7,-5],[3,5]],[[4514,1855],[-1,2],[1,2],[1,-2],[-1,-2]],[[4633,1855],[-1,2],[1,3],[0,-4],[0,-1]],[[4628,1878],[-1,1],[0,1],[1,-2]],[[4629,1881],[-1,1],[1,1],[0,-2]],[[4619,1888],[-1,4],[1,2],[0,-6]],[[4595,1899],[2,-2],[-4,0],[2,2]],[[4611,1896],[-1,4],[0,1],[1,-2],[0,-3]],[[4610,1902],[-1,0],[0,4],[1,-1],[0,-3]],[[4610,1908],[0,2],[1,-1],[-1,-1]],[[4458,1757],[-3,5],[3,15]],[[4458,1777],[-1,133]],[[4457,1910],[13,-13],[22,-17],[7,-13],[7,0],[17,-36],[1,-24],[25,-20],[3,-11],[1,-11],[-13,-3],[3,-26],[8,-17],[6,-4],[1,-18],[3,-4],[2,-15],[10,2],[-1,-16],[11,-6],[0,-3],[-5,-4],[3,-8],[14,-6],[-8,-4],[5,-8],[-7,-5],[-5,6],[4,3],[-5,4],[-30,13],[-10,25],[1,9],[-5,1],[-7,33],[-12,10],[-5,1],[0,6],[-4,-2],[-1,6],[0,-5],[-1,4],[1,-8],[-3,5],[-1,-7],[-8,12],[5,-18],[-9,2],[4,-12],[-9,-3],[-4,2],[-4,-2],[0,5],[-1,1],[-3,-2],[3,1],[1,-6],[10,-4],[4,-11],[-1,-8],[-10,-12],[-6,6],[-15,-1],[-1,83]],[[4595,1909],[16,-22],[13,-30],[2,-10],[-2,-14],[-4,4],[0,17],[-6,21],[-21,30],[2,2],[-1,5],[1,-3]],[[4589,1908],[-4,-1],[-3,8],[3,3],[4,-3],[0,-7]],[[2278,2405],[1,-2],[0,-4],[-1,0],[0,6]],[[2277,2400],[-1,3],[2,2]],[[2278,2405],[0,-3],[-1,-2]],[[2277,2400],[-1,-1],[-2,2],[2,4],[1,-5]],[[2280,2406],[-1,-1],[0,1],[1,2],[0,-2]],[[2280,2406],[2,3],[0,-3],[-1,-2],[-1,2]],[[2275,2405],[-2,1],[1,2],[1,0],[0,-3]],[[2282,2413],[-1,0],[0,1],[1,2],[0,-3]],[[2274,2413],[-1,1],[2,2],[0,-1],[-1,-2]],[[2274,2417],[-1,-2],[-1,0],[0,2],[2,0]],[[2278,2413],[-2,1],[2,5],[1,-2],[-1,-4]],[[2284,2416],[-2,1],[3,3],[-1,-2],[0,-2]],[[2275,2429],[3,1],[-1,-5],[-2,1],[0,3]],[[2275,2429],[-1,-1],[-1,2],[0,2],[1,-2],[1,-1]],[[2296,2416],[-6,-21],[1,10],[-3,-8],[0,9],[-2,-3],[-1,5],[3,5],[-4,-3],[3,10],[4,-1],[-5,3],[-1,-5],[0,5],[-2,2],[3,5],[3,1],[1,-4],[2,-2],[0,1],[-1,8],[-6,-1],[-7,-8],[3,10],[-7,-3],[-1,8],[3,6],[-5,-5],[-4,5]],[[2267,2445],[15,4],[6,9]],[[2288,2458],[10,0],[11,0]],[[3215,2913],[1,-13],[-2,-13],[-7,-3],[-3,33],[3,5],[1,15],[3,4],[5,-9],[-1,-19]],[[2794,3662],[15,51],[5,2],[7,12]],[[2821,3727],[19,-5],[6,-9],[5,7],[12,3]],[[2863,3723],[2,7],[5,3],[4,-4]],[[2874,3729],[5,-18],[10,-24],[3,-20]],[[2892,3667],[-3,-30]],[[2889,3637],[9,-13],[11,6],[2,-10],[-1,-11],[-10,5],[2,-5],[-3,-5],[2,1],[1,-1],[-3,-2],[2,0],[-4,-11],[-1,-20]],[[2896,3571],[-21,14],[-12,-5],[-11,-13]],[[2852,3567],[-32,6],[-3,3],[2,7]],[[2819,3583],[-8,13],[4,6]],[[2815,3602],[-4,4],[-4,-9]],[[2807,3597],[-10,11],[2,4]],[[2799,3612],[-3,4],[2,5],[-10,12],[0,10]],[[2788,3643],[-7,13],[6,2],[7,4]],[[2874,3729],[-4,5],[15,5],[5,-7],[14,-9]],[[2904,3723],[1,-20],[5,-4],[0,-13],[5,-5],[0,-10],[3,-5]],[[2918,3666],[-16,3],[0,-17]],[[2902,3652],[-6,-11],[0,-7],[-5,-2]],[[2891,3632],[-2,5]],[[2892,3667],[-2,15],[-16,47]],[[4241,2196],[-1,0],[0,1],[1,1],[0,-2]],[[4246,2252],[-1,5],[0,4],[1,-2],[0,-7]],[[4232,2329],[-2,3],[1,3],[1,-2],[0,-4]],[[4217,2334],[-1,-5],[-2,4],[2,4],[1,-3]],[[4218,2345],[0,2],[1,2],[1,-2],[-2,-2]],[[4248,2346],[0,2],[0,5],[1,-3],[-1,-4]],[[4250,2334],[2,1],[2,-12],[-4,-11],[5,-4],[-1,-21],[3,-8],[0,-14],[-4,-13],[1,-5],[-3,3],[1,-22],[-5,39],[-3,-4],[-4,-19],[5,-25],[-4,-16],[-3,7],[1,12],[-4,-9],[-11,13],[-3,22],[4,20],[-8,15],[-3,0],[-2,-9],[2,-7],[-5,5],[0,8],[-4,-16],[0,17],[1,15],[2,12],[4,1],[1,7],[6,-9],[1,-11],[-3,-7],[7,9],[3,14],[4,-4],[2,18],[4,-6],[5,6],[-1,29],[9,-21]],[[4251,2353],[-3,3],[2,8],[2,-9],[-1,-2]],[[4239,2359],[-2,5],[0,3],[1,-1],[1,-7]],[[4228,2364],[1,-1],[1,-10],[-4,-5],[-7,4],[4,15],[5,-3]],[[4244,2356],[-2,11],[2,12],[1,-21],[-1,-2]],[[4163,2378],[-1,4],[4,1],[0,-2],[-3,-3]],[[4226,2384],[-1,-1],[1,4],[1,-1],[-1,-2]],[[4227,2384],[0,1],[1,2],[1,-2],[-2,-1]],[[4202,2378],[-2,1],[3,10],[1,-5],[-2,-6]],[[4246,2386],[-2,3],[1,2],[2,-3],[-1,-2]],[[4180,2390],[0,2],[1,2],[0,-2],[-1,-2]],[[4215,2390],[-6,-34],[3,-22],[-4,-7],[-9,23],[1,11],[6,4],[1,29],[4,4],[4,-8]],[[4222,2402],[0,-27],[-6,-10],[-4,-24],[1,21],[9,46],[0,-6]],[[4218,2403],[-1,3],[1,2],[0,-4],[0,-1]],[[4159,2410],[0,-17],[3,-13],[-5,-7],[-2,-10],[-6,-4],[0,7],[0,-3],[3,15],[2,-3],[2,8],[-1,13],[3,-8],[-2,10],[3,12]],[[4164,2411],[-1,1],[-1,3],[2,1],[0,-5]],[[4230,2408],[5,5],[1,-8],[-1,-16],[4,-17],[-2,-4],[-2,7],[0,-12],[-3,6],[0,21],[-2,8],[-3,-3],[-2,22],[5,-9]],[[4230,2415],[-2,0],[-2,7],[3,0],[1,-7]],[[4233,2417],[-1,1],[-1,6],[2,-5],[0,-2]],[[4197,2426],[5,-10],[3,3],[1,-6],[4,6],[-1,-15],[-16,-27],[2,46],[-4,2],[2,6],[4,-5]],[[4165,2421],[-1,9],[0,3],[3,-4],[-2,-8]],[[4170,2427],[-1,5],[0,1],[1,-2],[0,-4]],[[4182,2439],[-2,3],[0,2],[1,0],[1,-5]],[[4168,2438],[3,-5],[-3,2],[-2,-2],[-2,12],[4,-7]],[[4203,2445],[-1,-2],[-2,7],[3,1],[0,-6]],[[4228,2452],[9,2],[2,-4],[0,-6],[3,-4],[-1,-20],[3,-10],[-1,-5],[1,0],[2,-7],[-7,4],[-4,12],[-2,0],[3,10],[-9,16],[-2,13],[3,-1]],[[4217,2446],[3,-6],[2,-17],[-7,18],[-5,-11],[2,12],[-1,13],[6,-9]],[[4198,2451],[-1,3],[1,2],[0,-4],[0,-1]],[[4218,2446],[-1,4],[-1,7],[2,-2],[0,-9]],[[4194,2440],[-2,4],[3,14],[1,-4],[-2,-14]],[[4213,2458],[-6,12],[0,3],[1,1],[5,-16]],[[4222,2477],[2,1],[0,-3],[-1,1],[-1,1]],[[4222,2477],[-1,1],[-1,2],[3,-1],[-1,-2]],[[4220,2478],[-1,1],[0,3],[1,-1],[0,-2],[0,-1]],[[4195,2484],[1,0],[0,-1],[-1,1]],[[4176,2486],[4,2],[7,-13],[0,-20],[-4,-13],[-6,17],[-2,17],[-5,9],[6,1]],[[4195,2484],[-1,-7],[-3,8],[3,4],[1,-5]],[[4170,2496],[0,-3],[-3,7],[1,0],[2,-4]],[[4226,2503],[-1,1],[1,0]],[[4226,2504],[0,-1]],[[4225,2503],[2,-5],[-3,-10],[-2,5],[1,14],[2,-4]],[[4196,2505],[-2,4],[-2,3],[3,-4],[1,-3]],[[4197,2531],[-2,3],[0,1],[2,0],[0,-4]],[[4194,2541],[0,-10],[-1,-3],[-2,13],[3,0]],[[4165,2587],[1,2],[0,-1],[0,-3],[-1,2]],[[4220,2478],[-2,-6],[6,-1],[-1,-18],[-4,7],[3,8],[-4,-4],[-6,6],[-2,14],[-9,19],[1,-28],[-3,13],[-9,16],[-6,-13],[-6,11],[-2,0],[-1,-5],[-1,16],[5,10],[0,5],[-6,7],[1,-12],[-1,-2],[-3,13],[-3,-1],[-2,38],[-3,4],[1,13],[2,3],[0,-4]],[[4165,2587],[0,-2],[3,-7],[4,4],[-2,17],[2,28],[-1,6],[3,33],[23,1],[1,-7],[-2,-26],[5,-18],[-5,-31],[-8,-12],[1,-6],[-4,-14],[4,-23],[1,-19],[7,-10],[1,5],[-2,5],[8,6],[4,-9],[1,-15],[3,5],[-1,7],[1,3],[8,-10],[-4,-3],[-1,-5],[5,-12]],[[4331,3543],[-2,1],[0,2],[2,-1],[0,-2]],[[4529,3561],[-1,2],[2,0],[0,-2],[-1,0]],[[4536,3569],[-1,4],[4,1],[0,-1],[-3,-4]],[[3162,3578],[-1,0],[0,1],[2,0],[-1,-1]],[[4529,3598],[6,-2],[-9,-11],[-5,-17],[-2,2],[10,28]],[[4566,3628],[-17,-13],[-5,-15],[-5,-5],[4,9],[-1,4],[11,16],[1,7],[1,-6],[4,0],[6,10],[1,-7]],[[3166,3634],[-1,4],[0,1],[1,-4],[0,-1]],[[3173,3640],[-2,3],[0,1],[1,0],[1,-4]],[[3176,3641],[-2,2],[-1,4],[2,-4],[1,-2]],[[4583,3646],[-5,-8],[-3,-1],[6,15],[8,7],[-6,-13]],[[4595,3667],[-1,1],[0,1],[1,-2]],[[4613,3694],[-3,-10],[-4,-4],[0,2],[7,12]],[[4617,3698],[-1,0],[0,2],[1,1],[0,-3]],[[4624,3712],[0,1],[1,3],[0,-3],[-1,-1]],[[4628,3725],[-1,0],[-1,2],[1,1],[1,-3]],[[4638,3749],[2,6],[1,1],[0,-3],[-3,-4]],[[4638,3757],[-1,0],[0,1],[1,0],[0,-1]],[[4644,3765],[2,-1],[0,-1],[-1,-1],[-1,3]],[[4648,3769],[-2,4],[5,9],[-1,-10],[-2,-3]],[[4644,3785],[-1,2],[0,2],[1,-1],[0,-3]],[[4663,3802],[-8,-4],[0,8],[6,3],[6,13],[1,-8],[-5,-12]],[[4671,3818],[-3,1],[0,2],[4,5],[-1,-8]],[[4660,3824],[-1,0],[-1,3],[3,1],[-1,-4]],[[4494,3770],[-5,3],[5,-3],[-9,-6],[-6,-41],[1,-14],[5,-13],[1,-16],[4,-4],[2,5],[2,-16],[-2,-10],[-2,16],[-8,2],[-1,5],[-4,-5],[-5,-25],[-3,25],[3,18],[-1,18],[3,13],[-5,28],[4,29],[-1,35],[3,21],[-9,28],[0,15],[4,25],[-2,13],[6,5],[1,-5],[3,0],[3,5],[-3,5],[4,1],[0,6],[-2,-6],[1,9],[-4,11],[3,1],[1,6],[4,-11],[-1,-12],[5,-24],[1,-20],[-3,-7],[0,-15],[3,-8],[-2,-8],[2,5],[6,-49],[9,-45],[4,-6],[1,-8],[-9,20],[-7,4]],[[4413,3951],[-1,1],[3,5],[0,-2],[-2,-4]],[[4411,3953],[-1,3],[0,3],[1,-3],[0,-3]],[[2772,3955],[4,6],[-3,-6],[-1,0]],[[4405,3978],[-2,-7],[-6,0],[2,4],[6,3]],[[4416,3970],[-4,-10],[-3,10],[-4,-4],[5,15],[9,-5],[-3,-6]],[[2816,3951],[-42,3]],[[2774,3954],[9,9],[-8,-2],[2,12],[6,-1],[7,12]],[[2790,3984],[-5,-11],[7,-3],[3,2],[0,11]],[[2795,3983],[2,0],[20,-13],[-2,-13],[1,-6]],[[4591,4118],[-2,0],[4,3],[-2,-3]],[[4570,4124],[-2,-2],[0,1],[1,2],[1,-1]],[[4786,4120],[0,-7],[-17,-15],[-1,4],[5,6],[2,9],[-2,1],[12,8],[1,-6]],[[4660,4129],[-1,0],[-1,0],[2,1],[0,-1]],[[2898,4163],[-2,1],[0,2],[2,-2],[0,-1]],[[2999,4308],[-2,3],[3,-2],[-1,-1]],[[104,4319],[-3,0],[0,1],[3,-1]],[[3061,4320],[0,-3],[-6,4],[4,-1],[-2,3],[3,1],[1,-4]],[[103,4322],[1,5],[5,-2],[0,-1],[-6,-2]],[[3059,4328],[-1,1],[0,3],[1,-2],[0,-2]],[[2996,4331],[-3,4],[0,3],[4,0],[-1,-7]],[[3000,4339],[4,1],[-4,-2],[-1,1],[1,0]],[[152,4359],[0,3],[1,-1],[-1,-2]],[[3462,4392],[-1,0],[0,1],[1,1],[0,-2]],[[3472,4394],[-3,1],[0,1],[2,0],[1,-2]],[[3093,4393],[-2,0],[-2,2],[2,1],[2,-3]],[[3461,4397],[11,-4],[1,-6],[-4,-2],[-6,11],[-4,1],[2,0]],[[3252,4449],[1,3],[1,-1],[0,-1],[-2,-1]],[[3249,4450],[-2,1],[1,1],[2,1],[-1,-3]],[[3205,4453],[5,5],[4,-1],[-4,-1],[-5,-3]],[[3304,4469],[-1,-2],[-9,-1],[2,1],[8,2]],[[3435,4468],[-1,0],[-2,1],[3,0],[0,-1]],[[3270,4472],[-3,0],[-1,1],[4,0],[0,-1]],[[3258,4474],[-1,0],[2,1],[-1,-1]],[[3418,4479],[4,-3],[1,-2],[-8,5],[3,0]],[[3322,4482],[0,-1],[-7,7],[6,-4],[1,-2]],[[2977,4488],[-4,0],[-2,1],[4,1],[2,-2]],[[3432,4489],[-2,1],[-1,2],[4,-1],[-1,-2]],[[3198,4482],[-2,-7],[1,6],[-18,-15],[-10,6],[1,14],[9,8],[19,-12]],[[4741,4472],[1,4],[-5,3],[-1,14],[4,2],[-1,-4],[3,-16],[-1,-3]],[[3433,4492],[-3,1],[5,4],[-2,-5]],[[4741,4490],[0,7],[3,0],[0,-5],[-3,-2]],[[4862,4502],[0,-1],[-2,2],[3,1],[-1,-2]],[[4852,4505],[-3,-9],[-5,0],[-15,9],[7,7],[16,-7]],[[3653,4516],[-1,0],[-3,3],[4,0],[0,-3]],[[3325,4522],[14,-12],[1,-6],[-13,-3],[-2,6],[-7,2],[3,-2],[-2,-1],[-8,15],[5,-2],[-2,4],[5,6],[6,-7]],[[3660,4528],[1,-1],[-4,-2],[4,5],[-1,-2]],[[3294,4530],[-3,0],[-2,3],[5,-3]],[[4754,4536],[2,-1],[-4,0],[2,0],[0,1]],[[4745,4538],[-1,0],[-2,2],[2,1],[1,-3]],[[3657,4536],[-1,-8],[-3,-2],[2,14],[2,1],[0,-5]],[[4730,4541],[-2,0],[-1,4],[4,-4],[-1,0]],[[3244,4551],[-2,1],[-1,0],[2,2],[1,-3]],[[3240,4558],[-2,1],[-1,1],[2,0],[1,-2]],[[3234,4561],[2,-4],[-4,4],[4,-5],[2,0],[-2,-6],[1,-3],[-13,11],[4,3],[6,0]],[[4415,4565],[-4,-3],[-9,4],[10,3],[3,-4]],[[0,4567],[20,1],[16,-12],[-7,-7],[-19,-5],[-10,3],[4982,-7],[-2,9],[19,18],[-4999,0]],[[4423,4578],[-2,-1],[-1,1],[1,1],[2,-1]],[[4279,4604],[8,-4],[7,0],[4,-5],[-2,-3],[3,-1],[-11,-5],[-17,13],[-13,0],[9,6],[12,-1]],[[4289,4604],[-3,-2],[-8,4],[12,-2],[-1,0]],[[4296,4608],[-3,-1],[-26,0],[14,4],[15,-3]],[[4294,4613],[1,-1],[-14,2],[6,1],[7,-2]],[[4207,4614],[9,-3],[-12,2],[-6,4],[9,-3]],[[4169,4621],[-6,-1],[-2,3],[6,2],[2,-4]],[[3488,4629],[-1,0],[2,5],[1,-3],[-2,-2]],[[3268,4631],[17,-7],[-13,-6],[9,0],[-2,-7],[-10,0],[7,-4],[-11,-8],[5,0],[1,-9],[-5,-9],[4,-2],[10,-25],[20,-16],[-3,-5],[-10,4],[8,-5],[-9,2],[-1,4],[-5,-3],[6,-3],[-2,-1],[-15,7],[-3,-7],[-9,9],[-1,-2],[4,-3],[-18,6],[-1,2],[5,2],[-3,5],[10,2],[-11,5],[6,7],[-6,-6],[-3,5],[1,5],[-6,-6],[-5,7],[-10,-5],[-6,10],[3,12],[11,0],[0,5],[5,4],[-1,4],[6,6],[-5,1],[7,0],[-12,3],[8,7],[6,-1],[-4,3],[4,1],[-3,6],[24,9],[6,-3]],[[3488,4629],[4,2],[3,-6],[-25,-5],[2,7],[-1,7],[15,3],[3,-2],[-4,-6],[3,0]],[[4267,4638],[10,-2],[5,-4],[-2,-4],[10,-3],[-2,-4],[4,1],[-35,-20],[0,-4],[-4,3],[2,10],[-1,4],[6,7],[-3,6],[1,6],[9,4]],[[4278,4636],[-6,1],[-4,1],[5,0],[5,-2]],[[4230,4645],[14,-7],[-1,-4],[10,5],[2,-2],[-4,-5],[6,0],[2,-10],[-6,-7],[2,-3],[-2,-10],[1,-5],[-3,-3],[-19,13],[-32,11],[10,-2],[3,9],[4,0],[-6,9],[2,9],[17,2]],[[4473,4651],[18,-13],[1,-11],[-53,6],[10,3],[10,14],[14,1]],[[4229,4650],[-2,-1],[-2,2],[6,0],[-2,-1]],[[4383,4662],[6,-4],[3,-5],[-3,-2],[-10,13],[4,-2]],[[4458,4655],[-8,-4],[-5,7],[2,6],[9,1],[3,-4],[-1,-6]],[[4111,4665],[-2,1],[2,2],[0,-3]],[[3319,4667],[-1,1],[2,2],[-1,-3]],[[4065,4673],[10,-4],[-9,-11],[-19,8],[6,1],[3,8],[9,-2]],[[4541,4703],[19,3],[3,-2],[-2,-3],[2,-3],[33,-2],[-5,-9],[-27,-5],[-36,17],[5,13],[8,-9]],[[4454,4714],[-2,0],[-1,2],[3,-1],[0,-1]],[[4383,4704],[-3,3],[4,14],[6,-8],[-3,-4],[1,-3],[-5,-2]],[[3321,4723],[-1,-1],[-1,1],[4,0],[-2,0]],[[4456,4729],[-1,1],[4,0],[-3,-1]],[[3339,4732],[-4,-2],[-4,0],[2,2],[6,0]],[[4432,4729],[18,-10],[0,-5],[8,0],[-2,3],[1,11],[9,-1],[-4,6],[17,-12],[19,0],[20,-12],[-8,-3],[-2,-3],[4,-3],[-14,-8],[-14,4],[-6,11],[8,8],[-8,1],[-5,-4],[0,-8],[7,-10],[15,-5],[-17,-5],[-7,4],[5,0],[-2,3],[-30,-7],[-5,6],[-3,-2],[1,-6],[-6,-4],[-17,7],[-14,18],[8,0],[-4,2],[2,7],[-5,0],[3,7],[8,-1],[-4,7],[18,9],[6,-5]],[[4075,4739],[-2,0],[-3,1],[2,2],[3,-3]],[[4062,4749],[3,-4],[-11,3],[6,2],[2,-1]],[[4573,4754],[-2,-4],[-11,0],[5,3],[8,1]],[[3447,4761],[10,-6],[-1,-9],[-9,-8],[1,-1],[-66,-21],[-28,-17],[-3,3],[-8,-10],[-11,-1],[10,-3],[-7,-2],[2,-4],[-11,1],[5,-4],[-1,-3],[-9,5],[2,-3],[-2,-7],[-14,4],[8,-11],[-6,-1],[1,-3],[-3,0],[0,-6],[-9,7],[-3,-3],[9,-6],[0,-4],[-3,-3],[-4,4],[-12,2],[10,-2],[5,-6],[-4,-4],[-9,4],[8,-6],[-7,-5],[0,-4],[-12,7],[1,-5],[-14,5],[-11,-4],[-2,2],[16,11],[-16,-3],[-6,5],[16,8],[-3,1],[7,6],[11,-2],[-11,5],[10,1],[-8,3],[2,3],[13,1],[-11,3],[1,4],[20,1],[-16,3],[12,6],[-12,1],[1,3],[-2,3],[8,1],[2,-4],[6,6],[-3,2],[2,3],[12,-2],[-3,6],[10,4],[-3,3],[32,11],[-4,2],[4,2],[7,1],[-5,-4],[4,0],[6,4],[-4,1],[2,4],[20,-3],[23,5],[20,9],[6,-1],[-4,5],[13,8],[22,2]],[[4314,3519],[-1,12]],[[4331,3628],[14,-11],[3,3],[0,12]],[[4340,3713],[-22,-1],[-4,15]],[[4250,3894],[-6,4],[0,6],[-16,5],[-12,13],[-38,-9]],[[4176,3886],[0,-20],[-9,-12]],[[4136,3778],[-22,18]],[[3725,3776],[-4,-11],[-8,-3],[-11,18]],[[3475,3979],[-18,11]],[[3170,3790],[-5,14],[-6,6],[-2,-4]],[[3157,3806],[-1,-10],[-5,-6]],[[3153,3764],[-8,-26]],[[3174,3672],[10,-11],[-9,-5],[1,-10],[-2,4],[-10,-11],[-4,4],[1,-7],[-2,6],[-2,1],[3,-7],[-7,-28],[-5,-9],[9,-18],[2,-9],[-1,-10],[2,13],[2,0],[-3,-30],[15,-43],[-9,-22],[-5,0],[-4,4]],[[3156,3484],[-7,19],[-16,13]],[[3133,3516],[1,11],[-11,9],[-15,-6]],[[3064,3564],[-7,1],[-2,-7]],[[3055,3558],[-17,32],[-8,4],[-6,12],[-4,-2],[-4,11],[-8,5],[5,6],[-4,2],[2,3],[3,-7],[9,2],[-2,12],[5,15],[3,-3],[1,7],[5,-4],[-9,13],[-3,9],[12,0],[-3,2],[1,4],[12,7],[-1,9],[-14,-6],[0,9],[2,9]],[[3032,3709],[6,3],[1,6]],[[3039,3718],[13,0],[3,16]],[[3055,3734],[-5,11],[6,10],[-5,5],[6,8]],[[3057,3768],[0,13],[-5,-2]],[[3052,3779],[-8,12],[-4,-3],[-9,10],[-3,-6],[-8,19],[-12,-8],[-7,7],[-7,-2],[-3,10],[0,14],[-4,7],[-10,1],[-4,14]],[[2973,3854],[5,5],[-9,21]],[[2969,3880],[-20,-1]],[[2949,3879],[-2,-10],[-6,2]],[[2934,3903],[2,7],[11,-4],[7,13],[-4,4]],[[2950,3923],[0,5],[-9,3]],[[2929,3996],[-10,9],[-10,-6]],[[2908,4008],[-17,7],[-4,24]],[[2886,4057],[-7,10],[7,10]],[[2880,4110],[7,17],[4,2],[-3,16],[6,-4],[1,7],[5,-2],[5,8],[13,-6],[2,4],[-23,15],[-3,6],[4,-3],[-2,5],[2,5],[-12,-7],[48,70]],[[2900,4470],[-5,3],[9,4],[3,10]],[[2917,4494],[1,6],[10,-5],[0,9],[13,-4],[-1,5],[5,-2],[-2,6],[2,1],[15,-8],[-4,-5],[-12,2],[7,-5],[-4,-3],[11,2],[-3,-7],[10,5],[-4,-5],[4,-3],[-7,-5],[0,-4],[6,6],[2,2],[1,5],[30,-4],[27,-19],[9,-12],[20,-11],[-1,5],[10,-15],[7,-1],[1,-17],[4,-5],[-2,-10],[-16,-20],[-20,-8],[-43,12],[-10,8],[-5,-3],[0,4],[-18,6],[-7,11],[-11,2],[5,-1],[10,-14],[-2,-1],[7,-3],[-6,-2],[5,1],[4,-3],[-5,1],[-3,-1],[11,-4],[-6,-3],[11,-3],[10,-12],[2,-7],[-4,3],[0,-12],[-4,-3],[8,-19],[0,-7],[-2,-4],[7,-8],[7,1],[6,-7],[0,-5],[16,-7],[9,7],[-1,11],[-12,3],[-9,19],[5,2],[0,6],[3,2],[19,-13],[-5,-3],[0,-4],[7,5],[27,-9],[-2,14],[-9,16],[0,6],[14,15],[10,4],[10,16],[16,-4],[5,-6],[-5,-5],[1,-2],[2,-3],[-2,4],[7,4],[4,-11],[-1,11],[5,17],[-2,4],[2,5],[-10,15],[5,12],[0,8],[2,1],[-2,0],[2,13],[-13,14],[36,-7],[8,-12],[3,-12],[-18,-3],[-7,-13],[10,-7],[6,-12],[8,1],[-3,-4],[18,9],[0,7],[3,9],[-2,5],[3,2],[15,0],[-7,11],[9,-3],[22,18]],[[3205,4453],[4,-1],[14,7],[3,-2],[-3,-3],[2,-3],[7,6],[-4,4],[3,2],[-5,-1],[20,13],[11,0],[-13,-3],[6,-1],[-5,-8],[4,-9],[-11,-5],[15,-2],[3,4],[4,-5],[2,8],[6,6],[9,4],[18,-4],[4,6],[5,1],[3,5],[3,-6],[1,0],[-2,6],[8,4],[5,-1],[-5,-2],[8,-6],[-5,-5],[0,-7],[10,-2],[2,4],[-2,7],[15,8],[0,8],[-4,0],[-6,16],[7,4],[3,7],[45,-12],[12,-9],[-2,0],[-1,-5],[4,4],[12,-5],[-3,-1],[19,-9],[2,-5],[13,-10],[1,-8],[3,1],[9,23],[-2,1],[4,2],[-11,1],[-6,11],[1,9],[-15,6],[-1,-6],[-2,1],[1,16],[6,3],[-3,4],[4,19],[-9,1],[-1,4],[3,7],[-3,-1],[4,9],[14,9],[7,10],[7,31],[5,9],[31,-1],[11,-38],[0,-5],[-7,-9],[11,-12],[3,-9],[-2,-9],[1,-7],[-5,-6],[3,-3],[-2,-5],[3,-7],[-2,-8],[0,-23],[13,-14],[2,-5],[-7,-8],[1,-13],[-2,-5],[-7,-4],[-2,-10],[-5,-1],[3,-5],[-7,-8],[-5,1],[2,-12],[-12,-5],[-5,5],[6,4],[-25,2],[6,-11],[36,-10],[5,3],[2,11],[19,13],[1,12],[11,14],[0,16],[-5,9],[1,10],[3,3],[27,8],[1,-8],[9,-9],[-2,-8],[3,-2],[-3,-9],[2,-3],[-3,-4],[10,-8],[17,0],[-22,7],[1,14],[9,4],[-6,10],[-1,13],[-23,12],[-18,-5],[-13,3],[2,9],[-6,12],[3,14],[8,13],[0,6],[-10,21],[-8,6],[7,8],[1,6],[19,10],[2,10],[4,15],[5,-9],[-2,-2],[2,-8],[-7,-15],[4,-7],[-4,-10],[23,-7],[1,-4],[1,4],[9,-1],[11,-10],[7,2],[2,2],[-8,-1],[0,5],[-4,0],[1,5],[-5,1],[1,4],[-7,-3],[-17,10],[-3,13],[11,4],[10,-8],[7,2],[2,3],[-3,5],[32,-4],[4,2],[14,-12],[23,0],[-4,-9],[-10,-7],[1,-7],[-2,-3],[3,-8],[-5,-7],[4,-13],[-3,13],[4,1],[3,13],[7,-3],[-2,-16],[-5,-9],[7,-4],[1,2],[-1,3],[-3,4],[8,1],[3,4],[-8,28],[7,14],[-4,7],[-16,9],[1,4],[-1,3],[-21,9],[2,3],[-3,4],[3,9],[-8,7],[4,2],[87,-8],[-13,12],[47,78],[4,-2],[6,4],[23,3],[99,22],[7,-2],[-3,-2],[10,-4],[-2,-7],[-6,-3],[-1,-7],[15,-14],[-5,11],[-9,3],[1,7],[5,1],[3,4],[0,7],[-14,14],[28,2],[19,-6],[-19,6],[5,8],[-5,4],[31,27],[44,-10],[-11,-13],[28,-2],[-15,-15],[20,1],[1,7],[44,1],[15,-10],[-4,-4],[5,3],[7,-5],[-3,-3],[5,-3],[-4,-4],[9,3],[-4,5],[4,0],[3,-5],[1,-9],[5,-1],[-5,-11],[1,4],[-18,7],[8,-5],[-1,-6],[6,4],[7,-9],[-27,-26],[-30,-13],[5,-1],[-25,-22],[-15,-2],[-4,-10],[-11,-2],[-3,-10],[-9,-8],[15,7],[-1,5],[2,3],[28,1],[-2,2],[17,5],[-3,5],[8,-4],[16,9],[-20,3],[10,9],[11,-5],[2,5],[5,1],[-4,-3],[14,-10],[9,2],[0,8],[8,-12],[-5,-7],[6,-4],[-1,-13],[-5,-4],[1,-5],[5,-3],[7,-1],[-12,8],[5,5],[0,10],[7,3],[-8,6],[28,7],[44,-4],[5,-3],[-7,-1],[-2,-2],[1,-6],[19,-11],[29,1],[2,-3],[18,-6],[20,-3],[19,-13],[3,3],[11,-18],[1,-17],[1,4],[-1,9],[2,6],[-5,5],[-4,12],[13,-1],[15,-21],[6,1],[-1,7],[6,-10],[-9,-4],[4,0],[8,-17],[12,-9],[3,3],[1,-7],[3,-1],[6,5],[4,12],[5,0],[-3,3],[11,23],[-1,-6],[14,-12],[11,-2],[19,9],[22,-10],[6,-9],[3,1],[-5,3],[7,2],[-6,4],[4,7],[9,2],[7,-8],[10,3],[-3,13],[-6,3],[12,10],[-15,1],[6,9],[21,3],[-5,11],[86,-19],[-26,3],[-6,-7],[-6,1],[4,-4],[9,4],[26,1],[-14,-16],[1,6],[5,4],[-5,-3],[-2,6],[-3,1],[2,-11],[-12,1],[4,-5],[-4,-5],[5,-1],[11,5],[15,19],[28,-4],[12,-12],[-5,-4],[-4,5],[-8,-4],[3,-2],[-3,-3],[18,-2],[-3,-5],[11,1],[-9,-10],[9,7],[-1,-5],[12,3],[9,-13],[-6,0],[12,-5],[47,9],[43,-8],[14,-17],[1,-5],[-5,-5],[0,-10],[17,-9],[0,-18],[6,-4],[-5,-15],[-3,-1],[4,1],[6,13],[-2,17]],[[4741,4490],[13,9],[23,4],[7,-6],[33,-4],[12,11],[7,-9],[0,-11],[15,-5],[3,-11],[15,-1],[-3,3],[4,-1],[4,8],[-5,20],[-7,1],[6,6],[-1,12],[30,-6],[7,-6],[4,1],[-4,3],[4,2],[37,-2],[9,-8],[26,-9],[6,-4],[-5,-1],[8,-1],[-4989,-10],[5,-3],[11,-5],[5,-6],[-3,2],[0,-4],[9,-4],[1,-5],[4,2],[-9,8],[10,-8],[-1,-4],[31,-19],[4,-7],[-3,-6],[8,2],[-2,-10],[3,-12],[-4,-4],[8,-4],[0,-9],[6,6],[0,-9],[4,8],[-8,5],[4,4],[-1,11],[-8,2],[14,3],[7,-3],[-3,-8],[3,1],[0,5],[10,-2],[-8,4],[18,-4],[17,-22],[-2,-3],[4,2],[2,-3],[-2,-1],[9,-4],[-12,-8],[-1,-9],[-13,8],[8,-8],[-2,-5],[-13,1],[4,1],[-14,6],[5,-3],[0,-6],[3,0],[0,-7],[-7,0],[8,-5],[-15,-11],[6,0],[-4,-5],[10,-7],[-9,1],[2,-5],[-4,-3],[-4,2],[2,7],[-2,4],[1,-6],[-4,-4],[-16,15],[-9,1],[-6,8],[2,5],[-5,11],[-13,5],[-21,-3],[1,8],[-6,9],[5,6],[1,9],[-6,-9],[-4,9],[0,-5],[-3,3],[2,-7],[-6,1],[-1,-11],[7,-12],[-10,-17],[4992,-9],[-14,-8],[4,3],[-16,1],[-3,8],[-7,5],[-8,-1],[8,0],[6,-8],[-13,-1],[-5,6],[-4,-6],[-10,-1],[-5,-3],[-3,0],[3,-1],[14,4],[5,5],[5,-7],[-3,-3],[-1,-3],[19,8],[-1,-12],[9,-8],[3,5],[3,-8],[-2,-5],[5,-2],[1,-10],[-7,-3],[6,0],[-2,-6],[2,-1],[1,8],[3,-10],[-2,3],[0,-2],[8,-7],[-3,-5],[6,-11],[-7,-8],[-1,-7],[-24,11],[2,8],[-4,-4],[-3,6],[-1,-7],[5,-3],[-8,-2],[-27,-22],[-2,2],[2,-3],[-2,-2],[-7,0],[-4,-6],[-3,3],[-1,-7],[-5,-6],[-6,2],[3,-5],[-8,-3],[2,-6],[-7,2],[3,-6],[-22,-19],[-5,-18],[-8,18],[-7,8],[-30,-11],[-12,-18],[2,24],[-18,-13],[2,-5],[-5,-8],[-5,12],[-4,-9],[-1,6],[-6,1],[1,-5],[-5,-3],[0,-7],[-3,-3],[3,-6],[-4,-5],[2,-4],[0,-3],[-5,3],[3,-4],[-9,-12],[-7,-22],[6,-14],[3,10],[9,-4],[1,-4],[-3,-8],[-5,-5],[1,-21],[6,-1],[2,-20],[-5,-6],[-5,6],[6,12],[-9,-5],[2,-4],[-7,-8],[-5,-20],[6,-26],[-6,-10],[-14,1],[-10,-14],[-2,-17],[2,-6],[-3,1],[4,-15],[-6,6],[-12,-14],[-2,6],[-3,-1],[3,-4],[-1,-10],[-2,1],[2,-12],[-4,-14],[-22,-38],[1,7],[-3,9],[-3,43],[1,-2],[1,2],[-5,12],[-8,88],[6,49],[14,27],[-3,11],[21,10],[20,30],[1,8],[10,17],[19,23],[1,8],[24,17],[-2,6],[7,10],[-4,4],[4,10],[2,20],[6,7],[10,-6],[-3,5],[8,0],[-18,9],[-15,-6],[-2,-3],[3,-3],[-3,-3],[-3,-17],[5,-5],[-4,-5],[-2,7],[-3,-2],[1,-2],[-4,2],[-23,-33],[-9,-6],[1,9],[3,7],[-9,-3],[3,7],[-2,4],[7,19],[0,6],[-11,-10],[-4,9],[-17,-7],[-8,3],[-11,-10],[0,-11],[-8,-7],[-3,-10],[-23,-31],[1,-9],[-2,-6],[5,-1],[-1,4],[10,-7],[0,-5],[-6,-3],[-4,3],[-6,-6],[-9,7],[-7,-12],[-7,4],[-14,-6],[-4,9],[17,5],[-7,2],[-5,10],[-10,-5],[-3,2],[3,3],[-15,7],[-8,-5],[2,-6],[-6,1],[-1,-4],[4,0],[-1,-5],[-7,1],[-2,5],[-10,-6],[-14,8],[-3,-3],[1,-7],[-5,-1],[-3,4],[2,5],[-9,1],[-29,-2],[-13,-9],[-9,-17],[-12,-12],[-4,-18],[-25,-30],[-13,-29],[-36,-47],[8,-10],[15,3],[0,-18],[-2,-8],[2,-6],[5,2],[2,8],[-3,3],[1,3],[8,4],[-6,-8],[8,-5],[-9,-13],[1,-2],[8,1],[9,15],[1,-6],[-5,-9],[3,-2],[5,18],[-2,10],[9,-4],[6,4],[7,-9],[0,-7],[4,-7],[12,-13],[-3,-11],[-7,5],[7,-10],[2,-7],[-3,-9],[6,-7],[-3,-7],[1,-3],[-10,-22],[0,-13],[-3,-9],[1,-19],[2,-3],[-4,-8],[2,-11],[-3,-10],[1,-11],[-3,-19],[-12,-22],[-4,-15],[-6,-13],[-7,-31],[-31,-65],[-10,-31],[-17,-22],[-11,-7],[-9,9],[-2,-3],[0,16],[-5,-9],[-2,1],[3,8],[-3,1],[-8,-28],[-8,5],[3,-6],[-3,-8]],[[3314,4868],[5,-2],[-10,1],[5,2],[0,-1]],[[3185,4869],[-2,1],[0,1],[3,-1],[-1,-1]],[[3188,4872],[1,-1],[-4,1],[1,1],[2,-1]],[[3211,4871],[4,-4],[-21,2],[13,4],[4,-2]],[[3325,4867],[-4,0],[-6,4],[16,1],[-6,-5]],[[3336,4876],[-4,0],[-1,1],[6,-1],[-1,0]],[[3197,4875],[-4,-3],[-6,3],[11,2],[-1,-2]],[[3252,4877],[-1,4],[4,0],[0,-3],[-3,-1]],[[3265,4878],[-4,1],[10,1],[-6,-2]],[[3228,4881],[-2,0],[-2,1],[5,0],[-1,-1]],[[3292,4882],[0,-9],[-19,0],[5,4],[-1,5],[15,0]],[[3244,4880],[4,-1],[-24,1],[7,1],[4,4],[9,-5]],[[3281,4884],[-1,-1],[-6,1],[1,1],[6,-1]],[[3268,4885],[-2,-2],[-3,2],[4,1],[1,-1]],[[3258,4884],[-2,0],[-2,0],[7,2],[-3,-2]],[[3304,4887],[12,-2],[7,-3],[-13,-1],[-4,-2],[5,-3],[-10,-3],[-6,3],[0,8],[-5,3],[14,0]],[[3263,4890],[2,-2],[-7,1],[1,1],[4,0]],[[3254,4885],[-1,0],[-7,2],[3,5],[7,-4],[-2,-3]],[[3305,4893],[-2,-3],[-9,2],[3,1],[8,0]],[[3317,4893],[-1,-2],[-4,1],[1,0],[4,1]],[[3242,4887],[-4,1],[2,3],[-3,1],[4,0],[2,-3],[-1,-2]],[[3288,4896],[2,-1],[-21,0],[15,3],[4,-2]],[[3165,4899],[12,-6],[-14,4],[-7,-4],[2,-2],[-19,-5],[0,4],[-17,2],[43,7]],[[3363,4899],[-2,-5],[1,-2],[-15,-8],[-20,1],[-5,8],[9,7],[32,-1]],[[3269,4900],[8,-2],[-28,1],[15,3],[5,-2]],[[3319,4898],[-8,-1],[-9,2],[13,3],[4,-4]],[[3196,4900],[10,3],[2,-3],[-11,-3],[21,-2],[-28,-8],[1,-2],[-3,-2],[-11,0],[-2,-2],[6,-5],[-10,-3],[-10,-1],[6,5],[-20,3],[22,2],[-8,2],[8,1],[-1,2],[-11,-1],[26,3],[6,7],[-10,0],[12,6],[9,0],[-6,-1],[2,-1]],[[3312,4904],[-3,0],[-6,3],[12,0],[-3,-3]],[[3315,4908],[-2,0],[-1,1],[4,0],[-1,-1]],[[3280,4909],[18,-2],[11,-4],[-8,-3],[-23,9],[2,0]],[[3260,4910],[19,-3],[22,-9],[-10,-3],[-5,4],[-18,5],[-13,2],[5,4]],[[3346,4903],[-8,0],[-5,2],[23,5],[-10,-7]],[[3311,4910],[-3,0],[-1,0],[7,1],[-3,-1]],[[3202,4907],[-3,2],[8,0],[-3,0],[-2,-2]],[[3408,4907],[0,-4],[-16,-7],[-16,-2],[-9,5],[23,6],[5,8],[13,-6]],[[3329,4912],[-3,0],[-7,1],[12,-1],[-2,0]],[[3299,4910],[-3,0],[-5,2],[15,1],[-7,-3]],[[3342,4915],[-4,-1],[-9,2],[5,1],[8,-2]],[[3253,4918],[2,-3],[-4,3],[1,0],[1,0]],[[3297,4917],[7,-1],[-20,-4],[-15,3],[28,2]],[[3320,4916],[-6,1],[-3,1],[13,-1],[-4,-1]],[[3302,4925],[11,-5],[-26,2],[4,2],[11,1]],[[3362,4925],[-3,0],[-3,2],[7,-1],[-1,-1]],[[3312,4926],[-1,0],[-3,1],[7,0],[-3,-1]],[[3371,4931],[10,0],[4,-2],[-23,1],[9,1]],[[3323,4932],[-17,-2],[-3,1],[22,4],[-2,-3]],[[2907,1902],[-3,9],[-1,-6],[-3,8],[4,10]],[[2904,1923],[0,14],[3,12],[7,7]],[[2914,1956],[2,-5]],[[2916,1951],[7,15],[5,-22],[0,-24],[-10,-4],[-3,5]],[[3082,2602],[2,4],[1,-9],[-5,6],[-1,5],[3,-6]],[[3083,2604],[-3,4],[1,5],[1,-1],[1,-8]],[[3187,2984],[2,-2],[-3,-1],[0,2],[1,1]],[[2980,3003],[-1,2],[-1,2],[1,0],[1,-4]],[[3121,3050],[38,-7]],[[3162,3026],[11,-1],[5,-24],[0,-8],[5,-3],[1,-3],[-2,-1],[4,-11],[1,3],[9,-19],[-2,3],[3,-16],[-3,-10],[7,-22],[4,-25],[7,-7],[2,3],[-2,-11],[4,-1]],[[3216,2873],[14,-48]],[[3230,2825],[36,-8]],[[3222,2684],[-45,-26],[-34,-95],[0,38],[-26,26],[-7,-3]],[[3110,2624],[-6,7],[-3,-2],[-3,-19],[1,-9]],[[3099,2601],[-5,-11]],[[3094,2590],[-4,23],[-2,1],[-1,15],[-9,18],[-6,26],[-1,14],[-6,25],[-15,24],[-6,23],[-3,27],[1,27],[-9,43],[-14,21],[-4,16],[2,13],[-29,103],[-8,1],[5,46]],[[3013,3132],[31,24]],[[2944,1127],[-1,-54],[-9,8],[-6,-23],[-1,-15]],[[2927,1043],[5,-14]],[[2932,1029],[5,-4],[7,0]],[[2944,1025],[0,18]],[[2944,1043],[12,-1]],[[2956,1042],[-7,-61],[-15,-31],[-18,-67],[-29,-63],[-19,-26],[-11,0],[-1,-10],[-9,2],[-3,-8],[-16,8],[-4,-4],[-11,3],[-11,-13],[-18,-3],[-7,-13],[-9,8],[-1,7],[-6,1],[-1,10],[-4,0],[-1,-8],[-1,10],[2,12],[-9,31],[7,8],[-1,26],[-14,55],[-6,45],[-5,18],[8,20]],[[2736,999],[4,-7],[1,-17],[11,-7],[7,2],[6,-4],[6,15],[6,4]],[[2777,985],[0,131]],[[2777,1116],[6,-10],[5,-30],[-2,-34],[14,-1]],[[2800,1041],[14,27],[5,29]],[[2819,1097],[6,1],[6,-13],[11,-7]],[[2842,1078],[10,4],[4,9]],[[2856,1091],[3,26],[7,4],[6,13]],[[2872,1134],[2,22],[8,10],[9,25],[10,8],[2,8],[12,1],[19,-6],[4,-40]],[[2885,967],[-6,-21],[-4,-4],[5,-25]],[[2880,917],[5,-10],[4,-2]],[[2889,905],[5,18],[11,9],[0,9]],[[2905,941],[3,9],[-1,11]],[[2907,961],[-11,17],[-11,-11]],[[2885,967],[12,13],[10,-19]],[[2907,961],[2,-9],[-4,-11]],[[2889,905],[-7,9],[-2,3]],[[2856,1091],[-4,-10],[-10,-3]],[[2819,1097],[-4,-25],[-9,-23],[-4,-1],[-2,-7]],[[2777,1116],[0,99]],[[2777,1215],[14,0],[0,132],[32,12],[4,-18],[11,19],[3,-3],[3,7],[6,2]],[[2850,1366],[13,-62]],[[2863,1304],[14,-20],[1,-15],[6,0],[0,-20],[5,-18],[14,-8],[0,-9],[4,-6]],[[2907,1208],[-15,-15],[-18,-41],[-2,-18]],[[2313,2579],[8,-29],[8,-18]],[[2333,2511],[-1,-18],[3,-13]],[[2338,2483],[4,-14],[0,-21],[-14,-4]],[[2318,2456],[-30,2]],[[2267,2445],[-1,6],[3,5],[3,-3],[11,-1],[3,11],[-4,-10],[-5,6],[-5,-5],[-3,8],[-2,-8],[1,21],[12,0],[0,7],[7,1],[3,8],[10,-13],[8,7],[-3,5],[-5,-4],[-10,13],[-4,-2],[-2,-7],[-15,0],[-1,6],[3,8],[-3,-7],[-1,6],[1,1],[4,7],[-5,-5],[-6,21],[-5,5],[9,17],[8,46]],[[2690,3671],[11,-5]],[[2706,3674],[19,9],[5,-14]],[[2702,3640],[-2,-7],[-10,-1],[-2,2],[5,5]],[[2326,2270],[-1,-1],[-5,6],[5,2],[1,-7]],[[2351,2301],[6,5],[-1,-9]],[[2340,2252],[-14,16],[4,8],[-4,-2],[-6,13],[-1,12],[-2,-2],[-2,11],[3,-5],[-1,4],[3,3],[-3,-1],[-1,10],[1,2],[-2,6],[8,14]],[[2327,2358],[17,4],[8,-25]],[[3100,2414],[14,-36],[9,-1],[12,16],[9,-7],[14,18],[10,-1],[5,6],[7,-3],[15,10],[9,17],[8,-5],[-3,-19],[1,-24],[-2,-7],[5,0],[-7,-5],[-1,-32],[-14,-53],[-11,-64],[-15,-61],[-27,-72],[-20,-32],[-15,-32],[-19,-56],[-7,-28]],[[3069,2105],[15,48],[11,5]],[[3103,2341],[-9,29],[-2,14]],[[2459,3267],[-1,0],[0,2],[1,-2]],[[2426,3289],[-1,-1],[0,2],[1,-1]],[[2480,3546],[9,-3],[3,-7],[17,-3]],[[2509,3539],[9,-5],[2,-10],[15,-4],[7,5],[4,-5],[-3,-4],[1,-11],[-4,-7],[-11,-15],[-16,-9],[-4,-8],[3,-4],[-5,-5],[-12,-38],[2,-17],[5,-10],[-10,-15],[-4,-22],[2,-4],[-9,-2],[-4,-6],[-7,-23],[-3,4],[-6,-6],[-23,1],[-3,-7],[-7,-4],[-6,-14],[-7,6],[-5,18],[1,6],[-3,6],[-5,7]],[[2403,3337],[-6,-1]],[[2398,3381],[5,22],[-8,22]],[[2408,3507],[-22,-5],[-1,3],[2,5]],[[2386,3514],[-10,-10],[0,8],[3,7],[1,2],[-4,-4],[3,7],[-2,-2],[-1,3],[2,8],[-4,-6],[2,10],[-3,-2],[-3,6],[2,10],[12,8],[6,12],[12,-9],[16,5],[19,-9],[13,4],[18,-7],[7,3],[5,-4]],[[3012,2792],[0,-14],[6,-20],[-3,6],[4,-85],[17,-30],[-5,-17]],[[2996,2175],[3,-6]],[[2977,2169],[-12,-31]],[[2965,2138],[-7,5],[-9,-5],[-2,-9],[-6,11],[-4,-6]],[[2937,2134],[-5,5],[-4,-10],[-1,6]],[[2919,2145],[-8,25],[-2,1]],[[2909,2171],[-3,-12],[-7,8]],[[2893,2157],[-8,11],[-6,23],[-2,17],[-10,13]],[[2817,2395],[1,13],[-5,12]],[[2833,2566],[0,154]],[[2847,2720],[0,72]],[[2733,4040],[-4,-21],[-1,-1],[0,13],[9,27],[-4,-18]],[[2752,4043],[-1,22],[8,14],[4,-1],[-4,-24],[-7,-11]],[[2768,4080],[-3,-4],[-1,2],[1,3],[3,-1]],[[2660,4079],[-1,4],[3,0],[0,-2],[-2,-2]],[[2733,4086],[0,-1],[-1,0],[1,1]],[[2663,4086],[-4,-2],[-1,2],[4,6],[1,-6]],[[2767,4094],[-1,2],[2,-1],[-1,-1]],[[2745,4114],[-1,2],[1,3],[1,-1],[-1,-4]],[[2755,4118],[-1,1],[2,3],[0,-1],[-1,-3]],[[2757,4125],[-1,2],[-1,1],[3,-1],[-1,-2]],[[2746,4129],[-1,0],[-1,3],[2,-1],[0,-2]],[[2747,4127],[-3,1],[-1,4],[3,-4],[1,-1]],[[2739,4131],[-1,0],[-1,3],[2,-1],[0,-2]],[[2757,4134],[0,2],[3,1],[-2,-2],[-1,-1]],[[2757,4164],[-2,2],[0,5],[2,-7]],[[2743,4238],[-2,0],[0,4],[1,-1],[1,-3]],[[2750,4249],[0,2],[2,0],[0,-1],[-2,-1]],[[2833,4397],[-5,-18],[7,-17],[-15,-5],[-6,8],[0,-6],[-4,3],[-2,-7],[3,-3],[-9,6],[6,-6],[-10,-6],[2,-5],[-4,5],[-1,-1],[5,-7],[-8,-12],[3,-2],[-2,-3],[6,-9],[-8,-10],[-3,-10],[-15,-16],[-4,4],[-5,-13],[-2,4],[-9,-10],[5,-2],[-6,-6],[-7,7],[5,-14],[-5,-5],[-5,1],[1,-5],[4,-4],[-5,-10],[2,-11],[-4,3],[1,-1],[-2,-3],[2,-6],[-2,-2],[2,-2],[-1,-14],[3,-12],[5,-4],[3,4],[4,-10],[5,-3],[-4,2],[7,-7],[3,-8],[-3,-3],[3,-2],[-11,-10],[1,-3],[-3,3],[0,-5],[-5,3],[1,5],[-1,4],[-2,0],[1,2],[-1,3],[-2,-4],[1,-4],[0,5],[1,1],[-1,-3],[3,-4],[0,-4],[-5,8],[0,-7],[-12,5],[-7,-4],[12,-4],[-3,3],[2,1],[8,-9],[-1,3],[7,-2]],[[2747,4127],[6,4],[3,-2],[-1,4],[3,-4],[-5,0],[1,-7],[-6,-10],[-3,11],[-1,-9],[-4,-5],[-16,-5],[11,-5],[-8,0],[5,-4],[1,-6],[-3,-8],[2,-4],[-3,4],[2,-9],[-4,6],[5,-7],[-1,-8],[-3,-7],[2,-9],[-10,-34],[-16,3],[1,-5],[-8,-7],[2,-11],[-2,-5],[-17,1],[-1,5],[2,5],[-9,22],[5,-3],[-2,7],[4,1],[-1,7],[-7,10],[-4,18],[-2,-1],[0,11],[-3,0],[0,5],[3,13],[-2,4],[-1,0],[-2,-3],[-4,4],[-2,22],[3,5],[1,-8],[3,1]],[[2673,4156],[2,14],[-6,19]],[[2665,4271],[4,7],[-1,4],[11,16],[15,-1]],[[2751,4458],[26,-6],[3,5]],[[2779,4477],[10,-1],[13,-16],[14,-6]],[[3088,3333],[-8,-18]],[[3069,3237],[-58,-76]],[[2998,3176],[-3,-1],[-1,21],[6,11]],[[2999,3245],[-1,28],[-2,5],[2,13]],[[2998,3291],[4,-4],[3,14],[4,1],[-2,9],[2,12],[10,-6],[12,9],[13,-9],[22,16],[10,-1],[9,8],[3,-7]],[[2619,3709],[-3,4]],[[2618,3716],[10,-5],[6,-7],[-3,-14]],[[2631,3690],[9,-8]],[[2644,3688],[1,-16],[-5,2],[-1,-14],[-1,5]],[[2638,3665],[-5,-3],[-5,8],[-4,-24],[-2,9],[-5,5]],[[2609,3649],[-11,-1],[-4,9]],[[2594,3667],[-2,1],[-9,-11],[2,16]],[[2597,3705],[9,2],[13,2]],[[3877,2238],[-1,0],[2,1],[-1,-1]],[[3884,2236],[-2,4],[1,4],[1,-6],[0,-2]],[[3896,2260],[-1,0],[1,1],[0,-1]],[[3880,2261],[-1,2],[1,1],[0,-1],[0,-2]],[[3875,2277],[0,-1],[1,-5],[-1,2],[0,4]],[[3875,2277],[0,1],[1,0],[0,-2],[-1,1]],[[3868,2294],[1,-2],[0,-5],[-1,0],[0,7]],[[3866,2288],[-1,-7],[-1,16],[2,-4],[0,-5]],[[3868,2294],[1,3],[0,-1],[0,-3],[-1,1]],[[3864,2327],[0,3],[0,2],[1,-3],[-1,-2]],[[3858,2341],[1,-1],[-1,0],[0,1]],[[3858,2341],[0,1],[1,1],[0,-1],[-1,-1]],[[3884,2344],[-1,1],[1,0],[0,-1]],[[3888,2341],[-1,5],[2,1],[0,-4],[-1,-2]],[[3889,2351],[-1,0],[0,3],[1,-1],[0,-2]],[[3924,2418],[-1,1],[1,6],[0,-2],[0,-5]],[[3922,2432],[-2,1],[-1,6],[2,-2],[1,-5]],[[3898,2467],[-1,0],[0,1],[1,0],[0,-1]],[[3899,2474],[0,1],[0,1],[1,-1],[-1,-1]],[[3954,2595],[5,-15],[4,-3],[0,-7],[3,-6],[-2,-19]],[[3965,2525],[-6,-11],[-4,7]],[[3921,2490],[2,-32]],[[3926,2439],[3,-14],[0,-5],[-4,20],[-4,0],[0,6],[-2,-1],[-2,9],[-5,5],[-12,-1],[2,28],[-11,0],[-3,-6],[2,-9],[-2,-13],[0,-18],[-12,-65],[0,-22],[2,-19],[8,3],[2,-24],[3,-7],[5,-44],[-5,20],[0,-9],[3,-13],[2,-1],[1,2],[5,-12],[8,0],[7,-22]],[[3900,2227],[-1,9],[-6,2],[-1,6],[-2,-10]],[[3890,2234],[-6,16],[1,9],[-5,6],[-2,13],[-7,13],[-2,13],[-3,-9],[-2,10],[7,81]],[[3853,2658],[-2,10],[6,1]],[[3444,3327],[-3,6],[0,13],[8,26]],[[3449,3372],[-4,12],[0,17],[-5,0]],[[3440,3401],[-5,10],[5,12],[11,-2]],[[3451,3421],[2,11],[3,1],[-1,6],[3,1],[-6,3],[10,1],[1,20],[5,-4]],[[3468,3460],[10,14],[5,-11]],[[3483,3463],[-6,-13],[8,-7],[-7,-10],[1,5]],[[3479,3438],[-7,6],[-7,-3]],[[3465,3434],[-3,-1],[0,-13],[17,3],[6,-8]],[[3503,3408],[2,6],[17,3]],[[3523,3396],[2,-9],[3,-3],[4,5]],[[3544,3344],[-4,-6]],[[2524,2229],[-8,-7],[-6,13]],[[2507,2252],[3,50],[-5,15]],[[2505,2317],[2,3],[0,21],[-4,1]],[[2503,2342],[2,29],[-7,14]],[[2498,2385],[2,15],[-3,3],[9,-8]],[[2506,2395],[6,2]],[[2512,2397],[-2,-22]],[[2518,2362],[1,-21],[3,-14],[-1,-84],[3,-14]],[[2650,3333],[-1,0],[0,1],[1,0],[0,-1]],[[2660,3192],[-1,-19],[1,-6],[-18,-28]],[[2637,3091],[-5,-4]],[[2607,3194],[-3,25],[0,7]],[[2604,3226],[11,23],[1,60],[-3,4],[12,22],[10,6],[1,0],[0,-7],[6,2],[-2,-2],[3,-9],[-2,-3],[3,-3],[9,12],[1,-5],[-5,-16],[-3,-4],[-1,-8],[3,-12],[5,-6],[1,-14],[-16,-38],[5,-17],[12,-18],[5,-1]],[[2862,3429],[-1,0],[-1,2],[2,0],[0,-2]],[[2858,3440],[-2,1],[5,1],[-1,-1],[-2,-1]],[[2883,3457],[-1,3],[3,-1],[-1,0],[-1,-2]],[[3076,3491],[13,-3],[5,5]],[[3094,3493],[12,-23],[0,-29]],[[3115,3438],[7,-13],[-3,4]],[[3119,3345],[3,-5],[-1,-5]],[[3094,3343],[-3,-8],[-3,-2]],[[2998,3291],[-2,13],[6,13],[-2,10],[-10,-14],[-9,9],[-10,-19],[-16,-9],[-6,6],[-5,13],[-18,12],[-4,-24],[-3,3],[-7,-6],[-8,8],[-1,12],[-8,7],[-3,-1],[0,-5],[-4,-6],[2,9],[-10,-4],[13,13],[-15,-3],[1,7],[4,3],[-3,6],[-3,-2],[1,21],[-14,11],[4,6],[-2,9],[2,-2],[2,-11],[7,5],[-6,7],[4,8],[-3,3],[1,4],[-4,7],[5,11],[-13,-3],[2,18],[7,14],[8,3],[7,-5],[2,2],[-2,6],[4,-2],[-1,-5],[15,1],[1,2],[-5,4],[16,7],[-11,6],[-1,5],[2,7],[28,-5],[15,22],[14,11],[20,-3],[3,6],[2,-5],[6,-12],[7,2],[5,-16],[6,4],[10,-11],[2,3],[9,-8],[15,7],[10,-6],[19,21]],[[2888,3508],[0,-6],[3,-10],[12,-11],[0,-6],[-3,-4],[-4,4],[-14,-3],[-3,-10],[-9,-9],[-7,-15],[1,10],[8,10],[-10,1],[4,12]],[[2869,3485],[-4,16],[10,10],[5,-2],[8,-1]],[[3236,3397],[1,-5],[-1,9],[0,3],[1,0],[-1,-7]],[[3323,3521],[10,-5],[3,-15],[-2,-1],[1,-14],[15,-8],[3,5],[6,-6]],[[3359,3477],[6,-25],[2,-14],[17,-30],[26,-34]],[[3410,3374],[15,-9],[-2,-23]],[[3423,3342],[-11,7]],[[3410,3338],[-10,-4],[-5,-31]],[[3376,3288],[0,-15],[-11,-10]],[[3355,3273],[-5,7],[-1,37]],[[3323,3349],[-26,14],[-3,12]],[[3294,3375],[-11,-1]],[[3283,3374],[-3,-6],[-11,0]],[[3248,3342],[-1,42],[2,14],[-6,15],[-5,0],[0,-6],[-1,9],[2,8],[-1,-5],[8,1],[-5,5],[2,10],[-8,1],[1,-8],[-4,11],[0,14],[2,22],[3,-11],[5,-1],[2,6],[2,-10],[9,3],[-2,6],[6,0],[1,8],[-10,14],[-3,23],[-12,-6],[-2,-10],[1,-23],[-6,25]],[[3270,3483],[22,-1]],[[3292,3482],[-1,23],[5,9]],[[3296,3514],[7,1],[2,11],[7,-7]],[[3312,3519],[-5,13],[6,0]],[[3313,3532],[0,5]],[[3313,3537],[3,-5],[7,-11]],[[3051,1717],[-2,2],[5,11],[-1,-9],[-2,-4]],[[3047,1781],[1,-9],[-4,8],[1,18],[2,-17]],[[3051,1808],[-1,18],[3,2],[0,-13],[-2,-7]],[[3044,1836],[-6,-49],[2,-14],[9,-20],[-4,-21],[2,-8],[-2,-17],[3,-23],[-2,1],[4,-11],[3,-29],[2,-8],[3,1],[3,-11],[-16,-24]],[[2997,1595],[-3,-7],[-9,1]],[[2980,1606],[-1,39],[-6,18],[-2,-7]],[[2971,1656],[-7,3],[-35,39],[-9,50]],[[2911,1798],[-4,34],[1,12]],[[2922,1901],[1,14],[5,4],[0,10],[-2,23],[-4,12],[17,4],[33,0],[50,-72]],[[2971,1968],[-44,0],[-6,-2],[-5,-15]],[[2914,1956],[-4,-2]],[[2916,2033],[18,47],[-8,11]],[[2926,2091],[3,44],[5,4],[3,-5]],[[2965,2138],[7,17]],[[2485,3820],[-3,-4],[-4,3],[3,4],[4,-3]],[[2486,3823],[-1,0],[1,2],[0,-2]],[[2512,3844],[-2,0],[0,2],[2,0],[0,-2]],[[2436,3911],[-1,2],[-1,0],[1,1],[1,-3]],[[2442,3911],[-4,-4],[-2,9],[7,-3],[-1,-2]],[[2395,3966],[3,10],[13,7],[4,-2],[6,-14],[-4,-7],[6,2],[1,-10],[-4,5],[2,-9],[-6,-9],[-8,1]],[[2414,3985],[0,-2],[-2,2],[1,0],[1,0]],[[2429,3990],[-4,1],[0,7],[3,0],[1,-8]],[[2430,4000],[-2,2],[-1,4],[3,-2],[0,-4]],[[2414,4006],[1,-9],[-3,-2],[1,7],[-4,-3],[1,6],[4,1]],[[2417,4004],[-2,3],[5,8],[0,-1],[-3,-10]],[[2421,4017],[0,-1],[-1,0],[1,1]],[[2421,4017],[0,1],[0,1],[1,0],[-1,-2]],[[2422,4020],[-1,1],[1,0],[0,-1]],[[2411,4021],[-1,0],[1,1],[0,-1]],[[2423,4024],[-1,0],[1,1],[0,-1]],[[2414,4027],[-1,-1],[0,1],[0,1],[1,-1]],[[2406,4028],[-2,-2],[-2,2],[4,2],[0,-2]],[[2411,4021],[5,2],[-3,0],[3,5],[-4,4],[7,-4],[2,-2],[-2,-5],[-8,0]],[[2408,4031],[-2,0],[4,4],[-1,-2],[-1,-2]],[[2414,4041],[-1,1],[2,1],[-1,-2]],[[2412,4043],[-1,1],[-1,2],[3,1],[-1,-4]],[[2396,4044],[-1,0],[1,4],[1,-3],[-1,-1]],[[2417,4056],[-1,0],[0,1],[1,0],[0,-1]],[[2399,4058],[0,-8],[-2,0],[-1,9],[3,-1]],[[2399,4060],[-2,1],[0,1],[2,0],[0,-2]],[[2416,4058],[-1,2],[1,4],[0,-6]],[[2417,4065],[-1,0],[1,1],[0,-1]],[[2414,4066],[0,-9],[7,-4],[-5,-6],[0,5],[-4,-1],[-2,6],[2,0],[-7,5],[2,6],[4,-3],[0,5],[3,-4]],[[2400,4070],[1,-2],[-1,-4],[-5,3],[5,3]],[[2400,4071],[-1,0],[1,1],[0,-1]],[[2381,4075],[-1,-1],[0,1],[1,0]],[[2402,4077],[-1,0],[1,2],[0,-2]],[[2405,4089],[-1,0],[0,2],[1,-1],[0,-1]],[[2413,4094],[-1,-4],[2,-1],[-6,-4],[3,0],[-1,-6],[-3,0],[0,5],[-1,-9],[-5,0],[4,3],[-4,3],[1,9],[2,-5],[2,4],[-1,3],[7,8],[1,-6]],[[2442,3911],[11,4],[3,-4],[-1,5],[2,1],[2,-4],[3,2],[-4,0],[-2,7],[3,6],[-2,7],[3,11],[-5,-4],[-6,15],[4,13],[5,3],[-8,1],[-6,-8],[-6,5],[1,-8],[-7,6],[-1,-7],[-3,12],[7,18],[-4,7],[1,9],[5,-1],[-5,2],[0,5],[-2,-9],[-2,2],[-2,-2],[0,5],[5,10],[-1,-2],[-6,-8],[-1,-23],[-4,-2],[3,37],[2,3],[3,1],[2,2],[-4,-1],[3,12],[-7,-11],[-5,5],[6,2],[-9,1],[8,5],[-4,1],[2,4],[2,-1],[2,1],[-3,4],[5,0],[-4,2],[3,2],[-2,4],[2,3],[-5,-2],[-1,7],[3,-2],[2,1],[-4,4],[0,6],[10,1],[-5,8],[2,0],[-1,7],[4,0],[-1,3],[2,10],[4,-2],[-1,-5],[3,5],[21,3],[-2,-12],[-11,-16],[-5,1],[4,-3],[4,1],[-3,-5],[-4,-1],[-2,-4],[5,3],[-2,-6],[10,8],[20,0],[4,-9],[-11,-31],[-10,-8],[5,3],[5,-6],[-16,-9],[9,-3],[6,4],[14,-17],[4,-29],[17,-24],[-1,-3],[4,-14],[1,-1],[-1,-1],[-5,6],[-6,-1],[5,0],[8,-11],[1,-11],[-4,-8],[5,-3],[2,6],[10,-1],[6,-7],[1,-10],[-3,-14],[-3,-5],[-2,3],[0,-7],[-7,-3],[3,0],[1,-4],[-3,-3],[-1,0],[-3,-1],[-1,-2],[7,-4],[7,2],[0,-9],[-6,-8],[-10,-7],[-15,0],[-1,4],[-4,0],[-17,-11],[-7,7],[-7,-4],[-4,-15],[-9,6],[-10,-7],[-2,-8],[-3,6],[-4,-2],[13,19],[8,22],[16,0],[9,20],[-13,-14],[-7,9],[-6,-2],[3,4],[-7,2],[-5,-5],[-2,1],[3,3],[0,2],[-5,-1],[2,2],[-2,5],[15,15],[0,20],[-9,-4],[9,16]],[[2459,4108],[-1,0],[-1,3],[2,0],[0,-3]],[[2455,4109],[-1,0],[-2,5],[4,-4],[-1,-1]],[[2461,4116],[-6,-2],[-2,7],[4,1],[4,-6]],[[2462,4124],[2,4],[2,0],[-3,-2],[-1,-2]],[[2459,4128],[1,-1],[0,-1],[-3,3],[2,-1]],[[2482,4171],[3,-2],[-3,-21],[-2,2],[2,12],[-3,-3],[-3,4],[5,3],[-3,6],[3,4],[1,-5]],[[2485,4171],[-2,1],[1,7],[2,0],[-1,-8]],[[2488,4178],[-2,0],[1,6],[2,-1],[-1,-5]],[[2958,3652],[-1,0],[-3,1],[3,0],[1,-1]],[[2975,3654],[-1,1],[1,3],[0,-2],[0,-2]],[[2946,3657],[-8,4],[-1,2],[0,2],[9,-8]],[[2969,3880],[8,-20],[-4,-6]],[[3052,3779],[5,1],[-1,-4],[1,-8]],[[3055,3734],[-3,-17],[-13,1]],[[3032,3709],[-3,-19],[-8,1],[-3,-7],[-20,-9],[-6,-7],[-4,-11],[-2,-3],[4,10],[-2,4],[-1,-6],[-6,-4],[-2,-7],[-2,1],[2,6],[-12,1],[7,-10],[6,1],[-2,-7],[7,-5],[2,-10],[3,0],[-4,10],[-5,17],[11,-29],[16,5],[-2,-13],[-9,-3],[-4,5],[-6,-12],[-5,1],[-9,-14],[-5,-1],[-5,7],[2,1],[0,18],[-14,10],[17,19],[-2,8],[-2,-4],[-4,4],[-9,-3],[-10,8],[4,4],[-6,3],[-2,3],[12,-4],[4,7],[-9,-1],[0,14],[-4,9],[4,-12],[-1,-10],[-6,-1],[1,7],[-2,-7],[-8,-3],[-8,-24],[-7,-9],[-2,7],[1,-21],[-5,8],[-11,-7],[-5,7]],[[2902,3652],[0,16],[16,-2]],[[2904,3723],[-22,17],[-12,-4],[-7,-13]],[[2821,3727],[-4,-5],[-10,16],[6,24]],[[2813,3762],[4,-3]],[[2815,3765],[-1,15],[20,35],[-2,9]],[[2832,3824],[3,2],[-7,15],[0,13],[5,-2],[5,11]],[[2924,3854],[5,16],[17,-2],[3,11]],[[2949,3879],[15,0],[5,1]],[[1456,2718],[-1,-1],[0,2],[1,-1]],[[1457,2716],[-1,0],[0,3],[1,0],[0,-3]],[[1364,2883],[-1,0],[2,1],[-1,-1]],[[1366,2884],[-1,-1],[0,2],[1,-1]],[[1366,2884],[1,4],[1,-2]],[[1368,2886],[-1,-1],[-1,-1]],[[1370,2886],[0,1],[-1,3],[1,-1],[0,-3]],[[1374,2889],[2,2],[-1,-1],[-1,-1]],[[1377,2892],[0,1],[1,0],[0,-1],[-1,0]],[[1379,2895],[0,-1],[-1,0],[1,1]],[[1379,2895],[1,2]],[[1380,2897],[0,-1],[-1,-1]],[[1380,2897],[5,15],[-2,-8],[-2,-7],[-1,0]],[[1385,2914],[1,3],[0,-1],[-1,-2]],[[1386,2923],[0,1],[0,2],[1,-1],[-1,-2]],[[1365,2930],[0,1],[1,0],[-1,-1]],[[1359,2951],[1,0],[0,-1],[-2,2],[0,3],[1,-4]],[[1358,2957],[-1,1],[0,2],[1,-3]],[[1360,2953],[-2,7],[1,0],[1,-7]],[[1150,2938],[-3,27],[0,8],[0,5],[3,-40]],[[1353,2982],[-1,1],[-1,3],[1,0],[1,-4]],[[1147,2979],[1,10],[4,12],[-3,-12],[-2,-10]],[[1386,2978],[-1,8],[-3,15],[1,-4],[3,-19]],[[1154,3012],[0,-4],[-2,-6],[2,10]],[[1161,3021],[-2,-5],[-3,-4],[-1,-2],[0,4],[6,7]],[[1161,3021],[1,2],[1,1]],[[1163,3024],[-1,-2],[-1,-1]],[[1380,3028],[0,-2],[-1,-10],[-1,8],[2,4]],[[1238,3044],[-1,0],[0,1],[1,-1]],[[1245,3045],[1,1],[0,-1],[-1,0]],[[1250,3051],[-1,-1],[1,2],[0,-1]],[[1251,3053],[0,1],[1,1],[0,-1],[-1,-1]],[[1179,3046],[4,9],[0,-1],[-4,-8]],[[1255,3061],[0,1],[1,0],[0,-1],[-1,0]],[[1225,3060],[-1,0],[-2,4],[2,1],[1,-5]],[[1318,3065],[-1,0],[-1,2],[2,0],[0,-2]],[[1257,3069],[1,-1],[0,-1],[-1,0],[0,2]],[[1318,3065],[5,5],[-3,-6],[-2,0],[0,1]],[[1257,3069],[0,2],[1,0],[0,-2],[-1,0]],[[1260,3070],[-1,1],[1,1],[0,-2]],[[1324,3070],[1,2],[0,-1],[-1,-1]],[[1266,3070],[0,6],[-1,5],[1,-6],[0,-5]],[[1259,3080],[0,1],[2,3],[-1,-3],[-1,-1]],[[1263,3086],[-1,0],[1,1],[0,-1]],[[1270,3086],[-1,0],[-2,1],[3,-1]],[[1276,3087],[-3,0],[3,1],[0,-1]],[[1287,3090],[8,3],[3,0],[-10,-3],[-1,0]],[[1368,3104],[0,6],[1,2],[-1,-8]],[[855,3179],[-1,2],[-1,7],[3,-7],[-1,-2]],[[1397,3186],[0,2]],[[1397,3188],[1,0],[0,-1],[-1,-1]],[[841,3194],[-1,0],[-1,2],[1,0],[1,-2]],[[857,3197],[-2,1],[-2,5],[3,-3],[1,-3]],[[1417,3219],[0,-1],[0,-2],[-1,1],[1,2]],[[833,3223],[-1,-5],[-2,4],[2,1],[1,0]],[[829,3223],[-1,0],[-1,0],[1,1],[1,-1]],[[835,3225],[2,-2],[3,0],[-4,-2],[-1,4]],[[1437,3245],[0,-1],[-2,2],[1,0],[1,-1]],[[1435,3247],[-3,0],[-3,-2],[2,1],[2,1],[2,0]],[[1437,3243],[1,7],[3,5],[-3,-6],[-1,-6]],[[1444,3260],[-1,-1],[-1,-1],[2,2]],[[1444,3260],[0,2],[3,2],[-2,-2],[-1,-2]],[[1451,3266],[-2,0],[2,3],[0,16],[1,-7],[-1,-12]],[[1449,3287],[0,1],[-1,3],[1,0],[0,-4]],[[1447,3338],[-1,-1],[1,3],[0,-2]],[[1448,3344],[0,-1],[1,3],[0,-1],[-1,-1]],[[806,3368],[-1,0],[0,1],[1,-1]],[[1453,3360],[3,14],[-1,-6],[-2,-8]],[[1467,3416],[-1,-1],[0,1],[1,2],[0,-2]],[[1468,3420],[1,1],[2,7],[-1,-4],[-2,-4]],[[1469,3460],[2,0],[0,-2],[-2,-3],[0,5]],[[1483,3459],[-1,0],[7,5],[-4,-3],[-2,-2]],[[1496,3477],[-5,-8],[11,6],[-24,-17],[-7,1],[7,11],[18,7]],[[1528,3484],[0,-3],[-4,2],[3,3],[1,-2]],[[1520,3485],[-3,-1],[-1,1],[3,5],[1,-5]],[[1510,3496],[0,-6],[-1,-1],[1,7]],[[1544,3582],[-1,0],[0,2],[2,-1],[-1,-1]],[[1546,3586],[-1,2],[1,2],[1,-1],[-1,-3]],[[1551,3589],[-2,2],[3,5],[1,-4],[-2,-3]],[[779,3635],[-1,0],[1,1],[0,-1]],[[778,3667],[0,1],[0,2],[1,-1],[-1,-2]],[[794,3695],[-1,2],[0,1],[1,1],[0,-4]],[[799,3700],[-1,1],[1,5],[1,-4],[-1,-2]],[[799,3709],[-2,3],[1,2],[0,-1],[1,-4]],[[796,3724],[-1,2],[1,2],[0,-1],[0,-3]],[[798,3734],[-2,-2],[4,-12],[-5,12],[2,6],[1,-4]],[[794,3738],[-2,2],[1,4],[1,-4],[0,-2]],[[792,3739],[-3,2],[0,4],[3,-3],[0,-3]],[[793,3749],[2,-2],[-4,-2],[2,4]],[[790,3759],[1,0],[0,-1],[-1,0],[0,1]],[[1345,3510],[6,-13],[52,41]],[[1563,3637],[0,-12],[4,-3],[2,-7],[-3,-2],[4,-3],[-15,-18],[-1,4],[-3,1],[-7,-5],[0,9],[-6,-23],[-2,4],[-2,-7],[0,6],[-2,-5],[1,6],[-2,-10],[0,11],[-1,-13],[-2,5],[-3,-3],[0,-7],[-8,-16],[-1,-15],[3,-3],[-6,-11],[4,-4],[1,-8],[5,-10],[4,3],[-3,10],[2,0],[2,-15],[-9,-4],[-2,7],[-6,-10],[1,12],[-2,-5]],[[1510,3496],[-2,6],[-1,-16],[-20,-3],[-10,-10],[-3,-7],[-1,-1],[-1,-3],[1,9],[1,4],[-1,9],[0,-13],[-1,-9],[-3,-2]],[[1469,3460],[-1,-6],[4,-1],[1,-6],[-2,-18],[0,10],[-1,-13],[-4,-7],[-1,-3],[1,-2],[-3,-2],[-4,-14],[1,9],[-8,7],[-2,9],[2,6],[4,3],[2,5],[-6,-7],[-2,-6],[7,-44],[-12,-45],[0,15],[4,14],[-3,-1],[0,16],[-2,-6],[-3,5],[-1,9],[4,-1],[1,2],[-6,2],[1,5],[3,-2],[-2,7],[-2,-4],[4,10],[-2,-3],[1,9],[4,10],[-7,-7],[-1,-7],[-2,2],[3,-8],[-2,-11],[2,-13],[-4,4],[0,7],[0,-7],[4,-7],[1,-8],[-10,14],[-3,-2],[3,11],[0,6],[-1,1],[-3,-20],[3,2],[12,-17],[-2,-11],[-8,17],[-3,3],[12,-21],[1,-8],[-2,-3],[-4,6],[5,-13],[-1,-4],[-4,9],[-5,4],[-3,-1],[13,-16],[0,3],[4,-1],[7,-40],[-6,33],[1,-8],[-2,0],[3,-15],[-2,9],[0,-5],[-4,5],[2,-6],[-8,-5],[-1,9],[0,-12],[9,2],[1,-12],[2,11],[2,-5],[0,-7],[-6,-10],[-5,1],[-1,6],[-1,-5],[-5,5],[8,-10],[-4,-10],[-5,6],[5,-9],[6,4],[-3,-10],[-2,2],[-6,-3],[-3,-5],[-2,6],[1,-8],[-4,-5],[-4,-16]],[[1417,3219],[0,8],[-1,-9],[-11,-6],[-5,-16],[0,6],[-1,-3],[1,-7],[-3,-4]],[[1397,3186],[-6,-8],[-2,3],[1,-6],[-6,-8],[-5,2],[3,-2],[0,-6],[-2,-2],[-3,10],[2,-11],[-6,-23],[-3,-1],[2,-3],[-5,-22],[5,-44],[3,-17],[5,-20]],[[1380,3028],[1,-4],[1,-22],[-2,26]],[[1380,3028],[-3,7],[1,-13],[8,-44]],[[1386,2978],[1,-5],[1,-16],[-5,-51],[-9,-3],[-1,7],[3,-2],[-6,20],[-6,6],[-3,18],[3,9],[-4,-6],[1,15],[-3,-1],[1,-6],[-2,2],[-5,22],[3,17],[-4,4],[2,-8],[-2,-6],[-2,8],[3,36],[-19,44],[-19,-15],[-1,4],[1,2],[0,-6],[1,5],[-5,10],[3,-3],[1,1],[-5,9],[-2,-2],[2,-4],[-8,9],[3,0],[-2,4],[-13,-5],[3,4],[-3,2],[-2,-7]],[[1287,3090],[-3,-2],[3,6],[-1,2],[-2,-8],[-3,-1],[-4,-1],[4,3],[-4,15],[-1,-14],[-12,3],[-8,-9],[-9,8],[-3,-7],[1,-4],[9,3],[-2,-5],[3,-5],[3,6],[0,-10],[-1,2],[-4,-7],[1,-4],[10,-12],[-6,-9],[2,8],[-2,-2],[-11,17],[2,-5],[-2,-12],[-3,8],[-4,-7],[-8,4],[-1,4],[3,0],[-10,17],[-4,-2],[1,-5],[-3,-3],[-13,9],[-9,-3],[0,10],[-1,-6],[1,-5],[-13,-11],[5,7],[-4,0],[0,8],[-4,-3],[2,-12],[-3,-7],[-1,-4],[-15,-21]],[[1163,3024],[4,6],[-9,3],[3,-11],[-4,-4],[-2,6],[-1,-12]],[[1154,3012],[-4,0],[2,-4],[-2,-7],[-5,1],[4,-8],[-2,-11],[-5,4],[2,-7],[3,0],[-2,-15],[6,-31]],[[1074,3069],[-7,-27],[-3,1],[-16,24]],[[958,3126],[-52,42],[0,8]],[[873,3169],[-5,29],[-9,15],[-4,0],[-1,11],[-9,2],[-5,11],[-15,5],[0,20],[-18,43],[-1,10],[2,10],[-8,11],[-1,12],[1,10],[0,-7],[5,-5],[-5,18],[2,3],[11,-2],[-2,4],[-11,2],[-1,-12],[-7,6],[0,9],[2,-6],[-4,14],[-8,16],[-1,29],[-8,19],[4,42],[-7,51],[2,17],[4,1],[-3,2],[3,11],[3,65]],[[779,3635],[-1,23],[7,3],[3,-4],[1,2],[-4,3],[-7,1],[-1,12],[1,-9],[1,5],[-1,3],[3,2],[-5,7],[4,4],[-4,3],[-1,-5],[-7,53],[11,-8],[16,-1],[0,-2],[2,-7],[-2,-5],[-1,2],[-5,-16],[2,0],[3,2],[-4,-1],[8,19],[1,-6],[-2,-2],[0,-4],[-1,2],[0,-4],[2,2],[0,-11],[-1,5],[-2,-9],[-1,8],[-3,-9],[2,-3],[8,12],[-1,10],[1,10],[0,4],[-3,4],[2,4],[-4,7],[3,-1],[0,5],[-4,14],[383,0]],[[1178,3759],[1,13],[4,-2]],[[1418,3226],[1,2],[-1,-1],[0,-1]],[[12,3838],[0,2],[1,1],[0,-1],[-1,-2]],[[14,3842],[0,2],[1,1],[0,-1],[-1,-2]],[[17,3858],[-1,0],[0,2],[1,0],[0,-2]],[[50,3857],[0,4],[2,1],[-1,-5],[-1,0]],[[55,3861],[-1,-2],[-1,2],[0,1],[2,-1]],[[56,3862],[0,-1],[-2,2],[2,0],[0,-1]],[[30,3857],[-2,-4],[-2,2],[2,3],[-3,4],[4,2],[1,-7]],[[40,3859],[-2,-4],[-6,1],[7,8],[2,-1],[-1,-4]],[[59,3864],[0,1],[1,0],[-1,-1]],[[50,3857],[-8,-5],[3,13],[3,-2],[-1,-1],[3,-5]],[[57,3865],[-1,1],[2,0],[-1,-1]],[[55,3865],[-2,1],[0,3],[2,1],[0,-5]],[[90,3870],[5,0],[3,0],[-8,-3],[-7,4],[7,-1]],[[106,3877],[-2,-2],[-2,1],[3,5],[2,-2],[-1,-2]],[[83,3877],[-6,-9],[-12,-1],[14,7],[-2,4],[4,4],[2,-5]],[[122,3883],[-1,0],[0,2],[1,0],[0,-2]],[[130,3888],[-2,-2],[-1,0],[2,6],[1,-4]],[[137,3892],[-1,1],[0,2],[2,-1],[-1,-2]],[[143,3896],[0,-2],[-4,2],[3,2],[1,-2]],[[138,3897],[-1,1],[2,1],[-1,-2]],[[143,3900],[-1,3],[1,1],[0,-2],[0,-2]],[[163,3911],[-3,-7],[-8,-8],[6,16],[4,0],[0,8],[7,0],[-6,-9]],[[191,3928],[-1,3],[3,2],[0,-3],[-2,-2]],[[186,3932],[3,6],[2,-2],[-5,-8],[5,-1],[-7,-9],[-15,-4],[9,5],[2,9],[3,-2],[-5,6],[2,5],[6,1],[0,-6]],[[205,3941],[-1,-1],[-2,1],[2,1],[1,-1]],[[209,3943],[0,-2],[-4,1],[1,1],[3,0]],[[199,3941],[-5,-1],[-1,2],[2,4],[4,-5]],[[201,3942],[-2,5],[3,2],[0,-4],[-1,-3]],[[244,3952],[-1,1],[2,-1],[-1,0]],[[242,3952],[-3,1],[-1,3],[4,-2],[0,-2]],[[658,3965],[-2,4],[0,2],[2,-1],[0,-5]],[[288,3969],[-1,3],[2,-1],[-1,-1],[0,-1]],[[246,3968],[-2,1],[0,3],[3,1],[-1,-5]],[[676,3969],[-1,0],[-1,3],[3,2],[-1,-5]],[[230,3970],[1,-4],[4,-4],[-14,-1],[-8,-9],[-4,7],[7,13],[12,4],[2,-6]],[[286,3972],[-1,3],[2,1],[0,-3],[-1,-1]],[[254,3976],[-1,0],[-2,4],[4,-2],[-1,-2]],[[657,3975],[-2,0],[0,5],[1,-1],[1,-4]],[[284,3976],[-2,0],[2,7],[1,-3],[-1,-4]],[[655,3970],[2,-8],[-6,10],[-1,10],[5,-12]],[[256,3982],[-1,-1],[-1,0],[2,2],[0,-1]],[[675,3982],[0,-7],[-3,0],[0,8],[3,-1]],[[280,3979],[-5,-9],[-1,1],[1,7],[3,0],[1,7],[1,-6]],[[649,3982],[-2,-1],[0,4],[2,1],[0,-4]],[[273,3983],[-2,2],[-1,1],[3,1],[0,-4]],[[268,3988],[2,0],[0,-6],[1,-1],[-5,-3],[0,8],[2,2]],[[646,3989],[0,-1],[-2,-5],[0,4],[2,2]],[[670,3979],[-1,2],[0,8],[3,-5],[-2,-5]],[[234,3988],[0,1],[-1,0],[1,1],[0,-2]],[[275,3988],[-2,0],[0,1],[1,2],[1,-3]],[[646,3989],[-2,1]],[[644,3990],[3,1],[0,-1],[-1,-1]],[[644,3990],[-2,2],[1,2],[2,-2],[-1,-2]],[[649,3991],[-1,-1],[-1,3],[1,1],[1,-3]],[[646,3999],[-3,3],[5,1],[0,-1],[-2,-3]],[[293,4003],[1,3],[2,-2],[-3,-1]],[[649,4002],[-1,2],[0,2],[2,-1],[-1,-3]],[[339,4002],[-2,0],[0,2],[2,3],[0,-5]],[[635,4003],[-1,4],[3,0],[-1,-2],[-1,-2]],[[641,4004],[-1,0],[0,3],[1,1],[0,-4]],[[680,4003],[1,-9],[-3,-13],[-1,1],[0,7],[-3,-5],[3,6],[-1,7],[0,-7],[-2,-4],[1,7],[-1,-1],[-1,-7],[-4,5],[2,14],[6,5],[3,-6]],[[673,4007],[-1,1],[3,1],[0,-1],[-2,-1]],[[649,4015],[-6,-9],[-1,2],[1,4],[6,3]],[[640,4020],[-1,1],[1,0],[0,-1]],[[649,4015],[-5,2],[2,5],[4,-1],[2,-9],[6,-5],[7,-16],[-6,3],[6,-10],[-2,-3],[4,3],[-4,-10],[4,1],[-1,-12],[-8,10],[1,5],[-1,5],[-1,-4],[-7,5],[4,3],[-3,5],[3,5],[-7,-1],[4,10],[-2,9]],[[665,4013],[0,-5],[-3,-1],[-5,8],[4,8],[0,-5],[4,-5]],[[660,4023],[0,3],[1,-2],[-1,-1]],[[655,4018],[-3,4],[6,4],[0,-6],[-3,-2]],[[665,4022],[2,-4],[-1,-4],[-4,6],[-1,7],[4,-5]],[[362,4028],[-2,0],[-1,0],[4,2],[-1,-2]],[[319,4030],[1,-1],[-5,0],[1,2],[3,-1]],[[661,4031],[0,-1],[-1,1],[1,0]],[[354,4032],[1,-1],[0,-1],[-5,-5],[4,7]],[[358,4028],[-2,1],[4,3],[0,-3],[-2,-1]],[[656,4028],[-3,0],[1,10],[5,-7],[-3,-3]],[[639,4041],[1,-4],[-2,-4],[3,5],[2,-7],[-3,1],[1,-12],[-2,3],[0,-10],[-1,8],[-1,-11],[-2,12],[3,1],[0,7],[-3,0],[-2,10],[6,1]],[[648,4046],[5,-3],[1,-10],[-6,7],[4,-11],[-7,-3],[-2,14],[-3,2],[2,0],[-3,4],[9,0]],[[371,4046],[-2,2],[2,5],[6,-2],[-6,-5]],[[614,4045],[1,7],[-2,5],[2,0],[2,-7],[-3,-5]],[[628,4057],[-1,1],[-2,3],[2,0],[1,-4]],[[626,4059],[4,-23],[0,-20],[-6,13],[3,6],[-4,-4],[0,9],[-3,0],[0,15],[-4,3],[2,1],[1,7],[7,-7]],[[372,4075],[-3,2],[-2,2],[3,0],[2,-4]],[[382,4078],[0,1],[1,2],[1,-3],[-2,0]],[[382,4078],[2,-3],[-3,-4],[6,-4],[-3,-6],[-6,3],[-3,-1],[6,-4],[-8,-1],[3,-3],[-5,-1],[-3,-6],[-3,0],[2,-3],[-6,-9],[-2,1],[6,13],[-5,-6],[1,6],[-3,1],[-4,-1],[6,0],[-3,-10],[-3,5],[-1,10],[-3,1],[8,14],[3,-1],[2,-9],[1,-3],[2,-2],[-3,14],[4,-1],[-5,7],[3,3],[3,-10],[3,4],[-3,4],[4,-2],[2,1],[-3,7],[2,-2],[4,-1],[-1,-4],[1,-3],[5,6]],[[605,4076],[-2,4],[1,5],[2,-3],[-1,-6]],[[372,4085],[2,-2],[2,-2],[-7,3],[3,1]],[[391,4088],[-1,1],[1,2],[1,-1],[-1,-2]],[[615,4091],[3,-4],[-3,-6],[4,6],[7,-4],[-1,-5],[-3,2],[3,-6],[-12,7],[8,-9],[5,1],[1,-11],[-13,11],[3,-10],[-4,-3],[-3,7],[2,1],[-7,7],[1,6],[5,-5],[-6,9],[1,4],[3,-4],[0,5],[6,1]],[[632,4093],[3,-4],[-6,3],[2,2],[1,-1]],[[617,4093],[-1,1],[-1,0],[1,1],[1,-2]],[[629,4087],[7,0],[4,-17],[-5,14],[0,-7],[6,-15],[-3,0],[3,-3],[-5,1],[2,-5],[-6,-8],[-2,7],[2,5],[2,-1],[-3,5],[3,2],[-4,2],[-5,29],[4,-9]],[[383,4095],[6,-1],[0,-4],[-4,1],[0,-5],[-7,-5],[-6,7],[4,0],[-3,3],[5,1],[2,7],[3,-4]],[[382,4099],[-2,2],[4,3],[0,-1],[-2,-4]],[[264,4102],[-2,3],[6,6],[-3,-9],[-1,0]],[[407,4128],[-1,1],[2,2],[0,-1],[-1,-2]],[[369,4129],[-1,0],[-1,2],[2,1],[0,-3]],[[412,4133],[-1,-1],[-1,0],[3,2],[-1,-1]],[[492,4146],[1,3],[4,4],[-3,-3],[-2,-4]],[[442,4151],[-1,0],[3,4],[-1,-3],[-1,-1]],[[444,4151],[2,5],[1,0],[-1,-3],[-2,-2]],[[443,4153],[2,6],[1,-2],[-3,-4]],[[444,4160],[-2,-5],[-2,-1],[1,3],[3,3]],[[446,4145],[10,21],[3,-2],[-8,-16],[-5,-3]],[[443,4163],[-1,2],[3,2],[-1,-3],[-1,-1]],[[484,4164],[-1,0],[-1,1],[3,3],[-1,-4]],[[193,4168],[6,-4],[2,-13],[-9,-3],[1,-3],[-1,-1],[-17,16],[18,8]],[[467,4168],[4,0],[-7,-6],[1,4],[-3,1],[5,1]],[[448,4167],[0,-8],[-2,3],[2,10],[0,-5]],[[389,4168],[0,4],[2,-1],[-2,-3]],[[469,4170],[-1,1],[8,4],[-5,-4],[-2,-1]],[[453,4177],[1,1],[-2,-2],[0,2],[1,-1]],[[445,4177],[-1,1],[0,1],[2,-1],[-1,-1]],[[442,4176],[-1,2]],[[441,4178],[0,2],[2,0],[-1,-4]],[[208,4183],[0,2],[2,-1],[-2,-1]],[[462,4182],[-1,0],[0,1],[1,2],[0,-3]],[[456,4184],[-2,1],[3,0],[-1,-1]],[[445,4182],[-2,0],[0,4],[2,0],[0,-4]],[[134,4270],[1,-1],[-1,1]],[[134,4270],[0,0]],[[134,4270],[0,1],[0,-1]],[[131,4274],[1,-1]],[[131,4274],[0,0]],[[131,4274],[-4,2],[4,-2]],[[245,4280],[-3,0],[-2,1],[4,3],[1,-4]],[[119,4283],[16,3],[10,-12],[12,-3],[-2,-5],[-7,1],[-5,-8],[-11,15],[-5,3],[-8,-5],[-6,7],[2,10],[4,-6]],[[185,4372],[3,3],[4,1],[-7,-4]],[[203,4384],[-1,-1],[10,5],[-2,-2],[-7,-2]],[[590,4114],[10,9],[3,0]],[[618,4146],[7,-8],[-1,-5],[2,-6]],[[693,4014],[1,-7],[-2,-6],[2,-17],[-7,-16],[-3,-2],[0,7],[-2,-6],[-1,9],[4,2],[3,8],[-4,-7],[-4,0],[1,5],[5,1],[-4,0],[0,15],[-4,8],[2,6],[-12,-9],[2,-2],[-3,-11],[-3,3],[-1,5],[4,9],[0,7],[3,1],[-2,1],[-1,5],[-5,6],[0,4],[-3,-1],[3,7],[-6,1],[0,9],[-10,4],[6,5],[-5,0],[-1,5],[2,4],[-3,-1],[-1,5],[9,-7],[-8,9],[0,5],[6,-2],[-6,3],[-2,-5],[-2,7],[2,6],[-3,-6],[-2,3],[1,12],[3,4],[-3,-1],[-2,-10],[-5,5],[-4,1],[-2,16],[-3,1],[-3,22],[-1,-6],[2,-8],[-4,6],[7,-36],[-4,1],[-2,8],[-6,-4],[1,6],[-3,10],[4,3],[-5,5],[1,-7],[-2,-3],[-12,11],[-1,-9],[8,1],[3,-6],[-2,-2],[3,1],[4,-10],[-7,2],[2,-5],[-4,2],[0,-5],[-27,33],[2,2],[-18,11],[3,18],[3,-4],[0,-11],[1,8],[5,0],[-9,8],[-12,-12],[-14,6],[2,5],[-2,5],[0,-4],[-4,-2],[-14,5],[-17,-4],[-14,11],[4,15],[-9,-13],[-8,5],[3,6],[-8,-1],[3,6],[-9,-4],[7,5],[-8,4],[6,7],[-15,-9],[-2,1],[0,9],[-1,-10],[-4,-2],[0,2],[-2,2],[4,12],[-5,-9],[-1,3],[-3,-2],[3,0],[-2,-9],[-2,1],[-3,-1],[3,0],[-2,-2],[-1,-3],[6,4],[0,-3]],[[442,4176],[-4,-2],[-3,-5],[8,6],[2,-5],[-7,-10],[5,1],[-3,-2],[-2,-8],[-9,4],[-3,-6],[-1,9],[-3,-11],[1,-4],[-2,3],[-1,6],[0,-11],[-4,5],[2,-3],[-2,-3],[-4,-6],[2,9],[-4,-9],[-1,5],[-5,-13],[-11,-3],[-4,5],[14,17],[-7,-5],[-5,4],[7,23],[-1,12],[14,11],[19,-6],[-14,11],[11,12],[-2,0],[-8,-9],[-9,1],[-13,-11],[-3,-4],[1,-5],[-7,-6],[-3,-9],[-3,-3],[-4,3],[-3,0],[8,-8],[-10,-9],[4,0],[-1,-4],[-4,-3],[-1,5],[-4,-12],[-6,-2],[2,-1],[-4,-7],[14,-11],[-11,-13],[1,-4],[-5,-3],[3,0],[-1,-6],[-11,-4],[-4,-10],[-4,2],[-2,-9],[-11,-7],[3,-6],[-3,-7],[-6,0],[-3,-7],[-3,3],[-3,-6],[2,-3],[-5,2],[-4,-5],[3,-2],[-7,-1],[-4,-7],[8,-1],[-4,-2],[-2,-6],[-1,3],[2,4],[-2,0],[-1,-9],[-10,-3],[-4,-10],[1,8],[-3,2],[-9,-14],[-4,3],[1,-3],[-8,-4],[-3,0],[0,4],[5,2],[-6,3],[-7,-14],[1,-4],[-6,-3],[-3,10],[-1,-3],[2,-9],[-4,-1],[-4,7],[1,-7],[-4,-5],[1,12],[10,7],[11,20],[10,2],[5,-9],[-1,7],[7,-4],[-4,7],[3,11],[18,19],[6,-2],[-1,11],[10,15],[8,0],[-4,6],[1,16],[6,2],[-5,8],[6,13],[4,15],[-4,-10],[-15,-10],[-5,8],[1,6],[7,-3],[-8,10],[-1,-9],[-3,1],[1,-7],[-2,-1],[3,-9],[-3,-3],[-10,20],[-4,-7],[-6,11],[-18,-17],[-7,2],[6,4],[-1,9],[3,3],[-6,2],[0,8],[4,4],[-7,20],[1,7],[-3,-2],[2,14],[5,4],[-6,-3],[-4,-10],[2,-5],[-1,-7],[-22,-6],[-2,4],[2,2],[-15,16],[3,4],[-7,0],[11,13],[0,-3],[6,-2],[-3,-8],[7,8],[4,-7],[3,6],[-6,4],[4,2],[-22,1],[5,6],[-8,3],[9,16],[-8,-11],[-1,-4],[0,-5],[-7,9],[1,7],[-5,2],[0,5],[5,-1],[-4,4],[7,1],[-1,10],[6,12],[3,3],[5,-4],[-3,5],[6,7],[-5,-4],[-1,7],[3,7],[5,-1],[-4,4],[2,3],[19,-5],[11,17],[3,-2],[-1,-2],[14,3],[5,13],[-6,19],[-5,1],[8,3],[3,7],[-6,8],[-3,-6],[-10,-2],[-9,-13],[-5,11],[-3,-3],[5,-2],[-2,-4],[-9,7],[-17,-5],[-15,4],[-4,3],[0,9],[-4,3],[-1,2],[-2,2],[-1,2],[0,1],[13,3],[-20,5],[-9,9],[8,3],[18,16],[10,-2],[-5,4],[21,13],[6,0],[4,-1],[-4,0],[3,-2],[-2,-9],[-4,-3],[7,-4],[26,-4],[3,11],[7,-1],[-2,-5],[3,4],[-2,4],[-5,3],[-6,-5],[0,9],[-10,12],[4,4],[10,-19],[6,4],[6,-6],[8,1],[-1,8],[-17,-4],[-6,7],[6,9],[-13,1],[1,6],[-3,-6],[-16,4],[-6,18],[-37,26],[6,3],[2,17],[27,1],[9,7],[7,10],[2,13],[15,20],[2,-2],[-5,-4],[31,16],[-4,-5],[5,-7],[0,8],[8,2],[-12,3],[6,6],[7,3],[-4,-3],[3,-3],[18,5],[17,17],[4,-2],[12,-4],[-8,-9],[3,0],[0,-5],[10,8],[-1,3],[3,3],[0,-5],[4,3],[3,-3],[-1,-7],[6,-2],[14,6],[13,-4],[-3,-6],[6,-3],[-8,0],[13,0],[-4,-5],[39,2],[59,-19],[23,6],[32,-17]],[[2460,2398],[-1,-11],[2,-47]],[[2455,2358],[-8,1],[-7,-12]],[[2428,2373],[-5,4]],[[2437,2459],[4,1],[-2,13],[2,5],[3,9]],[[2489,2544],[14,-6],[-1,-14]],[[2502,2524],[6,-29],[9,-13]],[[2533,2430],[-6,-17],[-8,1]],[[2519,2414],[-7,-17]],[[2506,2395],[-10,9]],[[1696,910],[4,12]],[[1756,798],[2,-3],[-5,-22],[-5,-12],[-3,4],[1,-5],[-10,-9],[-10,7],[-9,-5],[-11,16],[-10,-1],[-8,20],[0,13],[1,16],[4,6],[-2,38]],[[1693,876],[4,26],[-1,8]],[[3323,3521],[-10,16]],[[3313,3532],[-6,-1],[2,-3],[3,-9]],[[3296,3514],[-5,-10],[1,-22]],[[3292,3482],[-15,2]],[[3458,3486],[28,33],[3,-4],[-15,-24]],[[3495,3442],[-5,6],[-9,-4],[-5,9],[7,10]],[[3483,3463],[-6,11],[-9,-14]],[[3451,3421],[-14,-1],[-2,-11],[4,-3],[1,-5]],[[3449,3372],[-7,-25],[-1,-11],[-18,6]],[[3410,3374],[-16,25],[-26,35],[-9,43]],[[1649,2308],[1,0],[-3,0],[-2,2],[4,-1],[0,-1]],[[1649,2308],[0,3],[1,-1],[1,2],[1,-2],[0,-2],[-3,0]],[[1652,2313],[-2,-2],[0,1]],[[1650,2312],[0,2]],[[1650,2314],[2,-1]],[[1650,2314],[3,2]],[[1653,2316],[-1,-3]],[[1655,2313],[-1,-1],[-1,1],[2,3],[0,-3]],[[1653,2316],[-3,-1],[4,6],[-1,-5]],[[1652,2320],[1,6],[2,0],[-1,-4],[-2,-2]],[[1651,2322],[1,3],[3,4],[-1,-1],[-1,-1],[-2,-5]],[[1654,2330],[0,-1],[-1,-1],[1,5],[0,-3]],[[1656,2333],[-1,-3],[0,3],[1,0]],[[1635,2353],[-1,2],[1,4],[0,-2],[0,-4]],[[1630,2373],[-1,1],[-1,3],[0,2],[2,-5],[0,-1]],[[1612,2388],[-1,1],[0,2],[1,-1],[0,-2]],[[1593,2393],[-2,1],[0,1],[3,1],[-1,-3]],[[1613,2398],[-3,-5],[-5,3],[3,5],[2,-4],[2,7],[1,-6]],[[1574,2425],[1,2],[0,-2],[-1,0]],[[1581,2425],[-1,2],[2,0],[-1,-2]],[[1603,2427],[-1,0],[0,3],[1,-2],[0,-1]],[[1635,2353],[0,3],[0,5],[1,-2],[0,-10],[2,8],[-2,5],[3,-3],[3,-12],[-1,8],[3,-1],[0,4],[11,-16],[0,-5],[-4,-7],[2,2],[-2,-7],[-1,-13]],[[1650,2312],[-6,0],[0,-2],[4,-4],[3,2],[0,-3],[2,6],[10,2],[6,-12],[-13,-27]],[[1662,2256],[-12,-17],[0,-14]],[[1647,2216],[11,-35]],[[1658,2181],[-5,-16],[-5,0],[-7,-12],[-9,0],[-4,-5]],[[1500,2421],[9,7],[-9,-9],[6,-32],[-8,-32],[5,-15],[1,-11],[6,2],[3,7],[0,18],[-7,26],[1,14],[20,20],[3,-3],[0,9],[-6,-2],[-1,10],[4,10],[4,-17],[2,-9],[11,0],[5,-10],[4,-24],[27,5],[6,-15],[10,-6],[12,14],[7,1],[-8,1],[0,6],[33,2],[-6,-7],[-8,0],[-1,-3],[2,3],[0,-5],[-1,1],[-1,-1],[0,-4],[3,4],[2,-10],[-6,-1],[3,-3],[3,3],[0,5],[4,-19],[1,2]],[[1650,2347],[-1,2],[-2,3],[1,-3],[2,-2]],[[3980,2313],[-1,2],[2,3],[0,-1],[-1,-4]],[[3937,2337],[0,-1],[-1,0],[0,1],[1,0]],[[3975,2345],[-1,2],[-1,6],[2,-6],[0,-2]],[[3979,2356],[-2,3],[1,-1],[1,-2]],[[3980,2371],[2,-1],[-3,2],[1,-1]],[[3945,2375],[0,-4],[-1,-6],[-3,10],[4,0]],[[3987,2373],[-1,3],[2,2],[0,-1],[-1,-4]],[[3984,2380],[1,-4],[-1,-1],[0,5]],[[4013,2380],[-1,0],[0,2],[0,-1],[1,-1]],[[3984,2380],[-1,2]],[[3983,2382],[1,3],[0,-2],[0,-3]],[[3982,2379],[0,6],[1,-2],[0,-1]],[[3983,2382],[0,-6],[-1,3]],[[4018,2440],[-1,0],[-1,2],[2,-1],[0,-1]],[[4019,2446],[-1,0],[0,1],[1,-1]],[[3998,2589],[-1,1],[-3,7],[2,-3],[2,-5]],[[3991,2749],[-1,0],[0,1],[1,0],[0,-1]],[[3986,2746],[-1,0],[-1,4],[2,1],[0,-5]],[[3982,2751],[0,2],[1,-1],[1,-4],[-2,3]],[[3993,2755],[0,-2],[-1,-3],[1,5]],[[3982,2754],[-1,0],[0,1],[1,-1]],[[3992,2754],[1,3]],[[3993,2757],[-1,-5],[-1,0],[1,2]],[[3993,2755],[0,2]],[[3993,2757],[1,3],[-1,-5]],[[3992,2761],[0,-2],[-1,-1],[1,8],[2,-2],[-2,-3]],[[3997,2769],[-1,-2],[-1,0],[2,2]],[[3997,2769],[2,1],[-1,-1],[-1,0]],[[3996,2780],[4,-6],[-9,-6],[-1,-3],[0,-8],[-3,-4],[0,4],[-4,-6],[-1,6],[-2,0],[2,-12],[-2,-2],[-1,-13],[-8,-13],[-5,-34],[4,-17],[9,-19],[-2,-8],[4,-12],[16,-39],[5,-4],[0,-7],[1,5],[1,0],[-1,-7],[5,-17],[3,-2],[6,-56],[-1,-16],[4,-19],[-4,-9],[2,-8],[-3,1],[2,-19],[-2,8],[1,-13],[-3,-15],[-24,-35],[-4,10],[0,-6],[0,4],[-1,1],[-2,2],[-2,-9],[2,2]],[[3982,2379],[0,-7],[-5,1],[5,-8],[-2,-4],[-5,10],[6,-15],[-8,14],[6,-18],[0,-5],[-2,-2],[-8,17],[5,-23],[-9,-9],[-3,-12],[-6,-8],[-2,2],[2,5],[-1,2],[1,32],[3,9],[-4,9],[-3,-1],[-2,9]],[[3977,2433],[16,13],[-1,24]],[[3994,2489],[-4,21],[3,18],[-1,14]],[[3928,2765],[1,17],[-4,-3]],[[3924,2789],[-6,17]],[[3962,2840],[4,-10],[15,-7],[1,-4],[-3,-11]],[[2838,1377],[8,-3]],[[2846,1374],[4,-8]],[[2777,1215],[0,-230]],[[2736,999],[-2,-2],[-2,-14],[-5,-4],[-12,31],[-8,50],[-1,46],[-6,34],[1,55],[-15,61],[-13,69],[-10,31],[0,29]],[[2789,1358],[34,13],[15,6]],[[2946,1042],[-2,1]],[[2944,1025],[-12,4]],[[2927,1043],[2,18],[7,21],[9,-11],[1,-29]],[[3103,2456],[-1,1],[1,0],[0,-1]],[[3093,2494],[-1,-1],[2,4],[0,-1],[-1,-2]],[[3094,2502],[-2,4],[1,2],[1,-3],[0,-3]],[[3091,2551],[0,4],[1,2],[0,-2],[-1,-4]],[[3099,2601],[0,24],[3,6],[8,-7]],[[3237,2600],[-11,-13],[-2,-11],[1,-11],[-14,-17],[-30,-24],[-5,-17],[-10,0],[-8,-14],[-10,-8],[-14,-3],[-8,-14],[-1,-8],[-6,3],[-9,-8],[-7,3],[-7,81],[-4,9],[2,2],[-2,16],[2,7],[0,17]],[[2838,1377],[-13,-5]],[[2833,1560],[0,54]],[[2903,1560],[-8,18],[-2,12]],[[2893,1672],[8,18],[0,10]],[[2927,1710],[4,-14],[6,-3],[7,-14],[6,-3],[7,-9]],[[2957,1667],[1,-9],[3,1],[1,-16]],[[2958,1552],[-1,-28],[-4,-8]],[[2953,1516],[8,-15]],[[2919,1467],[3,-24]],[[2922,1443],[-12,-1],[-9,-11]],[[2901,1431],[-2,-21],[-13,-14],[-11,-36],[-5,-4],[-6,6],[-4,-4],[-4,7]],[[2856,1365],[-5,-1],[-5,10]],[[2934,1200],[-27,8]],[[2863,1304],[-3,22],[-10,36],[6,3]],[[2901,1431],[13,13],[8,-1]],[[2922,1443],[0,-13]],[[2956,1397],[2,-12],[1,-39]],[[4210,1616],[-5,-4],[0,5],[8,13],[0,-9],[-3,-5]],[[4192,1623],[-3,2],[5,4],[-1,-3],[-1,-3]],[[4213,1633],[-1,2],[2,5],[1,-1],[-2,-6]],[[4166,1667],[11,-21],[-1,-8],[-8,-1],[-7,16],[-7,2],[-3,6],[5,7],[10,-1]],[[4238,1679],[-3,-6],[2,-8],[-9,-25],[-9,-8],[-5,2],[4,8],[-3,2],[2,14],[4,10],[5,-4],[2,10],[7,9],[3,-4]],[[4105,1688],[-2,3],[1,2],[1,-1],[0,-4]],[[4162,1688],[-2,1],[1,6],[1,-3],[0,-4]],[[4074,1699],[-1,0],[0,2],[1,0],[0,-2]],[[4207,1696],[0,5],[3,0],[0,-1],[-3,-4]],[[4158,1701],[2,-4],[-2,-7],[-1,1],[1,10]],[[4211,1702],[-3,0],[0,1],[3,5],[1,-1],[-1,-5]],[[4118,1689],[0,-4],[-4,-1],[-6,6],[3,1],[1,11],[4,8],[5,-6],[-3,-15]],[[4280,1709],[0,-2],[-2,1],[0,1],[2,0]],[[4218,1705],[-3,-8],[-4,1],[3,6],[-1,3],[3,-4],[3,7],[2,-2],[-3,-3]],[[4225,1705],[-2,-8],[-3,4],[5,9],[0,-5]],[[4291,1707],[-1,0],[-2,3],[2,0],[1,-3]],[[4428,1702],[-4,1],[-1,2],[4,6],[1,-9]],[[4272,1708],[-1,1],[3,1],[0,-1],[-2,-1]],[[4134,1711],[0,-1],[-2,-7],[-1,7],[3,1]],[[4243,1706],[-1,1],[2,5],[-1,-6]],[[4153,1707],[-1,2],[1,3],[1,-2],[-1,-3]],[[4229,1712],[8,-1],[0,-6],[-11,-4],[3,11]],[[4275,1713],[3,-1],[1,-1],[-2,-4],[-2,6]],[[4134,1711],[5,2],[3,-10],[5,3],[0,-9],[2,9],[3,0],[2,-15],[-10,-5],[0,10],[-4,-10],[-15,-9],[-4,4],[0,15],[5,7],[6,-1],[6,-12],[4,6],[-6,8],[-2,7]],[[4207,1712],[-2,-17],[-15,-10],[-5,3],[-5,-5],[-6,5],[-10,-2],[-1,5],[2,9],[8,8],[14,-13],[7,6],[4,-7],[8,13],[1,3],[-3,-1],[1,4],[2,-1]],[[4103,1710],[3,-8],[-8,-16],[1,7],[-8,10],[-2,10],[14,-3]],[[4266,1713],[-1,0],[1,3],[0,-3]],[[4301,1715],[-2,5],[0,4],[4,-1],[-2,-8]],[[4259,1729],[1,-3],[-5,-7],[-9,-2],[3,12],[9,3],[1,-3]],[[4268,1729],[0,5],[2,0],[0,-2],[-2,-3]],[[4429,1733],[-1,-17],[-6,-13],[-11,-2],[7,33],[8,6],[3,-7]],[[4191,1738],[-1,2],[1,0],[0,-1],[0,-1]],[[4181,1742],[1,-2],[-1,-1],[0,3]],[[4181,1742],[-4,1],[2,0],[2,-1]],[[4088,1746],[-1,1],[0,3],[1,0],[0,-4]],[[4176,1750],[-1,-3],[0,5],[1,-2]],[[4082,1757],[2,-3],[-8,-9],[-12,6],[4,6],[14,0]],[[4425,1761],[1,0],[1,-3],[-3,4],[1,-1]],[[3960,1764],[-1,3],[2,3],[0,-4],[-1,-2]],[[3974,1788],[11,-2],[1,6],[4,-2],[4,-10],[10,-1],[5,-20],[23,-6],[5,19],[3,2],[3,-11],[5,3],[8,-10],[7,0],[0,-11],[3,-3],[0,-11],[7,-7],[10,7],[6,-7],[-1,-26],[3,-8],[-19,17],[-8,-6],[-12,7],[-2,-4],[-33,24],[-16,-3],[-9,10],[-15,4],[1,14],[-17,7],[3,-1],[2,13],[3,0],[3,20],[2,-4]],[[4222,1788],[-1,2],[0,3],[1,-3],[0,-2]],[[4173,1771],[-1,20],[0,6],[2,-9],[-1,-17]],[[3955,1795],[0,1],[-1,2],[1,-1],[0,-2]],[[4219,1803],[-2,3],[0,1],[2,-2],[0,-2]],[[4216,1811],[-1,0],[0,4],[1,-1],[0,-3]],[[4194,1807],[-3,8],[1,7],[2,-6],[0,-9]],[[4107,1830],[0,2],[1,1],[0,-1],[-1,-2]],[[4204,1837],[-2,-28],[-4,2],[1,22],[5,4]],[[4328,1841],[-1,4],[1,-2],[0,-2]],[[4210,1835],[0,-5],[-2,3],[-1,-12],[3,-7],[-7,-14],[-1,6],[2,10],[2,27],[3,3],[1,-11]],[[4354,1851],[1,-2],[-4,7],[3,-5]],[[4323,1856],[-1,2],[1,0],[0,-2]],[[3902,1859],[0,1],[1,0],[-1,-1]],[[4209,1860],[2,-2],[-1,-6],[-3,5],[2,3]],[[4325,1857],[-1,2],[0,3],[1,-5]],[[4362,1863],[1,-2],[-2,2],[1,0]],[[4266,1864],[-1,1],[0,1],[1,0],[0,-2]],[[4288,1871],[-1,0],[0,2],[1,0],[0,-2]],[[4209,1874],[-1,1],[2,2],[0,-3],[-1,0]],[[4283,1873],[0,4],[2,-2],[-1,-1],[-1,-1]],[[4198,1876],[0,-1],[-1,1],[1,2],[0,-2]],[[4282,1874],[-3,-6],[1,5],[-4,-4],[5,9],[1,-4]],[[4286,1877],[1,-3],[-2,4],[1,-1]],[[4342,1877],[-1,3],[0,1],[1,0],[0,-4]],[[4200,1878],[-1,2],[0,2],[1,-2],[0,-2]],[[4116,1873],[-1,4],[1,6],[0,-3],[0,-7]],[[4272,1883],[-2,1],[0,2],[1,1],[1,-4]],[[4112,1859],[-2,14],[4,15],[1,-24],[-3,-5]],[[4274,1887],[-2,0],[0,1],[2,3],[0,-4]],[[4263,1891],[1,-8],[3,-1],[-1,-8],[-7,-8],[-10,17],[2,9],[12,-1]],[[4275,1895],[-1,0],[3,4],[-1,-4],[-1,0]],[[3984,1895],[-1,0],[-2,2],[2,3],[1,-5]],[[3991,1898],[-1,3],[2,1],[0,-2],[-1,-2]],[[3986,1899],[0,2],[0,1],[1,-1],[-1,-2]],[[4302,1899],[11,-8],[4,-16],[-1,-10],[-13,19],[-5,1],[0,-6],[-8,4],[-1,6],[-6,-9],[-4,14],[-3,-17],[-1,12],[4,12],[14,-4],[5,7],[4,-5]],[[3895,1891],[-1,-7],[-3,19],[4,-8],[0,-4]],[[4327,1908],[-1,0],[2,2],[-1,-1],[0,-1]],[[3997,1913],[6,-8],[-3,-17],[-3,6],[-3,-6],[0,23],[3,2]],[[3889,1902],[-1,10],[0,2],[3,-8],[-2,-4]],[[4355,1913],[-1,1],[-1,3],[2,-2],[0,-2]],[[4368,1916],[-1,2],[1,3],[0,-5]],[[3886,1919],[-4,5],[0,7],[2,-2],[2,-10]],[[4220,1929],[-1,1],[1,2],[0,-1],[0,-2]],[[4365,1926],[0,3],[1,3],[0,-2],[-1,-4]],[[4250,1915],[-2,9],[0,9],[1,-2],[1,-16]],[[4217,1933],[0,1]],[[4217,1934],[0,1]],[[4217,1935],[0,-2]],[[4217,1934],[1,1],[0,-1],[-1,-1]],[[4218,1936],[1,-2],[0,-3],[-1,2],[0,3]],[[4241,1939],[8,0],[5,-1],[-12,-4],[-2,3],[1,2]],[[4209,1935],[-1,3],[1,3],[1,-3],[-1,-3]],[[4363,1934],[-1,3],[1,4],[1,-1],[-1,-6]],[[4009,1942],[0,1],[1,-1],[-1,0]],[[4307,1930],[-4,2],[-2,4],[9,7],[1,-10],[-4,-3]],[[4212,1939],[-1,1],[2,4],[0,-2],[-1,-3]],[[4235,1942],[4,-1],[1,-5],[-13,-5],[-1,5],[1,8],[8,-2]],[[4392,1943],[9,-4],[-10,-3],[-11,10],[12,-3]],[[4011,1944],[-1,3],[2,1],[0,-3],[-1,-1]],[[3973,1940],[3,-24],[6,-5],[-2,-12],[1,-6],[-10,9],[-3,25],[-9,2],[7,20],[3,-10],[-2,9],[3,2],[3,-10]],[[4376,1950],[3,0],[-4,-1],[1,1]],[[4268,1952],[-1,1],[1,2],[0,-2],[0,-1]],[[4275,1952],[4,-9],[-11,2],[4,11],[3,-4]],[[4015,1956],[0,1],[0,1],[1,0],[-1,-2]],[[4272,1958],[-2,0],[-1,1],[2,3],[1,-4]],[[4016,1959],[0,2],[1,1],[0,-2],[-1,-1]],[[4210,1957],[1,-4],[3,6],[1,-7],[-3,1],[-2,-8],[-1,11],[-3,-9],[0,14],[4,1],[0,-5]],[[4304,1960],[-2,-1],[-1,1],[2,3],[1,-3]],[[3947,1966],[-1,0],[1,1],[0,-1]],[[4022,1968],[2,-5],[-4,-6],[-1,9],[3,2]],[[4373,1963],[-2,3],[1,4],[2,-3],[-1,-4]],[[3873,1969],[5,-23],[0,-6],[-6,3],[-3,17],[1,9],[3,0]],[[4318,1970],[2,-1],[-2,-14],[-4,13],[4,2]],[[4317,1975],[-1,-3],[-6,-2],[1,4],[6,1]],[[4381,1979],[5,-1],[7,-15],[-6,-2],[-2,13],[-6,6],[2,-1]],[[4267,1975],[-2,1],[1,5],[1,-2],[0,-4]],[[4313,1984],[-2,1],[0,2],[3,1],[-1,-4]],[[4192,1986],[-2,0],[-1,-2],[1,5],[2,-3]],[[4458,1777],[-3,-13],[3,-7]],[[4458,1757],[0,-81],[-15,34],[3,11],[-4,-8],[-7,-4],[-2,5],[-5,-8],[-1,6],[3,10],[1,10],[-6,13],[5,-1],[2,0],[1,3],[-5,0],[-4,9],[8,-2],[-7,9],[-7,33],[3,4],[-4,-2],[0,12],[-30,32],[-10,2],[-8,12],[1,6],[4,0],[-4,1],[-3,-4],[-4,3],[-1,6],[-7,10],[3,19],[-6,-28],[1,-4],[-3,-8],[-5,0],[-2,13],[2,6],[-1,9],[-12,19],[5,3],[6,-4],[7,14],[5,-5],[1,-6],[4,14],[0,4],[-3,-1],[2,5],[-4,-5],[-18,-1],[-4,7],[-2,16],[-9,9],[-1,-5],[-3,4],[4,11],[0,10],[9,5],[5,11],[12,-6],[4,-7],[10,-3],[-1,-5],[3,-14],[-3,-12],[1,-23],[5,-19],[0,12],[2,0],[1,-16],[2,2],[0,-8],[2,-7],[7,-1],[11,28],[1,12],[12,5],[-1,11],[10,12],[27,-32],[5,1],[8,-6],[0,-5],[3,1]],[[3951,1981],[-3,2],[0,6],[3,1],[0,-9]],[[4194,1989],[-2,0],[0,1],[2,2],[0,-3]],[[4271,1992],[1,-14],[3,-2],[-1,-4],[-5,2],[-2,11],[0,6],[4,1]],[[3950,1992],[-1,1],[1,1],[1,-2],[-1,0]],[[4195,1989],[-1,2],[1,3],[1,-4],[-1,-1]],[[4266,1985],[-2,8],[2,1],[1,-4],[-1,-5]],[[3867,1984],[-2,0],[1,11],[1,-5],[0,-6]],[[3938,1990],[-2,1],[1,4],[3,-3],[-2,-2]],[[4197,1994],[-1,1],[0,1],[1,-2]],[[4197,1994],[0,2],[1,-1],[1,-2],[-2,1]],[[4188,1996],[0,2],[0,1],[1,-1],[-1,-2]],[[3956,2001],[-1,0],[0,2],[1,-2]],[[4317,2003],[6,-5],[-1,-8],[-4,1],[-4,10],[3,-12],[-9,7],[9,7]],[[3868,1990],[-4,13],[3,-2],[1,-11]],[[3954,1999],[3,-7],[-7,4],[1,8],[3,-5]],[[4299,1996],[-1,0],[-3,9],[3,-6],[1,-3]],[[4269,2003],[-1,1],[1,5],[0,-1],[0,-5]],[[3950,2004],[-1,3],[0,3],[1,-4],[0,-2]],[[3872,2007],[-3,-1],[-2,2],[4,2],[1,-3]],[[3953,2004],[-1,3],[-2,5],[1,-1],[2,-7]],[[3928,2013],[-1,1],[2,1],[0,-1],[-1,-1]],[[3949,2014],[0,2],[-1,1],[2,-2],[-1,-1]],[[4268,2013],[0,3],[0,1],[1,-2],[-1,-2]],[[3931,2024],[-1,3],[1,0],[0,-3]],[[3948,2026],[-1,0],[0,2],[1,-1],[0,-1]],[[3936,2026],[1,3],[0,-1],[-1,-2]],[[3932,2022],[0,3],[1,4],[1,-6],[-2,-1]],[[4268,2030],[1,-1],[0,-3],[-1,1],[0,3]],[[3948,2029],[-2,0],[0,2],[1,1],[1,-3]],[[3952,2031],[-1,-1],[0,1],[0,1],[1,-1]],[[3940,2032],[0,-1],[-1,2],[1,-1]],[[4268,2030],[-1,3],[1,1],[0,-1],[0,-3]],[[3936,2035],[1,-1],[0,-2],[-1,2],[0,1]],[[3943,2031],[-2,3],[0,1],[1,-1],[1,-3]],[[3940,2032],[0,3],[1,-2],[0,-2],[-1,1]],[[3936,2027],[-2,5],[1,3],[2,-5],[-1,-3]],[[3936,2035],[-1,1],[1,0],[0,-1]],[[3947,2033],[-1,-1],[-1,5],[2,-2],[0,-2]],[[3943,2037],[-2,1],[0,2],[2,-1],[0,-2]],[[4175,2041],[-1,1],[1,0],[0,-1]],[[3936,2039],[-2,2],[1,3],[1,-5]],[[3925,2039],[4,-3],[1,-7],[-8,6],[1,9],[2,-5]],[[3930,2041],[2,-7],[-1,-1],[-5,7],[-1,1],[2,4],[3,-4]],[[3944,2039],[-2,4],[3,3],[1,-5],[-2,-2]],[[3953,2040],[-1,-7],[-5,9],[2,4],[4,-6]],[[3921,2037],[-2,5],[0,12],[3,-7],[-1,-10]],[[3854,2054],[5,-15],[-1,-16],[-10,30],[6,1]],[[3923,2055],[0,-6],[-3,5],[-3,2],[-1,5],[7,-6]],[[4211,2015],[-3,7],[-17,-3],[-4,4],[-6,-5],[-8,5],[-4,-7],[-3,-15],[1,-19],[6,-14],[2,-15],[6,-1],[7,23],[5,-6],[4,7],[9,0],[-2,4],[4,3],[5,-3],[1,-6],[-2,-8],[-2,5],[-5,0],[-6,-21],[-8,-7],[-2,-8],[-5,4],[16,-49],[-4,-14],[6,-12],[1,-9],[3,2],[0,-11],[-11,-5],[0,-11],[-8,3],[1,25],[-10,19],[3,12],[0,16],[-4,5],[-8,-13],[3,-10],[0,-51],[-2,-17],[2,-17],[-2,4],[-7,-7],[-5,5],[-1,8],[4,41],[-2,24],[-3,4],[-5,-5],[-1,24],[-1,4],[5,11],[1,16],[2,3],[-1,24],[3,14],[3,8],[2,-7],[-1,26],[-2,4],[3,-3],[-1,12],[3,17],[4,10],[4,-8],[5,21],[9,-11],[12,-2],[5,-6],[5,5],[9,-5],[11,13],[-1,7],[6,11],[3,-2],[-27,-47]],[[3869,2062],[-2,0],[-1,2],[2,0],[1,-2]],[[3848,2076],[-1,2],[1,1],[1,-1],[-1,-2]],[[3910,2065],[-2,10],[3,4],[2,-6],[-3,-8]],[[3841,2078],[0,2],[1,-1],[-1,-1]],[[3841,2081],[0,1],[1,0],[-1,-1]],[[4275,2068],[2,-16],[-5,-14],[2,-6],[5,12],[1,9],[7,6],[0,-16],[-7,-11],[6,-8],[0,-8],[2,-2],[1,-3],[-11,9],[-3,-5],[2,-26],[5,-18],[-5,7],[-5,17],[-2,30],[2,9],[-3,7],[2,25],[7,16],[-3,-14]],[[3851,2076],[-2,5],[-1,2],[2,0],[1,-7]],[[4274,2083],[-1,0],[1,2],[0,-2]],[[4146,2086],[1,-1],[0,-3],[-1,3],[0,1]],[[4279,2085],[0,2],[0,3],[1,-2],[-1,-3]],[[4284,2077],[-3,-1],[-1,10],[5,12],[2,-7],[-3,-14]],[[3839,2087],[-9,12],[-2,6],[3,3],[8,-15],[0,-6]],[[4131,2121],[-1,0],[0,1],[1,1],[0,-2]],[[4133,2121],[-1,1],[0,4],[2,0],[-1,-5]],[[4130,2131],[2,-1],[1,-2],[-2,2],[-1,1]],[[4136,2127],[-1,3],[0,2],[1,-1],[0,-4]],[[4130,2131],[1,-3],[-4,3],[1,1],[2,-1]],[[4136,2140],[-1,0],[-1,2],[1,0],[1,-2]],[[4134,2146],[-1,2],[0,4],[2,-3],[-1,-3]],[[4137,2153],[-1,-5],[-2,5]],[[4132,2153],[-2,-2],[6,-15],[-2,-3],[-9,1],[0,-2],[2,1],[0,-3],[1,-2],[2,-2],[-2,-7],[5,-5],[1,-10],[5,-18],[-3,-7],[0,-8],[16,-32],[-3,-7],[-6,2],[-6,9],[2,-10],[-5,-3],[-3,-23],[-1,-22],[3,3],[0,-12],[-5,-2]],[[4128,1974],[-5,-15],[-2,8],[0,-13],[-8,-14],[3,0],[-1,-13],[4,-3],[-2,-12],[-3,1],[0,-17],[-2,6],[1,-11],[-3,-10],[0,-7],[-19,-20],[-2,24],[-5,5],[-6,-4],[-1,11],[-3,-3],[-4,9],[-6,-15],[-6,4],[-5,-10],[-2,30],[-3,-10],[-2,4],[-6,-6],[-3,2],[3,5],[-4,-7],[-1,8],[-4,-6],[-2,35],[-3,8],[2,18],[-5,13],[-6,3],[0,8],[3,-3],[-5,8],[0,22],[-3,8],[-1,18],[2,13],[1,1],[3,6],[-4,-6],[5,24],[3,1]],[[4082,2055],[8,0],[4,17]],[[4103,2112],[3,41],[3,7]],[[4109,2160],[2,-3],[16,3]],[[3928,2013],[7,10],[5,-9],[1,-11],[-7,-9],[3,2]],[[3937,1996],[-2,-6],[3,-2],[-3,-10],[5,-10],[7,-3],[2,1],[1,-31],[6,-8],[-5,-23],[5,17],[10,-3],[3,-18],[3,-5],[-3,-23],[2,-7],[-2,-13],[1,-11],[-2,-49],[-7,16],[-2,-12],[-8,10],[3,-14],[-3,-1],[-9,29],[-22,40],[-1,13],[-8,14],[-10,33],[-1,15],[-8,40],[-9,31],[-7,7],[-6,46],[1,7],[-14,19],[-2,21],[-10,29],[-6,3],[-13,33],[-4,32],[7,1],[8,-13],[17,1],[5,-13],[2,-12],[3,-5],[0,-10],[24,-43],[-1,-9],[1,-3],[1,4],[1,-7],[1,6],[3,-14],[7,-17],[-2,14],[4,2],[5,-20],[10,-12],[1,-13],[3,-8],[1,-2],[6,-2],[2,-9],[-7,-9],[-2,2],[1,-3],[5,4]],[[3821,2204],[-1,1],[1,1],[0,-1],[0,-1]],[[3820,2207],[-1,2],[1,0],[0,-2]],[[3823,2210],[0,1],[-1,4],[2,-2],[-1,-3]],[[3249,2870],[-3,-2],[-2,1],[3,4],[2,-3]],[[3240,2873],[-1,0],[1,2],[0,-2]],[[3253,2874],[0,-1],[-1,2],[1,1],[0,-2]],[[3230,2873],[0,3],[0,1],[1,-2],[-1,-2]],[[3255,2881],[1,-3],[-1,1],[-1,1],[1,1]],[[3256,2882],[0,1],[1,-1],[-1,0]],[[3255,2881],[0,1],[1,3],[0,-3]],[[3256,2882],[-1,-1]],[[3279,2890],[-2,8],[-3,-3]],[[3274,2895],[0,-23]],[[3271,2855],[-6,-41],[-35,11]],[[3230,2825],[-14,43],[0,5]],[[3216,2873],[2,0],[1,-10],[4,-1],[7,9],[14,-6],[7,3],[4,6],[3,16],[21,48],[1,-15],[2,-5],[0,-20]],[[2673,3580],[0,-4]],[[2673,3576],[-1,3],[1,0],[0,1]],[[2264,2768],[-2,-18],[3,40],[6,14],[9,56],[-3,-8],[3,8],[13,28],[5,53],[13,20],[6,34]],[[2379,2995],[0,-60]],[[2319,2768],[-38,0],[-17,0]],[[2778,3528],[-1,6],[5,6],[-15,23],[3,6],[-3,11]],[[2768,3612],[-5,0],[3,11]],[[2771,3658],[9,-1],[8,-14]],[[2799,3612],[-3,-3],[4,-5],[7,-7]],[[2815,3602],[-4,-5],[4,-8],[-5,-15]],[[2813,3526],[-2,-5],[-18,-5],[-5,-5],[-1,-8],[-3,13],[-6,12]],[[4161,2847],[-1,-1],[-1,1],[1,2],[1,-2]],[[4190,2904],[4,-4],[-3,-6],[0,-14],[-6,-49],[-11,-28],[-1,4],[-2,2],[-1,2],[-3,18],[0,21],[13,50],[7,9],[3,-5]]],"transform":{"scale":[0.0720144028805761,0.027909981996399276],"translate":[-180,-55.918]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment