A map showing the time-evolution geographic center of the US, weighted by aggregate rWAR.
Last active
August 29, 2015 14:19
-
-
Save bdilday/65df0bbd81c91d4ef0cf to your computer and use it in GitHub Desktop.
rWAR (aggregate) weighted mean geographic center
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<meta charset="utf-8"> | |
<html lang="en"> | |
<head> | |
<meta charset="utf-8"> | |
<title>Mean US location, weighted by aggregate rWAR</title> | |
<link rel="stylesheet" href="style.css"> | |
</head> | |
<body> | |
<div id="chart"> | |
<div id="blahtext"> | |
</div> | |
</div> | |
<script src="http://d3js.org/d3.v3.min.js" charset="utf-8"></script> | |
<script src="http://d3js.org/topojson.v1.min.js"></script> | |
<script src="main.js"></script> | |
</body> |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
var vbose=0; | |
var width = 800, | |
height = 600; | |
var dx = 300; | |
var dy = 100; | |
var mnyear = 1787; | |
var mxyear = 1975; | |
var animateInterval = 300 // milliseconds | |
var startOpacity = 1.0; | |
var nyear = 20.0; | |
var bcolor = "#4682B4"; | |
var pcolor = "orange"; | |
var tx=310; | |
var ty=130; | |
/** | |
var projection = d3.geo.orthographic() | |
.scale(500) | |
.translate([width / 2, height / 2]) | |
.rotate([110, -30]) | |
.clipAngle(90); | |
**/ | |
/** | |
var projection = d3.geo.stereographic() | |
.scale(800) | |
.translate([width / 2, height / 2]) | |
.rotate([100, -40]) | |
.clipAngle(90); | |
**/ | |
var projection = d3.geo.albersUsa() | |
.scale(800) | |
.translate([width / 2, height / 2]); | |
/** | |
var projection = d3.geo.mercator() | |
.center([120, 50 ]) | |
.scale(200) | |
.rotate([-180,0]); | |
**/ | |
var gpath = d3.geo.path() | |
.projection(null); | |
var path = d3.geo.path() | |
.projection(projection); | |
var svg = d3.select("#chart").append("svg") | |
.attr("width", width) | |
.attr("height", height); | |
var lam = d3.scale.linear() | |
.domain([0, width]) | |
.range([-180, 180]); | |
var psi = d3.scale.linear() | |
.domain([0, height]) | |
.range([90, -90]); | |
var g = svg.append("g"); | |
var lam = d3.scale.linear() | |
.domain([0, width]) | |
.range([-180, 180]); | |
var psi = d3.scale.linear() | |
.domain([0, height]) | |
.range([90, -90]); | |
/** | |
svg.on("click", function() { | |
var p = d3.mouse(this); | |
var pi = projection.invert([p[0], p[1]]); | |
console.log(["click", p[0], p[1], pi[0], pi[1]]); | |
projection.center([pi[0], pi[1]]); | |
g.selectAll("path").attr("d", path); | |
}); | |
**/ | |
function parseData(data) { | |
var adata = []; | |
for (i=0 ; i<data.length ; i++ ) { | |
p = [+data[i]["lon"],+data[i]["lat"]]; | |
pr = projection(p); | |
data[i]["cx"] = pr[0]; | |
data[i]["cy"] = pr[1]; | |
if (i==data.length-1) { | |
; | |
} else if (data[i]["isbat"]!=data[i+1]["isbat"]) { | |
; | |
} else { | |
p = [+data[i+1]["lon"],+data[i+1]["lat"]]; | |
pr = projection(p); | |
}; | |
data[i]["nx"] = pr[0]; | |
data[i]["ny"] = pr[1]; | |
adata.push(data[i]); | |
} | |
return adata; | |
}; | |
d3.json("us_stateYear.json", function(error, us) { | |
if (error) return console.error(error); | |
if (vbose>=2) { | |
console.log(us); | |
} | |
var land = g.selectAll("path") | |
.data(topojson.feature(us, us.objects.us_40).features) | |
.enter() | |
.append("path") | |
.attr("class", "land") | |
.attr("d", path) | |
.style("fill", "#FFF") | |
.style("opacity", 1.0) | |
; | |
g.append("path") | |
.datum(topojson.mesh(us, us.objects.us_40, function(a, b) | |
{ | |
return a !== b; | |
} | |
)) | |
.attr("class", "border state-border") | |
.attr("d", path) | |
.style("opacity", 1) | |
.style("stroke", "#555"); | |
var grid = d3.geo.graticule(); | |
g.append("path") | |
.datum(d3.geo.graticule()) | |
.attr("d", path) | |
.style("fill", "none") | |
.style("stroke", "#000000") | |
.style("stroke-width", "0.5px") | |
.style("opacity", 0.1); | |
var color = d3.scale.category20(); | |
console.log(["color", color]); | |
d3.csv("warMeanPos.csv", function(data) | |
{ | |
console.log(["mdata",data]); | |
mdata = parseData(data); | |
g.append("g") | |
.attr("id","lineg") | |
.selectAll("path") | |
.data(mdata.slice(0, mdata.length-1)) | |
.enter() | |
.append("path") | |
.style("stroke", function(d, i) { | |
var pcol = d["isbat"] == 1 ? bcolor : pcolor; | |
console.log(["pathcolor", i, d, pcol]); | |
return pcol; | |
}) | |
.style("stroke-width", 0.2) | |
.datum(function(d) { | |
console.log(["datum", d]); | |
return {type: "LineString", coordinates: | |
[ | |
[d["cx"], d["cy"]], | |
[d["nx"], d["ny"]] | |
] | |
}}) | |
.attr("d",gpath) | |
; | |
/** | |
g.append("g") | |
.selectAll("text") | |
.data(["WAR-weighted map"]) | |
.enter() | |
.append("text") | |
.attr("id", "blah") | |
.attr("x", 375) | |
.attr("y", 145) | |
.text(function(d) { | |
console.log(["text", d]); | |
return d; | |
}) | |
.attr("font-family", "sans-serif") | |
.attr("font-size", "20px") | |
; | |
**/ | |
g.selectAll("text") | |
.data(["WAR-weighted map"]) | |
.enter() | |
.append("text") | |
.attr("id", "svgtext") | |
.attr("x", tx) | |
.attr("y", ty) | |
.text(function(d) { | |
console.log(["text", d]); | |
return d; | |
}) | |
.attr("font-family", "sans-serif") | |
.attr("font-size", "20px") | |
; | |
g.append("text") | |
.attr("x", tx) | |
.attr("y", ty) | |
.text("WAR-weighted map") | |
.attr("font-family", "sans-serif") | |
.attr("font-size", "20px") | |
; | |
g.append("text") | |
.attr("x", tx+40) | |
.attr("y", ty+15) | |
.text("(aggregate birth-place)") | |
.attr("font-family", "sans-serif") | |
.attr("font-size", "12px") | |
; | |
g.append("text") | |
.attr("x", tx+200) | |
.attr("y", ty) | |
.text("batters") | |
.attr("fill", bcolor) | |
.attr("font-family", "sans-serif") | |
.attr("font-size", "12px") | |
; | |
g.append("text") | |
.attr("x", tx+200) | |
.attr("y", ty+15) | |
.text("pitchers") | |
.attr("fill", pcolor) | |
.attr("font-family", "sans-serif") | |
.attr("font-size", "12px") | |
; | |
g.selectAll("circle") | |
.data(mdata) | |
.enter() | |
.append("circle") | |
.attr("r", function(d) { | |
if (vbose>=2) { | |
console.log(["r", d]); | |
} | |
return 0.75; }) | |
.attr("cx", function(d) { | |
return d["cx"]; | |
}) | |
.attr("cy", function(d) { | |
return d["cy"]; | |
}) | |
.attr("fill", function(d) { | |
return d["isbat"]==1 ? bcolor : pcolor; | |
}) | |
.attr("opacity", 0.8) | |
.on("mouseover", function(d) { | |
console.log(["mouseover", d]); | |
g.selectAll("#svgtext") | |
.text(d["year"]) | |
.transition() | |
.style('fill', '#555') | |
.style('opacity', 1) | |
.style('font-size', "10px") | |
.attr('x', d["cx"]) | |
.attr('y', d["cy"]) | |
}) | |
.on("mouseout", function(d) { | |
g.selectAll("#svgtext") | |
.text(d["year"]) | |
.transition() | |
.style('fill', '#555') | |
.style('opacity', 0) | |
.style('font-size', "0px") | |
.attr('x', d["cx"]) | |
.attr('y', d["cy"]) | |
}) | |
/****************/ | |
}) | |
}) | |
/** | |
**/ | |
var zoom = d3.behavior.zoom() | |
.on("zoom",function() { | |
// console.log(["zoom", d3.event]); | |
g.attr("transform", | |
"translate(" + | |
d3.event.translate.join(",") + | |
")scale(" + | |
d3.event.scale+ | |
")" | |
); | |
/** | |
g.selectAll("path") | |
.attr("d", path.projection(projection)); | |
**/ | |
}); | |
svg.call(zoom) | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
div.menutooltip { | |
position: absolute; | |
text-align: center; | |
width: 240px; | |
height: 120px; | |
padding: 4px; | |
font: 10px sans-serif; | |
background: lightsteelblue; | |
border: 2px; | |
border-radius: 8px; | |
pointer-events: none; | |
line-height: 8px; | |
} | |
.d3-tip { | |
line-height: 1; | |
font-weight: bold; | |
padding: 12px; | |
background: rgba(0, 0, 0, 0.8); | |
color: #fff; | |
border-radius: 2px; | |
display: block; | |
} | |
/* Creates a small triangle extender for the tooltip */ | |
/* display: inline; */ | |
.d3-tip:after { | |
box-sizing: border-box; | |
font-size: 10px; | |
display: block; | |
width: 100%; | |
line-height: 1; | |
color: rgba(0, 0, 0, 0.8); | |
content: "\25BC"; | |
position: absolute; | |
text-align: center; | |
} | |
/* Style northward tooltips differently */ | |
.d3-tip.n:after { | |
margin: -1px 0 0 0; | |
top: 100%; | |
left: 0; | |
color: "green"; | |
display: block; | |
} | |
#bubblehead { | |
font-size: 18px; | |
line-height: 4px; | |
font-weight: "bold"; | |
text-decoration: underline; | |
text-align: center; | |
} | |
#bubblemiles { | |
font-size: 18px; | |
line-height: 4px; | |
font-weight: "bold"; | |
text-decoration: normal; | |
text-align: center; | |
} | |
#bubblelab { | |
margin: 0; | |
font-family: serif, sans-serif; | |
font-size: 14px; | |
line-height: 4px; | |
text-align: left; | |
text-decoration: none; | |
} | |
#menuhead { | |
font-size: 18px; | |
font-weight: "bold"; | |
text-decoration: underline; | |
text-align: center; | |
} | |
#menulab { | |
margin: 0; | |
font-family: serif, sans-serif; | |
font-size: 12px; | |
line-height: 4px; | |
text-align: left; | |
text-decoration: none; | |
} | |
#brewery-menu { | |
position: absolute; | |
top: 20px; | |
left: 560px; | |
} | |
#style-menu { | |
position: absolute; | |
top: 30px; | |
left: 60px; | |
} | |
#s-menu-l { | |
position: absolute; | |
top: 40px; | |
left: -60px; | |
width: 120px; | |
text-align: "right"; | |
} | |
#chart { | |
position: absolute; | |
top: 40px; | |
left: 200px; | |
width: 700px; | |
/*margin: 25px auto;*/ | |
} | |
path { | |
fill: none; | |
stroke: #000; | |
stroke-linejoin: round; | |
stroke-linecap: round; | |
} | |
li.selected { | |
font-weight: bold; | |
} | |
p.selected { | |
font-weight: bold; | |
} | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{"type":"Topology","objects":{"us_40":{"type":"GeometryCollection","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}},"geometries":[{"type":"Polygon","properties":{"GEO_ID":"0400000US04","STATE":"04","NAME":"Arizona","LSAD":null,"CENSUSAREA":113594.084,"state":"AZ","statename":"Arizona","year":"1912"},"id":"Arizona","arcs":[[0,1,2,3,4]]},{"type":"Polygon","properties":{"GEO_ID":"0400000US05","STATE":"05","NAME":"Arkansas","LSAD":null,"CENSUSAREA":52035.477,"state":"AR","statename":"Arkansas","year":"1836"},"id":"Arkansas","arcs":[[5,6,7,8,9,10]]},{"type":"MultiPolygon","properties":{"GEO_ID":"0400000US06","STATE":"06","NAME":"California","LSAD":null,"CENSUSAREA":155779.22,"state":"CA","statename":"California","year":"1850"},"id":"California","arcs":[[[11]],[[12]],[[13]],[[14]],[[15]],[[16]],[[17]],[[18]],[[19,20,-3,21]]]},{"type":"Polygon","properties":{"GEO_ID":"0400000US08","STATE":"08","NAME":"Colorado","LSAD":null,"CENSUSAREA":103641.888,"state":"CO","statename":"Colorado","year":"1876"},"id":"Colorado","arcs":[[22,23,24,25,26,27]]},{"type":"Polygon","properties":{"GEO_ID":"0400000US09","STATE":"09","NAME":"Connecticut","LSAD":null,"CENSUSAREA":4842.355,"state":"CT","statename":"Connecticut","year":"1788"},"id":"Connecticut","arcs":[[28,29,30,31]]},{"type":"Polygon","properties":{"GEO_ID":"0400000US11","STATE":"11","NAME":"District of Columbia","LSAD":null,"CENSUSAREA":61.048},"id":"District of Columbia","arcs":[[32,33]]},{"type":"Polygon","properties":{"GEO_ID":"0400000US13","STATE":"13","NAME":"Georgia","LSAD":null,"CENSUSAREA":57513.485,"state":"GA","statename":"Georgia","year":"1788"},"id":"Georgia","arcs":[[34,35,36,37,38,39]]},{"type":"MultiPolygon","properties":{"GEO_ID":"0400000US15","STATE":"15","NAME":"Hawaii","LSAD":null,"CENSUSAREA":6422.628,"state":"HI","statename":"Hawaii","year":"1959"},"id":"Hawaii","arcs":[[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]]]},{"type":"Polygon","properties":{"GEO_ID":"0400000US17","STATE":"17","NAME":"Illinois","LSAD":null,"CENSUSAREA":55518.93,"state":"IL","statename":"Illinois","year":"1818"},"id":"Illinois","arcs":[[48,49,50,51,52,53]]},{"type":"Polygon","properties":{"GEO_ID":"0400000US18","STATE":"18","NAME":"Indiana","LSAD":null,"CENSUSAREA":35826.109,"state":"IN","statename":"Indiana","year":"1816"},"id":"Indiana","arcs":[[54,-50,55,56,57]]},{"type":"MultiPolygon","properties":{"GEO_ID":"0400000US22","STATE":"22","NAME":"Louisiana","LSAD":null,"CENSUSAREA":43203.905,"state":"LA","statename":"Louisiana","year":"1812"},"id":"Louisiana","arcs":[[[58]],[[-11,59,60,61]]]},{"type":"Polygon","properties":{"GEO_ID":"0400000US27","STATE":"27","NAME":"Minnesota","LSAD":null,"CENSUSAREA":79626.743,"state":"MN","statename":"Minnesota","year":"1858"},"id":"Minnesota","arcs":[[62,63,64,65,66]]},{"type":"MultiPolygon","properties":{"GEO_ID":"0400000US28","STATE":"28","NAME":"Mississippi","LSAD":null,"CENSUSAREA":46923.274,"state":"MS","statename":"Mississippi","year":"1817"},"id":"Mississippi","arcs":[[[67]],[[68]],[[69]],[[70]],[[71,72,-60,-10,73]]]},{"type":"Polygon","properties":{"GEO_ID":"0400000US30","STATE":"30","NAME":"Montana","LSAD":null,"CENSUSAREA":145545.801,"state":"MT","statename":"Montana","year":"1889"},"id":"Montana","arcs":[[74,75,76,77,78]]},{"type":"Polygon","properties":{"GEO_ID":"0400000US35","STATE":"35","NAME":"New Mexico","LSAD":null,"CENSUSAREA":121298.148,"state":"NM","statename":"New Mexico","year":"1912"},"id":"New Mexico","arcs":[[79,-1,-26,80,81]]},{"type":"Polygon","properties":{"GEO_ID":"0400000US38","STATE":"38","NAME":"North Dakota","LSAD":null,"CENSUSAREA":69000.798,"state":"ND","statename":"North Dakota","year":"1889"},"id":"North Dakota","arcs":[[-77,82,-65,83]]},{"type":"Polygon","properties":{"GEO_ID":"0400000US40","STATE":"40","NAME":"Oklahoma","LSAD":null,"CENSUSAREA":68594.921,"state":"OK","statename":"Oklahoma","year":"1907"},"id":"Oklahoma","arcs":[[-81,-25,84,85,-7,86]]},{"type":"Polygon","properties":{"GEO_ID":"0400000US42","STATE":"42","NAME":"Pennsylvania","LSAD":null,"CENSUSAREA":44742.703,"state":"PA","statename":"Pennsylvania","year":"1787"},"id":"Pennsylvania","arcs":[[87,88,89,90,91,92,93]]},{"type":"Polygon","properties":{"GEO_ID":"0400000US47","STATE":"47","NAME":"Tennessee","LSAD":null,"CENSUSAREA":41234.896,"state":"TN","statename":"Tennessee","year":"1796"},"id":"Tennessee","arcs":[[94,95,96,-40,97,-74,-9,98,99,100,101,102]]},{"type":"MultiPolygon","properties":{"GEO_ID":"0400000US51","STATE":"51","NAME":"Virginia","LSAD":null,"CENSUSAREA":39490.086,"state":"VA","statename":"Virginia","year":"1788"},"id":"Virginia","arcs":[[[103,104]],[[105]],[[106,107]],[[108,-34,109,110,111,-103,112,113]]]},{"type":"MultiPolygon","properties":{"GEO_ID":"0400000US72","STATE":"72","NAME":"Puerto Rico","LSAD":null,"CENSUSAREA":3423.775},"id":"Puerto Rico","arcs":[[[114]],[[115]],[[116]],[[117]],[[118]],[[119]],[[120]],[[121]]]},{"type":"MultiPolygon","properties":{"GEO_ID":"0400000US10","STATE":"10","NAME":"Delaware","LSAD":null,"CENSUSAREA":1948.543,"state":"DE","statename":"Delaware","year":"1787"},"id":"Delaware","arcs":[[[122]],[[123,124]],[[125,126,127,-93]]]},{"type":"Polygon","properties":{"GEO_ID":"0400000US54","STATE":"54","NAME":"West Virginia","LSAD":null,"CENSUSAREA":24038.21,"state":"WV","statename":"West Virginia","year":"1863"},"id":"West Virginia","arcs":[[128,129,-88,130,-114]]},{"type":"MultiPolygon","properties":{"GEO_ID":"0400000US55","STATE":"55","NAME":"Wisconsin","LSAD":null,"CENSUSAREA":54157.805,"state":"WI","statename":"Wisconsin","year":"1848"},"id":"Wisconsin","arcs":[[[131]],[[132]],[[133]],[[134]],[[-54,135,-67,136,137,138]]]},{"type":"Polygon","properties":{"GEO_ID":"0400000US56","STATE":"56","NAME":"Wyoming","LSAD":null,"CENSUSAREA":97093.141,"state":"WY","statename":"Wyoming","year":"1890"},"id":"Wyoming","arcs":[[139,-28,140,141,-79,142]]},{"type":"MultiPolygon","properties":{"GEO_ID":"0400000US01","STATE":"01","NAME":"Alabama","LSAD":null,"CENSUSAREA":50645.326,"state":"AL","statename":"Alabama","year":"1819"},"id":"Alabama","arcs":[[[143]],[[-39,144,145,-72,-98]]]},{"type":"MultiPolygon","properties":{"GEO_ID":"0400000US02","STATE":"02","NAME":"Alaska","LSAD":null,"CENSUSAREA":570640.95,"state":"AK","statename":"Alaska","year":"1959"},"id":"Alaska","arcs":[[[146]],[[147]],[[148]],[[149]],[[150]],[[151]],[[152]],[[153]],[[154]],[[155]],[[156]],[[157]],[[158]],[[159]],[[160]],[[161]],[[162]],[[163]],[[164]],[[165]],[[166]],[[167]],[[168]],[[169]],[[170]],[[171]],[[172]],[[173]],[[174]],[[175]],[[176]],[[177]],[[178]],[[179]],[[180]],[[181]],[[182]],[[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]],[[213]],[[214]],[[215]],[[216]],[[217]],[[218]],[[219]],[[220]],[[221]],[[222]],[[223]],[[224]],[[225]],[[226]]]},{"type":"MultiPolygon","properties":{"GEO_ID":"0400000US12","STATE":"12","NAME":"Florida","LSAD":null,"CENSUSAREA":53624.759,"state":"FL","statename":"Florida","year":"1845"},"id":"Florida","arcs":[[[227]],[[228]],[[229]],[[230]],[[231]],[[232]],[[233]],[[234]],[[235]],[[236]],[[237]],[[238]],[[239,-145,-38]]]},{"type":"Polygon","properties":{"GEO_ID":"0400000US16","STATE":"16","NAME":"Idaho","LSAD":null,"CENSUSAREA":82643.117,"state":"ID","statename":"Idaho","year":"1890"},"id":"Idaho","arcs":[[-142,240,241,242,243,244,-75]]},{"type":"Polygon","properties":{"GEO_ID":"0400000US20","STATE":"20","NAME":"Kansas","LSAD":null,"CENSUSAREA":81758.717,"state":"KS","statename":"Kansas","year":"1861"},"id":"Kansas","arcs":[[-24,245,246,-85]]},{"type":"MultiPolygon","properties":{"GEO_ID":"0400000US24","STATE":"24","NAME":"Maryland","LSAD":null,"CENSUSAREA":9707.241,"state":"MD","statename":"Maryland","year":"1788"},"id":"Maryland","arcs":[[[247]],[[-108,248]],[[-110,-33,-109,-131,-94,-128,249,-105,250]]]},{"type":"Polygon","properties":{"GEO_ID":"0400000US34","STATE":"34","NAME":"New Jersey","LSAD":null,"CENSUSAREA":7354.22,"state":"NJ","statename":"New Jersey","year":"1787"},"id":"New Jersey","arcs":[[251,252,-125,253,-126,-92]]},{"type":"MultiPolygon","properties":{"GEO_ID":"0400000US37","STATE":"37","NAME":"North Carolina","LSAD":null,"CENSUSAREA":48617.905,"state":"NC","statename":"North Carolina","year":"1789"},"id":"North Carolina","arcs":[[[254]],[[255]],[[256,257,-35,-97,95,-95,-112]]]},{"type":"Polygon","properties":{"GEO_ID":"0400000US45","STATE":"45","NAME":"South Carolina","LSAD":null,"CENSUSAREA":30060.696,"state":"SC","statename":"South Carolina","year":"1788"},"id":"South Carolina","arcs":[[258,-36,-258]]},{"type":"MultiPolygon","properties":{"GEO_ID":"0400000US53","STATE":"53","NAME":"Washington","LSAD":null,"CENSUSAREA":66455.521,"state":"WA","statename":"Washington","year":"1889"},"id":"Washington","arcs":[[[259]],[[260]],[[261]],[[262]],[[263]],[[264]],[[265]],[[266]],[[267]],[[268]],[[-244,269,270]]]},{"type":"Polygon","properties":{"GEO_ID":"0400000US50","STATE":"50","NAME":"Vermont","LSAD":null,"CENSUSAREA":9216.657,"state":"VT","statename":"Vermont","year":"1791"},"id":"Vermont","arcs":[[271,272,273,274]]},{"type":"Polygon","properties":{"GEO_ID":"0400000US49","STATE":"49","NAME":"Utah","LSAD":null,"CENSUSAREA":82169.62,"state":"UT","statename":"Utah","year":"1896"},"id":"Utah","arcs":[[-141,-27,-5,275,-241]]},{"type":"Polygon","properties":{"GEO_ID":"0400000US19","STATE":"19","NAME":"Iowa","LSAD":null,"CENSUSAREA":55857.13,"state":"IA","statename":"Iowa","year":"1846"},"id":"Iowa","arcs":[[-53,276,277,278,-63,-136]]},{"type":"MultiPolygon","properties":{"GEO_ID":"0400000US21","STATE":"21","NAME":"Kentucky","LSAD":null,"CENSUSAREA":39486.338,"state":"KY","statename":"Kentucky","year":"1792"},"id":"Kentucky","arcs":[[[279,-100]],[[-113,-102,280,-51,-55,281,-129]]]},{"type":"MultiPolygon","properties":{"GEO_ID":"0400000US23","STATE":"23","NAME":"Maine","LSAD":null,"CENSUSAREA":30842.923,"state":"ME","statename":"Maine","year":"1820"},"id":"Maine","arcs":[[[282]],[[283]],[[284]],[[285]],[[286]],[[287]],[[288]],[[289]],[[290]],[[291]],[[292]],[[293]],[[294]],[[295]],[[296]],[[297]],[[298]],[[299]],[[300]],[[301]],[[302]],[[303,304]]]},{"type":"MultiPolygon","properties":{"GEO_ID":"0400000US25","STATE":"25","NAME":"Massachusetts","LSAD":null,"CENSUSAREA":7800.058,"state":"MA","statename":"Massachusetts","year":"1788"},"id":"Massachusetts","arcs":[[[305]],[[306]],[[307]],[[308,-272,309,310,311,312,313,-32]]]},{"type":"MultiPolygon","properties":{"GEO_ID":"0400000US26","STATE":"26","NAME":"Michigan","LSAD":null,"CENSUSAREA":56538.901,"state":"MI","statename":"Michigan","year":"1837"},"id":"Michigan","arcs":[[[314]],[[315]],[[316]],[[317]],[[318]],[[319,-57,320]],[[321,-138]]]},{"type":"Polygon","properties":{"GEO_ID":"0400000US29","STATE":"29","NAME":"Missouri","LSAD":null,"CENSUSAREA":68741.522,"state":"MO","statename":"Missouri","year":"1821"},"id":"Missouri","arcs":[[-8,-86,-247,322,-277,-52,-281,-101,-280,-99]]},{"type":"Polygon","properties":{"GEO_ID":"0400000US31","STATE":"31","NAME":"Nebraska","LSAD":null,"CENSUSAREA":76824.171,"state":"NE","statename":"Nebraska","year":"1867"},"id":"Nebraska","arcs":[[323,-278,-323,-246,-23,-140]]},{"type":"Polygon","properties":{"GEO_ID":"0400000US32","STATE":"32","NAME":"Nevada","LSAD":null,"CENSUSAREA":109781.18,"state":"NV","statename":"Nevada","year":"1864"},"id":"Nevada","arcs":[[-4,-21,324,-242,-276]]},{"type":"Polygon","properties":{"GEO_ID":"0400000US33","STATE":"33","NAME":"New Hampshire","LSAD":null,"CENSUSAREA":8952.651,"state":"NH","statename":"New Hampshire","year":"1788"},"id":"New Hampshire","arcs":[[325,-310,-275,326,-304]]},{"type":"MultiPolygon","properties":{"GEO_ID":"0400000US36","STATE":"36","NAME":"New York","LSAD":null,"CENSUSAREA":47126.399,"state":"NY","statename":"New York","year":"1788"},"id":"New York","arcs":[[[327]],[[328]],[[329]],[[330]],[[-309,-31,331,-252,-91,332,-273]]]},{"type":"MultiPolygon","properties":{"GEO_ID":"0400000US39","STATE":"39","NAME":"Ohio","LSAD":null,"CENSUSAREA":40860.694,"state":"OH","statename":"Ohio","year":"1803"},"id":"Ohio","arcs":[[[333]],[[334]],[[335]],[[336]],[[-282,-58,-320,337,-89,-130]]]},{"type":"Polygon","properties":{"GEO_ID":"0400000US41","STATE":"41","NAME":"Oregon","LSAD":null,"CENSUSAREA":95988.013,"state":"OR","statename":"Oregon","year":"1859"},"id":"Oregon","arcs":[[-243,-325,-20,338,-270]]},{"type":"MultiPolygon","properties":{"GEO_ID":"0400000US44","STATE":"44","NAME":"Rhode Island","LSAD":null,"CENSUSAREA":1033.814,"state":"RI","statename":"Rhode Island","year":"1790"},"id":"Rhode Island","arcs":[[[339]],[[340]],[[341]],[[342]],[[-29,-314,343]],[[344,-312]]]},{"type":"Polygon","properties":{"GEO_ID":"0400000US46","STATE":"46","NAME":"South Dakota","LSAD":null,"CENSUSAREA":75811,"state":"SD","statename":"South Dakota","year":"1889"},"id":"South Dakota","arcs":[[-78,-84,-64,-279,-324,-143]]},{"type":"MultiPolygon","properties":{"GEO_ID":"0400000US48","STATE":"48","NAME":"Texas","LSAD":null,"CENSUSAREA":261231.711,"state":"TX","statename":"Texas","year":"1845"},"id":"Texas","arcs":[[[345]],[[-6,-62,346,-82,-87]]]}]},"stateByYear":{"type":null},"nation":{"type":"GeometryCollection","geometries":[{"type":"MultiPolygon","arcs":[[[0,1,2,3,4]]],"id":"Arizona","properties":{"GEO_ID":"0400000US04","STATE":"04","NAME":"Arizona","LSAD":null,"CENSUSAREA":113594.084,"state":"AZ","statename":"Arizona","year":"1912"}},{"type":"MultiPolygon","arcs":[[[5,6,7,8,9,10]]],"id":"Arkansas","properties":{"GEO_ID":"0400000US05","STATE":"05","NAME":"Arkansas","LSAD":null,"CENSUSAREA":52035.477,"state":"AR","statename":"Arkansas","year":"1836"}},{"type":"MultiPolygon","arcs":[[[11]],[[12]],[[13]],[[14]],[[15]],[[16]],[[17]],[[18]],[[19,20,-3,21]]],"id":"California","properties":{"GEO_ID":"0400000US06","STATE":"06","NAME":"California","LSAD":null,"CENSUSAREA":155779.22,"state":"CA","statename":"California","year":"1850"}},{"type":"MultiPolygon","arcs":[[[22,23,24,25,26,27]]],"id":"Colorado","properties":{"GEO_ID":"0400000US08","STATE":"08","NAME":"Colorado","LSAD":null,"CENSUSAREA":103641.888,"state":"CO","statename":"Colorado","year":"1876"}},{"type":"MultiPolygon","arcs":[[[28,29,30,31]]],"id":"Connecticut","properties":{"GEO_ID":"0400000US09","STATE":"09","NAME":"Connecticut","LSAD":null,"CENSUSAREA":4842.355,"state":"CT","statename":"Connecticut","year":"1788"}},{"type":"MultiPolygon","arcs":[[[32,33]]],"id":"District of Columbia","properties":{"GEO_ID":"0400000US11","STATE":"11","NAME":"District of Columbia","LSAD":null,"CENSUSAREA":61.048}},{"type":"MultiPolygon","arcs":[[[34,35,36,37,38,39]]],"id":"Georgia","properties":{"GEO_ID":"0400000US13","STATE":"13","NAME":"Georgia","LSAD":null,"CENSUSAREA":57513.485,"state":"GA","statename":"Georgia","year":"1788"}},{"type":"MultiPolygon","arcs":[[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]]],"id":"Hawaii","properties":{"GEO_ID":"0400000US15","STATE":"15","NAME":"Hawaii","LSAD":null,"CENSUSAREA":6422.628,"state":"HI","statename":"Hawaii","year":"1959"}},{"type":"MultiPolygon","arcs":[[[48,49,50,51,52,53]]],"id":"Illinois","properties":{"GEO_ID":"0400000US17","STATE":"17","NAME":"Illinois","LSAD":null,"CENSUSAREA":55518.93,"state":"IL","statename":"Illinois","year":"1818"}},{"type":"MultiPolygon","arcs":[[[54,-50,55,56,57]]],"id":"Indiana","properties":{"GEO_ID":"0400000US18","STATE":"18","NAME":"Indiana","LSAD":null,"CENSUSAREA":35826.109,"state":"IN","statename":"Indiana","year":"1816"}},{"type":"MultiPolygon","arcs":[[[58]],[[-11,59,60,61]]],"id":"Louisiana","properties":{"GEO_ID":"0400000US22","STATE":"22","NAME":"Louisiana","LSAD":null,"CENSUSAREA":43203.905,"state":"LA","statename":"Louisiana","year":"1812"}},{"type":"MultiPolygon","arcs":[[[62,63,64,65,66]]],"id":"Minnesota","properties":{"GEO_ID":"0400000US27","STATE":"27","NAME":"Minnesota","LSAD":null,"CENSUSAREA":79626.743,"state":"MN","statename":"Minnesota","year":"1858"}},{"type":"MultiPolygon","arcs":[[[67]],[[68]],[[69]],[[70]],[[71,72,-60,-10,73]]],"id":"Mississippi","properties":{"GEO_ID":"0400000US28","STATE":"28","NAME":"Mississippi","LSAD":null,"CENSUSAREA":46923.274,"state":"MS","statename":"Mississippi","year":"1817"}},{"type":"MultiPolygon","arcs":[[[74,75,76,77,78]]],"id":"Montana","properties":{"GEO_ID":"0400000US30","STATE":"30","NAME":"Montana","LSAD":null,"CENSUSAREA":145545.801,"state":"MT","statename":"Montana","year":"1889"}},{"type":"MultiPolygon","arcs":[[[79,-1,-26,80,81]]],"id":"New Mexico","properties":{"GEO_ID":"0400000US35","STATE":"35","NAME":"New Mexico","LSAD":null,"CENSUSAREA":121298.148,"state":"NM","statename":"New Mexico","year":"1912"}},{"type":"MultiPolygon","arcs":[[[-77,82,-65,83]]],"id":"North Dakota","properties":{"GEO_ID":"0400000US38","STATE":"38","NAME":"North Dakota","LSAD":null,"CENSUSAREA":69000.798,"state":"ND","statename":"North Dakota","year":"1889"}},{"type":"MultiPolygon","arcs":[[[-81,-25,84,85,-7,86]]],"id":"Oklahoma","properties":{"GEO_ID":"0400000US40","STATE":"40","NAME":"Oklahoma","LSAD":null,"CENSUSAREA":68594.921,"state":"OK","statename":"Oklahoma","year":"1907"}},{"type":"MultiPolygon","arcs":[[[87,88,89,90,91,92,93]]],"id":"Pennsylvania","properties":{"GEO_ID":"0400000US42","STATE":"42","NAME":"Pennsylvania","LSAD":null,"CENSUSAREA":44742.703,"state":"PA","statename":"Pennsylvania","year":"1787"}},{"type":"MultiPolygon","arcs":[[[94,95,96,-40,97,-74,-9,98,99,100,101,102]]],"id":"Tennessee","properties":{"GEO_ID":"0400000US47","STATE":"47","NAME":"Tennessee","LSAD":null,"CENSUSAREA":41234.896,"state":"TN","statename":"Tennessee","year":"1796"}},{"type":"MultiPolygon","arcs":[[[103,104]],[[105]],[[106,107]],[[108,-34,109,110,111,-103,112,113]]],"id":"Virginia","properties":{"GEO_ID":"0400000US51","STATE":"51","NAME":"Virginia","LSAD":null,"CENSUSAREA":39490.086,"state":"VA","statename":"Virginia","year":"1788"}},{"type":"MultiPolygon","arcs":[[[114]],[[115]],[[116]],[[117]],[[118]],[[119]],[[120]],[[121]]],"id":"Puerto Rico","properties":{"GEO_ID":"0400000US72","STATE":"72","NAME":"Puerto Rico","LSAD":null,"CENSUSAREA":3423.775}},{"type":"MultiPolygon","arcs":[[[122]],[[123,124]],[[125,126,127,-93]]],"id":"Delaware","properties":{"GEO_ID":"0400000US10","STATE":"10","NAME":"Delaware","LSAD":null,"CENSUSAREA":1948.543,"state":"DE","statename":"Delaware","year":"1787"}},{"type":"MultiPolygon","arcs":[[[128,129,-88,130,-114]]],"id":"West Virginia","properties":{"GEO_ID":"0400000US54","STATE":"54","NAME":"West Virginia","LSAD":null,"CENSUSAREA":24038.21,"state":"WV","statename":"West Virginia","year":"1863"}},{"type":"MultiPolygon","arcs":[[[131]],[[132]],[[133]],[[134]],[[-54,135,-67,136,137,138]]],"id":"Wisconsin","properties":{"GEO_ID":"0400000US55","STATE":"55","NAME":"Wisconsin","LSAD":null,"CENSUSAREA":54157.805,"state":"WI","statename":"Wisconsin","year":"1848"}},{"type":"MultiPolygon","arcs":[[[139,-28,140,141,-79,142]]],"id":"Wyoming","properties":{"GEO_ID":"0400000US56","STATE":"56","NAME":"Wyoming","LSAD":null,"CENSUSAREA":97093.141,"state":"WY","statename":"Wyoming","year":"1890"}},{"type":"MultiPolygon","arcs":[[[143]],[[-39,144,145,-72,-98]]],"id":"Alabama","properties":{"GEO_ID":"0400000US01","STATE":"01","NAME":"Alabama","LSAD":null,"CENSUSAREA":50645.326,"state":"AL","statename":"Alabama","year":"1819"}},{"type":"MultiPolygon","arcs":[[[146]],[[147]],[[148]],[[149]],[[150]],[[151]],[[152]],[[153]],[[154]],[[155]],[[156]],[[157]],[[158]],[[159]],[[160]],[[161]],[[162]],[[163]],[[164]],[[165]],[[166]],[[167]],[[168]],[[169]],[[170]],[[171]],[[172]],[[173]],[[174]],[[175]],[[176]],[[177]],[[178]],[[179]],[[180]],[[181]],[[182]],[[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]],[[213]],[[214]],[[215]],[[216]],[[217]],[[218]],[[219]],[[220]],[[221]],[[222]],[[223]],[[224]],[[225]],[[226]]],"id":"Alaska","properties":{"GEO_ID":"0400000US02","STATE":"02","NAME":"Alaska","LSAD":null,"CENSUSAREA":570640.95,"state":"AK","statename":"Alaska","year":"1959"}},{"type":"MultiPolygon","arcs":[[[227]],[[228]],[[229]],[[230]],[[231]],[[232]],[[233]],[[234]],[[235]],[[236]],[[237]],[[238]],[[239,-145,-38]]],"id":"Florida","properties":{"GEO_ID":"0400000US12","STATE":"12","NAME":"Florida","LSAD":null,"CENSUSAREA":53624.759,"state":"FL","statename":"Florida","year":"1845"}},{"type":"MultiPolygon","arcs":[[[-142,240,241,242,243,244,-75]]],"id":"Idaho","properties":{"GEO_ID":"0400000US16","STATE":"16","NAME":"Idaho","LSAD":null,"CENSUSAREA":82643.117,"state":"ID","statename":"Idaho","year":"1890"}},{"type":"MultiPolygon","arcs":[[[-24,245,246,-85]]],"id":"Kansas","properties":{"GEO_ID":"0400000US20","STATE":"20","NAME":"Kansas","LSAD":null,"CENSUSAREA":81758.717,"state":"KS","statename":"Kansas","year":"1861"}},{"type":"MultiPolygon","arcs":[[[247]],[[-108,248]],[[-110,-33,-109,-131,-94,-128,249,-105,250]]],"id":"Maryland","properties":{"GEO_ID":"0400000US24","STATE":"24","NAME":"Maryland","LSAD":null,"CENSUSAREA":9707.241,"state":"MD","statename":"Maryland","year":"1788"}},{"type":"MultiPolygon","arcs":[[[251,252,-125,253,-126,-92]]],"id":"New Jersey","properties":{"GEO_ID":"0400000US34","STATE":"34","NAME":"New Jersey","LSAD":null,"CENSUSAREA":7354.22,"state":"NJ","statename":"New Jersey","year":"1787"}},{"type":"MultiPolygon","arcs":[[[254]],[[255]],[[256,257,-35,-97,95,-95,-112]]],"id":"North Carolina","properties":{"GEO_ID":"0400000US37","STATE":"37","NAME":"North Carolina","LSAD":null,"CENSUSAREA":48617.905,"state":"NC","statename":"North Carolina","year":"1789"}},{"type":"MultiPolygon","arcs":[[[258,-36,-258]]],"id":"South Carolina","properties":{"GEO_ID":"0400000US45","STATE":"45","NAME":"South Carolina","LSAD":null,"CENSUSAREA":30060.696,"state":"SC","statename":"South Carolina","year":"1788"}},{"type":"MultiPolygon","arcs":[[[259]],[[260]],[[261]],[[262]],[[263]],[[264]],[[265]],[[266]],[[267]],[[268]],[[-244,269,270]]],"id":"Washington","properties":{"GEO_ID":"0400000US53","STATE":"53","NAME":"Washington","LSAD":null,"CENSUSAREA":66455.521,"state":"WA","statename":"Washington","year":"1889"}},{"type":"MultiPolygon","arcs":[[[271,272,273,274]]],"id":"Vermont","properties":{"GEO_ID":"0400000US50","STATE":"50","NAME":"Vermont","LSAD":null,"CENSUSAREA":9216.657,"state":"VT","statename":"Vermont","year":"1791"}},{"type":"MultiPolygon","arcs":[[[-141,-27,-5,275,-241]]],"id":"Utah","properties":{"GEO_ID":"0400000US49","STATE":"49","NAME":"Utah","LSAD":null,"CENSUSAREA":82169.62,"state":"UT","statename":"Utah","year":"1896"}},{"type":"MultiPolygon","arcs":[[[-53,276,277,278,-63,-136]]],"id":"Iowa","properties":{"GEO_ID":"0400000US19","STATE":"19","NAME":"Iowa","LSAD":null,"CENSUSAREA":55857.13,"state":"IA","statename":"Iowa","year":"1846"}},{"type":"MultiPolygon","arcs":[[[279,-100]],[[-113,-102,280,-51,-55,281,-129]]],"id":"Kentucky","properties":{"GEO_ID":"0400000US21","STATE":"21","NAME":"Kentucky","LSAD":null,"CENSUSAREA":39486.338,"state":"KY","statename":"Kentucky","year":"1792"}},{"type":"MultiPolygon","arcs":[[[282]],[[283]],[[284]],[[285]],[[286]],[[287]],[[288]],[[289]],[[290]],[[291]],[[292]],[[293]],[[294]],[[295]],[[296]],[[297]],[[298]],[[299]],[[300]],[[301]],[[302]],[[303,304]]],"id":"Maine","properties":{"GEO_ID":"0400000US23","STATE":"23","NAME":"Maine","LSAD":null,"CENSUSAREA":30842.923,"state":"ME","statename":"Maine","year":"1820"}},{"type":"MultiPolygon","arcs":[[[305]],[[306]],[[307]],[[308,-272,309,310,311,312,313,-32]]],"id":"Massachusetts","properties":{"GEO_ID":"0400000US25","STATE":"25","NAME":"Massachusetts","LSAD":null,"CENSUSAREA":7800.058,"state":"MA","statename":"Massachusetts","year":"1788"}},{"type":"MultiPolygon","arcs":[[[314]],[[315]],[[316]],[[317]],[[318]],[[319,-57,320]],[[321,-138]]],"id":"Michigan","properties":{"GEO_ID":"0400000US26","STATE":"26","NAME":"Michigan","LSAD":null,"CENSUSAREA":56538.901,"state":"MI","statename":"Michigan","year":"1837"}},{"type":"MultiPolygon","arcs":[[[-8,-86,-247,322,-277,-52,-281,-101,-280,-99]]],"id":"Missouri","properties":{"GEO_ID":"0400000US29","STATE":"29","NAME":"Missouri","LSAD":null,"CENSUSAREA":68741.522,"state":"MO","statename":"Missouri","year":"1821"}},{"type":"MultiPolygon","arcs":[[[323,-278,-323,-246,-23,-140]]],"id":"Nebraska","properties":{"GEO_ID":"0400000US31","STATE":"31","NAME":"Nebraska","LSAD":null,"CENSUSAREA":76824.171,"state":"NE","statename":"Nebraska","year":"1867"}},{"type":"MultiPolygon","arcs":[[[-4,-21,324,-242,-276]]],"id":"Nevada","properties":{"GEO_ID":"0400000US32","STATE":"32","NAME":"Nevada","LSAD":null,"CENSUSAREA":109781.18,"state":"NV","statename":"Nevada","year":"1864"}},{"type":"MultiPolygon","arcs":[[[325,-310,-275,326,-304]]],"id":"New Hampshire","properties":{"GEO_ID":"0400000US33","STATE":"33","NAME":"New Hampshire","LSAD":null,"CENSUSAREA":8952.651,"state":"NH","statename":"New Hampshire","year":"1788"}},{"type":"MultiPolygon","arcs":[[[327]],[[328]],[[329]],[[330]],[[-309,-31,331,-252,-91,332,-273]]],"id":"New York","properties":{"GEO_ID":"0400000US36","STATE":"36","NAME":"New York","LSAD":null,"CENSUSAREA":47126.399,"state":"NY","statename":"New York","year":"1788"}},{"type":"MultiPolygon","arcs":[[[333]],[[334]],[[335]],[[336]],[[-282,-58,-320,337,-89,-130]]],"id":"Ohio","properties":{"GEO_ID":"0400000US39","STATE":"39","NAME":"Ohio","LSAD":null,"CENSUSAREA":40860.694,"state":"OH","statename":"Ohio","year":"1803"}},{"type":"MultiPolygon","arcs":[[[-243,-325,-20,338,-270]]],"id":"Oregon","properties":{"GEO_ID":"0400000US41","STATE":"41","NAME":"Oregon","LSAD":null,"CENSUSAREA":95988.013,"state":"OR","statename":"Oregon","year":"1859"}},{"type":"MultiPolygon","arcs":[[[339]],[[340]],[[341]],[[342]],[[-29,-314,343]],[[344,-312]]],"id":"Rhode Island","properties":{"GEO_ID":"0400000US44","STATE":"44","NAME":"Rhode Island","LSAD":null,"CENSUSAREA":1033.814,"state":"RI","statename":"Rhode Island","year":"1790"}},{"type":"MultiPolygon","arcs":[[[-78,-84,-64,-279,-324,-143]]],"id":"South Dakota","properties":{"GEO_ID":"0400000US46","STATE":"46","NAME":"South Dakota","LSAD":null,"CENSUSAREA":75811,"state":"SD","statename":"South Dakota","year":"1889"}},{"type":"MultiPolygon","arcs":[[[345]],[[-6,-62,346,-82,-87]]],"id":"Texas","properties":{"GEO_ID":"0400000US48","STATE":"48","NAME":"Texas","LSAD":null,"CENSUSAREA":261231.711,"state":"TX","statename":"Texas","year":"1845"}}]}},"arcs":[[[1953,3575],[0,-6],[0,-18],[0,-163],[0,-14],[0,-7],[0,-2],[0,-49],[0,-13],[0,-70],[0,-40],[0,-71],[0,-11],[0,-139],[0,-76],[0,-1],[0,-29],[0,-13],[0,-1],[0,-8],[0,-4],[0,-1],[0,-54],[0,-16],[0,-1],[0,-1],[0,-48],[0,-63],[0,-1],[0,-10],[0,-3],[0,-26],[0,-2],[0,-10],[0,-2],[0,-56],[0,-31]],[[1953,2515],[-11,0],[-28,0],[-9,0],[-6,0],[-3,1],[-8,16],[-6,13],[-18,39],[-18,36],[-7,15],[-6,12],[-4,9],[-21,44],[-16,32],[0,23],[0,1],[1,1],[1,6],[0,1],[1,10]],[[1795,2774],[1,3],[1,0],[1,-1],[3,17],[1,11],[0,5],[0,12],[-1,10],[-1,1],[-1,2],[0,-1],[0,-1],[-1,0],[-2,4],[-1,8],[0,2],[0,5],[1,2],[0,4],[0,4],[0,14],[-1,15],[0,11],[1,3],[1,4],[1,4],[0,7],[1,7],[1,7],[0,2],[0,2],[0,17],[0,1],[1,2],[0,2],[0,9],[-1,9],[0,7],[0,14],[1,9],[1,5],[1,6],[0,3],[0,8],[0,1],[0,3],[0,1],[1,1],[0,-1],[1,2],[1,4],[0,1],[2,6],[1,4],[1,10],[1,1],[0,8],[-1,9],[-1,2],[-1,8],[-3,9],[-3,38],[0,7],[-3,14],[-2,19],[0,1],[0,3],[0,3],[0,15],[0,1],[0,2]],[[1797,3201],[0,3],[0,2],[1,12],[0,5],[1,1],[0,1],[0,2],[0,4],[0,4],[-1,27],[0,5],[-1,10],[0,4],[-1,3],[0,8],[0,2],[0,2],[0,2],[1,15],[0,2],[0,1],[-1,5],[0,2],[-1,9],[0,21],[0,6],[0,1],[0,5],[0,12],[-1,8],[0,19],[0,2],[0,1],[3,7],[2,2],[2,0],[3,-2],[1,-1],[1,-6],[0,-4],[0,-1],[0,-2],[1,-3],[1,-4],[0,-1],[0,-2],[1,1],[2,1],[0,1],[0,2],[0,7],[1,5],[1,16],[1,1],[0,11],[0,7],[0,15],[0,19],[-1,34],[0,27],[0,8],[0,30]],[[1813,3575],[3,0],[28,0],[2,0],[8,0],[1,0],[1,0],[4,0],[1,0],[26,0],[6,0],[12,0],[8,0],[4,-1],[9,0],[18,1],[3,0],[1,0],[1,0],[4,0]],[[2371,2830],[0,12],[0,2],[0,8],[0,1],[0,1],[0,10],[0,1],[0,2],[0,5],[0,1],[0,2],[0,2],[0,12],[0,3],[0,1],[0,1],[0,2],[0,1],[0,8],[0,2],[0,1],[0,7],[0,4],[0,9],[0,2],[-1,3],[0,1],[-3,4],[-2,-2],[-3,-8],[-1,5],[-2,6],[0,1],[0,3],[0,3]],[[2359,2946],[0,3],[0,2],[0,4],[0,1],[0,4],[0,1],[0,6],[0,1],[0,6],[0,2],[0,1],[0,5],[0,4],[0,5],[0,1],[0,10],[0,1],[0,2],[0,1],[0,11],[0,1],[0,31],[0,31],[0,1],[0,8],[0,2],[0,1],[0,17],[0,7],[0,16],[0,2],[0,16],[1,24],[0,1],[0,2],[0,3],[0,1],[0,7],[0,35],[0,2],[0,7],[0,1],[0,4],[0,1],[0,2],[0,5],[0,1],[0,5],[0,1],[0,2],[0,1],[0,3],[0,11],[0,3],[0,1],[0,1],[0,1],[-1,35],[0,1],[0,1],[0,8],[-1,17],[0,6],[0,1],[0,5],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,2],[-1,16],[0,1],[0,1],[0,1],[0,3],[0,4],[0,2],[0,1],[0,1],[0,13],[0,5],[-1,9],[0,2],[0,3],[0,1],[0,5],[0,1],[0,3],[0,2],[0,1],[0,10],[0,8],[-1,8],[0,3],[0,1],[0,3],[0,7],[0,3],[0,1],[0,3]],[[2355,3481],[1,0],[2,0],[11,0],[1,0],[3,0],[1,0],[1,0],[1,0],[4,0],[4,0],[2,0],[2,0],[1,0],[2,0],[1,0],[5,0],[1,0],[2,0],[3,0],[1,0],[2,0],[7,0],[6,0],[3,0],[2,0],[1,0],[1,0],[1,0],[1,0],[3,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[5,0],[1,0],[2,0],[1,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[1,0],[1,0],[1,0],[3,0],[4,0],[3,0],[1,0],[1,0],[0,-2],[1,-9],[1,-9],[1,-2],[0,-15],[-1,-4],[0,-1],[-1,-2],[-2,-12],[-1,-3],[-2,-17],[-2,-15],[0,-3],[1,0],[1,0],[4,0],[1,0],[4,1],[1,0],[1,0],[1,0],[3,0],[1,0]],[[2491,3388],[0,-5],[1,-5],[0,-8],[0,-2],[-1,2],[-1,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[1,-1],[1,-1],[0,-1],[0,-1],[0,-2],[-4,-12],[-1,-2],[0,1],[-1,2],[-1,-4],[0,-1],[0,-2],[0,-6],[0,-5],[1,-2],[0,-1],[1,1],[-1,-22],[-1,-1],[-2,5],[0,-1],[-1,-1],[1,-12],[0,-3],[-1,-1],[0,-1],[0,2],[-1,1],[-1,1],[-1,-8],[0,-2],[-1,-7],[1,-1],[0,-1],[1,0],[1,3],[0,-2],[0,-2],[-1,-12],[-1,-1],[0,-1],[0,-3],[0,-1],[0,-2],[0,-1],[1,-1],[0,1],[1,-1],[0,-1],[0,-4],[0,-1],[0,-2],[1,-13],[0,-1],[-1,-3],[-1,0],[0,3],[-1,-1],[0,-2],[-1,-11],[-3,-4],[0,-5],[0,-3]],[[2475,3200],[1,-8],[1,-3],[0,-6],[-2,-8],[0,-3],[-3,-3],[0,1],[-1,4],[-1,-1],[0,-4],[0,-9],[0,-2],[0,-1],[0,1],[-1,2],[-1,-4],[0,-6],[1,-4],[0,-3],[0,-2],[0,-3],[-1,-1],[0,1],[-1,-1],[0,-3],[1,-22],[0,-17],[-1,-4],[-1,-4],[-1,-3],[-3,-2],[-2,-24],[-1,-2],[0,1],[-1,-2],[0,-2],[1,-3],[0,-3],[0,-2],[0,-2],[-1,0],[-1,-5],[0,-1],[1,-1],[0,-2],[0,-2],[1,-2],[0,-4],[0,-6],[-2,-5],[-2,-1],[-2,-5],[0,-3],[2,-8],[-1,-14],[-2,-12],[0,-5],[0,-4],[0,-4],[0,-2],[0,-2],[-1,-1],[0,1],[-1,-1],[0,-2],[0,-2],[0,-3],[1,-3],[1,-4],[0,-2],[-1,-2],[-2,-3],[0,-2],[0,-1],[1,-4],[2,-11],[0,-4],[0,-4],[-2,-2],[2,-23],[1,-9],[0,-5],[0,-14],[-1,-20],[-1,-5],[0,-2]],[[2451,2827],[-3,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-9,0],[-3,0],[-4,0],[-2,1],[-2,0],[-1,0],[-2,0],[-1,0],[-6,0],[-1,0],[-2,1],[-1,0],[-3,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-8,0],[-6,0]],[[1641,3014],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,2],[0,1],[0,1],[1,-2],[1,1],[0,2],[0,1],[1,-1],[0,-2],[-1,0],[0,-2],[0,-2],[1,-1],[0,-2],[0,-1],[1,0],[0,1],[0,-3],[0,-2],[1,-2],[0,-1],[-1,0],[-1,-1],[-1,-3],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,5],[0,1],[-1,4],[0,1],[0,1],[0,3],[-1,3],[0,2]],[[1654,3024],[1,0],[0,-1],[1,-1],[0,-1],[0,-4],[2,-1],[0,1],[1,1],[0,2],[0,1],[0,2],[1,0],[0,1],[1,-3],[0,-1],[0,-2],[-1,0],[0,-2],[0,-1],[0,-2],[-1,-1],[-1,-1],[0,1],[0,-1],[-1,0],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,1],[-1,-1],[-1,1],[-1,1],[-1,2],[0,1],[0,3],[0,1],[0,1],[0,2],[0,2],[0,2],[-1,3],[0,2],[0,1],[1,-1],[1,0],[1,-2],[0,-1],[0,-1],[1,1]],[[1635,3022],[0,-1],[1,2],[0,1],[0,-1],[1,0],[0,2],[0,1],[0,1],[0,1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,1],[0,-1],[0,-1],[0,-3],[0,-1],[-1,0],[-1,0],[-1,3],[0,-1],[0,-1],[-1,1],[0,1],[0,1],[0,1]],[[1660,2879],[1,1],[1,-2],[0,-2],[1,-1],[0,-1],[1,-5],[-1,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,3],[0,1],[0,1],[-1,4],[1,-2],[0,1],[0,1]],[[1664,3015],[-1,1],[1,1],[0,-2],[1,0],[0,2],[1,0],[-1,-1],[0,-2],[-1,1]],[[1689,2807],[0,2],[-1,7],[0,3],[-1,2],[0,7],[0,2],[0,-1],[0,3],[0,1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-5],[1,-2],[1,-7],[0,-2],[1,-2],[0,-3],[2,-10],[1,-4],[-1,0],[0,1],[-1,0],[0,-1],[0,-4],[-1,1],[1,1],[-1,2],[-1,4],[0,1],[0,1],[-1,3],[0,1],[0,1],[0,3]],[[1690,2911],[0,-1],[0,1],[1,-4],[1,0],[1,-4],[0,-4],[1,-7],[1,-1],[0,-2],[0,-2],[0,-2],[0,-2],[-1,0],[0,1],[-1,2],[0,1],[-1,0],[-1,-1],[0,1],[-1,1],[0,3],[0,2],[0,3],[0,3],[0,5],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,2],[0,3],[0,1],[0,1],[0,-1],[1,0],[1,-1],[1,-3]],[[1581,3729],[0,1],[1,0],[0,-1],[0,-2],[0,-1],[0,1],[-1,2]],[[1530,4509],[3,0],[1,0],[7,0],[6,1],[3,0],[4,0],[4,1],[2,0],[3,-1],[1,0],[10,1],[4,0],[3,1],[3,-1],[4,0],[4,0],[8,-1],[1,0],[3,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[5,0],[3,0],[4,0],[5,0],[11,-1],[1,0],[8,1]],[[1648,4509],[0,-152],[0,-58],[0,-1],[0,-69],[0,-33],[0,-11],[0,-26],[0,-6],[0,-3],[0,-1],[0,-54],[0,-11],[0,-52],[0,-24],[0,-1],[0,-15],[0,-1],[0,-11],[0,-10],[0,-9],[0,-12],[2,-13],[9,-41],[3,-12],[1,-5],[3,-16],[5,-23],[1,-4],[11,-50],[9,-43],[10,-52],[6,-28],[9,-46],[10,-47],[4,-23],[15,-72],[10,-57],[1,0],[5,-26],[0,-3],[1,-7],[5,-23],[1,-6],[7,-36],[0,-1],[0,-1],[3,-13],[0,-4],[2,-7],[2,-10],[0,-2],[6,-33],[3,-18],[5,-26]],[[1795,2774],[-21,-10],[-11,-5],[-7,-4],[-8,-4],[-20,-11],[0,7],[0,4],[0,4],[-1,2],[0,6],[0,2],[-1,2],[0,1],[0,1],[-1,-1],[0,-1],[0,-2],[-1,0],[0,6],[0,4],[0,4],[0,1],[0,7],[0,3],[-1,3],[0,4],[1,2],[0,-1],[0,1],[0,1],[0,3],[0,5],[0,6],[0,1],[-1,14],[0,4],[0,8],[0,3],[-1,5],[-1,8],[0,1],[-1,7],[0,2],[-1,10],[-1,5],[-1,7],[-1,6],[-1,3],[0,1],[-1,4],[0,4],[-1,2],[-1,4],[0,-1],[-1,1],[0,4],[-1,6],[-1,5],[0,1],[0,1],[-1,4],[-1,3],[-1,2],[-1,1],[0,3],[0,1],[-2,5],[0,4],[-1,7],[-1,3],[0,1],[-1,2],[0,2],[-1,1],[-1,0],[0,-2],[0,-3],[0,-3],[-2,-3],[0,1],[-1,0],[0,1],[-1,4],[-1,0],[0,1],[-1,-1],[0,1],[0,7],[0,1],[0,3],[0,1],[1,2],[0,5],[-1,8],[-1,11],[0,5],[-1,5],[-1,4],[0,2],[-1,2],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,1],[-1,-2],[0,-1],[-1,-3],[0,2],[-1,3],[0,1],[-2,1],[0,1],[-1,0],[0,1],[-1,2],[0,1],[-1,0],[0,3],[-1,2],[-1,1],[0,-1],[-1,1],[-1,4],[-1,4],[0,1],[-1,3],[0,3],[-1,7],[0,4],[0,3],[0,3],[-1,1],[-1,3],[0,3],[-1,2],[0,1],[0,-1],[-1,7],[-1,0],[0,4],[-1,0],[-1,2],[0,2],[-1,3],[-2,1],[0,-1],[0,1],[-1,0],[-1,-1],[1,-1],[-1,-1],[0,-1],[-1,0],[0,1],[-1,3],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,5],[-1,0],[0,2],[-1,3],[-1,0],[-1,0],[-1,0],[-1,2],[-1,0],[-2,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,-1],[-3,-2],[0,-1],[-1,6],[0,1],[0,1],[-1,7],[0,1],[-1,5],[-1,0],[0,-1],[-1,0],[0,3],[0,2],[0,5],[0,5],[1,11],[0,2],[0,1],[0,4],[-1,2],[0,3],[0,7],[1,4],[0,5],[0,3],[0,2],[-1,2],[0,3],[0,1],[-1,0],[0,1],[1,13],[0,5],[0,6],[0,5],[0,3],[0,5],[0,4],[0,3],[0,1],[-1,1],[0,2],[-1,2],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,1],[0,2],[-1,1],[-1,4],[-1,4],[0,4],[0,1],[0,5],[0,3],[1,6],[0,4],[0,2],[0,6],[0,2],[-1,5],[0,2],[-1,2],[-1,-1],[0,2],[0,1],[-1,0],[-1,4],[-1,5],[-1,7],[-1,9],[0,1],[0,1],[-1,6],[0,1],[-1,0],[-1,3],[-1,1],[0,2],[0,3],[0,1],[-1,1],[0,2],[0,7],[0,4],[0,2],[-1,2],[0,2],[-1,4],[0,4],[-1,2],[0,1],[0,1],[-1,3],[0,2],[0,2],[0,3],[-1,9],[0,6],[0,1],[-1,1],[-1,1],[0,1],[-1,5],[0,1],[0,2],[0,1],[0,3],[0,2],[-1,3],[-1,10],[-1,5],[-2,6],[0,2],[-1,-1],[0,1],[0,1],[0,2],[-1,1],[0,4],[0,2],[-1,2],[0,3],[0,4],[0,4],[0,1],[0,3],[0,2],[0,1],[-1,1],[0,2],[0,2],[0,6],[0,3],[0,3],[0,2],[0,1],[0,1],[0,2],[0,1],[0,6],[0,2],[-1,0],[0,-1],[0,2],[0,1],[0,1],[1,6],[0,3],[0,1],[0,-1],[1,-4],[0,-2],[1,1],[0,1],[0,4],[1,2],[0,3],[0,4],[0,6],[0,7],[1,10],[0,2],[-1,6],[0,1],[0,5],[-1,10],[-1,3],[0,3],[0,1],[-1,2],[-1,-2],[0,-3],[-1,1],[0,1],[-1,0],[0,-2],[0,-1],[-1,0],[0,1],[-1,0],[-1,4],[0,1],[-1,4],[-1,2],[-1,9],[0,2],[-1,6],[0,1],[-1,1],[0,1],[0,-1],[0,1],[0,2],[0,1],[-1,2],[0,2],[0,1],[0,2],[-1,2],[0,1],[0,1],[0,5],[0,1],[-1,1],[0,2],[0,1],[1,3],[0,14],[0,4],[0,3],[-1,3],[0,8],[0,5],[-1,4],[0,3],[-1,-1],[0,5],[0,3],[0,2],[0,1],[0,4],[0,3],[0,2],[0,2],[0,6],[0,8],[0,4],[0,3],[0,5],[0,4],[0,2],[0,1],[0,1],[1,3],[0,-1],[1,1],[1,0],[0,-1],[0,-2],[1,-11],[0,-1],[0,-3],[0,1],[-1,-2],[0,-5],[1,-3],[0,-2],[-1,-1],[0,-2],[1,-2],[0,-2],[0,-1],[0,1],[-1,-2],[1,-2],[1,-1],[0,-1],[1,-2],[1,0],[0,-1],[0,-2],[0,-1],[1,-1],[0,-2],[1,0],[0,-3],[0,-3],[1,-1],[0,1],[0,1],[0,-1],[0,-1],[1,1],[0,1],[0,4],[-1,6],[0,1],[0,3],[0,1],[0,2],[0,1],[0,7],[-1,5],[0,1],[0,1],[0,2],[-1,1],[0,2],[-1,3],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[0,2],[0,3],[1,1],[0,3],[-1,5],[0,4],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,2],[0,1],[-1,2],[0,1],[0,4],[1,-1],[1,4],[0,2],[0,1],[0,2],[0,1],[1,-2],[0,1],[0,1],[1,0],[0,2],[1,4],[0,1],[0,2],[-1,3],[0,1],[0,4],[-1,2],[-1,5],[-1,2],[0,-3],[-1,-3],[-1,-1],[0,1],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[1,-4],[-1,-3],[0,-4],[0,-3],[1,-2],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,-2],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[-1,-1],[0,-2],[0,-1],[1,0],[0,-2],[0,-1],[0,-2],[1,0],[0,-2],[0,-1],[-1,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-6],[0,-1],[-1,0],[0,-1],[-1,1],[0,1],[0,1],[-1,3],[0,1],[-1,3],[0,2],[-1,3],[0,1],[-1,0],[0,-1],[-1,-1],[0,2],[0,3],[-1,1],[0,2],[-1,3],[0,3],[0,1],[-1,4],[-1,4],[-1,1],[-1,2],[-1,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[-2,1],[1,1],[0,8],[1,13],[0,5],[1,3],[0,1],[-1,3],[0,2],[0,2],[0,1],[-1,5],[0,1],[0,1],[1,-1],[0,1],[0,2],[0,3],[0,1],[-1,2],[0,1],[0,1],[-1,3],[0,-1],[0,-1],[-1,0],[0,4],[0,2],[0,5],[0,6],[-1,4],[0,5],[0,2],[-1,2],[0,3],[-1,3],[-2,3],[-1,6],[-1,5],[0,4],[-1,1],[0,2],[0,3],[-1,5],[0,2],[-1,5],[0,3],[-1,3],[0,3],[-1,1],[0,3],[-1,2],[0,2],[-1,4],[0,1],[-1,2],[0,1],[0,1],[-1,4],[0,2],[0,2],[0,1],[-1,4],[-1,4],[0,3],[0,1],[0,3],[0,1],[0,1],[0,3],[1,5],[0,3],[0,2],[0,4],[-1,10],[0,3],[0,3],[0,1],[-1,4],[0,5],[0,3],[0,5],[-1,5],[0,2],[0,1],[0,1],[0,1],[0,4],[0,2],[-1,3],[0,1],[0,3],[0,2],[0,2],[0,5],[0,7],[1,9],[0,3],[0,2],[1,6],[0,1],[-1,9],[0,1],[0,2],[0,7],[0,5],[0,5],[-1,1],[0,1],[0,1],[0,2],[0,2],[0,5],[0,4],[-1,6],[0,1],[0,2],[-1,3],[0,2],[0,2],[-1,5],[0,2],[-1,3],[0,5],[-1,2],[0,5],[-1,2],[0,2],[-1,0],[0,1],[0,7],[0,2],[-1,5],[-1,3],[0,1],[-1,1],[-1,6],[0,2],[-1,2],[-1,5],[-1,3],[0,2],[0,1],[-1,2],[0,2],[0,2],[1,8],[-1,3],[0,3],[0,5],[0,3],[0,1],[-1,2],[0,3],[0,3],[0,1],[0,3],[1,5],[0,2],[0,1],[0,3],[0,1],[0,4],[1,13],[1,4],[0,1],[0,7],[1,10],[1,7],[1,6],[0,8],[1,6],[0,9],[1,12],[0,7],[0,4],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,5],[0,2],[0,5],[0,1],[0,2],[0,1],[0,-1],[0,1],[1,8],[0,8],[0,2],[1,9],[0,11],[0,5],[1,12],[-1,5],[0,1],[0,6],[0,1],[0,7],[0,1],[-1,3],[0,2],[1,1],[-1,3],[0,3],[0,2],[0,3],[0,3],[-1,2],[0,2],[0,5],[0,2],[0,2],[0,2],[-1,1],[0,-1],[0,-1],[0,1],[0,1],[-1,5],[-1,0],[0,2],[0,2],[1,5],[0,5],[0,8],[1,10],[0,8],[-1,2]],[[2092,4323],[1,0],[1,0],[1,0],[1,0],[1,0],[8,0],[2,0],[1,0],[2,0],[1,0],[8,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[3,0],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[0,-47],[0,-10],[0,-30],[0,-3],[0,-15],[0,-8],[0,-1],[0,-8],[0,-21],[0,-1],[0,-13],[0,-2],[0,-28]],[[2148,4136],[0,-28],[0,-2],[0,-1],[0,-3],[0,-27],[0,-15],[0,-4],[0,-1],[0,-5],[0,-1],[0,-6],[0,-15],[0,-1],[0,-3],[0,-5],[0,-14],[0,-31],[0,-1],[0,-15],[0,-44],[0,-3],[0,-3],[0,-2],[0,-3],[0,-11],[0,-1],[0,-1],[0,-2],[0,-1],[0,-10],[0,-6],[0,-5],[0,-3],[0,-3],[0,-4],[0,-22],[0,-14],[0,-8],[0,-1],[0,-2],[0,-61],[0,-11],[0,-8],[0,-4],[0,-3],[0,-5],[0,-4],[0,-3],[0,-8],[0,-3],[0,-2],[0,-2],[0,-7],[0,-9],[0,-3],[0,-1],[0,-6],[0,-6],[0,-7],[0,-5],[0,-3],[0,-7],[0,-8],[0,-3],[0,-7],[0,-22],[0,-3],[0,-2],[0,-1],[0,-14],[0,-1],[0,-1],[0,-6]],[[2148,3573],[-4,1],[-1,0],[-4,0],[-6,0],[-8,1],[-3,-1],[-1,1]],[[2121,3575],[-2,0],[-18,-1],[-8,0],[-20,0],[-7,-1],[-4,1],[-1,0],[-2,0],[-5,0],[-1,0],[-2,0],[-3,0],[-1,0],[-1,0],[-8,0],[-7,0],[-7,0],[-3,-1],[-1,0],[-1,0],[-5,0],[-4,2],[-12,0],[-2,0],[-22,0],[-1,0],[-2,0],[-6,0],[-10,0],[-2,0]],[[1953,3575],[0,13],[0,1],[0,2],[0,2],[0,2],[0,1],[0,49],[0,20],[0,9],[0,14],[0,2],[0,1],[0,17],[0,23],[0,1],[0,8],[0,17],[0,4],[0,1],[0,28],[0,1],[0,22],[0,42],[0,41],[0,35],[0,7],[0,34],[0,45],[0,25],[0,30],[0,75],[0,23],[0,7],[0,60],[0,21],[0,2],[0,63]],[[1953,4323],[22,0],[9,0],[17,0],[9,0],[4,0],[11,0],[1,0],[1,0],[2,0],[3,-1],[4,0],[9,0],[13,0],[1,0],[8,0],[2,0],[11,1],[7,0],[1,0],[2,0],[1,0],[1,0]],[[2991,4511],[0,-15],[0,-4],[0,-12],[0,-6],[0,-16],[0,-16],[0,-8],[0,-33],[-1,0],[-1,-1],[0,-1],[0,-2],[1,-2],[0,-3],[0,-5],[-1,-2],[0,-2]],[[2989,4383],[0,2],[-1,1],[-1,-1],[0,1],[-1,0],[0,-2],[0,-1],[0,1],[-1,0],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-2],[0,-1],[-1,0],[-1,2],[0,1],[0,1],[-1,-1],[0,-1],[0,-2],[0,-2],[0,2],[-1,0],[0,-1],[0,-1],[0,-1],[-2,-1],[0,1],[-1,-1],[0,-2],[-1,-1],[0,3],[-2,0],[0,-2],[-1,0],[0,-1],[0,-1],[-1,1],[0,-1],[0,-1],[-1,3],[0,1],[0,-1],[-1,0],[0,1],[-1,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,-1],[-1,3],[-1,-1],[-1,-2],[0,1],[-1,0],[0,-2],[-1,-1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-3],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,1],[-1,-1],[0,-2],[0,-2],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,2],[0,1],[0,1],[-1,-2],[0,-3],[0,1],[-1,-4],[0,-1],[-1,2],[0,-1],[-1,-1],[0,-2],[-1,-1],[-1,-3],[0,-3],[-1,-3],[-1,-1],[0,-2],[-1,2],[0,-2],[0,-2],[0,-2],[-1,0],[0,1],[0,1],[0,1],[0,-2],[-1,-1],[0,-1],[0,-2],[0,2],[-1,1],[-1,-3],[0,-1],[0,-2]],[[2939,4320],[0,5],[-1,3],[0,3],[0,1],[0,2],[-1,8],[2,7],[0,1],[1,1],[3,9],[1,3],[-2,15],[0,13],[0,2],[0,11],[0,1],[0,2],[0,1],[0,4],[0,9],[1,17],[0,9],[0,18],[0,12],[0,42]],[[2943,4519],[6,0],[2,-1],[3,0],[2,-1],[1,0],[4,0],[1,0],[0,-8],[1,1],[1,0],[0,1],[0,3],[0,3],[1,0],[1,0],[5,-1],[3,0],[5,0],[2,-1],[1,0],[1,0],[7,-1],[1,-3]],[[2842,3936],[1,3],[1,7],[0,2],[1,-1],[0,-3],[0,-1],[1,-1],[1,-9],[1,-4],[0,-2],[-1,-4],[0,-1],[-1,-7],[-1,-3],[0,-2]],[[2845,3910],[0,9],[0,2],[0,4],[-1,5],[-1,1],[0,1],[-1,4]],[[2642,3199],[5,-1],[3,0],[2,0],[8,0],[1,1],[2,0],[2,1],[10,1]],[[2675,3201],[-1,-14],[-2,-9],[-1,-9],[0,-2],[-2,-6],[0,-9],[0,-4],[0,-1],[0,-2],[0,-3],[1,-6],[2,-6],[2,-4],[0,-2],[2,-10],[0,-4],[0,-2],[1,-2],[1,-2],[0,-2],[1,0],[0,1],[0,1],[1,1],[1,0],[1,-2],[0,-1],[0,-1],[1,-8],[2,-24],[0,-4],[1,-8],[0,-1],[0,-3],[0,-6],[0,-5],[1,-2],[0,-2],[1,-2],[0,-3],[0,-1],[0,-2],[2,-14],[1,-11],[3,-16],[1,-1],[0,1],[2,-9],[1,-3],[1,-10],[1,-12],[1,-10],[0,-3],[2,-5],[1,-1],[0,-2],[1,-2],[1,-3],[0,-3],[0,-1],[0,-1],[1,-7],[1,-3],[1,-11],[0,-14],[1,-16],[3,-13],[2,-12],[2,-3],[0,-1],[2,-9],[1,-4],[0,-2],[1,-3],[-1,-3],[0,-3],[2,-29],[1,-12],[0,-20],[0,-1],[0,-1],[0,-2],[0,-4],[2,-5],[0,-1],[0,-1],[1,-2],[1,-1],[2,-14],[1,-18],[0,-4],[0,-1],[1,-7],[0,-4],[0,-2],[0,-9],[0,-12],[0,-8],[0,-1],[1,-5],[1,-1],[1,-2],[3,-7]],[[2737,2646],[1,-2],[0,1],[1,-1],[0,-2],[0,-2],[-1,-3],[0,-3],[-1,-2],[0,-2],[0,-1],[-1,0],[0,3],[-1,-3],[0,-4],[0,-1],[0,-1],[1,0],[0,-3],[-1,-3],[-1,-4],[0,2],[-1,2],[-1,0],[1,-4],[0,-1],[-1,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-2],[-1,-7],[0,-1],[-1,-1],[0,-6],[-1,-1],[0,1],[0,1],[-1,1],[0,-2],[0,-1],[0,-3],[1,-2],[0,1],[0,1],[1,-1],[-1,-3],[0,-1],[1,-4],[-1,-6],[0,-5],[0,-5],[-1,-2],[0,2],[-1,-2],[0,-1],[-1,1],[0,-2],[0,-3],[1,-1],[1,2],[0,-2],[0,-1],[0,-1],[0,-2],[-1,-6],[-1,-9],[0,-4],[-1,-7],[0,-3],[0,-4],[1,0],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[-1,-7],[0,-2],[0,-3],[0,-3],[0,-1],[-1,1],[0,-4],[-1,-4],[0,-2],[0,-1],[0,-3],[-1,0],[0,-2],[0,-3],[0,-4],[0,-3],[0,-8],[-1,-2],[0,-1],[0,1],[-1,-1],[0,-1],[0,-2],[0,-2],[-1,-2],[1,-1],[0,-1],[0,1],[1,-1],[0,-1],[1,3],[0,1],[0,-4],[0,-9],[-1,-14],[0,-1],[0,-2],[0,-2],[0,-3],[-1,-4],[0,-3],[0,-3],[1,-5],[0,-1]],[[2722,2398],[-3,1],[-2,1],[0,3],[-1,0],[-2,2],[0,1],[0,2],[-1,2],[-1,3],[-1,0],[-1,1],[-1,5],[-3,-6],[0,-1],[-1,-20],[0,-4],[0,-4],[1,-7],[0,-6],[0,-8],[0,-4],[-1,-26],[-2,1],[-1,-1],[-1,3],[0,5],[-1,4],[1,6],[-1,8],[0,13],[-1,0],[0,1],[-1,0],[-2,1],[-1,0],[-1,1],[-2,1],[-1,0],[-1,0],[-3,1],[0,1],[-5,2],[-7,2],[-1,1],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-5,1],[-1,1],[-2,1],[-2,0],[0,1],[-1,0],[-1,0],[-4,1],[0,1],[-1,0],[-1,0],[-5,2],[-3,1],[-4,1],[-2,1],[-7,2],[-1,7],[-2,26],[0,4],[-1,5],[0,6],[0,6]],[[2623,2453],[0,2],[-1,12],[0,4],[0,2],[-1,9],[-1,1],[0,1],[0,4],[0,13],[0,5],[0,4],[1,23],[0,16],[1,5],[-1,14],[0,1],[-1,4],[-1,10],[0,4],[0,1],[0,2],[0,5],[0,1],[0,1],[0,2],[0,11],[0,9],[1,5],[0,5],[1,4],[0,5],[0,6],[0,7],[0,15],[2,8],[1,2],[1,7],[0,6],[0,3],[-1,4],[-1,4],[0,1],[0,2],[0,8],[0,6],[0,6],[0,5],[0,6],[0,1],[0,1],[0,2],[-1,3],[0,3],[-1,5],[0,3],[0,1],[-1,0],[0,7],[0,8],[-1,11],[0,4],[0,1],[-1,18],[-1,35],[0,1],[-1,9],[0,4],[-1,56],[-1,10],[0,9],[0,1],[0,7],[-1,15],[0,21],[0,1],[-1,24],[0,12],[-1,22],[-1,32],[0,2],[0,1],[0,3],[-1,35],[0,5],[0,4],[-1,1],[0,12],[0,6],[0,7],[-1,9],[0,29],[-1,12],[0,11]],[[2606,3198],[4,0],[3,0],[1,0],[1,0],[1,0],[1,0],[1,0],[4,0],[1,0],[1,0],[3,0],[1,0],[1,0],[1,0],[3,1],[3,-1],[4,0],[2,1]],[[651,442],[0,-1],[1,-2],[0,-2],[0,-2],[0,-1],[2,-7],[1,-4],[1,-2],[0,-2],[0,-1],[1,1],[0,1],[1,-2],[0,-1],[1,0],[1,-2],[0,-2],[1,-3],[1,-2],[2,-5],[0,-3],[1,0],[0,-2],[1,-4],[1,-4],[0,-2],[1,-2],[1,-5],[0,-3],[0,-2],[0,-2],[1,-2],[0,-1],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-3],[0,-4],[0,-1],[0,-6],[0,-2],[0,-1],[1,1],[0,2],[2,0],[0,-2],[0,-4],[0,-3],[0,-4],[0,-5],[0,-2],[1,-1],[0,-1],[0,-2],[0,-1],[1,-2],[0,-1],[0,-1],[0,-3],[1,-2],[1,-2],[0,-2],[1,0],[0,-1],[0,-2],[0,-7],[-1,-4],[-1,-5],[0,-2],[-1,-5],[-1,-3],[0,-3],[-1,-3],[-1,-3],[-1,-3],[-1,-5],[-1,-3],[-1,-1],[-1,-1],[0,-1],[-1,2],[-1,1],[-1,-2],[0,-3],[-1,-3],[0,-3],[0,-1],[-1,-2],[-1,-2],[0,-2],[0,-2],[-1,-3],[0,-1],[-1,-2],[-1,-1],[0,-1],[0,-2],[0,-4],[-1,-1],[0,-1],[0,-2],[0,-3],[0,-2],[0,-2],[0,-1],[-1,-1],[0,-5],[0,-3],[0,-2],[-1,-2],[0,-3],[-1,-4],[0,-1],[0,1],[-1,2],[0,1],[-1,6],[-1,2],[-1,6],[-1,2],[-1,2],[0,1],[0,3],[0,5],[-1,0],[0,7],[0,7],[1,11],[-1,3],[1,5],[0,3],[0,4],[0,8],[0,2],[0,5],[-1,5],[0,2],[0,3],[0,2],[0,5],[0,2],[0,1],[-1,1],[0,4],[0,7],[0,1],[0,1],[0,5],[-1,4],[0,7],[-1,1],[0,1],[0,1],[0,2],[0,2],[0,2],[0,1],[-1,1],[0,3],[0,2],[0,2],[0,3],[0,5],[1,4],[1,2],[0,6],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,2],[0,1],[0,2],[1,5],[0,2],[0,1],[0,1],[1,4],[0,3],[0,1],[1,1],[0,3],[0,5],[0,2],[-1,5],[0,3],[-1,6],[0,7],[-1,11],[1,6],[0,3],[0,2],[0,1],[1,0],[1,-2],[1,-2]],[[530,762],[0,1],[0,6],[1,1],[1,-1],[0,-2],[0,-1],[0,-1],[0,1],[0,-1],[-1,-4],[0,-5],[0,-3],[0,-3],[0,-2],[-1,-1],[-1,-1],[0,-2],[0,-3],[-1,-5],[0,-6],[0,-2],[-1,1],[0,2],[-1,4],[1,6],[0,7],[0,1],[0,2],[1,1],[0,1],[0,2],[1,2],[1,3],[0,1],[0,1]],[[549,811],[1,2],[0,-2],[1,0],[0,-1],[1,-1],[0,-4],[1,-6],[0,-1],[0,-1],[0,-3],[0,-3],[-1,-6],[0,-4],[0,-1],[0,-2],[0,-3],[0,-10],[0,-2],[0,-1],[-1,-2],[0,-2],[0,-3],[-1,-5],[-1,-2],[0,-2],[-1,2],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,3],[-1,3],[0,5],[-1,0],[0,1],[-1,1],[-1,2],[0,1],[-1,6],[0,2],[0,6],[1,2],[0,5],[1,3],[0,5],[0,2],[1,2],[1,2],[1,6],[1,3],[0,1],[1,0],[0,-2],[0,1],[1,-1],[0,-1],[0,-1],[0,1],[0,3],[1,1],[0,-1],[1,0],[0,-1]],[[617,617],[0,1],[0,3],[0,1],[1,1],[0,-1],[0,-4],[0,-1],[0,-2],[1,-1],[1,-1],[0,1],[0,1],[1,-2],[0,1],[1,1],[1,1],[1,0],[0,-1],[0,-2],[1,0],[0,-2],[0,-4],[-1,-4],[-1,-4],[0,-1],[0,-1],[-1,-3],[-1,-1],[-1,-1],[0,1],[-2,2],[-1,3],[-1,1],[0,1],[0,1],[-1,1],[-1,0],[-1,-1],[-3,-1],[-1,1],[-1,1],[1,5],[0,1],[0,2],[0,2],[0,1],[1,2],[0,1],[0,2],[0,3],[0,2],[0,1],[0,1],[0,-1],[1,0],[1,-3],[1,-1],[1,-1],[0,1],[1,-2],[1,0],[1,-1]],[[630,493],[-1,0],[0,-2],[-1,3],[-1,-2],[0,-1],[-1,-1],[-1,4],[0,1],[0,2],[1,3],[1,1],[1,4],[0,2],[1,2],[0,-2],[1,-3],[0,-1],[0,-1],[-1,-5],[0,-1],[1,0],[0,-2],[0,-1]],[[628,587],[0,1],[0,1],[1,-3],[1,-3],[0,1],[0,-7],[0,-3],[1,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-3],[1,-1],[1,3],[1,2],[0,1],[1,1],[0,2],[0,-1],[1,2],[0,-1],[1,1],[0,-2],[1,1],[0,-1],[0,-1],[0,-3],[1,0],[0,-2],[1,-5],[0,-1],[0,-2],[1,0],[0,-3],[1,-4],[0,1],[1,-4],[1,0],[1,-3],[0,-1],[0,-2],[0,-2],[0,-2],[0,-2],[0,-4],[0,-2],[0,-3],[-1,-2],[0,-1],[0,-2],[0,-1],[-1,-2],[-1,-1],[-1,-3],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[-1,1],[0,-1],[0,-1],[-1,-1],[-1,-3],[0,-1],[0,-1],[-1,-1],[0,1],[-1,-1],[0,-1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[-1,1],[1,1],[-1,6],[0,1],[0,1],[0,9],[0,4],[0,1],[0,1],[0,4],[0,3],[0,2],[0,1],[-1,2],[-1,-1],[0,-2],[0,-1],[-3,8],[-1,9],[0,4],[0,3],[0,1],[-1,1],[0,1],[1,6],[0,5],[0,5],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1]],[[617,569],[0,1],[1,-1],[1,0],[0,-1],[1,-1],[2,-10],[0,-2],[0,-5],[0,-1],[0,-2],[0,-3],[-1,-5],[0,-1],[0,-1],[-1,-2],[0,-1],[-2,0],[0,-1],[-1,4],[0,6],[0,5],[0,2],[0,4],[0,1],[-2,5],[0,1],[0,1],[0,3],[0,1],[1,3],[1,0]],[[588,640],[-1,-2],[-1,0],[0,1],[0,3],[0,1],[0,1],[0,1],[0,-1],[-1,6],[0,2],[0,3],[0,2],[-1,1],[0,1],[0,2],[0,2],[0,3],[-1,3],[0,1],[0,4],[0,7],[0,1],[0,2],[-1,3],[-1,3],[0,1],[1,1],[2,0],[0,-1],[2,1],[0,2],[0,1],[0,1],[1,4],[0,3],[0,2],[0,1],[1,5],[1,2],[0,2],[0,1],[1,0],[1,-4],[0,-4],[0,-3],[0,-1],[0,-2],[0,-2],[1,-3],[0,-1],[1,-6],[0,-3],[0,1],[0,-1],[1,-5],[0,-4],[-1,0],[0,-2],[0,-6],[1,-1],[0,-1],[0,-1],[0,-2],[1,-2],[0,-3],[0,1],[0,2],[0,4],[0,1],[1,1],[0,-1],[1,0],[0,-2],[-1,-1],[0,-3],[0,-2],[0,-2],[1,0],[0,-1],[0,-3],[0,-2],[0,-2],[0,-1],[1,-4],[1,-4],[0,-1],[0,-1],[-1,-5],[0,-2],[-1,0],[0,1],[0,2],[0,1],[-1,-1],[-1,-1],[0,-3],[-1,0],[0,1],[0,1],[0,2],[-1,2],[-1,3],[0,2],[0,2],[-1,-2],[0,-1],[1,0],[0,-1],[-2,0],[1,1],[-1,1],[0,2],[-1,-2],[-1,-2]],[[2545,4602],[0,-3],[0,-1],[0,-5],[0,-5],[0,-1],[0,-5],[0,-1],[-1,-3],[0,-1],[0,-3],[0,-2],[0,-1],[0,-5],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-6],[1,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-3],[1,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-3],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-3],[1,-18],[1,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-4],[0,-4],[1,-2],[0,-2],[0,-3],[0,-4],[1,-3],[0,-5],[0,-3]],[[2552,4455],[0,-1],[0,-2],[0,-10],[0,-1],[0,-2],[0,-11],[0,-17],[0,-3],[0,-29],[0,-25],[0,-1],[0,-1],[0,-1],[0,-2],[0,-4],[0,-18],[0,-2],[0,-19],[0,-3],[0,-3],[0,-4],[0,-22],[0,-38],[0,-8],[0,-3],[0,-3],[0,-39],[0,-11],[0,-4],[0,-5],[0,-2],[0,-23],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-16],[0,-14],[0,-1],[0,-1],[0,-3],[0,-22],[0,-3],[0,-8],[0,-8],[0,-3],[0,-4],[0,-6],[0,-3],[0,-1],[0,-1],[0,-3],[0,-2],[0,-1],[0,-16],[0,1],[-1,-3],[0,-1],[-1,-4],[0,-5],[0,-4],[0,-1],[1,-2],[-1,-11],[0,-6],[-1,0],[0,-1],[0,-3],[1,-6],[1,-9],[2,-19],[0,-6],[-1,-2],[0,-3],[0,-6],[0,-1],[0,-1],[0,-1],[1,-12],[0,-4],[0,-12],[-1,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-5],[0,-6],[-1,-7],[-1,-4],[0,-1],[1,-4],[-3,-20],[0,-2],[-3,-23],[-2,-4],[0,-3],[-1,-2],[0,-3],[0,-2],[1,-2],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-4],[0,-2],[-1,-1],[-1,-4],[-1,-11],[0,-1],[1,-12],[0,-15],[0,-1],[-1,0],[-1,1],[1,-9],[0,-3],[0,-6]],[[2538,3724],[0,-4],[0,-3],[0,-2],[0,-1],[-1,-2],[-1,-5],[-1,-6],[0,-2],[0,-1],[0,-5],[0,-9],[0,-2],[1,-1],[1,-7],[0,-3],[0,-2],[0,-3],[0,-3],[-5,-3],[-1,-1],[-1,-2],[0,-2],[-1,-5],[-1,4],[-1,-1],[-1,-2],[0,-2],[0,-2],[-1,-18],[0,-1],[0,-4],[1,-8],[0,-1],[1,-2],[0,-10],[0,-10],[-1,-4],[0,-2],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,2],[0,2],[-1,4],[-5,13],[-3,7],[-1,0],[0,1],[0,-1],[-1,1],[-1,-1],[-1,-4],[-1,-7],[-2,-17],[0,-2],[-1,-1],[0,-3],[0,-1],[0,-3],[1,-2],[0,-2],[1,-4]],[[2508,3571],[-1,-2],[-1,1],[0,1],[-1,1],[-1,-1],[0,1],[0,1],[-1,0],[-1,3],[-1,6],[0,1],[0,2],[-1,13],[-2,18],[0,5],[-1,6],[0,2],[0,4],[1,4],[0,1],[1,0],[0,1],[0,1],[0,1],[1,6],[-1,4],[0,5],[0,3],[-1,4],[0,4],[-1,8],[0,4],[0,2],[0,1],[0,1],[0,1],[0,8],[0,8],[-4,25],[-2,8],[-3,11],[-1,-2],[0,-3],[-1,-2],[0,1],[-1,0],[0,2],[-1,6],[0,2],[0,7],[-3,10],[-1,5],[-2,8],[-1,5],[-1,2],[-2,12],[0,5],[-1,4],[0,8],[0,8],[0,2],[1,8],[0,1],[0,1],[1,8],[1,3],[0,5],[0,9],[0,2],[1,3],[0,5],[1,3],[0,1],[0,3],[0,1],[1,3],[0,2],[-1,3],[0,3],[0,2],[0,1],[0,2],[0,2],[0,3],[1,7],[0,1],[1,5],[0,1],[0,2],[0,4],[0,1],[0,2],[-2,9],[-1,2],[0,2],[-1,1],[-3,6],[-1,1],[-1,1],[-1,-1],[0,-1],[0,-3],[0,-1],[0,-2],[-1,-4],[-1,-6],[0,-1],[-1,0],[-1,4],[-1,6],[0,1],[0,1],[-1,22],[0,1],[0,6],[1,3],[-2,23],[0,5],[0,1],[-2,10],[-1,6],[-1,3],[-2,6],[-1,6],[-2,5],[-3,19],[0,2],[0,7],[-2,4],[-2,12],[-1,5],[-1,3],[0,1],[0,2],[0,3],[0,3],[-1,12],[-1,6],[0,14],[0,6],[-1,11],[-1,17],[0,10],[0,3],[1,7],[0,2],[0,7],[1,11],[0,4],[1,3]],[[2444,4207],[1,1],[0,1],[0,2],[0,16],[0,2],[0,3],[0,3],[-1,2],[0,1],[0,1],[2,9],[0,2],[1,3],[2,2],[1,0],[2,4],[0,2],[0,5],[1,0],[0,19],[0,1],[0,1],[0,2],[2,15],[1,2],[0,2],[1,1],[0,5],[0,15],[0,5],[0,2],[0,5],[-1,11],[0,1],[-1,1],[-1,2],[-2,12],[0,2],[1,15],[0,1],[1,14],[1,1],[0,1],[1,2],[4,4],[2,-1],[1,0],[2,2],[2,6],[3,5],[1,1],[1,9],[2,9],[0,5],[0,6],[1,9],[0,1],[0,2],[0,1],[1,3],[1,3],[0,2],[1,1],[0,1],[0,1],[1,22],[0,1],[1,12],[0,2],[-1,4],[0,1],[0,2],[0,2],[0,4],[0,2],[0,3],[0,2],[0,2],[-1,6],[-1,2],[-2,4],[0,1],[-1,2],[-1,2],[0,2],[-1,5],[-1,5],[0,1],[1,2],[0,5],[0,1],[-2,10],[0,1],[-2,8],[-2,6],[-1,2],[0,1],[0,1],[0,1],[0,1],[1,3]],[[2466,4605],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[0,-1],[2,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[5,0],[1,0],[6,0],[1,0],[2,0],[3,0],[1,0],[1,1],[1,0],[4,-1],[1,0],[1,0],[2,0],[2,0],[1,0]],[[2628,3968],[-1,0],[-1,-7],[0,-2],[0,-3],[0,-2],[1,-5],[1,-13],[1,-9],[0,-1],[0,-2],[0,-2],[-1,-11],[-1,-2],[-3,-2],[-1,0],[-1,-3],[-2,-6],[0,-1],[-1,-5],[-1,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,2],[0,5],[0,1],[-1,0],[0,1],[-2,-1],[-2,0],[0,-1],[0,-1],[-1,-4],[0,-3],[1,-15],[0,-5],[0,-4],[0,-3],[0,-1],[0,-2],[0,-1],[-1,-2],[-4,-14],[-1,-3],[0,-5],[0,-3],[0,-4],[0,-6],[-1,-5],[0,-1],[-2,-5],[0,1],[-1,1],[0,1],[0,1],[-1,-1],[0,-1],[-2,-18],[0,-1],[-1,-3],[0,-4],[1,-5],[0,-3],[0,-2],[-1,-4],[0,-7],[0,-2],[0,-1],[-1,-1],[-1,-2],[-1,-1],[-4,4],[-1,3],[-2,5],[0,2],[0,4],[0,3],[0,5],[0,3],[-1,0],[0,-1],[0,-1],[0,-1],[-2,-4],[-1,-5],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[-1,0],[-1,-1],[0,-2],[0,-11],[-2,-21],[-1,-2],[0,-1],[0,5],[-2,6],[0,-1],[-1,2],[0,1],[-1,6],[0,5],[0,4],[-1,1],[0,1],[-1,-3],[-1,-4],[0,-3],[-1,-2],[-1,-1],[-1,-2],[-1,-3],[0,-1],[0,-2],[0,-2],[0,-1],[-1,-9],[0,-4],[0,-1],[0,-2],[-1,-1],[-1,1],[0,1],[-2,10],[-1,5],[0,1],[-1,4],[-3,7],[0,1],[-1,0],[-1,0],[-1,-7],[-1,4],[-1,1],[0,3],[0,1],[0,2],[0,1],[0,1],[-1,0],[0,-9],[0,-2],[0,-2],[0,-2],[1,-1],[0,-4],[0,-1],[0,-1],[-1,-3],[0,-2],[-1,-1],[-1,1],[0,1],[0,2],[0,2],[1,5],[-1,2],[0,1],[0,1],[0,-1],[-2,-2],[-1,-2],[-1,0],[0,1],[-1,3],[0,3],[0,1],[-1,1],[-1,-5],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[1,-1],[0,-2],[0,-1],[0,-3],[0,-2],[-1,-6],[-1,1],[0,1],[-1,2],[0,1],[-1,-1]],[[2552,4455],[1,1],[0,-2],[0,-1],[0,-1],[1,-3],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,-2],[1,0],[1,0],[1,0],[0,1],[1,1],[1,1],[0,1],[1,1],[1,3],[1,2],[1,1],[2,5],[0,1],[1,3],[1,2],[1,4]],[[2572,4465],[1,0],[1,0],[3,0],[3,0],[1,0],[7,0],[1,0],[2,0],[2,0],[2,0],[1,0],[2,0],[3,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[3,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[1,0],[3,0],[0,-3],[0,-1],[0,-1],[0,-2],[0,-3],[0,-2]],[[2628,4453],[0,-4],[0,-8],[0,-4],[0,-15],[0,-6],[0,-2],[0,-10],[0,-2],[0,-2],[0,-1],[0,-7],[0,-18],[0,-1],[0,-3],[0,-15],[0,-1],[0,-13],[0,-2],[0,-18],[0,-13],[0,-29],[0,-4],[0,-3],[0,-2],[0,-3],[0,-2],[0,-3],[0,-3],[0,-3],[0,-13],[0,-8],[0,-12],[0,-21],[0,-8],[0,-2],[0,-14],[0,-5],[0,-1],[0,-3],[0,-9],[0,-4],[0,-11],[0,-3],[0,-5],[0,-15],[0,-1],[0,-1],[0,-5],[0,-3],[0,-4],[0,-2],[0,-3],[0,-2],[0,-1],[0,-2],[0,-2],[0,-11],[0,-9],[0,-2],[0,-8],[0,-11],[0,-4],[0,-5],[0,-2],[0,-6],[0,-16],[0,-15],[0,-1],[0,-6],[0,-2],[0,-2],[0,-1],[0,-1],[0,-16],[0,-1],[0,-9]],[[2515,2219],[-1,-6],[-1,-11],[0,1],[0,2],[1,3],[0,1],[0,6],[1,5],[0,3],[0,4],[0,2],[1,2],[0,2],[0,6],[0,1],[0,3],[0,8],[0,4],[0,4],[0,1],[0,1],[0,2],[0,2],[0,3],[-1,3],[0,3],[0,2],[0,-1],[0,-3],[1,-4],[0,-3],[0,-5],[0,-7],[0,-8],[0,-8],[0,-4],[0,-6],[-1,-8]],[[2451,2827],[-1,-8],[0,-5],[0,-2],[0,-1],[0,-2],[1,-1],[1,1],[0,2],[0,1],[0,8],[0,1],[0,2],[0,1],[1,1],[0,-1],[0,-2],[1,-9],[0,-4],[0,-3],[-1,-3],[0,-3],[-1,0],[0,-3],[-1,-4],[0,-1],[0,-5],[0,-7],[0,-1],[1,0],[1,-2],[1,-1],[0,-1],[0,-2],[0,-2],[0,-2],[-1,-1],[-1,-2],[-1,-6],[0,-2],[0,-3],[1,-2],[0,-2],[0,-2],[1,0],[0,-1],[0,-3],[0,-2],[0,-1],[-1,-9],[0,-3],[1,-2],[0,-3],[1,-2],[0,-1],[1,-1],[1,-6],[-1,-6],[1,-2],[0,-2],[2,-2],[0,-2],[0,-2],[-3,-19],[0,2],[0,2],[0,1],[-1,0],[-2,-5],[-1,-3],[0,-4],[0,-4],[0,-2],[0,-2],[1,-2],[2,1],[0,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-3,-22],[-3,-22],[-2,-1],[0,-1],[-1,-1],[0,-2],[0,-8],[-1,-3],[0,-4],[0,-2],[0,-1],[0,-2],[0,-5],[-1,-4],[1,-6],[-1,-3],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,-2],[-1,0],[0,-2],[0,-13],[0,-2],[1,-1],[0,-3],[0,-3],[-1,-3],[0,-1],[0,-5],[0,-3],[0,-2],[0,-3],[0,-4],[0,-2],[0,-1],[-1,-2],[-1,-11],[0,-2],[0,-7],[1,-15],[0,-2],[0,-1],[0,-1],[0,-2],[0,-3],[-1,-2],[-1,-3],[3,0],[3,-1],[5,1],[2,0],[2,-1],[1,0],[6,1],[2,0],[1,0],[2,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[3,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,1],[0,-1],[0,-6],[0,-9],[-1,-4],[-1,-9],[-1,-22],[0,-13],[0,-11],[1,-6],[1,-11],[1,-4],[1,-7],[0,-1],[2,-21],[0,-3],[-1,-4],[0,-2],[0,-1],[1,-13],[1,-6],[0,-1],[2,0]],[[2497,2299],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-2],[-1,1],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[0,-1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,-2],[0,-1],[0,-1],[0,-3],[-1,-1],[1,-5],[0,-4],[0,-1],[0,-2],[1,-1],[1,1],[0,2],[1,2],[0,-1],[0,-1],[0,-2],[0,-2],[0,-4],[1,-5],[0,-2],[1,0],[0,-1],[1,0],[0,2],[1,1],[0,3],[0,4],[0,3],[0,2],[0,3],[0,5],[0,2],[0,1],[1,1],[1,5],[1,1],[0,2],[-1,2],[1,2],[0,1],[1,-2],[0,-1],[0,-2],[1,0],[1,1],[0,-1],[0,-2],[0,-2],[-1,0],[0,-2],[-1,-2],[0,-3],[0,-2],[1,-3],[1,0],[0,-8],[0,-2],[1,1],[1,1],[0,10],[1,4],[0,1],[1,-1],[-1,-4],[1,0],[0,-2],[0,-7],[0,1],[-1,-1],[-2,-5],[0,-2],[1,-1],[0,-1],[1,1],[1,1],[0,-1],[0,-1],[-1,-3],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-4],[0,-2],[1,3],[1,1],[0,-2],[-1,-1],[0,-4],[1,-2],[0,-1],[-1,0],[0,1],[-1,2],[0,1],[-1,1],[0,-1],[0,2],[-1,-1],[0,-2],[0,-4],[-1,-2],[1,-8],[-1,1],[-1,3],[0,1],[-1,1],[0,3],[-1,0],[0,-2],[-1,2],[-1,1],[-1,0],[0,-6],[0,-1],[1,-2],[1,0],[0,-2],[0,-1],[0,-2],[1,-1],[2,-7],[0,-2],[-1,2],[0,1],[-1,2],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[0,-5],[0,-2],[0,-2],[0,-1],[0,1],[-1,-1],[0,-1],[0,-3],[1,-2],[0,-2],[-1,-3],[0,-2],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[1,-4],[0,1],[1,-1],[0,-4],[1,-2],[0,-1],[0,-2],[0,-1],[0,1],[1,5],[1,-2],[0,-4],[0,-2],[0,-4],[0,-3],[1,1],[0,1],[0,2],[0,1],[0,-2],[1,-2],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[0,-3],[0,-1],[1,3],[0,-1],[1,-1],[0,-1],[0,-1],[0,-3],[1,-2],[0,1],[0,1],[1,3],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-5],[0,-1],[0,-1],[1,-2],[0,-1],[0,-2],[1,-3],[0,-1],[0,-1],[0,-1],[-1,0],[0,-3],[1,-2],[0,-1],[0,1],[0,1],[2,2],[0,-1],[0,-1],[0,-6],[0,-2],[0,-1],[0,1],[-1,-1],[0,-1],[0,-3],[0,1],[1,-2],[0,-1],[-1,-4],[0,-5],[0,-2],[-1,-1],[-1,1],[-1,-4],[0,-4],[0,-2],[0,-1],[0,-1],[-1,1],[0,1],[0,1],[0,2],[0,-1],[0,1],[-1,1],[0,3],[0,1],[0,1],[0,2],[0,1],[-1,0],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,-1],[1,0],[-1,-4],[-1,-12],[-1,-4],[0,1],[0,5],[0,1],[0,2],[1,1],[0,1],[1,10],[0,2],[-1,4],[0,2],[-1,1],[0,3],[0,5],[0,2],[-1,1],[0,1],[0,5],[0,2],[-1,3],[0,2],[-2,4],[-2,3],[-1,7],[-1,1],[-1,2],[-1,1],[-1,0],[-1,0],[0,4],[0,1],[0,2],[0,2],[0,3],[1,2],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,2],[0,4],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,-2],[0,-3],[-1,-3],[0,1],[-1,0],[0,2],[0,3],[-1,0],[0,-2],[0,-1],[0,-3],[0,-3],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,-3],[0,-1],[0,-4],[0,-3],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[0,-1],[0,-3],[0,-3],[0,-3],[1,0],[1,4],[0,2],[1,2],[0,1],[1,2],[0,-1],[0,-1],[0,-1],[-2,-7],[-1,-6],[-1,-3],[0,-1],[0,-2],[-2,-9],[-2,-3],[-3,-6],[0,2],[0,2],[1,0],[1,1],[0,1],[0,1],[1,2],[0,1],[0,4],[0,1],[0,1],[-1,0],[0,2],[-1,4],[0,3],[0,1],[0,1],[1,-1],[0,2],[-1,4],[0,1],[0,1],[0,4],[0,1],[-1,2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[-1,-7],[0,-1],[-1,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,3],[0,1],[0,3],[-1,2],[0,2],[-1,1],[0,-1],[0,-2],[-1,1],[0,1],[-1,-2],[0,-5],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[-1,0],[0,1],[0,-3],[-1,-3],[1,-1],[0,-2],[-1,-6],[0,-2],[-1,0],[-1,-1],[0,2],[-1,-2],[0,-3],[-1,-2],[0,-1],[0,-3],[0,-2],[1,-1],[1,1],[0,2],[1,0],[0,-1],[1,1],[0,1],[1,0],[0,-1],[-1,-1],[-2,-3],[-1,-1],[-1,0],[0,-1],[-1,1],[0,1],[0,1],[0,1],[0,2],[-1,5],[0,1],[0,1],[0,3],[-1,2],[0,4],[-1,2],[0,2],[0,1],[-1,-1],[0,-1],[-1,1],[0,2],[-1,0],[-1,1],[-1,4],[0,1],[-2,1],[0,1],[-2,4],[-1,3],[-1,7],[0,1],[1,0],[0,1],[1,0],[0,3],[0,1],[0,2],[0,2],[0,1],[1,2],[0,-2],[1,0],[0,2],[0,4],[0,3],[0,1],[0,1],[0,2],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,2],[-1,-1],[-1,2],[0,1],[0,2],[0,2],[-2,-1],[0,1],[0,1],[0,2],[-1,2],[0,1],[0,-1],[-2,-2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,6],[-1,7],[0,1],[-1,0],[0,-1],[-1,-1],[0,1],[0,1],[0,2],[0,2],[0,2],[0,3],[0,2],[0,3],[0,1],[0,3],[0,2],[-1,0],[-1,-1],[-1,2],[-1,-2],[-2,-4],[0,-2],[0,-1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[1,4],[0,5],[-1,4],[0,1],[-1,-1],[0,-3],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[-1,-2],[-1,-5],[-1,-5],[0,-4],[0,-5],[0,-2],[1,-7],[0,-1],[1,1],[1,1],[0,-2],[1,-1],[1,-1],[0,1],[1,0],[0,1],[0,3],[1,1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[1,0],[1,-2],[0,-2],[-1,-2],[0,-1],[-1,-3],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,-1],[0,-2],[-1,1],[0,1],[0,2],[0,2],[-1,0],[-1,3],[-1,2],[0,1],[-1,2],[-1,4],[0,2],[-1,1],[-1,0],[-2,-1],[-1,-3],[-1,-4],[-1,-2],[-1,0],[-1,2],[-1,2],[-2,2],[-3,1],[-1,2],[-1,2],[-3,5],[-4,10],[-1,6],[-1,2],[-3,5],[-1,2],[-2,4],[-1,1],[-2,0],[-2,-3],[-2,1],[-1,1],[-2,-2],[-2,-1],[-1,-1],[-1,-1],[-2,-2],[0,-1],[-1,-3],[-1,-2],[0,-2]],[[2377,2208],[-2,14],[0,1],[0,13],[1,14],[2,13],[1,5],[0,1],[1,6],[0,3],[1,13],[0,2],[-1,9],[0,9],[0,10],[-1,1],[0,6],[0,11],[0,1],[0,1],[1,5],[0,2],[0,1],[0,11],[-1,6],[1,7],[4,43],[0,3],[0,9],[0,2],[1,9],[0,15],[0,13],[0,19],[0,1],[0,1],[0,-1],[-1,-3],[-1,1],[0,1],[0,1],[0,4],[0,4],[0,6],[0,2],[-1,1],[-1,5],[1,13],[-1,3],[0,4],[-1,15],[-2,9],[-1,3],[0,6],[0,6],[0,10],[0,8],[0,16],[-2,9],[0,2],[-1,6],[0,1],[-1,5],[-1,11],[-1,4],[0,10],[0,12],[0,3],[0,4],[0,2],[0,5],[0,4],[0,10],[0,18],[0,2],[0,3],[0,1],[0,1],[0,6],[0,1],[0,6],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,8],[0,1],[0,9],[0,1],[0,1],[0,3],[0,1],[0,2],[0,7],[0,14],[0,2],[0,1],[0,1],[0,2],[0,14],[0,1],[0,3],[0,1],[0,2],[0,5],[0,3],[0,12]],[[2450,4790],[-5,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-4,0],[-3,0],[-1,0],[-2,0],[-1,0],[-2,0],[-3,0],[-1,0],[-1,0],[-3,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-4,0],[-1,0],[-5,0],[-2,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-5,0],[-4,0],[-4,0],[-3,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-7,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-6,0],[-3,0],[-1,0],[-5,0],[-4,0],[-4,0],[-3,0]],[[2304,4790],[0,17],[0,3],[0,1],[0,12],[0,3],[0,19],[0,2],[0,9],[0,5],[0,13],[0,1],[0,3],[0,2],[0,2],[0,1],[0,2],[0,3],[0,1],[0,2],[0,30],[0,10],[0,1],[0,2],[0,1],[0,2],[0,2],[0,1],[0,2],[0,3],[0,3],[0,2],[0,1],[0,5],[0,1],[0,9],[0,4],[0,2],[0,7],[0,1],[0,2],[0,3],[0,1],[0,16],[0,13],[0,11],[0,3],[0,3],[0,1],[0,1],[0,16],[0,3],[0,1],[0,10],[0,3],[0,12],[0,1],[0,8],[0,1],[0,5],[0,10],[0,5],[0,1],[0,11],[0,3],[0,3],[-1,5],[0,6],[-1,3],[-3,6],[-2,1],[0,1],[-1,8],[0,3],[0,2],[-1,6],[-1,4],[-1,8],[0,2],[0,1],[-1,1],[1,6],[0,1],[0,1],[3,10],[1,3],[1,3],[0,2],[2,14],[0,1],[0,3],[0,4],[0,5],[1,0],[0,2],[0,1],[-1,1],[0,1],[1,1],[0,1],[0,2]],[[2301,5246],[-1,5],[0,11],[0,1],[1,4],[0,2],[0,1],[0,4],[0,3],[-1,13],[0,1],[0,16],[0,9],[-1,8],[-1,6],[-2,10],[0,1],[0,19],[-1,16],[-1,10],[0,24],[1,17],[0,4],[-1,2],[-1,6],[0,5],[0,1],[0,23],[0,5],[0,16],[0,26],[-1,9],[1,14],[0,1],[0,1],[0,17],[-1,12],[0,2],[-3,26],[-1,9],[0,2],[-2,35],[0,2],[-1,7],[-1,12],[0,4],[0,9],[0,1],[1,1],[0,5],[0,8],[0,4],[0,2],[-1,8],[1,2],[0,3],[0,18],[-1,4],[0,1],[2,25],[-1,13],[-1,7],[-1,18],[-1,12],[0,4],[0,3],[0,2],[0,1]],[[2282,5819],[23,0],[29,0],[1,0],[5,0],[0,34],[0,13],[0,10],[0,1],[0,6],[0,2],[0,2],[0,1],[0,2],[0,1],[1,-3],[2,-3],[1,1],[1,2],[2,-4],[2,-7],[1,-21],[1,-15],[0,-3],[0,-19],[1,0],[1,-22],[0,-4],[0,-16],[1,-5],[1,-2],[2,-7],[2,-1],[1,2],[0,1],[1,0],[2,0],[1,-1],[1,-2],[0,-2],[0,-5],[0,-1],[1,-1],[3,-1],[2,0],[5,-3],[1,0],[0,-3],[0,-6],[0,-2],[0,-5],[0,-1],[0,-1],[0,-1],[1,-2],[1,0],[2,0],[4,3],[2,3],[0,1],[0,2],[0,1],[0,1],[0,3],[0,1],[2,2],[1,1],[0,3],[3,3],[1,0],[1,-3],[1,0],[1,0],[3,0],[7,-16],[2,1],[1,-1],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-6],[1,-3],[0,-1],[3,0],[1,2],[1,0],[1,-7],[1,-22],[1,-10],[2,-1],[1,8],[-1,2],[0,5],[0,1],[1,4],[0,2],[6,1],[1,-6],[1,-12],[0,-3],[1,1],[1,-3],[1,-3],[2,-4],[1,0],[1,1],[1,-1],[0,-1],[0,-9],[0,-4],[0,-1],[0,-1],[2,-3],[2,-1],[2,-4],[4,1],[0,-1],[2,1],[0,1],[1,1],[2,7],[1,4],[0,1],[3,7],[0,1],[1,5],[3,5],[1,0],[0,-1],[1,-12],[0,-6],[0,-2],[1,-2],[0,-1],[0,-4],[1,-1],[5,3],[2,-2],[0,1],[1,0],[1,1],[2,-2],[0,1],[1,1],[4,1],[1,0],[0,-1],[1,-1],[2,-3],[1,-5],[0,-2],[0,-3],[0,-1],[0,-2],[2,-5],[1,-1],[1,1],[1,5],[1,1],[1,0],[1,-2],[1,-1],[3,-1],[2,3],[0,-2],[0,-1],[-2,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[-1,2],[0,1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[-1,-2],[-1,-3],[0,-1],[-1,-3],[-1,-2],[-1,-4],[-1,0],[-1,-2],[-1,-1],[1,-1],[-1,-1],[-1,-3],[-1,-2],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-2],[-1,0],[0,-1],[-2,-2],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[-2,-4],[-1,-2],[-1,-2],[-2,-4],[-1,-3],[-1,-3],[-4,-13],[-1,-5],[0,-1],[0,-1],[-1,-1],[-2,-9],[0,-1],[-1,-1],[-1,-5],[0,-3],[-1,-2],[0,-2],[0,-2],[-1,0],[0,-3],[-1,-5],[0,-2],[-1,-4],[0,-3],[-1,-2],[0,-2],[-1,-5],[-1,-5],[0,-2],[-1,-1],[0,-2],[0,-1],[-1,-2],[-1,-5],[0,-1],[-1,-3],[0,-1],[-1,-2],[-1,-3],[-1,-4],[0,-1],[0,-1],[-1,-2],[0,-2],[0,-2],[-1,-2],[-1,-2],[-1,-4],[-1,-6],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,0],[-1,-3],[0,-1],[-1,-3],[0,-1],[-1,-3],[-1,-3],[0,-2],[-1,-1],[-1,-5],[0,-1],[-1,-2],[0,-1],[0,-2],[1,-6],[1,-6],[0,-1]],[[2427,5390],[0,-1],[0,1],[-2,8],[-2,-4],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,-2],[-1,-1],[0,-2],[0,-2],[0,-1],[-1,0],[-1,1],[0,2],[0,-7],[0,-4],[0,-20],[0,-4],[0,-8],[0,-2],[0,-1],[0,-18],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-10],[0,-3],[0,-9],[0,-2],[0,-2],[0,-8],[0,-7],[-1,-1],[0,-1],[-4,-9],[-6,-17],[-1,-6],[0,-2],[-1,-3],[0,-9],[-1,-4],[0,-6],[-1,-3],[-1,-4],[0,-1],[0,-1],[-1,-12],[0,-2],[0,-3],[0,-6],[0,-4],[0,-1],[2,-1],[3,-6],[1,-12],[0,-14],[-1,-12],[-1,-4],[0,-2],[0,-3],[-1,-13],[0,-3],[0,-22],[0,-6],[0,-7],[1,-13],[0,-14],[-1,-5],[0,-8],[-1,-9],[2,-5],[0,-1],[3,-12],[0,-2],[1,-2],[1,-9],[1,-2],[1,0],[4,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-4],[1,-2],[0,-3],[1,-3],[0,-2],[1,-1],[3,-4],[0,-2],[1,-2],[3,-6],[1,-6],[0,-2],[1,-13],[0,-1],[0,-2],[0,-1],[0,-6],[1,-1],[1,-6],[2,-5],[1,-1],[1,-7],[2,-11],[0,-1],[1,-1],[2,-1],[1,-2],[0,-1],[1,-1],[0,-2],[2,-11],[1,-11],[0,-2],[1,-2],[0,-10],[0,-12],[0,-11],[0,-10],[0,-1],[2,-21]],[[2509,2309],[0,3],[1,0],[0,-1],[-1,-4],[0,-4],[-1,4],[-1,2],[2,0]],[[2514,2308],[0,-1],[-1,-2],[-1,-1],[0,1],[1,1],[1,1],[0,1],[0,2],[1,1],[-1,-3]],[[2525,2306],[1,-2],[1,-1],[0,1],[0,1],[1,0],[0,-1],[-1,-1],[0,-1],[-2,2],[0,1],[0,1]],[[2519,2313],[2,-4],[2,-2],[1,1],[-1,-1],[-1,1],[-1,0],[-2,3],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,1]],[[2534,3200],[2,-18],[0,-1],[0,-32],[-1,-25],[0,-2],[0,-22],[0,-15],[-1,-11],[0,-4],[0,-1],[0,-39],[-1,-5],[0,-28],[-1,-31],[0,-9],[0,-3],[0,-16],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-6],[-1,-4],[0,-22],[0,-20],[-1,-56],[0,-12],[-1,-56],[-1,-9],[0,-24],[-1,-27],[0,-15],[0,-10],[0,-25],[-1,-20],[0,-7],[0,-8],[0,-29],[0,-14],[1,-35],[0,-3],[0,-12],[0,-23],[0,-22],[0,-21],[0,-1],[1,-49],[0,-1],[0,-3],[0,-1],[0,-7],[0,-6],[0,-1],[0,-2],[0,-14],[0,-1],[0,-2],[0,-4],[0,-26]],[[2528,2335],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,2],[-1,0],[0,-1],[0,-2],[0,-2],[-1,-1],[0,-1],[-1,1],[0,1],[0,2],[-1,1],[-1,0],[0,3],[-1,-1],[0,1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,1],[0,3],[-1,4],[0,1],[-1,2],[0,1],[0,-1],[-1,-2],[0,-3],[0,2],[0,1],[-1,0],[-2,0],[-1,-2],[-2,-2],[-3,-7],[-1,-2],[-1,-3],[-1,-1],[0,1],[0,4],[0,1],[1,3],[-1,3],[0,2],[-1,0],[0,-1],[-1,-2],[0,-1],[1,-2],[0,-1],[0,-4],[0,-3],[0,-2],[-1,0],[0,-1],[0,-3],[-1,-3],[0,-1],[0,-2],[-1,-3],[0,-3],[0,-4],[-1,-2],[0,1],[0,2],[0,1],[0,-1],[-1,-1],[0,-1]],[[2475,3200],[11,0],[1,0],[1,0],[1,0],[2,0],[2,0],[4,0],[1,0],[4,0],[4,0],[1,0],[4,0],[5,0],[1,0],[9,0],[3,0],[3,0],[2,0]],[[1897,4972],[-2,3],[0,1],[0,1],[0,4],[-3,19],[-3,19],[-1,5],[-1,0],[-2,-8],[-1,-12],[0,-7],[-2,-10],[-1,0],[-2,2],[-1,-4],[-2,-5],[-1,3],[0,2],[-1,4],[-2,-1],[-4,-4],[-3,0],[-1,1],[0,2],[0,1],[0,1],[-1,0],[-1,-1],[-1,-3],[0,-4],[0,-5],[0,-1],[-1,-3],[0,-2],[-1,0],[-2,4],[-2,0],[-4,3],[0,1],[-2,-4],[-1,-6],[0,-3],[0,-2],[0,-3],[0,-3],[0,-1],[-1,-1],[0,-2],[-1,1],[-2,10],[-1,4],[-1,9],[-1,22],[0,1],[0,2],[0,1],[-1,15],[-1,9],[-1,3],[-1,5],[-1,3],[-1,-2],[-1,-5],[-1,0],[0,1],[-3,14],[-1,5],[0,9],[0,1],[0,1],[1,-1],[0,5],[0,1],[0,7],[0,5],[0,4],[0,-1],[-1,1],[-2,12],[0,1],[0,2],[0,1],[-1,8],[-1,8],[-1,2],[-2,15],[0,15],[-1,11],[0,3],[0,6],[0,1],[-1,2],[0,4],[0,5],[0,2],[0,2],[-1,2],[-1,6],[-1,7],[-1,1],[0,3],[-1,1],[-1,-2],[0,-1],[0,-2],[0,-6],[-3,-17],[-1,-3],[-2,1],[-2,-14],[-1,-1],[0,5],[-3,13],[-1,0],[-1,-1],[-1,1],[0,14],[1,1],[1,2],[0,2],[0,7],[0,2],[0,2],[-1,2],[0,2],[-1,6],[2,12],[0,1],[0,1],[1,1],[2,7],[0,13],[-1,3],[0,1],[-1,2],[-1,2],[0,3],[0,2],[0,2],[1,3],[0,4],[0,4],[0,2],[-1,3],[1,6],[1,24],[1,27],[0,6],[1,13],[1,13],[0,5],[-1,2],[0,1],[0,1],[-2,0],[-1,-1],[0,-2],[-1,-1],[-3,0],[0,1],[-1,4],[0,3],[0,1],[0,1],[0,2],[0,1],[0,2],[-1,1],[-1,-1],[-1,1],[0,4],[-2,8],[-1,3],[-1,2],[-1,4],[0,1],[0,6],[0,6],[-1,6],[-3,15],[-1,7],[-2,16],[-1,1],[-1,8],[-1,5],[0,2],[-1,7],[0,1],[-3,2],[-1,2],[-2,3],[0,6],[-1,4],[0,2],[-2,7],[-1,2],[-1,2],[0,4],[0,4],[0,4],[0,6],[-1,3],[1,4],[0,4],[0,3],[0,8],[0,11],[0,1],[-6,29],[-2,17],[-1,6],[0,16],[0,1],[0,1],[0,26],[0,54],[0,85],[0,8]],[[1758,5819],[22,0],[15,0],[1,0],[7,0],[10,0],[10,-1],[17,1],[2,0],[23,0],[10,-1],[2,0],[14,0],[11,0],[0,1],[4,0],[14,0],[2,0],[4,0],[15,0],[2,0],[9,0],[2,0],[13,0],[1,0],[7,0],[30,0],[15,0],[1,0],[2,0],[1,0],[3,0],[3,0],[1,0],[4,0],[1,0],[3,0],[3,0],[2,0],[3,0],[2,0],[2,0],[3,0],[1,0],[1,0],[2,0],[6,0],[11,0],[3,0],[14,0]],[[2092,5819],[0,-3],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-4],[0,-1],[0,-5],[0,-1],[0,-1],[0,-4],[0,-9],[0,-2],[0,-7],[0,-16],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,-4],[0,-2],[0,-5],[0,-4],[0,-2],[0,-1],[0,-1],[0,-5],[0,-5],[0,-2],[0,-1],[0,-1],[0,-4],[0,-2],[0,-4],[0,-3],[0,-6],[0,-16],[0,-2],[0,-1],[0,-9],[0,-3],[0,-2],[0,-32],[0,-4],[0,-4],[0,-1],[0,-11],[0,-5],[0,-4],[0,-6],[0,-1],[0,-10],[0,-54],[0,-4],[0,-8],[0,-10],[0,-2],[0,-10],[0,-1],[0,-1],[0,-1],[0,-32],[0,-2],[0,-3],[0,-1],[0,-1],[0,-3],[0,-18],[0,-2],[0,-39],[0,-2],[0,-1],[0,-12],[0,-19],[0,-37],[0,-3],[0,-9],[0,-52],[0,-10]],[[2092,5248],[0,-12],[0,-2],[0,-1],[0,-58],[0,-1],[0,-2],[0,-7],[0,-1],[0,-1],[0,-19],[0,-3],[0,-6],[0,-1],[0,-23],[0,-40],[0,-1]],[[2092,5070],[-12,1],[-5,0],[-3,0],[-7,0],[-2,0],[-21,0],[-2,-1],[-3,0],[-7,0],[-17,0],[-5,0],[-2,1],[-13,0],[-8,0],[-6,0],[-4,0],[-9,0],[-1,0],[-13,0],[-1,1],[-4,0],[-15,-1],[-6,0],[-3,1],[-3,-2],[-9,-1],[-4,0],[-2,1],[-3,1],[-5,0],[0,-12],[0,-1],[0,-12],[0,-38],[0,-7],[0,-29]],[[2023,2599],[-6,0],[-7,0],[-8,0],[-4,0],[-22,0],[0,-53],[0,-31],[-18,0],[-5,0]],[[2121,3575],[0,-17],[0,-36],[0,-8],[0,-11],[0,-3],[0,-14],[0,-5]],[[2121,3481],[-1,-4],[0,-30],[0,-49],[0,-59],[0,-22],[0,-77],[0,-5],[0,-1],[0,-3],[0,-3],[0,-1],[0,-1],[0,-34],[0,-10],[0,-9],[0,-11],[0,-9],[0,-14],[0,-9],[0,-30],[0,-1],[0,-9],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-13],[0,-2],[0,-2],[0,-6],[0,-32],[0,-1],[0,-3],[0,-3],[0,-1],[0,-1],[0,-1],[0,-3],[0,-3],[0,-5],[0,-5],[0,-8],[0,-1],[0,-9],[0,-5],[0,-15],[0,-8],[0,-6],[0,-2],[0,-2],[0,-1],[0,-3],[0,-11],[0,-34],[0,-11],[0,-2],[0,-18],[0,-33],[0,-1],[0,-5],[0,-2],[0,-7],[0,-1],[0,-11],[0,-4],[0,-2],[0,-2],[0,-1],[0,-4],[0,-1],[0,-8],[0,-1],[0,-9],[0,-4],[0,-3],[0,-2],[0,-6],[0,-5],[0,-4],[0,-2],[0,-13],[0,-70],[0,-4],[0,-7],[0,-16],[-1,0],[-4,0],[-1,0],[-2,0],[-11,0],[-7,0],[-1,0],[-14,0],[-3,0],[-6,0],[-2,0],[-5,0],[-1,0],[-1,0],[-6,0],[-1,0],[-13,0],[-3,0],[-3,0],[-2,0],[-1,0],[-3,0],[-2,0],[-1,0],[-4,0],[-1,0],[0,-9],[0,-1],[-1,-16],[0,-1],[0,-1],[1,-1],[1,-6],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1]],[[2092,5819],[2,0],[2,0],[1,0],[1,0],[25,0],[20,0],[2,0],[1,0],[3,0],[14,0],[8,0],[8,0],[1,0],[13,0],[7,0],[7,0],[2,0],[9,0],[15,0],[29,0],[5,0],[10,0],[5,0]],[[2301,5246],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-5,0],[-1,0],[-3,0],[-1,0],[-2,0],[-2,0],[-5,0],[-1,0],[-1,0],[-4,0],[-2,0],[-5,0],[-1,0],[-1,0],[-1,0],[-4,0],[-15,0],[-5,1],[-2,0],[-3,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-3,0],[-2,0],[-1,0],[-1,0],[-3,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-3,0],[-4,0],[-1,0],[-1,0],[-4,0],[-2,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-4,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-5,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,1],[0,-1],[-1,0],[-1,0],[-1,0],[-3,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-3,0],[-1,0],[-5,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-3,0],[-1,0],[-3,0],[-1,0],[-2,0],[-11,0]],[[2148,3573],[1,0],[3,1],[8,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[4,0],[4,0],[1,0],[1,0],[2,0],[1,0],[0,1],[0,-1],[1,0],[1,1],[2,0],[2,0],[1,0],[1,0],[2,0],[9,0],[1,0],[2,0],[3,0],[6,0],[3,0],[1,0],[2,0],[1,0],[1,0],[1,0],[5,0],[1,0],[3,0],[3,0],[1,0],[3,0],[2,0],[1,0],[2,0],[4,0],[4,-1],[2,0],[3,0],[1,0],[1,0],[1,0],[2,0],[1,0],[6,0],[1,1],[2,0],[1,0],[1,0],[1,-1],[1,0],[0,1],[0,-1],[1,1],[1,-1],[1,0],[2,1],[6,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[5,0],[3,0],[4,0],[1,0],[1,0],[1,0],[4,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[3,0],[2,0],[4,0],[1,0],[2,0],[1,0],[1,0],[4,0],[1,0],[1,0],[1,-1],[1,0],[0,1],[1,0],[2,-1]],[[2355,3574],[0,-9],[0,-2],[0,-1],[0,-1],[0,-3],[0,-3],[0,-3],[0,-6],[0,-15],[0,-12],[0,-6],[0,-11],[0,-1],[0,-1],[0,-4],[0,-8],[0,-3],[0,-1],[0,-3]],[[2359,2946],[-1,-2],[-1,-2],[-3,8],[-2,6],[-1,2],[0,5],[-2,1],[-1,2],[-5,22],[-1,8],[0,2],[-1,4],[-1,1],[-2,4],[0,-1],[-1,-5],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[-1,-3],[-1,-1],[-2,0],[-1,0],[-3,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,5],[-1,0],[-1,0],[-4,-12],[0,-4],[-2,-2],[0,1],[-3,3],[-4,-2],[-2,-2],[0,-4],[0,-6],[0,-2],[-1,-2],[0,-2],[-1,-1],[0,1],[-2,-1],[-2,-5],[0,2],[-1,9],[-1,1],[-2,-2],[-3,12],[0,1],[0,2],[0,3],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,-1],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-1],[-1,-1],[-1,-1],[-3,4],[0,1],[0,3],[-1,5],[0,7],[0,3],[0,2],[-1,-1],[0,-1],[-1,-2],[0,-10],[-1,-4],[-1,-8],[-1,-16],[0,-1],[-1,-1],[0,-1],[-1,1],[0,1],[0,2],[-1,11],[0,4],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,9],[0,1],[0,3],[-1,0],[-2,-8],[-2,-10],[-1,0],[-1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,3],[0,3],[0,2],[-1,3],[0,1],[-1,-1],[-1,-3],[0,-1],[0,1],[-1,0],[0,3],[0,7],[0,3],[-2,4],[-1,-1],[0,-2],[-1,-7],[-1,-9],[-2,-6],[-1,-1],[-2,6],[-1,1],[1,9],[0,10],[-1,2],[-1,-1],[-1,-1],[-1,2],[0,1],[0,5],[-2,15],[-1,1],[-3,3],[0,3],[-2,1],[0,-2],[0,-3],[-1,-2],[0,-4],[-2,-6],[0,1],[-2,12],[0,3],[-1,2],[-1,0],[-1,0],[0,-2],[-1,-3],[-2,0],[-2,3],[-2,6],[-1,2],[0,1],[-3,1],[-2,-1],[-1,1],[-1,2],[0,14],[0,4],[0,2],[0,3],[-2,12],[-2,7],[-1,-12],[-1,-1],[-1,1],[0,2],[0,2],[-1,2],[-1,1],[-1,1],[-1,-8],[-2,0],[-1,0],[-2,10],[0,5],[-2,9],[0,4],[-1,1],[0,1],[0,2],[-1,5],[-1,1],[-1,-3],[0,34],[0,53],[0,29],[0,45],[0,36],[0,49],[0,33],[0,83],[-3,0],[-2,0],[-4,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-15,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-6,0],[-3,0],[-24,0]],[[2777,4084],[-4,0],[-4,0],[-3,0],[-2,0],[-11,0],[-3,0],[-2,0],[0,40],[0,4],[0,1],[0,10],[0,11],[0,16],[0,2],[0,42],[0,1],[0,14],[0,8],[0,13],[0,5],[0,4]],[[2748,4255],[0,29],[0,2],[0,9],[0,9],[0,4],[0,12],[0,2],[0,4],[0,8],[0,2],[0,1],[0,1],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,5],[0,7],[0,2],[0,2],[0,3],[0,3],[0,1],[0,7],[0,1],[0,4],[0,1],[0,2],[0,2],[0,2],[0,2],[0,7],[0,3],[0,5],[0,5],[0,2],[0,6],[0,2],[0,24],[0,6],[0,7],[0,2],[0,3],[0,16],[0,15],[0,2],[0,6],[0,1]],[[2748,4506],[2,5],[1,1],[1,2],[0,1],[1,2],[1,2],[2,5],[1,3],[0,3],[1,1],[0,7],[0,1],[1,2],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[2,6],[2,5],[0,1],[1,1],[0,2],[1,1],[0,1],[2,4],[1,2]],[[2769,4560],[0,-3],[0,-2],[0,-11],[0,-1],[0,-1],[0,-2],[0,-2],[0,-4],[0,-24],[4,0],[2,0],[13,0],[4,-1],[1,0],[8,1],[8,0],[3,0],[2,0],[3,0],[5,0],[1,0],[2,0],[4,0],[3,0],[10,0],[3,0],[2,0],[1,0],[2,0],[1,0],[7,0],[2,0],[1,0],[3,-1],[5,1],[1,0],[1,0],[3,0],[14,0],[1,0],[2,0],[1,-1],[1,-8],[1,-3],[0,-10],[3,-6],[1,-1],[1,-6],[1,-11],[0,-23],[0,-3],[0,-2],[0,-7],[2,-12],[1,-4],[1,-1],[0,-5],[1,-2],[2,-2],[1,0],[2,-12],[0,-1]],[[2910,4390],[-2,-4],[-1,-4],[-1,-6],[0,-1],[-1,-7],[0,-2],[0,-1],[0,-3],[0,-5],[-2,-8],[-1,-7],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-6],[-1,-2],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-3],[0,-3],[0,-1],[0,-1],[0,-2],[2,-15],[0,-1],[0,-1],[-2,-13],[0,-4],[-1,1],[-1,-5],[0,-11],[0,-14],[0,-1],[0,-4],[1,-3],[1,0],[1,-1],[0,-5],[0,-1],[1,-2],[0,-1],[-1,-12],[1,-6],[0,-1],[0,-2],[1,-1],[2,-12],[2,-10],[3,-13],[0,-3],[1,-7],[0,-1],[0,-2],[0,-2],[-3,-6],[-2,-5],[-2,-5],[-1,-5],[-1,-6],[-1,-2],[0,-2],[-1,-9],[-1,-3],[-1,-4],[-1,-3],[0,-2],[-1,-1],[-1,0],[-2,-5],[-1,-2],[0,-2]],[[2890,4099],[-1,1],[0,2],[-2,3],[-1,1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-2],[-1,-2],[-1,-3],[0,-4],[-2,-9]],[[2879,4084],[-6,0],[-3,0],[-3,0],[-4,0],[-1,0],[-2,0],[-1,0],[-1,0],[-4,0],[-2,0],[-1,0],[-2,-1],[-1,0],[-2,0],[-2,0],[-4,0],[-1,0],[-6,0],[-2,0],[-4,1],[-2,0],[-1,0],[-8,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-12,0],[-3,0],[-13,0],[-2,0]],[[2715,3498],[0,-9],[-1,-1],[1,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-5],[0,-1],[0,-12],[0,-9],[0,1],[-1,-1],[-1,2],[0,2],[-2,-4],[-1,-7],[0,-3],[-1,-4],[-1,-7],[-1,-18],[-2,-5],[-1,0],[0,1],[0,2],[0,2],[-1,4],[-2,1],[0,-3],[-3,-4],[0,-1],[-1,-1],[0,-1],[-1,-4],[0,-2],[-2,-12],[0,-3],[-1,-2],[0,-1],[-1,-4],[-1,2],[-1,2],[0,5],[1,7],[-1,3],[0,2],[-2,-4],[-1,-4],[-1,-3],[0,-6],[-2,-8],[0,3],[-1,1],[-1,-2],[0,-3],[0,-8],[0,-7],[-1,-10],[-1,0],[0,-3],[0,-1],[-3,1]],[[2676,3346],[0,0]],[[2676,3346],[-2,-3],[-2,-6],[-1,-2],[0,-1],[1,-1],[-1,-2],[-1,-7],[-2,-4],[-2,-5],[-1,-5],[0,-1],[0,-2],[0,-1],[-4,1],[-1,0],[-3,-1],[-3,-8],[-2,-9],[0,-2],[0,1],[0,-1],[-1,-7],[-1,-13],[0,-1],[0,-4],[0,-5],[0,-1],[0,-1],[-1,-4],[-1,-4],[-1,0],[0,1],[0,-1],[-2,2],[0,1],[-1,1],[-1,-8],[-1,-4],[0,-21],[0,-19]],[[2606,3198],[-6,0],[0,1],[-1,0],[-13,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-3,1],[-1,0],[-6,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-5,0],[-1,0],[-1,0],[-1,0],[-1,1],[-3,0],[-3,0],[-6,0],[0,-2]],[[2491,3388],[1,0],[0,4],[0,2],[0,3],[2,11],[1,2],[0,2],[0,3],[0,2],[-1,3],[0,1],[0,1],[-2,12],[0,1],[0,-1],[3,-2],[1,2],[0,1],[0,3],[0,2],[-1,2],[-1,4],[0,2],[0,1],[0,2],[0,1],[1,0],[1,-1],[1,0],[0,2],[0,2],[0,3],[0,19],[0,1],[-1,3]],[[2496,3481],[1,0],[1,0]],[[2498,3481],[0,-4],[0,-1],[0,-2],[0,-1],[1,0],[0,2],[0,3],[1,3]],[[2500,3481],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[3,0],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[1,0],[1,-1],[0,1],[1,-1],[1,0],[1,0],[2,0],[8,0],[0,2],[0,1],[0,5],[0,4],[0,7],[0,7],[-1,4],[0,4],[2,-1],[4,-2],[0,-6],[5,1],[1,0],[2,0],[4,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[3,0],[1,0],[5,1],[1,0],[1,0],[2,0],[4,1],[1,-4],[3,4],[1,-1],[3,0],[3,-1],[0,-1],[4,-1],[1,0],[2,-1],[5,-1],[6,-1],[2,0],[1,0],[1,0],[4,2],[5,-1],[3,-1],[4,-2],[2,0],[14,-3],[1,0],[7,0],[2,0],[6,-1],[1,2],[0,1]],[[2660,3500],[5,-1],[6,1],[1,-1],[6,0],[1,0],[4,0],[4,0],[2,0],[2,0],[7,0],[2,0],[1,0],[1,0],[6,0],[1,4],[2,0],[5,-1],[-1,-4]],[[2895,3767],[-2,-13],[-1,-7],[0,-5],[0,-4],[-1,-2],[0,-1],[-1,2],[0,1],[-1,0],[0,-2],[-1,-2],[0,-4],[-1,-6],[-1,-10],[0,-4],[-1,-4],[0,-3],[0,-5],[0,-7],[-1,-3],[0,-4],[0,-1],[1,0],[0,-2],[-1,-2],[0,-7],[-1,-9],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[-1,-4],[-1,-6],[0,-3],[0,-2],[0,-3],[-1,-5],[0,-2],[-1,1],[0,-1],[0,-4],[0,-4],[0,-3],[0,-1],[0,-1],[0,-3],[0,-2],[-1,-5],[-1,-7],[0,-2],[-1,-1],[0,-1],[0,1],[0,3],[-1,-2],[0,-1],[-1,0],[0,2],[0,5],[0,6],[-1,1],[0,2],[0,3],[0,2],[0,1],[0,4],[0,2],[0,2],[0,2],[0,5],[0,3],[1,4],[0,3],[0,6],[0,2],[0,4],[0,2],[1,4],[0,2],[0,1],[0,3],[0,4],[0,3],[0,3],[0,1],[0,1],[1,7],[0,4],[1,7],[0,2],[0,1],[0,2],[0,3],[1,1],[0,1],[0,2],[0,2],[0,1],[1,2],[0,2],[0,3],[0,3],[0,2],[0,1],[1,-1],[1,1],[0,1],[0,1],[0,1],[0,2],[1,2],[0,1],[0,2],[0,2],[0,2],[0,3],[-1,0],[-1,-1],[0,1],[0,1],[2,6],[0,-2],[0,1],[1,4]],[[2883,3753],[0,1],[0,3],[1,1],[0,1],[0,1],[0,1],[5,3],[1,0],[1,1],[3,1],[0,1],[1,0]],[[2874,3731],[0,-1],[0,-1],[0,-3],[0,-1],[0,2],[-1,4],[1,2],[0,1],[0,-1],[0,-1],[0,-1]],[[2874,3753],[-1,-1],[0,-2],[0,-4],[-1,2],[0,5]],[[2872,3753],[1,0],[1,0]],[[2826,4009],[1,-1],[2,-3],[1,-3],[0,-2],[1,-1],[0,-1],[0,-2],[1,-1],[1,-4],[0,-1],[-1,-6],[0,-1],[-1,-1],[0,-1],[0,-5],[0,-3],[0,-2],[2,-8],[1,-2],[1,-1],[1,1],[1,-1],[1,-3],[0,-2],[1,-4],[0,-2],[0,-3],[0,-2],[0,-1],[1,0],[1,0],[1,-1],[0,-2],[0,-4]],[[2845,3910],[0,-1],[-1,-4],[0,-6],[0,-4],[-1,-1],[0,-2],[-1,-2],[0,-2],[0,-5],[0,-3]],[[2842,3880],[-1,1],[0,-3],[-1,-1],[0,1],[0,3],[-1,0],[0,-2],[0,-1],[0,-4],[0,-2],[-1,-1],[0,-1],[0,-3],[0,-3],[0,-1],[0,-3],[0,-2],[-1,-1],[0,-1],[0,-2],[0,-5],[0,-3],[0,-6],[0,-4],[0,-1],[0,-2],[0,-2],[1,-2],[0,-2],[0,-2],[0,-1],[1,0],[1,1],[1,1],[0,1],[1,4],[1,0],[1,1],[0,4],[0,1],[1,-3],[0,-2],[0,-6],[0,-3],[0,-3],[0,-2],[1,-4],[0,-1],[1,-3],[0,-3],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[1,-1],[1,-5],[1,-2],[1,0],[0,1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,3],[0,1],[1,-2],[1,0],[0,1],[1,-4],[0,-4],[0,-3],[1,-3],[1,-1],[0,-5],[0,-2],[0,-1],[1,-2],[0,-1],[1,0],[0,-3],[1,-4],[0,-1],[1,-2],[0,-1],[1,-1],[2,-7],[1,-4],[0,-5],[-1,-5],[0,-3],[0,-1],[0,1],[0,1],[-1,0],[0,-2],[0,-4],[0,-1],[0,-7],[0,-4],[0,-2],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-4],[0,-1],[1,-1],[0,-1],[0,-1],[1,-3],[-1,1],[-2,-2],[0,3],[0,1],[-1,-1],[-1,5],[-1,2],[0,-3],[0,-1],[-1,0],[0,4],[0,1],[0,3],[0,2],[-1,1],[0,5],[-1,5],[0,3],[-1,2],[0,2],[-1,1],[0,2],[0,3],[-1,0],[-1,2],[0,1],[0,2],[0,3],[0,2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-4],[1,-3],[0,-5],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-6],[0,-1],[1,-3],[0,-6],[1,-1],[2,0],[1,-2],[0,-3],[1,-2],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-3],[0,-2],[-1,-1],[0,-1],[1,-2],[0,-2],[1,1],[0,2],[0,1],[1,-1],[0,-5],[0,-7],[1,-4],[0,-4],[0,-3],[0,-2],[-1,-3],[0,-5],[0,-2],[0,-2],[0,1],[-1,1],[0,1],[0,2],[-1,5],[-1,2],[0,2],[0,1],[0,1],[-1,1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-3],[0,-2],[1,-4],[1,-5],[0,-2],[0,-2],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-2],[-2,0],[0,-1],[0,-1],[-1,-2],[1,-1],[0,-2],[3,2],[0,-1],[0,-1],[-1,-3],[1,-1],[0,-3],[-1,-3],[0,-1],[1,0],[0,1],[0,1],[1,1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-3],[0,-1],[1,-5],[0,-1],[-1,-10],[0,-5],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,-2],[0,-2],[0,-1],[0,1],[-1,5],[0,2],[0,4],[-1,0],[-1,4],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,-1],[0,1],[-1,3],[-1,4],[0,2],[0,2],[0,1],[1,3],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,1],[-1,0],[-1,-1],[0,-2],[0,-2],[0,-1],[-1,1],[0,2],[0,1],[-1,0],[0,-1],[0,-1],[0,-2],[1,-5],[1,-2],[0,-1],[1,0],[0,5],[0,3],[0,1],[0,1],[1,-3],[0,-2],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[1,-1],[1,-1],[0,-1],[1,-3],[0,-1],[1,-3],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-5],[0,-2],[0,-3],[0,-1],[0,-2],[1,0],[0,1],[0,1],[0,2],[1,-1],[1,0],[0,4],[1,0],[0,1],[0,-1],[0,-1],[0,4],[0,4],[1,0],[0,-1],[0,2],[0,1],[1,0],[0,-1],[1,-4],[0,-1],[1,-1],[1,0],[1,-2],[1,-2],[1,1],[0,2],[1,1],[0,-1],[1,-1],[0,-2],[0,-13],[0,-5],[1,-10],[1,-13],[1,-11],[0,-9],[0,-6]],[[2877,3491],[-1,0],[-1,0],[-2,0],[-3,0],[-5,0],[-5,0],[-2,0],[-6,0],[-1,0],[-3,-2],[-7,1],[-2,0],[-2,0],[-13,0],[-3,0],[-4,-1],[-1,0],[-2,0],[-3,1],[-2,-1],[-3,0],[-1,0],[-2,0],[-4,0],[-2,0],[-1,0],[-4,0],[-1,0],[-5,0],[-2,0],[-4,0],[-2,0],[-1,0],[-1,0],[-5,0],[-1,0],[-6,0],[-1,0],[-2,0],[-4,0],[-1,0],[-6,2],[-5,1],[-2,1],[-2,0],[-2,-1],[-2,1],[-1,0],[-3,1],[-1,0],[-6,1],[-2,0],[-4,1],[-3,2],[-2,0]],[[2660,3500],[0,3],[4,9],[1,1],[1,-1],[3,6],[0,1],[4,7],[1,0],[1,1],[0,1],[0,2],[0,1],[0,3],[1,8],[0,6],[3,0],[2,3],[1,5],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,2],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[1,2],[1,5],[0,7],[0,4],[3,11],[2,6],[0,1],[1,4],[5,9],[1,5],[0,1],[0,2],[9,42]],[[2707,3675],[1,-4],[0,-1],[-1,-5],[-1,-1],[1,-3],[0,-1],[0,-1],[1,-1],[0,-1],[0,-5],[0,-8],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-3],[0,-1],[1,0],[0,-1],[0,1],[1,-6],[0,-1],[4,0],[0,1],[1,4],[0,3],[0,1],[3,6],[0,7],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,-7],[3,-12],[1,1],[1,4],[1,3],[1,1],[1,1],[2,1],[0,-1],[1,1],[0,2],[1,2],[1,6],[0,4],[0,8],[0,3],[1,-4],[1,-2],[0,-2],[0,-1],[1,-2],[4,12],[3,9],[0,-9],[1,-2],[1,3],[0,2],[3,9],[0,7],[0,2],[1,7],[1,4],[1,3],[0,1],[-1,2],[0,1],[0,1],[-1,7],[0,1],[0,1],[1,4],[0,2],[0,1],[0,1],[0,3],[1,7],[0,1],[2,14],[0,2],[0,2],[3,11],[1,7],[1,7],[0,7],[1,6],[0,1],[0,5],[0,1],[0,2],[0,1],[0,5],[0,1],[1,4],[3,11],[0,1],[-1,7],[0,1],[3,12],[1,12],[0,2],[-1,5],[1,0],[0,6],[1,15],[1,-3],[1,-2],[1,-2],[0,-3],[2,-15],[4,-8],[1,1],[0,1],[0,1],[0,2],[1,0],[0,1],[0,4],[0,1],[1,1],[0,3],[0,1],[1,13],[1,11],[0,3],[1,11],[1,11],[0,4],[2,12],[0,1],[4,-17],[1,10],[0,8],[1,5],[0,2],[1,2],[1,3],[0,-1],[0,-1],[3,10],[1,9],[0,1],[0,2],[0,1],[1,4],[1,6],[1,5],[1,3],[0,5],[0,3],[0,3],[0,2],[0,1],[0,1],[1,6],[1,14],[0,1],[0,6],[0,1],[0,20],[3,-14],[6,-24],[6,-24],[0,1],[1,18],[0,2],[0,2],[0,1],[1,1],[0,1],[0,1],[0,2],[1,6]],[[3171,79],[0,1],[0,2],[-1,4],[1,1],[0,-2],[0,-1],[1,-1],[0,1],[1,-3],[0,-2],[0,-1],[0,-1],[0,-1],[-1,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[-1,0],[0,1]],[[3174,82],[0,-2],[-1,1],[1,1]],[[3164,68],[-1,0],[0,1],[1,0],[0,-1]],[[3164,93],[-1,1],[0,1],[1,0],[0,-1],[0,-1]],[[3099,43],[1,0],[0,1],[1,-2],[0,-3],[0,-2],[-1,-1],[0,-2],[0,-2],[-1,-1],[0,2],[-1,1],[0,2],[0,6],[0,1],[1,1],[0,-1]],[[3137,2],[1,1],[0,-2],[-1,-1],[0,2]],[[3142,112],[1,0],[0,-2],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,-2],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,2],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,-2],[1,-1],[1,0],[0,1],[0,-2],[2,-2],[0,-1],[0,-3],[1,-1],[0,2],[0,-1],[1,-4],[0,-1],[1,0],[0,-3],[1,-1],[1,2],[0,1],[0,1],[1,1],[0,-1],[0,-3],[-1,-2],[0,-3],[0,-2],[0,-6],[0,-1],[0,-1],[0,-4],[1,-3],[0,-3],[1,-1],[-1,-1],[0,1],[-1,2],[0,-2],[0,-4],[0,-1],[0,1],[-1,0],[0,-2],[0,-1],[0,-2],[-1,2],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-2],[-1,-3],[0,-9],[0,-1],[0,-1],[0,-3],[-1,0],[0,1],[0,-1],[0,-1],[0,-2],[0,-5],[-1,0],[0,-1],[0,-1],[-1,-3],[0,1],[0,-1],[0,-1],[-1,-1],[-1,-2],[0,1],[-1,0],[0,2],[0,-1],[-1,0],[0,-4],[-1,1],[0,1],[-1,-3],[-1,-1],[0,-2],[0,-1],[0,1],[-1,0],[0,-1],[-1,1],[0,2],[1,0],[0,1],[-1,3],[0,-1],[0,-3],[0,-2],[-1,0],[0,1],[0,2],[-1,0],[0,2],[-1,3],[0,1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[-1,-2],[0,1],[0,1],[0,2],[-1,4],[-1,1],[0,1],[-1,0],[0,-1],[-1,-2],[-1,-3],[0,2],[-1,0],[0,2],[-1,0],[0,-1],[0,-1],[-1,-1],[0,2],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,-3],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,1],[-1,0],[0,-1],[0,1],[0,2],[-1,1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,2],[0,3],[0,1],[0,2],[-1,0],[-2,1],[0,-1],[0,-4],[-1,0],[0,-1],[0,1],[-1,1],[0,2],[-1,0],[0,-3],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[-1,1],[0,2],[0,3],[0,2],[0,1],[1,2],[0,1],[0,2],[0,2],[-1,0],[1,6],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,8],[0,1],[0,2],[1,5],[0,2],[0,2],[-1,3],[0,3],[0,3],[0,3],[0,2],[-1,1],[0,1],[-1,10],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[1,5],[0,1],[0,1],[0,3],[0,2],[0,3],[0,2],[0,2],[0,3],[0,1],[1,0],[0,1],[1,0],[2,-1],[1,-2],[0,-2],[1,0],[1,-1],[1,1],[1,0],[1,1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,2],[1,1],[1,1],[1,-2],[0,1],[1,0],[0,-1],[1,-1],[1,-2],[1,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-1]],[[3171,49],[1,-1],[0,1],[0,-2],[0,-1],[0,-1],[-1,0],[0,-2],[-1,-1],[0,2],[-1,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[-1,-1],[-1,-2],[-1,1],[0,1],[0,1],[0,1],[0,2],[1,1],[1,2],[0,1],[1,1],[1,3],[1,1],[1,-1],[1,-2]],[[2886,4058],[-1,1],[0,2],[1,-2],[0,-1]],[[2886,4062],[0,2],[-1,1],[0,1],[1,1]],[[2886,4067],[0,-5]],[[2890,4099],[0,-1],[-1,-3],[0,-2],[-1,-4],[0,-1],[0,-2],[0,-1],[-1,-6],[0,-2]],[[2887,4077],[0,1],[-1,-6],[-1,-1],[-1,-6],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[-1,-3],[0,-3],[1,-1],[0,-2],[-1,0],[0,-2],[0,-1],[0,-3],[0,-3],[0,-2],[0,-1],[0,-1],[1,-2],[0,-2],[0,-2],[1,-3],[0,-1],[0,-4],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-3],[0,-3],[0,-2],[1,-4],[0,-2],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-2],[0,-3],[0,-3],[0,-3],[0,-13],[0,-4],[0,-1],[1,-2],[1,-5],[0,-1],[0,-5],[1,-2],[0,-2],[0,-3],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[1,-7],[1,-6],[1,-4],[0,-3],[1,-3],[1,-2],[1,1],[0,1],[0,2],[0,-1],[0,-5],[0,-4],[0,-2],[1,-15],[0,-5],[0,-4],[0,-1],[0,-22],[0,-7]],[[2900,3846],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,6],[0,1],[0,4],[0,4],[0,3],[0,1],[0,4],[0,1],[0,5],[0,1],[0,1],[0,2],[-1,34],[0,2],[0,1],[0,2],[0,4],[0,46],[0,1],[0,5],[-1,19],[0,9],[0,15],[0,30],[-1,18],[0,1],[0,8],[0,4],[0,4]],[[2707,3675],[-1,1],[0,-2],[-1,0],[-2,5],[0,3],[0,1],[-1,3],[-2,9],[-1,3],[-1,5],[0,4],[-1,5],[0,1],[0,4],[0,3],[-2,14],[0,4],[-2,7],[-1,5],[0,2],[1,5],[0,1],[0,1],[0,2],[-1,1],[0,1],[-1,6],[0,4],[-1,11],[-1,1],[0,3],[-1,5],[2,15],[0,1],[0,2],[0,10],[0,11],[0,1],[0,6],[0,1],[0,1]],[[2690,3841],[1,-4],[1,1],[5,6],[0,1],[0,1],[0,1],[1,2],[0,14],[0,4],[0,2],[0,1],[0,1],[1,2],[0,1],[1,-2],[1,1],[0,1],[0,1],[0,1],[1,2],[0,1],[-1,15],[0,5],[0,4],[-1,3],[0,3],[0,2],[1,3],[1,10],[2,17],[0,2],[1,5],[0,1],[0,3],[0,2],[1,0],[2,-7],[1,-4],[0,-6],[0,-1],[0,-1],[-1,-5],[0,-1],[0,-1],[1,-2],[1,1],[3,8],[0,1],[0,16],[0,2],[-1,2],[0,2],[0,2],[0,2],[0,2],[1,3],[0,16],[0,1],[1,0],[0,4],[1,6],[2,6],[2,15],[2,9],[0,1],[1,0],[1,-2],[0,-2],[0,-6],[0,-2],[1,0],[1,0],[1,6],[1,2],[0,1],[1,-1],[3,15],[1,10],[1,4],[1,3],[2,9],[1,2],[1,1],[1,16],[0,1],[0,2],[0,23],[1,10],[0,1],[0,1],[0,1],[1,8],[0,2],[1,12],[0,1],[0,2],[0,2],[0,5],[0,12],[0,1],[1,6],[1,11],[0,1],[1,5],[0,5],[0,2],[0,8],[0,4],[0,3],[0,7],[0,9],[0,2],[-2,15],[0,2],[1,1],[0,5],[1,1],[0,1],[1,-1],[2,3]],[[2777,4084],[0,-36],[-1,-1],[0,-1],[0,-45],[0,-3],[0,-11],[3,9],[0,4],[3,12],[1,3],[1,3],[0,2],[4,17],[0,1],[1,0],[0,-2],[2,-5],[2,15],[2,13],[1,7],[1,-3],[-1,-2],[0,-1],[0,-1],[1,-1],[2,-7],[0,-1],[0,-1],[1,0],[2,-3],[3,-1],[1,5],[0,4],[-1,2],[0,1],[0,2],[1,6],[2,4],[0,-1],[1,-1],[1,-2],[2,8],[0,5],[1,1],[1,-1],[1,-2],[1,-3],[1,-5],[0,-3],[1,-3],[1,-4],[1,1],[1,-4],[0,-1],[0,-1],[1,-8],[0,-3],[1,-1],[0,-1],[1,-11],[1,-8],[-1,-8],[0,-1],[1,-1],[0,-2],[1,0]],[[2471,5448],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,1],[0,2],[0,1]],[[2466,5419],[0,2],[1,0],[0,-2],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-2],[1,-1],[0,-1],[0,-1],[-1,-1],[0,1],[-1,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,2],[0,1],[0,2],[-1,0],[0,1],[1,0],[0,2],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,2],[0,1],[1,1],[0,1]],[[2467,5430],[0,-1],[-1,-1],[0,-1],[0,1],[-1,2],[0,1],[0,1],[1,0],[0,2],[1,2],[1,1],[1,2],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[-1,-1],[0,-1],[0,-1],[0,1],[-1,0]],[[2569,5147],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,1],[0,1],[0,1],[0,1],[0,-1],[0,-2],[0,-1],[0,-3],[-1,0],[0,-4],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[-1,3],[0,2],[0,2],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[1,1],[0,1]],[[2466,4605],[0,1],[0,1],[-1,5],[-1,16],[0,1],[-1,1],[-1,2],[-2,2],[-2,2],[-1,2],[-1,2],[-2,8],[0,3],[0,3],[-1,6],[0,15],[-1,2],[0,2],[0,1],[-1,14],[0,11],[0,3],[0,4],[0,8],[0,2],[0,2],[1,1],[2,17],[0,3],[-1,6],[0,4],[-3,11],[0,10],[0,14]],[[2427,5390],[1,0],[0,-3],[1,-1],[0,-1],[1,0],[1,2],[1,0],[1,0],[0,1],[1,0],[0,2],[1,0],[0,1],[2,3],[0,1],[1,0],[0,1],[0,1],[1,2],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,2],[1,1],[0,1],[1,0],[0,1],[1,1],[0,3],[0,1],[1,1],[0,-1],[0,-1],[1,-2],[0,2],[1,1],[0,2],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,-1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,2],[0,1],[0,2],[1,0],[0,-1],[1,-1],[0,2],[1,3],[0,1],[1,0],[0,-1],[0,-1],[1,-3],[1,-2],[0,-4],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-4],[0,-2],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,2],[1,2],[0,2],[0,3],[1,1],[0,4],[0,-1],[1,-3],[0,-1],[1,-4],[0,-1],[1,-3],[1,-2],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,1],[1,0],[0,1],[1,-1],[0,-1],[0,-1],[1,-2],[1,1]],[[2472,5364],[0,-2],[0,-2],[1,-1],[1,0],[1,-5],[0,1],[1,0],[2,-8],[1,-7],[1,-12],[0,-3],[0,-4],[5,-7],[1,-1],[18,-23],[1,-2],[1,0],[0,-1],[1,-1],[1,-1],[2,-4],[2,-5],[1,-3],[0,-1],[3,-7],[0,-1],[0,-2],[2,-1],[1,2],[1,-2],[0,-1],[1,-2],[0,-2],[0,-1],[1,1],[2,6],[1,-1],[0,-3],[0,-1],[1,-1],[1,-2],[2,2],[2,-7],[1,2],[0,-2],[1,-1],[0,-1],[1,1],[1,-3],[1,-2],[0,-2],[1,-6],[0,-1],[0,-3],[-1,-3],[-1,-3],[0,-1],[1,-2],[1,-4],[0,-1],[1,0],[0,1],[1,2],[4,-9],[1,-5],[1,-3],[0,-5],[0,-1],[-1,-3],[0,-2],[1,-5],[0,-1],[0,-9],[0,-13],[0,-2],[0,-3],[-1,-1],[0,-1],[-1,-7],[-1,-13],[1,-3],[1,1],[0,1],[0,1],[1,0],[1,-1],[0,1],[1,4],[1,3],[0,-2],[1,-2],[0,-4],[0,-2],[-2,-14],[0,-1],[0,-3],[0,-7],[-1,0],[0,-1],[1,-4],[0,-1],[2,-12],[2,-2]],[[2551,5089],[0,-1],[0,-1],[0,-1],[-1,1],[0,-1],[0,-1],[0,-6],[0,-6],[-1,-7],[-1,0],[-2,-2],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-3],[0,-2],[0,-1],[0,-4],[-1,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[1,2],[0,1],[0,1],[1,1],[1,1],[0,1],[0,2],[0,1],[0,1],[1,1],[0,1],[0,2],[0,3],[0,1],[0,1],[0,1],[0,1],[0,2],[1,1],[0,1],[0,2],[0,1],[0,1],[1,2],[0,3],[0,1],[0,2],[0,1],[1,2],[0,1],[0,1],[1,2],[1,0],[0,1],[1,2],[0,-1],[1,0],[0,1],[0,2],[1,2],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,2],[0,2],[0,1],[0,2],[1,1],[0,4],[0,1],[0,2],[1,1],[0,2],[1,2],[0,1],[0,2],[0,3],[0,3],[0,1],[0,2],[0,1],[0,1],[0,3],[1,1],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[0,2],[0,1],[0,1],[1,0],[0,1],[0,1],[1,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,3],[1,2],[0,2],[0,3],[1,-1],[0,-1],[0,1],[0,1],[1,1],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-3],[0,-1],[-1,-1],[0,-1],[0,1],[0,1],[-1,0],[0,-2],[0,-7],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-3],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[-1,-3],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-2],[-1,-2],[0,-4],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-5],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[-1,-2],[0,-2],[0,-2],[0,-1],[-1,-1],[0,-3],[0,-4],[-1,-6],[0,-2],[0,-5],[0,-1],[0,-1],[-1,-2],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-4],[0,-2],[0,-2],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[-1,-3],[0,-3],[0,-1],[0,-1],[0,-3],[0,-2],[0,-5],[0,-1],[1,-1],[0,-2],[0,-3],[0,-4],[0,-3],[0,-3],[-1,-3],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-4],[0,-2],[0,-2],[0,-3],[0,-2],[0,-1],[-1,-2],[0,-3],[0,-2],[0,-2],[0,-2],[0,-5],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[1,-8],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-2],[0,-3],[0,-4],[0,-1],[0,-6],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-9],[0,-3],[0,-3],[0,-1],[0,-3],[0,-3],[0,-3],[0,-6],[-1,-5],[-1,-5],[0,-3],[0,-1],[0,-1],[0,-2],[-1,-3],[0,-7],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-7],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-2],[0,-2],[1,-3],[0,-1],[0,-1],[0,-2],[0,-3],[-1,-5],[0,-2],[0,-1],[1,-5],[0,-1],[0,-2],[0,-1],[1,-4],[0,-1],[0,-1],[1,-2],[0,-1],[0,-3],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-5],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-3],[1,-3],[0,-4]],[[2092,4697],[0,-46],[0,-1],[0,-19],[0,-3],[0,-4],[0,-66],[0,-1],[0,-15],[0,-1],[0,-6],[0,-2],[0,-7],[0,-2],[0,-10],[0,-1],[0,-3],[0,-1],[0,-4],[0,-11],[0,-2],[0,-4],[0,-28],[0,-7],[0,-10],[0,-1],[0,-3],[0,-1],[0,-4],[0,-6],[0,-2],[0,-2],[0,-4],[0,-1],[0,-18],[0,-2],[0,-3],[0,-13],[0,-1],[0,-7],[0,-1],[0,-30],[0,-2],[0,-2],[0,-14],[0,-3]],[[1953,4323],[-5,0],[-13,-1],[-1,0],[-4,0],[-4,0],[-1,0],[-13,0],[-15,0],[0,48],[0,20],[0,3],[0,38],[0,79]],[[1897,4510],[0,26],[0,2],[0,6],[0,2],[0,16],[0,13],[0,31],[0,84],[0,1],[0,1],[0,8],[0,1],[0,1],[0,3],[0,2],[0,1],[0,1],[0,1],[0,20],[0,1],[0,1],[0,1],[0,23],[0,35],[0,29],[0,4],[0,1],[0,7],[0,1],[0,16],[0,32],[0,14],[0,1],[0,69],[0,1],[0,6]],[[2092,5070],[0,-43],[0,-8],[0,-4],[0,-1],[0,-1],[0,-22],[0,-6],[0,-4],[0,-63],[0,-8],[0,-38],[0,-16],[0,-19],[0,-31],[0,-1],[0,-4],[0,-10],[0,-5],[0,-9],[0,-7],[0,-12],[0,-4],[0,-2],[0,-1],[0,-54]],[[2536,2319],[1,-5],[0,-2],[0,-1],[-1,0],[0,1],[-1,0],[-2,-1],[-2,-2],[0,-1],[-1,1],[1,0],[1,1],[1,2],[1,1],[1,0],[1,2],[0,2],[0,2]],[[2623,2453],[-1,0],[-1,0],[-2,0],[-1,0],[-9,-1],[-15,-1],[-1,0],[-3,0],[0,1],[-3,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,1],[-3,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-4,1],[-1,0],[-2,-1],[-3,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[1,-4],[-1,-7],[0,-7],[-1,-6],[1,-4],[2,-19],[1,-4],[0,-1],[1,0],[1,-4],[1,-5],[0,-3],[0,-2],[0,-3],[-1,-21],[0,-4],[0,-16],[0,-3],[-1,-5],[0,-4],[1,-6],[-1,-2],[-1,-4]],[[2553,2318],[-1,-1],[-1,-1],[-2,-4],[-2,-1],[-2,-2],[-1,-1],[-3,1],[-1,0],[-1,-1],[0,-1],[-1,0],[1,2],[1,1],[1,4],[0,1],[0,-2],[1,-1],[0,-1],[0,-1],[1,0],[0,1],[1,2],[1,0],[1,2],[0,3],[0,2],[0,4],[-1,2],[0,2],[-1,4],[0,3],[0,1],[-1,0],[0,1],[-1,5],[0,1],[0,6],[-1,5],[0,1],[0,1],[0,1],[1,7],[0,2],[0,3],[0,3],[0,1],[0,2],[0,6],[-1,4],[0,3],[0,1],[-1,0],[0,3],[-1,2],[0,-1],[0,-1],[-1,-3],[0,-1],[-1,-2],[1,-5],[0,-1],[-1,-4],[0,-2],[0,-3],[0,-3],[0,-3],[0,-1],[-1,-3],[0,-2],[0,-1],[1,-4],[-1,-2],[0,-2],[0,-4],[0,-10],[0,-4],[0,-2],[0,-1],[-1,-3],[0,1],[-1,-1],[0,-1],[0,1],[0,3],[0,1],[0,1],[0,2],[-2,4],[-1,0],[0,-2],[-1,0],[0,2],[0,1],[0,1],[-1,-1],[-1,-3]],[[471,6937],[0,-1],[0,-2],[0,-13],[0,-2],[-1,-7],[0,-1],[-1,-1],[0,-1],[-1,1],[-2,8],[0,1],[0,8],[0,1],[2,9],[1,1],[1,0],[1,-1]],[[552,6928],[0,1],[2,2],[2,-4],[0,-2],[-1,-4],[0,-3],[-1,-2],[-1,-1],[0,1],[-1,3],[0,3],[1,1],[0,1],[0,2],[-1,2]],[[533,6970],[-1,5],[0,3],[0,1],[1,0],[0,-2],[1,-1],[0,-1],[1,1],[0,6],[2,13],[0,-1],[1,-3],[0,-3],[0,-1],[-1,-3],[-1,-2],[0,-10],[0,-2],[1,-2],[0,1],[0,3],[0,1],[0,1],[1,1],[1,-1],[-1,-6],[0,-3],[-1,-5],[0,-1],[0,1],[0,1],[-1,1],[-1,-1],[0,-1],[0,-3],[0,-4],[-3,-11],[-1,-2],[-1,-2],[-2,-13],[0,-2],[0,-5],[-1,-3],[-1,6],[0,7],[1,0],[0,2],[1,7],[2,6],[0,3],[1,1],[0,1],[0,2],[0,1],[-1,-2],[-1,2],[-1,10],[0,2],[2,8],[1,-3],[1,-2],[0,-2],[0,-1],[0,-1],[1,1],[0,1],[0,1],[0,1],[0,4]],[[549,6952],[0,1],[2,0],[1,-1],[0,-2],[0,-13],[0,-1],[-3,-6],[0,1],[-1,0],[1,5],[0,3],[1,2],[0,4],[-1,3],[0,4]],[[546,6975],[1,-1],[0,-1],[1,-3],[-1,-4],[0,-1],[-1,-4],[0,-4],[1,-2],[1,-3],[0,-1],[0,-1],[-1,-1],[-1,3],[-1,0],[0,-2],[-1,-2],[-1,0],[0,1],[0,1],[0,3],[1,10],[0,2],[1,5],[0,6],[2,12],[0,-3],[0,-3],[0,-2],[-1,-5]],[[486,6970],[0,-3],[1,-1],[0,-1],[2,-2],[0,-3],[1,0],[0,-4],[0,-3],[0,-1],[-1,0],[0,2],[0,1],[0,1],[0,1],[0,2],[-1,1],[0,1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-5],[-1,1],[0,3],[-1,4],[0,3],[-1,3],[-1,0],[0,1],[-1,1],[1,4],[1,3],[3,-3],[1,-1]],[[519,7002],[0,3],[-1,-2],[-1,-3],[0,-2],[0,-1],[1,-5],[0,-2],[1,-1],[1,-12],[0,-2],[0,-3],[-1,-7],[-4,6],[0,2],[-1,4],[0,3],[-2,-3],[0,-1],[0,-2],[-1,-8],[0,-2],[0,-1],[-1,0],[1,4],[0,3],[0,2],[0,4],[-1,3],[0,17],[0,4],[0,4],[1,8],[1,2],[2,2],[1,0],[0,-2],[0,-1],[0,-5],[0,-3],[1,1],[1,8],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[3,-5],[0,1],[0,1],[1,3],[1,0],[0,-1],[0,-1],[1,-3],[0,-6],[-1,-8],[0,-2],[-1,2],[0,1],[0,1],[0,3],[-2,2],[0,-1],[-1,-1],[-1,4],[0,2],[0,1]],[[528,7026],[2,-1],[-1,-12],[0,-1],[-1,2],[-2,1],[-1,-1],[-1,1],[0,3],[0,2],[0,1],[0,3],[2,3],[0,1],[1,-1],[1,-1]],[[372,6786],[1,-2],[1,-2],[0,-6],[2,3],[0,-1],[0,-2],[-1,-4],[-2,-6],[-1,2],[-2,-7],[-1,3],[0,1],[0,1],[-1,0],[-1,-1],[-1,-1],[-1,-2],[-1,11],[-1,4],[0,4],[1,6],[2,7],[1,1],[1,0],[2,-1],[0,-3],[0,-2],[0,-1],[0,-3],[1,-1],[0,1],[1,3],[0,-2]],[[387,6772],[1,-6],[-1,-2],[-2,2],[0,1],[-1,1],[-3,-2],[0,1],[0,1],[0,1],[1,1],[3,2],[2,0]],[[395,6779],[1,0],[0,-1],[0,-2],[0,-1],[-1,-6],[0,-1],[-2,-2],[-5,4],[0,1],[0,2],[1,3],[1,2],[2,0],[0,-1],[1,0],[1,2],[1,0]],[[380,6810],[1,-1],[0,-2],[-1,-2],[-1,-4],[0,-1],[0,-1],[1,-5],[0,-1],[1,1],[2,0],[0,-2],[0,-1],[0,-4],[-1,1],[-1,0],[-2,-10],[0,-3],[-1,-1],[-1,3],[0,2],[-1,12],[1,2],[1,2],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,-2],[-1,-1],[-1,0],[0,1],[0,1],[0,2],[0,2],[1,7],[1,0],[0,-1],[1,-2],[2,3]],[[455,6845],[1,1],[1,-3],[4,-5],[1,-5],[0,-1],[0,-5],[0,-2],[-1,-2],[-3,6],[-1,-5],[0,-1],[-1,1],[-2,9],[1,13],[0,-1]],[[168,7972],[1,4],[0,7],[1,7],[1,0],[1,-1],[2,-14],[0,-3],[0,-3],[5,-13],[0,-1],[7,-4],[3,-4],[1,-1],[0,-2],[2,-6],[0,-1],[-1,-1],[-4,2],[-2,1],[0,-1],[0,-1],[-1,-2],[-1,0],[-1,1],[0,2],[-4,8],[-1,6],[-4,13],[-1,1],[0,-1],[-4,4],[0,3]],[[374,7908],[0,-3],[1,-1],[0,1],[0,-1],[1,-7],[-1,-3],[0,-1],[0,-7],[1,-12],[2,-4],[1,-1],[0,-2],[0,-4],[0,-2],[-1,-3],[-3,-2],[-1,0],[0,1],[-1,0],[-4,-5],[-3,-5],[-1,-5],[-1,-2],[1,-4],[0,-2],[0,-1],[0,-2],[0,-2],[-3,0],[-1,3],[0,1],[0,2],[0,2],[-2,3],[-3,8],[-1,1],[-1,0],[-2,-1],[-2,0],[-1,0],[0,1],[-1,3],[-1,2],[-1,1],[-1,1],[-1,4],[-2,7],[-1,2],[-2,6],[-2,0],[-2,-1],[0,1],[-3,8],[0,4],[-1,1],[-1,0],[-1,1],[0,1],[0,3],[0,1],[0,5],[0,1],[-1,4],[-1,8],[0,2],[1,4],[2,3],[3,-1],[2,0],[1,-2],[1,-1],[3,-3],[1,1],[2,1],[1,3],[0,2],[0,4],[-1,1],[0,1],[1,3],[1,4],[1,1],[2,1],[1,0],[1,0],[0,1],[1,6],[2,6],[2,-3],[0,-2],[0,-1],[1,0],[2,4],[3,3],[0,1],[0,5],[1,1],[0,-2],[1,-2],[0,-2],[0,-4],[1,-10],[2,-2],[1,0],[1,1],[0,1],[0,1],[0,1],[1,0],[1,1],[2,-3],[2,-3],[1,-2],[0,-4],[0,-2],[0,-11],[-1,-4],[0,-3]],[[1238,7543],[0,-1],[0,-4],[0,-5],[0,-1],[1,0],[1,0],[1,2],[0,2],[1,2],[1,-2],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[0,-3],[2,-1],[0,1],[1,1],[2,1],[1,0],[0,-5],[0,-1],[0,-1],[-1,-3],[0,-4],[1,-2],[0,-2],[1,-3],[1,-6],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[1,-2],[1,-6],[1,-3],[0,-2],[0,-2],[1,-7],[1,-3],[0,-6],[0,-2],[0,-1],[0,-2],[1,-18],[0,-5],[1,-4],[1,-1],[0,-4],[0,-5],[0,-1],[0,-1],[0,-1],[-1,2],[0,5],[0,2],[0,2],[-2,7],[-1,5],[0,1],[-1,5],[-1,7],[0,6],[0,5],[-1,2],[-1,4],[-1,4],[0,2],[0,1],[0,2],[0,1],[-1,1],[-1,-1],[0,-2],[1,-8],[2,-8],[0,-2],[0,-3],[0,-1],[-1,-3],[0,-4],[0,-2],[3,-13],[1,-2],[1,-3],[1,-3],[0,-3],[-1,-6],[0,-1],[1,-3],[0,-3],[0,-2],[1,-3],[1,-7],[-2,1],[0,-3],[1,-14],[0,-2],[0,-1],[0,-1],[-2,-10],[-1,0],[-1,2],[0,2],[-1,1],[-1,-1],[0,-1],[0,-3],[0,-1],[0,-9],[-2,-8],[-1,-4],[-2,-9],[-1,-1],[-1,-2],[-1,-2],[0,-2],[0,-3],[-3,-7],[0,-2],[0,-1],[-2,-2],[-1,2],[-1,14],[0,22],[0,3],[1,6],[1,4],[1,4],[0,4],[-1,0],[0,1],[0,11],[0,1],[1,0],[0,-2],[0,-1],[1,-3],[1,3],[-2,13],[-2,10],[0,2],[0,2],[0,5],[-2,8],[0,2],[-1,13],[0,2],[0,1],[0,1],[-1,3],[0,6],[1,5],[0,9],[-1,9],[0,3],[0,1],[0,15],[-1,3],[0,2],[0,10],[0,4],[0,3],[-1,8],[-1,7],[0,1],[-1,0],[0,2],[-1,4],[-1,13],[0,16],[0,6],[0,2],[2,-7],[2,-10],[0,-1],[0,-3],[1,-3],[1,-2],[1,-1],[0,-9]],[[1334,6939],[0,-2],[1,-9],[0,-1],[1,-1],[0,-2],[-2,-8],[0,-1],[-3,0],[-3,10],[0,3],[0,4],[2,4],[4,5],[0,-1],[0,-1]],[[1320,7012],[1,-6],[1,-3],[1,-1],[0,-4],[0,-2],[-1,-2],[0,-11],[-1,-5],[-1,-13],[-1,6],[-1,6],[0,1],[0,14],[-1,3],[0,14],[1,11],[1,-2],[0,-1],[0,-1],[1,-4]],[[616,7233],[1,-3],[1,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,2],[-2,0],[-1,-2],[0,-1],[-1,-1],[-4,-1],[0,1],[0,2],[1,4],[0,1],[1,3],[3,0],[1,0],[1,-1],[1,-3]],[[275,8501],[5,-1],[0,1],[1,0],[2,0],[1,-2],[1,0],[3,-4],[3,-1],[0,-2],[0,-7],[-1,-7],[-1,-7],[-1,-3],[-1,-4],[-1,0],[0,1],[-2,2],[0,1],[-1,1],[-1,1],[-2,0],[-3,0],[-2,-1],[-1,-1],[-2,-3],[0,-2],[-1,-5],[-1,-3],[-2,-2],[0,-2],[-1,-4],[0,-3],[0,-2],[0,-1],[0,-8],[-2,-8],[-3,4],[0,1],[0,2],[0,1],[-1,12],[-1,7],[-1,1],[-1,4],[-2,5],[-1,2],[-1,1],[-1,3],[0,1],[-1,2],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,2],[0,1],[0,1],[0,2],[-1,6],[-1,5],[0,3],[-2,6],[-2,5],[-2,2],[-4,6],[-4,5],[-2,2],[-1,0],[-3,0],[-1,0],[-5,-7],[0,-1],[0,-1],[0,-1],[0,-3],[-1,-3],[-3,-5],[-1,-1],[-3,6],[-3,4],[-2,1],[-1,8],[-1,4],[0,2],[-1,9],[1,11],[0,6],[1,8],[1,4],[0,2],[0,2],[0,7],[0,3],[1,1],[0,1],[0,1],[0,2],[-1,3],[0,4],[0,1],[1,-1],[1,0],[0,1],[1,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[1,-2],[2,-4],[4,-5],[5,-5],[3,-3],[2,-1],[2,-2],[2,0],[1,3],[1,3],[3,8],[3,5],[3,4],[1,1],[1,-2],[1,0],[1,0],[0,1],[1,-1],[1,-1],[0,-2],[1,-1],[2,-8],[1,-1],[0,-1],[1,0],[1,-5],[1,-12],[0,-6],[0,-2],[1,-1],[1,-1],[1,-2],[2,-3],[3,-2],[2,-1],[1,0],[2,-5],[0,-2],[0,-1],[0,-1],[0,-1],[1,-2],[3,-1],[1,0],[2,-1],[1,-1],[0,-1]],[[461,8553],[0,1],[1,2],[1,0],[0,-1],[1,-2],[1,0],[1,1],[0,1],[0,1],[1,0],[0,-2],[1,-6],[0,-8],[-1,-1],[-1,0],[-1,0],[-3,-1],[0,-1],[-1,1],[-2,3],[-1,4],[1,1],[1,4],[1,3]],[[305,8811],[0,1],[1,4],[1,1],[1,2],[2,-1],[1,-1],[1,-2],[1,-3],[0,-3],[0,-4],[0,-1],[-1,-6],[-1,-1],[-1,-3],[-2,0],[-1,2],[-2,3],[0,3],[0,3],[0,3],[0,3]],[[284,8953],[0,1],[1,1],[1,-5],[0,-1],[-1,0],[-1,1],[0,1],[0,2]],[[365,9048],[1,-3],[-2,-1],[0,-1],[-1,-5],[-1,-1],[0,1],[0,1],[-1,0],[0,2],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,1]],[[1250,7114],[0,-2],[1,-2],[2,3],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,1],[-1,-1],[-1,-3],[-1,-2],[0,-2],[-1,-4],[0,-1],[-1,1],[-1,2],[0,9],[0,6],[1,0],[1,0]],[[1254,7141],[1,-4],[-1,-6],[0,-2],[0,-1],[-1,4],[0,3],[-1,3],[-1,2],[0,1],[-1,10],[0,2],[1,1],[0,4],[0,11],[0,9],[-1,3],[-1,1],[0,1],[1,11],[1,6],[1,5],[0,3],[0,2],[0,2],[-1,1],[0,2],[1,2],[0,-2],[1,-3],[0,-2],[1,-5],[2,-4],[0,2],[1,1],[0,3],[-2,9],[-1,3],[-3,14],[-1,4],[0,7],[-1,6],[-2,5],[0,9],[-1,21],[0,1],[0,2],[1,5],[1,4],[1,1],[1,0],[0,-1],[2,-8],[1,-1],[0,-1],[1,2],[0,2],[0,2],[-1,2],[-1,2],[-2,6],[1,0],[0,-1],[2,-3],[1,3],[0,2],[0,2],[0,-1],[1,-3],[2,-7],[1,-12],[1,-6],[1,-7],[-1,-4],[0,-1],[1,-2],[1,0],[0,2],[1,4],[-1,4],[0,1],[0,1],[0,1],[0,-1],[0,1],[0,2],[0,1],[1,0],[0,-1],[1,-2],[1,-2],[1,-1],[0,-3],[0,-2],[-1,-4],[0,-2],[0,-4],[0,-2],[0,-2],[1,0],[0,-6],[0,-2],[1,-6],[0,-1],[-1,-2],[0,-2],[-3,0],[-1,-11],[0,-4],[0,-2],[0,-2],[1,-7],[0,-1],[-1,1],[0,-1],[-1,-10],[1,-3],[1,-2],[0,-2],[0,-3],[-1,-16],[-1,-5],[0,1],[-1,-1],[0,-1],[0,-1],[0,-6],[0,-13],[0,-2],[-1,-1],[-1,1],[0,1],[0,3],[0,2],[0,3],[0,3],[0,2],[0,6],[-1,6],[-1,0],[0,-2],[0,-6],[-2,-2],[0,-2],[-1,-2],[1,-1],[1,-1],[1,0],[0,-11],[-1,-2]],[[1298,7241],[0,-2],[0,-2],[-2,-5],[0,-1],[-1,0],[-1,-4],[-1,-3],[-2,-3],[0,-1],[-2,3],[-3,1],[0,-1],[-2,2],[0,6],[-1,5],[2,5],[-2,12],[-1,3],[-2,4],[0,6],[-1,3],[0,3],[0,1],[0,1],[0,2],[-1,4],[0,1],[-1,-5],[-1,-3],[0,-3],[1,-4],[0,-2],[1,1],[0,1],[0,1],[0,1],[1,0],[0,-8],[0,-2],[0,-3],[0,-6],[1,0],[1,-2],[2,-3],[0,-1],[0,-15],[0,-2],[-1,1],[0,1],[0,-1],[0,-2],[0,-1],[0,-4],[-1,-5],[0,-1],[-1,-2],[-4,4],[0,3],[-1,1],[0,1],[-1,0],[0,-1],[0,-2],[-1,-5],[-2,-3],[0,-1],[-2,0],[-1,1],[-1,1],[0,1],[0,7],[0,7],[0,3],[0,1],[0,1],[0,1],[0,1],[0,3],[0,4],[0,2],[0,4],[-1,2],[0,1],[0,2],[0,5],[0,2],[0,3],[0,6],[0,3],[0,4],[1,3],[0,3],[-1,5],[0,-2],[-1,-3],[-1,-1],[0,3],[-1,0],[-2,4],[0,4],[-1,9],[0,2],[0,7],[-1,5],[-3,7],[1,7],[0,2],[4,4],[3,-3],[2,-3],[2,-1],[3,-4],[2,-3],[2,-3],[1,0],[0,-1],[1,2],[0,1],[6,-2],[3,-12],[0,-3],[1,-10],[0,-6],[0,-3],[1,-4],[1,-1],[1,0],[1,-1],[1,-7],[1,-6],[0,-2],[2,-6],[1,-2],[0,-2],[0,-1],[0,-1],[0,-1],[1,-3],[0,-2],[0,-1],[1,0],[0,-1]],[[1325,6994],[1,0],[0,-1],[1,-3],[1,-1],[0,-1],[0,-1],[0,-4],[1,-2],[0,1],[1,0],[0,-2],[1,-5],[1,-3],[-1,0],[0,-2],[1,-17],[-1,-4],[0,-5],[-1,-1],[-2,0],[-1,1],[0,2],[-1,2],[-1,-4],[0,-2],[-1,0],[-1,4],[0,2],[1,2],[1,8],[-1,3],[1,3],[0,1],[1,-1],[0,4],[0,2],[-1,3],[0,1],[-1,12],[1,6],[0,2]],[[1276,7047],[1,-5],[1,-1],[0,-2],[0,-4],[-1,-4],[-1,-5],[-1,1],[0,2],[-1,-1],[-2,-5],[1,-3],[1,0],[0,-1],[0,-2],[0,-4],[0,-1],[-1,0],[-1,-2],[-2,-8],[-1,-6],[0,-4],[0,-6],[-1,0],[0,2],[-2,10],[0,1],[0,2],[1,1],[1,4],[0,2],[0,7],[0,6],[-3,8],[-1,0],[0,-2],[0,14],[1,2],[0,2],[3,-1],[1,-2],[0,-1],[0,-5],[0,-1],[0,-1],[-1,-1],[0,-4],[0,-1],[0,-1],[0,-1],[2,3],[0,4],[0,3],[1,4],[1,-3],[1,1],[0,2],[0,4],[0,2],[1,2],[2,-1]],[[1268,7192],[1,2],[5,-4],[2,0],[2,-1],[1,0],[1,1],[1,-3],[2,-12],[0,-1],[1,-1],[0,-11],[0,-5],[0,-1],[0,-2],[0,-1],[0,-2],[4,-17],[0,-2],[2,0],[6,-19],[0,-2],[0,-2],[1,-4],[1,-6],[1,-6],[1,-6],[1,-18],[0,-2],[0,-1],[1,0],[1,-1],[0,-3],[1,-10],[0,-3],[1,-5],[2,-5],[1,-2],[0,-1],[1,-7],[0,-2],[0,-2],[-1,1],[-1,3],[0,2],[0,2],[-2,4],[-1,0],[0,-2],[1,-6],[0,-4],[1,-1],[-1,-1],[-3,-1],[-2,-1],[0,-1],[0,-1],[1,-1],[2,-2],[3,3],[1,-8],[2,-2],[0,-7],[1,-7],[0,-1],[1,-1],[0,-2],[-1,-1],[-1,-5],[-2,2],[0,-2],[0,-2],[1,-1],[2,-4],[1,0],[0,2],[0,3],[0,2],[0,1],[0,1],[1,3],[0,2],[1,1],[0,-2],[1,-2],[0,-8],[0,-6],[0,-3],[-1,-3],[-1,-1],[0,-3],[0,-1],[1,0],[-1,-7],[-1,-9],[-2,-4],[-1,0],[0,-2],[0,-3],[1,-1],[1,0],[1,6],[1,4],[1,0],[1,-2],[0,-33],[0,-3],[1,-6],[0,-2],[-2,-11],[0,-4],[0,-2],[-4,-2],[0,1],[-1,2],[0,2],[-2,3],[0,-1],[0,-2],[-1,0],[-1,19],[0,2],[0,-1],[1,2],[0,2],[-2,13],[-3,-3],[-2,6],[-1,3],[-1,4],[0,2],[0,2],[1,0],[0,1],[0,1],[1,18],[0,3],[-1,-1],[-1,-7],[0,-2],[0,-1],[0,4],[0,7],[1,5],[0,2],[0,1],[0,2],[0,5],[-1,1],[0,-2],[0,-2],[0,-1],[0,-4],[-1,-1],[-1,-1],[-1,-1],[1,-7],[0,-10],[0,-3],[-1,-6],[-2,3],[-2,3],[-1,3],[0,2],[-1,3],[1,1],[0,1],[1,6],[0,2],[0,2],[0,7],[-2,7],[-1,1],[-1,-2],[-1,5],[0,3],[-1,3],[-1,-2],[2,-13],[1,-10],[1,-9],[0,-3],[-1,-1],[0,-2],[0,-2],[2,-3],[1,-18],[0,-2],[1,-3],[1,-6],[1,1],[0,5],[0,1],[0,1],[0,3],[0,2],[2,1],[2,-7],[1,-4],[0,-14],[0,-6],[0,-2],[0,-2],[-1,2],[-1,2],[0,4],[0,3],[0,1],[-1,1],[0,1],[-1,-2],[0,-2],[1,-1],[0,-7],[2,-16],[0,-1],[-1,-1],[-2,1],[-3,5],[0,3],[0,2],[0,5],[0,3],[-1,2],[-1,0],[0,1],[-2,13],[-2,12],[-1,4],[-1,3],[0,4],[0,4],[0,6],[-1,0],[0,1],[-1,10],[0,2],[1,0],[2,-1],[0,1],[-1,5],[-1,1],[0,1],[-1,8],[1,2],[0,2],[-1,5],[-1,0],[0,-2],[-1,-2],[-1,-1],[0,3],[0,1],[-1,1],[-1,-3],[0,-1],[-1,0],[0,2],[-1,5],[0,2],[0,2],[1,7],[0,3],[0,2],[2,2],[1,1],[0,-1],[1,-2],[0,-2],[0,-1],[0,-5],[1,0],[1,0],[0,3],[0,1],[-1,2],[0,2],[0,2],[0,1],[0,2],[0,2],[1,2],[1,1],[0,-1],[2,6],[1,3],[-1,6],[-1,7],[1,1],[0,2],[-1,9],[0,5],[-3,-4],[0,2],[-1,2],[-2,6],[-2,4],[0,1],[1,4],[0,-1],[1,1],[0,5],[-1,8],[-1,2],[-1,3],[-1,-2],[0,-2],[1,-2],[0,-1],[0,-3],[0,-1],[-1,-2],[-1,1],[-1,1],[-1,3],[0,1],[-2,10],[2,8],[0,1],[2,1],[3,-8],[1,-1],[2,3],[0,1],[1,2],[-1,9],[0,2],[-1,1],[0,-1],[-1,1],[-2,12],[0,13],[-1,-7],[-3,-11],[-2,-1],[-3,2],[0,4],[-1,3],[1,2],[1,2],[1,5],[1,11],[1,1],[0,2],[3,11],[0,3],[0,2],[-1,4],[-1,1],[-1,21],[0,3],[1,0],[0,2],[0,1]],[[1262,7110],[0,-2],[0,-1],[0,-3],[0,-4],[-1,-1],[-1,1],[0,2],[0,2],[-1,5],[0,3],[1,1],[1,3],[1,0],[0,-1],[0,-4],[0,-1]],[[1213,7483],[0,-2],[1,-1],[1,-5],[1,-3],[1,-1],[2,-6],[0,-2],[1,-3],[1,-5],[1,-2],[2,-2],[2,2],[1,3],[1,-1],[1,-1],[1,0],[0,4],[2,0],[0,-1],[0,-3],[0,-7],[0,-4],[2,-11],[0,-5],[1,-19],[-1,-3],[-1,-3],[0,-1],[-4,-1],[-1,2],[-1,0],[0,1],[-1,5],[-3,9],[-2,6],[-2,4],[-2,6],[-1,4],[-2,4],[-1,-2],[-1,-2],[-1,5],[-1,-1],[0,-3],[0,-2],[1,-3],[2,-5],[1,0],[1,2],[0,-2],[1,-2],[-1,-1],[-1,-1],[0,-1],[0,-2],[-1,-3],[1,-5],[0,-1],[0,-2],[1,-5],[0,-2],[-1,-3],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,1],[-2,2],[-2,1],[-1,3],[0,2],[0,4],[-1,4],[-1,2],[-1,7],[-1,2],[0,2],[1,3],[-2,9],[-1,4],[-1,2],[-1,0],[-1,2],[-2,15],[-1,8],[1,2],[-1,2],[-1,9],[0,1],[-1,0],[-2,4],[0,3],[0,5],[-2,3],[-1,0],[0,1],[0,1],[0,20],[0,6],[1,2],[0,3],[1,3],[1,-1],[0,-1],[1,7],[2,14],[-1,8],[0,3],[2,1],[1,-1],[0,-1],[0,-2],[0,-5],[0,-3],[1,-10],[2,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,7],[1,1],[3,-1],[0,-3],[2,0],[0,1],[1,7],[3,7],[1,1],[1,-4],[0,-5],[1,-2],[2,-1],[1,-2],[2,-5],[1,-2],[0,-1],[-1,-9],[0,-4],[-1,-4],[-2,-8],[0,-8],[1,-2],[0,1],[1,1],[0,4],[0,1],[0,4],[1,3],[1,5],[1,9],[1,2],[1,0],[3,-9],[1,0],[4,-2],[1,-1],[0,-1],[0,-3],[3,-2],[0,-2],[1,-3],[0,-8],[0,-8],[0,-3],[-2,-7],[-4,8],[-1,-1],[0,-3],[1,-2],[0,-2],[2,-2],[2,-7],[1,-4],[0,-2],[-2,-4],[-5,-1],[-3,6],[-1,3],[-1,5],[-1,2],[-2,5],[-2,3],[-1,-1]],[[1239,7160],[0,-1],[-1,2],[-3,11],[0,8],[-1,6],[-2,9],[-1,6],[-1,13],[-1,7],[-1,6],[0,2],[0,6],[1,2],[0,2],[1,2],[0,-1],[0,-1],[1,2],[0,2],[-1,2],[0,1],[-1,0],[0,-2],[-1,-2],[-1,-2],[-1,1],[0,8],[0,1],[-1,5],[-1,2],[-2,2],[-1,5],[0,3],[0,1],[1,1],[0,1],[0,2],[-1,1],[-1,-1],[-1,2],[-1,5],[0,3],[2,13],[0,1],[1,3],[-1,4],[-1,3],[0,5],[1,4],[1,1],[0,1],[0,6],[0,1],[-1,-1],[-1,0],[0,2],[1,1],[0,1],[-1,3],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,4],[-1,2],[0,3],[1,4],[0,2],[0,2],[1,4],[0,1],[0,2],[-1,1],[-1,0],[0,-1],[-1,0],[0,2],[-1,-1],[0,-1],[-2,-2],[0,1],[0,1],[0,2],[-1,5],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[-1,3],[0,2],[-1,2],[1,1],[0,1],[0,1],[1,-1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,2],[1,1],[0,2],[0,2],[0,1],[1,0],[0,1],[0,6],[0,5],[1,4],[2,5],[0,1],[2,-2],[1,-3],[1,-5],[-1,-2],[1,-3],[1,0],[1,2],[0,-1],[1,-5],[0,-1],[0,-2],[1,-1],[2,-4],[1,0],[0,1],[3,0],[1,-1],[1,-1],[1,-13],[0,-8],[0,-1],[-1,1],[-1,6],[-1,0],[-1,-1],[0,-1],[0,-2],[0,-1],[1,0],[1,-3],[1,-5],[0,-3],[3,-35],[0,-9],[0,-8],[0,-4],[1,-3],[0,-6],[0,-9],[1,-5],[0,-4],[1,-14],[0,-12],[1,-5],[-1,-15],[0,-3],[-1,0],[0,-3],[0,-4],[0,-2],[1,-4],[0,-12],[0,-17],[0,-6],[0,-3],[0,-13],[-1,-3],[0,-2]],[[1210,7375],[0,-1],[0,-1],[1,-6],[1,-3],[0,-1],[0,-2],[0,-1],[0,-1],[1,-2],[0,-1],[0,-7],[0,-4],[0,-2],[0,-1],[1,1],[0,-1],[0,-1],[0,-7],[0,-1],[-2,-14],[0,-1],[-1,0],[-2,-2],[-1,-1],[0,-1],[-1,-1],[-1,1],[0,6],[0,8],[1,4],[0,3],[1,1],[1,2],[0,5],[0,1],[0,3],[-1,1],[0,-1],[-1,4],[0,11],[0,9],[-1,3],[0,1],[0,2],[0,1],[1,0],[2,1],[1,-1],[0,-1],[0,-2]],[[880,7984],[0,-1],[0,-2],[0,-5],[-1,-5],[-1,-8],[0,-5],[-1,-5],[-1,-1],[1,-3],[1,0],[0,-1],[0,-3],[0,-5],[-1,-6],[-1,-5],[0,-7],[0,-3],[0,-5],[-2,-9],[0,1],[-1,4],[-1,3],[1,0],[-1,2],[0,1],[-2,2],[-1,0],[0,1],[0,3],[1,5],[2,26],[1,12],[1,1],[0,-1],[0,-4],[1,-3],[1,2],[0,3],[-1,1],[0,6],[0,1],[3,11],[2,3],[0,-1]],[[883,8007],[2,2],[2,-8],[0,-1],[-1,-6],[-3,-2],[-1,0],[0,6],[0,6],[0,2],[1,1]],[[869,8015],[1,-1],[2,-7],[0,-1],[0,-3],[-1,-2],[-1,-2],[-1,3],[-2,10],[2,5],[0,-1],[0,-1]],[[892,8047],[1,-3],[1,-1],[-1,-3],[-1,-4],[-2,1],[0,2],[-1,0],[-2,0],[-1,1],[1,1],[2,5],[1,0],[0,-1],[1,0],[1,2]],[[890,7931],[0,2],[0,3],[0,1],[-1,2],[1,1],[0,1],[1,5],[1,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[1,-1],[1,1],[0,-2],[0,-2],[-2,-5],[0,-3],[0,-2],[1,0],[3,8],[0,1],[1,0],[0,-1],[0,-2],[-1,-6],[-1,-7],[-4,-10],[-2,-5],[-2,-7],[-3,-13],[0,-6],[0,-1],[-2,-6],[-1,-3],[0,-1],[-1,-3],[1,-2],[0,-1],[1,-1],[0,-6],[0,-2],[-2,-4],[-1,1],[1,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,-3],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,0],[0,1],[-2,-4],[-1,-2],[-1,-2],[-1,2],[0,2],[0,9],[1,3],[0,2],[1,2],[1,0],[0,4],[0,3],[0,2],[2,6],[1,-1],[1,3],[0,1],[1,4],[2,9],[2,4],[1,2],[0,2],[1,3],[1,3],[2,12],[0,2],[0,2],[0,2],[1,0],[1,1],[0,4],[1,3],[0,5]],[[2,6242],[0,-2],[-1,-5],[0,-1],[-1,2],[0,9],[0,1],[1,3],[1,-3],[0,-4]],[[5,6256],[0,-1],[0,-2],[0,-1],[-1,-1],[0,13],[1,3],[0,1],[1,-3],[0,-4],[1,-4],[-2,-1]],[[9971,6311],[1,1],[2,-3],[1,-1],[0,-2],[0,-2],[0,-1],[0,-1],[2,-6],[2,-10],[1,-2],[1,-3],[1,-1],[1,-1],[0,-4],[1,-3],[0,-2],[0,-1],[1,0],[2,0],[1,0],[0,-1],[2,-5],[0,-1],[0,-1],[-2,-1],[0,1],[0,1],[-3,-2],[-2,3],[0,2],[0,1],[-3,9],[-1,3],[-1,4],[0,4],[-2,6],[0,2],[-3,7],[-1,-1],[-1,0],[0,1],[-2,3],[-2,6],[0,2],[0,4],[1,1],[0,-1],[0,-2],[1,-1],[1,-2],[1,0]],[[66,6355],[-1,8],[0,3],[1,6],[0,2],[1,0],[1,0],[0,-1],[2,1],[0,2],[1,3],[0,1],[1,0],[0,-1],[0,-1],[1,-12],[-1,-3],[0,1],[0,1],[0,1],[0,5],[-1,-1],[0,-8],[-1,-2],[0,-2],[0,-4],[2,-4],[1,0],[1,1],[3,4],[2,1],[1,0],[0,-2],[0,-8],[0,-6],[0,-3],[0,-5],[-2,-2],[-4,3],[0,2],[-1,1],[0,-1],[-2,-13],[0,1],[-3,-2],[-1,-4],[0,-5],[-2,-4],[0,3],[0,2],[0,3],[-1,5],[-1,-9],[-1,-8],[0,-1],[-1,1],[-1,1],[0,1],[0,5],[0,5],[0,1],[1,4],[1,2],[1,1],[0,4],[0,1],[0,1],[0,6],[-1,1],[0,3],[0,2],[0,2],[0,1],[2,1],[2,0],[0,9]],[[38,6338],[0,-1],[-1,-3],[-1,-4],[0,-2],[0,-1],[1,-1],[0,-1],[-1,-3],[0,-2],[-1,0],[0,2],[-1,-3],[0,-4],[0,-2],[0,-2],[1,-5],[0,-1],[-1,-1],[0,1],[0,2],[-1,2],[0,3],[0,2],[-3,4],[0,-1],[-1,1],[0,2],[0,4],[2,1],[2,2],[0,1],[0,3],[0,3],[0,2],[0,1],[0,1],[-1,1],[-1,0],[-1,1],[0,2],[0,2],[-3,6],[-1,3],[0,2],[0,1],[0,2],[0,4],[1,1],[1,1],[0,1],[1,0],[1,-1],[2,-1],[1,2],[0,-1],[1,-7],[0,-4],[2,-5],[0,-1],[3,1],[2,3],[2,2],[0,-1],[-1,-2],[0,-4],[-1,-1],[-2,-1],[-1,-3],[0,-3]],[[50,6329],[-1,1],[-1,0],[-1,-1],[0,-3],[-1,-1],[-1,-1],[-1,-1],[-1,2],[-1,-2],[0,-4],[0,-3],[0,-1],[-1,2],[-1,7],[0,1],[0,1],[2,5],[1,-2],[1,-1],[1,0],[1,3],[1,2],[5,7],[1,2],[1,3],[0,1],[0,5],[0,7],[0,8],[0,1],[0,1],[1,1],[1,0],[1,-1],[1,-5],[1,-2],[-1,-8],[-2,-3],[0,-1],[0,-4],[0,-9],[0,-5],[0,-2],[0,-4],[-3,-5],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,2],[-1,2],[0,1]],[[10,6332],[-1,1],[-1,6],[0,3],[0,4],[1,3],[0,1],[1,-1],[1,-2],[0,-3],[1,-5],[-1,-4],[-1,-2],[0,-1]],[[9960,6336],[0,1],[0,1],[-1,-1],[-1,0],[0,1],[-2,8],[0,2],[2,-1],[0,-1],[0,-1],[1,-1],[1,-6],[0,-2]],[[88,6359],[1,1],[0,-2],[0,-3],[0,-4],[-1,1],[-2,-1],[-1,-7],[-1,-1],[-1,1],[-1,1],[-1,2],[1,9],[0,2],[1,0],[0,-1],[0,-1],[1,-2],[1,-1],[1,2],[0,1],[-1,0],[-1,3],[1,0],[1,3],[1,1],[1,1],[0,-1],[0,-4]],[[9938,6383],[0,-2],[0,-1],[-1,-4],[-1,-2],[1,-2],[1,-1],[1,0],[0,-3],[-1,-2],[0,-1],[-1,-1],[-2,2],[-2,1],[-1,-2],[-1,-3],[0,-6],[0,-1],[0,-4],[0,-3],[-1,-1],[0,1],[0,1],[0,1],[0,1],[-1,2],[-1,3],[0,1],[-1,1],[0,2],[0,1],[1,2],[1,2],[1,0],[1,6],[0,2],[2,3],[2,1],[0,2],[1,3],[0,1],[0,4],[1,12],[0,4],[1,3],[2,-5],[0,-4],[0,-3],[0,-1],[-1,0],[0,-1],[0,-7],[-1,-2]],[[9998,6370],[0,-4],[0,-3],[-3,-7],[-1,0],[-2,5],[-1,4],[0,3],[0,9],[1,0],[0,-1],[0,1],[1,5],[1,1],[1,2],[1,-1],[1,-3],[2,-7],[0,-1],[0,-1],[0,-2],[-1,0]],[[9962,6376],[0,2],[1,0],[2,-3],[0,-1],[1,-3],[0,-1],[-1,-4],[-1,-4],[0,-1],[-1,0],[0,2],[-1,4],[0,5],[0,4]],[[97,6374],[0,1],[0,-1],[0,-1],[-1,-6],[-1,1],[0,2],[0,1],[0,3],[0,1],[2,-1]],[[87,6384],[-1,-2],[1,-3],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-2,6],[0,1],[-1,6],[0,5],[0,2],[1,5],[1,3],[2,-2],[2,-13],[0,-2],[-1,-1]],[[9953,6389],[0,1],[0,-1],[1,-2],[0,-1],[1,-5],[-1,-3],[-1,-1],[-1,3],[0,1],[0,5],[0,2],[1,1]],[[135,6432],[-1,1],[0,-1],[-1,0],[-1,2],[-1,3],[0,2],[0,1],[0,1],[2,-1],[0,-1],[1,1],[0,1],[1,3],[-1,2],[0,2],[0,2],[0,1],[4,7],[1,0],[2,-5],[2,-8],[1,-4],[0,-2],[0,-3],[0,-1],[-2,-9],[0,-4],[-1,0],[-1,1],[-2,1],[0,-1],[0,-2],[0,-1],[0,-3],[0,-2],[1,-1],[1,-3],[1,-5],[0,-1],[0,-1],[0,-4],[0,-1],[-1,2],[0,1],[-1,1],[-1,-1],[-1,-3],[-2,2],[-1,0],[0,-1],[-1,-2],[0,-3],[-1,-6],[-1,2],[-2,-1],[0,-1],[-1,-2],[-1,0],[0,1],[-1,-2],[-3,-4],[0,-1],[-1,5],[-3,2],[-3,-1],[0,-2],[-1,-1],[0,-3],[-2,-1],[0,1],[-2,1],[-3,1],[-1,0],[0,-1],[0,-1],[-1,3],[0,1],[4,4],[1,2],[1,0],[0,-1],[0,-1],[1,-3],[1,5],[2,0],[1,4],[1,2],[0,2],[0,1],[0,2],[1,-3],[1,-2],[1,0],[4,3],[2,3],[1,3],[0,3],[0,1],[1,3],[1,0],[0,1],[1,-1],[1,-2],[0,1],[0,2],[-1,4],[0,2],[0,1],[1,0],[1,-1],[1,-1],[1,1],[1,5],[0,6],[-1,1]],[[154,6409],[1,-2],[2,-7],[0,-1],[1,3],[3,-2],[0,-1],[0,-1],[4,1],[1,1],[2,0],[0,-2],[1,0],[2,0],[1,-1],[0,-1],[-2,-2],[-2,1],[-3,-3],[-2,-1],[-4,-2],[-2,-3],[-1,-1],[-2,4],[-3,3],[-2,-2],[-1,-1],[0,-1],[-2,1],[-1,2],[0,1],[-1,6],[0,1],[-1,-1],[-1,3],[0,2],[0,1],[0,1],[2,-1],[2,-1],[2,-2],[0,-1],[1,0],[2,4],[2,3],[1,1],[0,1]],[[9931,6393],[0,1],[0,1],[-1,2],[0,2],[-1,2],[0,3],[0,1],[1,2],[0,2],[1,2],[0,1],[1,1],[0,-1],[1,-1],[0,-2],[1,-2],[0,-2],[0,-4],[0,-1],[0,-2],[0,-1],[-1,-2],[-1,-1],[-1,-1]],[[181,6430],[1,6],[1,8],[0,1],[3,7],[1,1],[1,0],[2,-5],[0,-1],[1,-3],[0,-2],[-1,-2],[-2,-8],[-4,-5],[-2,0],[0,1],[-1,2]],[[9891,6443],[0,1],[-1,3],[0,2],[1,1],[1,-1],[1,-2],[-1,-4],[-1,0]],[[9827,6469],[1,6],[1,1],[2,0],[1,0],[0,-1],[-1,-2],[0,-1],[-1,-3],[0,-3],[-1,-3],[0,-1],[1,-1],[0,-2],[0,-5],[0,-7],[-2,0],[-1,4],[0,2],[0,2],[-1,0],[-1,-2],[-1,-1],[-1,0],[0,1],[-2,2],[-1,0],[0,1],[1,5],[1,4],[1,0],[0,-2],[1,-1],[1,2],[0,3],[0,1],[0,1],[1,1],[1,-1]],[[219,6464],[-1,4],[0,4],[0,2],[1,2],[0,2],[1,1],[2,-6],[-1,-5],[0,-1],[-1,-3],[-1,0]],[[231,6484],[1,8],[0,6],[0,1],[3,8],[1,3],[1,0],[2,-3],[0,-1],[0,-1],[0,-3],[0,-2],[-1,-8],[-1,-1],[-1,0],[0,1],[0,1],[-1,-1],[-1,-3],[-1,-5],[0,-2],[0,-1],[-2,3]],[[9840,6517],[1,2],[1,-2],[0,-1],[0,-2],[0,-2],[-1,0],[-1,2],[0,3]],[[250,6527],[1,0],[2,-2],[0,-1],[0,-2],[0,-3],[0,-4],[-1,-1],[-2,0],[0,1],[0,12]],[[9838,6515],[-1,1],[0,2],[0,2],[1,0],[0,-1],[1,-3],[-1,-1]],[[9836,6520],[0,1],[-1,-1],[0,2],[-1,3],[1,0],[0,-1],[1,-2],[0,-2]],[[9804,6534],[0,5],[0,2],[-1,3],[-3,9],[-1,-1],[-1,-1],[-1,-2],[-2,1],[0,3],[5,14],[0,1],[3,1],[10,-3],[1,-1],[1,-3],[0,-2],[1,-4],[1,0],[1,-3],[4,-15],[0,-3],[-3,-1],[-1,1],[-1,5],[-1,0],[0,-1],[-1,-4],[0,-5],[0,-1],[-1,-2],[-1,0],[-3,2],[-3,-7],[-2,5],[-1,7]],[[256,6541],[1,-2],[2,1],[1,4],[1,3],[1,0],[1,-1],[1,-4],[0,-8],[-1,-6],[-1,0],[-3,5],[-1,0],[0,-2],[0,-1],[-1,-2],[-1,-1],[0,1],[-1,2],[-1,5],[1,3],[0,2],[1,1]],[[305,6615],[-1,0],[-1,-3],[-1,-3],[0,-2],[-1,-5],[0,-6],[-1,-5],[0,-1],[-1,-2],[-1,-4],[0,-1],[0,-2],[0,-4],[-1,-3],[-1,-2],[-1,0],[0,1],[-1,-1],[-1,-3],[0,-2],[-2,-6],[-1,-3],[-2,-5],[-3,-8],[-3,-8],[-2,-3],[1,7],[1,2],[1,0],[0,1],[1,2],[3,15],[2,14],[0,5],[0,2],[0,2],[0,1],[0,1],[-1,1],[0,2],[0,5],[0,2],[1,1],[0,4],[4,15],[3,-2],[1,1],[0,1],[1,1],[1,-2],[1,-1],[1,2],[-1,9],[0,1],[-1,6],[1,16],[1,8],[1,1],[0,1],[2,6],[1,3],[2,2],[3,4],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-3],[1,-1],[1,0],[2,0],[0,-1],[1,-2],[-1,-2],[0,-3],[-1,-4],[0,-2],[-1,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[0,-1],[-1,-2],[-2,-5],[-1,-2],[-1,-3],[-1,-2],[-3,-7],[-1,-2]],[[255,6547],[0,-2],[0,-1],[-1,-1],[-1,-3],[-1,3],[0,4],[0,2],[0,3],[0,1],[2,0],[0,-2],[1,-1],[0,-1],[0,-2]],[[263,6557],[-1,1],[0,3],[-1,1],[0,1],[1,8],[1,2],[1,0],[0,-2],[0,-5],[-1,-7],[0,-2]],[[346,6754],[1,3],[1,0],[1,-1],[0,-2],[1,-3],[0,-5],[-1,0],[0,-1],[-1,-5],[0,-2],[1,-4],[1,-2],[0,-1],[1,0],[2,3],[1,3],[0,1],[0,1],[0,7],[2,10],[0,-2],[0,-1],[0,-3],[1,-4],[1,5],[1,-1],[1,-9],[0,-3],[0,-6],[-1,-1],[-2,-1],[-1,-3],[-1,-4],[0,-5],[-1,-2],[-3,-9],[0,-4],[0,-2],[2,4],[0,1],[2,3],[2,5],[1,1],[2,5],[0,2],[1,1],[2,4],[1,-2],[0,-1],[-1,-12],[-1,-8],[-1,-1],[-2,-5],[0,-1],[0,-2],[-1,0],[-4,-8],[-1,1],[-2,-3],[0,-2],[-1,-17],[-2,-8],[-2,2],[0,2],[0,1],[-1,-3],[-1,-8],[-2,-2],[0,-3],[-1,2],[-1,3],[-1,-5],[-2,4],[0,-3],[-1,-2],[-1,-1],[0,1],[0,1],[-2,-6],[-3,-6],[0,-5],[0,-1],[-1,0],[-1,2],[-2,-4],[-1,-5],[0,-5],[-1,0],[0,1],[-1,1],[-1,2],[-1,-1],[0,-6],[-1,0],[-4,6],[-1,3],[0,2],[0,1],[1,4],[3,8],[0,1],[1,1],[1,-1],[4,6],[0,3],[0,1],[1,1],[1,-1],[1,-1],[1,-2],[0,2],[1,3],[0,3],[1,2],[1,-1],[0,-1],[1,-1],[0,1],[1,7],[2,2],[-1,5],[0,1],[0,1],[-1,10],[0,2],[0,2],[1,1],[1,0],[0,-1],[0,-1],[1,0],[1,3],[0,1],[0,1],[0,1],[-2,2],[1,4],[0,3],[0,1],[1,2],[3,0],[1,-8],[0,-3],[1,0],[1,1],[1,10],[-1,3],[-2,3],[-2,4],[0,1],[-1,0],[0,-1],[0,-1],[-1,-2],[0,1],[-2,5],[-2,8],[0,7],[3,12],[1,3],[2,5],[2,3],[1,1],[2,4],[1,0],[0,-3]],[[267,7242],[1,0],[1,0],[1,-2],[-1,-3],[-2,-8],[-1,-1],[-1,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,2],[0,1],[-2,2],[-1,4],[0,1],[3,-2],[2,-1],[1,1]],[[247,7339],[0,3],[-1,2],[-1,0],[-2,1],[0,2],[0,4],[1,2],[0,1],[2,2],[1,-1],[0,-1],[1,1],[2,3],[1,-1],[-1,-8],[-3,-10]],[[655,7111],[2,0],[0,-2],[0,-3],[-1,-6],[1,-8],[0,-3],[-1,-6],[-1,3],[-2,-1],[-1,2],[0,8],[0,1],[2,6],[1,6],[0,3]],[[689,7235],[1,-2],[0,-1],[-2,-4],[-2,-6],[-1,-2],[-2,-4],[-1,-3],[-1,-3],[0,-3],[-1,-4],[-1,0],[0,2],[-1,1],[0,2],[0,1],[1,5],[1,7],[1,4],[5,15],[0,1],[2,-1],[1,-2],[0,-2],[0,-1]],[[702,7232],[1,2],[1,0],[0,-2],[0,-1],[0,-3],[-2,-5],[-1,-1],[-4,0],[0,1],[-1,0],[-1,-1],[-1,-2],[-2,2],[-1,1],[0,1],[-1,2],[0,3],[1,4],[1,4],[0,2],[2,3],[0,1],[1,-1],[0,-1],[2,1],[0,1],[1,0],[0,-2],[0,-3],[0,-1],[1,-5],[1,-1],[2,1]],[[745,7467],[1,3],[0,1],[1,-2],[1,-8],[-1,-2],[0,-2],[0,1],[0,1],[-1,1],[-2,0],[-1,-2],[-1,-5],[0,-1],[1,-10],[1,-2],[1,3],[-1,-8],[-1,-7],[0,-1],[0,-1],[1,-1],[0,1],[1,3],[1,2],[1,1],[2,0],[2,0],[1,-1],[0,-5],[0,-2],[-3,-10],[-1,-2],[0,-6],[-1,-4],[0,-4],[-1,-3],[-1,1],[-3,4],[0,-4],[-2,3],[0,4],[-2,-1],[-1,0],[-1,2],[0,1],[0,1],[0,1],[0,3],[-1,-1],[-1,-2],[-1,1],[0,1],[-1,1],[-2,2],[-1,-1],[0,-1],[1,-2],[1,1],[0,-3],[4,-5],[1,-2],[0,-3],[2,-4],[1,-1],[0,-1],[1,-4],[-1,-3],[0,-8],[-1,-3],[-1,-4],[0,-1],[-1,0],[-1,2],[-1,-2],[-1,-2],[-1,4],[-1,3],[0,4],[-2,3],[-1,-1],[-1,-1],[-1,-2],[0,-2],[-1,-2],[1,-2],[1,1],[1,1],[1,-3],[1,-5],[0,-2],[-2,-3],[-1,-3],[-1,-1],[-1,1],[-1,0],[0,1],[-1,0],[-1,-1],[0,-1],[0,-1],[2,-4],[1,-1],[1,1],[0,1],[4,0],[2,-4],[0,-1],[0,-2],[-1,-3],[0,-1],[-1,-2],[-2,0],[-3,-5],[0,1],[0,1],[-1,0],[-1,-1],[-1,-4],[0,-1],[0,-2],[0,-1],[1,0],[0,-2],[0,-2],[-1,-5],[-2,-3],[-1,3],[0,1],[0,5],[0,1],[-1,5],[-1,-2],[0,2],[0,2],[1,7],[1,4],[2,6],[0,1],[-1,1],[0,2],[-1,0],[-1,-1],[0,-1],[0,-1],[-3,-17],[0,-2],[0,-2],[-2,3],[0,2],[-1,0],[-2,-1],[0,-3],[0,-3],[2,1],[0,-1],[0,-1],[1,-10],[0,-5],[-1,-5],[-1,-1],[-1,-1],[-1,-1],[-1,-6],[0,-3],[1,0],[0,1],[0,-2],[0,-2],[0,-2],[-2,-3],[-1,2],[0,1],[-1,-2],[0,-1],[-2,-8],[0,-5],[-1,-3],[-1,-1],[-1,0],[0,2],[0,2],[-1,0],[0,-1],[-1,-2],[0,-1],[-1,0],[-1,0],[1,7],[2,11],[0,1],[0,1],[0,1],[1,0],[1,6],[1,5],[1,2],[1,4],[1,2],[-1,1],[-1,1],[0,-1],[-1,-1],[-1,0],[0,1],[0,6],[1,13],[2,4],[0,1],[2,4],[1,4],[0,2],[0,3],[-1,0],[0,-1],[-1,-2],[0,-1],[-1,-4],[-3,-10],[0,-3],[-1,-6],[-1,-5],[-1,-4],[-1,-2],[0,-2],[-1,0],[0,-1],[-1,-6],[-1,-3],[0,-2],[0,-1],[0,-1],[-1,-3],[-1,-2],[0,1],[0,2],[0,6],[0,3],[0,2],[-2,7],[-1,2],[-2,3],[-1,1],[0,2],[0,6],[0,9],[0,17],[0,2],[0,3],[-1,8],[-1,3],[-1,2],[-2,3],[-1,-1],[-1,0],[-1,2],[2,3],[0,2],[1,16],[0,2],[0,2],[0,4],[2,12],[0,1],[1,1],[1,4],[1,7],[1,-1],[1,0],[1,2],[0,3],[2,6],[3,6],[1,0],[0,-1],[3,-2],[1,1],[1,2],[1,-1],[0,-2],[0,-8],[0,-10],[0,-2],[1,0],[1,-1],[0,-1],[0,-2],[0,-4],[0,-2],[0,-8],[0,-4],[3,-13],[0,-1],[1,2],[0,3],[-1,7],[-2,6],[0,1],[0,10],[0,7],[0,2],[1,2],[0,3],[1,2],[-1,2],[0,3],[-1,3],[0,1],[0,2],[1,1],[3,-1],[1,-1],[1,-1],[0,1],[0,2],[0,2],[0,1],[-4,5],[-2,2],[-1,-2],[-1,2],[0,20],[3,10],[2,3],[1,1],[2,-1],[3,-9],[0,-9],[0,-4],[0,-1],[0,-5],[0,-2],[0,-1],[1,0],[1,2],[0,7],[1,6],[-1,3],[0,4],[0,1],[1,0],[1,-2],[2,-4],[0,1],[0,3],[0,1],[0,3],[-2,2],[-1,3],[0,1],[-2,5],[0,2],[-1,2],[1,2],[0,4],[0,1],[1,2],[1,-1],[0,-2],[5,-14],[1,1],[3,-7],[1,1],[0,1],[-3,12],[-1,2],[-1,3],[-1,5],[0,1],[0,1],[1,1],[1,-1],[0,-1],[0,-1],[3,-7],[1,-2],[1,0],[0,1],[1,3],[4,-5],[0,3],[1,5],[-1,4],[1,0],[3,-1],[0,-8],[-1,-2],[-1,-7],[-1,-1],[-2,-10],[0,-2],[0,-4],[0,-7],[0,-4],[0,-1],[1,-1],[1,0],[0,2],[0,1],[-1,3],[1,10],[0,1],[0,3],[1,2],[1,-3],[0,-1],[1,0],[2,5],[1,4],[0,1],[-1,2],[0,1],[0,2],[1,1],[1,1],[0,-3],[0,-2],[1,0],[1,3],[1,5],[0,4],[1,2],[1,0],[0,-1],[0,-4],[-1,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,-2],[0,-2],[-1,-4],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,-3],[1,-12],[0,-1],[1,-1]],[[750,7547],[-2,0],[0,-4],[1,-16],[0,-2],[-2,-1],[-2,1],[-1,1],[-1,0],[-1,-3],[0,-4],[0,-1],[-1,0],[-1,5],[1,9],[0,2],[0,1],[-1,2],[0,-1],[-1,-12],[0,-7],[-1,-4],[-1,-2],[-2,0],[0,3],[-1,2],[0,1],[-2,3],[-2,4],[-1,1],[0,2],[-1,0],[-2,-6],[0,-1],[1,-4],[0,-4],[1,-2],[1,-2],[3,-6],[0,-1],[-2,-2],[-1,0],[-3,4],[-3,5],[-1,2],[-2,1],[-1,-1],[-1,-1],[-1,4],[0,1],[0,1],[3,13],[1,2],[0,-1],[1,-4],[1,-4],[1,-3],[0,1],[0,3],[0,4],[-1,4],[-1,2],[1,9],[1,1],[2,-4],[1,0],[0,1],[1,3],[0,1],[-1,3],[-1,2],[0,2],[0,1],[1,8],[1,-1],[1,-1],[0,-1],[1,-2],[2,1],[0,1],[0,3],[-1,0],[0,2],[-1,3],[0,1],[1,2],[1,-2],[1,-2],[1,2],[1,6],[-1,0],[-1,1],[-1,5],[0,2],[0,-1],[1,-1],[1,0],[0,2],[1,1],[0,2],[1,6],[1,0],[2,3],[1,3],[0,1],[-1,0],[0,-1],[-1,3],[0,7],[0,4],[0,4],[1,2],[1,4],[1,0],[0,-2],[0,-2],[0,-1],[1,0],[2,5],[2,3],[1,0],[0,-1],[0,-8],[-1,-11],[-1,-1],[0,-2],[-2,-7],[-1,-5],[0,-1],[0,-3],[1,-14],[2,1],[1,1],[1,5],[0,2],[-1,2],[0,1],[0,1],[1,2],[1,-1],[0,-2],[2,-8],[0,-2],[0,-1],[1,-1],[2,8],[1,-4],[0,-1],[-1,-7],[-1,-7],[0,-5],[0,-3],[1,-1],[0,3],[0,3],[1,6],[3,7],[0,-3],[0,-1],[0,-11],[0,-7],[0,-3],[-3,-11],[-1,-1],[-2,5],[-1,3],[0,2],[0,1],[1,1],[-1,5]],[[1286,7210],[1,2],[1,1],[0,1],[1,-1],[1,-2],[1,-1],[0,2],[1,0],[1,2],[0,-1],[2,-3],[1,-3],[0,-1],[0,-5],[-1,-3],[0,-1],[0,-3],[-1,-1],[1,-3],[0,-2],[0,-3],[0,-2],[0,-4],[-2,-3],[-1,0],[-2,-3],[-1,0],[-4,13],[-1,2],[0,2],[0,4],[0,1],[0,2],[1,9],[0,1],[1,1],[0,2]],[[1217,7577],[0,-1],[-1,-2],[-1,1],[-1,3],[-1,4],[-1,0],[-2,-6],[-3,-1],[-2,-2],[-1,0],[0,1],[0,1],[1,5],[0,6],[-1,3],[0,-3],[-2,3],[0,1],[0,2],[0,1],[1,1],[1,0],[1,3],[0,1],[0,4],[-1,1],[0,6],[0,9],[-2,17],[0,2],[0,2],[0,2],[-1,7],[-1,5],[0,1],[0,2],[1,2],[0,15],[-1,2],[-1,8],[-1,2],[-1,0],[0,-1],[1,-2],[0,-3],[1,-4],[0,-11],[-1,-20],[-1,-1],[-1,-1],[-1,1],[-4,11],[-1,1],[-1,2],[-1,2],[-1,17],[0,4],[0,3],[-1,-1],[0,-1],[0,-2],[0,-3],[0,-4],[-2,-4],[-1,1],[0,2],[-1,2],[0,2],[-1,1],[-1,1],[0,-2],[-1,-1],[-1,2],[0,2],[0,4],[-2,-3],[0,-2],[0,-4],[0,-1],[0,-2],[2,-3],[3,-2],[0,1],[2,-4],[2,-2],[1,-1],[1,-4],[2,-7],[3,-17],[0,-1],[0,-3],[-1,-3],[0,-1],[-1,0],[-1,-2],[0,-4],[0,-1],[2,4],[1,3],[1,3],[0,1],[2,-1],[1,3],[0,-1],[0,-2],[1,-15],[0,-9],[0,-1],[2,-5],[0,-5],[1,-5],[0,-3],[1,-3],[0,-7],[-2,-6],[0,-1],[-4,-5],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,2],[0,2],[0,1],[-1,2],[-2,-3],[1,-3],[0,-1],[0,-3],[0,-5],[-1,-1],[-2,2],[-2,5],[0,2],[-2,1],[-1,-1],[0,-3],[1,-1],[1,-8],[0,-2],[0,-4],[0,-5],[-1,-1],[0,-1],[-1,0],[-2,2],[0,5],[0,2],[0,3],[0,2],[-1,1],[-1,0],[-2,5],[0,2],[-2,12],[-1,3],[-1,0],[-2,-2],[-1,-1],[-1,3],[-1,4],[-2,5],[-1,1],[0,1],[-3,9],[-3,8],[-2,6],[-1,2],[-2,3],[0,1],[0,5],[0,2],[0,1],[-3,11],[-2,7],[-1,1],[-1,3],[0,2],[0,2],[0,2],[0,1],[0,2],[0,3],[0,4],[0,4],[-1,4],[-3,9],[-2,6],[1,2],[0,2],[0,2],[-1,1],[-3,4],[-10,15],[-2,6],[-2,6],[-2,6],[-2,4],[-4,6],[-6,11],[-2,4],[-2,4],[-4,8],[-1,4],[-4,11],[-3,6],[-1,2],[1,2],[0,1],[1,-1],[1,1],[0,7],[1,6],[0,1],[0,1],[1,0],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,3],[2,9],[0,4],[-1,-1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,2],[0,4],[-1,3],[0,3],[-1,10],[0,4],[0,5],[0,1],[1,0],[0,1],[2,3],[0,1],[1,10],[0,3],[-1,5],[-1,0],[-1,-4],[0,-11],[-2,-2],[-1,-1],[0,-1],[-2,-11],[0,-5],[0,-1],[-1,-2],[0,-1],[-3,-4],[-5,-10],[-1,-1],[-1,-1],[0,-1],[-1,-2],[0,-2],[-2,-3],[-1,0],[-2,0],[-6,2],[-1,0],[-3,1],[-4,4],[-1,1],[-3,6],[-4,7],[-1,3],[-6,7],[-1,1],[0,3],[0,16],[-2,1],[-3,-3],[-2,-3],[-5,10],[-1,2],[-1,2],[-1,0],[-2,0],[-1,1],[-1,1],[-3,3],[-8,7],[-2,0],[-3,1],[-3,1],[-2,-1],[-5,-4],[-2,-1],[-1,0],[-7,-2],[-5,-3],[-2,-2],[-6,-6],[-1,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,2],[0,2],[-3,10],[-2,5],[0,1],[-1,4],[0,3],[-2,1],[-1,0],[0,-3],[-2,-2],[-1,1],[0,3],[-1,1],[-1,0],[0,-1],[0,-1],[-1,1],[-2,4],[0,4],[0,1],[0,2],[0,1],[-2,5],[-1,2],[-1,2],[-3,0],[0,-2],[-1,1],[1,14],[1,8],[0,2],[1,5],[0,2],[-1,0],[-1,0],[0,-2],[-2,0],[0,1],[-1,0],[-3,-4],[-1,-1],[-1,-3],[0,-2],[0,-4],[1,-8],[1,-7],[0,-1],[-3,2],[-4,7],[-4,10],[0,3],[0,1],[0,1],[0,1],[-1,1],[0,3],[-1,1],[-2,3],[-2,2],[-2,-3],[-1,-3],[-1,0],[-2,2],[0,1],[0,1],[1,5],[1,2],[2,3],[2,12],[0,2],[-1,0],[0,-3],[-1,-3],[-1,-2],[-4,-7],[-2,-4],[-1,-2],[-1,-2],[-3,-4],[-2,2],[-1,-1],[0,-1],[0,-4],[0,-4],[1,1],[1,1],[4,3],[0,-1],[0,-1],[1,-2],[-1,-5],[-2,-5],[-2,-2],[-1,0],[-3,-4],[-1,-4],[-1,-2],[-2,-4],[-1,-6],[-1,0],[-1,0],[-1,6],[0,1],[0,1],[0,2],[1,2],[2,3],[1,0],[0,3],[1,3],[-1,1],[-1,0],[0,-1],[-1,-2],[-1,0],[-2,1],[0,2],[0,5],[0,2],[3,13],[0,4],[1,1],[2,0],[0,-1],[0,-2],[2,-2],[2,3],[2,3],[0,3],[4,2],[2,4],[4,6],[2,1],[1,1],[1,1],[0,1],[0,1],[0,1],[-1,1],[-1,-1],[-1,0],[0,1],[0,3],[0,4],[1,1],[0,2],[1,3],[0,1],[-1,0],[0,-1],[-1,-2],[0,-1],[0,-3],[0,-1],[-1,-3],[-1,-2],[-1,-1],[0,1],[0,1],[0,3],[1,5],[1,3],[1,2],[0,2],[0,2],[-2,-6],[-1,-3],[0,-1],[-1,-1],[-1,-1],[-1,-2],[0,-1],[-1,0],[0,-1],[-1,-1],[-2,-1],[0,1],[0,1],[0,2],[0,1],[0,1],[2,7],[2,3],[0,1],[1,1],[1,5],[0,2],[0,2],[0,2],[-1,-1],[0,-2],[-1,-3],[-1,-3],[-1,1],[0,1],[0,1],[-1,0],[0,-1],[0,-3],[0,-1],[-1,-1],[-1,0],[0,1],[0,1],[0,2],[-1,1],[-1,-4],[-1,-4],[0,-1],[-2,-2],[-1,2],[-2,0],[0,-1],[-1,-1],[-1,1],[0,2],[-1,7],[0,2],[3,3],[1,-2],[1,4],[1,0],[3,3],[2,2],[1,2],[2,7],[1,3],[0,1],[-1,1],[-2,-1],[-1,-4],[0,-3],[-1,-1],[-2,-2],[-4,-1],[-2,11],[-1,1],[-1,-4],[-1,-3],[0,-1],[1,-2],[-1,-1],[-1,-1],[-1,0],[0,2],[0,4],[0,3],[0,2],[1,2],[1,-2],[1,1],[0,5],[-1,2],[0,5],[0,4],[1,6],[1,11],[0,2],[-1,1],[-2,-4],[-2,-8],[-1,-3],[0,-1],[0,-1],[0,-2],[-1,-3],[-2,-2],[-2,1],[0,1],[0,3],[0,2],[0,3],[0,3],[-1,1],[-1,-1],[0,-5],[0,-3],[0,-3],[0,-1],[-1,-2],[-1,2],[0,1],[-1,1],[0,2],[0,1],[0,3],[0,-1],[-1,-1],[0,-2],[0,-9],[-3,-7],[-2,3],[0,1],[0,5],[0,3],[-1,3],[-1,-6],[0,-1],[1,0],[0,-1],[-1,-4],[0,1],[-1,1],[0,1],[1,21],[0,2],[0,5],[1,2],[-1,5],[0,1],[-1,0],[0,-2],[0,-2],[-1,-12],[-1,-9],[0,-3],[1,-7],[0,-8],[0,-4],[-1,-1],[-1,-1],[0,1],[0,5],[0,1],[0,1],[-2,5],[-1,1],[0,-8],[0,-2],[0,-1],[1,-1],[0,-5],[0,-1],[0,-1],[-1,0],[-2,1],[-2,1],[0,-1],[0,-1],[-3,-6],[-2,1],[-1,1],[0,1],[-1,4],[1,2],[1,13],[0,4],[1,3],[1,7],[2,10],[0,3],[0,3],[-1,2],[0,-2],[0,-1],[-2,-9],[-1,0],[0,1],[0,5],[-1,6],[0,1],[-1,-1],[0,-5],[0,-8],[-1,-5],[0,-4],[-1,-3],[-1,0],[0,-3],[0,-11],[-1,-4],[-1,-6],[0,-1],[-1,0],[0,1],[0,1],[-1,3],[-1,-4],[0,-2],[0,-1],[0,-3],[1,-1],[0,2],[1,0],[0,-1],[1,-2],[0,-4],[-1,-10],[0,-3],[1,1],[1,6],[1,8],[0,1],[1,1],[3,-1],[0,-2],[1,-2],[0,-12],[0,-2],[-1,-8],[-3,-5],[0,1],[0,-1],[-1,-5],[-1,-3],[0,-4],[-1,0],[0,-5],[0,-3],[1,-2],[1,1],[1,2],[0,2],[0,1],[0,2],[1,7],[3,7],[0,1],[0,-1],[3,-14],[1,-3],[0,-3],[-1,-1],[1,-7],[-1,-17],[-1,-14],[-1,0],[-2,0],[0,3],[-1,2],[0,1],[1,2],[0,1],[-1,2],[-1,0],[0,-1],[0,-3],[0,-2],[0,-1],[-2,-5],[-1,-2],[-1,-8],[0,-1],[1,1],[1,6],[2,2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[1,-3],[1,0],[0,1],[0,2],[0,2],[1,1],[1,-5],[-1,-4],[0,-1],[0,-1],[0,-2],[0,-1],[1,1],[0,2],[0,2],[1,1],[0,1],[2,-5],[0,-2],[-1,-2],[0,-1],[-1,0],[-1,-6],[-1,-8],[1,-2],[0,2],[1,3],[1,4],[0,2],[2,3],[1,-1],[1,-3],[0,-2],[0,-1],[-3,-7],[-1,-5],[0,-6],[0,-1],[1,0],[2,7],[1,5],[0,1],[1,1],[0,1],[1,-3],[0,-1],[0,-3],[-1,-7],[-2,-4],[-2,-4],[-1,-1],[-1,2],[0,2],[0,2],[-1,-2],[0,-2],[-1,-2],[-1,-1],[-2,0],[0,1],[1,7],[0,1],[1,-1],[1,0],[0,1],[0,1],[0,1],[-1,3],[-1,-2],[-2,-1],[-1,3],[0,5],[1,1],[0,17],[-1,2],[0,1],[-1,-1],[0,-1],[-1,-6],[0,-11],[0,-12],[-1,-6],[-1,-1],[0,2],[-1,1],[0,1],[0,1],[0,2],[0,1],[-1,-1],[-1,-3],[0,-1],[-1,-5],[-1,-2],[-1,1],[0,1],[0,2],[0,1],[0,1],[0,-1],[-1,-1],[-1,0],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,-2],[-1,0],[0,1],[0,2],[0,1],[-1,2],[0,1],[0,1],[0,1],[-1,0],[-1,-2],[0,-2],[-1,0],[0,1],[0,1],[0,2],[-1,-3],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,3],[1,2],[0,2],[0,1],[-1,2],[-1,-3],[-1,0],[-2,-6],[0,-5],[-1,-8],[-1,-7],[-1,16],[0,2],[-1,14],[0,5],[-1,0],[-1,-2],[0,-17],[0,-1],[0,-1],[-1,-7],[-1,2],[-1,-8],[-1,-10],[1,-8],[1,-3],[-1,-11],[-2,1],[-1,8],[-1,10],[-1,11],[-1,-9],[0,-24],[0,-3],[0,-4],[-1,-2],[0,-1],[-2,4],[0,10],[-1,6],[-2,3],[-2,-3],[0,-3],[1,-3],[1,-2],[0,-5],[0,-4],[-1,-2],[-1,-5],[0,-8],[-1,4],[-1,2],[0,-8],[-2,-8],[-1,-4],[-1,-4],[-2,-2],[-1,1],[1,5],[0,4],[0,7],[-1,0],[-1,-8],[-1,-8],[-1,-10],[-1,-1],[0,1],[-1,1],[0,2],[1,0],[0,1],[0,1],[-1,1],[0,1],[0,2],[0,4],[0,2],[0,4],[0,4],[0,1],[-1,-2],[0,-2],[-1,-3],[0,-1],[-1,1],[0,-1],[0,-3],[0,-2],[1,-2],[0,-2],[1,0],[0,-1],[0,-2],[0,-1],[0,-2],[0,-3],[0,-1],[-1,-3],[-1,-1],[0,4],[0,2],[-1,1],[-1,-2],[0,-1],[-1,-4],[0,-4],[0,-5],[-1,-2],[-1,-1],[0,-1],[-1,-7],[-1,-1],[0,-1],[0,-4],[0,-2],[0,-1],[0,-2],[-1,-4],[-1,-1],[0,1],[-1,-1],[0,-1],[0,2],[0,2],[0,1],[0,1],[0,3],[-1,-1],[0,2],[0,3],[0,1],[-1,-2],[0,-1],[0,-3],[-1,-1],[0,-4],[0,-2],[0,-2],[0,-2],[-1,-1],[-1,0],[0,1],[-1,2],[0,1],[-1,-1],[0,2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,3],[-1,3],[-1,2],[0,2],[0,3],[-1,-2],[0,-3],[0,-1],[-1,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[-1,-1],[0,-1],[0,-3],[0,-1],[0,-1],[-3,0],[-1,0],[0,-1],[-1,1],[0,3],[0,5],[0,2],[0,1],[-2,-2],[-1,1],[-1,3],[0,1],[0,2],[-1,2],[0,-1],[-1,-1],[0,1],[0,12],[0,5],[1,1],[0,1],[1,1],[0,3],[0,1],[0,3],[0,1],[0,4],[2,3],[2,2],[0,-1],[1,-1],[0,1],[0,4],[1,1],[1,2],[2,-2],[1,-1],[0,1],[1,1],[1,0],[0,-1],[0,2],[0,4],[1,5],[0,2],[2,0],[1,2],[2,1],[0,1],[0,1],[0,2],[-1,2],[0,1],[0,1],[3,-1],[-1,-3],[0,-1],[0,-2],[1,0],[1,5],[0,1],[0,1],[-1,2],[-1,4],[0,2],[0,1],[1,1],[2,3],[0,1],[0,1],[0,3],[0,3],[3,8],[2,7],[-1,-2],[-1,1],[0,1],[-1,1],[-1,-1],[-1,-3],[-2,-5],[-1,-4],[-3,-8],[-1,-1],[-2,-2],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,-2],[-4,3],[-1,3],[-2,4],[-1,4],[-1,3],[-1,3],[0,2],[0,4],[0,2],[0,2],[1,4],[0,6],[1,6],[0,2],[0,2],[1,4],[0,5],[1,12],[1,4],[1,5],[1,5],[0,3],[2,5],[1,3],[1,4],[1,9],[1,3],[0,7],[0,5],[0,6],[1,6],[0,1],[0,2],[2,2],[0,6],[0,3],[0,4],[0,11],[0,1],[1,5],[0,1],[-1,2],[-1,2],[0,2],[0,2],[0,4],[0,1],[-1,3],[0,3],[-1,4],[0,4],[0,3],[0,2],[0,1],[1,1],[2,1],[0,2],[1,0],[0,2],[0,1],[0,1],[0,1],[1,1],[3,1],[1,0],[1,1],[0,1],[0,1],[1,1],[3,9],[0,1],[1,3],[1,3],[2,3],[1,5],[1,4],[2,3],[1,2],[2,3],[0,1],[1,2],[1,1],[1,3],[1,-1],[0,-2],[1,-6],[1,-4],[1,-4],[0,-2],[1,-1],[1,-1],[3,-2],[1,-1],[0,1],[0,1],[2,2],[1,1],[1,5],[1,1],[1,0],[1,0],[1,-1],[0,5],[0,1],[0,4],[0,1],[-1,3],[0,1],[-1,3],[0,3],[-1,1],[-2,4],[-1,3],[-2,5],[-1,1],[0,1],[0,2],[2,7],[0,4],[0,1],[0,1],[-2,3],[-2,1],[-2,1],[-1,-1],[0,-1],[-1,0],[0,1],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,1],[-2,6],[0,-1],[-1,0],[-1,1],[0,2],[0,1],[0,-1],[-1,-4],[0,-1],[0,-2],[-1,-1],[-3,-4],[0,-1],[-1,-1],[-1,-2],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-7],[0,-1],[-1,-8],[0,-1],[0,-2],[-1,-2],[-1,-3],[0,-1],[-2,-1],[-1,0],[0,-1],[-1,-1],[0,-2],[-1,-1],[-2,0],[-1,0],[-2,-4],[-1,-3],[-1,-3],[-1,-2],[0,-1],[-1,-4],[-1,-1],[0,-2],[0,-2],[-2,-5],[0,-1],[0,-1],[0,-3],[0,-3],[0,-2],[1,-5],[2,-10],[0,-1],[-1,-2],[0,-1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,2],[0,1],[-1,1],[0,-1],[0,-2],[1,0],[-1,-1],[0,-1],[-1,-2],[0,1],[0,2],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-3,-6],[-1,-11],[-1,-11],[-1,-2],[-2,-5],[-1,-6],[-1,-2],[0,-4],[0,-3],[0,-3],[0,-2],[1,-2],[0,-2],[2,-3],[-2,-5],[-1,-2],[-1,0],[0,-1],[0,-1],[0,-4],[0,-2],[-1,-3],[0,-2],[0,-1],[-1,0],[-1,-2],[-1,-4],[-1,-2],[0,-2],[0,-1],[-2,-1],[0,1],[-1,1],[0,2],[0,1],[-1,-1],[-1,0],[-1,-1],[1,-2],[-1,-3],[0,-1],[0,-3],[1,-2],[1,-2],[0,-3],[0,-2],[1,-3],[1,-1],[1,-3],[0,-4],[0,-2],[0,-4],[0,-2],[-1,-2],[0,-2],[0,-1],[-1,-4],[-1,-4],[0,-7],[0,-2],[0,-1],[-1,-2],[-2,-1],[0,-2],[0,-2],[-2,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,1],[-1,-1],[-1,-2],[-2,-2],[-2,0],[0,-1],[-1,-4],[0,-1],[-1,-2],[1,-1],[1,2],[1,0],[1,-3],[1,1],[1,4],[2,0],[0,-1],[1,-4],[0,-3],[-1,-13],[-1,-6],[-2,-2],[-1,-5],[-2,-3],[0,-1],[-1,1],[0,1],[0,5],[-1,0],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[-1,-1],[-1,2],[0,1],[-1,0],[0,1],[0,2],[0,1],[1,2],[0,4],[0,8],[-2,10],[0,1],[0,-5],[0,-4],[0,-3],[0,-2],[0,-3],[0,-2],[-1,-7],[0,-2],[-2,-2],[0,1],[-1,3],[0,-3],[-1,-2],[0,-1],[1,-2],[1,-1],[0,-1],[0,-2],[-1,-6],[0,-1],[-1,0],[0,1],[-1,0],[-2,-1],[-1,-1],[0,-4],[1,-3],[1,-6],[0,-2],[-1,-6],[0,-1],[-2,-2],[-1,0],[-1,1],[-1,-1],[0,-1],[0,-1],[-1,-4],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,1],[-1,1],[0,-1],[-1,-3],[0,-1],[-1,0],[0,-1],[0,-1],[1,-2],[2,0],[0,-1],[0,-2],[-2,-2],[-1,-3],[0,-2],[0,-5],[0,-9],[0,-1],[-1,-7],[-1,-4],[-1,-1],[-1,0],[0,-1],[0,-4],[1,-1],[0,1],[0,1],[2,0],[0,-1],[0,-3],[0,-2],[0,-1],[-1,-3],[0,-2],[0,-3],[1,-4],[0,-2],[0,1],[1,2],[1,2],[1,6],[1,1],[2,-2],[3,-2],[1,2],[0,1],[2,-3],[0,1],[0,1],[1,2],[1,-9],[1,-4],[2,-4],[1,-1],[0,1],[1,2],[1,-1],[0,-3],[0,-1],[1,0],[0,-3],[1,-1],[0,-4],[1,-1],[0,-2],[1,-6],[0,-1],[0,-1],[0,-1],[1,1],[0,-1],[0,-1],[-1,-2],[-1,1],[0,-1],[-1,-2],[0,-2],[0,-5],[0,-6],[-1,-4],[0,-4],[-1,-2],[0,-1],[-1,1],[-2,-5],[-1,-3],[0,-3],[0,-2],[0,-1],[-2,-5],[-3,-1],[-1,0],[-1,1],[-2,-1],[0,-1],[0,-15],[0,-1],[-1,-3],[0,-1],[0,-1],[-1,0],[0,1],[-2,-1],[0,-2],[-1,-1],[0,-2],[1,-2],[0,-2],[0,-4],[0,-2],[1,-1],[1,-2],[0,-3],[-3,-5],[-1,1],[-1,1],[0,-3],[0,-4],[0,-1],[2,-7],[-1,-13],[-1,-4],[-2,-1],[0,-5],[1,-2],[0,-2],[-1,0],[-1,-1],[-1,1],[-1,-8],[-1,6],[-1,4],[-1,1],[0,-1],[0,-3],[0,-1],[0,-6],[0,-6],[-1,-1],[0,-1],[-1,1],[-1,-5],[-1,-1],[-1,2],[-1,2],[1,2],[0,1],[-1,1],[-1,-2],[-1,-1],[0,-2],[0,-2],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,2],[-3,-3],[-1,-2],[-3,-9],[1,-4],[1,-4],[0,-1],[0,-4],[-1,-2],[0,-1],[-2,-2],[-2,-5],[-1,-1],[-1,0],[0,1],[-1,-1],[0,-1],[0,-7],[1,-3],[0,-1],[1,0],[0,-4],[-1,-3],[-2,-2],[-2,6],[-1,3],[-1,3],[0,2],[-1,1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-10],[0,-2],[0,-2],[1,-1],[-1,-6],[-2,-3],[0,-2],[-1,-7],[0,-1],[0,-6],[0,-1],[-1,-1],[-3,0],[-1,-2],[-1,1],[0,1],[-1,1],[0,1],[0,3],[-1,0],[0,-2],[-1,-11],[1,-3],[0,-3],[0,-3],[0,-1],[0,-2],[-2,0],[0,1],[-1,5],[-1,2],[-1,0],[0,-1],[0,-3],[0,-3],[0,-1],[-1,0],[-3,-4],[0,-3],[-1,-2],[-3,-10],[-1,-2],[0,-1],[-1,-6],[1,-1],[1,0],[2,5],[2,5],[1,-8],[0,-5],[-1,-4],[0,1],[-1,0],[0,-2],[0,-1],[0,-4],[0,-1],[1,-3],[1,-2],[-1,-4],[0,-1],[0,-1],[-2,-4],[-1,-4],[0,-1],[1,-1],[0,-2],[-2,-6],[-1,-1],[-1,-5],[1,-3],[0,-4],[-1,0],[-2,2],[-3,-1],[0,-1],[-1,-2],[0,-2],[0,-4],[0,-6],[-1,-1],[0,-1],[-1,1],[-1,7],[0,2],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,-2],[0,-6],[-2,-2],[0,-1],[0,-1],[-1,-3],[-1,-8],[-2,-1],[-1,-2],[1,-4],[0,-2],[-1,-3],[0,-1],[-1,-1],[-2,7],[0,2],[0,1],[-1,4],[-2,4],[0,1],[-1,-2],[-1,-1],[0,-3],[0,-2],[0,-3],[0,-1],[1,0],[0,-1],[1,-4],[-1,-1],[-2,-2],[-1,-1],[0,-3],[0,-2],[-1,-5],[1,-4],[0,-1],[1,-1],[1,0],[0,-5],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,4],[0,2],[0,1],[0,1],[-1,4],[0,1],[-5,-4],[0,-1],[-3,-10],[0,-3],[0,-2],[1,0],[1,2],[0,1],[2,0],[2,-5],[0,-3],[0,-6],[0,-2],[-1,-4],[-1,1],[-2,5],[-2,0],[-2,1],[-1,-3],[1,-1],[0,-1],[0,-5],[0,-1],[-4,1],[-1,3],[-1,0],[-2,-5],[-3,-14],[0,-1],[0,-2],[0,-4],[2,0],[1,-3],[2,0],[3,-6],[0,-2],[0,-3],[-1,-3],[-1,-1],[-1,-3],[0,-2],[0,-1],[2,-1],[2,3],[0,2],[2,1],[0,-2],[-3,-8],[-3,-4],[-1,-6],[-1,-5],[0,-3],[0,-5],[-1,1],[0,4],[0,1],[0,1],[0,1],[-1,0],[0,-3],[0,-1],[1,-6],[0,-3],[1,-4],[0,-2],[-1,-2],[-1,6],[-1,0],[0,-2],[0,-1],[0,-1],[0,-3],[0,-2],[-2,12],[-1,1],[1,12],[0,1],[0,1],[-1,1],[0,-1],[-1,-2],[0,-3],[0,-3],[0,-9],[0,-2],[0,-1],[0,-2],[0,-4],[0,-5],[-1,-1],[-1,0],[-1,1],[0,1],[1,6],[0,1],[-1,2],[-3,-1],[-1,-10],[0,-3],[-3,-2],[-4,-3],[-3,-4],[-2,-2],[-1,-1],[-1,-3],[0,-1],[0,-4],[0,-4],[0,-2],[0,-2],[-1,0],[0,1],[-1,7],[0,2],[0,1],[0,1],[1,9],[-1,1],[0,-1],[-1,-2],[-1,-1],[1,-5],[0,-17],[0,-3],[0,-2],[-1,-2],[0,-3],[0,-1],[0,-3],[1,-5],[-1,-3],[0,-3],[-2,-7],[-2,-4],[-1,-1],[0,1],[0,5],[0,1],[0,1],[0,1],[2,0],[1,3],[0,2],[-1,2],[-1,1],[0,4],[0,11],[1,2],[1,10],[0,2],[-1,3],[-2,3],[-2,2],[-1,-1],[0,-1],[-1,-1],[1,-3],[0,-4],[-1,-3],[-1,0],[-1,3],[-2,-1],[0,-1],[-1,-4],[0,-1],[0,-1],[0,-7],[-2,-8],[-2,-4],[-2,-3],[-2,0],[0,1],[-2,3],[-1,-1],[0,-2],[0,-1],[1,-7],[-1,-6],[0,-3],[-1,-4],[0,-1],[1,-3],[0,-1],[-1,-4],[-1,-2],[-1,0],[0,5],[0,4],[-1,7],[0,3],[-1,0],[0,-4],[-1,-1],[0,-1],[-1,2],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-2],[1,-1],[2,-1],[0,-1],[0,-2],[0,-2],[0,-3],[0,-3],[-3,-2],[-1,1],[-1,3],[0,4],[0,1],[1,2],[-1,1],[0,2],[-1,0],[-1,0],[0,-1],[-1,-2],[-1,-7],[0,-1],[0,-1],[0,-1],[0,-3],[-1,-1],[-6,-14],[-1,-1],[-2,1],[1,1],[0,2],[0,1],[-1,1],[-1,0],[-2,-3],[0,-2],[-1,0],[-1,1],[0,4],[0,1],[1,1],[0,4],[0,4],[0,7],[0,2],[0,2],[3,13],[0,2],[1,5],[0,1],[-1,2],[0,1],[-1,1],[-2,0],[-1,0],[-2,-2],[0,-1],[-1,-2],[-2,-16],[0,-1],[0,-17],[0,-1],[0,-2],[-1,-6],[-2,-16],[-1,-1],[0,-1],[0,-2],[-1,-3],[0,-2],[0,-2],[0,-1],[-1,-4],[0,1],[-1,4],[-1,1],[-1,1],[0,-1],[-1,-1],[0,-1],[2,-10],[1,-3],[0,-5],[0,-3],[0,-1],[-3,-6],[-2,5],[0,4],[0,3],[0,3],[-1,0],[-1,-7],[-1,-2],[0,-1],[1,-4],[0,-3],[0,-1],[0,-6],[-1,-1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-2,-1],[-1,3],[-1,2],[-1,4],[0,3],[0,2],[1,1],[1,1],[0,-1],[1,-1],[0,-1],[0,-1],[0,1],[0,2],[-1,6],[-1,2],[0,4],[0,3],[0,3],[-1,7],[-2,9],[-1,1],[0,-1],[-1,-1],[0,-3],[-1,-5],[0,-4],[0,-2],[0,-2],[0,-2],[1,-1],[1,1],[0,-1],[1,-3],[1,-7],[-1,-2],[0,-1],[-1,-5],[1,-8],[1,-7],[0,-8],[-1,0],[0,3],[-1,1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-2,-5],[-2,-1],[-1,2],[-1,3],[-1,9],[0,3],[0,1],[0,2],[0,2],[-1,7],[-2,4],[0,2],[-1,-1],[-2,-2],[0,-1],[-1,-5],[0,-3],[0,-1],[0,-2],[0,-1],[1,-2],[0,-1],[1,1],[2,-7],[0,-2],[1,-5],[-1,-3],[-2,-7],[-2,-8],[-3,-3],[-1,-4],[-1,-1],[0,-2],[1,-5],[1,-3],[2,1],[1,0],[1,4],[1,-3],[1,-5],[1,-8],[0,-3],[0,-2],[-1,0],[-1,1],[0,5],[-1,1],[-1,0],[0,-1],[-2,0],[-1,5],[0,4],[0,1],[-1,0],[-1,-1],[-1,-4],[0,-1],[0,-1],[0,-10],[-1,0],[-1,-1],[-2,-6],[0,-1],[0,-1],[-3,3],[-2,2],[-2,0],[-1,-1],[-3,0],[-3,-2],[-3,-4],[-1,-3],[-1,-2],[-2,-8],[0,-1],[-1,-5],[1,-2],[0,-1],[-1,-3],[-2,-6],[-1,-3],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-2],[-3,1],[-1,1],[-2,3],[0,5],[0,1],[-1,9],[0,2],[-1,2],[0,3],[0,8],[0,4],[0,1],[3,5],[2,2],[0,1],[1,1],[0,2],[2,17],[2,13],[0,5],[0,5],[1,2],[1,6],[2,2],[2,-3],[0,-1],[0,-2],[0,-1],[2,2],[2,4],[0,1],[1,4],[2,3],[0,-1],[1,0],[1,1],[1,3],[1,2],[1,4],[1,3],[0,1],[1,0],[1,1],[1,2],[1,-1],[3,-1],[2,1],[1,0],[0,-1],[0,-3],[0,-2],[2,-6],[1,-3],[0,-3],[0,-3],[1,-6],[0,-2],[-1,-2],[0,-4],[0,-1],[1,0],[2,3],[0,1],[0,4],[0,1],[-1,2],[0,1],[0,1],[0,5],[0,1],[1,0],[1,-2],[1,1],[0,1],[0,1],[-1,8],[0,10],[-1,9],[0,1],[0,1],[0,2],[1,3],[2,4],[1,2],[2,1],[1,0],[0,-1],[0,-1],[1,0],[2,0],[2,2],[1,3],[0,5],[0,3],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,3],[0,1],[4,6],[1,3],[1,3],[1,5],[0,8],[2,7],[1,4],[1,3],[0,3],[2,11],[3,11],[1,6],[1,6],[1,4],[2,3],[1,7],[0,2],[3,7],[3,6],[1,6],[1,4],[0,1],[1,1],[2,1],[2,3],[1,3],[4,3],[2,2],[2,4],[1,-1],[0,-1],[0,-3],[1,-2],[1,1],[3,0],[0,-2],[1,1],[1,1],[0,1],[3,8],[1,0],[0,-1],[2,-8],[0,-4],[0,-4],[-1,1],[-2,-3],[-1,-9],[0,-3],[0,-2],[0,-2],[4,-14],[1,4],[1,-2],[2,-5],[0,1],[0,2],[0,1],[0,1],[-1,1],[-2,5],[0,1],[0,13],[1,3],[1,-2],[2,-1],[2,1],[0,1],[1,1],[0,-1],[1,0],[0,-5],[0,-3],[1,-6],[2,1],[1,-4],[1,-2],[1,0],[0,2],[0,2],[-1,3],[0,2],[0,1],[1,2],[0,5],[-2,2],[-1,4],[-1,4],[-2,3],[-2,3],[1,3],[0,3],[0,2],[0,1],[-1,1],[0,-1],[-1,-1],[1,4],[2,13],[0,2],[1,7],[1,13],[0,7],[1,4],[0,5],[1,2],[1,2],[1,3],[1,6],[1,2],[0,3],[1,5],[2,2],[2,6],[1,2],[1,4],[3,13],[1,1],[5,9],[2,5],[3,3],[2,3],[1,2],[2,6],[-1,3],[1,1],[3,8],[1,3],[1,0],[1,5],[1,1],[1,7],[1,0],[0,-1],[0,-3],[1,-3],[0,-1],[1,-2],[0,-1],[2,-2],[4,1],[0,5],[0,4],[0,2],[0,2],[-1,13],[0,12],[1,8],[0,5],[4,19],[1,10],[3,10],[0,1],[4,9],[2,4],[2,8],[1,1],[1,2],[0,2],[1,7],[1,4],[0,1],[4,12],[0,1],[2,3],[1,0],[0,-1],[0,-4],[1,-6],[1,-3],[1,0],[0,5],[0,2],[0,11],[-1,5],[-1,1],[-1,-1],[-1,6],[0,15],[1,9],[1,18],[1,18],[0,13],[0,11],[1,6],[0,1],[0,4],[1,2],[1,0],[3,2],[0,2],[1,7],[0,2],[-1,0],[0,-3],[-1,-1],[0,2],[-2,7],[-1,3],[0,1],[-1,5],[0,5],[1,11],[0,4],[1,11],[1,2],[0,3],[0,1],[2,5],[0,-1],[1,2],[1,3],[0,3],[1,6],[1,2],[0,2],[2,7],[3,9],[0,4],[2,17],[0,3],[0,1],[0,2],[0,2],[0,3],[0,2],[1,1],[0,2],[0,7],[-2,3],[0,-2],[0,-6],[-1,-5],[-1,-4],[-2,-4],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-2,-3],[-2,-5],[-1,-1],[-2,-3],[0,-2],[0,-1],[-4,-5],[-1,-1],[-1,-2],[-1,-3],[-2,-3],[-4,-7],[-1,-1],[-2,-3],[-1,-1],[-1,0],[-1,0],[0,1],[-1,2],[-1,2],[-1,3],[0,1],[0,1],[0,1],[0,2],[0,5],[-1,3],[0,4],[-1,2],[-1,2],[-1,1],[-1,1],[-1,1],[0,1],[-1,2],[0,1],[0,1],[1,5],[0,4],[-1,3],[-1,4],[0,2],[-3,-7],[-1,0],[0,-1],[-1,-10],[0,-1],[0,-1],[0,-2],[1,-2],[0,-1],[0,-2],[-1,-3],[0,-3],[0,-1],[-1,-1],[-1,-5],[1,-13],[2,-14],[1,-10],[1,-3],[-3,-14],[-1,-2],[-1,-1],[-1,0],[-1,1],[-3,4],[0,1],[-1,4],[-3,21],[-1,12],[-4,21],[-1,6],[-1,6],[-2,5],[-1,2],[0,1],[-1,0],[-2,1],[2,7],[0,1],[0,2],[0,3],[-1,1],[0,2],[-1,1],[-1,-1],[-1,0],[-1,-14],[-1,1],[0,-7],[0,-3],[-3,-5],[-2,13],[0,4],[-2,3],[-1,-5],[-2,1],[0,9],[-2,-3],[-2,9],[-1,1],[2,8],[-1,14],[-5,-8],[-4,-12],[-4,-10],[-2,-16],[0,11],[-4,-5],[-1,-2],[-2,-4],[-3,-6],[-4,-9],[0,-2],[-1,-5],[0,-7],[-4,-7],[-1,-4],[-2,-1],[-1,-7],[-2,-3],[-1,9],[-3,7],[-5,-3],[-3,5],[5,8],[1,-6],[2,2],[1,7],[2,13],[0,10],[0,26],[-2,18],[-4,16],[-2,19],[1,8],[2,-6],[0,19],[1,4],[2,7],[0,1],[2,8],[1,-1],[1,5],[-2,12],[-2,17],[-2,18],[-3,16],[-2,10],[0,12],[0,1],[-1,2],[0,1],[-1,3],[-1,3],[0,4],[-1,6],[0,4],[0,3],[0,1],[1,1],[0,3],[1,6],[-1,1],[0,4],[-1,1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-6],[0,-1],[-1,-1],[0,-1],[-1,8],[-1,4],[0,1],[-1,2],[-1,-2],[0,-1],[0,-3],[-1,-2],[0,-1],[0,-3],[0,-2],[0,-5],[0,-7],[0,-9],[-1,-2],[-2,-2],[-1,-1],[-1,1],[-2,0],[0,-2],[0,-1],[0,-1],[-2,-3],[-3,-3],[-1,-4],[-2,-4],[-2,-4],[-2,-3],[-5,-5],[-1,0],[-5,-3],[-3,-1],[-1,0],[-2,0],[-4,1],[-4,5],[-1,1],[-1,2],[0,4],[-2,9],[0,4],[0,1],[0,1],[0,2],[1,1],[1,0],[1,2],[-1,3],[-1,7],[-3,5],[-1,0],[-2,4],[-2,12],[-1,6],[0,1],[0,2],[0,1],[0,1],[-1,1],[-1,1],[-1,3],[0,2],[-1,1],[0,2],[0,2],[0,1],[-1,5],[-1,-1],[-2,1],[-2,2],[-1,2],[-2,4],[-1,4],[-1,5],[-2,9],[-1,1],[1,2],[1,2],[1,0],[1,2],[0,2],[1,5],[0,4],[0,1],[0,1],[-1,0],[-1,1],[-4,-9],[-2,0],[-3,2],[0,1],[-1,4],[-1,3],[1,1],[1,4],[0,1],[1,-1],[1,0],[1,0],[2,9],[0,1],[1,4],[2,7],[1,0],[0,-1],[1,3],[1,2],[0,1],[0,1],[0,1],[-1,3],[-1,2],[0,1],[0,2],[0,3],[0,1],[0,-1],[1,0],[1,1],[1,2],[0,1],[0,3],[-2,-2],[-1,2],[0,3],[1,7],[2,8],[0,1],[0,1],[1,2],[-1,1],[-2,-5],[-1,-3],[1,-2],[-2,-6],[-2,-2],[-1,-1],[0,3],[-1,7],[0,3],[2,1],[0,2],[-1,2],[0,6],[0,1],[0,1],[1,5],[1,1],[1,-1],[2,0],[0,1],[1,1],[0,2],[1,3],[0,7],[1,-1],[1,0],[0,3],[-1,2],[-1,1],[-1,-1],[-1,0],[0,-5],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,1],[-2,4],[-2,6],[0,2],[0,2],[1,1],[-1,1],[-1,1],[-2,6],[-1,-2],[0,-9],[-1,-3],[0,-2],[0,-2],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,1],[-3,2],[-1,1],[-1,3],[0,2],[-1,20],[-1,3],[1,4],[0,2],[0,2],[-1,1],[0,2],[-4,3],[0,-1],[-1,0],[-1,3],[0,3],[-1,9],[-1,3],[0,2],[1,1],[2,4],[1,2],[1,1],[0,4],[0,2],[0,2],[-1,6],[-3,5],[-2,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-2],[0,-2],[1,-2],[-1,-2],[-1,0],[0,2],[-1,7],[0,2],[-1,4],[0,2],[0,1],[1,21],[0,3],[0,1],[1,0],[0,-2],[-1,-8],[0,-5],[0,-2],[1,0],[2,1],[0,1],[1,1],[1,1],[2,2],[2,1],[1,1],[0,3],[-2,0],[-2,3],[-2,3],[0,1],[-2,14],[0,1],[0,1],[0,1],[4,3],[2,-2],[3,0],[0,1],[1,1],[0,1],[1,1],[1,1],[1,1],[0,1],[0,2],[-1,5],[-1,4],[-1,5],[-1,5],[0,6],[0,2],[0,6],[0,3],[1,2],[0,6],[1,6],[2,6],[3,16],[4,15],[1,4],[0,4],[1,4],[1,5],[2,8],[2,10],[2,3],[5,6],[3,4],[-1,3],[-1,-1],[-2,-1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,5],[1,1],[1,-2],[0,-2],[1,-1],[0,1],[-1,25],[0,1],[0,2],[0,2],[0,2],[0,6],[1,2],[1,2],[1,2],[0,4],[0,5],[0,5],[0,2],[1,9],[1,3],[3,7],[0,2],[-1,2],[-1,-1],[0,1],[0,2],[0,1],[4,15],[2,7],[2,2],[4,5],[2,1],[2,1],[1,0],[2,-3],[2,-3],[0,-1],[3,-1],[1,0],[0,-1],[1,-1],[0,-4],[2,-6],[1,-3],[0,1],[2,-2],[0,-2],[1,-2],[1,-2],[1,-2],[0,-1],[2,-6],[1,-3],[5,2],[2,2],[1,1],[1,5],[2,5],[1,1],[1,6],[0,1],[0,1],[0,4],[0,1],[0,1],[1,1],[1,3],[1,0],[0,-1],[1,0],[1,1],[0,2],[2,9],[1,1],[4,18],[0,1],[0,2],[0,1],[0,1],[1,5],[1,4],[1,4],[1,2],[0,1],[0,1],[0,5],[-1,2],[0,1],[2,0],[1,-2],[1,-2],[1,-1],[1,0],[1,0],[1,-4],[-1,-3],[0,-1],[1,-2],[0,-2],[3,-1],[2,1],[2,1],[2,2],[1,0],[2,-2],[0,-1],[1,0],[3,1],[4,3],[3,4],[2,2],[0,1],[0,5],[1,2],[2,6],[3,13],[0,2],[3,14],[1,4],[0,4],[0,3],[0,8],[-1,7],[0,6],[-1,9],[-1,5],[0,1],[-2,12],[0,8],[0,9],[0,10],[0,1],[0,1],[-1,6],[-7,25],[-1,5],[-1,1],[-3,4],[-1,0],[-1,-1],[0,-2],[-1,3],[1,12],[0,4],[3,5],[0,-1],[1,-1],[1,-2],[2,-2],[1,-1],[1,0],[2,-1],[2,1],[0,1],[0,1],[0,2],[0,1],[-1,0],[0,1],[0,1],[0,1],[2,0],[0,1],[1,1],[4,11],[0,2],[0,1],[1,10],[0,7],[-3,13],[-2,7],[-1,2],[-3,7],[0,2],[-1,3],[-1,3],[0,1],[0,1],[-1,-1],[0,-3],[0,-1],[0,-1],[0,-2],[-2,-4],[-1,-1],[-1,-5],[0,-4],[-1,-3],[0,-2],[0,-1],[-1,-2],[0,-1],[-3,-1],[-2,2],[-1,1],[0,1],[-1,3],[-6,-15],[-1,-1],[-1,-1],[-4,-2],[-1,-1],[-1,-1],[-1,-1],[0,-3],[0,-3],[-1,-4],[-1,-2],[0,-1],[-2,-2],[-5,-12],[-1,-2],[-1,-9],[0,-1],[0,-2],[0,-1],[-1,-12],[0,-1],[-1,-1],[-1,-3],[-2,-5],[0,-1],[-1,2],[0,3],[0,2],[0,2],[0,4],[0,2],[-1,6],[0,7],[0,4],[-3,8],[0,1],[-2,-1],[0,-3],[0,-2],[0,-7],[-2,-7],[0,-5],[0,-1],[-1,-2],[-1,1],[-2,5],[0,5],[0,3],[-3,7],[-2,3],[-1,2],[-4,5],[-1,1],[-5,2],[-2,-1],[0,-1],[-2,-3],[-1,0],[-1,2],[-1,0],[-2,1],[-3,0],[-2,-1],[-3,-3],[-2,-3],[-1,-2],[-8,-13],[0,-1],[-1,0],[-4,-2],[-6,7],[-5,5],[-4,3],[-6,4],[-2,1],[-2,2],[-8,5],[-1,1],[-5,10],[0,3],[-1,7],[-1,6],[0,2],[0,10],[0,2],[1,2],[1,2],[0,2],[0,1],[0,3],[0,2],[0,2],[-1,2],[-3,10],[-1,4],[-1,1],[0,1],[-2,3],[0,2],[0,1],[0,1],[0,2],[0,3],[0,1],[-1,3],[-3,4],[-1,3],[0,3],[-1,4],[0,1],[0,1],[1,0],[1,-2],[0,-2],[1,0],[1,-1],[3,0],[1,3],[0,1],[3,3],[0,1],[1,2],[0,2],[0,1],[0,2],[0,5],[0,1],[1,2],[2,4],[1,4],[-1,2],[0,2],[-2,4],[-1,2],[-1,1],[-1,0],[-1,0],[-1,-2],[-1,0],[-1,0],[-3,2],[-1,2],[-2,2],[-3,4],[-2,2],[-2,0],[-7,2],[-2,2],[-3,6],[-1,4],[-2,6],[-4,6],[0,2],[-2,2],[-2,1],[0,1],[-2,1],[-1,2],[0,3],[0,1],[0,2],[-1,3],[0,3],[0,3],[1,5],[3,8],[4,5],[3,4],[5,9],[7,12],[2,4],[3,7],[4,9],[1,2],[3,9],[7,12],[2,5],[5,8],[1,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[-1,0],[0,-2],[0,-1],[1,-2],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,1],[1,-1],[1,-1],[1,-1],[1,0],[0,-2],[1,1],[1,1],[1,3],[0,-1],[1,1],[1,0],[0,2],[1,3],[0,1],[0,2],[-1,1],[-1,3],[-1,2],[-1,2],[-2,1],[-2,0],[-1,1],[0,1],[0,2],[0,2],[0,1],[0,3],[0,2],[0,2],[0,2],[0,1],[0,2],[0,1],[2,3],[3,6],[8,11],[6,8],[2,2],[11,12],[9,8],[1,0],[7,2],[4,0],[-1,-3],[3,-4],[1,1],[3,-2],[1,-6],[0,-4],[-1,-1],[0,-7],[-1,-3],[-2,-4],[0,-1],[0,-4],[0,-12],[0,-3],[0,-1],[1,-5],[0,-1],[-1,-2],[-1,-6],[-2,-2],[-2,-2],[-1,-1],[-1,-3],[0,-1],[1,0],[2,0],[2,2],[1,-6],[1,-4],[0,-3],[1,-4],[1,-4],[0,-1],[0,-3],[4,0],[3,2],[1,2],[0,1],[4,0],[1,-2],[1,-1],[3,-2],[1,0],[1,1],[2,1],[1,1],[3,2],[3,1],[1,0],[2,-5],[0,-1],[0,-1],[1,-2],[0,-1],[3,1],[2,3],[1,-2],[0,-2],[1,-2],[1,1],[2,2],[2,3],[2,4],[0,-2],[3,-1],[2,-4],[3,-4],[1,2],[0,2],[0,2],[1,4],[3,7],[0,2],[1,6],[0,1],[0,3],[2,12],[2,4],[3,-1],[1,0],[0,-3],[0,-1],[1,-2],[0,-1],[1,-1],[2,-1],[2,2],[1,3],[1,0],[0,-1],[1,0],[1,1],[0,1],[0,2],[0,1],[-2,5],[-1,4],[0,2],[0,2],[-1,2],[-1,1],[-2,1],[-3,5],[-5,4],[-5,0],[-3,-7],[-3,-3],[0,1],[1,10],[0,2],[1,5],[-1,9],[0,5],[-4,14],[-2,3],[0,1],[0,2],[0,4],[-1,2],[0,2],[-1,5],[-2,4],[-1,1],[-2,2],[-2,1],[-2,2],[0,1],[0,2],[-1,3],[0,6],[-1,3],[-1,3],[0,1],[-1,1],[0,1],[0,1],[0,3],[1,2],[0,2],[0,1],[3,3],[4,3],[2,-4],[0,-2],[1,-7],[3,-13],[1,-2],[1,0],[0,-1],[1,0],[0,-4],[0,-5],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,-2],[1,-6],[0,-2],[0,-1],[1,-3],[2,-5],[0,-2],[1,-4],[0,-2],[0,-2],[1,-3],[3,-7],[4,-9],[2,-2],[1,1],[2,2],[3,4],[2,5],[-1,3],[-3,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,3],[-2,4],[-1,2],[-2,3],[-1,2],[-5,16],[0,2],[1,15],[0,3],[1,1],[0,3],[1,2],[0,3],[2,10],[0,6],[0,2],[0,1],[1,0],[3,-5],[2,0],[0,2],[0,3],[-1,2],[0,2],[-3,5],[-2,0],[0,-2],[-2,6],[-1,3],[-1,1],[-1,-1],[-7,-4],[-2,-4],[-1,-1],[0,-1],[-3,0],[-1,-1],[-1,-1],[-1,1],[0,1],[0,1],[0,1],[0,4],[0,2],[-1,1],[0,-1],[-1,-1],[0,-3],[-2,-1],[-1,0],[-1,0],[0,2],[0,1],[0,1],[0,3],[-1,1],[-2,-2],[-1,-1],[-1,-1],[0,-3],[0,-1],[-1,-1],[-6,7],[-5,3],[-3,3],[-1,1],[-2,1],[-2,1],[-2,2],[-2,2],[-1,2],[0,1],[0,2],[0,5],[0,4],[0,4],[0,9],[-2,17],[-1,8],[-1,5],[-3,22],[-2,10],[-1,3],[-1,2],[-2,5],[-9,16],[-7,18],[-3,8],[-4,10],[-2,4],[-2,5],[-1,3],[0,2],[-1,1],[-3,5],[-2,4],[-2,2],[-4,3],[-3,1],[-1,0],[-2,3],[-3,5],[0,1],[0,3],[-1,1],[-7,18],[-1,4],[-2,3],[-3,4],[-3,4],[-3,3],[-3,0],[-1,-1],[0,-1],[0,2],[1,1],[3,5],[9,9],[0,1],[1,1],[0,2],[1,3],[0,1],[0,1],[0,8],[1,8],[1,2],[0,2],[0,2],[0,5],[0,9],[1,3],[0,2],[0,17],[0,2],[0,2],[0,3],[-1,8],[0,2],[0,2],[11,-3],[5,-2],[2,0],[2,0],[5,1],[10,4],[2,2],[2,0],[5,3],[3,2],[7,2],[1,0],[2,3],[1,1],[2,3],[3,3],[2,5],[1,3],[1,3],[3,5],[2,4],[2,6],[1,4],[2,9],[5,15],[1,2],[3,13],[1,4],[0,3],[0,2],[0,3],[1,8],[0,4],[1,0],[0,2],[0,3],[0,6],[0,1],[0,2],[-1,3],[-1,3],[0,1],[0,1],[2,2],[3,16],[0,1],[-1,3],[-1,2],[-1,0],[0,6],[2,5],[1,3],[1,0],[1,2],[2,7],[2,5],[3,8],[0,-1],[3,11],[1,2],[0,4],[0,2],[0,5],[2,0],[1,3],[0,1],[0,2],[1,6],[4,10],[2,5],[2,7],[1,4],[1,4],[1,5],[2,3],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[1,-2],[1,-1],[0,1],[0,1],[0,1],[2,-1],[1,-2],[0,-2],[1,-1],[3,-1],[4,1],[2,1],[1,2],[5,9],[2,4],[1,-2],[4,5],[3,6],[6,12],[1,3],[0,1],[0,1],[7,18],[5,13],[4,11],[3,8],[4,12],[2,2],[2,3],[8,9],[1,1],[1,0],[0,-3],[0,-2],[1,-4],[-1,-2],[-4,-1],[-1,-1],[0,-1],[0,-3],[1,-5],[1,0],[3,0],[4,1],[1,0],[1,2],[-1,2],[0,1],[0,1],[9,-2],[1,1],[6,2],[0,2],[0,2],[4,-1],[3,1],[3,2],[4,4],[2,1],[2,3],[1,3],[6,10],[2,6],[1,2],[4,12],[4,14],[1,5],[3,11],[4,14],[1,2],[4,7],[1,1],[1,2],[0,-3],[0,-4],[0,-1],[1,-3],[4,-5],[1,-1],[1,-1],[0,1],[3,0],[4,-4],[1,-7],[0,-1],[0,-2],[0,-3],[2,3],[1,4],[1,-3],[2,0],[0,1],[2,-1],[2,-2],[2,-2],[1,-1],[0,-5],[0,-2],[1,-5],[0,-1],[0,-1],[0,-2],[0,-2],[-1,-2],[-2,-3],[-2,-4],[0,-2],[-2,-5],[-1,-3],[-2,0],[-2,-1],[-1,0],[0,-3],[-1,-8],[0,-1],[2,-7],[0,-6],[-1,-1],[0,-1],[0,-2],[1,0],[1,0],[0,1],[1,2],[0,1],[4,0],[3,-1],[3,4],[1,3],[0,2],[0,1],[0,2],[0,3],[0,3],[0,5],[1,0],[1,4],[1,2],[1,3],[0,2],[2,2],[0,-1],[1,-1],[1,-5],[0,-1],[1,1],[0,2],[0,1],[0,2],[0,2],[0,2],[-3,7],[0,1],[0,2],[1,0],[3,6],[0,-2],[0,-1],[0,-3],[0,-1],[1,-1],[1,1],[0,2],[0,1],[0,3],[-1,4],[1,3],[1,0],[2,-3],[5,-8],[4,-11],[1,-1],[0,-3],[1,-3],[-1,-2],[0,-3],[-2,-11],[1,-6],[1,-7],[2,-2],[1,0],[2,2],[2,0],[2,-3],[1,-3],[0,-1],[0,-4],[1,-1],[1,0],[1,2],[2,2],[2,6],[0,2],[1,4],[0,3],[0,1],[2,2],[3,1],[1,0],[6,-1],[1,0],[2,1],[1,1],[1,1],[2,3],[1,1],[3,0],[2,-2],[1,-2],[7,-3],[1,-1],[4,1],[4,-3],[5,-5],[1,-3],[1,-5],[0,-1],[-1,-1],[-1,0],[-1,-1],[-2,-10],[0,-3],[-3,-5],[0,-1],[0,-7],[1,-6],[1,-1],[1,-1],[1,2],[2,-4],[2,-1],[1,0],[3,-2],[-1,-2],[0,-1],[2,0],[1,0],[3,-1],[1,-2],[2,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-3],[0,-1],[1,-3],[0,-1],[-1,-2],[-2,0],[-2,-3],[-1,-1],[0,-2],[1,-4],[1,0],[1,0],[1,1],[4,-1],[1,1],[2,0],[3,-2],[3,-3],[1,-2],[2,-4],[1,1],[0,3],[0,3],[0,3],[2,1],[0,-1],[0,-2],[1,-1],[1,5],[2,2],[2,1],[1,-1],[1,1],[1,3],[0,2],[1,2],[1,0],[2,0],[1,0],[5,0],[2,-1],[1,-4],[-1,-4],[0,-2],[2,1],[1,0],[2,-2],[2,0],[1,1],[6,14],[1,-4],[1,0],[1,1],[1,1],[1,1],[1,0],[0,-1],[2,-1],[1,0],[0,1],[1,1],[1,2],[1,-3],[0,-2],[1,0],[2,1],[4,-2],[3,-4],[3,-8],[1,1],[2,-1],[2,-4],[1,2],[1,3],[1,0],[2,-1],[0,-1],[1,-1],[2,-10],[1,-3],[-1,-4],[1,-1],[0,-1],[1,-1],[2,0],[2,5],[1,1],[1,2],[1,0],[2,-1],[0,-1],[0,-1],[1,-1],[3,-2],[3,-4],[1,-3],[1,-6],[0,-5],[3,-4],[1,1],[1,0],[2,0],[3,-3],[1,0],[1,0],[3,6],[0,-2],[0,-2],[0,-3],[1,-4],[1,-1],[5,-1],[2,4],[1,3],[4,-2],[1,0],[2,1],[3,1],[2,-1],[1,-1],[2,0],[1,1],[1,-1],[3,-2],[1,-1],[0,-1],[1,-2],[2,-1],[2,0],[1,1],[1,1],[0,3],[1,0],[1,-3],[0,-2],[1,-2],[4,-8],[1,-2],[2,1],[0,-1],[1,-3],[0,-2],[1,-2],[1,-1],[2,-2],[2,-1],[1,-2],[1,-2],[5,-2],[1,-1],[0,-3],[1,-1],[1,1],[1,2],[0,2],[0,1],[2,-2],[2,-2],[1,0],[2,0],[1,2],[2,5],[1,4],[4,1],[3,1],[1,1],[2,3],[1,0],[1,3],[4,10],[0,1],[2,-1],[1,-1],[1,2],[0,1],[3,1],[1,-1],[0,1],[0,1],[0,1],[1,0],[1,-1],[1,-2],[0,-3],[0,-1],[0,-2],[0,-2],[1,-1],[3,1],[1,1],[0,2],[2,1],[1,-1],[2,-2],[0,-2],[1,-2],[2,0],[0,3],[3,-4],[5,-6],[7,-13],[1,-3],[1,-4],[1,-4],[3,-1],[1,-2],[4,-7],[1,-1],[0,-2],[0,-2],[2,-6],[1,0],[1,1],[0,1],[2,0],[4,-4],[3,-6],[2,-4],[3,-8],[0,-4],[0,-2],[1,-4],[0,-1],[3,-1],[1,0],[0,1],[0,3],[1,6],[2,-2],[4,-5],[0,-215],[0,-497],[0,-736],[0,-283],[0,-16],[13,-15],[1,16],[14,-23],[8,29],[17,3],[0,-6],[-3,-44],[4,-17],[7,-13],[3,-4],[1,-18],[0,-1],[1,-7],[2,-5],[15,-54],[11,-40],[3,-48],[-1,-14],[1,0],[2,0],[5,17],[11,26],[1,4],[7,1],[2,18],[1,4],[0,26],[3,5],[2,3],[1,11],[0,6],[1,9],[1,7],[5,3],[4,6],[4,7],[7,13],[5,-15],[3,-16],[1,-1],[1,0],[2,-12],[0,-15],[0,-7],[0,-7],[1,-9],[0,-5],[1,-10],[5,-9],[3,-7],[3,-12],[2,0],[3,-18],[0,-6],[0,-5],[1,-2],[1,-8],[2,-12],[7,-15],[4,-9],[3,-19],[1,-3],[4,-16],[3,-15],[0,-10],[0,-6],[3,-14],[0,-2],[3,-16],[2,-7],[2,-28],[6,-29],[3,-26],[3,-16],[3,-22],[5,-29],[3,-25],[1,-20],[3,-12],[1,-22],[2,-15],[2,-5],[2,-8],[1,-21],[3,-9],[4,0],[4,-15],[8,-16],[2,-8],[8,-7],[2,-5],[3,-14],[2,-4],[2,-1],[1,-19],[5,-8],[4,4],[2,-15],[1,-4],[0,-4],[0,-15],[-2,-17],[-1,-3],[0,-1],[-1,-7],[0,-4],[0,-3],[0,-2],[1,-3],[0,-4],[0,-18],[0,-4],[1,-13],[1,-8],[0,-15],[1,-6],[1,-7],[0,-1],[0,-2],[0,-1],[-1,-3],[-1,-3],[-2,-9],[0,-4],[-1,-6],[0,-5],[-1,-10],[-1,-7],[-1,-7],[-1,-3],[-1,-10],[-4,-15],[-3,-9],[-2,-3],[0,-3],[1,-4],[-1,0],[-1,-3],[0,-1],[-1,7],[-1,3],[1,2],[0,3],[-1,1],[0,3],[-1,1],[0,-5],[0,-2],[0,-2],[-1,-2],[-1,0],[0,1],[-1,2],[0,2],[-1,3],[0,3],[0,3],[0,9],[-1,6],[0,3],[1,6],[0,1],[-1,0],[-1,3],[0,1],[0,6],[1,7],[0,1],[0,3],[-1,1],[-1,2],[0,3],[-1,4],[0,1],[0,3],[0,6],[3,10],[1,5],[0,3],[0,2],[1,0],[1,-1],[0,1],[0,2],[0,1],[0,8],[-1,13],[-1,1],[1,2],[0,3],[0,2],[1,5],[0,7],[0,12],[-1,18],[-1,11],[-1,8],[-3,18],[-2,9],[-1,3],[-1,5],[0,-2],[-1,-1],[1,-2],[2,-11],[2,-13],[1,-6],[0,-6],[1,-8],[1,-6],[1,-7],[0,-14],[0,-4],[-1,-1],[0,-2],[-1,-13],[1,-15],[1,-2],[0,-8],[0,-1],[0,-2],[-1,-1],[0,3],[-1,12],[0,2],[-1,0],[0,-3],[0,-2],[0,-1],[1,-1],[0,-4],[-1,-12],[-1,-6],[-2,-10],[-1,-1],[-1,0],[0,1],[-1,2],[-1,5],[0,3],[1,2],[1,5],[0,2],[1,11],[0,2],[0,4],[-2,-1],[-1,0],[0,-1],[0,-4],[1,-2],[0,-3],[0,-2],[-1,-7],[-1,-3],[-2,-6],[-1,1],[0,1],[0,3],[-1,4],[0,4],[0,1],[0,2],[0,2],[-1,0],[0,-1],[0,-6],[-1,0],[0,2],[-1,1],[-2,5],[-1,3],[-1,5],[0,2],[0,1],[-3,9],[0,2],[0,13],[1,3],[1,0],[1,1],[2,7],[0,2],[0,2],[-1,1],[0,1],[-1,3],[0,1],[0,1],[0,2],[0,2],[1,6],[0,2],[-1,3],[0,2],[0,3],[1,1],[1,3],[0,3],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,1],[0,3],[-1,8],[1,2],[0,3],[0,2],[-1,1],[-1,-3],[-2,0],[0,-4],[1,-3],[1,-3],[0,-3],[0,-3],[-1,-11],[-1,-3],[0,-7],[0,-2],[-1,-7],[-1,-5],[-1,4],[-1,-2],[0,-1],[1,-7],[0,-7],[-1,-7],[0,1],[-1,2],[-1,4],[0,1],[-1,2],[-1,0],[0,1],[-1,1],[-1,5],[0,5],[0,2],[0,1],[0,1],[-1,9],[0,3],[0,2],[-1,4],[0,5],[0,1],[0,-1],[0,-1],[1,-3],[1,0],[0,1],[0,2],[0,5],[0,1],[0,3],[2,2],[1,4],[1,8],[0,15],[-1,17],[1,8],[1,1],[0,-4],[1,7],[1,12],[0,3],[-1,0],[-1,-2],[-1,-9],[0,-1],[-1,-4],[-2,-10],[1,-18],[0,-3],[-1,-4],[-1,0],[-1,2],[-1,-1],[-1,-7],[0,-3],[0,-1],[0,-1],[-1,-2],[-1,0],[0,1],[-1,4],[0,1],[0,4],[0,9],[-1,12],[-1,9],[-1,2],[-2,-1],[-1,-3],[0,-1],[0,-2],[0,-1],[-2,9],[0,6],[-1,6],[0,14],[1,4],[1,0],[0,-1],[0,-1],[1,1],[1,1],[0,7],[0,1],[0,2],[1,7],[1,1],[2,3],[1,-1],[0,-2],[1,-5],[0,-1],[0,-1],[0,-2],[1,3],[0,7],[-1,7],[-1,20],[1,1],[0,-1],[3,-7],[1,-2],[0,-4],[0,-1],[0,-3],[0,-2],[1,-2],[0,-1],[0,3],[0,1],[0,2],[0,10],[-1,4],[-1,2],[-1,0],[-2,8],[0,1],[0,7],[0,3],[0,1],[2,2],[0,5],[1,1],[0,3],[0,2],[-1,3],[0,-1],[-1,0],[0,-2],[-1,2],[-1,-1],[-1,1],[-1,1],[-1,4],[0,3],[0,2],[2,10],[2,7],[0,1],[-1,0],[-1,-1],[-2,-6],[0,-2],[0,-3],[-1,0],[-2,4],[-4,11],[-1,3],[0,2],[0,1],[0,1],[0,4],[-1,1],[0,1],[-1,3],[-1,8],[0,5],[1,0],[1,2],[1,5],[-1,7],[0,2],[-1,0],[0,-2],[-1,-6],[-1,2],[-1,1],[0,-4],[-1,5],[-2,4],[-1,2],[-1,-1],[-1,1],[0,3],[0,2],[0,1],[-1,2],[0,1],[-2,-5],[-4,9],[-2,3],[-1,12],[0,2],[1,5],[1,5],[0,1],[1,-1],[0,-1],[0,-2],[1,-1],[1,1],[2,0],[1,3],[0,5],[-2,1],[0,-1],[-2,2],[-1,2],[0,1],[0,1],[-1,1],[0,2],[0,2],[1,1],[-1,11],[-1,7],[0,2],[0,8],[1,1],[0,2],[0,2],[-1,1],[0,-1],[0,-1],[-1,-1],[-1,1],[-1,2],[-1,6],[0,3],[0,4],[0,11],[0,1],[2,1],[1,-4],[1,-2],[1,-1],[1,-1],[1,-2],[5,-10],[1,-4],[1,0],[0,2],[0,2],[-2,7],[-1,3],[-1,0],[-5,14],[-2,6],[0,1],[0,2],[0,14],[-1,0],[-1,-3],[0,-1],[0,-5],[0,-2],[0,-2],[-1,-1],[-1,2],[0,-1],[-3,8],[-5,31],[-2,7],[0,3],[-1,5],[-1,17],[-13,6],[-3,14],[-4,15],[-6,27],[-4,76],[0,12],[1,0],[0,5],[-1,14],[-1,10],[-1,12],[-2,13],[-2,12],[0,-2],[-1,-7],[1,-7],[1,-3],[1,-3],[0,-6],[1,-4],[-2,-10],[0,-8],[0,-5],[1,-3],[1,-1],[0,-1],[1,-9],[0,-7],[-1,-3],[0,-1],[-1,-2],[2,-13],[0,-1],[1,-4],[0,-2],[0,-9],[3,-22],[0,-5],[0,-2],[0,2],[-1,1],[0,1],[0,-1],[0,-3],[0,-6],[1,-9],[1,-14],[1,-14],[1,-7],[-1,-4],[0,3],[-1,-1],[0,-1],[0,-5],[0,-4],[1,-11],[0,1],[-1,1],[0,1],[-2,1],[-1,5],[-1,0],[-1,0],[-1,1],[-1,6],[-1,10],[-1,3],[0,11],[-1,0]],[[2755,1395],[0,-1],[0,-3],[-1,-7],[-1,-5],[-1,-13],[0,-1],[0,-3],[0,-3],[0,-4],[-1,-4],[-1,-3],[0,-1],[0,-2],[-1,-1],[0,-2],[-1,-4],[0,-2],[0,-1],[-1,-6],[-1,-6],[0,-1],[0,-1],[-1,0],[0,-2],[-1,-5],[0,-3],[0,1],[0,1],[0,2],[1,3],[0,1],[0,1],[0,3],[1,1],[0,1],[1,6],[0,1],[0,1],[0,1],[1,2],[0,2],[0,1],[0,1],[1,1],[0,4],[0,2],[0,1],[-1,2],[1,1],[0,-2],[0,-1],[1,-1],[0,1],[0,2],[0,2],[0,6],[0,1],[1,-3],[0,1],[0,2],[0,4],[0,2],[0,2],[0,1],[1,1],[0,1],[1,4],[0,4],[0,2],[0,1],[-1,2],[0,1],[1,1],[0,-1],[0,2],[1,3],[0,2],[0,4],[1,2],[0,1],[0,4],[0,2],[0,1],[1,2],[0,2],[0,3],[1,4],[0,3],[0,2],[0,2],[0,3],[0,2],[0,-7],[0,-3],[-1,-10],[0,-3],[-1,-7],[0,-2],[0,-1]],[[2718,1267],[0,2],[1,4],[0,-2],[1,1],[0,3],[1,1],[0,1],[0,-1],[0,-1],[0,1],[1,1],[0,4],[-1,1],[1,1],[0,-2],[0,-1],[0,-1],[0,1],[0,2],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[1,-3],[1,0],[0,-1],[0,-2],[0,-2],[1,-3],[0,-2],[0,-1],[-1,-2],[-2,-3],[0,3],[0,2],[-1,-1],[0,-1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[-1,-1],[-2,-6],[-1,-2],[-1,-2],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,1],[0,3],[0,1],[0,3],[1,0],[0,1],[1,0],[0,-1],[0,-1],[0,2],[1,1],[0,-1],[0,1],[1,2],[0,2],[0,1],[1,4],[0,1],[1,1],[0,1]],[[2702,1251],[0,4],[1,0],[0,-1],[1,-1],[0,-2],[-1,-2],[0,-3],[-1,0],[0,1],[0,2],[0,2]],[[2727,1270],[0,-1],[-1,-3],[0,1],[1,3]],[[2737,1290],[0,-2],[0,-1],[-1,0],[-2,-9],[-1,0],[0,2],[-1,-3],[0,-2],[0,-1],[0,-1],[-1,-1],[0,3],[0,1],[0,1],[1,2],[1,3],[0,1],[0,-1],[1,-1],[0,2],[1,1],[0,3],[2,3]],[[2725,1285],[1,0],[0,-4],[0,-3],[0,-1],[0,3],[-1,0],[-1,3],[0,2],[1,0],[0,1],[0,1],[0,-2]],[[2740,1298],[0,-1],[0,-2],[-1,1],[-1,-2],[0,1],[1,1],[0,2],[1,3],[0,-3]],[[2742,1305],[0,3],[1,1],[0,-1],[-1,-2],[0,-1],[-1,-5],[0,3],[0,1],[1,1]],[[2699,1649],[0,1],[1,-3],[-1,-1],[0,-1],[1,-4],[0,-6],[0,-5],[1,-8],[0,-6],[0,-4],[1,-3],[0,-2],[1,0],[0,-1],[1,-3],[0,2],[1,1],[0,-3],[1,0],[0,-1],[-1,-5],[-1,0],[-1,2],[-1,4],[0,2],[-1,1],[0,1],[0,2],[0,13],[0,2],[-1,4],[0,9],[-1,3],[0,4],[0,1],[0,3],[0,1]],[[2629,2211],[1,6],[1,2],[0,4],[0,-1],[0,-1],[0,-4],[-2,-7],[0,-2],[-1,-2],[-1,-3],[-1,-2],[-2,-8],[-2,-4],[-1,-1],[0,1],[0,3],[-1,3],[0,1],[1,-3],[1,-2],[0,-1],[0,2],[1,1],[1,1],[1,4],[0,1],[0,1],[1,2],[1,2],[1,3],[0,2],[1,2]],[[2618,2206],[1,1],[1,0],[0,-1],[1,-2],[-1,-4],[0,-3],[-1,-1],[0,1],[-1,3],[0,3],[-1,1],[0,1],[0,1],[1,0]],[[2683,1885],[0,1],[0,9],[0,2],[0,3],[0,2],[0,1],[0,2],[0,2],[0,1],[0,-1],[0,-3],[1,-2],[0,-3],[0,-5],[-1,-1],[0,-1],[1,-2],[0,-3],[-1,-2]],[[2722,2398],[0,-1],[0,-1],[0,-5],[0,-13],[0,-9],[0,-6],[0,-2],[0,-1],[0,-1],[1,-3],[0,-11],[0,-4],[0,-12],[0,-7],[0,-5],[1,-4],[0,-17],[2,-36],[0,-8],[0,-2],[1,-3],[0,-3],[0,-5],[0,-7],[0,-7],[0,-8],[1,-5],[0,-8],[0,-1],[2,-20],[1,-16],[0,-8],[2,-23],[1,-19],[1,-11],[1,-7],[1,-8],[0,-6],[1,-4],[2,-26],[2,-15],[0,-6],[0,-1],[1,-9],[1,-2],[0,-3],[0,-1],[0,-1],[0,-1],[0,-2],[1,-4],[1,-7],[0,-2],[0,-4],[0,-6],[1,-10],[0,-3],[0,-2],[-1,-2],[0,-2],[0,-4],[-1,-3],[0,-5],[0,-5],[0,-5],[0,-10],[1,-15],[0,-15],[1,-9],[1,-15],[2,-20],[0,-1],[1,-22],[1,-18],[0,-3],[0,-2],[1,-4],[0,-5],[0,-2],[0,-6],[1,-5],[1,-15],[0,-7],[1,-8],[0,-3],[1,-11],[0,-3],[1,-10],[0,-5],[0,-1],[0,-4],[0,-6],[1,-7],[0,-10],[1,-9],[0,-8],[1,-13],[0,-11],[0,-5],[0,-1],[0,-10],[0,-2],[0,-5],[0,-12],[0,-8],[0,-11],[-1,-12],[0,-20],[0,-1],[0,-2],[0,-1],[0,-10],[0,-3],[0,-3],[-1,-16],[0,-9],[0,-1],[0,-1],[0,-6],[0,-13],[0,-2],[0,-11],[0,-6],[0,-8],[0,-4],[0,-5],[-1,-4],[0,-4],[0,-2],[0,-7],[0,-4],[0,-1],[0,-2],[-1,4],[0,4],[0,3],[0,1],[0,2],[0,1],[-1,-2],[-1,-2],[0,-1],[0,-6],[0,-5],[0,-1],[-1,-3],[0,-1],[0,-2],[0,-2],[0,-3],[0,-4],[0,-1],[-1,-6],[0,-1],[0,-6],[0,-4],[0,-2],[0,-5],[0,-1],[0,-2],[0,-5],[0,-1],[0,-1],[1,-1],[-1,-2],[0,-6],[-1,-2],[0,-2],[-1,-3],[0,-2],[-1,-5],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-3],[-1,-2],[0,-1],[0,1],[0,2],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-3],[0,-3],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[-1,-1],[0,1],[0,-1],[-1,0],[0,1],[0,2],[0,1],[0,1],[-1,1],[-1,-2],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,1],[-1,0],[-1,-2],[0,1],[-1,4],[0,1],[-1,1],[0,1],[0,4],[0,2],[0,2],[0,1],[0,2],[-1,0],[0,2],[0,1],[0,1],[0,1],[1,1],[0,7],[0,1],[0,2],[0,2],[0,1],[0,2],[0,1],[0,1],[1,-1],[0,1],[0,2],[0,5],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,10],[-1,3],[0,1],[-1,4],[0,2],[1,4],[-1,2],[0,2],[0,3],[0,2],[0,3],[0,2],[-1,5],[0,3],[-1,2],[0,4],[-1,6],[0,-1],[0,2],[0,2],[0,2],[0,2],[-1,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,2],[-1,2],[0,1],[0,1],[-1,3],[0,2],[0,2],[-1,1],[0,-1],[-1,1],[0,2],[0,2],[-1,-1],[0,2],[0,1],[-1,0],[-1,-2],[-1,1],[-1,1],[0,-1],[0,-2],[-1,-5],[0,-2],[0,1],[-1,8],[0,1],[0,1],[0,5],[0,2],[-1,1],[0,2],[0,7],[0,1],[0,1],[-1,15],[0,12],[0,4],[-1,6],[0,6],[0,11],[0,6],[-1,9],[-1,6],[0,1],[0,3],[-1,1],[0,2],[0,1],[-1,1],[0,1],[0,1],[0,2],[0,1],[-1,0],[0,1],[0,3],[0,2],[-1,1],[-1,-1],[0,-4],[0,-2],[-1,0],[0,11],[0,4],[0,3],[0,11],[-1,3],[-1,5],[0,3],[1,1],[1,-1],[0,-1],[0,-5],[1,0],[0,4],[0,3],[0,3],[0,5],[1,5],[0,3],[0,3],[0,3],[0,3],[0,4],[0,4],[-1,1],[0,1],[0,3],[0,3],[0,1],[1,1],[0,1],[0,2],[-1,2],[-1,0],[0,-1],[0,-2],[0,-3],[-1,0],[0,-1],[-1,-1],[1,-4],[0,-8],[0,-12],[0,-1],[0,-1],[-1,-1],[-1,0],[0,2],[0,-2],[-1,-3],[0,-7],[0,1],[0,6],[0,5],[0,1],[0,4],[-1,3],[0,3],[-1,13],[-1,7],[-1,7],[0,7],[-1,7],[0,7],[-1,2],[0,1],[0,5],[-1,12],[-1,9],[0,1],[0,2],[-1,2],[0,3],[0,2],[0,5],[-1,5],[-1,6],[0,6],[-1,2],[0,2],[0,8],[-1,2],[0,3],[0,3],[0,1],[0,1],[1,-3],[0,-5],[0,-1],[0,1],[0,2],[0,1],[1,1],[0,2],[1,4],[0,3],[0,3],[1,2],[0,3],[1,1],[0,4],[0,1],[0,5],[1,7],[1,2],[0,1],[0,1],[0,1],[0,2],[1,1],[0,3],[0,1],[1,4],[0,2],[0,1],[0,1],[0,4],[0,3],[0,6],[0,3],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,-1],[0,-1],[0,-4],[0,-6],[0,-2],[0,-1],[0,-1],[0,-4],[-1,1],[-1,4],[0,3],[0,1],[1,2],[-1,1],[0,1],[0,1],[0,1],[1,1],[-1,5],[0,3],[0,3],[-1,1],[-1,0],[-1,-1],[-2,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-2],[1,-1],[1,0],[0,-1],[0,-3],[0,-3],[2,2],[0,-1],[0,-4],[-1,0],[0,-3],[0,-1],[0,-4],[-1,-3],[0,-4],[0,-4],[0,-4],[0,-1],[0,-3],[0,-2],[-1,0],[0,1],[-1,0],[0,-2],[0,1],[-1,-1],[0,-1],[0,-4],[0,-1],[0,-3],[1,-2],[0,-2],[-1,-3],[0,1],[0,1],[0,1],[0,2],[0,13],[0,2],[0,2],[-1,1],[0,2],[0,4],[0,3],[-1,2],[-1,4],[0,1],[0,6],[0,2],[0,4],[0,5],[0,5],[0,5],[0,-1],[0,-5],[0,-4],[0,3],[1,5],[0,1],[0,6],[0,4],[0,4],[1,4],[0,10],[0,2],[0,2],[-1,3],[0,1],[0,1],[0,3],[0,3],[1,6],[0,4],[0,2],[1,1],[0,6],[0,2],[0,4],[0,4],[1,4],[0,7],[0,3],[0,2],[0,1],[1,1],[-1,3],[1,2],[0,3],[0,1],[0,2],[0,4],[0,1],[0,1],[0,3],[0,1],[0,3],[0,4],[0,3],[0,3],[0,3],[0,6],[0,5],[0,2],[0,1],[0,1],[0,2],[0,2],[0,1],[0,4],[0,3],[0,1],[0,2],[0,1],[0,5],[1,2],[-1,3],[1,4],[-1,2],[0,2],[-1,1],[0,5],[0,1],[-1,3],[0,4],[0,4],[-1,-1],[0,2],[0,1],[0,4],[0,5],[0,2],[0,1],[-1,1],[-1,4],[1,1],[0,1],[0,1],[0,3],[0,3],[-1,2],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,-5],[0,-2],[0,-1],[-1,-1],[0,3],[0,1],[0,4],[0,1],[0,1],[-1,2],[0,4],[0,6],[0,1],[0,2],[-1,1],[0,2],[0,1],[-1,1],[0,-1],[0,1],[0,4],[0,3],[0,3],[-1,4],[0,2],[0,3],[-1,5],[0,3],[-1,0],[0,-1],[-1,2],[0,4],[0,1],[0,2],[-1,0],[0,2],[0,2],[-1,0],[0,1],[0,2],[-1,0],[0,2],[0,1],[0,9],[0,3],[0,3],[0,5],[0,5],[0,1],[-1,1],[-1,3],[0,1],[0,2],[-1,2],[0,1],[-1,2],[0,2],[0,3],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,3],[0,3],[0,2],[-1,1],[0,8],[-1,3],[0,3],[-1,1],[-2,7],[0,3],[-2,2],[0,2],[-2,8],[-1,0],[1,1],[-1,0],[0,4],[-1,3],[0,3],[-1,1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,1],[0,-2],[-1,-2],[-1,3],[-1,0],[0,1],[0,2],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,3],[-1,-1],[0,-1],[-1,-7],[1,-7],[0,-2],[0,-3],[0,-2],[0,-1],[0,-4],[0,-2],[0,-2],[0,-1],[-1,0],[-1,1],[0,1],[-1,2],[0,2],[-1,-2],[-1,0],[0,-1],[-1,-4],[-1,-3],[0,-1],[-1,-4],[-1,-2],[0,-1],[-1,0],[-1,-4],[0,-4],[-1,0],[-1,-6],[-1,0],[-1,-2],[0,-2],[0,-2],[0,2],[0,4],[0,3],[0,2],[-1,1],[0,-1],[0,-2],[-1,-4],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-2],[-1,0],[-1,1],[-1,0],[-1,0],[0,-2],[-1,-1],[-1,-1],[-1,-1],[0,-2],[-1,1],[-1,-1],[-1,-2],[0,-1],[0,-2],[0,1],[-1,4],[0,3],[0,8],[-1,11],[0,6],[0,2],[0,2],[0,3],[1,1],[0,-3],[-1,-5],[0,-5],[1,-8],[0,-10],[1,-3],[0,-1],[1,1],[0,1],[0,19],[0,2],[0,1],[0,1],[0,2],[0,2],[0,1],[-1,0],[0,5],[0,5],[-1,4],[0,1],[-1,2],[0,2],[-1,2],[-1,0],[0,2],[-1,5],[-1,6],[0,2],[-1,3],[0,2],[-1,1],[0,1],[-2,4],[-1,4],[0,3],[-1,4],[-1,4],[-2,7],[-1,4],[-2,6],[-3,6],[-3,8],[-2,4],[-2,2],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-3,2],[-3,-1],[-1,-1],[-2,-1],[-1,-2],[-1,0],[-6,-8],[-2,-1],[-1,-1],[-1,0],[0,1],[-1,-1],[-1,-1],[-2,-3],[-2,-3]],[[1897,4510],[-10,0],[-3,0],[-10,0],[-1,0],[-5,-1],[-2,0],[-2,1],[-1,0],[-3,0],[-2,0],[-5,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-2,-1],[-11,0],[-1,0],[-10,-1],[-3,0],[-4,1]],[[1814,4509],[-1,0],[-1,0],[-5,0],[-6,0],[-3,0],[-4,1],[-5,0],[-3,-1],[-26,1],[-1,-1],[-1,0],[-3,0],[-9,0],[-1,0],[-2,0],[-1,0],[-11,1]],[[1731,4510],[0,151],[0,40],[0,104],[0,3],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,6],[0,2],[0,1],[0,1],[0,4],[0,1],[0,4],[0,14],[0,11],[1,1],[0,1],[0,8],[1,13],[0,21],[1,9],[0,1],[0,1],[0,2],[0,1],[-2,12],[0,1],[-1,0],[-1,0],[0,-1],[-3,3],[-1,3],[0,3],[0,1],[0,1],[0,2],[0,3],[0,2],[-1,24],[1,4],[1,8],[0,1],[0,2],[1,14],[1,8],[1,12],[0,3],[0,1],[1,1],[2,7],[1,9],[1,9],[1,8],[0,2],[0,1],[-1,2],[0,4],[1,7],[1,12],[2,11],[0,12],[1,9],[0,3],[0,10],[4,33],[2,15],[0,5],[0,2],[0,2],[0,5],[-1,3],[-1,2],[0,2],[0,5],[0,3],[0,4],[-1,5],[-1,1],[-5,11],[0,1],[-2,10],[0,2],[0,5],[-1,10]],[[1734,5257],[-1,12],[0,19],[-1,15],[0,10],[0,1],[-2,8],[0,5],[0,2],[0,8],[0,7],[0,2],[0,13],[0,51],[0,2],[0,57],[0,5],[0,5],[0,4],[0,4],[0,6],[0,17],[0,3],[0,6],[0,3],[0,4],[0,5],[0,3],[0,9],[0,1],[0,5],[0,23],[0,1],[0,4],[0,3],[0,4],[0,3],[0,1],[0,40],[0,12],[0,8],[0,16],[0,1],[0,1],[0,35],[0,10],[0,1],[0,36],[0,1],[0,41],[0,29]],[[1730,5819],[8,0],[20,0]],[[2148,4136],[4,0],[2,0],[1,0],[5,0],[2,0],[3,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[3,0],[5,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[4,0],[1,0],[1,0],[5,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[4,0],[2,0],[1,0],[3,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[6,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[7,0],[2,0],[1,0],[1,0],[1,0],[3,0],[1,0],[2,0],[2,0],[1,0],[3,0],[1,0],[2,0],[5,0],[1,0],[1,0],[1,0],[1,0],[5,0],[2,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[2,0],[12,0],[1,0],[1,0]],[[2336,4136],[0,-2],[0,-1],[3,-16],[1,-4],[1,-2],[1,-1],[1,0],[0,1],[0,1],[0,1],[0,2],[1,2],[1,0],[1,-1],[0,-2],[1,-13],[0,-10],[0,-6],[-1,-1],[-2,-9],[-2,-11],[-1,-8],[0,-3],[0,-1],[0,-2],[0,-2],[4,-21],[1,-3],[1,-7],[0,-2],[0,-1],[0,-5],[0,-4],[2,-14],[1,-5],[1,-5],[1,-1],[0,1],[3,-2],[0,-1],[1,0],[0,-3],[-1,-5],[0,-4],[0,-2],[0,-3],[0,-4],[0,-19],[0,-1],[0,-10],[0,-3],[0,-1],[0,-1],[0,-2],[0,-7],[0,-9],[0,-3],[0,-1],[0,-19],[0,-3],[0,-2],[0,-6],[0,-5],[0,-1],[0,-10],[0,-2],[0,-1],[0,-14],[0,-2],[0,-1],[0,-3],[0,-1],[0,-5],[0,-3],[0,-1],[0,-3],[0,-2],[0,-4],[0,-6],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-4],[0,-1],[0,-2],[0,-16],[0,-1],[0,-4],[0,-9],[0,-1],[0,-3],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-3],[0,-2],[0,-3],[0,-17],[0,-1],[0,-6],[0,-1],[0,-1],[0,-1],[0,-4],[0,-3],[0,-5],[0,-7],[0,-1],[0,-2],[0,-1],[0,-5],[0,-1],[0,-7],[0,-2],[0,-1],[0,-1],[0,-1],[0,-3],[0,-3],[0,-2],[0,-3],[0,-6],[0,-5],[0,-3],[0,-15],[0,-1],[0,-1],[0,-1],[0,-3],[0,-4],[0,-1],[0,-2],[0,-2],[0,-6],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-4],[0,-3],[0,-6],[0,-2]],[[2872,3784],[0,1],[-1,-1],[0,-1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,8],[1,2],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-4],[0,-1],[-1,1],[0,3],[0,1],[0,2],[0,1],[0,1]],[[2872,3753],[0,6],[0,1],[0,5],[0,2],[0,1],[1,1],[1,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1]],[[2900,3846],[0,-1],[0,-3],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[-1,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-4],[0,-1],[-1,-2],[0,-7],[-1,-10],[0,-5],[0,-2],[0,-1],[-1,-9],[0,-1],[0,-5],[0,-1],[0,-2],[0,-1],[-1,-3],[0,-2],[0,-1],[0,-2],[0,-1]],[[2883,3753],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,1],[0,1],[-1,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,1],[0,1],[0,1],[0,1],[0,2],[1,2],[-1,4],[1,5],[0,2],[0,3],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,1],[1,3],[0,1],[-1,1],[-1,-1],[0,-1],[0,3],[0,2],[0,1],[0,1],[0,1],[1,2],[0,4],[0,2],[0,-1],[-1,0],[0,-1],[-1,1],[0,-2],[-1,-1],[0,-1],[0,-2],[0,1],[0,1],[0,2],[0,1],[0,4],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[2,3],[0,-1],[0,1],[1,0],[0,1],[0,3],[-1,1],[0,1],[0,1],[0,-2],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,2],[0,2],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,2],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,-1],[0,-2],[0,-1],[0,-4],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-2],[-1,-3],[0,-1],[0,-1],[0,-2],[1,0],[0,-2],[0,-1],[-1,2],[0,2],[0,1],[-1,1],[0,1],[-1,2],[1,3],[-1,1],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,1],[0,2],[-1,4],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,4],[0,2],[0,-1],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,3],[0,1],[0,1],[0,2],[0,2],[-1,2],[0,3],[0,2],[0,2],[-1,2],[0,1],[0,3],[0,1],[1,0],[0,1],[1,0],[1,4],[0,2],[0,1],[-1,0],[0,-2],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,1],[0,1],[0,2],[1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,1],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[0,2],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,2],[-1,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-2],[-1,-2],[0,1],[0,1],[0,1],[0,3],[0,1],[0,4],[0,1],[0,2],[0,1],[0,4],[0,1],[1,1],[0,2],[0,1],[0,3],[0,2],[0,1],[0,-1],[1,1],[0,1],[0,2],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,4],[0,2],[0,2],[0,2],[0,2],[0,1],[0,1],[-1,1],[0,-1],[0,-2],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-2],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,4],[0,1],[0,1],[0,1],[0,1],[0,4],[0,1],[1,1],[0,1],[0,1],[0,2],[0,3],[0,3],[1,0],[0,1],[-1,0],[1,1],[0,2],[0,2],[0,1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[1,-1],[0,-1],[0,-1],[1,1],[0,2],[0,1],[1,1],[0,1],[0,2],[0,1],[0,2],[0,1],[-1,2],[0,2],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,1],[0,2],[0,2],[0,1],[0,3],[0,2],[0,2],[0,2],[0,3],[0,2],[-1,3],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,2],[1,1],[0,1],[0,5],[0,3],[0,2],[0,1],[1,1],[0,2],[0,1],[0,1],[1,2],[0,1],[0,1],[-1,0],[0,1],[1,3],[0,1],[0,-1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,-1],[0,-1],[0,1],[0,2],[0,2],[-1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,2],[1,1],[0,1],[0,2],[0,3],[0,-1],[-1,-1],[0,1],[0,3],[1,1],[0,1],[0,1],[0,4],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-2],[0,-1],[1,-1],[1,-1],[0,-3],[0,-1],[0,-1],[-1,-2],[0,1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-3],[0,-1],[-1,-2],[0,-2],[-1,-3],[0,1],[0,1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,3],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,2],[-1,0],[0,-2],[0,-3],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-2],[-1,-2],[0,1],[0,1],[-1,0],[0,1],[-1,2],[0,1],[0,-2],[0,-1],[0,-1],[0,-3],[0,-2],[0,-1],[0,-1],[1,-1],[0,1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-3],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-3],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-3],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-3],[0,-1],[0,-1],[0,-2],[-1,0],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,1],[0,-1],[0,-1],[0,-1],[0,-3],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-6],[0,-1],[0,-2],[0,-2],[0,-4],[0,-1],[1,-2],[0,-2],[0,-3],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-4],[0,-3],[1,-1],[0,-1],[0,-1],[0,-3],[0,-1],[-1,-2],[0,-1],[0,-3],[0,-2],[0,-1],[1,-2],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-4],[0,-4],[0,-1],[0,-1],[0,-2],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-4],[0,-1],[0,-2],[1,-3],[0,-1],[-1,1],[0,1],[0,1],[-1,1],[0,3],[0,1],[0,1],[0,1],[0,2],[-1,0],[0,1],[0,-1],[0,1],[0,2],[0,1],[-1,2],[0,1],[0,-1],[0,-1],[-1,-2],[0,-1],[1,0],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,3],[0,3],[0,2],[0,2],[0,2],[-1,1],[0,2],[-1,2],[-1,1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[-1,1],[0,1],[-1,1],[0,3],[0,4],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,1],[-1,2],[0,2],[-1,2],[0,4],[0,1],[0,1],[-1,1],[0,1],[0,2],[-1,1],[0,3],[0,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,1],[0,3],[-1,0],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,2],[0,1],[0,1],[0,1],[-1,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,3],[0,2],[0,4],[0,1],[1,1],[0,3],[0,1],[0,1],[0,1],[1,2],[0,1],[1,5],[0,1],[1,0],[0,1],[0,1],[0,1],[0,2]],[[2910,4390],[6,-21],[2,-6],[1,-2],[4,-12],[0,-1],[4,-10],[1,-4],[4,-11],[0,-1],[-1,-15],[0,-4],[0,-2],[0,-2],[0,-3],[-1,-11],[-1,-2],[0,-2],[0,-2],[0,-2],[0,-9]],[[2929,4268],[-1,1],[0,-3],[-1,-2],[0,-2],[0,-3],[0,-1],[0,-1],[-2,-1],[-1,1],[0,-1],[0,-2],[-1,-7],[0,-3],[0,-3],[0,-1],[-1,-1],[0,-2],[0,-4],[0,-4],[0,-1],[0,-1],[0,-3],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[0,1],[0,2],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-2],[0,-1],[1,-1],[0,1],[0,5],[0,4],[0,1],[0,1],[0,-2],[1,-5],[0,-6],[0,-7],[0,-4],[0,-9],[0,-4],[-1,-8],[0,-13],[-1,-8],[0,-4],[0,-1],[0,-3],[0,-15],[-1,-4],[0,-13],[0,-21],[0,-6],[0,-1],[-1,0],[0,-1],[0,-3],[-1,-9],[-1,-12],[-1,-13],[-1,-2],[-1,-6],[0,-1],[0,-2],[-1,-1],[1,-2],[0,-1],[0,-1],[-1,-7],[-1,-6],[-1,-5],[0,-2],[0,-1],[-2,-3],[-1,-6],[-1,-2],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-2],[-1,-2],[-1,-5],[0,-2],[0,-2],[0,-4],[-2,-11],[0,-1],[1,-1],[0,-1],[-1,-5],[-1,-10],[-1,-4],[0,-2],[0,-1],[-1,-1],[0,-5],[-1,-2],[-1,-2],[-1,-1],[-1,1],[0,2],[1,11],[0,3],[0,3],[1,10],[0,2],[0,3],[1,6],[-1,2],[0,3],[0,1],[-2,2],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,-1],[0,1],[-1,-1],[-1,0],[0,-4],[0,-2],[-1,0],[0,5],[0,2],[0,4],[-1,1],[0,4],[-1,0],[0,2],[0,1],[0,1],[-1,3],[0,1],[-1,-1],[0,-2],[0,2],[0,2],[-1,4],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,3],[0,1],[0,1],[0,2],[0,1],[-1,1],[0,2],[-1,7],[-1,2],[0,2],[-1,0],[0,2],[0,1],[0,4],[1,0],[0,12],[0,1],[0,2],[0,1],[0,1],[-1,0],[0,1],[0,2]],[[2886,4067],[1,4],[0,1],[0,5]],[[2880,3238],[1,1],[0,1],[1,1],[0,1],[0,2],[1,-1],[0,1],[1,1],[0,2],[1,2],[0,1],[0,1],[0,-1],[1,0],[0,2],[1,3],[0,5],[0,4],[0,5],[0,4],[0,7],[1,6],[0,5],[0,3],[0,2],[0,3],[0,2],[0,3],[0,9],[0,4],[0,5],[-1,3],[0,3],[0,8],[0,1],[-1,8],[1,1],[0,-1],[0,-5],[1,-3],[0,-9],[1,-16],[0,-3],[-1,-5],[0,-14],[0,-16],[-1,-13],[0,-17],[-1,-1],[0,1],[-1,0],[-1,-1],[0,-1],[-1,-2],[-2,-4],[-1,-1],[0,-1],[-1,-1],[-1,-4],[-2,-6],[-1,-3],[0,-2],[-1,-2],[-1,-3],[0,-1],[0,1],[0,1],[0,2],[1,2],[0,2],[0,1],[0,1],[0,1],[1,0],[1,3],[0,1],[0,2],[2,4],[1,1],[0,1],[0,1],[0,1],[1,1]],[[2883,3374],[0,-1],[0,-1],[0,-2],[1,-4],[0,-5],[0,-2],[0,-6],[0,-1],[0,2],[-1,1],[0,1],[0,2],[0,4],[0,1],[0,3],[-1,0],[0,3],[0,2],[0,1],[-1,2],[0,1],[0,1],[1,0],[0,-1],[1,-1]],[[2877,3491],[0,-10],[1,-14],[1,-12],[0,-13],[1,-11],[0,-5],[1,-9],[0,-8],[1,-7],[1,-10],[2,-30],[1,-8],[0,-4],[1,-2],[-1,-1],[0,1],[0,2],[0,3],[-1,3],[0,3],[0,4],[-1,4],[0,3],[0,2],[0,2],[0,3],[-1,4],[0,3],[0,1],[-1,2],[-1,1],[0,2],[0,2],[0,2],[0,1],[0,1],[0,2],[0,2],[0,2],[-1,8],[0,2],[0,2],[0,3],[0,8],[0,3],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,5],[-1,1],[0,1],[0,2],[0,4],[0,2],[0,2],[0,3],[0,1],[0,2],[0,1],[0,5],[-1,3],[0,1],[0,1],[0,4],[-1,4],[0,1],[0,-1],[-1,1],[0,1],[-1,0],[-1,2],[0,-1],[0,-1],[0,-2],[0,-5],[0,-2],[0,-1],[1,-1],[1,-3],[0,1],[0,1],[1,-1],[0,-7],[0,-1],[0,-2],[0,-2],[0,-1],[0,-7],[1,-4],[0,-2],[0,-1],[0,-2],[0,-3],[0,-3],[0,-3],[1,-1],[0,-3],[0,-1],[0,-3],[0,-4],[0,-2],[1,-2],[0,-4],[0,-6],[0,-2],[-1,4],[0,2],[-1,5],[0,2],[0,2],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,1],[-1,2],[-1,2],[-1,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[-2,-2],[-1,-1],[0,-1],[0,-1],[-1,-2],[-1,1],[-1,0],[0,-2],[-1,-1],[0,-1],[0,1],[-2,-2],[0,-1],[0,-2],[-1,-3],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,-2],[-1,1],[-1,-1],[0,2],[0,3],[-1,1],[-1,-1],[0,-2],[0,-1],[-1,-1],[0,-2],[1,-2],[-1,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,1],[2,0],[0,1],[2,0],[0,1],[1,1],[0,1],[1,2],[1,3],[1,-1],[0,-2],[0,-1],[0,-4],[1,0],[1,1],[1,5],[2,2],[1,1],[2,0],[1,0],[1,-4],[0,-2],[0,-5],[0,-3],[0,-2],[1,0],[0,-2],[0,1],[1,0],[0,4],[0,1],[1,1],[0,2],[-1,2],[0,1],[0,1],[1,2],[1,1],[1,-1],[1,-3],[0,-1],[0,-2],[1,-1],[0,-2],[0,-2],[0,-3],[0,-4],[0,-1],[1,-4],[0,-2],[0,-3],[0,-3],[0,-3],[0,-3],[0,-1],[0,-1],[0,-4],[0,-6],[0,-1],[0,-2],[0,-1],[0,-4],[0,-3],[0,-3],[0,-2],[0,-3],[-1,-1],[0,-3],[0,-2],[-1,-1],[-1,-1],[0,2],[-1,1],[-1,-2],[0,-3],[0,-2],[0,-2],[-1,0],[0,-1],[0,-1],[-1,-3],[0,-1],[1,-1],[0,-1],[-1,-2],[0,-1],[0,-3],[0,-1],[-1,-3],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[-1,-2],[-1,-2],[0,-2],[0,-2],[-1,0],[0,1],[-1,1],[-1,2],[-1,0],[0,-1],[-1,2],[-1,0],[0,-1],[0,-1],[-1,1],[0,1],[-1,-1],[0,1],[0,1],[-1,0],[0,3],[0,1],[-1,-2],[0,2],[-1,2],[-1,0],[-1,-1],[-1,-2],[0,-1],[0,-5],[1,-1],[0,-1],[1,0],[0,-1],[2,-1],[0,-2],[0,-3],[0,-3],[0,-3],[0,-4],[0,-2],[0,-2],[0,-1],[-1,-2],[0,-2],[0,-4],[-1,-1],[1,-3],[0,-2],[-1,-3],[0,-2],[0,-1],[0,-2],[-1,-1],[0,-2],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-4],[1,-1],[0,-1],[0,-3],[1,-1],[1,1],[0,1],[1,1],[1,1],[0,1],[0,3],[0,3],[0,4],[0,1],[1,0],[0,-3],[0,-2],[0,-3],[1,-6],[0,-3],[0,-2],[2,-1],[0,1],[0,2],[0,6],[-1,2],[0,1],[1,0],[1,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[1,-2],[0,-1],[0,-3],[-1,-5],[0,-2],[-1,-3],[0,-2],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-3],[0,-3],[0,-2],[0,-2],[1,0],[0,1],[0,2],[0,1],[1,3],[1,4],[1,7],[1,5],[1,7],[1,5],[1,8],[1,3],[1,5],[0,-1],[0,-1],[0,-1],[-1,-6],[-1,-8],[-3,-15],[-2,-10],[-2,-13],[-2,-13],[-1,-9],[-1,-9],[0,-5],[-1,5],[0,2],[0,1],[0,2],[-1,3],[-1,2],[0,1],[-1,2],[0,1],[-1,0],[-1,1],[-1,0],[-1,-1],[-3,-2],[-2,-2],[-1,-2],[-3,-4],[0,-1],[-1,-2],[-1,-3],[-1,-3],[-2,-10],[-4,-12],[-1,-3],[-1,-3],[-1,-4],[-1,-3],[-1,-8],[-1,-3],[-1,-4],[0,-5],[0,-1],[-1,-3],[-1,-5],[-1,-16],[-1,-4],[-1,-11],[0,-1],[0,-2],[-1,-18],[0,-5],[0,-3],[-1,-3],[0,-6],[0,-5],[0,-1],[-1,2],[0,1],[0,1],[-1,4],[-2,3],[-1,1],[-1,1],[-3,-1],[-3,-2],[-3,-6],[-1,-3]],[[2803,2986],[-3,17],[-2,10],[-10,57],[-2,11],[0,1],[-1,6],[0,1],[-1,1],[-3,20],[0,1],[-1,5],[-3,14],[0,1],[0,1],[0,1],[0,1],[-1,2],[-1,4],[0,1],[-1,5],[0,1],[-2,10],[0,1],[-1,6],[-2,0],[-1,0],[-4,1],[-3,0],[-1,0],[-1,0],[-6,1],[-2,0],[-1,0],[-1,0],[-3,1],[-1,0],[-1,0],[-3,0],[-1,0],[0,1],[0,21],[0,5],[-1,7],[-2,14],[-1,6],[-1,-3],[-2,-9],[0,3],[0,2],[0,3],[0,2],[0,1],[0,1],[0,7],[-1,1],[-4,2],[-1,0],[-2,0],[-1,1],[-2,0],[-1,0],[-1,0],[-7,2],[-3,1],[-3,1],[-5,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,1],[-3,-6],[-1,-3],[-1,-1],[-1,-2],[0,-1],[-3,-4],[-2,-10],[0,1],[0,1],[0,2],[-4,-6],[-3,-5],[-3,-5]],[[2803,2986],[-1,-1],[-1,0],[-2,-5],[-1,-4],[-2,-6],[-1,-4],[-1,-7],[-2,-13],[-2,-12],[0,-1],[-1,-7],[0,-1],[-1,-8],[-1,-4],[-1,-11],[0,-5],[0,-5],[0,-3],[-1,-1],[0,-14],[0,-3],[0,-6],[0,-6],[-1,-1],[0,-2],[-1,-4],[0,-2],[-1,-3],[-1,-3],[0,-4],[0,-1],[-1,-3],[0,-8],[-1,-1],[-1,1],[0,2],[-1,-2],[-1,-1],[0,3],[0,3],[-1,0],[-1,-2],[0,-3],[0,-3],[-1,-2],[0,-1],[0,-4],[0,-2],[0,-1],[0,-2],[1,0],[0,1],[0,-1],[0,-4],[-2,-3],[0,-3],[-1,-4],[-1,-2],[0,-1],[0,-2],[0,-2],[0,-2],[-3,-5],[0,-2],[0,-2],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-6],[0,-2],[-1,-4],[-1,-5],[-1,-2],[0,-2],[0,-1],[-1,0],[-1,-1],[-1,-3],[-1,-2],[-1,-4],[0,-2],[0,1],[-1,1],[-1,-5],[-1,-3],[-1,-7],[-1,2],[0,1],[-1,-1],[0,-2],[0,-1],[-1,0],[0,1],[0,2],[0,2],[0,1],[-1,-1],[0,-1],[0,1],[0,-3],[0,-1],[0,-3],[0,-3],[0,-4],[1,0],[0,-3],[0,-1],[0,-2],[0,-3],[0,-5],[-1,-2],[0,-2],[0,-2],[-1,-3],[-1,-3],[0,-1],[-1,-1],[-1,0],[0,-3],[-1,-1],[0,-1],[-1,-6],[0,-3],[-1,-7],[-1,-4],[-1,-3],[-1,-3],[0,1],[0,-1],[-1,-2],[0,-3],[-1,-6],[0,-1],[0,-2]],[[1581,5615],[-1,0],[0,1],[0,3],[0,1],[0,2],[0,1],[0,2],[-1,5],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[0,2],[-1,2],[0,1],[-1,4],[0,1],[0,2],[0,1],[0,3],[0,2],[0,1],[0,5],[0,4],[0,3],[0,2],[-1,0],[-1,-1],[0,4],[0,1],[-1,2],[0,1],[-1,2],[0,1],[0,2],[0,6],[1,4],[0,5],[0,2],[1,7],[0,4],[1,5],[0,1],[0,-1],[0,-1],[1,0],[0,2],[0,1],[0,-1],[0,-2],[1,0],[0,-6],[0,-2],[0,-1],[1,-1],[1,-4],[0,-2],[0,-2],[0,-2],[-1,-1],[0,-1],[-1,1],[0,2],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-3],[-1,-1],[0,-1],[-1,-3],[0,-3],[1,-1],[1,0],[0,-2],[1,-4],[0,-1],[0,-2],[0,-3],[0,-1],[0,-6],[0,-1],[0,-1],[0,-1],[1,-5],[0,-4],[0,-1],[1,2],[0,3],[0,1],[-1,3],[1,0],[0,-1],[1,-4],[1,-3],[0,-2],[1,-1],[0,-1],[1,0],[0,-6],[0,-1],[0,-3],[0,-2],[0,-2],[0,-1],[0,-3],[0,-1],[0,-1],[0,-3],[0,-1],[-1,0],[0,1]],[[1574,5742],[0,-3],[1,-2],[1,-2],[0,-1],[0,-3],[0,1],[-1,0],[0,-1],[-1,-1],[0,1],[0,1],[0,3],[0,6],[0,1]],[[1572,5746],[1,-3],[0,-1],[0,-4],[0,-4],[-1,-1],[0,2],[0,3],[-1,1],[0,2],[1,4],[0,1]],[[1573,5748],[0,2],[1,-4],[-1,0],[0,1],[0,1]],[[1570,5744],[0,-1],[0,-2],[0,-1],[1,-3],[0,-1],[0,-1],[-1,-1],[0,-3],[0,-1],[0,-1],[0,-2],[0,-3],[-1,-1],[0,-1],[0,-4],[0,-1],[1,-2],[0,-2],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,1],[0,2],[0,1],[0,1],[-1,-1],[0,3],[0,1],[0,-1],[-1,-1],[-2,2],[0,2],[-1,2],[-1,2],[-1,2],[0,2],[0,3],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,-1],[0,1],[0,1],[0,2],[0,3],[1,0],[1,0],[0,-2],[0,-1],[0,-1],[1,-1],[0,-2],[1,-3],[0,-1],[1,0],[1,0],[0,1],[-1,1],[0,1],[-1,3],[1,1],[-1,2],[0,2],[1,2],[0,2],[0,1],[0,1],[0,3],[1,1],[1,4],[0,1],[0,1],[0,1],[1,1],[1,-1],[1,-3],[1,-2],[0,-1],[1,-3],[0,-1],[0,-2],[-1,-2],[0,-1],[-1,-2],[0,-1],[1,-2],[0,-1]],[[1559,5760],[0,-1],[1,-2],[1,-2],[0,-2],[0,-3],[-1,1],[-2,6],[0,3],[0,1],[1,-1]],[[1563,5766],[1,1],[0,-1],[0,-4],[0,-2],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[0,1],[-1,1],[1,3]],[[1583,5636],[1,-3],[-1,0],[0,1],[0,1],[0,1]],[[1563,5819],[1,-4],[-1,-1],[0,1],[-1,-1],[0,2],[0,3],[1,0]],[[1573,5770],[0,-6],[1,-2],[0,-1],[1,-4],[0,-5],[0,1],[-1,1],[-1,5],[0,6],[-1,1],[0,1],[0,2],[0,3],[0,-1],[1,-1]],[[1734,5257],[-9,1],[-7,-1],[-1,1],[-2,0],[-11,0],[-4,0],[-3,0],[-1,0],[-1,0],[-2,0],[-3,0],[-2,0],[-1,0],[-1,0],[-1,0],[-9,0],[-1,-4],[0,-2],[-2,-5],[-1,-2],[-1,-1],[-1,0],[-1,1],[-1,2],[-1,-2],[-2,-2],[-1,-1],[-2,-2],[-1,1],[-1,3],[-1,-1],[-1,-3],[-1,-9],[-3,-2],[-1,0],[-2,-2],[-3,-4],[-4,-8],[-1,-2],[-1,-6],[-6,-5],[-2,-1],[0,1],[-1,2],[-1,5],[-1,1],[-1,0],[0,-1],[-1,-2],[0,-2],[-3,-6],[-2,-3],[0,-2],[-2,-3],[-1,3],[-3,-1],[-1,-1],[-3,-3],[0,3],[0,4],[-3,6],[-1,1],[0,-1],[-1,-2],[-1,1],[-1,1],[-2,4],[0,1],[-3,-4],[-2,-2],[-1,0],[-2,2],[-1,-3],[-1,-4],[0,-1],[0,-2],[-1,-1],[-2,-5],[-3,-7],[-1,0],[-1,-1],[-1,-3],[-1,-3],[-1,-1],[-1,1],[-1,4],[-1,2],[-3,1],[-4,5],[-1,1],[-2,5],[0,3],[-1,4],[1,4],[0,5],[0,1],[0,5],[0,4],[-1,5],[0,3],[0,5],[0,3],[-1,18],[-2,18],[0,4],[-6,19],[-1,1],[-2,-3],[-2,-5],[-2,0],[-2,7],[0,9],[0,4],[-1,2],[0,1],[-2,-2]],[[1549,5306],[0,1],[-1,0],[-1,-1],[-1,2],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,-1],[0,-1],[0,-1],[-1,-3],[-1,1],[0,1],[-2,-8],[-1,1],[0,1],[-1,5],[-1,2],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,-2],[0,-2],[0,-2],[0,-2],[0,1],[-1,-2],[0,1],[0,4],[0,2],[1,4],[0,11],[0,4],[0,16],[0,12],[-1,8],[0,6],[0,1],[1,1],[0,1],[0,-3],[0,-2],[0,-1],[1,-5],[0,-1],[0,-4],[0,-6],[-1,-6],[1,-7],[1,0],[0,1],[-1,1],[1,3],[0,2],[0,-2],[0,-2],[0,-1],[1,1],[1,6],[0,3],[0,1],[0,1],[0,3],[0,2],[0,1],[-1,2],[0,2],[0,1],[0,2],[-1,2],[0,4],[1,1],[0,1],[1,1],[-1,4],[1,1],[0,1],[1,2],[0,1],[1,3],[-1,2],[-1,4],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,2],[0,-2],[0,-2],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[-1,2],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,2],[0,6],[0,1],[-1,3],[0,5],[0,8],[-1,5],[1,1],[1,-2],[0,-1],[0,-5],[0,-1],[1,1],[0,1],[0,3],[0,1],[0,1],[1,1],[0,1],[1,2],[2,2],[1,2],[0,1],[0,3],[-1,1],[0,1],[-1,0],[0,-1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[-2,3],[-1,0],[-1,-2],[0,-1],[0,-1],[0,-6],[0,-4],[1,-5],[-1,0],[0,-2],[-1,-1],[0,3],[1,3],[0,7],[-1,13],[0,5],[0,6],[0,2],[0,2],[0,5],[-1,9],[0,13],[0,1],[-1,1],[0,1],[-1,4],[0,2],[0,2],[0,1],[-1,0],[0,3],[0,4],[0,5],[0,13],[-1,9],[0,2],[0,7],[0,3],[0,1],[0,5],[-1,6],[0,5],[0,6],[-1,3],[0,1],[0,4],[-1,0],[0,1],[0,5],[0,4],[-1,1],[-1,2],[0,4],[0,1],[0,1],[-1,2],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,7],[0,1],[0,2],[0,2],[0,4],[-1,6],[0,4],[0,2],[0,1],[0,1],[0,2],[0,3],[0,1],[0,1],[0,3],[-1,7],[0,2],[0,2],[1,2],[0,3],[0,3],[0,1],[0,3],[0,1],[0,1],[0,2],[0,1],[0,6],[1,0],[0,1],[0,2],[0,4],[0,2],[-1,1],[-1,3],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,-2],[0,1],[1,0],[0,-1],[0,-2],[1,1],[0,-3],[0,-1],[1,0],[0,-1],[3,-8],[0,-2],[1,-1],[0,1],[1,-2],[1,-2],[0,-1],[0,-1],[1,-1],[0,1],[0,1],[1,0],[0,-2],[1,-1],[1,-4],[1,-1],[0,-1],[0,-3],[1,0],[0,-2],[1,-2],[2,-2],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,1],[1,2],[0,-1],[1,-2],[0,-1],[1,1],[0,1],[1,0],[0,-3],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,0],[0,-1],[1,1],[0,2],[1,3],[1,4],[0,2],[0,-2],[0,-2],[1,-1],[0,1],[0,-1],[1,-4],[0,-2],[1,-3],[0,-4],[1,1],[0,1],[1,1],[1,0],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[2,-2],[0,1],[0,2],[0,2],[-1,5],[1,2],[1,4],[1,2],[1,0],[0,-5],[-1,-2],[0,-2],[0,-1],[0,-1],[1,-6],[0,-1],[0,-1],[0,1],[0,1],[0,3],[1,4],[0,1],[1,1],[0,-1],[0,-2],[0,-8],[0,-1],[0,-1],[0,-3],[0,-2],[0,2],[-1,0],[0,-2],[0,-3],[0,-3],[1,0],[0,-1],[0,-2],[0,-3],[0,-1],[1,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[1,0],[-1,-3],[0,-1],[0,-1],[-1,1],[0,-1],[0,-2],[0,-2],[0,-2],[-1,-3],[0,-1],[-1,-1],[0,-5],[0,-3],[0,-3],[0,-1],[1,0],[0,2],[0,2],[0,1],[1,2],[0,4],[0,1],[1,4],[1,2],[0,3],[0,1],[1,0],[0,3],[0,6],[0,2],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,-2],[1,-2],[1,0],[0,-3],[1,-4],[0,-4],[0,-6],[0,-1],[1,-2],[0,-1],[0,-1],[-1,-1],[0,-2],[1,-4],[0,-2],[0,-1],[0,-1],[-1,0],[-1,1],[0,-1],[0,-6],[0,-1],[1,0],[0,-1],[0,-3],[0,-3],[0,-3],[0,-3],[0,-1],[0,-2],[0,-1],[0,-3],[0,-2],[1,0],[0,-1],[-1,-2],[-1,-1],[0,-2],[0,-4],[0,-1],[0,-1],[0,-1],[0,1],[1,-2],[0,-1],[1,1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-4],[0,-1],[0,-8],[0,-2],[0,-1],[1,0],[1,-2],[-1,-1],[0,-1],[-1,-3],[0,-2],[-1,-2],[-1,-1],[0,-1],[-1,1],[0,1],[0,3],[0,-2],[-1,-4],[0,-2],[1,0],[2,-7],[1,-2],[0,3],[1,1],[-1,1],[0,1],[0,1],[0,3],[2,3],[1,1],[0,1],[0,8],[0,2],[0,1],[-1,2],[0,4],[0,2],[-1,0],[1,2],[0,3],[0,1],[0,1],[-1,3],[0,2],[0,2],[0,5],[0,3],[-1,2],[1,1],[0,2],[1,-2],[0,1],[1,2],[-1,2],[0,3],[-1,1],[-1,1],[0,4],[1,4],[0,2],[0,2],[0,1],[1,2],[0,2],[-1,4],[0,2],[0,2],[0,1],[0,1],[0,4],[0,1],[1,6],[1,1],[0,1],[0,3],[0,2],[0,4],[0,2],[0,3],[0,1],[0,1],[0,2],[1,2],[1,0],[1,2],[0,1],[0,3],[0,3],[0,1],[0,1],[0,2],[-2,4],[0,5],[-1,2],[0,1],[-1,1],[0,5],[0,4],[0,1],[0,3],[0,1],[0,3],[0,1],[-1,3],[0,2],[0,2],[-1,0],[0,1],[-1,-1],[0,-1],[1,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-2],[0,-2],[1,-7],[1,-3],[0,-5],[1,-5],[0,-1],[0,1],[-1,1],[0,1],[0,2],[0,1],[-1,3],[-1,2],[0,3],[-1,-2],[0,3],[-1,5],[0,4],[0,5],[0,3],[0,3],[0,2],[1,1],[0,-1],[1,0],[0,1],[0,2],[2,-3],[0,1],[0,2],[1,4],[0,1],[-1,0],[0,2],[0,4],[-1,1],[0,1],[-1,4],[-1,1],[-1,4],[0,2],[0,1],[0,1],[-1,4],[1,2],[-1,1],[0,-3],[-1,-3],[-1,-1],[-1,2],[0,1],[0,3],[0,1],[0,-1],[0,1],[1,2],[0,3],[0,1],[-1,0],[0,-2],[0,-1],[0,-1],[-1,1],[0,1],[0,2],[0,4],[1,2],[0,-1],[2,3],[0,-1],[1,-1],[1,-2],[0,-6],[1,0],[0,-1],[1,2],[0,1],[0,1],[0,2],[0,3],[0,2],[0,2],[-1,5],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,-3],[1,0],[0,-1],[1,2],[0,3],[0,3],[0,4],[-1,1],[-1,3],[0,1],[0,1],[0,1],[0,2],[0,8],[0,2],[0,3],[0,2],[0,2],[-1,2],[0,1],[-1,1],[-1,-2],[0,-2],[0,-3],[-1,-2],[1,-2],[0,-1],[0,-3],[0,-1],[-1,0],[0,2],[-1,5],[0,3],[1,1],[0,4],[0,1],[0,1],[-1,3],[0,-2],[0,-1],[-1,0],[0,1],[0,5],[0,3],[0,2],[0,1],[-2,6],[0,2],[1,3],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,-2],[-1,1],[0,1],[0,1],[0,2],[1,3],[0,3],[1,0],[0,1],[0,1],[10,0],[8,0],[10,-1],[17,1],[8,0],[32,0],[7,0],[1,0],[8,0],[8,0],[18,0],[21,0],[5,0],[6,0]],[[2972,4646],[-11,2],[-2,0],[-2,0],[-1,0],[-3,1],[-3,0]],[[2950,4649],[-1,0],[0,11],[0,6],[0,20],[1,17],[0,34],[0,19],[0,7],[0,2],[0,1],[0,27],[0,4],[0,1],[-1,16],[-2,-1],[0,-2],[-1,-8],[-1,3],[0,1],[0,11],[1,5],[0,2],[1,9],[0,4],[0,3],[0,3],[0,4],[-1,4],[0,14],[0,5],[0,3],[0,13],[0,2],[-1,3],[0,1],[0,6],[1,13],[0,8],[1,6],[1,3],[0,4],[0,23],[1,8],[0,2],[0,7],[0,4],[-1,9],[-1,2],[0,1],[0,2],[-1,8],[1,16],[1,14],[-1,10],[0,16],[0,15],[1,3]],[[2948,5073],[4,0],[3,1],[2,0],[4,0],[5,0],[3,-1],[6,-1],[7,0],[6,1],[3,0],[8,0]],[[2999,5073],[1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-7],[1,-7],[0,-1],[-2,-18],[-2,-10],[0,-1],[0,-4],[1,-6],[1,-13],[1,-7],[-1,-15],[-1,-4],[-2,-11],[-1,-3],[-1,-2],[0,1],[-1,0],[0,-2],[-1,-3],[0,-3],[-1,-1],[-4,-6],[0,-1],[-2,-7],[0,-1],[0,-2],[0,-15],[0,-4],[1,-2],[-1,-8],[-1,-15],[0,-8],[0,-3],[0,-1],[0,-2],[0,-1],[0,-6],[-2,-6],[0,-10],[0,-5],[-1,-7],[-1,-4],[0,-3],[-1,0],[-1,-6],[0,-13],[0,-2],[0,-1],[0,-3],[-2,-15],[0,-3],[0,-6],[0,-8],[0,-7],[0,-6],[0,-4],[0,-4],[-1,-16],[0,-4],[-1,-9],[1,-5],[0,-3],[0,-1],[0,-20],[-4,-26],[0,-2],[1,-9],[1,-5],[0,-2],[1,-2],[0,-5],[0,-1]],[[1813,3575],[0,16],[0,1],[0,36],[0,2],[0,14],[0,23],[0,2],[0,2],[0,1],[0,16],[0,26],[0,2],[1,10],[-1,36],[0,28],[0,47],[0,26],[0,1],[0,5],[0,19],[1,162],[0,68],[0,40],[0,70],[0,3],[0,41],[0,6],[0,45],[0,139],[0,20],[0,27]],[[2444,4207],[-2,1],[0,1],[-1,4],[-3,18],[0,1],[0,4],[0,1],[-2,9],[0,2],[-1,3],[-1,-1],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-2,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,-1],[-1,0],[-4,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-4,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-3,1],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0]],[[2323,4245],[0,2],[0,2],[0,8],[-1,2],[0,1],[-1,1],[0,1],[-1,8],[-1,3],[0,2],[1,1],[0,2],[0,4],[1,18],[0,4],[0,14],[0,2],[-1,3],[0,8],[0,1],[0,21],[0,1],[-1,3],[-1,1],[0,1],[0,2],[0,1],[1,12],[0,9],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,8],[0,1],[0,7],[-1,14],[-1,3],[-1,0],[0,-3],[-1,4],[0,2],[-1,14],[0,1],[1,3],[0,2],[0,1],[0,1],[-1,4],[1,3],[0,4],[1,14],[0,1],[-1,1],[0,1],[0,1],[-1,3],[-1,7],[0,1],[0,5],[0,1],[0,1],[0,1],[1,1],[0,8],[0,1],[-3,11],[-1,2],[0,2],[0,5],[-1,10],[-1,6],[0,2],[-1,7],[0,1],[1,1],[0,2],[0,4],[0,6],[-1,6],[0,2],[-1,2],[0,1],[0,2],[0,9],[0,1],[1,5],[0,2],[0,3],[0,2],[-1,2],[0,1],[-1,0]],[[2304,4601],[-1,2],[0,2],[0,1],[0,2],[0,2],[0,4],[0,1],[-1,13],[-1,5],[-1,4],[0,3],[-1,0],[0,2],[0,6],[0,5],[0,1],[1,11],[1,0],[0,1],[0,1],[0,3],[1,10],[0,6],[0,5],[0,11],[1,6],[1,4],[0,6],[0,1],[-1,19],[0,1],[-2,0],[-1,4],[0,4],[0,1],[0,4],[1,0],[1,1],[0,2],[0,12],[0,2],[0,2],[-1,0],[0,2],[-1,5],[0,3],[0,1],[0,2],[0,3],[0,3],[4,0]],[[2496,3481],[0,5],[-1,4],[0,1],[1,2],[0,3],[1,0],[0,-1],[1,0],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-3],[0,-3]],[[2500,3481],[0,7],[1,7],[0,8],[0,2],[1,1],[1,-2],[0,-5],[1,-4],[0,-2],[1,1],[0,2],[1,4],[0,3],[0,2],[0,3],[0,1],[1,4],[-1,9],[0,1],[0,3],[0,3],[1,1],[0,-1],[1,-1],[0,7],[-2,5],[0,4],[1,2],[2,18],[-1,7]],[[2628,3968],[1,2],[0,5],[1,1],[1,-2],[0,-6],[1,0],[1,-5],[0,-1],[1,1],[2,3],[1,1],[0,1],[2,-2],[3,-12],[0,-1],[0,-1],[0,-2],[2,-21],[0,-3],[0,-1],[0,-4],[0,-4],[0,-2],[1,-3],[4,-6],[2,3],[1,0],[0,-1],[1,-3],[1,-1],[1,-1],[0,-1],[2,-14],[0,-3],[0,-1],[2,-3],[1,-1],[0,-1],[0,1],[0,1],[1,1],[0,5],[0,2],[0,1],[1,1],[2,2],[4,-8],[1,-3],[0,-2],[1,-2],[1,-3],[3,3],[1,1],[0,1],[0,2],[3,15],[0,1],[1,0],[1,3],[1,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-6],[1,-13],[0,-3],[0,-2],[0,-2],[1,-1],[0,-1],[0,-1],[2,0],[1,-3],[0,-1],[1,-6],[2,-15]],[[3060,4841],[0,1],[0,-1],[0,-3],[-1,1],[1,1],[0,1]],[[3057,4870],[0,-1],[0,-1],[-1,-1],[0,1],[0,6],[1,0],[0,-2],[0,-2]],[[3107,4981],[1,-1],[0,-3],[0,-1],[0,-1],[1,-3],[-1,-3],[0,-1],[0,2],[-1,8],[0,3]],[[3037,4837],[1,1],[0,-2],[0,-2],[0,-1],[0,-1],[-1,-3],[0,2],[0,2],[0,3],[0,1]],[[3036,4821],[-1,-4],[0,-2],[0,2],[0,4],[0,2],[1,0],[0,-2]],[[3036,4826],[0,1],[1,1],[-1,-4],[0,-1],[0,2],[0,1]],[[3038,4828],[0,-2],[0,1],[-1,-2],[0,1],[1,3],[0,1],[0,-1],[0,-1],[0,-1],[0,1]],[[3072,4858],[0,-3],[0,-2],[0,-2],[-1,-1],[0,1],[0,1],[0,3],[0,1],[0,3],[1,2],[0,-3]],[[3067,4885],[-1,-6],[0,1],[1,7],[0,-1],[0,-1]],[[3079,4886],[0,1],[-1,0],[0,-1],[0,-1],[0,2],[0,1],[0,3],[0,4],[0,3],[1,2],[0,1],[0,1],[1,-2],[0,-2],[0,-1],[0,-2],[-1,-6],[0,-3]],[[3074,4894],[0,-4],[-1,0],[-1,-2],[0,1],[0,1],[-1,6],[0,2],[0,2],[0,4],[-1,0],[0,1],[0,3],[1,4],[1,2],[0,1],[1,3],[0,1],[1,-1],[-1,-1],[0,-1],[1,-2],[0,-3],[1,0],[-1,-2],[0,1],[0,-1],[0,-1],[0,-1],[0,-2],[0,1],[0,-5],[1,-1],[0,-2],[0,-1],[0,-2],[-1,-1]],[[3070,4936],[1,6],[0,5],[0,5],[0,3],[1,1],[0,-1],[0,-3],[0,-2],[0,-2],[0,-1],[-1,-1],[0,-2],[1,-4],[-1,-3],[0,-1],[0,-7],[0,-2],[-1,-2],[0,1],[0,3],[0,1],[-1,1],[0,1],[1,3],[0,1]],[[3082,4907],[1,-1],[0,-2],[-1,-2],[0,1],[0,2],[0,2],[0,1],[0,-1]],[[3086,4907],[1,1],[0,-4],[0,-1],[-1,0],[0,2],[0,1],[0,1]],[[3084,4919],[1,0],[0,-2],[1,-4],[-1,-3],[-1,-4],[0,1],[0,2],[0,2],[-1,0],[-1,1],[0,2],[1,0],[0,4],[1,1]],[[3077,4936],[1,0],[0,-2],[1,-2],[0,-2],[0,-3],[0,-4],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-5],[0,-1],[0,-2],[0,-1],[-1,1],[0,1],[0,2],[-1,1],[0,1],[0,3],[0,2],[0,2],[0,2],[0,1],[0,1],[0,1],[1,0],[0,1],[0,2],[0,3],[0,1],[0,1],[0,1]],[[3086,4921],[1,2],[0,-1],[1,-1],[-1,0],[0,-1],[0,-4],[0,-1],[-1,3],[0,2],[0,1]],[[3083,4925],[1,-1],[0,-2],[0,-1],[-1,1],[0,1],[0,3],[0,1],[0,-1],[0,-1]],[[3074,4928],[1,-3],[0,-1],[0,-2],[-1,0],[0,1],[0,1],[-1,0],[0,2],[0,2],[0,1],[1,-1]],[[3090,4934],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[0,3],[0,1],[0,-1],[1,0],[0,2]],[[3082,4953],[1,-9],[0,-2],[-1,3],[0,1],[0,2],[0,3],[0,2],[0,2],[0,1],[0,-1],[0,-2]],[[3021,4708],[-1,4],[-1,3],[-1,5],[0,1],[-1,3],[1,7],[0,1],[0,9],[0,1],[-1,0],[0,2],[0,2],[-2,8],[0,2],[0,2],[-1,1],[0,2],[-1,6],[0,3],[0,4],[1,11],[0,1],[0,6],[0,5],[0,1],[0,2],[0,3],[-1,20],[0,2],[0,3],[0,2],[0,1],[0,14],[0,18],[0,5],[0,33],[0,31],[0,5],[-1,11],[0,50],[0,27],[-1,49],[0,39],[-1,15]],[[3010,5128],[2,1],[0,1],[1,0],[0,2],[0,1],[0,1],[1,-1],[1,-4],[0,-3],[0,-5],[1,-5],[0,-1],[1,-1],[0,1],[0,4],[1,13],[0,10],[0,2],[0,2],[0,4],[1,1],[1,0],[0,-1],[0,-2],[0,-3],[1,-1],[1,-3],[1,2],[0,4],[0,4],[0,3],[-1,0],[0,1],[-1,7],[-1,4],[1,1],[0,3],[1,4],[-1,2],[1,5],[3,12],[0,2],[3,7],[0,1],[2,9],[-1,3],[0,4],[1,2],[0,1],[0,2],[0,3],[1,3],[1,1],[1,3],[0,3],[1,3],[0,7],[0,2],[-1,2],[-1,2],[0,8],[0,9],[1,5],[0,1],[1,2],[0,7],[-1,6],[0,2],[-1,1],[3,26],[0,3],[1,2],[1,2],[2,9],[1,29],[1,23],[5,33],[7,47],[9,63],[2,-2],[3,-3],[0,-1],[1,-4],[0,-1],[-1,-1],[0,-2],[0,-2],[0,-22],[0,-2],[1,-1],[1,-4],[1,-3],[1,-1],[0,-4],[2,3],[3,9],[4,8],[3,2],[3,11],[1,1],[1,0],[2,-1],[0,-1],[2,-6],[6,-22],[0,-3],[0,-3],[1,-9],[2,-5],[0,-2],[1,-2],[0,-1],[0,-56],[0,-1],[0,-90],[0,-63],[1,-8],[0,-13],[0,-2],[-1,-1],[0,-2],[0,-2],[-1,-18],[1,-3],[1,-2],[3,-10],[3,-4],[1,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-5],[0,-1],[0,-4],[0,-9],[0,1],[-1,0],[-1,-4],[1,-12],[0,-1],[1,-5],[0,-2],[0,-7],[-1,-8],[0,-1],[0,-1],[0,-2],[0,-7],[2,-14],[1,-7],[1,-1],[1,4],[0,3],[0,5],[0,1],[1,0],[3,-6],[1,-5],[0,-4],[1,-8],[-1,-1],[0,-2],[0,-2],[1,-3],[0,-2],[0,-2],[0,-1],[1,-3],[0,-7],[0,-1],[1,-4],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[1,-4],[0,-1],[-1,-1],[0,-1],[1,-5],[0,-1],[0,1],[1,0],[0,-1],[-1,-1],[0,-1],[0,1],[0,-2],[-1,-1],[0,-4],[-1,-1],[0,1],[-1,0],[0,-2],[0,-3],[0,-1],[0,1],[-1,-1],[0,-4],[0,-4],[-1,0],[0,-2],[0,-3],[-1,-1],[0,-2],[0,-1],[-1,-2],[-1,1],[0,-3],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,0],[0,2],[1,0],[0,4],[0,3],[0,1],[0,1],[0,6],[0,1],[0,2],[-1,-1],[-1,0],[0,-4],[0,-2],[0,-1],[0,-2],[0,-4],[0,-1],[0,-1],[-1,1],[0,-3],[0,-1],[0,-2],[0,2],[-1,1],[0,-1],[0,-1],[-1,0],[0,3],[-1,2],[0,2],[0,-1],[0,-1],[-1,-1],[0,1],[0,-1],[-1,-11],[0,-1],[1,-3],[-1,-2],[-2,-1],[0,2],[-1,0],[0,-1],[0,-3],[0,-2],[-1,-2],[0,1],[0,1],[0,1],[0,3],[-1,3],[0,1],[0,-1],[-1,-1],[0,-3],[0,1],[0,1],[0,1],[0,2],[-1,2],[0,-1],[0,-2],[-1,-3],[0,-5],[1,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-5],[0,-1],[0,-1],[0,1],[0,2],[0,-1],[-1,-4],[0,-2],[0,4],[0,2],[0,1],[-1,0],[0,-1],[0,-1],[0,-2],[0,1],[0,-1],[-1,0],[0,-3],[0,-2],[-1,3],[0,1],[0,-2],[0,-1],[-1,-6],[0,-2],[0,-1],[0,-2],[-1,1],[0,2],[0,5],[0,-1],[-1,3],[0,3],[0,4],[0,1],[0,3],[0,3],[0,1],[0,2],[-1,1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,-1],[0,-1],[0,-3],[0,-1],[0,2],[-1,2],[0,-2],[0,-2],[0,-2],[-1,0],[0,-2],[0,-1],[1,1],[0,-1],[1,-1],[0,-2],[-1,0],[0,-1],[1,-4],[1,0],[0,-1],[0,-3],[0,-5],[1,-3],[-1,-4],[-1,-3],[-1,0],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-3],[0,-4],[-1,-1],[0,2],[-1,1],[0,1],[0,1],[-1,1],[0,4],[0,2],[-1,2],[0,1],[0,2],[1,2],[0,1],[0,2],[0,3],[0,1],[0,1],[0,1],[0,1],[1,3],[0,2],[0,4],[0,1],[-1,0],[0,-2],[0,-4],[-1,0],[0,1],[0,5],[0,2],[0,2],[0,-1],[-1,-2],[1,-4],[-1,-3],[0,-1],[1,-1],[0,-1],[-1,-1],[0,1],[0,1],[0,2],[0,1],[0,6],[0,-1],[-1,-3],[0,-3],[-1,0],[0,1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-3],[0,-1],[0,-3],[0,-3],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[-1,1],[0,1],[0,2],[-1,1],[0,4],[-1,0],[0,1],[0,1],[-2,3],[-1,4],[0,1],[0,1],[-1,-1],[0,-1],[-1,-3],[-1,1],[0,1],[0,3],[0,3],[1,1],[0,2],[0,2],[-1,6],[1,4],[0,1],[0,5],[1,2],[-1,0],[0,-1],[-1,-1],[-1,-3],[0,-3],[0,2],[-1,1],[1,0],[-1,1],[-1,-2],[0,-2],[-1,0],[0,-3],[0,-3],[0,-2],[0,-1],[1,-1],[0,-4],[0,-6],[0,-1],[-1,-4],[-1,0],[0,-4],[0,-3],[0,-2],[-1,-2],[0,-2],[0,-2],[0,-4],[0,-1],[0,-3],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-3],[0,-2],[0,-3],[0,-2],[0,-1],[0,1],[1,1],[0,-1],[1,-2],[-1,-4],[0,1],[0,1],[0,-1],[-1,-2],[0,-2],[0,-1],[-1,-2],[0,-2],[0,-2],[-1,-1],[0,-1],[-1,-4],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,2],[0,2],[0,3],[-1,0],[0,-3],[0,3],[0,1],[0,1],[-1,1],[-1,-2],[-1,2],[0,1],[0,-4],[-1,1],[0,1],[0,-1],[0,-4],[0,-7],[-1,-5],[0,-2],[-1,-6],[0,-1],[0,1],[0,2],[0,4],[0,2],[-1,1],[0,-1],[0,-1],[0,-2],[0,-4],[0,1],[-1,-1],[0,-3],[0,-1],[0,-1],[0,2],[0,1],[0,4],[0,1],[-1,-2],[0,-2],[0,-1],[0,-1],[0,2],[0,2],[-1,-2],[0,-3],[0,-3],[0,-2],[-1,4],[0,1],[0,1],[0,-3],[0,-1],[0,-2],[-1,-1],[0,-6],[-1,0],[0,-1],[0,-1],[-2,-4],[0,-3],[0,-1],[0,1],[0,3],[0,2],[0,1],[-1,1],[0,3],[0,3],[-1,-1],[0,1],[0,1],[-1,-3],[0,1],[0,-1],[-1,-3],[0,-1],[0,-3],[0,-1],[0,-1],[-1,0],[1,2],[0,1],[0,1],[0,1],[-2,-1],[1,1],[0,3],[0,2],[1,3],[0,2],[0,1],[0,2],[-1,-1],[0,3],[0,1],[0,1],[0,2],[1,0],[0,1],[-1,1],[0,-1],[-1,-4],[0,-2],[0,-1],[0,1],[-1,0],[0,-2],[-1,-3],[-1,-2],[0,-1],[0,-3],[0,1],[0,1],[0,1],[-1,-1],[0,-1],[0,-2],[0,-2],[0,-5],[0,-2],[-1,-1],[0,1],[0,-4],[0,-2],[0,-1],[0,-1],[0,-1],[0,-4],[1,-2],[0,-6],[0,-1],[0,-1],[0,-4],[0,-1],[0,1],[-1,0],[0,-2],[-1,0],[0,2],[-1,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-4],[0,-2],[0,-2],[0,-3],[0,-1],[0,-2],[1,-3],[-1,-1],[0,-3],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-4],[0,-2],[0,-1],[-1,1],[0,1],[-1,-1],[0,-1],[-1,-3],[0,-2],[-1,-8],[0,-4],[0,-2],[1,-3],[0,-1],[-1,-3],[-1,-7],[0,-6],[0,-1],[0,-2],[-1,-3],[0,-1],[0,-3],[0,-1],[-1,-2]],[[3018,4433],[0,-1],[-1,2],[0,1],[0,1],[1,-1],[0,-2]],[[3024,4411],[1,-1],[0,1],[0,-4],[0,-1],[0,-3],[0,-1],[0,-1],[1,-2],[0,-1],[1,0],[0,-2],[0,-1],[0,2],[0,2],[1,1],[0,1],[0,-4],[0,-3],[0,-5],[0,-1],[-1,0],[-1,0],[-2,0],[-3,-1],[-1,-1],[0,-2],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,3],[0,2],[-1,4],[0,1],[1,0],[1,-1],[0,1],[1,8],[1,2],[0,1],[0,3],[1,2],[1,4],[1,4],[0,-2]],[[3038,4378],[0,1],[1,2],[0,2],[1,3],[0,4],[0,1],[0,1],[0,1],[-1,2],[0,1],[1,-1],[0,-3],[2,-17],[0,-3],[0,-2],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,0],[-1,0],[-1,3],[-2,5],[0,1],[-1,1],[0,1],[0,2],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[2,0],[1,0]],[[2943,4519],[0,7],[3,50],[1,29],[2,23],[1,21]],[[2972,4646],[1,-1],[4,0],[5,-1],[1,0],[4,-1],[1,0],[2,-1],[1,0],[4,0],[3,-1],[7,-1],[1,7],[0,2],[1,0],[1,-1],[0,10],[0,3],[1,1],[1,3],[1,3],[1,2],[1,1],[2,4],[0,1],[1,-1],[1,-4],[1,2]],[[3018,4673],[0,-4],[0,-13],[1,-6],[0,-7],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[1,-2],[1,0],[0,2],[0,3],[1,2],[0,-1],[0,-2],[0,-2],[0,-1],[1,0],[0,-2],[0,-2],[-1,-2],[0,-5],[-1,-3],[0,-1],[0,1],[0,1],[0,1],[0,-1],[-1,-2],[-1,-1],[0,1],[0,-2],[-2,-1],[0,-2],[-1,0],[-1,-1],[0,-1],[1,-3],[0,-1],[0,-3],[0,-2],[0,-1],[0,1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[1,-1],[-1,0],[-1,3],[0,3],[0,1],[0,-2],[0,-1],[-1,-3],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-3],[0,-2],[0,-1],[0,1],[0,1],[-1,0],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-2],[1,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[1,0],[0,1],[0,-1],[1,-1],[0,2],[1,2],[0,1],[0,1],[-1,1],[0,1],[1,1],[0,-2],[0,-3],[1,-2],[0,-1],[1,0],[0,-1],[1,-2],[0,-1],[0,-1],[1,-2],[0,-2],[0,-2],[1,0],[0,-5],[0,-3],[0,-1],[1,-5],[0,-5],[1,-4],[0,-1],[0,-1],[0,-1],[0,-4],[0,-1],[-1,-1],[0,-3],[0,-2],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,-3],[1,-5],[1,1],[0,-2],[0,-2],[1,0],[0,1],[1,-3],[0,-3],[0,-1],[0,-1],[1,-3],[0,-6],[0,-3],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-3],[0,-1],[0,-1],[1,0],[1,-3],[1,-1],[2,-1],[1,0],[0,-1],[0,-1],[0,-2],[1,1],[0,1],[0,2],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,2],[0,1],[1,1],[0,6],[-1,7],[1,2],[-1,1],[0,1],[0,2],[0,4],[-1,0],[0,-1],[0,-3],[0,-2],[0,-2],[0,-2],[0,1],[0,3],[0,7],[-1,9],[0,5],[0,2],[0,2],[0,2],[-1,1],[0,2],[-1,0],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,2],[0,2],[-1,3],[0,1],[0,1],[0,1],[1,1],[1,-1],[1,-2],[1,-2],[1,-3],[1,-4],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[1,0],[0,-6],[1,-7],[0,-12],[0,-7],[1,-13],[0,-8],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-4],[0,-4],[0,-5],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[1,2],[0,3],[0,2],[0,4],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-2],[0,-1],[-1,0],[-1,-1],[-1,-3],[0,-1],[0,-1],[-1,-1],[0,1],[0,2],[0,1],[0,1],[-1,-1],[-1,0],[0,1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-3],[-1,-2],[0,-3],[0,-1],[-1,-1],[0,-3],[-1,0],[-1,-1],[0,-3],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[0,1],[1,3],[0,-1],[1,2],[1,3],[1,1],[0,1],[1,3],[1,3],[0,1],[1,5],[1,3],[0,2],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,4],[0,1],[1,3],[0,1],[-1,1],[1,1],[0,1],[0,1],[0,5],[-1,0],[1,3],[0,2],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,-2],[1,-2],[0,-3],[0,-2],[-1,0],[0,2],[-1,-4],[0,-1],[1,-2],[0,-1],[-1,-2],[0,1],[-1,2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-4],[0,-1],[0,2],[-1,3],[0,1],[0,1],[0,1],[-1,-1],[0,-1],[0,-2],[1,-3],[-1,0],[0,2],[0,1],[0,-2],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[1,-2],[0,-4],[-1,0],[-1,-2],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,1],[-1,1],[-1,-2]],[[3009,4416],[0,24],[0,1],[0,2],[0,3],[0,1],[-1,0],[0,1],[0,1],[-1,0]],[[3007,4449],[0,7]],[[3007,4456],[-1,7],[-2,5],[0,1],[-1,5],[0,4],[0,1],[0,11],[-1,0],[0,5],[0,8],[0,1],[0,3],[0,6],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-5,-1]],[[2607,5213],[0,-1],[1,-1],[1,1],[0,-2],[0,1],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-4],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-2],[0,-6],[0,-2],[0,-3],[-1,0],[0,-1],[0,-2],[0,-1],[-1,0],[-1,2],[-1,0],[0,3],[1,5],[0,1],[0,1],[0,2],[0,2],[0,4],[0,2],[0,1],[1,1],[0,2],[0,3],[0,3],[0,1],[0,2]],[[2520,5653],[0,1],[0,1],[0,1],[1,2],[1,3],[1,1],[1,3],[1,-2],[0,2],[1,0],[0,1],[1,0],[0,2],[1,-2],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,-3],[-2,-6],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-2,-9],[-2,-3],[-1,-3],[-1,0],[-1,-3],[-1,0],[-1,-2],[0,-1],[-1,-2],[-1,-2],[0,-3],[0,-2],[1,-1],[1,2],[0,-1],[0,-1],[-3,-5],[0,-2],[-1,0],[0,-1],[-2,-3],[0,-1],[-1,-1],[-1,1],[0,1],[0,1],[0,2],[-1,0],[0,1],[-1,3],[0,1],[0,2],[1,1],[0,1],[0,2],[0,1],[1,4],[3,6],[2,4],[1,2],[1,4],[1,0],[0,1],[0,1],[2,4],[0,1],[1,-1],[0,2],[1,1],[0,2],[0,1],[0,1],[1,2],[1,2]],[[2634,5224],[0,1],[0,2],[-1,2],[0,1],[0,1],[-1,1],[1,4],[0,-1],[1,-3],[0,-2],[0,-5],[1,-1],[1,-2],[1,-1],[2,-3],[0,1],[0,1],[0,1],[0,1],[0,-2],[0,-2],[2,-3],[-1,-3],[0,-2],[0,-2],[0,-1],[-1,-1],[0,1],[-1,0],[0,1],[-1,-1],[0,2],[-1,1],[0,2],[0,2],[-1,5],[0,1],[-1,1],[0,1],[0,1],[0,1]],[[2592,5072],[0,-1],[-1,-1],[0,1],[0,2],[0,1],[0,4],[0,1],[1,1],[0,-1],[1,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2]],[[2594,5100],[1,0],[0,-1],[1,-2],[0,-4],[-1,-1],[0,-5],[0,-1],[1,-2],[0,-1],[-1,-2],[0,2],[-1,1],[0,3],[-1,2],[0,1],[0,7],[0,2],[1,1],[0,1],[0,-1]],[[2666,4460],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[-3,-1],[-13,-2],[-1,0],[-2,0],[-10,-2]],[[2572,4465],[1,2],[0,1],[0,1],[0,1],[1,2],[0,2],[1,2],[0,2],[1,3],[1,4],[0,1],[0,2],[1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[1,2],[0,1],[0,1],[0,7],[0,1],[0,1],[0,2],[1,2],[0,1],[0,1],[0,2],[0,1],[1,6],[0,3],[0,3],[0,3],[1,1],[0,2],[1,5],[1,7],[0,1],[0,1],[0,1],[0,1],[0,1],[1,3],[0,2],[1,11],[1,9],[0,7],[0,1],[0,2],[0,1],[1,5],[0,7],[0,10],[0,1],[0,4],[0,1],[0,1],[1,2],[0,2],[0,8],[0,1],[0,4],[0,5],[0,5],[0,8],[0,1],[0,3],[0,10],[0,4],[0,5],[0,7],[0,13],[-1,5],[0,6],[0,2],[0,1],[0,3],[-1,7],[0,3],[0,6],[-1,4],[0,1],[0,4],[-1,4],[0,2],[0,1],[0,1],[-1,7],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[-1,2],[0,6],[0,3],[0,1],[0,1],[-1,4],[0,1],[0,3],[0,1],[0,1],[0,2],[0,4],[0,3],[0,1],[0,1],[-1,0],[0,7],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,3],[0,4],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,3],[0,1],[0,2],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,3],[0,1],[1,4],[0,1],[0,2],[0,5],[0,1],[0,3],[0,1],[0,2],[0,1],[0,6],[-1,1],[0,1],[0,3],[0,1],[0,1],[0,1],[0,2],[0,5],[-1,6],[0,4],[0,1],[0,1],[0,3],[0,2],[0,1],[0,1],[0,1],[1,3],[0,2],[0,1],[1,2],[0,1],[0,1],[1,5],[0,1],[0,3],[0,2],[1,4],[0,3],[0,1],[0,1],[0,2],[1,3],[0,3],[0,1],[0,1],[0,2],[1,1],[0,7],[1,11],[0,4],[0,2],[0,3],[0,3],[0,3],[0,1],[0,3],[0,3],[1,5],[0,4],[0,5],[-1,3],[0,7],[0,3],[0,4],[0,1],[0,2],[0,1],[2,3],[0,1],[1,0],[1,0],[0,1],[0,1],[1,4],[0,1],[0,1],[0,1],[0,5],[0,3],[0,3],[0,6],[0,3],[0,2],[0,2],[0,1],[1,1],[0,-2],[1,-1],[0,1],[1,2],[0,3],[0,1],[0,1],[1,2],[0,2],[0,1],[1,-1],[0,-1],[0,-3],[1,-1],[0,1],[1,1],[1,6],[0,1],[0,3],[0,3],[1,1],[0,5],[0,1],[1,2],[0,2],[1,3],[0,3],[0,2],[0,5],[2,8],[0,-1],[0,-1],[0,1],[1,2],[0,1],[0,2],[1,0],[0,-4],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-4],[0,-3],[1,-8],[0,-2],[0,-3],[-1,-1],[0,-3],[0,-2],[-1,-1],[1,-3],[0,-3],[0,-9],[-1,-1],[0,-6],[0,-1],[0,-2],[0,-4],[0,-4],[0,-4],[0,-3],[0,-3],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,5],[1,10],[0,1],[0,1],[0,3],[-1,0],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[0,4],[0,1],[0,1],[0,1],[1,3],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-3],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,-5],[0,-2],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,1],[1,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,0],[0,2],[0,2],[0,1],[0,1],[0,3],[1,4],[0,2],[0,3],[1,4],[0,13],[0,3],[0,5],[0,2],[1,3],[0,9],[-1,1],[0,4],[0,7],[0,1],[0,4],[0,5],[0,6],[1,3],[0,2],[1,2],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,4],[1,0],[1,2],[1,-1],[1,0],[1,0],[0,-1],[0,1],[1,1],[0,1],[1,0],[1,3],[0,2],[0,1],[0,2],[0,1],[-2,1],[0,-1],[0,-1],[0,1],[-1,2],[-1,1],[0,1],[0,3],[-1,3],[0,4],[0,2],[0,2],[0,1],[0,3],[0,2],[-1,1],[0,2],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,3],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,2],[0,3],[1,0],[0,4],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,-1],[0,1],[1,-2],[0,-2],[1,-2],[0,-1],[1,-2],[1,-3],[1,-2],[0,-2],[0,-1],[1,-1],[2,-7],[1,2],[0,1],[0,-1],[1,-2],[1,2],[2,-2],[0,-2],[2,-1],[0,-2],[0,-1],[1,-3],[0,-4],[1,-2],[0,-2],[0,-1],[0,-3],[0,-3],[0,-2],[1,-2],[0,-1],[1,-1],[0,-1],[1,1],[0,1],[0,-1],[1,0],[1,0],[1,-1],[1,-4],[1,-4],[0,-2],[1,-3],[1,0],[0,-1],[1,0],[1,-3],[1,-2],[1,-3],[1,-3],[1,-1],[0,1],[0,1],[1,-2],[1,2],[0,-1],[0,-2],[0,-2],[1,-4],[0,-1],[1,-2],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-3],[-1,-1],[0,-2],[0,-2],[1,-3],[0,-1],[0,-4],[0,-2],[0,-1],[0,-1],[1,0],[0,-3],[1,-1],[0,-2],[0,-6],[0,-1],[0,-4],[0,-1],[1,-4],[0,-1],[0,-2],[0,-1],[-1,1],[0,1],[-1,2],[0,1],[-1,2],[-1,2],[-1,-2],[0,-2],[0,-3],[0,-3],[0,-1],[0,-1],[0,-1],[0,-2],[0,-7],[0,-2],[0,-2],[1,-1],[0,-1],[0,-3],[1,0],[1,-3],[1,-2],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-4],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,-1],[0,-3],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[-1,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-4],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-5],[-1,-8],[0,-3],[0,-3],[1,-1],[0,-1],[-1,-6],[0,-2],[0,-4],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[-1,-5],[0,-1],[0,-1],[0,-3],[0,-1],[-1,-1],[0,2],[0,1],[-1,0],[-1,-1],[0,-2],[0,-3],[-1,-4],[0,-3],[0,-2],[0,-7],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-3],[-1,-3],[0,-1],[0,-2],[0,-3],[-1,0],[-1,0],[0,-3],[-1,-3],[1,-5],[-1,-1],[-1,0],[-1,-1],[-2,1],[0,-2],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-2],[0,-3],[-1,-1],[0,-1],[0,-2],[0,-8],[0,-13],[0,-2],[-1,-3],[0,-2],[0,-6],[1,-3],[0,-5],[0,-2],[2,-4],[1,0],[1,-2],[0,-1],[0,2],[1,-4],[1,-3],[0,-1],[1,-1],[0,2],[1,5],[1,4],[1,7],[0,2],[0,1],[0,1],[1,2],[0,-1],[1,0],[0,2],[0,1],[1,1],[0,1],[0,4],[0,1],[0,1],[0,3],[1,2],[0,1],[0,1],[0,2],[0,1],[0,1],[1,2],[0,1],[0,2],[1,4],[0,3],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,3],[0,4],[0,2],[0,1],[1,1],[1,1],[0,-1],[1,2],[1,1],[0,1],[1,0],[1,0],[0,1],[0,2],[1,5],[1,1],[0,3],[1,0],[0,-1],[0,2],[1,0],[1,-4],[0,-1],[1,-1],[1,-3],[0,-2],[1,0],[0,-1],[1,-2],[0,-1],[0,-3],[1,-5],[0,-6],[0,-6],[1,-3],[0,-3],[0,-1],[0,-1],[0,-1],[1,-1],[0,-11],[0,-3],[0,-2],[0,-1],[0,-9],[0,-2],[0,-2],[1,-12],[0,-3],[0,-1],[0,-7],[1,-8],[0,-1],[0,-6],[0,-5],[0,-1],[0,-2],[0,-10],[0,-4],[1,-3],[0,-3],[0,-2],[0,-15],[0,-2],[0,-3],[0,-6],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-3],[0,-3],[0,-3],[1,-5],[0,-2],[0,-2],[1,-6],[-1,-13],[0,-2],[-1,-7],[0,-29],[-1,-18],[0,-4],[0,-2],[-2,-10],[-1,-1],[0,2],[-2,-7],[0,2],[0,1],[1,0],[0,2],[-1,2],[0,3],[0,3],[0,-1],[0,1],[-1,2],[1,1],[0,1],[0,1],[0,2],[1,2],[0,-1],[1,2],[0,1],[0,1],[0,2],[0,2],[-1,1],[0,1],[-1,1],[0,-1],[-1,-1],[-1,-2],[0,-3],[-1,0],[0,-2],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-2],[0,-2],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-3],[0,-5],[0,-5],[0,-4],[0,-8],[0,-2],[-1,-1],[0,-1],[0,-2],[-1,-3],[1,-1],[-1,-3],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[0,-4],[-1,-10],[0,-6],[0,-6],[0,-6],[0,-10],[-1,0],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-4],[0,-1],[0,-2],[0,-2],[0,-2],[-1,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-3],[-1,1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-2],[0,1],[0,-2],[0,-1],[-1,-1],[0,-4],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[-1,0],[0,-1]],[[2472,5364],[0,2],[1,2],[1,2],[0,1],[1,0],[1,1],[0,1],[0,1],[1,0],[0,1],[2,4],[2,1],[1,3],[1,1],[1,3],[0,2],[0,2],[1,1],[1,4],[0,2],[0,3],[1,0],[0,2],[0,2],[1,1],[0,1],[0,1],[1,3],[1,1],[1,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,-1],[1,1],[0,1],[1,1],[1,1],[1,0],[0,-1],[1,1],[1,1],[0,1],[1,1],[1,3],[0,1],[1,1],[0,1],[1,1],[0,2],[1,2],[1,3],[0,3],[1,3],[0,4],[1,1],[0,1],[0,-1],[0,-1],[1,0],[1,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[1,1],[0,2],[0,2],[0,1],[0,1],[1,3],[0,3],[0,2],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,4],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,2],[0,1],[1,3],[0,2],[1,1],[0,2],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[2,6],[0,1],[0,1],[0,1],[1,2],[0,1],[0,3],[0,1],[0,1],[1,4],[1,2],[0,2],[0,1],[1,0],[0,1],[1,2],[1,2],[0,2],[1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[1,1],[1,0],[0,1],[0,-1],[1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,-2],[1,-2],[0,-2],[0,-6],[0,-1],[-1,1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,1],[-1,1],[-1,0],[-1,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[-1,-3],[-1,-1],[0,-1],[-1,-2],[0,-4],[-1,-1],[0,-3],[-1,-5],[-1,-1],[-1,0],[0,-2],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-4],[0,-1],[0,-1],[-1,0],[0,-1],[0,-3],[0,-1],[-1,-1],[0,-5],[0,-2],[0,-1],[0,-1],[0,-1],[-1,0],[0,-6],[0,-1],[0,-3],[0,-2],[0,-1],[0,-4],[0,-1],[0,-3],[0,-4],[1,0],[0,1],[1,4],[1,5],[0,1],[0,1],[0,1],[1,1],[0,2],[1,3],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,3],[0,1],[1,1],[0,1],[0,1],[0,-1],[0,-1],[0,-3],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,1],[0,1],[1,1],[1,-2],[1,-1],[1,0],[0,1],[2,0],[0,-2],[1,-1],[0,-2],[1,0],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,1],[1,-3],[0,-1],[0,-2],[0,-1],[0,-1],[1,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-3],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-2],[1,0],[1,-1],[0,-1],[0,-3],[0,-1],[0,-4],[1,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[1,-2],[0,-1],[0,-1],[1,-1],[2,-1],[1,1],[1,1],[1,-1],[1,0],[0,1],[0,1],[1,2],[1,1],[0,1],[1,2],[0,-1],[1,-1],[0,-2],[0,-1],[1,-5],[0,-1],[-1,0],[1,-1],[0,-1],[1,0],[0,-1],[0,-2],[0,-2],[1,0],[0,-1],[1,0],[0,1],[0,2],[0,2],[1,1],[0,2],[1,0],[1,-1],[0,-1],[0,-4],[0,-1],[1,3],[0,1],[0,2],[0,5],[0,1],[-1,1],[0,7],[1,2],[0,1],[0,-1],[1,0],[0,1],[0,-5],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,1],[0,1],[0,1],[0,-3],[0,-1],[1,-2],[0,5],[1,3],[1,4],[0,2],[0,1],[1,2],[1,-1],[1,3],[1,3],[5,14],[0,3],[1,1],[1,-3],[0,-1],[1,1],[1,2],[1,1],[1,0],[1,2],[1,1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[3,6],[1,1],[0,1],[2,4],[1,2],[2,2],[3,-1],[1,0],[1,2],[1,0],[-1,-5],[0,-3],[-1,-3],[0,-3],[0,-2],[0,-2],[0,-9],[0,-5],[0,-3],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-2],[1,-3],[0,-1],[2,-1],[0,1],[0,1],[1,0],[0,-1],[0,-2],[0,-1],[1,0],[1,1],[0,-2],[0,-2],[1,-1],[1,2],[1,2],[1,3],[1,1],[0,-1],[1,0],[0,-2],[1,-3],[0,-3],[1,-2],[0,-2],[2,4],[0,-1],[1,1],[0,3],[0,1],[0,1],[0,4],[1,3],[1,-1],[0,2],[2,-2],[1,-1],[1,8],[1,1],[2,-2],[0,-2],[1,-3],[-1,-6],[0,-10],[0,-9],[0,-19],[1,-5],[-1,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,-1],[-1,-1],[0,-4],[0,-2],[0,-3],[0,-3],[1,1],[1,3],[1,0],[0,-2],[0,-1],[1,-3],[0,-1],[1,0],[1,-3],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-5],[0,-2],[1,-2],[1,-1],[0,1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[1,-1],[1,6],[0,-1],[1,-4],[0,-1],[1,2],[0,2],[0,3],[0,3],[-1,1],[0,4],[0,5],[0,1],[0,-1],[1,-2],[1,0],[0,2],[1,0],[1,0],[1,0],[0,-1],[1,-1],[0,-2],[1,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-3],[1,-2],[1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-7],[0,-1],[0,-1],[-1,-2],[-1,1],[-1,3],[-1,3],[-1,-2],[-1,-1],[0,1],[-1,0],[0,-1],[-1,1],[0,1],[0,1],[0,-1],[-1,0],[0,2],[-1,1],[0,2],[-1,-1],[0,-1],[-1,1],[-1,1],[0,-1],[-1,-1],[-2,2],[0,1],[0,1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,1],[-1,0],[-1,0],[0,-2],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-2],[0,1],[0,1],[-1,0],[0,1],[0,2],[-1,3],[0,1],[0,-2],[-1,1],[0,1],[0,1],[0,1],[-1,-1],[0,-3],[0,1],[0,1],[0,2],[0,3],[0,2],[-1,1],[0,2],[-1,0],[0,-1],[-1,4],[-1,1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-2],[1,-7],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-3],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[1,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,1],[-1,2],[0,1],[-1,2],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,2],[0,1],[0,4],[0,1],[-1,5],[-1,0],[0,3],[0,1],[-1,1],[-1,2],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-2,0],[0,-1],[0,2],[0,1],[-1,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,-1],[-1,-1],[0,2],[0,1],[-1,1],[0,-1],[-1,0],[0,-1],[1,0],[-1,-1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-5],[0,-4],[0,-1],[-1,-1],[0,-3],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,-2],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[-1,3],[-1,3],[-2,2],[-1,1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,2],[0,-1],[0,-2],[-1,0],[-1,-1],[-1,-5],[0,-2],[0,-10],[-1,-3],[0,-6],[0,-1],[0,-1],[0,-1],[-1,1],[0,1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,1],[0,-1],[-1,-2],[0,1],[0,1],[-1,-1],[0,-2],[0,-3],[0,-2],[0,-1],[-1,2],[0,-1],[0,-1],[0,-5],[0,-3],[-1,0],[0,1],[0,-1],[-1,-1],[1,-7],[0,-3],[0,2],[-1,0],[-1,1],[0,2],[0,1],[0,2],[-1,0],[0,4],[0,1],[0,2],[0,1],[1,-1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[1,1],[0,3],[0,3],[0,3],[1,0],[0,-1],[1,0],[0,2],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[1,1],[0,1],[0,2],[0,1],[0,3],[0,2],[0,1],[-1,1],[0,1],[-1,-3],[0,-1],[-1,-2],[0,-1],[0,-3],[0,-2],[-2,2],[0,1],[-1,3],[-1,-1],[0,-1],[0,-5],[0,-2],[0,-1],[0,-4],[0,-2],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-3],[1,-1],[-1,-2],[-1,0],[-1,-3],[-1,-4],[0,2],[0,1],[0,1],[-1,2],[1,2],[0,2],[0,5],[0,2],[0,5],[-1,3],[0,4],[0,2],[-1,-1],[0,-2],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[-1,-2],[0,-1],[0,-3],[0,-2],[-1,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-3],[0,-1],[-1,-4],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-4],[0,-2],[0,-1],[-1,-6],[0,-3],[0,-1],[0,-4],[-1,-2],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-2],[-1,-3],[0,-1],[0,-3],[0,-2],[-1,-3],[0,-1],[0,-2],[0,-2],[-1,-3],[0,-1],[-1,-6],[0,-1],[0,-1],[0,-1],[-1,-3],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-3],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1]],[[2336,4136],[-1,2],[-5,44],[-1,3],[0,4],[0,1],[-2,10],[-2,23],[0,3],[0,2],[1,5],[-1,5],[0,-2],[-1,-2],[-1,0],[0,1],[0,1],[0,7],[0,1],[0,1]],[[2092,4697],[7,0],[6,0],[2,0],[3,0],[2,0],[6,0],[3,0],[6,0],[9,0],[1,0],[10,0],[6,0],[7,-1],[11,0],[7,0],[2,0],[9,1],[1,0],[2,0],[3,0],[2,0],[2,0],[2,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[4,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,1],[1,-1],[0,1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,1],[3,0],[0,-1],[2,1],[0,-2],[0,-2],[1,-6],[0,-2],[4,-9],[0,-1],[3,-7],[1,-2],[0,-1],[3,-11],[1,-1],[0,-1],[1,1],[1,1],[0,1],[1,3],[1,5],[0,3],[0,4],[0,1],[1,1],[1,-1],[1,-2],[2,-2],[2,1],[3,1],[1,1],[2,1],[2,0],[2,-2],[1,-4],[1,-5],[1,-2],[1,-2],[2,-2],[1,-2],[2,-4],[1,-1],[3,-5],[0,-1],[2,-7],[0,-3],[1,-3],[0,-2],[0,-2],[0,-2],[2,-14],[0,-2],[0,-2],[4,-4],[1,1]],[[1648,4509],[6,0],[12,0],[1,0],[15,-1],[16,1],[33,1]],[[3021,4708],[0,-5],[-1,-6],[0,-1],[-1,-1],[-1,-10],[0,-5],[0,-4],[0,-1],[0,-2]],[[2999,5073],[0,11],[2,10],[1,15],[0,2],[-2,4],[2,1],[1,6],[2,5],[0,-2],[0,-2],[1,-1],[0,-3],[2,-2],[1,-1],[0,1],[0,2],[0,1],[0,1],[1,5],[0,1],[0,1]],[[2925,4236],[0,-2],[-1,-1],[0,-2],[-1,0],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[1,3],[0,1],[1,5],[0,1],[0,1],[0,3],[0,1],[0,2],[0,2],[1,-1],[1,1],[1,1],[0,-1],[0,-4],[1,-2],[0,-1],[0,-2],[-1,-2],[0,-3],[-1,-4],[0,-1],[-1,-2],[0,1]],[[2981,4342],[0,1],[0,1],[2,-2],[0,-2],[0,-6],[-1,-1],[0,4],[0,2],[0,1],[-1,0],[0,1],[0,1]],[[2987,4376],[0,1],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,2],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[1,0]],[[2936,4302],[0,-1],[0,-1],[-1,1],[1,0],[0,1]],[[2939,4320],[0,-1],[0,-2],[0,-1],[0,1],[-1,-1],[0,-3],[0,-2],[-1,-1],[0,-1],[-1,-3],[-1,-5],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,-1],[0,1],[-1,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-2],[1,2],[0,3],[0,1],[1,5],[0,1],[0,2],[1,-2],[1,1],[0,3],[0,3],[0,1],[1,0],[0,1],[1,2],[1,-1],[1,1],[0,-1],[0,1],[0,1],[0,4],[1,1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,3],[0,2],[1,-3],[0,-1],[0,-1],[1,1],[1,-1],[2,-4],[2,4],[0,2],[0,4],[0,1],[1,2],[1,0],[1,-2],[1,1],[1,-1],[1,0],[1,0],[2,1],[1,-1],[1,2],[1,2],[1,1],[0,-1],[1,1],[2,1],[0,3],[0,1],[1,0],[0,4],[2,3],[0,2],[1,4],[1,2],[1,7],[1,1],[1,3],[1,1],[0,-1],[0,-4],[0,-1],[-1,-3],[0,3],[-1,2],[0,-1],[0,-1],[0,-2],[0,-2],[0,-4],[1,-1],[0,-1],[0,-2],[0,-3],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,2],[1,-1],[0,-2],[0,-1],[0,-2],[1,-4],[0,-1],[0,-1],[1,1],[0,1],[0,1],[0,1],[0,-1],[1,1],[-1,1],[0,1],[1,0],[1,1],[0,2],[1,2],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[-1,-3],[0,-3],[-1,-1],[-3,-6],[-2,-5],[-8,-20],[-2,-5],[-3,-5],[-5,-9],[0,-1],[-3,-5],[-2,-4],[-2,-6],[-1,-3],[-3,-4],[-2,-2],[-1,-1],[0,-1],[-1,0],[-1,0],[0,3],[-1,-1],[-1,-3],[-1,-1],[0,-1],[-4,-4],[-1,1],[-1,-1],[-1,0],[-2,0],[0,1],[-1,0],[0,-1],[-1,-1],[-1,-3],[-2,-3],[0,2],[0,1],[0,1],[0,1],[-1,0],[-1,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,3],[0,2],[0,1],[0,1],[1,2],[0,4],[0,1],[0,1],[0,1],[0,1],[0,1]],[[2769,4560],[1,3],[2,6],[1,5],[2,4],[1,3],[1,4],[0,2],[1,3],[1,5],[0,2],[1,3],[0,1],[1,0],[0,1],[0,1],[1,2],[1,3],[0,1],[1,1],[1,2],[1,1],[0,2],[0,1],[0,4],[1,1],[0,2],[0,1],[1,5],[0,1],[0,5],[1,4],[0,2],[1,1],[1,5],[1,1],[2,6],[0,2],[0,2],[0,1],[0,1],[0,2],[0,2],[0,2],[0,1],[0,2],[-1,0],[0,3],[0,3],[-1,1],[1,2],[0,4],[-1,2],[0,3],[0,2],[-1,2],[-1,3],[-1,2],[0,13],[0,1],[-1,1],[0,3],[0,7],[1,2],[0,1],[-1,17],[0,5],[1,2],[2,1],[1,3],[2,3],[0,1],[1,0],[1,2],[1,1],[1,2],[2,3],[3,2],[1,1],[1,-1],[2,1],[1,0],[3,-1],[3,1],[1,0],[2,-2],[1,0],[0,1],[1,0],[0,-1],[1,-1],[1,-2],[2,-1],[0,-1],[1,0],[0,1],[1,-1],[0,-1],[1,-2],[0,-3],[1,-4],[0,-1],[1,-1],[1,-3],[1,-3],[0,-1],[1,0],[1,3],[1,2],[1,1],[1,1],[0,1],[1,0],[1,0],[1,0],[2,1],[1,-1],[1,2],[0,-1],[1,1],[1,-2],[1,-1],[1,0],[1,-1],[1,3],[0,1],[1,1],[1,1],[0,1],[1,1],[1,1],[1,3],[0,2],[1,0],[0,2],[1,2],[1,7],[0,2],[0,1],[1,1],[1,5],[1,2],[0,1],[0,1],[1,1],[0,3],[1,3],[1,2],[0,1],[1,0],[1,-2],[1,0],[1,2],[1,1],[0,3],[1,3],[0,2],[0,5],[0,9],[0,6],[0,7],[0,7],[-1,9],[0,4],[-1,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,-1],[0,-1],[1,0],[0,2],[1,2],[1,1],[0,1],[0,2],[0,4],[0,2],[0,1],[0,1],[0,2],[-1,0],[-1,1],[-1,3],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,2],[-1,0],[0,1],[0,1],[0,2],[0,2],[0,2],[0,1],[-2,2],[0,3],[0,3],[0,2],[1,2],[0,2],[1,12],[1,1],[1,0],[1,2],[0,1],[1,4],[1,10],[2,7],[1,3],[1,0],[0,-1],[1,1],[1,4],[1,5],[0,1],[1,6],[1,7],[1,8],[2,10],[6,27],[1,7],[3,11],[1,3],[0,2],[0,3],[2,5],[1,1],[1,2],[3,7],[1,3],[0,2],[0,1],[0,2],[1,1],[0,1],[4,6],[1,0],[2,-2],[1,-1],[11,-2],[4,0],[3,1],[5,1],[7,1],[8,1]],[[2687,4437],[0,2],[0,-1],[0,-4],[0,-1],[0,-1],[-1,2],[0,1],[0,1],[0,3],[1,0],[0,-1],[0,-1]],[[2683,4446],[1,1],[0,-1],[-1,-5],[0,-1],[0,4],[0,2]],[[2684,4453],[1,0],[-1,-1],[0,-2],[0,-1],[0,-1],[-1,3],[1,1],[0,1]],[[2684,4458],[0,-3],[-1,0],[0,1],[0,1],[0,1],[1,0]],[[2666,4460],[0,-1],[0,-3],[0,-1],[1,-3],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,-3],[0,-1],[0,-1],[1,0],[0,-1],[1,-3],[0,-2],[1,-2],[1,-2],[0,-1],[2,0],[0,-2],[1,-2],[0,-4],[0,-1],[1,-2],[0,-1],[0,-1],[0,-2],[1,-2],[1,-1],[0,-1],[1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,2],[-1,1],[0,1],[0,1],[1,1],[0,1],[0,-4],[1,-4],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-6],[1,-5],[0,-1],[2,-5],[1,-3],[0,-1],[1,0],[1,1],[0,2],[1,3],[1,3],[1,0],[1,0],[1,0],[0,1],[2,6],[0,1],[1,0],[2,4],[2,4],[1,-2],[1,-1],[0,-1],[0,-1],[2,-1],[1,1],[1,1],[0,1],[1,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,2],[0,1],[1,2],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,2],[0,4],[0,1],[1,0],[0,1],[1,2],[0,1],[0,2],[1,3],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[0,1],[1,1],[0,1],[0,2],[1,2],[1,1],[0,1],[0,2],[1,0],[2,4],[0,1],[1,1],[1,4],[0,1],[1,1],[1,3],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,3],[1,2],[0,1],[1,0],[0,1],[0,1],[0,-1],[0,1],[1,0],[0,1],[1,1],[1,1],[1,3],[1,1],[1,2],[0,1],[1,1],[0,1],[1,0],[0,1]],[[1530,4509],[0,2],[-1,7],[-1,0],[0,1],[0,3],[-1,5],[-1,4],[0,1],[1,2],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,4],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[-1,5],[0,2],[0,3],[0,5],[-1,5],[0,4],[0,4],[0,4],[0,4],[0,3],[0,1],[1,4],[0,3],[0,3],[0,9],[0,5],[0,1],[0,5],[0,3],[0,2],[0,6],[0,1],[-1,2],[0,1],[0,1],[0,1],[-1,8],[0,2],[-1,-1],[0,-1],[0,1],[0,3],[0,6],[-1,5],[0,2],[0,3],[1,14],[1,7],[0,7],[1,2],[0,13],[0,5],[0,3],[0,3],[1,10],[0,5],[0,3],[1,8],[-1,4],[0,2],[0,1],[1,4],[0,2],[0,1],[1,1],[1,7],[0,9],[1,13],[1,10],[0,10],[1,11],[0,1],[0,3],[0,3],[1,19],[0,10],[0,9],[0,9],[1,15],[0,12],[0,4],[0,9],[0,5],[0,1],[0,6],[0,5],[0,1],[0,1],[0,2],[0,4],[0,1],[0,1],[1,3],[0,7],[0,9],[0,1],[0,1],[0,1],[0,-1],[0,2],[0,7],[0,2],[0,3],[0,5],[0,15],[0,2],[0,2],[1,5],[0,2],[-1,3],[1,3],[0,7],[-1,4],[0,2],[0,5],[0,6],[1,1],[0,1],[0,2],[0,9],[1,5],[0,2],[0,2],[0,7],[0,11],[0,1],[0,3],[0,2],[0,2],[1,1],[0,10],[0,10],[0,3],[0,12],[0,7],[0,4],[-1,0],[1,2],[0,1],[0,6],[0,8],[0,4],[0,3],[0,4],[0,1],[0,3],[1,10],[0,2],[0,2],[0,15],[0,8],[0,4],[0,1],[-1,4],[0,1],[0,1],[0,3],[0,10],[0,7],[0,7],[0,4],[0,1],[-1,2],[1,4],[0,1],[1,0],[0,1],[0,6],[0,6],[0,5],[0,9],[-1,4],[0,5],[-1,7],[0,4],[0,1],[0,1],[1,-2],[0,-1],[0,-2],[1,-1],[0,-2],[1,-3],[0,-2],[1,-2],[1,1],[0,2],[-1,2],[0,1],[1,1],[0,-1],[1,2],[1,2],[1,-2],[1,3],[1,1],[0,-1],[1,0],[0,2],[0,2],[0,1],[0,-1],[1,-1],[1,3],[0,2]],[[3002,4410],[0,-1],[0,-1],[0,-1],[0,2],[0,6],[0,2],[0,2],[0,2],[0,6],[0,2],[0,1],[1,0],[0,-3],[0,-10],[0,-4],[-1,-1],[0,-2]],[[3004,4415],[0,-1],[0,-1],[-1,2],[0,1],[1,-1]],[[3004,4431],[-1,1],[0,2],[0,2],[1,1],[0,1],[0,1],[0,2],[-1,0],[0,4],[0,1],[0,1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-2],[0,-3],[0,-1],[0,-3],[0,-1]],[[2996,4360],[1,1],[0,2],[0,2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,1],[0,2],[0,4],[0,1],[0,2]],[[3007,4456],[-1,-1],[0,-2],[0,-3],[0,-2],[0,-5],[-1,0],[0,2],[0,4],[0,-2],[-1,-3],[0,1],[0,4],[0,1],[1,2],[0,2],[-1,3],[0,1],[-1,1],[0,-1],[0,-2],[0,-3],[-1,-4],[0,-2],[0,1],[0,2],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[0,-4],[1,1],[0,-1],[0,-2],[1,-12],[-2,-2],[0,-3],[1,-5],[0,-2],[0,-2],[0,-3],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-5],[0,-4],[-1,-3],[-1,1],[-1,0],[-2,-3],[-1,-3],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-2],[-1,-2],[0,1],[0,1],[0,1]],[[3009,4416],[0,-1],[0,-1],[-1,-3],[0,-1],[-1,-2],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,3],[0,6],[0,5],[0,5],[0,2],[0,1],[0,1],[0,1],[-1,-1],[0,-6],[0,-3],[0,-7],[0,-1],[0,-2],[0,-1],[0,-3],[0,-2],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,-3],[0,-1],[0,-1],[0,-1],[0,1],[-1,-1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,2],[0,3],[0,1],[0,2],[0,3],[0,2],[0,2],[1,3],[0,1],[0,5],[0,2],[0,1],[1,3],[1,1],[0,6]],[[2293,1913],[1,1],[0,1],[0,2],[0,4],[-1,1],[0,1],[1,1],[0,3],[2,0],[1,2],[0,1],[0,1],[0,1],[1,2],[0,1],[0,4],[1,4],[0,1],[0,1],[1,2],[0,1],[1,0],[0,1],[0,2],[1,1],[1,1],[1,2],[0,1],[1,2],[0,1],[0,1],[0,1],[0,-1],[0,-4],[0,-3],[-1,-2],[-3,-9],[-2,-7],[-2,-9],[-2,-9],[-2,-13],[0,-1],[-3,-13],[-1,-8],[-1,-7],[0,-8],[-1,-3],[0,-3],[-1,-8],[-1,-8],[-1,-14],[-1,-11],[-1,-8],[-1,-19],[-1,-12],[-1,-11],[0,-13],[0,-2],[-1,-11],[0,-9],[0,-11],[0,-10],[0,-11],[0,-15],[0,-7],[1,-12],[0,-14],[1,-19],[0,-6],[1,-7],[0,-2],[1,-22],[0,-4],[1,-20],[0,-7],[1,-14],[0,-20],[0,-4],[0,2],[0,5],[-1,8],[0,6],[0,7],[0,10],[-1,16],[0,6],[0,4],[0,1],[0,4],[0,4],[-1,3],[0,2],[0,7],[-1,1],[0,6],[0,2],[0,1],[0,4],[0,1],[-1,2],[0,7],[0,3],[0,7],[-1,2],[0,2],[0,2],[0,1],[0,4],[0,1],[0,2],[0,1],[0,2],[0,3],[0,2],[0,10],[0,3],[0,2],[0,9],[0,19],[0,3],[0,3],[0,2],[0,12],[0,8],[0,1],[0,4],[0,4],[0,5],[0,1],[0,3],[0,1],[0,1],[1,0],[-1,4],[0,1],[0,5],[1,6],[0,2],[0,2],[0,1],[0,1],[0,2],[1,5],[0,7],[1,4],[0,4],[0,3],[0,1],[0,1],[0,2],[1,0],[0,4],[0,1],[0,5],[0,-1],[1,1],[0,3],[0,3],[0,3],[0,1],[0,1],[1,5],[0,3],[1,3],[0,1],[0,1],[1,5],[0,2],[0,2],[0,1],[0,1],[0,1],[-1,-1],[0,1],[2,3],[0,3],[1,9],[0,1],[0,1],[1,7],[0,4],[0,1],[0,-1],[0,1],[0,4],[0,3],[0,-1],[1,0],[0,1],[0,2],[0,1],[1,2],[-1,1],[1,1],[0,4],[1,0],[0,1],[0,1],[0,2],[0,4],[0,2],[0,1],[0,-1],[0,-1],[0,-2],[1,-1],[0,1]],[[2377,2208],[-1,-3],[-1,0],[-1,1],[-2,0],[-2,-2],[-2,-4],[-6,-16],[0,-2],[-4,-9],[-3,-7],[-1,-3],[-1,-4],[0,-3],[-1,-2],[0,-4],[0,-2],[-1,0],[0,-2],[-1,0],[0,1],[0,2],[1,3],[0,2],[1,4],[0,2],[1,6],[0,1],[0,1],[1,0],[0,-1],[1,1],[0,1],[0,2],[0,3],[1,1],[0,2],[0,1],[1,0],[0,-1],[0,-2],[1,1],[0,1],[0,3],[-1,1],[0,1],[0,1],[0,2],[0,1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-2,-2],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,3],[1,4],[0,8],[1,13],[0,1],[0,4],[-1,10],[0,2],[-1,0],[0,-3],[-1,-1],[-1,-2],[-1,-6],[0,-5],[0,-3],[0,-2],[-1,-2],[0,-1],[-1,1],[0,3],[0,1],[0,2],[0,1],[-1,1],[0,-3],[0,-3],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[1,-1],[0,-1],[0,-1],[-1,-2],[0,-3],[0,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[1,-2],[0,-1],[1,-1],[1,0],[0,-2],[-1,-4],[0,-3],[0,-1],[1,-2],[0,-4],[0,-9],[0,-5],[0,-6],[0,-2],[1,-1],[0,1],[1,2],[0,3],[0,4],[0,2],[1,-4],[0,1],[1,-1],[0,1],[1,0],[0,-1],[-1,-5],[-1,-3],[0,-2],[-7,-25],[-1,-7],[-1,-4],[0,-2],[0,-1],[0,-1],[-2,-8],[-1,-6],[-1,-6],[-1,-5],[0,-1],[-2,-5],[0,-5],[0,-1],[-1,-2],[-1,0],[-1,-4],[-1,-2],[-2,-7],[-6,-23],[-2,-6],[-4,-8],[-2,-6],[-3,-10],[-1,-2],[0,-4],[-1,-2],[-1,-4],[-1,-3],[0,-1],[-1,-4],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,2],[1,7],[2,7],[1,3],[0,1],[0,2],[2,7],[1,2],[2,5],[0,1],[1,2],[1,1],[0,2],[0,1],[0,4],[0,1],[0,1],[-1,1],[0,-1],[0,-1],[-1,1],[0,-1],[-1,-3],[0,-2],[-2,-2],[-1,-3],[0,-2],[-1,-1],[0,3],[0,1],[0,1],[0,1],[0,2],[0,4],[1,4],[-1,0],[1,4],[0,1],[0,1],[0,1],[-1,-1],[-1,-2],[0,-1],[0,1],[-1,-1],[0,-2],[0,-2],[0,-3],[-1,0],[-1,-3],[0,-1],[0,-1],[-3,-8],[0,-1],[0,2],[0,3],[0,2],[0,1],[-1,1],[0,2],[0,1],[0,1],[-1,1],[-1,5],[0,1],[1,2],[0,1],[0,1],[-1,1],[0,2],[0,1],[0,1],[-1,0],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[1,-3],[0,-3],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-7],[1,0],[1,0],[0,-2],[0,-1],[0,-2],[1,0],[0,-1],[0,-3],[0,-2],[2,-7],[1,-4],[0,-1],[0,-2],[0,-2],[-2,-4],[0,-2],[-1,-2],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-3],[-2,-2],[0,-2],[-1,3],[0,-1],[0,1],[0,4],[0,5],[0,2],[-1,0],[-1,0],[0,1],[0,-1],[0,-2],[-1,-3],[0,-3],[0,-3],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-3],[0,-1],[0,-2],[0,-1],[0,-4],[0,-1],[0,-4],[0,-2],[-1,-4],[-1,-3],[-1,-5],[0,-1],[-1,-4],[-2,2],[0,-2],[0,-1],[0,-2],[0,-1],[0,-2],[-1,-2],[0,-2],[1,-3],[0,-3],[0,-1],[-1,-1],[0,-1],[0,-5],[-1,-2],[-1,-12],[0,-4],[-1,-1],[0,-3],[-1,-9],[0,-1],[0,-1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,2],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-3],[-1,0],[0,-3],[0,-4],[0,-6],[0,-3],[0,-5],[1,-3],[1,-2],[1,-3],[0,-3],[-1,-13],[0,-1],[0,-1],[0,-1],[0,-2],[0,-3],[-1,-1],[0,-7],[0,-2],[0,-2],[0,-5],[-1,-4],[0,-1],[0,-5],[0,-2],[0,-2],[0,-2],[-1,-9],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-3],[-1,-4],[0,1],[-1,1],[0,1],[1,0],[0,1],[0,2],[1,0],[-1,3],[1,1],[0,2],[0,2],[0,2],[-1,1],[0,-1],[0,-1],[-1,-4],[0,-3],[-1,-1],[0,-5],[-1,0],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,1],[1,1],[0,2],[1,1],[0,1],[1,0],[0,-1],[-1,-11],[0,-10],[0,-6],[0,-1],[0,-2],[-1,0],[0,1],[0,-2],[0,-3],[0,-2],[0,-1],[0,-1],[0,-4],[0,-1],[0,-1],[0,-5],[0,1],[-1,0],[-1,-1],[0,-1],[0,-2],[0,-3],[0,-2],[0,-1],[0,-2],[0,-6],[0,-1],[0,-1],[0,-1],[0,-4],[0,-1],[0,-4],[0,-3],[1,0],[0,-4],[1,-8],[0,-1],[0,1],[0,-4],[0,-6],[1,-14],[0,-4],[0,-2],[1,-5],[0,-4],[0,-6],[0,-1],[-1,-2],[0,-2],[1,-2],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[1,-1],[0,1],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,1],[0,1],[1,-1],[0,-1],[0,-3],[0,-2],[0,-3],[0,-5],[0,-1],[0,-1],[0,2],[0,2],[0,1],[1,1],[0,-1],[0,-1],[0,-3],[0,-3],[0,-1],[0,-4],[0,-4],[0,-1],[0,1],[1,1],[0,-4],[0,-1],[0,-2],[0,-2],[0,-5],[0,-1],[0,-2],[0,-5],[0,-3],[1,-2],[0,-2],[-1,-1],[0,-1],[1,-3],[0,-1],[1,-1],[1,0],[0,-1],[0,-7],[0,-2],[-1,0],[0,-1],[0,-5],[0,-1],[1,0],[1,2],[0,1],[0,1],[0,2],[0,4],[-1,0],[0,2],[1,2],[0,-1],[0,-4],[0,-4],[0,-9],[0,-1],[-2,-1],[-1,-1],[-2,-4],[-1,-3],[0,-3],[0,-3],[-1,-5],[-2,4],[-1,2],[-2,9],[-2,16],[0,2],[-6,5],[0,1],[-4,-1],[0,-1],[-1,-2],[-2,2],[-3,4],[-1,2],[-3,13],[-2,10],[0,2],[-4,7],[-1,0],[0,-2],[-2,6],[-1,10],[-2,7],[-1,-1],[-6,8],[-1,6],[-2,22],[0,2],[-1,23],[-1,18],[-1,10],[-1,12],[-2,5],[-2,17],[0,7],[0,1],[0,1],[1,4],[0,16],[-1,13],[0,3],[0,1],[0,-1],[-1,3],[-1,5],[0,1],[0,1],[1,7],[0,7],[0,3],[0,14],[-1,17],[0,6],[-2,7],[-1,0],[0,-1],[-1,0],[-5,25],[-1,6],[0,11],[0,2],[0,6],[-1,3],[-2,14],[-2,19],[0,7],[0,2],[-1,0],[-1,4],[-1,2],[-1,2],[0,1],[-1,9],[-1,6],[-2,25],[1,17],[-1,0],[-1,3],[0,4],[-1,11],[-1,2],[-1,10],[0,6],[0,3],[0,2],[0,4],[-1,12],[0,4],[-2,7],[-1,10],[0,5],[0,8],[-1,16],[0,2],[0,3],[-3,27],[0,1],[-5,19],[-1,3],[-1,9],[0,3],[-1,5],[0,2],[-2,1],[-3,10],[0,17],[0,1],[-2,7],[-1,0],[-1,18],[-2,3],[-4,0],[-1,-2],[0,-1],[-3,4],[-1,1],[-3,3],[-1,1],[-3,-3],[0,-1],[-2,2],[-4,11],[-1,2],[0,2],[-1,0],[-1,-6],[-1,-15],[0,1],[-1,2],[-1,2],[-1,-1],[-1,-6],[-2,0],[-1,-2],[-1,-3],[0,-5],[-2,-19],[-1,-10],[0,-4],[-1,-15],[0,-6],[-1,-10],[-1,-13],[0,-7],[1,0],[0,-1],[0,-3],[0,-2],[-2,-7],[-2,-3],[-3,-24],[0,-9],[-1,-2],[0,-1],[-4,4],[-2,6],[-3,10],[0,2],[-1,6],[0,3],[-1,4],[-2,2],[0,-1],[-3,4],[-1,8],[-1,7],[-1,3],[-2,3],[-2,0],[-1,3],[-4,13],[0,4],[-1,11],[-1,7],[-1,3],[-1,1],[0,1],[-3,6],[-3,16],[-1,6],[0,8],[0,2],[0,8],[-2,18],[-1,8],[0,2],[-1,18],[0,14],[0,16],[0,11],[-2,12],[0,2],[-2,15],[-1,20],[-1,19],[-2,2],[0,2],[-2,12],[-2,12],[-2,9],[-1,0],[-1,1],[-3,10],[-1,7],[-4,18],[0,5],[-1,4],[0,3],[0,5],[-1,6],[-2,4],[-1,6],[-2,6],[-2,17],[0,2],[-1,2],[-2,12],[0,2],[0,1],[-3,4],[-1,2],[-2,7],[0,1],[0,1],[0,1],[-1,13],[-3,29],[-1,6],[-1,3],[0,1],[-1,-1],[-2,6]]],"transform":{"scale":[0.035896170617061705,0.00534730949534951],"translate":[-179.14734,17.884813]}} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
year | lat | lon | isbat | |
---|---|---|---|---|
1871 | 40.891476904214912 | -76.514161908765203 | 1 | |
1872 | 40.850396515828606 | -76.615391472816142 | 1 | |
1873 | 40.952823271848501 | -76.598145283251128 | 1 | |
1874 | 40.90051163216306 | -76.706754394972847 | 1 | |
1875 | 40.819944280549635 | -76.852198608093715 | 1 | |
1876 | 40.736466438223189 | -77.073409805894329 | 1 | |
1877 | 40.689576337778611 | -77.105438178850207 | 1 | |
1878 | 40.651852900594008 | -77.131431769183493 | 1 | |
1879 | 40.652980874454848 | -76.997683956839765 | 1 | |
1880 | 40.700177520847895 | -77.019403313389091 | 1 | |
1881 | 40.761081772913364 | -76.989874845483655 | 1 | |
1882 | 40.759597446580095 | -77.122370379353839 | 1 | |
1883 | 40.810515673873553 | -77.196611242305551 | 1 | |
1884 | 40.797426164092101 | -77.473546394325837 | 1 | |
1885 | 40.811626889936704 | -77.556360023887052 | 1 | |
1886 | 40.821004286473347 | -77.763263428361725 | 1 | |
1887 | 40.817382013807126 | -77.983288897727348 | 1 | |
1888 | 40.808952208287401 | -78.147798372769529 | 1 | |
1889 | 40.794204156026858 | -78.396131590605776 | 1 | |
1890 | 40.775787101972881 | -78.667979796870824 | 1 | |
1891 | 40.779798182623956 | -78.740327920824058 | 1 | |
1892 | 40.771856870848424 | -78.82211600993692 | 1 | |
1893 | 40.766960602893654 | -78.936763535409582 | 1 | |
1894 | 40.774333288818426 | -78.966009111908406 | 1 | |
1895 | 40.775679341794863 | -79.07398084965925 | 1 | |
1896 | 40.780562242412174 | -79.143549156333833 | 1 | |
1897 | 40.784918624546286 | -79.205646322196529 | 1 | |
1898 | 40.790262278382201 | -79.336736221950446 | 1 | |
1899 | 40.790676626138101 | -79.454262013522921 | 1 | |
1900 | 40.791549391080629 | -79.515817371415864 | 1 | |
1901 | 40.790512155750214 | -79.657518547358677 | 1 | |
1902 | 40.790158084900689 | -79.767572554998466 | 1 | |
1903 | 40.788805893750002 | -79.886800458623142 | 1 | |
1904 | 40.794162151312641 | -79.96933593402153 | 1 | |
1905 | 40.794525086550294 | -80.057476749555917 | 1 | |
1906 | 40.788425810050221 | -80.187318841180542 | 1 | |
1907 | 40.786743626649695 | -80.277453086322325 | 1 | |
1908 | 40.776901338844077 | -80.38678359664857 | 1 | |
1909 | 40.749784186546343 | -80.528732803584731 | 1 | |
1910 | 40.713990364389083 | -80.714620509989516 | 1 | |
1911 | 40.669186470203371 | -80.908306356845969 | 1 | |
1912 | 40.62376677433997 | -81.081469247486453 | 1 | |
1913 | 40.575760768124525 | -81.267410685475497 | 1 | |
1914 | 40.530329150029374 | -81.457937445422303 | 1 | |
1915 | 40.481589611052321 | -81.652448748764243 | 1 | |
1916 | 40.443187602827969 | -81.820283780943441 | 1 | |
1917 | 40.399414957083088 | -81.984159736303141 | 1 | |
1918 | 40.368214841121564 | -82.115002150655272 | 1 | |
1919 | 40.331469348666126 | -82.27443457435777 | 1 | |
1920 | 40.288692717015124 | -82.453786800493333 | 1 | |
1921 | 40.245601485057279 | -82.649809218187627 | 1 | |
1922 | 40.201655691985934 | -82.86736036888486 | 1 | |
1923 | 40.169011241452367 | -83.034165877444082 | 1 | |
1924 | 40.120978258992409 | -83.204254184673459 | 1 | |
1925 | 40.084348991210703 | -83.360862169387786 | 1 | |
1926 | 40.051530476741249 | -83.491170620907212 | 1 | |
1927 | 40.011517522103475 | -83.629539095366482 | 1 | |
1928 | 39.971956926762303 | -83.743070973140789 | 1 | |
1929 | 39.925822331130732 | -83.916118206819135 | 1 | |
1930 | 39.889985372833962 | -84.018956078618672 | 1 | |
1931 | 39.851239229421871 | -84.141487725240765 | 1 | |
1932 | 39.809339581697081 | -84.249608030572148 | 1 | |
1933 | 39.768363186187123 | -84.355502991619275 | 1 | |
1934 | 39.728680235866101 | -84.465891727256434 | 1 | |
1935 | 39.689067243084367 | -84.564041981475754 | 1 | |
1936 | 39.647211142891337 | -84.695401815468699 | 1 | |
1937 | 39.603945033848795 | -84.824243753345854 | 1 | |
1938 | 39.562754104688253 | -84.967698671097352 | 1 | |
1939 | 39.522928956651867 | -85.094478964775107 | 1 | |
1940 | 39.482843223716671 | -85.223739892991929 | 1 | |
1941 | 39.449412176058296 | -85.347847900570684 | 1 | |
1942 | 39.416862777468069 | -85.480542613714192 | 1 | |
1943 | 39.387498255623917 | -85.553941523195078 | 1 | |
1944 | 39.372916670807051 | -85.599188770216429 | 1 | |
1945 | 39.358943685477755 | -85.665113772503744 | 1 | |
1946 | 39.336773075675865 | -85.748592404219565 | 1 | |
1947 | 39.309948906460413 | -85.852906994341566 | 1 | |
1948 | 39.290713479450346 | -85.967469504885955 | 1 | |
1949 | 39.263590058425635 | -86.078720460503035 | 1 | |
1950 | 39.242399437279545 | -86.179707291389846 | 1 | |
1951 | 39.213721367402279 | -86.271640162216784 | 1 | |
1952 | 39.18567161687605 | -86.335189166337528 | 1 | |
1953 | 39.157728438604089 | -86.399429942435489 | 1 | |
1954 | 39.128361227616928 | -86.464537312814883 | 1 | |
1955 | 39.106353373906032 | -86.520264820082673 | 1 | |
1956 | 39.076799592435542 | -86.587321940544925 | 1 | |
1957 | 39.055406957082198 | -86.649483044994 | 1 | |
1958 | 39.030385030360662 | -86.716605057808223 | 1 | |
1959 | 39.002492032361864 | -86.780441140536411 | 1 | |
1960 | 38.981236141512461 | -86.840636699939935 | 1 | |
1961 | 38.954375218942438 | -86.902254591879995 | 1 | |
1962 | 38.923575654235201 | -86.951715936561911 | 1 | |
1963 | 38.890630218196442 | -87.007239265441441 | 1 | |
1964 | 38.863616226019623 | -87.063224721334848 | 1 | |
1965 | 38.828986589537145 | -87.121432612058314 | 1 | |
1966 | 38.801599524586841 | -87.16174919465098 | 1 | |
1967 | 38.777356963504431 | -87.199727654082892 | 1 | |
1968 | 38.752261916951042 | -87.248325228629639 | 1 | |
1969 | 38.717070872987598 | -87.312107293587601 | 1 | |
1970 | 38.681255578778405 | -87.393517412230025 | 1 | |
1971 | 38.646531560399644 | -87.476097565697032 | 1 | |
1972 | 38.623680911235439 | -87.561060489266367 | 1 | |
1973 | 38.599043970094094 | -87.644984573386296 | 1 | |
1974 | 38.574988675262972 | -87.718448090471114 | 1 | |
1975 | 38.554338638800139 | -87.785338827694034 | 1 | |
1976 | 38.53305218965918 | -87.838884783496937 | 1 | |
1977 | 38.498030373121154 | -87.925941918265451 | 1 | |
1978 | 38.467025568845429 | -88.012855333641085 | 1 | |
1979 | 38.440252379431705 | -88.102250941666625 | 1 | |
1980 | 38.416184886768292 | -88.202144833737179 | 1 | |
1981 | 38.396705311095694 | -88.264045900776836 | 1 | |
1982 | 38.373097563954246 | -88.376322697481925 | 1 | |
1983 | 38.350934530736687 | -88.474309085726844 | 1 | |
1984 | 38.331987037408894 | -88.589074250576857 | 1 | |
1985 | 38.310768652228312 | -88.711791250733924 | 1 | |
1986 | 38.286252196508521 | -88.829185980446553 | 1 | |
1987 | 38.26446977632083 | -88.942637351172266 | 1 | |
1988 | 38.24323333560082 | -89.050756060874605 | 1 | |
1989 | 38.219004639611633 | -89.13510972562527 | 1 | |
1990 | 38.194907771868294 | -89.228643702886032 | 1 | |
1991 | 38.173963829747208 | -89.306041503812736 | 1 | |
1992 | 38.152666827484985 | -89.375387593356535 | 1 | |
1993 | 38.130258611540022 | -89.439699047915667 | 1 | |
1994 | 38.113633137765888 | -89.479946785791839 | 1 | |
1995 | 38.096954293672269 | -89.515795480673546 | 1 | |
1996 | 38.082267502362605 | -89.558353734751918 | 1 | |
1997 | 38.069595728693834 | -89.59174996641552 | 1 | |
1998 | 38.051036918819257 | -89.654298911069787 | 1 | |
1999 | 38.03456072543355 | -89.713676153060277 | 1 | |
2000 | 38.01477412703484 | -89.778796513004096 | 1 | |
2001 | 37.993710348720128 | -89.846263021821798 | 1 | |
2002 | 37.978529743931588 | -89.940647317328953 | 1 | |
2003 | 37.958224338283777 | -90.019876611927202 | 1 | |
2004 | 37.939617892116274 | -90.088269690458972 | 1 | |
2005 | 37.926790757717221 | -90.166018016644443 | 1 | |
2006 | 37.911101611634152 | -90.231387641987226 | 1 | |
2007 | 37.893293847330817 | -90.296846455236079 | 1 | |
2008 | 37.868408965517006 | -90.377552888596043 | 1 | |
2009 | 37.847823640554957 | -90.439721812197035 | 1 | |
2010 | 37.820192518825287 | -90.478205910477882 | 1 | |
2011 | 37.792066340504803 | -90.540395013822135 | 1 | |
2012 | 37.767351579369581 | -90.576419999689548 | 1 | |
2013 | 37.742334684177656 | -90.621089503133661 | 1 | |
2014 | 37.721345271178912 | -90.644853020869249 | 1 | |
1871 | 40.689848187850025 | -77.531098587664971 | 0 | |
1872 | 40.915554075952187 | -77.995949533965174 | 0 | |
1873 | 40.850649128072845 | -77.681118329565379 | 0 | |
1874 | 40.777201539228081 | -77.65720039523525 | 0 | |
1875 | 40.811258898387372 | -77.542522947854636 | 0 | |
1876 | 40.784240747524294 | -77.705203434382369 | 0 | |
1877 | 40.736924210446581 | -77.552336282773737 | 0 | |
1878 | 40.715080614408862 | -77.494576694895997 | 0 | |
1879 | 40.708167594883314 | -77.762685160553275 | 0 | |
1880 | 40.756191211018994 | -77.655566585305337 | 0 | |
1881 | 40.827515056830258 | -77.631794313915051 | 0 | |
1882 | 40.930402744773779 | -77.499590571280081 | 0 | |
1883 | 40.959045955142287 | -77.499894408175408 | 0 | |
1884 | 40.889987837946343 | -78.107069928197006 | 0 | |
1885 | 40.868532708356433 | -77.94720601710074 | 0 | |
1886 | 40.847062404725804 | -77.985930112939258 | 0 | |
1887 | 40.78799873245358 | -78.120472047348684 | 0 | |
1888 | 40.764834168442569 | -78.397016637302045 | 0 | |
1889 | 40.769493848220456 | -78.40802810007402 | 0 | |
1890 | 40.680667374410689 | -78.812067576727614 | 0 | |
1891 | 40.651145960358463 | -79.050482192148067 | 0 | |
1892 | 40.659554398956161 | -79.192873431889097 | 0 | |
1893 | 40.633817185418273 | -79.387678533190225 | 0 | |
1894 | 40.60980389511532 | -79.635010248626514 | 0 | |
1895 | 40.616836402878924 | -79.80589685355136 | 0 | |
1896 | 40.594687494213531 | -79.984349514974909 | 0 | |
1897 | 40.573543553013998 | -80.165045988517107 | 0 | |
1898 | 40.536974887588464 | -80.326906098649175 | 0 | |
1899 | 40.499601350206973 | -80.581174926010632 | 0 | |
1900 | 40.478454856864929 | -80.718438531727656 | 0 | |
1901 | 40.472670066594958 | -80.810888140990542 | 0 | |
1902 | 40.46155628888863 | -80.890388722784422 | 0 | |
1903 | 40.454391795597182 | -81.019683986194295 | 0 | |
1904 | 40.477781016004592 | -81.07684124601704 | 0 | |
1905 | 40.497541206811626 | -81.158437179062446 | 0 | |
1906 | 40.506103581994942 | -81.263060217951519 | 0 | |
1907 | 40.489493228423036 | -81.443311671191552 | 0 | |
1908 | 40.495154248803686 | -81.466162314578156 | 0 | |
1909 | 40.478291686813584 | -81.680030629159432 | 0 | |
1910 | 40.451542054364339 | -81.837999286274538 | 0 | |
1911 | 40.446718368296565 | -82.074092856937114 | 0 | |
1912 | 40.409104792076242 | -82.266927895803377 | 0 | |
1913 | 40.382430673922542 | -82.471796144079605 | 0 | |
1914 | 40.332165476629342 | -82.661676046925038 | 0 | |
1915 | 40.250770946636514 | -82.864813617992809 | 0 | |
1916 | 40.207569835533306 | -82.994873840330541 | 0 | |
1917 | 40.171110131923903 | -83.130925759174815 | 0 | |
1918 | 40.140327512972327 | -83.204348443563077 | 0 | |
1919 | 40.108830177097389 | -83.286941243772731 | 0 | |
1920 | 40.074449858334596 | -83.36983216168997 | 0 | |
1921 | 40.051745667071891 | -83.433434547526218 | 0 | |
1922 | 40.03357509378209 | -83.518072924042215 | 0 | |
1923 | 40.017535615017884 | -83.573790454904781 | 0 | |
1924 | 39.984594763725205 | -83.628410678579201 | 0 | |
1925 | 39.951618393406335 | -83.712101106494103 | 0 | |
1926 | 39.916632945786851 | -83.795543261429032 | 0 | |
1927 | 39.885901775578773 | -83.882032119835557 | 0 | |
1928 | 39.863181657980803 | -83.931754776053964 | 0 | |
1929 | 39.8222654973478 | -84.034535263267415 | 0 | |
1930 | 39.79204860795857 | -84.106245716114557 | 0 | |
1931 | 39.754464673332343 | -84.222432436287079 | 0 | |
1932 | 39.704935372131871 | -84.303379534838442 | 0 | |
1933 | 39.670073109267769 | -84.419106790369284 | 0 | |
1934 | 39.634747202022758 | -84.547934796663853 | 0 | |
1935 | 39.59026310651543 | -84.685140784359689 | 0 | |
1936 | 39.551686455259947 | -84.773318427800788 | 0 | |
1937 | 39.51725880580095 | -84.900283938040687 | 0 | |
1938 | 39.493064929037729 | -85.006909955891743 | 0 | |
1939 | 39.468934897939398 | -85.079290502368806 | 0 | |
1940 | 39.448380574682581 | -85.155062841516383 | 0 | |
1941 | 39.419773726809751 | -85.20768801815754 | 0 | |
1942 | 39.391314664989856 | -85.26381096541941 | 0 | |
1943 | 39.348180243958573 | -85.342768850545923 | 0 | |
1944 | 39.31967830673365 | -85.397698602396929 | 0 | |
1945 | 39.299308379782154 | -85.486478205267446 | 0 | |
1946 | 39.277618647299718 | -85.56529309476818 | 0 | |
1947 | 39.26699361630866 | -85.636346904967965 | 0 | |
1948 | 39.252308260402685 | -85.70000157969028 | 0 | |
1949 | 39.237830842234949 | -85.78923432746042 | 0 | |
1950 | 39.230837202445642 | -85.862247823028142 | 0 | |
1951 | 39.234656381733885 | -85.89517908562236 | 0 | |
1952 | 39.227906006998893 | -85.903790527518211 | 0 | |
1953 | 39.223585387564057 | -85.916207886368909 | 0 | |
1954 | 39.223838845148236 | -85.956390094984258 | 0 | |
1955 | 39.221480052688094 | -85.983969748454612 | 0 | |
1956 | 39.211258889921375 | -85.995319887632718 | 0 | |
1957 | 39.212408109270577 | -86.025496922326553 | 0 | |
1958 | 39.205838067138437 | -86.032217649070773 | 0 | |
1959 | 39.200869065035867 | -86.073866735118131 | 0 | |
1960 | 39.19612234545793 | -86.132692078354694 | 0 | |
1961 | 39.192119177842343 | -86.158314911980369 | 0 | |
1962 | 39.190662911538794 | -86.178030285337641 | 0 | |
1963 | 39.187363051955472 | -86.183336922487385 | 0 | |
1964 | 39.188351243732676 | -86.209377302330466 | 0 | |
1965 | 39.181773450509901 | -86.243885226541821 | 0 | |
1966 | 39.162888019149392 | -86.296605987720667 | 0 | |
1967 | 39.14463349572101 | -86.385213647251675 | 0 | |
1968 | 39.132585491402992 | -86.46646871761142 | 0 | |
1969 | 39.114204867158925 | -86.573480023774479 | 0 | |
1970 | 39.09751361776965 | -86.670938909864788 | 0 | |
1971 | 39.083708857643494 | -86.768161170664271 | 0 | |
1972 | 39.062238316559451 | -86.862058998782516 | 0 | |
1973 | 39.042166459832096 | -87.00265737973244 | 0 | |
1974 | 39.027528929841004 | -87.10312715996011 | 0 | |
1975 | 39.016097920800355 | -87.222013639249084 | 0 | |
1976 | 38.998758478484724 | -87.316034676211487 | 0 | |
1977 | 38.97943873208461 | -87.398447044764794 | 0 | |
1978 | 38.961522122951578 | -87.481259993658909 | 0 | |
1979 | 38.946280971954238 | -87.592402763406568 | 0 | |
1980 | 38.915174195542285 | -87.703506722470152 | 0 | |
1981 | 38.889835501274 | -87.79455205525646 | 0 | |
1982 | 38.872047776390666 | -87.913822386838376 | 0 | |
1983 | 38.841073713498666 | -88.044666651371301 | 0 | |
1984 | 38.807917411643594 | -88.145687041007264 | 0 | |
1985 | 38.764005330921307 | -88.27739682502083 | 0 | |
1986 | 38.726795363748614 | -88.419320957639187 | 0 | |
1987 | 38.704996466664461 | -88.511806500758752 | 0 | |
1988 | 38.677100890239686 | -88.620125833160515 | 0 | |
1989 | 38.651508582012738 | -88.716299936989557 | 0 | |
1990 | 38.625548020436931 | -88.830158366861326 | 0 | |
1991 | 38.610816033319551 | -88.911795893871243 | 0 | |
1992 | 38.591698586039406 | -88.994470601868827 | 0 | |
1993 | 38.564843102164211 | -89.077587157479797 | 0 | |
1994 | 38.545482273194445 | -89.141231227723338 | 0 | |
1995 | 38.52014699377542 | -89.193923712844452 | 0 | |
1996 | 38.49896466806738 | -89.229226461819209 | 0 | |
1997 | 38.482967297851992 | -89.282909528883962 | 0 | |
1998 | 38.467153436761279 | -89.332146200688257 | 0 | |
1999 | 38.457083894104869 | -89.356468575685824 | 0 | |
2000 | 38.436554224414287 | -89.424874686456405 | 0 | |
2001 | 38.430510643273102 | -89.498633152830777 | 0 | |
2002 | 38.412935411766071 | -89.572897306112409 | 0 | |
2003 | 38.394372093095775 | -89.649472720740008 | 0 | |
2004 | 38.375103018567458 | -89.733130704583857 | 0 | |
2005 | 38.351520010745773 | -89.810777511544146 | 0 | |
2006 | 38.327935769673836 | -89.876992936033602 | 0 | |
2007 | 38.299690366342737 | -89.964307432794698 | 0 | |
2008 | 38.279191258979282 | -90.039287292383278 | 0 | |
2009 | 38.250938427445078 | -90.117228869331313 | 0 | |
2010 | 38.226914929524121 | -90.186444694722837 | 0 | |
2011 | 38.204945147899011 | -90.271514621419527 | 0 | |
2012 | 38.180774063595869 | -90.316153479543402 | 0 | |
2013 | 38.156520265906529 | -90.358051355379374 | 0 | |
2014 | 38.138102843553511 | -90.407552842089387 | 0 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment