Skip to content

Instantly share code, notes, and snippets.

@zanarmstrong
Last active September 8, 2015 03:37
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save zanarmstrong/42dc0ba7b6b561d4d99e to your computer and use it in GitHub Desktop.
Save zanarmstrong/42dc0ba7b6b561d4d99e to your computer and use it in GitHub Desktop.
Example map of the US

Practice making a small map of the United States. Adapted from many resources, including this base map. Process described here with additional references.

<!DOCTYPE html>
<meta charset="utf-8">
<style>
path {
fill: #ccc;
stroke: none;
}
.cities{
fill: blue;
}
</style>
<body>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script src="smallMap.js"></script>
var width = 960,
height = 500;
// defines size of map, and location on the screen
var projection = d3.geo.albersUsa()
.translate([100,100])
.scale([200]);
var path = d3.geo.path().projection(projection);
// list of cities to show, and locations
var citiesData = [{"city": "Chicago", location: {"lat": 41.87811, "long": -87.62980}},
{"city": "New Orleans", location: {"lat": 29.95107 , "long": -90.07153}},
{"city": "Seattle", location: {"lat": 47.60621, "long": -122.33207}},
{"city": "Boston", location: {"lat": 42.35849, "long": -71.06010}}];
// normal svg setup
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
// read in US geometry
d3.json("us.json", function(error, topology) {
// limit to continental US
topology.objects.cb_2013_us_state_20m.geometries =
topology.objects.cb_2013_us_state_20m.geometries.filter(
function(d){if(["Alaska", "Hawaii", "Puerto Rico"].indexOf(d.id) == -1){return d}}
)
// attach path for US boundary
svg.append("path")
.datum(topojson.feature(topology, topology.objects.cb_2013_us_state_20m))
.attr("d", path);
// append cities
svg.append("g")
.attr("class", "cities")
.selectAll("circle")
.data(citiesData)
.enter().append("circle")
.attr("transform", function(d) {
return "translate(" + projection([
d.location.long,
d.location.lat
]) + ")"
})
.attr("r", 3);
});
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"cb_2013_us_state_20m":{"type":"GeometryCollection","bbox":[-179.14733999999999,17.884812999999998,179.77847,71.3525606439999],"geometries":[{"type":"MultiPolygon","id":"Alabama","arcs":[[[0]],[[1,2,3,4,5]]]},{"type":"Polygon","id":"Arkansas","arcs":[[6,7,8,9,10,11]]},{"type":"MultiPolygon","id":"California","arcs":[[[12]],[[13]],[[14]],[[15]],[[16]],[[17]],[[18]],[[19]],[[20,21,22,23]]]},{"type":"Polygon","id":"Connecticut","arcs":[[24,25,26,27]]},{"type":"MultiPolygon","id":"Florida","arcs":[[[28]],[[29]],[[30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41,42,-4]]]},{"type":"Polygon","id":"Georgia","arcs":[[43,44,45,46,-42,-3]]},{"type":"Polygon","id":"Idaho","arcs":[[47,48,49,50,51,52,53]]},{"type":"Polygon","id":"Illinois","arcs":[[54,55,56,57,58,59]]},{"type":"Polygon","id":"Indiana","arcs":[[60,61,62,63,-58]]},{"type":"Polygon","id":"Kansas","arcs":[[64,65,66,67]]},{"type":"MultiPolygon","id":"Kentucky","arcs":[[[68,-59,-64,69,70,71,72]],[[73,74]]]},{"type":"MultiPolygon","id":"Maryland","arcs":[[[75,76]],[[77]],[[78,79,80,81,82,83,84,85,86]]]},{"type":"MultiPolygon","id":"Massachusetts","arcs":[[[87]],[[88]],[[89]],[[90,91,92,93,94,95,-25,96]]]},{"type":"Polygon","id":"Minnesota","arcs":[[97,98,99,100,101]]},{"type":"MultiPolygon","id":"Mississippi","arcs":[[[102]],[[103]],[[104]],[[105]],[[-9,106,-6,107,108]]]},{"type":"Polygon","id":"Nebraska","arcs":[[109,110,111,-65,112,113]]},{"type":"Polygon","id":"New Jersey","arcs":[[114,115,116,117,118,119]]},{"type":"Polygon","id":"New Mexico","arcs":[[120,121,122,123,124]]},{"type":"MultiPolygon","id":"New York","arcs":[[[125]],[[126]],[[127]],[[128]],[[129,130,-97,-28,131,-118,132]]]},{"type":"MultiPolygon","id":"North Carolina","arcs":[[[133]],[[134]],[[135,136,137,138,139,-45,140]]]},{"type":"MultiPolygon","id":"Ohio","arcs":[[[141]],[[142]],[[143]],[[144]],[[145,146,147,148,-70,-63]]]},{"type":"Polygon","id":"Oregon","arcs":[[149,-54,150,-21,151]]},{"type":"Polygon","id":"South Carolina","arcs":[[-140,152,-46]]},{"type":"Polygon","id":"South Dakota","arcs":[[153,154,-101,155,-110,156]]},{"type":"Polygon","id":"Tennessee","arcs":[[157,-74,158,-73,159,-137,135,-141,-44,-2,-107,-8]]},{"type":"MultiPolygon","id":"Virginia","arcs":[[[160]],[[-82,161]],[[162,-76]],[[-72,163,-86,164,-84,165,-138,-160]]]},{"type":"MultiPolygon","id":"Washington","arcs":[[[166]],[[167]],[[168]],[[169]],[[170]],[[171]],[[172]],[[173]],[[174]],[[175]],[[-48,-150,176]]]},{"type":"Polygon","id":"West Virginia","arcs":[[-149,177,-87,-164,-71]]},{"type":"Polygon","id":"Montana","arcs":[[178,179,-154,180,-50]]},{"type":"Polygon","id":"Pennsylvania","arcs":[[181,-133,-117,182,-79,-178,-148]]},{"type":"MultiPolygon","id":"Wisconsin","arcs":[[[183]],[[184]],[[185]],[[186]],[[187,188,189,-56,190,-99]]]},{"type":"MultiPolygon","id":"Alaska","arcs":[[[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]],[[227]],[[228]],[[229]],[[230]],[[231]],[[232]],[[233]],[[234]],[[235]],[[236]],[[237]],[[238]],[[239]],[[240]],[[241]],[[242]],[[243]],[[244]],[[245]],[[246]],[[247]],[[248]],[[249]],[[250]],[[251]],[[252]],[[253]],[[254]],[[255]],[[256]],[[257]],[[258]],[[259]],[[260]],[[261]],[[262]],[[263]],[[264]],[[265]],[[266]],[[267]],[[268]],[[269]],[[270]],[[271]]]},{"type":"Polygon","id":"Arizona","arcs":[[-23,272,273,-125,274]]},{"type":"Polygon","id":"Colorado","arcs":[[275,-113,-68,276,-121,277]]},{"type":"MultiPolygon","id":"Delaware","arcs":[[[-120,278]],[[279]],[[-183,-116,280,-80]]]},{"type":"Polygon","id":"District of Columbia","arcs":[[-85,-165]]},{"type":"MultiPolygon","id":"Hawaii","arcs":[[[281]],[[282]],[[283]],[[284]],[[285]],[[286]],[[287]],[[288]]]},{"type":"Polygon","id":"Iowa","arcs":[[-100,-191,-55,289,-111,-156]]},{"type":"MultiPolygon","id":"Louisiana","arcs":[[[290]],[[-10,-109,291,292]]]},{"type":"MultiPolygon","id":"Maine","arcs":[[[293]],[[294]],[[295]],[[296]],[[297]],[[298]],[[299]],[[300]],[[301]],[[302]],[[303]],[[304]],[[305]],[[306]],[[307]],[[308]],[[309]],[[310]],[[311]],[[312]],[[313]],[[314,315]]]},{"type":"MultiPolygon","id":"Michigan","arcs":[[[316]],[[317]],[[318]],[[319]],[[320,-146,-62]],[[321]],[[322,-189]]]},{"type":"Polygon","id":"Missouri","arcs":[[-290,-60,-69,-159,-75,-158,-7,323,-66,-112]]},{"type":"Polygon","id":"North Dakota","arcs":[[324,-102,-155,-180]]},{"type":"Polygon","id":"Oklahoma","arcs":[[-277,-67,-324,-12,325,-122]]},{"type":"MultiPolygon","id":"Rhode Island","arcs":[[[326]],[[-94,327]],[[328]],[[329]],[[330]],[[-26,-96,331]]]},{"type":"Polygon","id":"Nevada","arcs":[[-151,-53,332,-273,-22]]},{"type":"Polygon","id":"New Hampshire","arcs":[[333,-316,334,-92,335]]},{"type":"MultiPolygon","id":"Texas","arcs":[[[336]],[[-326,-11,-293,337,-123]]]},{"type":"Polygon","id":"Utah","arcs":[[-52,338,-278,-274,-333]]},{"type":"Polygon","id":"Vermont","arcs":[[339,-336,-91,-131]]},{"type":"Polygon","id":"Wyoming","arcs":[[-157,-114,-276,-339,-51,-181]]},{"type":"MultiPolygon","id":"Puerto Rico","arcs":[[[340]],[[341]],[[342]],[[343]],[[344]],[[345]],[[346]],[[347]]]}]}},"arcs":[[[2531,2309],[1,1],[1,2],[1,1],[1,0],[1,2],[0,2],[0,2],[1,-5],[0,-2],[0,-1],[-1,0],[0,1],[-1,0],[-2,-1],[-2,-2],[0,-1],[-1,1],[1,0]],[[2534,3200],[0,2],[6,0],[3,0],[3,0],[1,-1],[1,0],[1,0],[1,0],[5,0],[1,0],[1,0],[2,0],[1,0],[1,0],[6,-1],[1,0],[3,-1],[1,0],[1,0],[3,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[13,0],[1,0],[0,-1],[6,0]],[[2606,3198],[0,-11],[1,-12],[0,-29],[1,-9],[0,-7],[0,-6],[0,-12],[1,-1],[0,-4],[0,-5],[1,-24],[0,-11],[0,-3],[0,-1],[0,-2],[1,-32],[1,-22],[0,-12],[1,-24],[0,-1],[0,-21],[1,-22],[0,-1],[0,-9],[1,-10],[1,-56],[0,-4],[1,-9],[0,-1],[1,-35],[1,-18],[0,-1],[0,-4],[1,-11],[0,-8],[0,-7],[1,0],[0,-1],[0,-3],[1,-5],[0,-3],[1,-3],[0,-2],[0,-1],[0,-7],[0,-5],[0,-6],[0,-6],[0,-8],[0,-2],[0,-1],[1,-4],[1,-4],[0,-3],[0,-6],[-1,-7],[-1,-2],[-2,-8],[0,-15],[0,-7],[0,-6],[0,-5],[-1,-4],[0,-5],[-1,-5],[0,-9],[0,-11],[0,-2],[0,-1],[0,-1],[0,-5],[0,-2],[0,-1],[0,-4],[1,-10],[1,-4],[0,-1],[1,-14],[-1,-5],[0,-16],[-1,-23],[0,-4],[0,-5],[0,-13],[0,-4],[0,-1],[1,-1],[1,-9],[0,-2],[0,-4],[1,-12],[0,-2]],[[2623,2453],[-1,0],[-1,0],[-2,0],[-1,0],[-9,-1],[-2,0],[-13,-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],[0,-4],[2,-7],[0,-5],[0,-3],[1,-4],[0,-1],[1,0],[0,-3],[1,-1],[1,-5],[0,-3],[0,-2],[0,-3],[0,-10],[-1,-5],[0,-6],[0,-4],[0,-5],[1,-2],[1,-1],[0,-3],[-1,-2],[0,-3],[-1,0],[0,-3],[-1,-5],[0,-4],[0,-2],[-1,-1],[0,-3],[0,-1],[2,1],[-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]],[[2528,2335],[0,26],[0,4],[0,2],[0,1],[0,14],[0,2],[0,1],[0,6],[0,7],[0,1],[0,3],[0,1],[-1,49],[0,1],[0,21],[0,22],[0,23],[0,12],[0,3],[-1,35],[0,14],[0,29],[0,8],[0,7],[1,20],[0,3],[0,22],[0,10],[0,15],[1,27],[0,24],[1,9],[1,56],[0,12],[1,56],[0,42],[1,4],[0,6],[0,1],[0,1],[0,1],[0,1],[0,1],[0,16],[0,3],[0,9],[1,31],[0,28],[1,5],[0,39],[0,1],[0,4],[1,11],[0,15],[0,22],[0,2],[1,25],[0,32],[0,1],[-2,18]],[[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],[5,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],[1,-7],[0,-1],[0,-3],[-1,1],[-1,2],[-1,-2],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[1,-1],[1,-1],[0,-1],[0,-1],[0,-2],[-1,-3],[-1,1],[-2,-10],[-1,-2],[0,1],[-1,2],[-1,-4],[0,-1],[0,-2],[0,-6],[0,-5],[1,-2],[0,-1],[1,1],[1,1],[0,-4],[-1,-2],[-2,-4],[0,-3],[0,-5],[1,-3],[0,-2],[0,-4],[-1,3],[0,2],[-1,4],[-1,-1],[0,-1],[-1,-1],[1,-12],[0,-4],[0,-6],[-1,-4],[0,-1],[0,4],[0,8],[-1,1],[-1,1],[0,-7],[0,-1],[-1,-2],[-1,-7],[1,-1],[0,-1],[1,0],[-1,4],[1,3],[1,-4],[0,-2],[0,-1],[-1,-13],[-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,-3],[-1,-2],[1,-6],[1,-4],[0,-1],[-1,-3],[-1,0],[0,3],[-1,-1],[0,-2],[-1,-11],[0,-6],[-3,2],[0,-5],[0,-3]],[[2475,3200],[1,-8],[1,-3],[0,-6],[-2,-5],[0,-1],[0,-2],[0,-1],[0,-2],[-1,0],[0,2],[-2,-4],[0,-1],[0,1],[-1,4],[0,3],[0,4],[-1,-3],[0,-5],[1,-6],[-1,-4],[0,-3],[1,-7],[-1,-3],[0,-1],[-1,2],[0,4],[1,3],[-1,2],[-1,-5],[0,-5],[0,-5],[2,0],[1,-3],[-1,-7],[-1,-4],[-1,7],[-1,3],[0,-4],[0,-3],[0,-4],[1,-8],[0,-6],[0,-4],[-1,-1],[0,-5],[0,-4],[1,-7],[-1,-4],[-1,-4],[-1,-3],[-3,-2],[0,-4],[1,-2],[0,-4],[-1,-5],[-1,0],[-1,-2],[0,-11],[0,-1],[-1,4],[-1,3],[-1,-2],[1,-5],[0,-3],[1,-2],[1,0],[1,-4],[-1,-4],[-1,3],[-1,2],[-1,-5],[0,-4],[1,-4],[0,-1],[1,1],[0,-3],[0,-3],[0,-6],[-1,-2],[-2,0],[0,-4],[-1,-3],[0,3],[-2,-5],[0,-3],[2,-4],[0,-2],[0,-1],[-1,-10],[0,-2],[0,-3],[0,-5],[1,-2],[1,-3],[-1,-4],[-2,1],[-1,2],[0,-1],[0,-5],[0,-4],[0,-4],[1,0],[1,2],[1,-5],[0,-3],[-1,-2],[-1,-1],[-1,2],[0,3],[-1,4],[-1,-1],[-1,-3],[0,-4],[1,-1],[1,-2],[1,-4],[0,-4],[0,-2],[-1,-2],[-2,-3],[0,-2],[0,-1],[1,-4],[2,-11],[0,-4],[0,-4],[0,-3],[0,-6],[0,-4],[0,-5],[0,-7],[1,-9],[0,-5],[0,-14],[0,-3],[-1,0],[-1,2],[-1,0],[0,-4],[1,-4],[0,-2],[1,-2],[0,-3],[0,-4],[-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]],[[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,24],[0,11],[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]],[[1687,2916],[0,-1],[1,0],[1,-1],[1,-3],[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]],[[1687,2832],[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],[0,2],[-1,7],[0,3],[-1,2],[0,7],[0,2],[0,-1],[0,3]],[[1663,3016],[1,1],[0,-2],[1,0],[0,2],[1,0],[-1,-1],[0,-2],[-1,1],[-1,1]],[[1659,2879],[1,-2],[0,1],[0,1],[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]],[[1650,3028],[1,-1],[1,0],[1,-2],[0,-1],[0,-1],[1,1],[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]],[[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]],[[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]],[[1581,3730],[1,0],[0,-1],[0,-2],[0,-1],[0,1],[-1,2],[0,1]],[[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],[4,-17],[0,-2],[6,-33],[3,-18],[5,-26]],[[1797,3201],[0,-2],[0,-1],[0,-15],[0,-3],[0,-3],[0,-1],[2,-19],[3,-14],[0,-7],[3,-38],[3,-9],[1,-8],[1,-2],[1,-9],[0,-8],[-1,-1],[-1,-10],[-1,-4],[-2,-6],[0,-1],[-1,-4],[-1,-2],[0,1],[-1,-1],[0,-1],[0,-3],[0,-1],[0,-8],[0,-3],[-1,-6],[-1,-5],[-1,-9],[0,-14],[0,-7],[1,-9],[0,-9],[0,-2],[-1,-2],[0,-1],[0,-17],[0,-2],[0,-2],[-1,-7],[-1,-7],[0,-7],[-1,-4],[-1,-4],[-1,-3],[0,-11],[1,-15],[0,-14],[0,-4],[0,-4],[-1,-2],[0,-5],[0,-2],[1,-8],[2,-4],[1,0],[0,1],[0,1],[1,-2],[1,-1],[1,-10],[0,-12],[0,-5],[-1,-11],[-3,-17],[-1,1],[-1,0],[-1,-3]],[[1795,2774],[-21,-10],[-11,-5],[-7,-4],[-8,-4],[-20,-11],[0,7],[0,2],[0,2],[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],[-1,15],[0,4],[0,8],[0,3],[-1,5],[-1,9],[-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],[0,1],[-1,5],[-1,5],[0,1],[0,1],[-1,4],[-1,3],[-1,2],[-1,1],[0,3],[-2,6],[0,4],[-1,7],[-1,3],[0,1],[-1,2],[0,2],[-1,1],[-1,0],[0,-2],[0,-3],[0,-3],[-1,-1],[-1,-2],[0,1],[-1,0],[0,1],[-1,2],[0,2],[-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],[-2,8],[0,1],[-1,3],[0,3],[-1,7],[0,4],[0,3],[0,1],[0,2],[-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],[-1,1],[-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,9],[0,5],[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,2],[0,7],[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],[1,-4],[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,-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]],[[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],[2,0],[5,-1],[3,0],[5,0],[2,-1],[1,0],[1,0],[5,-1],[2,0],[1,-3]],[[2991,4511],[0,-31],[0,-6],[0,-16],[0,-16],[0,-8],[0,-9],[0,-24],[-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],[-1,-1],[0,1],[-1,-1],[0,-1],[0,1],[-1,0],[0,-2],[0,-1],[0,-1],[-1,-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,5],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,-3],[0,-1],[0,-2],[0,-2],[0,-1],[-1,1],[-1,-1],[0,-2],[-1,-4],[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],[1,2],[1,5],[0,1],[4,10],[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,30],[0,42]],[[2744,1313],[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],[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]],[[2741,1300],[0,3],[0,1],[1,1],[0,3],[1,1],[0,-1],[-1,-2],[0,-1],[-1,-5]],[[2738,1294],[0,1],[1,1],[0,2],[1,3],[0,-3],[0,-1],[0,-2],[-1,1],[-1,-2]],[[2731,1276],[0,1],[1,2],[1,3],[0,1],[0,-1],[1,-1],[0,2],[1,1],[0,3],[2,3],[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]],[[2726,1267],[1,3],[0,-1],[-1,-3],[0,1]],[[2724,1285],[1,0],[0,1],[0,1],[0,-2],[1,0],[0,-4],[0,-3],[0,-1],[0,3],[-1,0],[-1,3],[0,2]],[[2712,1249],[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],[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]],[[2702,1249],[0,2],[0,4],[1,0],[0,-1],[1,-1],[0,-2],[-1,-2],[0,-3],[-1,0],[0,1],[0,2]],[[2699,1648],[0,1],[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]],[[2683,1907],[0,1],[0,-1],[0,-3],[1,-2],[0,-3],[0,-5],[-1,-1],[0,-1],[1,-2],[0,-3],[-1,-2],[0,1],[0,9],[0,2],[0,3],[0,2],[0,1],[0,2],[0,2]],[[2682,1258],[0,3],[0,2],[0,1],[1,1],[0,-1],[0,-6],[-1,-3],[0,-1],[0,1],[0,3]],[[2620,2196],[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],[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]],[[2617,2206],[1,0],[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]],[[2623,2453],[0,-6],[0,-6],[1,-5],[0,-4],[2,-26],[1,-7],[7,-2],[2,-1],[4,-1],[3,-1],[5,-2],[1,0],[1,0],[0,-1],[4,-1],[1,0],[1,0],[0,-1],[2,0],[2,-1],[1,-1],[5,-1],[1,0],[1,-1],[1,0],[1,-1],[3,-1],[1,0],[1,-1],[7,-2],[5,-2],[0,-1],[3,-1],[1,0],[1,0],[2,-1],[1,-1],[1,0],[2,-1],[1,0],[0,-1],[1,0],[0,-13],[1,-8],[-1,-6],[1,-4],[0,-5],[1,-3],[1,1],[2,-1],[1,26],[0,4],[0,8],[0,6],[-1,7],[0,4],[0,4],[1,20],[0,1],[3,6],[1,-5],[1,-1],[1,0],[1,-3],[1,-2],[0,-2],[0,-1],[2,-2],[1,0],[0,-3],[2,-1],[3,-1]],[[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],[2,-30],[1,-7],[1,-8],[0,-6],[1,-4],[2,-26],[2,-15],[0,-7],[2,-15],[1,-8],[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],[1,-21],[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,-19],[0,-2],[0,-11],[0,-6],[0,-8],[0,-4],[0,-5],[-1,-4],[0,-3],[0,-1],[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,-1],[0,-1],[0,-6],[-2,-3],[-1,-3],[-2,-2],[-2,-3],[0,-2],[-1,-4],[-3,0],[0,3],[-1,0],[0,-2],[-1,1],[0,-1],[-1,-2],[0,-2],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,-2],[0,1],[-1,0],[-1,-2],[0,1],[-1,4],[0,1],[-1,1],[0,1],[0,4],[0,2],[0,3],[-1,2],[0,5],[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],[-1,8],[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,-2],[1,-2],[0,-2],[1,-1],[1,0],[0,-1],[0,-3],[0,-3],[2,2],[0,-5],[-1,0],[0,-3],[0,-1],[0,-4],[-1,-3],[0,-2],[0,-2],[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,4],[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,6],[0,10],[0,4],[1,4],[0,10],[0,4],[-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],[-1,1],[-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]],[[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]],[[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],[1,-4],[1,-1],[1,-1],[0,-2],[1,-2],[1,-3],[0,-3],[0,-1],[0,-1],[1,-7],[2,-14],[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],[0,-16],[1,-2],[0,-4],[0,-1],[1,-7],[0,-4],[0,-2],[0,-9],[0,-12],[0,-8],[0,-1],[1,-5],[1,-1],[4,-9]],[[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]],[[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]],[[1758,5819],[0,-8],[0,-85],[0,-54],[0,-26],[0,-1],[0,-1],[0,-16],[1,-6],[2,-17],[1,-2],[1,0],[0,-4],[0,-5],[0,-2],[1,-6],[1,1],[0,-3],[0,-2],[0,-2],[1,-1],[1,-3],[0,-1],[0,-7],[0,-3],[0,-2],[1,-2],[0,-2],[0,-3],[-1,-1],[0,-2],[-1,-5],[0,-3],[2,-1],[-1,-2],[1,-3],[0,-3],[1,-2],[0,1],[0,-3],[0,-2],[-1,0],[-1,-2],[-1,-1],[0,-3],[1,0],[1,-2],[1,-2],[0,-5],[1,2],[1,-4],[0,-2],[1,-4],[0,-6],[2,-3],[1,-2],[3,-2],[0,-1],[1,-7],[0,-2],[1,-5],[1,-8],[1,-1],[2,-16],[1,-7],[3,-15],[1,-6],[0,-6],[0,-6],[0,-1],[1,-4],[1,-2],[1,-3],[1,0],[1,-8],[-1,-5],[1,-3],[0,4],[1,-1],[0,3],[1,2],[1,-1],[0,-4],[1,-2],[-1,-3],[0,-1],[0,-1],[0,-3],[1,-4],[0,-1],[2,3],[1,-3],[1,1],[0,2],[1,2],[2,2],[1,-2],[0,-2],[0,-3],[0,-5],[-1,-13],[0,-4],[0,-1],[-1,-2],[0,-6],[0,-6],[0,-4],[-1,-5],[0,-4],[0,-14],[-1,-4],[0,-7],[0,-11],[0,-2],[-1,1],[-1,-3],[0,-4],[2,-3],[0,-2],[0,-4],[0,-4],[-1,-3],[0,-2],[0,-2],[0,-3],[1,-2],[1,-2],[0,-1],[1,-3],[-1,-6],[1,-7],[0,-3],[0,-4],[-2,0],[-1,-1],[0,-1],[0,-1],[-2,-12],[1,-6],[0,-2],[1,-2],[0,-2],[0,-2],[0,-7],[0,-2],[-1,-2],[-1,-1],[0,-14],[1,-1],[1,1],[1,0],[3,-13],[0,-5],[1,1],[2,14],[2,-1],[1,3],[3,17],[0,6],[0,2],[0,1],[1,2],[1,-1],[0,-3],[1,-1],[1,-7],[1,-6],[1,-2],[0,-2],[0,-2],[0,-5],[0,-4],[1,-2],[0,-1],[0,-6],[0,-3],[1,-11],[0,-15],[2,-15],[1,-2],[1,-8],[1,-8],[0,-1],[0,-2],[0,-1],[2,-12],[1,-1],[0,1],[0,-4],[0,-5],[0,-7],[0,-1],[0,-5],[-1,1],[0,-1],[0,-1],[0,-9],[1,-5],[3,-14],[0,-1],[1,0],[1,5],[1,2],[1,-3],[1,-5],[1,-3],[1,-9],[1,-15],[0,-1],[0,-2],[0,-1],[1,-22],[1,-9],[1,-4],[2,-10],[1,-1],[0,2],[1,1],[0,1],[0,3],[0,3],[0,2],[0,3],[1,6],[2,4],[0,-1],[4,-3],[2,0],[2,-4],[1,0],[0,2],[1,3],[0,1],[0,5],[0,4],[1,3],[1,1],[1,0],[0,-1],[0,-1],[0,-2],[1,-1],[3,0],[4,4],[2,1],[1,-4],[0,-2],[1,-3],[2,5],[1,4],[2,-2],[1,0],[1,0],[1,-3],[2,1],[-2,6],[0,6],[0,7],[1,12],[2,8],[1,0],[1,-5],[3,-19],[3,-19],[0,-4],[0,-1],[0,-1],[2,-3]],[[1897,4972],[0,-6],[0,-1],[0,-69],[0,-1],[0,-14],[0,-32],[0,-16],[0,-1],[0,-7],[0,-1],[0,-4],[0,-29],[0,-35],[0,-23],[0,-1],[0,-1],[0,-1],[0,-20],[0,-1],[0,-1],[0,-1],[0,-2],[0,-3],[0,-1],[0,-1],[0,-8],[0,-1],[0,-1],[0,-84],[0,-31],[0,-13],[0,-16],[0,-2],[0,-6],[0,-2],[0,-26]],[[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,7],[-1,5],[0,7],[1,2],[1,9],[0,1],[0,1],[0,2],[0,1],[-1,3],[-1,1],[0,8],[0,1],[-1,0],[-1,0],[0,-1],[0,-2],[-1,3],[0,2],[-1,4],[0,-1],[0,-2],[-1,-1],[-1,3],[-1,2],[0,3],[0,2],[1,1],[0,2],[0,2],[-1,10],[0,7],[0,7],[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]],[[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,2],[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]],[[2545,4602],[0,-4],[0,-10],[0,-6],[-1,-4],[0,-1],[0,-3],[0,-2],[0,-6],[0,-6],[0,-7],[1,-4],[1,-11],[0,-4],[1,-4],[0,-2],[1,-4],[0,-3],[0,-1],[0,-1],[0,-4],[1,-13],[0,-3],[0,-2],[1,-5],[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],[0,-6],[-1,-5],[0,-6],[-1,0],[0,-1],[0,-3],[0,-3],[1,-3],[1,-9],[0,-13],[2,-6],[0,-6],[-1,-2],[0,-3],[0,-6],[0,-1],[0,-1],[0,-1],[1,-6],[0,-6],[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],[-1,1],[-1,-1],[0,-2],[-1,-4],[0,-3],[0,-2],[0,-4],[1,-5],[1,0],[0,-2],[-1,-4],[0,-2],[-1,-1],[-1,-4],[0,-3],[1,1],[0,-3],[0,-4],[-2,-2],[0,-1],[1,-3],[-1,-3],[1,-6],[-1,-3],[0,-6],[1,-3],[0,-3],[0,-1],[-1,0],[-1,1],[0,-1],[0,-5],[1,-3],[0,-3],[-1,0],[0,-3],[0,-3],[1,0]],[[2538,3724],[0,-7],[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,8],[-1,3],[-1,5],[0,1],[-1,-5],[1,-4],[-1,-5],[-1,3],[-1,6],[0,1],[0,2],[0,8],[-1,5],[-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],[1,-1],[0,1],[0,1],[0,3],[-1,4],[0,2],[0,6],[0,4],[0,1],[-2,3],[0,4],[-1,3],[0,-1],[-1,1],[0,2],[0,5],[0,3],[-2,4],[0,4],[-2,1],[0,1],[0,4],[-1,5],[-1,-2],[0,-3],[-1,-2],[0,1],[-1,0],[0,2],[-1,6],[0,2],[2,5],[-1,3],[-1,-1],[-3,10],[0,1],[-1,4],[0,3],[-1,3],[0,-1],[-1,3],[-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],[1,4],[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],[-4,7],[-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]],[[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],[3,6],[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,-15],[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]],[[2628,3968],[-1,0],[-1,-7],[0,-2],[0,-3],[0,-2],[1,-5],[1,-6],[-1,-6],[-1,-3],[0,-3],[0,-1],[1,0],[1,-1],[1,-2],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-3],[0,-3],[0,-5],[0,-2],[-1,-1],[0,1],[-1,1],[-2,-3],[-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],[-1,-2],[-1,-1],[-2,2],[0,-1],[0,-1],[-1,-4],[0,-3],[1,-6],[0,-9],[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,-11],[0,-2],[0,-1],[-1,-1],[-1,-2],[-1,-1],[0,-6],[-1,3],[0,5],[-1,3],[-2,-1],[-1,3],[-2,5],[0,2],[0,4],[0,3],[0,5],[0,5],[-1,2],[0,-1],[-1,-1],[0,-5],[-1,-1],[0,-3],[-1,-2],[0,-6],[0,-1],[-1,-2],[0,-1],[-1,0],[-1,-1],[0,-2],[0,-12],[1,-6],[-2,-2],[-1,-5],[0,-7],[-1,-2],[0,-1],[0,5],[0,4],[0,4],[-1,1],[-1,-3],[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],[0,8],[-2,2],[-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]],[[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,-12],[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]],[[2355,3574],[-2,1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-4,0],[-1,0],[-1,0],[-2,0],[-1,0],[-4,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],[-1,0],[-1,0],[-1,0],[-4,0],[-1,0],[-1,0],[-1,0],[-4,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],[-1,0],[-1,0],[-1,0],[-6,0],[-2,-1],[-1,0],[-1,1],[-1,-1],[0,1],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,-1],[-6,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-3,0],[-2,0],[-4,1],[-4,0],[-2,0],[-1,0],[-2,0],[-3,0],[-1,0],[-3,0],[-3,0],[-1,0],[-5,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-3,0],[-6,0],[-3,0],[-2,0],[-1,0],[-9,0],[-2,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,-1],[-1,0],[0,1],[0,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-4,0],[-4,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-8,0],[-3,-1],[-1,0]],[[2148,3573],[0,6],[0,1],[0,1],[0,14],[0,1],[0,2],[0,3],[0,22],[0,7],[0,3],[0,8],[0,7],[0,3],[0,5],[0,7],[0,6],[0,6],[0,1],[0,3],[0,9],[0,7],[0,2],[0,2],[0,3],[0,8],[0,3],[0,4],[0,5],[0,3],[0,4],[0,8],[0,11],[0,61],[0,2],[0,1],[0,8],[0,14],[0,22],[0,4],[0,3],[0,3],[0,5],[0,6],[0,10],[0,1],[0,2],[0,1],[0,1],[0,11],[0,3],[0,2],[0,3],[0,3],[0,44],[0,15],[0,1],[0,31],[0,14],[0,5],[0,3],[0,1],[0,15],[0,6],[0,1],[0,5],[0,1],[0,4],[0,15],[0,27],[0,3],[0,1],[0,2],[0,28]],[[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]],[[2690,3841],[0,-1],[0,-1],[0,-6],[0,-1],[0,-11],[0,-10],[0,-2],[0,-1],[-2,-15],[1,-5],[0,-3],[1,-1],[1,-11],[0,-4],[1,-6],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[-1,-5],[0,-2],[1,-5],[2,-7],[0,-4],[2,-14],[0,-3],[0,-4],[0,-1],[1,-5],[0,-4],[1,-5],[1,-3],[2,-9],[1,-3],[0,-1],[0,-3],[2,-5],[1,0],[0,2],[1,-1]],[[2707,3675],[-9,-42],[0,-2],[-1,-6],[-5,-9],[-1,-4],[0,-1],[-2,-6],[-3,-11],[0,-4],[0,-7],[-1,-5],[-1,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-5],[-2,-3],[-3,0],[0,-6],[-1,-8],[0,-3],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,0],[-4,-7],[0,-1],[-3,-6],[-1,1],[-1,-1],[-4,-9],[0,-3]],[[2660,3500],[0,-1],[-1,-2],[-6,1],[-2,0],[-7,0],[-1,0],[-14,3],[-2,0],[-4,2],[-3,1],[-5,1],[-4,-2],[-1,0],[-1,0],[-2,0],[-6,1],[-5,1],[-2,1],[-1,0],[-4,1],[0,1],[-3,1],[-3,0],[-1,1],[-3,-4],[-1,4],[-4,-1],[-2,0],[-1,0],[-1,0],[-5,-1],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-4,-1],[-2,0],[-1,0],[-5,-1],[0,6],[-4,2],[-2,1],[0,-4],[1,-4],[0,-7],[0,-7],[0,-4],[0,-5],[0,-1],[0,-2],[-8,0],[-2,0],[-1,0],[-1,0],[-1,1],[0,-1],[-1,1],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0]],[[2498,3481],[-1,0],[-1,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]],[[2874,3753],[-1,0],[-1,0]],[[2872,3753],[0,6],[0,6],[0,2],[0,1],[1,1],[1,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-5],[0,-3],[0,-1]],[[2871,3785],[0,1],[0,2],[0,2],[0,8],[1,2],[1,-5],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-4],[0,-1],[-1,1],[0,4],[0,2],[0,1],[0,1],[0,1],[-1,-1],[0,-1],[0,2]],[[2777,4084],[2,0],[5,0],[8,0],[3,0],[12,0],[1,0],[1,0],[1,0],[1,0],[1,0],[3,0],[1,0],[8,0],[1,0],[2,0],[4,-1],[2,0],[6,0],[1,0],[4,0],[2,0],[2,0],[1,0],[2,1],[1,0],[2,0],[4,0],[1,0],[1,0],[2,0],[1,0],[4,0],[3,0],[3,0],[6,0]],[[2879,4084],[0,-4],[0,-4],[0,-8],[0,-1],[1,-48],[0,-15],[0,-9],[1,-19],[0,-5],[0,-1],[0,-46],[0,-4],[0,-2],[0,-1],[0,-2],[1,-34],[0,-2],[0,-1],[0,-1],[0,-5],[0,-1],[0,-4],[0,-4],[0,-4],[0,-4],[0,-1],[0,-6],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[2,0],[2,0],[1,0],[2,0],[1,0]],[[2900,3846],[0,-7],[0,-4],[-1,-7],[0,-6],[-1,-2],[0,-7],[-1,-10],[0,-7],[-1,-10],[0,-6],[-1,-7],[0,-6]],[[2895,3767],[-5,-3],[-1,0],[-5,-3],[-1,-8]],[[2883,3753],[0,1],[0,1],[-1,1],[-1,1],[0,-1],[0,-1],[-1,1],[0,1],[-2,-7],[0,-1],[-1,-3],[0,-1],[-1,1],[0,2],[0,1],[1,4],[-1,4],[1,5],[0,2],[0,3],[0,1],[0,1],[1,0],[0,-1],[0,2],[1,3],[0,1],[-1,1],[-1,-1],[0,-1],[0,3],[0,5],[1,2],[0,4],[0,2],[-1,-1],[0,-1],[-1,1],[-1,-3],[0,-3],[0,1],[0,1],[0,3],[0,5],[0,1],[0,1],[0,1],[0,2],[2,3],[0,-1],[1,2],[0,3],[-1,2],[0,1],[0,-2],[0,-1],[-1,0],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[-1,-1],[0,2],[1,1],[0,1],[-1,2],[0,2],[0,2],[-1,4],[0,1],[1,1],[0,1],[1,2],[0,2],[-1,4],[-1,2],[0,-1],[0,-2],[0,-1],[0,-4],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[1,-3],[0,-2],[-1,-5],[0,-1],[0,-1],[1,-2],[0,-3],[-1,2],[0,2],[-1,3],[-1,2],[1,3],[-1,1],[0,-1],[-1,1],[0,1],[0,-1],[-1,-1],[1,-3],[0,-3],[1,-1],[0,-1],[0,-1],[-1,1],[0,2],[-1,4],[0,2],[0,4],[-1,2],[-1,1],[0,4],[0,2],[0,-1],[1,1],[0,3],[-1,0],[0,5],[0,2],[0,2],[-1,5],[0,4],[-1,2],[0,4],[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],[-1,2],[0,1],[1,3],[0,2],[0,2],[0,1],[1,2],[0,-2],[1,-2],[0,1],[0,2],[1,1],[0,1],[0,1],[0,4],[0,3],[-1,0],[0,-1],[0,2],[-1,6],[0,1],[0,1],[0,2],[-1,0],[0,-2],[0,-2],[-1,1],[0,1],[0,1],[-1,-3],[0,-2],[1,-2],[0,-2],[-1,-2],[0,3],[0,8],[0,4],[0,4],[0,1],[1,4],[0,3],[0,2],[0,1],[0,-1],[1,1],[0,1],[0,3],[0,-1],[1,-4],[0,-2],[1,0],[0,1],[0,2],[0,3],[0,1],[0,2],[0,4],[0,2],[0,6],[0,2],[-1,1],[0,-1],[0,-2],[0,-1],[-1,0],[0,1],[0,1],[0,2],[-1,-3],[0,-1],[0,-2],[0,-1],[0,-1],[0,2],[-1,0],[0,-1],[0,-2],[0,-2],[0,-4],[0,-1],[-1,-1],[0,-3],[0,1],[0,2],[0,4],[0,6],[0,6],[1,4],[1,8],[0,1],[-1,0],[1,3],[0,2],[0,1],[0,-1],[0,-1],[0,-5],[1,-4],[0,1],[1,-1],[0,-2],[1,1],[1,5],[0,2],[0,1],[0,3],[-1,2],[1,3],[0,1],[0,3],[0,2],[-1,1],[0,-2],[0,-4],[0,-5],[0,-3],[0,-2],[-1,1],[0,2],[0,2],[0,1],[0,3],[0,4],[0,2],[-1,8],[0,2],[0,4],[0,3],[0,2],[1,1],[0,6],[0,6],[1,1],[0,3],[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,2],[0,2],[2,0],[1,-1],[0,-1],[0,1],[0,2],[0,2],[-1,0],[0,1],[1,2],[0,1],[0,1],[1,3],[0,1],[0,2],[0,3],[0,-1],[-1,-1],[0,4],[1,1],[0,2],[0,4],[0,4],[0,1],[0,3],[0,1],[0,1],[-1,-2],[-1,-1],[-1,-1],[0,-1],[-1,-7],[0,-2],[1,-2],[1,-5],[0,-1],[-1,-2],[0,1],[0,-1],[-1,-1],[0,-1],[-1,-3],[0,-3],[-1,-3],[-1,-5],[0,1],[0,1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[-1,0],[0,3],[0,2],[0,2],[0,2],[0,1],[-1,1],[0,-1],[0,-4],[0,-2],[0,-2],[0,-2],[0,2],[-1,0],[0,-2],[0,-5],[-1,-1],[0,-2],[1,-2],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-3],[-1,-2],[0,2],[-1,0],[0,1],[-1,3],[0,-2],[0,-1],[0,-1],[0,-3],[0,-2],[0,-2],[1,-1],[0,1],[0,-1],[0,-1],[1,-2],[1,-3],[-1,-1],[0,-2],[1,-6],[0,-1],[-1,-4],[1,-4],[0,-2],[1,-2],[-1,-4],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-2],[1,-2],[0,-1],[0,-3],[0,-2],[0,-2],[-1,0],[0,1],[0,1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-4],[0,-2],[0,-1],[1,1],[0,-2],[0,-4],[-1,-3],[0,-2],[0,-1],[0,-2],[-1,-2],[0,-4],[0,-2],[0,-1],[1,0],[0,-1],[0,-2],[0,-2],[0,-4],[0,-6],[0,-4],[0,-2],[0,-5],[0,-6],[0,-3],[0,-2],[0,-5],[1,-4],[1,-6],[0,-2],[0,-1],[1,-4],[0,-3],[1,-1],[0,-1],[0,-1],[0,-4],[-1,-3],[0,-3],[0,-2],[0,-1],[1,-2],[0,-1],[0,-3],[-1,-2],[0,-2],[1,-8],[0,-4],[1,-3],[0,-4],[1,-3],[-1,-4],[0,-2],[0,-2],[0,-5],[1,-5],[0,-1],[-1,1],[0,1],[0,1],[-1,1],[0,4],[0,4],[-1,1],[0,-1],[0,1],[0,2],[0,1],[-1,3],[-1,-4],[0,-1],[1,0],[0,-1],[-1,-1],[0,2],[0,4],[-1,1],[0,-1],[-1,3],[0,3],[0,2],[0,2],[0,2],[-1,3],[-1,2],[-1,2],[-1,-1],[-1,1],[0,-3],[-1,1],[-1,2],[0,3],[0,5],[0,4],[-1,0],[0,-1],[0,-1],[0,-3],[0,-2],[0,-2],[0,1],[-1,2],[0,2],[-1,2],[0,4],[0,1],[0,1],[-1,1],[0,1],[-1,3],[0,3],[0,6],[0,2],[0,3],[-1,4],[-1,0],[0,-4],[-1,-2],[0,-1],[-1,1],[0,-2],[0,-2],[-2,-5],[0,-1],[0,1],[-1,3],[-1,6],[0,3],[0,1],[0,9],[0,6],[1,7],[0,1],[2,8],[0,1],[1,2],[0,1],[0,2]],[[2842,3880],[0,3],[0,5],[0,2],[1,2],[0,2],[1,1],[0,7],[0,3],[1,4],[0,1]],[[2845,3910],[1,5],[1,7],[0,1],[1,4],[0,2],[-2,13],[-1,1],[0,1],[0,3],[-1,1],[0,-2],[-1,-7],[-1,-3]],[[2842,3936],[0,4],[0,2],[-1,1],[-1,0],[-1,0],[0,1],[0,2],[0,3],[0,2],[-1,2],[0,2],[0,2],[-1,3],[-1,1],[-1,-1],[-1,1],[-1,2],[-2,8],[0,2],[0,3],[0,5],[0,1],[1,1],[0,1],[1,6],[0,1],[-1,4],[-1,1],[0,2],[0,1],[-1,1],[0,2],[-1,3],[-2,3],[-1,1]],[[2826,4009],[-1,0],[0,2],[-1,1],[0,1],[1,8],[-1,8],[-1,11],[0,1],[-1,1],[0,3],[-1,8],[0,1],[1,1],[1,4],[-1,2],[-1,2],[0,-2],[-1,1],[0,-1],[0,-2],[-1,-1],[0,5],[-1,-2],[0,1],[-1,3],[0,3],[-1,5],[-1,3],[-1,2],[-1,1],[-1,-1],[0,-5],[-2,-8],[-1,2],[-1,1],[0,1],[-2,-4],[-1,-6],[0,-2],[0,-1],[1,-2],[0,-4],[-1,-5],[-3,1],[-2,3],[-1,0],[0,1],[0,1],[-2,7],[-1,1],[0,1],[0,1],[1,2],[-1,3],[-1,-7],[-2,-13],[-2,-15],[-2,5],[0,2],[-1,0],[0,-1],[-4,-17],[0,-2],[-1,-3],[-1,-3],[-3,-12],[0,-4],[-3,-9],[0,11],[0,3],[0,45],[0,1],[1,1],[0,36]],[[3033,4381],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[2,0],[1,0],[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]],[[3017,4436],[1,-1],[0,-2],[0,-1],[-1,2],[0,2]],[[3017,4389],[1,0],[1,-1],[0,1],[1,8],[1,2],[0,1],[0,3],[1,2],[1,4],[1,4],[0,-2],[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]],[[2950,4649],[3,0],[3,-1],[1,0],[2,0],[2,0],[10,-2],[1,0]],[[2972,4646],[1,-1],[4,0],[2,-1],[4,0],[4,-1],[1,0],[2,-1],[5,0],[10,-2],[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,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-5],[0,-1],[0,1],[-1,1],[0,-1],[0,-1],[-1,-3],[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,-2],[0,-3],[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,-2],[1,-4],[1,-2],[1,-3],[1,-1],[3,-1],[0,-1],[0,-1],[0,-2],[1,4],[1,2],[0,1],[1,0],[1,2],[1,1],[1,1],[1,3],[0,3],[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],[0,4],[-1,5],[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,-5],[1,-4],[0,-4],[1,-7],[0,-12],[0,-7],[1,-13],[0,-9],[0,-4],[-1,-5],[0,-1],[0,-1],[0,-1],[-1,-4],[0,-4],[0,-5],[0,-3],[-1,0],[0,1],[0,1],[1,2],[0,3],[0,6],[0,6],[0,1],[0,1],[0,3],[-1,0],[-1,-1],[-1,0],[-1,-3],[-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,-3],[0,-3],[-1,-3],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,-2],[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],[-1,5],[0,1],[0,1],[0,1],[-1,-2],[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,27],[0,3],[0,1],[-1,0],[0,1],[0,1],[-1,0]],[[3007,4449],[0,1],[0,6]],[[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]],[[2943,4519],[0,7],[3,50],[0,13],[1,16],[2,23],[1,21]],[[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],[1,1],[0,-3],[6,-14],[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],[0,-2],[-1,-6],[1,-8],[1,-6],[1,-10],[0,-4],[2,3],[1,2],[0,6],[-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,2],[0,-2],[0,-3],[0,-7],[2,5],[1,-1],[0,-3],[3,5],[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],[-3,-6],[0,-1],[0,-2],[0,-1],[1,-1],[0,-2],[-1,-5],[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,-13],[0,-9],[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]],[[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]],[[2525,2306],[1,-2],[1,-1],[0,1],[0,1],[1,0],[0,-1],[-1,-1],[0,-1],[-2,2],[0,1],[0,1]],[[2518,2312],[1,0],[0,1],[2,-4],[2,-2],[1,1],[-1,-1],[-1,1],[-1,0],[-2,3],[0,-1],[-1,0],[0,1],[0,1]],[[2512,2305],[1,1],[1,1],[0,1],[0,2],[1,1],[-1,-3],[0,-1],[-1,-2],[-1,-1],[0,1]],[[2507,2309],[2,0],[0,3],[1,0],[0,-1],[-1,-4],[0,-4],[-1,4],[-1,2]],[[2475,3200],[11,0],[1,0],[1,0],[1,0],[1,0],[1,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]],[[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]],[[2497,2299],[-2,0],[0,1],[-1,6],[-1,13],[0,1],[0,2],[1,4],[0,3],[-2,21],[0,1],[-1,7],[-1,4],[-1,11],[-1,6],[0,11],[0,13],[1,22],[1,9],[1,4],[0,9],[0,6],[0,1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-3,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-6,-1],[-1,0],[-2,1],[-2,0],[-5,-1],[-3,1],[-3,0],[1,3],[1,2],[0,3],[0,2],[0,1],[0,1],[0,2],[-2,8],[1,7],[0,4],[0,2],[0,3],[-1,6],[-1,3],[1,3],[2,-1],[1,2],[0,1],[0,2],[0,5],[0,2],[0,2],[0,3],[-1,5],[0,5],[0,3],[1,-8],[1,-3],[1,2],[-1,5],[0,3],[0,3],[-1,1],[0,2],[0,13],[0,2],[1,0],[1,2],[0,1],[1,1],[0,2],[0,1],[0,2],[-1,0],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,2],[1,1],[0,1],[1,0],[0,1],[1,3],[-1,6],[1,4],[0,5],[0,2],[0,1],[0,2],[0,4],[1,3],[0,8],[0,2],[1,1],[1,-3],[0,1],[1,4],[1,9],[1,10],[1,3],[1,3],[0,7],[0,7],[2,5],[0,2],[0,2],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,-1],[-2,-1],[-1,2],[0,2],[0,2],[0,4],[0,4],[1,3],[2,5],[1,0],[0,-1],[0,-2],[0,-2],[1,4],[0,11],[2,-1],[0,5],[0,2],[0,2],[-2,2],[0,2],[-1,2],[1,6],[1,3],[0,4],[-1,2],[-1,-3],[-1,1],[0,1],[-1,2],[0,3],[-1,2],[0,3],[1,4],[1,2],[0,4],[0,2],[0,2],[0,1],[0,2],[-1,2],[-1,-3],[0,2],[0,2],[-1,2],[0,3],[0,2],[1,6],[1,2],[1,1],[0,2],[0,2],[0,2],[0,1],[-1,1],[-1,2],[-1,0],[0,1],[0,7],[0,5],[0,1],[1,4],[0,3],[1,0],[0,3],[1,3],[0,3],[0,4],[-1,9],[0,2],[0,1],[-1,-1],[0,-1],[0,-2],[0,-1],[0,-8],[0,-1],[0,-2],[-1,-1],[-1,1],[0,2],[0,1],[0,2],[0,5],[1,8]],[[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,-1],[0,-3],[1,-4],[0,-1],[1,-1],[1,-3],[0,-2],[2,0],[1,-2],[1,0],[0,-1],[1,-3],[-1,-3],[1,0],[1,2],[3,-5],[0,-1],[0,-1],[0,-5],[1,-1],[1,0],[1,-2],[0,-2],[0,-4],[0,-2],[0,-2],[0,-5],[1,-1],[0,-2],[1,-3],[0,-3],[0,-2],[0,-2],[1,0],[1,3],[1,-2],[0,-2],[0,-3],[1,0],[1,1]],[[2304,4601],[1,0],[0,-1],[1,-2],[0,-2],[0,-3],[0,-2],[-1,-5],[0,-1],[0,-9],[0,-2],[0,-1],[1,-2],[0,-2],[1,-6],[0,-6],[0,-4],[0,-2],[-1,-1],[0,-1],[1,-7],[0,-2],[1,-6],[1,-1],[0,-4],[0,-5],[0,-5],[0,-2],[1,0],[0,-2],[0,-6],[1,0],[2,-5],[0,-1],[0,-8],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-5],[0,-1],[1,-7],[1,-3],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-6],[-1,-3],[1,-5],[0,-4],[-1,-3],[1,-4],[0,-1],[0,-1],[0,-2],[-1,-3],[0,-1],[0,-4],[1,-2],[0,-8],[0,-2],[1,-4],[0,3],[1,4],[0,-4],[0,-3],[0,-1],[0,-3],[0,-3],[2,-2],[1,-2],[-1,-3],[0,-7],[0,-1],[0,-5],[0,-3],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[1,-2],[0,-5],[-2,-1],[1,-4],[0,-4],[-1,-5],[0,-1],[0,-2],[0,-1],[1,-1],[1,1],[1,-1],[-1,-3],[0,-1],[0,-1],[0,-7],[0,-7],[0,-4],[0,-1],[0,-2],[0,-8],[1,-3],[0,-2],[0,-14],[0,-4],[-1,-18],[0,-4],[0,-2],[-1,-1],[0,-2],[1,-3],[1,-8],[0,-1],[1,-1],[0,-1],[1,-2],[0,-8],[0,-2],[0,-2]],[[2323,4245],[0,-1],[0,-1],[0,-7],[0,-1],[0,-1],[1,0],[1,2],[0,2],[1,-5],[-1,-5],[0,-2],[0,-3],[2,-23],[0,-6],[2,-4],[0,-1],[0,-4],[1,-3],[1,0],[0,-2],[0,-2],[0,-5],[0,-3],[1,-3],[0,-1],[0,-4],[0,-1],[1,-1],[0,-3],[0,-2],[0,-2],[0,-2],[-1,-3],[1,-4],[0,-3],[1,1],[1,-1],[0,-2],[0,-1],[1,-2]],[[2148,4136],[0,28],[0,2],[0,13],[0,1],[0,21],[0,8],[0,1],[0,8],[0,15],[0,3],[0,30],[0,10],[0,47],[-1,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],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-8,0],[-1,0],[-2,0],[-1,0],[-2,0],[-8,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[2092,4323],[0,3],[0,14],[0,2],[0,2],[0,30],[0,1],[0,7],[0,1],[0,13],[0,3],[0,2],[0,18],[0,1],[0,4],[0,2],[0,2],[0,6],[0,4],[0,1],[0,3],[0,1],[0,10],[0,7],[0,28],[0,4],[0,2],[0,11],[0,4],[0,1],[0,3],[0,1],[0,10],[0,2],[0,7],[0,2],[0,6],[0,1],[0,15],[0,1],[0,66],[0,4],[0,3],[0,19],[0,1],[0,46]],[[2886,4067],[1,4],[0,1],[0,5]],[[2887,4077],[0,2],[1,6],[0,1],[0,2],[0,1],[1,4],[0,2],[1,3],[0,1]],[[2890,4099],[0,2],[1,2],[2,5],[1,0],[1,1],[0,2],[1,3],[1,4],[1,3],[1,11],[1,2],[2,11],[4,10],[3,6],[0,2],[0,2],[0,1],[-1,6],[0,4],[-3,13],[-2,10],[-2,12],[-1,1],[0,2],[0,1],[-1,6],[1,12],[0,1],[-1,3],[0,5],[-1,1],[-1,0],[-1,3],[0,4],[0,1],[0,11],[0,3],[0,11],[1,5],[1,-1],[0,3],[0,1],[2,13],[0,1],[0,1],[-2,15],[0,2],[0,1],[0,1],[0,3],[0,3],[1,1],[0,1],[1,2],[0,1],[1,2],[1,6],[0,2],[0,1],[0,1],[0,1],[1,7],[2,8],[0,5],[0,3],[0,1],[0,2],[1,7],[0,1],[1,6],[1,4],[2,4]],[[2910,4390],[6,-21],[2,-6],[1,-2],[4,-12],[0,-1],[4,-10],[1,-4],[4,-11],[0,-1],[-1,-15],[0,-6],[0,-2],[0,-3],[-1,-5],[0,-2],[0,-4],[-1,-6],[0,-2],[0,-5],[0,-4]],[[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,-2],[0,-3],[0,-1],[1,-2],[0,-2],[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,-4],[-1,-17],[0,-4],[0,-1],[0,-3],[-1,-19],[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,4062],[0,5]],[[1953,3575],[2,0],[10,0],[6,0],[2,0],[1,0],[22,0],[2,0],[12,0],[4,-2],[5,0],[1,0],[1,0],[3,1],[7,0],[7,0],[8,0],[1,0],[1,0],[3,0],[2,0],[1,0],[5,0],[2,0],[1,0],[4,-1],[7,1],[20,0],[8,0],[18,1],[2,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,-27],[0,-5],[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],[-5,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]],[[2023,2599],[-6,0],[-7,0],[-8,0],[-4,0],[-22,0],[0,-53],[0,-31],[-18,0],[-5,0]],[[1953,2515],[0,31],[0,56],[0,2],[0,10],[0,2],[0,26],[0,3],[0,10],[0,1],[0,63],[0,48],[0,1],[0,1],[0,16],[0,54],[0,1],[0,4],[0,8],[0,1],[0,13],[0,29],[0,1],[0,76],[0,139],[0,11],[0,71],[0,40],[0,70],[0,13],[0,49],[0,2],[0,7],[0,14],[0,163],[0,18],[0,6]],[[2984,4371],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,2]],[[2981,4341],[0,1],[0,1],[0,1],[2,-2],[0,-2],[0,-6],[-1,-1],[0,4],[0,2],[0,1],[-1,0],[0,1]],[[2935,4301],[1,0],[0,1],[0,-1],[0,-1],[-1,1]],[[2922,4231],[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],[0,-2],[-1,-1],[0,-2],[-1,0],[0,-1],[-1,-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,0],[0,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],[2,-6],[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]],[[2948,5073],[-1,-3],[0,-31],[0,-5],[1,-5],[-1,-14],[-1,-16],[1,-8],[0,-2],[0,-1],[1,-2],[1,-9],[0,-4],[0,-7],[0,-2],[-1,-8],[0,-23],[0,-4],[-1,-3],[-1,-6],[0,-8],[-1,-13],[0,-6],[0,-1],[1,-3],[0,-2],[0,-13],[0,-3],[0,-5],[0,-14],[1,-4],[0,-4],[0,-3],[0,-3],[0,-4],[-1,-9],[-1,-7],[0,-11],[0,-1],[1,-3],[1,8],[0,2],[2,1],[1,-17],[0,-4],[0,-27],[0,-1],[0,-2],[0,-7],[0,-19],[0,-34],[-1,-17],[0,-20],[0,-6],[0,-11],[1,0]],[[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,-2],[1,0],[0,1],[0,3],[0,2],[1,-3],[0,-1],[0,-1],[1,1],[1,-1],[1,-4],[1,0],[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],[-1,-2],[-3,-2],[-1,1],[-1,-1],[-3,0],[0,1],[-1,0],[0,-1],[-1,-1],[-1,-3],[-2,-3],[0,2],[0,1],[0,1],[0,1],[-2,-1],[0,1],[0,1],[0,1],[0,1],[0,2],[-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]],[[2910,4390],[0,1],[-2,12],[-1,0],[-2,2],[-1,2],[0,5],[-1,1],[-1,4],[-2,12],[0,7],[0,2],[0,3],[0,23],[-1,11],[-1,6],[-1,1],[-3,6],[0,10],[-1,3],[-1,8],[-1,1],[-2,0],[-1,0],[-2,0],[-12,0],[-3,0],[-1,0],[-1,0],[-5,-1],[-3,1],[-1,0],[-2,0],[-7,0],[-1,0],[-2,0],[-1,0],[-2,0],[-3,0],[-10,0],[-3,0],[-4,0],[-2,0],[-1,0],[-5,0],[-3,0],[-2,0],[-3,0],[-8,0],[-8,-1],[-1,0],[-4,1],[-13,0],[-2,0],[-4,0],[0,24],[0,4],[0,2],[0,2],[0,1],[0,1],[0,11],[0,2],[0,3]],[[2881,3376],[1,0],[0,-1],[1,-1],[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]],[[2873,3214],[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],[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]],[[2676,3346],[0,0]],[[2676,3346],[3,-1],[0,1],[0,3],[1,0],[1,10],[0,7],[0,8],[0,3],[1,2],[1,-1],[0,-3],[2,8],[0,6],[1,3],[1,4],[2,4],[0,-2],[1,-3],[-1,-7],[0,-5],[1,-2],[1,-2],[1,4],[0,1],[1,2],[0,3],[2,12],[0,2],[1,4],[0,1],[1,1],[0,1],[3,4],[0,3],[2,-1],[1,-4],[0,-2],[0,-2],[0,-1],[1,0],[2,5],[1,18],[1,7],[1,4],[0,3],[1,7],[2,4],[0,-2],[1,-2],[1,1],[0,-1],[0,9],[0,12],[0,1],[1,5],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,4],[1,1],[0,9]],[[2715,3498],[2,0],[3,-2],[4,-1],[2,0],[6,-1],[1,0],[3,-1],[1,0],[2,-1],[2,1],[2,0],[2,-1],[5,-1],[6,-2],[1,0],[4,0],[2,0],[2,0],[5,0],[1,0],[5,0],[1,0],[1,0],[2,0],[4,0],[2,0],[5,0],[1,0],[4,0],[1,0],[2,0],[4,0],[2,0],[1,0],[3,0],[2,1],[3,-1],[2,0],[1,0],[4,1],[3,0],[13,0],[2,0],[2,0],[7,-1],[3,2],[1,0],[6,0],[2,0],[5,0],[5,0],[3,0],[2,0],[1,0],[1,0]],[[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,1],[0,2],[-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],[1,0],[1,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],[-2,0],[-3,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]],[[2642,3199],[0,19],[0,21],[1,4],[1,8],[1,-1],[0,-1],[2,-2],[0,1],[0,-1],[1,0],[1,4],[1,4],[0,1],[0,1],[0,5],[0,4],[0,1],[1,13],[1,7],[0,1],[0,-1],[0,2],[2,9],[3,8],[3,1],[1,0],[4,-1],[0,1],[0,2],[0,1],[1,5],[2,5],[2,4],[1,7],[1,2],[-1,1],[0,1],[1,2],[2,6],[2,3]],[[2686,4436],[0,3],[1,0],[0,-1],[0,-1],[0,2],[0,-1],[0,-4],[0,-1],[0,-1],[-1,2],[0,1],[0,1]],[[2683,4451],[1,1],[0,1],[1,0],[-1,-1],[0,-2],[0,-1],[0,-1],[-1,3]],[[2683,4456],[0,1],[0,1],[1,0],[0,-3],[-1,0],[0,1]],[[2683,4444],[0,2],[1,1],[0,-1],[-1,-5],[0,-1],[0,4]],[[2628,4453],[10,2],[2,0],[1,0],[13,2],[3,1],[2,1],[1,0],[1,0],[1,0],[2,1],[1,0],[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,-4],[0,-1],[1,-1],[1,-3],[0,-2],[1,-2],[1,-2],[0,-1],[2,0],[0,-2],[1,-2],[0,-5],[1,-2],[0,-4],[1,-2],[1,-2],[1,1],[1,0],[0,2],[0,1],[0,2],[1,3],[-1,3],[1,1],[0,1],[0,-4],[1,-4],[0,-1],[1,0],[0,1],[1,-1],[1,-1],[0,-2],[-1,-2],[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],[2,-2],[2,2],[0,1],[1,-1],[0,-1],[1,0],[0,3],[1,0],[1,5],[1,2],[0,4],[2,5],[0,5],[1,1],[1,2],[0,3],[1,5],[1,6],[1,4],[2,4],[0,2],[1,0],[2,5],[2,6],[1,1],[1,3],[1,1],[0,1],[0,1],[2,1],[1,1],[2,6],[1,0],[0,2],[0,-1],[1,2],[1,1],[4,7],[1,2],[1,2]],[[2748,4506],[0,-1],[0,-6],[0,-2],[0,-15],[0,-16],[0,-3],[0,-2],[0,-7],[0,-6],[0,-24],[0,-2],[0,-6],[0,-2],[0,-5],[0,-5],[0,-3],[0,-7],[0,-2],[0,-2],[0,-4],[0,-1],[0,-4],[0,-1],[0,-7],[0,-1],[0,-3],[0,-3],[0,-2],[0,-2],[0,-7],[0,-5],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,-8],[0,-4],[0,-2],[0,-12],[0,-3],[0,-1],[0,-9],[0,-9],[0,-2],[0,-29]],[[2748,4255],[-2,-3],[-1,1],[0,-1],[-1,-1],[0,-5],[-1,-1],[0,-2],[2,-15],[0,-2],[0,-9],[0,-7],[0,-3],[0,-4],[0,-8],[0,-2],[0,-5],[-1,-5],[0,-1],[-1,-11],[-1,-6],[0,-1],[0,-12],[0,-5],[0,-2],[0,-2],[0,-1],[-1,-12],[0,-2],[-1,-8],[0,-1],[0,-1],[0,-1],[-1,-10],[0,-23],[0,-2],[0,-1],[-1,-16],[-1,-1],[-1,-2],[-2,-9],[-1,-3],[-1,-4],[-1,-10],[-3,-15],[-1,1],[0,-1],[-1,-2],[-1,-6],[-1,0],[-1,0],[0,2],[0,6],[0,2],[-1,2],[-1,0],[0,-1],[-2,-9],[-2,-15],[-2,-6],[-1,-6],[0,-4],[-1,0],[0,-2],[0,-6],[1,-5],[-1,-4],[0,-2],[-1,-2],[0,1],[0,-2],[0,-2],[0,-2],[0,-2],[1,-2],[0,-2],[0,-3],[0,-2],[0,-2],[-1,-3],[1,-2],[0,-1],[0,-3],[0,-1],[0,-1],[-1,2],[0,2],[-1,1],[0,-1],[0,-3],[0,-5],[-1,-3],[-1,-2],[0,1],[-1,2],[0,1],[0,1],[1,5],[0,1],[0,1],[0,6],[-1,4],[0,1],[-1,-1],[0,4],[-1,3],[-1,0],[0,-2],[0,-3],[0,-1],[-1,-5],[0,-2],[0,-1],[-1,-2],[0,-2],[-1,-7],[0,-5],[0,-5],[0,-3],[-1,-2],[-1,-3],[0,-2],[0,-3],[1,-3],[0,-4],[0,-5],[1,-15],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,2],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-2],[0,-4],[0,-14],[-1,-2],[0,-1],[0,-1],[0,-1],[-5,-6],[-1,-1],[-1,4]],[[1549,5306],[2,2],[0,-1],[1,-2],[0,-4],[0,-9],[2,-7],[2,0],[2,5],[2,3],[1,-1],[6,-19],[0,-4],[2,-18],[1,-18],[0,-3],[0,-5],[0,-3],[1,-5],[0,-4],[0,-5],[0,-1],[0,-5],[-1,-4],[1,-4],[0,-3],[2,-5],[1,-1],[4,-5],[3,-1],[1,-2],[1,-4],[1,-1],[1,1],[1,3],[1,3],[1,1],[1,0],[3,7],[2,5],[1,1],[0,2],[0,1],[1,4],[1,3],[2,-2],[1,0],[2,2],[3,4],[0,-1],[2,-4],[1,-1],[1,-1],[1,2],[0,1],[1,-1],[3,-6],[0,-4],[0,-3],[3,3],[1,1],[3,1],[1,-3],[2,3],[0,2],[2,3],[3,6],[0,2],[1,2],[0,1],[1,0],[1,-1],[1,-5],[1,-2],[0,-1],[2,1],[6,5],[1,6],[1,2],[4,8],[3,4],[2,2],[1,0],[3,2],[1,9],[1,3],[1,1],[1,-3],[1,-1],[2,2],[1,1],[2,2],[1,2],[1,-2],[1,-1],[1,0],[1,1],[1,2],[2,5],[0,2],[1,4],[9,0],[1,0],[1,0],[1,0],[2,0],[3,0],[2,0],[1,0],[1,0],[3,0],[4,0],[11,0],[2,0],[1,-1],[7,1],[9,-1]],[[1731,4510],[-33,-1],[-16,-1],[-15,1],[-1,0],[-12,0],[-6,0]],[[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]],[[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]],[[2092,5070],[0,1],[0,40],[0,23],[0,1],[0,6],[0,3],[0,19],[0,1],[0,1],[0,7],[0,2],[0,1],[0,58],[0,1],[0,2],[0,12]],[[2092,5248],[11,0],[2,0],[1,0],[3,0],[1,0],[3,0],[2,0],[2,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[5,0],[1,0],[3,0],[2,0],[1,0],[1,0],[1,0],[1,0],[3,-1],[1,0],[1,0],[1,0],[0,1],[1,-1],[2,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],[5,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[4,0],[1,0],[1,0],[3,0],[1,0],[1,0],[2,0],[4,0],[1,0],[1,0],[4,0],[3,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[3,0],[1,0],[1,0],[2,0],[3,0],[3,0],[1,0],[1,0],[1,0],[1,0],[1,0],[3,0],[3,0],[2,0],[5,-1],[15,0],[4,0],[1,0],[1,0],[1,0],[5,0],[2,0],[4,0],[1,0],[1,0],[5,0],[2,0],[2,0],[1,0],[3,0],[1,0],[5,0],[3,0],[1,0],[1,0],[1,0],[1,0]],[[2304,4790],[-4,0],[0,-3],[0,-3],[0,-2],[0,-1],[0,-3],[1,-5],[0,-2],[1,0],[0,-2],[0,-2],[0,-12],[0,-2],[-1,-1],[-1,0],[0,-4],[0,-1],[0,-4],[1,-4],[2,0],[0,-1],[1,-19],[0,-1],[0,-6],[-1,-4],[-1,-6],[0,-11],[0,-5],[0,-6],[-1,-10],[0,-3],[0,-1],[0,-1],[-1,0],[-1,-11],[0,-1],[0,-5],[0,-6],[0,-2],[1,0],[0,-3],[1,-4],[1,-5],[1,-13],[0,-1],[0,-4],[0,-2],[0,-2],[0,-1],[0,-2],[1,-2]],[[2092,4697],[0,54],[0,1],[0,2],[0,4],[0,12],[0,7],[0,9],[0,5],[0,10],[0,4],[0,1],[0,31],[0,19],[0,16],[0,38],[0,8],[0,63],[0,4],[0,6],[0,22],[0,1],[0,1],[0,4],[0,8],[0,43]],[[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]],[[2498,3481],[0,-4],[0,-1],[0,-2],[0,-1],[1,0],[0,2],[0,3],[1,3]],[[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]],[[2874,3733],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[0,2],[-1,4],[1,2]],[[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]],[[2874,3753],[-1,-1],[0,-2],[0,-4],[-1,2],[0,5]],[[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,8],[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]],[[2842,3936],[1,-4],[0,-1],[1,-1],[1,-5],[0,-4],[0,-2],[0,-9]],[[2842,3880],[-1,1],[0,-3],[-1,-1],[0,1],[0,3],[-1,0],[0,-2],[0,-1],[0,-6],[-1,-1],[0,-1],[0,-3],[0,-3],[0,-1],[0,-2],[0,-1],[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,1],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,-2],[0,-2],[0,-1],[0,1],[-1,5],[0,2],[0,4],[-2,5],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[-1,3],[-1,4],[0,2],[0,2],[0,1],[1,3],[0,1],[-1,0],[0,2],[0,3],[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,-6],[0,-2],[0,-4],[0,-2],[0,-2],[0,-2],[0,-1],[1,-1],[1,-1],[0,-1],[1,-4],[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]],[[1583,5636],[1,-3],[-1,0],[0,1],[0,1],[0,1]],[[1574,5735],[0,6],[0,1],[0,-3],[1,-2],[1,-2],[0,-1],[0,-3],[0,1],[-1,0],[0,-1],[-1,-1],[0,1],[0,1],[0,3]],[[1573,5748],[0,2],[1,-4],[-1,0],[0,1],[0,1]],[[1572,5769],[0,3],[0,-1],[1,-1],[0,-6],[1,-2],[0,-1],[1,-4],[0,-5],[0,1],[-1,1],[-1,5],[0,6],[-1,1],[0,1],[0,2]],[[1571,5741],[1,4],[0,1],[1,-3],[0,-1],[0,-4],[0,-4],[-1,-1],[0,2],[0,3],[-1,1],[0,2]],[[1571,5674],[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],[-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]],[[1562,5763],[1,3],[1,1],[0,-1],[0,-4],[0,-2],[0,-1],[-1,-1],[0,1],[0,1],[0,1],[0,1],[-1,1]],[[1562,5819],[1,0],[1,-4],[-1,-1],[0,1],[-1,-1],[0,2],[0,3]],[[1559,5743],[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],[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]],[[1558,5761],[1,-1],[0,-1],[1,-2],[1,-2],[0,-2],[0,-3],[-1,1],[-2,6],[0,3],[0,1]],[[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,4],[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,4],[0,2],[1,1],[0,1],[0,2],[0,1],[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]],[[2748,4255],[0,-4],[0,-5],[0,-13],[0,-8],[0,-14],[0,-1],[0,-42],[0,-2],[0,-16],[0,-11],[0,-10],[0,-1],[0,-4],[0,-40],[2,0],[3,0],[8,0],[3,0],[2,0],[3,0],[4,0],[4,0]],[[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,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]],[[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],[1,2],[1,4],[2,5],[0,1],[1,1],[0,2],[1,1],[0,1],[2,4],[1,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]],[[2568,5137],[1,1],[0,1],[-1,4],[1,5],[0,2],[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],[-1,-3],[0,-4],[0,-1],[0,-2],[0,-2],[0,-2],[-1,0],[0,-1],[0,-1],[0,-3],[0,-1],[0,-1],[-1,3],[0,2],[0,2],[0,1],[-1,1],[0,2]],[[2471,5445],[0,2],[0,2],[0,4],[0,2],[0,2],[0,2],[1,0],[1,0],[0,-1],[-1,-2],[0,-2],[0,-4],[0,-3],[0,-1],[-1,-2],[0,1]],[[2465,5431],[1,3],[1,2],[2,3],[0,-1],[0,-1],[0,-4],[0,-1],[-1,-1],[0,-1],[0,-1],[0,1],[-2,-3],[0,1],[-1,2],[0,1]],[[2461,5405],[1,2],[1,0],[0,1],[0,1],[0,1],[1,1],[1,3],[0,2],[1,2],[0,1],[0,2],[1,0],[0,-3],[1,-1],[0,-1],[-1,-1],[-1,0],[-1,-4],[-1,-1],[0,-2],[1,-1],[0,-1],[0,-1],[-1,-1],[0,1],[-1,-1],[0,-3],[-1,-2],[0,3],[-1,2],[0,1]],[[2427,5390],[1,0],[0,-3],[1,-1],[0,-1],[2,2],[1,0],[1,0],[1,1],[1,2],[3,5],[1,4],[1,0],[1,0],[1,1],[0,1],[1,1],[1,2],[0,1],[1,1],[1,1],[0,2],[0,2],[1,1],[0,1],[1,1],[1,1],[0,4],[1,1],[0,-2],[1,-2],[1,3],[0,2],[0,-2],[0,-1],[1,0],[0,1],[0,3],[0,1],[1,-1],[0,1],[1,1],[0,1],[0,2],[0,1],[0,1],[1,0],[0,2],[0,3],[1,0],[0,-1],[1,-1],[0,2],[1,3],[0,1],[1,0],[0,-1],[2,-6],[0,-5],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-4],[-1,-6],[-1,-4],[0,-1],[0,-1],[0,-1],[-1,-1],[1,-1],[-1,-2],[0,-2],[0,-1],[0,-5],[1,-4],[0,-1],[-1,-3],[0,-2],[-1,-1],[0,-1],[0,-4],[0,-1],[0,-1],[-1,-3],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,3],[1,3],[1,2],[1,2],[0,2],[0,3],[1,1],[0,4],[1,-5],[2,-8],[1,-4],[1,-3],[0,-1],[1,2],[1,-3],[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],[1,-5],[0,-2],[2,-1],[1,-1],[0,-5],[2,-3],[0,-5],[0,-1],[-1,-3],[0,-2],[1,-5],[0,-1],[0,-2],[0,-3],[0,-4],[-1,-1],[1,-5],[0,-7],[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],[-2,-2],[0,-4],[0,-1],[0,-1],[0,-2],[0,-1],[0,-3],[0,-1],[0,-2],[-1,0],[0,-1],[0,-2],[0,-3],[-1,-2],[0,-2],[-1,-8],[0,-4],[-1,-2],[0,-5],[-1,-6],[0,-1],[0,-2],[0,-1],[0,-5],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[-1,-3],[0,-1],[0,-1],[1,-5],[1,-2],[1,0],[0,1],[1,2],[0,4],[0,1],[0,2],[0,1],[1,4],[1,2],[1,3],[1,1],[0,1],[0,2],[0,2],[1,1],[0,1],[0,2],[0,3],[0,2],[0,1],[0,3],[1,4],[1,7],[0,3],[1,5],[1,2],[1,0],[0,1],[1,2],[0,-1],[1,0],[1,6],[0,-1],[0,-1],[0,-1],[1,-3],[0,1],[0,3],[0,1],[0,2],[0,1],[0,1],[0,3],[0,2],[1,4],[0,6],[1,4],[0,4],[1,4],[0,2],[1,3],[0,2],[0,3],[0,3],[0,1],[0,2],[0,2],[0,3],[1,1],[0,1],[0,-2],[1,-1],[0,2],[0,2],[1,0],[0,1],[0,1],[1,-1],[0,1],[0,2],[0,1],[0,3],[0,3],[0,3],[1,2],[0,2],[0,3],[1,-2],[0,1],[1,2],[1,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[1,-2],[0,-4],[-1,-2],[0,-1],[0,1],[0,1],[-1,0],[0,-2],[0,-7],[0,-3],[0,-2],[0,-1],[0,-1],[0,-3],[0,-2],[0,-4],[-1,0],[0,-1],[0,-2],[0,-2],[0,-1],[-1,1],[0,-1],[0,-2],[-1,-6],[0,-1],[-1,-5],[0,-2],[0,-4],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-2],[0,-1],[0,-3],[0,-1],[-1,-6],[-1,-2],[0,-4],[0,-2],[-1,-2],[0,-1],[0,-3],[0,-6],[-1,-4],[0,-3],[0,-3],[0,-2],[-1,-6],[0,-2],[0,-1],[-1,-1],[0,-3],[0,-4],[-1,-6],[0,-8],[0,-1],[-1,-5],[0,-3],[0,-7],[0,-2],[0,-3],[0,-4],[0,-1],[-1,-4],[0,-4],[0,-1],[0,-3],[0,-2],[1,-7],[0,-5],[0,-4],[0,-3],[0,-3],[-1,-3],[-1,-3],[-1,-3],[0,-1],[-1,-4],[0,-4],[0,-3],[0,-3],[-1,-2],[0,-3],[0,-6],[0,-5],[-1,-1],[0,-3],[0,-1],[0,-6],[0,-2],[0,-3],[0,-1],[0,-4],[0,-4],[0,-4],[1,-8],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-2],[0,-3],[0,-4],[0,-1],[0,-8],[-2,-11],[0,-3],[0,-4],[0,-3],[0,-3],[0,-3],[0,-6],[-1,-5],[-1,-5],[0,-3],[0,-2],[0,-2],[-1,-3],[0,-9],[0,-4],[0,-6],[0,-3],[0,-7],[0,-1],[0,-1],[1,-3],[-1,-4],[0,-3],[0,-2],[0,-2],[1,-3],[0,-4],[0,-2],[-1,-3],[0,-1],[0,-3],[0,-2],[0,-3],[1,-2],[0,-2],[1,-3],[0,-4],[-1,-10],[1,-6],[0,-3],[0,-1],[1,-5],[1,-3],[0,-1],[0,-3],[-1,-2],[0,-2],[0,-4],[0,-4],[0,-1],[0,-2],[0,-3],[0,-1],[-1,-5],[0,-5],[0,-2],[0,-2],[0,-1],[0,-2],[0,-9],[1,-3],[0,-4]],[[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]],[[9991,6377],[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],[0,-4],[0,-3],[-3,-7],[-1,0],[-2,5],[-1,4],[0,3],[0,9]],[[9967,6312],[0,4],[1,1],[0,-1],[0,-2],[1,-1],[1,-2],[1,0],[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]],[[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]],[[9956,6348],[2,-1],[0,-1],[0,-1],[1,-1],[1,-6],[0,-2],[0,1],[0,1],[-1,-1],[-1,0],[0,1],[-2,8],[0,2]],[[9952,6386],[0,2],[1,1],[0,1],[0,-1],[1,-2],[0,-1],[1,-5],[-1,-3],[-1,-1],[-1,3],[0,1],[0,5]],[[9929,6405],[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],[0,1],[0,1],[-1,2],[0,2],[-1,2],[0,3],[0,1]],[[9927,6361],[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],[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]],[[9890,6449],[1,1],[1,-1],[1,-2],[-1,-4],[-1,0],[0,1],[-1,3],[0,2]],[[9840,6517],[1,2],[1,-2],[0,-1],[0,-2],[0,-2],[-1,0],[-1,2],[0,3]],[[9837,6520],[1,0],[0,-1],[1,-3],[-1,-1],[-1,1],[0,2],[0,2]],[[9834,6525],[1,0],[0,-1],[1,-2],[0,-2],[0,1],[-1,-1],[0,2],[-1,3]],[[9820,6456],[1,5],[1,4],[1,0],[0,-2],[1,-1],[1,2],[0,3],[0,1],[0,1],[1,1],[1,-1],[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]],[[9795,6553],[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],[0,5],[0,2],[-1,3],[-3,9],[-1,-1],[-1,-1],[-1,-2],[-2,1],[0,3]],[[1328,6932],[2,4],[4,5],[0,-1],[0,-1],[0,-2],[1,-9],[0,-1],[1,-1],[0,-2],[-2,-8],[0,-1],[-3,0],[-3,10],[0,3],[0,4]],[[1323,6948],[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],[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]],[[1317,7009],[1,11],[1,-2],[0,-1],[0,-1],[1,-4],[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]],[[1284,7195],[0,2],[1,9],[0,1],[1,1],[0,2],[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]],[[1264,7027],[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],[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]],[[1262,7121],[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],[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]],[[1259,7112],[1,1],[1,3],[1,0],[0,-1],[0,-4],[0,-1],[0,-2],[0,-1],[0,-3],[0,-4],[-1,-1],[-1,1],[0,2],[0,2],[-1,5],[0,3]],[[1257,7327],[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],[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]],[[1248,7108],[0,6],[1,0],[1,0],[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]],[[1246,7286],[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],[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]],[[1231,7577],[0,2],[2,-7],[2,-10],[0,-1],[0,-3],[1,-3],[1,-2],[1,-1],[0,-9],[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]],[[1211,7383],[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,-3],[-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]],[[1206,7377],[0,1],[1,0],[2,1],[1,-1],[0,-1],[0,-2],[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]],[[1186,7488],[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],[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]],[[887,8041],[2,5],[1,0],[0,-1],[1,0],[1,2],[1,-3],[1,-1],[-1,-3],[-1,-4],[-2,1],[0,2],[-1,0],[-2,0],[-1,1],[1,1]],[[882,8004],[0,2],[1,1],[2,2],[2,-8],[0,-1],[-1,-6],[-3,-2],[-1,0],[0,6],[0,6]],[[870,7839],[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],[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]],[[869,7922],[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],[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]],[[867,8012],[2,5],[0,-1],[0,-1],[1,-1],[2,-7],[0,-1],[0,-3],[-1,-2],[-1,-2],[-1,3],[-2,10]],[[717,7514],[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],[-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]],[[690,7229],[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],[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]],[[678,7369],[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],[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]],[[678,7209],[1,5],[1,7],[1,4],[5,15],[0,1],[2,-1],[1,-2],[0,-2],[0,-1],[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]],[[652,7095],[1,3],[1,4],[1,6],[1,4],[1,-1],[0,-4],[-1,-7],[1,-8],[0,-3],[-1,-6],[-1,1],[-2,1],[-1,2],[0,5],[0,3]],[[608,7229],[1,4],[0,1],[1,3],[3,0],[1,0],[1,-1],[1,-3],[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]],[[552,6922],[1,1],[0,1],[0,2],[-1,2],[0,1],[2,2],[2,-4],[0,-2],[-1,-4],[0,-3],[-1,-2],[-1,-1],[0,1],[-1,3],[0,3]],[[548,6931],[1,5],[0,3],[1,2],[0,4],[-1,3],[0,4],[0,1],[2,0],[1,-1],[0,-2],[0,-13],[0,-1],[-3,-6],[0,1],[-1,0]],[[543,6953],[1,10],[0,2],[1,5],[0,6],[2,12],[0,-3],[0,-3],[0,-2],[-1,-5],[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]],[[526,6928],[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],[-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]],[[524,7021],[0,3],[2,3],[0,1],[1,-1],[1,-1],[2,-1],[-1,-12],[0,-1],[-1,2],[-2,1],[-1,-1],[-1,1],[0,3],[0,2],[0,1]],[[510,7000],[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],[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]],[[480,6967],[1,4],[1,3],[3,-3],[1,-1],[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]],[[466,6928],[2,9],[1,1],[1,0],[1,-1],[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]],[[459,8546],[1,4],[1,3],[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]],[[455,6846],[0,-1],[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]],[[388,6773],[1,3],[1,2],[2,0],[0,-1],[1,0],[1,2],[1,0],[1,0],[0,-1],[0,-2],[0,-1],[-1,-6],[0,-1],[-2,-2],[-5,4],[0,1],[0,2]],[[381,6768],[0,1],[1,1],[3,2],[2,0],[1,-6],[-1,-2],[-2,2],[0,1],[-1,1],[-3,-2],[0,1],[0,1]],[[375,6801],[0,2],[1,7],[1,0],[0,-1],[1,-2],[2,3],[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]],[[363,6781],[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],[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]],[[361,9042],[1,1],[0,1],[1,1],[0,1],[1,1],[1,1],[1,-3],[-2,-1],[0,-1],[-1,-5],[-1,-1],[0,1],[0,1],[-1,0],[0,2],[0,1]],[[327,7914],[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],[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]],[[315,6626],[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],[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]],[[307,8934],[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,-6],[0,-2],[0,-2],[-1,-1],[-1,2],[0,-1],[-3,8],[-5,31],[-2,7],[0,3],[-2,22],[-13,6],[-13,56],[-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],[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,-1],[-1,0],[0,-1],[-1,0],[-2,-3],[-2,-5],[-1,-1],[-2,-3],[0,-2],[0,-1],[-4,-5],[-1,-1],[-2,-5],[-2,-3],[-5,-8],[-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]],[[305,8808],[0,3],[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]],[[284,8953],[0,1],[1,1],[1,-5],[0,-1],[-1,0],[-1,1],[0,1],[0,2]],[[281,6541],[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],[-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]],[[261,6563],[1,8],[1,2],[1,0],[0,-2],[0,-5],[-1,-7],[0,-2],[-1,1],[0,3],[-1,1],[0,1]],[[261,7244],[3,-2],[2,-1],[1,1],[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]],[[255,6538],[0,2],[1,1],[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]],[[252,6549],[0,3],[0,1],[2,0],[0,-2],[1,-1],[0,-1],[0,-2],[0,-2],[0,-1],[-1,-1],[-1,-3],[-1,3],[0,4],[0,2]],[[250,6515],[0,12],[1,0],[2,-2],[0,-1],[0,-2],[0,-3],[0,-4],[-1,-1],[-2,0],[0,1]],[[243,7347],[0,4],[1,2],[0,1],[2,2],[1,-1],[0,-1],[1,1],[2,3],[1,-1],[-1,-8],[-3,-10],[0,3],[-1,2],[-1,0],[-2,1],[0,2]],[[232,6492],[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],[1,8]],[[218,6472],[0,2],[1,2],[0,2],[1,1],[2,-6],[-1,-5],[0,-1],[-1,-3],[-1,0],[-1,4],[0,4]],[[204,8539],[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],[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]],[[182,6436],[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],[1,6]],[[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]],[[142,6405],[2,-1],[2,-1],[2,-2],[0,-1],[1,0],[2,4],[2,3],[1,1],[0,1],[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]],[[106,6385],[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],[-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]],[[95,6371],[0,3],[0,1],[2,-1],[0,1],[0,-1],[0,-1],[-1,-6],[-1,1],[0,2],[0,1]],[[82,6394],[1,5],[1,3],[2,-2],[2,-13],[0,-2],[-1,-1],[-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]],[[81,6347],[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],[1,1],[0,-2],[0,-3],[0,-4],[-1,1],[-2,-1],[-1,-7],[-1,-1],[-1,1],[-1,1],[-1,2]],[[60,6311],[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],[-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]],[[40,6325],[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],[-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]],[[26,6358],[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],[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]],[[8,6342],[0,4],[1,3],[0,1],[1,-1],[1,-2],[0,-3],[1,-5],[-1,-4],[-1,-2],[0,-1],[-1,1],[-1,6],[0,3]],[[4,6264],[1,3],[0,1],[1,-3],[0,-4],[1,-4],[-2,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,13]],[[0,6246],[1,3],[1,-3],[0,-4],[0,-2],[-1,-5],[0,-1],[-1,2],[0,9],[0,1]],[[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,16],[0,3],[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,35],[0,30]],[[1813,3575],[3,0],[28,0],[2,0],[1,0],[7,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]],[[1953,2515],[-11,0],[-28,0],[-15,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]],[[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]],[[2148,3573],[-4,1],[-1,0],[-4,0],[-6,0],[-8,1],[-3,-1],[-1,1]],[[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]],[[2886,4062],[0,2],[-1,1],[0,1],[1,1]],[[2885,4061],[1,-2],[0,-1],[-1,1],[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]],[[643,347],[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],[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]],[[625,568],[1,6],[0,5],[0,5],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,-1],[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]],[[625,495],[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],[-1,0],[0,-2],[-1,3],[-1,-2],[0,-1],[-1,-1],[-1,4],[0,1]],[[615,565],[0,1],[1,3],[1,0],[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]],[[609,607],[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],[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]],[[581,691],[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],[-1,-2],[-1,0],[0,1],[0,3],[0,1],[0,1],[0,1],[0,-1],[-1,4],[0,2],[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]],[[539,775],[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],[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]],[[527,741],[0,7],[0,1],[0,2],[1,1],[0,1],[0,2],[1,2],[1,3],[0,1],[0,1],[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]],[[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]],[[2513,2203],[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],[-1,-6],[-1,-11],[0,1]],[[2497,2299],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-2],[-1,1],[0,-1],[-1,-2],[0,-4],[0,-2],[-1,0],[0,-3],[0,-3],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[0,-4],[0,-1],[0,2],[-1,2],[-1,0],[-1,-4],[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,-2],[-1,-1],[0,-1],[1,-4],[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,-3],[-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,3],[0,3],[0,2],[0,1],[1,2],[0,-2],[1,0],[0,2],[0,4],[0,3],[0,1],[0,1],[0,3],[-1,0],[0,1],[-1,1],[0,3],[0,2],[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]],[[3107,4981],[1,-1],[0,-3],[0,-1],[0,-1],[1,-3],[-1,-3],[0,-1],[0,2],[-1,8],[0,3]],[[3089,4932],[0,1],[0,-1],[1,0],[0,2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,1],[0,3]],[[3086,4905],[0,1],[0,1],[1,1],[0,-4],[0,-1],[-1,0],[0,2]],[[3086,4920],[0,1],[1,2],[0,-1],[1,-1],[-1,0],[0,-1],[0,-4],[0,-1],[-1,3],[0,2]],[[3083,4923],[0,3],[0,1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[-1,1],[0,1]],[[3082,4914],[1,0],[0,4],[1,1],[1,0],[0,-2],[1,-4],[-1,-3],[-1,-4],[0,1],[0,2],[0,2],[-1,0],[-1,1],[0,2]],[[3082,4905],[0,2],[0,1],[0,-1],[1,-1],[0,-2],[-1,-2],[0,1],[0,2]],[[3082,4948],[0,3],[0,2],[0,2],[0,1],[0,-1],[0,-2],[1,-9],[0,-2],[-1,3],[0,1],[0,2]],[[3078,4898],[1,2],[0,1],[0,1],[1,-2],[0,-2],[0,-1],[0,-2],[-1,-6],[0,-3],[0,1],[-1,0],[0,-1],[0,-1],[0,2],[0,1],[0,3],[0,4],[0,3]],[[3076,4926],[0,1],[1,0],[0,1],[0,2],[0,3],[0,1],[0,1],[0,1],[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]],[[3073,4928],[0,1],[1,-1],[1,-3],[0,-1],[0,-2],[-1,0],[0,1],[0,1],[-1,0],[0,2],[0,2]],[[3071,4856],[0,3],[1,2],[0,-3],[0,-3],[0,-2],[0,-2],[-1,-1],[0,1],[0,1],[0,3],[0,1]],[[3070,4905],[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],[0,-4],[-1,0],[-1,-2],[0,1],[0,1],[-1,6],[0,2],[0,2],[0,4],[-1,0],[0,1]],[[3069,4931],[0,1],[1,3],[0,1],[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]],[[3066,4880],[1,7],[0,-1],[0,-1],[-1,-6],[0,1]],[[3059,4839],[1,1],[0,1],[0,1],[0,-1],[0,-3],[-1,1]],[[3056,4868],[0,6],[1,0],[0,-2],[0,-2],[0,-1],[0,-1],[-1,-1],[0,1]],[[3037,4825],[0,1],[1,3],[0,1],[0,-1],[0,-1],[0,-1],[0,1],[0,-2],[0,1],[-1,-2]],[[3037,4833],[0,3],[0,1],[1,1],[0,-2],[0,-2],[0,-1],[0,-1],[-1,-3],[0,2],[0,2]],[[3036,4825],[0,1],[0,1],[1,1],[-1,-4],[0,-1],[0,2]],[[3035,4817],[0,4],[0,2],[1,0],[0,-2],[-1,-4],[0,-2],[0,2]],[[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,-4],[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],[-1,2],[-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],[0,-1],[1,-2],[0,-1],[-1,-3],[-1,-7],[0,-6],[0,-1],[0,-2],[-1,-3],[0,-1],[0,-3],[0,-1],[-1,-2]],[[3021,4708],[-1,4],[-2,8],[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,25],[0,2],[0,1],[0,14],[0,23],[0,33],[0,31],[0,5],[-1,11],[0,18],[0,59],[-1,49],[0,39],[-1,15]],[[2632,5232],[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,2],[0,2],[-1,2],[0,1],[0,1],[-1,1]],[[2605,5183],[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],[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]],[[2593,5097],[0,2],[1,1],[0,1],[0,-1],[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]],[[2591,5073],[0,1],[0,4],[0,1],[1,1],[0,-1],[1,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,1],[0,2]],[[2572,4465],[1,5],[2,6],[1,5],[2,9],[0,5],[1,4],[0,11],[2,16],[0,3],[0,3],[1,3],[2,12],[0,3],[1,5],[0,2],[1,11],[1,9],[0,7],[0,1],[0,2],[0,1],[1,5],[0,7],[0,11],[0,4],[1,4],[0,2],[0,8],[0,1],[0,4],[0,5],[0,5],[0,6],[0,2],[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],[-1,11],[-2,23],[0,4],[-1,11],[-1,7],[0,7],[0,4],[0,4],[-2,12],[0,3],[0,4],[0,3],[0,2],[0,3],[0,4],[1,3],[0,5],[1,4],[1,5],[0,3],[0,5],[0,1],[0,4],[0,3],[0,6],[-1,5],[0,10],[0,4],[-1,2],[0,4],[0,2],[0,3],[0,2],[0,1],[0,2],[1,6],[1,2],[0,2],[1,5],[0,1],[0,3],[0,2],[1,4],[0,4],[0,3],[1,3],[0,4],[1,4],[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],[2,0],[0,1],[0,1],[1,4],[0,2],[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,2],[1,5],[1,10],[0,2],[0,3],[-1,0],[0,1],[1,4],[0,2],[0,6],[0,2],[0,1],[1,3],[1,0],[0,-2],[0,-3],[0,-1],[-1,-1],[0,-5],[0,-3],[0,-2],[0,-6],[0,-2],[0,-2],[-1,0],[0,-2],[-1,-3],[0,-2],[0,-4],[0,-5],[0,-1],[0,-1],[1,-1],[0,1],[1,3],[0,1],[0,2],[0,1],[0,3],[1,2],[0,2],[0,2],[0,5],[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,-1],[0,1],[2,2],[1,3],[0,2],[0,1],[0,2],[0,1],[-2,1],[0,-1],[0,-1],[-1,3],[-1,5],[-1,3],[0,8],[0,4],[-1,5],[0,1],[1,2],[0,3],[1,3],[0,1],[0,1],[0,2],[1,3],[1,1],[0,2],[1,3],[0,5],[0,2],[0,1],[0,2],[-1,2],[0,1],[-1,1],[1,1],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[0,1],[1,0],[0,2],[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],[1,-6],[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,-2],[0,-2],[0,-7],[0,-6],[0,-1],[0,-2],[0,-3],[1,-1],[0,-2],[0,-4],[-1,-7],[0,-4],[0,-4],[0,-3],[0,-6],[0,-3],[0,-1],[0,-5],[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,-5],[0,-2],[0,-3],[-1,-3],[0,-1],[0,-2],[0,-3],[-1,0],[-1,0],[0,-3],[-1,-3],[1,-5],[-2,-1],[-1,-1],[-2,1],[0,-2],[0,-1],[-1,-3],[0,-2],[0,-2],[0,-3],[-1,-1],[0,-1],[0,-2],[0,-8],[0,-13],[0,-2],[-1,-3],[0,-2],[0,-6],[1,-8],[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],[1,-3],[0,-5],[0,-3],[0,-3],[1,-5],[1,-10],[-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],[0,-1],[-1,-9],[0,-12],[0,-6],[0,-10],[-1,0],[0,-2],[-1,-2],[0,-1],[0,-1],[0,-4],[0,-1],[0,-2],[0,-2],[0,-2],[-1,-1],[0,-1],[0,-2],[-1,-3],[0,-1],[0,-3],[-1,1],[0,-1],[-1,-2],[0,-4],[0,-3],[0,-2],[-1,-2],[0,1],[-1,-4],[0,-4],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-4],[0,-3],[1,-4],[0,-2],[-1,0],[0,-1]],[[2504,5609],[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],[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]],[[2472,5364],[2,6],[0,1],[1,0],[1,2],[1,2],[2,4],[2,1],[1,3],[1,1],[1,3],[0,2],[0,2],[1,1],[1,4],[0,5],[1,0],[1,6],[0,1],[1,3],[2,2],[2,1],[0,-1],[0,-1],[1,-1],[1,2],[1,1],[1,1],[1,0],[0,-1],[1,1],[1,1],[1,2],[3,9],[1,2],[1,3],[1,6],[0,4],[1,1],[0,1],[0,-1],[0,-1],[1,0],[1,1],[0,2],[1,0],[0,-1],[1,0],[0,1],[0,1],[1,3],[0,2],[0,2],[1,3],[0,5],[0,3],[1,2],[1,0],[0,5],[1,2],[1,0],[0,1],[1,6],[1,3],[0,3],[1,1],[1,1],[0,2],[1,0],[0,1],[2,7],[0,2],[1,3],[0,3],[0,2],[2,6],[0,3],[2,3],[1,2],[0,2],[2,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[2,2],[0,-1],[1,1],[0,1],[2,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,-2],[-1,-2],[0,-4],[1,-1],[0,-1],[0,-1],[-1,-1],[0,1],[0,1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-3],[-1,-3],[-1,-1],[0,-1],[0,-2],[0,-4],[0,-4],[0,-1],[-1,-1],[0,-4],[0,-1],[-1,-1],[0,-5],[0,-2],[0,-3],[-1,-6],[0,-7],[0,-4],[0,-1],[0,-3],[0,-4],[1,0],[0,1],[1,4],[1,5],[0,1],[0,1],[0,1],[2,6],[0,3],[1,2],[0,3],[3,5],[0,1],[0,1],[0,-1],[0,-4],[-1,-4],[0,-3],[1,0],[1,1],[0,1],[1,1],[1,-2],[1,-1],[1,0],[0,1],[2,0],[1,-3],[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,-2],[0,-3],[0,-1],[1,-5],[0,-5],[0,-1],[1,-6],[0,-2],[1,-6],[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,-2],[1,-1],[2,-1],[1,1],[1,1],[2,-1],[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],[2,-2],[1,-1],[1,0],[1,1],[1,0],[1,-1],[2,0],[1,0],[0,1],[3,6],[3,6],[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,-2],[0,1],[-2,0],[0,-2],[-3,0],[0,-3],[-1,-2],[-1,5],[-1,3],[0,1],[0,-2],[-1,2],[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],[1,-6],[0,-1],[0,-3],[0,-1],[-1,0],[0,-2],[-1,4],[-2,3],[0,2],[0,1],[0,2],[-1,2],[0,1],[-1,2],[0,1],[0,5],[-1,5],[-1,4],[-1,1],[-1,2],[-1,1],[0,1],[-1,2],[0,1],[-2,0],[0,-1],[0,3],[-2,1],[0,1],[-1,3],[-1,1],[0,-1],[-1,-1],[0,3],[-1,1],[-1,-1],[0,-1],[1,0],[-1,-1],[-1,2],[-1,0],[0,-1],[0,-2],[-2,-9],[0,-5],[-1,-4],[0,-2],[-1,-1],[-1,-2],[0,1],[-1,0],[-1,1],[0,2],[-1,0],[0,-1],[0,-1],[-1,-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,-2],[0,-4],[0,-3],[0,-1],[0,-1],[1,-1],[-1,-2],[0,-1],[0,-3],[0,-2],[-1,-1],[0,-1],[0,-2],[-1,-1],[-1,-3],[0,-5],[-1,-7],[0,-2],[-1,-7],[-1,-9],[0,-5],[-1,-2],[0,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-3],[-1,-3],[0,-4],[-1,-6],[0,-2],[0,-2],[-1,-4],[-1,-9],[-1,-6],[-1,-2],[0,-3],[-1,-4],[0,-2],[0,-2],[0,-2],[0,-2],[1,-1]],[[2355,3481],[0,3],[0,1],[0,3],[0,8],[0,4],[0,1],[0,1],[0,11],[0,6],[0,12],[0,15],[0,6],[0,3],[0,3],[0,3],[0,1],[0,1],[0,2],[0,9]],[[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]],[[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],[-1,3],[-1,1],[0,-5],[0,-7],[-1,-3],[0,-1],[-1,1],[0,5],[0,2],[-1,9],[-1,1],[-2,-2],[0,3],[0,6],[-2,0],[0,2],[-1,2],[0,1],[0,1],[0,3],[1,1],[0,2],[0,2],[-1,0],[-1,4],[-1,-3],[0,-5],[0,-3],[-1,-5],[-1,-1],[0,3],[0,4],[-1,2],[-1,0],[0,-4],[-1,-1],[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,-3],[0,-7],[0,-6],[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],[0,4],[-1,5],[1,2],[0,7],[0,4],[-1,1],[0,-3],[-1,-5],[-1,1],[-1,3],[-2,0],[0,3],[-2,1],[0,-2],[0,-3],[-1,-2],[0,-6],[0,-1],[-2,-3],[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]],[[3003,4416],[1,-1],[0,-1],[0,-1],[-1,2],[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,2],[0,1],[-1,0],[0,-1],[-1,-5],[0,-1],[0,1],[-1,-1],[0,2],[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]],[[3003,4446],[0,1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-2],[0,-3],[0,-1],[0,-3],[0,-1],[-1,1],[0,2],[0,2],[1,1],[0,1],[0,1],[0,2],[-1,0],[0,4],[0,1]],[[3002,4409],[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],[0,-1],[0,-1],[0,-1],[0,2]],[[2996,4353],[0,4],[0,1],[0,2],[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]],[[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]],[[1814,4509],[0,-27],[0,-20],[0,-139],[0,-45],[0,-6],[0,-41],[0,-3],[0,-70],[0,-40],[0,-68],[-1,-162],[0,-19],[0,-5],[0,-1],[0,-26],[0,-47],[0,-28],[1,-36],[-1,-10],[0,-2],[0,-26],[0,-16],[0,-1],[0,-2],[0,-2],[0,-23],[0,-14],[0,-2],[0,-36],[0,-1],[0,-16]],[[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]],[[3021,4708],[0,-5],[-1,-6],[0,-1],[-1,-1],[-1,-10],[0,-5],[0,-4],[0,-1],[0,-2]],[[2972,4646],[0,1],[0,5],[-1,2],[0,2],[-1,5],[-1,9],[0,2],[4,26],[0,3],[0,17],[0,1],[0,3],[-1,5],[1,9],[0,4],[1,16],[0,8],[0,6],[0,7],[0,8],[0,6],[0,3],[2,15],[0,3],[0,1],[0,2],[0,13],[1,6],[1,0],[0,3],[1,4],[1,7],[0,5],[0,10],[2,6],[0,6],[0,3],[0,1],[0,3],[0,8],[1,15],[1,8],[-1,2],[0,4],[0,15],[0,2],[0,1],[2,7],[0,1],[4,6],[1,1],[0,3],[1,3],[0,2],[1,0],[0,-1],[1,2],[1,3],[2,11],[1,4],[1,15],[-1,7],[-1,13],[-1,6],[0,4],[0,1],[2,10],[2,18],[0,1],[-1,7],[0,7],[0,1],[0,1],[0,1],[1,1],[1,1],[-1,0]],[[2278,1695],[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],[1,1],[0,1],[0,2],[0,4],[-1,2],[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]],[[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,3],[0,1],[-1,0],[0,-1],[0,-1],[-1,-2],[-2,-3],[-1,-1],[-1,-1],[-1,1],[0,3],[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],[-1,-5],[0,-2],[0,-2],[0,-2],[1,-3],[0,-2],[-1,-2],[0,-3],[0,-3],[0,-1],[0,-2],[0,-4],[1,-2],[0,-1],[2,-1],[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,2],[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,3],[0,1],[-2,-2],[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],[-1,-5],[0,-3],[0,-3],[0,-5],[0,-1],[0,-1],[0,-3],[0,-1],[0,-2],[0,-5],[0,-1],[0,-4],[-1,-6],[-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],[-1,-1],[-1,-2],[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],[-4,4],[-1,2],[-1,2],[-1,5],[-2,8],[-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,2],[-1,13],[-3,27],[0,2],[-1,6],[-1,3],[0,1],[-1,-1],[-2,6]],[[1897,4510],[0,-79],[0,-38],[0,-3],[0,-20],[0,-48],[15,0],[13,0],[1,0],[4,0],[4,0],[1,0],[13,1],[5,0]],[[2948,5073],[4,0],[3,1],[2,0],[4,0],[5,0],[3,-1],[6,-1],[7,0],[6,1],[3,0],[8,0]],[[3173,81],[1,1],[0,-2],[-1,1]],[[3171,87],[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],[0,1],[0,2],[-1,4],[1,1]],[[3164,43],[1,1],[1,2],[0,1],[1,1],[1,3],[1,1],[1,-1],[1,-2],[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]],[[3163,95],[1,0],[0,-1],[0,-1],[-1,1],[0,1]],[[3163,69],[1,0],[0,-1],[-1,0],[0,1]],[[3137,2],[1,1],[0,-2],[-1,-1],[0,2]],[[3117,90],[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],[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]],[[3098,42],[0,1],[1,1],[0,-1],[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]]],"transform":{"scale":[0.0358961706170617,0.005347309495349526],"translate":[-179.14733999999999,17.884812999999998]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment