Skip to content

Instantly share code, notes, and snippets.

@rveciana
Last active February 9, 2017 12:19
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rveciana/fa4b43f086afc5ac11bbb4702dce014e to your computer and use it in GitHub Desktop.
Save rveciana/fa4b43f086afc5ac11bbb4702dce014e to your computer and use it in GitHub Desktop.
Playing with geo2rect
licence: mit
height: 1000

Example of the d3.geo2rect library, with the data for Spain.

The d3CompositeProjections won't work with this library. Also, each region gets only the biggest geometry to be drawn, so the islands are erased...

(function (global, factory) {
typeof exports === 'object' && typeof module !== 'undefined' ? factory(exports) :
typeof define === 'function' && define.amd ? define(['exports'], factory) :
(factory((global.geo2rect = global.geo2rect || {})));
}(this, function (exports) { 'use strict';
function compute (data) {
//TODO: check if data is in a valid format
data.features.forEach(function (d, di) {
//Preserve original coordinates
d.geometry["ocoordinates"] = d.geometry.coordinates;
//As we can only transform one polygon into a rectangle, we need to get rid of holes and small additional polygons (islands and stuff)
if (d.geometry.type === "MultiPolygon") {
//choose the largest polygon
d.geometry.coordinates = largestPoly(d.geometry);
d.geometry.type = "Polygon";
}
//Getting rid of holes
if (d.geometry.coordinates.length > 1) {
//We are too lazy to calculate if poly is clockwise or counter-clockwise, so we again just keep the largest poly
d.geometry.coordinates = largestPoly(d.geometry);
}
var b = turf.bbox(d);
d.geometry["centroid"] = [(b[2] - b[0]) / 2 + b[0], (b[1] - b[3]) / 2 + b[3]];
//Not supported geometries (length<4) we simply duplicate the first point
//TODO: the new points could be evenly distributed between the existing points
//TODO: but this only for triangles anyway, anything with (length<3) is actually an error
if (d.geometry.coordinates[0].length < 4) {
while (d.geometry.coordinates[0].length < 4) {
d.geometry.coordinates[0].push(d.geometry.coordinates[0][0]);
}
}
var geom = d.geometry.coordinates[0],
corners = [];
//Moving through the four corners of the rectangle we find the closest point on the polygon line, making sure the next point is always after the last
var _loop = function _loop(i) {
var corner = void 0,
dist = Number.MAX_VALUE,
pc = void 0;
switch (i) {
case 0:
pc = [b[0], b[3]];
break;
case 1:
pc = [b[2], b[3]];
break;
case 2:
pc = [b[2], b[1]];
break;
case 3:
pc = [b[0], b[1]];
break;
}
geom.forEach(function (dd, ddi) {
var t_dist = Math.abs(Math.sqrt(Math.pow(pc[0] - dd[0], 2) + Math.pow(pc[1] - dd[1], 2)));
if (t_dist < dist && (ddi < corners[0] || ddi > corners[corners.length - 1] || corners.length === 0)) {
dist = t_dist;
corner = ddi;
}
});
if (corners.length >= 1) {
//Counting the points already used up
var pointCount = 0;
if (corners.length >= 2) {
for (var _j = 1; _j < corners.length; _j++) {
var _c3 = corners[_j],
_c4 = corners[_j - 1],
_numPoints2 = void 0;
if (_c4 < _c3) {
_numPoints2 = _c3 - _c4;
} else {
_numPoints2 = _c3 + (geom.length - _c4);
}
pointCount += _numPoints2;
}
}
//get numpoints for new potential point
var _c = corners[corners.length - 1],
_c2 = corner,
_numPoints = void 0;
if (_c < _c2) {
_numPoints = _c2 - _c;
} else {
_numPoints = _c2 + (geom.length - _c);
}
//If there are not enough points left to finish the rectangle go step back
if (geom.length - _numPoints - pointCount < 4 - i) {
corner -= 4 - i;
if (corner < 0) {
corner += geom.length;
}
}
}
corners.push(corner);
};
for (var i = 0; i < 4; i++) {
_loop(i);
}
//NOTE: to myself Outer rings are counter clockwise
//Finding the closest point to each corner
var ngeom = {};
for (var i = 0; i < 4; i++) {
var p1 = void 0,
p2 = void 0,
ox = void 0,
oy = void 0;
switch (i) {
case 0:
ox = 0;oy = 0;
p1 = [b[0], b[3]];
p2 = [b[2], b[3]];
break;
case 1:
ox = 1;oy = 0;
p1 = [b[2], b[3]];
p2 = [b[2], b[1]];
break;
case 2:
ox = 1;oy = 1;
p1 = [b[2], b[1]];
p2 = [b[0], b[1]];
break;
case 3:
ox = 0;oy = 1;
p1 = [b[0], b[1]];
p2 = [b[0], b[3]];
break;
}
var x = p2[0] - p1[0],
y = p2[1] - p1[1];
if (x != 0) {
x = x / Math.abs(x);
}
if (y != 0) {
y = y / Math.abs(y);
}
y *= -1;
var c1 = corners[i],
c2 = i === corners.length - 1 ? corners[0] : corners[i + 1],
numPoints = void 0;
if (c1 < c2) {
numPoints = c2 - c1;
} else {
numPoints = c2 + (geom.length - c1);
}
for (var j = 0; j < numPoints; j++) {
var tp = c1 + j;
if (tp > geom.length - 1) {
tp -= geom.length;
}
ngeom[tp] = {
c: d.geometry.centroid,
x: ox + x / numPoints * j,
y: oy + y / numPoints * j
};
}
}
d.geometry['qcoordinates'] = [];
//Okey, i have no clue why the first point is broken (i=0 > i=1)
for (var _i = 1; _i < geom.length; _i++) {
if (_i === geom.length - 1) {
d.geometry.qcoordinates.push(ngeom[0]);
} else {
d.geometry.qcoordinates.push(ngeom[_i]);
}
}
});
//polys: d.geometry object (GeoJSON)
function largestPoly(geom) {
var size = -Number.MAX_VALUE,
poly = null;
//We will select the largest polygon from the multipolygon (this has worked out so far, for your project you might need to reconsider or just provide (single) polygons in the first place)
for (var c = 0; c < geom.coordinates.length; c++) {
//we are using turf.js area function
//if you don't want to include the full turf library, turf is build in modular fashion, npm install turf-area
var tsize = turf.area({
type: 'Feature',
properties: {},
geometry: {
type: 'Polygon',
coordinates: geom.type === 'MultiPolygon' ? [geom.coordinates[c][0]] : [geom.coordinates[c]]
}
});
if (tsize > size) {
size = tsize;
poly = c;
}
}
return [geom.type === 'MultiPolygon' ? geom.coordinates[poly][0] : geom.coordinates[poly]];
}
return data;
};
var asyncGenerator = function () {
function AwaitValue(value) {
this.value = value;
}
function AsyncGenerator(gen) {
var front, back;
function send(key, arg) {
return new Promise(function (resolve, reject) {
var request = {
key: key,
arg: arg,
resolve: resolve,
reject: reject,
next: null
};
if (back) {
back = back.next = request;
} else {
front = back = request;
resume(key, arg);
}
});
}
function resume(key, arg) {
try {
var result = gen[key](arg);
var value = result.value;
if (value instanceof AwaitValue) {
Promise.resolve(value.value).then(function (arg) {
resume("next", arg);
}, function (arg) {
resume("throw", arg);
});
} else {
settle(result.done ? "return" : "normal", result.value);
}
} catch (err) {
settle("throw", err);
}
}
function settle(type, value) {
switch (type) {
case "return":
front.resolve({
value: value,
done: true
});
break;
case "throw":
front.reject(value);
break;
default:
front.resolve({
value: value,
done: false
});
break;
}
front = front.next;
if (front) {
resume(front.key, front.arg);
} else {
back = null;
}
}
this._invoke = send;
if (typeof gen.return !== "function") {
this.return = undefined;
}
}
if (typeof Symbol === "function" && Symbol.asyncIterator) {
AsyncGenerator.prototype[Symbol.asyncIterator] = function () {
return this;
};
}
AsyncGenerator.prototype.next = function (arg) {
return this._invoke("next", arg);
};
AsyncGenerator.prototype.throw = function (arg) {
return this._invoke("throw", arg);
};
AsyncGenerator.prototype.return = function (arg) {
return this._invoke("return", arg);
};
return {
wrap: function (fn) {
return function () {
return new AsyncGenerator(fn.apply(this, arguments));
};
},
await: function (value) {
return new AwaitValue(value);
}
};
}();
var classCallCheck = function (instance, Constructor) {
if (!(instance instanceof Constructor)) {
throw new TypeError("Cannot call a class as a function");
}
};
var createClass = function () {
function defineProperties(target, props) {
for (var i = 0; i < props.length; i++) {
var descriptor = props[i];
descriptor.enumerable = descriptor.enumerable || false;
descriptor.configurable = true;
if ("value" in descriptor) descriptor.writable = true;
Object.defineProperty(target, descriptor.key, descriptor);
}
}
return function (Constructor, protoProps, staticProps) {
if (protoProps) defineProperties(Constructor.prototype, protoProps);
if (staticProps) defineProperties(Constructor, staticProps);
return Constructor;
};
}();
var draw = function () {
function draw() {
classCallCheck(this, draw);
this._data = null;
this._svg = null;
this._col_size = 1;
this._row_size = 1;
this._cols = 1;
this._rows = 1;
this._init = false;
this._mode = 'geo';
this._rPath = d3.line();
this._path = d3.geoPath();
this._config = {
width: null,
height: null,
padding: 20,
key: null,
projection: d3.geoMercator(),
grid: null,
duration: 500
};
}
createClass(draw, [{
key: "update",
value: function update() {
var _this2 = this;
if (this._data !== null && this._config.width !== null && this._config.height !== null) {
(function () {
var init_zoom = 200;
_this2._config.projection.center(d3.geoCentroid(_this2._data)).scale(init_zoom).translate([_this2._config.width / 2, _this2._config.height / 2]);
_this2._path.projection(_this2._config.projection);
//Calculate optimal zoom
var bounds = _this2._path.bounds(_this2._data),
dx = bounds[1][0] - bounds[0][0],
dy = bounds[1][1] - bounds[0][1],
scale = Math.max(1, 0.9 / Math.max(dx / (_this2._config.width - 2 * _this2._config.padding), dy / (_this2._config.height - 2 * _this2._config.padding)));
_this2._config.projection.scale(scale * init_zoom);
_this2._data.features.forEach(function (f) {
f.geometry.qcoordinates.forEach(function (d) {
var pc = _this2._config.projection(d.c);
d["pc"] = pc;
});
});
var _this = _this2;
_this2._rPath.x(function (d) {
return (d.x - 0.5) * _this._col_size + d.pc[0];
}).y(function (d) {
return (d.y - 0.5) * _this._row_size + d.pc[1];
});
})();
}
this._init = true;
}
}, {
key: "draw",
value: function draw() {
var _this3 = this;
if (this._init) {
(function () {
var _this = _this3;
var tPath = _this3._svg.selectAll("path").data(_this3._data.features);
tPath.exit();
tPath.enter().append("path").attr('class', function (d) {
return 'id-' + _this.config.key(d);
});
_this3._svg.selectAll("path").transition().duration(_this3._config.duration).attr('transform', function (d) {
var tx = 0,
ty = 0;
if (_this.mode != 'geo') {
var g = _this.config.grid[_this.config.key(d)];
var pc = _this.config.projection(d.geometry.centroid);
tx = g.ox - pc[0];
ty = g.oy - pc[1];
}
return 'translate(' + tx + ',' + ty + ')';
}).attr('d', function (d, i) {
if (_this._mode === 'geo') {
return _this._path(d);
} else {
return _this._rPath(d.geometry.qcoordinates) + "Z";
}
});
})();
} else {
console.error('You must run update() first.');
}
}
}, {
key: "toggle",
value: function toggle() {
if (this._mode == 'geo') {
this._mode = 'rect';
} else {
this._mode = 'geo';
}
}
}, {
key: "data",
get: function get() {
return this._data;
},
set: function set(d) {
if (d) {
this._data = d;
this.update();
}
}
}, {
key: "mode",
get: function get() {
return this._mode;
},
set: function set(m) {
if (m) {
this._mode = m;
}
}
}, {
key: "svg",
get: function get() {
return this._svg;
},
set: function set(s) {
if (s) {
this._svg = s;
this.update();
}
}
}, {
key: "config",
get: function get() {
return this._config;
},
set: function set(c) {
if (c) {
for (var key in this._config) {
if (this._config[key] === null && !(key in c)) {
console.error('The config object must provide ' + key);
} else if (key in c) {
this._config[key] = c[key];
}
}
var _g = this._config.grid;
for (var _key in _g) {
if (_g[_key].x + 1 > this._cols) {
this._cols = _g[_key].x + 1;
}
if (_g[_key].y + 1 > this._rows) {
this._rows = _g[_key].y + 1;
}
}
this._col_size = (this._config.width - this._config.padding * 2) / this._rows;
this._row_size = (this._config.height - this._config.padding * 2) / this._cols;
if (this._col_size < this._row_size) {
this._row_size = this._col_size;
} else {
this._col_size = this._row_size;
}
for (var _g in this._config.grid) {
this._config.grid[_g]['ox'] = this._config.width / 2 - this._cols / 2 * this._col_size + this._config.grid[_g].x * this._col_size + this._col_size / 2;
this._config.grid[_g]['oy'] = this._config.height / 2 - this._rows / 2 * this._row_size + this._config.grid[_g].y * this._row_size + this._row_size / 2;
}
this.update();
}
}
}]);
return draw;
}();
exports.compute = compute;
exports.draw = draw;
Object.defineProperty(exports, '__esModule', { value: true });
}));
<!DOCTYPE html>
<meta charset="utf-8">
<style>
body {
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
path{
fill:transparent;
stroke:rgba(0,0,0,1);
}
/*4,*/
.class-4 circle{
fill:red;
}
</style>
<body>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="https://npmcdn.com/@turf/turf/turf.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script src="geo2rect.js"></script>
<script>
var config = {
width : 700,
height : 700,
padding : 70,
projection : d3.geoMercator(),
duration : 1000,
key:function(d){return d.properties.nombre; },
grid : {
"Almería":{x:7,y:8},
"Cádiz":{x:5, y:9},
"Córdoba":{x:4, y:7},
"Granada":{x:6, y:8},
"Huelva":{x:4, y:8},
"Jaén":{x:6, y:7},
"Málaga":{x:6, y:9},
"Sevilla":{x:5, y:8},
"Huesca":{x:8, y:1},
"Teruel":{x:7, y:3},
"Zaragoza":{x:8, y:2},
"Asturias": {x:3, y:1},
"Balears, Illes": {x:10, y:4},
"Palmas, Las": {x:3, y:12},
"Santa Cruz de Tenerife": {x:2, y: 12},
"Cantabria": {x:4, y: 1},
"Albacete": {x:6, y:6},
"Ciudad Real": {x:5, y:7},
"Cuenca": {x:7, y:4},
"Guadalajara":{x:6, y:4},
"Toledo":{x:5, y:6},
"Ávila":{x:5, y:5},
"Burgos":{x:5, y:2},
"León":{x:3, y:2},
"Palencia":{x:4, y:2},
"Salamanca":{x:4, y:4},
"Segovia":{x:5, y:4},
"Soria":{x:6, y:3},
"Valladolid":{x:4, y:3},
"Zamora":{x:4, y:3},
"Barcelona":{x:9, y:2},
"Girona":{y:1, x:10},
"Lleida":{y:1, x:9},
"Tarragona":{x:8, y:3},
"Ceuta":{x:5, y:11},
"Alicante":{x:7, y:6},
"Castellón":{x:8, y:4},
"Valencia":{x:7, y:5},
"Badajoz":{x:4, y:6},
"Cáceres":{x:4, y:5},
"Coruña, A":{x:1, y:1},
"Lugo":{x:2, y:1},
"Ourense":{x:2, y:2},
"Pontevedra":{x:1, y:2},
"Rioja, La":{x:7, y:2},
"Madrid":{x:6, y:5},
"Melilla":{x:9, y:11},
"Murcia":{x:7, y:7},
"Navarra":{x:7, y:1},
"Álava":{x: 6, y:2},
"Guipúzcoa":{x:6, y:1},
"Vizcaya":{x:5, y:1}
}
};
var svg = d3.select('body').append('svg').attr('width',config.width).attr('height',config.height);
var g2r = new geo2rect.draw();
d3.json('provincias.json', function(err, data){
var data = topojson.feature(data, data.objects.provincias);
var geojson = geo2rect.compute(data);
g2r.config = config;
g2r.data = geojson;
g2r.svg = svg.append('g');
g2r.draw();
});
d3.select('body').append('a').text('Toggle').on('click', function(){
g2r.toggle();
g2r.draw();
console.log(g2r.mode);
});
</script>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"provincias":{"type":"GeometryCollection","bbox":[-18.161221722954284,27.637789479715888,4.329122327000227,43.791110837420135],"geometries":[{"type":"Polygon","properties":{"nombre":"Álava","idprov":"01"},"arcs":[[0,1,2,3,4,5,6],[7]]},{"type":"Polygon","properties":{"nombre":"Albacete","idprov":"02"},"arcs":[[8,9,10,11,12,13,14]]},{"type":"Polygon","properties":{"nombre":"Alicante","idprov":"03"},"arcs":[[15,-12,16,17]]},{"type":"Polygon","properties":{"nombre":"Almería","idprov":"04"},"arcs":[[18,19,20]]},{"type":"Polygon","properties":{"nombre":"Ávila","idprov":"05"},"arcs":[[21,22,23,24,25,26,27,28]]},{"type":"Polygon","properties":{"nombre":"Badajoz","idprov":"06"},"arcs":[[29,30,31,32,33,34,35,36,37]]},{"type":"MultiPolygon","properties":{"nombre":"Balears, Illes","idprov":"07"},"arcs":[[[38]],[[39]],[[40]],[[41]],[[42]],[[43]],[[44]],[[45]],[[46]],[[47]]]},{"type":"MultiPolygon","properties":{"nombre":"Barcelona","idprov":"08"},"arcs":[[[48]],[[49,50,51,52],[53],[54],[55]]]},{"type":"MultiPolygon","properties":{"nombre":"Burgos","idprov":"09"},"arcs":[[[-4,56,57,58,59,60,61,62,63,64,-6,65],[66],[67]],[[-8]],[[68]],[[69]],[[70]]]},{"type":"Polygon","properties":{"nombre":"Cáceres","idprov":"10"},"arcs":[[71,-28,72,-35,73]]},{"type":"Polygon","properties":{"nombre":"Cádiz","idprov":"11"},"arcs":[[74,75,76,77]]},{"type":"Polygon","properties":{"nombre":"Castellón","idprov":"12"},"arcs":[[78,79,80,81]]},{"type":"MultiPolygon","properties":{"nombre":"Ciudad Real","idprov":"13"},"arcs":[[[-9,82,83,-30,84,85]],[[-37,86]]]},{"type":"MultiPolygon","properties":{"nombre":"Córdoba","idprov":"14"},"arcs":[[[-84,87,88,89,90,91,-31]],[[92]],[[93]]]},{"type":"MultiPolygon","properties":{"nombre":"Coruña, A","idprov":"15"},"arcs":[[[94,95,96]],[[97]]]},{"type":"Polygon","properties":{"nombre":"Cuenca","idprov":"16"},"arcs":[[98,99,100,101,102,103,104,-10,-86]]},{"type":"MultiPolygon","properties":{"nombre":"Girona","idprov":"17"},"arcs":[[[105,-50,106]],[[107]],[[-55]]]},{"type":"Polygon","properties":{"nombre":"Granada","idprov":"18"},"arcs":[[108,-20,109,110,-89,111,-14]]},{"type":"MultiPolygon","properties":{"nombre":"Guadalajara","idprov":"19"},"arcs":[[[112]],[[113,114,115,-101,116,117]]]},{"type":"Polygon","properties":{"nombre":"Guipúzcoa","idprov":"20"},"arcs":[[118,-1,119,120]]},{"type":"Polygon","properties":{"nombre":"Huelva","idprov":"21"},"arcs":[[121,-77,122,-33]]},{"type":"Polygon","properties":{"nombre":"Huesca","idprov":"22"},"arcs":[[123,124,125,126]]},{"type":"Polygon","properties":{"nombre":"Jaén","idprov":"23"},"arcs":[[-15,-112,-88,-83]]},{"type":"Polygon","properties":{"nombre":"León","idprov":"24"},"arcs":[[127,128,129,130,131,132,133,134,135],[136]]},{"type":"MultiPolygon","properties":{"nombre":"Lleida","idprov":"25"},"arcs":[[[-54]],[[137,-107,-53,138,139,-126],[-49]]]},{"type":"Polygon","properties":{"nombre":"Rioja, La","idprov":"26"},"arcs":[[-57,-3,140,141,142],[-71],[-70]]},{"type":"Polygon","properties":{"nombre":"Lugo","idprov":"27"},"arcs":[[143,144,-129,145,146,-97]]},{"type":"MultiPolygon","properties":{"nombre":"Madrid","idprov":"28"},"arcs":[[[-117,-100,147,-26,148],[-113]],[[149,-24]]]},{"type":"Polygon","properties":{"nombre":"Málaga","idprov":"29"},"arcs":[[-111,150,-75,151,-90]]},{"type":"MultiPolygon","properties":{"nombre":"Murcia","idprov":"30"},"arcs":[[[-16,152,153,154,-21,-109,-13]],[[155]],[[156]]]},{"type":"MultiPolygon","properties":{"nombre":"Navarra","idprov":"31"},"arcs":[[[157]],[[158]],[[159,-124,160,-141,-2,-119]]]},{"type":"Polygon","properties":{"nombre":"Ourense","idprov":"32"},"arcs":[[161,162,163,-146,-128]]},{"type":"Polygon","properties":{"nombre":"Asturias","idprov":"33"},"arcs":[[164,165,-130,-145]]},{"type":"MultiPolygon","properties":{"nombre":"Palencia","idprov":"34"},"arcs":[[[-132,166,-61,167],[-69]],[[-63,168]],[[169]],[[170]],[[-67]],[[-68]]]},{"type":"MultiPolygon","properties":{"nombre":"Palmas, Las","idprov":"35"},"arcs":[[[171]],[[172]],[[173]],[[174]],[[175]],[[176]],[[177]],[[178]],[[179]],[[180]],[[181]],[[182]],[[183]],[[184]]]},{"type":"MultiPolygon","properties":{"nombre":"Pontevedra","idprov":"36"},"arcs":[[[-95,-147,-164,185]],[[186]],[[187]],[[188]],[[189]],[[190]],[[191]]]},{"type":"Polygon","properties":{"nombre":"Salamanca","idprov":"37"},"arcs":[[192,-29,-72,193,194]]},{"type":"MultiPolygon","properties":{"nombre":"Santa Cruz de Tenerife","idprov":"38"},"arcs":[[[195]],[[196]],[[197]],[[198]],[[199]],[[200]],[[201]],[[202]],[[203]],[[204]],[[205]],[[206]],[[207]],[[208]],[[209]]]},{"type":"MultiPolygon","properties":{"nombre":"Cantabria","idprov":"39"},"arcs":[[[210]],[[211,212,-64,-169,-62,-167,-131,-166],[-171],[-170]]]},{"type":"Polygon","properties":{"nombre":"Segovia","idprov":"40"},"arcs":[[213,-118,-149,-25,-150,-23,214,-59]]},{"type":"Polygon","properties":{"nombre":"Sevilla","idprov":"41"},"arcs":[[-91,-152,-78,-122,-32,-92],[-93],[-94]]},{"type":"Polygon","properties":{"nombre":"Soria","idprov":"42"},"arcs":[[215,-114,-214,-58,-143]]},{"type":"MultiPolygon","properties":{"nombre":"Tarragona","idprov":"43"},"arcs":[[[-56]],[[-139,-52,216,-82,217,218]]]},{"type":"Polygon","properties":{"nombre":"Teruel","idprov":"44"},"arcs":[[219,-218,-81,220,-104,221,-102,-116]]},{"type":"Polygon","properties":{"nombre":"Toledo","idprov":"45"},"arcs":[[-27,-148,-99,-85,-38,-87,-36,-73]]},{"type":"MultiPolygon","properties":{"nombre":"Valencia","idprov":"46"},"arcs":[[[-103,-222]],[[222]],[[-221,-80,223,224,-17,-11,-105]],[[225]]]},{"type":"MultiPolygon","properties":{"nombre":"Valladolid","idprov":"47"},"arcs":[[[-133,-168,-60,-215,-22,-193,226]],[[-137]],[[-135,227]]]},{"type":"MultiPolygon","properties":{"nombre":"Vizcaya","idprov":"48"},"arcs":[[[-66,-5]],[[228,-120,-7,-65,-213],[-211]]]},{"type":"Polygon","properties":{"nombre":"Zamora","idprov":"49"},"arcs":[[-228,-134,-227,-195,229,-162,-136]]},{"type":"Polygon","properties":{"nombre":"Zaragoza","idprov":"50"},"arcs":[[-142,-161,-127,-140,-219,-220,-115,-216],[-159],[-158]]},{"type":"Polygon","properties":{"nombre":"Ceuta","idprov":"51"},"arcs":[[230]]},{"type":"Polygon","properties":{"nombre":"Melilla","idprov":"52"},"arcs":[[231]]}]}},"arcs":[[[6943,9565],[0,-1],[-1,-2],[3,-5],[-2,0],[-1,-1],[3,-2],[0,-5],[3,-3],[3,-4],[1,-5],[-2,1],[-3,-6],[-2,-2],[0,-5],[-4,-3],[-2,1],[-4,-1],[-8,-7],[-1,0],[-3,0],[-3,1],[-1,-5],[1,-5],[2,-4],[-3,-1],[-1,-2],[2,-4],[2,-2],[3,0],[2,-5],[4,-1],[1,-1],[2,0],[7,-2],[1,-3],[1,-2],[2,0],[1,2],[0,3],[-1,4],[3,6],[13,-8],[2,-1],[8,3],[2,1],[6,-2],[5,-4],[4,1],[1,1],[4,-1],[5,-2],[5,3],[5,-2],[3,-3],[1,1],[3,-1],[3,-2],[3,0],[3,-1],[4,2],[1,-2],[1,-3],[5,-3],[7,-4],[3,-1],[1,-1],[2,-1],[2,1],[1,-1],[2,-7],[3,-4],[0,-1],[1,-2],[7,-1],[8,-2],[2,-2]],[[7074,9445],[-1,-1],[6,-5],[-1,-4],[1,-9],[2,-8],[1,-5],[-1,-5],[-8,-9],[-6,-5],[-2,-2],[1,-9],[-2,-2],[-3,-4],[2,-4],[1,-6],[1,-2],[1,-4],[1,-1],[1,-3],[1,-3],[-2,0],[-3,-4],[-3,1],[-3,0],[-1,-2],[-6,-2],[-4,0],[-2,2],[-1,-7],[-2,-3],[0,-4],[1,0],[1,1],[3,-6],[-2,-4],[2,-9],[-2,-4],[2,-1],[1,-6],[2,0],[5,5],[2,-6],[0,-9],[-2,-2],[-1,0],[-6,1],[-6,-3],[-4,-1],[-2,-4],[-5,-4],[-8,2],[-1,-1],[-6,0],[0,1],[3,0],[1,4],[-4,3],[2,2],[-8,6],[-4,-1],[-5,2],[-1,-1],[-5,-2],[0,-2],[-9,-4],[-3,-5],[1,-3],[-1,-1],[-1,0],[-3,-4],[-3,0],[-4,-7],[-1,-2],[-8,3],[1,-3],[2,-7],[2,-10],[0,2],[3,1],[5,0],[4,-1],[1,-6],[3,-7],[4,5],[5,11],[2,3],[2,2],[0,2],[1,2],[2,0],[3,-4],[5,-2],[1,1],[-1,-6],[1,-2],[2,-14],[1,-2],[0,-7],[-2,-2],[-2,-2],[-1,-3],[2,-2],[0,-3],[2,-4],[0,-4],[-7,-1],[-6,-2],[-1,-2],[1,-6],[1,-6]],[[6999,9194],[-8,0],[-5,5],[-10,-3],[-2,-4],[-17,2],[-1,1],[-1,3],[0,2],[4,4],[2,5],[-1,3],[-1,1],[-2,-1],[-2,-7],[-8,-8],[0,-3],[3,-3],[-3,-1],[-5,1],[-4,0],[-5,6],[-3,-2],[-1,-5],[-6,0],[-1,-2],[3,-4],[-3,-1],[-2,1],[-1,1],[-1,3],[1,3],[1,2],[2,1],[0,1],[-5,8],[-2,-3],[-1,-2],[-8,0],[-1,-4],[-4,-3],[-2,-1],[-1,0],[-1,1],[-2,7],[-1,5],[-4,4],[-1,0],[-4,-1],[0,1],[0,9],[-2,-1],[-2,-2],[-4,-1],[-5,-1],[3,7],[3,9],[2,10],[1,15],[2,7],[0,1],[-2,-1],[-9,3],[-6,4],[-4,5],[-1,2],[-3,1],[-2,2],[-3,1],[-4,-3],[-3,3],[-1,-2],[-3,-8],[1,-7],[-4,-7],[1,-2],[-1,-1],[-4,-1],[-4,-3],[-1,-4],[-2,-2],[-4,4],[-1,-2],[-1,-6],[-1,-1],[-2,-1],[-2,6],[-4,5],[-1,6],[8,5],[1,2],[1,4],[-2,1],[1,5],[0,3],[-6,-3],[-4,0],[-1,3],[-1,2],[2,4],[0,4],[-7,5]],[[6804,9286],[-4,0],[-2,1],[-1,2],[-7,4],[-3,3],[-2,8],[2,1],[-1,3],[1,2],[1,1],[-2,2],[-1,1],[-1,2],[0,4],[-7,3],[-1,2],[-4,-1],[1,3],[-1,2],[-7,1],[-4,1],[-4,-2],[-4,1],[-3,-3],[-3,3],[-1,6],[-2,2],[-6,1],[-2,3],[3,2],[-1,1],[-4,0],[0,4],[-1,1],[-7,-3],[-3,1],[-1,3],[-3,3],[0,5],[1,3],[0,2],[-1,1],[-4,-1],[-1,-1],[-1,-2],[-2,1],[-6,4],[0,-1],[0,-2],[-1,-3],[-3,2],[0,2],[-5,2],[-4,-2],[-2,-3],[-7,-1],[-8,-1],[3,4],[2,2],[4,11],[2,4],[-3,0],[-4,4],[-9,5],[5,6],[0,4],[3,10],[4,0],[1,2],[0,3],[1,3],[2,-1],[1,4],[4,4],[0,2],[2,4],[1,6],[-3,1],[0,3],[-1,1],[-2,2],[-3,0],[-5,-10],[-1,-3],[-2,-1],[-3,-5],[-4,-3],[-6,1],[-8,7],[-4,-9],[-3,-2],[-1,-4],[-6,-4],[8,-7],[-5,0],[-4,2],[-26,28],[-1,6],[4,1],[0,9],[13,7],[1,7],[2,5],[2,1],[0,6],[5,4],[2,0],[2,-1],[0,-2],[1,1],[1,-1],[1,0],[0,1],[1,0],[2,-1],[3,1],[7,-1],[5,-3],[11,-3],[-2,-2],[-1,-8],[1,-1],[3,-3],[4,0],[3,-5],[8,1],[2,2],[2,-2],[3,-4],[-1,0],[2,-1],[7,2],[2,2],[4,-2],[14,3],[5,1],[1,2],[1,5],[4,5],[1,0],[2,-1],[3,5],[3,1],[1,2],[-1,3],[-3,2],[-2,4],[-7,0],[-4,1],[0,2],[0,2],[-2,0],[-6,5],[-1,0],[-2,3],[3,3],[1,2]],[[6725,9499],[2,1],[10,-1],[2,0],[1,3],[1,2],[2,-1],[8,0],[9,4],[1,2],[-5,2],[0,-1],[-2,-2],[-7,-3],[-2,5],[3,5],[-1,2],[-5,2],[-4,-1],[-6,3],[-4,1],[-2,1],[0,1],[6,6],[1,3],[-5,0],[0,6],[-6,-2],[-1,1],[-1,-1],[-1,2],[-6,-7],[-1,-8],[-11,-8],[1,-5]],[[6702,9511],[-8,2],[-6,1],[-2,1],[-3,0],[-6,-1],[-11,5],[-4,5],[3,2],[0,2],[8,-1],[4,0],[1,1],[-2,4],[1,2],[0,7],[1,-1],[-1,3],[2,4],[0,5],[-1,1],[-2,0],[-5,3],[3,3],[2,4],[6,7],[-4,8],[-3,-1],[-1,-3],[-5,3],[-3,1],[-5,4],[-1,3],[9,14],[-2,2],[2,4],[6,5],[3,0]],[[6678,9610],[2,1],[1,-3],[1,-1],[4,-1],[3,-5],[3,-2],[1,0],[7,5],[2,0],[3,-3],[3,0],[4,5],[17,4],[0,5],[4,8],[-1,6],[1,1],[-1,4],[2,2],[-6,1],[-5,3],[3,4],[3,0],[4,-4],[-1,-2],[2,-1],[2,-3],[2,-2],[11,2],[0,1],[1,0],[3,-10],[5,-6],[7,-3],[-3,-7],[2,-2],[4,-7],[1,-2],[-1,-2],[2,-2],[-3,-2],[0,-2],[-3,-3],[-3,-6],[-1,0],[-3,-6],[-5,-3],[1,-3],[6,-1],[8,-9],[0,-2],[5,-2],[5,-8],[6,-3],[5,-5],[2,-1],[1,2],[2,1],[9,1],[7,-4],[5,-2],[6,-4],[15,-1],[3,0],[3,-2],[1,-1],[1,-1],[6,0],[3,-1],[1,1],[1,4],[3,0],[2,-3],[1,-2],[1,-1],[7,4],[3,-1],[2,1],[1,-2],[1,0],[3,-4],[2,2],[0,-2],[5,3],[1,0],[3,3],[5,-3],[1,3],[0,-2],[5,-4],[4,-1],[1,6],[-1,3],[0,7],[-2,1],[-4,7],[-2,1],[-2,3],[-2,0],[0,6],[12,8],[4,-1],[6,0],[2,-1],[6,-2],[15,3],[5,1],[1,1]],[[6839,9382],[-6,0],[-8,-1],[-3,-1],[-4,-3],[-2,4],[-2,3],[-3,-13],[-1,2],[-4,-6],[0,-1],[3,-3],[-2,0],[-1,-2],[1,-4],[-2,0],[1,-4],[-3,-1],[-3,-3],[1,-2],[5,0],[3,-4],[-4,-1],[2,-2],[3,-1],[3,-1],[4,-2],[2,-6],[6,-2],[2,-2],[5,-3],[5,1],[3,-9],[3,-5],[0,-3],[-2,-1],[2,-1],[1,-2],[9,0],[5,-2],[1,0],[4,1],[3,-1],[2,1],[0,3],[4,3],[3,1],[8,-2],[1,-2],[4,1],[1,-3],[4,4],[2,-1],[1,-6],[6,-7],[1,-1],[2,1],[6,-1],[2,-1],[4,2],[1,-1],[1,2],[7,0],[9,-4],[2,2],[-1,0],[2,1],[2,0],[2,-3],[-2,-2],[2,-2],[4,0],[7,4],[3,1],[0,5],[-3,7],[1,11],[-6,3],[-2,-1],[-4,-11],[-9,1],[-2,-1],[-2,0],[-1,0],[1,3],[-7,10],[-5,4],[-2,0],[0,7],[3,1],[1,4],[3,-3],[1,0],[8,9],[1,4],[2,3],[1,0],[1,3],[-1,3],[2,4],[1,5],[-1,1],[-2,0],[-1,-2],[-4,-3],[-6,-3],[-1,1],[-1,5],[-4,4],[0,3],[-3,0],[-2,-1],[-2,1],[-1,-1],[-2,1],[-4,-3],[-1,-1],[-2,1],[-1,-1],[-1,2],[-3,0],[-1,3],[-6,1],[0,-1],[-5,5],[-7,-1],[0,2],[-3,2],[-4,-1],[-4,3],[-4,2],[-2,2],[-5,-2],[-6,1],[-4,-1],[-3,2],[-3,-1]],[[6847,6745],[-1,2],[2,-1],[2,2],[1,4],[2,-1],[1,3],[-3,2],[0,1],[-2,1],[0,3],[-1,0],[0,2],[0,4],[-3,3],[3,3],[2,9],[0,5],[2,9],[-3,3],[-3,5],[8,-2],[4,-5],[4,-1],[5,4],[0,2],[5,1],[1,-1],[2,0],[1,2],[4,4],[2,6],[4,2],[2,1],[4,11],[2,3],[1,5],[2,8],[0,4],[1,10],[2,3],[2,9],[-2,7],[-9,4],[-1,4],[-4,1],[-5,8],[-5,6],[-7,2],[-4,-2],[-5,-1],[-1,8],[-7,8],[-1,4],[0,6],[2,5],[-1,10],[-2,6],[-1,6],[-1,0],[-1,1],[0,7],[-5,3],[-5,2],[-3,2],[-1,4],[0,5],[-2,0],[-1,1],[-1,0],[-15,-1],[-2,1],[-1,4],[-2,4],[-5,4],[-2,1],[-2,0],[-4,-2],[-1,7],[-2,1],[1,9],[2,2],[2,2],[1,4],[2,0],[3,6],[6,7],[3,10],[0,7],[3,5],[5,0],[2,2],[3,-1],[1,12],[-1,7],[1,9],[0,1],[1,5],[-5,9],[-3,-1],[-4,8],[-1,5],[0,5],[-4,8],[9,12],[7,15],[11,11],[4,9],[1,3],[5,10],[13,15],[3,6],[1,2],[-1,6],[-1,5],[-4,4],[-1,3],[-1,7],[-2,5],[1,1]],[[6856,7231],[5,2],[13,0],[4,-2],[4,2],[2,0],[6,1],[1,-1],[4,3],[2,-1],[6,1],[3,5],[4,4],[12,-1],[4,-1],[6,-6],[9,-3],[8,4],[1,-1],[8,9],[13,-17],[7,-5],[6,-9],[6,-5],[4,-4],[6,-9],[13,-11],[6,-8],[3,3],[2,5],[1,1],[1,3],[-1,3],[5,13],[3,3],[6,2],[4,-1],[0,-4],[3,0],[6,-9],[0,-3],[-1,-4],[2,-7],[3,-3],[1,-6],[20,12],[11,10],[5,0],[1,3],[11,2],[0,2],[1,3],[5,2],[7,-3],[14,-1],[11,-3],[9,-2],[11,0],[-3,4],[0,3],[-1,5],[-2,0],[-1,2],[0,6],[-1,0],[-1,2],[-3,3],[0,4],[2,2],[0,3],[-2,3],[0,4],[-2,0],[-2,4],[-1,3],[1,2],[0,1],[-2,0],[0,2],[-2,4],[7,0],[6,-2],[5,1],[5,1],[11,-4],[-4,-9],[4,-7],[6,-6],[5,-5],[2,-9],[11,4],[13,2],[22,1],[7,-6],[12,-6],[14,0],[19,-3],[3,13],[11,12],[10,2],[9,8],[10,5],[11,5],[10,4],[6,5],[6,6],[8,5],[9,8],[2,2],[10,3],[8,6],[5,1]],[[7406,7293],[3,-2],[4,4],[2,1],[1,-3],[-3,0],[0,-2],[1,-2],[-2,-3],[1,-4],[3,0],[3,5],[2,-1],[2,-4],[-4,-1],[-1,-3],[2,-2],[3,0],[2,6],[3,0],[1,-1],[-1,-4],[1,-1],[-2,-1],[0,-2],[2,-1],[0,-1],[-1,0],[-4,3],[-2,-3],[3,-2],[2,0],[4,-1],[0,-1],[-2,-2],[1,-4],[-2,-2],[0,-2],[5,1],[0,4],[2,3],[3,0],[-1,2],[1,1],[2,-1],[0,-3],[-2,-4],[2,-2],[2,1],[1,1],[-1,6],[-1,3],[2,1],[3,-1],[2,-1],[0,-3],[1,-1],[3,3],[2,0],[0,-1],[-1,-3],[-1,-1],[-3,1],[0,-1],[0,-2],[3,-1],[4,2],[4,0],[1,-4],[-2,-4],[3,2],[5,-1],[2,-4],[2,-1],[1,-3],[2,-2],[4,1],[3,-4],[2,1],[0,1],[-2,1],[1,1],[2,1],[4,-2],[1,2],[2,0],[2,-1],[4,-2],[0,-1],[-1,-1],[2,-2],[2,0],[1,2],[3,-1],[-1,-2],[2,-1],[2,3],[2,0],[2,-3],[3,1],[3,-1],[2,-3],[1,3],[2,-4],[2,1],[5,-2],[2,-2],[2,0],[2,2],[0,1],[2,3],[1,0],[2,-3],[0,-2],[2,-3],[2,2],[1,-1],[1,0],[5,0],[6,-3],[1,-3],[-2,-7],[-3,-9],[-1,-9],[0,-11],[0,-10],[-2,-12],[-4,-8],[-1,-3],[-1,-8],[-1,-3],[-6,-9],[-8,-6],[-2,-11],[-4,-13],[-6,-4],[0,-14],[-5,-5],[1,-5],[-1,-10],[1,-4],[2,-2],[3,-1],[6,-6],[6,-4],[8,-12],[3,-7],[3,-3],[15,-21],[3,-9],[0,-1],[3,-6],[4,-1],[4,1],[10,0],[6,1],[17,3],[5,1],[3,-2],[10,3],[3,4],[4,3],[3,-2],[2,1],[4,-3],[8,1],[1,-7],[0,-3],[1,-3],[0,-2],[1,-1],[1,-5],[5,-7],[7,-5],[-3,-7],[-1,-8],[1,-2],[-2,-5],[2,-16],[3,-4],[-2,-5],[-2,-3],[0,-11],[2,-4],[0,-2]],[[7662,6900],[-10,-5],[-5,0],[7,-24],[3,-3],[1,-4],[4,-8],[0,-2],[1,-2],[5,-6],[-8,-12],[-13,-12],[-13,-1],[-8,1],[-1,-1],[-1,1],[-5,-1]],[[7619,6821],[-4,0],[-5,4],[-31,30],[-2,17],[-29,10],[-9,-4],[-11,-2],[-6,-3],[-1,-1],[-2,0],[-7,-7],[-2,-4],[-7,-9],[-12,-6],[-7,-7],[0,-2],[-6,-3],[-11,17],[-7,-3],[-9,-5],[-8,-9],[-12,-17],[2,-8],[-2,-15],[-2,-19],[-6,-4],[-9,-7],[-2,-8],[-3,-12],[3,-10],[5,-21],[0,-9],[1,-7],[0,-21],[1,-8],[-1,-20],[-18,-12],[-1,-2],[-7,-5],[-1,0],[-2,-2],[-3,-6],[-6,-5],[-12,-8],[0,1],[-5,1],[-4,0],[-2,-2],[-6,-1],[-3,1],[0,-1],[-16,1],[1,3],[-2,3],[-5,3],[-1,2],[-1,4],[-2,1],[0,6],[1,0],[3,0],[1,2],[-1,1],[1,5],[-2,3],[-3,2],[-2,1],[-1,3],[-1,0],[-2,-2],[-2,0],[-1,-5],[-2,0],[0,2],[0,1],[-2,0],[-3,3],[-2,-1],[0,2],[-4,4],[-4,-1],[0,-3],[-1,-1],[-3,3],[-3,1],[-2,-1],[0,-8],[-3,0],[0,2],[-1,0],[-2,-1],[-5,2],[0,-3],[6,-6],[-4,-1],[-8,-1],[-5,-10],[-3,-1],[-6,0],[-6,-3],[-6,-7],[-11,-9],[-6,-4],[-19,-5],[-6,-1],[-7,-3],[-3,-1],[-6,2],[-10,10],[-2,0],[-2,-1],[-8,4],[-7,-5],[-5,-9],[-4,-11],[-13,-17],[-11,-4],[-13,-3],[-3,-1],[-6,-6],[-8,-5],[-3,-3],[-1,-5],[-3,-7],[0,-3],[-5,-11],[-2,-1],[-3,-6],[-3,-6],[1,-2],[-1,-5],[-5,-9],[-14,-16],[-9,-6],[-7,-7],[0,-4],[-4,-8],[-2,-10],[1,-3]],[[7034,6431],[-7,-2],[-7,0],[-9,5],[-5,1],[-3,0],[-6,1],[-3,6],[-2,0],[-7,3],[-5,1],[-4,4],[-3,-2],[-1,0],[0,1],[-7,4],[-4,4],[-7,1],[-4,3],[-4,1],[-4,2],[-1,3]],[[6941,6467],[1,4],[1,-1],[3,3],[1,3],[4,2],[1,3],[2,1],[2,5],[0,2],[2,2],[0,2],[6,4],[6,10],[1,1],[1,2],[3,1],[2,7],[0,4],[2,0],[3,2],[1,2],[3,2],[1,2],[0,3],[1,9],[-1,2],[-3,1],[0,5],[1,1],[5,8],[-1,2],[0,4],[0,1],[-2,0],[2,3],[-1,3],[2,3],[0,1],[2,0],[0,7],[-2,1],[0,8],[-3,1],[-15,5],[-2,3],[0,10],[0,2],[2,3],[0,3],[0,2],[1,10],[-3,3],[-3,6],[1,1],[-1,4],[5,13],[-1,3],[-4,1],[-9,1],[-2,0],[-2,2],[-6,2],[-5,-1],[-2,-1],[-2,0],[-1,2],[0,1],[-1,2],[-5,1],[-3,8],[1,3],[-1,2],[2,2],[2,3],[-1,1],[2,6],[-1,4],[-2,5],[-2,5],[1,4],[1,3],[3,2],[-6,8],[-2,0],[-1,2],[-3,2],[-3,1],[-2,1],[-6,-1],[-8,-3],[-4,0],[-6,-3],[-3,-1],[-3,-3],[-11,3],[-3,0],[-3,3],[-8,4],[-2,1],[-3,5],[-4,2],[-2,1],[-1,1],[-3,3]],[[7736,6320],[-4,-2],[-5,1],[-4,2],[-5,7],[-12,3],[-5,5],[-5,6],[-2,2],[-19,23],[-10,14],[-5,15],[-12,18],[-3,9],[-7,10],[-7,14],[-4,2],[-1,3],[-6,10],[-3,13],[0,12],[-3,13],[12,18],[2,4],[3,7],[4,10],[6,25],[4,9],[0,10],[-2,12],[-6,10],[-2,8],[-17,12],[-14,4],[-11,0],[-2,14],[1,19],[-1,3],[1,16],[4,1],[-8,4],[6,3],[6,5],[12,12],[12,17],[-5,15],[4,9],[3,14],[4,9],[-5,20],[-2,18],[-3,3],[-1,10]],[[7662,6900],[6,-1],[-1,-4],[2,-4],[4,-1],[7,1],[2,2],[10,-1],[0,-1],[11,-18],[-1,-2],[2,-3],[2,0],[2,3],[3,1],[4,0],[1,-2],[3,1],[3,2],[3,4],[1,1],[2,-1],[4,3],[2,0],[2,-1],[4,4],[4,0],[-1,2],[1,0],[3,-2],[1,2],[1,-2],[-1,-2],[1,-1],[5,2],[2,-2],[4,-8],[0,-3],[9,5],[4,-8],[1,0],[3,2],[7,-1],[5,-1],[0,-6],[1,-8],[-1,-1],[2,-4],[4,-5],[0,-2],[5,0],[1,2],[3,3],[7,3],[4,6],[15,5],[7,10],[5,1],[0,2],[3,1],[2,2],[2,0],[0,8],[-6,0],[-2,3],[0,2],[-2,2],[-5,-2],[0,-1],[-7,-3],[0,-1],[-1,-1],[-3,1],[-4,5],[-4,3],[-3,5],[1,4],[-3,4],[1,1],[-1,2],[7,4],[5,0],[4,2],[5,1],[6,3],[2,0],[2,0],[5,-3],[16,-1],[1,0],[1,0],[6,2],[0,2],[0,3],[3,1],[2,1],[1,0],[1,1],[1,-1],[1,3],[2,1],[2,1],[12,4],[0,3],[1,1],[2,-2],[7,-1],[6,5],[6,4],[2,4],[0,1],[-1,0],[2,2],[2,0],[4,2],[5,0],[0,1],[2,1],[1,3],[2,2],[1,4],[5,0],[5,-6],[6,-5],[6,-3],[7,0],[1,1],[1,-2],[4,-3],[16,4],[-1,4],[8,8],[5,1],[3,1],[0,3],[3,-9],[0,-7],[3,-2],[20,11],[4,-1],[1,-2],[1,5],[3,1],[1,1],[1,-1],[0,2],[3,1],[2,-1],[1,-6],[4,-3],[4,-3],[2,-5],[4,1],[3,3],[-1,3],[1,2],[1,1],[-1,1],[-1,0],[-2,3],[-2,1],[0,4]],[[8058,6964],[11,-10],[10,-4],[2,0],[3,0],[7,-3],[8,2],[9,-3],[8,-2],[4,-4],[4,0],[2,-2],[-3,1],[4,-6],[1,0],[1,5],[-1,-5],[2,-2],[2,-1],[2,2],[6,-2],[9,-9],[3,-2],[5,-2],[4,-4],[2,0],[0,-1],[-1,-2],[-2,0],[-2,-3],[0,3],[-1,0],[-1,-3],[1,-6],[3,-5],[-1,-2],[1,-1],[1,0],[7,-7],[5,0],[0,1],[1,1],[1,0],[-2,-4],[2,-2],[-1,-1],[1,-5],[3,1],[0,-4],[0,-2],[0,-1],[-1,-1],[1,-1],[-3,1],[-5,-3],[0,2],[-6,0],[-2,-2],[1,-2],[-4,-1],[-2,-2],[-1,0],[-1,-2],[-2,-2],[-4,-2],[-1,-5],[-3,-3],[-1,0],[0,-7],[-3,-5],[-1,6],[-7,-1],[-4,-3],[-3,-5],[-1,1],[-2,0],[-4,-1],[-5,-6],[0,-1],[-1,-2],[-4,-4],[1,-1],[-2,-2],[0,-4],[1,-3],[2,-1],[1,-2],[-1,0],[-4,1],[-1,4],[-5,1],[-5,0],[-6,-3],[-2,-3],[0,-4],[-9,5],[-2,-3],[-1,1],[-5,0],[-4,-2],[-3,-4],[-2,-1],[-2,-2],[0,-2],[-3,-4],[-1,0],[0,-2],[-5,-6],[0,-2],[-1,1],[-4,-9],[0,-3],[7,-5],[-2,-3],[-3,-1],[-4,-6],[0,-2],[-2,-2],[0,-2],[-5,-2],[-2,-4],[-2,-1],[-1,-2],[-6,3],[1,3],[-8,1],[-3,-1],[0,1],[-1,-1],[1,1],[-1,1],[-3,0],[-6,-1],[-3,-4],[0,-1],[1,-1],[-2,-1],[-2,0],[-2,-5],[-2,0],[-1,1],[-3,-2],[-1,1],[-5,-1],[-5,-2],[-3,-2],[1,1],[-1,0],[-3,-1],[-6,-5],[-11,-2],[-7,-4],[-1,-1],[-3,0],[-6,-4],[-7,-4],[-1,-2],[-10,-8],[-1,-2],[-4,-2],[-2,-2],[-7,-3],[-1,-1],[-1,-3],[-2,0],[-1,-3],[-1,-1],[-1,-2],[-1,-5],[0,-1],[0,-2],[-1,-1],[-4,-1],[-2,-8],[-1,-10],[0,-15],[3,-4],[-5,0],[-1,0],[-7,1],[-1,0],[-1,4],[-4,1],[-12,-8],[-3,-3],[0,-4],[-3,-4],[3,4],[0,2],[-1,-1],[1,1],[-1,2],[-2,-1],[-1,-2],[1,-1],[1,0],[-1,-1],[-2,0],[1,-1],[1,1],[-1,-2],[-2,2],[-1,0],[0,1],[-4,-2],[-3,-4],[-1,-5],[-3,-13],[0,-15],[2,-18],[2,-13],[1,-6],[0,-3],[-1,-5],[-3,-4],[-2,-2],[-7,-2],[-1,-2],[0,2],[-5,0],[-3,0],[-1,-2],[1,3],[-1,0],[-14,-1],[-3,-1],[-7,-8],[-5,-12],[-4,-6],[-2,-11],[-4,-24],[-1,-23],[-1,-10],[1,-4],[-1,-3],[0,-10],[2,-2],[0,-2],[-2,-2],[-1,-3],[-1,-1],[1,-1],[0,-3],[-1,-1],[-1,0],[-2,-2],[-1,-3],[-2,1],[-3,-2],[-2,-3],[-3,-3],[3,3],[1,2],[-1,2],[-1,-1],[0,1],[-2,0],[-3,-2],[3,-4],[-3,3],[-1,0],[-3,-9],[-1,-9],[-3,-1],[-3,-3],[-1,-9],[1,-6],[-1,0],[-3,2],[-2,-1],[-2,-2],[-2,0],[-2,-6],[-1,0],[-1,-1],[0,-5],[-2,-14],[-2,-1],[-1,-12]],[[7350,6028],[0,-1],[-2,0],[-1,1],[-4,-2],[-2,-9],[-1,-2],[-1,0],[-1,2],[-2,1],[-2,0],[-1,-1],[-1,0],[-2,-1],[-7,-12],[-8,-20],[-5,-5],[-1,-2],[-4,-4],[0,-1],[-3,-3],[-3,-3],[-2,-4],[-4,-4],[-2,-4],[-3,-4],[1,-1],[-2,-1],[-1,-3],[-4,-4],[-4,-1],[-2,-2],[-3,-5],[-6,-22],[1,-1],[-1,-2],[1,2],[-1,1],[-1,-1],[-1,-6],[-1,-5],[0,-9],[-3,-16],[-1,-4],[-3,-4],[-2,-4],[-3,-10],[0,-14],[-1,-3],[-1,-3],[-1,0],[-2,-4],[0,-4],[-2,-3],[-3,-2],[-2,-2],[-1,-5],[-1,-1],[1,-1],[1,-5],[-5,-5],[0,-7],[-2,0],[-3,-2],[0,-8],[1,0],[2,-2],[0,-1],[-2,3],[-1,0],[0,-7],[1,1],[0,-1],[1,0],[0,-2],[0,2],[-2,0],[1,-11],[1,-1],[-3,-2],[-1,-5],[-4,0],[-1,-2],[-4,3],[-5,0],[-4,-4],[-1,-1],[-3,-4],[0,-2],[1,0],[-3,-5],[0,-2],[-3,-2],[-1,-5],[-2,0],[-3,3],[-1,0],[-5,-6],[0,-3],[-1,-2],[-3,-1],[-1,-2],[0,-4],[0,-1],[1,0],[0,-1],[-1,-3],[0,-1],[-1,-2],[1,-2],[2,0],[0,-1],[0,-3],[1,0],[1,-1],[-3,-3],[1,-3],[-2,-2],[-2,-2],[-4,2],[-4,-1],[0,-2],[-4,-2],[-3,-4],[0,-2],[-3,-1],[-1,-1],[1,-2],[-3,0],[-2,-1],[-1,-5],[0,-3],[1,-1],[-1,0],[0,-6],[0,-1],[-1,-3],[2,-1],[-2,-2],[-3,0],[0,-2],[-1,0],[0,-1],[-1,-1],[-2,-1],[-1,-1],[-3,-2],[-2,2],[-2,-2],[-3,1],[-2,-5],[0,-2],[1,0],[-3,-3],[-2,1],[-1,-1],[0,-5],[1,-1],[2,0],[-5,-4],[-4,-1],[-3,-1],[-5,2],[-5,-3],[-2,-3],[0,1],[-5,0],[-2,-3],[-2,2],[-2,-1],[-2,4],[-2,0],[0,2],[-14,23],[-11,15],[-16,18],[-12,8],[-14,4],[-7,1],[-17,-10],[-2,-4],[-3,-1],[-3,-4],[-2,0],[-7,8],[-6,4],[-3,1],[-1,-1],[1,2],[-4,2],[-2,-1],[6,-6],[-6,6],[-2,-1],[1,1],[-2,-1],[-3,-4],[-1,1],[-4,-2],[-10,-1],[-3,-1],[0,-2],[-10,-1],[-3,0],[-3,-4],[-13,-21],[-4,-11],[1,-1],[-1,0],[0,-1],[1,0],[-5,-14],[-2,-4],[-12,-16],[-4,-2],[-5,-1],[-7,-4],[-3,-1],[-4,-3],[-11,1],[-8,-1],[-8,-2],[-4,1],[-1,-1],[-7,9],[-2,-1],[-3,2],[3,-1],[1,1],[-1,0],[1,1],[-3,-1],[0,1],[-2,2],[-6,3],[-9,-1],[-6,-6],[-3,3],[-1,-1],[-14,19],[-5,6],[-4,3],[-5,5],[-4,0],[-1,0],[-5,-1],[-12,-6],[-4,-1],[-6,4],[-7,-2],[-4,2],[-1,-1],[0,1],[-2,2],[1,-4],[-4,3],[-2,1],[-12,0],[-4,-1],[-17,3],[-9,0]],[[6684,5642],[-2,4],[-2,6],[1,9],[-2,2],[0,2],[21,14],[6,5],[2,4],[14,4],[2,2],[4,6],[0,1],[-1,9],[-2,2],[-3,8],[0,1],[-3,3],[-3,1],[-2,4],[-2,4],[-1,1],[-1,0],[0,1],[1,4],[-1,5],[-1,2],[3,-4],[4,-1],[4,3],[2,3],[5,2],[0,2],[1,1],[-1,1],[0,1],[1,1],[0,1],[-1,5],[4,7],[2,0],[2,1],[8,0],[2,1],[3,4],[-1,2],[1,3],[3,1],[1,2],[-1,3],[0,3],[0,4],[-2,8],[-3,1],[-2,3],[-2,0],[-1,6],[-2,0],[0,7],[-5,11],[-1,12],[-3,8],[0,3],[1,2],[0,4],[-1,3],[-2,6],[1,2],[2,-2],[3,0],[5,-10],[2,-1],[2,0],[5,-1],[2,0],[4,2],[10,0],[-1,2],[1,4],[1,0],[1,3],[0,5],[-1,2],[1,0],[1,1],[0,4],[2,2],[2,1],[1,3],[0,2],[1,5],[-1,3],[1,0],[6,1],[2,3],[7,2],[2,6],[1,4],[2,3],[1,0],[1,3],[-1,7],[4,10],[-1,3],[0,5],[3,6],[-1,2],[3,1],[2,2],[-1,2],[2,7],[0,2],[2,5],[3,2],[2,0],[3,-1],[2,1],[2,-1],[2,0],[2,-4],[6,-2],[3,-3],[7,0],[1,-2],[-1,-2],[2,-2],[-1,-1],[1,-4],[1,-4],[2,-1],[3,-3],[-1,-1],[2,-3],[9,2],[0,1],[1,1],[2,3],[1,-3],[2,-1],[3,2],[4,-3],[0,-2],[1,-1],[1,-1],[3,0],[2,-2],[1,-2],[1,1],[4,-1],[2,0],[3,0],[2,-3],[2,0],[1,11],[-1,2],[-1,0],[-1,2],[-1,1],[0,7],[3,11],[-2,4],[1,3],[-1,5],[1,5],[0,1],[2,2],[-1,2],[2,0],[0,2],[0,1],[2,1],[0,2],[0,2],[-1,2],[0,2],[1,3],[-1,4],[0,5],[3,1],[4,1],[1,13],[-3,7],[1,1],[-1,6],[2,0],[1,4],[12,10],[3,4],[2,3],[9,5],[2,5],[1,3],[1,1],[0,1],[3,3],[2,0],[3,4],[2,0],[5,3],[0,1],[2,1],[7,8],[0,1],[5,2],[13,0],[7,5],[-2,5],[1,2],[0,3],[2,1],[5,1],[2,0],[3,-1],[0,2],[2,0],[6,2],[1,2],[-1,2],[2,2],[2,0],[2,-6],[2,-1],[1,2],[6,4],[8,-2],[2,1],[-1,8],[1,1],[-1,1],[3,6],[-9,6],[3,4],[0,6],[-3,3],[0,1],[2,1],[1,6],[-3,13],[-2,0],[-4,4],[-1,9],[7,-2],[5,-5],[2,0],[1,2],[5,3],[2,-4],[1,0],[10,-1],[3,9],[-3,3],[0,2],[-2,2],[1,7],[-1,0],[-1,4],[-1,4],[1,14],[4,10],[3,0],[0,4],[1,1],[-1,1],[0,2],[5,11],[0,2],[1,1],[0,1],[2,3],[1,-1],[5,16],[-7,8],[-2,-1],[-2,1],[3,1],[-3,7],[0,5],[3,11],[2,2],[-1,4],[-1,2],[-1,11],[1,10],[2,6],[5,-1],[6,-2],[4,6],[2,4],[19,12]],[[7093,6363],[10,-8],[1,-1],[5,-8],[4,3],[3,-1],[3,2],[-1,1],[8,1],[2,1],[3,0],[2,-3],[4,-3],[1,-2],[0,-3],[2,0],[2,-3],[6,-1],[0,-2],[3,4],[2,3],[1,1],[4,-1],[1,-2],[2,0],[2,-1],[2,-2],[0,-1],[2,0],[1,1],[6,-4],[2,0],[8,7],[0,-2],[2,-1],[2,3],[3,-4],[2,0],[4,-3],[-1,-5],[-5,-5],[-3,-7],[-2,-11],[1,-3],[-2,-9],[-3,-18],[2,-6],[1,-11],[3,-12],[-2,-3],[-2,-1],[-2,-1],[0,-6],[-2,-6],[1,-1],[0,-4],[0,-4],[-1,-8],[2,-3],[3,-8],[3,-3],[1,-5],[2,1],[3,-5],[0,-5],[1,-2],[1,-4],[3,-3],[2,-5],[4,-3],[1,-2],[-1,-4],[1,-2],[17,-27],[2,-4],[18,-30],[3,-2],[3,-4],[4,-12],[1,-3],[17,-14],[-2,12],[7,0],[8,-3],[19,-3],[14,-13],[17,-13],[16,-16]],[[5796,8354],[1,2],[5,0],[4,4],[1,3],[8,-3],[3,-2],[4,0],[3,0],[5,2],[12,7],[-1,2],[5,3],[0,2],[1,-2],[2,0],[1,-2],[7,2],[0,-3],[3,-1],[-1,-2],[3,0],[4,0],[2,-1],[0,-6],[3,-1],[3,1],[5,-5],[4,-2],[3,-3],[5,-3],[1,0],[2,0],[2,-3],[3,-1],[6,-5],[1,0],[2,-1],[2,-2],[-1,-1],[4,-3],[3,4],[12,-1],[6,3],[-2,3],[1,5],[2,6],[0,2],[3,4],[5,0],[3,3],[1,2],[3,1],[6,-2],[8,5],[4,-1],[1,1],[3,0],[4,-1]],[[5976,8364],[0,-8],[2,-2],[-3,-2],[-1,-4],[2,-4],[3,-3],[-1,-3],[0,-1],[3,-4],[-2,-4],[-2,-1],[5,-1],[-1,-2],[-2,-2],[-1,-7],[1,-5],[4,-5],[2,-2],[9,0],[7,-4],[2,-2],[0,-1],[3,-4],[3,-1],[4,-1],[-1,0],[8,-13],[-1,-2],[3,-2],[0,-4],[2,-5],[3,-11],[5,-3],[9,-4],[1,-2],[3,0],[0,-2],[-1,-1],[1,-4],[2,-3],[1,0],[0,-15],[0,-2],[3,-3],[-2,-3],[1,-5],[-2,-6],[3,-2],[1,-2],[5,-2],[2,-2],[-1,-4],[1,-1],[1,-3],[-2,-3],[-1,1],[-5,-2],[-4,-8],[4,-7],[2,-2],[5,2],[4,-2],[7,4],[1,-1],[0,1],[3,-1],[1,2],[2,0],[3,-8],[0,-4],[5,-4],[0,-3],[1,-2],[-3,-3],[0,-2],[0,-3],[3,-3],[0,-4],[3,-4],[3,-6],[3,-3],[6,-3],[4,-4],[0,-4],[2,-4],[-2,-1],[-1,-7],[-1,-1],[0,-6],[2,-1],[4,-18],[1,-13],[0,-13],[5,1],[6,-1],[3,1],[10,2],[15,-1],[-1,2],[3,5],[3,0]],[[6154,8054],[8,3],[15,1],[5,-1],[0,7],[-2,2],[-3,5],[-3,1]],[[6174,8072],[1,3],[3,2],[4,1],[2,2],[1,-1],[2,1],[6,-1],[8,3],[12,2],[2,1],[5,-3],[3,0],[2,-2]],[[6225,8080],[-5,-6],[-1,-4],[0,-4],[2,-2],[1,-10],[0,-3],[-2,-3],[1,-2],[-1,-2],[2,-4],[2,0],[1,-1],[-7,-4],[-7,-2],[-10,-6],[-12,-1],[-6,1],[-3,1],[-4,10],[-1,4],[-3,1],[-4,-1],[0,-2],[0,-10],[5,-3],[-1,-2],[-1,-3],[0,-4],[-1,-5],[-2,-11],[-9,-3],[-6,-5],[-1,-2],[0,-4],[-2,-4],[4,-2],[-1,-9],[-2,-6],[1,0],[1,-4],[0,-15],[1,-4],[1,0],[0,-2],[1,-1],[-2,-1],[1,-3],[-1,0],[-2,1],[-1,0],[0,-2],[2,-1],[1,-3],[-1,-1],[-4,0],[0,-3],[-1,-1],[1,-1],[-4,-2],[1,-4],[-1,-1],[2,-1],[1,-2],[2,-1],[1,1],[1,0],[0,-4],[-1,-3],[3,-2],[-4,0],[-2,-1],[-8,3],[-4,-1],[-2,-3],[-5,0],[-11,3],[-5,-1],[-2,-2],[-2,0],[-1,-3],[-4,-3],[-2,-3],[0,-2],[-2,0],[0,-2],[1,-4],[0,-10],[1,-6],[-1,-2],[-4,-2],[0,-1],[-4,-1],[-1,-2],[3,-5],[-1,-8],[-4,-1],[-4,1],[-5,1],[-3,-1],[-3,-2],[-3,-1],[-4,3],[-1,6],[-2,4],[-3,1],[1,5],[-6,-3],[-3,1],[-1,-2],[2,-4],[0,-1],[0,-1],[2,-1],[0,-10],[4,-12],[-2,-2],[-4,-2],[-2,-4],[-3,-1],[0,-1],[-1,-6],[0,-1],[-6,-5],[2,-11],[2,-2],[1,-1],[-1,-7],[-2,-3],[-4,1],[-2,-1]],[[6039,7788],[-3,-1],[-3,-3],[-3,-2],[-2,0],[-1,-2],[-2,-1],[-1,-1],[-2,-1],[-5,1],[-3,-1],[-2,-2],[-6,1],[-2,1],[-2,4],[-3,0],[-2,2],[-2,-2],[-4,3],[0,4],[-1,7],[1,4],[-3,3],[3,6],[-3,2],[-3,2],[-1,4],[2,0],[2,2],[-2,10],[-7,-1],[1,-3],[-7,-2],[0,-2],[-2,1],[-5,2],[-4,-7],[-4,-1],[-7,2],[-2,2],[-1,1],[-2,1],[-7,2],[-2,-2],[1,-2],[-2,-3],[0,-2],[-3,-3],[2,-4],[1,-3],[0,-2],[1,-3],[-4,-3],[-2,-1],[1,-4],[-7,-6],[-2,-2],[-4,-1],[-5,-3],[-1,1],[-6,-5],[-1,-4],[-3,0],[-5,-3],[-6,-6],[-7,-4],[1,-3],[2,-6],[-2,-8],[-1,-2],[0,-2],[-9,-2],[-1,0],[-4,1],[-1,-2],[2,-3],[-2,0],[2,-3],[-3,0],[-4,-1],[-5,-3],[-3,1],[-8,-4],[-3,1],[3,6],[0,6],[-3,8],[-2,1],[0,8],[-7,-1],[-4,-3],[-4,0],[-2,-2],[-3,2],[-3,-2],[-2,-3],[-2,-2],[0,-3],[-3,0],[0,-6],[-2,-1],[-2,2],[-3,0],[-2,-5],[-9,-10],[-6,-4],[0,-2],[-1,-1],[-3,-1],[-3,2],[-5,-4],[-2,-1],[-5,1],[-1,0],[-4,-2],[-4,-1],[-2,2],[0,2],[-2,2],[0,8],[-1,1],[-16,1],[-5,0],[-3,2],[-1,-1],[-11,0],[-1,0],[-2,-1],[-6,-1],[-9,6]],[[5703,7725],[-1,5],[-2,1],[-2,2],[0,3],[-5,9],[0,3],[-1,1],[0,1],[-3,2],[-1,3],[2,6],[0,5],[-1,1],[0,7],[-1,2],[2,3],[-2,5],[0,4],[3,3],[2,3],[0,3],[6,19],[-2,1],[-4,-1],[-3,-4],[-6,1],[-8,-5],[-7,3],[-8,-2],[-5,-11],[-5,-4],[-7,-2],[-1,-10],[-8,-2],[-4,-3],[-1,-1],[0,1],[-5,1],[-4,-3],[-5,-1],[-3,1],[-2,-1],[-3,1],[-1,2],[-6,1],[-2,3],[-10,5],[-3,1],[-5,-1],[-4,6],[2,5],[0,2],[-1,0],[-2,3],[-1,3],[-1,1],[-11,2],[-4,4],[1,8],[-12,9],[-4,5],[-3,-2],[-3,1],[-5,0],[-5,2],[-2,-1],[-2,1]],[[5524,7835],[4,6],[0,4],[6,9],[3,3],[8,5],[2,4],[6,3],[-6,4],[0,2],[0,2],[0,9],[3,6],[-3,6],[-1,12],[-2,3],[1,1],[3,2],[4,1],[2,3],[6,3],[6,6],[1,3],[3,6],[3,1],[2,2],[6,2],[9,-1],[6,6],[7,0],[-2,-2],[2,-4],[0,-3],[-3,-3],[-2,0],[-1,-6],[0,-2],[4,-2],[4,-4],[5,-7],[2,1],[6,-1],[6,0],[1,3],[0,6],[0,4],[-4,1],[0,1],[0,3],[4,4],[0,3],[1,0],[3,-3],[3,0],[3,-1],[1,1],[1,-1],[2,2],[4,1],[2,2],[-1,1],[3,4],[0,7],[0,4],[4,2],[1,2],[1,14],[2,4],[3,2],[1,3],[2,11],[2,3],[-3,6],[-3,0],[-7,-4],[-3,-1],[-2,1],[-7,-2],[-12,-5],[-4,-2],[-3,-3],[-1,0],[0,5],[-1,1],[0,2],[5,6],[1,4],[-1,2],[0,2],[0,5],[3,3],[2,0],[2,5],[1,-5],[0,-5],[5,1],[1,-1],[8,-1],[2,0],[0,-1],[7,1],[1,4],[1,0],[1,2],[1,0],[2,1],[2,3],[2,1],[1,5],[4,2],[1,1],[1,-1],[3,0],[3,3],[1,3],[3,1],[1,1],[1,-1],[1,4],[-1,2],[4,5],[-2,5],[5,2],[-9,9],[0,3],[1,2],[2,0],[1,4],[4,2],[2,-1],[7,4],[3,0],[2,2],[2,3],[0,2],[-2,1],[3,1],[1,3],[3,0],[0,-2],[4,1],[2,1],[7,3],[1,2],[5,4],[1,2],[5,3],[3,3],[1,2],[1,-1],[0,3],[2,2],[8,3],[2,3],[6,3],[-2,8],[0,1],[4,4],[11,6],[3,5],[-1,1],[1,4],[5,4],[0,2],[2,0],[0,2],[1,2],[1,2],[-2,3],[0,1],[-1,0],[0,3],[-1,-1],[-1,2],[0,2],[1,2],[1,7],[0,1],[1,4],[-1,2],[0,2],[3,1],[2,2],[0,1],[2,1],[0,3],[4,3],[1,3],[-1,0],[0,1],[2,1],[0,1],[2,2],[1,0],[2,2],[1,-1],[3,1],[-1,1],[2,5],[-1,1],[2,0],[-1,2],[0,1],[-2,3],[1,1],[-1,1],[1,1],[-1,1],[-2,0],[0,1],[1,1],[-3,6],[1,1],[0,2],[-2,0],[0,4],[3,1],[2,-1],[4,2],[0,2],[1,-1],[0,2],[3,9],[1,1],[0,4],[-1,3],[4,4],[-1,1],[0,5],[-4,5],[0,1],[-1,0],[1,4],[-2,0],[1,2],[-2,1],[1,1],[-11,4],[-3,2],[-2,-1],[0,2],[-2,2],[0,2],[-1,1],[1,4],[-1,0],[0,3],[-2,2],[1,10],[-1,2],[1,1],[0,1],[1,4],[2,3],[2,0],[0,2],[5,3],[1,17]],[[5991,7313],[0,-6],[2,-3],[2,0],[2,-6],[2,-1],[-1,-8],[-5,-7],[-2,-5],[0,-4],[-3,-2],[-1,-4],[1,-2],[-5,-5],[-2,-12],[2,-9],[-1,-2],[-3,0],[-9,-1],[-12,-3],[3,-6],[10,-35],[-1,-2],[9,-5],[0,-1],[1,-9],[3,-9],[-1,-2],[8,-4],[1,-1],[2,-6],[2,0],[3,-3],[3,-1],[1,-1],[0,-3],[6,-4],[1,-3],[-1,-2],[-6,1],[-6,3],[0,-1],[-17,11],[-13,4],[-13,-3],[-17,6],[1,0],[-2,-5],[-4,-6],[-4,-3],[0,-7],[-3,-1],[-3,-1],[-4,-6],[-1,-3],[1,-4],[-2,-4],[1,-1],[-1,-6],[-5,-6],[-2,-9],[7,-13],[10,-4],[4,-5],[-2,-7],[-1,-3],[-2,-1],[-2,1],[-3,-1],[-2,-4],[-3,-4],[-4,1],[-3,-1],[-3,0],[-9,5],[-5,5],[-10,5],[-2,0],[-3,0],[-6,1],[0,-4],[5,-13],[2,-14],[4,-7],[0,-7],[1,-6],[7,-12],[2,3],[4,1],[5,-2],[2,-2],[-1,-2],[5,-2],[2,-1],[1,0],[10,-1],[4,-1],[-1,-3],[5,-1],[1,-2],[-3,-4],[-1,-5],[-3,-13],[2,-3],[-2,-8],[-3,1],[-5,2],[-5,0],[-2,1],[-4,-1],[-4,1],[-7,-1],[-2,-4],[-2,-2],[-2,-4],[-3,-4],[-4,-6],[0,-5],[-4,-10],[-3,-12],[1,-5],[-2,-4],[0,-4],[-3,-9],[-2,-9],[-5,-6],[-3,-7],[-6,-4],[-2,1],[-3,0],[-10,-1],[-4,-3]],[[5831,6866],[-1,-1],[-5,-2],[-1,-2],[-2,-2],[-6,-1],[-4,-3],[-1,-1],[-4,-1],[-5,3],[-3,2],[-10,-1],[-4,1],[-2,0],[-4,-1],[-1,-1],[-1,0],[-1,3],[-6,2],[2,-5],[-1,-4],[3,-3],[1,-8],[2,-4],[0,-3],[-6,0],[-2,-2],[0,-2],[3,-3],[-2,-4],[-3,1],[-2,4],[-1,0],[0,-2],[0,-2],[0,-2],[-1,-1],[-1,1],[-1,5],[-2,1],[-1,-7],[0,-3],[-2,-1],[-1,0],[-1,4],[-2,0],[1,-4],[-3,-1],[-1,-2],[-2,-1],[-1,-3],[-2,-1],[-2,2],[1,-5],[-4,1],[0,-4],[-7,-4],[-2,-3],[-2,-2],[-4,0],[-2,-2],[-4,-7],[-4,-2],[0,-3],[2,-2],[0,-3],[-2,-3],[-6,2],[-2,-1],[-3,0],[-5,3],[-5,1],[-5,0],[-1,-1],[1,-2],[-3,-7],[-5,-1],[-1,-3],[3,-3],[-2,-2],[-2,0],[-1,-1],[1,-2],[3,-3],[1,-2],[-1,-1],[-3,0],[-2,4],[-2,0],[-3,-2],[2,-4],[-6,-4],[1,-4],[2,0],[-1,-2],[-2,0],[-1,-5],[-4,2],[-3,-7],[-5,1],[-2,-2],[0,-3],[-4,1],[0,-3],[-3,-3],[-2,-3],[-2,1],[-2,-1],[-1,-4],[0,-2],[-1,-7],[-1,1],[-2,1],[-2,-5],[-2,0],[-2,-1],[-4,4],[-3,0],[-1,-2],[-4,-4],[-6,-2],[-1,0],[-1,-2],[-2,-1],[-4,-6],[-3,-2],[-2,-4],[0,-2],[-5,-14],[0,-9],[2,-3],[1,1],[2,-3],[3,0],[2,-4],[-2,-2],[0,-1],[2,1],[1,0],[0,-1],[-3,-3],[-1,-3],[1,-3],[-2,-6],[0,-2],[-1,-5],[-1,-1],[4,-4],[5,-3],[2,-4],[0,-3],[-1,-2],[3,-4],[1,-5],[1,-1],[0,-1],[-1,-2],[1,-3],[2,1],[0,-4],[3,-2],[2,-3],[-2,-6],[3,-4],[1,-11],[-1,-5],[1,-6],[-1,0],[1,-1],[0,-3],[-2,-1],[-1,-2],[-1,1],[-4,-2],[1,-2],[-1,-2],[1,-1],[-1,-4],[-2,-1],[1,-2],[1,0],[0,-2],[-1,0],[1,-4],[0,-1],[2,-1],[-2,-4],[-1,-1],[-3,1],[-2,-5],[-1,0],[-1,-2],[-1,-1],[-1,1],[-2,-1],[-3,1],[-5,-6],[0,-5]],[[5592,6497],[-22,4],[-4,-6],[-1,-2],[-10,-10],[-1,-5],[-10,-11],[-8,-2],[-4,3],[-6,1],[-1,-1],[0,6],[1,2],[0,6],[-1,4],[-2,7],[0,4],[4,3],[5,-1],[2,-1],[3,5],[2,1],[4,4],[-5,9],[0,3],[2,-1],[3,2],[0,-2],[4,-4],[1,-3],[0,3],[-2,6],[0,5],[0,2],[-4,-2],[-1,1],[0,1],[2,1],[0,2],[-1,-1],[-2,0],[-2,0],[-1,2],[-3,-2],[0,2],[-4,2],[0,2],[-2,1],[-1,-1],[-5,-1],[-2,-3],[-1,1],[-2,-4],[-1,1],[-1,-1],[1,-1],[-1,-1],[-1,1],[-5,1],[-2,1],[-3,0],[-4,-5],[-4,-2],[-1,2],[-3,-2],[-1,0],[1,2],[-3,-1],[0,1],[-1,-2],[-2,1],[0,-2],[0,-2],[-7,3],[-2,-1],[-1,-1],[-3,0],[-1,-1],[-1,-5],[-8,-2],[-1,-2],[0,-4],[-1,-1],[1,-6],[-2,-3],[-6,-1],[-5,-4],[-3,-1],[-1,-3],[-5,-8],[0,-5],[-1,0],[0,-4],[0,-1],[8,-7],[1,-6],[0,-3],[-1,0],[-1,-2],[-2,-2],[-1,-4],[-4,0],[-2,-2],[-1,-5],[1,-4],[-2,-3],[1,-2],[-2,-6],[-2,-2],[0,-3],[-4,-7],[-1,2],[-2,1],[-8,0],[-4,-1],[-3,1],[-5,-5],[-3,1],[-2,-1],[-3,1],[-4,3],[-4,-2],[-1,1],[-4,0],[-1,-3],[-3,0],[-2,-2],[-5,-2],[-2,0],[-4,-1],[-2,-1],[-5,0],[-4,0],[-6,-6],[-3,0],[-3,-4],[-3,0],[0,-2],[-2,-3],[-6,-1],[0,-3],[-5,-3],[-1,-3]],[[5327,6379],[-2,2],[-5,3],[1,3],[-3,3],[0,1],[-1,1],[-1,-2],[-2,-1],[0,2],[-2,0],[-8,-2],[-3,1],[-3,2],[0,2],[-3,3],[-2,0],[-3,2],[-7,0],[-4,2],[-7,1],[-2,4],[-5,3],[-1,2],[-3,3],[-2,0],[-6,3],[-2,3],[-3,5],[0,6],[-1,7],[-1,4],[-2,2],[0,1],[-9,0],[-6,3],[-6,3],[-9,0],[-4,1],[-4,-2],[4,-5],[0,-1],[-2,-2],[-2,0],[-4,-5],[-2,0],[0,-2],[-1,-1],[-2,-4],[0,-5],[4,-1],[-1,-2],[-1,1],[-1,-2],[-3,-1],[-1,1],[-2,-1],[-3,1],[0,2],[-2,1],[1,1],[-1,2],[-13,1],[-9,4],[-3,0],[-6,0],[-3,-2],[1,-1],[-1,-1],[-3,1],[-2,-1],[-1,2],[0,2],[-1,0],[2,4],[0,6],[1,6],[-6,8],[-2,5],[-2,2],[-2,4],[-2,1],[-4,7],[-3,1],[-4,-1],[-2,0],[-1,0],[-1,-3],[-1,-1],[-1,2],[0,1],[-1,1],[-2,-1],[-1,-2],[-1,0],[-5,1],[0,1],[-1,0],[-2,1],[-1,0],[-3,2],[-1,-3],[-7,1],[-2,-1],[-2,-2],[0,5],[-2,0],[-1,-2],[-2,0],[-1,2],[-2,-4],[2,-1],[-1,-1],[-5,2],[-2,-1],[-3,2],[-2,-2],[-1,4],[-4,1],[2,1],[0,3],[-3,-2],[-1,1],[2,4],[-2,1],[-2,-2],[-1,1],[-2,0],[-1,-1],[-4,1],[0,2],[-1,0],[-4,-2],[-3,5],[2,8],[5,7],[0,7],[2,3],[1,4],[0,4],[-1,4],[-5,0],[-7,-3],[-12,2],[-4,1],[-11,9],[-4,1],[-1,2],[-2,0],[-1,2],[-1,0],[-5,-1],[-2,1],[-2,-1],[-1,1],[0,2],[-1,0],[-2,2]],[[4993,6544],[-3,-1],[1,9],[-3,-2],[-1,-4],[-2,0],[1,4],[-4,-1],[-7,-9],[-2,2],[-1,4],[-2,0],[-5,-5],[-7,1],[1,-4],[-1,-2],[-2,1],[-1,-1],[0,-2],[-2,-4],[-3,-2],[-4,2],[-2,1],[-1,-1],[-1,-3],[-2,-1],[-2,1],[-2,-2],[0,1],[2,2],[0,2],[-5,1],[0,-5],[-5,-3],[-3,-3],[-1,1],[-1,4],[-4,1],[-2,5],[-2,0],[0,2],[0,2],[-1,0],[-2,8],[-1,0],[0,1],[0,3],[-6,10],[-4,4],[-2,3],[-1,6],[1,3],[-1,2],[1,2],[-1,1],[-1,0],[1,1],[-1,2],[0,1],[-1,0],[-1,-1],[0,1],[0,2],[1,2],[-2,0],[0,1],[-2,1],[-2,1],[-3,-1],[1,3],[-1,1],[-5,6],[-4,8],[-6,14],[-4,6],[-3,1],[-5,8],[-7,9],[-9,13],[-3,5],[-3,10],[0,3],[-1,0],[-1,2],[-1,0],[-1,1],[-1,0],[-1,1],[1,1],[-1,0],[0,-1],[-2,-1],[-2,4],[-2,0],[-2,3],[-1,0],[-1,2],[-5,0],[-1,-2],[0,1],[-2,-2],[-1,0],[3,6],[7,3],[1,4],[-1,3],[2,1],[4,3],[1,4],[1,3],[-1,3],[-4,-1],[-2,-4],[-2,0],[-2,1],[-1,1],[2,7],[2,4],[0,11],[1,2],[3,3],[1,3],[0,11],[5,7],[2,5],[1,6],[2,2],[2,-1],[1,1],[2,5],[3,2],[0,5],[1,6],[3,7],[3,3],[1,2],[-2,2],[-5,0],[-2,0],[-2,5],[1,12],[0,8],[1,10],[-1,3],[1,9],[5,8],[-1,5],[7,7],[5,0],[7,5],[5,4],[5,11],[12,6],[3,4],[1,5],[11,12],[7,3],[6,0],[3,-1],[2,2],[7,17],[2,5],[4,2],[3,0],[2,2],[1,2],[2,-1],[1,1],[0,4],[3,5],[-1,3],[-2,0],[0,6],[-1,4],[-4,5],[11,10],[3,10],[16,25],[8,19],[6,8],[-7,10],[1,1],[3,8],[-10,21],[-6,6],[-4,2],[-5,5],[-8,5],[-9,0],[-1,-1],[-4,-2],[-1,0],[-6,-3],[-9,-2],[-2,-3],[-17,6],[-2,3],[-1,5],[3,3],[1,7],[2,2],[0,2],[-2,3],[4,6],[-1,2],[1,1],[-1,4],[-3,1],[-4,0],[0,1],[-3,1],[-3,2],[-2,1],[-1,0],[-8,1],[-3,3],[-2,-1],[-4,1],[-3,3],[-2,0],[-5,7],[-5,3],[1,6],[-2,5],[0,4],[1,1],[0,5],[-1,2],[-1,5],[7,15]],[[4860,7206],[12,-7],[4,5],[3,6],[7,8],[1,5],[4,4],[3,2],[0,1],[1,3],[-1,5],[-2,1],[-3,-3],[-1,-4],[-4,5],[0,2],[0,4],[5,9],[2,3],[0,2],[3,5],[7,5],[1,0],[1,-1],[4,4],[3,2],[6,1],[3,-1],[2,-3],[6,0],[3,1],[2,-4],[3,-2],[-3,-3],[-4,-9],[-9,4],[-2,-2],[0,-6],[7,-3],[2,-3],[-1,-8],[2,-6],[1,-2],[12,7],[3,3],[-2,2],[0,2],[8,11],[1,5],[-2,6],[5,2],[2,4],[-1,3],[5,4],[-4,2],[-9,2],[-5,4],[-8,7],[8,14],[7,-3],[2,0],[15,-4],[2,-3],[4,0],[0,-4],[2,-1],[18,-9],[6,-2],[7,-3],[5,0],[6,-4],[5,0],[7,4],[4,-1],[7,0],[9,2],[4,-1],[0,-3],[5,-10],[-2,-4],[0,-6],[-1,-5],[8,-5],[4,-5],[9,-1],[1,-3],[0,-3],[-1,-3],[-1,-5],[-4,-17],[-3,-4],[-5,-3],[-2,-7],[-4,-4],[-4,-5],[0,-5],[2,-3],[0,-4],[1,-3],[1,-3],[2,0],[1,-5],[8,-8],[3,0],[3,3],[2,0],[4,-2],[4,-1],[11,-3],[8,-4],[4,0],[9,13],[1,0],[5,-3],[6,2],[3,-2],[0,-1],[3,0],[2,-2],[4,-1],[11,-5],[1,0],[-2,-2],[0,-3],[2,0],[2,-2],[0,-6],[16,-2],[1,5],[0,8],[-2,4],[22,-9],[10,3],[5,1],[5,-1],[3,2],[2,0],[2,-1],[5,-5],[6,-1],[3,1],[1,0],[8,-2],[1,0],[2,0],[3,2],[4,7],[7,4],[6,2],[3,-2],[-1,-8],[3,-3],[0,-3],[3,-3],[-1,-2],[2,-4],[-1,-4],[-1,-5],[1,-6],[-2,-4],[1,-3],[5,-4],[2,-4],[12,-2],[4,-2],[13,-1],[2,-3],[5,-10],[5,-8],[16,2],[6,-4],[1,-1],[-1,-3],[3,-3],[2,-6],[3,1],[2,3],[3,7],[5,7],[3,2],[8,12],[4,6],[8,5],[6,6],[4,4],[3,1],[6,6],[2,0],[-1,-8],[1,-6],[-1,-3],[1,-5],[1,-3],[0,-11],[1,-2],[-1,-3],[2,-2],[-1,-3],[0,-1],[9,9],[1,1],[2,0],[7,8],[0,3],[2,2],[1,2],[3,2],[2,4],[1,-1],[2,4],[2,0],[5,-2],[1,-4],[-1,-3],[-5,-6],[6,0],[12,7],[11,6],[8,1],[3,2],[6,0],[8,6],[-1,2],[0,4],[4,10],[21,-6],[3,-2],[1,-2],[10,-9],[2,-2],[2,-3],[9,-10],[5,-5],[8,-1],[1,0],[3,5],[8,8],[3,-1],[12,-1],[4,1],[2,5],[2,0],[4,6],[-5,5],[-3,2],[1,3],[4,0],[3,3],[2,3],[2,4],[-5,5],[-3,5],[-5,6],[-4,8],[4,1],[7,6],[2,0],[3,1],[3,2],[3,3],[3,-1],[3,5],[1,-4],[3,-2],[6,-9],[2,6],[2,1],[2,4],[2,-7],[5,-7],[3,-3],[6,-3],[4,-5],[2,-5],[3,-2],[2,2],[6,-1],[6,2],[1,-2],[0,-1],[5,-1],[7,6],[0,1],[2,1],[4,3],[4,8],[4,16],[6,7],[1,4],[2,5],[0,6],[-3,3],[-1,4],[0,7],[1,7],[6,31],[4,-1],[3,0],[6,-4],[3,-3],[9,0],[16,-11],[8,3],[19,6],[5,0],[2,-1],[2,1],[7,3],[12,9],[3,5],[2,8],[1,7],[-2,12],[6,0],[5,2],[7,-7],[9,-11],[6,3],[9,1],[2,4],[3,2],[8,-5],[3,1],[2,5],[4,2],[-2,7],[1,1],[9,0]],[[5873,7279],[1,-2],[3,1],[1,1]],[[5878,7279],[3,0],[1,-5],[5,0],[4,-5],[1,-1],[2,1],[1,-1],[0,-2],[1,0],[6,-3],[2,2],[3,-1],[2,-2],[2,4],[2,0],[1,3],[2,1],[0,-1],[1,0],[2,1],[1,-1],[1,0],[6,6],[8,3],[1,1],[2,1],[5,0],[3,1],[6,-1],[5,5],[4,6]],[[5961,7291],[6,5],[1,0],[11,7],[11,11],[1,-1]],[[8703,6868],[1,2],[2,-2],[4,4],[2,8],[0,13],[2,-13],[4,-12],[4,-1],[1,-4],[3,-1],[4,4],[-1,-5],[3,-5],[1,-7],[10,-10],[12,-8],[11,10],[7,2],[5,-9],[1,-6],[0,-3],[-7,-7],[-19,1],[-8,9],[-12,8],[-10,3],[-7,-1],[-3,-3],[-2,-7],[-5,-2],[-6,-10],[-8,-5],[-2,1],[0,5],[2,11],[-3,16],[3,0],[1,4],[-2,8],[-2,4],[3,2],[4,8],[2,-4],[5,2]],[[9988,7580],[-3,2],[0,4],[-3,-2],[-5,4],[0,-2],[-4,1],[0,-1],[-6,3],[3,-4],[6,0],[0,-4],[1,2],[7,-4],[1,-4],[2,0],[3,-6],[-4,-1],[3,0],[1,-8],[-1,-5],[-3,-1],[2,-4],[-3,-4],[-1,1],[1,-3],[-4,-6],[-8,-3],[-10,4],[-4,-1],[-4,5],[-2,-1],[0,1],[-3,4],[0,-1],[-3,1],[-2,-2],[-1,4],[-1,-1],[-4,2],[-8,6],[-3,5],[-1,-2],[-3,4],[-5,3],[-2,1],[1,2],[-1,-2],[-5,3],[0,3],[-1,-2],[-3,0],[-11,7],[-8,7],[-1,4],[-9,6],[-12,7],[-5,3],[-6,-1],[-1,3],[-6,1],[0,2],[-4,-1],[-4,3],[-5,-1],[-1,3],[-5,-2],[-5,3],[0,-2],[-2,-2],[-7,-2],[-1,2],[-1,-4],[-3,-1],[-1,2],[-1,-3],[-2,0],[0,2],[-2,1],[-3,-3],[-7,1],[-7,-2],[-5,3],[-1,-2],[-1,2],[-6,-2],[-2,3],[3,8],[-2,1],[2,3],[-1,3],[4,5],[0,4],[-1,4],[1,4],[3,0],[-3,1],[-1,-1],[-2,8],[4,1],[-5,2],[-1,-1],[-4,0],[0,3],[-1,-3],[-2,3],[-3,-2],[-2,2],[2,2],[-2,0],[-1,10],[4,1],[0,2],[3,1],[1,1],[-1,4],[2,1],[5,10],[1,-1],[1,2],[1,-2],[0,2],[2,-3],[2,3],[10,0],[2,3],[2,-3],[3,0],[3,1],[-1,2],[3,-1],[4,2],[2,-1],[3,-6],[1,2],[1,-3],[1,1],[2,-2],[1,3],[-1,1],[-1,3],[5,1],[-1,1],[3,2],[3,-4],[8,3],[4,-5],[6,-1],[1,0],[5,4],[7,1],[2,-2],[1,-1],[0,3],[2,0],[4,3],[8,-8],[2,0],[0,2],[2,2],[3,1],[0,-2],[4,1],[1,1],[1,7],[0,-3],[2,2],[1,3],[2,-3],[-1,9],[-3,3],[2,-1],[3,1],[1,-3],[2,1],[0,-1],[-3,-6],[0,-3],[2,0],[-2,-4],[1,-3],[2,0],[2,-8],[2,0],[1,6],[7,0],[0,5],[3,0],[-3,-14],[-2,-3],[2,-6],[4,2],[-2,1],[2,3],[0,-2],[1,1],[1,-1],[1,2],[1,8],[-2,3],[2,1],[-2,2],[-1,5],[2,2],[3,-2],[3,1],[3,-3],[5,-1],[-1,-3],[-3,1],[0,-4],[1,-1],[-1,-2],[1,-2],[-1,-1],[0,-1],[-2,-3],[4,0],[1,-1],[0,2],[2,-3],[-3,-3],[2,-2],[3,1],[1,-3],[1,1],[-1,2],[3,4],[1,2],[2,-2],[-1,-5],[2,0],[0,-2],[2,0],[-4,-7],[4,2],[-2,-4],[2,-4],[0,-2],[1,0],[2,-3],[-3,5],[0,5],[2,-2],[0,5],[3,-4],[-1,-2],[3,0],[1,-2],[-1,0],[1,-2],[4,-1],[1,2],[7,1],[2,0],[0,-1],[5,0],[3,-1],[-7,-3],[1,-2],[2,-1],[-1,-4],[3,1],[-3,-3],[-2,-8],[5,-1],[-2,-2],[1,0],[0,-1],[3,1],[1,-3],[-3,-1],[0,-4],[1,2],[5,1],[0,-4],[2,0],[-3,-4],[-1,-3],[4,-4],[-2,-1],[3,-1],[0,-4],[2,0],[-2,-4],[3,-1],[3,-8],[4,1],[-1,-4],[3,-4],[-1,-3],[2,0],[0,-1],[6,-1],[-6,-3],[-2,-1],[-2,3],[0,1],[-1,3]],[[9977,7626],[-1,0],[-1,5],[2,1],[1,-3],[1,0],[-2,-3]],[[9454,7595],[-1,2],[-5,1],[-2,-3],[-1,-1],[2,0],[-3,-2],[-1,-8],[5,-11],[5,-7],[3,-1],[4,4],[1,-2],[3,1],[3,4],[3,-3],[4,1],[3,4],[2,0],[4,3],[1,-1],[1,2],[8,5],[0,3],[2,1],[4,-3],[-7,-4],[1,-3],[-1,0],[0,-3],[-2,-1],[2,-5],[4,0],[-8,-14],[-14,-3],[-1,-1],[-2,2],[-2,1],[0,1],[-1,1],[-5,-5],[-1,-12],[2,-11],[10,-15],[20,-13],[21,-12],[7,-1],[2,3],[3,-1],[4,4],[5,0],[1,3],[6,4],[5,3],[7,2],[3,6],[-2,4],[2,5],[5,4],[5,-7],[6,-3],[1,-4],[5,-2],[8,0],[0,-3],[2,0],[4,-5],[1,-1],[2,1],[2,0],[3,-4],[7,-1],[5,3],[-2,-3],[2,-3],[-4,-5],[0,-3],[2,2],[-2,-4],[4,-1],[4,1],[3,-4],[-1,-4],[-3,2],[-5,-5],[-2,-7],[2,-5],[-2,-2],[2,-1],[-2,-3],[2,-3],[-2,-1],[0,-1],[1,-7],[-5,1],[-2,-1],[0,-14],[-6,-1],[-7,4],[-2,-1],[-5,-9],[-1,-7],[-2,-7],[-1,-6],[4,-4],[3,0],[1,-2],[-4,-3],[-7,1],[-1,-7],[-1,-3],[-1,-3],[-2,0],[0,-3],[-3,0],[-9,-6],[0,-2],[-1,2],[-1,0],[2,-4],[-4,-1],[1,-1],[-5,-6],[-3,-1],[1,-1],[-2,-1],[-6,-8],[1,-2],[-3,-1],[2,-1],[-2,-2],[-2,0],[1,-1],[0,-5],[-3,1],[0,-1],[2,-2],[-3,-9],[-2,0],[1,-1],[-2,-6],[1,0],[-1,-2],[1,-9],[-3,-6],[2,-2],[-1,-5],[-2,-2],[0,2],[-2,7],[-3,-7],[1,-1],[3,1],[-2,-4],[-2,0],[2,-1],[-2,-3],[-2,0],[0,-5],[-3,-2],[2,0],[-1,-3],[0,-1],[-1,-1],[-2,-4],[-1,-1],[-2,-4],[-2,2],[0,-3],[-4,1],[3,-2],[2,0],[-2,-5],[-3,1],[0,-2],[-1,1],[-2,-1],[0,3],[-3,2],[0,-3],[1,0],[-1,-3],[2,0],[-6,-3],[-2,1],[-5,-1],[3,-3],[-1,-4],[-1,-3],[-4,0],[-1,-3],[-3,2],[2,-3],[-1,-1],[-10,0],[-1,2],[-1,-2],[-2,-2],[1,-2],[-5,-4],[-3,1],[-3,-1],[-3,-7],[-3,-1],[-5,-8],[-1,1],[-5,-9],[-6,-6],[-7,0],[-4,6],[1,3],[-7,4],[2,2],[-3,-1],[-3,4],[1,6],[-4,4],[-3,1],[-1,3],[-2,-1],[-2,-2],[0,2],[-4,0],[0,6],[2,0],[0,6],[-4,8],[-11,10],[-2,-2],[-8,2],[-8,-3],[-1,-4],[-2,1],[0,2],[-12,6],[-3,-2],[-14,1],[-4,-3],[0,2],[-3,-5],[-6,4],[-4,3],[-7,-3],[-8,14],[-9,6],[-4,7],[-1,7],[3,15],[-11,21],[5,5],[2,6],[4,3],[0,2],[1,0],[1,0],[-3,9],[-6,7],[-5,5],[-2,0],[0,-2],[-2,1],[-7,9],[-2,0],[-1,3],[-8,4],[0,2],[-1,-2],[-9,4],[-6,-3],[0,2],[4,2],[-1,1],[-3,-2],[2,2],[-2,0],[-2,-2],[-1,-3],[1,-2],[-1,-1],[2,-2],[-5,-2],[2,-3],[-3,0],[-5,5],[-3,-3],[-5,-8],[1,-2],[-7,1],[0,-1],[-6,0],[-4,-4],[-1,1],[-5,-1],[-1,-6],[4,-2],[-5,-3],[0,-4],[1,-8],[-2,0],[-1,-4],[-2,-2],[0,-2],[-3,0],[2,-2],[-1,-5],[-1,-1],[2,-1],[-1,-2],[-10,3],[0,4],[-4,3],[-4,-3],[-2,-1],[2,3],[0,3],[-2,4],[1,5],[-3,1],[-2,-2],[0,4],[-4,3],[1,2],[-2,1],[1,3],[3,2],[1,-1],[5,1],[0,3],[-5,0],[0,2],[-7,9],[-6,-3],[1,-2],[-3,-1],[-1,2],[-3,-3],[-1,-1],[-2,1],[2,7],[-2,1],[-5,-1],[-1,-6],[-8,-4],[1,8],[-4,0],[-1,3],[-3,-4],[-4,0],[3,4],[4,1],[6,4],[-3,0],[-2,0],[0,-2],[-4,1],[-2,7],[-3,-1],[-3,2],[1,3],[-4,1],[4,8],[-4,5],[0,6],[4,1],[0,6],[6,5],[7,-1],[4,3],[0,1],[8,6],[4,1],[1,5],[7,3],[11,6],[7,9],[1,1],[0,2],[3,-1],[1,0],[3,9],[5,3],[3,0],[5,7],[7,-2],[7,1],[13,11],[5,9],[9,7],[2,5],[-2,3],[2,1],[1,-3],[1,0],[4,8],[2,-3],[3,2],[7,4],[2,13],[5,4],[2,0],[0,-3],[4,-2],[1,4],[-1,1],[-1,-2],[-1,2],[5,8],[2,-2],[5,6],[7,3],[2,2],[3,4],[2,0],[1,-3],[7,4],[1,6],[4,-2],[-1,7],[2,3],[4,-2],[2,2],[4,-3],[2,1],[-2,3],[2,3],[4,-3],[4,0],[0,2],[1,-3],[6,6],[3,-3],[4,8],[9,3],[6,8],[5,3],[4,-1],[4,1],[1,3],[3,-1],[4,2],[5,9],[2,1],[1,-1],[4,-2],[1,-2],[7,-1],[3,0],[3,5],[3,4],[12,7],[3,-1],[-2,-1],[1,-1],[4,4],[-2,-4],[11,1],[-3,-7],[2,1],[0,-2],[3,2],[6,1],[7,7],[3,0],[-3,-4],[1,-1],[4,3],[3,-1],[2,3],[1,-3],[12,14],[14,5],[0,-2],[-2,-4],[2,0],[6,4],[1,-2],[9,4],[-1,-4],[-5,-7],[-4,-2],[-1,2],[0,-2],[-4,0],[1,-2],[-2,0],[-11,-9],[-3,1],[-3,2],[-4,0],[-2,-6],[-5,-5],[-2,1],[0,-7],[-2,4],[-2,0]],[[9109,7396],[-6,-7],[-4,-1],[4,8],[5,5],[6,3],[-2,-6],[-3,-2]],[[9391,7143],[-2,5],[2,0],[1,3],[3,1],[2,-3],[-2,-1],[-2,-5],[-2,0]],[[9388,7111],[0,2],[-3,-2],[-5,2],[-2,2],[-4,-2],[-1,1],[3,2],[0,2],[-2,0],[1,2],[-4,0],[0,4],[2,2],[-1,2],[2,0],[-2,6],[6,-11],[3,0],[-1,3],[-3,3],[1,2],[3,-1],[2,-4],[2,1],[1,-1],[1,5],[-2,2],[2,3],[2,-1],[2,1],[5,-3],[0,-1],[2,0],[-3,-7],[-2,3],[-3,-3],[-1,-3],[3,-1],[-2,-3],[-2,0],[2,-6],[-2,-1]],[[8783,7076],[-2,-3],[2,-5],[8,-7],[-1,-6],[5,2],[-1,-5],[2,-1],[-3,-2],[-4,3],[-1,-3],[-4,0],[0,-5],[-4,0],[1,-3],[-2,-1],[-1,-5],[-2,-1],[2,-7],[-9,3],[-2,-2],[-2,1],[-3,-6],[-2,2],[-3,-2],[-2,-3],[1,-7],[0,-3],[-2,-2],[1,-2],[-4,-1],[3,-1],[1,-3],[-4,-2],[-2,2],[-3,0],[-2,-8],[-6,-3],[-1,-3],[-1,1],[-3,-4],[-1,-1],[-2,-2],[1,-1],[-3,0],[-2,0],[0,2],[-4,1],[-2,-3],[3,-5],[-2,-1],[-2,6],[-2,0],[1,1],[-2,-1],[-1,2],[-2,-2],[0,-1],[3,0],[-2,-5],[-6,1],[-5,-9],[-4,-10],[2,-3],[-1,-7],[-2,-5],[2,-10],[0,-1],[-2,1],[-4,4],[-4,1],[-2,-5],[-1,0],[-2,-2],[-1,2],[0,6],[-6,12],[-6,5],[-4,-1],[0,-2],[-2,1],[-4,-7],[0,5],[-3,2],[-4,-4],[-3,1],[3,3],[-4,6],[-6,-1],[-1,2],[-4,0],[-2,-1],[-6,-9],[1,-2],[-3,-2],[-3,7],[-3,3],[-5,-1],[1,3],[-2,2],[2,6],[-3,1],[-3,7],[3,7],[2,0],[-3,1],[1,2],[1,3],[3,1],[0,3],[2,0],[-1,3],[2,1],[0,3],[-3,2],[2,1],[-3,0],[1,3],[-4,1],[0,2],[-2,1],[2,4],[3,1],[1,6],[2,-4],[4,3],[-1,-2],[2,-2],[3,0],[-1,2],[4,-1],[1,2],[3,-3],[0,2],[4,0],[3,3],[6,-4],[4,1],[1,5],[-4,1],[-2,2],[1,2],[-4,3],[2,1],[-3,1],[0,3],[2,1],[0,3],[1,-1],[1,2],[2,2],[-3,3],[2,3],[-3,5],[11,10],[5,2],[0,3],[4,2],[3,-1],[2,8],[1,-2],[1,1],[4,6],[2,0],[1,-6],[4,-1],[8,9],[2,2],[1,-4],[1,2],[2,-2],[2,2],[3,0],[1,4],[0,4],[3,1],[2,-2],[4,-1],[-1,-2],[1,-2],[1,2],[1,2],[4,1],[-2,2],[2,3],[5,1],[0,2],[3,-1],[2,3],[2,-2],[2,0],[1,5],[2,0],[0,-5],[3,-2],[5,3],[-1,6],[1,1],[3,-4],[-1,3],[3,1],[1,0],[5,2],[3,-1],[1,-2],[-3,-4],[3,0],[4,-6],[1,2],[1,-4],[4,0],[1,3],[10,-2],[1,2],[3,-4],[0,-2],[2,1],[-3,-4],[2,-3],[4,0],[-5,-3],[-4,1],[1,-5]],[[8733,6903],[-3,6],[2,4],[1,-3],[1,0],[-1,-1],[0,-6]],[[8712,6895],[-3,4],[-3,-2],[-1,4],[2,4],[-1,2],[1,2],[2,-2],[3,-12]],[[8826,8956],[-5,-1],[-5,1],[-10,5],[3,1],[2,-1],[0,1],[4,-1],[8,1],[4,-1],[0,-2],[-2,-2],[1,-1]],[[8894,9081],[4,2],[3,0],[1,2],[1,-2],[5,2],[2,0],[2,1],[0,1],[4,0],[0,1],[0,2],[5,1],[8,-4],[5,1],[3,-1],[2,-5],[2,4],[4,-2],[6,-5],[6,-4],[1,2],[3,0],[0,1],[4,2],[2,1],[3,0],[2,2],[5,-2],[4,-1],[1,-2],[3,-3],[4,-1],[5,-3],[1,0],[-1,-4],[-3,-1],[-4,-2],[0,-3],[-1,0],[-3,-3],[0,-1],[-1,-5],[-4,-2],[-2,-2],[1,0],[0,-1],[-1,-2],[1,-2],[-1,-2],[0,-1],[-1,-1],[0,-4],[-2,0],[-2,0],[2,-3],[1,0],[3,-7],[5,3],[4,0],[2,-1],[-2,-2],[1,-2],[-1,-3],[2,-5],[-1,-3],[4,0],[1,-2],[-1,-2],[0,-6],[-1,0],[1,-1],[-2,-1],[-5,0],[-4,2],[-2,-1],[0,-3],[-2,-2],[0,-2],[-2,-1],[-4,-1],[-4,-1],[0,3],[-4,4],[3,3],[2,4],[-3,3],[-1,2],[4,1],[-8,1],[-5,2],[-3,-1],[-2,1],[0,-12],[2,-1],[0,1],[4,2],[2,-1],[3,1],[-1,-4],[2,-2],[-1,-1],[3,-6],[3,-4],[0,-1],[1,-1],[-1,-1],[4,-1],[6,2],[3,-1],[2,-4],[3,0],[3,0],[1,-4],[3,-1],[2,2],[2,0],[0,2],[7,0],[2,0],[1,1],[1,-1],[0,-1],[3,0],[-2,-6],[2,-1],[0,-3],[2,-1],[3,-3],[5,-2],[1,-1],[5,5],[2,4],[1,2],[9,3],[8,0],[2,-1],[1,-2],[-1,-1],[1,-3],[2,0],[3,0],[2,1],[-1,1],[1,3],[2,-3],[1,0],[1,1],[-4,3],[3,2],[-1,1],[3,0],[0,2],[10,1],[1,0],[1,-4],[3,1],[4,0],[1,1],[4,2],[0,1],[1,-2],[0,-2],[4,1],[-2,-2],[1,-2],[3,0],[3,-3],[1,2],[2,1],[1,-4],[1,0],[-1,-1],[0,-2],[-1,-1],[1,-1],[-1,-2],[2,-2],[-4,-5],[0,-1],[7,4],[3,1],[1,1],[-1,1],[1,-1],[0,2],[8,0],[2,2],[2,1],[4,-1],[5,1],[1,-3],[2,0],[2,-7],[1,-1],[7,1],[2,-2],[-2,-4],[0,-3],[1,-2],[-1,0],[4,-5],[3,-7],[1,1],[1,-3],[2,0],[2,-1],[2,1],[6,5],[2,1],[1,2],[2,-1],[0,1],[2,-1],[2,0],[1,-1],[3,-6],[1,-1],[1,3],[2,1],[4,-1],[2,-5],[1,-1],[-7,-4],[0,-2],[1,-1],[2,-1],[2,-5],[2,0],[1,-3],[3,0],[-1,-5],[-3,-2],[-1,0],[0,-3],[0,-3],[4,-1],[-2,-1],[0,-4],[-3,0],[-2,-2],[-2,0],[0,-1],[-2,1],[0,2],[-1,0],[0,-3],[-4,-2],[9,-6],[-4,-1],[1,-2],[-4,-2],[0,-2],[1,-2],[-4,-2],[-2,1],[-2,-1],[0,1],[-2,-1],[-1,2],[-4,-1],[1,3],[-2,0],[-2,0],[-1,-2],[-1,0],[0,-2],[1,0],[3,-2],[1,-2],[1,-3],[-2,-2],[-1,-2],[2,-1],[0,-2],[1,-1],[1,0],[0,1],[3,0],[1,-2],[2,3],[1,-2],[1,-3],[3,1],[4,-6],[0,-5],[1,-3],[-3,-1],[-1,-3],[-2,-2],[0,-1],[-4,-1],[0,-3],[-1,-1],[-5,-1],[0,-3],[-1,-1],[-5,1],[0,3],[-1,0],[-1,1],[-4,-2],[-1,2],[-4,-1],[-1,-5],[-4,-1],[-1,-3],[0,-1],[-2,0],[-1,0],[0,-1],[-1,0],[-1,-4],[-2,2],[0,-1],[-3,5],[-1,3],[-1,-3],[-2,2],[-3,-2],[-3,4],[-1,0],[-1,0],[-3,1],[-1,-3],[-2,-1],[-1,1],[-2,-5],[0,-2],[4,-6],[-1,-2],[0,-2],[-2,0],[3,-7],[5,-5],[1,-3],[-1,-3],[0,-3],[1,-3],[1,-1],[1,-4],[2,-1],[4,-1],[1,-1],[2,0],[2,0],[3,3],[3,-3],[3,1],[4,-3],[2,0],[1,1],[3,1],[4,0],[4,-1],[3,-2],[0,-7],[6,-3],[7,4],[-1,-8],[5,-3],[4,-4],[11,-2],[2,-4],[-2,-2],[0,-3],[4,-4],[3,-2],[1,-2],[-1,-3],[1,-1],[2,-4],[4,-2],[10,5],[1,-1],[3,-1],[5,3],[4,0],[3,-1],[3,2],[4,1],[4,-1],[3,2],[1,6],[4,1],[4,-1],[0,3],[3,0],[3,-2],[5,-3],[2,1],[0,3],[-2,-1],[0,2],[3,-1],[1,-3],[4,1],[2,1],[1,-2],[8,2],[9,-6],[14,0],[1,-3],[-6,-3],[4,-16],[-2,-8],[-5,-5],[2,-6],[1,-2],[6,-10]],[[9310,8674],[-15,-4],[-7,-5],[-5,-4],[-7,-2],[-14,-6],[-7,-3],[-7,-4],[-3,0],[-3,-3],[0,1],[-13,-6],[-8,-4],[-3,-1],[-3,-2],[-2,-3],[-1,-1],[1,1],[1,3],[-3,0],[2,-2],[-3,1],[-7,-4],[-2,-1],[-3,-2],[-2,-1],[-2,-1],[0,-1],[-1,0],[-1,-1],[-2,0],[-6,-5],[-3,-1],[-9,-3],[-3,-2],[-3,-4],[-1,0],[-12,-11],[-10,-8],[-6,-4],[-6,-3],[-3,-2],[-1,-1],[1,1],[-8,-4],[-2,0],[-11,-3],[-3,-2],[-1,-1],[2,1],[0,1],[-9,-4],[-12,-7],[-7,-7],[-4,-6],[-4,-8],[-4,-9],[-2,-2],[-1,1],[1,-2],[-1,0],[-4,-6],[-4,-3],[1,0],[-4,-5],[-4,-11],[-1,-2],[-3,-6],[-2,-6],[1,6],[3,7],[2,1],[0,2],[0,-1],[-1,0],[0,2],[1,-1],[0,3],[0,1],[-1,3],[0,-3],[-1,-1],[0,2],[0,1],[-2,-4],[2,-1],[0,-1],[-2,2],[-1,-4],[2,-1],[0,-1],[-2,1],[-2,-2],[3,-1],[-1,-1],[-2,1],[-1,-1],[2,-1],[-1,0],[-1,-1],[0,1],[0,1],[-2,-4],[-2,-1],[0,-1],[0,-1],[-3,-3],[-1,2],[-1,-7],[0,-2],[3,7],[2,0],[2,-1],[-2,1],[-4,-13],[-6,-10],[-8,-8],[-6,-4],[-14,-5],[-12,-4],[-9,-3],[-11,-1],[-26,-1],[-10,-2],[-7,-4],[-2,-2],[-1,1],[-13,-6],[-1,-3],[-1,1],[-1,0],[-1,-1],[-3,-2],[-11,1],[-1,0],[-6,0],[-1,-2],[0,1],[-2,-1],[-5,-2],[-3,-3],[0,-1],[-5,0],[-7,-3],[-2,1],[-2,-1],[-5,0],[-2,-2],[1,-3],[-2,0],[0,-1],[0,2],[1,0],[0,1],[-1,0],[1,0],[0,2],[-1,-1],[0,-1],[-1,1],[-1,0],[-1,-1],[1,-2],[-1,1],[-5,0],[-4,-3],[-5,1],[-6,-4],[-3,-2],[-14,-2]],[[8806,8393],[-2,5],[1,5],[2,0],[0,-2],[3,-1],[-3,3],[0,3],[-1,2],[1,6],[-3,4],[-3,-3],[-1,-4],[-4,-1],[-4,2],[0,2],[-5,3],[-4,0],[-5,2],[-3,8],[0,4],[-2,2],[7,-2],[4,1],[-1,0],[1,-1],[0,-1],[2,1],[-1,-2],[2,0],[2,-2],[2,0],[3,1],[0,2],[1,-1],[1,1],[0,1],[1,4],[-1,0],[0,2],[2,2],[0,2],[-1,0],[0,2],[-2,0],[4,4],[0,7],[2,0],[2,1],[-3,2],[-1,-2],[-2,1],[-4,-3],[-1,-4],[-2,0],[-1,1],[0,-1],[-2,0],[1,2],[-2,0],[-2,2],[-1,0],[-2,1],[3,8],[0,1],[-1,2],[-3,0],[-3,3],[-2,-1],[-1,6],[-2,4],[0,1],[-1,4],[-3,2],[6,8],[3,1],[-1,3],[-1,1],[-2,-1],[0,4],[-3,1],[-2,-1],[-3,0],[-3,3],[0,4],[-4,4],[-2,1],[-6,1],[-3,3],[-1,0],[-2,-2],[-5,-1],[-4,-4],[-3,-1],[0,1],[-2,-1],[3,4],[1,7],[3,2],[-2,7],[-1,2],[1,3],[-3,1],[-1,4],[1,2],[2,-2],[4,3],[2,1],[-9,0],[-3,5],[6,8],[2,6],[-1,3],[0,2],[-2,1],[-3,2],[1,2],[-1,2],[-4,-1],[0,1],[-2,1],[-3,0],[-1,-1],[-1,4],[-1,1],[-4,2],[-7,1],[0,3],[-1,-1],[-2,2],[-3,0],[-2,1],[-1,3],[-2,0],[1,2],[-1,3],[2,1],[-1,4],[2,2],[2,2],[8,-2],[4,5],[6,-2],[0,6],[-1,4],[-4,-2],[-2,1],[-1,3],[4,4],[6,4],[-3,3],[-5,2],[-1,1],[-6,3],[-2,-1],[-1,-1],[-1,-3],[-7,1],[-1,-1]],[[8694,8628],[0,3],[1,3],[3,1],[2,3],[0,6],[-6,-1],[-4,2],[-4,3],[0,3],[-2,0],[-1,-1],[-3,1],[-1,1],[4,2],[1,3],[7,2],[1,4],[2,1],[9,1],[4,0],[1,-2],[3,-1],[0,2],[4,1],[2,0],[2,1],[1,6],[-3,0],[-2,1],[-3,2],[-1,3],[-2,3],[0,5],[-5,4],[2,1],[2,4],[-2,1],[-2,0],[-5,1],[0,5],[-4,1],[2,5],[-1,1],[-7,0],[9,8],[6,6],[2,3],[2,0],[0,1],[-1,0],[-3,3],[-2,1],[-3,2],[0,3],[2,2],[1,8],[0,6],[1,0],[1,0],[2,8],[1,3],[-1,-1],[-1,2],[4,4],[8,-1],[3,-1],[6,0],[3,2],[0,-6],[-1,-3],[2,-3],[-2,0],[0,-2],[-2,0],[-2,-1],[3,-1],[1,-3],[4,2],[1,-1],[2,0],[-2,2],[3,1],[-2,9],[3,-2],[3,1],[4,-1],[1,-9],[2,-1],[-1,-1],[4,0],[2,-3],[2,-1],[2,0],[-2,-3],[1,-4],[2,0],[1,1],[-1,2],[5,0],[1,8],[6,0],[0,4],[3,0],[2,3],[4,-4],[5,2],[0,1],[3,5],[-1,2],[-1,2],[1,-1],[0,2],[-1,0],[-1,3],[-2,2],[2,5],[4,1],[4,2],[2,8],[-2,4],[1,1],[3,2],[1,0],[4,2],[-2,2],[2,7],[-1,0],[-1,6],[-2,1],[-2,4],[1,3],[-4,-1],[-2,2],[-2,-1],[0,1],[-8,-6],[-7,4],[4,7],[3,1],[0,-2],[0,-1],[1,0],[4,5],[2,5],[2,-2],[5,3],[1,2],[2,2],[0,2],[5,3],[2,4],[2,1],[3,-1],[2,1],[-5,7],[1,2],[3,1],[-1,3],[-1,2],[1,2],[-2,2],[0,6],[3,6],[-1,0],[3,1],[0,-1],[2,-1],[0,3],[3,1],[4,-1],[-3,-6],[0,-2],[1,1],[0,-2],[3,1],[2,-1],[6,4],[8,4],[2,2],[-3,5],[2,0],[0,1],[0,2],[1,0],[0,2],[-3,2],[-2,0],[0,3],[-4,4],[-3,-5],[3,-8],[-1,-1],[1,-4],[-3,1],[0,2],[-1,0],[-2,3],[-4,-1],[-4,-2],[-2,0],[0,8],[-2,1],[-1,-2],[1,0],[-1,-1],[1,-1],[-1,-3],[-2,-1],[0,5],[-2,0],[1,2],[2,2],[-1,5],[1,1],[1,3],[3,1],[1,0],[0,-2],[-1,-2],[0,-3],[1,0],[0,-2],[-2,-1],[3,-2],[1,2],[0,4],[1,3],[1,1],[2,0],[2,4],[3,1],[4,0],[0,1],[-2,4],[1,1],[-2,6],[-4,1],[0,1],[-1,-2],[-1,-5],[-3,1],[0,3],[1,4],[0,5],[5,5],[2,4],[1,2],[-2,0],[0,2],[2,4],[7,-3],[2,1],[2,0],[2,4],[1,6],[-2,1],[-3,0],[-3,3],[2,2],[1,4],[0,2],[-6,5],[0,5],[2,3],[0,1],[2,2],[0,3],[3,2],[1,0],[2,-1],[6,5],[1,2],[0,5],[1,3],[-1,5],[1,1],[-1,0],[0,2],[-7,4],[-3,-2],[-1,-1],[-2,0],[-8,5],[-1,5],[-3,0],[2,9],[-2,2],[9,4],[0,2],[2,1],[-1,2],[-2,1],[-1,3],[-3,1],[-1,5],[-1,1],[0,2],[4,2],[-2,9],[-2,-1],[-7,3],[3,3],[4,0],[3,0],[0,-1],[2,1],[3,-1],[6,2],[1,-2],[7,0],[3,4],[9,2],[6,-2],[2,0],[3,2],[5,0],[0,2],[3,3],[5,0],[1,-2],[4,0],[3,1],[2,3],[2,1]],[[8833,8823],[5,-3],[1,-2],[3,7],[-2,1],[-1,-1],[-2,-1],[-1,3],[-1,0],[0,-2],[1,-1],[-1,-2],[-1,1],[-1,0]],[[8967,8957],[4,1],[1,1],[1,4],[0,3],[4,0],[1,4],[-2,2],[-3,0],[1,-2],[-2,-1],[-3,0],[-4,0],[2,-3],[-2,-1],[2,-2],[0,-6]],[[8805,8466],[-4,0],[-2,-2],[3,0],[3,1],[0,1]],[[6804,9286],[-2,-3],[-6,-1],[-3,-4],[1,-3],[-6,1],[2,2],[-1,2],[-5,-1],[0,-4],[-6,-1],[-3,2],[-4,8],[-6,3],[-3,-1],[-8,2],[-2,-1],[-1,-2],[-1,-1],[-3,1],[-1,4],[-3,-1],[-4,2],[-2,-2],[-1,0],[-1,-1],[-2,-5],[-5,4],[-5,1],[-13,-1],[-6,2],[-1,-4],[2,-2],[-2,-2],[3,-1],[0,-2],[4,-1],[2,-10],[2,-2],[0,-1],[-2,-2],[0,-3],[3,-2],[-4,0],[-5,-4],[-3,-1],[2,-5],[-3,-4],[-6,-5],[-1,-1],[0,-3],[-1,1],[-4,-2],[-5,-4],[-4,-1],[4,-6],[4,-1],[4,-2],[4,5],[1,-1],[3,2],[3,-2],[0,-1],[0,-1],[1,0],[2,0],[2,-2],[-2,-5],[1,-3],[0,-5],[-2,-5],[-6,-5],[-1,-2],[0,-1],[1,0],[1,-5],[3,-1],[1,-1],[4,1],[4,-3],[1,-6],[3,-4],[4,-6],[-6,-7],[-2,-6],[3,-5],[-1,-4],[-2,-4],[3,-12],[1,-7],[-2,-2],[-3,2],[-1,4],[-3,4],[0,3],[-2,0],[-2,4],[2,6],[0,5],[-5,4],[0,-1],[-3,-2],[-2,0],[1,-5],[2,-2],[-1,-4],[-3,-5],[0,-3],[4,-1],[4,1],[7,-10],[3,-4],[0,-5],[-11,-2],[-9,0],[-1,-4],[0,-4],[5,-7],[2,-1],[-1,-2],[-3,-1],[-1,-6],[2,-2],[-1,-2],[4,-11],[-1,-5],[3,-4],[-3,-6],[4,-11],[-2,-1],[-4,-7],[1,-3],[-1,-7],[-2,-3],[-3,-1],[-3,-3],[-4,-3],[0,-1],[1,-3],[5,-3],[0,-6],[1,-2],[2,0],[3,-3],[0,-1],[2,0],[-1,-1],[4,-5],[0,-7],[2,-8],[1,-1],[4,1],[4,-1],[3,-4],[5,-11],[6,-15],[5,2],[4,0],[4,-3],[5,2],[6,-2],[9,0],[1,1],[1,0],[7,2],[2,0],[2,-1],[-1,-4],[2,-4],[1,-5],[1,-3],[2,-8],[2,-6],[1,-10]],[[6780,8905],[-9,-3],[-2,-6],[-6,-9],[0,-3],[-7,-14],[0,-5],[3,-4],[-2,-9],[-3,-5],[-5,0],[-2,2],[-5,0],[-4,-6],[-2,-5],[2,-3],[-4,-7],[0,-1],[0,-6],[-8,1],[-2,-2],[-3,1],[0,2],[-6,1],[-2,-5],[-5,0],[-2,-2],[-1,0],[-3,-3],[-2,0],[-1,4],[-1,-1],[-2,-2],[0,-4],[2,-3],[0,-3],[-2,-3],[-3,-1],[-2,-2],[0,-3],[-11,-18],[1,-1],[0,-1],[0,-1],[-2,0],[-9,-9],[-5,-3],[-1,2],[-2,0],[-2,1],[-3,2],[-4,10],[2,7],[-4,3],[-2,-1],[-8,5],[-4,0],[-4,4],[-2,6],[2,5],[-2,1],[-4,3],[-3,-2],[-2,1],[-1,6],[-2,2],[-4,1],[-3,-4],[3,-5],[2,-1],[-3,-10],[1,-3],[-2,-3],[0,-8],[2,-1],[1,-3],[-2,-5],[1,-2],[0,-1],[-1,-2],[2,1],[1,3],[0,1],[1,-1],[0,-2],[1,-6],[0,-3],[-5,-4],[1,-6],[4,-6],[-4,-4],[-1,-1],[-5,1],[-4,-1],[-2,-6],[-5,-1],[0,-5],[-3,-1],[-1,0],[-2,1],[-4,-2],[-4,0],[-1,-3],[1,-3],[-3,-4],[0,-5],[-1,-2],[1,-7],[1,-4],[-6,-1],[-6,1],[-4,-2],[0,-3],[-6,-6],[0,-1],[-3,-5],[-2,-6],[1,-5],[-1,-2],[-1,1],[-4,0],[-1,-4],[-1,0],[-1,-3],[-2,-3],[1,-3],[2,-2],[-3,-2],[-1,-4],[-3,-4],[-4,-10],[-3,0],[-1,0],[0,2],[-3,3],[-2,-2],[-1,0],[0,2],[-6,-1],[-5,1],[-1,-1],[-1,1],[0,2],[-3,2],[-3,4],[-2,1],[-1,-1],[-5,-2],[1,0],[0,-6],[-2,1],[-3,-2],[7,-6],[-3,-5]],[[6500,8630],[-2,1],[-3,0],[-4,-2],[-2,2],[-2,-2],[-1,-3],[1,-2],[0,-2],[-13,3],[-2,-3],[-2,0],[-3,7],[-4,-4],[-9,1],[-12,-7],[-1,-4],[-3,-1],[-3,-7],[-1,-4],[-3,0],[-4,-3],[0,-2],[-4,-2],[-6,-4],[2,-6],[-2,-3],[1,-4],[-1,-6],[0,-1],[2,-3],[-3,-6],[1,-8],[-5,-4],[-2,6],[-6,1],[-5,-1],[-1,6],[1,8],[0,4],[0,3],[-1,3],[2,5],[-1,2],[0,5],[-1,2],[3,9],[-1,2],[-7,-6],[-2,1],[-6,-2],[-1,-1],[0,-2],[0,-4],[2,-5],[-1,-3],[-1,-5],[4,-3],[3,-3],[-4,-1],[-2,1],[-7,-2],[-3,-1],[-5,11],[-3,1],[-5,7],[-5,10],[-2,3],[-3,1],[-3,0],[-2,-2],[0,3],[-4,10],[-4,3],[-4,4],[-7,3],[-6,0],[-5,3],[-3,3],[-1,5],[-4,-2],[-4,0]],[[6305,8633],[-1,2],[-1,3],[0,4],[-2,0],[-1,2],[0,5],[-7,1],[0,1],[2,2],[-1,2],[-3,-1],[-2,2],[-3,-3],[-2,-1],[-2,2],[-1,2],[0,3],[2,3],[1,9],[0,8],[1,0],[0,1],[1,10],[-1,11],[-6,8],[-1,3],[-4,4],[-1,1],[-3,1],[-4,4],[-3,-1],[0,2],[0,4],[3,4],[1,-1],[5,0],[3,18],[3,0]],[[6278,8748],[1,2],[1,11],[-3,1],[-2,7],[-5,1],[-13,16],[-1,5],[1,4],[4,2],[0,9],[-2,1],[-2,4],[4,2],[3,0],[3,2],[2,0],[2,-2],[4,0],[5,-1],[1,1],[7,3],[5,4],[4,4],[8,5],[-1,8],[0,9],[1,2],[13,3],[2,3],[1,3],[0,1],[4,6],[6,3],[3,-2],[2,-1],[8,1],[1,2],[-1,7],[1,9],[0,6],[-9,0],[-2,-3],[-3,-1],[-13,-7],[-2,1],[-7,-7],[-1,-2],[-2,-1],[-2,1],[-3,-4],[-13,-1],[-2,-2],[-4,0],[1,9],[1,2],[0,2],[2,4],[4,10],[9,4],[4,12],[1,0],[1,-2],[4,8],[-2,4],[-2,2],[-1,5],[-2,-3],[-4,-1],[-1,2],[-5,2],[-10,-1],[-3,2],[-3,-2],[-1,-2],[0,-5],[-4,1],[-3,2],[-7,-4],[-2,1],[-3,7],[-3,2],[-1,3],[-2,2],[1,16],[3,0],[8,-3],[5,2],[0,2],[3,1],[2,6],[-4,1],[-5,2],[-5,-1],[-3,3],[-5,1],[-1,3],[-1,3],[-3,3],[-2,2],[-3,-3],[-2,0],[-3,-2],[-2,0],[1,3],[-2,3],[-4,2],[-6,-2],[-4,-2],[-1,3],[-4,-3],[-6,4],[-2,1],[1,8],[1,2],[-2,2],[4,2],[3,4],[1,8],[-1,3],[-7,7],[0,3],[-3,2],[-1,4],[-3,1],[-4,0],[-1,6],[3,7],[-1,1],[-3,1],[-1,2],[0,1],[4,3],[0,4],[-1,5],[-6,2],[1,6],[0,1],[-2,2],[0,2],[-1,2],[1,2],[-3,4],[1,2],[0,10],[-5,0],[0,1],[0,5],[-1,0],[0,2],[1,2],[2,-1],[0,-1],[0,1],[-2,2],[-2,5],[0,1],[-1,1],[-1,2],[2,3],[1,3],[-2,3],[-2,1],[-3,2],[0,1],[1,1],[1,0],[0,2],[-2,3],[0,3],[3,-2],[1,4],[-1,3],[-2,0],[1,4],[-3,-2],[-5,-1],[-5,-3],[-7,-2],[-5,7],[2,3],[-1,5],[1,4],[-1,3],[-2,1],[0,2],[0,2],[-1,5],[6,8],[3,9],[4,-3],[0,1],[10,-1],[1,1],[3,0],[3,-1],[8,2],[4,-1],[-1,2],[-1,0],[0,1],[0,1],[0,3],[-3,-1],[-1,2],[2,2],[3,0],[-3,5],[2,8],[0,1],[-3,5],[-4,6],[-5,-1],[-6,1],[5,1],[2,4],[-2,5],[-2,3],[1,1],[0,5],[0,1],[-10,5],[-1,2],[0,2],[2,1],[-3,6],[3,0],[2,2],[5,1],[2,3],[3,1],[-2,1],[-4,-1],[-1,1],[2,2],[-2,2],[1,1],[-1,1],[-1,3],[-2,3],[0,2],[5,2],[4,5],[4,1],[-3,3],[2,5],[-2,3],[-1,0],[-2,4],[2,1],[0,5],[-2,0],[3,2],[-2,7],[0,4],[-4,1],[-2,2],[0,3],[1,0],[0,2],[-3,3],[4,3],[2,2],[5,3],[1,1],[0,-7],[1,0],[3,-4],[4,4],[0,2],[1,-1],[4,1],[5,3],[3,1],[2,3],[-1,1],[1,2],[6,2],[0,2],[5,6],[2,4],[2,1],[3,-1],[3,3],[1,3],[3,1],[3,0],[3,3],[2,0],[7,-1],[0,-2],[2,-2],[-2,-5],[7,-2],[9,11],[2,8],[1,-2]],[[6260,9362],[5,0],[7,1],[4,3]],[[6276,9366],[2,0],[11,-2],[3,1],[3,-1],[0,3],[2,0]],[[6297,9367],[2,0],[2,1],[4,-1],[1,-7],[6,1],[4,2],[4,0],[-1,3],[8,4],[2,-2],[7,-1],[1,5],[0,6],[1,1],[2,0],[1,1],[2,9],[4,-4],[10,-7],[4,0],[12,7],[2,0],[1,1],[0,4],[2,3],[0,5],[-1,5],[1,2],[0,3],[-8,10],[0,3],[4,8],[-5,6],[-7,3],[-5,4],[-2,-3],[-2,-6],[1,-1],[-1,-2],[0,-5],[2,-4],[-2,-2],[-3,-1],[-4,3],[-3,0],[-2,2],[-6,0],[-1,1],[1,4],[3,2],[4,6],[-2,3],[-10,2],[2,1],[2,-1],[2,2],[1,-1],[3,-2],[4,0],[-3,11],[-3,2],[-2,2],[1,1],[1,1],[2,-3],[5,-4],[3,1],[2,-2],[5,-1],[4,2],[0,1],[1,2],[2,6],[3,1],[1,-1],[2,-1],[3,1],[1,6],[-3,4],[-1,4],[-12,9],[-2,-3],[-3,-1],[-4,0],[-1,-7],[0,-1],[0,-3],[-1,-3],[-7,-1],[-2,0],[-3,-5],[-2,0],[-2,-7],[-3,-3],[-2,3],[1,2],[3,4],[-4,-3],[-3,0],[-4,1],[-8,0],[-2,4],[-5,5],[-1,3],[0,2],[7,22],[6,14],[7,9],[9,2],[7,4],[7,12],[1,4],[6,0],[1,1],[4,0],[1,-1],[1,1],[3,-3],[2,0],[1,1],[-1,5],[3,2],[4,4],[0,3],[1,0],[-6,5],[-2,4],[0,2],[2,2],[1,-1],[4,-1],[4,0],[2,0],[3,3],[2,1],[2,-2],[2,-1],[5,-3],[5,2],[1,1],[4,-1],[3,2],[2,1],[-2,4],[2,4],[3,2],[5,0],[4,2],[4,2],[3,4],[4,1],[1,1],[-1,3],[4,2],[5,6],[-1,1],[1,3],[3,6],[0,2],[4,2],[1,3],[2,1],[0,2],[2,2],[0,4],[3,2],[1,-1],[1,0],[2,-2],[3,0],[2,-2],[3,1],[5,-3],[2,-4],[2,-8],[2,1],[6,2],[5,-1],[6,-2],[7,-1],[6,-4],[10,-3],[3,0],[7,-3],[3,2],[9,0],[6,-3],[2,1],[3,0],[2,1],[4,-1],[1,1]],[[6555,9593],[4,0],[1,2],[8,2],[8,5],[0,2],[5,0],[4,2],[4,7],[2,1],[2,-1],[6,2],[0,1],[5,1],[1,3],[3,1],[1,2],[9,5],[-1,2],[5,0],[2,1],[3,0],[1,2],[8,-8],[1,-4],[1,0],[1,-2],[1,0],[2,-2],[-1,-2],[3,3],[2,-1],[1,1],[0,2],[2,1],[1,-3],[3,-2],[5,-1],[1,0],[3,3],[4,3],[3,-1],[2,0],[4,-2],[3,-4],[0,-4]],[[6702,9511],[4,2],[1,2],[2,-2],[5,-1],[0,-3],[1,-1],[3,-1],[5,-8],[2,0]],[[6263,8995],[-8,-6],[-8,0],[1,-9],[3,-4],[6,3],[3,-1],[5,-2],[1,-3],[3,-1],[1,3],[-2,2],[0,2],[-4,6],[-1,3],[2,-1],[2,2],[0,3],[-1,0],[-3,3]],[[6280,8954],[1,0],[0,-4],[2,-1],[1,-4],[-2,-5],[4,1],[-1,7],[-1,3],[-2,6],[-2,-3]],[[6185,9341],[-5,2],[1,5],[7,-1],[-3,-6]],[[6748,9271],[0,-1],[1,-1],[-2,-1],[0,-1],[-6,-4],[3,6],[0,3],[4,-1]],[[6772,9269],[0,-3],[4,-3],[-3,-3],[-4,-1],[-1,0],[-2,2],[-1,4],[3,2],[2,4],[2,-2]],[[5023,7821],[8,-10],[3,0],[1,-4],[1,-1],[6,1],[-1,-2],[1,-1],[5,0],[2,-1],[3,0],[-1,5],[9,-1],[1,-2],[10,-4],[0,4],[2,3],[5,4],[3,0],[3,5],[4,3],[3,-2],[1,-4],[3,-6],[6,-5],[0,3],[5,2],[0,5],[3,3],[14,3],[2,-2],[4,1],[5,0],[8,3],[4,0],[2,2],[6,3],[0,2],[6,5],[-1,3],[1,5],[0,2],[-4,5],[2,9],[11,11],[9,4],[10,5],[3,1],[5,4],[6,2],[5,-1],[6,1],[-2,3],[1,2],[7,6],[2,5],[5,2],[7,-2],[4,1],[3,0],[7,4],[-1,3],[1,2],[-2,1],[0,3],[9,10],[0,3],[5,3],[4,0],[1,2],[12,1],[3,3],[6,1],[2,1],[1,4],[2,2],[4,0],[7,10],[4,0],[3,-1],[1,0],[4,-1],[5,0],[1,-1],[3,-6],[2,0],[0,-3],[3,-3],[5,-2],[5,-1],[3,-3],[-2,-3],[4,-7],[7,0],[5,4],[2,-1],[-1,-4],[-1,0],[-2,-3],[-2,-6],[5,0],[0,-3],[5,-1],[1,1],[3,-1],[2,-1],[1,-2],[1,0],[2,-1],[1,-3],[3,1],[1,-2],[2,-1],[2,-1],[-1,-1],[-2,0],[-2,0],[-1,-3],[-3,1],[-1,-2],[1,-1],[5,0],[-1,-3],[-4,-2],[-1,-1],[0,-2],[2,-1],[0,-6],[-2,-2],[-3,1],[-2,-3],[-2,1],[-2,-1],[17,-6],[7,-4],[3,1],[4,0],[4,-2],[5,1],[-1,-11],[1,-4],[2,-2],[3,-4],[6,-5],[6,-1],[1,-2],[3,-3],[2,1],[10,-4],[2,-2],[8,0],[1,-2],[2,6],[2,2],[6,9],[1,4],[0,4],[4,5],[4,0],[3,3],[5,2],[1,2],[1,0],[1,0],[-2,-4],[3,-2],[10,10],[1,2],[3,2],[4,0],[4,2],[2,-3],[5,-23],[-3,-3],[-2,-4],[-4,-2],[4,-6],[13,-4],[3,1],[6,4],[3,3]],[[5703,7725],[-2,0],[-3,-3],[-6,-2],[-4,-5],[1,-8],[-1,-5],[-2,-12],[3,-13],[1,-8],[1,-9],[-2,-11],[1,-6],[-4,-8],[-4,-18],[-6,-15],[-2,-20],[-2,-1],[-1,-4],[6,1],[11,6],[13,1],[6,1],[4,-1],[3,-2],[0,-4],[7,-3],[1,-6],[1,-1],[3,0],[0,-4],[-3,-4],[-2,-5],[-5,-4],[-2,-3],[-1,-5],[0,-11],[-2,-6],[1,-5],[2,-1],[-3,-9],[1,-3],[3,-4],[6,0],[8,-3],[4,-2],[6,0],[4,5],[0,4],[6,5],[7,9],[3,2],[1,3],[11,0],[4,0],[2,1],[1,0],[-1,-6],[1,-6],[2,-6],[2,-7],[-3,-2],[-5,0],[1,-3],[5,-7],[2,-1],[5,-7],[4,-7],[-4,-6],[-3,-6],[-2,-14],[4,-3],[-1,-5],[-4,-3],[-1,0],[0,-3],[-1,-3],[1,0],[0,-2],[-1,-1],[-4,-4],[-2,-6],[-2,-5],[-2,0],[-3,-5],[-5,-6],[-1,-1],[2,-4],[6,-5],[5,-7],[8,-6],[2,-5],[4,-3],[0,-2],[5,-6],[5,-9],[9,-8],[9,-11],[4,-3],[2,0],[1,1],[4,1],[6,-8],[2,-4],[6,-11],[8,-11],[4,-3],[1,-2],[6,-4],[5,-7],[4,-3],[5,-5]],[[4860,7206],[-16,15],[-2,2],[1,3],[-6,7],[-2,1],[-2,4],[-3,0],[-2,2],[-3,5],[2,7],[0,2],[-2,4],[-1,6],[-2,2],[0,2],[-2,0],[-1,2],[1,3],[3,5],[1,3],[1,0],[1,2],[0,3],[2,4],[1,2],[-1,2],[0,1],[-2,4],[-1,2],[2,4],[0,5],[5,6],[-1,2],[-2,2],[-3,3],[-2,0],[-3,2],[-1,2],[-2,2],[-2,0],[-3,2],[-3,-1],[-1,6],[-8,-3],[0,3],[-7,2],[-1,1],[2,1],[0,2],[-2,1],[-2,0],[0,2],[-2,1],[1,10],[0,3],[-1,1],[0,2],[-4,3],[-2,-2],[-2,0],[-4,0],[-2,2],[-2,-1],[-1,1],[-7,8],[0,2],[-1,1],[-2,5],[-1,2],[-2,1],[-1,4],[-2,2],[-3,2],[-3,0],[-4,5],[-3,0],[-2,2],[-1,6],[-1,1],[-2,3],[-1,8],[-5,4],[-3,5],[1,5],[-2,3],[1,3],[-1,4],[-2,1],[0,2],[-2,-1],[-3,2],[3,2],[4,0],[18,0],[6,-2],[11,-1],[6,-3],[6,-3],[10,-4],[5,3],[7,0],[18,-6],[4,2],[3,3],[11,4],[2,3],[2,1],[10,2],[8,1],[13,-4],[6,1],[4,-1],[21,-5],[8,7],[2,0],[14,0],[8,-4],[4,0],[22,8],[1,5],[2,3],[1,6],[1,2],[0,3],[2,6],[0,2],[2,2],[1,2],[3,5],[-3,2],[1,2],[-1,3],[1,7],[2,2],[0,5],[1,4],[3,2],[0,4],[-2,2],[-1,6],[-2,1],[-1,1],[2,2],[-1,2],[1,6],[1,0],[1,6],[2,-1],[3,4],[2,1],[3,-2],[5,2],[1,5],[1,0],[1,-1],[3,3],[-1,3],[3,6],[2,3],[4,0],[3,4],[1,3],[2,2],[-1,3],[1,6],[-2,2],[1,3],[2,3],[0,1],[-1,3],[1,4],[-4,4],[2,1],[-1,2],[3,4],[3,1],[1,3],[2,2],[1,9],[-2,5],[4,5],[-2,5],[5,9],[0,4],[0,4],[3,2],[1,1],[0,2],[-5,1],[0,1],[0,4],[-3,6],[1,5],[-4,4],[-3,2],[2,5],[-1,1],[-4,0],[-2,1],[-1,2],[-3,-1],[0,1],[-2,11],[-2,4],[-3,4],[-1,4],[-4,1],[0,1],[1,1],[0,3],[-3,-1],[-2,2],[-4,-3],[-1,0],[0,3],[-2,-1],[0,2],[-3,0],[-2,2],[-2,-1],[-1,1],[-1,-1],[-1,-3],[-2,0],[1,3],[-2,1],[0,1],[-2,0],[0,2],[-2,-1],[0,1],[-2,2],[1,1],[0,2],[-2,0],[1,1],[-2,5],[-2,2],[3,4],[0,4],[-3,7],[1,1],[1,4],[-6,5],[1,4],[3,3],[0,5],[4,10],[-1,3],[7,6],[3,0],[6,3],[1,0],[1,-2],[3,0],[2,1],[0,2],[3,4],[2,6],[3,-1],[3,1],[1,0],[4,0],[3,-1],[5,-1],[6,3],[4,-1],[6,2],[2,3],[1,3]],[[5789,5798],[6,-4],[2,-4],[2,-1],[2,0],[2,-3],[-1,0],[1,-1],[-1,-1],[0,-3],[6,-2],[1,-3],[-2,-2],[-1,0],[-3,-3],[2,-4],[3,-13],[3,-7],[0,-6],[2,-4],[-3,-2],[-2,0],[-3,-2],[1,-2],[0,-2],[-3,-1],[-1,-10],[-2,-2],[-2,-7],[-4,-11],[-2,-2],[-9,-4],[-7,-5],[-2,1],[-2,2],[-3,0],[-2,3],[-4,3],[-10,3],[0,4],[-1,4],[-3,3],[-6,1],[-10,8],[-1,5],[-3,-3],[-11,-6],[-2,-7],[-1,-1],[-3,0],[-8,-11],[-1,-7],[-3,-5],[3,-1],[1,-3],[3,-4],[3,-12],[5,-4],[8,-3],[-2,-7],[-6,-8],[-2,-10],[-5,-7],[0,-3],[-2,-11],[0,-4],[3,0],[1,-1],[0,-2],[0,-1],[-5,-4],[0,-2],[3,-3],[-4,-1],[-5,-8],[-3,-2],[-1,-2],[-5,-4],[-7,-8],[-7,-3],[-1,0],[-4,-1],[-1,-2],[-2,-1],[-9,-2],[-2,-3],[-8,4],[0,-2],[-1,-2],[1,-7],[-2,-8],[-1,0],[-6,-10],[-6,-2],[-2,-6],[-3,-8],[-5,-3],[-4,-7],[-7,-3],[-1,6],[-2,1],[-10,3],[-2,3],[-1,0],[-3,0],[-7,2],[-2,0],[-4,-4],[-1,-2],[1,-3],[0,-1],[1,-6],[0,-5],[0,-3],[4,-2],[3,1],[1,1],[3,1],[5,-1],[5,-5],[11,-1],[5,-3],[3,2],[1,6],[3,3],[0,2],[3,6],[2,2],[2,3],[1,0],[7,0],[1,0],[2,-4],[1,-1],[2,6],[4,0],[9,-2],[2,-2],[1,-4],[5,-3],[0,-1],[1,-9],[1,-2],[0,-3],[2,-1],[1,-2],[2,-4],[1,-9],[10,-10],[8,-12],[-1,-2],[0,-5],[5,-3],[4,-13],[1,-2],[-1,-7],[1,-2],[0,-6],[4,-8],[2,-7],[3,-1],[0,-2],[-4,-5],[2,-5],[13,8],[6,0],[4,-8],[4,-1],[3,-7]],[[5740,5370],[-3,-1],[-4,-6],[-5,-14],[-1,-2],[-8,-20],[-4,0],[-4,-9],[-4,-12],[-3,-13],[-3,-21],[-5,1],[-2,4],[-7,5],[-3,2],[-3,4],[-4,1],[-4,-1],[-3,2],[-3,-1],[-4,-2],[-3,-3],[-5,-10],[-1,-4],[0,-1],[-1,-6],[2,-6],[1,0],[-1,4],[1,-3],[2,1],[-3,-3],[1,-2],[1,2],[0,-2],[1,0],[1,2],[1,4],[-1,4],[1,-4],[0,-8],[-2,-1],[1,1],[-1,0],[0,2],[-3,0],[0,-1],[1,-4],[2,0],[0,-3],[1,-1],[1,0],[1,-3],[-3,1],[-2,-3],[-1,-5],[1,-4],[5,-1],[1,-1],[1,-4],[-1,0],[-2,-4],[-2,-1],[-5,-4],[0,-3],[-8,-4],[-8,1],[0,1],[-5,-3],[-4,-4],[-8,-5],[-8,-2],[-7,-6],[-12,-5],[-8,-2],[0,-2],[-1,-1],[1,1],[-1,1],[-1,0],[0,-1],[-1,0],[-1,-2],[1,0],[0,-1],[-1,-1],[-1,2],[2,2],[-1,1],[-7,13],[-5,7],[-5,6],[-5,2],[-5,2],[-8,6],[-1,0],[-3,-1],[-1,-2],[-5,-3],[-5,2],[-4,3],[-6,2],[-2,1],[-7,7],[-5,4],[-3,0],[-3,-5],[-3,-2],[-2,3],[-2,4],[-2,0],[-3,7],[-4,3],[-7,14],[-13,16],[-20,20],[-7,2],[-3,-1],[3,-3],[-3,2],[0,1],[-3,1],[-3,-2],[0,-1],[-13,-4],[-10,3],[-1,0],[-2,1],[-3,0],[-4,2],[-1,-1],[-1,-2],[-1,-1],[-1,1],[-2,5],[-3,5],[-2,1],[-2,3],[-11,24],[-6,17],[-7,11],[-3,3],[-1,0],[-7,2],[0,-1],[-2,1],[-1,-1],[-5,9],[-5,12],[-2,11],[-6,13],[-3,2],[-5,2],[-6,8],[-3,3],[-2,9],[-5,12],[0,5],[-4,5],[-1,2],[0,-3],[-1,4],[-2,2],[-2,8],[-2,2],[-2,8],[-10,22],[0,5],[-3,3],[-10,0],[1,1],[1,-1],[3,1],[-1,2],[1,2],[3,1],[2,-1],[3,1],[1,2],[-2,-2],[1,-1],[-2,-2],[1,-1],[3,2],[-1,-2],[0,-1],[2,2],[-1,-2],[2,-1],[1,1],[-1,-1],[1,-1],[-2,1],[-1,-1],[1,-1],[3,1],[-1,-1],[1,-1],[-1,-1],[0,-1],[1,1],[0,-4],[3,-4],[3,0],[1,0],[-1,-1],[1,1],[2,-1],[-2,0],[-1,0],[-2,-4],[5,-18],[1,-2],[6,-1],[4,1],[1,2],[1,0],[1,0],[3,1],[1,2],[0,3],[2,1],[0,1],[3,3],[1,-2],[-1,2],[2,1],[1,2],[-2,3],[2,3],[6,1],[1,2],[2,0],[2,3],[0,2],[-1,2],[-6,3],[-2,-1],[0,-2],[-5,-7],[-13,-4],[-6,4],[0,2],[0,1],[-1,0],[1,0],[-1,0],[-2,4],[6,2],[3,3],[-2,2],[1,2],[2,5],[3,9],[-1,11],[-2,3],[-1,2],[-3,2],[-5,-4],[-2,1],[-1,-1],[-1,1],[-3,-1],[-1,2],[-4,12],[-5,5],[-4,3],[-3,1],[-2,-1],[-9,6],[-5,0],[-6,-3],[-1,-3],[-1,0],[-2,2],[-10,5],[-5,6],[1,2],[-1,5],[-2,7],[-2,1],[-7,18],[-5,9],[-3,10],[0,6],[-2,5],[4,3],[2,4],[-1,-2],[1,-1],[2,-1],[2,1],[4,7],[1,3],[4,0],[2,1],[3,2],[7,7],[3,1],[4,6],[2,1],[0,2]],[[5250,5668],[4,4],[1,2],[-1,8],[-3,6],[-1,8],[0,10],[4,21],[3,5],[3,1]],[[5260,5733],[15,4],[9,4],[2,-1],[5,-7],[4,-3],[4,1],[6,2],[0,-1],[10,-2],[9,0],[2,-1],[12,-4],[6,-6],[9,-7],[8,-4],[9,-2],[15,-1],[6,-2],[26,-3],[2,0],[6,4],[3,1],[5,-1],[8,1],[15,-7],[1,1],[-1,1],[1,1],[-2,3],[7,27],[3,-1],[5,4],[6,10],[4,-1],[2,1],[12,6],[3,-1],[5,1],[6,-1],[5,1],[8,-2],[4,-3],[4,2],[4,-1],[6,4],[3,6],[2,6],[-1,7],[12,12],[1,0],[4,-7],[3,-6],[8,-2],[3,2],[3,-9],[2,1],[2,0],[1,2],[1,4],[4,-4],[3,1],[2,-16],[1,-4],[8,-4],[14,-9],[-3,8],[-5,10],[2,2],[0,3],[5,0],[1,3],[4,1],[2,5],[-1,2],[3,1],[0,4],[1,1],[5,0],[1,5],[3,3],[1,1],[4,0],[5,7],[0,5],[-1,2],[-5,4],[-2,3],[-3,3],[-7,14],[6,4],[10,2],[4,-2],[3,1],[5,5],[3,0],[3,2],[3,-5],[0,-4],[3,-9],[0,-8],[-2,-3],[-1,-4],[-4,-6],[-3,0],[0,-2],[-1,-1],[-3,-2],[-2,-3],[-2,0],[0,-1],[2,-1],[1,-8],[4,-3],[-1,-1],[1,-1],[0,-4],[2,-2],[1,-5],[11,3],[-1,3],[1,5],[6,6],[3,6],[5,4],[3,1],[1,1],[4,2],[2,0],[0,4],[2,2],[1,-1],[1,2],[2,0],[3,5],[1,4],[2,3],[14,13],[0,-12],[0,-2],[3,-3],[4,-6],[5,-6],[3,-7],[2,-2],[3,-7],[9,-14],[5,0],[2,6],[2,0],[4,7],[7,2],[1,2],[3,2],[3,3],[6,3],[2,4],[4,5],[3,4]],[[8304,7977],[-1,-5],[-4,-5],[1,-2],[-3,-3],[-2,-6],[-2,-1],[-2,-6],[0,-1],[-3,-4],[-1,-2],[1,-3],[-1,-2],[-1,-1],[1,3],[-1,1],[1,0],[-1,2],[-2,-2],[2,-1],[-2,1],[-4,-6],[-1,-3],[-3,-4],[-2,-2],[-3,-7],[-2,-7],[0,-4],[0,4],[-1,0],[-1,-2],[1,-1],[-2,0],[-6,-8],[-3,-10],[-3,-12],[0,-1],[1,-2],[1,1],[1,-2],[-3,-2],[1,1],[-2,2],[-1,-1],[1,-1],[-4,-2],[-3,-8],[-4,-4],[-1,-2],[-3,-2],[-2,-4],[-4,-5],[-1,-8],[-2,-2],[-4,-1],[-1,-2],[-1,-4],[-2,-3],[-3,-3],[-2,-2],[-3,-2],[-3,-5],[-4,-1],[-3,-4],[-1,-3],[-3,-2],[-1,-4],[-2,-2],[0,-4],[-3,-11],[-1,0],[1,0],[-4,-4],[-12,-4],[-2,-2],[-1,0],[0,-1],[-1,0],[-5,-5],[-4,-2],[-8,-13],[-10,-22],[-5,-17],[-1,-6],[1,-1],[-1,-2],[-1,-1],[-2,2],[-1,-1],[-1,-2],[-1,-1],[0,-4],[-6,-5],[-2,-1],[-4,-3],[-7,0],[-2,0],[-2,0],[-1,-1],[1,-1],[-2,0],[0,-1],[0,1],[-1,-2],[-2,-2],[-2,0],[-2,-3],[-4,-3],[-2,-2],[-4,-11],[-1,-3],[-2,-6],[-1,-3],[-4,-14],[3,-3],[-3,2],[0,-2],[0,2],[-2,1],[-1,-1],[0,-1],[3,-2],[2,0],[-2,0],[-3,2],[-1,-1],[1,-2],[-1,1],[-1,-1],[-3,-14],[-4,-18],[-2,-2],[-2,-3],[-3,-3],[-20,-21],[-1,-2],[1,-2],[0,-2],[0,2],[0,1],[-1,-1],[0,1],[-1,1],[-2,-1],[3,-2],[-3,2],[-3,-4],[-6,-9],[-12,-20],[-13,-24],[-6,-11],[-3,-4],[-2,-5],[-5,-10]],[[7991,7481],[-3,1],[-15,8],[-2,2],[-1,-1],[-3,2],[-2,1],[-6,0],[0,1],[-5,4],[-1,2],[1,4],[-2,2],[0,4],[-9,9],[-5,7],[-4,2],[-5,1],[-5,-1],[-17,0],[-2,-3],[-3,-3],[-1,-6],[2,-2],[0,-5],[-1,0],[-3,-5],[-6,-10],[-5,1],[-4,-4],[-2,-2],[-2,0],[0,-2],[0,-2],[-3,-7],[-1,-2],[-4,-1],[-2,1],[-1,3],[-3,4],[-1,0],[-1,3],[-4,1],[-3,5],[-4,4],[0,1],[-1,4],[-2,2],[-1,7],[-1,2],[-1,1],[-1,2],[-2,3],[-1,1],[0,1],[-3,5],[-1,1],[-8,0],[-4,-4],[-9,-10],[0,-4],[-2,-7],[-3,-9],[-19,3],[-9,5],[2,21],[1,2],[-5,27],[-5,3],[-10,8],[-2,-2],[-5,-9],[-3,-11],[-5,-3],[-2,2],[-1,-1],[0,2],[-3,2],[0,2],[0,3],[-2,2],[-1,0],[0,2],[-2,3],[-2,2],[-9,16],[-9,8],[-2,-1]],[[7720,7579],[0,2],[-1,1],[-2,4],[-3,4],[-2,0],[-6,5],[-1,3],[-1,4],[-1,4],[-2,1],[2,2],[-1,8],[-3,4],[1,4],[2,0],[1,3],[-1,4],[-1,2],[1,2],[0,2],[2,2],[4,2],[4,0],[6,5],[2,1],[4,-1],[5,5],[1,4],[4,3],[1,11],[1,2],[0,7],[4,3],[2,-6],[8,3],[2,0],[1,-2],[2,0],[2,1],[1,1],[4,3],[9,-2],[2,1],[7,4],[8,10],[2,0],[1,1],[1,-1],[0,2],[1,1],[0,-1],[1,0],[0,1],[1,1],[1,1],[2,0],[0,-4],[2,-1],[2,1],[-7,20],[9,15],[1,1],[1,-1],[3,2],[0,2],[3,1],[2,-2],[3,4],[1,0],[-1,6],[2,1],[0,2],[2,2],[1,3],[-1,0],[1,1],[-2,7],[1,1],[0,4],[-1,0],[4,5],[1,5],[2,2],[-1,6],[5,21],[2,5],[7,-8],[8,-5],[4,1],[3,-2],[4,3],[4,1],[3,3],[3,-4],[5,1],[11,5],[17,11],[2,2],[0,6],[1,2],[-4,6],[-4,4],[0,1],[3,1],[-1,2],[1,-1],[1,1],[0,1],[0,2],[1,1],[2,-1],[2,3],[1,-3],[2,2],[0,-3],[1,0],[0,2],[2,-1],[0,2],[-2,1],[1,1],[2,1],[0,2],[3,-2],[1,1],[1,-1],[0,3],[2,1],[-1,5],[1,0],[1,-2],[1,0],[0,1],[1,2],[-1,3],[1,3],[2,0],[0,1],[2,0],[0,2],[5,4],[1,3],[2,2],[1,0],[2,-1],[1,4],[3,-1],[4,4],[0,-2],[2,1],[1,-1],[0,2],[0,1],[1,0],[0,2],[0,2],[-2,6],[-5,6],[-2,1],[-3,7],[-4,5],[-5,3],[-2,2],[-4,8],[-3,4],[1,0],[2,0],[-1,1],[2,2],[0,3],[1,2],[2,1],[4,1],[7,3],[6,0],[0,3],[2,0],[1,1],[1,-1],[1,2],[1,0],[0,-1],[1,2],[1,1],[2,-2],[0,3],[-1,2],[-3,1],[1,3],[2,3],[0,3],[-3,5],[-3,2],[-4,-2],[-1,5],[-1,1],[2,10],[2,3],[1,5],[-1,1],[1,4],[-2,1],[1,1],[-2,3],[0,2],[1,1],[0,3],[-2,2],[0,2],[2,3],[0,1],[0,2],[0,3],[0,2],[0,1],[0,2],[1,3],[-1,4],[-2,1],[-2,0],[-4,-1],[-2,-2],[-2,-3],[-6,2],[0,1],[-4,-1],[0,3],[-7,3],[-5,-1],[-3,3],[-1,3],[1,4],[0,4],[2,3],[0,4],[1,2],[-4,4],[-1,3],[2,3],[2,1],[0,-1],[1,1],[-1,1],[2,0],[-1,1],[7,3],[12,2],[1,-1],[2,0],[1,-7],[1,-2],[4,-3],[1,3],[3,2],[2,4],[2,-1],[5,5],[8,3],[5,4],[6,0],[-1,4],[2,7],[-1,0],[-2,5],[1,4],[2,1],[1,5],[1,1],[-1,2],[2,3],[0,3],[1,4],[5,2],[1,6],[2,2],[0,2],[2,1],[1,1],[-1,2],[3,1],[-1,2],[14,0],[1,2],[9,-2],[-2,-6],[2,-4],[2,-2],[3,-5],[3,-3],[6,-3],[2,-3],[2,0],[7,-3],[3,-3],[7,-4],[4,0],[1,1],[4,-1],[6,-3],[1,3],[3,2],[2,1],[15,-2],[1,-2],[-1,-1],[1,-3],[2,-1],[2,-3],[-1,-3],[0,-3],[1,-1],[0,-4],[4,-1],[3,-1],[13,14],[18,8],[0,-1],[2,0],[3,-3],[8,-1],[10,3],[0,2],[2,2],[1,2]],[[8151,8107],[5,-3],[4,2],[3,-5],[8,5],[4,1],[0,-5],[1,-6],[3,-6],[1,-2],[2,-1],[4,2],[5,1],[4,-2],[3,-5],[7,-4],[0,-2],[-3,-4],[-2,-4],[-3,-1],[-3,-7],[1,-7],[-2,-1],[0,-1],[2,-4],[2,-1],[2,-4],[6,-4],[3,1],[1,-2],[4,-3],[2,-2],[1,1],[5,-3],[7,-2],[3,0],[9,-1],[1,0],[7,1],[1,-2],[2,-1],[3,0],[2,-3],[-1,-2],[6,-4],[2,-3],[3,-2],[6,-1],[-3,-4],[1,-1],[-2,-3],[1,-4],[0,-6],[1,-1],[3,-2],[1,-2],[4,-1],[2,-1],[5,-2],[2,-2],[2,0],[2,-1],[6,-1],[7,-3]],[[6847,6745],[-3,0],[1,-1],[-3,-2],[1,-5],[-2,0],[-1,-2],[-1,-1],[0,-3],[0,-1],[-2,3],[-1,1],[0,-2],[0,-2],[-3,-1],[1,-2],[-2,-2],[-2,2],[-1,0],[1,-3],[-2,2],[-1,0],[-1,-3],[0,-1],[-2,0],[0,-3],[-2,2],[-3,-4],[1,-2],[-3,2],[-1,-1],[1,-5],[-1,-1],[-1,0],[-2,5],[-1,0],[0,-2],[0,-3],[-2,3],[-2,-1],[-2,-1],[1,-2],[-2,0],[-2,0],[0,-3],[-2,1],[-2,-1],[0,-3],[-4,-1],[-1,-1],[1,-3],[-2,1],[-1,-1],[2,-3],[-4,2],[-3,4],[-2,2],[-2,3],[-2,0],[0,-1],[-10,2],[-3,2],[-4,-3],[-4,-1],[-3,2],[-1,-2],[-1,-4],[-4,-4],[-7,-3],[-1,-4],[1,-5],[0,-2],[1,-2],[-2,-5],[0,-2],[-2,-3],[0,-3],[-1,0],[-1,4],[-27,39],[-23,-18],[-6,-6],[-9,0],[-13,7],[-17,1],[-6,2],[-6,1],[-5,0],[-3,1],[-7,1],[-3,3],[-1,3],[-1,0],[-3,0],[-4,6],[-7,0],[-2,1],[-4,-1],[-18,-3],[0,-3],[-1,-3],[-1,-9],[0,-3],[2,-3],[0,-1],[-6,-4],[-6,-6],[-3,1],[-6,-9],[-1,-2],[-3,1],[-3,-3],[-2,0],[-4,-2],[-9,-2],[-2,3],[-4,1],[-4,0],[-5,3],[-10,0],[0,1],[-2,3],[-1,5],[1,2],[1,3],[-2,5],[-3,4],[-5,0],[-6,4],[-5,-1],[-2,0],[-2,-11],[1,-17],[-6,-4],[-1,0],[-9,-3],[-14,7],[-21,5],[-13,7],[-5,-7],[-11,7],[-9,0],[-7,-3],[-3,1],[-4,-2],[-1,-2],[-2,1],[-3,-2],[-1,-9],[1,-4],[-4,-4],[-7,-7],[-2,-1],[-1,1],[-1,1],[-5,0],[-9,-3],[-5,0],[-3,-1],[-10,-1],[-4,-1],[-2,1],[-6,-1],[-8,1],[-4,1],[-3,0],[-1,-1],[-3,0],[-4,2],[-6,2],[-8,2],[-4,0],[-1,1],[-6,0],[-3,-1],[-4,-1],[-3,2],[-8,2],[-1,-2],[-7,0],[-2,3],[-5,1],[-5,-3],[-8,2],[-6,3],[-16,5],[-10,1],[-4,2],[-5,-2],[-3,-4],[-1,-1],[0,-5],[-1,-3],[1,-3],[1,-1],[0,-3],[1,-1],[0,-4],[0,-2],[1,-5]],[[6177,6630],[-1,-1],[-1,3],[-1,0],[0,-2],[-1,0],[-4,-3],[-1,3],[-2,0],[-1,2],[-3,0],[-3,2],[-1,2],[-3,0],[-1,3],[-1,1],[-1,-2],[-1,2],[-2,-2],[-1,3],[-22,11],[-2,2],[-3,1],[-5,-3],[-2,1],[-3,6],[-1,1],[-4,0],[-3,4],[-6,-1],[-2,0],[-1,4],[-3,2],[-1,4],[-3,6],[-5,4],[-2,4],[-2,1],[-2,0],[0,2],[-2,1],[-1,3],[-1,4],[-4,4],[-3,-1],[-6,5],[-3,7],[-5,-3],[-3,0],[0,3],[-2,2],[-1,4],[-3,-2],[-2,3],[-4,0],[-1,-4],[-1,0],[-1,0],[-1,2],[-6,3],[-1,4],[-4,5],[0,2],[-1,3],[1,3],[-1,1],[-5,1],[-3,4],[-5,2],[-7,8],[-6,-1],[-7,2],[-3,2],[-1,2],[2,3],[0,1],[-2,1],[0,4],[-1,1],[-5,-1],[-7,3],[-3,2],[-3,1],[-4,4],[-5,0],[-9,7],[-6,-2],[-7,1],[-3,1],[-5,6],[-8,4],[-3,0],[-1,3],[-2,7],[1,6],[-1,5],[0,7],[-2,10],[1,4],[-3,3],[-4,1],[-3,-2],[-6,1],[-6,0],[-2,-3],[-6,0],[-12,2],[-18,6],[2,1],[0,3],[-1,4],[-3,5],[-4,2],[-3,5],[-4,-1],[-6,2]],[[5991,7313],[12,2],[9,-3],[10,3],[3,4],[-2,3],[1,12],[-2,0],[12,9],[2,-1],[8,0],[0,3],[5,3],[1,2],[-2,4],[0,6],[-2,3],[1,1],[8,7],[0,-4],[5,-4],[-1,4],[2,3],[1,3],[-2,5],[2,1],[1,3],[1,0],[1,-4],[7,-6],[5,-1],[5,-3],[0,-2],[-4,1],[-4,-2],[-1,-4],[-4,-4],[2,0],[3,-2],[2,-7],[4,-3],[1,-5],[1,-1],[0,-3],[1,-1],[8,-5],[0,7],[1,2],[3,15],[3,1],[1,3],[5,-3],[4,-4],[0,-2],[1,-1],[6,-1],[2,-1],[4,-1],[8,-4],[8,0],[6,-3],[0,-1],[8,-1],[3,-3],[10,1],[11,-3],[7,1],[6,-1],[1,-1],[2,1],[15,5],[0,2],[3,1],[2,2],[12,44],[3,6],[4,-2],[2,-3],[4,-2],[5,-1],[10,1],[6,2],[3,0],[4,2],[14,2],[1,-1],[0,-4],[1,-1],[-1,-4],[4,-23],[-5,0],[0,-1],[-4,1],[-4,0],[-4,-12],[2,-5],[-2,-5],[2,-4],[0,-2],[2,-3],[-1,-3],[-1,0],[0,-3],[-2,-3],[-3,-3],[-3,0],[-8,2],[-2,2],[-2,1],[-4,-2],[1,-4],[-2,-3],[0,-6],[-4,-14],[1,-3],[-4,-5],[2,-2],[-5,-13],[0,-2],[-2,-4],[0,-2],[3,0],[2,0],[4,1],[3,-2],[2,-3],[1,-6],[2,1],[2,-5],[2,1],[6,4],[3,7],[3,3],[12,-3],[2,-1],[7,0],[11,-4],[13,0],[0,-3],[2,-3],[0,-6],[1,-1],[-1,-5],[1,-2],[0,-2],[3,-4],[0,-2],[-3,-4],[-1,-1],[1,0],[17,-9],[5,0],[7,-3],[11,-11],[8,-2],[7,1],[2,4],[4,2],[6,6],[1,4],[1,1],[8,3],[12,1],[4,-2],[5,-5],[2,-4],[5,-1],[3,-3],[1,0],[8,5],[6,4],[2,4],[2,1],[0,4],[2,-1],[8,1],[8,1],[7,1],[0,-1],[5,2],[2,-1],[9,3],[4,-1],[2,-3],[3,-1],[5,0],[3,2],[7,1],[1,3],[3,4],[14,12],[3,4],[4,1],[3,18],[10,10],[9,4],[3,3],[4,1],[1,2],[27,3],[8,-2],[10,-4],[-1,3],[1,4],[-1,6],[-2,3],[-1,2],[1,2],[0,2],[0,3],[5,7],[1,2],[2,4],[1,6],[17,1],[21,3],[11,-1],[0,8],[12,5],[6,0],[15,-12],[5,-1],[1,-1],[9,-9],[3,-5],[4,-1],[3,1],[2,0],[12,4],[4,-7],[6,-3],[0,5],[2,1],[8,-4],[5,2],[4,0],[1,5],[11,10]],[[6772,7326],[1,-1],[-1,-5],[1,-3],[-2,-1],[0,-2],[3,1],[0,-2],[0,1],[2,0],[0,-1],[3,-2],[1,-6],[4,-7],[1,0],[-1,1],[0,4],[1,-1],[-1,-2],[2,0],[0,1],[1,-1],[-1,-3],[3,-2],[1,0],[2,-10],[3,-4],[1,-2],[1,-1],[2,-2],[0,-4],[-2,0],[-5,1],[0,-1],[-1,-4],[-4,-7],[2,-5],[2,-1],[1,-2],[1,-1],[0,-1],[8,4],[2,-5],[0,-1],[3,2],[4,-1],[7,5],[6,7],[1,4],[2,3],[2,1],[1,3],[2,3],[2,1],[1,1],[-1,2],[8,-2],[0,-5],[1,-10],[5,-7],[2,-13],[5,-9],[2,-3]],[[5878,7279],[0,3],[6,21],[8,28],[0,4],[1,5],[2,6],[2,1],[0,4],[3,4],[1,5],[4,7],[4,4],[4,7],[6,-2],[17,-14],[11,-3],[3,-3],[4,-1],[1,-2],[3,-1],[4,-8],[1,-1],[3,-6],[0,-1],[-2,-8],[1,-1],[-2,-3],[4,-8],[-1,-2],[-4,-2],[-7,-10],[0,-2],[1,-4],[5,1],[-1,-3],[1,-3]],[[6177,6630],[3,-3],[2,1],[1,-1],[0,-1],[2,1],[1,-1],[0,1],[2,-1],[0,1],[2,-2],[1,1],[1,-3],[-2,-2],[1,-4],[1,2],[1,-2],[-1,-1],[-1,0],[-1,-2],[2,-3],[-2,-1],[3,0],[3,-4],[-1,-5],[4,-1],[1,1],[0,2],[3,-1],[-2,-12],[1,-2],[-1,-2],[1,-3],[-1,-1],[3,-2],[-3,-7],[-1,-5],[2,-1],[4,1],[3,-6],[0,-2],[1,-2],[-1,-2],[0,-1],[-2,-3],[0,-5],[3,-1],[2,-4],[0,-4],[1,-2],[3,-2],[1,-1],[5,-5],[0,-5],[1,-3],[-2,-2],[3,-3],[-1,-8],[2,-2],[-3,-2],[0,-3],[-3,-2],[0,-1],[-4,-1],[-2,-2],[-3,0],[-2,-3],[0,-4],[-2,-2],[0,-3],[-6,1],[-2,-4],[3,-5],[0,-4],[-1,-1],[-4,3],[-1,0],[0,-1],[0,-3],[3,-2],[-1,0],[-1,0],[-2,2],[-1,-2],[3,-1],[-4,-4],[0,-3],[0,-3],[-1,-1],[-1,0],[0,3],[-3,1],[-2,-1],[-1,-4],[1,-8],[4,3],[1,-1],[0,-3],[-5,-5],[-4,0],[-2,1],[-2,0],[3,-7],[1,-4],[-7,1],[-3,-1],[-1,-12],[2,0],[2,-4],[5,-14],[2,-10],[0,-14],[-1,-13],[-2,-2],[-2,0],[-1,-1],[1,-2],[-2,-2],[1,-4],[-3,-13],[1,-11],[-1,-17],[-2,-7],[-1,-3],[1,-1],[-1,-7],[0,-3],[3,-1],[9,-4],[7,1],[14,-4],[3,-3],[-1,-6],[-4,-1],[-1,-2],[-2,-1],[-5,-15],[-2,-7],[1,-4],[4,-1],[14,-7],[1,1],[2,-2],[3,1],[2,-5],[6,-11],[-4,-3],[-6,-4],[-12,-15],[-6,-4],[1,-1],[1,-4],[1,-1],[2,-2],[-2,-3],[1,-1],[4,-3],[1,-3],[1,0],[0,1],[2,2],[2,-2],[1,0],[0,2],[3,1],[3,-1],[2,-3],[1,0],[5,-7],[0,-1],[-1,-1],[-2,-5],[4,1],[0,-3],[-1,-2],[1,-1],[1,0],[-1,-2],[0,-1],[5,0],[0,-5],[1,2],[1,-1],[-1,-1],[1,-2],[2,-2],[2,1],[1,-2],[2,0],[2,-3],[1,1],[1,-2],[-1,-1],[0,-2],[3,0],[1,0],[0,-5],[1,-1],[1,-3],[1,0],[1,1],[3,-3],[-1,-1],[1,0],[-1,-4],[2,-3],[-2,-1],[1,-2],[1,0],[0,-1],[5,2],[2,-3],[1,1],[2,-2],[5,0],[1,-1],[-6,-6],[-1,-2],[-3,-2],[-2,-2],[2,-2],[0,-2],[4,-4],[3,-1],[3,0],[5,-2],[2,-4],[2,-2],[4,-10],[-1,0],[2,0],[0,-5],[3,-4],[1,-5],[2,-2],[6,-9]],[[6296,6045],[-7,0],[-4,2],[-5,0],[-7,-2],[-6,1],[-3,-1],[-6,1],[-5,-2],[-1,-3],[-1,-1],[0,-2],[-2,-3],[-6,-2],[-3,-3],[-1,-3],[-7,-7],[-4,-10],[-2,-2],[-1,0],[-5,4],[-7,1],[-3,0],[-4,2],[-3,-1],[-6,-6],[0,-1],[-2,-2],[-4,-1],[-1,-5],[2,-10],[-1,-9],[-2,-5],[-3,-12],[-7,-6],[2,-4],[1,-2],[1,-13],[-4,-1],[-8,-11],[0,-2],[-4,-2],[-2,-3],[-11,-4],[-1,-1],[-2,-4]],[[6151,5910],[0,1],[-2,3],[0,4],[3,3],[1,2],[-3,0],[-7,6],[-11,0],[-1,1],[-6,14],[4,2],[0,2],[-1,0],[0,2],[1,5],[-2,2],[0,2],[2,4],[-1,3],[-2,2],[-2,-2],[-2,0],[-1,1],[-1,-1],[-3,1],[-1,-1],[-3,2],[0,1],[-2,2],[-3,-2],[-1,-2],[-3,-1],[-1,1],[-2,1],[-2,0],[-1,-1],[0,-2],[-2,-1],[-3,-6],[1,-1],[-1,-1],[-1,1],[-3,-1],[0,-2],[2,0],[-2,-3],[-2,1],[-3,3],[-3,-3],[1,-2],[2,-2],[0,-1],[-1,0],[0,-3],[-2,-1],[-2,1],[-1,0],[1,-5],[-1,-2],[-3,-3],[-1,0],[1,5],[-5,-6],[-11,-6],[-2,0],[0,2],[-3,2],[-3,-1],[-4,2],[-4,-2],[0,-3],[-3,-1],[-4,1],[-1,-1],[-6,0],[-1,3],[1,3],[2,1],[0,3],[-2,5],[-1,2],[-3,1],[-2,3],[1,7],[-2,1],[-2,-2],[-4,1],[-6,-5],[-4,5]],[[6006,5954],[-1,4],[1,6],[-4,7],[-2,3],[-1,-1],[-5,2],[0,1],[2,0],[-1,4],[2,3],[4,-5],[2,0],[-2,3],[3,4],[-6,3],[-3,-1],[-3,5],[2,0],[0,4],[5,-2],[1,2],[-1,2],[-4,2],[0,1],[3,0],[0,2],[-4,1],[-1,-4],[-1,0],[-1,1],[1,4],[-1,2],[-2,0],[-2,3],[-3,0],[0,2],[0,1],[-5,2],[-1,3],[-1,0],[-3,-4],[2,-2],[-1,-1],[-4,-3],[3,0],[0,-3],[-2,-1],[-8,-3],[-2,1],[-2,0],[-3,3],[-1,0],[-3,-1],[-1,-2],[-1,2],[-1,0],[-1,-5],[-6,8],[-10,9],[-2,2],[-1,6],[4,3],[0,3],[-5,1],[1,2],[-1,0],[-1,1],[-1,1],[0,2],[-3,5],[-1,1],[-2,0],[2,3],[-1,1],[-1,-1],[-2,4],[3,2],[2,6],[-1,2],[0,5],[-1,1],[-5,2],[-2,-1],[-12,0],[1,1],[0,4],[2,0],[1,3],[-3,2],[-2,4],[-3,-1],[-5,6],[-2,7],[3,5],[-1,1],[-1,-1],[-1,1],[-2,-4],[0,1],[0,2],[-1,3],[1,2],[3,-1],[1,3],[-1,2],[-2,-2],[-6,1],[-2,3],[0,3],[1,1],[-1,1],[-1,-2],[-1,1],[0,5],[-6,0],[0,1],[4,4],[-1,5],[3,3],[1,3],[-2,3],[2,2],[0,1],[1,2],[-1,1],[0,2],[-2,2],[1,1],[-1,2],[2,1],[1,1],[-2,5],[0,3],[2,1],[-2,6],[1,11],[-3,3],[-1,-2],[-3,-2],[-4,-2],[-1,-2],[-3,1],[-3,-7],[-1,2],[3,6],[1,0],[4,6],[2,19],[-8,12],[-5,3],[-2,7],[-2,2],[1,1],[-1,2],[-3,2],[-1,4],[-7,2],[0,1],[-14,5],[-2,-1],[0,-1],[-9,-5],[-1,-4],[-3,0],[-3,-2],[0,-1],[-1,-1],[2,-4],[-2,-3],[-1,-2],[1,-2],[3,-4],[1,0],[2,-1],[0,-3],[1,-1],[1,1],[1,-2]],[[5821,6205],[-5,0],[-5,4],[-3,2],[2,3],[-2,5],[-1,4],[-3,7],[-2,1],[-1,0],[-7,-2],[6,-5],[2,-2],[0,-6],[1,-3],[0,-2],[1,-5],[-5,3],[-3,-1],[-4,2],[-1,0],[-6,-5],[-4,7],[-8,5],[-15,-10],[-7,-6],[-4,-3],[-4,-5],[-4,-3],[-9,-7],[-11,-1],[-6,-2],[-5,-4],[0,-1],[-6,-9],[-3,-2],[0,-4],[-2,-2],[-1,0],[-3,1],[0,6],[-1,6],[-4,1],[-1,1],[-5,1],[0,2],[-1,0],[-2,4],[-1,0],[0,2],[-3,2],[-1,3],[-1,3],[-2,1],[-1,1],[1,1],[-2,0],[1,2],[-2,0],[0,1],[0,1],[5,0],[3,2],[1,4],[-2,3],[-4,-2],[-1,1],[-1,2],[0,3],[-1,3],[1,6],[3,5],[2,2],[3,-1],[2,3],[2,-2],[0,-8],[2,-2],[2,0],[2,4],[1,3],[3,5],[8,5],[2,0],[3,-4],[0,-3],[3,-2],[2,3],[1,3],[2,0],[2,-2],[1,1],[0,3],[-1,3],[1,4],[2,4],[-1,3],[0,2],[-1,4],[-2,10],[-3,3],[0,1],[1,0],[1,4],[2,0],[0,5],[-8,3],[-1,2],[0,2],[-6,3],[-1,2],[-2,1],[1,6],[0,5],[3,7],[-1,2],[2,3],[0,1],[-3,2],[1,2],[-1,0],[-2,2],[-4,1],[-4,3],[-5,2],[-1,-1],[-3,4],[-5,4],[-2,-1],[-2,2],[0,2],[-1,2],[-2,-2],[1,3],[0,2],[-2,0],[1,1],[0,3],[-1,2],[-2,1],[1,3],[3,3],[0,2],[0,2],[-1,1],[-1,6],[-2,2],[2,1],[-1,3],[2,2],[-4,-1],[1,2],[1,-1],[1,2],[0,3],[1,1],[1,2],[-1,1],[-1,1],[-1,2],[-3,1],[-2,2],[-2,3],[-5,2],[-2,4],[-1,-1],[-2,2],[-5,1],[0,2],[-2,1],[-2,7],[-1,2],[-2,0],[-1,2],[-1,0],[-1,1],[-1,3],[2,6],[-1,2],[2,9],[-1,4],[-2,5],[-7,7],[-2,5],[-3,2],[-2,3],[0,2],[-1,2],[-2,0],[-3,4],[0,7],[-5,5],[-3,4],[-11,5],[1,8],[-2,2]],[[5821,6205],[0,-1],[0,1]],[[5844,6163],[-3,1],[-1,1],[-2,9],[-7,-2],[3,11],[-2,3],[-18,9],[1,2],[1,-1],[12,-2],[2,-4],[1,-3],[3,2],[3,2],[0,2],[1,0],[2,-4],[-1,-2],[0,-2],[-2,-2],[0,-3],[2,-5],[2,-11],[3,-1]],[[4518,9416],[-5,0],[-1,1],[-1,-2],[-4,0],[-3,-4],[-1,-1],[-3,0],[-2,-4],[-4,1],[0,2],[-4,0],[-1,2],[2,0],[0,2],[-3,1],[-2,5],[-4,0],[-1,1],[-2,-1],[-6,-4],[-1,2],[0,-1],[0,-2],[-3,1],[-2,-3],[-1,0],[-1,3],[0,2],[-3,0],[-4,-4],[-1,0],[-1,0],[0,2],[-1,1],[-3,-1],[-1,0],[-2,2],[-2,0],[-2,1],[0,2],[-5,2],[-2,0],[-1,1],[-7,-5],[-2,-4],[-2,-1],[-1,1],[-2,1],[-3,-1],[0,-2],[2,-1],[2,-4],[3,-1],[0,-4],[-2,-1],[-8,2],[-2,1],[0,2],[-2,1],[-3,-4],[-1,0],[-1,1],[1,3],[-4,2],[-4,-3],[0,-2],[-6,-4],[0,-4],[1,-2],[-2,-1],[-4,4],[-5,1],[1,4],[2,2],[0,1],[-4,1],[-3,-1],[-1,0],[0,2],[0,3],[-1,2],[-1,3],[-3,-4],[0,-4],[-2,-1],[-1,6],[-1,0],[-2,-2],[-2,1],[-2,-3],[-1,-2],[2,-2],[1,-1],[3,2],[1,-2],[1,-2],[-2,-4],[1,-2],[0,-2],[-1,-6],[0,-1],[1,-3],[-4,-1],[-4,-3],[1,-3],[-3,-3],[-2,1],[-1,2],[-4,1],[-4,-1],[-2,1],[0,3],[-4,0],[0,-2],[1,-4],[-1,-2],[-3,3],[-1,-1],[-1,-5],[-3,-2],[-2,-1],[0,-2],[3,-5],[0,-1],[-1,-1],[-5,1],[-4,-5],[-1,0],[-6,1],[-4,-1],[-4,0],[-3,-2],[-8,5],[-2,3],[-6,0],[-2,-1],[-3,-2],[-2,0],[-2,3],[-2,0],[-1,-3],[-3,1],[-2,1],[-2,4],[-3,0],[-2,-3],[3,-6],[-4,0],[-3,-2],[-1,-1],[-3,1],[-1,-1],[-6,1],[-2,0],[-4,-11],[2,-5],[-1,-1],[-4,-1],[-1,3],[-3,-2],[0,-1],[-3,4],[-6,2],[0,1],[-3,1],[0,1],[-2,-1],[0,-4],[-4,0],[-4,-1],[-1,-1],[-1,-3],[-12,-3],[-6,-1],[-3,-4],[1,-3],[-1,-3],[-1,-1]],[[4195,9317],[-2,0],[0,-3],[2,-4],[-2,-2],[-3,-3],[-1,-2],[-2,0],[1,-1],[-2,-4],[0,-4],[-1,0],[-3,-2],[-1,0],[-2,2],[-3,1],[-1,-2],[-3,-5],[-2,-1],[-2,1],[-4,-3],[0,1],[-2,-1],[0,1],[-1,0],[0,-1],[0,2],[-1,-1],[-3,4],[-2,1],[-2,-1],[1,3],[-2,0],[1,1],[2,3],[1,3],[0,2],[0,-1],[1,2],[-1,-1],[-4,2],[-2,0],[-3,6],[-3,4],[0,2],[-1,0],[1,-4],[0,-1],[-1,0],[2,-3],[-1,-5],[1,-3],[-2,3],[-4,0],[1,-4],[-3,-7],[-1,0],[0,-3],[2,-1],[1,-1],[3,0],[4,-3],[-1,-4],[-3,1],[-4,0],[-1,-2],[-1,-4],[0,-2],[-1,-1],[0,-2],[2,-1],[1,-3],[-3,0],[-2,1],[-1,-2],[-1,1],[2,1],[-1,1],[-3,3],[-2,-1],[-1,2],[-1,0],[-1,-3],[-1,2],[1,1],[-1,3],[2,2],[1,2],[0,-1],[1,2],[2,0],[1,2],[-1,2],[-3,2],[-5,2],[-3,-1],[1,2],[1,-1],[1,2],[-1,-1],[-1,1],[-2,-1],[1,-3],[-1,-2],[1,1],[-1,-3],[-2,0],[-5,-5],[-2,-2],[1,-1],[-4,-3],[-1,0],[0,-1],[-3,-3],[0,-1],[2,0],[-2,0],[1,-1],[2,-4],[4,-1],[1,-1],[0,-1],[1,-1],[-1,-1],[0,-2],[-5,0],[-1,-3],[0,1],[-1,1],[-3,-2],[0,2],[-3,0],[-3,-2],[-1,-1],[1,-1],[-3,-3],[0,-3],[-1,0],[-1,-1],[0,2],[-1,-1],[-4,0],[-5,-3],[-1,-2],[0,-1],[1,0],[0,-3],[1,0],[0,4],[0,-4],[2,-3],[0,-3],[-3,-6],[-4,-3],[-3,-1],[-2,-2],[0,-1],[2,-6],[-2,2],[0,3],[-1,1],[-3,-1],[2,-2],[-2,1],[-1,-2],[-2,1],[0,1],[-4,1],[0,-2],[-2,1],[-1,-2],[-1,4],[0,1],[1,-1],[0,1],[-1,2],[2,1],[-1,1],[0,3],[1,0],[1,3],[1,-1],[0,1],[1,0],[0,1],[1,0],[0,4],[-2,7],[-6,8],[-5,3],[-1,-2],[-1,1],[-1,-1],[-1,1],[0,-2],[-1,1],[0,-2],[-2,0],[0,-1],[1,-2],[-4,1],[-1,1],[-2,0],[0,1],[-1,2],[0,2],[4,0],[0,1],[1,0],[2,3],[0,3],[-3,3],[2,1],[0,1],[1,0],[1,1],[2,-1],[2,1],[2,5],[-1,1],[1,1],[0,5],[-1,0],[1,1],[1,-1],[3,3],[0,1],[1,0],[5,10],[-1,1],[1,3],[0,2],[-2,2],[1,4],[-1,1],[1,1],[-1,1],[1,0],[-1,3],[1,0],[1,1],[1,0],[1,0],[1,3],[1,10],[-2,2],[1,-1],[1,2],[0,2],[1,2],[1,2],[2,1],[1,1],[2,-1],[1,1],[1,5],[-1,0],[1,5],[2,0],[1,-1],[2,1],[1,2],[0,3],[1,0],[0,3],[2,2],[4,0],[2,1],[-1,-1],[2,-2],[1,1],[4,3],[1,0],[3,4],[0,4],[1,2],[0,-2],[2,0],[-1,1],[1,0],[1,3],[1,0],[0,5],[1,1],[1,2],[2,-1],[1,4],[6,4],[1,0],[-1,-1],[1,1],[1,1],[2,-3],[2,0],[1,-2],[3,0],[0,-2],[1,0],[-1,6],[-3,1],[0,1],[2,0],[0,2],[-1,2],[-2,0],[1,2],[2,5],[0,3],[4,-2],[4,2],[0,2],[0,3],[1,3],[-1,0],[-1,-1],[0,-6],[-4,-1],[-1,3],[-2,1],[0,3],[-1,1],[-3,0],[1,-1],[-1,1],[1,-1],[-1,-1],[2,1],[0,-1],[-2,-4],[-1,-10],[-4,-3],[-3,0],[-2,2],[-2,0],[0,4],[-2,-3],[-4,-2],[0,-2],[1,-2],[-2,-1],[-2,-6],[-1,1],[0,-1],[-2,-1],[-2,-1],[-1,0],[-1,2],[1,3],[-4,2],[0,1],[-2,-1],[1,-1],[-2,-2],[0,-4],[-2,1],[-2,-2],[0,2],[-3,0],[-1,1],[-1,-2],[-1,3],[0,-1],[-2,2],[0,-1],[-3,0],[0,-1],[0,6],[1,0],[0,3],[-1,2],[-2,1],[-1,-4],[-2,2],[-1,0],[-1,-1],[-1,-3],[-1,0],[-3,-2],[-2,-1],[-1,1],[-1,0],[-3,-2],[-3,1],[0,-1],[0,-2],[2,-1],[0,-2],[1,0],[0,-1],[1,0],[3,-2],[0,-2],[-2,-1],[-2,-5],[-4,0],[-4,-1],[-2,-3],[2,-4],[0,-2],[-2,-3],[-4,0],[-1,5],[-5,6],[-3,-1],[-1,1],[0,-2],[-1,1],[-1,2],[1,0],[0,2],[-3,6],[-3,0],[1,4],[-1,1],[0,1],[-3,7],[-3,0],[0,3],[-3,-1],[0,2],[-1,-1],[0,1],[0,2],[1,2],[1,-2],[4,3],[-1,-1],[1,-1],[1,2],[2,-1],[6,4],[1,0],[3,4],[1,4],[-1,7],[-1,3],[-4,4],[-2,1],[-1,0],[-1,-3],[-1,0],[-2,3],[-2,1],[-2,4],[0,3],[-1,0],[0,4],[-1,0],[0,1],[-1,0],[1,2],[-1,0],[0,1],[1,0],[1,2],[-1,2],[0,2],[2,1],[0,-2],[1,0],[1,5],[-1,1],[-1,1],[0,2],[1,-1],[1,1],[2,2],[0,-2],[2,4],[2,2],[-1,0],[0,-1],[0,1],[-2,3],[-3,0],[-2,-1],[-3,1],[-1,-1],[-1,1],[0,2],[-2,-2],[-1,1],[-1,5],[-1,1],[0,2],[-2,1],[0,2],[-2,6],[1,2],[-3,1],[0,-1],[-1,1],[-1,1],[-3,7],[0,-4],[-1,-4],[1,0],[0,-5],[1,0],[2,-4],[-1,-3],[1,-5],[0,-1],[-3,0],[-2,1],[-2,0],[-3,0],[-1,-1],[0,7],[-3,1],[0,1],[-1,1],[1,1],[-2,3],[1,2],[-2,1],[-2,-2],[-1,1],[-2,-1],[0,-2],[1,-2],[-1,-4],[-4,0],[-7,-2],[-2,-3],[-1,-3],[2,-3],[-1,-2],[2,1],[-2,-2],[1,-1],[-1,-1],[0,-4],[-2,-7],[-1,-2],[-2,0],[-1,4],[-2,2],[-1,2],[2,2],[1,7],[0,2],[-1,0],[-2,6],[-4,-1],[-2,2],[-1,-1],[0,1],[3,6],[0,3],[1,0],[-1,2],[1,-1],[1,4],[1,-1],[1,0],[-1,7],[3,1],[1,4],[1,-1],[1,1],[4,5],[1,3],[-1,4],[1,3],[-1,2],[1,1],[1,3],[-2,3],[2,1],[-2,5],[-3,1],[-1,-1],[-2,-1],[-2,3],[-1,13],[-2,6],[-3,0],[-2,3],[0,4],[2,1],[2,-2],[1,-5],[2,0],[2,-2],[3,1],[1,4],[1,-2],[2,0],[3,7],[1,5],[1,0],[1,3],[0,1],[-1,2],[0,4],[-2,1],[0,4],[2,0],[0,1],[1,0],[1,-2],[1,-3],[1,0],[0,1],[2,3],[5,-1],[0,-2],[1,0],[1,1],[1,1],[-2,2],[0,4],[1,0],[0,1],[1,0],[-1,4],[0,3],[1,0],[2,-2],[0,-3],[1,-2],[2,0],[1,1],[1,-1],[3,1],[0,-3],[2,-2],[-1,-3],[3,0],[2,2],[0,4],[-1,0],[1,2],[4,-1],[0,1],[4,1],[0,3],[1,2],[1,6],[1,2],[0,1],[-2,1],[-1,-1],[-1,3],[2,9],[-1,4],[-2,-4],[1,-2],[-1,-3],[-3,-1],[-1,-2],[0,-2],[-2,-1],[0,-3],[-2,0],[-1,1],[-1,-2],[-2,3],[0,3],[-1,0],[0,-2],[-2,-1],[0,2],[-1,2],[2,0],[-1,5],[-3,2],[1,1],[-2,1],[0,2],[-1,3],[2,0],[-1,3],[3,-1],[-1,-2],[4,-1],[1,1],[0,2],[0,1],[3,-1],[1,0],[2,3],[-1,1],[3,1],[0,9],[2,1],[0,4],[2,-2],[1,0],[1,-3],[1,1],[1,-1],[1,0],[4,3],[-1,2],[1,1],[0,2],[0,-1],[2,0],[0,1],[2,-2],[2,0],[0,3],[1,0],[0,-2],[2,3],[1,-2],[0,1],[0,-1],[1,1],[1,-1],[1,-1],[0,2],[1,-1],[1,-1],[1,-4],[1,-1],[3,1],[0,1],[2,-1],[1,3],[0,-1],[2,-1],[2,1],[0,-1],[-1,-5],[1,0],[0,1],[1,2],[1,-2],[1,1],[1,-2],[0,1],[1,-1],[0,2],[1,2],[2,0],[2,-2],[3,0],[9,7],[2,8],[-1,1],[0,2],[2,1],[2,0],[0,-1],[1,0],[2,1],[1,1],[-1,2],[3,1],[1,2],[1,0],[-1,2],[0,4],[2,-1],[2,-1],[1,-2],[-2,-4],[2,-2],[4,-1],[1,2],[2,2],[0,2],[1,0],[1,2],[5,-3],[2,0],[-1,3],[4,-1],[0,1],[3,0],[0,1],[1,-2],[2,0],[1,-1],[2,3],[0,3],[-2,2],[1,2],[-1,1],[-3,-1],[-2,5],[2,3],[-2,1],[1,4],[-2,1],[1,1],[-2,-1],[0,1],[-1,-1],[-1,0],[-1,-1],[-3,0],[0,-1],[-2,1],[-1,1],[-1,0],[-1,3],[-3,3],[2,2],[0,2],[5,2],[2,2],[1,-1],[3,1],[1,5],[1,-2],[2,0],[2,1],[-1,-1],[3,-2],[2,0],[4,-4],[2,0],[0,1],[-1,1],[0,4],[4,1],[1,1],[1,-2],[4,2],[-3,5],[2,2],[-1,2],[0,2],[-1,0],[0,5],[5,0],[3,-2],[3,2],[2,-1],[1,-4],[2,0],[1,2],[0,2],[1,2],[3,-1],[1,-1],[-1,-1],[3,-1],[1,3],[1,-2],[0,1],[3,-1],[0,2],[-1,1],[0,4],[1,-1],[-1,6],[1,1],[1,0],[0,2],[1,0],[-1,2],[2,1],[1,-1],[3,-1],[1,-2],[0,-7],[1,-1],[1,1],[1,-1],[1,1],[1,-3],[2,-1],[2,2],[1,0],[0,-2],[-2,0],[2,-1],[1,-4],[1,0],[-1,-1],[1,0],[1,-2],[1,1],[1,-1],[1,1],[2,-2],[0,-1],[1,-2],[1,-1],[1,1],[1,-1],[2,-2],[3,1],[1,1],[1,0],[4,-4],[0,1],[1,0],[2,-2],[7,1],[1,0],[2,1],[1,-3],[4,-2],[6,1],[13,6],[6,1],[6,4],[1,-1],[2,1],[6,4],[2,1],[3,-1],[2,2],[0,2],[2,-2],[5,2],[0,-3],[3,-1],[2,1],[4,0],[2,-2],[3,0],[1,-1],[6,0],[10,7],[0,1],[2,2],[0,-1],[1,1],[1,-1],[2,1],[3,2],[-2,1],[3,4],[-1,1],[4,6],[-1,1],[0,1],[-2,-1],[3,5],[3,0],[0,-1],[-1,-2],[2,-2],[1,1],[0,-1],[3,1],[1,0],[0,1],[1,1],[1,0],[2,2],[2,0],[1,-1],[0,1],[-1,2],[1,4],[4,2],[1,0],[-1,2],[4,3],[3,-1],[2,-1],[3,0],[1,-4],[1,0],[2,-2],[1,0],[2,2],[1,2],[-1,1],[-1,2],[-1,0],[-1,3],[3,0],[-2,1],[1,1],[4,-1],[-1,2],[4,-2],[-1,-2],[-1,-1],[1,-2],[1,-2],[1,-2],[0,-3],[1,-1],[-1,0],[0,2],[-4,1],[1,-1],[-2,-1],[0,-1],[1,-1],[-2,0],[0,-1],[0,-1],[2,0],[1,2],[0,-4],[3,0],[1,-2],[1,-2],[-1,-1],[1,-1],[1,0],[0,-2],[-2,-2],[1,-1],[1,1],[4,0],[1,2],[2,-2],[3,1],[1,1],[2,1],[2,0],[1,2],[-1,1],[1,1],[0,1],[-2,2],[1,0],[0,1],[2,2],[-1,1],[0,1],[3,2],[0,1],[-1,0],[-1,1],[1,1],[2,-1],[0,5],[-3,2],[-3,-2],[-2,1],[1,2],[3,1],[-2,2],[2,1],[1,-1],[1,1],[-2,1],[-1,3],[2,-1],[1,2],[3,0],[-1,0],[2,2],[2,-2],[-1,2],[2,1],[1,-1],[1,1],[2,-1],[1,-1],[4,3],[2,-4],[1,1],[1,-1],[-1,-5],[1,-2],[1,-2],[3,-1],[2,0],[1,1],[-1,1],[3,-1],[0,1],[2,-1],[0,1],[1,-1],[1,0],[2,-2],[0,-3],[1,-1],[1,-4],[3,-1],[1,-2],[0,-1],[0,-2],[-1,-2],[-1,-1],[3,-4],[2,1],[1,-3],[6,-1],[2,-6],[5,-1],[1,-2],[1,1],[-3,5],[1,2],[5,-3],[-5,9],[-4,2],[4,2],[1,2],[1,3],[-1,-1],[-1,2],[-3,0],[0,3],[2,4],[-2,0],[1,1],[-3,5],[1,0],[1,1],[-1,2],[1,0],[1,-1],[1,2],[1,3],[0,2],[1,1],[2,3],[5,1],[2,2],[7,-1],[0,4],[-1,2],[-2,-2],[0,2],[-2,0],[0,2],[-5,1],[-3,-2],[0,-1],[-2,-1],[-1,1],[-2,-2],[-4,5],[-7,2],[-2,-4],[0,-1],[1,0],[1,-1],[-2,-1],[-3,1],[-3,0],[0,2],[-3,1],[0,2],[-5,3],[0,1],[-1,0],[-1,1],[-3,0],[-1,0],[0,1],[-3,-1],[-1,0],[0,3],[-5,0],[-3,1],[-1,1],[2,1],[3,0],[1,2],[-2,0],[-2,2],[1,2],[4,-1],[4,1],[4,3],[2,-1],[2,3],[2,0],[1,-1],[-1,-2],[1,-2],[1,0],[2,4],[2,0],[1,3],[1,-1],[1,-2],[4,-1],[2,2],[2,-2],[2,-1],[2,0],[1,1],[2,0],[5,0],[3,1],[0,1],[0,-1],[2,1],[1,3],[3,1],[1,1],[1,1],[1,-1],[0,2],[2,1],[2,2],[1,2],[-1,2],[2,2],[1,4],[-2,1],[0,1],[2,-1],[0,3],[4,1],[-3,-1],[0,2],[3,4],[1,3],[-2,-2],[0,1],[-1,-1],[-3,0],[-1,1],[-2,-1],[-1,0],[1,-1],[2,0],[1,-2],[-3,-2],[-1,-1],[1,-2],[0,-1],[2,0],[0,-1],[-2,0],[-2,-2],[-4,0],[-1,-3],[-4,-1],[-2,0],[1,-1],[2,0],[1,-3],[-3,0],[0,-2],[-3,-1],[-1,3],[-2,1],[-3,0],[0,-1],[0,-3],[-1,0],[-2,1],[-4,-2],[1,-2],[-2,3],[1,0],[2,1],[-1,2],[-2,0],[-2,-3],[1,-1],[0,-1],[-3,3],[0,-1],[-1,1],[0,4],[2,3],[0,1],[-2,1],[-1,-1],[0,-1],[-2,1],[-2,-3],[1,0],[-1,0],[1,-2],[-1,0],[-1,-2],[1,-1],[-1,-1],[0,-3],[-2,-2],[-6,0],[-1,-2],[-1,0],[-1,-2],[-4,-1],[-2,0],[0,3],[-1,1],[-1,-1],[0,1],[-2,1],[-1,-1],[-2,2],[-2,-2],[-5,-1],[-3,-4],[-1,0],[0,2],[-3,1],[0,1],[3,1],[-1,2],[0,2],[2,1],[1,1],[1,2],[3,2],[1,1],[0,2],[1,1],[1,8],[-1,0],[0,1],[-2,2],[-2,0],[1,1],[1,0],[-1,2],[-1,-1],[0,2],[3,7],[3,0],[2,2],[1,-1],[0,-1],[3,0],[3,4],[0,4],[-2,3],[-1,3],[-3,-1],[-2,2],[1,1],[-1,2],[1,0],[-1,1],[-2,-1],[-2,1],[-1,2],[2,4],[4,2],[2,0],[0,-2],[1,0],[1,-3],[4,-3],[5,1],[1,1],[-1,1],[1,0],[0,-2],[2,1],[0,-1],[3,-2],[6,3],[3,3],[0,1],[2,0],[0,1],[2,0],[2,3],[5,3],[0,1],[1,-1],[4,4],[-2,2],[1,4],[1,-1],[1,1],[0,1],[5,2],[1,1],[-1,3],[1,-1],[0,1],[1,-1],[1,1],[0,-2],[1,1],[0,3],[-1,2],[-1,-1],[0,2],[2,1],[0,-1],[1,0],[0,1],[0,3],[1,2],[1,0],[1,-1],[1,1],[0,-5],[4,-1],[6,1],[3,2],[2,4],[0,-1],[0,3],[2,0],[0,2],[1,0],[0,1],[2,3],[1,-2],[1,1],[2,0],[2,6],[1,-3],[3,0],[2,2],[-2,2],[1,0],[0,1],[1,1],[2,-3],[2,2],[-2,2],[1,1],[3,0],[0,1],[-1,1],[2,2],[-1,2],[1,0],[0,2],[1,0],[0,-1],[2,-2],[-1,-1],[1,-1],[-1,-2],[3,-1],[-1,-5],[4,-1],[2,0],[0,1],[1,-1],[-1,3],[0,2],[7,-2],[1,3],[-1,5],[-1,-1],[-3,-1],[-2,1],[-2,-1],[1,-2],[-1,3],[-1,1],[2,0],[-1,1],[1,2],[-2,1],[0,1],[1,0],[-1,3],[2,0],[0,1],[-2,4],[1,0],[0,1],[3,-1],[0,2],[-1,1],[0,1],[2,2],[-2,3],[1,-1],[1,1],[-1,3],[1,2],[2,0],[2,2],[0,1],[2,0],[0,2],[1,-1],[0,1],[1,-1],[3,1],[3,1],[3,-3],[1,1],[3,1],[5,-5],[1,0],[4,4],[2,0],[6,3],[0,2],[6,2],[4,3],[3,5],[-2,4],[6,0],[1,0],[3,-1],[3,2],[0,2],[1,2],[1,0],[0,1],[3,4],[-1,1],[2,2],[2,4],[2,-3],[5,-1],[5,2],[4,5],[4,-7],[0,-2],[0,-1],[-2,0],[-1,-3],[1,-4],[-1,-1],[1,-3],[0,-3],[-1,2],[-2,0],[-1,-3],[1,-2],[3,-3],[3,0],[1,-4],[2,-1],[0,-2],[-1,0],[0,-1],[1,-1],[0,-1],[-6,1],[-1,3],[-4,1],[-1,4],[0,-2],[1,-3],[-1,-2],[3,-1],[0,-2],[-2,-1],[-2,-3],[0,-3],[-1,-2],[1,-2],[1,-1],[-1,-1],[-5,2],[0,-3],[2,-2],[5,0],[2,-1],[-1,-3],[0,-1],[0,-1],[-2,0],[-2,3],[-2,0],[-6,-3],[-2,0],[3,-4],[3,1],[3,-3],[3,1],[1,-2],[1,2],[1,1],[3,-2],[0,1],[-1,2],[4,2],[2,-1],[1,3],[1,-3],[2,0],[0,1],[0,3],[-2,1],[0,-1],[-3,3],[0,2],[-3,0],[2,2],[-2,1],[-3,7],[6,4],[4,-2],[2,0],[2,1],[3,-1],[0,-1],[-2,1],[-2,-1],[1,-2],[-3,-3],[3,2],[1,-2],[1,0],[-1,1],[6,1],[-1,-1],[1,-1],[-3,0],[2,0],[-1,-2],[5,4],[0,-1],[2,0],[1,0],[-1,1],[-2,0],[-1,2],[-2,1],[-2,0],[-1,4],[-1,1],[1,3],[1,1],[2,-1],[0,-1],[1,1],[0,-1],[4,3],[1,-1],[-1,4],[-1,-1],[0,1],[-1,0],[0,3],[3,0],[1,-2],[3,-1],[2,2],[-2,3],[2,3],[2,-1],[2,0],[3,0],[3,2],[0,1],[1,0],[6,1],[2,4],[4,-1],[3,2],[1,2],[2,-1],[1,1],[1,-1],[1,2],[-2,0],[2,2],[3,0],[-1,5],[4,3],[5,2],[1,1],[2,0],[1,1],[0,9],[2,-2],[3,0],[7,-6],[-1,-2],[-1,-1],[-2,-1],[-1,1],[-1,-1],[-1,-2],[1,-3],[-1,-1],[-5,-3],[-1,-1],[1,-1],[-2,-2],[2,-4],[0,-1],[-6,-2],[0,-2],[1,0]],[[4652,9965],[1,-6],[0,-3],[2,-3],[-2,-1],[-1,0],[-1,-2],[-3,0],[1,-2],[2,-1],[-3,-2],[0,-1],[3,-1],[-1,-2],[2,0],[-2,-2],[0,-4],[-1,0],[-1,-1],[-4,2],[-1,-1],[3,-4],[2,-1],[0,-5],[1,1],[2,-2],[5,-9],[-3,-1],[1,-1],[0,-2],[-3,-2],[-2,2],[-2,-2],[-3,1],[1,-4],[-2,-1],[1,-1],[-1,-1],[1,-1],[-4,-4],[0,-2],[-3,1],[1,-2],[-2,0],[1,-3],[4,-3],[-1,0],[-2,-1],[4,-2],[-1,-2],[-3,-1],[1,-2],[3,0],[1,-6],[-1,-3],[1,0],[1,0],[-2,-3],[-3,2],[0,-1],[-5,-1],[-1,1],[-2,-1],[-1,-1],[1,-2],[1,-3],[-1,-1],[-1,-5],[-2,-1],[1,-1],[-2,-1],[1,-2],[-1,0],[-1,0],[2,-2],[-3,-1],[1,0],[2,-2],[0,1],[2,-3],[-3,-6],[3,0],[0,1],[2,-2],[-1,0],[1,-1],[0,-1],[-2,-2],[1,-1],[-1,-1],[1,-2],[-1,0],[0,-1],[0,-1],[2,0],[0,-1],[-1,-2],[-2,-1],[-1,1],[-2,0],[-2,-4],[2,-3],[-5,-6],[1,-2],[-2,-6],[1,-1],[-2,-1],[0,-2],[-1,-1],[0,-4],[-2,-7],[-2,-2],[-4,-1],[0,1],[-6,-5],[-1,-4],[1,-1],[-1,-1],[2,-1],[-3,-7],[-5,-9],[-6,1],[-4,-2],[-5,4],[-6,2],[-1,-2],[-3,1],[-5,-5],[-2,-4],[-1,-2],[0,-2],[2,0],[3,-7],[0,-3],[2,-11],[-3,-10],[-2,-4],[-3,-1],[-3,-3],[-2,-5],[-3,-4],[-6,-4],[-5,-8],[-2,-2],[3,-5],[6,-2],[2,-3],[-5,-17],[-4,-11],[-1,-5],[-8,-16],[2,-5],[3,-3],[0,-8],[3,-14],[1,-8],[2,-11],[4,-7],[5,-5],[0,-2],[-2,-4],[-9,-9],[1,-5],[4,-7],[0,-3],[1,-5],[1,0],[0,-2],[5,-15],[0,-6],[4,-8],[0,-6],[-1,-15],[-4,-12],[-9,-6],[-3,-3],[4,-9],[-8,-9],[-1,-3],[-4,-2],[-6,-2],[-2,-4],[-2,-2],[0,-2],[-3,-3],[1,-1],[-2,-3],[0,-1],[-2,-2]],[[4069,9178],[-1,1],[0,-1],[-1,1],[-1,2],[0,2],[-1,0],[0,2],[0,4],[2,2],[2,-2],[1,-1],[1,-4],[1,-1],[2,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1]],[[6772,7326],[-2,7],[0,13],[0,4],[2,5],[-2,4],[3,3],[0,12],[2,4],[1,2],[-1,7],[1,7],[-2,13],[1,0],[4,7],[-1,6],[1,1],[0,4],[3,7],[-5,2],[-8,13],[-5,6],[-3,6],[-6,2],[-2,2],[-2,2],[0,4],[-7,7],[-2,3],[-8,28],[-2,4],[-4,4],[-5,7],[1,1],[-6,14],[-2,7],[0,3],[-1,5],[-8,12],[-2,1],[-7,7],[-4,1],[-3,3],[-3,-1],[-1,1],[-2,-1],[2,7],[4,6],[0,3],[3,2],[0,6],[0,2],[3,4],[1,7],[-1,6],[1,2],[-1,4],[2,2],[-1,2],[0,4],[0,2],[1,1],[-2,3],[1,7],[-6,0],[-10,-2],[-4,1],[-4,16],[-4,9],[-2,1],[0,7],[-3,6],[2,2],[2,6],[0,2]],[[6669,7693],[6,1],[4,-2],[10,-1],[5,3],[5,1],[3,2],[12,12],[3,5],[-1,4],[1,0],[0,1],[-2,3],[1,1],[-1,1],[-1,-1],[-1,1],[-2,2],[1,2],[0,1],[-2,0],[-1,2],[-1,2],[1,1],[-2,1],[0,2],[-3,0],[-1,2],[-2,0],[1,0],[-1,1],[-2,-1],[0,2],[-1,0],[1,5],[-1,2],[4,6],[2,-1],[0,-2],[2,-1],[3,0],[2,1]],[[6711,7751],[0,2],[2,4],[11,-4],[3,-3],[5,-1],[2,-2],[1,2],[-1,6],[2,4],[0,2],[-3,1],[-1,5],[0,6],[2,-1],[3,3],[1,2],[0,5],[4,0],[4,-4],[0,-1],[4,-4],[6,-5],[3,-2],[6,-8],[5,-4],[7,-2],[3,-2],[3,1],[8,4],[4,4],[2,1],[0,2],[5,15],[7,1],[6,0],[3,0],[2,2],[0,2],[2,5],[-1,2],[3,3],[3,11],[-1,2],[1,4],[2,7],[-1,2],[-1,8],[1,1],[0,4],[-2,15],[0,9],[-1,1],[0,2],[-2,0],[0,2],[2,4],[0,1],[0,1],[-2,-1],[0,2],[-1,1],[1,7],[0,3],[2,5],[0,10],[2,2],[-1,1],[-1,0],[3,4],[-1,3],[0,2],[2,2],[2,4],[0,2],[-1,2],[6,2],[0,1],[-2,2],[3,2],[2,6],[1,1],[4,-2],[3,0],[1,-1],[-1,-4],[-4,-8],[5,-6],[4,-2],[6,-5],[6,-2],[2,3],[-4,6],[1,0],[3,-3],[1,0],[1,2],[1,2],[-3,3],[1,1],[6,-3],[6,-12],[2,1],[2,3],[-10,13],[1,4],[2,0],[2,-2],[3,1],[4,5],[-4,3],[0,1],[2,0],[2,3],[2,0],[1,-3],[1,-3],[2,-1],[1,2],[4,0],[4,6],[4,-3],[3,3],[3,-2],[3,1],[1,-1],[2,1],[4,-2],[2,1],[1,2],[2,1],[3,-4],[2,1],[3,-2],[0,-2],[1,-1],[2,1],[2,-3],[5,0],[-1,-2],[2,-3],[1,-1],[3,2],[4,-3],[2,1],[1,-1],[2,1],[2,2],[2,13],[-3,6],[-2,1],[-2,4],[-3,2],[-7,3],[3,7],[0,4],[4,4],[-5,5],[-3,7],[3,9],[5,7],[3,-8],[1,-2],[2,-8],[8,-4],[4,1],[6,6],[2,0],[3,2],[6,1],[5,4],[1,2],[4,4],[2,-2],[2,-5],[3,-3],[1,3],[5,2],[8,6],[-1,3],[-1,4],[-3,1],[-1,5],[-3,1],[-3,5],[-4,4],[0,5],[1,9],[6,7],[8,-4],[4,0],[2,-4],[4,-3],[2,-2],[0,-2],[-2,-6],[3,-3],[3,-2],[1,-2],[5,-1],[3,2],[3,0],[5,2],[4,0],[3,4],[3,8],[-1,3],[-3,9],[0,7],[2,4],[4,2],[2,3],[1,4],[9,-8],[8,-3],[1,-2],[3,-3],[6,0],[10,7],[2,-1],[7,1],[2,1],[1,12],[3,5],[10,-2],[6,-3],[4,0],[1,0],[3,-1],[5,-2],[0,-2],[3,-5],[6,-4],[1,0],[2,-1],[3,-2],[0,-3],[5,-6],[5,-5],[7,-2],[6,-4],[6,-1],[3,-3],[5,3],[2,0],[2,1],[1,5],[-2,6],[1,1],[2,1],[3,-8],[6,0],[1,-1],[4,-3],[1,1],[2,-2],[1,-3],[2,-2],[1,-9],[2,-4],[0,-5],[1,-1],[0,-2],[1,-2],[-2,-2],[0,-1],[4,0],[1,-4],[4,-3],[3,-8],[-1,-1],[0,-3],[-1,-3],[3,-7],[0,-1],[1,-1],[-1,-1],[1,-1],[1,-6],[2,-1],[-1,0],[0,-2],[6,-5],[-1,-2],[1,-1],[-2,-4],[2,-4],[-1,-2],[2,-2],[1,-8],[2,-1],[-1,-2],[4,-3],[2,4],[1,2],[2,-5],[4,-6],[4,-4],[1,-2],[3,-1]],[[7272,7900],[7,-1],[0,-3],[5,0],[2,-3],[3,-3],[1,-5],[2,-1],[3,-6],[0,-2],[2,1],[3,-6],[1,-2],[2,0],[1,-1],[6,-4],[6,-9],[4,-3],[0,-3],[-4,-2],[-6,3],[0,-3],[-1,-1],[-3,-5],[1,-10],[3,-6],[3,-1],[2,3],[-1,7],[5,9],[4,2],[5,-6],[6,-4],[3,-7],[6,-5],[3,-5],[3,-3],[7,-8],[4,-4],[2,0],[5,-4],[10,-14],[1,-1],[12,-13],[4,2],[4,5],[1,0],[2,1],[1,0],[1,0],[16,-11],[16,7],[-1,-20],[0,-4],[-3,-8]],[[7431,7743],[-4,-6],[0,-3],[6,-8],[6,-3],[9,-5],[1,-2],[-6,-5],[3,-5],[1,-3],[5,-8],[3,-9],[5,-9],[1,-7],[2,-7],[5,-2],[3,0],[4,1],[6,1],[3,-2],[9,-2],[10,-1],[5,-2],[4,-4],[8,-2],[14,4],[4,0],[4,1],[3,-1],[3,2],[2,1],[3,3],[4,-1]],[[7557,7659],[1,-6],[7,-7],[2,-10]],[[7567,7636],[-5,-5],[-22,-9],[-2,-4],[0,-1],[0,-1],[-1,-4],[1,-1],[-1,-2],[4,-4],[0,-2],[2,0],[-1,-2],[1,-1],[-1,-3],[-1,-13],[0,-9],[1,-1],[-1,-1],[0,-7],[-3,-8],[-1,-5],[0,-3],[-1,-8],[-2,-4],[1,-3],[-3,-4],[-6,-12],[-7,-7],[-5,-10],[-6,-12],[2,-3],[-1,-8],[1,-4],[4,-8],[-8,-13],[-6,-4],[-9,-1],[-6,2],[-7,5],[-12,5],[-15,-15],[-7,-7],[-8,-16],[-4,-11],[-4,-14],[-3,-7],[-4,-3],[-3,-2],[-3,0],[-9,-3],[2,-4],[-1,-1],[0,-2],[-7,-1],[-1,-1],[2,0],[2,-2],[4,1],[0,-2],[-2,-3],[3,-3],[-3,-2],[1,-4],[-1,-3],[2,-3],[0,-1],[-2,-1],[0,-3],[3,-4],[-1,-2],[1,-1],[-2,-3],[-4,3],[1,-3],[3,-2],[-4,-3],[1,-1],[3,-1],[0,-1],[-2,0],[-1,-2],[-1,-3],[0,-8],[-3,-1],[-2,1],[-1,0],[-1,-1],[0,-2],[5,-2],[-1,-1],[-2,-3],[2,-1],[2,-1],[0,-1],[-2,-2],[0,-2],[3,-2],[0,4],[1,0],[1,-1],[1,-2],[5,-1],[-3,-2],[-1,-4]],[[8844,9196],[8,2],[7,-5],[3,1],[10,-3],[5,3],[6,-4],[3,2],[6,-5],[4,-3],[-1,-1],[1,-1],[0,-1],[5,-3],[2,2],[7,-4],[2,-1],[1,-6],[2,1],[0,-2],[3,0],[0,1],[1,1],[5,-2],[3,-1],[2,1],[5,5],[2,-1],[3,-6],[-1,-9],[8,-4],[-2,-7],[3,-6],[-1,-4],[1,-3],[1,-2],[0,-3],[3,-6],[3,-1],[4,-6],[2,-1],[1,0],[2,-3],[2,1],[2,-2],[2,0],[0,-2],[2,-2],[3,5],[6,1],[5,0],[-1,0],[1,-1],[1,2],[4,0],[1,1],[6,3],[3,-1],[1,-1],[1,1],[2,7],[12,5],[-1,2],[0,5],[3,2],[1,6],[2,4],[6,2],[7,4],[1,-1],[3,1],[1,1],[5,-4],[2,1],[1,-1],[3,0],[6,-1],[0,2],[3,1],[0,2],[3,-1],[1,2],[4,0],[1,0],[3,1],[2,0],[3,5],[2,2],[5,-4],[1,1],[2,-1],[1,-3],[3,0],[3,-3],[5,1],[2,2],[3,0],[3,-2],[0,-2],[2,-2],[3,-2],[6,1],[1,-1],[0,-4],[6,-4],[5,-1],[3,1],[4,-1],[4,-3],[3,-2],[5,0],[6,1],[3,-1],[1,-3],[-1,-4],[1,-4],[3,-2],[3,-2],[1,1],[2,-1],[0,-3],[4,-2],[4,-9],[4,-4],[7,2],[5,-2],[0,-1],[7,-3],[7,1],[1,3],[3,1],[0,2],[2,3],[0,4],[1,-1],[6,3],[4,-1],[8,-3],[1,-2],[4,-1],[1,-1],[9,0],[3,-1],[5,0],[4,-2],[6,0],[1,1],[0,9],[-2,3],[-1,0],[-3,3],[1,3],[-2,4],[0,1],[-3,3],[0,2],[1,0],[5,-1],[2,0],[1,9],[0,2],[3,2],[6,0],[2,2],[3,0],[6,7],[3,1],[2,-1],[2,2],[3,-1],[6,2],[2,-1],[1,-4],[5,-4],[2,0],[3,3],[5,1],[2,0],[2,6],[3,2],[4,5],[4,0],[3,6],[-1,2],[3,4],[6,-2],[4,0],[1,2],[0,3],[3,2],[2,-1],[3,-3],[5,1],[5,-3],[6,-1],[3,2],[0,3],[3,7],[6,3],[1,2],[1,-3],[5,-3],[3,-5],[6,1],[2,4],[2,0],[5,0],[5,-4],[4,3],[6,2],[3,-1],[2,-7],[1,-3],[4,-7],[4,-2],[2,-4],[3,-1],[2,-4],[2,-1],[4,-1],[3,1],[3,5],[5,2],[2,-2],[5,1],[4,-2],[4,2],[1,-1],[3,1],[5,-1],[0,-1],[-1,0],[-1,-2],[-2,0],[-2,-1],[3,-2],[1,0],[0,-3],[0,-3],[-2,-1],[0,-1],[-1,0],[-1,-2],[-2,-2],[1,-1],[2,0],[1,-2],[-5,-4],[0,-2],[3,-1],[1,1],[2,-1],[-2,-3],[-2,0],[-1,-4],[1,-1],[1,-3],[1,0],[1,1],[0,-1],[1,-2],[-2,-2],[0,-1],[1,0],[-1,-2],[3,-1],[2,-2],[4,-2],[1,-1],[1,1],[0,-1],[-1,-3],[2,-3],[0,-1],[1,0],[2,-3],[3,1],[0,4],[-1,-1],[1,4],[3,-2],[1,2],[1,-1],[0,2],[2,0],[2,-1],[0,1],[1,0],[1,1],[5,-1],[-1,-3],[1,-3],[0,-1],[1,0],[0,-1],[2,0],[1,-2],[1,-2],[0,4],[1,-1],[1,0],[2,0],[0,-1],[0,1],[1,0],[0,2],[0,-1],[0,3],[1,0],[5,-3],[2,0],[0,-1],[-1,-1],[2,0],[2,-1],[0,-2],[0,-2],[1,2],[0,1],[2,-2],[-1,2],[1,0],[3,-2],[2,-1],[0,1],[1,0],[1,-2],[-1,0],[2,-2],[0,2],[1,1],[4,-3],[-1,-2],[-2,1],[1,-2],[-1,0],[-2,1],[1,-2],[-3,0],[0,-2],[0,2],[-1,-2],[-1,0],[0,-1],[-2,-1],[1,-2],[-2,1],[0,1],[-2,0],[-1,0],[1,-1],[-1,-1],[-1,0],[1,-1],[2,0],[-1,-2],[-1,0],[0,-1],[1,0],[0,-2],[-2,0],[0,-1],[2,-2],[0,2],[2,-1],[1,-4],[-1,1],[1,-1],[-1,-1],[-2,0],[-1,0],[0,1],[-3,1],[-1,2],[-2,-1],[0,-3],[2,-1],[-1,0],[0,-1],[1,-3],[1,-1],[0,-2],[2,1],[0,-1],[0,-3],[-3,-6],[1,-1],[-1,1],[0,-1],[-1,-1],[-1,1],[-5,0],[-1,-2],[-3,2],[-1,-1],[2,-2],[-2,-1],[2,-2],[2,0],[2,-1],[-1,-3],[-1,0],[-1,1],[-4,1],[-3,5],[-2,1],[-1,-2],[-3,3],[-2,-2],[2,-2],[0,-1],[-2,0],[2,-2],[-2,-1],[0,-1],[-2,-1],[0,-1],[-1,-1],[-3,3],[-2,0],[1,1],[-1,1],[-4,1],[0,3],[-2,0],[-1,-1],[-4,0],[-1,1],[1,2],[-2,0],[1,1],[0,2],[-1,0],[1,1],[0,1],[-4,4],[-3,0],[-3,-1],[-3,-2],[0,-2],[0,1],[-2,-1],[-4,-4],[-1,-2],[0,-1],[0,1],[0,-1],[-1,0],[-3,-5],[-4,-10],[-3,-11],[0,-14],[3,-22],[1,-5],[2,-1],[-1,0],[1,-2],[-1,0],[1,-1],[0,-1],[1,-1],[3,-1],[0,1],[1,-1],[1,-3],[0,-3],[2,-1],[3,1],[0,2],[2,0],[2,-2],[2,-1],[1,-1],[2,1],[1,-2],[2,0],[-1,-2],[-2,0],[1,-3],[3,0],[1,1],[1,-1],[1,-3],[1,-1],[4,-7],[0,-1],[1,0],[0,-2],[1,1],[1,-1],[-2,0],[0,-2],[3,-3],[0,-1],[3,-1],[0,-2],[-2,0],[1,-2],[0,-1],[2,0],[-2,-4],[1,-1],[-3,0],[-1,0],[-2,-3],[-2,-11],[1,-14],[0,-3],[4,-13],[3,-4],[-1,-2],[1,0],[1,1],[3,0],[2,-2],[2,-1],[1,-2],[-2,-1],[1,-1],[0,-2],[1,0],[1,2],[-1,-3],[-1,-2],[1,-3],[-2,-1],[-1,-2],[-3,-2],[0,-1],[-2,-3],[1,-1],[1,1],[1,0],[-1,-1],[0,-1],[-2,-2],[1,-1],[1,0],[-1,-2],[1,0],[-1,-1],[1,0],[0,-1],[-2,0],[1,-1],[-4,-1],[1,-1],[-1,-2],[2,-2],[-3,-1],[2,-2],[-1,-2],[-1,-1],[-1,-5],[-3,0],[0,1],[-1,0],[0,-2],[-2,-1],[-3,0],[-1,-2],[1,-2],[-2,-2],[1,-2],[-1,0],[0,-5],[-3,-2],[-1,-1],[-2,1],[0,-1],[-2,-2],[-1,1],[0,-1],[-1,2],[-2,0],[-1,-1],[1,-2],[-3,0],[-1,-1],[1,-3],[0,-1],[-6,-2],[1,-3],[-6,0],[4,1],[0,1],[-2,0],[1,0],[-2,2],[-2,0],[-2,1],[-7,-5],[-2,-3],[0,-3],[-2,0],[-2,-3],[0,-1],[-1,-1],[-3,-1],[-3,-4],[-2,-9],[1,0],[-2,-2],[-2,-7],[-1,0],[-1,2],[-1,0],[-2,-1],[0,-1],[1,-2],[-2,-1],[0,-2],[-5,-1],[2,1],[0,1],[-3,0],[0,-4],[1,-1],[-2,-1],[-1,2],[-6,-1],[-5,-4],[1,-1],[-1,1],[-2,-1],[1,-1],[-7,-2],[-1,0],[0,-1],[-2,0],[0,-2],[-2,-1],[-3,-5],[-3,-3],[0,-1],[1,0],[-1,-2],[-2,1],[0,-4],[-1,2],[0,-1],[-2,-1],[0,-2],[-2,-1],[-1,-2],[-3,-2],[1,-2],[-3,-1],[-2,-1],[-2,0],[-3,-3],[-4,2],[-2,-2],[0,-1],[-1,-1],[-5,-2],[-2,2],[-1,-2],[-3,0],[-3,-2],[-5,1],[-3,-1],[-3,-3],[-1,0],[-2,1],[-2,-3],[-3,0],[-3,-2],[0,-2],[-4,-3],[0,-1],[-2,-1],[0,-2],[-1,1],[-1,-1],[1,1],[-2,1],[0,-1],[-1,0],[-1,-2],[-1,0],[-5,-13]],[[8894,9081],[-3,7],[0,4],[-1,1],[1,3],[0,1],[2,4],[-2,1],[1,6],[-1,3],[4,0],[1,2],[0,3],[4,4],[-2,2],[-3,1],[-2,-1],[-3,2],[-1,1],[-1,2],[-5,-5],[-3,-2],[-2,0],[-1,3],[-1,0],[-1,2],[4,10],[-2,9],[3,1],[-2,5],[-2,4],[-2,1],[-1,3],[-8,0],[-3,-2],[-6,3],[-5,0],[-6,5],[0,2],[-2,2],[0,3],[-1,6],[3,7],[-1,3],[-3,5],[3,4]],[[8957,9168],[-7,3],[-4,1],[-1,2],[2,13],[4,2],[0,2],[3,1],[0,5],[1,0],[3,-1],[5,-3],[-1,-1],[-2,-1],[-2,-6],[2,-8],[9,-3],[2,-2],[-1,-3],[-5,-1],[-8,0]],[[7034,6431],[8,-7],[6,-3],[5,-5],[0,-7],[10,-19],[1,0],[3,-4],[4,-2],[2,-6],[7,-7],[4,-2],[0,-1],[3,0],[0,-1],[6,-4]],[[6684,5642],[-3,-1],[-4,-3],[-6,2],[-4,-2],[-4,3],[-2,-1],[-3,1],[-3,0],[-4,0],[-1,-1],[-3,-2],[-6,3],[-3,1],[-1,-1],[-5,3],[-2,0],[-5,-1],[-5,-3],[-5,-3],[-9,-3],[-6,2],[-6,-2],[-3,0],[-4,-3],[-2,-2],[-5,-8],[0,-1],[-3,-1],[0,-1],[-1,1],[-1,-1],[-1,0],[-1,1],[-1,-1],[-4,-1],[0,-1],[-1,0],[-1,-1],[-2,-1],[-1,1],[-1,0],[-2,-4],[-2,1],[-4,-5],[-2,0],[-12,0],[-4,1],[-3,-2],[-6,3],[-15,15],[-2,0],[-1,-1],[1,1],[-1,0],[-1,-1],[1,2],[-2,1],[-1,-1],[0,-1],[3,-3],[-6,3],[-7,-5],[-7,3],[-6,3],[-10,13],[-8,-2],[-7,1],[-4,0],[-2,1],[-3,1],[-2,0],[0,-2],[-3,-3],[-3,-4],[-1,-1],[-6,0],[-2,-2],[-4,4],[-2,-1],[-2,1],[-3,-1],[-1,-1],[-2,-1],[0,-3],[-1,0],[0,-2],[1,-1],[-1,0],[-3,1],[-1,2],[1,3],[-6,6],[-2,0],[-4,-2],[-1,-4],[-1,0],[-2,2],[-1,2],[-2,2]],[[6395,5634],[1,4],[-2,4],[0,1],[1,4],[-2,3],[2,2],[0,5],[2,0],[2,5],[1,1],[1,2],[-3,5],[2,3],[-9,7],[0,2],[-1,3],[-2,0],[0,4],[-1,3],[-8,6],[0,3],[-3,2],[-3,4],[-5,0],[-1,1],[-8,-4],[-1,0],[-1,1],[-2,-1],[-3,1],[-1,1],[0,1],[-2,1],[1,1],[-1,1],[-4,4],[-2,-1],[-2,1],[-4,0],[-2,1],[-2,-1],[-2,4],[-1,3],[-2,3],[-5,0],[-2,2],[-1,-1],[-2,2],[-4,-1],[0,2],[-4,1],[-6,1],[-3,-1],[-4,-1],[-6,4],[-1,1],[-9,4],[-3,-1],[-3,0],[0,2],[-2,5],[-5,4],[-4,2],[0,2],[-4,2],[-2,0],[-2,2],[-4,5],[0,7],[-5,-2],[-12,1],[-13,3],[-1,4],[-3,2],[-7,9],[-7,3],[-3,4],[-3,8],[-1,3],[0,2],[-3,3],[-9,3],[-2,0],[-2,-3],[-6,-2],[1,8],[-1,9],[-3,8],[-1,10],[-1,11],[1,2],[-2,4],[1,6],[-1,2],[0,5],[-2,7],[-3,2],[-2,7],[-3,5],[-6,17],[-2,2]],[[6296,6045],[9,-9],[3,0],[4,-3],[6,-3],[6,1],[6,-1],[6,0],[3,2],[1,1],[9,3],[11,0],[6,-1],[1,0],[2,6],[3,4],[2,0],[1,2],[-2,3],[1,2],[4,5],[0,5],[1,1],[2,4],[3,10],[-2,3],[0,1],[3,0],[4,4],[0,3],[2,4],[-2,0],[0,3],[3,5],[1,1],[2,-2],[1,-1],[0,-7],[2,2],[13,5],[5,0],[1,0],[5,5],[3,4],[6,6],[3,1],[3,2],[5,1],[3,2],[3,-1],[4,3],[8,2],[0,1],[2,-1],[12,12],[4,0],[0,2],[4,2],[5,5],[6,3],[-1,2],[2,2],[9,5],[0,1],[0,1],[-1,6],[1,2],[13,12],[12,-10],[8,-2],[4,-4],[0,-2],[2,-3],[5,-6],[1,1],[4,-3],[7,-2],[5,-2],[6,1],[3,-1],[2,2],[3,0],[4,6],[3,-1],[3,0],[6,4],[2,0],[4,2],[5,1],[1,1],[3,0],[3,4],[1,6],[3,6],[4,3],[4,8],[1,1],[-1,1],[0,3],[13,-1],[2,1],[6,3],[13,0],[7,-1],[9,-10],[1,-1],[3,-2],[1,-1],[1,-1],[6,-5],[3,-2],[8,-1],[0,-2],[3,-4],[3,0],[1,2],[3,0],[1,3],[3,-1],[-1,1],[2,0],[0,1],[2,0],[0,1],[1,0],[2,2],[-1,1],[2,2],[0,2],[2,0],[2,-2],[1,2],[3,0],[-1,-1],[2,-1],[1,0],[0,-1],[1,1],[1,-2],[1,0],[1,-1],[5,-2],[3,0],[0,-1],[3,-2],[3,1],[3,-2],[2,1],[1,2],[-4,5],[3,2],[2,4],[0,1],[-2,5],[18,10],[8,6],[8,4],[4,5],[2,2],[2,3],[-7,2],[-1,3],[-1,12],[1,9],[0,1],[-2,0],[-1,2],[2,6],[0,8],[2,3],[4,3],[4,-1],[3,12],[-1,3],[2,5],[5,8],[1,3],[5,3],[2,2],[1,2],[0,5],[3,1],[0,3],[2,1],[-1,1],[2,3],[2,2],[1,3],[0,3],[-1,1],[2,9],[-1,2],[6,3],[3,5],[2,8],[3,4],[2,6],[4,5],[3,-2],[1,-2],[5,5],[1,2],[4,3],[4,8],[2,0],[1,4],[2,1],[0,4],[2,1],[2,-1],[2,3],[2,0],[1,3],[4,1],[1,-1],[1,1],[3,-4],[2,-2],[2,0],[2,-2],[4,3],[2,0],[3,3],[3,6],[10,5],[5,5],[1,1],[1,2],[2,1],[1,3],[-1,22],[2,6],[-2,3],[-3,1],[0,1],[6,2],[1,3],[2,1],[0,1],[2,0],[1,1],[3,0],[1,1],[-1,1],[3,4],[4,-1],[3,1]],[[6571,8043],[4,4],[-1,1],[1,2],[4,-1],[0,-3],[-1,-2],[-1,1],[0,-2],[1,0],[-2,-3],[-5,3]],[[6649,8460],[2,0],[1,0],[4,-1],[1,1],[5,-2],[3,-1],[3,-2],[7,-2],[3,0],[5,-3],[3,2],[7,-2],[4,-5],[1,0],[1,3],[2,-1],[3,-2],[5,-1],[5,-3],[0,2],[3,0],[8,3],[8,5],[3,-2],[2,-1],[12,4],[6,1],[0,1],[7,-1],[3,3],[2,5],[-1,5],[3,0],[5,3],[6,2],[2,4],[3,-2],[5,0],[2,-2],[3,0],[3,-3],[1,-2],[-2,-9],[3,-4],[1,-3],[0,-4],[-2,-4],[16,-7],[4,-3],[0,-1],[8,0],[5,-2],[5,0],[3,-2],[-1,4],[5,8],[2,3],[14,-2],[6,3],[1,-9],[2,-6],[7,-4],[11,-5],[7,2],[3,0],[1,-2],[5,-3],[-1,-5],[3,-6],[2,4],[0,1],[3,-2],[13,3],[0,-1],[1,-6],[-3,-8],[-3,-3],[-3,-1],[-6,1],[-1,-5],[1,-3],[8,4],[11,-6],[0,-1],[-2,-8],[-1,-2],[-4,-3],[-1,-3],[6,-7],[3,-1],[3,4],[6,1],[6,3],[2,7],[9,-10],[0,-6],[2,-4],[1,-7],[3,-1],[7,-1],[1,1],[2,-3],[5,-14],[0,-8],[9,0],[1,-2],[2,2],[1,-3],[0,-1],[5,1],[0,-4],[4,-4],[0,-1],[3,2],[5,0],[8,8],[1,2],[4,1],[8,5],[2,-6],[7,-6],[2,-1],[3,-6],[3,3],[6,2],[4,4],[1,0],[3,-4],[10,2],[13,18],[5,-2],[21,-6],[0,2],[3,5],[11,4],[3,9],[2,1],[6,-9],[4,-4],[5,-3],[5,-1],[2,-3],[3,-2],[-1,-3],[3,-3],[3,-2],[4,0],[3,6],[-4,3],[-3,7],[0,5],[2,1],[-1,5],[1,4],[4,4],[0,2],[0,11]],[[7163,8363],[2,3],[4,2],[13,1],[9,3],[2,2],[10,4],[1,1],[5,-4],[0,-3],[4,-6],[0,-3],[3,-5],[5,-3],[7,0],[2,1],[4,-1],[5,-6],[5,-10],[6,-4],[9,-2],[4,-2],[2,-1],[2,1],[1,-1],[5,-3],[3,-5],[3,-3],[8,-6],[4,-5],[2,-2],[1,-1],[-1,-1],[0,-2],[4,-4],[1,-5],[4,-2],[4,-4],[2,-2],[5,-6],[10,-10],[5,-4],[2,-3],[4,-1],[2,-2],[2,-6],[1,0],[9,-10],[8,-6]],[[7356,8237],[2,-4],[2,-6],[-1,-6],[-2,-6],[-5,-6],[3,-12],[7,-12],[3,-3],[1,-1],[1,-2],[2,-3],[6,-8],[2,-1],[3,1],[3,-2],[1,-1],[0,-2],[4,-5],[1,-3],[2,-11],[-1,-5],[1,-3],[-2,-2],[0,-5],[1,-3],[0,-2],[-7,-7],[-3,-6],[2,-13],[2,-2],[1,-4],[-1,-2],[5,-5],[2,-5],[1,-2],[-2,-3],[1,-15],[-6,-9],[-1,-8],[-5,-9],[4,-5],[1,-2],[4,-6],[-2,-1],[-3,-4],[-12,-10],[-2,-1],[-5,-4],[-14,9],[-2,2],[-14,1],[-4,7],[-1,-1],[-4,-7],[-3,-1],[2,-7],[-6,-18],[3,-16],[0,-11],[1,-5],[-18,-9],[-7,-5],[-4,-8],[-3,-5],[-2,-5],[-3,-3],[-4,-10],[-3,3],[-2,0],[-2,-3],[-1,-6],[0,-2],[-1,-1]],[[6711,7751],[-1,1],[-4,3],[1,5],[-4,8],[1,2],[-1,3],[1,3],[-2,1],[2,2],[2,3],[-2,4],[2,6],[-1,3],[-2,3],[-2,3],[1,3],[0,3],[-5,7],[1,5],[-1,4],[-1,2],[-3,2],[-1,3],[-1,0],[-7,-5],[-7,-7],[-4,-2],[1,-1],[-4,-3],[-6,-11],[0,-3],[-2,1],[-1,3],[-1,2],[-6,2],[0,7],[6,7],[-2,5],[3,8],[-1,3],[1,4],[-1,1],[0,2],[2,5],[7,7],[0,1],[4,2],[1,5],[-2,2],[4,3],[0,2],[2,0],[0,1],[-1,1],[0,3],[-2,1],[-2,4],[2,3],[-1,1],[5,2],[-2,7],[4,1],[0,5],[2,5],[-5,4],[-2,5],[-1,2],[-1,2],[0,3],[-2,5],[-6,0],[-2,-2],[-2,2],[-9,2],[-1,2],[1,9],[-1,2],[2,9],[-3,11],[1,2],[1,3],[-1,7],[-11,7],[-1,5],[-2,2],[1,-4],[-3,1],[-3,2],[-3,5],[-10,-6],[-2,0],[-3,1],[-3,-3],[-3,4],[6,7],[-1,0],[2,2],[-3,4],[2,3],[-1,1],[1,2],[0,2],[-1,1],[-3,0],[-1,1],[-1,0],[-2,2],[-4,1],[-9,11],[1,1],[-1,1],[1,2],[-1,0],[1,1],[-1,1],[4,3],[-3,5],[-4,3],[0,1],[3,0],[3,2],[1,7],[3,5],[-1,3],[0,-2],[-3,-5],[-4,-2],[-2,1],[-1,-3],[-3,1],[1,2],[-9,4],[0,2],[1,2],[-2,4],[0,2],[-3,3],[0,6],[-3,3],[-1,0],[-3,3],[-2,3],[-3,-1],[-2,-8],[0,-5],[-2,1],[-2,0],[-3,6],[-2,-1],[0,2],[-1,-7],[-4,2],[-2,-1],[-1,3],[-2,0],[0,3],[-4,3],[-5,1],[0,2],[3,0],[-1,3],[3,4],[0,3],[5,3],[2,4],[1,1],[2,5],[-2,3],[-1,2],[-3,-3],[-1,3],[0,2],[1,0],[2,8],[0,4],[-2,2],[1,0],[-2,5],[-3,3],[-1,3],[-3,1],[-9,1],[-5,2],[-6,0],[1,2],[3,-2],[0,6],[1,1],[2,-1],[2,1],[0,5],[4,5],[0,2],[2,4],[-1,8],[4,2],[0,2],[-3,4],[3,0],[1,3],[-3,4],[1,1],[10,8],[2,0],[2,-1],[-1,5],[0,3],[1,2],[-3,3],[-1,-1],[-2,3],[-2,-1],[-1,1],[1,2],[-1,1],[1,2],[0,1],[3,-2],[3,1],[-2,3],[2,4],[-1,2],[5,7],[1,2],[0,6],[1,2],[2,6],[3,5],[1,4],[1,2],[-1,6],[8,5],[3,3],[-2,5],[-4,5],[-7,6],[-3,9],[0,1],[-4,0],[0,3],[2,2],[0,2],[1,3],[0,3],[2,2],[1,4],[-1,6],[1,1],[-3,1],[-2,-1],[-2,-1],[-1,1],[-2,-1],[-3,1],[-1,2],[-8,5],[-4,-1],[-2,0],[-1,4],[1,3],[-2,2],[0,3],[-3,7],[-5,6],[-8,4],[-2,4],[-3,2],[2,6],[-2,3]],[[6501,8374],[6,1],[5,-2],[3,3],[1,0],[3,7],[3,-1],[3,2],[2,0],[3,2],[4,-1],[-1,2],[1,2],[2,1],[3,7],[3,3],[2,5],[8,0],[2,1],[5,-3],[3,1],[-1,3],[1,6],[-2,4],[4,6],[-1,3],[1,4],[-3,3],[-2,0],[-2,3],[0,5],[2,-8],[2,1],[5,-3],[11,2],[6,-2],[4,-1],[5,-1],[2,1],[0,2],[4,2],[0,-1],[4,1],[3,-1],[1,-1],[3,-1],[3,1],[1,5],[6,5],[2,0],[2,-2],[3,-1],[2,-7],[7,13],[-1,2],[0,1],[1,1],[0,1],[6,7],[5,0],[3,3]],[[7306,9693],[0,-1],[-3,1],[-2,0],[0,-1],[-1,1],[-3,-2],[-2,-2],[-1,1],[-2,-1],[0,-1],[-2,-1],[-3,2],[-5,-1],[-1,-5],[-4,-2],[1,-4],[-1,-3],[1,-5],[-2,-2],[1,-4],[-2,-1],[-2,-1],[-1,-2],[-1,-1],[-5,0],[-1,-1],[0,-4],[-1,-1],[-3,0],[-1,-1],[-1,0],[1,-2],[-1,0],[0,1],[-2,-1],[-2,0],[-1,-1],[-1,1],[0,2],[-1,-1],[0,-2],[-1,-1],[0,-2],[-2,0],[1,0],[1,-1],[-3,1],[0,-4],[-1,0],[-1,1],[1,2],[-2,1],[1,2],[-1,2],[1,0],[-1,1],[0,3],[-3,-3],[-1,3],[0,1],[-2,-3],[1,0],[-1,-2],[1,-1],[-1,-1],[3,-1],[-1,-1],[-2,0],[1,-1],[-1,-1],[1,2],[1,-1],[-1,-2],[1,0],[0,-2],[-2,1],[-1,0],[0,-1],[0,-2],[-2,5],[-1,-1],[0,-1],[0,-3],[-1,2],[-2,0],[-3,1],[-2,3],[2,1],[-3,1],[0,2],[0,1],[-1,2],[-2,-3],[1,-1],[0,-7],[1,-4],[-1,-6],[-4,-4],[0,-5],[1,-4],[2,-2],[0,-3],[-1,-3],[-1,-2],[0,-4],[4,-3],[2,0],[1,-1],[1,-2],[0,-3],[-6,-4],[-2,-4],[0,-2],[-1,-3],[-4,-1],[-1,-2],[-2,-1],[0,-1],[0,-1],[-3,-1],[-2,-2],[1,-2],[-8,-1],[-3,-2],[1,-4],[-1,-1],[-3,-1],[-1,-1],[-1,0],[-2,-1],[-1,0],[-9,-4],[-1,0],[-1,-1],[0,-3],[-3,-1],[2,-7],[-2,-4],[-4,-6],[0,-3],[-5,-2],[2,-8],[3,-6],[-1,-4],[1,-1],[1,0],[-2,-7],[-2,-1],[0,-3],[-3,-1],[-3,0],[-1,-2],[-14,0],[-5,-2],[-1,-8],[-3,-4],[1,-2],[-2,-1],[-5,-4],[-2,0],[-3,-2],[-2,1],[-1,1],[-1,-1],[-2,1],[-4,0],[-2,0],[-5,-4],[-3,0],[-3,0],[1,2],[-6,6],[-3,2],[-2,-1],[-3,0],[0,-3],[-2,-2],[0,-3],[-2,-2],[-6,-1],[-1,-2],[0,-1],[-1,-4],[0,-15],[-1,-1],[-4,1],[-1,-1]],[[6943,9565],[1,2],[2,0],[6,2],[5,-3],[5,3],[1,1],[-2,0],[2,13],[2,3],[-3,11],[1,7],[-2,2],[-2,4],[1,3],[2,-1],[1,2],[6,1],[1,1],[-2,5],[-1,1],[1,4],[1,9],[-2,0],[-2,3],[-1,2],[0,1],[0,5],[2,4],[2,-1],[3,0],[4,-2],[5,1],[1,2],[7,7],[1,2],[3,2],[-1,5],[7,6],[2,4],[-2,3],[-1,2],[-2,4],[-5,3],[2,7],[2,2],[1,4],[4,3],[2,4],[1,1]],[[7002,9709],[1,0],[0,2],[5,-2],[9,-6],[0,-1],[-2,-2],[2,1],[2,0],[2,1],[0,-2],[2,-1],[1,0],[3,-1],[0,-1],[1,-2],[3,0],[1,3],[10,-4],[1,1],[2,-1],[3,1],[7,-3],[4,0],[6,3],[2,0],[-1,1],[3,-1],[1,2],[0,1],[5,0],[0,-1],[1,0],[3,1],[1,3],[5,1],[5,-1],[4,-3],[1,1],[0,3],[1,1],[1,-2],[-1,-2],[-1,-2],[5,-2],[1,-4],[3,1],[2,-2],[0,-2],[12,2],[0,2],[1,0],[3,-1],[1,0],[3,-1],[1,-2],[1,0],[0,2],[1,-1],[2,3],[1,0],[0,1],[2,1],[2,1],[13,6],[4,-1],[1,2],[10,2],[2,2],[2,0],[2,1],[5,1],[1,1],[4,0],[0,1],[2,1],[1,-2],[0,-2],[3,-2],[4,1],[2,2],[-4,3],[3,2],[4,-3],[0,1],[3,2],[0,5],[2,-1],[0,1],[2,0],[1,1],[5,-2],[0,-1],[1,-1],[3,3],[4,0],[0,-2],[2,-1],[2,1],[-2,2],[5,0],[3,3],[7,3],[4,2],[1,0],[3,9],[1,0],[1,3],[3,2],[1,-1],[1,3],[1,1],[2,-1],[2,3],[0,-1],[2,-2],[2,3],[5,3],[2,0],[1,-1],[3,2],[5,1],[6,5],[0,-1],[1,0],[-1,-2],[1,0],[-1,-1],[0,-2],[0,1],[-4,-4],[1,-4],[1,-2],[1,3],[-1,-3],[1,-2],[2,-3],[3,-2],[-4,-4],[2,-2],[4,-2],[0,-2],[2,-1],[4,1],[3,0],[2,-2],[0,-4],[1,-2],[5,0],[1,-1],[0,-6],[-2,-2],[2,-2],[-1,-2],[2,-1],[2,-8]],[[5327,6379],[-1,-2],[0,-6],[6,-12],[1,0],[1,5],[4,-1],[2,2],[0,-2],[1,0],[1,3],[1,0],[3,-7],[3,0],[3,-3],[0,-1],[0,-1],[-5,-3],[-3,-7],[-1,-1],[-2,-4],[-4,-2],[-1,-5],[-2,-2],[1,-3],[2,-2],[2,-1],[3,2],[2,-1],[2,-6],[1,-1],[0,-5],[3,-2],[1,-9],[2,0],[0,-1],[-2,-3],[1,-4],[-1,-5],[-5,-1],[2,-3],[0,-1],[-1,1],[-3,-2],[-2,4],[-3,1],[-1,-2],[-1,-1],[-2,3],[-2,-1],[-1,2],[-2,0],[1,1],[-2,0],[-4,7],[-1,0],[-7,-2],[-2,-3],[0,-2],[-2,-1],[-1,-3],[1,-3],[2,-9],[-1,-2],[2,-2],[-6,-7],[-1,-4],[2,-3],[-2,-1],[0,-1],[-3,0],[1,1],[-4,-2],[0,4],[-1,0],[-3,-2],[-2,0],[-2,1],[-1,2],[0,1],[4,-1],[1,1],[-2,7],[-2,2],[-2,-1],[-4,0],[-2,-1],[-3,0],[-11,2],[-4,2],[-4,-1],[-4,-3],[-9,-1],[-2,-1],[-3,-1],[-7,-3],[-6,-1],[-15,-9],[-3,-4],[-9,-5],[-2,2],[-2,-1],[-6,3],[-4,-2],[1,-1],[-1,0],[1,-3],[2,-1],[1,-3],[-1,0],[0,2],[-2,-1],[0,-3],[-2,-3],[0,-2],[-2,0],[-1,-1],[0,-1],[-1,-2],[0,-1],[-4,-1],[2,-4],[-1,-3],[0,-4],[-1,-2],[-1,-1],[-1,2],[-2,-3],[-2,1],[-2,-2],[-1,1],[-1,0],[-2,-4],[-2,0],[-1,-4],[1,-3],[-1,-3],[3,-3],[0,-1],[-2,-1],[0,-2],[-2,-2],[1,-4],[0,1],[2,-1],[-1,-1],[2,0],[1,-2],[0,2],[2,1],[0,1],[1,-1],[3,3],[1,-2],[1,2],[1,-2],[1,2],[2,-2],[1,1],[0,-2],[-1,0],[0,-1],[1,1],[0,-2],[4,2],[0,-1],[2,-2],[0,3],[1,0],[1,0],[1,-1],[2,2],[1,-1],[0,1],[2,-1],[1,1],[1,-1],[3,2],[0,-2],[3,0],[2,2],[2,-1],[2,0],[2,-1],[1,1],[2,0],[3,-2],[2,1],[1,-4],[5,-1],[1,-1],[1,0],[-1,-1],[1,-3],[-2,-2],[1,0],[-2,0],[0,-1],[1,-1],[0,-1],[-1,-1],[1,0],[0,-2],[3,-2],[-1,-2],[0,-1],[-3,1],[-1,-3],[5,-16],[1,-2],[3,0],[3,-2],[4,-7],[-1,-5],[1,-6],[2,-2],[2,-7],[-1,0],[1,-2],[1,0],[0,-3],[5,-2],[2,-3],[4,-11],[0,-3],[3,-5],[0,-1],[1,-1],[1,-2],[1,0],[3,-3],[0,-3],[2,-4],[1,-5],[-3,-3],[-1,-2],[-3,1],[-3,-2],[-2,-1],[-11,-2],[-3,-6],[4,-3],[-1,-7],[-3,-6],[3,-1],[0,-2],[3,-2],[2,-2],[-2,-2],[-6,-4],[-2,-4],[-3,0],[-2,-2],[-3,-5],[6,-6],[12,-9],[5,-9],[-1,-6],[-1,-1],[-1,-3],[-1,-1],[0,-2],[3,-2],[-6,-5],[-2,-7],[1,-3],[-2,-5],[-2,-3],[7,-12],[-1,-5],[-2,-1],[1,-3],[-2,-3],[1,0],[-1,-2],[2,-9],[6,-7],[-6,-11],[-2,-1],[0,-2],[-3,-5],[2,-3],[3,-1],[1,-2],[2,-1],[0,-3],[0,-1],[-3,0],[-2,-2],[-3,0],[2,-4],[-5,-4],[-4,-5],[-4,-8],[0,-6],[2,-9],[0,-7],[11,-30],[1,-8],[-3,-9],[0,-8],[-1,-8],[-5,-6],[-2,-1],[3,-5],[7,-5],[5,-8],[5,-2],[1,-3]],[[5250,5668],[-1,2],[-7,0],[-2,2],[-6,1],[-1,1],[-4,7],[-10,33],[-8,20],[-11,17],[-18,23],[-6,7],[-17,15],[-16,14],[-10,6],[-14,11],[-36,25],[-31,20],[-12,5],[-8,5],[-9,4],[-8,5],[-5,5],[-3,-2],[-3,-3],[-2,0],[1,2],[-2,-1],[-4,4],[-1,-1],[-3,3],[-4,1],[0,-1],[0,-1],[0,-1],[-2,2],[-2,1],[1,0],[1,1],[-2,0],[1,2],[-2,-1],[-7,4],[-24,15],[-3,2],[-10,3],[-2,-1],[-3,-2],[-2,2],[-1,0],[-1,2],[1,-2],[-2,-1],[-16,1],[-21,0],[-33,-2],[-25,-2],[-11,-4],[-8,-1],[-1,-2],[-1,-1],[1,-1],[-5,-2],[-5,-5],[-5,-2],[-7,0],[-5,4],[-4,-2],[-2,6],[-3,18],[0,7],[-3,8],[-5,5],[-1,3],[1,6],[4,8],[0,2],[-5,8],[-2,7],[-2,5],[0,3],[2,8],[-3,10],[0,3],[3,4],[1,4],[-1,12],[-1,6],[-1,3],[-4,5],[-3,2],[-2,3],[1,2],[5,1],[1,1],[1,2],[-4,4],[-2,4],[0,4],[1,7],[-5,9],[-1,5],[0,4],[3,3],[-1,3],[-9,5],[-3,8],[1,5],[-1,2],[-1,1],[-6,-1],[-2,3],[0,7],[-4,7],[-1,5],[2,1],[3,1],[2,-2],[0,6],[-2,-1],[-1,2],[0,2],[6,4],[0,3],[2,7],[-2,2],[-1,4],[3,2],[3,-2],[2,3],[-1,2],[3,4],[-1,3],[2,1],[4,0],[0,7],[1,0],[2,4],[-2,4],[1,0],[4,-2],[1,1],[0,5],[1,2],[-1,0],[-1,2],[5,1],[-2,7],[-1,2],[2,2],[2,4],[-2,6],[1,2],[1,0],[1,-1],[1,1],[-1,3],[2,7],[0,1],[2,1],[2,8],[-1,3],[1,2],[4,2],[-2,6],[1,3],[3,0],[2,2],[0,3],[1,0],[2,0],[2,-2],[1,1],[1,3],[5,3],[1,4],[5,3],[1,4],[3,1],[2,3],[3,2],[1,2],[2,0],[3,4],[5,2],[1,2],[0,3],[3,3],[2,5],[3,2],[1,2],[2,8],[3,3],[1,3],[3,7],[-1,7],[0,6],[4,0],[0,4],[2,1],[1,4],[2,3],[0,4],[2,-1],[1,0],[-1,7],[2,3],[0,4],[-1,0],[3,6],[-1,3],[1,5],[-6,6],[0,2],[1,-1],[1,2],[1,0],[1,2],[2,1],[0,2],[3,1],[4,-1],[1,1],[2,-2],[2,1],[3,3],[4,2],[0,1],[2,2],[5,-1],[2,1],[1,-4],[3,1],[2,-3],[3,2],[1,-2],[2,1],[1,-1],[3,3],[0,1],[2,2],[4,-2],[2,0],[5,3],[-4,4],[1,5],[-2,1],[3,1],[0,2],[-1,1],[0,1],[3,2],[1,-1],[0,1],[1,0],[1,3],[1,0],[0,-1],[2,3],[2,0],[2,2],[2,-1],[0,-1],[2,0],[0,-1],[3,-2],[0,-1],[1,1],[3,-2],[1,1],[2,0],[0,-2],[0,-2],[1,1],[1,-1],[0,-5],[2,-1],[0,1],[3,0],[2,-1],[1,-2],[1,2],[2,0],[3,3],[3,2],[3,-3],[4,0],[2,1],[1,0],[-1,5],[2,4],[-1,4],[1,4],[4,3],[0,10],[1,3],[-1,10],[1,7],[3,0],[1,1],[1,0],[1,2],[2,2],[-1,2],[3,9],[1,1],[-1,0],[0,2],[3,0],[1,2],[-1,1],[-1,1],[1,3],[0,3],[3,1],[-2,3],[-2,-1],[-3,3],[0,4],[1,1],[4,9],[10,12],[1,4]],[[7674,9351],[1,2],[-1,4],[1,5],[1,0],[1,1],[3,0],[7,-2],[3,2],[1,3],[0,1],[2,0],[5,10],[-1,4],[-4,4],[-1,3],[4,3],[-1,10],[0,3],[-1,3],[0,8],[7,4],[2,5],[4,4],[3,0],[1,1],[-1,2],[3,3],[-1,1],[0,4],[1,2],[-2,0],[-1,3],[1,4],[2,3],[2,0],[4,2],[5,6],[0,1],[3,2],[13,1],[3,-1],[1,-2],[7,0]],[[7751,9460],[-3,-4],[1,-7],[0,-2],[2,-2],[0,-2],[2,0],[0,-1],[3,-3],[6,-1],[2,-3],[8,3],[1,1],[1,-3],[5,-2],[2,-5],[0,-3],[2,-3],[3,-3],[6,-1],[2,-1],[5,-8],[8,-4],[0,-2],[-1,0],[1,-2],[0,-3],[2,-3],[-1,-8],[4,0],[2,1],[2,0],[3,2],[3,-1],[2,-4],[-3,-6],[0,-4],[1,-1],[3,0],[2,0],[2,-1],[1,-2],[1,6],[2,4],[6,-1],[3,4],[-1,3],[1,6],[4,4],[2,3],[2,2],[2,0],[1,-4],[3,-3],[4,0],[2,-4],[7,-3],[4,0],[4,-5],[2,-1],[0,1],[5,2],[4,4],[2,0],[1,-1],[4,1],[5,-3],[0,-1],[4,1],[1,4],[8,5],[0,3],[2,1],[2,5],[3,3],[1,1],[1,0],[1,-1],[3,1],[2,-2],[2,0],[1,2],[1,0],[1,3],[3,4],[3,-4],[3,-2],[4,0],[5,-1],[1,1],[2,-7],[4,-1],[1,-2],[3,-2],[4,1],[0,1],[1,1],[0,-2],[2,-1],[0,-3],[0,-3],[0,-1],[5,-2],[2,-2],[1,1],[2,-4],[3,0],[5,-1],[2,-2],[1,0],[1,-1],[0,-2],[2,1],[3,-2],[4,4],[4,4],[2,-3],[0,-4],[-2,-4],[5,-4],[-1,-1],[0,-2],[4,0],[1,-2],[1,-3],[6,-6],[2,-4],[1,-4],[3,-2],[1,-2],[-1,-4],[2,-3],[2,1],[3,-1],[3,0],[4,-2],[4,1],[3,-6],[-1,-1],[1,-8],[4,-1],[2,1],[15,-6],[7,0],[5,5],[0,5],[7,0],[10,-3],[1,1],[3,-1],[5,4],[1,4],[2,3],[3,1],[3,1],[7,-5],[3,1],[4,2],[5,1],[1,1],[3,3],[5,1],[4,-1],[0,4],[6,3],[0,2],[4,-1],[3,-2],[2,1],[5,-2],[9,-8],[0,1],[2,0],[2,-1],[6,1],[4,-2],[1,-3],[3,-5],[0,-2],[-2,-4],[3,-1],[7,-7],[3,-2],[1,-2],[8,6],[3,1],[1,-1],[2,5],[-1,2],[0,1],[1,1],[-1,5],[6,3],[3,0],[4,5],[2,0],[1,3],[5,-3],[2,-3],[3,-2],[3,1],[1,0],[2,-12],[7,1],[2,0],[2,-3],[6,0],[5,1],[2,2],[3,-1],[5,1],[3,3],[6,-1],[3,-3],[10,-1],[1,1],[0,3],[3,3],[4,-1],[4,0],[9,-2],[6,-3],[1,2],[4,-1],[1,5],[2,2],[3,-3],[6,-3],[5,-1],[6,-1],[3,1],[1,-1],[4,-1]],[[8368,9319],[0,-2],[3,-3],[2,-1],[1,-2],[1,-5],[2,-1],[0,-2],[3,-1],[2,-3],[2,0],[2,-16],[-1,-2],[5,-6],[4,0],[2,-2],[3,-1],[1,0],[2,-2],[2,0],[2,2],[2,-2],[8,-1],[-1,-5],[-2,-5],[0,-9],[-1,-2],[0,-3],[-5,-10],[0,-2],[-3,-5],[4,-6],[-2,0],[-4,3],[-5,-6],[-1,-3],[1,-3],[-2,-5],[4,0],[5,-4],[-3,-1],[-2,-4],[-1,0],[-6,-6],[-4,4],[-2,1],[0,-3],[-1,-3],[-3,1],[3,-9],[4,-5],[1,-4],[-1,-1],[0,-5],[2,-6],[0,-2],[4,-4],[3,-2],[3,-6],[1,-2],[-1,-4],[-2,0],[-1,-1],[4,-4],[1,0],[1,-5],[1,1],[2,-5],[-2,-3],[-3,-2],[-1,-3],[-4,-1],[-1,-1],[0,-2],[5,-2],[1,0],[5,-3],[6,0],[2,-1],[0,-1],[3,-2],[-2,-1],[-2,-1],[-2,1],[0,-1],[-2,0],[0,-2],[-2,-1],[-2,-3],[-2,0],[1,-7],[3,0],[2,-1],[2,1],[3,-2],[-4,-6],[0,-3],[-5,-5],[0,-9],[-3,-3],[1,-7],[-2,-11],[-1,-2],[-2,-2],[-2,-3],[-2,-6],[-2,-4],[-1,-2],[2,-1],[-2,-3],[0,-3],[-2,-4],[0,-4],[-1,-4],[-2,0],[1,-3],[-3,-8],[2,-2],[5,-4],[-4,-3],[-4,-4],[0,-8],[1,-8],[2,-3],[-1,-9],[-2,-3],[0,-2],[-5,-4],[-2,-10],[-5,-9],[0,-6],[0,-2],[1,-1],[-2,-3],[-4,-1],[0,-5],[-2,-4],[2,-7],[3,0],[-3,-8],[-5,-3],[-1,-3],[1,-3],[-2,-3],[0,3],[-1,5],[-7,-2],[-3,-3],[1,-2],[-1,-1],[-3,-8],[-3,-2],[1,-3],[-6,5],[-2,-2],[-1,-3],[-3,-2],[-1,-2],[-5,-6],[-1,-4],[0,-4],[6,-1],[0,-1],[12,-4],[2,-2],[-6,-1],[0,-1],[3,-5],[-2,-9],[0,-3],[-2,-3],[7,-3],[0,-4],[-2,-2],[-4,-1],[-2,-1],[-2,0],[0,-1],[-2,-1],[1,-3],[-1,-4],[-8,1],[-2,1],[-3,-3],[0,-6],[1,0],[0,-3],[-2,-5],[-3,-4],[-8,1],[-2,-1],[-2,1],[-2,-1],[-4,-4],[-1,-4],[-2,-2],[-3,0],[-2,-2],[-4,-9],[-2,-13],[-3,-2],[-7,1],[-4,-2],[-13,-1],[-4,-2],[-1,1],[0,-2],[0,-1],[-2,-9],[1,-4],[-5,5],[-5,-10],[-2,1],[0,-7],[-2,-2],[-6,-5],[-4,-4],[-3,-5],[-3,-4],[-1,-4],[0,-8],[3,-2],[7,-14],[3,-1],[1,-2],[-5,-6],[1,-14],[19,-3],[5,-1],[11,6],[3,-6],[1,-5],[-2,-2],[-1,-2],[1,-6],[-1,-2],[4,-6],[4,-8],[-2,-1],[-5,-6],[-2,-5],[-4,-4],[-6,-10],[-3,-6],[-2,-1],[-4,-2],[-6,-1],[-2,1],[-9,1],[-2,-2],[0,-2],[1,-6],[0,-5],[1,-2],[3,-4],[1,-1],[-3,-6],[-1,-7],[0,-3],[-2,-8],[-3,-3]],[[8224,8525],[-9,5],[-3,1],[-28,6],[-4,-1],[-3,-6],[-2,-1],[-2,-3],[-1,-4],[-9,0],[-4,-5],[-4,-1],[-2,2],[-1,4],[-1,1],[-3,1],[-3,-6],[-12,-5],[-4,-6],[-2,-7],[0,-3],[-5,-8],[-2,1],[-4,-1],[-3,0],[-2,1],[-1,2],[-1,-2],[-15,2],[-3,0],[-9,3],[-3,0],[-2,5],[1,3],[-4,9],[-10,6],[0,-3],[-1,0],[1,-1],[0,-3],[-2,-2],[0,-3],[5,-9],[0,-2],[4,-8],[-11,7],[-7,1],[-1,4],[-8,4],[-1,2],[-1,11],[-5,14],[0,9],[-9,34],[-6,9],[-7,13],[-10,8],[1,3],[-2,5],[0,4],[1,3],[0,6],[-5,8],[4,2],[1,3],[-12,6],[-10,2],[-9,-10],[-6,-9],[-2,1],[-9,10],[-4,1],[-2,2],[-2,1],[-1,1],[-1,0],[-7,6],[-1,4],[0,1],[-1,3],[-2,2],[-7,0],[-4,4],[-4,1],[-3,1],[-1,-1],[-3,4],[0,4],[-2,9],[1,3],[-2,9],[1,1],[-3,2],[-1,3],[-1,1],[-3,-1],[-6,5],[-2,0],[-4,3],[-4,0],[0,2],[-4,1],[-5,0],[-2,-1],[-1,3],[-4,2],[-2,1],[1,1],[-3,0],[-1,4],[-3,0],[-2,2],[-2,-1],[-1,4],[-2,1],[-4,0],[-3,-2],[-6,0],[0,2],[4,6],[3,3],[-1,4],[2,5],[-2,2],[0,5],[-1,2],[0,2],[-2,4],[2,4],[-2,4],[1,6],[-3,3],[0,8],[1,2],[-1,5],[-3,4],[0,3],[-2,3],[-2,0],[-3,3],[-1,0],[-2,3],[-3,3],[-1,2],[-3,1],[-4,2],[-6,0],[-3,3],[-1,1],[-4,0],[2,4],[1,6],[-1,2],[-8,3],[-6,4],[-1,4],[-9,15],[0,2],[-3,7],[-1,0],[-12,0],[-4,-1],[-11,2],[-1,1],[-2,-1],[-4,-4],[-18,3],[-8,3],[-8,5],[0,2],[-3,0],[-5,4],[-5,2],[-5,4],[-1,0],[-3,5],[-2,1],[-2,0],[-6,2],[3,3],[5,3],[0,1],[6,5],[2,2],[0,10],[-1,2],[-2,1],[0,2],[1,2],[4,3],[8,15],[10,9],[0,-14],[5,-12],[3,-2],[5,3],[0,2],[1,1],[2,1],[3,3],[-2,3],[3,4],[-5,5],[2,1],[5,0],[0,1],[0,1],[-2,1],[-1,5],[1,2],[2,2],[0,1],[-1,3],[2,4],[0,2],[-3,3],[1,2],[2,-1],[0,2],[-2,7],[1,4],[4,3],[-1,2],[-3,1],[-1,3],[-1,3],[4,1],[-1,1],[-3,2],[3,3],[0,4],[0,3],[1,4],[-4,3],[-1,6],[0,10],[0,2],[2,10],[-1,8],[4,0],[1,9],[2,1],[6,7],[1,4],[-4,12],[-2,9],[1,2],[-2,3],[0,1],[3,2],[-1,2],[2,4],[-1,2],[-3,1],[0,2],[0,1],[3,2],[0,2],[-3,3],[-1,2],[-4,1],[-10,7],[-1,-3],[1,-2],[0,-3],[-1,-1],[0,-3],[1,-4],[2,-1],[1,-1],[0,-10],[-4,-17],[-3,-7],[-2,-6],[0,-1],[-6,-14],[-4,-5],[-6,6],[-2,-1],[-5,6],[-7,-5],[-4,4],[-4,0],[-1,-2],[-2,-2],[-2,-6],[-1,-1],[0,-4],[1,-1],[-1,-2],[0,-2],[2,-3],[-1,-2],[-2,0],[-2,2],[1,2],[-3,2],[-4,1],[-3,2],[0,3],[4,5],[2,4],[0,1],[5,4],[0,2],[2,0],[-2,4],[0,3],[2,2],[0,1],[1,2],[-1,2],[2,1],[2,6],[3,2],[2,3],[1,1],[0,2],[4,4],[3,12],[1,3],[2,2],[1,4],[-2,0],[0,1],[1,2],[0,4],[1,1],[3,-3],[6,2],[2,6],[-3,2],[-2,-2],[-4,1],[-2,2],[0,2],[-1,1],[0,2],[-18,9],[-5,4],[-5,5],[4,5],[-4,3],[1,3],[3,2],[0,2],[7,-2],[2,3],[0,3],[-1,2],[-5,4],[-3,2],[3,7],[-1,2],[-1,4],[2,3],[-1,3],[-3,1],[-5,-3],[-1,-2],[-6,-1],[-3,2],[0,3],[2,2],[0,4],[5,11],[9,1],[1,7],[-2,6],[-4,-1],[-5,-2],[0,5],[-2,0],[1,5],[-3,0],[-1,-1],[-1,1],[4,10],[7,-1],[2,9],[-5,1],[2,1],[1,3],[1,1],[1,1],[-3,12],[-6,9],[-2,6],[12,1],[2,3],[2,0],[0,3],[2,0],[2,9],[1,1],[-1,1],[2,2],[-1,2],[1,2],[-5,0],[-5,4],[-9,0],[3,2],[2,3],[3,2],[-1,9],[4,5],[-2,2],[0,3]],[[5059,9048],[3,1],[1,-1],[2,1],[1,1],[1,7],[0,2],[5,7],[1,4],[5,6],[-1,3],[3,5],[0,4],[-1,2],[2,-2],[-1,4],[-2,2],[1,8],[0,2],[2,9],[-7,3],[-4,3],[-3,-2],[-1,5],[-3,4],[-6,2],[-3,-1],[-3,2],[0,1],[-4,-1],[-3,1],[-2,0],[-1,4],[-4,2],[-5,6],[3,2],[3,0],[0,1],[1,4],[3,3],[-1,3],[4,0],[-3,4],[1,3],[-1,10],[5,4],[1,6],[-3,2],[-2,6],[-3,2],[2,3],[-2,1],[-3,0],[-2,2],[-1,-4],[-4,-2],[-5,2],[-7,6],[-9,3],[-5,2],[-3,0],[-1,1],[1,1],[-5,6],[-3,0],[-1,-1],[-11,0],[-3,-4],[-3,-11],[-3,-1],[-8,4],[-2,2],[0,2],[-1,-1],[-7,-2],[-4,-2],[-2,4],[-6,2],[-2,1],[-4,-1],[-6,0],[-1,1]],[[4929,9206],[2,1],[1,2],[0,3],[4,7],[-1,5],[-1,0],[-1,-1],[-2,1],[3,6],[0,2],[-2,2],[3,-1],[3,5],[-1,2],[1,5],[3,0],[1,2],[1,1],[5,5],[-1,2],[-4,1],[-2,5],[2,4],[-1,5],[0,6],[-1,3],[1,4],[2,2],[2,0],[3,2],[1,0],[2,2],[3,1],[2,-2],[4,1],[-2,4],[-6,2],[1,1],[3,2],[-2,2],[1,2],[-2,2],[-1,1],[-4,4],[-1,5],[-5,7],[3,3],[4,7],[2,1],[2,-1],[-1,2],[5,6],[3,0],[2,2],[2,-1],[2,1],[3,-5],[5,4],[2,2],[-2,6],[3,0],[0,3],[-1,3],[4,4],[1,1],[4,-9],[5,0],[14,11],[3,4],[1,0],[-1,1],[1,3],[2,3],[2,0],[3,3],[2,0],[4,3],[1,4],[0,3],[-2,1],[0,1],[3,4],[4,2],[1,5],[5,3],[-2,3],[1,2],[-3,1],[-2,3],[-3,6],[-5,16],[17,5],[-3,-2],[1,-1],[1,-2],[7,-4],[2,2],[-5,4],[-1,2],[0,5],[-2,6],[-5,5],[-2,5],[11,0]],[[5041,9457],[6,-2],[4,-1],[5,-3],[9,-4],[1,-2],[0,-3],[-2,-2],[-1,-3],[6,1],[2,0],[3,6],[4,4],[3,5],[5,6],[5,-2],[7,3],[2,2],[11,1],[3,-1],[1,1],[5,0],[3,1],[3,-2],[2,-2],[7,3],[3,-5],[4,2],[3,-2],[2,2],[3,0],[3,-1],[1,-2],[13,-1],[1,4],[2,2],[5,1],[1,1],[4,2],[7,-5],[3,0],[1,5],[4,3],[12,1],[4,2],[4,1],[-4,4],[4,11],[-4,1],[-4,0],[-5,1],[-3,-1],[-2,1],[-1,2],[1,4],[-2,2],[0,6],[0,1],[3,0],[2,-3],[3,-2],[6,-1],[4,7],[4,-4],[1,0],[8,8],[-1,1],[-1,4],[1,5],[1,1],[3,-1],[3,0],[2,6],[-1,3],[-1,1],[-1,4],[3,1],[7,0],[0,4],[4,2],[1,3],[0,1],[2,2],[0,-2],[3,-2],[2,-2],[3,-1],[1,-2],[2,1],[2,-3],[1,-7],[6,0],[1,-1],[7,-1],[2,4],[3,2],[5,-7],[1,0],[1,-3],[2,-2],[2,-1],[8,-2],[1,1],[6,-3],[5,23],[9,-3],[4,5],[3,-1],[3,-3],[2,-1],[2,-6],[2,2],[4,-1],[6,-8],[7,2],[3,3],[3,0],[2,2],[2,-1],[1,2],[2,3],[0,3],[-2,3],[2,7],[0,4],[3,2],[1,4],[6,-6],[3,-1],[4,2],[1,-1],[6,-2],[4,-3],[3,-2],[8,2],[3,1],[3,5],[4,-2],[3,0],[1,-5],[1,0],[1,1],[-2,-5],[2,-3],[-1,-2],[4,-8],[2,-6],[6,-4],[4,-1],[1,-3],[3,0],[0,-2],[2,0],[3,-4],[-1,-3],[4,-1],[9,2],[-2,-3],[-1,-2],[2,-4],[4,1],[1,-1],[6,1],[0,-1],[6,-7],[3,-2],[2,1],[4,0],[2,1],[8,-2],[2,-1],[1,2],[3,0],[1,1],[5,0],[7,1],[1,1],[0,2],[-2,7],[3,4],[1,4],[3,4],[1,8],[2,2],[2,0],[2,1],[1,7],[2,2],[0,3],[3,1],[2,2],[7,3],[4,3],[2,0],[6,-3],[1,1],[4,-3],[2,-1],[0,-1],[4,0],[3,-5],[2,1],[1,-2],[4,-1],[6,1],[2,-1],[3,1],[3,-1],[2,0],[8,-1],[2,-6],[5,0],[1,-1],[7,-2],[4,3],[1,2],[4,1],[4,0],[2,1],[5,-5],[2,6],[1,0],[3,7],[0,7],[1,1],[2,0],[3,-3],[9,3],[6,-1],[8,-1],[2,-2],[3,1],[2,-1],[2,-1],[2,2],[4,23],[2,1],[4,4],[11,-1],[2,-1],[-1,-5],[2,-1],[7,-2],[2,2],[2,1],[7,-3],[7,-1],[1,4],[5,2],[12,1],[2,-2],[3,-1],[2,1],[2,-1],[5,2],[1,3],[3,-1],[1,1],[3,2],[1,3],[6,0],[3,1],[2,5],[2,1],[1,-1],[2,1],[2,2],[3,-7],[9,-2],[7,1],[2,0],[2,4],[-1,5],[3,8],[1,3],[-2,6],[4,3],[-1,3],[2,3],[2,1],[1,8],[-1,1],[1,4],[6,-1],[1,1],[3,-1],[0,2],[6,1],[4,0],[5,1],[1,-2],[7,-4],[2,-2],[0,8],[8,9],[4,1],[0,2],[3,4],[5,2],[0,3],[5,3],[4,0],[6,2],[3,6],[2,0],[6,1],[5,-4],[4,-2],[3,-3],[3,-4],[0,-2],[-1,-2],[1,-2],[-1,-2],[3,-1],[1,-5],[6,-4],[0,-5]],[[5923,9622],[-4,-2],[-1,-3],[6,-4],[-1,-3],[2,-2],[0,-1],[-1,-6],[-3,-1],[1,-7],[-4,-5],[3,-1],[0,-2],[4,-3],[0,-5],[1,-3],[5,-3],[2,-2],[0,-2],[5,0],[3,-3],[1,0],[4,-2],[2,0],[5,-3],[3,-3],[0,-12],[6,1],[1,0],[3,0],[4,-6],[-2,-4],[-2,-8],[3,-4]],[[5969,9523],[-1,-2],[-8,-1],[-4,-9],[-7,-2],[-1,-3],[-2,-1],[-3,-3],[0,-8],[-5,-4],[1,-4],[-1,-3],[2,-4],[-1,-5],[-3,-4],[1,-3],[-2,-2],[0,-2],[-3,-1],[-4,-3],[-1,-4],[-3,-3],[1,-4],[-1,-3],[-4,2],[-4,-4],[-2,-5],[1,-3],[-1,-5],[-2,-6],[-2,1],[-5,2],[-8,-2],[-1,-3],[0,-4],[6,-6],[-2,-6],[-2,-3],[0,-6],[-3,-5],[2,-3],[0,-1],[1,-2],[0,-9],[0,-1],[-2,0],[-1,1],[-3,-4],[0,-3],[-5,-10],[-2,1],[-1,-2],[-3,0],[1,-2],[-2,-5],[4,-5],[4,-2],[1,-8],[3,-1],[6,3],[2,0],[3,-3],[1,-4],[5,-3],[-4,-2],[-2,-6],[-2,-1],[-5,-15],[2,-8],[0,-7],[-1,-6],[2,-7],[-5,-13],[0,-2],[2,-3],[0,-6],[-1,-4],[-5,-11],[-1,-7],[1,-3],[2,-2],[10,-3],[-2,-11],[1,-6],[1,0],[-2,-14],[-4,-22],[-2,-1],[-4,-5],[-3,-2],[-1,-1],[6,-1],[1,-4],[1,-2],[0,-3],[-4,-3],[1,-7],[-1,-2],[3,-2],[-2,-3],[4,-4],[-4,-3],[-9,2],[-2,-1],[-4,-1],[1,-1],[-1,-1],[1,-1],[-8,0],[-1,2],[-2,-1],[-1,-2],[-1,0],[1,-4],[-3,-8],[0,-4],[-3,-4],[0,-3],[1,0],[12,4],[1,2],[5,0],[0,-7],[0,-4],[0,-1],[-2,-2],[-1,-4],[0,-1],[0,-4],[-1,-1],[-1,-7],[-8,-3],[-1,-2],[-6,3],[-2,-1],[-2,0],[-3,-2]],[[5851,9070],[-16,5],[-1,-3],[2,-2],[-1,-7],[-2,-4],[0,-2],[-1,-4],[-4,-3],[-6,3],[2,10],[-1,-1],[-2,2],[-1,-1],[-1,1],[-1,3],[-1,3],[0,2],[-2,1],[-1,-1],[-1,3],[-3,7],[-6,1],[-1,1],[-1,0],[-1,-1],[-2,-2],[-2,-3],[-1,-1],[-8,-12],[-5,-2],[0,-2],[-4,-2],[-6,0],[-3,-2],[1,-2],[-7,-3],[-1,3],[-7,8],[-2,0],[-1,-2],[-3,-8],[-1,1],[1,8],[-3,-2],[0,-1],[-1,-3],[-3,-2],[0,-8],[-1,-3],[-3,-4],[1,-2],[3,0],[1,-3],[3,0],[3,0],[1,-1],[0,-3],[-2,0],[-1,-3],[-3,-3],[-2,0],[-5,-3],[-4,1],[-4,3],[-1,0],[-5,8],[-6,-4],[1,-2],[0,-3],[-3,-5],[-1,-5],[-2,1],[-2,3],[-3,2],[-1,-1],[-3,1],[-2,3],[1,2],[-2,0],[-3,2],[-1,0],[-2,0],[-4,3],[-3,-1],[-3,0],[-2,2],[-4,-3],[0,-2],[0,-8],[4,-5],[-3,-5],[-1,-8],[1,-5],[3,-3],[-1,-2],[1,-6],[4,-12],[-2,-3],[0,-3],[1,-2],[-2,-2],[0,-1],[-1,0],[0,-4],[2,-4],[-3,-2],[-3,-4],[0,-2],[5,-8],[2,-4],[1,-10],[-2,-3],[1,-2],[-1,-1]],[[5685,8917],[-4,0],[-6,-5],[-6,-2],[-4,-1],[0,1]],[[5665,8910],[-2,3],[-2,0],[-4,-2],[-7,5],[-4,2],[-8,5],[2,3],[-3,2],[-3,9],[-4,6],[-5,4],[0,2],[-3,0],[-2,2]],[[5620,8951],[-2,5],[-8,-3],[1,-1],[-1,-4],[0,-4],[-2,-4],[0,-5],[-2,-5],[-2,-1],[-1,-3],[-2,2],[-2,-1],[-3,4],[-1,1],[-1,-1],[0,-4],[-3,-4],[-1,1],[3,8],[-2,3],[-1,1],[0,2],[0,1],[-1,1],[-1,-2],[-2,0],[1,2],[-3,1],[0,-1],[-1,1],[-1,-1],[-8,3],[-4,-2],[-1,2],[-1,1],[6,4],[3,8],[-1,2],[-8,9],[-3,6],[-9,3],[0,2],[-1,1],[-5,-1],[-1,1],[-2,-2],[0,-2],[3,-2],[1,-8],[-9,1],[-9,-4],[-9,-1],[-2,0],[-2,2],[-2,3],[0,2],[-2,8],[-2,-2],[-4,1],[-5,0],[-3,-1],[-2,-4],[-3,0],[-3,-2],[-1,2],[1,1],[-1,1],[-2,-3],[-9,-4],[-3,0],[-1,-4],[-2,-1],[-6,3],[-3,2],[-8,12],[1,4],[-4,3],[-3,4],[-4,-8],[-2,-2],[-7,0],[-2,-1],[-2,1],[-6,1],[-1,-4],[-1,-7],[-1,0],[-2,2],[-6,2],[-7,8],[-8,4],[-4,1],[-5,4],[-18,1],[-3,1],[-1,-2],[-5,2],[-3,0],[-5,0],[-8,-2],[-6,4],[-2,-4],[-5,2],[-3,3],[-4,-5],[-19,-6],[-3,1],[-3,7],[-7,4],[-6,-1],[1,4],[-11,4],[-7,-1],[0,3],[-2,1],[-2,5],[-2,7],[-3,2],[-3,-3],[-1,1],[-3,-2],[-6,3],[-2,-3],[-15,1],[0,1],[-7,-2],[-1,-1],[-5,-2],[-6,2],[-2,2],[-4,-2],[-2,-3],[-8,2],[-1,-1],[-3,-2],[-4,-5],[0,-1],[-6,1],[0,-1],[-3,0],[-1,1],[-4,0],[2,3],[-1,1],[0,2],[-1,2],[-4,2],[-1,0],[-2,2],[-2,-1],[-12,3],[-1,0],[-7,-1],[-6,2],[-3,-1],[-1,-2],[-3,0],[-2,1],[-2,-1],[-2,1],[-1,3],[-2,1],[-3,0],[-4,4],[-4,-1],[-3,-2],[-2,0],[-5,0],[-1,1],[-7,0],[-4,-3],[-2,0],[-4,3],[-4,-1],[-1,2],[0,2],[-1,2],[-1,0],[-3,1],[-1,2],[0,2],[2,0],[-1,3],[-4,3],[-7,-1],[-3,4],[-8,5]],[[5718,9058],[-2,1],[-6,-3],[-4,5],[-4,-3],[-4,-1],[0,-6],[0,-5],[3,-2],[-1,-9],[2,-1],[1,0],[-1,2],[2,3],[7,1],[0,5],[4,2],[1,-2],[1,2],[0,3],[1,5],[0,3]],[[8368,9319],[2,0],[2,-2],[4,2],[-2,5],[1,3],[3,1],[0,2],[-3,3],[-1,4],[3,2],[-1,2],[-3,3],[-1,1],[-1,3],[0,2],[-1,1],[0,4],[-2,1],[-5,0],[-4,2],[5,5],[0,2],[5,3],[3,3],[-7,1],[-3,4],[0,1],[2,0],[4,8],[2,0],[3,2],[0,3],[-3,5],[1,3],[2,2],[0,1],[-1,1],[-3,2],[-1,5],[1,2],[7,5],[0,4],[6,0],[4,2],[4,2],[3,-1],[0,-1],[3,1],[5,-4],[1,-3],[6,-1],[5,-2],[1,-2],[7,-3],[4,0],[4,3],[2,0],[5,-1],[9,-6],[5,0],[6,-2],[2,-3],[4,-3],[1,0],[2,-1],[1,0],[2,-1],[10,-7],[0,-3],[3,0],[6,-4],[4,-1],[-1,2],[2,3],[4,3],[6,2],[2,0],[1,-2],[4,-4],[1,-3],[3,-2],[4,0],[4,2],[2,0],[4,-2],[6,-1],[1,1],[2,-1],[1,1],[1,0],[1,-2],[-1,-1],[1,-1],[4,1],[2,0],[1,1],[6,-1],[2,4],[5,-7],[4,-2],[5,-2],[0,-3],[4,-2],[6,-8],[-1,-7],[2,-2],[0,-4],[3,-3],[4,-2],[2,-2],[5,-5],[2,-1],[2,1],[2,2],[4,2],[6,2],[3,2],[4,-1],[6,5],[2,-2],[3,0],[4,-3],[0,-4],[7,2],[0,1],[4,0],[1,-3],[8,4],[5,-1],[1,-1],[3,1],[4,4],[4,0],[3,-3],[8,0],[0,-3],[-3,-3],[0,-4],[1,-3],[3,-1],[2,-2],[2,1],[3,0],[6,-6],[-2,-5],[2,-3],[-1,-3],[5,-2],[3,-5],[2,0],[2,-1],[0,-5],[1,-4],[0,-2],[0,-2],[2,-2],[0,-4],[3,-3],[0,-1],[1,-1],[-1,-2],[6,-9],[1,-4],[-2,-3],[-5,0],[-1,-3],[3,-5],[5,-2],[0,-3],[-8,-5],[-3,-6],[0,-3],[-2,-3],[-1,-2],[9,2],[3,3],[2,-1],[4,-3],[-1,-2],[1,-5],[3,-2],[2,-6],[2,-2],[-11,-9],[-8,-2],[-3,-6],[6,-1],[4,-4],[-1,-7],[3,-2],[-2,-3],[0,-2],[2,-3],[0,-2],[-2,0],[1,-2],[3,-2],[2,-1],[9,0],[4,-2],[4,0],[10,-3],[1,2],[3,0],[12,1],[0,6],[1,2],[2,1],[-1,4],[2,3],[3,0],[3,-4],[3,-1],[1,4],[1,3],[5,3],[4,-1],[8,0],[3,-1],[1,2],[1,0],[2,0],[3,1],[3,-1],[2,1],[2,3],[-1,3],[1,1],[0,8],[3,7],[5,-6],[5,0],[5,-3],[4,2],[6,8],[2,-8]],[[8694,8628],[1,-5],[3,-2],[1,-4],[-5,-1],[-4,0],[-1,3],[-4,3],[-12,2],[-15,0],[-3,2],[-5,-3],[-9,3],[-6,-3],[-1,3],[-3,0],[-2,-1],[-1,-1],[-4,2],[-1,-2],[-6,1],[-1,-2],[0,-3],[-1,-1],[-1,-5],[-1,-2],[-6,-4],[-7,0],[-6,-1],[0,-3],[4,-2],[-2,0],[-3,1],[2,-2],[1,0],[0,-6],[-1,-2],[-2,0],[0,-6],[1,-3],[4,-2],[0,-4],[2,-4],[-2,-1],[-2,0],[-8,-3],[-11,-3],[0,-2],[-4,-1],[0,-1],[-3,-1],[-1,-1],[-1,0],[-2,4],[-2,2],[-3,1],[-1,-1],[-4,2],[-2,2],[-6,3],[-3,4],[-6,4],[-2,0],[-1,-2],[4,-4],[1,-2],[-1,-2],[-4,-3],[9,-8],[6,-2],[2,-2],[-2,-3],[-3,-1],[-1,-3],[-3,-4],[-2,0],[-2,-1],[0,-2],[-3,-6],[-1,-4],[-3,0],[1,-2],[-3,-5],[-5,-4],[-4,1],[-1,0],[-1,-2],[1,-1],[-2,-1],[-3,-3],[1,-2],[-1,-1],[-5,2],[-1,-4],[-2,-3],[-1,-4],[-4,-4],[0,-5],[2,0],[-1,-3],[-6,-2],[-2,0],[-1,-1],[-3,-1],[-2,1],[-5,-1],[-5,1],[-3,-2],[-1,0],[-4,-2],[-4,-2],[-5,0],[-4,-2],[-8,11],[-1,4],[-5,-2],[-6,-18],[-3,-1],[-5,2],[-3,-2],[-1,2],[-11,2],[-3,0],[-3,-4],[0,-1],[-1,-1],[0,-4],[-4,-1],[-4,-2],[-2,1],[-2,-1],[-5,0],[-3,-1],[-4,0],[-1,1],[-2,-1],[-1,-1],[-2,0],[-1,-1],[-2,1],[-3,0],[-7,-5],[-2,-1],[-1,0],[-5,-2],[-3,-2],[-1,-2],[-1,1],[-3,-1],[-5,1],[-1,0],[-1,1],[-3,0],[-5,8],[-1,3],[-1,5],[-3,-1],[-9,5],[-4,-2],[-1,-8],[-3,-5],[-3,-1],[-2,-6],[-3,0],[-6,-1],[-3,9],[-2,1],[-1,3],[-4,4],[-1,4],[-2,1],[0,1],[-2,1],[0,2],[-4,2],[-2,-3],[-2,0],[-5,-2],[-3,-4],[-1,-5],[2,-9],[-2,-6],[0,-7],[-4,-1],[-17,3]],[[8246,8445],[-7,10],[-2,5],[2,5],[0,4],[-2,2],[-6,2],[-1,3],[5,8],[3,0],[3,5],[-6,12],[-12,10],[-6,5],[7,9]],[[6999,9194],[2,1],[7,-12],[2,1],[2,-2],[3,0],[3,2],[3,-2],[0,-4],[3,-1],[2,3],[3,-1],[2,-8],[1,-1],[1,1],[5,1],[0,2],[-2,4],[2,3],[3,0],[4,-4],[3,0],[5,-3],[2,2],[-1,3],[0,2],[4,-1],[0,-4],[4,-3],[1,-5],[1,-1],[2,-1],[2,3],[3,-1],[9,-4],[1,-2],[-3,-5],[2,-1],[2,-2],[6,0],[2,0],[2,-1],[0,-2],[-2,-3],[2,0],[3,0],[2,2],[2,1],[1,-1],[3,0],[2,-1],[2,-5],[6,0],[2,1],[2,4],[1,1],[2,-1],[4,2],[3,1],[2,-2],[0,1],[7,0],[3,-3],[-5,-10],[3,-3],[10,-7],[-3,-4],[7,-5],[0,-1],[-4,-4],[-1,-3],[0,-5],[9,-3],[3,3],[5,2],[2,3],[0,2],[8,2],[4,4],[2,1],[2,-1],[2,-5],[5,2],[2,-2],[3,-2],[2,-4],[3,2],[1,-1],[1,-1],[-1,-2],[2,-3],[-1,-2],[2,-3],[3,1],[6,0],[5,-8],[4,2],[2,0],[1,-1],[-1,-5],[1,-2],[3,-1],[1,-2],[0,-2],[-3,-3],[8,-6],[5,-2],[2,0],[3,2],[1,-1],[1,-5],[1,-3],[-1,-5],[-3,-6],[1,-3],[8,-2],[1,1],[0,4],[1,1],[1,-1],[2,-3],[4,-3],[2,-3],[1,0],[2,1],[0,2],[1,0],[1,-2],[0,-8],[1,-2],[5,-1],[3,-3],[4,0],[1,1],[4,0],[3,-6],[1,0],[1,1],[1,3],[11,-6],[2,2],[4,-2],[1,2],[7,-3],[2,-2],[-1,-3],[2,-4],[-1,-2],[2,-1],[1,2],[4,-1],[1,1],[2,-1],[1,-2],[-8,-5],[-1,-5],[0,-4],[3,-5],[3,-1],[3,-3],[-5,-2],[-6,-6],[-7,-3],[-2,5],[-7,5],[-11,0],[-2,-3],[-5,-3],[1,-2],[-1,0],[-8,3],[-1,2],[-1,1],[-8,4],[-5,-3],[-2,-4],[0,-5],[-1,-4],[-9,-8],[-2,-5],[-3,-2],[-1,-1],[-9,-10],[-2,-4],[-3,-7],[-1,-5],[-1,0],[1,-2],[2,-1],[-1,-3],[1,-13],[2,0],[1,-1],[4,0],[2,-1],[0,-1],[5,-7],[3,1],[1,-3],[1,0],[0,-2],[2,-2],[3,1],[1,2]],[[7254,8896],[0,-3],[-2,-3],[3,-7],[-9,-6],[3,-7]],[[7249,8870],[-9,-8],[-6,-3],[-7,-2],[1,-1],[-3,-2],[-2,-5],[-2,1],[-4,-3],[-1,1],[-2,-2],[-2,-1],[-6,1],[-3,-4],[-9,-1],[-8,7],[-1,5],[-5,1],[-1,3],[-2,0],[-1,2],[-3,3],[-1,0],[0,-3],[-2,-1],[1,-2],[-1,0],[0,-3],[-4,5],[0,2],[-3,1],[-5,2],[-6,-2],[-1,0],[-1,2],[-3,0],[-2,1],[-4,-1],[-4,2],[-3,3],[1,2],[-1,5],[-1,2],[-1,5],[-1,6],[2,1],[3,0],[2,4],[-4,5],[0,6],[-6,3],[-7,10],[-2,0],[0,2],[-2,1],[-2,6],[0,2],[-1,4],[4,2],[5,3],[3,0],[3,4],[0,4],[0,1],[0,5],[-4,4],[-1,-1],[-4,2],[-12,0],[-11,-2],[-4,2],[-4,-3],[-3,-1],[-3,2],[-3,0],[-9,-9],[-5,1],[-6,12],[1,4],[-1,3],[2,2],[-2,6],[-3,2],[-8,3],[-4,2],[-1,1],[-4,-1],[-2,1],[-5,0],[-2,1],[-1,-1],[-9,-1],[-3,-1],[-5,0],[-4,-3],[-2,1],[-7,0],[-4,-2],[-5,1],[-1,-1],[-3,-2],[-1,-5],[-2,-2],[-2,-4],[-6,0],[-1,-2],[-5,-3],[-2,3],[-3,1],[-2,0],[-3,1],[-3,0],[-1,-2],[0,-5],[-1,-3],[0,-5],[-1,-2],[-1,-3],[2,-1],[2,-4],[0,-3],[-8,-9],[-1,0],[-2,0],[-4,-2],[-2,-4],[1,-4],[-2,-2],[-5,-13],[-4,-5],[-2,-6],[-8,3],[-5,1],[-3,2],[-4,-1],[-1,1],[-10,-2],[-5,1],[-1,-1],[-5,-3],[-6,2],[-4,6],[-4,2],[-2,-1],[-5,2],[-3,-1],[-8,-4],[-1,2],[0,2],[-3,6],[0,4],[-1,1],[8,11],[2,6],[3,4],[1,3],[1,1],[7,8],[0,3],[-1,4],[1,3],[1,0],[0,2],[-7,7],[-3,4],[-5,1],[-3,0],[-2,-4],[-7,4],[-4,-1],[-3,-5],[-4,-4],[-1,-4],[1,-3],[0,-2],[-5,-8],[0,-2],[2,-1],[0,-2],[1,-6],[-1,-2],[0,-8],[-3,0],[-4,-6],[-1,0],[-3,2],[-5,-1],[-3,-3],[-2,0],[-5,-3],[-1,-4],[-2,-2],[-2,-1],[-1,-2],[-3,-2],[-1,0],[-2,-1],[-3,0],[0,5],[-10,3]],[[4652,9965],[1,0],[4,-3],[3,0],[0,2],[3,0],[0,5],[1,0],[-1,2],[1,1],[2,1],[1,-1],[4,0],[1,-1],[0,-1],[2,1],[-1,2],[1,0],[0,1],[1,1],[5,1],[0,-1],[2,-1],[0,-2],[1,0],[0,-2],[-3,-3],[3,-2],[-1,-4],[2,-2],[-1,-2],[3,-3],[1,1],[1,-1],[1,1],[1,-3],[3,3],[0,-1],[-1,-1],[1,-2],[-2,-1],[1,0],[-2,-5],[2,-2],[1,2],[1,0],[0,-4],[-1,-3],[-3,-2],[0,-6],[1,-1],[0,-1],[1,-1],[3,-2],[3,1],[1,2],[-1,-7],[0,-2],[1,1],[0,7],[-1,6],[1,1],[2,0],[0,1],[4,1],[2,3],[-1,1],[-1,2],[0,1],[-1,1],[-2,5],[2,2],[4,-1],[1,0],[5,0],[1,2],[2,2],[1,1],[-1,2],[1,2],[-2,3],[4,1],[3,0],[3,-2],[3,5],[4,-5],[1,-6],[0,3],[1,0],[1,2],[2,-2],[7,2],[4,-2],[6,0],[-1,-3],[-1,0],[0,-2],[-2,-1],[-2,-2],[1,-2],[3,-2],[1,-1],[2,1],[1,-2],[2,0],[1,-1],[1,0],[1,0],[3,-1],[1,-1],[-2,-2],[2,1],[2,2],[-1,2],[2,0],[1,-1],[-3,-3],[1,0],[3,0],[-1,-1],[3,1],[2,-2],[3,1],[0,-2],[3,-1],[1,1],[0,-2],[1,0],[0,-3],[2,2],[3,-3],[2,-1],[6,-2],[1,1],[2,0],[2,-3],[3,0],[0,-5],[2,-3],[-1,1],[0,-3],[2,-5],[2,-1],[2,-1],[-1,-1],[2,-2],[2,-1],[0,-2],[-1,-2],[1,-1],[1,0],[0,-1],[1,-1],[3,0],[0,-1],[1,-1],[1,-1],[4,-3],[1,-6],[5,-4],[0,-1],[1,-3],[-2,-1],[4,0],[4,-2],[1,-1],[3,-1],[2,-2],[6,-3],[1,0],[1,-1],[-1,0],[3,-1],[-2,-1],[0,-2],[-4,-3],[0,-3],[-1,0],[-1,-1],[-2,1],[0,1],[-1,0],[3,-3],[0,-1],[3,1],[2,-1],[-4,-3],[2,-2],[6,2],[-1,5],[1,3],[-1,1],[0,1],[3,0],[1,1],[6,-3],[6,0],[3,-2],[4,0],[3,1],[2,-1],[2,2],[1,-3],[2,-2],[3,0],[3,-1],[13,2],[1,-2],[3,0],[0,2],[1,0],[-1,2],[2,1],[3,-1],[1,-2],[2,1],[5,-3],[0,1],[3,1],[5,-3],[0,2],[1,0],[0,-1],[1,0],[1,1],[-1,2],[3,-1],[0,1],[2,0],[1,-1],[2,-1],[0,1],[0,-1],[1,-2],[0,1],[1,0],[0,1],[1,0],[3,-4],[0,-2],[2,-1]],[[4949,9847],[-1,-2],[1,-4],[-4,-7],[-2,-5],[-2,-8],[2,-4],[-2,-6],[1,-5],[-4,-4],[-3,1],[-3,-2],[-1,-3],[-3,0],[-1,-2],[-4,-5],[0,-4],[2,-2],[0,-1],[-2,2],[-4,-3],[0,-1],[1,-4],[-3,0],[-1,0],[2,-2],[-1,-2],[-2,2],[-2,-3],[-3,1],[-5,-2],[0,1],[-5,4],[-5,-2],[-4,2],[-5,-1],[-1,-3],[2,-2],[-3,-4],[3,-4],[1,0],[0,-3],[-1,-1],[-2,2],[1,-2],[-3,-4],[-1,-2],[2,0],[-1,-3],[2,-1],[-1,-2],[2,0],[2,-2],[2,0],[2,-3],[1,0],[3,3],[5,2],[1,0],[1,-3],[3,-3],[-2,-6],[2,-5],[-2,-5],[1,-4],[0,-7],[2,1],[5,-3],[1,-6],[2,-2],[3,-6],[1,-1],[5,-1],[4,0],[2,3],[3,1],[3,-1],[-2,-4],[0,-6],[-1,-4],[0,-2],[-1,0],[0,-3],[-1,1],[0,-3],[3,-14],[1,-3],[5,-4],[2,-4],[2,-1],[4,-1],[6,-9],[1,1],[0,4],[2,1],[2,0],[3,-10],[4,1],[3,-4],[7,1],[2,-5],[0,-5],[-4,-5],[-3,-8],[4,-10],[3,-1],[2,-2],[2,-4],[0,-2],[7,-2],[1,0],[1,4],[3,2],[1,-1],[4,0],[2,4],[4,2],[1,3],[4,0],[4,1],[1,2],[-2,4],[3,2],[2,4],[1,7],[1,0],[1,2],[-1,-7],[2,2],[2,0],[3,-6],[4,-4],[3,0],[1,-5],[4,-4],[1,-4],[2,-1],[-1,-2],[0,-2],[-1,-4],[-1,-5],[-5,-5],[-5,-3],[-2,-1],[0,-1],[-4,-3],[-3,-7],[-8,0],[-2,1],[-2,-2],[-1,-3],[-5,-4],[-2,-3],[-3,6],[-5,0],[-2,3],[-1,-4],[-1,-2],[-4,-1],[1,-5],[-3,0],[0,-3],[-2,-1],[-2,0],[-1,-3],[3,-3],[-1,-1],[0,-4],[-1,-4],[1,-2],[-2,1],[0,-2],[-2,-1],[-1,1],[-1,3],[-2,3],[-2,-8],[-2,1],[-3,-2],[1,-1],[-1,-4],[5,-3],[1,-6],[2,0],[2,-5],[1,0],[0,-2],[5,-2],[0,2],[-1,0],[0,1],[3,1],[-2,3],[1,2],[-1,1],[1,0],[-1,3],[1,2],[-2,3],[1,1],[0,1],[-1,2],[3,2],[0,3],[0,2],[5,-3],[2,-13],[3,-1],[1,-1],[1,-2],[3,-2],[6,-7],[7,-1],[6,2],[4,-2],[2,-3],[1,0],[1,-3],[12,-13],[0,-11],[-3,-7],[3,-8],[5,-1]],[[4929,9206],[0,-8],[-3,-3],[-2,-4],[-3,-8],[-3,-2],[0,-6],[-5,-1],[-4,-3],[-1,-2],[-3,-2],[0,-3],[-3,1],[-5,-3],[-2,-3],[0,-4],[2,-3],[-5,-5],[0,-2],[-1,0],[-2,-4],[1,-1],[-1,-4],[-1,-2],[-2,-8],[-2,-2],[-2,0],[-2,-3],[2,-4],[-4,-1],[-2,-7],[1,-5],[-2,-7],[-2,-4],[-7,7],[-6,13],[2,8],[-1,3],[3,4],[2,1],[-1,2],[-6,2],[-6,-1],[-3,4],[-1,3],[-2,2],[0,1],[-2,1],[-2,5],[-3,-2],[-6,2],[-3,5],[-2,3],[-3,1],[-4,-2],[-3,1],[-4,-1],[-5,2],[-2,0],[1,-2],[-1,1],[-5,-1],[-5,-3],[-5,6],[-3,1],[-5,2],[-1,-3],[0,-1],[0,-1],[-4,-1],[-6,-4],[-5,-2],[-5,-6],[-1,0],[-7,0],[-3,-2],[-3,-2],[-10,-7],[-12,-3],[-6,0],[-3,2],[-8,8],[-4,3],[-9,-5],[-3,-5],[-6,-3],[-2,1],[-2,4],[-1,1],[-2,8],[-3,1],[-4,3],[-4,1],[-3,5],[-4,-1],[-4,1],[-6,3],[-3,3],[-2,7],[-3,5],[-8,1],[-4,2],[-6,-4],[-4,2],[-1,3],[-1,-1],[-4,2],[-3,5],[-1,0],[-2,-2],[0,2],[-1,2],[1,1],[3,-1],[4,3],[4,1],[2,-1],[3,0],[1,2],[1,0],[-2,4],[-2,0],[-2,2],[-1,3],[-4,0],[-3,-1],[-2,-4],[-7,-4],[-3,1],[-2,4],[-4,2],[-1,0],[-2,1],[-7,-1],[0,4],[-1,1],[-1,-1],[-6,4],[-6,-1],[-1,0],[-1,2],[2,3],[-6,0],[-4,-3],[-7,2],[1,2],[4,2],[0,4],[-10,2],[5,1],[2,3],[2,-2],[2,2],[-1,2],[0,1],[3,2],[3,-1],[-1,8],[-9,3],[-3,4],[-5,10],[-1,0]],[[4549,9249],[5,4],[3,4],[0,6],[2,2],[1,4],[2,5],[1,1],[3,6],[0,5],[2,14],[-2,6],[0,4],[2,6],[6,2],[-1,4],[1,2],[2,-1],[2,1],[2,4],[-2,5],[0,4],[-3,0],[-13,8],[-7,1],[-8,3],[-3,6],[-3,2],[-2,1],[-5,9],[-6,6],[-2,6],[1,14],[2,4],[2,7],[7,7],[-4,1],[-2,5],[-4,-2],[-1,-1],[-2,-2],[-3,3],[-2,0],[-2,1]],[[6669,7693],[1,3],[-1,1],[0,2],[0,6],[-3,1],[1,4],[-4,-1],[-1,0],[0,-3],[-2,0],[-1,-2],[-2,0],[-1,-3],[-7,-9],[0,-1],[3,0],[-2,-1],[-2,0],[0,2],[-8,-4],[-7,-2],[-1,4],[-2,-2],[-2,1],[-1,-5],[-2,1],[-1,3],[-1,0],[0,-2],[-1,0],[-3,1],[1,-3],[0,-1],[-2,-1],[-3,2],[0,1],[-1,0],[-3,0],[-2,0],[-3,1],[-3,10],[-7,6],[-4,2],[-4,-1],[-6,-3],[-8,0],[-2,-5],[3,-6],[-1,-5],[-5,1],[0,-1],[-3,-3],[0,-2],[1,-1],[-1,-3],[-3,-1],[-4,2],[0,2],[-7,4],[-2,-5],[-5,0],[-2,-1],[-1,1],[0,3],[0,3],[-2,1],[-2,0],[1,-2],[-6,-4],[-2,1],[0,3],[-3,-1],[-2,1],[-1,-3],[-1,0],[-1,3],[-1,1],[-1,0],[-2,-2],[-2,1],[0,1],[-1,0],[0,-2],[-1,0],[-1,1],[0,-2],[-2,0],[-1,-4],[-1,-4],[-1,-3],[1,-3],[-4,-2],[-10,0],[-10,-1],[0,-2],[-7,0],[-2,-7],[-7,-2],[-3,-3],[-3,-1],[-3,1],[-4,-3],[4,-12],[-2,0],[0,-2],[-12,0],[-2,-1],[-5,-2],[-9,-9],[-6,5],[-9,-7],[-6,-2],[0,-4],[-5,-7],[-10,-7],[-5,-7],[-7,-7],[1,-2],[-5,0],[-9,9],[-6,2],[-8,0],[-2,1],[0,2],[-2,0],[1,1],[-2,1],[4,4],[-3,4],[0,3],[4,1],[6,6],[6,1],[1,0],[0,-7],[2,0],[1,1],[0,5],[2,4],[2,0],[1,0],[2,4],[3,1],[2,-1],[1,-4],[2,1],[4,-1],[1,2],[-2,3],[7,3],[2,0],[2,2],[0,2],[3,-5],[-5,-3],[0,-3],[1,-1],[2,0],[3,2],[2,2],[0,2],[-4,9],[2,0],[3,-5],[4,-1],[6,3],[1,3],[-2,1],[-1,-2],[-3,0],[-1,1],[-3,6],[3,1],[2,-3],[1,2],[-1,3],[3,1],[1,2],[2,-2],[-1,5],[2,4],[2,1],[2,4],[5,6],[2,1],[4,0],[1,-2],[2,-1],[5,8],[5,3],[3,0],[2,1],[0,3],[4,3],[0,4],[7,3],[0,1],[-2,2],[1,1],[2,2],[1,1],[-5,5],[0,1],[3,2],[2,-1],[2,1],[1,2],[2,7],[-3,0],[-1,2],[3,6],[-6,4],[-1,0],[-4,3],[-11,4],[0,1],[-1,0],[-3,5],[0,5],[-5,-3],[-3,-4],[-3,0],[-10,6],[-2,3],[-1,1],[-2,-1],[-8,-8],[-1,-1],[-12,4],[0,2],[-3,3],[0,5],[-3,5],[-7,8],[-2,1],[-1,0],[-1,-5],[-3,1],[-8,-6],[-3,1],[-5,4],[1,5],[-1,1],[-5,5],[-5,2],[-1,-1],[-3,0],[-5,0],[-2,1],[-5,0],[-2,1],[-4,5],[-3,2],[-2,-1],[-1,1],[-1,-3],[-2,-3],[-2,-3],[-1,1],[0,4],[-2,1],[1,8],[-10,0],[-7,-1],[-3,4],[-5,3],[-5,6],[0,2],[-2,1],[0,6],[1,2],[-12,1],[-5,4],[-1,2],[-3,3],[-4,1],[-3,-8],[-6,-5],[-2,-2],[-3,1],[-4,0],[-5,3],[-5,-2],[-3,1],[0,1],[2,6],[0,4],[-6,4],[-2,-1],[-2,2],[-2,7],[0,2],[1,0],[-2,1],[-2,3],[-6,2],[-2,-2],[-1,-2],[-2,-1],[-1,-4],[1,-5],[0,-3],[-2,-1],[-2,1],[-3,2],[-3,-2],[-1,4],[-1,0],[-2,-1],[-5,-1],[-5,-8],[-2,-8],[-2,-3],[-1,-4],[-1,-2],[-6,-2],[-2,-4],[-3,-2],[-5,1],[-1,4],[2,2],[-1,1],[-2,1],[-4,-6],[-3,6],[-4,3],[-2,1],[-3,-3],[0,6],[1,5],[-5,11],[-1,3],[1,5],[-1,6],[1,10],[-3,1],[-1,1],[-4,1],[-1,2],[-2,0],[1,-3],[-4,-7],[2,-1],[-1,-5],[1,-2],[-4,-1],[-3,-2],[-4,-6],[-5,-6],[-3,-2],[-1,-2],[-3,1],[0,-9],[-1,-5],[-4,-3],[-15,-2],[0,-1],[-7,-4],[-4,0],[-4,-3],[-1,-2],[0,-5],[-3,-2],[-6,-1],[-6,1],[-11,3],[1,4],[-3,3]],[[6225,8080],[2,2],[2,0],[3,1],[3,11],[2,4],[3,3],[1,4],[4,7],[4,3],[4,1],[2,5],[-1,5],[7,8],[1,3],[-1,4],[2,1],[2,2],[11,-2],[2,-4],[9,-1],[3,1],[3,2],[2,1],[4,0],[2,-2],[3,0],[2,-1],[0,3],[0,7],[1,3],[1,2],[3,3],[2,6],[-1,10],[1,3],[3,3],[4,10],[0,6],[1,3],[1,6],[-2,0],[-2,3],[3,6],[1,5],[2,3],[0,7],[5,0],[2,2],[1,4],[1,4],[3,1],[-1,3],[3,4],[1,1],[2,1],[2,5],[2,1],[5,2],[0,1],[3,1],[2,-3],[4,5],[5,1],[2,1],[6,2],[3,0],[4,1],[5,3],[10,5],[4,8],[2,2],[0,2],[4,5],[1,0],[3,5],[4,11],[5,5],[2,1],[2,2],[2,3],[4,4],[5,4],[3,1],[4,-1],[1,2],[2,3],[10,9],[3,9],[4,3],[1,5],[6,5],[2,4],[6,4],[4,0],[1,2],[3,2],[6,-1],[5,3],[8,0]],[[6154,8054],[-1,3],[-1,3],[3,3],[0,3],[11,6],[1,2],[3,0],[4,-2]],[[6395,5634],[-3,1],[0,1],[-1,0],[0,1],[-2,2],[-3,0],[-5,2],[-7,2],[-2,-1],[-2,2],[-3,-1],[-2,0],[-1,-1],[-8,0],[-4,-4],[-4,-3],[-8,2],[-4,-1],[-5,-1],[-2,-2],[-13,-7],[-3,2],[-6,2],[-9,4],[-2,1],[-4,0],[-3,2],[-4,0],[-2,-1],[-5,2],[-5,0],[-3,2],[-4,1],[-7,-2],[-11,-14],[-2,0],[-5,1],[-4,-1],[-18,-5],[-26,-2],[-7,-1],[-17,2],[-5,-1],[-4,1],[-4,0],[-5,-1],[-2,1],[-4,0],[-4,2],[-6,2],[-14,2],[-6,-3],[-3,-3],[1,-3],[-1,-1],[1,1],[-1,2],[0,1],[1,3],[0,1],[-2,-2],[0,-1],[-2,-2],[2,0],[-2,-1],[0,-1],[2,0],[-2,0],[-1,1],[-3,-2],[-4,-10],[-7,-17],[-5,-5],[-4,-6],[-10,-17],[0,-2],[-5,-10],[-10,-7],[-1,-3],[0,-1],[-3,-1],[0,-1],[-4,2],[-4,-1],[-3,-1],[-4,-1],[-7,-3],[-2,-3],[0,-1],[-1,0],[-3,-1],[-3,-4],[-3,-7],[0,-2],[0,-2],[2,2],[-2,-3],[-1,0],[-1,-1],[-3,-11],[-4,-7],[-4,0],[-3,-1],[-3,1],[-4,-2],[-3,0],[-8,-8],[-2,-1],[-3,1],[-3,-2],[-3,-1],[-6,0],[-4,-1],[-5,0],[-23,7],[-17,4],[-6,3],[-8,0],[-6,-1],[-4,1],[-8,-1],[-5,-4],[-4,1],[-9,-9],[-3,-1],[-4,-3],[-3,-1],[-11,-9],[-2,-2],[-2,-1],[-3,2],[-7,0],[-8,-6],[-4,-1],[-3,0],[-2,1],[-5,-1],[-12,-11],[-5,-3],[-6,0],[-5,-3],[-5,-5],[1,1],[-3,-1],[-5,0],[-4,-3],[-7,-10],[-2,-1],[-2,-4],[-2,-4],[-3,-1],[-2,-3],[-10,-35],[-1,-3],[-2,0]],[[5789,5798],[0,2],[4,3],[4,10],[2,1],[1,-3],[2,0],[0,-3],[4,4],[5,1],[4,3],[4,-2],[1,2],[7,0],[1,-1],[3,5],[6,6],[3,-3],[1,2],[-1,2],[0,1],[7,2],[1,0],[9,6],[4,3],[1,2],[2,2],[8,10],[4,3],[5,2],[2,0],[1,2],[2,0],[1,2],[2,1],[0,2],[4,2],[2,15],[-4,3],[-6,3],[-5,5],[-3,1],[1,5],[1,1],[0,5],[3,-1],[3,-2],[2,2],[1,0],[1,0],[4,0],[1,5],[1,-3],[0,-1],[3,-5],[0,-3],[-2,-2],[1,-2],[4,-1],[4,5],[2,-3],[9,9],[-2,2],[2,1],[0,4],[-1,0],[0,4],[2,2],[0,3],[3,0],[2,2],[7,-1],[3,-2],[-1,-1],[1,-2],[-3,-3],[2,-5],[3,1],[2,-4],[2,-2],[1,1],[2,0],[-1,-8],[3,-3],[0,-1],[1,1],[1,3],[2,-2],[2,2],[1,4],[1,0],[2,2],[5,1],[1,4],[12,5],[10,7],[-2,3],[1,0],[-1,1],[1,2],[-4,1],[-1,2],[-2,0],[-2,9],[1,3],[5,6],[-5,1],[-3,2],[1,3],[7,6],[2,-4],[7,2],[3,-3],[3,0],[0,1],[1,1],[0,1],[3,1],[3,-4],[0,2],[2,-1],[1,2],[2,1],[2,-2]],[[7736,6320],[2,-15],[3,0],[0,-1],[-3,1],[0,-2],[0,-1],[3,-15],[1,-2],[-3,-1],[0,1],[1,-1],[-1,1],[1,0],[-1,0],[0,1],[-3,2],[0,3],[-6,12],[-4,0],[0,-3],[-2,0],[-2,-1],[-1,-2],[-3,-8],[1,-4],[0,-4],[1,1],[-4,-7],[-1,0],[-4,-5],[-4,-6],[-6,-2],[-2,-2],[-2,-4],[1,-2],[-1,-2],[-1,-1],[0,-2],[-3,-4],[-1,-2],[2,-6],[7,-9],[3,-6],[2,-3],[2,-5],[10,-11],[6,-4],[5,-2],[2,1],[6,-4],[4,-1],[0,-3],[1,-1],[4,-1],[2,0],[3,1],[2,2],[0,2],[1,1],[0,4],[1,0],[-2,3],[0,3],[-1,1],[-4,0],[0,-1],[-2,0],[0,1],[2,1],[2,0],[-2,1],[1,3],[-1,8],[-2,5],[-1,0],[1,1],[-1,9],[-2,0],[3,13],[0,6],[-2,3],[0,2]],[[7744,6257],[1,0],[-1,-1],[1,0],[1,0],[-1,2],[1,0],[-1,1],[2,-1],[0,-1],[2,1],[-4,1],[-1,2],[0,-1],[1,2],[-2,4],[-1,6],[-2,4],[1,2],[-1,-2],[-2,3],[1,-1],[0,2]],[[7739,6280],[1,0],[1,-1],[0,-1],[0,1],[2,2],[1,-1],[-1,-1],[1,-1],[1,-3],[1,-1],[-1,0],[-2,-2],[0,-5],[1,-3],[4,-4],[2,-1],[1,1],[3,-6],[-3,4],[-2,0],[2,0],[0,-1],[-1,0],[0,1],[-2,-2],[1,-2],[-2,-1],[2,0],[-2,-1],[-1,-11],[-1,-6],[2,-6],[5,-19],[1,-2],[2,-1],[-1,-1],[1,-3],[4,-9],[3,-5],[3,-1],[3,2],[0,-2],[1,0],[-3,-2],[-3,1],[0,-1],[-1,-3],[-2,-2],[0,-1],[-2,-2],[-1,0],[0,-2],[-2,-3],[1,-1],[-4,-1],[-4,-3],[-7,-2],[-5,0],[-2,-1],[-2,1],[-2,-2],[-2,1],[-1,-1],[-3,-2],[0,-2],[-9,-2],[-5,-6],[-5,2],[-4,0],[0,1],[0,2],[0,1],[-2,2],[-3,0],[-1,-2],[1,-3],[-4,-1],[-2,1],[-2,-2],[-2,0],[0,1],[-2,0],[0,-1],[0,-4],[-2,0],[-3,-2],[-1,1],[-1,0],[-2,-2],[-3,-1],[0,-1],[-2,-1],[-2,0],[-2,-4],[-4,3],[-2,0],[-2,1],[-6,-2],[-2,2],[-3,1],[1,1],[6,3],[1,1],[-2,1],[-1,-1],[-1,2],[-1,1],[-1,-1],[0,1],[-3,0],[-1,0],[-1,-1],[-1,0],[1,1],[-3,1],[0,3],[-1,1],[1,4],[-3,0],[3,0],[2,2],[-1,0],[1,0],[-1,3],[-1,1],[0,-1],[-6,0],[-1,2],[-1,0],[0,-2],[-1,-1],[3,0],[1,-2],[-1,-3],[2,-1],[1,-1],[-2,0],[-1,-2],[-2,3],[-2,1],[0,-2],[-5,1],[1,-1],[-2,-2],[0,-2],[-1,-2],[-3,0],[-1,-1],[-3,3],[-5,0],[-1,1],[-1,0],[-1,1],[-4,1],[-1,-2],[-4,0],[-1,2],[-2,1],[-1,-2],[-1,0],[-1,-2],[-4,-2],[-1,-3],[-4,-1],[-3,0],[-2,-2],[-3,-2],[0,-1],[-1,0],[0,-2],[-1,0],[-1,-3],[1,-3],[3,-2],[5,-5],[-2,-1],[-4,0],[0,2],[-3,1],[-9,1],[0,1],[-3,-2],[0,1],[-1,0],[-4,0],[-3,3],[-1,3],[2,1],[0,3],[-4,5],[-2,1],[-3,1],[0,1],[-1,-1],[-4,3],[-3,0],[-4,1],[-4,-1],[-1,2],[-3,0],[-1,1],[-4,-1],[-1,-2],[-3,-2],[-2,-2],[0,-3],[2,-1],[-1,-2],[-3,1],[-1,1],[-3,-1],[-1,-2],[-1,2],[-1,0],[-2,0],[-2,-2],[1,2],[-1,0],[-6,1],[0,1],[-6,1],[-2,-2],[0,1],[-2,0],[-3,-2],[0,-2],[-4,1],[-7,-5],[-9,-11],[-2,-1],[-3,-3],[-1,0],[-3,-5],[-2,-4],[0,-1],[-1,-1],[-6,0],[-2,-3],[-3,1],[0,-1],[-6,-2],[-1,-2],[-1,0],[-3,-3],[-3,-3],[0,-2],[-1,0],[1,-1],[-2,0],[-2,-5],[-2,-4],[0,1],[-1,-1],[0,-1],[1,0],[-1,-2],[-1,0],[0,-4],[-2,-1],[1,-2],[-1,-1],[-1,-8],[0,-1],[3,-1],[0,-2],[-2,-1],[-2,-4],[-3,0],[-2,1],[-2,5],[-8,0],[0,-1],[-2,-1],[-3,-4],[-2,0],[0,-1],[-2,-1],[-3,-5],[-1,1],[-4,0],[-1,-1],[0,-1],[1,0],[-1,0],[0,-1],[1,-1],[-4,-2],[1,2],[-3,2],[-2,-1],[-1,-2],[0,-1],[2,1],[-2,-2],[-2,0],[0,1],[-1,1],[-2,-1],[-5,-4],[-1,-1],[-4,-4],[1,0],[-1,-1],[0,-1],[-2,-1],[-1,1],[-1,-2],[-2,0],[-1,-3],[0,-1],[1,0],[-1,-1],[-1,1]],[[7721,6227],[-3,3],[-1,0],[1,1],[2,1],[1,-2],[-1,-1],[1,-2]],[[7733,6223],[-2,2],[-1,2],[0,2],[2,2],[2,-4],[1,-1],[0,-2],[-2,-1]],[[7592,9190],[-1,-4],[1,-2],[7,-4],[2,-8],[4,-3],[1,0],[2,-4],[-3,-5],[-3,1],[-2,-1],[-6,2],[-1,0],[-4,1],[-7,1],[-3,2],[-4,1],[-2,1],[2,7],[3,2],[7,13],[0,1],[2,1],[3,0],[2,-2]],[[7549,9153],[8,6],[1,0],[4,5],[4,1],[0,-4],[-4,-5],[0,-8],[-2,-3],[-6,-2],[-1,-2],[-5,-2],[-1,1],[0,2],[3,7],[-1,4]],[[7306,9693],[3,3],[4,0],[2,3],[6,4],[4,-1],[3,0],[5,3],[6,-2],[5,-3],[3,1],[5,-1],[2,-4],[-4,-10],[2,-8],[1,-1],[1,-4],[2,-4],[3,-1],[1,-2],[3,2],[3,0],[4,-1],[5,-2],[3,5],[2,7],[3,6],[-1,3],[-2,1],[0,2],[6,2],[4,0],[2,1],[3,-1],[6,1],[4,0],[2,-4],[5,-4],[4,2],[3,-4],[4,-3],[4,0],[8,-4],[5,0],[3,1],[2,3],[1,0],[3,-1],[1,-3],[3,-1],[6,-7],[3,-13],[0,-3],[-2,-1],[-1,-2],[2,-4],[-2,-4],[1,-3],[0,-2],[-1,-2],[1,-1],[0,-4],[0,-1],[-4,-2],[-4,-5],[0,-7],[-2,-2],[1,-5],[-2,0],[-3,-5],[2,-3],[-2,-4],[0,-4],[-4,-3],[-2,-5],[-7,-3],[1,-2],[-5,-3],[0,-1],[-1,-1],[-4,-1],[-3,-4],[-1,-3],[0,-4],[12,-17],[2,-4],[36,-11],[3,-1],[3,12],[2,5],[-1,1],[1,4],[-1,6],[2,5],[-2,3],[-1,3],[1,3],[5,5],[1,3],[5,3],[7,1],[6,1],[6,1],[3,0],[-8,-9],[-5,-7],[-2,-7],[-2,-7],[6,-3],[2,-1],[1,1],[8,-6],[3,-7],[7,-1],[8,8],[8,-2],[0,-2],[2,-2],[12,-8],[3,2],[0,1],[6,-2],[0,-1],[7,-4],[1,-11],[1,1],[3,-1],[6,5],[2,4],[4,-5],[11,-2],[-2,-3],[0,-3],[2,-1],[1,1],[3,-2],[6,-1],[6,0],[8,-3],[3,1],[3,0],[3,-2],[3,-8],[2,-2],[6,-2],[3,-2],[0,-3],[2,-1],[7,-2],[5,-3],[4,0],[4,1],[3,1],[0,1],[2,4],[3,0],[4,-2],[1,-1],[0,-2],[4,0],[3,-1],[3,0],[4,-2],[9,0],[3,1],[1,1],[2,-1],[5,-1],[5,0],[4,3],[0,1],[5,4],[7,0],[3,3],[7,-1],[3,-8],[0,-3],[6,-3],[-2,-3],[1,-1],[0,-3],[0,-1],[0,-1],[3,-5],[-1,-2]],[[7674,9351],[-9,1],[-1,-4],[-3,-2],[0,1],[-2,-1],[0,-3],[-1,-3],[-3,-2],[-1,-5],[-1,-2],[-3,1],[-1,0],[-5,-5],[-4,0],[-3,-1],[-1,0],[-6,-2],[-7,2],[-5,-2],[-1,-2],[0,-1],[-4,-2],[1,-6],[2,-4],[-3,-7],[0,-4],[1,-4],[-1,0],[0,-2],[-6,-3],[-3,-1],[-5,0],[-8,3],[-7,0],[-7,-1],[-11,2],[-3,0],[-1,-4],[0,-6],[-2,-13],[-1,2],[-5,2],[-1,0],[-1,-1],[-1,0],[-1,-5],[2,-1],[3,0],[5,-4],[-2,-2],[-3,1],[-8,-7],[-5,-5],[-1,0],[-2,-5],[1,-7],[1,-4],[-1,-2],[-2,1],[0,-1],[-5,0],[-3,-4],[-3,0],[-4,4],[-1,-1],[-6,3],[0,2],[-3,1],[-11,-21],[0,-5],[-2,-3],[2,-1],[1,-6],[2,0],[3,-2],[0,-3],[1,-5],[-4,-10],[0,-2],[-4,-4],[-11,-5],[-12,-16],[0,-9],[-2,-5],[-1,-5],[-4,-7],[-1,-2],[2,-2],[2,-3],[4,2],[3,-1],[1,-4],[2,-2],[-2,-2],[2,-2],[-4,-6],[-2,-2],[-4,-2],[-3,-4],[-8,-11],[-3,-7],[-7,-7],[0,-1],[0,-1],[4,-7],[-1,-4],[-2,-1],[1,-4],[-2,-4],[0,-7],[-8,-15],[0,-6],[2,-6],[8,-7],[1,-7],[-1,-4],[0,-4],[-2,-6],[2,-1],[1,-3],[-3,-9],[-1,-4],[1,-2],[14,-12],[1,-9],[2,-4],[4,-8],[2,-1],[8,1],[8,0],[-1,-5],[2,-2],[0,-2],[2,-4],[-2,-3],[2,-2],[-11,-10],[-5,-6],[0,-3],[-6,-9],[-5,-9],[-4,-14],[-3,-1],[-2,-2],[2,-4],[-1,-4],[-6,-3],[-3,-2],[0,-1],[-2,-4],[0,-2],[-1,-3],[-3,-1],[-1,-3],[-1,0],[-7,1],[-2,1],[-5,0],[-9,5],[-13,0],[-2,-5],[-3,-1],[-4,-3],[-16,3],[-10,4],[-7,4],[-5,11],[-4,4],[-12,5],[-5,4],[-2,-2],[1,-2],[-3,0],[0,2],[-5,2],[-1,-2],[-2,-3],[0,-1],[-2,-2],[-3,2],[-3,-2],[-2,3],[-5,-1],[-5,3],[-3,2],[-3,2],[-12,17],[-3,0],[-5,-3],[-3,0],[-3,1],[-5,4],[-7,-2],[-3,0],[-3,6],[-3,2]],[[5059,9048],[-2,0],[-3,-3],[1,-1],[-1,-3],[-3,-1],[-1,-1],[1,-3],[3,-4],[0,-2],[2,-4],[1,-1],[-3,-3],[-1,-2],[-2,6],[-6,2],[-6,3],[-4,0],[-3,1],[-5,0],[-5,-3],[-1,1],[-8,-6],[-3,-5],[2,-3],[-5,-8],[-5,0],[-1,0],[-11,-7],[-2,-3],[1,-4],[-2,-13],[0,-2],[-5,-8],[-4,0],[-3,-3],[-4,-1],[-2,1],[-2,-2],[1,-3],[-1,-1],[1,-2],[0,-2],[-2,-1],[0,-1],[1,-2],[0,-1],[-2,0],[0,1],[-1,-1],[-2,-2],[0,-4],[1,0],[-2,-2],[1,-1],[-1,-1],[-4,1],[-2,-3],[-1,1],[-6,-5],[0,-2],[1,-5],[4,-1],[4,-5],[8,-1],[9,2],[1,-10],[4,-3],[1,-4],[-2,-2],[-2,-6],[-3,-3],[-1,-6],[-3,-2],[0,-1],[-2,-3],[0,-3],[0,-2],[3,-6]],[[4970,8874],[0,-1],[-1,0],[-2,-2],[-4,-3],[-3,-8],[-4,0],[-9,1],[-3,1],[0,1],[-2,0],[-1,-2],[-1,-1],[-4,0],[0,1],[-3,-2],[-4,2],[-4,8],[-1,6],[-12,6],[-2,2],[-6,0],[-4,2],[-5,-2],[-1,-4],[-1,-3],[-3,2],[-6,1],[-3,-5],[-1,-2],[1,-4],[-1,-4],[1,0],[1,-3],[-2,-3],[1,-1],[-3,-2],[2,0],[0,-2],[1,-1],[0,-1],[0,-1],[2,-1],[2,-6],[-2,0],[1,-1],[2,-1],[-4,-4],[0,-3],[-1,-2],[-1,-5],[-5,-10],[-3,-1],[-2,1],[-5,-5],[-5,-2],[0,-1],[-6,1],[-4,-2],[-7,-3],[-6,-5],[-8,-1],[-4,-4],[-3,-1],[-2,1],[-6,0],[-3,0],[-7,-3],[-3,8],[-10,-7],[-2,0],[0,-2],[-2,-4],[1,-1],[-2,-2],[-2,-1],[0,-2],[-5,-5],[-1,-2],[-2,0],[-3,-2],[-1,3],[2,3],[-2,3],[0,2],[1,0],[1,2],[-1,3],[-8,4],[-1,3],[-1,5],[1,2],[1,1],[-3,5],[-6,-2],[-4,1],[-5,-2],[-2,6],[-5,-1],[-4,-2],[-1,-2],[1,-3],[1,-1],[1,-4],[-7,-5],[-8,-3],[-4,-1],[-1,-1],[-4,1],[-6,-3],[-11,2],[-7,-3],[0,1],[-1,1],[2,9],[1,2],[1,-1],[0,3],[3,5],[0,2],[-1,1],[1,2],[4,1],[3,4],[0,1],[-1,2],[-1,-1],[-1,0],[-7,-1],[-4,4],[-2,0],[-2,-3],[-5,0],[-8,1],[-5,4],[-1,3],[-5,0],[-4,6],[-4,3],[-3,0],[-14,-8],[-4,-1],[-3,1],[-1,2],[-5,1],[-6,-8],[-4,-2],[-6,0],[-1,-1],[-12,-1],[-7,1],[1,-8],[-1,-3],[-2,-1],[-4,0],[-3,-2],[-2,-3],[-3,-3],[-2,4],[-2,0],[-3,2],[2,4],[2,10],[-2,16],[2,7],[0,3],[-2,2],[-8,0],[-1,-3],[-1,-10],[-5,-17],[0,1],[-7,-3],[-3,-2],[-2,-1],[-2,1],[-1,2],[-6,-1],[-1,1],[-4,-2],[-4,-3],[0,-5],[-2,-1],[0,-3],[-4,-2],[-1,-2],[-1,-5],[-2,-3],[-1,-3],[-1,1],[-2,0],[-4,-1],[-2,1],[-2,0],[-1,-2],[0,-1],[-2,-1],[-1,-1],[-2,-1],[-2,-3],[-3,1],[-4,-2],[-3,0],[0,-1],[-2,-1],[-1,1],[-3,-1],[0,-1],[-4,0],[-2,2],[-3,-1],[-2,1],[-3,-2],[-3,0],[-10,5],[-5,1],[1,26],[-2,1],[-2,10],[-5,-2],[-3,1],[-5,-2],[0,3],[1,1],[-1,2],[0,1],[-2,5],[-4,3],[0,2],[-1,2],[0,6],[2,2],[1,4],[1,0],[4,10],[8,8],[2,1],[0,3],[1,2],[2,0],[3,8],[0,4],[10,4],[6,10],[1,1],[4,-1],[2,2],[5,1],[2,2],[1,-1],[3,4],[1,7],[0,11],[-1,4],[-5,11],[-3,2],[-6,5],[-3,0],[-6,-4],[-5,2],[-4,-2],[-6,-5],[-5,-1],[-2,5],[1,2],[-1,7],[0,6],[-3,19],[2,4],[-1,3],[1,2],[-1,-1],[-3,8]],[[4430,8987],[8,2],[2,5],[1,3],[3,1],[3,4],[-1,1],[-5,2],[-1,1],[-1,6],[2,5],[-2,3],[-1,1],[-2,0],[-2,-2],[-1,1],[1,3],[3,2],[4,2],[3,0],[1,2],[1,3],[-5,3],[1,3],[4,4],[-1,1],[-2,0],[-6,-1],[-2,0],[-7,0],[-4,-5],[-5,-2],[-4,1],[-3,3],[-1,4],[-4,0],[-5,4],[-1,1],[-2,6],[0,5],[-2,7],[2,2],[1,9],[2,4],[0,5],[-5,0],[-3,2],[-1,-1],[-1,1],[0,1],[-2,1],[-1,3],[-5,5],[-1,3],[-3,3],[-6,1],[0,2],[0,2],[2,0],[1,3],[-2,5],[-1,3],[3,3],[1,4],[-1,1],[-6,23],[-3,8],[-1,5],[2,4],[-2,3],[1,3],[-2,5],[-2,2],[-9,12],[6,-4],[5,2],[1,5],[3,-1],[5,2],[4,1],[5,-4],[5,4],[1,4],[2,2],[4,2],[0,3],[1,1],[1,3],[2,1],[1,2],[6,4],[5,4],[2,1],[4,-1],[4,-3],[8,12],[6,3],[-1,3],[0,2],[3,1],[3,3],[3,-3],[2,-6],[7,-5],[5,3],[2,-1],[8,1],[1,1],[7,-1],[2,2],[6,-3],[5,0],[3,-2],[3,1],[2,3],[3,-3],[1,1],[2,-1],[1,-3],[2,-1],[5,-1],[1,1],[1,5],[4,4],[1,5],[4,3],[1,0],[1,0],[6,-3],[4,0],[7,2],[2,2],[6,3]],[[4949,9847],[3,1],[1,2],[0,2],[-3,2],[2,1],[1,1],[2,0],[0,-1],[5,-1],[1,2],[3,-3],[2,0],[2,2],[1,-1],[2,2],[4,-1],[2,3],[2,-1],[3,1],[1,3],[3,0],[0,3],[2,0],[0,1],[-2,0],[1,1],[2,0],[0,-2],[2,-1],[4,0],[1,3],[1,-2],[4,1],[0,-2],[2,-1],[0,-1],[1,0],[1,1],[1,0],[1,1],[3,-1],[2,1],[2,-1],[-1,-2],[3,1],[2,-1],[0,-1],[1,0],[3,4],[0,-2],[1,-1],[4,2],[1,1],[-1,-3],[2,-1],[0,1],[0,-2],[3,2],[2,0],[0,1],[2,0],[0,-1],[1,1],[0,-1],[1,1],[1,-2],[1,1],[0,-1],[1,1],[0,-1],[2,-1],[0,-2],[1,0],[0,-1],[1,-1],[3,-1],[0,2],[2,1],[1,-2],[2,0],[1,1],[3,-1],[2,0],[1,2],[-1,4],[2,0],[1,1],[1,1],[2,-1],[1,1],[2,0],[0,-2],[3,-2],[4,3],[1,-1],[0,-1],[1,0],[1,-2],[3,2],[1,-2],[3,-3],[2,1],[5,4],[1,-1],[4,1],[0,-2],[3,1],[0,-1],[3,-1],[1,0],[4,1],[3,3],[1,0],[1,1],[1,0],[3,-1],[2,1],[1,-1],[0,-1],[1,3],[2,0],[3,-1],[0,2],[2,0],[1,1],[2,-1],[1,-3],[2,0],[-1,-2],[2,-1],[2,1],[1,2],[2,0],[-1,-5],[2,-1],[0,-1],[4,0],[3,1],[1,-1],[0,2],[4,0],[4,-1],[1,-1],[1,1],[0,-2],[2,1],[-1,-2],[2,1],[4,1],[0,-1],[1,1],[0,-1],[1,0],[-1,-2],[1,0],[0,-1],[2,-2],[0,2],[1,-1],[-1,-1],[1,1],[-2,2],[1,-1],[1,2],[0,-2],[4,2],[4,-2],[3,2],[1,-1],[1,1],[1,0],[1,0],[3,-1],[1,0],[3,3],[3,-3],[2,2],[-2,2],[1,1],[-1,3],[2,5],[5,-1],[0,-2],[2,-1],[2,-2],[2,1],[2,-2],[1,0],[0,-2],[2,0],[2,-1],[1,-1],[3,1],[3,3],[4,-2],[4,3],[6,-3],[2,1],[2,-1],[2,1],[1,0],[-2,-2],[1,-2],[3,2],[1,-1],[3,-1],[4,2],[3,3],[1,0],[2,1],[3,1],[2,0],[0,1],[1,-1],[3,1],[3,-1],[1,2],[3,1],[-1,1],[2,1],[2,1],[2,-1],[3,2],[1,0],[1,2],[3,1],[2,-1],[2,0],[5,4],[0,3],[2,0],[-2,4],[1,1],[1,-2],[2,0],[0,-1],[2,0],[1,-2],[2,0],[1,-1],[0,-2],[1,0],[0,-2],[3,0],[2,3],[2,-7],[1,-1],[4,2],[0,3],[1,-1],[2,1],[-2,-7],[1,-2],[2,-1],[1,0],[1,2],[3,-1],[2,2],[1,-1],[3,1],[1,-1],[2,1],[2,-3],[1,1],[0,-1],[1,1],[4,-1],[0,-2],[1,-1],[3,0],[1,1],[0,-2],[1,-1],[5,0],[0,1],[2,-1],[1,3],[3,-1],[2,-1],[2,3],[2,0],[1,2],[2,0],[-1,1],[1,2],[-1,-2],[1,-2],[6,1],[5,4],[7,4],[1,1],[-1,2],[2,0],[0,1],[2,1],[1,-1],[4,2],[0,-3],[3,-2],[1,0],[0,-1],[1,0],[1,1],[2,-1],[0,-3],[1,0],[2,2],[0,1],[0,1],[1,-2],[2,2],[2,-2],[1,1],[1,0],[1,2],[1,-1],[2,1],[0,-2],[1,0],[2,0],[6,4],[2,2],[1,2],[-1,1],[1,0],[-1,1],[2,0],[-3,0],[0,1],[-1,1],[6,2],[2,-2],[1,1],[6,5],[-1,3],[2,3],[-2,2],[1,2],[3,0],[2,0],[1,3],[1,-3],[1,2],[2,-2],[4,0],[2,1],[0,3],[5,1],[0,2],[3,1],[1,2],[-2,3],[0,3],[1,4],[2,0],[1,2],[3,-1],[3,2],[-2,-2],[3,-3],[1,1],[-1,-6],[1,1],[0,-1],[2,-1],[0,-1],[2,-1],[2,3],[0,-1],[1,0],[1,-2],[0,1],[1,-1],[1,2],[1,0],[0,-7],[2,2],[3,0],[0,1],[1,-1],[1,1],[0,-4],[2,1],[1,-2],[0,1],[2,1],[1,-3],[-1,-3],[-2,-1],[2,-1],[-2,0],[0,-1],[-2,-1],[0,-1],[3,-1],[-1,-1],[1,-1],[1,1],[2,0],[0,-1],[1,0],[0,-2],[2,1],[2,-1],[-1,-2],[-1,0],[0,-1],[2,-1],[1,-3],[2,0],[-1,-2],[1,-1],[0,-1],[2,-2],[0,-1],[2,-1],[1,2],[2,-2],[0,-2],[3,0],[-1,-2],[2,0],[11,-4],[1,0],[2,2],[1,0],[2,2],[-1,-2],[1,1],[-2,-3],[3,-1],[8,3],[-3,-2],[1,-2],[-1,1],[-2,0],[1,1],[-4,-1],[1,-4],[-2,4],[-2,1],[1,-3],[1,1],[-2,-2],[1,-1],[1,0],[-2,-1],[0,-1],[2,1],[-1,0],[3,-2],[-3,1],[1,-2],[0,-2],[1,-1],[1,1],[0,-1],[1,1],[-1,0],[2,4],[1,-1],[1,1],[-1,1],[1,-1],[-2,-3],[1,-1],[-1,1],[-3,-4],[0,-2],[2,0],[1,1],[0,1],[3,-1],[0,-1],[2,-1],[-1,2],[3,-2],[1,1],[1,1],[-1,-2],[2,1],[-1,1],[1,0],[0,1],[1,-1],[-1,2],[-2,0],[3,1],[1,0],[0,-3],[2,-1],[3,0],[3,1],[0,2],[2,1],[0,1],[1,1],[3,-1],[3,1],[0,3],[3,0],[-1,1],[2,-2],[2,-4],[8,-1],[3,2],[2,-1],[3,1],[5,-1],[7,0],[7,-2],[6,4],[4,-2],[5,1],[0,-2],[1,0],[0,-2],[12,5],[10,0],[3,1],[3,-2],[10,3],[4,-2],[1,-1],[0,-3],[0,-1],[4,-3],[1,-6],[1,5],[0,-2],[2,0],[2,1],[2,2],[3,-3],[5,-1],[2,1],[0,1],[4,-2],[3,0],[4,1],[5,0],[2,-1],[4,2],[2,0],[1,-3],[2,0],[0,-1],[2,-1],[0,1],[2,-2],[6,-6],[-2,-5],[4,-3],[6,-2],[2,-4],[5,-3],[1,-2],[1,0],[2,-1],[-1,-2],[1,-1],[3,-4],[5,1],[2,1],[2,-1],[2,2],[1,0],[-1,-1],[6,-1],[3,0],[1,1],[6,2],[2,-2],[3,1],[4,2],[3,2],[3,0],[3,-5],[7,-1],[1,1],[5,0],[2,-1],[1,-2],[2,-1],[-1,-1],[3,-2],[3,1],[-2,1],[0,1],[4,-1],[2,-3],[4,-1],[10,-1],[4,-1],[0,1],[2,-1],[4,1],[1,-1],[0,1],[3,0],[0,1],[1,-1],[0,1],[1,-1],[0,1],[1,-1],[0,1],[1,-2],[3,2],[2,-1],[2,1],[4,0],[1,-1],[4,1],[2,-1],[0,-1],[2,1],[0,-2],[4,4],[1,-1],[-1,-1],[5,-2],[0,-2],[4,-1],[2,0],[2,-1],[-1,-1],[2,0],[0,-1],[3,1],[2,0],[0,-1],[2,-1],[0,-1],[4,-2],[3,1],[7,-1],[1,4],[2,0],[1,-4],[2,-1],[0,-3],[0,-1],[2,1],[-2,1],[1,2],[4,-2],[2,1],[1,-1],[1,1],[-1,1],[1,0],[1,0],[-1,-2],[4,-1],[-1,-1],[1,0],[1,1],[2,-1],[4,-1],[0,1],[2,0],[1,-4],[0,2],[0,1],[6,-1],[3,-2],[3,0],[3,-2],[-1,0],[2,-1],[-3,-1],[4,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,1],[3,-1],[1,1],[2,-2],[2,1],[2,-1],[-1,-1],[1,-1],[5,1],[1,-2],[5,1],[6,-1],[9,-4],[5,0],[4,-1],[2,-2],[4,2],[1,-1],[-1,-2],[3,2],[3,-1],[1,1],[6,-1],[4,2],[1,-1],[1,-3],[0,-1],[1,1],[4,-2],[3,0],[0,4],[3,1],[1,-2],[1,1],[0,2],[4,0],[3,0],[1,-1],[2,0],[2,-2],[4,-2]],[[6069,9753],[-1,-2],[2,-5],[-5,-6],[-1,-2],[1,-1],[-6,1],[0,-2],[2,-4],[-2,0],[-2,-2],[2,-1],[0,-2],[-1,-2],[0,-2],[-1,0],[7,-4],[0,-1],[-2,-5],[4,-11],[0,-10],[-1,-8],[-1,-2],[-4,-2],[-2,-3],[-5,-1],[-2,2],[1,8],[-2,2],[-7,3],[-1,-2],[-3,0],[-1,1],[-4,1],[-3,4],[-4,1],[-1,-3],[-4,-3],[-1,-2],[-2,0],[-1,-4],[-2,-2],[-2,-1],[0,-3],[0,-2],[2,0],[-9,0],[-1,-1],[-2,-1],[-5,0],[-4,2],[-2,0],[-2,-2],[-1,1],[-2,-2],[-1,2],[-4,-1],[0,1],[-3,-3],[-5,-2],[-1,-1],[-2,0],[1,-6],[3,-5],[0,-6],[-4,-3],[-1,-2],[2,-3],[-4,-5],[0,-6],[1,-3],[0,-2],[-2,-3],[-3,-1],[-3,0],[-11,5],[-5,-4],[-8,-2],[-2,-1],[-3,2],[-1,-3],[-5,0],[-3,1],[-1,0]],[[5969,9523],[3,1],[1,-2],[4,-1],[2,1],[2,3],[5,1],[4,0],[2,0],[5,-3],[10,0],[5,-2],[1,-1],[4,5],[4,1],[4,3],[2,3],[7,-6],[7,1],[7,-5],[17,17],[11,-5],[1,1],[8,-1],[0,2],[2,6],[4,5],[1,1],[1,-3],[5,1],[2,-1],[5,-7],[4,-2],[4,0],[4,-2],[3,-2],[2,-5],[2,-1],[1,-6],[5,-6],[0,-4],[1,-3],[2,-3],[2,-3],[7,-8],[14,-2],[6,-1],[2,-1],[4,2],[5,-2],[7,-1],[7,-3],[4,-3],[-1,-13],[1,-10],[7,-4],[-1,-3],[-3,-2],[0,-4],[3,-13],[0,-7],[-1,-3],[3,-6],[5,-3],[4,0],[2,3],[4,3],[2,3],[5,0],[9,7],[2,-1],[-2,-2],[2,-2],[2,-1],[1,-1],[5,-2],[-1,-6],[-3,-4],[-1,-4],[-1,-2],[0,-1],[-2,0],[-2,2],[-1,2],[-2,2],[-2,-1],[-1,-4],[-1,-1],[-6,-2],[-3,-5],[1,-4],[2,0],[2,-2],[11,-11],[2,1],[3,-1],[7,3],[4,0],[7,-2],[-1,-4],[2,-4],[1,-3],[4,-1],[1,-7]],[[6278,8748],[-9,4],[-1,-3],[-3,0],[-6,5],[-3,0],[-2,-2],[-2,-1],[-4,7],[-1,6],[-3,3],[-2,5],[-6,-3],[-6,-2],[-2,-2],[-4,3],[-3,-1],[-3,2],[-4,0],[-2,-1],[-2,2],[-9,-3],[-8,5],[-1,4],[-1,-2],[-4,-5],[-4,2],[-2,-1],[-5,-8],[-3,-2],[-4,-8],[-9,0],[-3,-4],[-1,0],[-1,-3],[-5,3],[-2,2],[-2,0],[-6,1],[-13,5],[-1,1],[1,2],[-5,0],[-1,-1],[-4,-1],[-8,-10],[-9,-5],[-2,-1],[-3,1],[-14,6],[-7,2],[4,4],[-1,1],[3,25],[2,0],[2,-1],[4,1],[1,-1],[3,1],[-8,5],[2,2],[1,5],[-1,2],[-1,-1],[-1,1],[-1,-3],[-5,0],[-3,-3],[-5,-1],[2,-1],[0,-2],[-2,-1],[-1,-1],[-4,0],[-4,2],[-9,2],[0,-1],[2,-2],[-1,-4],[-1,-1],[-2,-1],[-4,2],[-2,-2],[1,-2],[-7,6],[-4,9],[-6,1],[-6,8],[-3,2],[-1,2],[-3,3],[2,3],[-1,0],[-2,2],[1,3],[-1,2],[0,3],[-1,3],[-3,2],[-2,0],[-4,2],[0,1],[-5,2],[-4,0],[0,-1],[-3,-4],[-7,-3],[-8,-8],[-4,-3],[-2,-5],[3,-4],[-10,-9],[-3,-4],[-2,-5],[-4,0],[-1,-1],[-8,-4],[0,1],[-2,2],[-1,4],[-2,3],[-6,18],[-4,3],[-3,5],[-2,3],[0,4],[-2,7],[-8,9],[-1,0],[1,2],[-1,-1],[-2,2],[-2,0],[-1,9],[-2,1],[-7,-1],[-5,-2],[-5,-8],[-2,0],[0,1],[-5,-2],[-1,1],[0,1],[1,1],[-2,5],[-8,4],[-2,-2],[-1,-1],[-4,-3],[-3,-3],[0,1],[-2,-1],[1,-1],[-1,-2],[-3,-2],[0,-1],[-1,2],[0,6],[-2,2],[-3,2],[-3,6],[1,3],[-1,2],[1,1],[3,6],[1,3],[4,2],[1,2],[3,3],[0,2],[2,7],[-2,3],[2,3],[2,5],[7,3],[6,4],[-1,1],[-5,20],[10,13],[5,3],[6,1],[-6,7],[2,1],[-4,3],[-1,8],[-2,5],[1,2],[-1,6],[-1,9],[1,3],[-7,2],[-8,-1],[0,-1],[-2,1],[0,2],[-6,-3],[-1,-1],[0,-1],[-3,-2],[-2,1],[-1,1],[-2,0],[-1,1],[-3,0],[-3,3],[0,2],[-5,-2],[0,8],[-2,4],[5,4],[3,6],[0,3],[-3,7],[-2,8],[0,1],[6,5],[1,9],[-4,7],[1,3],[3,2],[0,3],[3,14]],[[6276,9366],[-2,3],[0,5],[3,5],[3,1],[2,-2],[1,1],[1,1],[-2,2],[0,5],[4,3],[3,1],[1,-1],[-3,8],[5,7],[3,1],[2,-5],[-1,-9],[2,-6],[0,-7],[0,-1],[-1,-11]],[[6252,9382],[-4,6],[2,4],[-4,5],[1,3],[2,3],[2,-1],[3,-1],[3,-3],[0,-12],[-5,-4]],[[6225,9398],[0,-4],[-6,-1],[-4,6],[3,2],[6,-2],[1,-1]],[[1074,256],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,-1],[1,1],[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],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,-1],[1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[1,0],[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,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,1],[-1,0],[1,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],[1,0],[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],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[-1,0],[1,0],[0,-1],[0,1],[0,-1],[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],[0,-1],[0,1],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,-1],[0,1],[1,0],[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,0],[0,-1],[1,0],[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],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,-1],[1,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,-1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[0,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],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,1],[0,-1],[0,1],[1,0],[0,1],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[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],[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],[0,1],[0,-1],[0,1],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[1,0],[-1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,1],[0,-1],[0,-1],[1,1],[0,1],[0,-1],[0,1],[1,0],[-1,0],[1,0],[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],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[1,0],[1,-1],[0,1],[0,-1],[0,1],[1,0],[0,-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],[-1,0],[1,0],[1,0],[0,1],[0,-1],[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,0],[0,-1],[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],[0,1],[1,0],[0,1],[0,1],[1,0],[-1,-1],[1,0],[0,1],[0,-1],[1,0],[1,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],[0,1],[-1,0],[0,1],[0,1],[1,0],[-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],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[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],[1,0],[1,0],[0,-1],[1,0],[0,1],[-1,0],[1,0],[0,-1],[1,0],[0,1],[0,-1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[1,0],[-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],[1,0],[-1,-1],[0,-1],[1,0],[0,-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,0],[0,1],[1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,-1],[-1,0],[0,1],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[-1,0],[-1,1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[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],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-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],[-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,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],[1,0],[0,-1],[-1,1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[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],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[-1,0],[1,-1],[0,-1],[1,0],[1,0],[1,0],[-1,0],[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],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,1],[0,1],[-1,-1],[0,-1],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[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],[-1,0],[0,-1],[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],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,1],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,-1],[0,-1],[0,1],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[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],[-1,0],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[0,-1],[0,1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[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],[1,0],[0,-1],[0,-1],[0,-1],[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],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[0,-1],[-1,0],[-1,0],[0,-2],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-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,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,-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],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[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],[0,-1],[-1,0],[-1,0],[-1,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],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[0,1],[-2,0],[0,-1],[1,0],[-1,0],[1,0],[1,0],[-1,0],[-1,0],[-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,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[2,0],[0,-1],[-2,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,1],[0,1],[1,-1],[0,-1],[0,1],[1,0],[-1,0],[1,0],[-1,0],[0,1],[0,-1],[0,1],[1,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[1,0],[-1,0],[0,1],[-1,-1],[0,1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,1],[0,-1],[1,0],[-1,0],[1,0],[-1,0],[-1,0],[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,0],[0,-1],[0,1],[0,-1],[0,-1],[0,1],[-1,1],[1,0],[0,1],[0,-1],[-1,0],[1,0],[0,1],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[1,0],[-1,0],[0,-1],[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,0],[0,1],[-1,0],[0,-1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[0,-1],[0,1],[0,1],[-1,0],[-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],[-1,0],[1,0],[-1,0],[0,1],[0,-1],[0,1],[0,-1],[-1,0],[-1,0],[1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[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],[-1,0],[0,1],[-1,1],[0,1],[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],[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],[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],[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],[0,1],[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],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[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],[-1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,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],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[0,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],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[0,1],[0,-1],[1,1],[1,0],[0,1],[1,-1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[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],[1,0],[0,1],[0,1],[0,1],[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],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0]],[[1916,485],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[0,-1],[1,0],[-1,-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],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,1],[0,-1],[0,-1],[0,-1],[-1,0],[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],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-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,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-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],[0,1],[0,-1],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[1,0],[-1,0],[-1,0],[0,-1],[-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,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[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],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[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],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-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],[-1,0],[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],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[-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],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,-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],[0,-1],[-1,1],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-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],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[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,0],[-1,0],[0,-1],[-1,0],[-1,-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],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-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],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-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],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[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],[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],[-1,0],[0,-1],[-1,0],[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],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-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],[-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],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,1],[0,-1],[-1,0],[-2,1],[1,-1],[1,0],[1,0],[-1,0],[1,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],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[0,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],[-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,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-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],[1,0],[0,-1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[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,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[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],[1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[1,0],[1,-1],[0,1],[1,0],[1,0],[1,0],[1,0],[-1,0],[0,1],[1,0],[0,-1],[0,1],[1,0],[1,0],[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,0],[1,0],[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],[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,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[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,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[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],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,1],[0,1],[1,0],[1,0],[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],[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],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[1,0],[0,1],[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],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[-1,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[-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],[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,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[-1,0],[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],[0,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],[1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[-1,0],[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],[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,-1],[0,1],[1,0],[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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[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],[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,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,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],[0,1],[1,0],[0,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],[0,-1],[0,1],[1,0],[0,-1],[0,1],[0,1],[0,-1],[1,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],[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],[0,1],[0,1],[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],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[-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],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[1,0],[1,0],[0,1],[-1,0],[1,1],[-1,0],[1,0],[1,1],[0,1],[0,1],[1,0],[0,1],[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],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-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],[1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[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],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[1,0],[-1,0],[0,1],[1,0],[0,1],[-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],[-1,0],[1,0],[0,1],[-1,0],[0,-1],[0,1],[0,1],[1,0],[-1,0],[0,1],[1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[-1,0],[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],[0,1],[0,-1],[1,0],[1,0],[0,1],[0,1],[-1,0],[1,0],[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],[1,0],[1,0],[0,1],[1,0],[-1,-1],[1,0],[1,1],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,-1],[1,1],[0,1],[1,0],[0,-1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,-1],[0,-1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,1],[0,-1],[0,1],[0,1],[1,0],[-1,0],[1,0],[0,1],[1,0],[-1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[-1,0],[1,0],[0,1],[0,-1],[1,-1],[0,-1],[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],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,1],[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],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[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,0],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[-1,1],[0,-1],[0,1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[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,0],[0,-1],[1,0],[1,0],[0,1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[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],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[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],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[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],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[-1,1],[0,-1],[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],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[-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],[0,-1],[1,0],[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,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-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],[-1,0],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-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],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1]],[[2048,815],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[1,0],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-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],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[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],[-1,-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,0],[-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,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,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],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[1,0],[0,1],[1,0],[-1,0],[-1,0],[1,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[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],[0,1],[-1,0],[0,-1],[0,-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],[0,-1],[-1,0],[1,0],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[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],[0,-1],[0,1],[0,-1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,-1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[-1,0],[1,0],[1,0],[-1,-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],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[-1,1],[1,0],[-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],[0,1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[-1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,1],[0,-1],[0,1],[1,0],[0,1],[1,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,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],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,1],[-1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[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],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[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],[0,1],[0,1],[0,1],[0,-1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[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],[0,-1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[-1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[-1,0],[1,0],[-1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,-1],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[-1,0],[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],[0,1],[0,-1],[0,1],[0,-1],[1,0],[0,1],[1,-1],[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],[1,0],[0,-1],[0,1],[0,-1],[1,0],[1,0],[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],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0],[-1,0],[1,0],[0,1],[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],[0,-1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-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],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[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],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-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],[0,1],[1,0],[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],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,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],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[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],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[-1,1],[0,1],[0,1],[1,0],[0,1],[1,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[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],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[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],[0,-1],[0,-1],[0,1],[1,0],[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,0],[0,-1],[0,-1],[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],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,1],[1,0],[1,-1],[0,1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[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,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[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,0],[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],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[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],[0,-1],[1,0],[0,-1],[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,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[1,0],[-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],[-1,0],[1,0],[0,-1],[0,-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],[-1,0],[0,-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,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[-1,1],[1,0],[-1,0],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[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],[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,-3],[1,3],[-1,0],[1,2],[-1,0],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-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],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-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,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,0]],[[2050,814],[1,0],[0,1],[1,0],[0,-1],[-1,0],[-1,0]],[[2144,1013],[0,1],[1,0],[0,1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0]],[[2086,991],[-1,0],[0,1],[1,0],[0,-1]],[[2099,979],[0,1],[0,1],[0,-1],[-1,0],[1,1],[-1,0],[1,0],[0,-1],[0,-1]],[[1931,680],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[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],[0,-1],[-1,0],[0,1],[1,0],[-1,0],[0,-1]],[[1210,311],[1,1],[0,-1],[-1,0]],[[1208,308],[0,1],[1,0],[-1,-1]],[[2068,1081],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[1,0],[-1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,-1],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,1],[0,-1],[0,1],[1,0],[-1,0],[1,0],[0,-1],[1,0],[0,1],[0,-1],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,1],[1,0],[-1,0],[1,0],[-1,0],[1,0],[0,1],[0,-1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[1,0],[1,0],[-1,0],[1,0],[-1,0],[1,0],[0,-1],[0,1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[0,1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[1,0],[-1,0],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[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],[0,1],[-1,0],[0,-1]],[[2060,1035],[0,1],[1,0],[0,-1],[-1,0]],[[2055,1022],[0,1],[-1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[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],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[-1,0],[-1,0]],[[2057,977],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,-1],[1,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[-1,0],[1,0],[0,1],[0,1],[0,1],[-1,0],[1,1],[-1,0],[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],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[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],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[1,0],[-1,1],[0,-1],[0,1],[-1,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1]],[[4430,8987],[-2,-1],[1,-3],[-3,-5],[-5,-2],[-2,-2],[-4,0],[-5,3],[-4,-1],[-2,-2],[0,-5],[-1,-3],[-2,0],[-5,1],[-6,-5],[-1,-2],[-2,0],[-2,-4],[-6,-1],[-2,1],[-2,-2],[-2,-7],[-2,-4],[-6,1],[-4,3],[-7,-1],[-5,-7],[-4,-1],[-2,3],[-5,0],[-6,-5],[-4,0],[-6,6],[-6,0],[-10,-1],[-4,1],[-7,-2],[-11,-1],[-1,-2],[2,-6],[-8,-5],[-6,-2],[-1,-1],[-3,0],[-4,0],[-8,2],[-16,-3],[-4,-2],[-3,-5],[-6,-4],[-1,-3],[1,-4],[-2,-10],[-8,-9],[-4,-1],[-4,-3],[-7,-2],[-8,-5],[-6,-5],[-1,-4],[1,-5],[-1,-5],[-4,-4],[-8,-6],[-5,-4],[-17,-9],[-3,-2],[-3,-5],[0,-4],[-6,-6],[-6,-3],[-1,1],[-3,-2],[-4,7],[0,6],[1,0],[0,3],[2,1],[-2,1],[1,-1],[2,1],[-3,2],[1,5],[-2,1],[-1,3],[0,8],[-1,5],[0,-1],[0,3],[1,2],[-1,5],[1,0],[-1,3],[1,2],[-1,0],[1,5],[-1,4],[0,8],[1,0],[0,3],[1,2],[1,1],[1,3],[-1,0],[-2,4],[0,1],[-1,2],[1,1],[0,3],[-1,1],[1,1],[-2,2],[2,1],[1,7],[-2,1],[-1,1],[2,5],[-2,0],[-1,6],[-2,3],[1,3],[-1,4],[2,3],[-2,11],[-1,2],[-1,4],[1,1],[4,1],[4,-1],[2,1],[0,1],[3,0],[3,4],[5,1],[0,3],[2,-1],[-1,-3],[3,-3],[2,0],[2,-2],[3,1],[1,3],[-2,2],[3,3],[1,1],[0,5],[-1,3],[0,1],[-2,-1],[-1,4],[-4,0],[0,-1],[-1,1],[-2,-1],[-2,2],[-1,4],[3,0],[0,1],[1,-1],[2,1],[2,-3],[1,0],[4,2],[2,5],[-1,2],[1,0],[1,6],[1,2],[-2,4],[1,1],[1,2],[1,-1],[2,0],[2,1],[0,2],[1,-1],[2,2],[-1,1],[4,1],[4,2],[1,5],[-1,5],[1,2],[3,2],[1,-2],[3,1],[0,-1],[1,1],[2,1],[0,3],[2,0],[1,-1],[3,2],[-3,-2],[-1,1],[-2,0],[1,-1],[0,-1],[0,-2],[1,1],[3,0],[1,0],[0,1],[0,-1],[0,1],[1,0],[2,3],[-1,1],[1,1],[0,1],[-1,-1],[1,2],[0,-1],[1,1],[0,-1],[1,0],[1,2],[-2,0],[2,2],[0,-2],[1,1],[3,-1],[0,2],[1,0],[0,-2],[2,1],[1,2],[1,-1],[-1,3],[2,1],[-1,1],[1,1],[-1,1],[2,3],[2,0],[1,1],[-1,-1],[1,-2],[1,0],[0,2],[0,-1],[1,-1],[1,1],[0,1],[1,-1],[3,3],[1,1],[3,5],[1,4],[2,1],[1,2],[3,1],[4,2],[3,0],[2,-2],[2,0],[2,1],[1,0],[0,2],[1,-2],[3,-1],[2,1],[-1,1],[-1,-1],[-3,2],[0,1],[2,1],[0,2],[1,-1],[0,3],[-1,3],[-3,3],[-1,-1],[3,2],[1,7],[2,2],[-1,2],[0,2],[1,2],[-1,4],[1,2],[-2,2],[-2,0],[-1,-2],[-2,0],[0,3],[-3,-1],[-1,-1],[-2,-5],[-1,0],[0,-2],[1,0],[2,-2],[0,-4],[-4,-1],[0,-2],[-2,0],[1,-2],[-3,2],[-2,-4],[-1,-3],[2,-1],[0,-3],[2,-4],[-3,-4],[-8,0],[-1,-2],[-2,-2],[1,0],[-3,-3],[-3,0],[-1,1],[-2,1],[0,-2],[-1,0],[-1,-1],[-3,-2],[-2,9],[-1,-1],[0,-3],[0,2],[-4,0],[-1,1],[-2,-3],[0,-4],[0,-1],[-1,-1],[-1,-1],[1,0],[-6,-2],[-1,-1],[1,-1],[-3,-2],[-3,-2],[-3,2],[-5,1],[-1,-2],[1,0],[-1,0],[0,-1],[2,1],[-2,-1],[-1,-2],[1,0],[-1,0],[0,-4],[-2,0],[0,-1],[-1,2],[-1,-1],[-2,2],[-1,-1],[-4,5],[-1,1],[-1,-3],[-2,0],[-1,-2],[-2,-1],[-1,1],[-2,1],[0,2],[-2,1],[-7,2],[-2,-4],[-2,-5],[-2,3],[-2,-1],[0,2],[1,0],[3,9],[0,6],[2,5],[1,9],[-1,2],[1,3],[1,1],[1,-1],[1,-5],[2,-2],[-1,-3],[5,-1],[0,-2],[3,-3],[0,-3],[2,0],[1,-2],[3,3],[-1,1],[-1,-1],[-1,2],[0,3],[2,1],[0,1],[-1,3],[-1,1],[0,3],[1,1],[1,-1],[0,7],[-2,0],[1,2],[-1,2],[-1,0],[0,2],[0,3],[-1,0],[1,1],[0,2],[-3,1],[-1,2],[-1,1],[0,1],[2,1],[1,-1],[2,0],[1,-1],[1,-1],[6,1],[1,0],[2,0],[1,-1],[-1,-3],[1,-1],[3,-2],[2,0],[0,1],[1,0],[-1,0],[1,-2],[1,1],[-1,1],[1,-1],[3,2],[2,1],[2,3],[1,0],[2,2],[3,0],[1,2],[0,4],[1,0],[2,7],[0,2],[1,2],[1,0],[2,5],[0,-1],[2,1],[3,6],[2,0],[1,2],[1,0],[4,6],[1,0],[-1,-2],[1,-1],[0,1],[1,0],[0,2],[0,-3],[3,0],[1,1],[0,2],[1,1],[-1,0],[-2,-1],[3,2],[2,0],[1,3],[1,0],[7,9],[4,1],[2,2],[-1,3],[-1,0],[1,-1],[-1,-2],[-1,1],[1,-1],[-2,-2],[0,1],[-3,0],[-2,0],[0,-2],[-4,0],[-2,2],[0,2],[-1,2],[1,1],[-2,4],[-3,-3],[-2,0],[-1,-3],[-3,-4],[-2,-1],[-1,1],[-8,-6],[-2,0],[-4,-7],[-4,0],[0,-3],[-1,-1],[-2,-1],[-2,0],[-1,-2],[-1,-2],[-3,5],[-4,1],[-1,-1],[-4,3],[-2,-1],[0,-1],[-1,2],[-3,0],[-1,-3],[-1,2],[-2,-1],[0,-1],[2,-1],[-1,0],[-1,-2],[-1,0],[-1,-3],[-1,2],[-1,0],[-3,-3],[-1,1],[0,2],[-2,1],[0,2],[-1,2],[-2,1],[-1,0],[-1,-2],[0,1],[-1,4],[-2,4],[-2,2],[-6,1],[1,3],[1,0],[-2,2],[3,0],[-1,1],[1,2],[-1,1],[1,1],[0,1],[1,0],[0,4],[-1,5],[-3,5],[-2,1],[-3,1],[-2,1],[-2,0],[-4,1],[-1,0],[-3,-2],[-2,-5],[-2,1],[-1,1],[-1,-1],[-3,6],[-1,0],[0,1],[-1,0],[4,4],[0,1],[-2,2],[2,2],[-1,1],[1,-1],[6,0],[0,-1],[2,1],[0,-1],[2,-1],[2,0],[6,3],[1,4],[2,-1],[-1,-2],[2,4],[1,0],[-1,3],[-1,-2],[-1,3],[3,3],[2,-1],[4,2],[-1,-3],[1,0],[1,2],[2,-2],[2,0],[1,-2],[0,-3],[-1,-3],[1,-4],[-1,-1],[2,-1],[-1,-2],[-2,0],[-2,-3],[-2,0],[-1,-2],[0,-2],[2,-7],[5,3],[1,1],[0,2],[2,1],[-1,-2],[1,0],[1,1],[-1,1],[1,1],[2,-2],[0,-1],[1,0],[1,1],[0,2],[1,-1],[0,-2],[2,2],[2,-1],[0,-2],[2,-1],[2,0],[0,1],[-1,2],[1,1],[-1,0],[0,1],[0,5],[-2,1],[-3,0],[3,3],[-1,2],[-1,1],[-1,1],[1,2],[1,2],[0,2],[2,3],[0,-1],[2,-2],[0,-1],[2,3],[0,-2],[1,2],[1,-1],[1,1],[0,2],[2,2],[-1,1],[-2,-1],[-1,-2],[-1,3],[-2,0],[1,3],[-1,0],[-1,0],[1,1],[0,2],[0,-2],[1,0],[0,3],[-2,0],[1,1],[2,0],[-1,2],[0,2],[1,0],[1,2],[-2,0],[2,2],[0,1],[-2,-3],[-5,-3],[0,-1],[-1,1],[1,2],[1,5],[-1,5],[1,0],[0,1],[-2,2],[-2,4],[-2,0],[2,4],[-1,1],[1,1],[2,1],[2,-3],[0,-2],[0,-1],[1,0],[2,4],[-1,2],[-3,-1],[0,1],[-1,0],[0,1],[-1,0],[1,0],[-1,2],[1,1],[0,4],[1,1],[2,2],[0,-1],[7,-1],[3,4],[2,-2],[-1,3],[1,-1],[0,2],[3,0],[0,1],[1,0],[0,3],[2,1],[-1,3],[1,-2],[3,-1],[1,1],[0,-2],[1,0],[1,3],[-1,0],[1,1],[0,-1],[1,2],[-2,1],[2,-1],[0,2],[-1,4],[-4,2],[1,1],[1,4],[2,1],[0,1],[2,2],[1,2],[0,1],[0,-1],[2,3],[1,0],[1,3],[3,1],[3,4],[1,7],[4,4],[0,2],[2,6],[-1,1],[-1,2],[2,2],[-1,0]],[[4138,9229],[-4,-1],[-1,-1],[0,-4],[1,-7],[-1,1],[-1,0],[0,-1],[-1,1],[0,-1],[-1,1],[0,-2],[-1,1],[1,1],[-1,2],[-2,-1],[-1,1],[0,2],[2,1],[0,-2],[1,2],[0,-1],[1,0],[1,-1],[-1,4],[-3,1],[1,4],[1,-1],[1,1],[-1,3],[0,1],[2,1],[-1,1],[2,1],[-1,2],[0,1],[-2,1],[-1,-3],[-1,-1],[-3,2],[-2,4],[0,1],[1,-1],[2,1],[0,1],[0,2],[2,0],[1,1],[1,-1],[1,-5],[2,-1],[2,1],[1,2],[3,-1],[0,-2],[-2,-1],[1,-3],[-1,-1],[0,-1],[-1,0],[1,-3],[3,-1],[0,-1],[-1,0]],[[4144,9201],[-1,-2],[2,-2],[-1,-1],[0,-2],[-1,0],[-1,-1],[1,-2],[-1,-2],[-3,1],[0,3],[1,2],[2,2],[1,2],[-1,2],[2,0]],[[4098,9111],[-1,1],[1,1],[-2,2],[2,1],[-1,2],[1,2],[2,-2],[1,2],[-3,7],[1,1],[1,2],[0,1],[1,-1],[2,1],[0,3],[1,1],[0,3],[3,-3],[1,3],[1,0],[0,-2],[-3,-4],[-3,-9],[-1,-11],[-1,-1],[-1,2],[-2,-2]],[[4101,9103],[0,4],[2,0],[0,-3],[-2,-1]],[[4111,9046],[1,0],[5,-5],[0,-2],[1,-2],[0,-2],[2,-4],[-2,0],[-1,-1],[1,-3],[1,-1],[-1,-1],[-1,0],[-1,-2],[-4,-1],[-1,1],[0,1],[1,2],[2,0],[0,4],[2,0],[-2,4],[1,3],[-2,4],[1,0],[-3,2],[-1,3],[1,0]],[[4122,9009],[-4,2],[0,-1],[-1,1],[-2,-1],[-3,2],[2,2],[-1,4],[1,0],[0,1],[1,-2],[2,-2],[5,-2],[1,-3],[-1,-1]],[[5724,8385],[-2,1],[1,1],[-1,1],[2,5],[2,0],[4,1],[2,-1],[-1,2],[2,0],[2,-1],[3,0],[2,2],[2,-1],[-1,-2],[3,1],[2,-2],[4,-2],[1,-2],[-1,-3],[2,-1],[0,-2],[1,0],[-1,-1],[1,-3],[2,-2],[-2,-4],[2,-1],[5,4],[0,-1],[3,1],[2,-2],[2,-1],[3,3],[1,0],[1,1],[1,-2],[0,-1],[1,0],[0,-1],[4,-1],[2,-2],[1,0],[5,-3],[1,-3],[4,-2],[0,-2],[2,-3],[2,-1],[0,-1],[1,0]],[[5023,7821],[1,4],[-1,11],[2,3],[6,5],[3,4],[2,0],[1,2],[3,1],[1,2],[2,0],[1,2],[7,-1],[3,3],[2,3],[-1,13],[1,3],[4,3],[-1,3],[-4,1],[-4,5],[-4,3],[1,1],[-2,3],[-5,4],[-5,7],[-3,9],[-1,8],[-2,10],[6,14],[6,5],[1,3],[1,2],[0,2],[1,5],[2,2],[7,4],[-1,7],[-3,4],[-1,7],[2,6],[-1,0],[-1,3],[-1,-1],[-6,3],[-4,3],[-6,1],[1,7],[2,2],[0,9],[7,10],[4,7],[2,5],[4,15],[2,5],[-5,4],[2,7],[-2,7],[0,1],[-1,0],[1,3],[-2,2],[-1,4],[1,6],[-3,5],[-3,3],[0,4],[-2,2],[-1,2],[1,1],[-1,5],[1,4],[1,6],[-1,5],[4,11],[1,4],[0,4],[-3,11],[1,7],[-2,2],[0,2],[1,1],[1,-1],[1,-1],[1,1],[2,-1],[2,3],[3,-1],[1,2],[-2,5],[1,3],[-2,2],[1,3],[-2,5],[-1,3],[-4,-1],[-2,2],[-3,1],[-3,2],[-5,8],[0,14],[-3,5],[1,2],[-2,4],[0,1],[-1,4],[-4,5],[-3,2],[-5,7],[-2,6],[-5,4],[-3,7],[-5,2],[-2,5],[-2,2],[-1,2],[1,8],[7,5],[15,-6],[6,-1],[6,0],[9,1],[11,5],[1,1],[-1,3],[8,8],[2,4],[3,3],[0,2],[2,2],[1,2],[-1,1],[1,3],[4,4],[0,3],[3,2],[1,3],[-7,13],[0,4],[1,2],[0,1],[8,4],[2,3],[3,2],[0,2],[4,6],[5,2],[4,4],[1,4],[2,0],[2,3],[1,3],[-1,2],[0,1],[2,0],[2,4],[0,3],[-1,2],[3,2],[2,4],[4,4],[3,4],[5,3],[2,7],[2,1],[6,-4],[5,3],[5,2],[1,-1],[1,-2],[3,-1],[1,6],[1,1],[2,-1],[1,-2],[0,-5],[2,-2],[4,0],[2,2],[7,2],[2,7],[8,6],[3,6],[3,-2],[2,-5],[5,0],[2,1],[8,5],[0,1],[-6,5],[1,3],[4,3]],[[5194,8454],[0,-3],[1,-1],[6,-1],[4,4],[4,-5],[3,0],[7,-3],[1,2],[2,0],[1,-1],[0,-3],[7,2],[3,0],[4,4],[5,0],[3,-1],[1,-2],[4,-2],[2,-1],[1,-2],[5,-1],[2,-1],[3,-1],[3,2],[3,-5],[4,-2],[1,-2],[5,-1],[5,0],[1,1],[3,-1],[1,-1],[6,-7],[8,-2],[1,-1],[1,-3],[2,-3],[10,-5],[1,0],[4,-3],[0,-1],[6,-3],[6,0],[10,-7],[4,-4],[3,4],[1,4],[2,0],[5,6],[4,-2],[3,2],[8,-1],[3,3],[1,1],[2,2],[1,-4],[6,-4],[3,0],[7,-3],[6,-2],[0,-4],[-4,-2],[-4,-7],[0,-8],[3,-7],[5,-2],[3,1],[8,12],[3,1],[2,-1],[1,-2],[0,-5],[1,-3],[1,0],[2,-5],[0,-2],[3,-1],[1,-2],[1,0],[3,2],[-1,2],[1,2],[5,1],[-1,3],[0,1],[2,0],[0,1],[-1,4],[3,3],[2,3],[3,-1],[1,2],[-1,3],[1,1],[-1,2],[-1,11],[-2,8],[4,6],[0,2],[2,1],[5,4],[3,-2],[6,1],[3,-3],[3,-3],[1,0],[2,-2],[3,0],[3,-1],[4,-2],[11,3],[2,-2],[4,-1],[2,-2],[12,0],[4,5],[2,1],[7,1],[15,4],[10,-1],[5,7],[2,1],[3,0],[8,-8],[2,0],[3,-11],[3,0],[5,-1],[2,-3],[8,-4],[7,9],[3,0],[1,-1],[3,-1],[6,-5],[7,-6],[4,0],[1,-3],[1,-3],[3,-3],[4,-2],[5,1],[-1,-5],[0,-10],[2,-6],[1,1],[1,2],[1,0],[0,1],[1,1],[1,0],[1,3],[-2,6],[0,5],[-1,1],[22,6],[4,0],[5,-1],[2,-6],[-1,0],[1,-4],[2,-2],[1,-2],[-2,-2],[-1,-7],[1,-1],[0,-1],[4,-2],[2,-4],[1,0],[0,-1],[12,4],[2,-4],[2,0],[3,-7],[4,1],[1,-1],[1,-1],[-2,-2],[2,0],[5,1],[9,4],[1,5],[1,7],[1,1],[-1,2],[0,1],[-3,6],[3,5],[0,2],[2,3],[0,3]],[[635,266],[-1,0],[0,1],[1,0],[0,1],[0,-1],[0,1],[0,1],[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],[0,-1],[1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[-1,0],[0,1],[1,0],[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],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[0,1],[0,1],[-1,0],[1,0],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[-1,0],[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],[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],[0,1],[-1,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,-1],[1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[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],[0,1],[0,1],[-1,0],[1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[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],[0,1],[-1,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[0,1],[1,0],[0,1],[-1,0],[1,0],[-1,0],[0,1],[0,1],[1,0],[-1,0],[0,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,0],[-1,0],[0,-1],[1,0],[-1,1],[1,0],[0,-1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-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],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[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],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[1,0],[-1,0],[1,0],[1,0],[1,0],[-1,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[-1,0],[1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[-1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[-1,0],[1,0],[1,0],[0,1],[0,-1],[0,1],[1,0],[-1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,-1],[1,0],[1,0],[0,1],[1,0],[-1,0],[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],[1,0],[0,-1],[0,1],[1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,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],[1,0],[0,1],[1,0],[1,0],[1,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],[1,0],[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],[0,-1],[1,0],[0,-1],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[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],[1,0],[1,0],[1,0],[0,-1],[1,1],[0,-1],[0,1],[0,-1],[0,-1],[-1,0],[1,0],[0,1],[1,0],[0,1],[0,-1],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[-1,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,1],[1,0],[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],[1,0],[1,0],[0,1],[-1,0],[0,1],[0,-1],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,-1],[1,0],[1,-1],[0,1],[0,-1],[1,0],[0,1],[0,-1],[0,1],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[1,0],[0,-1],[0,-1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[-1,-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],[0,1],[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],[1,0],[0,1],[0,-1],[0,1],[1,0],[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],[0,-1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,-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],[0,1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,-1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,0],[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,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[-1,0],[1,1],[0,1],[1,0],[0,1],[1,-1],[0,1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[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],[-1,0],[1,1],[-1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[-1,0],[1,0],[-1,0],[1,1],[0,-1],[1,0],[-1,0],[0,1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[1,0],[1,1],[0,1],[0,1],[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],[0,-1],[1,0],[0,-1],[1,0],[0,1],[0,-1],[0,1],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,-1],[0,1],[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],[1,0],[0,1],[0,1],[0,1],[1,0],[-1,0],[1,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,-1],[0,1],[0,1],[1,0],[-1,1],[1,0],[1,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[-1,0],[1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[1,0],[0,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],[0,-1],[1,0],[0,1],[0,-1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,-1],[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,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,1],[0,1],[1,0],[0,-1],[0,1],[0,1],[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,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[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],[0,-1],[1,1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[-1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[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,0],[1,0],[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],[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],[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],[0,1],[0,1],[1,0],[1,0],[0,1],[0,-1],[1,0],[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,0],[1,0],[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],[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],[0,1],[0,-1],[1,0],[1,0],[0,-1],[1,1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-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],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[0,-1],[-1,-1],[1,0],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[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,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,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,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,1],[0,-1],[0,1],[4,2],[0,1],[-3,-2],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,1],[0,-2],[-2,-2],[-2,-1],[2,1],[2,2],[0,2],[-2,0],[0,-1],[-1,0],[-1,-2],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-2],[1,0],[-1,0],[0,-1],[0,-1],[0,1],[0,-1],[-1,0],[1,0],[0,-1],[-1,1],[-1,-2],[-1,-2],[0,-1],[0,-1],[1,0],[1,1],[0,-1],[1,3],[2,4],[-2,-4],[-1,-2],[0,-2],[0,-2],[-1,-1],[0,-1],[-1,-3],[0,1],[0,-1],[0,1],[0,-1],[1,3],[-1,0],[1,0],[0,1],[0,1],[1,2],[0,1],[-1,0],[0,-2],[-1,-1],[0,-3],[-1,-2],[-1,0],[0,-1],[-1,0],[0,-1],[0,-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],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[-1,0],[1,-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],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[-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,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-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],[-1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,-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],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[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],[1,0],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-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],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,-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],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[-1,0],[0,-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,0],[1,0],[0,1],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[0,1],[0,-1],[1,0],[0,-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],[-1,0],[0,-1],[0,-1],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[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],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[-1,0],[0,1],[0,-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,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],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[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,0],[1,0],[-1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-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,0],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,-1],[-1,0],[-1,0],[1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[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],[0,-1],[-1,0],[0,1],[0,-1],[1,0],[0,1],[-1,1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[1,0],[-1,0],[1,0],[-1,-1],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[0,1],[1,0],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,1],[0,-1],[-1,1],[0,-1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,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],[0,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[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],[1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[1,-1],[-1,1],[0,-1],[1,-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],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[1,0]],[[367,330],[0,1],[-1,0],[0,1],[1,0],[0,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],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[-1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[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],[1,0],[1,0],[0,1],[1,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,1],[0,1],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,-1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[-1,0],[1,0],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[1,0],[-1,0],[1,0],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[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,0],[0,1],[1,0],[1,0],[0,1],[1,0],[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],[1,0],[-1,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,-1],[0,1],[1,0],[1,0],[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],[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],[0,-1],[1,0],[0,1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[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],[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],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-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,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,1],[0,-1],[0,-1],[-1,-1],[0,1],[1,1],[-1,1],[-1,-1],[0,1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[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],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-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],[0,-1],[-1,0],[0,-1],[0,1],[-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],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,1],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[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,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[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],[0,-1],[0,-1],[1,1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[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],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[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],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,-1],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,0],[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,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[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],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[-1,0],[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],[-1,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1]],[[77,717],[0,1],[1,1],[0,-1],[0,1],[1,0],[-1,0],[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],[-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],[1,0],[0,1],[0,-1],[1,1],[0,1],[1,0],[-1,0],[1,1],[-1,0],[0,1],[0,1],[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],[0,1],[1,0],[-1,0],[1,0],[1,0],[0,1],[-1,0],[1,0],[-1,0],[0,1],[1,0],[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],[1,0],[1,1],[0,1],[0,-1],[1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[-1,0],[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],[1,0],[-1,0],[0,1],[1,0],[0,-1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,-1],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,-1],[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,1],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[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],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,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],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[0,1],[0,-1],[1,1],[0,-1],[0,-1],[0,1],[1,0],[1,0],[-1,0],[1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[1,0],[-1,0],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-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],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[-1,0],[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,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,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[-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,0],[0,-1],[0,1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[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],[0,-1],[0,-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],[0,-1],[0,-3],[0,1],[0,2],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[0,1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,1],[0,-1],[1,0],[-1,-1],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[-1,0],[1,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[1,0],[-1,0],[1,0],[-1,0],[0,-1],[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],[-1,-1],[1,0],[1,0],[-1,0],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[-1,0],[1,0],[-1,0],[1,0],[-1,0],[1,0],[-1,0],[1,0],[0,-1],[-1,0],[1,0],[-1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[1,0],[-1,0],[1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[0,-1],[0,1],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[-1,0],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[1,0],[-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],[-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],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-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],[0,-1],[0,-1],[-1,0],[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],[0,-1],[1,0],[-1,0],[0,-1],[0,1],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[1,0],[-1,0],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[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],[0,-1],[0,1],[0,-1],[-1,0],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,1],[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,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[1,0],[-1,0],[0,1],[-1,0],[1,0],[-1,1],[0,1],[-1,0],[1,0],[-1,0],[1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,-1],[0,1],[-1,0],[0,1],[1,0],[-1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,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],[0,1],[0,-1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[1,1],[-1,0],[0,1],[1,0],[-1,1],[1,0],[-1,0],[1,0],[0,1],[-1,0],[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],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,-1],[0,1],[0,-1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,-1],[0,1],[0,1],[-1,0],[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],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[1,0],[0,1],[-1,0],[1,0],[-1,0],[1,0],[0,1],[0,-1],[0,1],[0,1],[1,0],[-1,0],[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,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[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],[0,1],[0,-1],[-1,0],[0,-1],[1,-1],[-1,2],[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],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[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,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],[1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[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],[0,1],[0,1],[-1,0],[-1,0],[1,1],[-1,0],[0,1],[0,1],[-1,0],[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],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[1,0],[0,1],[1,0],[1,0],[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],[1,1]],[[75,97],[-1,0],[1,1],[0,-1]],[[2,46],[-1,0],[0,1],[0,1],[-1,0],[1,0],[-1,0],[1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[1,0],[-1,0],[1,0],[0,1],[-1,0],[1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[-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],[1,0],[0,1],[0,-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],[0,1],[0,-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,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,1],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,-1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,1],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,-1],[0,1],[1,0],[0,1],[0,-1],[0,1],[1,0],[1,0],[1,0],[0,1],[0,-1],[0,1],[1,0],[1,0],[0,1],[1,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,-1],[0,1],[1,0],[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],[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],[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],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,-1],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,0],[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],[0,1],[0,1],[0,-1],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[1,0],[0,1],[0,1],[0,-1],[0,1],[1,0],[0,1],[0,-1],[0,1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,-1],[0,1],[0,-1],[0,1],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,-1],[0,1],[1,0],[1,0],[0,-1],[0,1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[1,0],[1,0],[0,1],[0,-1],[1,0],[0,-1],[1,0],[1,1],[0,-1],[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],[0,1],[0,-1],[1,0],[0,-1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[0,-1],[-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],[1,0],[0,-1],[-1,0],[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],[0,-1],[0,-1],[-1,0],[-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],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[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],[0,-1],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[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],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[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],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[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],[-1,0],[0,-1],[0,-1],[0,1],[1,-1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[1,0],[-1,0],[1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[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],[0,-1],[0,-1],[1,0],[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],[0,1],[1,0],[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],[0,1],[0,1],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[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,0],[0,1],[0,1],[0,1],[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],[0,-1],[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],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-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,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,1]],[[622,458],[0,1],[-1,0],[0,1],[1,0],[0,-1],[0,-1]],[[86,737],[-1,0],[0,1],[1,0],[0,-1]],[[684,235],[-1,0],[1,1],[0,-1]],[[891,597],[0,1],[0,1],[1,0],[0,-1],[-1,0],[0,-1]],[[890,590],[0,1],[-1,0],[0,1],[1,0],[0,-1],[0,-1]],[[772,538],[0,1],[1,0],[0,-1],[-1,0]],[[96,127],[0,1],[1,-1],[-1,0]],[[73,115],[0,1],[1,0],[0,-1],[-1,0]],[[401,357],[-1,1],[1,0],[0,-1]],[[84,19],[0,1],[1,-1],[-1,0]],[[6630,9671],[-1,-8],[-2,-4],[-5,-4],[-1,-3],[2,-4],[-2,-3],[2,-7],[-2,-3],[-6,-1],[-1,-2],[-2,4],[-3,2],[1,2],[1,6],[-2,1],[0,5],[2,7],[-2,2],[-1,3],[-3,2],[1,3],[0,1],[7,2],[4,0],[4,3],[1,0],[8,-4]],[[6069,9753],[7,3],[2,0],[1,-2],[1,-1],[1,0],[0,2],[1,0],[0,-1],[1,1],[4,-1],[-1,-3],[4,2],[2,-1],[0,2],[3,-1],[0,1],[1,0],[0,1],[1,0],[1,0],[2,1],[1,-1],[-1,-1],[3,2],[2,-3],[0,2],[0,1],[8,0],[7,-1],[0,-1],[2,0],[1,-1],[2,2],[-2,-3],[1,-1],[1,3],[0,-1],[3,-1],[4,1],[6,4],[1,2],[-1,0],[7,2],[1,0],[-1,-1],[1,-5],[2,-2],[4,-2],[2,0],[1,1],[0,-1],[2,1],[1,-1],[0,2],[0,-1],[2,1],[1,-1],[1,0],[1,0],[3,0],[0,2],[2,0],[0,-2],[4,-2],[1,1],[2,0],[1,2],[1,1],[2,-2],[0,2],[1,1],[3,1],[3,-1],[7,3],[3,-1],[-1,1],[2,-1],[1,-2],[1,0],[5,3],[3,-1],[3,2],[5,1],[1,1],[3,-3],[7,5],[1,0],[1,1],[8,2],[-1,-1],[2,0],[1,1],[-1,0],[8,2],[5,3],[0,1],[2,2],[1,-1],[0,1],[2,1],[-1,1],[1,2],[2,0],[3,3],[0,-2],[2,-2],[10,2],[1,1],[2,1],[1,1],[-1,2],[1,2],[2,-2],[-1,-4],[4,-1],[0,2],[0,-2],[2,1],[-2,3],[5,0],[0,1],[0,1],[2,2],[-1,1],[3,-1],[5,-3],[0,-2],[2,0],[5,4],[3,-2],[0,-1],[10,9],[6,8],[-1,0],[0,1],[5,0],[1,-1],[2,1],[-1,1],[7,2],[3,-1],[0,1],[8,1],[0,-1],[-1,0],[1,-1],[-1,-1],[4,3],[1,-1],[0,1],[2,1],[-1,0],[0,1],[1,0],[1,0],[-1,-2],[5,0],[2,0],[9,5],[1,-2],[0,-2],[2,1],[-1,1],[2,1],[-1,1],[2,2],[2,0],[0,2],[2,0],[1,1],[3,1],[4,-1],[8,-1],[0,-1],[-1,-2],[4,0],[-4,-4],[2,-3],[4,-4],[1,2],[2,0],[2,-3],[-1,0],[-3,1],[-7,-4],[-4,0],[2,0],[-4,-1],[-4,-2],[-2,-5],[-3,0],[0,2],[1,0],[0,1],[-3,-2],[1,-1],[4,-1],[-4,0],[-4,-2],[1,-1],[1,1],[-1,-1],[4,0],[-5,-1],[0,1],[-1,0],[2,-4],[1,1],[3,0],[-3,0],[-1,-2],[1,-1],[-4,0],[0,-1],[8,0],[2,-2],[0,1],[1,-2],[3,-1],[0,-2],[-2,0],[-2,-4],[-2,0],[-1,-1],[1,-4],[1,0],[0,-2],[1,-1],[4,6],[-1,3],[4,-2],[5,4],[4,1],[-1,2],[-3,2],[-2,3],[3,-1],[3,2],[0,1],[3,3],[0,3],[0,1],[-2,1],[3,0],[2,-2],[2,1],[2,0],[0,-4],[-2,-2],[-1,-2],[2,-2],[1,0],[2,-1],[3,1],[1,1],[-1,2],[-3,0],[2,3],[1,5],[-1,2],[-2,-2],[2,2],[-1,1],[-6,1],[-4,2],[9,-1],[9,1],[2,2],[0,5],[2,2],[7,4],[5,0],[0,-1],[1,-2],[2,0],[2,2],[1,0],[1,2],[2,-1],[-1,1],[2,2],[1,1],[4,3],[2,-1],[1,2],[0,1],[1,0],[2,1],[1,0],[0,1],[8,0],[2,0],[1,2],[0,-2],[1,0],[1,2],[1,-2],[1,1],[4,6],[3,2],[7,1],[0,-1],[-1,-1],[2,-2],[4,1],[1,-1],[2,1],[1,-1],[5,1],[1,-1],[1,-2],[2,0],[0,-2],[-1,0],[1,-2],[-1,0],[1,-1],[-2,0],[1,-2],[2,-1],[2,2],[1,-1],[-1,0],[0,-1],[2,0],[2,2],[0,1],[1,-1],[2,0],[2,-1],[-1,-7],[2,0],[-1,-2],[2,-1],[2,0],[4,-3],[9,-2],[1,-1],[7,-1],[4,1],[4,-1],[1,0],[4,-5],[1,-8],[-3,-3],[-3,-1],[-5,1],[-5,0],[-1,1],[0,1],[1,1],[-1,0],[-1,0],[1,-4],[0,-1],[-3,-2],[-1,1],[-5,-1],[-2,-2],[-1,-4],[2,1],[1,4],[1,0],[5,0],[4,1],[1,-1],[-3,-16],[1,-1],[2,0],[1,7],[1,9],[2,4],[2,-2],[4,-8],[3,-3],[2,-1],[4,0],[0,1],[-1,0],[0,1],[1,-1],[0,2],[3,0],[0,-1],[-1,1],[1,-2],[4,0],[1,2],[2,-1],[0,-1],[4,1],[1,-1],[5,1],[1,-1],[-1,-1],[3,-1],[3,0],[6,3],[3,-2],[2,1],[0,1],[3,-1],[1,2],[1,-1],[-2,-2],[1,-3],[-1,-1],[4,-3],[2,1],[0,1],[1,0],[0,2],[4,0],[3,-1],[1,-1],[-1,0],[5,-1],[12,-1],[5,-2],[8,-2],[3,-2],[-1,0],[1,-1],[-3,-1],[1,-3],[3,1],[2,0],[2,-3],[-4,2],[2,-4],[1,1],[-1,-2],[2,-1],[0,-1],[1,2],[1,-2],[3,0],[1,-1],[1,-5],[2,2],[0,-2],[2,1],[1,-3],[2,-2],[2,0],[1,1],[4,-5],[4,2]],[[6673,9729],[1,-3],[-1,-5],[2,-13],[-1,-8],[-3,-4],[-10,-1],[-2,0],[-4,0],[-2,-4],[-3,-1],[-2,-5],[-4,3],[0,3],[-3,3],[0,7],[-10,-3],[-3,-4],[-3,-2],[-1,1],[-2,0],[-5,-3],[-5,0],[-2,1],[1,3],[-1,2],[-8,-2],[-1,-1],[-4,-2],[-4,6],[0,-2],[-4,-3],[1,-7],[0,-3],[-8,-3],[-5,1],[-4,-2],[-2,-1],[-3,-3],[-1,-8],[-3,-4],[-4,3],[-3,0],[2,-2],[-4,-4],[-2,0],[-3,1],[-4,-5],[-3,2],[-1,-1],[0,-2],[1,-1],[1,-6],[5,-10],[-1,-4],[0,-17],[2,-7],[1,0],[1,-3],[1,-2],[2,-11]],[[6500,8630],[-1,-4],[4,-8],[-1,-4],[1,-2],[5,-3],[2,-3],[8,-6],[7,-4],[3,-2],[7,5],[2,5],[1,-1],[2,-1],[4,-5],[5,-4],[3,-1],[2,-3],[-1,-5],[-1,-4],[1,-9],[4,-4],[5,0],[6,-4],[2,-3],[3,-1],[5,1],[1,1],[1,-1],[0,-2],[3,1],[3,-4],[1,0],[0,1],[5,1],[1,1],[1,-1],[-4,-5],[0,-5],[-3,-9],[2,-4],[0,-4],[-2,-2],[-1,-4],[1,-2],[0,-4],[-2,-2],[4,-2],[6,-9],[10,-5],[2,-3],[6,-2],[3,-5],[4,0],[1,-7],[10,-7],[5,0],[0,-7],[7,-5],[5,-1],[1,-1],[0,-2]],[[5976,8364],[0,5],[5,6],[3,5],[8,4],[1,2],[1,1],[6,-3],[10,-8],[4,0],[3,2],[-1,8],[-2,4],[-1,0],[-1,2],[-5,4],[2,5],[-2,8],[2,2],[4,2],[4,3],[2,1],[4,4],[1,2],[4,6],[0,1],[2,6],[5,3],[6,3],[-1,1],[1,5],[-3,2],[-4,3],[-1,2],[-4,4],[0,3],[-1,4],[3,4],[5,-2],[6,-7],[3,-2],[3,0],[7,6],[2,1],[2,4],[3,1],[10,-6],[2,-7],[2,1],[1,-1],[2,0],[3,-2],[0,-1],[5,-3],[2,3],[-2,14],[-1,2],[-4,3],[-5,0],[-4,10],[0,3],[-1,0],[2,2],[1,-2],[1,1],[-2,5],[2,4],[5,1],[0,1],[-14,17],[0,4],[1,3],[-1,2],[1,1],[5,0],[1,2],[2,-1],[0,-1],[6,-1],[-1,1],[1,1],[6,1],[1,1],[0,1],[2,0],[-1,1],[3,2],[1,-1],[1,1],[0,1],[1,0],[1,1],[2,0],[2,2],[2,-1],[2,1],[-2,2],[2,0],[0,1],[0,1],[2,-1],[3,4],[1,0],[4,2],[6,-2],[0,-1],[2,0],[1,2],[3,-2],[1,2],[1,0],[2,-1],[2,0],[1,-2],[2,5],[-1,4],[2,-1],[5,1],[0,-2],[5,1],[2,-3],[2,0],[3,3],[1,3],[8,2],[3,-1],[2,0],[1,2],[6,-1],[1,3],[3,-4],[1,-3],[1,4],[6,3],[1,-1],[5,-3],[2,3],[14,7],[8,2],[4,1],[5,3],[7,-7],[3,4],[6,2],[6,2],[4,2],[10,6],[1,-1],[5,0],[3,2],[0,2],[2,1],[2,3],[5,2],[4,5],[4,0],[3,-1],[1,-1],[2,1],[0,-1],[3,0],[1,4],[1,6],[0,5],[0,10],[4,6],[2,6],[0,5]],[[7249,8870],[1,-4],[-1,-8],[1,-6],[-1,-3],[0,-14],[8,-13],[0,-7],[0,-1],[3,-8],[5,2],[1,-2],[0,-1],[1,-5],[-1,-1],[-1,-3],[1,-10],[-3,-7],[-3,-3],[-5,-5],[-4,-10],[0,-1],[6,-1],[6,-5],[1,-3],[1,-5],[8,-9],[-2,-9],[5,-3],[4,1],[2,-3],[4,-2],[-5,-5],[-1,-9],[0,-2],[-3,-1],[0,1],[-3,-2],[-5,-6],[2,-1],[1,-13],[-3,-2],[-7,1],[-3,-1],[-11,0],[-6,-14],[-2,2],[-9,-6],[-1,-3],[-3,-4],[-3,-3],[0,-4],[-2,-2],[-2,-5],[-16,4],[-5,1],[-3,-2],[-3,3],[-4,-5],[0,-6],[-1,-5],[1,-3],[5,-7],[0,-2],[2,-3],[1,0],[3,-4],[-1,-1],[1,-2],[-2,-7],[0,-1],[-3,-4],[2,-7],[-2,-7],[1,-5],[-2,-6],[5,-3],[7,-12],[1,-4],[0,-6],[1,-6],[0,-4],[-2,-3],[5,-3],[3,0],[-2,-2],[1,-3],[1,0],[-1,-3],[-6,1],[0,-1],[-1,1],[-4,-3],[-3,-2],[-5,1],[-3,-4],[-2,0],[0,1],[0,-1],[-4,-1],[-4,-5],[-3,-1],[0,-1],[-3,1],[-2,0],[-2,1],[-1,0],[-1,2],[-2,0],[-1,5],[4,4],[0,14],[-5,5],[-24,7],[-1,-4],[-2,-1],[-2,-2],[-2,-6],[0,-10],[-1,-8],[-1,-1],[1,-2],[-1,-1],[1,-3],[1,-2],[-2,-1],[-2,-6],[-3,-1],[-8,-8],[-3,1],[-3,-1],[0,-5],[3,-6],[-1,-4],[-2,-2],[-2,-3],[-1,-3],[1,-4],[0,-7],[-2,-3],[-1,-5],[5,-3],[2,-11],[2,-15],[2,-14],[2,-21],[17,-6],[12,-2],[1,-5],[12,-10]],[[8806,8393],[-12,-3],[-22,-3],[-17,-3],[-15,-5],[-7,-3],[-5,-1],[-4,-2],[-9,-5],[-14,-9],[-6,-5],[-2,0],[-4,1],[-4,-1],[-7,-3],[-5,0],[-1,-1],[0,-1],[-3,3],[-5,-1],[-1,1],[-4,0],[-9,-2],[-2,-2],[-2,0],[-1,-2],[-3,0],[-2,-4],[-2,-1],[-1,2],[-1,0],[-2,-1],[-3,-3],[-2,-3],[-5,-3],[-1,-2],[1,3],[5,3],[-1,0],[1,0],[1,2],[-2,1],[-2,-1],[1,-2],[-2,1],[0,-2],[-1,1],[-2,1],[1,-3],[-1,3],[-3,0],[-5,-2],[1,-2],[-1,2],[-1,-1],[3,-3],[0,-1],[-1,0],[0,-1],[0,1],[-2,4],[-6,-5],[-6,-10],[-2,-5],[0,-2],[1,0],[0,-1],[0,-2],[-4,-2],[0,-2],[-2,0],[0,1],[-3,0],[0,1],[-1,3],[-3,2],[-2,-1],[1,2],[-2,2],[-3,1],[-4,0],[1,0],[0,1],[-2,1],[-4,-1],[-15,-6],[-3,0],[-4,1],[-2,-1],[-1,1],[-2,-1],[2,-1],[-6,1],[-11,-8],[-5,-2],[-4,-3],[-5,-1],[-3,-1],[-6,-6],[-2,-1],[-13,-15],[-3,-8],[-3,-2],[-2,0],[-5,-4],[-2,-3],[-3,-1],[-3,-6],[-1,0],[-1,-3],[-2,-1],[-2,-3],[-2,-2],[-3,-1],[-2,-2],[-2,-7],[-2,-1],[-1,-4],[-3,-4],[-2,-1],[-1,-3],[-1,1],[0,-1],[-1,-1],[1,-1],[-4,-2],[0,-3],[-1,0],[1,-1],[-3,-3],[-1,-3],[-1,0],[-3,-3],[-1,-1],[0,-2],[-1,-1],[1,2],[-2,-1],[0,-1],[1,1],[-1,-1],[-1,-3],[-1,0],[-1,-4],[-1,-2],[-2,0],[-3,-3],[-5,-2],[-3,-4],[0,-3],[-3,1],[-2,-1],[-1,-4],[-2,-1],[-1,-6],[-1,-3],[-2,0],[-2,-2],[1,-1],[-5,-2],[-5,-3],[0,1],[-1,-1],[-2,-3],[-2,-1],[3,-8],[2,-4],[-1,1],[5,-5],[4,-5],[5,-3],[9,-2],[4,0],[2,2],[1,1],[0,1],[3,-1],[1,1],[-2,4],[-4,2],[-3,1],[-7,4],[-6,1],[1,0],[-1,0],[0,1],[-2,-1],[4,2],[9,1],[6,-2],[2,-3],[8,-12],[15,-20],[3,-2],[3,0],[5,0],[-5,-1],[4,-3],[2,0],[0,-1],[1,0],[0,1],[2,-1],[2,1],[2,6],[6,-9],[-5,-12],[-3,-3],[-7,-8],[-5,-4],[-6,-3],[-15,-7],[-1,1],[0,-1],[-12,-8],[-7,-7],[-17,-29],[-8,-10],[-8,-6],[-11,-4],[-7,-1],[-7,1],[-3,1],[-4,3],[-2,5],[0,2],[0,1],[2,0],[1,2],[1,-1],[1,1],[1,-2],[2,1],[1,-3],[-1,4],[-1,0],[1,5],[5,-3],[3,1],[1,-1],[7,2],[1,-2],[0,3],[2,3],[2,0],[4,1],[5,-2],[2,0],[0,8],[0,-8],[4,0],[6,2],[14,23],[0,2],[1,2],[-4,2],[-1,0],[0,2],[0,-3],[-3,1],[0,1],[0,-1],[-2,0],[-2,-1],[0,1],[-1,0],[-2,0],[1,-1],[-1,1],[-2,-3],[0,1],[-1,1],[-4,-1],[-1,3],[0,-1],[0,-2],[-2,-1],[-1,1],[0,-1],[-1,3],[0,-3],[-7,-4],[-1,1],[0,-1],[-1,-1],[-5,0],[-3,-2],[-9,-1],[-5,1],[-5,-1],[-2,-1],[2,-3],[-2,-1],[1,1],[-1,2],[-2,-1],[1,-1],[-1,0],[4,-4],[-4,4],[-6,-7],[-9,-12],[-6,-6],[1,-2],[1,1],[-1,-1],[1,-1],[1,0],[-1,0],[-2,2],[-3,-3],[-4,-10],[1,0],[-1,0],[0,-1],[1,0],[-1,0],[-4,-5],[-3,-12]],[[8151,8107],[-2,4],[-1,0],[-1,2],[1,0],[-2,5],[2,-2],[2,-2],[3,-2],[0,1],[-1,4],[1,1],[0,2],[2,-1],[2,2],[0,-2],[2,-2],[3,6],[2,-1],[5,6],[5,-1],[3,1],[0,2],[2,3],[-1,2],[1,5],[5,3],[2,4],[3,1],[1,3],[3,6],[3,2],[0,1],[3,1],[-6,7],[0,1],[-2,2],[1,1],[-2,0],[0,5],[-2,0],[1,1],[-1,2],[1,1],[-3,2],[2,2],[-1,2],[1,2],[0,3],[0,2],[-1,2],[-1,1],[-2,1],[-3,3],[1,1],[2,0],[0,3],[2,3],[0,3],[1,3],[-1,1],[-1,2],[3,0],[0,5],[3,6],[3,0],[3,5],[-1,5],[2,2],[0,2],[2,0],[2,6],[-1,2],[4,4],[-2,2],[-2,-1],[-1,1],[0,5],[0,3],[-4,4],[0,1],[-2,2],[1,2],[2,2],[0,1],[-2,2],[-3,0],[-2,3],[1,3],[2,0],[5,-1],[1,1],[-4,4],[-3,1],[-5,3],[-3,6],[-1,-1],[0,-3],[-4,-1],[-2,2],[0,2],[2,3],[-1,1],[-3,0],[-2,-3],[-1,1],[0,2],[1,2],[4,2],[0,3],[-3,1],[-2,2],[1,5]],[[8173,8316],[-1,3],[-1,1],[2,1],[0,2],[-2,1],[-4,-1],[-3,1],[0,12],[3,4],[-1,0],[2,4],[-4,5],[0,1],[2,1],[7,3],[-1,1],[-2,1],[0,1],[10,-4],[5,0],[2,2],[-1,3],[3,3],[-1,1],[1,1],[-2,2],[9,-1],[9,5],[5,5],[-2,1],[2,4],[1,8],[1,1],[1,4],[1,2],[1,6],[1,3],[1,6],[1,2],[2,-1],[2,0],[3,5],[2,0],[4,-3],[4,0],[2,1],[0,7],[7,-2],[-1,1],[-2,5],[0,2],[2,3],[-1,5],[2,7],[2,4]],[[7356,8237],[12,-4],[3,3],[3,-2],[8,0],[19,10],[3,4],[2,2],[14,-10],[1,6],[11,11],[-1,8],[-5,11],[-2,2],[-3,0],[-3,3],[9,2],[8,5],[8,1],[3,3],[1,2],[0,3],[-2,2],[5,4],[-2,5],[2,5],[4,0],[8,4],[8,9],[2,1],[2,-4],[-3,-1],[-1,-2],[0,-4],[2,-1],[-1,-2],[1,-2],[1,0],[-1,-3],[1,0],[4,-1],[1,1],[1,-1],[0,-1],[2,-2],[5,2],[2,-3],[4,0],[5,1],[3,-2],[2,0],[3,5],[5,-1],[3,4],[5,10],[-2,6],[-6,10],[2,1],[5,11],[2,2],[10,3],[6,4],[2,1],[8,-7],[7,0],[1,-2],[3,1],[5,1],[0,1],[15,4],[0,2],[4,2],[-2,5],[0,3],[4,6],[2,2],[2,-3],[1,0],[5,1],[11,-8],[7,-7],[3,-4],[2,2],[3,1],[7,-3],[5,0],[7,6],[2,1],[4,5],[-6,-9],[-5,-12],[-2,-3],[1,-12],[1,-2],[3,-1],[3,1],[9,-6],[1,-3],[1,-1],[6,0],[3,5],[11,6],[-1,7],[6,4],[1,5],[3,2],[1,2],[-1,4],[1,8],[0,1],[2,0],[1,1],[-1,-5],[1,-3],[0,-3],[4,-6],[2,-1],[-1,-2],[6,-5],[14,-7],[4,2],[3,0],[0,1],[1,0],[5,1],[4,3],[-1,2],[3,4],[1,5],[-1,7],[2,0],[-1,4],[1,2],[2,3],[5,4],[0,4],[1,3],[5,-3],[2,-2],[0,-3],[5,-4],[1,-3],[2,-1],[1,-4],[2,0],[0,-2],[4,-5],[-1,-1],[1,-2],[7,-4],[1,-1],[6,5],[4,5],[0,3],[3,7],[9,12],[2,4],[7,5],[1,3],[6,5],[-1,2],[-5,2],[-3,4],[-4,7],[-10,8],[-4,5],[3,1],[9,0],[8,6],[-2,7],[1,12],[-2,14],[1,6],[11,7],[13,-17],[12,-17],[3,-13],[5,-12],[7,4],[2,2],[2,6],[-1,5],[-9,20],[-3,4],[-4,3],[0,1],[-3,1],[-7,1],[-5,6],[-2,5],[0,16],[6,4],[4,0],[4,-5],[3,2],[10,0],[0,1],[5,2],[3,0],[1,-1],[1,1],[3,-2],[5,-3],[3,-13],[2,-4],[4,-1],[1,1],[6,-3],[9,0],[0,-1],[2,0],[-3,-2],[1,-2],[-1,-2],[1,-3],[-2,-2],[4,-5],[4,-4],[2,-4],[3,-1],[1,-1],[5,-3],[4,0],[9,-7],[8,-6],[1,-2],[3,2],[3,1],[0,6],[2,1],[3,-1],[15,-18],[3,-5],[1,-2],[10,-2],[2,-1],[5,-9],[3,-3],[1,-1],[3,1],[5,1],[11,-3],[13,-8],[7,-7],[5,-4],[9,-4],[4,-1],[5,2],[2,-1],[3,-4],[8,-3],[5,-3],[2,-3],[5,-1],[6,-5],[2,-10],[2,-4],[2,-5],[5,-6],[1,-3],[2,-4],[3,-2],[5,-11],[2,1],[3,3],[1,0],[1,1],[0,3],[2,4],[-1,1],[1,4],[7,3],[9,1],[11,-2],[4,-4],[8,-3],[1,-2],[9,5],[13,-2],[11,2]],[[7720,7579],[-7,-4],[-7,-2],[-4,-5],[-5,-4],[-3,0],[-1,-4],[-2,-1],[-2,-1],[-1,1],[-2,0],[-2,3],[-4,-1],[-3,3],[-6,6],[-2,4],[2,8],[2,2],[2,2],[-2,3],[-3,1],[1,1],[-2,11],[2,6],[2,-1],[1,4],[-2,7],[-5,7],[1,2],[-2,4],[-2,-3],[-3,-2],[-2,2],[-4,2],[-2,3],[-1,0],[-8,4],[-3,1],[-7,4],[-3,-1],[-2,1],[-10,-5],[-14,4],[-7,-1],[-6,-2],[0,-2],[1,0],[-2,-1],[-2,-2],[-5,5],[-2,-2],[1,-1],[-2,-1],[-1,2],[-1,0],[-2,-3],[-2,-1],[1,-3],[-3,1],[-1,5],[-3,1],[-2,0]],[[7557,7659],[3,2],[2,0],[3,2],[5,-1],[9,6],[2,1],[6,4],[6,2],[2,6],[3,4],[0,5],[-3,5],[1,1],[-2,1],[-11,11],[-2,2],[-3,0],[-2,2],[-5,1],[-1,4],[-4,3],[-1,4],[-1,0],[-4,0],[-1,0],[-2,0],[-12,-3],[-4,1],[-3,-1],[-6,3],[-7,-1],[-4,2],[-2,5],[2,2],[-1,5],[1,2],[-1,1],[2,3],[-1,1],[-3,-2],[-11,11],[0,3],[-3,3],[-1,7],[-5,10],[2,5],[-2,3],[0,-1],[-2,-3],[-4,-1],[-2,-1],[-3,-11],[0,-8],[2,-4],[-1,-5],[2,-4],[-2,-2],[-7,-3],[-9,-8],[-3,0],[-1,2],[1,4],[-4,0],[-2,1],[-4,-1],[-4,-3],[-5,3],[-8,2],[-3,-2],[-1,0],[-7,4]],[[7981,7438],[1,0],[0,-6],[-1,6]],[[7991,7481],[-4,-12],[-2,-11],[-1,-8],[-2,-5],[-1,-7]],[[7981,7438],[-2,2],[-2,-4],[3,-2],[-2,1],[-5,-5],[-4,-2],[-9,-13],[-4,-11],[-2,-9],[-4,-11],[0,-2],[-1,-1],[1,1],[-1,1],[0,-1],[-1,-1],[-1,0],[-1,-2],[-1,-3],[-2,-2],[-1,-3],[-5,-9],[-1,-1],[-1,-2],[-2,-7],[-2,-18],[1,-17],[2,-3],[3,-1],[-2,0],[0,-2],[0,2],[-2,0],[-2,5],[-1,-1],[1,2],[-3,1],[0,-2],[1,-2],[1,1],[-1,-1],[2,-1],[-1,-1],[1,0],[-1,0],[2,-2],[-2,0],[0,-2],[3,-1],[-3,1],[0,-1],[4,-1],[-4,0],[0,2],[-2,-1],[-1,-1],[-1,-6],[1,0],[0,-4],[-1,-1],[7,-34],[6,-22],[6,-16],[-3,1],[3,-2],[8,-17],[1,0],[-1,0],[13,-33],[10,-23],[3,-2],[-2,-3],[-1,1],[-2,-1],[-1,-1],[-2,1],[-2,-2],[-1,-7],[0,-9],[2,0],[-2,0],[2,-1],[-1,0],[-1,-1],[1,-4],[1,0],[-1,-1],[1,-4],[6,-18],[10,-29],[8,-17],[12,-21],[3,0],[-3,0],[-3,-3],[5,2],[-1,-1],[1,0],[-1,0],[0,-2],[3,-4],[4,-8],[1,0],[1,-2],[2,-2],[0,-1],[4,-5],[5,-7],[17,-21],[14,-14]],[[7940,7312],[1,0],[-1,-5],[0,5]],[[5724,8385],[-4,-1],[-2,3],[-3,-2],[0,1],[-8,-4],[-2,1],[1,1],[-1,2],[-4,3],[2,1],[-2,2],[4,6],[7,5],[2,3],[0,2],[-1,1],[2,0],[0,2],[2,1],[0,-1],[4,1],[-2,0],[2,2],[-1,0],[-1,1],[1,3],[1,0],[-1,1],[1,2],[-3,12],[0,2],[4,4],[-2,1],[1,7],[-1,6],[-3,5],[0,5],[-1,2],[1,3],[-1,1],[-4,1],[-3,4],[-1,9],[-4,11],[0,4],[-1,3],[1,7],[5,9],[0,4],[5,4],[1,3],[-5,5],[-9,2],[3,7],[0,5],[2,2],[-2,2],[4,3],[-3,2],[-2,1],[-1,1],[-3,11],[1,1],[2,-3],[1,-1],[1,1],[0,1],[4,1],[6,7],[5,6],[3,0],[1,0],[6,3],[7,-1],[3,4],[6,6],[3,-2],[2,7],[-2,2],[0,2],[-2,4],[-4,2],[0,1],[-4,1],[-3,2],[-4,0],[-1,1],[1,4],[-4,2],[1,1],[-2,3],[-4,4],[5,6],[6,3],[0,2],[-1,1],[-1,1],[1,3],[-3,3],[-7,2],[-6,0],[-1,2],[-5,-1],[-4,3],[2,6],[-1,3],[1,3],[2,1],[-2,4],[0,4],[0,1],[1,7],[-1,5],[-2,7],[-4,3],[-2,8],[-2,2],[-5,-2],[1,11],[-3,7],[-2,1],[-2,-2],[0,-3],[-2,-1],[0,5],[-7,15],[0,3],[0,2],[9,10],[10,2],[3,6],[4,0],[3,0],[2,-1],[1,1],[1,1],[1,1],[16,13],[1,5],[-5,3],[-1,-1],[-2,1],[-2,-1],[-3,1],[-1,-1],[-8,2],[-2,1],[2,3],[3,3],[-1,0],[7,11],[-2,4],[2,2],[-3,9],[1,7],[4,8],[2,3],[1,5],[-2,2],[-5,6],[-5,3],[-6,0],[0,2],[2,1],[11,7],[3,5],[5,4],[-1,2],[2,2],[6,4],[4,1],[4,-1],[0,1],[-3,1],[-9,-3],[-10,7],[1,2],[-4,6],[-1,0],[-2,2],[-3,8],[-1,1],[-10,1],[-9,7],[-3,4],[0,1]],[[5665,8910],[-12,-11],[0,-1],[2,0],[3,-1],[2,-4],[-1,-12],[-2,-10],[-3,3],[-5,2],[-2,-1],[-1,1],[0,1],[-10,4],[-1,7],[2,1],[2,2],[0,3],[3,1],[0,4],[-7,8],[0,3],[-2,2],[3,3],[-4,4],[-1,2],[-5,6],[2,3],[1,2],[-3,7],[-4,4],[0,4],[-2,4]],[[6673,9729],[4,-2],[6,1],[0,2],[2,-1],[2,-3],[2,1],[2,1],[0,3],[2,5],[0,-1],[11,9],[-9,-8],[0,-1],[1,1],[-1,-1],[1,0],[2,0],[2,0],[5,-6],[1,0],[-1,-1],[1,0],[4,-3],[10,-5],[7,5],[-1,-2],[1,-1],[-3,0],[-1,-1],[4,-1],[-1,-1],[-4,2],[0,-1],[6,-4],[-3,1],[3,-2],[-1,0],[2,-2],[2,0],[-2,3],[2,-4],[2,-2],[-1,3],[2,0],[-1,0],[1,1],[-1,-1],[1,0],[1,1],[1,5],[-2,2],[-5,1],[6,-1],[0,4],[-5,5],[2,-1],[1,3],[-6,5],[-3,4],[-17,4],[18,-4],[2,4],[5,0],[3,2],[2,0],[1,1],[1,1],[0,1],[2,0],[4,3],[0,2],[3,0],[-1,1],[1,1],[5,3],[1,6],[2,-1],[3,2],[0,-1],[1,-1],[2,-1],[1,2],[1,-1],[1,0],[-1,4],[-2,0],[1,1],[-1,1],[0,1],[-1,-1],[1,2],[-1,0],[0,2],[2,1],[2,0],[0,3],[5,0],[5,2],[2,1],[4,-1],[0,1],[3,-1],[1,0],[0,-3],[1,-1],[-1,1],[2,1],[1,-1],[0,1],[3,1],[2,0],[1,1],[3,-2],[2,0],[1,-2],[8,-1],[1,2],[1,-1],[8,0],[1,2],[3,-1],[3,0],[2,-1],[2,1],[3,4],[5,3],[-1,2],[2,0],[0,-1],[3,0],[1,2],[5,0],[4,5],[3,-3],[-1,-5],[4,-9],[4,-2],[4,0],[1,-4],[3,1],[-3,-1],[0,-1],[0,1],[-1,-1],[-1,0],[1,-1],[3,1],[3,0],[3,-2],[1,-3],[1,0],[-1,-1],[2,-2],[2,-1],[2,1],[3,4],[5,0],[2,-1],[3,0],[1,1],[0,-1],[3,3],[1,0],[3,-2],[1,-5],[-1,0],[3,-3],[2,-2],[2,-1],[2,-1],[3,0],[4,1],[2,-2],[2,0],[1,-2],[3,1],[1,-1],[-1,-4],[1,3],[3,2],[6,1],[1,-1],[1,-3],[2,-2],[0,-2],[1,-2],[3,-1],[4,3],[1,-1],[5,-1],[3,1],[2,1],[3,-6],[2,-1],[-1,-2],[0,1],[0,-1],[1,0],[1,1],[4,-1],[2,-5],[2,1],[1,-4],[2,1],[3,-8],[2,-1],[0,-1],[2,1],[7,-3],[1,1],[3,-1],[4,-2],[2,-3],[-2,0],[1,1],[-1,0],[0,-1],[1,-2],[1,2],[0,-1],[2,-1]],[[5194,8454],[5,4],[4,-2],[4,1],[6,4],[-1,4],[2,4],[1,2],[6,3],[-4,5],[5,8],[4,2],[6,0],[3,2],[4,2],[1,3],[-2,1],[-3,0],[-3,5],[0,4],[2,5],[4,1],[1,0],[3,3],[3,1],[-1,-3],[3,-4],[4,-3],[4,1],[8,5],[3,-1],[1,3],[-1,4],[-1,2],[-6,3],[0,4],[2,2],[6,1],[3,2],[4,6],[2,4],[-4,6],[-1,2],[1,1],[4,6],[4,3],[1,2],[-1,5],[1,2],[5,2],[1,2],[4,0],[-3,5],[1,2],[1,0],[3,-1],[2,1],[1,2],[-2,8],[5,2],[1,2],[2,1],[4,8],[5,5],[0,5],[3,6],[3,5],[6,4],[-5,12],[-3,3],[-3,0],[-7,3],[-2,2],[-8,16],[-16,14],[-6,4],[-9,3],[-15,6],[-2,0],[-1,-1],[-5,-1],[-9,2],[-5,3],[-2,-1],[0,-1],[-4,1],[-3,-1],[-4,2],[-1,-1],[-1,3],[-2,0],[-3,-2],[-1,-4],[-2,-5],[-5,0],[-9,-6],[-4,0],[-6,2],[-7,9],[-3,1],[-3,2],[-3,3],[-3,5],[0,5],[2,1],[2,-3],[1,2],[0,2],[-2,0],[1,2],[-2,2],[1,2],[-3,2],[2,1],[-2,1],[2,3],[-1,1],[-2,-1],[-1,6],[1,2],[-1,0],[-1,2],[-3,0],[-1,1],[2,5],[3,1],[2,3],[-1,5],[1,2],[2,2],[0,3],[3,1],[-2,1],[2,5],[-2,4],[2,1],[0,2],[2,1],[-2,2],[2,2],[0,3],[2,1],[-1,3],[4,1],[-2,2],[1,3],[-1,4],[3,5],[-2,2],[1,2],[2,3],[-1,4],[2,2],[2,4],[-1,3],[-9,1],[-15,4],[3,7],[2,1],[2,7],[-1,2],[5,8],[-1,1],[1,1],[-1,1],[2,1],[0,3],[-2,6],[-11,10],[-1,0],[-5,4],[0,-3],[-5,-9],[-3,0],[-3,-1],[-2,-3],[-4,-1],[-4,1],[-28,-5],[-7,2],[0,1],[-6,-1],[-10,4],[-8,19],[0,6],[-5,2],[-3,1],[-5,0],[-4,1],[-2,1],[0,-13],[-5,-15],[-4,-2],[-2,1],[-4,-2],[-11,4],[-2,-3],[-5,-2],[-3,0],[-9,3],[-6,0],[-4,1],[-3,-1],[-1,0],[-3,6],[-3,9],[-10,3],[-2,-1]],[[5681,5122],[1,1],[1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[0,-1],[0,-2],[1,-2],[1,-1],[1,-2],[1,-1],[1,0],[2,1],[0,1],[1,0],[1,0],[1,0],[1,1],[5,-1],[0,-1],[-4,2],[-2,-2],[1,-1],[1,-1],[2,-1],[1,0],[1,0],[1,0],[1,1],[1,1],[-1,1],[2,0],[1,0],[1,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-2,1],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,-1],[-1,-1],[-1,-1],[0,-2],[-1,0],[0,1],[-1,0],[0,1],[-1,-1],[-1,-1],[-1,0],[-1,2],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-2,1],[-1,2],[-1,1],[-1,2],[0,1],[-1,3],[0,2],[0,2],[-1,2],[0,1],[0,2],[0,1],[-1,1]],[[6776,4729],[-2,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-2,0],[-1,0],[-1,1],[-1,2],[-2,2],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[0,1],[1,1],[-1,2],[-1,1],[0,1],[0,3],[1,1],[0,1],[0,2],[1,1],[0,2],[1,2],[1,2],[1,1],[1,2],[2,1],[0,-1],[1,-1],[0,-1],[2,0],[0,-1],[0,-3],[0,-1],[0,-1],[1,-2],[1,0],[1,-1],[1,-1],[0,-2],[1,-1],[1,-1],[2,0],[1,0],[0,-1],[-2,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-2],[0,-2],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[-1,0],[1,-2]]],"transform":{"scale":[0.002249259330928544,0.0016154936851389386],"translate":[-18.161221722954284,27.637789479715888]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment