Skip to content

Instantly share code, notes, and snippets.

@maggie-lee
Created October 1, 2014 21:03
Show Gist options
  • Save maggie-lee/61c03c3d646a09d5a012 to your computer and use it in GitHub Desktop.
Save maggie-lee/61c03c3d646a09d5a012 to your computer and use it in GitHub Desktop.
Dekalb cities draft
<!DOCTYPE html>
<meta charset="utf-8">
<style>
#south_dekalb1 { /*city comprising south dekalb*/
fill: gray ;
opacity: 0.5;
}
#lakeside_tucker1 {
fill: gainsboro;
opacity: 0.5;
}
#lakeside_tucker2 {
fill: dimGray;
opacity: 0.5;
}
#brookhaven1 {
fill: purple;
opacity: 0.5;
}
/* CSS goes here. */
</style>
<body>
Proposed cities are in gray shades
<script src="http://d3js.org/d3.v3.min.js"></script>
<script>document.write('<script src="http://' + (location.host || 'localhost').split(':')[0] + ':35729/livereload.js?snipver=1"></' + 'script>')</script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script>
var width = 1500,
height = 1500;
var scale = 100000;
var svg = d3.select("body").append("svg")
.attr("width", width)
.attr("height", height);
var color = d3.scale.category20();
d3.json("topo_cities.json", function(error, dek) {
if (error) return console.error(error);
console.log("ok dek:", dek)
var projection = d3.geo.mercator()
.scale(scale)
.rotate([84.2, -33.9, 0]);
var path = d3.geo.path()
.projection(projection);
svg.selectAll("#cities")
.data(topojson.feature(dek, dek.objects['cities']).features)
.enter().append("path")
.attr("id", function (d, i) {return "cities" + i; })
.attr("d", path)
.attr("fill", function (d, i) {return color(i);});
});
d3.json("topo_brookhaven.json", function(error, bkh) {
if (error) return console.error(error);
console.log("ok dek:", bkh)
var projection = d3.geo.mercator()
.scale(scale)
.rotate([84.2, -33.9, 0]);
var path = d3.geo.path()
.projection(projection);
svg.selectAll("#brookhaven")
.data(topojson.feature(bkh, bkh.objects['brookhaven']).features)
.enter().append("path")
.attr("id", function (d, i) {return "brookhaven" + i; })
.attr("d", path)
.attr("opacity", 0);
});
d3.json("south_dekalb.json", function(error, south_dekalb) {
if (error) return console.error(error);
console.log("ok sdk", south_dekalb);
var projection = d3.geo.mercator()
.scale(scale)
.rotate([84.2, -33.9, 0]) // l/r, u/d, yawl
var path = d3.geo.path()
.projection(projection);
svg.selectAll("#south_dekalb")
.data(topojson.feature(south_dekalb, south_dekalb.objects['south_dekalb']).features)
.enter().append("path")
.attr("id", function (d, i) {return "south_dekalb" + i; })
.attr("d", path)
.attr("opacity", 0);
});
d3.json("lakeside-tucker.json", function(error, lakeside_tucker) {
if (error) return console.error(error);
console.log("ok lakeside:" , lakeside_tucker)
var projection2 = d3.geo.mercator()
.scale(scale)
.rotate([84.2, -33.9, 0]) // l/r, u/d, yawl
console.log("lakeside features:", lakeside_tucker.objects['lakeside-tucker']);
var path2 = d3.geo.path()
.projection(projection2);
svg.selectAll("#lakeside_tucker")
.data(topojson.feature(lakeside_tucker, lakeside_tucker.objects['lakeside-tucker']).features)
.enter().append("path")
.attr("id", function (d, i) {return "lakeside_tucker" + i; })
.attr("d", path2)
.attr("opacity", 0);
});
</script>
<!-- // var projection = d3.geo.mercator()
// .scale(scale)
// .rotate([84.2, -33.9, 0]) // l/r, u/d, yawl
// var path = d3.geo.path()
// .projection(projection);
// svg.selectAll("#south_dekalb")
// .data(topojson.feature(south_dekalb, south_dekalb.objects['south_dekalb']).features)
// .enter().append("path")
// .attr("id", function (d, i) {return "south_dekalb" + i; })
// .attr("d", path)
// .attr("opacity", 0);
// });
-->
<!-- // d3.json("lakeside-tucker.json", function(error, lakeside_tucker) {
// if (error) return console.error(error);
// console.log("ok lakeside:" , lakeside_tucker)
// var projection2 = d3.geo.mercator()
// .scale(scale)
// .rotate([84.2, -33.9, 0]) // l/r, u/d, yawl
// console.log("lakeside features:", lakeside_tucker.objects['lakeside-tucker']);
// var path2 = d3.geo.path()
// .projection(projection2);
// svg.selectAll("#lakeside_tucker")
// .data(topojson.feature(lakeside_tucker, lakeside_tucker.objects['lakeside-tucker']).features)
// .enter().append("path")
// .attr("id", function (d, i) {return "lakeside_tucker" + i; })
// .attr("d", path2)
// .attr("opacity", 0);
// }); -->
<!-- d3.json("050_002.json", function(error, counties) {
if (error) return console.error(error);
console.log("ok counties:", counties)
var projection = d3.geo.mercator()
.scale(scale)
.rotate([84.2, -33.9, 0]);
var path = d3.geo.path()
.projection(projection);
svg.append("path")
.datum(topojson.feature(counties, counties.objects['050_00']))
.attr("d", path)
// svg.selectAll("#counties")
// .data(topojson.feature(counties, counties.objects.geometry))
// .enter().append("path")
// .attr("id", "counties")
// .attr("d", path)
// .attr("opacity", 0.1)
// .attr("stroke", "black")
// .attr("fill", "null");
}); -->
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"brookhaven":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[0],[1]]},{"type":"Polygon","arcs":[[-2]]}]}},"arcs":[[[3,9948],[-3,17],[2,0],[1,0],[1,0],[1,0],[2,-1],[2,0],[2,0],[1,0],[2,0],[1,0],[1,0],[3,0],[1,0],[1,0],[9,0],[31,0],[6,0],[4,0],[7,0],[19,-1],[6,0],[1,0],[1,0],[1,0],[2,0],[7,0],[19,0],[6,0],[2,0],[3,0],[1,0],[1,0],[1,0],[5,0],[14,-1],[4,0],[1,0],[1,0],[1,0],[1,0],[5,0],[1,0],[6,0],[23,0],[1,0],[4,0],[2,0],[3,-1],[1,0],[2,0],[3,0],[14,0],[4,0],[1,0],[2,0],[1,0],[4,0],[5,0],[9,0],[4,0],[3,0],[10,0],[2,0],[1,0],[1,0],[4,0],[1,0],[2,0],[5,0],[1,0],[1,0],[1,0],[11,0],[33,0],[11,0],[1,0],[4,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[4,0],[10,0],[2,0],[1,0],[4,0],[3,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[9,0],[1,0],[6,0],[1,0],[1,0],[5,0],[1,0],[2,0],[5,0],[1,0],[1,0],[2,0],[7,0],[3,0],[10,0],[1,0],[21,0],[8,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[4,0],[1,0],[1,0],[3,0],[1,0],[2,0],[1,0],[2,0],[6,0],[3,0],[1,0],[1,0],[3,0],[2,0],[2,0],[1,0],[2,1],[1,0],[1,0],[1,0],[3,0],[11,0],[3,0],[1,0],[1,0],[1,0],[7,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[5,1],[1,0],[2,0],[2,0],[1,0],[2,0],[1,0],[1,0],[2,0],[2,0],[2,0],[1,0],[2,0],[1,0],[1,0],[4,0],[1,0],[1,0],[3,0],[9,0],[1,0],[1,0],[1,0],[1,0],[4,0],[2,0],[3,0],[1,0],[0,1],[10,0],[4,0],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[4,0],[2,0],[1,0],[4,0],[2,0],[1,0],[2,0],[1,0],[3,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[3,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[3,0],[8,1],[3,0],[1,0],[2,0],[1,0],[1,-1],[1,0],[1,1],[2,0],[1,0],[0,-1],[1,0],[3,0],[1,1],[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],[3,1],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[7,-1],[2,0],[1,0],[3,0],[1,0],[2,0],[1,1],[1,-1],[1,0],[1,0],[1,0],[2,1],[1,0],[0,-1],[2,0],[1,0],[2,0],[0,1],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[6,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[6,0],[3,0],[2,0],[1,0],[2,0],[5,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[3,0],[1,0],[1,0],[2,0],[6,0],[2,0],[1,0],[2,0],[1,0],[1,0],[4,1],[2,0],[1,0],[2,0],[1,0],[8,-1],[3,0],[3,0],[4,0],[11,1],[3,0],[1,0],[3,0],[1,0],[1,0],[1,0],[3,0],[1,0],[2,0],[1,0],[1,0],[1,0],[4,0],[1,0],[1,0],[1,0],[5,0],[1,0],[2,0],[3,0],[2,0],[1,0],[5,0],[1,0],[2,0],[3,0],[2,0],[1,0],[1,0],[2,0],[1,0],[10,1],[3,0],[1,0],[1,0],[4,0],[2,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[3,1],[1,0],[2,0],[8,0],[2,0],[1,0],[1,0],[1,0],[4,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[4,0],[2,0],[1,0],[1,0],[2,0],[2,0],[3,0],[1,0],[1,0],[1,0],[1,0],[1,0],[7,0],[2,0],[5,0],[15,0],[5,0],[8,0],[1,0],[21,0],[1,0],[6,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[4,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[3,0],[1,0],[2,0],[2,0],[4,0],[4,0],[3,0],[3,0],[3,0],[1,0],[8,1],[3,0],[2,0],[3,0],[10,0],[5,0],[5,0],[6,0],[2,0],[1,0],[1,0],[4,0],[12,0],[1,0],[4,0],[2,0],[3,0],[4,0],[10,1],[3,0],[1,0],[1,0],[3,0],[1,0],[1,0],[2,0],[1,0],[4,0],[13,0],[5,0],[1,0],[3,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[4,0],[1,0],[6,0],[18,0],[6,0],[1,0],[1,0],[2,0],[8,0],[2,0],[1,0],[4,1],[1,0],[2,0],[1,0],[8,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[3,0],[1,0],[1,0],[3,0],[11,0],[1,0],[2,0],[1,0],[1,0],[2,0],[2,0],[3,0],[1,0],[2,0],[5,0],[1,0],[1,0],[1,0],[1,0],[1,0],[6,0],[2,0],[2,0],[8,-1],[2,0],[3,0],[6,0],[2,0],[1,0],[5,1],[17,0],[5,0],[0,-1],[2,0],[6,0],[2,0],[3,0],[2,0],[1,0],[5,0],[3,0],[8,0],[2,1],[21,-1],[7,0],[1,0],[1,0],[4,0],[1,0],[3,0],[8,0],[2,0],[1,0],[8,0],[24,1],[8,0],[1,-1],[3,0],[8,0],[3,1],[0,-1],[1,0],[1,1],[1,0],[4,0],[2,0],[0,-1],[1,0],[3,0],[2,0],[11,0],[3,0],[1,0],[2,0],[2,0],[1,0],[7,0],[4,0],[9,0],[11,0],[3,0],[1,0],[13,0],[9,0],[1,0],[1,0],[4,0],[2,0],[0,1],[22,0],[32,0],[20,-1],[3,0],[3,0],[0,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[3,0],[1,0],[1,0],[1,0],[2,0],[1,0],[3,0],[1,0],[1,0],[2,0],[1,0],[3,0],[10,0],[2,0],[2,0],[1,0],[4,0],[1,0],[1,0],[2,0],[5,0],[2,0],[4,0],[2,0],[19,0],[5,0],[1,0],[3,0],[8,0],[2,0],[1,0],[2,0],[7,0],[2,0],[2,0],[7,0],[1,0],[1,0],[1,0],[6,0],[1,0],[3,0],[9,0],[3,0],[1,0],[11,0],[36,0],[12,0],[1,0],[3,0],[1,0],[1,0],[5,0],[13,0],[2,0],[5,0],[7,0],[2,0],[19,0],[4,0],[3,0],[2,0],[1,0],[4,0],[1,0],[1,0],[3,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[3,0],[10,0],[1,0],[2,0],[6,0],[4,0],[11,0],[5,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[3,0],[13,0],[3,0],[1,0],[1,0],[3,0],[1,0],[1,0],[9,0],[2,0],[17,0],[11,0],[10,0],[5,0],[16,0],[5,0],[1,0],[4,0],[1,0],[3,0],[7,0],[2,0],[1,0],[2,0],[1,0],[2,0],[6,0],[2,0],[6,0],[1,0],[6,0],[18,0],[1,0],[1,0],[42,0],[1,0],[1,0],[5,0],[2,0],[9,0],[2,0],[4,0],[1,0],[3,0],[17,0],[1,0],[11,0],[1,0],[8,0],[3,0],[1,0],[4,0],[1,0],[9,0],[13,0],[9,0],[3,0],[11,0],[10,0],[4,0],[1,0],[5,0],[1,0],[3,0],[2,0],[2,0],[2,0],[4,0],[2,0],[1,0],[1,0],[1,0],[1,0],[4,0],[1,0],[1,0],[4,0],[1,0],[1,0],[1,0],[3,0],[5,0],[3,0],[5,0],[3,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[6,0],[1,0],[1,0],[1,0],[3,0],[1,0],[1,0],[2,0],[1,0],[3,0],[8,0],[3,0],[3,0],[1,0],[5,0],[2,0],[3,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[6,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[6,0],[1,0],[1,0],[6,0],[1,0],[1,0],[3,0],[6,0],[4,0],[2,0],[4,0],[2,0],[1,0],[2,0],[3,0],[1,0],[2,0],[4,0],[10,0],[4,0],[7,0],[23,-1],[6,0],[1,0],[1,0],[1,0],[5,0],[2,0],[1,0],[1,0],[3,0],[10,0],[2,0],[1,0],[2,0],[6,0],[2,0],[2,0],[5,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[4,0],[1,0],[4,0],[12,0],[1,0],[3,0],[2,0],[1,0],[4,0],[1,0],[1,0],[1,0],[5,0],[2,0],[1,0],[6,0],[1,0],[1,0],[1,0],[3,0],[1,0],[1,0],[4,0],[1,0],[1,0],[1,0],[1,0],[4,0],[12,0],[4,0],[1,0],[1,0],[1,0],[3,0],[1,0],[2,0],[1,0],[1,0],[1,0],[5,0],[1,0],[19,0],[6,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[5,0],[2,0],[2,0],[2,0],[10,0],[4,0],[2,0],[1,0],[1,0],[5,0],[2,0],[1,0],[3,0],[3,0],[4,0],[7,0],[5,0],[1,0],[3,0],[1,0],[3,0],[1,0],[3,0],[10,0],[3,0],[2,0],[1,0],[3,0],[2,0],[2,0],[2,0],[3,0],[2,0],[1,0],[4,0],[2,0],[1,0],[3,0],[1,0],[4,0],[7,0],[6,0],[4,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[6,0],[16,0],[6,0],[9,0],[2,0],[2,0],[5,0],[1,0],[11,0],[1,0],[2,0],[7,-1],[2,0],[2,0],[5,0],[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],[12,0],[1,0],[4,0],[11,0],[1,0],[1,0],[1,0],[4,0],[1,0],[1,0],[1,0],[1,0],[1,0],[3,0],[2,0],[1,0],[3,0],[2,0],[7,0],[2,0],[3,0],[3,0],[5,0],[5,0],[4,0],[4,0],[8,0],[1,0],[1,0],[3,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[3,0],[2,0],[2,0],[1,0],[1,0],[1,0],[1,0],[3,0],[6,0],[2,0],[3,0],[4,0],[1,0],[1,0],[8,0],[1,0],[4,0],[1,0],[4,0],[1,0],[1,0],[3,0],[3,0],[6,0],[11,0],[5,0],[1,0],[1,0],[1,0],[3,0],[5,0],[4,0],[3,0],[2,0],[4,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[4,0],[2,0],[2,0],[1,0],[3,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[3,0],[1,0],[1,0],[1,0],[2,0],[1,0],[5,0],[1,0],[1,0],[2,0],[2,0],[4,0],[2,1],[2,0],[2,0],[4,0],[2,0],[2,0],[1,0],[4,0],[2,0],[1,0],[1,0],[1,0],[3,0],[9,0],[3,0],[3,0],[8,-1],[3,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[8,0],[3,0],[1,0],[3,0],[1,0],[2,0],[5,0],[1,0],[1,0],[1,0],[1,0],[2,0],[5,0],[2,0],[1,0],[1,0],[2,0],[6,0],[1,0],[1,0],[1,0],[2,0],[4,0],[9,0],[2,0],[1,0],[1,0],[2,0],[1,0],[4,0],[12,0],[4,0],[6,0],[14,0],[5,0],[2,0],[4,0],[2,0],[1,0],[2,0],[2,0],[8,0],[2,0],[6,0],[20,0],[7,0],[3,0],[3,0],[6,0],[3,0],[1,0],[1,0],[1,0],[1,0],[3,0],[10,0],[3,0],[1,0],[2,0],[1,0],[1,0],[5,0],[1,0],[3,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[15,0],[3,0],[2,0],[5,0],[5,0],[2,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[11,0],[4,0],[2,0],[6,0],[2,0],[4,0],[2,0],[2,0],[8,0],[8,0],[3,0],[3,0],[1,0],[2,0],[1,0],[1,0],[2,0],[3,0],[1,0],[4,0],[6,0],[4,0],[4,0],[21,0],[1,0],[2,0],[3,0],[1,0],[1,0],[4,0],[12,0],[4,0],[1,0],[1,0],[1,0],[3,0],[2,0],[3,0],[2,0],[4,0],[2,-1],[1,0],[3,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[1,0],[2,0],[9,0],[28,0],[10,0],[2,0],[7,0],[2,0],[2,0],[5,0],[1,0],[5,0],[13,0],[4,0],[1,0],[4,0],[1,0],[18,-1],[8,0],[1,0],[1,0],[1,0],[1,0],[4,0],[13,0],[4,0],[1,0],[3,0],[1,0],[5,0],[11,0],[4,0],[6,0],[-1,3],[0,9],[3,0],[3,0],[7,0],[22,0],[7,0],[1,0],[5,0],[8,0],[7,0],[6,0],[5,0],[2,0],[14,0],[6,0],[3,0],[11,0],[3,0],[3,0],[6,0],[3,0],[3,0],[1,0],[1,0],[1,0],[1,0],[4,0],[1,0],[1,0],[2,0],[4,0],[2,0],[59,1],[4,0],[15,0],[1,0],[5,0],[5,0],[10,0],[2,0],[4,0],[11,1],[6,0],[8,0],[4,0],[3,0],[10,0],[10,0],[1,0],[19,1],[27,0],[6,0],[2,0],[1,0],[13,0],[4,0],[1,1],[1,0],[1,0],[19,0],[11,0],[8,0],[3,0],[10,0],[38,1],[5,0],[15,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[18,1],[3,0],[1,0],[9,0],[1,0],[1,0],[2,0],[3,0],[1,0],[1,0],[1,0],[5,1],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[2,0],[6,0],[13,0],[9,0],[1,0],[1,0],[1,0],[4,0],[5,0],[3,1],[1,0],[1,0],[2,0],[4,0],[3,0],[5,0],[5,0],[4,0],[6,0],[1,0],[1,0],[16,0],[2,0],[12,1],[3,0],[2,0],[1,0],[10,0],[5,0],[2,0],[6,0],[3,0],[1,1],[19,0],[14,1],[22,0],[11,1],[18,0],[11,0],[15,1],[4,0],[7,0],[6,0],[14,0],[4,1],[2,0],[1,0],[3,0],[23,0],[3,0],[2,1],[3,0],[1,0],[7,0],[1,0],[1,0],[1,0],[14,0],[3,0],[13,1],[3,0],[12,0],[11,0],[1,0],[1,0],[12,1],[7,0],[4,0],[1,0],[2,0],[2,0],[56,1],[1,0],[25,0],[1,-1],[1,0],[0,-1],[1,-1],[2,-1],[2,-1],[1,0],[2,-1],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[0,-2],[-1,0],[-1,-1],[-1,-1],[0,-1],[1,0],[0,-1],[2,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[2,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-3,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-2,-2],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-2,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,2],[-1,1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-2],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[-2,-2],[-1,-1],[-2,-3],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[1,-2],[0,-1],[1,0],[2,-1],[1,-1],[1,0],[1,0],[2,-1],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,-1],[-2,0],[-3,0],[-1,1],[-1,0],[-1,0],[0,-1],[0,-2],[1,-1],[1,-1],[2,-3],[2,-1],[1,-1],[1,-1],[1,-2],[2,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,1],[-2,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,1],[-2,1],[-1,1],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,0],[1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,-1],[0,-1],[0,-1],[2,-1],[2,-1],[1,-1],[1,-1],[2,-3],[1,-1],[0,-1],[1,-2],[1,-1],[0,-1],[1,-1],[1,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[0,-1],[2,-2],[0,-1],[0,-2],[1,-1],[0,-1],[2,-2],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[-2,2],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[0,-1],[-3,-1],[-1,0],[0,-1],[-2,0],[-2,-2],[-1,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-2],[1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-4,3],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[2,-3],[0,-1],[1,-1],[0,-1],[-1,-2],[0,-2],[0,-1],[0,-2],[1,-2],[1,-1],[1,-1],[0,-1],[-1,-1],[-1,-2],[0,-1],[-1,0],[-1,0],[-2,0],[-3,1],[-1,0],[0,1],[0,1],[-1,0],[-2,3],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-3,-3],[-1,0],[-1,-1],[-2,-2],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-2,0],[-2,-1],[-1,0],[0,1],[-1,1],[-1,2],[-1,1],[-1,1],[-1,0],[0,1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[1,-1],[0,-2],[0,-1],[1,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,-2],[1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-4,-5],[-1,-1],[-1,0],[-1,-1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[1,0],[0,1],[1,1],[0,2],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-2,-2],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[-2,1],[-2,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-2,-2],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[-1,-1],[-3,1],[-2,0],[0,1],[-1,0],[-4,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[2,-1],[2,0],[1,0],[2,0],[1,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[0,-1],[-2,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-2,1],[-3,1],[-1,0],[0,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[2,-1],[3,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,2],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,-1],[-1,-2],[-1,-3],[0,-1],[-1,-2],[-1,-2],[0,-1],[-1,-1],[-1,-2],[0,-1],[0,-2],[-1,0],[0,-2],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[2,-1],[2,0],[1,-1],[1,0],[0,-1],[0,-3],[0,-2],[0,-4],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-2,-2],[-2,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-2,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-3,2],[-3,2],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-2,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[2,-4],[0,-1],[-1,0],[0,-1],[-1,-1],[-3,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-2,0],[-2,1],[-1,0],[0,1],[0,1],[0,1],[1,1],[1,0],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[-2,0],[-1,1],[-2,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-2,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[2,-2],[1,-2],[1,-1],[1,-1],[1,0],[1,0],[1,0],[2,0],[2,0],[1,-1],[1,-2],[0,-2],[0,-1],[-1,0],[0,-2],[-1,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[-3,-3],[-1,-1],[-1,0],[-2,-1],[-2,0],[-1,0],[-2,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-2,-1],[-2,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-2,-2],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-2,-2],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[1,-1],[0,-2],[2,-4],[0,-1],[1,-2],[0,-2],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[3,-5],[2,-2],[1,-2],[1,-1],[0,-1],[1,-1],[0,-1],[-2,-3],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[0,-1],[-2,-1],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-2],[0,-3],[-1,0],[0,-1],[-1,-1],[-2,0],[-1,-1],[-3,-2],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,1],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-2],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-4],[0,-2],[0,-2],[0,-2],[0,-3],[1,-2],[0,-2],[0,-2],[0,-1],[1,-2],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[1,-3],[0,-1],[1,-1],[0,-1],[3,-4],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[-1,-2],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,0],[1,-1],[2,-1],[2,0],[8,-2],[3,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-2],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[2,-3],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-3,-3],[-1,-1],[-2,-2],[-2,-2],[1,-2],[0,-1],[1,0],[1,0],[1,-2],[1,0],[1,-1],[2,0],[1,0],[2,0],[3,1],[2,0],[2,1],[2,0],[3,1],[2,0],[3,-1],[2,-1],[1,0],[5,-2],[0,-1],[2,0],[2,-2],[4,-2],[1,-1],[1,0],[0,-1],[2,-1],[2,-3],[1,-3],[0,-1],[1,-4],[1,-2],[1,-1],[2,-1],[2,0],[3,1],[1,0],[1,0],[3,2],[3,0],[2,0],[2,0],[3,-1],[2,-1],[3,-2],[3,-3],[1,-1],[0,-1],[0,-4],[0,-1],[0,-1],[1,-2],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[2,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[3,-3],[1,-2],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[2,-1],[2,-1],[2,-1],[1,-1],[2,-1],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[2,-1],[1,0],[3,-1],[0,-1],[1,0],[1,-1],[1,-1],[2,0],[2,-1],[1,-1],[1,0],[1,0],[3,-1],[1,0],[2,0],[1,0],[6,-1],[2,-1],[1,0],[3,-1],[2,0],[1,-1],[2,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,-1],[1,-1],[1,-1],[1,0],[0,-2],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[2,-2],[0,-1],[0,-2],[1,-2],[0,-2],[1,-1],[0,-1],[2,0],[1,-1],[1,0],[1,-1],[2,0],[1,-1],[1,0],[1,0],[2,-2],[0,-1],[-1,-1],[0,-2],[-1,0],[0,-1],[-1,-1],[-1,-2],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[9,-5],[1,0],[2,-2],[2,-1],[1,-1],[1,-1],[2,-2],[2,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,0],[2,1],[1,-1],[3,0],[2,-1],[2,-2],[1,0],[2,0],[2,1],[10,2],[2,0],[1,0],[7,0],[3,0],[3,0],[2,-1],[8,-2],[6,-2],[2,0],[2,-1],[2,-2],[2,-2],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[2,0],[2,1],[1,0],[1,1],[2,0],[1,1],[1,0],[1,1],[2,1],[2,0],[2,1],[1,0],[1,0],[1,1],[2,1],[2,0],[0,1],[2,0],[4,0],[2,0],[1,1],[3,-1],[3,0],[2,0],[1,0],[2,0],[2,0],[2,1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[2,0],[2,-1],[3,-2],[4,-3],[2,0],[2,-1],[2,0],[2,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-2],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-2,0],[-2,0],[-2,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-3],[0,-2],[0,-1],[1,0],[0,-1],[2,-1],[1,-1],[1,0],[1,0],[2,-1],[4,0],[2,-1],[3,0],[2,-1],[2,0],[1,0],[2,0],[1,0],[1,0],[2,-1],[2,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[-1,-2],[-1,0],[-3,-5],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[3,0],[3,0],[2,0],[2,-1],[3,-1],[2,-2],[1,-1],[2,-1],[2,-1],[1,0],[1,0],[1,-1],[1,0],[2,-1],[2,-1],[1,-1],[1,-1],[1,-1],[0,-2],[1,-1],[1,-1],[1,-2],[1,-2],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,0],[2,-1],[3,-1],[2,0],[0,-1],[1,0],[2,-1],[2,1],[1,0],[1,1],[0,1],[1,1],[1,0],[1,1],[1,0],[2,0],[3,1],[1,-1],[2,0],[1,-1],[1,0],[3,-2],[1,0],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[-2,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[1,-2],[2,-1],[0,-1],[2,0],[2,0],[2,0],[2,1],[2,0],[1,-1],[2,0],[1,-1],[1,0],[2,-2],[2,-2],[2,-1],[1,-1],[3,-3],[1,-1],[-1,-3],[0,-2],[1,-2],[2,-4],[1,-1],[2,-1],[1,0],[2,0],[2,0],[1,-1],[1,-2],[2,-3],[0,-2],[-1,-1],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,0],[2,0],[1,0],[1,-1],[1,0],[2,0],[0,1],[1,0],[1,0],[1,1],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,-1],[2,0],[2,0],[1,0],[1,0],[2,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[3,-3],[2,-2],[3,-3],[4,-3],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[-2,-1],[-1,-1],[-3,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-4,-3],[0,-1],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[1,0],[3,0],[2,-1],[6,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[2,-6],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[2,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[2,-1],[0,-1],[1,-1],[1,-1],[3,-1],[2,-1],[1,-1],[2,0],[3,-1],[1,-1],[1,1],[3,1],[3,1],[6,2],[1,1],[1,0],[1,0],[2,0],[2,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-2],[1,-2],[2,-2],[1,-1],[-1,0],[1,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[2,-1],[0,-1],[2,0],[2,-2],[1,-2],[1,0],[1,-2],[1,-1],[2,-1],[2,-2],[2,-1],[3,-1],[1,-1],[1,-1],[1,0],[4,-3],[1,0],[0,-1],[1,0],[2,-1],[1,0],[1,0],[2,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[3,-1],[1,-1],[4,-1],[1,0],[1,-1],[2,-1],[1,-1],[1,-1],[1,-1],[3,-2],[1,0],[2,0],[1,-1],[1,0],[3,0],[2,-1],[1,0],[1,-2],[3,0],[3,0],[18,-8],[1,0],[1,0],[1,0],[3,0],[1,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[0,2],[1,0],[0,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,1],[3,0],[3,0],[1,1],[7,3],[4,1],[1,0],[2,1],[1,-1],[2,-1],[1,-1],[1,0],[4,-5],[1,0],[1,0],[2,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,1],[1,2],[2,0],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,-2],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[2,0],[2,0],[2,1],[1,0],[1,0],[1,0],[1,0],[0,1],[2,0],[1,3],[0,1],[2,1],[2,1],[0,1],[1,1],[2,2],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[4,0],[2,-1],[1,0],[1,0],[2,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[2,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[2,-1],[0,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[2,0],[0,1],[1,0],[2,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[2,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[2,-3],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[2,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[3,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[3,1],[0,-1],[3,-1],[1,0],[0,-1],[1,0],[1,-1],[2,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[2,-2],[1,-1],[1,0],[-1,-1],[-1,-3],[-1,-1],[3,-9],[0,-1],[1,-2],[0,-1],[1,-1],[1,-5],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-3],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-2],[0,-1],[1,-3],[1,-2],[1,0],[2,-1],[0,-1],[5,-3],[1,-2],[1,-2],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-2],[1,-5],[0,-1],[0,-2],[0,-1],[0,-1],[1,-4],[1,-1],[1,-3],[1,-4],[3,-6],[1,-3],[1,-1],[1,-2],[0,-1],[2,-4],[0,-1],[1,-2],[0,-1],[-1,-7],[0,-3],[0,-2],[1,-3],[2,-3],[5,-8],[2,-4],[2,-5],[0,-2],[1,-11],[0,-3],[0,-4],[0,-6],[0,-3],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-2],[1,0],[0,-1],[2,-1],[7,-4],[1,0],[1,-1],[3,-1],[2,0],[2,0],[1,-2],[3,-2],[3,-2],[2,-1],[1,-1],[9,-6],[2,0],[1,0],[1,-1],[1,-1],[-1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[4,-2],[2,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,-4],[0,-1],[0,-1],[0,-1],[-1,-2],[-1,1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[2,-1],[3,-3],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[2,-2],[3,-1],[2,-3],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,-2],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[2,-2],[3,-2],[2,-2],[1,0],[1,-1],[2,0],[1,-1],[0,-1],[2,-3],[0,-1],[1,-1],[1,-1],[2,-2],[1,0],[0,-1],[1,-1],[1,-1],[0,-2],[1,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-5],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[4,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-3],[1,-2],[0,-2],[0,-2],[1,-1],[1,-2],[0,-2],[1,-1],[0,-7],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-3],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[-1,-1],[-2,-2],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[5,-6],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[-1,-5],[-1,-1],[0,-2],[0,-1],[0,-2],[0,-3],[1,0],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-2],[3,-4],[2,-3],[4,-6],[3,-4],[0,-1],[1,-1],[0,-1],[1,-1],[1,-2],[0,-2],[1,-1],[0,-1],[0,-2],[0,-1],[1,-2],[-1,-1],[0,-3],[0,-2],[0,-2],[0,-2],[0,-2],[0,-4],[0,-2],[0,-2],[-1,-1],[1,-2],[0,-2],[0,-2],[1,0],[0,-2],[1,-1],[0,-1],[1,-2],[1,-1],[4,-4],[2,-3],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[2,-4],[1,-3],[1,-1],[0,-1],[1,-1],[1,-2],[0,-2],[1,-1],[0,-1],[1,-2],[4,-13],[2,-5],[1,-3],[4,-5],[7,-5],[2,-1],[7,-5],[7,-5],[1,0],[4,-1],[4,-2],[2,0],[1,-1],[3,0],[1,0],[2,0],[2,0],[3,0],[1,0],[1,0],[4,-1],[1,-1],[1,-2],[6,-6],[2,0],[2,-1],[2,0],[1,-1],[7,-2],[2,0],[3,-2],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[2,-2],[0,-1],[3,-3],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[2,-2],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[1,-2],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[-1,-1],[0,-1],[-2,-3],[-1,-2],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-3],[2,-2],[1,-2],[1,-1],[1,0],[0,-1],[2,-1],[0,-1],[2,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[2,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[2,0],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[2,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-3],[0,-1],[0,-2],[0,-1],[1,-2],[0,-1],[1,-2],[2,-1],[2,-2],[1,-1],[1,0],[5,-4],[1,0],[1,-1],[1,-1],[1,-2],[0,-3],[1,-3],[1,-1],[1,-2],[1,-2],[1,-1],[1,-1],[2,-2],[1,-1],[1,0],[2,-2],[1,0],[0,-1],[1,0],[1,-1],[3,-2],[2,-2],[3,-2],[1,-1],[2,-1],[2,-1],[1,-1],[1,0],[1,-1],[2,0],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[-2,-7],[-1,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-2],[1,-1],[0,-2],[2,-2],[1,-2],[1,-2],[1,-2],[1,-4],[3,-7],[1,-3],[1,-4],[1,-1],[0,-2],[1,0],[1,-2],[1,-1],[2,-2],[1,-1],[2,-1],[1,-1],[2,-1],[1,-1],[2,0],[1,-1],[1,0],[4,-1],[4,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-5,-3],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-3],[0,-2],[0,-1],[0,-2],[0,-1],[1,-2],[1,-2],[1,-2],[2,-3],[2,-2],[1,-1],[3,-3],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[2,-1],[1,-1],[0,-1],[2,-1],[0,-1],[1,-1],[2,-2],[0,-1],[1,-2],[1,-2],[0,-1],[0,-1],[1,-2],[0,-3],[0,-1],[0,-2],[0,-1],[0,-2],[1,-2],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-2],[1,-1],[6,-8],[3,-5],[5,-7],[5,-3],[8,-3],[3,0],[5,-1],[7,-2],[7,1],[4,2],[3,1],[1,1],[4,1],[7,0],[2,0],[6,0],[4,-1],[12,-7],[2,-1],[2,-1],[8,-5],[3,-3],[3,-3],[1,-1],[4,-5],[4,-6],[4,-5],[4,-7],[4,-7],[2,-1],[0,-1],[1,-2],[1,-3],[2,-2],[0,-1],[1,-2],[1,-1],[0,-1],[3,-3],[1,-2],[2,-2],[3,-2],[4,-3],[2,-1],[2,-1],[2,-1],[2,-2],[1,0],[5,-3],[2,-2],[1,0],[3,-2],[2,-2],[2,-2],[2,-2],[3,-2],[2,-2],[3,-3],[7,-7],[1,-1],[3,-1],[1,-1],[2,-1],[2,-2],[9,-5],[2,-1],[1,-2],[1,0],[0,-1],[2,-1],[1,-1],[1,-2],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[2,-1],[1,0],[2,-2],[3,-1],[2,-1],[1,-1],[2,-1],[1,-1],[1,-1],[2,-1],[3,0],[4,-1],[2,-1],[3,-1],[1,-1],[4,-3],[5,-4],[6,-6],[5,-4],[4,-3],[4,-2],[1,0],[4,-2],[4,0],[4,0],[5,0],[1,1],[7,2],[1,0],[6,1],[3,1],[3,0],[5,-1],[4,-1],[3,-1],[4,-3],[8,-9],[1,0],[1,0],[0,-1],[4,-1],[5,-2],[1,-1],[4,-2],[3,-1],[1,0],[4,-2],[4,-3],[2,-2],[1,0],[4,-3],[4,-4],[1,0],[3,-3],[2,-3],[0,-1],[1,0],[2,-2],[3,-2],[5,-3],[1,-1],[2,0],[2,0],[3,-2],[2,-1],[1,-1],[2,0],[2,-1],[1,-1],[1,0],[2,0],[2,-1],[1,0],[1,-1],[1,0],[1,0],[2,-1],[2,0],[1,-1],[1,0],[1,-1],[1,0],[2,-1],[1,0],[1,-1],[2,0],[1,-1],[2,-1],[1,0],[1,-1],[2,-1],[2,-1],[3,-3],[3,-2],[2,-2],[3,-2],[1,-1],[1,-1],[4,-3],[3,-2],[1,-1],[2,-1],[1,-1],[1,0],[2,-1],[1,0],[1,-1],[1,-1],[1,0],[2,-2],[3,-1],[1,0],[2,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-2],[1,-2],[1,-1],[1,0],[0,-1],[1,-1],[2,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[2,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[2,0],[1,0],[1,-1],[1,0],[2,-1],[1,-1],[2,0],[2,-1],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-3],[0,-3],[0,-2],[0,-3],[0,-3],[-1,-3],[0,-3],[0,-2],[0,-1],[0,-3],[0,-1],[0,-2],[2,-2],[0,-1],[3,-2],[2,-1],[1,0],[1,-1],[2,0],[2,1],[1,0],[2,0],[2,0],[2,0],[2,-1],[2,-1],[2,-2],[2,-1],[2,-1],[1,-1],[1,0],[2,-3],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[2,-1],[2,-1],[2,-1],[1,-2],[2,-1],[2,-1],[1,0],[1,-1],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[2,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,-2],[0,-1],[1,-2],[1,-1],[1,-1],[1,0],[1,-1],[2,-1],[2,-1],[1,0],[1,0],[1,0],[1,0],[5,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[2,-1],[1,-2],[1,-4],[0,-1],[2,-8],[1,-5],[0,-1],[0,-1],[3,-4],[2,-3],[2,-4],[1,-2],[1,-2],[0,-1],[1,-1],[1,-1],[0,-1],[1,-3],[1,-3],[0,-1],[0,-2],[0,-1],[-1,-1],[1,-1],[0,-3],[1,-5],[2,-3],[1,-2],[0,-2],[3,-15],[0,-1],[0,-1],[-1,-6],[-2,-6],[0,-1],[0,-1],[1,-3],[2,-2],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[2,-2],[5,-5],[2,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-2],[1,0],[1,-1],[1,-1],[2,-2],[2,-1],[3,-2],[1,-1],[1,-1],[1,-1],[2,-3],[3,-6],[0,-1],[5,-8],[1,-2],[2,-8],[0,-2],[2,-2],[1,-2],[1,-1],[6,-5],[2,-2],[3,-2],[2,-2],[4,-3],[3,-2],[0,-1],[0,-1],[0,-5],[0,-2],[0,-2],[0,-3],[-2,-9],[0,-2],[-1,-4],[0,-2],[0,-1],[1,-2],[1,-2],[1,-4],[1,-1],[1,-6],[0,-1],[0,-1],[0,-1],[1,-3],[1,-4],[1,-3],[1,-3],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,-1],[1,0],[1,-1],[0,-1],[4,-3],[3,-2],[1,-1],[1,-1],[1,-1],[1,-2],[6,-6],[1,0],[7,-7],[5,-4],[2,-1],[3,-2],[2,-1],[1,-1],[4,-1],[4,-1],[3,0],[1,-1],[2,0],[1,0],[5,-1],[4,-1],[1,0],[1,0],[0,-1],[1,0],[2,0],[4,-1],[4,-1],[3,-2],[1,-1],[3,-2],[2,-2],[1,-1],[2,-4],[1,-3],[2,-4],[1,-3],[3,-2],[0,-1],[3,-2],[0,-1],[1,0],[2,-1],[2,-2],[1,0],[3,-2],[1,0],[2,-1],[3,-2],[5,-2],[3,-1],[2,-1],[1,0],[3,-2],[1,0],[2,0],[3,-1],[3,0],[3,1],[2,0],[2,1],[2,1],[0,1],[1,0],[1,2],[1,0],[2,2],[1,1],[3,2],[3,1],[3,2],[1,0],[1,0],[1,1],[1,0],[3,0],[2,0],[3,0],[1,0],[2,0],[2,-1],[2,0],[1,0],[3,-2],[2,-2],[1,-1],[2,-2],[2,-3],[3,-5],[1,-1],[3,-3],[1,-3],[3,-2],[1,-1],[1,-1],[5,-3],[4,-2],[3,-1],[2,-1],[3,-1],[2,0],[1,0],[14,-3],[3,-1],[2,0],[3,-1],[2,0],[4,-1],[0,-1],[3,-1],[4,-2],[2,-1],[2,-2],[5,-4],[1,-1],[5,-4],[4,-3],[6,-5],[4,-2],[2,-1],[4,-1],[1,0],[1,0],[2,0],[4,0],[1,0],[1,0],[2,-1],[1,-1],[19,-20],[1,-3],[1,-1],[1,-3],[2,-5],[2,-3],[2,-2],[1,-1],[2,-1],[2,0],[5,-2],[2,-2],[3,-2],[4,-5],[1,0],[0,-3],[0,-1],[0,-2],[2,-2],[5,-4],[4,-2],[6,-2],[3,-1],[2,-1],[1,0],[0,-1],[1,0],[1,-1],[3,-2],[3,-13],[1,-2],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[2,0],[1,-1],[1,-1],[2,-1],[1,0],[1,-1],[1,-3],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[2,-3],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-4],[5,-7],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-2],[1,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-2],[0,-4],[0,-1],[0,-2],[0,-2],[2,-5],[1,-2],[1,-1],[1,-2],[5,-4],[4,-2],[3,-2],[2,-1],[2,-1],[14,-3],[1,0],[3,-1],[10,-3],[14,-6],[1,0],[0,-1],[1,0],[2,0],[0,-1],[2,0],[1,-1],[3,-2],[2,-1],[12,-5],[4,-2],[6,-2],[4,-2],[12,-3],[4,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[3,-2],[1,0],[2,-3],[4,-3],[0,-1],[1,-2],[0,-1],[2,-2],[0,-1],[1,-2],[1,-2],[1,-1],[5,-11],[0,-1],[1,-3],[2,-3],[3,-4],[3,-4],[3,-4],[1,-1],[1,-2],[1,-2],[0,-2],[1,-1],[0,-3],[-1,-2],[-1,-4],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-2,-1],[0,-1],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-2,0],[-2,-1],[-1,0],[-2,0],[-5,-1],[-2,0],[-3,-1],[-2,0],[-3,-1],[-3,-1],[-1,-1],[0,-2],[-1,-2],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[6,-5],[1,-1],[3,-2],[1,0],[0,-1],[2,-2],[1,0],[1,0],[3,-2],[3,-1],[9,-3],[1,0],[1,0],[3,0],[1,0],[3,-1],[3,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-2,-2],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,1],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-2,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[0,1],[1,0],[-1,0],[-1,0],[-1,-2],[-1,0],[-4,-6],[-3,-2],[-2,-1],[-1,0],[-1,-1],[-3,0],[-1,0],[-3,0],[-5,1],[-5,2],[-1,0],[-1,1],[-2,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-3,-2],[-1,-2],[0,-2],[1,-2],[1,-2],[0,-1],[4,-2],[2,-2],[3,-2],[4,-2],[2,-1],[4,-3],[1,-2],[0,-3],[1,-4],[2,-8],[2,-3],[0,-1],[1,-2],[0,-4],[0,-2],[1,-2],[0,-3],[1,-2],[0,-2],[0,-1],[1,-1],[1,-1],[1,-1],[1,-2],[1,0],[1,-1],[1,0],[3,-2],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-2,-2],[-2,-1],[-1,-1],[-1,-1],[-2,-1],[-2,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-2,1],[0,1],[-1,1],[-2,2],[-2,1],[-1,1],[-1,1],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-2,0],[-1,0],[-2,-1],[-2,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[1,-2],[0,-2],[1,-1],[1,-2],[2,-2],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[2,-1],[5,-3],[2,-1],[0,-1],[1,0],[1,-1],[2,-2],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[-1,-3],[-1,-2],[-1,-2],[-1,-2],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-2],[-1,-1],[0,-1],[-1,0],[0,-2],[0,-1],[1,-2],[2,-2],[2,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[3,0],[1,0],[2,0],[1,0],[1,0],[1,1],[2,1],[3,1],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[4,-4],[4,-4],[0,-1],[1,0],[1,0],[1,1],[1,1],[1,1],[1,0],[1,1],[0,1],[1,1],[1,1],[1,2],[0,1],[1,1],[1,2],[1,1],[1,0],[1,1],[1,0],[2,-1],[1,0],[1,0],[1,0],[0,-1],[1,-2],[0,-1],[0,-2],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-2,0],[-2,0],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[1,-1],[0,-1],[1,-1],[0,-1],[2,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[2,-1],[1,0],[2,-1],[2,-1],[1,-1],[1,-1],[1,0],[1,-2],[0,-3],[-1,-1],[-1,-2],[-2,-2],[-1,-1],[-1,0],[-3,-1],[-1,-1],[-1,-2],[0,-1],[0,-1],[1,-1],[2,-1],[1,0],[1,1],[2,0],[2,1],[2,1],[2,1],[2,2],[1,1],[0,2],[-1,2],[0,2],[0,1],[0,1],[2,1],[1,1],[1,1],[1,1],[0,1],[1,2],[1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[1,1],[2,1],[1,0],[1,0],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[2,-1],[1,-1],[1,-1],[1,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-2],[-1,0],[0,-1],[0,-1],[0,-1],[1,-2],[1,-1],[1,-1],[3,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[2,1],[2,1],[2,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-3],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-2,-1],[-1,-1],[0,-1],[-1,-1],[1,0],[0,-1],[1,-1],[2,0],[1,0],[1,0],[3,2],[1,1],[2,1],[1,0],[2,1],[1,1],[1,0],[1,0],[1,0],[2,0],[1,-1],[1,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[1,-1],[1,0],[1,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[0,1],[1,1],[1,2],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[0,1],[1,0],[1,2],[1,2],[2,2],[1,1],[1,1],[1,1],[1,1],[1,0],[2,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-2],[1,-1],[0,-2],[1,0],[0,-2],[0,-3],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,1],[0,1],[0,1],[1,2],[1,0],[0,1],[1,0],[1,1],[2,1],[1,0],[0,1],[1,1],[0,1],[1,2],[1,1],[0,1],[1,1],[1,0],[2,1],[1,-1],[1,0],[1,-1],[2,-2],[2,-1],[1,0],[1,0],[1,-1],[1,0],[3,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,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,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[3,0],[1,1],[1,0],[1,1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[1,-1],[0,-2],[1,-1],[1,-2],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[2,1],[1,0],[0,1],[2,1],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-2,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-3],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[2,1],[0,1],[1,0],[1,1],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-2],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,1],[-1,-1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,2],[-1,1],[0,2],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-3,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-2,-1],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,-1],[0,-1],[-2,-1],[1,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[2,-1],[1,-1],[0,-1],[1,-2],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[2,-1],[1,-1],[1,0],[1,-1],[2,0],[1,-1],[1,0],[2,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[3,-3],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,-2],[1,-1],[2,-1],[2,0],[1,-1],[2,0],[2,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[2,-1],[1,0],[0,-1],[2,0],[1,-1],[2,-1],[2,-1],[2,0],[2,-1],[2,0],[1,-1],[1,0],[2,-1],[1,-2],[0,-1],[1,-2],[1,-1],[0,-1],[0,-2],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[1,-3],[1,-2],[1,-1],[1,-1],[1,0],[1,-1],[2,0],[1,0],[1,0],[2,0],[5,1],[1,0],[3,0],[1,0],[1,-1],[2,-1],[3,-1],[2,-1],[3,-2],[3,-1],[1,0],[2,0],[3,-1],[3,0],[4,0],[2,1],[1,0],[3,1],[2,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,1],[1,1],[0,2],[0,1],[0,2],[0,2],[-1,1],[-1,1],[0,2],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,0],[1,1],[1,0],[1,1],[2,0],[1,0],[1,0],[1,-1],[3,-1],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[2,-1],[1,-1],[1,0],[1,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[1,-2],[1,-1],[1,-2],[0,-1],[1,0],[0,-1],[0,-1],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[1,-2],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-2,-1],[-1,-2],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[0,-2],[-1,-2],[0,-1],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[1,-2],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[-1,2],[-1,0],[-1,1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,-2],[0,-1],[1,-1],[0,-1],[1,-1],[1,-3],[1,0],[1,-2],[1,-1],[0,-1],[1,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-2],[-1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[2,-1],[1,0],[1,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[2,-2],[0,-1],[2,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,-2],[2,-1],[0,-1],[1,-1],[1,-1],[2,-1],[0,-1],[1,-1],[1,0],[1,-1],[2,-1],[1,0],[4,-1],[2,-1],[2,-4],[1,-2],[1,-3],[2,-1],[2,-2],[4,-1],[3,-2],[3,-2],[2,-1],[4,-3],[2,-1],[3,-2],[3,-1],[3,-2],[3,-2],[3,-3],[2,-2],[3,-2],[2,-3],[1,-2],[2,-2],[1,0],[1,-1],[2,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[12,-10],[2,-1],[1,0],[2,0],[2,1],[2,0],[1,1],[2,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[2,0],[1,-1],[2,0],[1,-1],[2,0],[1,-1],[2,0],[1,0],[1,-1],[2,0],[1,-1],[1,0],[2,-1],[1,0],[1,0],[2,0],[1,-1],[2,0],[1,0],[1,-1],[2,0],[1,0],[2,-1],[1,0],[1,-1],[2,0],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[2,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[2,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[2,-1],[1,0],[1,0],[2,-1],[1,-1],[2,0],[1,-1],[1,0],[2,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[2,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[2,-1],[1,-2],[1,-1],[1,-1],[2,-2],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[2,0],[1,0],[1,-1],[2,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,1],[1,0],[2,0],[1,0],[1,1],[1,0],[1,0],[1,0],[2,0],[5,0],[4,2],[5,0],[1,0],[5,0],[1,-1],[1,0],[5,-2],[3,-3],[2,-4],[2,-4],[-3,-5],[-4,-3],[-3,-3],[0,-6],[2,-3],[3,0],[8,4],[7,6],[2,5],[2,1],[3,-5],[3,-4],[4,-7],[-1,-3],[-4,-4],[-5,-2],[-4,-1],[0,-2],[2,-2],[3,-1],[5,-1],[5,1],[3,-5],[2,-2],[2,1],[0,7],[4,-1],[7,-6],[6,0],[3,-3],[-2,-4],[2,-4],[9,3],[3,-1],[0,-1],[0,-2],[-8,-4],[2,-2],[6,0],[5,0],[1,-2],[-1,-2],[-7,-2],[0,-2],[2,-2],[4,1],[3,2],[2,0],[2,-1],[1,-2],[-2,-3],[-2,-2],[1,-1],[2,-1],[2,1],[2,1],[2,-2],[3,-1],[2,0],[3,2],[4,3],[1,1],[-2,3],[-4,2],[-3,3],[0,1],[2,1],[3,0],[2,-1],[1,-3],[2,-3],[2,-1],[1,-1],[3,-4],[0,-2],[0,-4],[-1,-3],[-1,-1],[-3,-1],[-3,0],[-4,0],[-2,0],[0,-2],[1,-2],[7,-4],[7,-3],[6,-1],[5,-2],[3,1],[5,5],[3,4],[3,2],[2,1],[4,-1],[3,-3],[1,-4],[3,-10],[3,-3],[7,-2],[10,5],[3,0],[1,-2],[0,-6],[0,-3],[12,-10],[6,-4],[1,0],[13,-1],[2,-1],[2,-1],[1,-4],[-2,-3],[-5,-2],[-7,1],[-3,-2],[0,-1],[1,-2],[5,-2],[5,0],[5,1],[2,0],[4,-8],[0,-4],[-4,-4],[-3,-3],[0,-2],[2,-3],[2,0],[3,1],[2,2],[1,5],[0,3],[2,2],[4,0],[4,-2],[2,-3],[2,-2],[0,-1],[1,-1],[2,-1],[4,-3],[2,0],[7,-2],[1,-1],[1,-1],[0,-2],[-1,-1],[-3,-1],[-2,-1],[-2,-1],[-2,0],[-2,0],[-2,0],[-2,-1],[-2,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[2,-1],[4,-1],[3,0],[3,-1],[2,-1],[1,-1],[0,-1],[0,-2],[0,-1],[0,-2],[-2,-4],[-3,-2],[-3,-2],[-2,-1],[-1,-2],[0,-1],[1,-3],[1,-1],[3,-3],[0,-2],[0,-1],[-2,-1],[-1,-2],[0,-2],[0,-2],[1,-1],[1,-2],[0,-1],[0,-2],[-2,-3],[-2,-5],[-3,-5],[-1,-7],[-1,-7],[-1,-4],[-1,-2],[-1,0],[0,-1],[-2,-1],[-2,0],[-2,0],[-3,2],[-3,1],[-2,1],[-1,2],[0,2],[0,3],[0,2],[-1,1],[-1,0],[-1,0],[-2,-1],[-1,-1],[-1,-1],[0,-2],[0,-2],[1,-3],[0,-4],[1,-4],[0,-2],[0,-3],[0,-3],[2,-5],[1,-5],[3,-3],[4,-4],[3,-3],[6,-3],[1,-2],[1,0],[1,-1],[0,-2],[0,-1],[-1,-1],[-1,-1],[-1,-2],[-2,-3],[-1,-2],[-1,-2],[0,-1],[0,-1],[0,-3],[1,-2],[1,-2],[2,-2],[2,-2],[3,-1],[4,0],[3,-1],[1,-2],[2,-3],[1,-1],[2,-2],[1,0],[4,-2],[4,-3],[1,-1],[2,-2],[2,-1],[3,-2],[2,-2],[0,-2],[-1,-1],[-1,-2],[-1,-2],[-2,0],[-4,-2],[-1,-1],[0,-2],[1,-1],[1,-2],[2,-1],[3,0],[4,0],[2,0],[2,-1],[1,-1],[0,-2],[-1,-2],[-1,-2],[-1,-2],[0,-2],[2,-2],[1,-2],[2,-3],[0,-3],[-1,-4],[-3,-5],[0,-3],[2,-1],[4,-2],[4,0],[1,-1],[2,-1],[2,-2],[2,-2],[1,-1],[1,0],[1,0],[1,2],[0,1],[0,2],[-2,3],[0,2],[0,3],[1,1],[1,1],[2,0],[2,0],[2,0],[3,-1],[1,-1],[2,-2],[1,-1],[1,-2],[0,-2],[-1,-2],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-2,-2],[0,-2],[0,-1],[1,-1],[1,-1],[2,-1],[1,-1],[0,-1],[-1,-1],[-1,0],[-2,1],[-2,1],[-3,1],[-1,1],[-2,-1],[-2,-1],[-3,-1],[-2,-2],[-2,-1],[-2,-1],[-1,-2],[1,-2],[-2,-4],[-2,-3],[-1,-2],[0,-1],[2,-2],[2,-1],[3,-3],[1,-1],[4,-1],[4,-1],[3,-1],[5,1],[0,1],[1,3],[0,3],[1,1],[0,1],[2,0],[2,0],[2,-2],[1,-1],[3,-4],[1,-3],[1,-1],[1,-2],[3,-1],[2,-1],[2,0],[4,0],[3,0],[1,0],[1,-2],[1,-3],[0,-1],[2,-4],[0,-2],[0,-3],[-1,-2],[-2,-3],[-1,-2],[1,-4],[0,-2],[0,-3],[-2,-2],[-4,-8],[-2,-5],[-1,-5],[2,-3],[1,-4],[0,-1],[-4,0],[-3,1],[-2,1],[-1,-1],[0,-2],[1,-1],[3,-1],[5,-1],[2,-1],[3,0],[2,0],[2,1],[1,3],[0,4],[4,2],[6,2],[3,2],[3,0],[2,-1],[1,-4],[-1,-3],[0,-3],[2,-6],[3,-4],[3,-2],[3,1],[2,2],[1,3],[2,1],[3,1],[1,-1],[2,-1],[4,-2],[4,-1],[3,-2],[3,-3],[4,-6],[2,-1],[1,-2],[2,-3],[0,-5],[-1,-2],[-1,-2],[-4,-2],[-7,1],[-4,-1],[-2,-1],[0,-1],[1,-1],[3,-2],[3,-1],[4,-3],[3,-2],[2,-1],[1,-3],[-1,-3],[-2,-1],[-4,0],[-4,0],[-1,0],[-1,-1],[0,-1],[0,-1],[2,-3],[1,-1],[3,0],[2,0],[5,3],[3,2],[1,0],[3,0],[1,-1],[-1,-6],[-3,-4],[-3,-3],[-5,-4],[-2,1],[-1,1],[-2,0],[0,-1],[-1,0],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-4],[1,-2],[2,-2],[1,-1],[1,-3],[0,-1],[-1,-1],[-1,-1],[-3,1],[-3,0],[-1,1],[-2,-1],[-1,-1],[0,-2],[1,-1],[1,-2],[2,-1],[0,-3],[1,-2],[1,-2],[0,-2],[0,-1],[2,0],[3,0],[2,0],[2,1],[2,1],[0,-3],[0,-1],[0,-1],[-2,-1],[-3,-1],[-2,-1],[-1,-1],[-3,-1],[-1,-2],[-2,-1],[-2,-1],[0,-2],[0,-1],[2,-1],[3,-1],[3,0],[2,-1],[1,0],[1,-3],[-1,-1],[-1,-1],[-2,-1],[-4,-1],[-2,0],[-1,2],[-3,2],[-3,2],[-2,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-3],[4,-3],[3,-2],[4,-1],[3,-1],[7,1],[4,2],[4,0],[2,0],[1,-2],[0,-1],[-1,-1],[-1,-3],[-2,-2],[-1,-2],[-1,-3],[-2,-1],[-3,0],[-3,0],[-3,1],[-4,-1],[-4,-1],[-7,0],[-3,-2],[-1,-2],[0,-3],[2,-1],[4,-1],[8,0],[3,1],[2,0],[3,-1],[5,-1],[2,-1],[2,-2],[0,-2],[0,-1],[0,-2],[-1,-1],[-1,-2],[-1,-2],[-1,-1],[1,-1],[1,-1],[2,0],[1,1],[0,1],[2,3],[2,4],[1,0],[2,0],[1,0],[1,-1],[1,-2],[0,-2],[-2,-5],[-3,-5],[0,-3],[0,-1],[1,-1],[3,-1],[2,0],[3,2],[2,2],[1,0],[0,-1],[-1,-2],[-3,-3],[-3,-1],[-4,-1],[-5,1],[-2,0],[-1,-1],[-2,-1],[-1,-2],[-2,-3],[0,-2],[1,-1],[2,-1],[1,-1],[3,1],[3,0],[2,1],[5,1],[2,1],[4,0],[4,0],[2,-1],[1,-1],[1,-1],[0,-2],[0,-4],[-1,-1],[0,-2],[-2,-5],[-2,-2],[-2,-2],[-3,-1],[-4,0],[-2,0],[-1,-1],[-1,-2],[-1,-1],[1,-1],[1,-2],[2,-3],[1,-2],[0,-1],[-1,-1],[-2,-2],[-3,0],[-3,2],[-2,1],[-2,-1],[-1,0],[-1,-2],[1,-2],[2,-2],[1,-1],[0,-2],[0,-1],[-1,-2],[-1,-1],[0,-3],[0,-1],[1,-1],[2,-1],[2,-1],[4,-1],[2,0],[3,1],[1,0],[1,-1],[1,-1],[-1,-2],[-1,-1],[-1,0],[-1,0],[-2,0],[-2,1],[-4,0],[-4,1],[-2,0],[-2,-1],[-2,-1],[0,-2],[0,-1],[2,-3],[3,-2],[2,-1],[2,-2],[1,-2],[1,-1],[0,-2],[-1,-2],[-2,-1],[-5,0],[-2,0],[-3,-1],[-1,-2],[0,-2],[-1,-1],[-2,0],[-1,0],[-2,1],[-1,0],[-2,0],[0,-1],[-1,-1],[1,-1],[3,-1],[1,0],[0,-1],[0,-1],[0,-2],[-1,-2],[-1,-1],[-2,-2],[-2,-2],[-1,-2],[0,-1],[1,-1],[1,-1],[2,0],[3,0],[3,0],[1,0],[2,-1],[1,-1],[1,-1],[0,-1],[1,-3],[1,-1],[1,-2],[2,-1],[3,0],[1,0],[2,0],[2,0],[1,0],[0,-1],[1,-3],[0,-2],[1,-2],[2,0],[1,1],[1,0],[1,2],[-1,3],[-1,2],[0,2],[1,1],[1,0],[1,0],[1,-1],[1,-2],[1,-2],[0,-3],[1,-2],[2,-2],[1,-1],[1,-1],[0,-1],[0,-3],[-1,-3],[-1,-2],[-1,-2],[1,-1],[2,-2],[1,0],[2,-1],[1,0],[0,-1],[1,0],[1,-2],[2,-2],[1,-2],[0,-1],[1,-3],[0,-2],[-2,-4],[-3,-6],[-1,-5],[-1,-4],[0,-2],[1,-2],[2,-2],[3,-3],[3,-2],[3,-1],[2,-1],[1,-3],[-1,-2],[-2,-2],[-2,-1],[-2,-1],[-2,0],[-2,1],[-2,1],[-1,2],[0,2],[-1,2],[0,1],[-2,1],[-2,-1],[-1,0],[-1,-2],[0,-3],[1,-2],[1,-3],[1,-2],[1,-1],[2,-1],[2,0],[3,1],[2,0],[2,1],[1,-1],[2,-1],[2,-1],[1,-1],[3,-2],[2,-1],[2,-1],[1,-1],[0,-3],[-1,-2],[-2,-2],[-3,-2],[-2,-1],[-2,-1],[-2,-2],[-2,-2],[-4,-3],[-3,-2],[-4,-2],[-6,-1],[-3,0],[-2,0],[-2,0],[-2,-1],[0,-3],[2,-2],[3,-1],[4,-1],[5,0],[3,0],[1,-1],[1,-1],[1,-1],[0,-2],[-2,-1],[-1,-1],[-1,-2],[-3,-3],[-2,-3],[-2,0],[-2,-1],[-2,1],[-2,1],[-1,2],[0,2],[-1,2],[-1,2],[-1,2],[-1,2],[-1,0],[-2,0],[-2,-1],[-2,-2],[-3,-2],[0,-1],[0,-2],[0,-2],[0,-2],[-1,-2],[0,-1],[0,-3],[2,-2],[1,-2],[2,-1],[3,-2],[2,-2],[2,0],[1,-2],[0,-3],[0,-2],[-1,-3],[1,-2],[1,-2],[1,-1],[1,-1],[1,0],[3,0],[2,-1],[1,-1],[1,-3],[1,-3],[1,-2],[1,-1],[2,-3],[2,-1],[3,-2],[4,-3],[5,-4],[2,-2],[3,-3],[4,-4],[2,-4],[3,-4],[2,-4],[2,-3],[2,-1],[7,-6],[1,-1],[7,-4],[1,0],[1,-1],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[2,2],[1,2],[1,1],[1,0],[1,0],[1,0],[2,0],[2,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-2],[-1,-1],[0,-1],[0,-2],[1,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[3,0],[2,0],[1,0],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-4,-2],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,1],[1,1],[2,2],[0,1],[1,2],[1,3],[1,0],[0,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[2,-1],[1,-1],[2,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-3,-2],[-2,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[2,-2],[3,-2],[1,-1],[1,0],[1,0],[3,-1],[2,-1],[1,0],[1,0],[5,-2],[3,-1],[2,-1],[3,-1],[9,-5],[3,-1],[5,-2],[2,0],[2,-1],[2,0],[1,0],[2,-2],[1,0],[2,-1],[1,-1],[3,-2],[1,0],[2,-1],[1,0],[3,0],[5,-2],[1,0],[1,0],[5,0],[1,0],[1,0],[0,1],[1,0],[2,0],[2,0],[3,1],[2,0],[14,2],[3,0],[3,1],[1,1],[1,0],[1,0],[1,0],[2,1],[1,0],[1,1],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[-1,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-2],[-1,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[2,1],[2,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[-1,1],[-1,1],[0,1],[-1,1],[-2,2],[0,1],[1,1],[1,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-2],[1,-2],[0,-1],[1,-2],[0,-4],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-2],[-1,-2],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[2,1],[1,1],[1,0],[1,1],[0,1],[1,1],[0,2],[0,1],[0,2],[1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[2,0],[2,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[3,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[2,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[3,-3],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[1,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,-1],[1,-1],[0,-2],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[0,1],[3,2],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,-4],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[3,-2],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[2,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[2,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[2,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-3,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-2],[0,-2],[0,-2],[0,-1],[0,-2],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-2,1],[-2,2],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[2,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[2,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[2,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[3,-2],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[2,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-2],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-2,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,-1],[1,0],[1,0],[1,1],[1,0],[0,1],[0,1],[0,1],[1,1],[1,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[1,1],[1,0],[2,1],[1,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[1,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[1,-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],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-2,0],[-1,0],[-1,-1],[-1,1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[2,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[2,-1],[2,0],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[0,-1],[-2,-1],[-2,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[1,-2],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[2,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[-2,-1],[0,-1],[-2,-1],[-3,-2],[-1,0],[-3,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[2,-1],[1,0],[1,1],[2,0],[3,1],[3,0],[2,0],[1,0],[1,0],[2,-1],[1,-1],[1,-1],[4,-1],[1,0],[1,-1],[1,-2],[1,-1],[1,-2],[0,-2],[0,-1],[1,0],[-1,0],[0,-2],[0,-2],[1,-2],[1,0],[2,-2],[2,-1],[4,-3],[2,0],[4,-2],[2,-1],[1,-3],[2,-2],[0,-1],[1,-1],[1,-2],[2,-4],[3,-3],[1,-2],[0,-4],[1,-5],[1,-2],[1,0],[0,-1],[3,0],[1,0],[3,2],[4,1],[0,1],[0,-1],[2,0],[1,-1],[1,0],[0,-1],[0,-3],[-2,-1],[-3,-1],[-2,0],[-1,0],[-1,0],[-2,0],[-4,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,0],[1,0],[2,-1],[1,0],[1,-3],[0,-3],[0,-3],[-1,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-6],[0,-1],[1,-1],[1,-1],[1,0],[2,-1],[2,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,2],[2,0],[1,0],[1,1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-5],[-1,-1],[0,-1],[-1,-2],[-5,-3],[-1,0],[-3,-1],[-3,0],[-1,1],[-1,1],[-1,3],[0,1],[-1,1],[0,2],[-1,0],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-2,-1],[-2,-2],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-2],[-2,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-2],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[2,-3],[4,-1],[1,0],[2,-1],[1,0],[1,0],[2,-1],[3,-2],[-1,-5],[0,-5],[2,-5],[0,-1],[1,-1],[2,-1],[4,-3],[7,0],[1,0],[4,-3],[0,-3],[-1,0],[0,-1],[-3,-1],[-1,-1],[-1,0],[-3,-2],[-2,-1],[0,-1],[-2,-4],[-1,-2],[0,-2],[-1,-6],[0,-1],[1,-1],[-1,-2],[0,-1],[-1,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[2,-2],[1,-1],[0,-1],[1,0],[0,-1],[1,-3],[0,-2],[1,-1],[-1,-3],[-1,-1],[0,-2],[-3,-7],[0,-2],[0,-2],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[2,-3],[1,-2],[5,-2],[3,-1],[1,0],[2,0],[2,0],[5,0],[3,-1],[6,0],[3,0],[4,0],[3,0],[5,0],[3,-1],[1,-1],[0,-2],[1,-2],[0,-2],[0,-1],[0,-1],[3,-2],[2,-4],[2,-1],[1,-1],[3,-1],[3,-3],[1,-1],[1,0],[2,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,1],[1,-1],[1,0],[2,-1],[4,-3],[1,-1],[2,-1],[0,-1],[1,-1],[1,-1],[1,-1],[2,-1],[1,-1],[2,-1],[3,-3],[2,-1],[1,-1],[2,-1],[2,-1],[2,-1],[2,-1],[1,0],[1,-1],[3,-1],[2,-1],[1,0],[2,0],[0,-1],[1,0],[1,0],[2,0],[2,-1],[4,-1],[6,-1],[16,-2],[1,0],[1,0],[7,0],[10,2],[2,1],[1,0],[9,4],[3,2],[9,5],[1,1],[1,2],[2,1],[3,4],[4,5],[1,1],[3,3],[2,1],[1,1],[1,0],[1,1],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[2,0],[2,0],[1,0],[2,0],[1,0],[3,-1],[2,-1],[1,0],[1,0],[2,-1],[2,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[2,-2],[2,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[2,-3],[1,-2],[1,0],[1,-2],[1,-2],[1,-3],[2,-2],[0,-1],[2,-4],[2,-3],[2,-3],[2,-2],[1,-1],[2,-2],[3,-2],[2,-2],[4,-2],[2,-1],[4,-1],[3,-1],[3,-1],[3,-1],[3,-1],[3,-1],[3,-1],[7,-2],[6,-2],[1,-1],[1,0],[4,-1],[3,-2],[7,-4],[8,-8],[1,-2],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[2,-2],[1,-1],[1,-1],[0,-1],[2,-1],[2,-2],[2,-1],[1,-1],[5,-5],[4,-6],[1,0],[1,-1],[1,-2],[1,0],[7,-8],[14,-13],[7,-5],[1,0],[10,-4],[15,-1],[11,0],[4,-1],[7,-1],[6,-1],[5,-1],[3,0],[14,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0],[2,0],[5,0],[5,0],[6,0],[19,-1],[16,0],[13,0],[19,-1],[1,0],[1,0],[3,0],[19,0],[57,0],[104,0],[-1,-2],[0,-1],[-2,-2],[-2,-2],[-2,-2],[-7,-8],[-9,-7],[-7,-3],[-8,-3],[-2,-4],[-7,-6],[-5,-2],[-8,-6],[0,-2],[0,-3],[-1,-3],[0,-6],[-2,-8],[-1,-1],[0,-1],[0,-5],[-1,-5],[-1,-2],[0,-1],[0,-2],[-3,-10],[-3,-6],[1,-8],[0,-4],[-2,-10],[-3,-12],[-3,-12],[-5,-9],[-8,-15],[-16,-15],[-22,-14],[-10,-13],[-16,-12],[-4,-4],[-12,-5],[-16,-11],[-26,-17],[-14,-25],[-7,-11],[-8,-13],[-11,-16],[-10,-12],[-19,-20],[-5,-10],[-12,-18],[-16,-15],[-14,-11],[-11,-5],[-2,-10],[-9,-19],[-13,-17],[-20,-18],[-9,-4],[-14,-8],[-21,-7],[-23,-4],[-5,-21],[-8,-16],[-9,-13],[-3,-5],[-19,-18],[-8,-5],[0,-12],[-2,-13],[0,-4],[-6,-9],[-2,-3],[-3,-3],[-24,-28],[-24,-18],[-64,-11],[11,-21],[3,-36],[-19,-48],[-15,-19],[-7,-32],[8,-37],[-8,-19],[-7,-16],[-7,-24],[-5,-25],[-8,-46],[-3,-26],[-2,-22],[-1,-13],[-1,-10],[-1,-6],[-2,-4],[-9,-9],[-7,-5],[-3,-2],[-5,-3],[-2,-3],[-2,-3],[-4,-19],[-5,-14],[-2,-5],[-1,-3],[-7,-10],[-9,-11],[-9,-9],[-5,-5],[-6,-4],[-1,-2],[-3,-1],[-10,-6],[-4,-1],[-6,-2],[-5,-1],[-5,-1],[-5,-1],[-5,-11],[-1,-3],[-1,-1],[-3,-8],[-3,-6],[-3,-5],[-9,-12],[-2,-3],[-3,-4],[-3,-3],[-3,-3],[-3,-3],[-2,-2],[2,-5],[0,-5],[0,-3],[-1,-3],[0,-3],[-2,-5],[-1,-3],[-2,-6],[-1,-3],[-2,-4],[-2,-2],[-2,-4],[-3,-3],[-4,-5],[-2,-3],[-2,-2],[-1,-2],[-3,-4],[-2,-3],[-4,-4],[-3,-3],[-3,-4],[-3,-1],[-3,-3],[-3,-2],[-3,-2],[-3,-2],[-3,-1],[3,-4],[3,-3],[4,-4],[3,-3],[6,-6],[6,-8],[3,-5],[3,-5],[4,-6],[2,-6],[1,-3],[2,-11],[1,-15],[-2,-17],[-3,-10],[-4,-10],[-4,-15],[-5,-8],[-8,-13],[-4,-4],[-1,-2],[3,-7],[2,-17],[0,-9],[-1,-12],[-1,-10],[-1,0],[1,0],[1,-8],[0,-7],[2,-16],[1,-27],[0,-11],[-1,-7],[-6,-33],[-4,-9],[-8,-12],[-9,-12],[-5,-7],[-8,-9],[-6,-15],[-2,-6],[-6,-10],[-7,-11],[-4,-6],[-4,-2],[-2,-11],[-6,-14],[-4,-11],[-6,-10],[-12,-17],[-7,-11],[-8,-6],[-8,-8],[-12,-6],[-4,1],[0,-1],[-15,-5],[-20,-3],[-12,-2],[-14,1],[-15,-2],[-11,-1],[-9,-7],[5,-10],[3,-10],[0,-5],[-3,-10],[1,-1],[8,-9],[2,-11],[0,-1],[1,-1],[2,-7],[2,-11],[1,-16],[-1,-13],[-2,-7],[0,-2],[-6,-12],[-7,-13],[-9,-14],[-16,-15],[-6,-6],[-10,-7],[-9,-5],[-9,-4],[-8,-2],[-8,-2],[-10,-3],[-9,-1],[-12,-1],[-3,-8],[-14,-40],[18,-41],[5,-1],[9,-3],[6,-4],[9,-4],[7,-5],[7,-3],[7,-5],[6,-5],[2,-2],[4,-4],[3,-3],[5,-6],[9,-14],[3,-11],[0,-6],[1,-9],[-1,-17],[-5,-18],[-10,-17],[-11,-13],[-17,-15],[-16,-11],[-3,-1],[-21,-10],[0,-17],[-2,-14],[-3,-14],[-1,-12],[-2,-19],[-3,-15],[-3,-13],[-7,-17],[-3,-4],[-4,-12],[-2,-9],[-4,-16],[-4,-12],[2,-10],[-2,-2],[-5,-10],[-3,-8],[-4,-12],[-4,-11],[-4,-8],[-3,-10],[-16,-26],[-6,-7],[-2,-2],[-1,-2],[0,-2],[0,-2],[-3,-5],[-7,-13],[-4,-11],[-4,-11],[-8,-19],[-2,-10],[8,-1],[11,-3],[10,-4],[12,-5],[2,-1],[7,-4],[1,0],[2,-1],[1,-1],[4,-2],[5,-4],[5,-4],[17,-18],[9,-12],[7,-16],[3,-15],[-1,-6],[2,-1],[2,-7],[2,-7],[1,-4],[-10,0],[-29,0],[-10,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-10,0],[-28,0],[-10,0],[-10,0],[1,-6],[-12,0],[-30,-2],[-12,0],[-3,0],[-5,0],[-5,1],[-4,1],[-2,0],[-2,1],[-3,0],[-6,-1],[-5,-1],[-3,0],[-4,0],[-2,0],[-2,1],[-5,0],[-11,2],[-1,0],[-4,0],[-3,1],[-1,0],[-1,0],[-1,0],[-6,2],[-3,1],[-4,1],[-1,1],[-3,1],[-1,0],[-1,0],[-1,1],[-1,1],[-3,3],[-5,6],[-2,2],[-2,3],[-1,2],[-2,2],[-1,1],[-1,1],[-1,2],[-1,0],[-1,1],[-1,1],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-7,-2],[-4,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-2,0],[-1,0],[-4,-1],[-2,0],[-3,-1],[-2,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[-4,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-4,0],[-1,0],[-3,0],[-3,1],[-1,0],[-1,0],[-2,0],[-2,1],[-2,0],[-4,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-2],[0,-2],[0,-2],[0,-2],[0,-2],[0,-1],[0,-1],[-1,0],[0,-1],[-2,-2],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-2,2],[-2,1],[0,1],[-2,1],[0,1],[-1,2],[-1,2],[-1,2],[-1,1],[0,2],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-2,0],[-1,-1],[-2,-2],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-2,-1],[-3,-1],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,2],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-2,1],[-2,0],[-2,1],[-1,0],[-1,0],[-2,0],[-1,0],[-4,0],[-2,0],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[0,1],[-2,0],[-2,0],[-3,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-2],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[1,2],[1,2],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-2,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-3],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-4],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,2],[-1,1],[-1,2],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[-3,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-3,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[2,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,2],[0,1],[0,2],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,2],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-3],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-3,-1],[-1,0],[0,-1],[-1,0],[-4,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-3,1],[-2,1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,2],[1,1],[0,1],[0,3],[0,1],[1,1],[0,1],[0,1],[1,0],[1,2],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,-1],[-2,-1],[-2,0],[-2,-1],[-1,-1],[-1,0],[-2,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,2],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[0,1],[1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,2],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-2,-1],[-2,-2],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-2,-1],[-2,0],[-1,0],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,1],[1,1],[1,1],[1,0],[1,1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[-1,-1],[-1,-1],[0,-1],[-2,-1],[-1,-1],[-2,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,1],[-1,1],[-1,1],[-1,1],[-2,0],[-1,0],[-1,1],[-5,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-2,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[0,2],[-1,1],[0,1],[0,1],[0,2],[-1,2],[0,1],[-1,0],[-1,1],[-2,0],[0,1],[-1,-1],[-2,0],[-1,0],[0,-1],[-1,0],[-2,-1],[-1,-1],[-3,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-3,1],[-1,0],[-1,1],[-1,1],[-2,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,-1],[-1,0],[-1,0],[-1,-1],[-2,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-2,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[1,1],[0,1],[1,1],[1,1],[1,2],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-2,1],[-2,1],[-1,0],[-2,1],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,1],[3,3],[1,1],[0,1],[0,1],[-1,1],[-3,1],[-2,2],[-1,0],[-1,0],[-1,0],[-2,1],[-2,0],[-3,0],[-1,1],[-2,-1],[-1,0],[0,1],[-2,0],[-3,1],[-1,0],[-2,2],[-2,0],[-1,1],[-1,0],[-1,1],[-2,1],[-2,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,3],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-2,1],[-1,0],[-1,-1],[-3,1],[-1,0],[-2,1],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[1,-1],[1,-2],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[-1,-1],[0,-1],[-1,-1],[1,-2],[0,-1],[2,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-3,-1],[-5,-1],[-1,0],[-2,-1],[-5,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[0,1],[1,2],[0,1],[1,0],[0,1],[0,2],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[-4,2],[0,1],[-1,0],[-1,1],[0,1],[1,1],[1,0],[0,1],[1,0],[2,1],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,2],[-2,2],[-1,2],[0,1],[-1,0],[0,1],[-2,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-3,4],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,1],[-1,0],[-3,3],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,2],[-1,0],[-1,1],[-2,1],[0,1],[-1,0],[-1,0],[-4,0],[-3,0],[-1,0],[-1,0],[-3,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-3,1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-3,0],[-2,-1],[-2,0],[0,-1],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,1],[-1,0],[-2,0],[-1,1],[0,1],[0,1],[1,0],[2,5],[1,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-2,1],[-1,0],[-1,1],[-3,2],[-1,0],[0,1],[-2,2],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,-1],[-1,1],[-2,0],[-1,0],[-4,-1],[-1,0],[-1,0],[-1,0],[0,1],[-3,0],[-1,0],[-3,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-2,0],[0,-1],[-1,0],[-1,0],[-1,1],[-2,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[-3,0],[-3,2],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[1,3],[0,2],[1,3],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[1,2],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-2,2],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,3],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,3],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[0,1],[-1,0],[-1,1],[-2,0],[0,1],[-2,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,-3],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,1],[-1,0],[-1,1],[-2,-1],[-2,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-2,-1],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[-2,0],[-3,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[0,1],[1,0],[1,1],[1,0],[1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,-1],[1,-2],[1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-2,0],[-2,1],[-1,0],[-1,0],[-2,1],[-1,1],[-1,0],[-1,0],[-1,0],[-3,-4],[-4,-2],[-4,-4],[-1,-1],[-7,-3],[-1,0],[-4,-3],[-3,-2],[-2,-2],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[4,-3],[1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[1,0],[0,-1],[3,-3],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[2,-2],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-4],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[-3,-2],[-1,-2],[-1,-1],[-1,-3],[-1,-2],[-1,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-2],[0,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-2,-2],[-1,0],[-2,0],[-4,1],[-1,0],[-4,2],[-3,2],[-3,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,2],[-3,3],[-1,0],[-1,1],[-1,1],[-2,2],[-1,1],[-1,2],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,2],[-1,0],[-1,0],[-1,0],[-2,1],[1,0],[-1,0],[-1,2],[-1,0],[-1,0],[-1,2],[-1,2],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,2],[-1,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[0,1],[1,1],[1,0],[1,1],[0,1],[-1,0],[-5,1],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-2],[1,-2],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[4,-4],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[2,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-3],[1,-1],[0,-1],[1,0],[0,-1],[1,1],[1,0],[1,1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-2],[1,-2],[3,-5],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-2],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-2,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[2,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[0,-1],[0,-2],[0,-1],[-1,0],[-3,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,2],[0,1],[-1,2],[-1,1],[-1,2],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[-2,-2],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-2],[-1,-1],[0,-3],[0,-1],[0,-1],[0,-3],[1,0],[1,-2],[0,-1],[-1,-1],[-1,-1],[0,-1],[1,-2],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[2,-1],[1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[2,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-2,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[2,-1],[1,0],[4,0],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[2,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,-4],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[-1,0],[-1,0],[0,-1],[-1,0],[1,-2],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[-1,-1],[0,-1],[1,-1],[0,-2],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-2],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-2,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-2,-2],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[1,0],[0,-2],[1,-2],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[-1,-1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[0,-1],[2,-1],[1,-1],[1,0],[0,-1],[2,0],[2,-2],[1,0],[0,-1],[0,-1],[1,-2],[0,-1],[1,-1],[3,-7],[1,-1],[0,-4],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,1],[1,0],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[3,0],[1,0],[1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[2,-1],[2,-1],[2,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-2],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,1],[1,0],[0,1],[1,0],[0,1],[-1,1],[-1,2],[0,1],[1,1],[1,0],[1,0],[1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[-1,-2],[-1,0],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-2],[1,-2],[0,-2],[1,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-2,0],[0,-1],[-1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[1,-1],[2,-1],[2,-1],[3,-1],[1,-1],[1,0],[2,0],[1,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[2,-5],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,1],[-1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,1],[0,1],[0,-1],[-1,0],[-1,-2],[1,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[1,-1],[0,-1],[-1,0],[-2,-3],[-1,-1],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,-1],[-1,-2],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-4],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[1,-1],[1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,1],[1,0],[1,0],[1,0],[0,-1],[-1,-2],[-1,0],[0,-1],[-1,1],[-1,1],[-1,0],[-1,0],[0,-1],[1,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,-2],[0,-1],[-1,-1],[-2,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,1],[0,1],[1,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,-3],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[-2,-6],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[3,-2],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[1,0],[3,0],[0,-1],[1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-2],[1,-2],[1,-1],[1,0],[1,-1],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,-1],[2,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-2,-3],[-1,-2],[-1,-1],[0,-1],[-3,-3],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[2,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[-1,-2],[-1,0],[-1,-3],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,1],[-1,1],[-1,0],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-2],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[-1,-3],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[-1,-2],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-3,1],[-1,0],[-1,0],[-1,-1],[0,-1],[1,0],[0,1],[1,0],[1,-1],[0,-1],[0,-2],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,-2],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-2,1],[-1,-1],[-1,0],[0,-1],[-1,-1],[1,0],[1,-1],[1,0],[1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[1,-1],[0,-2],[1,0],[1,-3],[0,-2],[1,-1],[0,-1],[0,-1],[2,-2],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[-1,-1],[-1,-1],[1,-1],[2,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[-1,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-2],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[2,2],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[1,0],[1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[-1,-1],[1,-1],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-2,-1],[-1,-1],[-1,0],[0,1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-2,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,-1],[-1,0],[-1,1],[1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,-1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[-1,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[0,1],[1,0],[1,0],[1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[1,0],[0,1],[1,1],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[-1,1],[-1,0],[0,-1],[-1,0],[-1,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,1],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,-1],[1,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[1,0],[0,1],[1,0],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,2],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,1],[0,1],[1,1],[2,2],[1,0],[1,1],[1,1],[2,1],[1,0],[0,1],[1,2],[0,3],[0,2],[0,1],[0,2],[-1,3],[0,2],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,3],[0,1],[-27,2],[-4,0],[-7,1],[-1,0],[-9,0],[-2,0],[-1,1],[-22,1],[-17,2],[-10,0],[-1,0],[-30,2],[-5,1],[-4,0],[-2,0],[-1,0],[-7,0],[-2,1],[-2,0],[-7,0],[-1,0],[-1,0],[-3,1],[-2,0],[-7,0],[-1,0],[-3,1],[-1,0],[-2,0],[-7,0],[-2,0],[-4,1],[-24,1],[-3,0],[-41,3],[-31,2],[-1,0],[-8,1],[-1,0],[-4,0],[-1,0],[-4,0],[-2,1],[-1,0],[-1,0],[-8,0],[-5,1],[-1,0],[-1,0],[-15,1],[-4,0],[-2,0],[-2,0],[-3,0],[-5,1],[-4,0],[-3,0],[-6,1],[-18,1],[-2,0],[-25,2],[-6,0],[-6,0],[-8,1],[-7,0],[-32,2],[-11,1],[-2,0],[-12,1],[-1,0],[-14,1],[-1,0],[-1,0],[-3,0],[-3,0],[-6,1],[-3,0],[-2,0],[-4,0],[-5,1],[-17,1],[-4,0],[-3,0],[-8,1],[-2,0],[-3,0],[-9,1],[-7,0],[-23,1],[-2,1],[-12,0],[-1,0],[-1,0],[-4,1],[-1,0],[-5,0],[-4,0],[-4,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[-7,0],[-6,1],[-5,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,1],[-2,0],[-2,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-3,0],[-4,1],[-8,0],[-3,0],[-1,1],[-3,0],[-4,0],[-5,0],[-2,0],[-18,1],[-2,0],[-4,1],[-3,0],[-9,1],[-1,0],[-1,0],[-1,0],[-2,0],[-6,1],[-1,0],[-1,0],[-2,0],[-2,0],[-3,0],[-1,0],[-2,0],[-6,1],[-1,0],[-9,0],[-26,2],[-7,0],[-1,0],[-4,1],[-1,0],[-10,0],[-4,0],[-6,1],[-17,1],[-6,0],[-4,0],[-12,1],[-5,0],[-5,0],[-16,1],[-5,1],[-8,0],[-22,1],[-7,1],[-1,0],[-17,1],[-1,0],[-1,0],[-17,1],[-43,3],[-45,2],[-35,3],[-76,5],[-5,0],[-30,2],[-27,2],[-71,4],[-13,1],[-6,1],[-20,0],[-75,5],[-18,1],[-6,1],[-3,0],[-1,0],[-5,0],[-1,0],[-35,2],[-3,1],[-1,0],[-36,2],[-31,2],[-8,0],[-9,1],[-11,0],[-35,2],[-1,0],[-2,1],[-3,0],[-26,1],[-2,0],[-25,2],[-10,1],[-8,0],[-12,1],[-18,1],[-21,1],[-2,0],[-1,0],[-24,2],[-1,0],[-1,0],[-38,2],[-3,0],[-1,0],[-10,1],[-2,0],[-14,1],[-11,0],[-7,1],[-21,2],[-7,0],[-4,0],[-12,1],[-4,1],[-1,0],[-3,0],[-1,0],[-12,1],[-1,0],[-1,0],[-4,0],[-1,0],[-1,0],[-1,0],[-7,1],[-16,1],[-23,1],[-46,3],[-9,0],[-4,0],[-3,1],[-1,0],[-36,2],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-3,0],[-6,1],[-4,0],[-17,1],[-3,0],[-1,0],[-10,1],[-9,1],[-6,0],[-27,2],[-32,2],[-4,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-3,1],[-10,0],[-1,0],[-3,1],[-3,0],[-9,0],[-4,1],[-4,0],[-15,1],[-4,0],[-1,0],[-2,0],[-6,1],[-2,0],[-3,0],[-1,0],[-1,0],[-4,0],[-2,0],[-11,1],[-1,0],[-1,0],[-1,0],[-3,0],[-10,1],[-3,0],[-5,1],[-13,0],[-4,1],[-6,0],[-4,0],[-14,1],[-4,0],[-1,0],[-1,0],[-4,1],[-3,0],[-2,0],[-3,0],[-11,1],[-4,0],[-34,2],[-7,0],[-7,1],[-2,0],[-2,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-3,1],[-1,0],[-1,0],[-4,0],[-1,0],[-2,0],[-2,0],[-18,1],[-2,0],[-1,0],[-2,0],[-1,0],[-4,1],[-4,0],[-1,0],[-1,0],[-2,0],[-6,1],[-17,1],[-6,0],[-2,0],[-6,0],[-2,1],[-2,0],[-4,0],[-1,0],[-4,0],[-11,1],[-4,0],[-1,0],[-2,1],[-2,0],[-7,0],[-6,1],[-4,0],[-4,0],[-12,1],[-4,0],[-1,0],[-10,1],[-13,0],[-1,0],[-31,2],[-21,1],[-11,1],[-2,0],[-6,0],[-2,0],[-2,0],[-6,1],[-2,0],[-1,0],[-5,0],[-2,0],[-4,0],[-11,1],[-4,0],[-8,1],[-1,0],[-8,0],[-1,0],[-11,1],[-3,0],[-8,0],[-12,1],[-23,1],[-1,0],[-3,0],[-1,0],[-7,1],[-15,0],[-3,1],[-6,0],[-2,0],[-4,0],[-1,0],[-4,1],[-12,0],[-4,1],[-13,0],[-15,1],[-25,2],[-13,1],[-1,0],[-3,0],[-1,0],[-6,0],[-15,1],[-5,0],[-3,0],[-11,1],[-3,0],[-6,0],[-16,1],[-6,1],[-1,0],[-3,0],[-10,0],[-4,1],[-1,0],[-4,0],[-1,0],[-1,0],[-6,0],[-10,1],[-10,1],[-6,0],[-2,0],[-6,0],[-2,0],[-1,0],[0,1],[-2,0],[-6,0],[-1,0],[-3,0],[-1,0],[-2,0],[-2,0],[-5,1],[-3,0],[-2,0],[-10,1],[-5,0],[-5,0],[-2,0],[-2,0],[-6,1],[-2,0],[-2,0],[-2,0],[-4,0],[-2,0],[-7,1],[-1,0],[-16,1],[-2,0],[-4,0],[-4,0],[-4,0],[-4,1],[-12,0],[-4,0],[-1,0],[-1,0],[-3,1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-3,0],[-3,1],[-1,0],[-2,0],[-2,0],[-2,0],[-3,0],[-1,0],[-2,0],[-5,0],[-2,1],[-2,0],[-2,0],[-3,0],[-5,0],[-4,1],[-22,1],[-1,0],[-9,0],[-5,0],[-10,1],[-1,0],[-5,1],[-2,0],[-1,0],[-2,0],[-4,0],[-11,1],[-13,1],[-2,0],[-2,0],[-4,0],[-4,0],[-1,0],[-4,1],[-1,0],[-2,0],[-1,0],[-1,0],[-4,0],[-4,0],[-2,0],[-4,0],[-4,1],[-6,0],[-8,0],[-13,1],[-17,1],[-14,1],[-10,0],[-13,1],[-5,0],[-5,0],[-5,0],[-6,1],[-2,0],[-5,0],[-8,0],[-5,1],[-1,0],[-1,0],[-1,0],[-1,0],[-8,0],[-6,1],[-4,0],[-5,0],[-1,0],[-4,1],[-3,0],[-2,0],[-7,0],[-4,0],[-6,1],[-16,1],[-6,0],[-4,0],[-14,1],[-4,0],[-1,0],[-5,0],[-1,1],[-1,0],[-3,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-12,1],[-4,0],[-1,0],[-3,0],[-2,0],[-5,1],[-8,0],[-16,1],[-3,0],[-5,0],[-5,1],[-1,0],[-3,0],[-1,0],[-4,0],[-1,0],[-4,0],[-1,0],[-5,1],[-2,0],[-1,0],[-2,0],[-1,0],[-3,0],[-6,0],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[-4,0],[-4,0],[-2,0],[-13,1],[-4,0],[-23,1],[-1,0],[-17,1],[-25,1],[-6,0],[-5,1],[-3,0],[-3,0],[-5,0],[-1,0],[-5,1],[-14,1],[-12,0],[-1,0],[-2,1],[-2,0],[-1,0],[-2,0],[-4,0],[-4,0],[-5,0],[-6,1],[-9,0],[-6,0],[-7,1],[-1,0],[-41,2],[-25,1],[-9,1],[-6,0],[-16,1],[-19,1],[-11,0],[-13,1],[-2,0],[-54,3],[-8,0],[-29,1],[-26,1],[-1,0],[-2,0],[-12,1],[-24,1],[-1,0],[-5,0],[-4,0],[-19,1],[-3,0],[-4,1],[-34,1],[-22,2],[-1,0],[-14,1],[-3,0],[-2,0],[-3,0],[-4,0],[-5,0],[-15,1],[-4,0],[-12,1],[-7,0],[-5,1],[-2,0],[-5,0],[-1,0],[-3,0],[-4,0],[-5,0],[-16,1],[-7,0],[-2,0],[-8,0],[-2,1],[-1,0],[-2,0],[-10,0],[-2,0],[-1,0],[-9,0],[-2,1],[-24,0],[-9,0],[-7,0],[-17,1],[-2,0],[-6,0],[-3,0],[-7,0],[-3,0],[-1,1],[-2,0],[-10,0],[-3,0],[-1,0],[-1,0],[-3,0],[-9,0],[-3,1],[-4,0],[-12,1],[-1,0],[-3,0],[-1,0],[-4,1],[-16,1],[-5,0],[-1,0],[-2,0],[-3,0],[-3,1],[-1,0],[-1,0],[-1,0],[-1,0],[-5,0],[-14,1],[-5,0],[-4,0],[-14,1],[-5,0],[0,1],[-2,0],[-6,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-5,0],[-3,1],[-1,0],[-10,0],[-5,0],[-7,1],[-20,1],[-6,0],[-1,0],[-1,0],[-3,0],[-1,0],[-4,0],[-7,1],[-7,0],[-5,0],[-2,0],[-5,1],[-1,0],[-1,0],[-3,0],[-9,0],[-3,0],[-3,1],[-7,0],[-2,0],[-2,0],[-5,0],[-2,0],[-1,0],[-3,1],[-2,0],[-1,0],[-1,0],[-3,0],[-9,0],[-4,1],[-4,0],[-14,1],[-4,0],[-1,0],[-6,0],[-19,1],[-3,1],[-7,0],[-1,0],[-2,0],[-2,0],[-2,0],[-1,1],[-3,0],[-7,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-7,1],[-3,0],[-2,0],[-6,0],[-2,0],[-2,0],[-1,0],[-4,1],[-2,0],[-2,0],[-8,0],[-3,0],[-3,0],[0,1],[-2,0],[-7,0],[-2,0],[-9,0],[-2,1],[-15,0],[-9,1],[-9,0],[-1,0],[-6,0],[-22,1],[-7,1],[-1,0],[-1,0],[-5,0],[-1,0],[-6,0],[-14,1],[-4,0],[-6,0],[-1,0],[-4,0],[-1,0],[-2,1],[-8,0],[-2,0],[-1,0],[-1,0],[-1,0],[-5,0],[-2,0],[-2,0],[-1,1],[-1,0],[-3,0],[-7,0],[-3,0],[-4,0],[-1,1],[-5,0],[-1,0],[-2,0],[-7,0],[-2,0],[-7,1],[-22,1],[-7,0],[-1,0],[-13,1],[-13,1],[-16,0],[-11,1],[-12,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-9,0],[-2,0],[-12,1],[-13,1],[-9,0],[-1,0],[-3,0],[-12,0],[-1,0],[-3,0],[-1,0],[-13,1],[-1,0],[-1,0],[-1,0],[-1,3],[-3,6],[-1,4],[-2,3],[0,1],[-1,1],[0,1],[-1,1],[-1,2],[-2,3],[-1,1],[-5,5],[-2,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-2,0],[-1,1],[-1,1],[-2,0],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[-1,1],[0,2],[-1,2],[0,2],[-1,2],[0,1],[-1,2],[0,1],[-1,2],[-1,1],[0,1],[-2,2],[-2,1],[0,1],[-2,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,2],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-3,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-2,0],[-3,1],[-2,2],[-1,1],[-1,1],[0,1],[0,2],[0,1],[0,2],[0,2],[0,1],[0,2],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-3,2],[-1,1],[-1,1],[-2,3],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[1,2],[1,3],[1,2],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,1],[0,2],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-2,2],[0,1],[-1,1],[-3,5],[-2,2],[0,1],[-2,3],[-1,1],[-2,3],[-1,2],[-1,1],[-2,2],[-1,2],[-1,2],[0,3],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,3],[1,1],[0,2],[0,1],[0,2],[0,2],[-1,1],[0,1],[0,1],[0,1],[-1,2],[-1,2],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,2],[-2,2],[-1,1],[-1,2],[-1,1],[-2,3],[-1,1],[-2,3],[-1,2],[-1,3],[0,2],[0,3],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[1,2],[0,2],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,3],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,1],[1,1],[1,0],[1,1],[0,1],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[2,1],[0,2],[1,2],[0,2],[0,2],[0,1],[-1,1],[0,1],[-1,1],[-1,2],[-1,2],[0,1],[-1,0],[-1,2],[-1,0],[0,1],[-1,0],[-2,1],[-2,2],[-1,0],[-1,1],[-2,1],[-1,1],[0,1],[0,1],[-1,1],[-1,2],[0,1],[-1,2],[-1,1],[-1,2],[0,2],[-1,0],[0,2],[1,2],[1,2],[1,1],[1,1],[2,1],[1,0],[1,1],[1,1],[0,2],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-2,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,0],[0,1],[1,1],[0,1],[1,0],[1,2],[1,1],[1,2],[1,1],[1,1],[1,1],[0,1],[1,1],[0,2],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[-3,2],[-1,1],[-2,1],[-2,1],[-2,1],[-1,0],[-1,0],[-2,1],[-1,1],[-1,1],[-1,1],[0,1],[-2,2],[-1,3],[-2,2],[-1,1],[-1,2],[-2,2],[-1,1],[-3,3],[-1,2],[-1,2],[-1,3],[-1,2],[-1,2],[-1,0],[-1,2],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[-2,2],[-1,1],[-1,1],[-2,1],[0,1],[-1,1],[-1,0],[-1,1],[-1,1],[-2,2],[-1,1],[0,1],[-2,1],[-1,1],[-1,1],[-2,2],[-1,1],[-1,1],[0,1],[-1,1],[-1,2],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,2],[0,1],[-1,3],[0,1],[0,2],[0,1],[-1,2],[-1,1],[0,1],[-1,1],[-2,0],[-1,1],[-1,1],[-2,1],[-1,0],[0,1],[-2,0],[-3,2],[-1,0],[-1,0],[-2,1],[-2,1],[-2,1],[-1,1],[-2,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,2],[1,2],[0,2],[0,2],[0,1],[0,1],[0,2],[0,2],[1,1],[0,2],[0,2],[1,1],[0,2],[1,2],[0,1],[1,3],[1,2],[0,1],[1,1],[0,1],[0,1],[1,1],[0,2],[0,2],[0,3],[0,3],[-1,2],[0,3],[-1,1],[-1,2],[0,1],[-1,1],[-1,1],[-1,1],[0,2],[-2,1],[-2,2],[-1,1],[-1,0],[-1,1],[-2,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-2,1],[-2,0],[-2,1],[-2,0],[-3,1],[-2,0],[-1,1],[-2,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-2,1],[-3,2],[-2,2],[0,1],[-1,2],[0,1],[-1,1],[0,1],[0,2],[0,1],[0,2],[1,2],[1,2],[0,1],[1,3],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,2],[1,2],[0,2],[-1,2],[0,2],[-1,2],[1,0],[0,2],[0,2],[0,1],[0,1],[1,1],[0,2],[0,1],[1,0],[0,1],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[-1,0],[0,2],[0,1],[0,1],[1,1],[1,3],[0,2],[2,5],[1,2],[0,1],[1,7],[0,4],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-3,3],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[0,3],[0,5],[-1,3],[-1,2],[-4,8],[-1,1],[-2,4],[-1,2],[0,1],[0,2],[0,3],[1,4],[0,7],[1,5],[0,3],[0,3],[-1,2],[-2,4],[-2,5],[0,1],[0,4],[-1,1],[-1,2],[-1,2],[-1,1],[-2,1],[-1,0],[0,1],[-1,0],[-2,2],[-2,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,2],[0,1],[-1,1],[-2,5],[-2,5],[-1,1],[-1,1],[-1,1],[-1,1],[-1,2],[-3,2],[-3,4],[-1,2],[0,1],[-1,1],[-1,2],[-1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[1,1],[0,3],[1,0],[0,1],[0,1],[3,8],[0,2],[-1,4],[-1,3],[-1,1],[0,1],[-1,3],[-1,2],[0,4],[-1,2],[0,1],[-2,5],[-6,9],[-1,2],[-1,1],[0,1],[-1,0],[0,1],[-2,3],[0,1],[0,1],[0,5],[-1,2],[-1,2],[-2,1],[-7,4],[-4,2],[-3,2],[-3,2],[-2,3],[-1,2],[-1,0],[-6,5],[-1,0],[-1,1],[-3,0],[-1,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[-1,3],[0,2],[-1,1],[0,1],[0,1],[-3,4],[-1,3],[-2,3],[-2,2],[-1,2],[0,1],[-1,3],[0,2],[-1,5],[-1,2],[-1,4],[-1,2],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-2,2],[-5,4],[-3,3],[-1,0],[0,1],[-1,0],[0,1],[-1,2],[-1,2],[0,1],[-4,4],[-2,2],[-3,3],[-1,1],[-1,2],[-1,2],[0,1],[-2,1],[-1,1],[-4,2],[-2,0],[-3,1],[-3,0],[-1,1],[-3,0],[-4,0],[-2,0],[-2,1],[-5,0],[-1,0],[-1,1],[-2,1],[-8,6],[-1,0],[-3,2],[0,1],[-1,0],[0,1],[0,2],[1,4],[0,1],[0,1],[1,6],[1,8],[1,4],[0,5],[-1,1],[-1,2],[-1,2],[-2,2],[-3,3],[-1,1],[-2,0],[-1,1],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[0,1],[-1,1],[0,2],[0,3],[0,3],[0,4],[0,2],[-1,1],[0,4],[0,1],[1,4],[0,3],[1,3],[0,3],[0,1],[0,1],[1,1],[0,1],[1,0],[1,2],[1,0],[2,3],[2,2],[4,4],[1,1],[2,1],[1,2],[1,2],[1,3],[0,1],[0,3],[-1,4],[0,1],[0,1],[0,3],[0,1],[1,3],[1,3],[0,1],[2,5],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,2],[-1,2],[0,2],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,2],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,2],[0,1],[-1,1],[0,1],[-2,3],[-1,3],[0,1],[-1,2],[-1,4],[-1,4],[0,1],[-1,1],[-1,3],[-1,1],[-2,3],[-1,4],[-1,3],[-1,3],[-3,4],[-1,2],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,3],[0,1],[-1,2],[0,2],[-1,1],[1,1],[0,1],[2,4],[0,2],[0,5],[0,3],[0,1],[0,3],[-1,2],[-2,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[1,3],[1,1],[1,2],[2,1],[3,2],[5,2],[2,0],[2,0],[9,2],[1,0],[2,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,2],[1,1],[2,2],[1,0],[1,1],[0,1],[3,3],[1,0],[3,5],[3,4],[1,3],[0,2],[0,2],[0,2],[0,1],[1,2],[2,6],[1,4],[0,8],[0,1],[0,1],[0,4],[1,2],[4,7],[1,2],[0,1],[1,0],[0,1],[0,1],[0,1],[1,2],[0,2],[0,4],[0,3],[0,3],[0,7],[0,2],[-1,1],[-1,2],[-1,1],[-3,3],[-2,2],[0,1],[-2,2],[-1,1],[0,3],[-1,1],[1,1],[1,1],[2,2],[1,5],[1,5],[0,4],[1,3],[0,5],[0,3],[1,2],[-1,1],[0,1],[1,3],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[-2,0],[-4,0],[-1,0],[-1,0],[-1,2],[-2,2],[0,2],[0,6],[0,4],[0,2],[1,2],[-1,1],[1,1],[8,15],[1,2],[1,3],[1,1],[0,1],[0,1],[1,2],[1,5],[1,1],[0,2],[1,2],[2,2],[1,2],[1,1],[1,3],[1,5],[2,9],[0,1],[0,1],[0,1],[1,3],[1,2],[1,2],[1,0],[1,1],[1,3],[1,3],[0,4],[0,4],[-1,5],[0,1],[-2,4],[-1,2],[-1,3],[0,1],[0,2],[0,1],[1,1],[3,5],[1,0],[2,3],[0,4],[1,3],[0,6],[0,5],[0,2],[1,2],[2,4],[2,2],[1,1],[3,0],[1,-1],[1,-1],[1,-1],[2,-1],[1,0],[1,0],[2,2],[1,0],[1,2],[1,3],[0,1],[0,4],[0,1],[-1,2],[1,5],[0,6],[0,7],[-1,5],[0,1],[-1,4],[-3,8],[-1,3],[-1,2],[0,2],[0,1],[0,9],[-1,3],[0,1],[-1,2],[0,1],[-1,3],[-1,5],[-1,4],[0,1],[0,1],[1,3],[4,9],[2,5],[1,5],[2,4],[2,5],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[2,2],[2,2],[0,1],[1,2],[1,3],[1,3],[1,4],[1,2],[1,3],[2,3],[2,3],[0,3],[1,0],[2,3],[2,3],[4,7],[2,3],[2,3],[1,1],[0,2],[1,2],[1,2],[1,1],[1,2],[1,1],[5,5],[0,1],[1,2],[0,1],[1,2],[0,1],[0,2],[-3,4],[-2,1],[-1,1],[-1,2],[0,2],[-1,1],[1,1],[0,3],[1,2],[3,3],[1,2],[0,1],[1,1],[1,1],[1,2],[2,4],[3,5],[0,4],[1,3],[-1,4],[-1,4],[-1,3],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-2,4],[-3,4],[-2,3],[-1,2],[-1,3],[0,2],[-1,5],[-1,4],[-1,0],[-3,7],[-2,2],[-1,1],[-3,5],[-1,2],[0,3],[1,1],[2,4],[3,4],[0,1],[0,1],[0,1],[0,2],[-2,2],[0,1],[-3,4],[-1,2],[-1,1],[0,1],[0,1],[0,1],[1,1],[0,3],[0,3],[0,3],[0,3],[0,5],[0,1],[0,1],[0,3],[1,1],[0,1],[1,5],[1,3],[0,2],[1,3],[0,3],[0,1],[0,2],[0,1],[-2,1],[0,1],[-2,0],[0,1],[-1,0],[-2,0],[-1,1],[-1,0],[0,1],[0,3],[0,1],[0,1],[0,2],[1,2],[1,1],[2,2],[0,2],[1,0],[1,5],[0,1],[0,3],[0,1],[-1,1],[0,1],[-2,2],[-1,1],[-5,3],[-4,1],[-1,1],[-1,1],[-1,0],[-1,1],[-3,1],[-1,0],[0,1],[-2,1],[-1,1],[-3,1],[-1,1],[-1,1],[-1,1],[-2,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[-2,3],[-1,2],[-1,1],[-1,1],[0,1],[-2,2],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[-3,1],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,2],[-1,2],[0,1],[0,1],[2,3],[0,1],[1,1],[1,2],[0,1],[1,1],[0,1],[1,1],[0,1],[1,3],[1,0],[0,1],[0,1],[1,0],[0,2],[0,1],[1,1],[2,0],[2,0],[2,0],[1,0],[2,1],[0,2],[0,1],[0,1],[-1,0],[-1,2],[0,1],[-2,2],[-1,1],[-3,1],[-1,0],[-4,1],[-3,1],[-3,1],[-1,0],[-5,2],[-1,0],[-4,3],[-1,0],[-1,2],[-1,2],[-2,2],[-1,2],[-3,3],[-1,1],[-2,2],[-1,1],[-3,3],[-1,0],[-2,2],[0,1],[-2,2],[0,1],[-2,2],[-2,3],[-3,3],[-1,1],[-3,2],[-1,0],[-2,2],[-1,2],[-1,3],[0,1],[-4,11],[-1,1],[-2,2],[-1,1],[-3,2],[-2,1],[-3,2],[-2,1],[-3,1],[-2,1],[-1,1],[-2,1],[-1,2],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,2],[-1,1],[0,1],[1,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,1],[1,1],[2,2],[0,1],[1,1],[1,0],[1,2],[0,1],[0,3],[0,1],[0,2],[0,1],[0,2],[1,1],[1,2],[1,1],[1,1],[1,1],[1,1],[0,2],[1,2],[-1,1],[-1,2],[0,1],[-1,2],[0,1],[0,2],[-1,1],[0,1],[0,1],[-1,2],[0,3],[-1,3],[0,1],[0,2],[-1,2],[-1,2],[-1,1],[-1,3],[-1,1],[0,2],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,2],[-1,1],[-1,2],[0,1],[-1,1],[0,1],[-1,2],[1,1],[0,2],[1,0],[1,2],[0,1],[1,1],[0,1],[1,1],[1,0],[1,1],[0,1],[1,2],[0,1],[0,2],[1,0],[0,2],[0,1],[-1,0],[0,1],[-2,2],[-1,1],[-1,1],[-2,2],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-3,3],[-4,3],[-3,2],[-2,1],[-2,2],[-1,1],[-2,2],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[1,0],[1,2],[1,2],[1,1],[1,1],[1,1],[1,1],[2,2],[0,1],[1,2],[1,1],[3,3],[1,1],[3,3],[1,1],[1,2],[0,1],[0,3],[0,1],[-1,3],[0,1],[0,3],[0,1],[1,2],[0,1],[0,1],[0,3],[0,1],[-1,3],[0,2],[0,3],[0,1],[0,1],[0,4],[1,2],[1,3],[1,2],[0,4],[0,1],[0,3],[0,2],[0,2],[-1,1],[-1,1],[0,1],[-2,2],[0,1],[-1,1],[0,1],[-1,5],[0,1],[1,2],[1,1],[2,0],[1,1],[0,2],[-1,0],[0,1],[-3,2],[-1,1],[-2,1],[-1,1],[-1,0],[-2,2],[-1,1],[-2,3],[-1,2],[-2,2],[0,2],[-1,0],[-1,2],[0,1],[0,1],[-1,2],[0,1],[0,1],[1,2],[0,1],[2,2],[1,1],[2,2],[1,1],[1,2],[0,2],[0,3],[0,1],[0,3],[0,2],[-1,2],[0,2],[-2,2],[-1,1],[0,2],[-1,2],[-1,3],[0,2],[0,1],[1,1],[1,2],[2,1],[1,0],[2,2],[0,1],[2,2],[1,0],[1,3],[0,1],[1,3],[0,2],[0,2],[1,2],[1,3],[0,1],[2,2],[0,1],[3,3],[1,1],[1,2],[1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,2],[0,1],[0,3],[-1,0],[0,1],[0,1],[-1,2],[-1,1],[0,1],[-1,3],[-1,1],[-1,2],[0,1],[-2,2],[-1,1],[-2,3],[0,1],[-1,2],[0,1],[0,1],[1,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[1,0],[3,0],[1,0],[2,0],[2,0],[6,1],[1,0],[2,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[2,0],[2,0],[2,1],[2,1],[1,1],[1,1],[1,1],[1,1],[0,1],[0,1],[1,1],[-1,1],[0,2],[-1,2],[0,1],[-1,1],[0,2],[-1,2],[0,1],[1,1],[1,1],[1,0],[2,1],[2,0],[2,0],[0,1],[0,1],[0,2],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-4,2],[-2,1],[0,2],[0,1],[-1,1],[1,1],[2,1],[1,1],[1,1],[1,0],[1,0],[1,1],[1,1],[1,0],[2,1],[1,0],[1,1],[1,1],[1,1],[2,0],[2,1],[1,1],[2,1],[1,1],[1,1],[1,3],[0,2],[0,3],[1,2],[0,2],[1,1],[1,2],[1,1],[1,1],[2,0],[2,1],[2,1],[2,0],[2,1],[2,1],[2,1],[1,1],[1,2],[1,2],[1,2],[1,2],[2,2],[1,1],[1,2],[2,2],[2,1],[1,2],[2,1],[3,1],[2,1],[3,1],[2,2],[0,1],[0,2],[-1,0],[-1,1],[-1,1],[-4,4],[0,2],[0,1],[-1,2],[0,2],[-1,1],[0,2],[-1,1],[0,2],[0,2],[0,1],[-1,1],[0,1],[0,2],[0,1],[-1,1],[-1,1],[-1,2],[-1,1],[-1,1],[0,2],[0,1],[0,2],[1,1],[1,2],[1,1],[1,0],[1,1],[1,1],[1,1],[2,0],[2,1],[3,0],[3,1],[3,0],[3,1],[3,0],[4,2],[2,1],[2,1],[2,1],[2,1],[1,1],[1,2],[1,2],[0,1],[1,1],[0,1],[1,1],[0,2],[0,1],[-1,2],[0,1],[-1,2],[-1,1],[-1,1],[-1,2],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,3],[0,1],[0,1],[0,2],[1,1],[1,1],[1,2],[1,1],[1,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,2],[1,1],[2,5],[2,5],[2,3],[10,10],[7,5],[3,6],[-2,5],[-1,4],[0,2],[3,4],[5,0],[5,1],[0,1],[0,1],[0,2],[-3,3],[-5,3],[-3,2],[-2,1],[-2,3],[-2,3],[-1,4],[-1,4],[2,1],[4,2],[3,2],[1,4],[-2,3],[-2,3],[-1,1],[-1,1],[-1,2],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,2],[1,2],[0,2],[1,2],[0,1],[1,1],[0,2],[0,2],[0,2],[0,3],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[1,2],[0,2],[4,11],[0,5],[0,1],[-1,2],[-2,2],[0,4],[3,7],[2,6],[4,4],[5,1],[4,2],[4,4],[0,5],[-2,2],[-4,6],[-3,8],[-2,5],[-3,8],[-3,7],[-1,6],[-3,13],[-4,13],[-4,12],[-1,2],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,2],[0,1],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[1,1],[1,1],[1,1],[1,1],[1,1],[2,1],[0,1],[2,1],[1,1],[2,1],[1,0],[2,1],[1,0],[1,1],[2,0],[1,1],[0,1],[1,0],[2,1],[1,1],[1,1],[1,0],[1,1],[2,1],[1,1],[1,1],[2,1],[1,1],[1,1],[1,2],[0,1],[1,0],[0,1],[1,1],[1,1],[1,1],[1,1],[1,2],[1,1],[1,1],[1,1],[1,2],[2,2],[1,1],[1,1],[2,2],[3,3],[2,1],[1,1],[1,1],[1,2],[1,2],[2,3],[1,2],[1,2],[1,1],[2,2],[2,2],[1,2],[2,2],[1,1],[2,2],[2,2],[2,1],[1,2],[1,0],[3,2],[4,3],[1,1],[1,1],[1,1],[2,1],[0,1],[1,1],[1,2],[1,1],[1,1],[1,2],[0,1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[2,1],[3,0],[1,0],[2,1],[2,0],[2,0],[3,0],[2,1],[1,0],[1,1],[3,1],[2,1],[2,0],[2,1],[2,1],[1,0],[2,1],[4,2],[1,0],[1,0],[2,0],[2,1],[1,0],[1,0],[2,1],[3,1],[2,1],[2,1],[2,0],[2,1],[2,1],[2,0],[1,0],[0,1],[2,0],[2,0],[1,0],[1,1],[1,0],[2,1],[1,1],[1,0],[2,1],[1,0],[0,1],[2,0],[1,1],[1,1],[2,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,1],[1,1],[0,1],[1,1],[1,1],[1,1],[0,1],[1,0],[-1,2],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[-1,2],[-1,1],[-2,1],[-1,0],[-2,1],[-2,0],[-2,0],[-1,0],[-2,-1],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,2],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,2],[1,1],[0,1],[1,1],[2,2],[0,1],[2,2],[1,1],[2,2],[2,2],[2,2],[2,1],[2,1],[3,2],[2,0],[1,1],[2,0],[2,0],[4,-1],[3,-1],[3,0],[1,-1],[1,0],[2,0],[2,0],[2,0],[2,0],[3,0],[2,0],[2,0],[1,0],[2,0],[2,1],[3,0],[2,0],[1,0],[2,0],[2,0],[3,-1],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[1,0],[1,0],[2,0],[2,0],[4,1],[3,0],[4,1],[2,0],[1,0],[1,0],[1,1],[1,0],[2,1],[1,1],[2,1],[2,1],[1,2],[1,1],[1,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[1,2],[1,1],[1,1],[1,1],[1,1],[2,1],[2,1],[1,1],[1,0],[1,1],[1,1],[1,2],[1,1],[0,1],[1,2],[1,1],[0,1],[1,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[-2,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-3,1],[-1,0],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[-1,1],[0,1],[2,1],[1,0],[2,0],[1,0],[1,0],[2,-1],[1,0],[1,-1],[1,0],[2,-1],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[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,1],[1,0],[1,1],[2,1],[1,1],[1,1],[1,0],[0,1],[0,1],[0,3],[0,2],[1,3],[1,2],[1,2],[2,2],[2,1],[2,0],[2,0],[4,0],[5,-1],[2,-1],[2,-1],[2,0],[1,0],[1,1],[2,1],[1,1],[1,1],[0,1],[-1,2],[-1,1],[-1,1],[-2,2],[-2,2],[-3,2],[-1,2],[-1,1],[-1,1],[-2,1],[-2,1],[-2,1],[-3,1],[0,1],[-1,2],[-2,1],[-1,1],[-1,2],[-1,0],[-1,2],[-1,1],[-1,0],[-1,1],[-1,1],[-2,1],[-2,1],[-2,1],[-6,3],[-2,1],[-2,1],[-2,1],[-2,3],[-3,1],[-1,2],[-1,0],[-3,2],[-2,2],[-3,1],[-1,1],[-2,2],[-2,2],[-2,2],[-2,2],[-2,2],[-1,3],[-2,1],[-1,2],[-2,2],[-2,3],[-3,3],[-1,2],[-2,2],[-2,2],[-1,2],[-2,1],[-1,0],[-1,1],[-2,1],[-1,0],[-2,1],[-1,1],[-1,0],[0,1],[-2,1],[-1,1],[-3,1],[-2,1],[-2,1],[-2,0],[-3,0],[-2,1],[-2,1],[-2,0],[-2,0],[-2,1],[-2,1],[-2,0],[-1,1],[-1,1],[-2,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,1],[-2,0],[-2,1],[-2,1],[-2,1],[-2,1],[-2,1],[-2,0],[-1,0],[-3,1],[-1,1],[-4,1],[-4,2],[-3,2],[-3,1],[-2,0],[-4,2],[-2,1],[-3,1],[-4,1],[-3,1],[-1,1],[-4,1],[-3,2],[-3,2],[-2,0],[-3,1],[-2,0],[-1,0],[-3,1],[-3,1],[-3,1],[-2,0],[-1,0],[-3,0],[-1,0],[-3,2],[-2,1],[-1,0],[-1,2],[-3,3],[-3,4],[-1,3],[0,2],[0,2],[-1,3],[0,5],[-1,3],[0,3],[2,5],[1,3],[1,1],[1,1],[0,1],[1,2],[0,3],[0,1],[1,2],[1,1],[2,2],[1,0],[1,1],[1,1],[0,1],[4,3],[1,0],[7,4],[7,5],[2,2],[1,1],[3,3],[3,3],[3,2],[2,2],[2,3],[1,2],[1,1],[1,1],[0,1],[0,2],[0,2],[-1,1],[0,1],[-4,3],[-1,2],[0,2],[0,3],[1,1],[0,1],[1,1],[1,1],[1,2],[2,1],[1,0],[1,0],[1,0],[1,1],[2,-1],[2,0],[2,0],[2,-1],[3,0],[2,1],[2,1],[1,1],[1,1],[1,1],[1,2],[0,2],[0,1],[-1,1],[-1,1],[-1,1],[-2,1],[-4,1],[-3,0],[-3,0],[-2,-1],[-3,0],[-3,0],[-2,0],[-1,-1],[-3,1],[-2,2],[-2,2],[-1,2],[0,2],[1,3],[1,2],[1,2],[0,1],[1,1],[1,2],[1,1],[1,2],[1,1],[3,2],[1,0],[1,0],[2,-1],[2,-1],[4,-1],[1,0],[1,0],[1,1],[1,0],[2,0],[1,0],[2,0],[2,0],[4,-1],[1,0],[3,1],[1,1],[1,1],[0,1],[-1,2],[-1,0],[-2,1],[-2,1],[-1,0],[-2,1],[-1,1],[-2,0],[-1,1],[-1,1],[1,0],[-1,0],[0,1],[-1,0],[-2,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,2],[-2,1],[-1,1],[-1,1],[-1,2],[0,3],[0,2],[0,2],[0,3],[1,2],[2,11],[5,4],[4,2],[7,3],[12,10],[5,3],[0,1],[1,3],[-4,6],[-4,15],[0,3],[-6,11],[-4,5],[-12,2],[-4,1],[-3,1],[-6,2],[-4,2],[-5,3],[-4,2],[-1,1],[-6,3],[-3,5],[-1,0],[-2,7],[0,1],[-1,2],[0,2],[-2,4],[0,3],[0,3],[-1,2],[0,2],[0,2],[0,1],[0,2],[0,3],[0,2],[1,2],[2,4],[2,3],[2,3],[-1,4],[1,3],[0,3],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,1],[0,2],[-1,4],[-1,3],[-2,4],[-3,4],[0,1],[0,2],[-1,4],[2,4],[1,0],[2,5],[-1,4],[-6,2],[0,2],[2,3],[-1,1],[0,1],[0,1],[-1,0],[-2,2],[0,3],[-1,2],[0,4],[0,4],[-4,4],[-1,1],[-3,1],[-2,2],[-1,3],[0,3],[0,2],[-1,3],[-3,2],[-3,1],[0,1],[-4,1],[-4,0],[-1,1],[-2,2],[-1,2],[1,2],[1,2],[-1,2],[-1,1],[-1,0],[-2,3],[-2,1],[0,2],[-2,0],[-2,1],[-1,2],[-1,4],[-2,5],[0,2],[2,1],[1,1],[0,2],[-1,1],[-3,-1],[-2,0],[-2,2],[-2,2],[-1,0],[-2,0],[-3,0],[-4,0],[-2,-1],[-1,1],[-2,3],[0,2],[0,5],[-1,3],[-1,2],[-2,1],[-1,1],[0,2],[-1,1],[-2,1],[-1,0],[-2,0],[0,1],[-2,2],[-1,1],[-3,-1],[-3,0],[-2,2],[-3,2],[1,2],[0,2],[-1,2],[0,1],[-1,2],[-1,1],[-2,2],[-2,1],[-2,1],[-2,0],[-1,2],[-2,3],[-3,2],[-2,2],[-3,3],[-4,3],[0,2],[1,1],[0,2],[-1,1],[-2,2],[-3,2],[-2,3],[-3,2],[-4,2],[-3,0],[-4,1],[-1,1],[-4,9],[-3,5],[-1,2],[-2,3],[-2,3],[-1,1],[-1,2],[-1,2],[-1,1],[0,1],[-1,1],[-1,2],[0,1],[-1,2],[-1,2],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,2],[0,1],[0,1],[-1,2],[0,1],[-1,0],[-1,2],[0,1],[0,1],[0,2],[0,2],[0,1],[-1,3],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[0,2],[0,2],[1,2],[-1,2],[0,1],[-1,0],[0,1],[-2,1],[-1,1],[-2,1],[-2,2],[-2,1],[-1,1],[-1,1],[-2,2],[-1,2],[-1,2],[-1,1],[0,1],[-1,1],[0,2],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[5,2],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,2],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-4,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[1,-2],[0,-1],[-2,-1],[-1,1],[-2,0],[0,1],[-1,0],[-1,-1],[-1,0],[1,0],[1,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-2,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,-1],[-1,0],[0,1],[1,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,1],[0,1],[1,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[2,0],[1,0],[0,1],[2,1],[0,2],[0,1],[-1,1],[-1,1],[-1,1],[-3,3],[0,1],[0,1],[1,0],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-2,2],[-1,2],[-1,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-3,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-2,0],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[0,1],[1,0],[1,1],[1,1],[1,1],[1,1],[1,1],[0,1],[1,0],[1,1],[1,1],[0,1],[1,1],[1,0],[0,2],[1,1],[1,1],[0,1],[0,1],[2,3],[-1,6],[-3,5],[-4,4],[-4,2],[-4,2],[-4,1],[-5,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-3,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,1],[-1,2],[-1,2],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,3],[0,1],[-1,2],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[2,1],[2,2],[1,1],[1,1],[1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[1,0],[2,0],[1,-1],[1,0],[1,-1],[1,0],[2,0],[2,-1],[1,0],[0,-1],[1,1],[11,4],[2,0],[1,0],[0,1],[1,0],[1,1],[1,1],[0,3],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[-1,2],[0,1],[-1,1],[-1,0],[-1,0],[-1,1],[-2,0],[-1,-1],[-2,1],[-2,1],[-3,2],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[-2,1],[-1,-1],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,1],[0,1],[0,1],[0,2],[-1,1],[-1,1],[-1,1],[-1,2],[0,1],[0,3],[0,1],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,1],[-2,0],[-1,0],[-1,1],[-2,1],[-3,1],[0,1],[-1,0],[-1,1],[-2,2],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,2],[-1,2],[-1,1],[-1,1],[-3,2],[-1,0],[-1,2],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[-3,2],[-1,1],[-1,1],[-1,2],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[0,1],[-2,1],[0,1],[0,1],[-2,2],[-1,0],[0,1],[0,1],[0,2],[-1,1],[1,1],[1,0],[1,2],[1,2],[3,4],[1,1],[0,1],[0,1],[0,2],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-1,3],[-2,2],[-1,2],[-1,1],[1,2],[0,1],[1,2],[1,2],[0,1],[2,4],[1,0],[0,1],[0,1],[1,0],[1,2],[0,1],[2,1],[4,3],[1,1],[1,1],[0,1],[1,0],[3,1],[3,2],[3,0],[2,0],[1,0],[0,1],[1,0],[0,1],[1,1],[0,2],[0,2],[1,1],[0,1],[0,2],[-1,2],[-1,4],[-1,1],[0,1],[-1,1],[-2,3],[-2,3],[-2,1],[-1,2],[-1,2],[-1,2],[-1,0],[-2,2],[-2,1],[-1,0],[-2,0],[-2,0],[-2,-2],[-1,0],[-2,-1],[-1,-2],[-1,-1],[0,-1],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-3,1],[-1,0],[-6,1],[-3,1],[-2,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-3,3],[-1,1],[-1,2],[-1,1],[-2,3],[-1,2],[-1,4],[0,4],[0,4],[0,4],[0,1],[0,1],[1,2],[-1,-1],[-1,4],[0,3],[-1,2],[0,1],[0,1],[0,1],[-1,3],[0,3],[-1,2],[0,1],[0,1],[-1,2],[0,1],[0,4],[-1,1],[0,4],[-1,1],[-1,7],[-1,2],[0,1],[-1,5],[0,2],[-2,11],[0,1],[-1,3],[0,3],[-1,3],[0,1],[-1,2],[-1,10],[-1,1],[-1,5],[0,1],[0,1],[-1,4],[0,3],[-1,1],[0,2],[0,1],[0,1],[-1,5],[-2,8],[0,2],[-3,13],[0,1],[0,1],[-1,3],[-3,16],[-1,6],[-1,7],[-1,3],[-1,7],[0,2],[-2,6],[0,5],[-2,8],[-1,3],[0,1],[-1,4],[-2,10],[0,1],[-1,4],[0,2],[-1,5],[0,1],[-1,4],[-1,6],[0,2],[-1,2],[-1,7],[-2,9],[0,1],[-1,4],[-1,8],[-1,6],[-1,2],[-3,18],[-2,7],[-1,10],[-1,1],[-1,5],[0,4],[-1,5],[-3,14],[-1,5],[-1,5],[-1,4],[-1,5],[0,2],[-1,4],[0,1],[0,1],[0,1],[-1,3],[-1,4],[0,2],[-1,5],[-1,4],[0,2],[-1,6],[-4,17],[0,1],[0,1],[0,2],[-1,2],[-2,10],[-2,12],[-4,19],[-2,11],[-7,38],[0,1],[-2,7],[0,5],[-5,24],[-1,8],[-1,1],[0,1],[-3,19],[-4,20],[-1,5],[0,2],[0,2],[-1,6],[-4,16],[-4,24],[-3,17],[-2,7],[-3,20],[-2,12],[-2,9],[-2,11],[0,1],[0,1],[-1,2],[-3,16],[-2,12],[-2,12],[0,1],[-1,4],[-1,9],[-1,1],[-1,4],[-1,6],[0,2],[-2,14],[-1,4],[-2,10],[-4,23],[-3,16],[-2,8],[-4,26],[-3,14],[-3,17],[-3,14],[-5,28],[-4,24],[-2,11],[-2,11],[-2,12],[-6,30],[0,1],[-4,24],[-2,9],[-4,22],[-8,43],[-3,15],[0,3],[-2,6],[-1,8],[-2,8],[0,1],[-5,25],[0,1],[-2,13],[-3,16],[-1,5],[-4,21],[-3,19],[-1,5],[-2,12],[-3,9],[0,2],[-1,6],[-1,4],[-3,16],[-1,5],[-2,13],[-4,21],[-1,3],[-2,10],[-1,6],[-1,6],[0,1],[0,1],[0,1],[-1,0],[-1,6],[0,1],[0,1],[0,1],[0,1],[-1,4],[-1,4],[-1,9],[-2,11],[-3,10],[0,1],[1,0],[-1,4],[-1,3],[-2,12],[-5,24],[-1,9],[-1,5],[-4,19],[-5,29],[-2,10],[-7,35],[-1,3],[-5,26],[-2,12],[-3,17],[-1,5],[0,2],[-1,0],[-7,38],[-1,9],[-3,15],[-5,27],[-2,9],[-5,28],[0,1],[-5,28],[-1,0],[0,1],[-5,28],[-1,5],[-2,13],[-1,1],[-1,4],[-1,7],[0,4],[-1,3],[0,1],[-4,21],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,2],[-1,2],[0,1],[0,1],[-1,2],[0,1],[-2,11],[0,1],[0,1],[-3,18],[-7,37],[-5,26],[0,2],[-3,18],[-1,2],[0,1],[-1,8],[-3,14],[-1,5],[-1,5],[-1,5],[-1,7],[-1,4],[0,1],[-1,7],[-1,4],[-3,16],[-1,6],[-1,3],[-1,8],[-1,5],[-1,3],[-1,4],[0,1],[-6,32],[0,2],[0,1],[-2,7],[-1,7],[-1,3],[-2,15],[-2,10],[-2,8],[-4,22],[-5,27],[-4,20],[0,3],[-3,14],[-1,3],[0,4],[-2,9],[-1,5],[0,1],[0,1],[-1,1],[-5,31],[-5,27],[-3,11],[-1,5],[0,1],[-5,26],[-1,2],[-1,5],[0,1],[-2,10],[0,1],[-3,17],[-7,38],[-4,23],[-1,7],[-2,8],[0,3],[-2,8],[-1,8],[0,1],[-2,10],[-1,5],[0,1],[-9,49],[-1,2],[-2,11],[0,4],[-1,0],[-2,23],[-6,31],[-1,5],[-3,15],[-4,20],[0,1],[-2,7],[-3,16],[-7,38],[-2,9],[-1,7],[-2,7],[0,1],[0,1],[0,1],[0,2],[-1,2],[0,2],[0,1],[-1,4],[-1,3],[0,1],[0,2],[-2,7],[-2,14],[-8,38],[-4,24],[-1,4],[-1,3],[-1,3],[0,2],[0,4],[-2,10],[-4,18],[0,1],[-1,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,2],[-2,6],[-4,22],[-1,8],[-2,8],[-1,4],[0,3],[-3,12],[0,1],[-2,11],[-4,22],[-1,7],[-4,22],[-8,36],[-1,4],[-7,37],[-5,24],[-3,12],[-5,27],[0,1],[-1,1],[-1,8],[-2,10],[0,1],[-1,0],[0,1],[-4,19],[0,1],[0,1],[-2,11],[-1,1],[-3,16],[-7,31],[-4,21],[0,1],[-1,0],[-2,11],[-3,14],[0,3],[-1,3],[-1,4],[0,1],[0,1],[-1,2],[0,2],[-2,7],[0,2],[0,1],[-1,5],[-4,17],[0,2],[0,1],[-1,3],[-1,3],[-1,7],[-1,3],[0,3],[-2,6],[0,4],[-1,1],[0,2],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,3],[0,1],[-1,2],[0,1],[0,1],[0,1],[-1,2],[0,3],[-1,3],[-1,3],[0,3],[-1,3],[-1,2],[0,1],[0,1],[0,1],[-2,5],[0,1],[0,1],[-1,5],[-1,1],[0,1],[0,1],[0,2],[-1,1],[0,4],[-1,2],[0,2],[-1,3],[-1,6],[0,2],[0,2],[-1,3],[-1,7],[-1,3],[0,2],[-1,6],[-1,2],[0,2],[0,1],[0,1],[-1,0],[0,1],[0,2],[0,1],[-1,2],[-1,4],[0,2],[0,1],[0,1],[-1,1],[0,2],[-1,2],[-1,7],[0,2],[-1,4],[-3,13],[-1,4],[-1,5],[-2,9],[-1,8],[-2,5],[0,2],[-1,4],[0,2],[0,1],[-1,0],[-7,39],[0,1],[-3,15],[-1,5],[-2,13],[-1,3],[0,3],[-5,21],[-5,28],[-4,18],[0,1],[-2,7],[-1,5],[-7,33],[-1,5],[-1,5],[-1,4],[0,1],[0,1],[-2,9],[-2,10],[0,1],[-2,7],[-1,5],[-1,5],[-2,9],[0,3],[0,1],[-1,1],[0,3],[-1,2],[0,3],[-1,3],[0,1],[-7,35],[-2,8],[-1,6],[-1,2],[-5,25],[0,1],[-5,27],[0,2],[-2,9],[-3,13],[-2,13],[-11,56],[0,2],[-1,3],[-3,15],[-2,12],[0,1],[-1,5],[-1,4],[0,1],[0,2],[-1,0],[-2,17],[-2,9],[-3,16],[-2,13],[-1,5],[-2,10],[-1,2],[-1,10],[-1,1],[0,4],[-1,3],[0,1],[-1,4],[-1,9],[-1,1],[0,4],[-2,8],[0,4],[-4,19],[-2,13],[-1,2],[-1,5],[0,4],[-1,3],[0,1],[0,1],[0,1],[0,1],[-1,5],[-1,3],[0,1],[0,1],[0,1],[0,2],[-1,2],[-3,17],[-1,6],[0,1],[-2,7],[-1,9],[-1,4],[-3,17],[-1,6],[0,1],[-1,11],[0,4],[-2,9],[-1,10],[-1,7],[-1,0],[-1,12],[-3,16]],[[2648,7608],[0,6],[0,4],[0,3],[0,2],[0,6],[0,3],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[2,0],[1,0],[2,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[3,1],[1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,2],[-1,2],[0,2],[-1,0],[0,2],[1,1],[0,2],[0,1],[1,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-2,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,2],[0,2],[1,0],[0,1],[-5,0],[-7,0],[-10,0],[-4,0],[-2,0],[-2,0],[-2,0],[-2,-1],[-2,0],[-1,0],[-4,-1],[-6,-3],[-1,0],[-10,-3],[-8,-3],[-1,0],[-1,0],[0,-1],[0,-1],[0,-3],[0,-1],[0,-3],[0,-1],[0,-3],[-1,-9],[0,-5],[0,-1],[0,-1],[0,-2],[0,-1],[0,-9],[0,-5],[0,-1],[0,-1],[0,-1],[0,-3],[0,-11],[0,-6],[0,-1],[0,-1],[0,-4],[1,-2],[0,-3],[0,-4],[-1,-2],[0,-1],[0,-2],[0,-9],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-5],[0,-1],[0,-2],[0,-3],[0,-1],[1,-3],[0,-1],[-1,-7],[0,-1],[0,-2],[0,-1],[0,-4],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-6],[0,-1],[0,-1],[0,-1],[0,-8],[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],[1,0],[2,1],[1,0],[1,1],[2,1],[0,1],[1,1],[3,2],[3,1],[2,1],[6,3],[5,2],[3,2],[3,1],[2,1],[2,1],[3,1],[3,2],[1,0],[2,2],[6,3],[4,2],[1,1],[2,0],[1,0],[1,1],[8,1],[3,0],[1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,2],[0,4],[0,1],[0,1],[1,1],[0,2],[1,2],[1,1],[0,1],[1,0],[1,1],[0,1],[1,1],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[1,0],[1,1],[1,2],[1,1],[0,1],[1,0],[0,1],[0,2],[0,1],[0,1],[0,2],[0,2],[0,3],[0,2],[0,3],[0,4],[0,3],[0,7],[0,2],[-2,0],[-7,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-2,1],[-3,0],[-1,0],[-1,0],[0,3],[-1,0],[-2,0],[0,-1],[-2,1],[1,1],[2,2],[1,1],[1,1],[1,0],[0,9],[-1,9]]],"transform":{"scale":[0.0004854221422142212,0.0004645366536653663],"translate":[-85.605165,30.355757]}}
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment