Skip to content

Instantly share code, notes, and snippets.

@TiagoDevezas
Last active August 29, 2015 14:20
Show Gist options
  • Save TiagoDevezas/af423b15905319a63e9c to your computer and use it in GitHub Desktop.
Save TiagoDevezas/af423b15905319a63e9c to your computer and use it in GitHub Desktop.
World Choropleth
<!DOCTYPE html>
<meta charset="utf-8">
<style>
div.tooltip {
position: absolute;
text-align: center;
width: 150px;
height: 25px;
padding: 2px;
font-size: 12px;
color: white;
background: black;
border: 1px;
border-radius: 8px;
pointer-events: none;
}
#legend {
padding: 1.5em 0 0 1.5em;
text-align: center;
}
.list-inline {
list-style: outside none none;
padding-left: 0;
margin: 0 auto;
width: 50%;
}
li.key {
border-top-width: 15px;
border-top-style: solid;
font-size: .75em;
width: 15%;
padding-left: 0;
padding-right: 0;
display: inline-block;
}
.container {
width: 100%;
text-align: center;
}
#map {
width: 100%;
height: 1000px;
display: inline-block;
margin-top: 2em;
}
path {
stroke: white;
stroke-width: 0.25px;
}
svg {
background-color: lavender;
border: 1px solid black;
}
</style>
<body>
<div class="container">
<div id="legend">Artigos que mencionam o país</div>
<div id="map"></div>
</div>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script src="http://cdn.rawgit.com/d3/d3-plugins/master/jsonp/jsonp.js"></script>
<script>
var width = parseInt(d3.select("#map").style("width")),
height = parseInt(d3.select("#map").style("height"));
var svg = d3.select("#map").append("svg")
.attr("width", width)
.attr("height", height);
var bb;
apiURL = 'http://irlab.fe.up.pt/p/mediaviz/panorama/api/places';
params = '?type=national&map=world&since=2015-04-25&until=2015-05-30';
callback = '&callback=d3.jsonp.callback';
var zoom = d3.behavior.zoom()
.scaleExtent([1, 8])
.on("zoom", move);
function move() {
var t = d3.event.translate;
var s = d3.event.scale;
zscale = s;
var h = height/4;
t[0] = Math.min(
(width/height) * (s - 1),
Math.max( width * (1 - s), t[0] )
);
t[1] = Math.min(
h * (s - 1) + h * s,
Math.max(height * (1 - s) - h * s, t[1])
);
zoom.translate(t);
bb.attr("transform", "translate(" + t + ")scale(" + s + ")");
}
// d3.jsonp plugin needed to get data from the API
d3.jsonp(apiURL + params + callback, function(data) {
var maxCount = d3.max(data, function(d) { return d.count })
var color_domain = [0, maxCount/2];
var color = d3.scale.quantile()
.domain(color_domain)
.range(['rgb(255,255,204)','rgb(217,240,163)','rgb(173,221,142)','rgb(120,198,121)','rgb(49,163,84)','rgb(0,104,55)']);
var tooltip = d3.select("body").append("div")
.attr("class", "tooltip")
.style("opacity", 0);
var countByAlpha3 = {};
var nameByAlpha3 = {};
data.forEach(function(d) {
countByAlpha3[d.alpha3] = +d.count;
nameByAlpha3[d.alpha3] = d.name;
});
var legend = d3.select('#legend')
.append('ul')
.attr('class', 'list-inline');
var keys = legend.selectAll('li.key')
.data(color.range());
keys.enter().append('li')
.attr('class', 'key')
.style('border-top-color', String)
.text(function(d) {
var r = color.invertExtent(d);
return '>= ' + Math.round(r[0]);
});
function showTooltip(obj) {
var data = void 0;
d3.select(obj).transition().duration(300)
.style("stroke", "black")
.style('fill', function(d) { data = d; return d3.rgb(color(countByAlpha3[d.id])).darker(.5)});
tooltip.transition().duration(300)
.style("opacity", 1)
tooltip.text(nameByAlpha3[data.id] + ": " + countByAlpha3[data.id])
.style("left", (d3.event.pageX) + "px")
.style("top", (d3.event.pageY -30) + "px");
}
function hideTooltip(obj) {
d3.select(obj)
.transition().duration(300)
.style('stroke', 'gray')
.style("fill", function(d) {
return color(countByAlpha3[d.id]);
})
// .style("opacity", 0.8);
tooltip.transition().duration(300)
.style("opacity", 0);
}
// Continental Portugal map
d3.json('world.json', function(err, world) {
var paises = topojson.feature(world, world.objects.world);
var projection = d3.geo.mercator()
.translate([width /2, height / 1.6])
.scale(width / 2 / Math.PI);
// .center(center)
// .scale(1);
var path = d3.geo.path()
.projection(projection);
// projection.center([(b[1][0]+b[0][0])/2, (b[1][1]+b[0][1])/2]);
// projection.translate([width/2, height/2]);
// projection.scale(s);
// var b = path.bounds(paises);
// // console.log(b);
// var s = 1 / Math.max(
// (b[1][0] - b[0][0]) / width,
// (b[1][1] - b[0][1]) / height
// );
// // // var center = d3.geo.centroid(paises);
// // // b = d3.geo.bounds(paises);
// // b = world.bbox;
// // var center = [(b[2]+b[0])/2, (b[3]+b[1])/2];
// // projection.center(center);
// projection.translate([width / 2, height / 2]);
// projection.scale(s);
bb = d3.select('svg')
.call(zoom)
.append('g')
.attr('class', 'mundo');
var paises = bb.selectAll('g')
.data(paises.features)
.enter()
.append('g')
.attr('class', function (d) { return d.properties.name})
.append('path')
.attr('d', path)
.style("fill", function(d) {
return color(countByAlpha3[d.id]);
})
.style("stroke", "gray")
.on("mouseover", function() { showTooltip(this) })
.on("mouseout", function() { hideTooltip(this) });
});
});
</script>
</body>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"world":{"type":"GeometryCollection","geometries":[{"type":"Polygon","properties":{"name":"Aruba"},"id":"ABW","arcs":[[0]]},{"type":"Polygon","properties":{"name":"Afghanistan"},"id":"AFG","arcs":[[1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115]]},{"type":"MultiPolygon","properties":{"name":"Angola"},"id":"AGO","arcs":[[[116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138]],[[139,140,141,142,143]]]},{"type":"Polygon","properties":{"name":"Anguilla"},"id":"AIA","arcs":[[144]]},{"type":"Polygon","properties":{"name":"Albania"},"id":"ALB","arcs":[[145,146,147,148,149,150,151,152,153,154]]},{"type":"Polygon","properties":{"name":"Aland"},"id":"ALD","arcs":[[155]]},{"type":"Polygon","properties":{"name":"Andorra"},"id":"AND","arcs":[[156,157,158,159,160,161,162,163,164,165]]},{"type":"Polygon","properties":{"name":"United Arab Emirates"},"id":"ARE","arcs":[[166,167,168,169,170]]},{"type":"MultiPolygon","properties":{"name":"Argentina"},"id":"ARG","arcs":[[[171]],[[172,173]],[[174]],[[175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243]]]},{"type":"Polygon","properties":{"name":"Armenia"},"id":"ARM","arcs":[[244,245,246,247,248]]},{"type":"Polygon","properties":{"name":"American Samoa"},"id":"ASM","arcs":[[249]]},{"type":"Polygon","properties":{"name":"Fr. S. Antarctic Lands"},"id":"ATF","arcs":[[250]]},{"type":"Polygon","properties":{"name":"Antigua and Barb."},"id":"ATG","arcs":[[251]]},{"type":"MultiPolygon","properties":{"name":"Australia"},"id":"AUS","arcs":[[[252]],[[253]],[[254]],[[255]],[[256]],[[257]],[[258]],[[259]],[[260]],[[261]],[[262]],[[263]],[[264]],[[265]],[[266]],[[267]],[[268]],[[269]],[[270]],[[271]]]},{"type":"Polygon","properties":{"name":"Austria"},"id":"AUT","arcs":[[272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307]]},{"type":"MultiPolygon","properties":{"name":"Azerbaijan"},"id":"AZE","arcs":[[[308,309,-247]],[[310,311,312,-245,313]]]},{"type":"Polygon","properties":{"name":"Burundi"},"id":"BDI","arcs":[[314,315,316,317,318,319,320,321,322,323,324]]},{"type":"Polygon","properties":{"name":"Belgium"},"id":"BEL","arcs":[[325,326,327,328,329,330,331,332,333,334,335,336,337]]},{"type":"Polygon","properties":{"name":"Benin"},"id":"BEN","arcs":[[338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355]]},{"type":"Polygon","properties":{"name":"Burkina Faso"},"id":"BFA","arcs":[[356,-355,357,358,359,360,361,362,363,364,365,366,367,368,369]]},{"type":"MultiPolygon","properties":{"name":"Bangladesh"},"id":"BGD","arcs":[[[370]],[[371]],[[372]],[[373,374,375]]]},{"type":"Polygon","properties":{"name":"Bulgaria"},"id":"BGR","arcs":[[376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410]]},{"type":"Polygon","properties":{"name":"Bahrain"},"id":"BHR","arcs":[[411]]},{"type":"MultiPolygon","properties":{"name":"Bahamas"},"id":"BHS","arcs":[[[412]],[[413]],[[414]],[[415]],[[416]],[[417]],[[418]]]},{"type":"Polygon","properties":{"name":"Bosnia and Herz."},"id":"BIH","arcs":[[419,420,421,422,423,424,425,426,427,428,429,430]]},{"type":"Polygon","properties":{"name":"St-Barthélemy"},"id":"BLM","arcs":[[431]]},{"type":"Polygon","properties":{"name":"Belarus"},"id":"BLR","arcs":[[432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508]]},{"type":"Polygon","properties":{"name":"Belize"},"id":"BLZ","arcs":[[509,510,511]]},{"type":"Polygon","properties":{"name":"Bermuda"},"id":"BMU","arcs":[[512]]},{"type":"Polygon","properties":{"name":"Bolivia"},"id":"BOL","arcs":[[513,-183,514,-181,515,-179,516,-177,517,-244,518,-242,519,-240,520,-238,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,583,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606]]},{"type":"MultiPolygon","properties":{"name":"Brazil"},"id":"BRA","arcs":[[[607]],[[608]],[[609]],[[610]],[[611]],[[612]],[[613]],[[614]],[[615]],[[616]],[[617]],[[618]],[[619]],[[620]],[[621]],[[622]],[[623]],[[624]],[[625]],[[626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,-223,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,-607,680,-605,681,682,-602,683,-600,684,-598,685,-596,686,-594,687,-592,688,-590,689,690,-587,691,-585,692,693,694,-581,695,-579,696,-577,697,-575,698,-573,699,-571,700,-569,701,-567,702,703,704,705,706]]]},{"type":"Polygon","properties":{"name":"Barbados"},"id":"BRB","arcs":[[707]]},{"type":"MultiPolygon","properties":{"name":"Brunei"},"id":"BRN","arcs":[[[708,709]],[[710,711]]]},{"type":"Polygon","properties":{"name":"Bhutan"},"id":"BTN","arcs":[[712,713]]},{"type":"Polygon","properties":{"name":"Botswana"},"id":"BWA","arcs":[[714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750]]},{"type":"Polygon","properties":{"name":"Central African Rep."},"id":"CAF","arcs":[[751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791]]},{"type":"MultiPolygon","properties":{"name":"Canada"},"id":"CAN","arcs":[[[792]],[[793]],[[794]],[[795]],[[796]],[[797,798]],[[799]],[[800]],[[801]],[[802]],[[803]],[[804]],[[805]],[[806]],[[807]],[[808]],[[809]],[[810]],[[811]],[[812]],[[813]],[[814]],[[815]],[[816]],[[817]],[[818]],[[819]],[[820]],[[821]],[[822]],[[823]],[[824]],[[825]],[[826]],[[827]],[[828]],[[829]],[[830]],[[831]],[[832]],[[833]],[[834]],[[835]],[[836]],[[837]],[[838]],[[839]],[[840]],[[841]],[[842]],[[843]],[[844]],[[845]],[[846]],[[847]],[[848]],[[849]],[[850]],[[851]],[[852]],[[853]],[[854]],[[855]],[[856]],[[857]],[[858]],[[859]],[[860]],[[861]],[[862]],[[863]],[[864,865,866,867]],[[868]],[[869]],[[870]],[[871]],[[872]],[[873]],[[874]],[[875]],[[876]],[[877]],[[878]],[[879]],[[880]],[[881]],[[882]],[[883]],[[884]],[[885]],[[886]],[[887]],[[888]],[[889]],[[890]],[[891]],[[892]],[[893]],[[894]],[[895]],[[896]],[[897]],[[898]],[[899]],[[900]],[[901]],[[902]],[[903]],[[904]],[[905]]]},{"type":"Polygon","properties":{"name":"Switzerland"},"id":"CHE","arcs":[[-285,906,-283,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949]]},{"type":"MultiPolygon","properties":{"name":"Chile"},"id":"CHL","arcs":[[[950]],[[951]],[[952]],[[953]],[[954]],[[955]],[[956]],[[957]],[[958]],[[959]],[[-173,960]],[[961]],[[962]],[[963]],[[964]],[[965]],[[966]],[[967]],[[968]],[[969]],[[970]],[[971]],[[972]],[[973]],[[974]],[[975]],[[976]],[[977]],[[978]],[[979]],[[980]],[[981]],[[982]],[[983]],[[984]],[[985]],[[986]],[[987]],[[988]],[[989]],[[990]],[[991]],[[992]],[[993]],[[994]],[[995]],[[996]],[[997]],[[998]],[[999]],[[1000]],[[1001]],[[1002]],[[-237,1003,1004,-542,1005,-540,1006,-538,1007,-536,1008,-534,1009,-532,1010,1011,-529,1012,1013,-526,1014,-524,1015,-522]]]},{"type":"MultiPolygon","properties":{"name":"China"},"id":"CHN","arcs":[[[1016]],[[1017]],[[1018]],[[1019]],[[1020]],[[1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,-714,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,-24,1085,-22,1086,-20,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,1138,1139,1140,1141,1142,1143,1144,1145]]]},{"type":"Polygon","properties":{"name":"Côte d'Ivoire"},"id":"CIV","arcs":[[1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,-369,1209,-367,1210,1211,1212,-363,1213,-361]]},{"type":"Polygon","properties":{"name":"Cameroon"},"id":"CMR","arcs":[[-791,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245]]},{"type":"MultiPolygon","properties":{"name":"Cyprus U.N. Buffer Zone"},"id":"CNM","arcs":[[[1246,1247,1248,1249]],[[1250,1251]],[[1252,1253,1254,1255,1256]]]},{"type":"Polygon","properties":{"name":"Dem. Rep. Congo"},"id":"COD","arcs":[[1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,-323,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,-139,1305,-140,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,-789,1329,-787,1330,-785,1331,-783,1332,-781,1333,-779,1334,-777,1335]]},{"type":"Polygon","properties":{"name":"Congo"},"id":"COG","arcs":[[-1329,1336,1337,-1326,1338,-1324,1339,-1322,1340,-1320,1341,-1318,1342,-1316,1343,-1314,1344,1345,-1311,1346,-1309,1347,-1307,-144,1348,-142,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370,1371,1372,1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,-1215,-790]]},{"type":"Polygon","properties":{"name":"Cook Is."},"id":"COK","arcs":[[1402]]},{"type":"Polygon","properties":{"name":"Colombia"},"id":"COL","arcs":[[1403,-705,1404,1405,1406,1407,1408]]},{"type":"MultiPolygon","properties":{"name":"Comoros"},"id":"COM","arcs":[[[1409]],[[1410]],[[1411]]]},{"type":"MultiPolygon","properties":{"name":"Cape Verde"},"id":"CPV","arcs":[[[1412]],[[1413]],[[1414]],[[1415]],[[1416]],[[1417]],[[1418]]]},{"type":"Polygon","properties":{"name":"Costa Rica"},"id":"CRI","arcs":[[1419,1420,1421,1422]]},{"type":"MultiPolygon","properties":{"name":"Cuba"},"id":"CUB","arcs":[[[1423]],[[1424]],[[1425]],[[1426,1427]]]},{"type":"Polygon","properties":{"name":"Curaçao"},"id":"CUW","arcs":[[1428]]},{"type":"Polygon","properties":{"name":"Cayman Is."},"id":"CYM","arcs":[[1429]]},{"type":"Polygon","properties":{"name":"N. Cyprus"},"id":"CYN","arcs":[[-1250,1430,1431,1432,1433,1434,1435,-1257,1436]]},{"type":"MultiPolygon","properties":{"name":"Cyprus"},"id":"CYP","arcs":[[[1437,-1248]],[[1438,1439,1440,1441,1442,-1252,1443,-1255]]]},{"type":"Polygon","properties":{"name":"Czech Rep."},"id":"CZE","arcs":[[1444,1445,-308,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471]]},{"type":"MultiPolygon","properties":{"name":"Germany"},"id":"DEU","arcs":[[[1472]],[[1473]],[[1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,-1471,1492,-1469,1493,-1467,1494,-1465,1495,-1463,1496,-1461,1497,-1459,1498,1499,-1456,1500,-1454,1501,-1452,1502,1503,-1449,1504,1505,-307,1506,-305,1507,-303,1508,-301,1509,-299,1510,-297,1511,-295,1512,-293,1513,-291,1514,1515,-288,1516,-286,-950,1517,-948,1518,1519,1520,1521,1522,1523,1524,1525,1526,1527,1528,1529,1530,1531,-326,1532,1533,1534]]]},{"type":"Polygon","properties":{"name":"Djibouti"},"id":"DJI","arcs":[[1535,1536,1537,1538]]},{"type":"Polygon","properties":{"name":"Dominica"},"id":"DMA","arcs":[[1539]]},{"type":"MultiPolygon","properties":{"name":"Denmark"},"id":"DNK","arcs":[[[1540]],[[1541]],[[1542]],[[1543]],[[1544]],[[1545]],[[-1535,1546]]]},{"type":"Polygon","properties":{"name":"Dominican Rep."},"id":"DOM","arcs":[[1547,1548]]},{"type":"Polygon","properties":{"name":"Algeria"},"id":"DZA","arcs":[[1549,1550,1551,1552,1553,1554,1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584]]},{"type":"MultiPolygon","properties":{"name":"Ecuador"},"id":"ECU","arcs":[[[1585]],[[1586]],[[1587]],[[1588]],[[1589]],[[1590]],[[1591,1592,-1406]]]},{"type":"Polygon","properties":{"name":"Egypt"},"id":"EGY","arcs":[[1593,1594,1595,1596,1597,1598,1599]]},{"type":"MultiPolygon","properties":{"name":"Eritrea"},"id":"ERI","arcs":[[[1600]],[[1601,1602,-1538,1603,1604,1605,1606,1607,1608,1609,1610,1611,1612,1613]]]},{"type":"Polygon","properties":{"name":"Dhekelia"},"id":"ESB","arcs":[[-1431,-1249,1614,-1439,1615,-1253,-1436,1616,1617,-1433,1618]]},{"type":"MultiPolygon","properties":{"name":"Spain"},"id":"ESP","arcs":[[[1619]],[[1620]],[[1621]],[[1622]],[[1623]],[[1624]],[[1625]],[[1626]],[[1627]],[[1628]],[[1629,-162,1630,1631,-159,1632,-157,1633,1634,1635,1636]]]},{"type":"MultiPolygon","properties":{"name":"Estonia"},"id":"EST","arcs":[[[1637]],[[1638]],[[1639]],[[1640,1641,1642,1643,1644,1645]]]},{"type":"Polygon","properties":{"name":"Ethiopia"},"id":"ETH","arcs":[[-1537,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,1656,1657,1658,1659,1660,1661,-1614,1662,-1612,1663,-1610,1664,-1608,1665,-1606,1666,-1604]]},{"type":"MultiPolygon","properties":{"name":"Finland"},"id":"FIN","arcs":[[[1667]],[[1668]],[[1669,1670,1671,1672]]]},{"type":"MultiPolygon","properties":{"name":"Fiji"},"id":"FJI","arcs":[[[1673]],[[1674]],[[1675]],[[1676]]]},{"type":"MultiPolygon","properties":{"name":"Falkland Is."},"id":"FLK","arcs":[[[1677]],[[1678]],[[1679]]]},{"type":"MultiPolygon","properties":{"name":"France"},"id":"FRA","arcs":[[[1680]],[[1681]],[[-632,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698]],[[1699]],[[1700]],[[1701]],[[1702]],[[1703,1704,1705,-1520,1706,1707,1708,-944,1709,-942,1710,1711,-939,1712,-937,1713,-935,1714,1715,1716,-931,1717,-929,1718,1719,-926,1720,1721,1722,1723,1724,-1634,-166,1725,1726,-163,-1630,1727,-334]]]},{"type":"MultiPolygon","properties":{"name":"Faeroe Is."},"id":"FRO","arcs":[[[1728]],[[1729]]]},{"type":"Polygon","properties":{"name":"Micronesia"},"id":"FSM","arcs":[[1730]]},{"type":"Polygon","properties":{"name":"Gabon"},"id":"GAB","arcs":[[1731,1732,-1220,1733,-1218,1734,-1216,-1402,1735,-1400,1736,-1398,1737,-1396,1738,-1394,1739,-1392,1740,-1390,1741,-1388,1742,-1386,1743,-1384,1744,-1382,1745,1746,-1379,1747,-1377,1748,-1375,1749,-1373,1750,-1371,1751,-1369,1752,-1367,1753,-1365,1754,-1363,1755,-1361,1756,1757,1758,-1357,1759,-1355,1760,-1353,1761,-1351,1762]]},{"type":"MultiPolygon","properties":{"name":"United Kingdom"},"id":"GBR","arcs":[[[1763]],[[1764]],[[1765,1766]],[[1767]],[[1768]],[[1769]],[[1770]],[[1771]],[[1772]],[[1773]],[[1774]],[[1775]],[[1776]],[[1777]]]},{"type":"Polygon","properties":{"name":"Georgia"},"id":"GEO","arcs":[[-314,-249,1778,1779,1780]]},{"type":"Polygon","properties":{"name":"Guernsey"},"id":"GGY","arcs":[[1781]]},{"type":"Polygon","properties":{"name":"Ghana"},"id":"GHA","arcs":[[1782,1783,1784,-1162,1785,-1160,1786,-1158,1787,1788,-1155,1789,-1153,1790,1791,-1150,1792,-1148,-359]]},{"type":"Polygon","properties":{"name":"Guinea"},"id":"GIN","arcs":[[1793,-1201,1794,-1199,1795,-1197,1796,-1195,1797,-1193,1798,-1191,1799,-1189,1800,-1187,1801,1802,-1184,1803,1804,1805,1806,1807,1808,1809,1810,1811,1812,1813,1814,1815]]},{"type":"Polygon","properties":{"name":"Gambia"},"id":"GMB","arcs":[[1816,1817]]},{"type":"MultiPolygon","properties":{"name":"Guinea-Bissau"},"id":"GNB","arcs":[[[1818]],[[1819]],[[1820]],[[1821,-1813,1822,1823,1824,1825,-1815]]]},{"type":"MultiPolygon","properties":{"name":"Eq. Guinea"},"id":"GNQ","arcs":[[[-1732,1826,1827,-1222]],[[1828]]]},{"type":"MultiPolygon","properties":{"name":"Greece"},"id":"GRC","arcs":[[[1829]],[[1830]],[[1831]],[[1832]],[[1833]],[[1834]],[[1835]],[[1836]],[[1837]],[[1838]],[[1839]],[[1840]],[[1841]],[[1842]],[[1843]],[[1844]],[[1845,1846,1847,-152,1848,-150,1849,-148,1850,1851,1852,-393,1853,-391,1854,-389,1855,1856,-386,1857,-384]]]},{"type":"Polygon","properties":{"name":"Grenada"},"id":"GRD","arcs":[[1858]]},{"type":"MultiPolygon","properties":{"name":"Greenland"},"id":"GRL","arcs":[[[1859]],[[1860]],[[1861]],[[1862]],[[1863]],[[1864]],[[1865]],[[1866]],[[1867]],[[1868]],[[1869]],[[1870]],[[1871]],[[1872]],[[1873]],[[1874]],[[1875]],[[1876]],[[1877]],[[1878]],[[1879]],[[1880]],[[1881]],[[1882]],[[1883]],[[1884]],[[1885]],[[1886]],[[1887]],[[1888]],[[1889]],[[1890]],[[1891]]]},{"type":"Polygon","properties":{"name":"Guatemala"},"id":"GTM","arcs":[[-511,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,1926,1927]]},{"type":"Polygon","properties":{"name":"Guam"},"id":"GUM","arcs":[[1928]]},{"type":"Polygon","properties":{"name":"Guyana"},"id":"GUY","arcs":[[1929,1930,-707,1931,1932,1933,1934,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950]]},{"type":"MultiPolygon","properties":{"name":"Hong Kong"},"id":"HKG","arcs":[[[1951]],[[1952,-1024]]]},{"type":"Polygon","properties":{"name":"Heard I. and McDonald Is."},"id":"HMD","arcs":[[1953]]},{"type":"Polygon","properties":{"name":"Honduras"},"id":"HND","arcs":[[1954,1955,1956,-1896,1957,-1894,1958]]},{"type":"MultiPolygon","properties":{"name":"Croatia"},"id":"HRV","arcs":[[[-429,1959]],[[1960]],[[1961]],[[1962]],[[1963,-431,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976]]]},{"type":"MultiPolygon","properties":{"name":"Haiti"},"id":"HTI","arcs":[[[1977]],[[-1548,1978]]]},{"type":"Polygon","properties":{"name":"Hungary"},"id":"HUN","arcs":[[1979,1980,1981,1982,1983,1984,-1977,1985,-1975,1986,-1973,1987,-274,1988]]},{"type":"MultiPolygon","properties":{"name":"Indonesia"},"id":"IDN","arcs":[[[1989]],[[1990]],[[1991]],[[1992]],[[1993,1994,1995,1996]],[[1997]],[[1998]],[[1999]],[[2000]],[[2001]],[[2002]],[[2003]],[[2004]],[[2005]],[[2006]],[[2007]],[[2008]],[[2009]],[[2010]],[[2011]],[[2012]],[[2013]],[[2014]],[[2015]],[[2016]],[[2017]],[[2018]],[[2019]],[[2020]],[[2021]],[[2022]],[[2023]],[[2024]],[[2025]],[[2026]],[[2027]],[[2028]],[[2029]],[[2030]],[[2031]],[[2032]],[[2033]],[[2034]],[[2035]],[[2036]],[[2037]],[[2038]],[[2039]],[[2040]],[[2041]],[[2042]],[[2043]],[[2044]],[[2045]],[[2046]],[[2047]],[[2048]],[[2049]],[[2050]],[[2051]],[[2052]],[[2053]],[[2054]],[[2055]],[[2056,2057]],[[2058]],[[2059]],[[2060]],[[2061]],[[2062]],[[2063]],[[2064]],[[2065]],[[2066]],[[2067]],[[2068]],[[2069]],[[2070]],[[2071]],[[2072]],[[2073]],[[2074]],[[2075]],[[2076]],[[2077]],[[2078]],[[2079]],[[2080]],[[2081]],[[2082]],[[2083]],[[2084]],[[2085,2086]],[[2087]],[[2088,2089]],[[2090]],[[2091]]]},{"type":"Polygon","properties":{"name":"Isle of Man"},"id":"IMN","arcs":[[2092]]},{"type":"MultiPolygon","properties":{"name":"India"},"id":"IND","arcs":[[[2093]],[[2094]],[[2095]],[[2096]],[[2097]],[[2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,-1052,-713,-1051,2134,-376,2135,2136,2137,-1077]]]},{"type":"Polygon","properties":{"name":"Indian Ocean Ter."},"id":"IOA","arcs":[[2138]]},{"type":"Polygon","properties":{"name":"Br. Indian Ocean Ter."},"id":"IOT","arcs":[[2139]]},{"type":"Polygon","properties":{"name":"Ireland"},"id":"IRL","arcs":[[-1766,2140]]},{"type":"MultiPolygon","properties":{"name":"Iran"},"id":"IRN","arcs":[[[2141]],[[-246,-313,2142,2143,-74,2144,2145,-71,2146,-69,2147,-67,2148,-65,2149,2150,2151,2152,-309]]]},{"type":"Polygon","properties":{"name":"Iraq"},"id":"IRQ","arcs":[[-2152,2153,2154,2155,2156,2157,2158,2159]]},{"type":"Polygon","properties":{"name":"Iceland"},"id":"ISL","arcs":[[2160]]},{"type":"Polygon","properties":{"name":"Israel"},"id":"ISR","arcs":[[2161,2162,2163,2164,2165,2166,2167,2168,-1595,2169,2170,2171,2172,2173,2174,2175,2176,2177]]},{"type":"MultiPolygon","properties":{"name":"Italy"},"id":"ITA","arcs":[[[2178]],[[2179]],[[-1722,2180,-924,2181,-922,2182,-920,2183,2184,-917,2185,-915,2186,2187,-912,2188,2189,-909,2190,-281,2191,-279,2192,-277,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204]]]},{"type":"Polygon","properties":{"name":"Jamaica"},"id":"JAM","arcs":[[2205]]},{"type":"Polygon","properties":{"name":"Jersey"},"id":"JEY","arcs":[[2206]]},{"type":"Polygon","properties":{"name":"Jordan"},"id":"JOR","arcs":[[2207,2208,2209,2210,2211,2212,2213,2214,2215,-2168,2216,-2166,2165,2217,2218,2219,2220,2221,2222,-2162,2223,2224,2225,-2158]]},{"type":"MultiPolygon","properties":{"name":"Japan"},"id":"JPN","arcs":[[[2226]],[[2227]],[[2228]],[[2229]],[[2230]],[[2231]],[[2232]],[[2233]],[[2234]],[[2235]],[[2236]],[[2237]],[[2238]],[[2239]],[[2240]],[[2241]],[[2242]],[[2243]]]},{"type":"Polygon","properties":{"name":"Baikonur"},"id":"KAB","arcs":[[2244,2245,2246]]},{"type":"Polygon","properties":{"name":"Siachen Glacier"},"id":"KAS","arcs":[[-1080,2247,-1078,-2138,2248,2249,-1082,2250]]},{"type":"Polygon","properties":{"name":"Kazakhstan"},"id":"KAZ","arcs":[[-1103,2251,2252,2253,2254,2255,2256,2257,2258,2259,2260,2261,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275],[2276,2277,-2245]]},{"type":"Polygon","properties":{"name":"Kenya"},"id":"KEN","arcs":[[-1654,2278,-1652,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,2291,2292,2293,2294,2295,2296,2297,2298]]},{"type":"Polygon","properties":{"name":"Kyrgyzstan"},"id":"KGZ","arcs":[[-2260,2299,-2258,2300,-2256,2301,-2254,2302,-2252,2303,-1101,2304,-1099,2305,-1097,2306,-1095,2307,-1093,2308,2309,-1090,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,2347,2348,2349,-2271,2350,2351,-2268,2352,-2266,2353,-2264,2354,-2262,2355],[2356,2357]]},{"type":"Polygon","properties":{"name":"Cambodia"},"id":"KHM","arcs":[[2358,2359,2360,2361,2362,2363]]},{"type":"Polygon","properties":{"name":"Kiribati"},"id":"KIR","arcs":[[2364]]},{"type":"Polygon","properties":{"name":"St. Kitts and Nevis"},"id":"KNA","arcs":[[2365]]},{"type":"MultiPolygon","properties":{"name":"Korea"},"id":"KOR","arcs":[[[2366]],[[2367]],[[2368]],[[2369]],[[2370]],[[2371,2372]]]},{"type":"Polygon","properties":{"name":"Kosovo"},"id":"KOS","arcs":[[2373,-146,2374,2375,2376,2377,2378,2379,2380,2381,2382,2383]]},{"type":"MultiPolygon","properties":{"name":"Kuwait"},"id":"KWT","arcs":[[[2384]],[[2385,-2155,2386]]]},{"type":"Polygon","properties":{"name":"Lao PDR"},"id":"LAO","arcs":[[-1028,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,-2363,2428,-2361,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,2462,2463,2464,2465,2466,2467,2468,2469,2470,2471,2472,2473,2474,2475,2476,2477,2478,-1049,2479,-1047,2480,2481,-1044,2482,2483,-1041,2484,2485,-1038,2486,2487,2488,2489,2490,-1032,2491,-1030,2492]]},{"type":"Polygon","properties":{"name":"Lebanon"},"id":"LBN","arcs":[[2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,-2177,2505,2506,-2174,2507,-2172,2508,2509,2510]]},{"type":"Polygon","properties":{"name":"Liberia"},"id":"LBR","arcs":[[-1183,2511,-1181,2512,2513,-1178,2514,-1176,2515,2516,-1173,2517,-1171,2518,-1169,2519,2520,2521,-1165,2522,2523,2524,2525,2526,2527,2528,2529,-1804]]},{"type":"Polygon","properties":{"name":"Libya"},"id":"LBY","arcs":[[2530,2531,-1550,2532,2533,2534,2535,2536,2537,2538,-1599,2539,2540,2541,2542]]},{"type":"Polygon","properties":{"name":"Saint Lucia"},"id":"LCA","arcs":[[2543]]},{"type":"Polygon","properties":{"name":"Liechtenstein"},"id":"LIE","arcs":[[-907,-284]]},{"type":"Polygon","properties":{"name":"Sri Lanka"},"id":"LKA","arcs":[[2544]]},{"type":"Polygon","properties":{"name":"Lesotho"},"id":"LSO","arcs":[[2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555,2556,2557,2558,2559,2560,2561,2562,2563,2564,2565]]},{"type":"Polygon","properties":{"name":"Lithuania"},"id":"LTU","arcs":[[2566,2567,2568,2569,2570,2571,-507,2572,-505,2573,2574,-502,2575,-500,2576,2577,2578,-496,2579,2580,2581,2582]]},{"type":"Polygon","properties":{"name":"Luxembourg"},"id":"LUX","arcs":[[2583,2584,2585,-1529,2586,-1527,2587,-1525,2588,-1523,2589,-1521,-1706,2590,-1704,-333,2591,-331,2592,-329,2593,-327]]},{"type":"Polygon","properties":{"name":"Latvia"},"id":"LVA","arcs":[[-509,-2571,2594,-2569,2595,-1645,2596,-1643,2597,2598,2599,2600,2601,2602,2603,2604,2605,2606,2607,2608,2609]]},{"type":"Polygon","properties":{"name":"Macao"},"id":"MAC","arcs":[[2610]]},{"type":"Polygon","properties":{"name":"St-Martin"},"id":"MAF","arcs":[[2611,2612]]},{"type":"Polygon","properties":{"name":"Morocco"},"id":"MAR","arcs":[[-1574,2613,-1572,2614,-1570,2615,-1568,2616,-1566,2617,-1564,2618,2619,-1561,2620,-1559,2621,-1557,2622,-1555,2623,2624,2625,2626,2627]]},{"type":"Polygon","properties":{"name":"Monaco"},"id":"MCO","arcs":[[2628,-1724]]},{"type":"Polygon","properties":{"name":"Moldova"},"id":"MDA","arcs":[[2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649,2650,2651,2652,2653,2654,2655,2656,2657]]},{"type":"MultiPolygon","properties":{"name":"Madagascar"},"id":"MDG","arcs":[[[2658]],[[2659]]]},{"type":"Polygon","properties":{"name":"Maldives"},"id":"MDV","arcs":[[2660]]},{"type":"MultiPolygon","properties":{"name":"Mexico"},"id":"MEX","arcs":[[[2661]],[[2662]],[[2663]],[[2664]],[[2665]],[[2666,-512,-1928,2667,2668,2669,-1924,2670,-1922,2671,2672,2673,-1918,2674,-1916,2675,-1914,2676,-1912,2677,-1910,2678,-1908,2679,2680]]]},{"type":"Polygon","properties":{"name":"Marshall Is."},"id":"MHL","arcs":[[2681]]},{"type":"Polygon","properties":{"name":"Macedonia"},"id":"MKD","arcs":[[-394,-1853,2682,-1851,-147,-2374,2683,2684]]},{"type":"Polygon","properties":{"name":"Mali"},"id":"MLI","arcs":[[2685,-370,-1209,2686,-1207,2687,-1205,2688,2689,-1202,-1794,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,-1552]]},{"type":"Polygon","properties":{"name":"Malta"},"id":"MLT","arcs":[[2703]]},{"type":"MultiPolygon","properties":{"name":"Myanmar"},"id":"MMR","arcs":[[[2704]],[[2705]],[[2706]],[[2707]],[[2708]],[[2709]],[[2710]],[[2711,-2478,2712,-2476,2713,-2474,2714,2715,2716,-374,-2135,-1050]]]},{"type":"Polygon","properties":{"name":"Montenegro"},"id":"MNE","arcs":[[-2375,-155,2717,2718,-427,2719,-425,2720,2721,2722,-421,2723,2724]]},{"type":"Polygon","properties":{"name":"Mongolia"},"id":"MNG","arcs":[[2725,2726,2727,2728,2729,2730,2731,2732,2733,2734,2735,2736,2737,2738,2739,2740,2741,2742,2743,2744,2745,-1145,2746,-1143,2747,2748,-1140,2749,-1138,2750,-1136,2751,-1134,2752,2753,-1131,2754,-1129,2755,-1127,2756,-1125,2757,-1123,2758,-1121,2759,-1119,2760,-1117,2761,-1115,2762,-1113,2763,-1111,2764,-1109,2765,-1107,2766,-1105,2767,2768,2769,2770,2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798]]},{"type":"Polygon","properties":{"name":"N. Mariana Is."},"id":"MNP","arcs":[[2799]]},{"type":"Polygon","properties":{"name":"Mozambique"},"id":"MOZ","arcs":[[2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823]]},{"type":"Polygon","properties":{"name":"Mauritania"},"id":"MRT","arcs":[[-2701,2824,-2699,2825,-2697,2826,-2695,2827,-2693,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,-1553,-2703,2838]]},{"type":"Polygon","properties":{"name":"Montserrat"},"id":"MSR","arcs":[[2839]]},{"type":"Polygon","properties":{"name":"Mauritius"},"id":"MUS","arcs":[[2840]]},{"type":"Polygon","properties":{"name":"Malawi"},"id":"MWI","arcs":[[-2822,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863]]},{"type":"MultiPolygon","properties":{"name":"Malaysia"},"id":"MYS","arcs":[[[2864]],[[-2086,2865]],[[2866]],[[2867]],[[2868,2869]],[[-2090,2870,-712,2871,-709,2872]],[[2873]]]},{"type":"Polygon","properties":{"name":"Namibia"},"id":"NAM","arcs":[[2874,-751,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,2890,2891,-137,2892,2893,-134]]},{"type":"MultiPolygon","properties":{"name":"New Caledonia"},"id":"NCL","arcs":[[[2894]],[[2895]],[[2896]]]},{"type":"Polygon","properties":{"name":"Niger"},"id":"NER","arcs":[[2897,2898,2899,2900,2901,2902,-356,-357,-2686,-1551,-2532]]},{"type":"Polygon","properties":{"name":"Norfolk Island"},"id":"NFK","arcs":[[2903]]},{"type":"Polygon","properties":{"name":"Nigeria"},"id":"NGA","arcs":[[-2899,2904,-1245,2905,2906,-1242,2907,-1240,2908,-1238,2909,-1236,2910,-1234,2911,2912,-1231,2913,-1229,2914,-1227,2915,-1225,2916,-352,2917,-350,2918,-348,2919,2920,-345,2921,-343,2922,-341,2923,-339,-2903,2924,-2901,2925]]},{"type":"Polygon","properties":{"name":"Nicaragua"},"id":"NIC","arcs":[[2926,-1423,2927,-1955]]},{"type":"Polygon","properties":{"name":"Niue"},"id":"NIU","arcs":[[2928]]},{"type":"MultiPolygon","properties":{"name":"Netherlands"},"id":"NLD","arcs":[[[2929]],[[-336,2930]],[[-1533,-338,2931]]]},{"type":"MultiPolygon","properties":{"name":"Norway"},"id":"NOR","arcs":[[[2932]],[[2933]],[[2934]],[[2935]],[[2936]],[[2937]],[[2938]],[[2939]],[[2940]],[[2941]],[[2942]],[[2943]],[[2944]],[[2945]],[[2946]],[[2947]],[[2948]],[[2949]],[[2950,-1673,2951,2952]],[[2953]],[[2954]],[[2955]],[[2956]],[[2957]],[[2958]],[[2959]],[[2960]],[[2961]]]},{"type":"Polygon","properties":{"name":"Nepal"},"id":"NPL","arcs":[[2962,-1070,2963,-1068,2964,-1066,2965,-1064,2966,-1062,2967,-1060,2968,-1058,2969,2970,-1055,2971,2972,-2133,2973,-2131,2974,-2129,2975,-2127,2976,-2125,2977,2978,-2122,2979,-2120,2980,-2118,2981,-2116,2982,-2114,2983,-2112,2984,2985,-2109,2986,-2107,2987,-2105,2988,-2103,2989,-2101,2990,-2099,-1076,2991,-1074,2992,-1072]]},{"type":"Polygon","properties":{"name":"Nauru"},"id":"NRU","arcs":[[2993]]},{"type":"MultiPolygon","properties":{"name":"New Zealand"},"id":"NZL","arcs":[[[2994]],[[2995]],[[2996]],[[2997]],[[2998]],[[2999]]]},{"type":"MultiPolygon","properties":{"name":"Oman"},"id":"OMN","arcs":[[[3000]],[[3001,3002,-168,3003]],[[-171,3004]]]},{"type":"Polygon","properties":{"name":"Pakistan"},"id":"PAK","arcs":[[-2249,-2137,3005,-2150,-64,3006,-62,3007,-60,3008,-58,3009,-56,3010,-54,3011,-52,3012,-50,3013,-48,3014,-46,3015,-44,3016,-42,3017,-40,3018,3019,-37,3020,-35,3021,-33,3022,3023,-30,3024,-28,3025,-26,-1084]]},{"type":"MultiPolygon","properties":{"name":"Panama"},"id":"PAN","arcs":[[[3026]],[[3027]],[[-1408,3028,-1421,3029]]]},{"type":"Polygon","properties":{"name":"Pitcairn Is."},"id":"PCN","arcs":[[3030]]},{"type":"Polygon","properties":{"name":"Peru"},"id":"PER","arcs":[[-704,3031,-564,3032,-562,3033,-560,3034,3035,-557,3036,3037,-554,3038,-552,3039,-550,3040,-548,3041,3042,-545,3043,-543,-1005,3044,-1592,-1405]]},{"type":"Polygon","properties":{"name":"Spratly Is."},"id":"PGA","arcs":[[3045]]},{"type":"MultiPolygon","properties":{"name":"Philippines"},"id":"PHL","arcs":[[[3046]],[[3047]],[[3048]],[[3049]],[[3050]],[[3051]],[[3052]],[[3053]],[[3054]],[[3055]],[[3056]],[[3057]],[[3058]],[[3059]],[[3060]],[[3061]],[[3062]],[[3063]],[[3064]],[[3065]],[[3066]],[[3067]],[[3068]],[[3069]],[[3070]],[[3071]],[[3072]],[[3073]],[[3074]],[[3075]],[[3076]],[[3077]],[[3078]]]},{"type":"Polygon","properties":{"name":"Palau"},"id":"PLW","arcs":[[3079]]},{"type":"MultiPolygon","properties":{"name":"Papua New Guinea"},"id":"PNG","arcs":[[[3080]],[[3081]],[[3082]],[[3083]],[[3084]],[[3085]],[[3086]],[[3087]],[[3088]],[[3089]],[[3090]],[[3091]],[[3092]],[[3093]],[[3094]],[[3095]],[[-2057,3096]],[[3097]],[[3098]],[[3099]],[[3100]]]},{"type":"Polygon","properties":{"name":"Poland"},"id":"POL","arcs":[[-494,3101,3102,3103,3104,3105,3106,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,-1445,3119,-1491,3120,-1489,3121,-1487,3122,3123,-1484,3124,3125,-1481,3126,3127,-1478,3128,-1476,3129,3130,3131,-2582,3132]]},{"type":"Polygon","properties":{"name":"Puerto Rico"},"id":"PRI","arcs":[[3133]]},{"type":"Polygon","properties":{"name":"Dem. Rep. Korea"},"id":"PRK","arcs":[[3134,3135,-2372,3136,-1022]]},{"type":"MultiPolygon","properties":{"name":"Portugal"},"id":"PRT","arcs":[[[3137]],[[3138]],[[3139]],[[3140]],[[3141]],[[3142,-1636]]]},{"type":"Polygon","properties":{"name":"Paraguay"},"id":"PRY","arcs":[[-680,3143,3144,-677,3145,-675,3146,-673,3147,3148,-670,3149,-668,3150,-666,3151,-664,3152,-662,3153,-660,3154,-658,3155,3156,-655,3157,-653,3158,-651,3159,-649,3160,-221,3161,-219,3162,3163,3164,-215,3165,-213,3166,-211,3167,-209,3168,-207,3169,3170,-204,3171,3172,3173,-200,3174,-198,3175,-196,3176,-194,3177,-192,3178,-190,3179,-188,3180,-186,3181,-184,-514]]},{"type":"MultiPolygon","properties":{"name":"Palestine"},"id":"PSX","arcs":[[[-1594,3182,-2170]],[[-2221,3183,-2219,3184,-2165]]]},{"type":"MultiPolygon","properties":{"name":"Fr. Polynesia"},"id":"PYF","arcs":[[[3185]],[[3186]],[[3187]]]},{"type":"Polygon","properties":{"name":"Qatar"},"id":"QAT","arcs":[[3188,3189]]},{"type":"Polygon","properties":{"name":"Romania"},"id":"ROU","arcs":[[-411,3190,3191,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,-1982,3202,3203,3204,3205,-2657,3206,-2655,3207,-2653,3208,3209,-2650,3210,-2648,3211,-2646,3212,3213,-2643,3214,3215,-2640,3216,-2638,3217,3218,-2635,3219,3220,3221,-2631,3222,3223,3224,3225,3226,3227]]},{"type":"MultiPolygon","properties":{"name":"Russia"},"id":"RUS","arcs":[[[3228]],[[3229]],[[3230]],[[3231]],[[3232]],[[3233]],[[3234]],[[3235]],[[3236]],[[3237]],[[-3131,3238,-2567]],[[3239]],[[3240]],[[3241]],[[3242]],[[3243]],[[3244]],[[3245]],[[3246]],[[3247]],[[3248]],[[3249]],[[3250]],[[3251]],[[3252]],[[3253]],[[3254]],[[3255]],[[3256]],[[3257]],[[3258]],[[3259]],[[3260]],[[3261]],[[3262]],[[3263]],[[3264]],[[3265]],[[3266]],[[3267]],[[3268]],[[3269]],[[3270]],[[3271]],[[3272]],[[-3135,-1146,-2746,3273,-2744,3274,-2742,3275,-2740,3276,-2738,3277,-2736,3278,-2734,3279,3280,-2731,3281,-2729,3282,-2727,3283,-2799,3284,3285,-2796,3286,-2794,3287,-2792,3288,-2790,3289,3290,-2787,3291,-2785,3292,-2783,3293,-2781,3294,-2779,3295,-2777,3296,-2775,3297,-2773,3298,-2771,3299,-2769,3300,-1104,-2276,3301,-311,-1781,3302,3303,-471,3304,3305,-468,3306,-466,3307,-464,3308,-462,3309,-460,3310,3311,-457,3312,3313,-454,3314,-452,3315,-450,3316,-448,3317,-446,3318,3319,3320,-442,3321,-440,3322,-438,3323,3324,-435,3325,-433,-2610,3326,-2608,3327,-2606,3328,3329,3330,-2602,3331,3332,-2599,3333,-1641,3334,-1670,-2951,3335]],[[3336]],[[3337]],[[3338]],[[3339]],[[3340]],[[3341]],[[3342]],[[3343]],[[3344]],[[3345]],[[3346]],[[3347]],[[3348]],[[3349]],[[3350]],[[3351]],[[3352]],[[3353]],[[3354]],[[3355]],[[3356]],[[3357]],[[3358]],[[3359]],[[3360]],[[3361]]]},{"type":"Polygon","properties":{"name":"Rwanda"},"id":"RWA","arcs":[[3362,3363,3364,3365,3366,3367,3368,3369,3370,3371,-325,-1275,3372,-1273,3373,-1271,3374,-1269,3375,3376]]},{"type":"Polygon","properties":{"name":"W. Sahara"},"id":"SAH","arcs":[[-1554,-2838,3377,-2836,3378,-2834,3379,-2627,3380,-2625,3381]]},{"type":"Polygon","properties":{"name":"Saudi Arabia"},"id":"SAU","arcs":[[-2386,3382,-3189,3383,-169,-3003,3384,3385,-2215,3386,-2213,3387,3388,-2210,3389,3390,-2156]]},{"type":"Polygon","properties":{"name":"Sudan"},"id":"SDN","arcs":[[3391,-1602,-1662,3392,-1660,3393,3394,-758,3395,-756,3396,-754,3397,-752,3398,3399,3400,3401,3402,3403,3404,3405,3406,3407,3408,3409,3410,3411,3412,3413,-2542,3414,3415,-1597]]},{"type":"Polygon","properties":{"name":"S. Sudan"},"id":"SDS","arcs":[[-1659,3416,-1657,3417,-1655,-2299,3418,-1258,3419,-774,3420,-772,3421,-770,3422,-768,3423,-766,3424,-764,3425,-762,3426,-760,3427,-3394]]},{"type":"Polygon","properties":{"name":"Senegal"},"id":"SEN","arcs":[[-2691,-1816,-1826,3428,-1824,3429,-1818,3430,-2832,3431,-2830,3432]]},{"type":"Polygon","properties":{"name":"Singapore"},"id":"SGP","arcs":[[3433]]},{"type":"Polygon","properties":{"name":"S. Geo. and S. Sandw. Is."},"id":"SGS","arcs":[[3434]]},{"type":"Polygon","properties":{"name":"Saint Helena"},"id":"SHN","arcs":[[3435]]},{"type":"MultiPolygon","properties":{"name":"Solomon Is."},"id":"SLB","arcs":[[[3436]],[[3437]],[[3438]],[[3439]],[[3440]],[[3441]],[[3442]],[[3443]],[[3444]],[[3445]],[[3446]],[[3447]],[[3448]],[[3449]],[[3450]]]},{"type":"MultiPolygon","properties":{"name":"Sierra Leone"},"id":"SLE","arcs":[[[3451]],[[3452,-1809,3453,-1807,3454,-1805,-2530,3455,-2528,3456,-2526,3457,-2524,3458,-1811]]]},{"type":"Polygon","properties":{"name":"El Salvador"},"id":"SLV","arcs":[[-1957,3459,-1906,3460,-1904,3461,-1902,3462,-1900,3463,-1898,3464]]},{"type":"Polygon","properties":{"name":"San Marino"},"id":"SMR","arcs":[[3465]]},{"type":"Polygon","properties":{"name":"Somaliland"},"id":"SOL","arcs":[[-1647,-1536,3466,3467,3468]]},{"type":"Polygon","properties":{"name":"Somalia"},"id":"SOM","arcs":[[-2280,3469,-1650,3470,-1648,-3469,3471,3472]]},{"type":"Polygon","properties":{"name":"St. Pierre and Miquelon"},"id":"SPM","arcs":[[3473]]},{"type":"Polygon","properties":{"name":"Serbia"},"id":"SRB","arcs":[[-420,-1964,3474,-1984,3475,3476,-3200,3477,-3198,3478,-3196,3479,-3194,3480,-3192,3481,3482,-409,3483,-407,3484,-405,3485,-403,3486,-401,3487,3488,-398,3489,-396,3490,-2684,-2384,3491,-2382,3492,-2380,3493,-2378,3494,-2376,-2725,3495]]},{"type":"Polygon","properties":{"name":"São Tomé and Principe"},"id":"STP","arcs":[[3496]]},{"type":"Polygon","properties":{"name":"Suriname"},"id":"SUR","arcs":[[3497,3498,-1948,3499,-1946,3500,-1944,3501,3502,-1941,3503,-1939,3504,3505,-1936,3506,-1934,3507,-1698,3508,-1696,3509,-1694,3510,-1692,3511,-1690,3512,3513,-1687,3514,-1685,3515,-1683,-631,3516,-629,3517,-627,-1931,3518,-1951]]},{"type":"Polygon","properties":{"name":"Slovakia"},"id":"SVK","arcs":[[3519,3520,3521,-1989,-273,-1446,-3119]]},{"type":"Polygon","properties":{"name":"Slovenia"},"id":"SVN","arcs":[[-1972,3522,-1970,3523,-1968,3524,-1966,3525,3526,-2203,3527,3528,-2200,3529,-2198,3530,3531,-2195,3532,-275,-1988]]},{"type":"MultiPolygon","properties":{"name":"Sweden"},"id":"SWE","arcs":[[[3533]],[[3534]],[[3535]],[[3536,-2952,-1672]]]},{"type":"Polygon","properties":{"name":"Swaziland"},"id":"SWZ","arcs":[[-2802,3537,3538,3539]]},{"type":"Polygon","properties":{"name":"Sint Maarten"},"id":"SXM","arcs":[[3540,-2612]]},{"type":"Polygon","properties":{"name":"Seychelles"},"id":"SYC","arcs":[[3541]]},{"type":"Polygon","properties":{"name":"Syria"},"id":"SYR","arcs":[[-2159,-2226,3542,-2224,-2178,3543,-2504,3544,-2502,3545,-2500,3546,3547,-2497,3548,-2495,3549,3550,-2510,3551,3552]]},{"type":"Polygon","properties":{"name":"Turks and Caicos Is."},"id":"TCA","arcs":[[3553]]},{"type":"Polygon","properties":{"name":"Chad"},"id":"TCD","arcs":[[3554,-3413,3555,-3411,3556,-3409,3557,-3407,3558,-3405,3559,-3403,3560,-3401,3561,-3399,-792,-1246,-2905,-2898,-2531]]},{"type":"Polygon","properties":{"name":"Togo"},"id":"TGO","arcs":[[-354,3562,-1783,-358]]},{"type":"MultiPolygon","properties":{"name":"Thailand"},"id":"THA","arcs":[[[3563]],[[3564]],[[3565,-2471,3566,-2469,3567,-2467,3568,3569,3570,-2463,3571,-2461,3572,-2459,3573,-2457,3574,-2455,3575,-2453,3576,-2451,3577,3578,-2448,3579,3580,-2445,3581,-2443,3582,3583,-2440,3584,-2438,3585,-2436,3586,-2434,3587,-2432,3588,3589,-2360,3590,-2870,3591,-2716]]]},{"type":"Polygon","properties":{"name":"Tajikistan"},"id":"TJK","arcs":[[3592,-2323,3593,3594,-2320,3595,-2318,3596,-2316,3597,-2314,3598,3599,-2311,-1089,3600,-18,3601,-16,3602,-14,3603,3604,3605,3606,-9,3607,-7,3608,-5,3609,-3,3610,-116,3611,-114,3612,-112,3613,-110,3614,-108,3615,-106,3616,-104,3617,-102,3618,-100,3619,-98,3620,-96,3621,-94,3622,3623]]},{"type":"Polygon","properties":{"name":"Turkmenistan"},"id":"TKM","arcs":[[-89,3624,3625,-86,3626,-84,3627,3628,-81,3629,-79,3630,-77,3631,-75,-2144,3632,-2274,3633]]},{"type":"MultiPolygon","properties":{"name":"Timor-Leste"},"id":"TLS","arcs":[[[3634,-1995]],[[-1997,3635]]]},{"type":"Polygon","properties":{"name":"Tonga"},"id":"TON","arcs":[[3636]]},{"type":"MultiPolygon","properties":{"name":"Trinidad and Tobago"},"id":"TTO","arcs":[[[3637]],[[3638]]]},{"type":"MultiPolygon","properties":{"name":"Tunisia"},"id":"TUN","arcs":[[[3639]],[[-2538,3640,-2536,3641,3642,-2533,-1585,3643,-1583,3644,-1581,3645,3646,-1578,3647,-1576,3648]]]},{"type":"MultiPolygon","properties":{"name":"Turkey"},"id":"TUR","arcs":[[[3649]],[[-1846,3650,-382,3651,-380,3652,-378,3653]],[[-1779,-248,-310,-2153,-2160,-3553,3654]]]},{"type":"Polygon","properties":{"name":"Taiwan"},"id":"TWN","arcs":[[3655]]},{"type":"MultiPolygon","properties":{"name":"Tanzania"},"id":"TZA","arcs":[[[3656]],[[3657]],[[3658]],[[-2282,3659,-2823,-2864,3660,3661,3662,3663,3664,3665,3666,-1277,-322,3667,3668,-319,3669,-317,3670,-315,-3372,3671,-3370,3672,-3368,3673,-3366,3674,-3364,3675,3676,3677]]]},{"type":"Polygon","properties":{"name":"Uganda"},"id":"UGA","arcs":[[-3377,-1267,3678,-1265,3679,-1263,3680,-1261,3681,-1259,-3419,-2298,3682,-2296,3683,-2294,3684,-2292,3685,3686,-2289,3687,3688,3689,-2285,3690,-2283,3691,-3677,3692]]},{"type":"Polygon","properties":{"name":"Ukraine"},"id":"UKR","arcs":[[3693,-3227,3694,-3225,3695,3696,-2658,3697,3698,-3204,3699,-1980,-3522,3700,-3520,-3118,3701,-3116,3702,-3114,3703,-3112,3704,3705,-3109,3706,3707,3708,-3105,3709,-3103,3710,3711,-491,3712,-489,3713,-487,3714,-485,3715,-483,3716,3717,3718,-479,3719,-477,3720,3721,-474,3722,-472,-3304]]},{"type":"Polygon","properties":{"name":"Uruguay"},"id":"URY","arcs":[[3723,3724,-643,3725,-641,3726,-639,3727,3728,-636,3729,-634,3730,-235,3731,-233,3732,-231,3733,-229,3734,-227,3735,-225,3736,-646]]},{"type":"MultiPolygon","properties":{"name":"United States"},"id":"USA","arcs":[[[3737]],[[3738]],[[3739]],[[3740]],[[3741]],[[3742]],[[3743]],[[3744]],[[3745]],[[3746]],[[3747]],[[3748]],[[3749]],[[3750]],[[-799,3751,-2681,3752,-865]],[[3753]],[[3754]],[[3755]],[[3756]],[[3757]],[[3758]],[[3759]],[[3760]],[[3761]],[[3762]],[[3763]],[[3764]],[[3765]],[[3766]],[[3767]],[[3768]],[[3769]],[[3770]],[[3771]],[[3772]],[[3773]],[[3774]],[[3775]],[[3776]],[[3777]],[[3778]],[[3779]],[[3780]],[[3781]],[[3782]],[[3783]],[[3784]],[[3785]],[[3786]],[[3787]],[[3788]],[[3789]],[[3790]],[[3791]],[[3792]],[[-867,3793]]]},{"type":"Polygon","properties":{"name":"USNB Guantanamo Bay"},"id":"USG","arcs":[[3794,-1427]]},{"type":"MultiPolygon","properties":{"name":"Uzbekistan"},"id":"UZB","arcs":[[[3795,-2358]],[[-2349,3796,-2347,3797,-2345,3798,-2343,3799,3800,-2340,3801,-2338,3802,3803,-2335,3804,-2333,3805,-2331,3806,-2329,3807,-2327,3808,-2325,3809,-3624,3810,-92,3811,-90,-3634,-2273]]]},{"type":"Polygon","properties":{"name":"St. Vin. and Gren."},"id":"VCT","arcs":[[3812]]},{"type":"MultiPolygon","properties":{"name":"Venezuela"},"id":"VEN","arcs":[[[3813]],[[3814]],[[3815]],[[-1932,-706,-1404,3816]]]},{"type":"Polygon","properties":{"name":"British Virgin Is."},"id":"VGB","arcs":[[3817]]},{"type":"Polygon","properties":{"name":"U.S. Virgin Is."},"id":"VIR","arcs":[[3818]]},{"type":"MultiPolygon","properties":{"name":"Vietnam"},"id":"VNM","arcs":[[[3819]],[[3820,-2364,-2428,3821,-2426,3822,-2424,3823,-2422,3824,-2420,3825,-2418,3826,3827,-2415,3828,-2413,3829,-2411,3830,-2409,3831,-2407,3832,-2405,3833,-2403,3834,-2401,3835,-2399,3836,-2397,3837,-2395,3838,-2393,3839,-2391,3840,-2389,-1026]]]},{"type":"MultiPolygon","properties":{"name":"Vanuatu"},"id":"VUT","arcs":[[[3841]],[[3842]],[[3843]],[[3844]],[[3845]],[[3846]],[[3847]],[[3848]],[[3849]],[[3850]],[[3851]],[[3852]]]},{"type":"Polygon","properties":{"name":"Wallis and Futuna Is."},"id":"WLF","arcs":[[3853]]},{"type":"Polygon","properties":{"name":"Akrotiri"},"id":"WSB","arcs":[[3854,-1441,3855]]},{"type":"MultiPolygon","properties":{"name":"Samoa"},"id":"WSM","arcs":[[[3856]],[[3857]]]},{"type":"MultiPolygon","properties":{"name":"Yemen"},"id":"YEM","arcs":[[[3858]],[[3859,-3385,-3002]]]},{"type":"MultiPolygon","properties":{"name":"South Africa"},"id":"ZAF","arcs":[[[3860]],[[-2803,3861,-3539,3862,-2801,3863,-2891,3864,-2889,3865,-2887,3866,-2885,3867,-2883,3868,-2881,3869,-2879,3870,-2877,3871,-749,3872,3873,-746,3874,-744,3875,-742,3876,-740,3877,-738,3878,-736,3879,-734,3880,-732,3881,3882,-729,3883,-727,3884,-725,3885,-723,3886,-721,3887,-719,3888,-717,3889,3890,3891,3892],[-2560,3893,3894,-2557,3895,-2555,3896,-2553,3897,-2551,3898,-2549,3899,-2547,3900,-2566,3901,-2564,3902,-2562,3903]]]},{"type":"Polygon","properties":{"name":"Zambia"},"id":"ZMB","arcs":[[3904,-2875,3905,-132,3906,-130,3907,3908,-127,3909,-125,3910,-123,3911,-121,3912,-119,3913,-117,-1305,3914,-1303,3915,-1301,3916,-1299,3917,-1297,3918,-1295,3919,3920,-1292,3921,-1290,3922,-1288,3923,-1286,3924,-1284,3925,-1282,3926,-1280,3927,-1278,-3667,3928,-3665,3929,-3663,3930,-3661,-2863,3931,-2861,3932,-2859,3933,-2857,3934,3935,-2854,3936,-2852,3937,-2850,3938,-2848,3939,3940,-2845,3941,-2843,3942,3943,-2820,3944,-2818,3945]]},{"type":"Polygon","properties":{"name":"Zimbabwe"},"id":"ZWE","arcs":[[-2816,3946,3947,-2813,3948,3949,-2810,3950,-2808,3951,-2806,3952,-2804,-3893,3953,-3891,3954,-715,-3905]]}]}},"arcs":[[[3055,4900],[4,-9],[-1,-2],[-4,8],[1,3]],[[6974,6754],[4,-6]],[[6978,6748],[2,-2],[1,-1],[1,-6],[-1,-6],[-2,-9],[0,-3]],[[6979,6721],[0,-2],[2,-2]],[[6981,6717],[1,0],[0,1],[3,3],[1,0],[1,-2],[1,-2]],[[6988,6717],[0,-6]],[[6988,6711],[-3,-18],[0,-21],[-2,-14],[1,-2],[0,-2],[0,-5],[4,-17],[2,-2],[2,0],[3,1],[8,13],[1,1],[0,1],[1,1],[0,1],[0,1],[2,1],[2,3],[2,0],[2,0],[0,1],[5,1]],[[7018,6655],[1,6],[1,5]],[[7020,6666],[7,9],[2,0],[6,11],[6,1],[5,-3],[1,0],[1,0]],[[7048,6684],[0,-2],[0,-1],[0,-3]],[[7048,6678],[-3,-4]],[[7045,6674],[-1,-2],[0,-2]],[[7044,6670],[3,-2]],[[7047,6668],[2,1],[7,6],[3,1],[1,1],[1,1],[0,4]],[[7061,6682],[2,-1],[1,2],[1,-2]],[[7065,6681],[0,0]],[[7065,6681],[1,0]],[[7066,6681],[1,0],[3,-1],[3,1]],[[7073,6681],[2,-7]],[[7075,6674],[-1,-1],[-1,-1]],[[7073,6672],[-1,-3]],[[7072,6669],[-4,0],[0,-3]],[[7068,6666],[-3,-1],[0,-2]],[[7065,6663],[0,-1],[1,-2],[2,-1]],[[7068,6659],[1,-4],[1,-1]],[[7070,6654],[0,-1],[0,-1],[0,-2],[-1,0],[-1,3],[-1,0],[-1,-1],[-9,-11],[-4,0],[-2,3],[-6,1],[-4,-1],[-5,0]],[[7036,6644],[-4,0]],[[7032,6644],[-4,-1],[-1,-2],[-1,0],[0,1]],[[7026,6642],[-1,0],[-1,-1]],[[7024,6641],[-1,0],[-8,-1],[-3,-5],[-7,-2]],[[7005,6633],[-1,-5],[-3,-3]],[[7001,6625],[-5,-8],[-2,-1]],[[6994,6616],[-1,-1],[0,-2],[1,-3],[-1,0],[-1,-1],[-3,5],[-1,0],[0,-1],[-1,-6],[-5,-10],[-4,-7],[-2,-7],[3,-4],[0,-1],[1,0],[1,-1],[0,-1],[1,-2],[0,-1],[1,-2],[3,-13],[2,-9],[0,-4],[0,-2],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[-1,-3],[-1,-2],[0,-2]],[[6986,6531],[2,-6],[1,-1]],[[6989,6524],[0,-1],[0,-1],[-1,-3],[-2,-3],[0,-1],[-2,-10],[-3,-3],[-1,-2]],[[6980,6500],[-3,-9]],[[6977,6491],[-3,-5],[-1,-8],[-2,-7],[4,-8],[0,-2],[-1,-5],[0,-8],[0,-1],[-1,-2],[0,-2],[0,-2]],[[6973,6441],[-3,-3]],[[6970,6438],[-2,-3]],[[6968,6435],[-10,-2],[-5,1],[-9,7],[-1,0],[-2,-1],[-2,-7],[4,-13],[4,-2],[1,-6],[0,-10]],[[6948,6402],[1,-3],[3,-6]],[[6952,6393],[0,-2],[0,-2],[-5,-9],[0,-1],[-2,1],[-1,-4],[-4,-4],[-3,2]],[[6937,6374],[-2,-2],[-1,0],[-1,-1],[-1,0],[-1,0]],[[6931,6371],[-1,-1],[-1,-5],[0,-7],[0,-2]],[[6929,6356],[-1,-4]],[[6928,6352],[-1,-2]],[[6927,6350],[-1,-2],[1,-1],[0,-1],[1,0]],[[6928,6346],[0,-2],[0,-2]],[[6928,6342],[0,-2],[-2,-5]],[[6926,6335],[0,-1],[-2,-1],[0,-1],[-2,-8],[1,-7],[0,-14]],[[6923,6303],[0,-6],[1,-6]],[[6924,6291],[0,-1],[-1,-3],[-1,-1],[-3,-11],[0,-1],[-1,0],[0,-2],[-1,-1],[-1,-2],[-1,-1],[-1,0],[-1,0],[-1,-2],[-2,1],[-3,11],[-4,3],[-1,0],[-2,-2]],[[6900,6279],[1,-2]],[[6901,6277],[2,0]],[[6903,6277],[0,-2],[-1,-1]],[[6902,6274],[-4,3],[-6,4],[-2,-9],[-2,-2],[0,-1],[-1,-1],[-2,0],[-4,-8],[-5,0],[0,-1]],[[6876,6259],[1,-6]],[[6877,6253],[5,-2],[-1,-5],[-1,0],[-3,-4],[-7,-5],[-9,2],[-2,6],[-3,-3],[-1,-1],[-1,-2],[0,-1]],[[6854,6238],[-1,-1],[-1,-1]],[[6852,6236],[-1,-8],[0,-1],[-3,-6],[-1,-1],[-3,-2]],[[6844,6218],[-1,0],[0,-1]],[[6843,6217],[-3,-23],[0,-3],[1,-6],[1,-2],[0,-1],[-1,-10],[0,-5],[-2,-8],[0,-3],[0,-1],[0,-1],[1,-2],[1,-2],[1,-2],[0,-1]],[[6842,6147],[-2,-5]],[[6840,6142],[-2,-3],[-32,-21],[-2,0],[-4,1],[-10,1],[-8,-6],[-3,-7],[-3,3],[-11,5],[-10,-3],[-2,0],[-2,-1],[-1,0],[-7,-1],[-8,-2],[-3,1],[-7,6],[-3,1],[-2,2],[-2,2],[-7,5],[-3,1],[-4,4],[-5,3],[-9,6],[-1,1]],[[6689,6140],[2,5],[2,5],[14,36],[9,24]],[[6716,6210],[0,4]],[[6716,6214],[0,5],[0,1],[1,2],[0,3],[-2,19],[-2,4],[0,1],[-1,1],[-1,0],[-4,1],[-10,3],[-7,3],[-2,13],[-1,26],[1,3],[1,1],[0,6],[0,6],[-7,53],[0,5],[0,7],[7,18],[1,10],[-1,1],[-1,0],[-4,0],[-2,2],[-2,4],[0,5],[1,6],[0,3],[-1,11],[0,7],[0,4],[0,3]],[[6680,6451],[2,4],[2,5]],[[6684,6460],[2,0]],[[6686,6460],[5,0]],[[6691,6460],[-1,2],[-2,6],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,4],[2,1],[1,1],[0,1],[2,3],[0,1],[1,0]],[[6692,6483],[1,6]],[[6693,6489],[0,2],[1,1],[2,4]],[[6696,6496],[0,2],[0,3],[0,2],[0,1],[0,2],[0,1],[0,1],[1,3],[0,3],[0,15],[2,3],[0,4],[3,13],[0,4],[-1,1]],[[6701,6554],[1,0],[1,1],[1,-4],[0,-1],[1,-1]],[[6705,6549],[1,-1],[3,-6]],[[6709,6542],[2,-2],[5,-1],[3,3],[2,0],[1,-2],[3,-6],[1,-1],[2,-2],[1,-7],[0,-1],[0,-3],[1,-1],[0,1],[3,8],[1,1],[2,-3],[1,0]],[[6737,6526],[2,-1]],[[6739,6525],[2,3],[1,0],[0,1],[1,2],[4,6],[2,2],[2,1],[1,1],[-1,13],[1,2],[2,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-2,3]],[[6752,6565],[0,4]],[[6752,6569],[0,1],[0,1],[1,0],[6,0],[7,7],[5,1]],[[6771,6579],[4,4],[3,3]],[[6778,6586],[0,2],[1,1]],[[6779,6589],[2,3]],[[6781,6592],[3,0]],[[6784,6592],[1,1],[0,2],[1,1],[0,1],[3,1],[0,1],[1,1],[1,2],[2,7],[1,2],[0,3],[0,4],[-1,5],[0,1],[1,2],[0,2],[0,3],[5,17],[-1,11],[9,11],[11,0],[1,0],[1,1],[1,4],[1,2],[0,1],[0,1],[0,2],[0,3],[1,6],[1,1],[1,0],[1,0]],[[6826,6691],[1,2]],[[6827,6693],[1,-2],[1,-2]],[[6829,6689],[6,-5],[1,-3],[1,-1],[4,-3],[1,-1],[1,2],[3,-2],[0,1],[1,1],[0,1]],[[6847,6679],[1,0],[1,0],[3,-2],[1,2],[8,1],[1,-2],[1,-1],[1,-4],[3,-6],[4,2],[1,0],[0,1],[2,3],[2,-4]],[[6876,6669],[2,2]],[[6878,6671],[4,-2]],[[6882,6669],[0,-9],[3,-3],[3,-9]],[[6888,6648],[5,6],[1,0],[1,-1],[1,0],[1,8],[9,7],[1,5],[1,-1],[1,1]],[[6909,6673],[2,-2]],[[6911,6671],[0,4]],[[6911,6675],[1,1],[1,-3]],[[6913,6673],[0,0]],[[6913,6673],[1,0]],[[6914,6673],[0,1],[-1,1],[0,1],[0,1],[2,-1],[1,0],[0,-1],[1,-2],[0,-2],[2,-6],[4,-5]],[[6923,6660],[1,1]],[[6924,6661],[1,0],[2,5],[1,3],[0,1],[-1,0],[1,2],[-2,8],[0,4]],[[6926,6684],[1,1],[0,1]],[[6927,6686],[0,1]],[[6927,6687],[1,0],[0,1]],[[6928,6688],[2,3],[1,4]],[[6931,6695],[3,-1],[3,2]],[[6937,6696],[1,-1]],[[6938,6695],[1,0]],[[6939,6695],[0,1],[1,0],[1,1],[3,-5],[4,0],[2,5],[1,1],[0,1],[0,1],[1,3],[-2,9],[0,1],[-1,0],[0,2],[-1,2],[0,2],[1,2]],[[6949,6721],[0,-1],[1,0]],[[6950,6720],[1,3],[2,2],[2,6],[2,2],[0,1],[3,15],[3,2]],[[6963,6751],[-1,2]],[[6962,6753],[0,1],[1,0]],[[6963,6754],[1,1],[1,1]],[[6965,6756],[3,1],[1,-1],[1,0],[1,3],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,0]],[[5665,3218],[0,-4],[1,-4],[0,-21],[2,-9],[0,-1],[0,-1],[-2,-2]],[[5666,3176],[-1,-12]],[[5665,3164],[0,-1],[0,-2],[1,-4],[0,-6],[0,-2],[-1,-4]],[[5665,3145],[0,-19]],[[5665,3126],[0,-3],[2,-6]],[[5667,3117],[0,-8]],[[5667,3109],[0,-1],[0,-1]],[[5667,3107],[-1,-4],[-2,-4]],[[5664,3099],[0,-2],[-1,-11],[0,-3],[-1,-3],[1,-2],[0,-2],[2,-4],[0,-2],[1,-2],[0,-3]],[[5666,3065],[-21,0],[-35,0]],[[5610,3065],[0,-22],[0,-10],[0,-11],[0,-22],[0,-11],[0,-11],[0,-10],[0,-54]],[[5610,2914],[0,-11],[0,-11]],[[5610,2892],[0,-17]],[[5610,2875],[0,-7],[0,-8],[0,-10]],[[5610,2850],[0,-10]],[[5610,2840],[0,-2],[3,-21],[2,-10],[2,-5],[2,1],[0,-1],[1,-1],[2,-5],[2,-8],[0,-2],[1,-1],[0,-1],[4,-6],[0,-1],[1,-3],[1,-2],[0,-2],[1,-3],[3,-7],[2,-2],[1,0],[0,-1],[1,-3],[1,-5],[6,-9],[1,-1],[1,-1],[0,-2],[1,-1]],[[5649,2735],[0,-1],[0,-2]],[[5649,2732],[-14,-7],[-5,-2],[-6,-3],[-7,-4],[-14,-6],[-7,-3],[-2,-1],[-1,-1],[-4,6],[-1,0],[-1,0],[-1,-1],[-1,1],[-2,-2],[-3,-2],[-3,-3],[-1,3],[-1,-1],[-1,1],[0,1],[-3,-1],[-1,1],[0,1],[-1,1],[-2,4],[-3,3],[-8,-3],[-2,2],[-5,0],[0,-1],[0,-1],[-3,4],[-7,-2],[-7,5],[-2,-2],[-2,0],[-4,2],[-2,3],[-1,0],[-8,21],[0,3],[-1,1],[0,1],[-9,0],[-4,0],[-3,0],[-7,0],[-36,0],[-35,0],[-24,0],[-3,-2],[-4,1],[-2,5],[-5,7]],[[5380,2761],[-5,8]],[[5375,2769],[0,2],[-1,5]],[[5374,2776],[-2,3],[-1,1],[0,1],[-1,-1],[-1,0],[-1,-1],[-3,3],[0,-1],[-1,0],[-3,-1],[-5,-7],[-8,-12],[-8,1],[-5,6],[-4,-3],[-1,-2],[-2,-3],[0,-1],[-1,0],[0,1]],[[5327,2760],[-1,0],[0,2],[1,30],[1,2],[0,21],[-1,28],[0,5],[-2,9],[1,7],[2,1],[5,12],[1,9],[0,19],[2,4],[3,25],[1,5],[1,18],[1,5],[0,25],[2,15],[3,2],[0,29],[3,7],[1,7],[3,4],[5,15],[0,12],[7,16],[5,0],[2,6],[2,10],[3,9],[4,24],[1,10],[-1,13],[1,18],[1,16],[0,15],[-3,9],[0,10],[-6,19],[0,8],[-6,21],[1,7],[-4,12],[1,7],[-2,15],[-5,22],[6,20],[5,5],[1,8],[-2,12],[1,11],[-3,10],[-4,23],[-5,30],[-3,13],[-1,22],[-5,16],[-9,42],[6,4],[4,4],[2,-1],[6,5],[1,5],[6,4]],[[5366,3578],[4,-3],[1,3],[7,-1],[9,2],[2,-3],[15,-2],[4,2],[25,1],[20,1],[8,-5],[0,-10],[3,-9],[0,-27],[3,-19],[3,-4],[1,-9],[-1,-6],[2,-15],[2,-3],[6,-26],[3,-10],[1,-5],[3,-7],[0,-5],[7,0],[3,2],[2,-4],[3,0],[2,8],[5,-1],[5,1],[0,5],[6,0],[1,-5],[16,0],[-1,9],[3,21],[2,7],[-1,12],[2,22],[21,0],[1,7],[8,0],[-2,-17],[-1,-10],[36,0],[1,-6],[0,-15],[-2,-16],[0,-15],[2,-9],[3,-20],[-2,-26],[0,-5],[-1,-31],[-1,-8],[1,-16],[5,-14],[4,-9],[1,-14],[3,-17],[-1,-10],[2,-17],[-5,-8],[3,-27],[6,8],[1,6],[6,-4],[3,3],[5,-4],[5,2],[5,7],[3,1],[9,-4],[4,11]],[[5363,3665],[-1,-2],[-1,-1],[-5,-3],[-4,-14],[-3,-6],[-4,-4],[3,-8],[-1,-40],[-5,0],[-3,-3]],[[5339,3584],[-2,11],[2,10],[-3,21],[-3,10],[3,-2],[0,5],[-2,-2],[0,1],[0,-1],[-1,1]],[[5333,3638],[0,1],[3,6],[1,3],[1,8],[1,-3],[2,2],[1,0],[0,1],[1,6]],[[5343,3662],[0,1],[0,3]],[[5343,3666],[1,1],[1,0],[2,2],[3,1],[1,6],[1,1],[1,1],[1,5],[1,-2],[2,1],[1,-6],[3,-9],[2,-2]],[[3249,5305],[0,4],[1,0],[-1,-4]],[[5557,7051],[2,-3],[3,-14],[2,0],[5,-7],[3,-19],[-1,-6]],[[5571,7002],[-2,-9],[1,-11],[-3,-3],[3,-10],[-2,-6],[3,-16],[2,-3],[1,-9],[7,-2],[1,-4]],[[5582,6929],[0,-8],[1,-3],[1,-1],[0,-2],[0,-1],[0,-1],[-1,-3],[0,-2],[-1,-2],[0,-1],[-2,-4],[-1,1],[-1,0],[0,-1],[-3,-12],[-2,-14],[-1,-1],[-1,-1],[-4,0],[-3,-11]],[[5564,6862],[-1,-13]],[[5563,6849],[0,-2],[-1,-1],[0,-1]],[[5562,6845],[-1,-1]],[[5561,6844],[0,0]],[[5561,6844],[0,-2]],[[5561,6842],[-1,1],[-5,5],[0,9],[-3,5],[-1,10],[-11,11],[1,18],[-5,13],[1,10],[5,12],[-2,4],[2,18],[-3,9],[4,15],[0,17],[-6,2]],[[5537,7001],[1,17],[-3,7],[9,28],[6,-8],[7,6]],[[5553,8330],[10,-7],[-8,-13],[-7,0],[-2,12],[5,-1],[2,9]],[[5047,7048],[-2,-3],[-1,-1],[-2,0],[0,-1],[-1,-1],[-1,1]],[[5040,7043],[-1,1],[0,2]],[[5039,7046],[0,1],[1,1],[0,1],[-1,1]],[[5039,7050],[0,0]],[[5039,7050],[0,2]],[[5039,7052],[0,1],[0,1]],[[5039,7054],[1,1],[0,3],[7,-3]],[[5047,7055],[0,-1],[1,-1]],[[5048,7053],[-1,-2]],[[5047,7051],[0,-2],[0,-1]],[[6563,5837],[2,-8],[1,-14],[-1,-19],[1,-6]],[[6566,5790],[-8,-17],[-2,1],[-1,15],[-2,1],[-4,-9],[1,-15],[-2,-6],[2,-16],[-2,-6],[5,-2],[2,-10],[-5,-5],[-5,1],[-4,-4],[1,-14],[-3,-16],[-1,-6],[-2,-14],[-3,-11],[-1,-9],[0,-21]],[[6532,5627],[-2,-6],[-27,9],[-19,6],[-24,7],[-1,2],[-9,27],[-17,54],[-1,12]],[[6432,5738],[6,-5],[1,-13],[11,-2],[3,3],[8,13],[1,-4],[11,-1],[3,3],[3,-5],[5,2],[4,-6],[7,1],[8,6],[5,9],[4,4],[1,7],[2,3],[4,25],[10,15],[8,24],[3,4],[2,10],[3,4],[6,10],[5,12],[1,11]],[[6557,5868],[3,-3],[-1,-25],[4,-3]],[[3212,72],[1,-5],[-8,-8],[-4,4],[11,9]],[[3093,67],[0,77],[0,77]],[[3093,221],[10,-25],[-7,-10],[-1,-8],[3,-4],[10,-4],[3,-18],[12,-17],[0,-5],[7,-11],[15,-14],[8,-15],[18,-13],[4,-1],[11,2],[4,-1],[-5,-19],[-5,-2],[-13,2],[0,-5],[-9,-1],[-7,-4],[-7,8],[-6,2],[-29,4],[-13,0],[-3,5]],[[3277,1104],[-3,11],[3,0],[0,-11]],[[3206,2404],[1,-6],[-1,-3]],[[3206,2395],[2,-11],[2,-4],[0,-1],[0,-1]],[[3210,2378],[-1,-3],[0,-2]],[[3209,2373],[1,-1],[1,-4],[1,-1],[1,-9],[1,5],[0,2],[0,5],[1,10],[0,2]],[[3215,2382],[2,6]],[[3217,2388],[3,13],[0,1],[0,1],[3,16],[2,0],[2,0],[1,-1],[1,-2],[3,3],[23,0],[0,-3]],[[3255,2416],[0,-2],[0,-1]],[[3255,2413],[0,-2],[1,-2],[1,-2],[2,-2],[0,-1],[0,-1],[0,-1]],[[3259,2402],[1,0]],[[3260,2402],[0,-1]],[[3260,2401],[0,-1],[0,-1],[0,-1],[0,-1],[2,-1],[2,-4],[1,-1],[0,-1],[0,-1],[2,-3],[2,-1],[1,-2],[0,-1],[0,1],[0,-1],[1,-3]],[[3271,2379],[-1,-3],[2,-3]],[[3272,2373],[1,-5],[1,-4],[0,-2]],[[3274,2362],[1,-2]],[[3275,2360],[1,-4],[1,-6],[1,-2],[1,-3],[3,-4],[3,-10],[3,-4],[2,-4],[1,0]],[[3291,2323],[1,-5]],[[3292,2318],[5,-5],[0,-2],[1,-1],[2,-2]],[[3300,2308],[1,-3],[1,-1]],[[3302,2304],[0,-1],[0,-2],[0,-1]],[[3302,2300],[1,-3]],[[3303,2297],[0,-1],[1,-3],[0,-1],[1,-2],[5,-5],[7,-3],[7,-8],[5,0],[1,0],[1,1],[1,0],[16,-25],[0,-2],[1,0],[1,-3],[1,-4],[10,-11],[5,-10],[9,-5],[5,-11],[2,4],[3,-5],[2,-2],[1,0],[1,-3],[3,0],[1,-1],[1,-3],[1,-3],[1,-5],[2,-3]],[[3398,2183],[1,-5],[0,-1]],[[3399,2177],[1,-3],[1,-2],[0,-1],[-1,-6],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,0],[-1,-2],[0,-1],[-1,0],[-1,-1],[0,-2],[0,-1]],[[3395,2153],[1,-1]],[[3396,2152],[0,-1],[-1,-1],[-1,-1],[0,-1]],[[3394,2148],[0,-4],[-1,-2],[-1,-1]],[[3392,2141],[1,-1]],[[3393,2140],[0,-1],[-1,-2]],[[3392,2137],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-3,-6],[-3,-3],[-2,-10],[0,-6],[-1,-4],[-1,-25],[-6,-12]],[[3376,2066],[0,-4]],[[3376,2062],[-1,-1],[0,-1],[-1,-4]],[[3374,2056],[-1,2],[0,-1],[0,-2],[0,-3],[-3,-3]],[[3370,2049],[2,-6]],[[3372,2043],[2,-2],[8,1],[6,0],[9,-5],[4,-6],[1,0],[1,0],[4,0],[1,-2],[3,-4],[8,5],[4,-6],[6,4],[1,-3]],[[3430,2025],[1,-4]],[[3431,2021],[3,-2],[2,14],[2,2],[1,2],[1,1],[1,1],[5,-2],[5,-8],[1,2],[1,2],[1,2],[1,1],[0,1],[1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,3]],[[3455,2047],[0,2],[1,1],[1,3],[2,1]],[[3459,2054],[0,1],[0,3],[1,1],[0,3],[4,3],[1,0],[1,-1],[2,0],[0,1],[1,1]],[[3469,2066],[-1,4]],[[3468,2070],[2,5],[1,0],[1,0],[1,1],[1,6],[0,2],[1,1],[3,1],[0,8],[2,7]],[[3480,2101],[1,6],[0,3]],[[3481,2110],[1,8]],[[3482,2118],[0,1],[-1,2],[0,1],[0,12]],[[3481,2134],[2,2],[0,1],[0,4],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[-1,6]],[[3482,2155],[0,2],[1,0],[0,1]],[[3483,2158],[0,1],[0,3]],[[3483,2162],[0,1]],[[3483,2163],[1,0],[3,-5],[4,6],[5,0],[6,-5],[2,-13],[1,-12],[1,-4],[3,-13],[-2,-12],[0,-23],[1,-12],[-3,-20],[-2,1],[-6,-11],[-3,2],[-2,-12],[-5,1],[-4,-4],[-3,-6],[-3,0],[-2,-5],[-1,-8],[-3,-8],[-5,-1],[-3,-5],[-3,-11],[-5,-3],[-5,-8],[3,-7],[0,-4],[-5,3],[-1,-8],[-3,-3],[-1,-6],[-4,-12],[-3,-2],[0,-7],[-3,-6],[0,-7],[-6,-8],[-2,-11],[-8,-20],[-3,-11],[-6,-7],[-1,-9],[-5,-12],[-3,-3]],[[3399,1832],[-1,-10]],[[3398,1822],[-5,-12]],[[3393,1810],[-1,-4],[0,-3]],[[3392,1803],[1,-4],[0,-3],[1,-2],[0,-4],[0,-2],[0,-1],[0,-3],[0,-1],[0,-2],[0,-1],[-2,-1],[-1,0],[0,-2],[0,-1],[1,-3],[1,-4],[-1,-2],[-1,-3],[0,-3],[0,-3],[0,-2]],[[3391,1756],[-2,-11]],[[3389,1745],[-1,-1],[-1,-1],[0,-1],[-1,-3],[1,-1],[1,-1],[0,-1],[1,-2]],[[3389,1734],[-2,-19]],[[3387,1715],[-3,-2],[-1,-2],[0,-2],[0,-1],[1,-2]],[[3384,1706],[0,-3],[0,-3],[0,-3]],[[3384,1697],[-1,-6]],[[3383,1691],[3,-7]],[[3386,1684],[0,-2],[0,-3],[-2,-5],[-1,-3],[0,-1]],[[3383,1670],[-1,-3],[2,-25],[1,-5],[-1,-11],[-2,-3],[-4,2],[-1,-16],[-3,-11],[-1,-17],[5,-25],[0,-11],[-2,-6],[-2,-12],[1,-6],[5,-10],[4,-7],[8,-5],[3,-6],[7,-7],[7,-17],[4,-12],[-1,-5],[-5,-18],[-2,-9],[1,-9],[3,-14],[4,-7],[5,-6],[5,1],[2,-4],[1,-32],[-1,-6],[-6,-17],[-4,-18],[-7,-16],[-6,-17],[-1,-15],[-1,-5],[-16,-20],[-11,-9],[-5,-2],[-9,-8],[-16,-6],[-7,-4],[-27,-10],[-8,-2],[-8,2],[-2,-2],[-14,5],[-4,9],[-6,1],[3,-11],[-3,-11],[2,-12],[4,-1],[-1,-8],[4,-4],[-2,-20],[-1,-9],[-4,-1],[-2,-13],[0,-11],[-3,-6],[2,-12],[2,-3],[3,-10],[-1,-8],[-2,-9],[-11,-12],[-10,-8],[-19,0],[-8,11],[-3,-1],[-7,7],[-10,8],[0,6],[-4,1],[-5,-9],[-2,-13],[3,-31],[2,-8],[-1,-8],[1,-9],[-2,-14],[2,-8],[4,-7],[9,-3],[-1,-14],[12,0],[2,12],[-3,4],[10,10],[3,-4],[3,-15],[1,-18],[-2,-12],[-3,-5],[-10,-4],[-4,9],[1,7],[-3,8],[-8,2],[-6,-8],[-3,-2],[-2,-9],[14,-11],[5,-5],[-4,-4],[-8,-6],[-8,-11],[0,-6],[-6,-15],[-2,-6],[0,-11],[3,-15],[-2,-12],[2,-12],[-2,-8],[-11,-16],[-1,-12],[4,-2],[-1,-9],[-2,-3],[-4,5],[-10,0],[-9,-8],[0,-8],[-10,-1],[-5,-8],[-8,-19],[0,-12],[-6,-11],[-2,-17],[3,-17],[3,-12],[8,-10],[9,-21],[5,-3],[12,-3],[6,2],[6,-10],[1,-10],[0,-12],[-3,-17],[-2,-2],[2,-12],[-4,-8],[-9,-14],[-5,-11],[-5,-2],[-13,-18],[-2,-10],[-6,-6],[-4,-8],[-4,-21],[1,-5],[-2,-29],[-3,-13],[-6,-9],[-7,-2],[-3,-6],[-13,-10],[-5,-16],[-2,-13],[-1,-17],[3,-25],[3,-13],[-4,-7],[5,-3],[7,-26],[9,-21],[-3,-3]],[[3098,242],[0,3],[-10,4],[-11,8],[-7,0],[-13,9],[-21,1],[-34,0],[-1,9],[-3,7],[-6,5],[-2,9],[1,20],[-2,10],[3,9],[0,14],[-2,6],[1,8],[-5,3],[-3,-5],[-5,4],[-9,-11],[-2,1],[-2,14],[-2,21],[-6,9],[2,9],[-3,6],[3,12],[-3,17],[3,16],[9,0],[-1,8],[5,15],[7,5],[4,9],[1,24],[4,4],[3,8],[-1,16],[-5,11],[5,22],[1,13],[4,1],[3,7],[1,8],[4,2],[-3,9],[2,18],[6,8],[0,12],[-1,9],[-1,11],[-4,6],[4,3],[4,10],[-3,8],[-2,9],[1,12],[7,4],[0,8],[6,7],[-8,24],[-5,3],[-3,-1],[-6,4],[1,9],[6,-2],[10,3],[4,-4],[6,20],[-2,7],[-7,2],[-10,0],[0,13],[-1,8],[2,3],[3,10],[-4,12],[3,6],[-1,6],[-4,4],[-2,6],[1,9],[5,2],[0,8],[-8,5],[-3,9],[1,9],[-1,20],[3,7],[-3,16],[3,9],[2,-2],[6,6],[-2,16],[-3,17],[2,4],[-2,15],[2,30],[-3,16],[2,5],[2,16],[4,6],[-4,10],[0,9],[3,-1],[2,12],[-2,14],[0,8],[5,0],[-1,6],[3,7],[1,15],[0,21],[5,9],[10,9],[1,11],[-4,8],[-1,11],[0,15],[-5,25],[2,19],[-2,11],[1,6],[0,23],[0,14],[3,2],[0,13],[4,6],[5,-1],[1,11],[3,8],[4,0],[2,7],[-1,13],[1,4],[-1,11],[0,11],[-4,21],[5,4],[0,15],[3,11],[1,15],[5,14],[0,8],[6,3],[-1,7],[0,11],[-1,2],[0,22],[3,20],[-3,10],[-3,-4],[-3,8],[0,10],[3,12],[-4,8],[-1,10],[0,11],[-1,10],[-3,4],[0,10],[3,12],[-2,6],[-4,1],[-4,23],[0,18],[3,15],[4,4],[0,17],[3,20],[9,15],[1,13],[-3,5],[1,9],[0,16],[-3,25],[0,6],[4,10],[3,3],[0,10],[2,10],[-1,13],[2,5],[1,12],[6,13],[4,16],[3,5],[2,14],[2,13],[1,7],[2,4],[1,13],[3,7],[6,-3],[1,6],[6,2],[0,13],[-7,23],[0,17],[4,9],[0,7],[-2,24],[-2,6],[-1,17],[2,18],[5,6],[-3,5],[-1,9],[-2,9],[2,12],[3,8],[2,1],[2,7],[24,26],[1,2],[9,72],[-5,12]],[[3133,2360],[2,6],[0,2],[3,4],[0,1],[0,2],[0,7],[6,6]],[[3144,2388],[1,7],[0,5]],[[3145,2400],[1,2],[0,1],[1,2],[2,0],[3,3],[4,2],[1,1],[0,3]],[[3157,2414],[1,2]],[[3158,2416],[0,6],[2,12],[0,1],[4,-4],[1,-6],[3,-2],[4,-10],[1,-1],[0,-1],[4,1],[1,1]],[[3178,2413],[16,-1]],[[3194,2412],[8,-6],[4,-2]],[[6249,6961],[4,-15],[3,-5],[5,-4],[3,-6],[1,-7],[-5,-7],[4,-17],[13,-16],[-3,-15],[-3,-7],[2,-8],[4,-3],[6,-13],[4,3],[5,-6],[-4,-12],[6,-11],[-3,-7],[0,-17]],[[6291,6788],[-3,3],[-7,-4]],[[6281,6787],[-5,20],[0,9],[-5,6],[0,14],[-2,1],[-7,-6],[-8,6],[-1,8],[-3,7],[-7,-5]],[[6243,6847],[-8,19],[-6,5],[-6,-2],[-11,7],[2,4],[-4,13],[4,24],[0,7],[-3,13],[-4,4],[-1,6]],[[6206,6947],[8,0],[4,4],[7,2],[2,3],[10,-3],[2,3],[5,-1],[0,4],[5,2]],[[261,2975],[-4,-8],[-2,3],[6,5]],[[6915,496],[6,-3],[-3,-9],[4,-11],[6,8],[6,-4],[-5,-6],[1,-6],[6,-5],[4,7],[11,9],[7,-1],[2,-9],[-3,-10],[-13,0],[-5,-7],[0,-5],[7,-3],[2,5],[4,-2],[-5,-13],[-18,6],[-3,4],[-7,-2],[-1,-7],[-7,-2],[-1,9],[3,12],[-3,13],[2,7],[-3,7],[6,18]],[[3284,5227],[1,-9],[-3,0],[-2,7],[4,2]],[[9093,885],[-2,-8],[-4,-1],[0,10],[4,7],[2,-8]],[[9020,1076],[6,-2],[21,-13],[2,-6],[12,-10],[5,-1],[17,14],[4,-3],[3,5],[5,-5],[4,12],[6,-3],[3,2],[2,9],[6,-8],[3,-11],[-1,-11],[1,-12],[-1,-9],[1,-34],[0,-15],[-5,9],[-2,-14],[-2,-9],[0,-14],[-2,-5],[1,-9],[-2,-10],[3,-1],[-1,-10],[1,-12],[-3,2],[-3,-7],[-4,12],[7,3],[-1,10],[-4,0],[-3,5],[-3,-6],[-4,-1],[-2,-14],[0,-10],[-5,-3],[-4,-14],[-1,-8],[-6,-2],[-5,7],[-6,0],[-7,4],[-1,11],[-4,5],[-8,21],[-2,0],[-4,23],[-3,4],[-2,24],[3,5],[-2,16],[-8,18],[-5,27],[-2,8],[0,10],[-2,6],[4,20]],[[9121,1102],[-3,-5],[-5,-2],[-1,7],[8,3],[1,-3]],[[9109,1148],[6,-16],[4,-2],[0,-15],[0,-4],[-7,-2],[-4,20],[-5,7],[6,12]],[[9001,1124],[-4,-5],[-2,13],[0,17],[6,5],[2,-21],[-2,-9]],[[8822,1445],[-1,-11],[3,-2],[6,2],[4,-2],[2,-8],[-2,-3],[-3,3],[-5,0],[-4,-4],[0,-5],[-5,-6],[-2,5],[-4,2],[-2,-4],[-4,1],[-8,-3],[-2,7],[-3,4],[2,12],[13,5],[7,7],[3,-2],[5,2]],[[8137,2169],[2,-10],[0,-6],[3,-13],[-3,-3],[-2,10],[-1,12],[1,10]],[[9257,2223],[0,-14],[2,-6],[-5,-32],[-3,-15],[-2,-4],[-1,12],[3,16],[-1,11],[5,11],[1,8],[-2,7],[3,6]],[[9195,2315],[4,-4],[3,-17],[-3,-2],[-6,21],[2,2]],[[8205,2503],[-3,2],[3,8],[2,-4],[-2,-6]],[[9061,2690],[3,-13],[-1,-6],[-3,8],[1,11]],[[8880,2818],[-3,-8],[-3,3],[-1,-11],[-4,-4],[-5,2],[2,12],[2,4],[9,5],[3,-3]],[[8805,2879],[2,-4],[-2,-10],[-2,9],[2,5]],[[8477,2959],[0,-8],[-3,-1],[1,9],[2,0]],[[8797,3016],[-1,-4],[3,-13],[-2,-10],[2,-7],[5,-5],[-2,-5],[-5,3],[-2,-2],[-5,5],[-2,16],[1,8],[4,5],[0,9],[4,0]],[[8621,3175],[2,-9],[0,-7],[3,-1],[2,-7],[-4,-3],[-5,5],[-7,-3],[0,9],[4,3],[-2,11],[4,11],[2,0],[1,-9]],[[8624,3189],[2,0],[3,-11],[6,8],[3,-3],[8,12],[4,-4],[1,-16],[-5,-18],[-5,-8],[-4,-7],[-7,9],[-6,11],[-2,12],[-2,18],[4,-3]],[[8682,3206],[1,-15],[-2,-5],[-1,11],[2,9]],[[8959,3229],[0,-9],[2,-6],[3,-4],[2,-8],[0,-13],[2,-9],[-2,-6],[1,-9],[1,-17],[3,-6],[4,1],[2,-5],[-3,-12],[-1,-13],[5,-4],[2,-12],[3,-4],[-2,-14],[4,-4],[1,-34],[2,-7],[-2,-24],[2,-14],[2,-4],[1,-14],[2,-14],[5,-7],[6,10],[0,7],[4,-3],[5,10],[2,-7],[0,-7],[3,-14],[6,-3],[1,-9],[6,-8],[4,-8],[-2,-15],[2,-9],[-1,-7],[0,-11],[3,-15],[0,-11],[3,-12],[-1,-10],[1,-5],[-2,-12],[2,-3],[3,-13],[2,-4],[3,-12],[5,-3],[-2,-8],[3,-14],[3,-11],[0,-9],[2,-8],[-1,-6],[-1,-16],[-2,-16],[0,-8],[5,-8],[1,-8],[3,-2],[-2,-25],[5,-14],[6,-9],[2,1],[5,-9],[4,-1],[3,-6],[7,-1],[4,-8],[1,-14],[2,-8],[5,0],[3,-6],[3,3],[5,-7],[1,-8],[5,-2],[3,4],[1,-12],[5,-5],[2,-9],[-4,-9],[1,-13],[8,-18],[3,-2],[2,-6],[-1,-7],[3,-10],[2,-12],[3,-16],[-1,-6],[3,-22],[5,-20],[3,-1],[1,-5],[4,-6],[-2,18],[1,10],[2,1],[5,-18],[8,-10],[2,15],[1,-1],[4,-10],[0,-9],[2,-7],[-2,-19],[0,-14],[3,-26],[4,-4],[3,-7],[2,-9],[2,-2],[4,-9],[5,-7],[5,2],[1,-8],[3,-5],[4,-22],[2,-8],[5,-7],[3,-2],[2,-7],[0,-11],[5,-17],[7,-4],[0,-13],[-1,-15],[6,-18],[1,-9],[-2,-16],[1,-12],[0,-14],[1,-3],[0,-17],[2,-9],[-5,-9],[2,-5],[3,-16],[3,-8],[0,-5],[3,-12],[1,-19],[3,-14],[0,-13],[2,-15],[-1,-15],[-4,-12],[-3,-20],[0,-5],[-1,-22],[-3,-31],[-5,-25],[-1,-18],[0,-8],[3,-6],[-1,-11],[-2,-6],[-2,-23],[-2,-6],[-4,-23],[-3,-4],[-3,-16],[1,-19],[-8,-13],[-1,-11],[-8,-4],[-2,-3],[-5,-14],[-1,-10],[-3,-12],[-3,-12],[-2,-1],[-1,-25],[-4,-16],[-4,-6],[-3,-9],[0,-12],[-2,-21],[-2,-5],[1,-7],[-3,-5],[0,-13],[-4,-1],[-4,-23],[-3,-12],[-2,-3],[0,-7],[-2,-8],[-1,-14],[1,-12],[-2,-5],[0,-13],[-5,-26],[3,-21],[-2,-4],[1,-16],[-5,-4],[-3,-10],[-6,-6],[-15,-1],[-6,-2],[-11,0],[-11,-7],[-9,-12],[-6,-10],[-14,-30],[-13,-7],[-4,3],[1,-15],[3,4],[1,-7],[0,-10],[-5,7],[-2,9],[-3,3],[-5,-5],[-3,18],[-6,-1],[-4,8],[0,7],[3,5],[-2,10],[-5,1],[-7,-19],[-4,1],[-3,7],[5,3],[4,13],[0,8],[-4,10],[-5,-3],[-7,-10],[5,-6],[-2,-8],[-7,-1],[-9,-14],[-6,-14],[-4,-3],[-5,-9],[-5,7],[-3,-1],[-5,10],[-7,4],[-4,7],[-7,8],[-5,-3],[-8,9],[-8,0],[-1,-8],[-5,1],[-2,6],[-6,12],[-6,5],[-6,-1],[-3,2],[-7,12],[-3,15],[-4,11],[-3,2],[-7,22],[1,4],[-3,12],[3,4],[2,10],[0,10],[-11,52],[-12,21],[3,8],[7,2],[-5,11],[-3,-5],[-4,-2],[-2,-11],[-4,2],[-6,-8],[-10,-1],[-1,8],[4,6],[4,8],[3,21],[-1,14],[1,9],[-2,5],[-5,17],[-1,8],[-4,14],[-2,-13],[-2,-8],[-1,-15],[-5,-31],[-2,-9],[-3,4],[-4,1],[-5,-4],[-2,-5],[-3,1],[-3,-4],[-3,3],[4,11],[-1,4],[3,10],[11,-2],[2,22],[-1,15],[0,11],[-1,7],[3,6],[1,14],[5,13],[5,6],[0,6],[-4,19],[1,5],[6,5],[-3,9],[-1,15],[-13,-25],[-2,-18],[-4,-19],[-6,-5],[-1,3],[-5,-9],[-5,-7],[-7,-12],[-4,-17],[-3,-5],[0,-5],[-5,-6],[-2,-12],[4,-20],[-7,8],[-4,-1],[-6,17],[0,12],[-4,34],[-2,8],[-9,18],[0,7],[-1,14],[-3,13],[-3,-3],[-4,4],[-5,-1],[-6,32],[6,-1],[0,11],[-3,9],[-9,-5],[3,10],[-4,10],[-6,10],[-1,-5],[-4,-2],[-7,1],[-10,17],[-6,1],[-3,-6],[-7,-1],[-4,9],[-8,13],[-7,9],[-10,9],[-10,-9],[-18,2],[-33,-8],[-9,-11],[-18,-17],[-7,-3],[-6,-6],[-7,-5],[-7,-2],[-10,-1],[-9,3],[-5,3],[-8,-7],[-10,-16],[-5,-3],[-10,-10],[-2,-7],[-6,-5],[-9,-4],[-7,-12],[-3,-16],[-2,-16],[-5,-10],[-1,-6],[-4,-6],[-7,-2],[-2,-6],[-3,-1],[-2,9],[-8,0],[-6,-2],[0,-4],[-7,3],[-4,-7],[-4,14],[-6,-5],[-8,5],[-5,1],[-5,-4],[-2,2],[-9,-4],[-6,0],[-4,-6],[-11,4],[-6,-5],[-6,-11],[-6,-21],[-7,-3],[-5,2],[-6,-8],[0,-6],[-7,-5],[-6,-14],[-4,-6],[-12,-4],[-4,-3],[-5,5],[-9,0],[-4,-2],[-12,3],[-6,9],[-6,4],[-8,20],[-3,7],[-8,10],[-9,3],[-1,13],[-1,29],[3,10],[2,-5],[4,-3],[5,4],[6,22],[0,19],[-2,26],[5,5],[-2,21],[2,8],[-1,19],[-1,20],[-7,25],[-4,22],[-3,12],[-3,14],[-3,30],[-1,13],[1,9],[-1,18],[1,13],[-4,27],[-5,13],[-2,9],[0,10],[-1,9],[-7,21],[-3,9],[-2,21],[1,9],[-4,27],[-7,28],[-4,18],[-9,20],[-1,11],[6,3],[4,-23],[2,-7],[5,5],[1,15],[-3,7],[-3,1],[-3,10],[0,10],[-4,16],[3,8],[6,-21],[-1,-17],[2,-5],[4,1],[1,-10],[4,-8],[3,10],[-1,8],[2,15],[0,11],[-3,3],[-6,25],[-4,20],[-2,3],[-3,17],[0,12],[-5,14],[-1,8],[0,12],[1,6],[0,8],[1,10],[4,20],[4,8],[1,14],[-1,12],[2,8],[-2,19],[-3,4],[0,11],[4,18],[3,20],[3,13],[4,5],[-2,-27],[3,-10],[-2,-12],[2,-3],[6,12],[3,20],[4,17],[8,10],[5,2],[9,11],[4,12],[6,8],[4,13],[6,6],[3,8],[5,3],[8,15],[4,-7],[5,6],[8,-7],[9,4],[4,4],[3,8],[6,10],[6,0],[7,4],[2,-1],[4,4],[7,20],[4,2],[9,-8],[7,7],[12,5],[12,10],[8,9],[7,12],[3,8],[6,21],[3,18],[0,7],[4,4],[1,15],[3,-1],[8,19],[3,3],[1,11],[-5,4],[1,17],[-2,11],[1,21],[3,13],[4,8],[4,1],[-1,6],[1,6],[4,0],[1,13],[4,7],[1,7],[2,3],[-1,-15],[5,-16],[0,-8],[3,-7],[4,-23],[3,-7],[2,5],[2,13],[-2,6],[1,8],[6,-10],[-2,18],[-2,10],[-3,9],[2,9],[0,9],[-3,7],[1,8],[5,-1],[-1,-7],[3,-8],[4,6],[4,1],[3,-9],[3,0],[2,4],[5,-4],[0,5],[-5,0],[0,12],[5,5],[-2,9],[-3,7],[-1,13],[1,9],[3,7],[3,-3],[2,10],[3,6],[3,-5],[4,-10],[1,15],[-5,-4],[-2,14],[8,7],[2,-1],[3,-6],[2,3],[-1,8],[-4,4],[1,6],[-3,9],[10,17],[3,-2],[2,11],[2,-6],[5,-5],[3,1],[-1,9],[2,2],[0,9],[2,2],[-2,13],[2,6],[1,-16],[2,-5],[4,16],[3,1],[2,-15],[4,6],[0,8],[3,4],[-2,11],[6,5],[3,-7],[1,-9],[6,2],[3,-2],[2,-8],[4,-8],[4,-14],[3,-9],[8,-15],[-3,-30],[4,-10],[-1,15],[6,16],[3,5],[9,-6],[6,-3],[3,-6],[0,-7],[3,-3],[-1,19],[7,-7],[3,-13],[2,2],[-2,11],[1,7],[3,4],[-4,8],[0,8],[-7,11],[1,6],[3,13],[0,4],[6,5],[0,10],[3,8],[-1,7],[2,11],[3,-1],[6,7],[3,8],[-4,12],[0,15],[3,1],[3,6],[0,11],[6,9],[1,9],[8,-1],[0,9],[4,-2],[-1,14],[3,1],[3,-5],[3,2],[5,-7],[8,1],[3,4],[4,-6],[6,9],[5,-4],[0,6],[5,8],[1,12],[-2,6],[3,10],[-3,2],[-2,10],[-4,3],[-8,-6],[-6,16],[4,12],[2,-4],[2,-14],[1,-2],[1,15],[4,4],[3,-6],[5,-20],[3,1],[4,12],[3,-7],[3,-18],[4,-4],[2,3],[4,-7],[4,-3],[5,8],[3,-1],[-2,-9],[3,-4],[5,2],[2,-9],[2,3],[3,-5],[6,-1],[5,8],[2,-13],[3,-2],[3,-8],[5,4],[2,6],[6,3],[1,6],[5,4],[3,-3],[-6,-13],[3,-7],[4,8],[4,-11],[0,-11],[6,1],[3,13],[-1,4],[-4,1],[3,10],[4,8],[3,-4],[1,-13],[3,-7],[5,4],[2,-10],[-2,-5],[-4,-3],[-1,-14],[-6,-9],[0,-4],[5,-8],[-6,-18],[-3,3],[-4,-5],[-4,0],[-4,-6],[-1,-20],[2,-11],[2,-3],[0,-8],[-2,-4],[-1,-12],[-4,-10],[-6,-22],[0,-5],[-4,-5],[2,-17],[11,-16],[3,-6],[8,-12],[0,-9],[10,-15],[4,-10],[4,-3],[4,1],[6,-7],[3,-7],[10,-9],[4,-13],[9,-19],[8,-7],[5,1],[2,-5],[8,-5],[4,-8],[-1,-6],[2,-12],[2,-5],[4,-2],[6,-11],[8,-6],[2,-7],[7,1],[7,4],[9,14],[4,27],[-1,4],[7,22],[3,19],[1,16],[3,10],[-1,13],[1,18],[1,12],[5,24],[0,10],[-1,9],[-3,29],[2,17],[0,12],[-3,9],[0,12],[2,21],[4,16],[-3,21],[5,11],[1,17],[-4,10],[4,28],[4,11],[5,40],[1,30],[5,2],[3,13],[3,0]],[[8951,3229],[-3,-3],[-1,7],[2,4],[2,-8]],[[5470,7485],[-3,-17],[3,-6],[1,-8],[5,-11]],[[5476,7443],[-3,-13],[0,-9],[-7,-2],[-5,5],[2,-16],[-1,-5],[-6,-7],[-1,-12],[3,-4],[-3,-9],[-3,0],[-6,-10]],[[5446,7361],[-3,-9],[-9,-2],[-5,-7],[-2,2],[-9,0],[-6,-3],[-2,-7],[-8,-6],[-9,1],[-3,3],[-10,3]],[[5380,7336],[-6,3]],[[5374,7339],[-3,0],[-3,-1],[-1,0],[-5,3],[-6,1],[-2,2],[-2,1],[-1,0],[-7,3],[-1,2],[0,2],[-1,2],[-1,1],[-1,0]],[[5340,7355],[0,6],[-2,1]],[[5338,7362],[-1,3],[-1,2],[0,1],[0,1],[0,1],[-5,3],[-1,-1],[-1,-1]],[[5329,7371],[-3,-3]],[[5326,7368],[-1,0],[0,1],[-1,1],[-2,0],[-4,0],[-2,-2],[-1,1],[-1,0],[-2,0],[-3,-2],[-1,-3],[-3,-10],[-7,1],[0,3],[-2,2],[-1,1],[-3,-2],[-1,0]],[[5291,7359],[-1,2]],[[5290,7361],[-3,9],[-7,-11],[-7,7],[0,6],[-7,2]],[[5266,7374],[1,4],[-3,11]],[[5264,7389],[4,11],[0,3],[-2,2],[-1,2],[0,2]],[[5265,7409],[1,-1],[3,0]],[[5269,7408],[3,1]],[[5272,7409],[4,-1],[10,-16],[1,4],[1,1],[1,1],[1,2],[0,2]],[[5290,7402],[-1,4]],[[5289,7406],[0,3]],[[5289,7409],[3,-1],[1,1],[0,2],[1,0],[4,-3],[0,-1],[1,0],[2,1]],[[5301,7408],[0,-2]],[[5301,7406],[0,-1],[1,-1],[2,-3]],[[5304,7401],[0,-1]],[[5304,7400],[0,-1],[0,-1],[3,0],[5,1],[1,2],[0,1],[2,0]],[[5315,7402],[2,5]],[[5317,7407],[1,-1],[2,1],[1,4],[1,1],[0,1],[4,-1],[2,0],[0,1],[1,0],[2,1],[6,0],[1,5],[7,1],[2,-5],[4,4],[1,0],[1,-1],[1,-2],[1,-1],[0,-1],[-1,-2],[0,-2]],[[5354,7410],[5,-6]],[[5359,7404],[1,0],[1,0],[1,2],[0,1],[-1,0],[0,1],[0,1]],[[5361,7409],[1,2],[0,1]],[[5362,7412],[0,1],[1,2],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,2],[-1,-1],[-2,1],[0,2],[1,2],[1,5]],[[5360,7431],[0,2],[-1,4]],[[5359,7437],[-5,10],[-1,1],[0,1],[0,1],[0,1],[1,0]],[[5354,7451],[2,3]],[[5356,7454],[1,3],[4,4],[7,3],[1,1],[3,4],[3,15],[3,-1],[0,-1],[1,0],[0,-1],[1,-1],[3,6]],[[5383,7486],[0,2],[0,4]],[[5383,7492],[-1,1],[0,1],[1,3]],[[5383,7497],[5,-4],[2,-8],[7,-3],[4,6],[7,-4],[3,14],[3,-1],[2,17],[7,-1],[12,-9],[4,1],[6,-9],[9,-2],[2,5],[12,-5],[2,-9]],[[6281,6787],[-19,10],[-3,11],[-5,4],[-3,12],[-3,3],[-2,13],[-2,2]],[[6244,6842],[-1,5]],[[6289,7004],[3,-7],[6,3],[4,-9],[4,-11],[2,1],[3,-10],[1,-10],[3,-3],[11,-4],[3,1],[5,18],[4,2],[5,6],[6,19]],[[6349,7000],[2,-3],[11,-27],[2,-10],[2,-16],[5,-14],[4,-5],[0,-8],[2,-4],[7,-4],[6,1],[5,-6],[3,-7],[-3,-4],[-10,2],[-3,-7],[-6,-4],[-3,-10],[1,-7],[-3,-15],[1,-5],[-3,-6],[0,-11],[3,-6],[-5,-8],[-1,-18],[-4,11],[-2,0],[-3,-30],[0,-23]],[[6357,6756],[-7,-3],[-5,12],[-4,3],[-2,9],[-6,7],[1,9],[5,1],[2,6],[-4,9],[-1,9],[6,5],[-8,20],[-2,4],[-4,-2],[-8,-11],[-5,-5],[-2,-5],[-5,-6],[-3,-8],[-4,-2],[-3,-9],[-7,-11]],[[6249,6961],[7,11],[6,-1],[7,-7],[0,-5],[7,-7],[7,2],[8,-11],[3,5],[2,11],[-2,8],[-9,9],[-2,8],[0,10],[2,0],[4,10]],[[5848,3826],[-1,-3],[0,-2],[-1,-7],[0,-2],[-1,-1],[0,-2],[-1,-1],[0,-2],[1,0],[0,-5],[-1,-8],[9,-10],[3,-13],[0,-2],[-1,-1],[0,-2],[0,-2],[-1,-1]],[[5854,3762],[-1,-1]],[[5853,3761],[-2,-2],[-1,-8],[-3,-5],[-1,0],[-3,-13],[0,-2],[0,-4],[0,-1],[-1,1],[-1,-1],[-1,-5],[-1,-4],[0,-1],[-1,-5],[0,-4],[-1,-2]],[[5837,3705],[-4,-14]],[[5833,3691],[-6,-6]],[[5827,3685],[0,-3],[-1,-1]],[[5826,3681],[-1,-3]],[[5825,3678],[-2,1],[-7,0]],[[5816,3679],[-2,25],[-3,14],[0,22],[0,19],[1,20],[-5,9],[-1,7],[-1,1]],[[5805,3796],[0,1],[0,3],[0,3]],[[5805,3803],[1,7],[3,2],[4,-5],[1,-12],[10,1],[4,4],[2,8],[1,24],[6,-8],[1,6],[5,3],[5,-7]],[[5166,7639],[7,-11],[-1,-7],[4,-4],[-3,-13],[-3,-3],[-1,-7]],[[5169,7594],[0,1],[-1,2],[0,-1],[-1,0],[-2,2],[0,-3],[-1,-1],[-1,-1],[-2,-9],[0,-1],[-1,-1],[-1,-1],[-1,-3],[0,-1]],[[5158,7577],[1,0],[0,-1],[-1,-3]],[[5158,7573],[1,-2],[0,-1],[1,-1],[1,-2],[0,-1]],[[5161,7566],[1,-2],[0,-1],[0,-1]],[[5162,7562],[0,-1],[1,0],[0,-1]],[[5163,7560],[0,-1],[-1,0],[0,-3],[0,-2]],[[5162,7554],[-1,-1],[-1,0]],[[5160,7553],[-8,-4],[-2,8],[-12,14],[-4,0],[-1,13],[2,8],[-5,0],[-1,-7],[-6,-4],[-9,3],[2,6],[-1,11],[-4,9],[-7,0],[-3,8],[-5,5],[-6,0],[-3,18],[-10,-4],[-5,7],[0,11],[-2,9]],[[5070,7664],[16,17],[7,3]],[[5093,7684],[1,-9],[6,3],[9,-6],[5,5],[3,7]],[[5117,7684],[1,0]],[[5118,7684],[7,7],[6,1],[5,-7],[4,-1],[4,-8],[7,2],[3,-5],[8,-6],[-6,-23],[4,-4],[6,-1]],[[5099,4837],[0,-2],[-2,-8]],[[5097,4827],[0,-3],[-1,-1],[0,-4]],[[5096,4819],[0,-2],[0,-2],[5,-17],[2,-3]],[[5103,4795],[0,-6],[0,-2],[1,-7]],[[5104,4780],[0,-2],[-1,-3],[0,-2]],[[5103,4773],[2,-6]],[[5105,4767],[1,-1],[0,-4],[0,-1],[0,-2],[0,-2],[-1,-6],[0,-4],[-1,-2],[-3,2],[-1,-3],[0,-2],[-1,-3],[0,-3],[0,-1],[0,-2],[2,-5],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-3],[-1,-7],[-2,-9],[-2,1],[-3,-3],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[0,-3],[0,-2],[-1,-1]],[[5091,4689],[-1,-3]],[[5090,4686],[-2,-6],[-1,-1]],[[5087,4679],[0,-2],[-1,-3],[1,-1],[0,-4],[0,-5],[-2,-11],[-3,-5],[-6,0],[0,-18],[-1,-1],[0,-1],[0,-1],[1,-17],[0,-2],[0,-3],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-3],[0,-1],[1,-2],[0,-1],[0,-5],[0,-1],[0,-4],[-1,-15],[0,-2],[0,-1]],[[5074,4564],[0,-3]],[[5074,4561],[1,-2],[0,-1],[0,-1],[0,-10],[0,-2],[0,-3],[1,-2],[0,-3],[1,-3],[0,-3],[0,-1],[-1,1],[0,-1],[0,-1],[0,-17],[0,-1],[0,-1],[0,-1],[0,-2],[-1,0],[1,-1],[1,-2],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-2]],[[5075,4499],[0,-13]],[[5075,4486],[2,-4],[0,-3],[-1,-1],[0,-2],[-1,-2],[0,-1],[1,-3],[0,-1],[-1,-5],[0,-5],[0,-4]],[[5075,4455],[-11,-3],[-12,-4],[-7,-4]],[[5045,4444],[4,4],[-1,11],[-5,18],[2,23],[0,72],[0,19],[-1,21],[0,35],[-1,6],[-4,11],[-2,22],[-1,29],[-15,27],[0,23],[2,8],[2,14]],[[5025,4787],[3,4],[3,14],[4,0],[4,15],[4,0],[1,-5],[8,4],[3,-1],[8,18],[3,15]],[[5066,4851],[0,11],[-1,13],[4,4],[4,2],[5,7],[12,-28],[1,-7],[6,-6],[1,-5],[1,-3],[0,-2]],[[5006,5068],[-1,-7],[1,-6],[-2,-13],[1,-7],[5,-14],[-1,-10],[1,-6],[3,-14],[3,-5],[1,-7],[3,1],[2,-4],[4,-3],[3,-11],[3,-5],[0,-4],[-5,4],[-1,-21],[4,-6],[12,-25],[8,-3],[4,9],[4,-1],[3,-9],[1,-12],[-5,-3],[0,-5],[7,-26],[2,-4]],[[5025,4787],[-7,-1],[-5,-4],[0,5],[-18,10]],[[4995,4797],[-7,-3],[-3,-8],[-23,1],[-6,2],[-1,-2],[-32,-1],[-3,-9],[-2,-16],[3,-17],[0,-7],[2,-34],[-1,-8],[1,-11],[1,-2],[1,-3]],[[4925,4679],[-2,-7]],[[4923,4672],[-4,11],[-3,12],[-2,1],[-2,7],[-4,1],[-3,5],[-6,1],[-1,2],[-7,-4],[-4,-7],[-3,0],[-3,-4],[-2,-10],[-5,4],[-2,5],[-3,-2],[-2,7],[-2,5],[-3,2],[-1,11]],[[4861,4719],[-2,3]],[[4859,4722],[0,0]],[[4859,4722],[0,1],[0,1]],[[4859,4724],[0,2]],[[4859,4726],[-1,4],[0,5]],[[4858,4735],[-3,3],[-6,-1]],[[4849,4737],[-2,4],[0,4]],[[4847,4745],[-1,1]],[[4846,4746],[0,1],[1,4],[1,7],[-1,7],[2,11],[-2,11],[0,6],[5,4],[3,20],[-1,12],[-2,3],[1,16],[3,7],[6,4],[4,0],[4,5],[2,9],[5,8],[-1,9],[2,7],[-3,8],[2,7],[3,-2],[3,8],[-1,9],[-3,12],[0,4],[5,9],[1,6],[4,1],[5,-3],[6,-11],[3,-2],[1,7],[5,2],[-1,18],[1,8],[4,1],[1,-5],[5,3],[-1,11],[3,18],[4,5],[2,7],[4,5],[9,-9],[3,3],[1,17],[1,3],[7,1],[10,16],[8,7],[9,18],[7,1],[2,-6],[5,5],[13,-11]],[[7553,5556],[1,-8],[-3,-4],[0,10],[2,2]],[[7529,5584],[0,6],[0,14],[2,-2],[1,-9],[-3,-9]],[[7522,5587],[-4,-11],[-2,4],[2,24],[-1,12],[-2,4],[0,11],[2,2],[4,-19],[2,-6],[-1,-21]],[[7571,5575],[0,-35],[2,-14],[-6,5],[-3,7],[-3,-3],[-1,-8],[0,-10],[2,-8]],[[7562,5509],[-2,-5],[-4,12],[0,10],[-2,9],[1,13],[-3,13],[0,6],[-2,27],[-4,21],[-6,18],[-6,-6],[-1,-11],[-2,-2],[-5,4],[-5,14],[-2,12],[-2,11],[1,12],[-2,9],[-10,4],[5,-8],[4,-3],[1,-12],[-4,-3],[1,-10],[-2,-13],[2,-3],[1,-10],[2,-8],[0,-11],[-4,-16],[-4,-4],[-1,-13],[-3,-4],[-4,5],[1,9],[-6,4],[1,-11],[-4,-5],[-2,-5],[-6,2],[-2,-3],[-1,11],[-3,-13],[-4,7],[-1,23]],[[7473,5586],[0,6],[-2,12],[-2,26],[1,7],[-3,9],[0,8],[3,7],[-7,8],[1,13],[-5,13],[1,15],[4,5],[-2,11],[2,15],[-7,2],[-9,13],[-4,10],[5,22],[4,-5],[3,12],[0,9],[4,2],[9,-2],[2,10],[-4,2],[-2,12],[-3,-3],[-4,3],[-3,11],[-5,10],[-3,-2],[-1,10],[2,17],[4,4],[2,8],[3,5],[0,5],[-3,2],[0,7],[8,-12],[4,-13],[3,3],[1,12],[3,-4],[2,-18],[6,-10],[4,1],[3,3],[-1,7],[3,4],[2,-8],[3,-13],[-2,-7],[2,-13],[-1,-18],[3,-6],[6,-6],[6,-4],[11,1],[2,-2],[12,4],[6,-5],[15,4],[8,-8],[5,-9],[-3,-8],[-3,5],[-1,-9],[-3,-27],[-5,-2],[-1,-8],[-8,-11],[-7,-1],[-4,-14],[-2,-21],[2,-10],[2,-24],[5,4],[2,-15],[4,0],[3,8],[-1,13],[1,7],[4,9],[2,11],[4,6],[3,-9],[3,-23],[-1,-8],[1,-20],[4,-15],[2,-37],[-1,-3],[1,-11]],[[5793,7137],[1,-15],[-4,-11],[-4,3],[-6,-5],[-4,-14],[-2,-11],[0,-21],[-4,0],[-6,-12],[-1,-6],[6,-3],[1,-11],[7,-14],[1,-7]],[[5778,7010],[-6,1],[0,-1],[0,-1],[-1,-2]],[[5771,7007],[-5,1]],[[5766,7008],[-2,-3],[-7,13],[-2,0],[0,-2]],[[5755,7016],[-1,0]],[[5754,7016],[-4,1],[-2,-6],[-2,0],[-1,-2],[-2,1],[-1,-2],[-3,1],[-3,-10],[-1,-1],[-3,0]],[[5732,6998],[-2,-5],[1,-2]],[[5731,6991],[-1,0],[-1,0],[-1,2],[-1,0],[-2,-1]],[[5725,6992],[-2,-1],[0,-1],[0,-1]],[[5723,6989],[0,-1],[0,-1],[0,-1],[2,-1],[1,-8]],[[5726,6977],[0,-5]],[[5726,6972],[1,-1],[-1,-1]],[[5726,6970],[0,-2],[-1,-3],[-3,-1],[-4,-2],[-9,0],[-7,-5],[-11,12],[-1,0],[0,-1],[-2,0]],[[5688,6968],[-2,0]],[[5686,6968],[-3,3],[-2,8],[-7,-2],[-3,1],[0,-1]],[[5671,6977],[-4,1]],[[5667,6978],[-12,-12],[-5,2],[-3,-2],[0,2],[-1,0],[-2,-2],[0,-2],[-1,-1],[-1,-1],[-6,2]],[[5636,6964],[1,1],[0,6],[-1,11],[3,9],[-4,11],[-1,11],[-9,8],[-5,13]],[[5620,7034],[2,1]],[[5622,7035],[3,6],[0,1],[0,2],[0,2],[0,1],[0,1],[-3,5]],[[5622,7053],[0,1],[1,6]],[[5623,7060],[0,0]],[[5623,7060],[1,5]],[[5624,7065],[-1,1],[-1,3],[0,1]],[[5622,7070],[1,1],[1,1],[0,2],[1,0],[2,1],[4,0],[1,7],[5,7]],[[5637,7089],[1,9],[-2,1]],[[5636,7099],[-1,1],[-1,2],[0,1],[-1,4],[-2,4],[-1,1],[-1,0]],[[5629,7112],[-1,1]],[[5628,7113],[0,1],[-1,0],[-1,2],[-1,1],[0,2],[-1,3],[0,1]],[[5624,7123],[0,1],[0,1]],[[5624,7125],[0,1],[0,1],[0,2],[-3,6],[0,1]],[[5621,7136],[0,2]],[[5621,7138],[0,1],[-1,2],[0,2],[1,2],[0,2],[0,2],[1,2],[0,1],[0,2],[0,1],[0,1],[1,0],[2,0],[2,5]],[[5627,7161],[3,10]],[[5630,7171],[9,-14],[-4,-2],[-1,-7],[2,-5],[11,4],[24,-10],[9,4],[6,-4],[7,0],[8,-3],[3,-4],[5,1],[7,5],[4,10],[6,10],[13,5],[11,7],[6,-4],[4,-8],[8,1],[1,-6],[6,1],[2,-8],[6,-6],[10,-1]],[[6404,5877],[1,-6],[0,-18],[-2,0],[-2,9],[0,12],[3,3]],[[2971,5516],[-3,-12],[-2,-3],[-4,1],[-4,-3],[-5,1],[-1,6],[6,12],[3,3],[4,-7],[2,3],[3,11],[2,-2],[-1,-10]],[[2948,5628],[-1,-9],[-4,2],[2,7],[3,0]],[[2908,5697],[3,-12],[-2,-2],[-1,14]],[[2840,5729],[6,0],[0,-19],[-1,-9],[-3,2],[-4,8],[0,11],[-3,5],[2,8],[5,7],[1,-5],[-3,-8]],[[2830,5803],[4,-1],[-1,-9],[4,-13],[3,-10],[1,-14],[-5,-11],[-5,-2],[-3,10],[-5,5],[-2,7],[6,4],[-2,7],[2,6],[2,10],[-2,13],[3,-2]],[[2819,5916],[6,-3],[9,3],[2,-4],[-18,-8],[-3,3],[0,8],[4,1]],[[2839,5930],[8,-4],[6,-18],[6,-6],[1,-16],[-4,-5],[0,-24],[-5,12],[4,5],[-1,4],[2,26],[-4,2],[-3,7],[-3,12],[-6,2],[-1,3]],[[5528,7217],[4,4],[5,-2],[-1,-11],[-5,-16],[-1,-9],[2,-7],[4,-2],[1,-5],[7,-11],[-1,-4],[-8,-4],[5,-12],[1,-14],[-4,3],[-4,-5]],[[5533,7122],[-2,0],[-3,-2],[-1,3],[-2,-3],[0,-1],[0,-1],[2,-5],[1,-4],[1,-3],[0,-1],[-1,0],[-1,-2],[-1,4],[-1,1],[-1,1],[-2,-3],[-4,-5],[0,-1],[1,-1],[-2,-3],[0,-2]],[[5517,7094],[0,-9]],[[5517,7085],[-1,0],[-2,0],[-2,-2]],[[5512,7083],[-1,-4],[1,-12]],[[5512,7067],[2,-6]],[[5514,7061],[0,-5]],[[5514,7056],[0,-1],[-1,-1]],[[5513,7054],[-1,-2]],[[5512,7052],[-6,5],[-11,13],[0,5],[-5,0]],[[5490,7075],[-2,4]],[[5488,7079],[0,10],[-4,5],[-5,15],[-1,9],[-4,2],[-10,19],[-1,5],[-13,26],[-3,22],[-6,15],[-5,5],[2,26],[6,5],[6,-14],[3,-2],[4,14],[3,2],[6,-3],[4,7],[7,-10],[11,-2],[3,4],[4,-8],[4,6],[6,-2],[1,3],[6,-6],[5,2],[4,-7],[3,-10],[4,0]],[[3254,5281],[0,3],[1,-1],[-1,-2]],[[5781,8026],[1,-1],[2,-3],[1,-2],[1,-1],[0,1],[2,3],[6,-1],[1,-1],[1,-3],[1,-5],[9,5]],[[5806,8018],[3,-1],[2,-2]],[[5811,8015],[4,-2]],[[5815,8013],[0,-12]],[[5815,8001],[0,-3],[3,-4]],[[5818,7994],[11,10],[10,2],[7,-5],[3,-4],[0,-1],[0,-1]],[[5849,7995],[0,-3]],[[5849,7992],[3,-1],[0,-1],[1,-1],[0,-2],[3,1],[1,0]],[[5857,7988],[1,-2],[0,-1]],[[5858,7985],[0,-2],[-1,-5],[1,-4]],[[5858,7974],[-2,-4]],[[5856,7970],[-1,-2],[0,-3]],[[5855,7965],[2,-6]],[[5857,7959],[1,-1],[1,-1],[0,-1]],[[5859,7956],[1,-2]],[[5860,7954],[0,-1]],[[5860,7953],[0,-1]],[[5860,7952],[1,-5]],[[5861,7947],[-3,-2],[0,-1],[1,-1],[0,-1]],[[5859,7942],[-1,-1],[-2,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[-2,-4],[0,-2],[0,-1],[1,0],[1,-1],[4,-5],[1,-2],[2,0],[1,-2],[1,-2],[-1,-3],[-1,-3],[-1,-3],[3,-2],[0,-1],[1,0]],[[5866,7905],[2,-7],[2,-9]],[[5870,7889],[5,-6],[0,-1],[2,0],[2,-2],[2,-1],[3,-7]],[[5884,7872],[-3,-12]],[[5881,7860],[1,-2],[3,-1]],[[5885,7857],[6,2],[2,-2],[3,-2],[6,-7],[-1,-8],[3,-2],[0,-2],[1,0],[1,0]],[[5906,7836],[2,-4]],[[5908,7832],[0,-7]],[[5908,7825],[0,-1],[-2,1],[-2,-1],[-4,-9]],[[5900,7815],[-1,-1],[-1,0]],[[5898,7814],[-1,-1],[-1,-3],[-2,0]],[[5894,7810],[0,-1]],[[5894,7809],[0,-1],[-8,-1],[-2,2],[-1,0],[-1,1],[0,3],[0,1],[-1,1]],[[5881,7815],[-3,1]],[[5878,7816],[-1,0],[-1,0],[-1,-1],[-3,0],[-1,-1]],[[5871,7814],[-4,-12]],[[5867,7802],[4,-9],[2,-2],[1,-1],[1,0],[0,-3],[1,-1],[0,-2],[0,-3]],[[5876,7781],[1,-25]],[[5877,7756],[-1,-5],[4,-3]],[[5880,7748],[0,-6],[1,-1],[1,-1],[0,-2],[0,-2]],[[5882,7736],[-3,0],[-5,2]],[[5874,7738],[-10,-3],[-5,-4]],[[5859,7731],[-4,-6]],[[5855,7725],[0,-3],[-1,0]],[[5854,7722],[-1,-2]],[[5853,7720],[-1,-1],[-1,-3],[-1,-8],[-1,0]],[[5849,7708],[-1,-3]],[[5848,7705],[1,-1]],[[5849,7704],[-1,-1],[0,-1]],[[5848,7702],[0,-5]],[[5848,7697],[1,-1],[0,-8]],[[5849,7688],[1,0],[0,-1],[0,-2]],[[5850,7685],[1,-1],[-1,0]],[[5850,7684],[0,-3],[0,-1],[-1,-1],[-1,-4],[-1,1],[-1,0],[-3,3],[-1,3],[0,2],[0,1],[0,1],[-1,1],[-1,1],[0,1],[-2,2],[-1,1],[-9,-4],[-6,4],[-4,-7],[-2,1],[-2,-2],[-1,0]],[[5813,7684],[-4,17]],[[5809,7701],[-1,1],[-1,1],[-1,-1],[-2,-4],[-3,0],[-1,-1],[-1,-1]],[[5799,7696],[-1,-4],[0,-5]],[[5798,7687],[-1,0],[0,1],[0,1],[-3,8],[-7,-2],[-4,9],[-3,-5],[0,-1],[-1,-1],[-3,0],[-1,1],[-3,3],[-3,-3],[-6,4],[-7,-2],[-2,11],[-4,1],[-3,-1],[-2,0],[-5,4],[-6,0],[-1,3],[-6,1],[-3,3],[-9,2],[-11,-1],[-5,3],[-13,-5],[-9,0],[-4,-12],[-7,-10],[-2,0],[0,1],[-1,2],[-4,2],[-1,0],[-2,-2],[-1,0],[0,-1]],[[5655,7701],[0,-1]],[[5655,7700],[1,-4]],[[5656,7696],[0,-2]],[[5656,7694],[-1,0]],[[5655,7694],[-2,7],[1,11],[3,17],[-1,6],[-13,15],[6,16],[13,11],[2,5],[-1,30],[-3,8],[-5,25],[-3,23]],[[5652,7868],[4,-3]],[[5656,7865],[4,3],[0,-1],[1,0],[3,2],[8,0],[1,-4],[1,0],[1,0],[2,-1],[4,6],[4,2],[0,-1],[1,-1],[2,0],[1,4],[1,9],[6,-1],[1,1],[1,2],[1,5],[10,-1]],[[5709,7889],[7,0],[-3,7]],[[5713,7896],[-4,1]],[[5709,7897],[2,6],[1,7]],[[5712,7910],[1,1],[1,2]],[[5714,7913],[0,3]],[[5714,7916],[0,3]],[[5714,7919],[0,2]],[[5714,7921],[0,3],[0,5]],[[5714,7929],[2,6],[3,6],[2,-1],[4,1],[1,1],[1,3],[1,3]],[[5728,7948],[2,7]],[[5730,7955],[8,-2],[1,5],[2,3],[2,1],[1,1],[0,1],[0,1],[-1,1],[-5,1],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[1,2],[1,3],[0,1],[0,5]],[[5736,7981],[2,11]],[[5738,7992],[7,3],[4,9],[8,-3],[9,0],[1,10],[8,12],[6,3]],[[2547,5324],[-2,-7],[5,-3],[3,2],[0,-18],[-3,-17],[-1,-8],[-2,-14],[2,-6],[-2,-11],[0,-12],[2,-15],[-2,-5],[0,-17],[-3,-7],[-1,-12],[-3,-8],[-5,-3],[0,-6],[-5,-12],[0,-7],[-4,1]],[[2526,5139],[-5,-1],[1,44],[1,20],[0,18],[0,21],[0,20],[0,15]],[[2523,5276],[0,6],[1,5],[2,2],[5,-8],[4,12],[1,9],[2,4],[4,18],[5,0]],[[3204,6320],[-1,0],[0,-3],[-2,2],[2,3],[1,-2]],[[3384,2551],[0,14],[0,11],[-26,38],[-25,-1],[-23,-12],[-26,-14],[-5,-32],[-9,-34],[0,-35],[-4,-31],[-4,-36],[-2,-13],[-1,-4]],[[3255,2413],[0,3]],[[3217,2388],[0,-2],[-2,-4]],[[3209,2373],[1,5]],[[3206,2395],[0,9]],[[3194,2412],[-13,0],[-3,1]],[[3158,2416],[0,-2],[-1,0]],[[3145,2400],[-1,-12]],[[3133,2360],[-9,-4],[-1,-1],[-2,0],[-4,0],[-1,1],[-1,3],[-1,0]],[[3114,2359],[0,3],[0,6]],[[3114,2368],[1,11]],[[3115,2379],[-1,5]],[[3114,2384],[0,4],[-1,1],[-1,5],[0,1],[0,2],[1,4],[0,2],[-1,1],[0,3],[-1,8],[-3,8],[0,11]],[[3108,2434],[-3,16]],[[3105,2450],[0,18],[0,3]],[[3105,2471],[-6,23],[-4,6],[0,10]],[[3095,2510],[1,3],[1,4]],[[3097,2517],[0,3]],[[3097,2520],[-5,6],[-1,2],[-1,5],[-1,2],[1,2],[0,1],[2,1],[-1,5],[0,2],[0,3]],[[3091,2549],[0,3]],[[3091,2552],[-1,1],[-1,1],[0,1],[0,1],[4,3],[1,0]],[[3094,2559],[2,10],[-1,4]],[[3095,2573],[0,1],[-1,1],[0,1],[-1,2],[-2,3],[0,1],[0,1],[1,2],[1,2],[0,1],[4,14]],[[3097,2602],[0,5]],[[3097,2607],[-5,8],[-1,4],[0,2],[-3,5],[-1,2],[-1,1],[-1,2],[-1,6],[0,1],[-1,0]],[[3083,2638],[1,7]],[[3084,2645],[-1,8],[0,1],[0,2],[0,1],[-1,3],[0,3],[0,4],[0,3],[0,2],[0,1],[-1,5],[-1,12],[-1,3],[0,3]],[[3079,2696],[0,8]],[[3079,2704],[-4,4],[-1,2],[0,2],[0,8],[-1,4],[-3,7],[-1,3],[0,2],[0,6]],[[3069,2742],[0,0]],[[3069,2742],[0,7]],[[3069,2749],[-1,3],[-2,5]],[[3066,2757],[-1,0]],[[3065,2757],[1,8]],[[3066,2765],[5,7],[1,2],[0,1]],[[3072,2775],[0,2]],[[3072,2777],[5,14],[0,2],[1,4],[0,1],[1,0],[1,1],[2,3],[0,13],[1,4],[1,2],[3,3],[1,2],[-1,2],[-3,7],[-5,-1],[-1,1],[0,1],[-1,3],[-1,4],[-1,7],[-4,25]],[[3071,2875],[0,4]],[[3071,2879],[4,13],[0,1],[0,2],[0,1],[2,4],[0,3],[1,0],[1,1],[0,1],[-1,1],[-1,4],[-2,3],[0,1],[-3,10],[1,5],[0,6],[0,1],[0,1],[1,1],[2,1],[0,12],[2,6],[2,4],[1,1],[2,3],[0,1],[0,2],[0,2]],[[3083,2970],[0,4]],[[3083,2974],[0,2],[0,1],[3,1],[1,2],[0,2],[-2,10],[-1,2],[0,1],[-1,16],[-2,4]],[[3081,3015],[0,4],[1,1]],[[3082,3020],[0,1]],[[3082,3021],[0,1],[1,4],[1,5],[0,14],[0,5],[0,3],[0,9]],[[3084,3062],[0,1],[-1,7],[1,5]],[[3084,3075],[3,9]],[[3087,3084],[2,1],[1,1],[0,3],[0,1],[-1,1]],[[3089,3091],[0,1]],[[3089,3092],[0,2],[2,2]],[[3091,3096],[1,5]],[[3092,3101],[-1,4],[-3,13],[-3,12],[-6,26]],[[3079,3156],[-12,56]],[[3067,3212],[2,0],[3,1]],[[3072,3213],[9,-2],[5,-4],[2,2],[1,-9],[5,1],[9,9],[5,20],[7,3],[3,-4],[4,15],[3,3],[4,10],[4,0],[4,5],[4,12],[8,13],[5,1],[7,7],[9,1],[2,4],[6,-8],[4,11],[2,-2],[2,-8],[0,-1],[0,-2],[-1,-4],[0,-3],[0,-3],[0,-3],[1,-4],[0,-4],[0,-3],[0,-1]],[[3186,3265],[-1,-7]],[[3185,3258],[-1,-1],[-1,-9]],[[3183,3248],[-1,-1]],[[3182,3247],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-5],[1,-3],[1,-2],[0,-1],[-1,-3],[0,-3],[0,-1],[1,-1],[1,-3],[0,-6],[1,-1],[0,-1],[0,-1]],[[3186,3209],[-1,-8]],[[3185,3201],[-1,-2],[-1,-1],[0,-2],[0,-1],[1,-1],[0,-1],[0,-12],[2,-9],[3,-6]],[[3189,3166],[0,-5],[0,-6]],[[3189,3155],[3,0],[2,-18],[6,-3]],[[3200,3134],[1,-3],[1,-5],[3,-5]],[[3205,3121],[3,-1],[1,-2]],[[3209,3118],[0,-2]],[[3209,3116],[0,-2],[-1,-3],[0,-1]],[[3208,3110],[3,-6]],[[3211,3104],[5,-1],[2,-4],[6,-1],[3,6],[4,-1],[5,-6],[3,-8],[1,-1],[1,-1],[0,-1],[2,1],[3,4],[1,0],[1,-1]],[[3248,3090],[0,-4],[1,-1]],[[3249,3085],[-1,-2]],[[3248,3083],[1,-1],[0,-2],[1,-4]],[[3250,3076],[5,-10],[3,2],[2,-5],[4,-3]],[[3264,3060],[1,-1],[1,-2]],[[3266,3057],[0,-1],[1,-1],[4,1],[1,0],[1,-1],[1,-1],[0,-5],[0,-2],[1,-1],[0,-1],[2,-6],[2,-2],[1,-3],[1,-2],[1,-5],[7,2],[4,-3],[1,1],[2,3],[12,-5],[3,-3],[2,-5],[2,-4],[5,-7]],[[3320,3006],[2,-11]],[[3322,2995],[0,-1],[0,-5]],[[3322,2989],[-2,-4],[0,-2],[0,-1],[0,-3]],[[3320,2979],[0,-4]],[[3320,2975],[0,-2],[0,-1],[2,-3]],[[3322,2969],[1,-6],[0,-5]],[[3323,2958],[1,-3]],[[3324,2955],[-1,-1],[0,-2]],[[3323,2952],[2,-2],[0,-2]],[[3325,2948],[1,-32],[-1,-1]],[[3325,2915],[-3,0],[-5,-1],[1,-3],[2,-6],[3,-9],[3,-7],[0,-3],[2,-52],[1,-3],[0,-1],[29,-2],[10,-1],[6,-1],[2,0],[2,4],[1,0],[0,-1],[0,-7],[0,-9],[-4,-12],[1,-12],[0,-1],[0,-1],[0,-1],[0,-3],[1,-4],[0,-9],[1,-11],[4,-5],[6,-12],[1,0],[1,-1],[3,1],[1,-4],[1,-10]],[[3395,2728],[1,-3]],[[3396,2725],[0,-2],[0,-1],[1,-1],[0,-2],[0,-1],[-1,-1],[3,-11],[1,-8],[1,-5],[2,-2],[0,-2],[-2,0],[0,-1]],[[3401,2688],[-6,-47]],[[3395,2641],[1,0],[0,-1],[0,-1]],[[3396,2639],[0,-5],[0,-3]],[[3396,2631],[-2,-1]],[[3394,2630],[-6,-31]],[[3388,2599],[-1,-6],[-1,-6],[-1,-5]],[[3385,2582],[0,-2],[5,-9],[2,-7],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,1],[-6,-10]],[[3651,2002],[0,5],[1,13],[0,10],[4,-2],[-1,-10],[-4,-16]],[[3650,2102],[-3,8],[2,5],[4,0],[-3,-13]],[[3743,2292],[-1,-10],[-5,3],[4,10],[2,-3]],[[3919,3037],[-1,-19],[-2,13],[0,6],[3,0]],[[3629,3863],[-3,2],[3,10],[2,-4],[-2,-8]],[[3657,3913],[-4,1],[2,6],[2,1],[0,-8]],[[3660,3924],[-3,4],[3,9],[2,-5],[-2,-8]],[[3588,3956],[-1,-9],[-2,-2],[-5,-6],[0,6],[4,9],[4,2]],[[3577,3958],[2,-6],[-2,-14],[-2,-13],[-1,0],[-3,-12],[-10,-19],[-3,-3],[-1,5],[2,13],[4,8],[1,20],[5,17],[5,7],[3,-3]],[[3573,3965],[3,17],[3,4],[-2,-13],[-4,-8]],[[3608,3988],[12,-7],[7,0],[1,4],[5,3],[8,-1],[1,-5],[8,0],[4,-3],[2,-8],[-2,-8],[-3,-29],[-2,-3],[-1,-11],[-5,-9],[1,-5],[-1,-12],[-2,-4],[-4,-2],[-4,6],[-1,-12],[-9,-2],[0,-6],[-7,-6],[-7,8],[-3,-6],[-6,-3],[-5,2],[-1,8],[-4,11],[-2,8],[0,8],[2,16],[-1,13],[0,18],[2,21],[4,12],[4,2],[2,4],[7,-2]],[[3586,3976],[-2,-1],[-2,11],[2,11],[5,4],[4,-9],[-2,-6],[-5,-10]],[[3625,4003],[4,-6],[-3,-8],[-7,-1],[-4,3],[3,7],[3,4],[4,1]],[[3599,3998],[-4,0],[-2,6],[1,7],[4,-4],[1,-9]],[[3624,4019],[-5,-6],[-4,-14],[-4,-5],[-2,5],[-4,2],[-2,-2],[-3,8],[1,6],[7,1],[2,5],[3,0],[7,7],[3,0],[1,-7]],[[3601,4036],[1,-14],[-3,-12],[-3,3],[5,23]],[[3610,4040],[0,-6],[-7,-11],[-1,13],[2,4],[6,0]],[[3608,4064],[2,-2],[-2,-10],[-5,-1],[0,5],[5,8]],[[3600,4150],[2,-12],[-4,-5],[-2,9],[1,6],[3,2]],[[3431,4137],[1,-1],[1,0],[1,0],[10,-7],[1,2],[1,2],[0,3]],[[3446,4136],[0,6],[0,1],[0,1]],[[3446,4144],[0,1],[0,1],[-3,7]],[[3443,4153],[-1,6],[-2,0]],[[3440,4159],[0,1],[0,1],[1,4],[1,1],[1,1],[1,3],[0,5],[0,3],[0,1],[1,0],[1,0],[0,-1],[2,-3],[2,-2],[2,-3],[2,1],[1,2],[6,-1],[1,5],[7,2],[2,5],[4,-10],[5,-1],[0,-8],[1,-1],[2,1]],[[3483,4165],[1,-1],[2,-7],[10,-8],[2,6],[3,2],[2,6],[4,1],[6,-5],[5,8],[3,-8],[8,-5],[2,6],[5,7],[4,16],[0,8],[5,26],[0,6],[4,9],[6,26],[1,6],[4,11],[1,9],[3,4]],[[3564,4288],[1,2],[2,21],[2,6],[3,-6],[5,-14],[1,-10],[0,-16],[3,5],[-1,-36],[5,-40],[1,-2],[4,-29],[1,-11],[7,-30],[8,0],[5,-4],[2,-7],[1,-22],[-3,-20],[-9,-18],[-1,-6],[-3,-7],[-4,-19],[-5,-15],[-4,-1],[-4,-12],[-4,-3],[-3,-12],[-3,-18],[-7,-20],[-1,-21],[-6,-10],[0,-10],[-4,-6],[-3,4],[-6,-5],[-4,-7],[3,-4],[4,4],[3,-12],[2,5],[6,3],[6,12],[7,7],[1,4],[4,2],[3,9],[3,4],[1,8],[4,1],[1,-8],[-2,-7],[2,-8],[0,-14],[4,-13],[1,-9],[-5,-14],[3,2],[1,8],[3,-7],[5,-6],[3,6],[8,5],[5,-5],[4,-1],[5,10],[1,-7],[2,-2],[-2,-21],[-3,-16],[1,-16],[2,12],[1,7],[2,12],[3,18],[3,13],[4,12],[5,-1],[5,16],[2,-14],[3,1],[1,8],[-3,1],[1,12],[4,-3],[2,13],[3,13],[0,13],[4,4],[2,-1],[6,7],[2,-6],[2,10],[5,-6],[3,5],[6,-11],[6,-1],[2,-7],[5,4],[0,-11],[3,5],[1,-9],[7,0],[0,-9],[4,0],[3,-6],[2,4],[2,-8],[3,9],[5,-11],[1,-12],[3,0],[1,-8],[-1,-7],[4,0],[0,8],[4,8],[6,-3],[-1,-6],[5,-10],[1,-6],[5,-3],[1,-10],[-5,-17],[3,1],[2,5],[2,-4],[1,-8],[-1,-6],[-3,-2],[-4,-25],[-1,-16],[2,-4],[5,7],[2,20],[0,9],[8,11],[2,-8],[-3,-12],[-4,-7],[6,0],[1,10],[8,8],[7,0],[1,13],[4,0],[16,-16],[2,-6],[5,-8],[6,0],[1,-4],[6,0],[0,7],[5,-1],[4,-11],[9,-3],[3,4],[3,-1],[15,4],[3,3],[14,-5],[14,-21],[3,-3],[8,-13],[3,-2],[2,-8],[3,-3],[4,-9],[5,-3],[3,-11],[3,-6],[4,-14],[7,-16],[3,-2],[1,-8],[3,-7],[8,-6],[4,-15],[8,-2],[4,-10],[4,-2],[5,1],[8,-1],[4,4],[13,-7],[3,-5],[4,-20],[2,-14],[1,-17],[1,-5],[1,-14],[1,-4],[3,-21],[-1,-6],[2,-19],[1,-2],[0,-11],[2,-7],[0,-23],[0,-10],[-3,-13],[3,-7],[-2,-12],[-2,-13],[0,-7],[-5,-33],[-1,-8],[-4,-20],[-5,-12],[-3,-12],[-7,-14],[-1,-9],[-4,-15],[-6,-13],[-1,-8],[-4,-11],[-4,-3],[-10,-16],[-3,-13],[-4,-18],[-3,-8],[-1,-7],[-3,-11],[-6,-35],[-4,-15],[-7,-27],[-8,-21],[-5,-6],[1,12],[-1,9],[-3,1],[-3,-2],[-3,-9],[3,-2],[-2,-10],[-3,-3],[2,-7],[-6,-17],[2,-19],[-1,-12],[2,-4],[0,-8],[-1,-15],[0,-7],[-3,-26],[2,-10],[0,-30],[2,-35],[2,-9],[-5,-42],[-2,-27],[0,-7],[-3,-19],[0,-9],[1,-22],[2,-6],[-4,-13],[-3,-3],[-4,-7],[-3,-14],[-3,-23],[0,-27],[1,-25],[0,-12],[-4,-18],[-5,-7],[-4,-19],[-1,-12],[-2,-9],[-2,-13],[-4,-11],[-3,-11],[-4,-3],[-2,-6],[0,-8],[-4,-17],[0,-6],[-3,-11],[1,-7],[0,-8],[2,-16],[-1,-5],[-7,-9],[-6,-4],[-6,-6],[-8,-18],[-1,-12],[2,-5],[-4,-13],[-15,1],[-2,-2],[-10,-1],[-2,4],[2,11],[-1,8],[-5,-6],[3,-11],[-2,-7],[-9,-4],[-5,8],[-4,3],[-5,-3],[-4,-8],[-3,4],[-4,0],[-6,-5],[-1,-9],[5,-6],[-2,-6],[-2,1],[-5,-3],[-2,3],[-5,-11],[-9,-12],[0,-11],[-2,-2],[-6,5],[-4,1],[-6,-5],[-5,-11],[-3,6],[-1,-8],[-6,-6],[-10,-15],[-2,-9],[-4,-7],[-7,-11],[-3,-2],[-8,-13],[-2,-5],[0,-7],[-1,-10],[-4,-9],[-5,-7],[-4,10],[-2,-14],[-1,-3],[2,-8],[-2,-10],[-3,-20],[1,-8],[-6,-11],[4,-5],[-1,-24],[2,-4],[0,-24],[0,-10],[2,-7],[-3,-10],[2,-8],[-2,-4],[3,-15],[-3,-26],[-4,-28],[-4,-3],[-11,-19],[-6,-15],[-7,-23],[-7,-26],[-7,-47],[-11,-42],[-9,-24],[-3,-7],[-12,-21],[-8,-11],[-5,-13],[-1,18],[4,-1],[8,7],[4,11],[2,9],[3,-2],[4,12],[0,15],[5,7],[2,11],[5,7],[6,34],[-4,2],[-6,-1],[-1,-9],[-3,4],[1,7],[-3,2],[-6,7],[1,-8],[2,-9],[-2,-17],[-3,-2],[1,-16],[-3,-1],[-1,-8],[2,-5],[-5,-4],[-1,-9],[-8,-4],[-2,-8],[0,-9],[-2,-10],[-3,-3],[-2,-8],[3,-7],[-3,-8],[4,-9],[-4,-7],[-3,-16],[-3,-22],[-4,-21],[-6,-16],[-12,-26],[-3,-4],[-2,4]],[[3515,1581],[-1,0],[0,-1],[-1,0],[-1,3],[1,7],[0,12],[0,10],[0,6],[0,3],[0,2],[5,9],[1,6],[5,10],[0,1],[0,1],[0,1],[-2,4],[-6,6],[-7,16],[0,4],[0,5],[-3,12],[-8,12],[-1,0],[-1,-1],[0,-1],[-9,17],[-1,7],[0,1],[0,1],[-2,2],[-1,4],[-6,2],[-4,7],[-4,1],[-2,4],[-1,1],[-1,2],[-1,6],[-1,1],[-1,0],[0,5],[-7,15]],[[3455,1784],[-3,-7],[-1,-4]],[[3451,1773],[-2,-3],[-1,-1],[0,-1],[-4,0],[-1,1]],[[3443,1769],[1,5]],[[3444,1774],[0,6]],[[3444,1780],[0,2],[0,2],[0,2],[0,2],[-2,3],[0,1],[-1,4],[-1,2],[-1,1]],[[3439,1799],[-1,6]],[[3438,1805],[-4,5],[-1,1],[0,1],[-1,4],[-2,4]],[[3430,1820],[-2,4],[-1,1]],[[3427,1825],[0,1],[0,1]],[[3427,1827],[-2,3]],[[3425,1830],[0,1],[-2,3],[-1,2]],[[3422,1836],[-4,2],[-1,0],[-1,0],[-1,-1],[-1,1],[-1,-1],[-3,-12],[0,-1],[-1,1],[-1,-1],[-1,2],[-6,0]],[[3401,1826],[-2,6]],[[3483,2163],[0,2]],[[3483,2165],[0,1],[0,2],[0,1]],[[3483,2169],[0,2],[0,2]],[[3483,2173],[0,2],[1,3],[2,6],[0,5],[2,3],[0,1],[0,2],[-1,2],[0,2]],[[3487,2199],[0,2]],[[3487,2201],[0,3],[1,13],[1,4],[1,2],[1,8],[0,2],[-1,5]],[[3490,2238],[0,2],[1,2]],[[3491,2242],[1,4],[0,2],[0,2],[0,2]],[[3492,2252],[0,4]],[[3492,2256],[-1,2],[0,1]],[[3491,2259],[0,3],[-1,2],[0,1],[1,2],[0,2],[1,2],[1,1]],[[3493,2272],[-5,10]],[[3488,2282],[-1,1],[-4,6],[-6,-5],[-4,-6],[-7,-4],[-5,3]],[[3461,2277],[-1,2],[0,2],[0,14]],[[3460,2295],[-3,9]],[[3457,2304],[0,10],[1,6],[-2,4]],[[3456,2324],[0,1],[0,2],[1,3],[0,1],[-1,5],[0,1],[0,1],[-1,1],[0,1],[0,3],[0,1],[-1,4],[0,13]],[[3454,2361],[1,6],[-1,7]],[[3454,2374],[-3,7],[0,2],[0,6],[-4,8],[-8,2]],[[3439,2399],[-1,1],[-1,2]],[[3437,2402],[-2,2],[-3,10],[-2,-1],[-4,-11],[-5,-3],[-1,-1],[-1,2],[-2,1],[0,1],[-1,1],[-2,-1],[-4,4],[-4,-2],[-1,1],[-1,1],[-1,0],[-4,1],[-1,5],[-1,-1],[-1,1],[-3,-3],[-3,2]],[[3390,2411],[-1,3],[0,2],[0,1]],[[3389,2417],[1,4],[1,4],[0,1]],[[3391,2426],[-1,7]],[[3390,2433],[1,9]],[[3391,2442],[0,1],[0,1],[-1,1],[0,1]],[[3390,2446],[1,13]],[[3391,2459],[1,6],[1,2]],[[3393,2467],[-2,3],[0,2],[1,1],[1,2]],[[3393,2475],[0,4],[0,3],[0,3],[0,2],[0,1],[0,3],[1,2],[0,1],[-1,1],[0,-1],[-1,3],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[-2,0],[0,1],[0,1],[1,0],[0,2],[1,0]],[[3392,2509],[0,1]],[[3392,2510],[0,2],[-1,2]],[[3391,2514],[-1,0],[-1,4],[0,14],[-1,0],[0,1],[-1,0],[-1,3],[-2,15]],[[3385,2582],[3,17]],[[3394,2630],[1,1],[1,0]],[[3396,2631],[0,8]],[[3395,2641],[0,2],[1,11],[3,20],[2,14]],[[3396,2725],[0,1],[-1,0],[0,2]],[[3325,2915],[0,33]],[[3323,2952],[1,3]],[[3323,2958],[-1,11]],[[3320,2975],[0,2],[0,2]],[[3322,2989],[0,6]],[[3322,2995],[0,1],[0,1],[-1,2],[-1,7]],[[3266,3057],[-2,3]],[[3250,3076],[-2,7]],[[3248,3083],[0,1],[1,1]],[[3249,3085],[-1,5]],[[3211,3104],[-2,5],[-1,1]],[[3209,3116],[0,1],[0,1]],[[3205,3121],[-4,7],[-1,6]],[[3189,3155],[0,11]],[[3185,3201],[0,5],[1,3]],[[3182,3247],[1,1]],[[3185,3258],[1,5],[0,2]],[[3072,3213],[-5,-1]],[[3067,3212],[-4,-1],[-7,3],[-9,-10],[-4,2],[-3,7],[-3,-5],[1,83],[2,9],[-2,11],[-2,3],[-5,-9],[-4,-12],[-4,-4],[-1,-4],[-5,-5],[-23,0],[1,8],[-3,9],[0,7],[-2,10],[-2,4],[-11,5],[-11,0],[7,23],[0,7],[-3,7],[-3,12],[-5,9],[0,8],[-5,8],[-4,26],[-3,4],[2,12],[-3,5],[-4,10],[1,9],[-1,6],[6,2],[1,8],[-3,9],[2,14],[2,7],[9,16],[4,3],[2,8],[-1,17],[-2,9],[3,14],[4,12],[1,11],[0,7],[2,14],[-1,10],[8,7],[6,12],[1,4],[4,3],[5,11],[8,9],[3,-2],[4,5],[15,4],[4,11],[0,4],[7,-1],[4,4],[4,-2],[2,-10],[7,5]],[[3056,3694],[1,2],[5,70],[5,81],[5,66],[-1,13],[-3,6],[-2,13],[1,7],[-2,10],[-3,3],[-3,8],[-2,3],[-4,13],[1,51],[7,1],[3,5],[2,-1],[3,5],[4,-6],[4,-2],[2,3],[-2,21],[-4,8],[-11,2],[-3,-2],[0,44],[3,4],[5,3],[6,-4],[33,0],[-2,10],[1,11],[3,-6],[3,-13],[4,1],[2,4],[5,17],[4,6],[3,-3],[2,-11],[4,-16],[2,-13],[-1,-20],[1,-6],[5,4]],[[3142,4086],[13,-31],[2,-3],[5,-1],[5,5],[3,7],[3,5],[5,0],[2,-8],[-2,-9],[1,-6],[3,2],[3,16],[3,1],[2,15],[3,1],[6,9],[3,-2],[3,6],[2,7],[4,6],[3,-4],[4,9],[2,5],[0,18],[2,4],[6,2],[5,9],[5,3],[1,8],[0,12],[-12,0],[-6,3],[1,17],[-3,17],[-3,13],[-1,21],[1,13],[-3,9],[-6,9],[-4,11],[-1,10],[-2,3],[1,8],[5,-13],[6,3],[6,-5],[2,-12],[2,-3],[3,5],[7,-1],[4,-6],[2,9],[4,-4],[8,-23],[3,-3],[4,8],[-1,17],[0,8],[6,2],[1,6],[4,3],[5,-5],[4,4],[3,-1],[6,8],[5,1],[3,11],[3,0],[1,8],[4,-3],[4,2],[3,13],[4,4],[4,11],[0,6],[-1,13],[-3,2]],[[3312,4371],[8,-2],[4,2],[3,5],[6,-13],[-1,-22],[-1,-13],[0,-8],[4,1],[7,-9],[-2,-13],[6,-19],[-4,-17],[-5,-6],[1,-16],[-4,-23],[-1,-27],[3,-17],[0,-7],[4,-7],[0,-24],[2,-11],[3,-3],[9,-25],[6,-4],[4,-8],[3,-1],[3,6],[4,-1],[0,12],[3,3],[2,8],[9,-5],[1,9],[5,4],[7,1],[3,13],[3,5],[3,-1],[3,5],[3,-7],[6,-4],[4,5],[5,0]],[[3349,4942],[-2,-7],[-3,2],[-1,15],[6,-10]],[[8198,4350],[1,-6],[2,-13],[0,-12],[2,-12],[-6,5],[-2,18],[-1,14]],[[8194,4344],[4,6]],[[8166,4328],[7,-1],[8,8],[5,13],[6,9],[1,-8]],[[8193,4349],[-6,-11],[1,-17],[1,-10],[-2,-17],[-5,-8],[-3,9],[-1,9],[-4,4],[-1,12],[-7,8]],[[7545,5990],[-2,-8],[1,-8],[4,-9],[6,4],[3,-12],[-2,-10],[0,-7],[2,-9],[-1,-6],[-7,0],[-2,-4],[-6,0],[-3,5],[-3,-7],[-2,2],[-14,-2],[-3,1],[-6,7],[-6,-4],[-2,-6],[-8,-3],[-3,2],[-10,9],[-4,-3],[-7,7],[-3,13],[-3,4],[5,12]],[[7469,5958],[4,21],[2,1],[3,13],[3,5],[3,11],[3,8],[5,3],[3,8],[6,4],[5,-1],[10,-7],[-4,-12],[6,1],[12,-8],[2,6],[3,1],[4,-5],[5,-4],[1,-13]],[[5701,2721],[-1,-10],[2,-10],[3,-5],[3,-18],[7,-17],[2,-13],[3,-8],[0,-14],[3,-9],[2,-18],[5,-6],[0,-5],[7,-11],[5,-10],[8,-5],[5,-7],[4,-26],[7,0],[3,-3],[0,-15],[-1,-10],[0,-16],[6,-16],[4,-19],[7,-2],[5,-4],[5,0],[6,-7],[5,-3],[0,-13],[1,-5],[5,-2],[3,-8]],[[5815,2406],[-1,-1]],[[5814,2405],[-2,1],[-1,0],[-5,-2],[-1,-5],[-1,-2],[-1,-10],[-2,0],[-1,-3],[-5,-5],[-8,-2],[-4,-6],[-1,-3],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,-1]],[[5778,2359],[-3,-9]],[[5775,2350],[0,-2],[1,-3],[-1,-2],[-1,-1],[-5,-8],[-1,-2],[-1,-1],[-1,1],[0,-2],[0,-1],[-1,-3],[0,-4],[-1,-1],[0,-1]],[[5764,2320],[-5,-1],[-2,-5]],[[5757,2314],[-4,-4],[-3,-9],[-4,-34],[0,-3],[-1,-6],[-3,-5],[-1,-1]],[[5741,2252],[-2,-5]],[[5739,2247],[-3,-4],[0,-2],[-1,-6],[-2,-5],[-2,1],[-2,0],[-11,-9]],[[5718,2222],[0,-2],[0,-5]],[[5718,2215],[0,-3]],[[5718,2212],[-1,-6],[0,-3]],[[5717,2203],[-1,-4],[0,-4],[-3,-13],[-1,-10],[0,-1],[-1,-7],[-1,-4],[-5,-9],[-6,-2],[-1,1],[-2,1],[-1,0],[-7,-6],[-1,1],[-2,-1],[-6,6],[-5,1],[-2,5],[-8,2],[-5,11],[-2,1],[-6,13],[-2,-1],[-2,1],[-1,1],[-6,-4],[-1,1],[-5,-12],[-1,-5],[0,-1],[0,-1]],[[5633,2163],[0,-1],[1,-1],[0,-1],[-1,-5]],[[5633,2155],[-2,-5]],[[5631,2150],[1,-5],[-1,-2],[0,-2],[-1,-1]],[[5630,2140],[1,-7]],[[5631,2133],[-5,-16],[-4,-1],[-4,-8],[-3,-13],[-1,-4],[-2,-3]],[[5612,2088],[-3,-3],[-3,0]],[[5606,2085],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-3],[0,-2],[0,-1],[0,-1],[-1,-2],[-1,-2],[-1,-1]],[[5601,2070],[-4,1]],[[5597,2071],[-4,2],[-2,-1],[-2,0],[-3,-2],[-7,4],[-2,-3],[-2,-2],[-1,-1],[-1,6],[-1,2],[0,2],[0,3],[0,2]],[[5572,2083],[1,5],[-1,5]],[[5572,2093],[0,2],[0,2],[0,4],[0,1]],[[5572,2102],[1,1],[0,1],[3,8]],[[5576,2112],[1,6],[1,4],[0,1]],[[5578,2123],[-1,4],[0,13]],[[5577,2140],[-1,4],[0,1]],[[5576,2145],[0,2]],[[5576,2147],[-1,6],[-1,0],[0,1]],[[5574,2154],[-1,2],[1,1]],[[5574,2157],[0,1],[-1,0],[0,1],[0,1]],[[5573,2160],[0,4]],[[5573,2164],[-3,13],[-2,9],[-1,4],[0,1],[0,1]],[[5567,2192],[0,1],[-1,3],[-1,5],[0,1],[-7,10]],[[5558,2212],[-4,10]],[[5554,2222],[0,62],[0,49],[0,86],[28,0],[0,3],[0,87],[0,72],[0,53],[0,49],[14,2],[16,7],[26,13],[9,1],[1,-8],[4,-9],[2,-16],[2,0],[12,25],[3,6],[3,0],[4,5],[2,-7],[2,1],[4,11],[7,7],[2,-2],[3,3],[3,-1]],[[5634,4781],[0,-2],[4,-14],[8,-18],[10,-38],[0,-3],[1,-13],[0,-3],[-2,-6],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1]],[[5656,4674],[0,-10]],[[5656,4664],[-5,-10],[-1,-9],[0,-2],[1,-1],[1,-1],[1,2],[1,0],[0,-1],[0,-3],[0,-4]],[[5654,4635],[-1,-2],[-1,-3]],[[5652,4630],[0,-2],[0,-2],[0,-2],[0,-1]],[[5652,4623],[6,-1]],[[5658,4622],[6,1]],[[5664,4623],[5,-2],[3,1]],[[5672,4622],[1,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[1,-2],[0,-1]],[[5673,4613],[-3,-10]],[[5670,4603],[0,-2],[-1,-2],[1,-3],[2,-4],[3,-2],[3,1],[2,-4],[3,1],[6,-4],[4,-12],[3,-8],[4,-2],[1,-6]],[[5701,4556],[0,-5],[1,-2],[0,-2]],[[5702,4547],[0,-1],[-1,-1],[-2,-2],[-1,-1],[0,-1],[1,-1],[0,-4],[4,-6],[1,-6],[18,-24],[2,-11],[4,-9],[4,-5],[0,-1],[0,-1]],[[5732,4473],[0,-3]],[[5732,4470],[-1,-3],[-1,-3],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[1,-2]],[[5730,4456],[2,-5]],[[5732,4451],[2,-2],[2,-17],[5,-3],[3,-8],[5,-3]],[[5749,4418],[1,-5],[3,-1]],[[5753,4412],[1,-4]],[[5754,4408],[2,-9]],[[5756,4399],[1,0],[0,-1]],[[5757,4398],[0,-2]],[[5757,4396],[-1,-8],[-1,-1],[1,-1],[0,-2],[0,-4],[2,-9],[2,-4]],[[5760,4367],[1,-3],[0,-1],[1,-1]],[[5762,4362],[-1,1]],[[5761,4363],[-1,0],[-1,1],[-1,2],[-2,1],[-3,4],[-5,-3],[-2,-9],[-3,4],[-9,-2],[-2,6],[-2,0],[-5,8],[-3,-5],[-1,3],[-3,-1],[-1,-1]],[[5717,4371],[-3,4],[-2,5]],[[5712,4380],[-1,-1],[-1,5],[-2,-3],[-3,0],[-1,-2]],[[5704,4379],[-1,-6]],[[5703,4373],[-1,-3]],[[5702,4370],[2,-3],[-2,-8]],[[5702,4359],[-4,-1],[-2,-5],[-3,3],[-5,-5],[-3,0],[-2,7],[-4,6],[-1,-2],[-1,3],[-1,-2],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[-1,0]],[[5676,4358],[-5,-8]],[[5671,4350],[-2,1],[-4,-7],[-4,0],[-7,-7],[-5,-10],[-3,3],[-3,8],[-4,1],[-3,5],[-1,-2],[0,-1],[0,-1]],[[5635,4340],[-1,-4]],[[5634,4336],[-2,1],[-2,-17],[-2,0],[-1,-1],[0,-2],[0,-2],[0,-1],[1,-2],[-1,-1]],[[5627,4311],[-3,-14]],[[5624,4297],[-2,-2],[-6,1],[-5,6],[-4,0],[-4,4],[-5,-4],[-5,3],[-2,4],[-4,-2],[-2,6],[-6,4],[-7,-3],[-1,2],[-3,7],[-1,1],[0,2],[1,1],[0,1],[0,2],[-1,2],[-1,2],[-2,6],[-9,15],[-3,2],[-2,7],[-3,2],[-8,0],[-9,-16],[-2,-10],[-6,-15],[-3,-13],[-4,0],[0,-2],[-1,-2],[0,-1],[1,-1],[0,-2],[2,-7],[0,-3],[0,-6],[0,-4],[-1,-6],[0,-5],[0,-9],[1,-17]],[[5517,4247],[-3,9],[-8,-2],[-1,-7],[-3,7],[-7,-2],[-1,5],[-5,1],[-5,6],[-3,-6],[-10,-7],[-9,0],[-2,-5],[-2,-28],[-2,-8],[1,-9],[-8,-43]],[[5449,4158],[-2,13],[0,12],[-1,9],[0,11],[-3,8],[-1,9],[-4,1],[-17,47],[-3,9],[1,16],[-1,11],[-2,10],[-6,10],[-2,6],[-1,26],[0,11],[-1,6],[-3,4],[2,9],[0,15],[1,9],[-1,13],[-3,-1],[-3,8],[4,12],[5,5],[6,32],[3,6],[5,33],[6,10],[1,10]],[[5429,4538],[6,-1],[3,-4],[4,2],[4,8],[8,5],[1,9],[4,6],[2,-15],[4,-8],[3,6],[7,3],[4,10],[6,5],[6,7],[6,-1],[4,3],[13,1],[2,1],[2,12],[4,5],[3,11],[6,17],[-6,9],[-1,7],[6,9],[5,1],[3,-2],[14,3],[5,7],[5,-2],[5,2],[2,9],[9,11],[12,40],[3,-1],[3,14],[5,5],[3,13],[-1,16],[4,2],[4,6],[1,7],[3,-2],[3,7],[5,6],[8,-2],[3,-4]],[[3145,7212],[1,-9],[-4,2],[3,7]],[[2957,7265],[-2,-6],[-5,5],[5,9],[2,-8]],[[3319,7370],[0,-6],[5,-4],[-1,-17],[-4,-18],[2,-6],[-7,-14],[-4,-11],[-4,-4],[1,-9],[6,-3],[0,13],[3,15],[7,15],[5,-6],[3,1],[5,-5],[2,-12],[-1,-5],[-6,-10],[-9,-11],[-9,-6],[-8,3],[-3,-3],[-6,0],[-3,11],[-3,23],[3,8],[4,7],[6,15],[6,25],[3,3],[4,14],[3,-3]],[[3221,7358],[-2,-3],[7,-12],[-1,-7],[4,-6],[3,9],[8,-5],[4,-5],[7,0],[12,4],[12,0],[-2,-9],[-4,-1],[-4,-9],[-4,2],[1,-19],[-6,-1],[-4,6],[-2,10],[-3,2],[-4,-5],[-11,6],[-8,14],[-6,-1],[1,10],[-4,6],[-5,4],[5,15],[5,9],[3,-9],[-2,-5]],[[1569,7506],[4,-8],[-4,-5],[-2,9],[2,4]],[[2924,7227],[7,5],[2,5],[7,7],[3,0],[10,14],[3,-1],[4,24],[5,7],[3,15],[6,6],[5,2],[7,13],[6,5],[2,7],[5,4],[5,7],[4,-3],[11,8],[4,7],[5,1],[12,11],[5,8],[5,14],[3,4],[1,7],[7,11],[7,16],[3,11],[3,2],[8,15],[6,10],[3,0],[14,19],[7,4],[11,12],[4,1],[22,18],[11,6],[10,1],[8,3],[17,-3],[10,-7],[11,-17],[-2,-4],[0,-8],[3,-7],[-1,-8],[-3,-7],[-6,-2],[-5,-5],[-2,-8],[-14,-14],[-14,7],[-4,6],[-4,-7],[-5,1],[0,-7],[12,-7],[6,-18],[4,1],[7,10],[5,2],[6,-2],[4,-7],[-6,-11],[1,-6],[-3,-14],[-10,-13],[14,-1],[1,-8],[-3,-7],[1,-7],[4,-7],[0,-8],[3,-11],[-1,-7],[4,-6],[7,-1],[3,-4],[3,1],[6,-3],[-2,-12],[2,-6],[10,-5],[7,-6],[4,3],[9,-1],[7,-11],[16,20],[0,-14],[8,-6],[4,5],[6,-17],[3,-7],[5,-3],[-3,-6],[-7,0],[-2,-4],[-7,-2],[-6,-8],[-19,-12],[-7,-6],[-9,-2],[-4,-8],[-4,1],[-3,-4],[-1,-9],[-4,-1],[-6,4],[-1,8],[-3,1],[-2,-6],[-6,-7],[0,-9],[-6,-18],[-7,-9],[0,-7],[-4,-7],[-8,-6],[-7,-13],[-4,0],[-3,5],[0,7],[-6,5],[-4,1],[-1,11],[0,7],[-1,8],[2,17],[8,15],[-5,2],[8,10],[14,17],[10,13],[10,6],[4,-2],[4,-6],[3,7],[8,5],[6,8],[-13,1],[-9,-3],[-5,4],[-4,-7],[-6,2],[3,10],[5,5],[6,11],[0,6],[-4,2],[-5,-14],[-4,0],[-3,-5],[-9,-7],[-6,-9],[-10,-9],[-6,5],[-2,-7],[-7,-7],[-1,5],[-7,-7],[-10,3],[-2,6]],[[3134,7240],[-5,-1],[-4,8],[2,8],[-2,7],[1,9],[-6,2],[-4,4],[1,9],[0,29],[-1,58],[-4,12],[-7,10],[-9,-3],[-3,-4],[-7,-4],[-4,4],[-1,13],[-5,1],[-21,-53],[-2,-20],[-3,-5],[-3,-10],[0,-10],[1,-11],[-4,-9],[0,-5],[-8,-11],[-1,-7],[-3,-6],[-5,-3],[-3,-7],[-5,3],[-3,-4],[-3,-16],[-22,0],[-30,-1],[-37,0]],[[3498,7567],[1,-5],[-7,-6],[-1,6],[7,5]],[[1479,7575],[3,-7],[-1,-12],[-6,7],[0,7],[4,5]],[[3218,7582],[5,-4],[16,-5],[12,-6],[2,-3],[10,-7],[4,-8],[5,-5],[9,-5],[6,-14],[-4,-6],[-12,0],[-8,5],[-4,0],[-12,7],[-5,5],[-9,6],[-1,9],[-8,11],[-14,10],[-1,7],[9,3]],[[1495,7639],[-3,-6],[-8,3],[5,8],[3,1],[3,-6]],[[1448,7648],[10,-7],[9,-11],[20,-10],[10,-2],[10,-7],[4,1],[5,-4],[2,-13],[5,-15],[8,-14],[-1,-8],[3,-10],[7,-7],[11,-5],[6,-6],[4,-8],[0,-9],[6,-11],[1,-14],[4,-1],[3,-13],[-4,0],[-3,-8],[-10,2],[-13,11],[-8,4],[-12,12],[-3,5],[5,7],[2,6],[-12,0],[-3,-5],[-7,10],[1,9],[-4,6],[-3,-2],[-3,10],[-9,3],[-5,0],[0,12],[3,4],[-4,6],[-1,12],[-14,-2],[-9,19],[-9,-3],[-3,4],[4,6],[-4,17],[9,1],[0,6],[-13,-8],[-8,11],[-2,13],[9,6],[6,0]],[[3447,7702],[0,-9],[11,8],[3,-2],[-3,-14],[-3,-6],[-10,3],[-1,-9],[4,1],[4,-3],[-1,-9],[-3,-11],[-16,-39],[-2,-12],[-6,-12],[0,-6],[-2,-11],[2,-8],[11,25],[5,9],[12,-16],[-6,-23],[8,-16],[2,6],[12,5],[-2,-20],[13,4],[6,15],[1,-9],[12,5],[11,-8],[6,-9],[-4,-14],[-9,-9],[1,-12],[5,-7],[-6,-6],[11,-8],[3,12],[4,-7],[3,8],[5,-3],[-2,-12],[-4,-5],[-4,0],[-1,-5],[-7,-9],[-9,1],[1,-7],[6,0],[2,-5],[-6,-22],[7,-12],[3,11],[0,4],[6,19],[11,8],[-5,-14],[-5,-24],[3,-12],[7,13],[2,13],[3,-2],[2,-17],[-5,-15],[-2,-15],[1,-6],[-3,-17],[-3,-9],[-4,-2],[-5,7],[-5,-8],[-2,3],[0,13],[2,7],[-2,3],[3,10],[-1,3],[-6,-9],[-3,-9],[-5,-7],[-4,1],[1,13],[7,26],[1,11],[-4,20],[-3,2],[-9,-24],[-4,-6],[-7,-2],[-4,-8],[-3,-15],[-4,-10],[-5,-4],[-4,2],[-8,-2],[-3,7],[3,8],[10,4],[6,10],[3,13],[6,4],[-3,6],[-9,7],[-1,-16],[-10,-1],[-7,6],[5,4],[-3,12],[-7,-9],[-5,-2],[-8,1],[-3,-6],[-5,3],[-4,-1],[-6,5],[-14,1],[-7,3],[-13,-4],[-6,-3],[-9,-2],[-6,3],[1,11],[-3,9],[4,9],[7,8],[13,24],[-8,8],[4,2],[0,9],[6,24],[7,1],[3,8],[-4,6],[1,13],[8,10],[-1,8],[9,34],[5,22],[8,20],[5,9],[0,7],[5,11],[2,13],[6,7],[17,15]],[[1448,7691],[-6,1],[-2,10],[4,7],[4,-18]],[[1445,7734],[-2,-16],[-5,8],[2,6],[5,2]],[[2798,7735],[-2,-9],[-8,-1],[-1,3],[9,9],[2,-2]],[[1437,7746],[-1,-7],[-6,1],[2,6],[5,0]],[[1462,7748],[-8,-9],[-1,-10],[-6,-3],[1,14],[3,7],[7,5],[3,5],[5,-3],[-4,-6]],[[1430,7772],[-1,-12],[-5,6],[0,6],[6,0]],[[1434,7756],[-2,11],[0,15],[3,-4],[1,-12],[-2,-10]],[[1415,7780],[4,-8],[-4,-5],[-7,17],[7,-4]],[[2738,7817],[8,-2],[10,-18],[3,-15],[-10,1],[-7,7],[-5,1],[-14,8],[-3,4],[5,11],[13,3]],[[1339,7819],[0,-6],[5,-8],[0,-10],[-7,-4],[1,-10],[3,-2],[2,-11],[7,-6],[2,-12],[5,2],[2,-7],[-2,-6],[-7,5],[-8,20],[-6,6],[-7,13],[-5,14],[-5,7],[4,6],[8,2],[8,7]],[[1427,7812],[2,-10],[1,-12],[-3,-17],[-4,-1],[-8,10],[-4,21],[3,4],[0,16],[5,-1],[8,-10]],[[1413,7808],[-6,2],[1,7],[3,6],[2,-15]],[[1419,7826],[-7,1],[4,12],[3,-13]],[[1382,7842],[7,-8],[7,-16],[-6,-5],[-4,10],[-6,6],[-6,12],[1,6],[7,-5]],[[1386,7844],[-4,0],[-5,6],[4,5],[4,-4],[1,-7]],[[1395,7849],[12,-22],[-6,-11],[-7,12],[-3,16],[-3,-1],[-2,9],[-3,1],[-2,8],[2,6],[10,-13],[2,-5]],[[1381,7874],[1,-6],[-3,-7],[-9,11],[8,7],[3,-5]],[[1305,7884],[12,-3],[1,-6],[7,6],[4,-9],[1,-8],[-3,-7],[-8,-6],[6,-5],[4,5],[-1,5],[3,9],[-1,10],[5,0],[6,6],[1,-9],[-5,-15],[-2,-19],[1,-11],[-3,-8],[-13,-7],[-8,12],[7,6],[-12,8],[1,7],[-7,20],[4,19]],[[3389,7936],[1,-7],[-6,-2],[-2,7],[7,2]],[[3283,8046],[11,-2],[-2,-5],[-6,3],[-3,4]],[[2815,8041],[-1,-11],[-4,-4],[0,16],[5,-1]],[[2787,8042],[-9,-11],[-3,2],[6,11],[6,-2]],[[2801,8063],[3,-15],[-1,-15],[-3,-2],[-5,-16],[-3,-8],[-5,2],[5,14],[-3,1],[-8,-19],[-4,4],[8,19],[5,7],[4,-2],[3,18],[0,13],[4,-1]],[[3293,8083],[2,-5],[0,-12],[-2,-5],[-6,8],[1,11],[5,3]],[[3078,8242],[3,-4],[-4,-8],[-4,11],[5,1]],[[3204,8338],[6,-8],[-9,0],[3,8]],[[3109,8346],[7,-9],[-4,-10],[-10,-10],[-3,5],[5,23],[5,1]],[[3200,8420],[3,-12],[-5,-9],[-17,19],[1,4],[11,3],[7,-5]],[[3192,8442],[7,-12],[-9,1],[-3,10],[5,1]],[[2793,8474],[5,-9],[0,-8],[-8,-28],[-6,-12],[-11,14],[-3,11],[2,15],[10,19],[11,-2]],[[3203,8485],[9,-2],[-7,-10],[-9,4],[3,10],[4,-2]],[[3033,8507],[9,-5],[8,-13],[-5,-5],[-9,2],[-4,6],[-2,10],[3,5]],[[2719,8516],[7,-3],[-3,-16],[-9,-8],[-4,-9],[-9,-11],[-11,-10],[-4,6],[-11,-8],[-2,12],[-4,6],[0,7],[5,5],[5,10],[1,9],[6,7],[5,-6],[10,7],[9,-1],[9,3]],[[2822,8554],[15,-2],[4,-2],[6,-12],[-4,-9],[-8,-4],[-17,21],[4,8]],[[3216,8546],[-6,6],[-2,11],[4,3],[4,-20]],[[2857,8566],[12,-7],[3,-6],[-3,-8],[-8,3],[-12,13],[1,7],[7,-2]],[[2625,8719],[8,1],[4,-14],[-7,-5],[7,-6],[6,-18],[7,20],[12,-11],[2,-9],[19,-5],[5,-14],[9,-5],[5,-7],[10,-1],[7,-5],[9,-13],[2,-19],[2,-9],[-8,-4],[-1,-5],[14,3],[2,3],[11,-1],[3,4],[19,-27],[-7,-1],[-4,-7],[-12,-13],[-17,9],[-12,8],[-11,0],[-1,8],[4,4],[-5,8],[-17,3],[5,8],[-1,5],[-15,-6],[-4,-7],[2,-6],[0,-11],[-5,0],[-7,-11],[-6,0],[-4,-5],[-5,-17],[-10,-9],[-9,-5],[-7,1],[-3,8],[0,31],[-4,3],[-14,-5],[-11,1],[-5,-7],[-6,-1],[-4,8],[9,19],[19,13],[-4,14],[-1,10],[1,15],[5,21],[0,24],[4,28],[3,7],[9,10],[3,-8]],[[2638,8734],[9,-12],[3,-14],[-3,-6],[-12,15],[-2,13],[5,4]],[[2657,8742],[8,-4],[10,-10],[-3,-7],[9,-7],[-9,-3],[-2,7],[-8,-1],[1,10],[-10,12],[4,3]],[[2936,8883],[24,-8],[1,-14],[-28,0],[-7,6],[-3,15],[13,1]],[[2600,8873],[-6,-15],[-6,4],[-5,20],[3,8],[6,9],[8,-7],[0,-19]],[[2900,8900],[13,-6],[3,-9],[-4,-11],[3,-10],[0,-19],[-9,-14],[-14,-7],[-10,1],[-11,-3],[-10,1],[-5,13],[-4,20],[3,12],[9,20],[5,8],[11,5],[20,-1]],[[2805,8890],[-5,3],[1,9],[10,-4],[-6,-8]],[[2096,8906],[-10,4],[-5,7],[11,2],[6,-5],[-2,-8]],[[2919,8917],[4,-5],[-2,-10],[-15,11],[-1,9],[4,7],[8,-4],[2,-8]],[[2173,8934],[2,-8],[-4,-7],[-13,6],[8,11],[7,-2]],[[2218,8943],[-1,-8],[-5,-6],[-7,4],[-1,16],[7,2],[7,-8]],[[2820,8977],[7,-6],[-7,-6],[-2,-9],[-8,-13],[-16,-4],[0,5],[6,11],[9,5],[4,12],[7,5]],[[2495,8977],[-3,-9],[-6,5],[9,4]],[[2860,8979],[10,-2],[0,-6],[-9,-12],[-8,0],[-3,9],[1,9],[9,2]],[[2315,8989],[14,0],[0,-14],[-13,10],[-1,4]],[[2342,8993],[8,-6],[-1,-10],[-16,7],[2,7],[7,2]],[[3114,9000],[4,-6],[-6,-7],[-7,5],[9,8]],[[2834,8998],[-3,-8],[-12,-6],[-5,5],[15,14],[5,-5]],[[2787,9008],[6,-2],[3,-7],[-8,-6],[-16,0],[-17,7],[9,5],[14,-4],[9,7]],[[2294,8992],[5,6],[9,-13],[10,-5],[9,-8],[7,-13],[0,-6],[3,-12],[8,-4],[4,-7],[-11,0],[-13,-18],[-6,-3],[-15,8],[-3,-3],[-11,4],[-6,6],[-14,6],[-7,1],[-9,6],[-9,0],[-7,4],[-5,11],[8,8],[9,-1],[8,4],[8,11],[-5,7],[0,8],[6,3],[4,14],[9,7],[12,-8],[2,-13]],[[2583,9029],[10,0],[4,-9],[-8,-1],[-14,4],[8,6]],[[2203,9070],[9,-6],[-8,-4],[-1,10]],[[3005,9097],[13,-6],[-3,-5],[-5,-1],[-14,-5],[-3,7],[6,9],[6,1]],[[2924,7227],[-4,1],[-11,-11],[-12,-20],[-5,-13],[-5,-4],[-4,-9],[-7,-10],[-10,-31],[-1,-2],[-19,0],[-32,1],[-14,-12],[4,-15],[0,-18],[4,-4],[-3,-11],[-34,-31],[-29,-11],[-32,-39],[-8,1],[-10,12],[-2,11],[1,17],[2,6],[7,7],[8,16],[3,29],[7,36],[0,4],[-4,45],[-7,76],[-1,6],[-28,31],[3,13],[-4,9],[-6,0],[-3,-4],[-4,10],[-2,17],[1,6],[-8,-1],[-5,-2],[-5,11],[-3,19],[-18,19],[-31,33],[-21,22],[-26,27],[-9,-4],[-19,-19],[-18,2],[-5,7],[-10,-2],[-7,1],[-4,9],[-10,-11],[-4,-2],[-7,4],[-2,7],[-6,2],[-2,8],[-7,-2],[-2,-5],[-4,15],[-4,7],[-9,5],[-8,1],[-6,-6],[-8,-2],[-3,9],[-10,1],[-2,4],[-8,1],[-3,6],[0,8],[-3,18],[0,9],[-5,4],[-5,1],[0,-27],[-31,0],[-42,0],[-43,0],[-31,0],[-30,0],[-25,0],[-30,0],[-24,0],[-31,0],[-30,0],[-49,0],[-25,0],[-36,0],[-31,0],[-37,0],[-18,0],[-43,0],[-30,0],[-43,0],[-43,0],[-48,0],[-46,0]],[[1590,7513],[-5,7],[-3,-7],[-1,0],[-4,10],[2,11],[-3,9],[0,14],[-6,-6],[-2,-9],[-12,9],[-2,8],[2,13],[-12,-3],[-9,13],[4,20],[-4,9],[-9,-2],[-2,8],[-7,4],[-9,-4],[-4,6],[-3,-3],[-8,2],[1,10],[5,1],[-4,14],[-9,-3],[-10,9],[-5,-8],[-11,8],[-9,16],[2,12],[-5,25],[0,17],[5,3],[1,9],[14,20],[-2,7],[-6,-3],[-2,-4],[-8,-8],[-6,7],[-2,12],[-4,3],[3,14],[-10,8],[-2,20],[-9,12],[0,10],[3,8],[-1,16],[-2,4],[-7,-8],[-3,-7],[0,-13],[-3,-4],[-21,40],[0,15],[-5,4],[0,10],[-5,0],[1,15],[1,7],[5,5],[4,20],[-3,5],[6,14],[-4,23],[-1,10],[3,12]],[[1388,8009],[-1,13],[-9,3],[-3,8],[-4,2],[-6,8],[-7,2],[-13,14],[-6,-1],[-2,15],[-7,5],[2,12],[-8,4],[3,8],[-9,22],[-10,27],[-5,9],[-2,10],[-6,11],[-2,12],[-5,6],[-7,13],[-10,8],[-4,10],[0,5],[-9,14],[-6,2],[-5,10],[2,9],[-6,12],[-7,6],[-12,-9],[-9,-3],[-1,-10],[-5,-2],[0,-12],[-4,-9],[-6,-1],[-12,-12],[-4,-5],[-6,24],[-27,36],[-3,10],[-8,7],[-5,6],[3,17],[-1,3],[-15,-1],[-10,-10],[-12,7],[-3,-5],[-13,7],[0,94],[0,74],[0,52],[0,84],[0,73],[0,94],[0,63],[0,83],[0,53]],[[1083,8996],[22,-4],[8,2],[22,-8],[14,-17],[9,-4],[6,-6],[25,-14],[15,-5],[4,3],[12,-2],[12,-9],[0,9],[-6,1],[-4,8],[1,15],[4,6],[15,8],[4,4],[14,1],[6,12],[8,-8],[10,-4],[-9,-10],[11,-1],[2,5],[12,1],[6,7],[3,10],[9,6],[11,-4],[15,14],[10,5],[5,-4],[4,13],[17,5],[11,-5],[7,11],[7,-8],[-5,-9],[-27,-17],[-10,-13],[-4,4],[-12,-4],[-13,-3],[-4,-12],[-18,-8],[-4,-9],[-8,-6],[0,-7],[-7,-11],[14,5],[12,-4],[-1,8],[-8,0],[-1,11],[14,6],[14,9],[7,14],[5,-3],[7,5],[7,-8],[13,13],[3,9],[18,7],[15,3],[5,-11],[19,22],[-2,8],[7,6],[2,8],[-4,11],[7,8],[14,-11],[8,-11],[8,-18],[4,-17],[13,-17],[9,-8],[13,-7],[8,5],[0,5],[-7,10],[1,7],[10,4],[3,14],[-2,4],[8,8],[9,2],[-4,-16],[3,-4],[-3,-9],[12,-5],[-10,-14],[0,-7],[25,0],[5,9],[5,0],[2,12],[-1,7],[6,5],[13,-2],[12,1],[17,-4],[17,-10],[15,-16],[45,-13],[5,-7],[12,-7],[51,-14],[1,11],[16,-1],[17,-8],[13,-10],[9,-11],[4,-9],[0,-10],[-22,-3],[-2,-8],[-8,-1],[-2,-7],[-7,-7],[11,-10],[9,1],[11,-5],[15,-4],[15,1],[8,-2],[17,0],[15,6],[10,1],[6,4],[8,-4],[17,12],[12,2],[8,-11],[6,-5],[11,-2],[4,-13],[9,6],[4,-13],[13,-11],[3,-17],[-9,-2],[14,-29],[4,-2],[-6,26],[8,-2],[7,11],[-8,10],[-4,11],[2,9],[-11,14],[1,12],[8,6],[-7,5],[1,6],[13,-4],[14,6],[3,6],[9,3],[6,10],[16,7],[-5,11],[-18,-8],[-2,-8],[-12,-3],[-3,-5],[-20,2],[3,-11],[-17,-2],[-1,8],[-12,1],[15,25],[27,5],[31,18],[12,-6],[8,-10],[-2,-5],[4,-9],[-4,-6],[12,-12],[14,-3],[-2,-7],[5,-7],[17,-1],[10,8],[5,-8],[11,-7],[5,-8],[15,-7],[8,5],[3,-5],[11,0],[13,2],[7,7],[15,0],[21,-4],[5,-5],[9,-1],[16,8],[-11,10],[6,6],[8,-9],[4,-11],[14,-11],[15,5],[-2,7],[-14,17],[-15,-10],[-8,14],[4,7],[-5,4],[-2,9],[10,-3],[11,8],[-1,9],[16,-5],[7,-9],[2,-7],[7,3],[6,-5],[-9,-11],[6,-2],[5,9],[11,6],[-6,-34],[1,-5],[-8,-11],[11,-23],[9,10],[10,-15],[4,7],[-6,27],[-6,5],[4,7],[-1,7],[3,12],[17,-3],[14,16],[4,9],[7,7],[11,7],[-5,3],[4,18],[-1,7],[-7,4],[-5,-7],[-1,-11],[-9,-3],[-6,2],[2,10],[12,17],[-5,2],[2,13],[6,2],[9,-10],[7,10],[-3,12],[-10,-7],[-11,1],[-7,14],[-9,-5],[-15,8],[-6,7],[-9,0],[-14,23],[-3,15],[11,23],[-12,14],[2,8],[3,23],[6,9],[6,2],[10,-9],[5,5],[0,9],[-13,5],[12,12],[5,0],[3,17],[18,3],[4,-4],[-3,-12],[13,1],[7,-10],[16,-13],[7,-8],[3,-15],[-1,-18],[8,-15],[10,-4],[7,-22],[8,2],[5,-15],[-13,-2],[-7,7],[-6,-8],[10,-1],[5,-5],[-9,-10],[-17,-13],[11,0],[10,-10],[9,-3],[10,11],[5,-2],[4,-9],[13,1],[4,-6],[-8,-6],[-1,-8],[-6,-2],[10,-10],[6,-14],[-1,-21],[-3,-11],[7,-5],[2,-9],[8,9],[4,12],[-3,5],[7,15],[1,16],[9,15],[11,-1],[6,-11],[13,-11],[7,-9],[6,-34],[-4,-9],[-13,5],[3,-11],[-2,-11],[6,-21],[19,-23],[4,-13],[10,6],[0,8],[5,3],[8,-2],[-1,22],[4,9],[14,17],[0,9],[5,16],[-1,17],[2,6],[12,0],[3,8],[6,8],[4,10],[-12,3],[-4,5],[-5,19],[2,8],[-2,14],[23,6],[10,1],[16,-11],[33,-3],[-1,-7],[9,-11],[1,-13],[14,2],[11,-6],[0,-6],[-10,-14],[10,-3],[3,-6],[-1,-10],[-10,-9],[-10,-6],[-16,5],[6,-10],[0,-13],[7,-5],[0,-15],[18,-19],[6,-13],[-5,-26],[-3,-7],[-12,-1],[-6,-15],[-5,-3],[-8,-12],[-10,-1],[-1,-4],[-9,-10],[-6,1],[-3,11],[-4,2],[-8,12],[-2,-9],[6,-8],[8,-20],[-8,0],[-6,9],[-6,-1],[1,-9],[-25,7],[-4,20],[-9,-3],[-24,-1],[-5,-6],[5,-8],[7,-2],[14,-9],[-3,-9],[-13,-9],[-1,-12],[-10,-13],[-8,-6],[1,-5],[-8,-5],[-16,0],[-7,5],[-10,13],[-1,4],[-11,4],[-20,18],[-4,-8],[3,-8],[7,-8],[3,-8],[5,-5],[4,-7],[36,-5],[11,1],[9,-3],[3,-7],[-19,-42],[-4,-2],[-8,-25],[-19,-15],[-12,5],[-3,-4],[-7,7],[-11,3],[3,-12],[-8,1],[4,-11],[-6,-11],[-10,-2],[-6,-4],[-6,0],[-11,9],[-11,3],[-17,2],[-12,9],[-7,2],[-12,8],[-8,-3],[7,-11],[8,5],[17,-9],[18,-8],[5,3],[6,-10],[11,-6],[11,-10],[2,-6],[2,-15],[-5,-9],[-6,1],[-11,-12],[-15,4],[-13,-3],[7,-10],[8,-1],[-2,-8],[-8,2],[-13,-7],[4,-16],[-14,-5],[4,-5],[-15,-18],[5,-7],[-15,-14],[-4,-7],[4,-9],[-5,-7],[-6,-24],[-3,-3],[-5,-23],[-4,-5],[2,-6],[-3,-9],[0,-11],[-3,-11],[1,-13],[-1,-9],[3,-15],[-3,-30],[9,-15],[3,-7],[7,4],[7,-1],[4,2],[15,-2],[2,-16],[4,-20],[5,-13],[1,-15],[8,-30],[1,-16],[-6,-16],[10,5],[2,-4],[33,18],[12,-3],[22,-18],[12,-3],[9,-6],[4,0],[7,-11],[10,-11],[9,-7],[11,-27],[7,-8],[13,-3],[16,-14],[11,-4],[6,-6],[6,-11],[8,-5],[1,-4],[14,-4],[19,6],[5,-3],[15,-5],[8,0],[3,-5],[4,2],[11,-3],[1,-18],[1,-4],[-6,-32],[0,-11],[5,-12],[3,-18],[-2,-15],[3,-23],[-4,-4],[-1,-18],[8,-13],[2,-8],[10,-16],[0,-10],[5,-14],[11,-9],[2,-6],[4,-4],[5,-11],[2,-12],[4,-14],[7,-3],[11,-13],[1,19],[5,7],[-1,5],[6,8],[13,-19],[2,8],[0,7],[-4,4],[-2,10],[5,3],[-2,7],[4,2],[5,10],[2,18],[0,7],[-8,14],[0,16],[-3,3],[-2,11],[2,9],[-2,18],[1,8],[-3,4],[1,17],[-2,11],[-4,11],[-7,11],[-1,19],[-4,8],[5,5],[14,7],[3,4],[13,8],[7,8],[10,10],[4,7],[15,22],[2,8],[10,20],[3,16],[2,35],[-3,35],[-6,25],[0,4],[-7,21],[-15,22],[-12,8],[-8,14],[-6,2],[2,8],[-3,16],[8,2],[0,6],[4,4],[1,7],[8,6],[1,9],[-3,5],[5,10],[7,4],[5,25],[-8,2],[3,12],[-8,15],[4,5],[-6,10],[6,9],[-16,7],[10,16],[2,11],[-1,16],[5,0],[-3,11],[-6,6],[-4,14],[-3,20],[1,9],[18,21],[21,-6],[4,-3],[21,-11],[14,1],[18,-5],[8,0],[3,5],[9,4],[3,6],[5,1],[3,-6],[10,-6],[4,-9],[12,-6],[1,-11],[10,-5],[8,-12],[8,-4],[-1,-8],[-4,-9],[5,-3],[-1,-7],[8,-9],[5,1],[8,-7],[9,-3],[8,5],[6,-3],[1,-14],[5,-4],[10,20],[4,-20],[-9,-9],[1,-9],[-2,-16],[4,-8],[0,-9],[-4,-9],[5,-7],[-2,-12],[2,-7],[-3,-11],[2,-11],[5,4],[5,-2],[0,-7],[-8,-3],[2,-21],[-3,-6],[-7,1],[-6,-1],[6,-15],[16,21],[13,2],[12,-10],[0,-12],[6,-7],[7,-2],[6,-5],[-2,-6],[5,-8],[3,4],[11,8],[3,7],[9,0],[0,7],[4,9],[2,10],[8,-5],[4,9],[9,12],[-2,14],[9,10],[-4,23],[4,6],[7,6],[1,8],[7,25],[6,-1],[6,-6],[-1,-14],[7,-1],[2,-11],[-1,-9],[1,-7],[11,-12],[-2,-10],[8,-2],[4,-9],[-2,-7],[15,-21],[2,-11],[-7,-8],[2,-10],[7,5],[5,1],[-2,-24],[10,-10],[5,-14],[3,-4],[3,-11],[-5,-6],[-6,-1],[-2,-7],[10,2],[6,-6],[-2,-12],[2,-4],[8,0],[4,-2],[1,-10],[-5,-1],[-8,-13],[3,-4],[-5,-7],[3,-11],[-5,-1],[6,-11],[-4,-6],[9,-2],[5,2],[1,-19],[7,-3],[0,-6],[8,1],[5,-5],[3,1],[3,-9],[-1,-18],[4,-14],[10,0],[6,3],[-1,-9],[9,0],[5,5],[3,-2],[4,-8],[-1,-4],[4,-9],[6,-6],[13,-1],[2,-4],[8,0],[5,-8],[6,1],[1,-10],[-8,-9],[-6,0],[-8,-2],[-1,-7],[-6,-2],[-8,-6],[-7,-12],[-6,-3],[-9,-8],[-7,2],[-9,-7],[0,-15],[2,-5],[-9,-7],[7,-3],[7,12],[10,4],[4,7],[8,2],[0,8],[6,10],[17,9],[-5,6],[5,7],[6,0],[18,-7],[6,-29],[-8,-7],[3,-4],[6,2],[4,8],[10,1],[0,-6],[5,-3],[11,-2],[0,-11],[6,-7],[0,-10],[2,-4],[-6,-9],[4,-13],[-6,-6],[3,-8],[-2,-9],[7,-1],[3,-4],[-1,-24],[-6,-7],[-1,-6],[-8,-9],[-3,-2],[-18,-25],[-6,-1],[-2,7],[-11,-5],[-2,2],[-7,-10],[-7,-4],[-6,3],[-6,-7],[-1,-8],[-7,-5],[-1,-18],[-12,-9],[-4,-13],[-6,-2],[-2,-10],[-6,-4],[-12,0],[-3,-3],[-6,3],[-9,-5],[-4,1],[-12,-7],[-3,8],[-28,6],[-9,-1],[-8,-4],[-7,5],[-8,1],[-7,-3],[-6,4],[-12,-4],[-10,4],[-13,-5],[-6,3],[-6,-7],[-11,1],[-5,-12],[-6,-4],[-3,-12],[-2,1],[-3,-16],[0,-11],[-4,-9],[-21,-5],[-1,-10],[-6,1],[-7,-9],[0,-7],[-4,-1],[-8,-11],[-2,-11],[-8,-22],[-6,-9],[-4,-1],[-5,9],[-5,0],[-6,7],[-10,4],[0,-5],[7,0],[9,-8],[3,0],[9,-9],[-6,-25],[-7,-13],[-1,-7],[-8,-5],[-6,-22],[-6,-7],[-11,-20],[-10,-5],[-5,1],[-5,-7],[-5,-3],[0,-6],[-6,-5],[-4,-7],[-11,-6],[-1,-8],[-3,-2],[-4,-14],[-6,-11],[-7,-4],[-4,-10],[-5,-5],[3,-8],[-15,-15],[-6,-10]],[[2312,9244],[3,-11],[-8,-2],[-6,10],[11,3]],[[1828,9258],[6,-13],[-2,-11],[1,-13],[-10,-3],[1,-11],[25,11],[-5,2],[12,15],[4,2],[27,-8],[23,-13],[-2,-11],[-7,-9],[10,-7],[13,16],[14,-3],[5,-6],[7,4],[-12,16],[0,7],[-7,1],[-6,13],[17,-1],[20,-16],[5,-1],[9,-11],[6,-3],[-1,-15],[7,-17],[0,-9],[7,-3],[-3,-11],[8,-8],[9,1],[12,14],[-11,9],[-4,8],[2,12],[-5,12],[0,7],[-7,23],[-1,12],[-3,6],[6,7],[1,8],[10,-2],[14,-9],[10,8],[16,-16],[11,-2],[14,-22],[-4,-3],[8,-16],[-3,-3],[9,-19],[-2,-5],[18,-37],[3,-16],[-6,-3],[1,-8],[-4,-10],[14,-13],[2,-8],[14,-13],[11,-2],[20,-11],[13,-11],[7,3],[3,-13],[16,3],[1,-17],[3,-9],[-3,-10],[-20,2],[-9,8],[-16,-5],[2,-13],[-14,-3],[5,-9],[11,6],[11,1],[3,-5],[-8,-11],[8,0],[5,-10],[-6,-11],[-11,-3],[-4,-5],[-24,-6],[-29,12],[-5,-6],[-14,2],[-4,4],[9,7],[-15,4],[-11,6],[-9,-2],[-6,2],[4,8],[-2,8],[-7,7],[-5,-9],[-5,-1],[1,-9],[-12,-15],[-17,-6],[-16,0],[-1,-5],[-11,-10],[-18,-7],[-28,-2],[-18,-7],[-7,2],[-29,-2],[-5,-4],[-17,10],[-8,15],[2,18],[0,10],[-23,7],[-22,-4],[-22,4],[-18,12],[0,8],[-17,14],[-5,16],[13,10],[26,6],[51,7],[15,-3],[5,1],[24,-6],[9,8],[9,-3],[4,6],[-9,10],[-22,5],[-8,6],[-10,0],[-12,5],[-5,-3],[-39,-7],[-13,0],[-5,5],[-21,-3],[-16,0],[-4,7],[-13,10],[-6,13],[17,11],[9,1],[18,7],[25,8],[-8,7],[-37,-9],[-17,1],[-5,3],[6,8],[1,9],[-27,-3],[-3,11],[3,12],[8,8],[2,6],[15,7],[1,5],[-13,9],[11,15],[9,5],[14,15],[13,4],[7,4],[30,12],[27,14],[11,-6]],[[2094,9258],[-4,-8],[-13,-18],[-7,1],[-13,15],[-5,9],[-11,9],[-15,5],[13,16],[39,3],[19,-13],[-3,-19]],[[2768,9290],[25,-8],[36,2],[26,-11],[5,-11],[8,-3],[6,-14],[7,-2],[-2,-9],[6,-2],[-5,-9],[-52,6],[-13,-4],[-15,-7],[-10,1],[-11,6],[-6,14],[0,14],[-18,3],[-3,24],[3,8],[13,2]],[[2595,9297],[15,0],[26,-3],[4,-10],[-17,-11],[-13,-15],[-7,-16],[-12,-19],[1,-12],[10,-11],[2,-8],[-6,-13],[2,-14],[7,-16],[18,-20],[15,-6],[3,-11],[-10,0],[-8,-7],[18,-1],[4,20],[5,2],[-5,15],[-5,-3],[-11,2],[-5,11],[-8,9],[5,8],[2,12],[15,5],[5,5],[-16,4],[-5,3],[-5,13],[2,17],[5,17],[12,2],[-5,7],[10,11],[23,8],[10,7],[23,10],[36,-2],[8,-12],[3,-21],[14,-6],[2,-5],[-2,-12],[10,-15],[-8,-7],[1,-17],[-9,-9],[2,-20],[10,5],[-2,9],[12,16],[8,0],[6,-8],[7,7],[10,-14],[10,12],[1,11],[16,13],[10,4],[20,0],[7,-8],[25,-4],[15,-6],[7,-17],[-3,-10],[23,-3],[3,-8],[-4,-11],[-13,-6],[6,-5],[6,5],[19,2],[-2,-12],[12,-19],[17,16],[5,7],[24,-10],[13,-17],[-9,-14],[-11,3],[-6,-2],[-8,-15],[5,-4],[6,-2],[18,6],[4,11],[10,6],[8,-13],[-6,-7],[3,-8],[20,11],[9,-8],[10,1],[3,-4],[21,-10],[2,-7],[-5,-9],[-7,-3],[-21,-5],[10,-4],[11,1],[2,-5],[-8,-13],[6,-2],[10,10],[1,11],[4,6],[10,-3],[16,-22],[3,-17],[-6,-1],[-11,5],[-8,0],[-9,-11],[-7,-3],[17,-9],[21,0],[12,-9],[4,-11],[-28,0],[-11,3],[-1,-7],[10,-6],[-8,-5],[-3,-10],[-7,1],[-4,-7],[5,-9],[12,-7],[7,3],[17,-7],[8,-16],[13,-9],[2,-8],[12,-10],[1,7],[16,0],[6,6],[7,-5],[-9,-9],[1,-6],[11,4],[9,-7],[11,-35],[13,-2],[7,9],[5,-9],[-7,-6],[0,-7],[-3,-10],[12,5],[14,-2],[8,9],[14,-14],[9,-14],[1,-5],[-9,-9],[3,-8],[-13,-6],[-8,8],[-8,-12],[10,-8],[6,-7],[-13,-3],[3,-11],[-6,-2],[-2,-9],[-16,-1],[-6,-8],[0,-15],[-2,-13],[2,-6],[-8,-11],[-6,12],[-8,7],[-20,7],[-5,8],[-1,8],[-5,4],[-6,15],[4,11],[13,6],[-2,5],[-12,-7],[-14,-2],[-1,12],[-6,2],[-9,14],[-7,2],[-2,11],[-16,2],[7,-8],[-5,-11],[-7,10],[-8,-1],[3,-11],[12,-10],[0,-9],[4,-4],[-18,-4],[-9,11],[1,-17],[10,-11],[8,3],[5,-3],[-4,-10],[10,-4],[-3,-13],[2,-5],[10,-1],[-2,-11],[4,-4],[13,-5],[5,-11],[5,10],[7,-10],[0,-7],[-4,-10],[18,-2],[-6,-21],[6,-8],[11,-4],[-6,-9],[-1,-9],[7,-2],[5,-7],[0,-22],[-8,-1],[-4,17],[-5,-1],[10,-36],[-4,-13],[-6,7],[-3,-5],[7,-17],[-6,-7],[-5,10],[3,6],[-10,3],[-1,6],[-11,6],[-4,-3],[-9,9],[-5,-3],[-9,18],[-6,2],[-7,9],[-6,14],[-5,-12],[-7,10],[-7,4],[-3,6],[-12,1],[5,-15],[10,-13],[7,-15],[9,-5],[5,1],[3,-8],[9,-8],[6,-13],[12,-10],[7,-15],[10,-11],[-5,-8],[5,-14],[-9,-2],[-8,3],[-6,8],[-18,9],[-7,1],[-9,4],[-16,3],[-4,5],[-9,4],[-15,20],[0,8],[-10,2],[-8,-3],[-7,8],[-10,2],[-5,9],[-10,2],[-9,9],[-2,8],[2,10],[8,4],[1,9],[-13,11],[-5,-6],[-8,0],[0,14],[-8,0],[-8,16],[-5,7],[-2,7],[-7,-1],[-2,9],[0,14],[-12,-3],[-3,-16],[-4,3],[4,10],[-2,9],[-12,-2],[-4,-5],[3,-8],[-5,-3],[-14,5],[-13,9],[-5,-15],[-10,0],[-5,-7],[-9,1],[1,-7],[-12,8],[-15,5],[-2,-2],[-12,17],[0,12],[3,5],[-2,10],[5,7],[9,7],[9,3],[-5,9],[2,10],[9,-3],[12,-1],[25,-14],[9,-9],[1,-7],[-5,-8],[6,-3],[-1,16],[-11,14],[2,4],[14,-4],[10,10],[10,-3],[9,13],[8,0],[6,-5],[5,2],[-5,13],[-1,7],[-8,6],[-12,17],[3,10],[7,5],[17,18],[4,8],[9,9],[5,19],[13,5],[4,11],[-5,4],[-1,15],[-7,12],[2,7],[-7,4],[-4,23],[-6,7],[-14,3],[-6,7],[5,7],[1,7],[-5,7],[-6,-1],[6,-10],[-13,-1],[-14,20],[5,8],[-14,-2],[-8,2],[-23,-17],[-9,-1],[-1,6],[4,8],[-3,10],[6,3],[12,-3],[12,10],[-4,10],[-14,9],[-5,-1],[-9,12],[-9,2],[4,6],[0,10],[-17,3],[-5,-3],[0,26],[-6,6],[-7,-5],[-7,1],[-7,10],[-3,7],[-17,1],[-5,-5],[12,-6],[4,1],[6,-10],[3,-12],[-7,-9],[-15,-1],[-7,-2],[-4,7],[-34,11],[-4,-7],[12,-18],[-5,-1],[-18,17],[-8,0],[1,-8],[-8,-3],[-8,2],[-17,11],[-18,-4],[-11,3],[-17,1],[-7,4],[-23,-5],[-14,9],[-7,9],[-1,6],[-8,0],[-5,10],[-11,-11],[-12,-5],[-8,11],[-15,5],[-6,6],[-5,11],[-6,5],[-4,10],[9,9],[13,1],[9,-7],[12,-1],[15,1],[4,4],[-24,15],[-15,1],[-33,7],[-4,6],[-1,18],[5,7],[-8,11],[3,11],[6,4],[-5,10],[6,25],[12,19],[0,12],[7,15],[18,20],[18,13],[33,10]],[[2227,9300],[17,-11],[31,6],[5,6],[18,-3],[9,-9],[-2,-8],[-18,-10],[14,-3],[-4,-6],[-15,-6],[-14,-17],[19,0],[11,-6],[-1,-6],[10,-14],[6,3],[8,-6],[4,-15],[-12,-9],[7,-13],[-2,-20],[-12,-3],[-3,-7],[-10,-6],[-15,3],[-11,-1],[9,-8],[-4,-9],[-9,-9],[-12,6],[-8,-1],[-5,14],[-12,22],[-5,1],[-17,23],[-8,1],[-7,9],[-8,-4],[-10,4],[-4,12],[-18,12],[-4,11],[8,16],[10,3],[10,-5],[13,-21],[12,-2],[12,3],[4,10],[6,2],[-1,9],[-10,13],[2,9],[-13,-5],[-19,13],[9,11],[10,1],[-6,9],[5,7],[30,4]],[[2287,9313],[-13,-14],[-19,-3],[-15,2],[-1,4],[18,8],[28,6],[2,-3]],[[2423,9314],[18,-7],[8,3],[23,-2],[22,-7],[-8,-15],[-12,-14],[-13,-21],[-13,-26],[-14,-10],[-29,6],[-21,-1],[10,-6],[10,-17],[-10,-10],[-8,-18],[-29,-7],[1,9],[-3,7],[2,19],[-5,11],[-8,6],[0,17],[-3,6],[4,11],[-1,31],[-3,3],[8,9],[11,-7],[5,2],[-13,14],[2,8],[24,9],[17,0],[14,3],[14,-6]],[[1623,9348],[12,-4],[6,-6],[29,-13],[18,-1],[4,-10],[10,10],[18,4],[18,-4],[16,-10],[26,-26],[7,-4],[9,-12],[-12,-10],[-19,-7],[-21,-14],[-5,-1],[-18,-12],[-31,-19],[-5,-20],[-12,-8],[-12,-1],[0,-10],[-7,-8],[2,-19],[-7,-15],[-22,-8],[-8,6],[-12,-15],[-14,-6],[-4,-6],[-9,0],[-9,11],[-5,16],[-12,17],[-17,7],[-16,10],[-15,1],[1,14],[12,24],[7,6],[3,10],[-2,9],[15,7],[-11,11],[6,7],[6,17],[11,9],[0,8],[8,8],[-11,6],[-9,16],[-2,14],[-6,6],[41,7],[19,1],[29,7]],[[2118,9400],[4,-8],[-7,-8],[-10,-3],[-19,7],[6,16],[8,7],[16,-5],[2,-6]],[[2378,9423],[25,-24],[-1,-17],[3,-10],[-1,-13],[-4,-4],[-31,-2],[-11,4],[-6,8],[-16,2],[-14,8],[-6,9],[4,9],[8,7],[11,15],[25,11],[14,-3]],[[2325,9426],[11,-6],[-9,-7],[-21,-6],[-2,8],[18,7],[3,4]],[[2164,9449],[-12,-12],[-22,-4],[7,11],[24,7],[3,-2]],[[2380,9434],[-10,-1],[-7,14],[13,2],[4,-15]],[[2157,9456],[0,-4],[-37,-9],[-1,7],[35,8],[3,-2]],[[1732,9460],[5,-2],[-13,-25],[-19,-17],[-22,7],[22,23],[13,4],[14,10]],[[2805,9461],[6,-4],[-18,-17],[-8,3],[20,18]],[[2149,9471],[3,-9],[-9,-5],[-27,-3],[-15,3],[1,9],[44,8],[3,-3]],[[2113,9496],[25,-15],[-9,-6],[-29,0],[0,10],[-7,9],[8,5],[12,-3]],[[2266,9499],[9,-10],[12,-3],[-4,-12],[8,-11],[-4,-15],[2,-6],[-9,-10],[14,-2],[0,-13],[-14,0],[-6,-16],[10,-4],[1,-9],[-8,-7],[-20,-2],[-25,-1],[-19,2],[-2,11],[4,7],[-12,6],[11,13],[16,5],[-14,5],[-34,-4],[-17,-4],[-20,0],[2,9],[12,14],[12,2],[-2,13],[5,7],[-10,3],[1,14],[18,2],[9,-7],[-1,-6],[18,-12],[0,10],[13,5],[-9,6],[-10,0],[-8,7],[19,12],[19,-2],[9,-9],[10,9],[14,3]],[[2213,9503],[-28,-11],[10,12],[18,-1]],[[2508,9489],[-10,-3],[-14,17],[1,5],[15,4],[8,-7],[-4,-10],[4,-6]],[[1981,9510],[6,-6],[-6,-10],[2,-12],[7,-2],[8,-8],[-11,-13],[17,-3],[6,-7],[16,-6],[13,13],[23,-6],[7,-7],[3,-16],[-8,-10],[1,-12],[-7,-7],[-3,-15],[-21,-3],[-7,-6],[-18,4],[-21,-5],[-11,12],[-21,-16],[-9,1],[-12,-5],[-19,-13],[-18,-8],[-21,-7],[-17,-1],[-18,4],[-14,8],[-7,9],[6,5],[20,6],[20,10],[34,2],[15,12],[-80,-8],[-1,9],[4,11],[-7,2],[-11,-22],[-14,-7],[-13,10],[-8,-10],[-13,5],[-11,11],[-6,-5],[-20,6],[-5,7],[13,13],[32,0],[-2,7],[-30,0],[-1,4],[10,11],[56,6],[0,3],[-37,-3],[-14,2],[0,11],[5,8],[19,1],[-1,13],[10,7],[30,3],[6,-2],[7,-20],[27,6],[16,-7],[2,-10],[14,-6],[13,-17],[3,-14],[21,4],[45,-6],[2,9],[-8,9],[-16,4],[-10,7],[17,7],[-3,14],[-23,8],[-1,7],[24,16],[10,14],[14,0]],[[1841,9515],[7,-8],[-10,-4],[-17,1],[-11,5],[11,5],[20,1]],[[2354,9524],[21,-3],[10,-6],[12,2],[21,-21],[7,-2],[35,7],[24,-9],[3,-11],[32,-8],[-2,-9],[-52,-1],[29,-7],[19,-15],[9,-4],[-2,-12],[10,-2],[9,4],[9,-13],[14,7],[18,1],[9,-8],[16,-5],[6,9],[26,9],[21,4],[11,7],[23,-5],[21,7],[34,-5],[-5,-8],[22,0],[11,-5],[16,-14],[-3,-16],[-23,-10],[7,-6],[17,5],[5,-10],[-23,-9],[2,-10],[-11,-4],[-21,0],[-13,-7],[-32,6],[-11,17],[-5,-15],[-21,-5],[-11,1],[-19,-2],[-64,-2],[-24,3],[3,18],[-4,7],[-17,-18],[-8,-4],[-14,-1],[-21,8],[-5,8],[-20,-3],[-11,5],[-2,13],[-12,18],[6,21],[8,7],[-5,10],[0,11],[-12,9],[-1,7],[-13,18],[-13,-5],[-35,-2],[-5,4],[-22,5],[-9,13],[-14,12],[9,4],[-15,9],[30,10],[15,-4]],[[1774,9557],[20,-11],[-14,-8],[-9,-1],[0,-11],[11,-5],[-6,-10],[5,-10],[-12,-8],[-21,-4],[4,-12],[-12,-7],[-13,5],[-5,5],[2,20],[-10,-8],[-18,-3],[8,-7],[0,-10],[-7,-8],[-16,-10],[-11,-13],[-17,-1],[3,9],[-9,4],[0,10],[-8,0],[1,-11],[-13,-5],[-12,7],[-16,-8],[-8,4],[6,11],[-10,3],[13,17],[23,2],[10,17],[8,1],[15,9],[8,13],[19,14],[3,7],[13,5],[27,2],[17,-8],[11,3],[-2,11],[14,6],[8,-6]],[[2491,9568],[17,-12],[1,-10],[-12,-8],[-23,7],[-8,7],[1,15],[8,3],[16,-2]],[[2083,9553],[16,-8],[-1,-11],[-8,-3],[-22,14],[-6,11],[-4,22],[11,-3],[14,-13],[0,-9]],[[2350,9579],[50,0],[11,-4],[-8,-17],[-9,-4],[-15,3],[-46,0],[-8,9],[2,8],[23,5]],[[2196,9576],[-17,-1],[-7,-3],[-18,4],[1,11],[21,0],[12,-4],[8,-7]],[[1824,9596],[16,-8],[1,-10],[-16,-4],[-23,18],[12,5],[10,-1]],[[1955,9600],[-2,-7],[-15,-6],[-17,-2],[3,-7],[17,1],[2,-11],[-5,-9],[-18,-6],[-11,1],[-23,-8],[-14,10],[-17,5],[-3,20],[2,7],[27,8],[43,6],[31,-2]],[[1933,9649],[29,-16],[1,-13],[-14,-4],[-28,1],[-26,-3],[-11,8],[-25,-8],[-4,10],[30,11],[9,-1],[30,15],[9,0]],[[2308,9645],[10,-1],[7,-11],[16,-1],[17,-5],[8,-6],[-15,-9],[13,-9],[-5,-10],[-36,-8],[-17,4],[-21,9],[2,4],[20,-1],[2,4],[-25,7],[-8,12],[-8,3],[0,23],[5,3],[20,-1],[15,-7]],[[2120,9691],[15,-4],[15,-15],[-2,-6],[28,6],[19,-10],[-7,-8],[20,0],[14,-6],[-2,-7],[14,-3],[-7,-21],[22,-16],[0,-14],[-4,-3],[-21,-5],[-19,6],[-12,24],[-31,6],[-17,-1],[1,8],[-26,-4],[-8,-6],[-14,2],[-10,7],[-5,11],[10,5],[32,-6],[3,19],[-23,1],[10,7],[-6,8],[-25,4],[-17,-2],[-1,10],[13,10],[41,3]],[[2237,9746],[16,-2],[6,-21],[-18,-2],[-7,10],[-14,-1],[-3,11],[11,8],[9,-3]],[[2423,9833],[26,-11],[3,-9],[16,-16],[12,-8],[2,-10],[36,-2],[8,-5],[-6,-12],[16,-1],[6,11],[22,-2],[3,-17],[9,-8],[8,-13],[-6,-18],[24,1],[21,-5],[5,-9],[13,-11],[-17,-10],[-27,-7],[-3,-6],[-20,-12],[-6,-10],[-11,-4],[-3,-10],[-14,-3],[-6,-18],[-8,0],[-8,11],[-10,-8],[-17,8],[-1,-14],[-15,0],[-34,6],[-23,15],[8,13],[-19,-1],[-26,26],[19,7],[4,7],[17,-1],[7,17],[-25,-2],[-8,-5],[-17,6],[-16,-6],[-19,8],[1,12],[-26,20],[-6,16],[53,-2],[-41,16],[-4,6],[21,5],[-9,12],[46,3],[-9,8],[-22,5],[7,15],[11,4],[15,-5],[14,8],[14,-2],[2,9],[-32,4],[5,7],[40,-3]],[[3064,9962],[6,-5],[52,-6],[48,-9],[67,-1],[-5,-8],[19,-9],[-3,-4],[41,-3],[12,-8],[-4,-13],[-27,-13],[-58,-21],[-28,1],[-14,-8],[-21,0],[-1,-9],[-38,-9],[7,-4],[57,12],[33,5],[-4,-12],[-20,-9],[-16,-3],[-19,-13],[-45,-20],[-24,-16],[-6,-10],[-36,-19],[5,-5],[-18,-20],[-31,-9],[-19,3],[-4,8],[-32,6],[-17,-4],[40,-6],[7,-14],[-25,-8],[-18,0],[-9,-6],[-28,5],[3,-7],[-27,1],[-13,-5],[39,-3],[41,-1],[-8,-5],[9,-6],[-18,-3],[-19,4],[-9,8],[-55,-2],[54,-4],[-17,-6],[27,-4],[1,-6],[27,-4],[-7,-22],[-30,-5],[27,-6],[-14,-13],[-27,4],[-6,-5],[34,-5],[-9,-11],[-9,4],[-18,-8],[-7,3],[-36,-3],[13,-6],[-2,-6],[8,-10],[-15,-16],[-15,0],[-8,-6],[-15,2],[-9,-3],[-22,4],[-22,13],[-5,-6],[15,-8],[-18,-2],[7,-7],[14,7],[26,-6],[20,2],[12,-11],[-10,-11],[14,0],[22,7],[10,-15],[-2,-11],[-10,-10],[-24,-7],[-15,-8],[-31,-11],[-12,4],[9,14],[-13,10],[-4,-5],[-15,1],[-10,-7],[-28,0],[-26,3],[-20,-1],[15,-9],[-23,1],[-27,4],[-14,-2],[-10,3],[-15,-4],[-22,4],[-3,14],[-18,-11],[-14,10],[7,9],[-3,12],[22,11],[12,9],[23,-2],[9,7],[-6,9],[-9,1],[1,10],[-15,11],[0,12],[28,7],[27,-8],[7,-6],[5,-15],[10,-7],[22,-2],[23,4],[-8,6],[-19,0],[-14,10],[1,18],[-12,3],[17,8],[-12,4],[-20,-4],[-16,4],[-19,1],[0,23],[9,7],[6,12],[9,7],[24,1],[14,7],[15,-4],[26,-2],[17,-8],[5,9],[16,-2],[17,3],[2,8],[-23,-7],[-12,4],[-36,1],[-13,6],[11,11],[-4,16],[-11,6],[-12,13],[-32,6],[0,13],[-5,15],[6,12],[15,1],[16,-4],[42,-2],[19,-12],[26,-15],[16,-19],[20,3],[-21,9],[-1,10],[-14,8],[-27,22],[78,10],[11,10],[39,12],[29,4],[-14,5],[-24,-3],[-1,11],[29,19],[-9,2],[-27,-15],[-13,-19],[-44,-15],[-47,-6],[-11,11],[-14,3],[0,-13],[-17,-3],[-47,2],[-18,5],[6,8],[32,24],[-20,-5],[-27,-18],[-6,-7],[-22,3],[-36,14],[3,6],[24,3],[22,-1],[25,1],[19,6],[14,8],[-10,3],[-18,-8],[-91,-8],[-15,11],[12,13],[19,5],[-8,5],[-23,-8],[-13,6],[25,10],[-21,6],[-9,-5],[-26,1],[6,8],[20,7],[21,5],[17,-3],[26,14],[19,3],[29,-4],[3,13],[33,1],[9,4],[-12,12],[78,-12],[38,-13],[19,-1],[-50,20],[18,21],[41,-8],[-27,17],[34,5],[5,5],[23,3],[10,-7],[31,3],[20,-4],[16,-14],[13,1],[-16,14],[-20,8],[35,4],[54,-3],[15,-6],[29,13],[81,1]],[[5264,7389],[-1,-6],[3,-9]],[[5290,7361],[-5,-23]],[[5285,7338],[-1,2],[0,1],[0,1],[0,1],[-1,1],[-3,-2]],[[5280,7342],[-1,-3],[-1,-2]],[[5278,7337],[0,-2],[0,-2]],[[5278,7333],[0,-1],[1,0],[-1,-1],[0,-1],[1,-1],[1,0],[1,-1]],[[5281,7328],[0,-1],[0,-1],[-1,-4]],[[5280,7322],[-2,-8],[-4,11]],[[5274,7325],[-3,-2],[-1,1],[-1,0],[0,-1],[-1,-4],[-6,6],[0,9],[-1,0],[-1,-2],[-1,3],[-2,-2],[-1,-1],[0,-2],[1,-1],[0,-6],[0,-1],[0,-1],[-1,-6],[-4,-8]],[[5252,7307],[-1,-4],[-1,-2]],[[5250,7301],[-1,0],[1,-3]],[[5250,7298],[0,-4]],[[5250,7294],[1,-1],[0,-3],[-3,-3],[-5,10]],[[5243,7297],[0,1],[1,2],[0,2],[1,1],[-1,2],[-2,1],[-4,1]],[[5238,7307],[-4,10]],[[5234,7317],[-1,1],[1,2],[0,4],[0,2],[0,2],[0,2],[-1,1],[-2,-1],[-1,0],[0,-4],[-3,-5],[-2,-2],[-1,-1],[0,-1]],[[5224,7317],[0,-1],[1,-3]],[[5225,7313],[0,-3],[0,-2],[-1,-2],[-2,-2],[-1,-5],[-4,-7],[-8,6],[-5,-6],[-2,0],[-1,-1],[-2,-1],[-1,0],[-1,0],[-1,1]],[[5196,7291],[-4,11]],[[5192,7302],[-1,1],[0,-1],[-1,0]],[[5190,7302],[0,1]],[[5190,7303],[0,0]],[[5190,7303],[0,1],[0,1],[0,1],[0,1]],[[5190,7307],[-2,1],[1,10]],[[5189,7318],[0,2],[-1,2],[-1,1],[0,1],[1,2],[0,1],[0,1],[0,1],[-1,0],[-4,2],[-3,0],[-3,-3],[-2,-1],[-1,-1],[-1,-2],[-1,-2],[0,-1],[0,-2],[1,0],[0,-1],[1,-1],[0,-1],[-1,-2],[-2,-2],[-1,-3],[-1,-1]],[[5169,7308],[-3,1]],[[5166,7309],[-1,-1],[1,2],[0,1]],[[5166,7311],[-1,3]],[[5165,7314],[1,1],[1,1],[2,0]],[[5169,7316],[0,5],[0,1],[1,2]],[[5170,7324],[0,1],[-1,2],[-1,2]],[[5168,7329],[0,1],[0,1],[0,1]],[[5168,7332],[0,1],[1,3],[1,2],[0,2],[-1,0],[1,1],[4,6],[4,6],[0,13],[2,2],[3,1],[2,3],[2,6],[3,5],[0,1],[1,2],[2,2],[0,2],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,1],[0,-1]],[[5194,7396],[-3,3]],[[5191,7399],[3,4],[-1,2]],[[5193,7405],[1,1],[1,0],[2,0],[1,-1]],[[5198,7405],[1,0],[-1,-2]],[[5198,7403],[1,-1],[2,-2],[1,1],[1,0],[1,0],[1,1],[1,1]],[[5206,7403],[1,3]],[[5207,7406],[2,6]],[[5209,7412],[3,1]],[[5212,7413],[0,-2],[-1,0],[1,-1],[1,-1],[4,4],[2,0],[0,-1],[0,-1],[5,0],[1,2],[1,0],[0,1],[1,0],[2,1],[3,-3],[1,8],[4,8]],[[5237,7428],[7,-6]],[[5244,7422],[1,-3],[0,-1],[1,-1],[1,0],[3,2],[5,-1],[0,-1],[1,0],[1,0],[8,-8]],[[3101,52],[-5,-9],[8,-13],[0,-7],[7,-14],[-2,-9],[-6,7],[1,7],[-10,4],[-7,-3],[-3,6],[3,12],[-12,3],[-3,-5],[-2,-9],[-4,3],[-7,11],[-5,4],[4,7],[13,2],[3,3],[14,1],[11,3],[2,-4]],[[3116,58],[14,-1],[7,-11],[-1,-8],[-5,-9],[-4,7],[-5,2],[-6,-6],[-2,7],[-8,-2],[-1,21],[11,0]],[[3041,55],[0,-11],[-6,-1],[-7,6],[5,4],[8,2]],[[3069,58],[8,-5],[-18,-4],[-2,10],[7,2],[5,-3]],[[2993,116],[-2,-11],[-6,4],[8,7]],[[3013,124],[6,0],[3,-12],[5,4],[1,-12],[-4,-8],[-5,9],[-11,6],[5,13]],[[3003,131],[4,-1],[1,-17],[-7,-7],[-8,13],[0,8],[10,4]],[[3044,132],[2,-9],[-7,-5],[1,-11],[-8,8],[-1,6],[0,14],[5,3],[-1,7],[7,9],[2,-22]],[[2972,160],[3,-4],[6,0],[8,-7],[5,-10],[-3,-4],[-2,-11],[-4,-8],[-4,3],[-4,-5],[-3,5],[5,12],[-9,4],[-4,-11],[-4,20],[-7,4],[1,5],[6,3],[-1,6],[11,-2]],[[2925,215],[8,-14],[15,-6],[12,-10],[4,-9],[-8,-4],[-1,8],[-8,11],[-5,-4],[-5,1],[-5,9],[-4,3],[0,6],[-3,9]],[[3093,67],[0,-1],[0,-6],[-12,-5],[-20,12],[-12,-5],[-16,7],[-14,6],[-5,0],[-7,6],[-6,-4],[0,9],[6,8],[6,-2],[14,-1],[4,9],[12,-8],[-4,11],[-8,3],[-2,9],[17,-15],[7,5],[16,-6],[6,1],[-16,12],[-5,5],[-4,20],[1,5],[8,6],[6,1],[8,8],[0,12],[-9,0],[-16,-7],[-6,11],[2,21],[4,-3],[5,10],[-5,3],[0,10],[4,0],[3,-8],[8,5],[4,10],[0,9],[6,3],[6,-15],[6,3],[5,6],[3,-6]],[[2952,238],[1,-5],[-6,-13],[-6,-1],[4,12],[-2,5],[9,2]],[[2921,251],[7,0],[0,-13],[-7,3],[0,10]],[[2938,259],[8,-14],[-5,-7],[-3,11],[0,10]],[[2944,272],[6,-10],[-2,-2],[-6,6],[2,6]],[[2934,283],[8,-8],[-5,-4],[-5,7],[2,5]],[[2920,293],[3,-11],[-2,-12],[-4,-7],[-2,4],[3,10],[2,16]],[[2943,295],[0,-14],[-5,7],[5,7]],[[2925,324],[-3,-17],[-5,8],[5,8],[3,1]],[[2931,353],[2,-13],[-6,-4],[-8,-1],[1,12],[7,-3],[4,9]],[[2924,359],[2,-8],[-1,-5],[-7,4],[0,8],[6,1]],[[2906,375],[7,0],[-5,-11],[-5,-2],[3,13]],[[2931,376],[3,1],[5,-20],[-5,-6],[-6,14],[3,11]],[[2908,408],[10,-6],[3,-8],[-6,-5],[-11,-4],[1,13],[6,-6],[2,6],[-5,3],[0,7]],[[2903,441],[4,-3],[-1,-10],[-5,-4],[-2,4],[4,13]],[[2914,479],[5,-4],[0,-13],[-5,9],[0,8]],[[2906,479],[2,-3],[-5,-13],[-4,8],[7,8]],[[2905,491],[3,-7],[-7,-1],[-3,7],[3,4],[4,-3]],[[2925,502],[5,0],[1,-16],[1,-27],[-3,-13],[3,-14],[-1,-18],[-5,-7],[-6,2],[-4,13],[-3,-2],[-5,22],[-5,16],[2,4],[6,-1],[5,2],[2,-4],[4,16],[-4,6],[-3,11],[2,7],[8,3]],[[2906,521],[1,-11],[-5,-4],[-4,6],[2,10],[6,-1]],[[2924,538],[4,-13],[-1,-21],[-4,5],[-5,0],[-3,8],[3,7],[3,1],[1,10],[2,3]],[[2932,540],[1,-7],[-3,-3],[-3,7],[5,3]],[[2913,546],[3,2],[5,-5],[0,-14],[-5,-7],[-4,9],[-3,18],[4,-3]],[[2907,549],[4,-19],[3,-10],[0,-10],[-3,-7],[-3,9],[1,12],[-8,3],[1,10],[-2,11],[3,4],[4,-3]],[[2921,567],[3,-21],[-9,5],[-4,9],[3,3],[4,-1],[3,5]],[[2945,564],[-4,-6],[-6,-3],[-5,5],[7,8],[8,-4]],[[2914,575],[-1,-10],[-6,8],[7,2]],[[2950,694],[3,-4],[-2,-6],[-5,8],[4,2]],[[2924,711],[-1,-13],[-4,-8],[-5,1],[-1,14],[6,1],[5,5]],[[2945,718],[-2,0],[-2,9],[6,-1],[-2,-8]],[[2936,724],[1,-4],[-6,-7],[0,12],[1,11],[4,-1],[0,-11]],[[2955,725],[-2,-10],[-4,8],[2,9],[5,2],[-1,-9]],[[2943,751],[6,-1],[0,-6],[-5,0],[-1,7]],[[2948,769],[4,-8],[-3,-10],[-5,1],[-6,14],[10,3]],[[2946,772],[-4,-3],[-8,-1],[5,10],[6,-2],[1,-4]],[[2946,796],[-2,-7],[-8,-6],[-3,8],[0,5],[10,1],[3,-1]],[[2953,802],[3,-12],[-5,-3],[-2,6],[1,8],[3,1]],[[2938,807],[-8,-4],[-1,4],[7,5],[2,-5]],[[2974,808],[4,-1],[2,-4],[-4,-13],[-8,-15],[-3,-2],[-4,9],[-2,13],[6,3],[0,8],[7,9],[2,-7]],[[2948,857],[3,-8],[-11,0],[3,6],[5,2]],[[2926,873],[2,-6],[-5,-3],[-2,8],[5,1]],[[2960,945],[-5,7],[2,5],[3,-12]],[[2945,998],[3,-6],[5,6],[4,-2],[0,-9],[2,-7],[-1,-6],[4,-8],[-9,-8],[0,-6],[-4,-11],[9,-13],[-4,-7],[4,-16],[-6,-3],[1,-17],[-5,-3],[-12,7],[-3,5],[2,11],[3,6],[2,10],[1,15],[-2,17],[1,16],[3,6],[0,13],[2,10]],[[3098,242],[-12,3],[-10,7],[-6,-6],[-1,-7],[-5,-10],[-4,3],[-14,-11],[-5,-6],[-8,-2],[0,-18],[-4,-16],[-1,-12],[1,-15],[-1,-11],[-7,-9],[-11,4],[-7,6],[-5,2],[-6,9],[-5,13],[5,11],[5,-1],[3,3],[7,0],[10,7],[3,8],[3,14],[-2,2],[-8,-5],[-11,-11],[-5,-9],[-5,8],[-1,-14],[-4,-4],[-2,-19],[-19,22],[6,5],[3,8],[-2,16],[10,6],[1,-6],[7,6],[4,7],[9,-3],[10,3],[-2,6],[-6,0],[-9,3],[-6,0],[-3,-9],[-7,9],[-5,-6],[5,-4],[-3,-6],[-6,-6],[1,-14],[-4,-5],[-6,2],[-2,6],[3,6],[0,16],[-5,3],[-5,-3],[-1,6],[4,10],[-4,2],[3,8],[1,9],[6,-2],[7,10],[5,2],[2,8],[8,-1],[2,12],[-13,-5],[-6,-6],[-1,-10],[-4,-6],[-6,8],[-4,20],[-6,11],[-1,16],[7,-1],[-3,13],[-9,3],[-1,10],[-3,8],[4,5],[0,7],[-5,21],[5,4],[-10,6],[-1,5],[-5,4],[3,8],[9,1],[-3,7],[1,8],[0,18],[3,7],[-6,11],[1,4],[0,25],[-1,10],[2,8],[-1,9],[6,9],[4,-6],[1,10],[-7,6],[-2,8],[-3,3],[-5,12],[3,4],[6,-3],[11,-2],[9,-8],[-2,15],[2,9],[-4,2],[-6,-5],[-4,5],[-15,0],[-3,5],[5,11],[6,2],[-6,7],[4,6],[2,9],[5,-1],[5,12],[-4,5],[-4,15],[-11,0],[-1,-7],[-9,12],[-2,5],[-10,0],[3,-18],[-6,-4],[-4,12],[0,10],[5,6],[4,9],[8,16],[4,0],[6,16],[1,11],[14,3],[6,-21],[6,-11],[-1,-9],[-6,-14],[5,-1],[2,11],[5,8],[-2,8],[0,16],[3,7],[-1,11],[2,19],[5,8],[-4,6],[4,9],[-2,8],[1,5],[7,1],[8,13],[3,0],[1,20],[-14,16],[-3,11],[4,9],[4,16],[1,10],[-4,11],[1,11],[4,6],[0,9],[5,7],[0,7],[-3,5],[0,16],[1,8],[4,0],[-4,19],[6,4],[3,-9],[0,18],[-7,3],[-3,8],[6,13],[-3,13],[-6,4],[-4,-7],[1,-8],[-4,-6],[-8,-2],[-4,4],[-1,11],[-3,2],[-1,17],[-3,13],[0,13],[3,22],[3,9],[-2,7],[1,19],[3,5],[-1,12],[5,4],[3,6],[0,8],[4,14],[1,11],[-2,19],[-4,28],[-1,3],[-2,16],[2,24],[-1,11],[-5,15],[0,10],[2,5],[-2,11],[2,15],[4,-6],[5,2],[3,10],[0,24],[5,1],[5,30],[-1,9],[2,16],[5,10],[-1,18],[3,5],[1,9],[4,12],[3,6],[1,17],[4,16],[0,18],[2,3],[-1,15],[5,18],[1,9],[3,4],[2,16],[-3,24],[3,11],[2,1],[3,26],[-1,7],[2,12],[-4,13],[1,15],[0,15],[-4,45],[0,12],[-1,14],[0,12],[1,20],[1,6],[3,-2],[4,10],[-1,11],[3,6],[-1,9],[0,18],[1,8],[-2,10],[-3,6],[-1,18],[1,7],[3,3],[2,9],[0,7],[4,16],[1,30],[2,20],[4,3],[0,9],[-1,9],[0,15],[2,3],[2,9],[-1,8],[3,10],[1,18],[1,13],[0,11],[1,11],[-2,12],[1,21],[4,6],[2,8],[0,11],[-2,7],[1,9],[-3,17],[0,15],[2,31],[0,7],[0,15],[3,10],[0,10],[-5,6],[0,13],[1,13],[3,-2],[2,3],[2,9],[0,16],[3,50],[1,10],[0,14],[3,17],[-1,14],[-2,14],[1,8],[-2,14],[0,26],[2,22],[-1,25],[-2,9],[0,13],[-2,8],[1,14],[-3,24],[2,23],[-3,8]],[[3044,2682],[8,1],[4,5],[3,8],[2,12],[-2,17],[1,6],[4,0],[1,2],[4,9]],[[3079,2704],[2,-4],[-1,-2],[-1,-2]],[[3084,2645],[0,-3],[0,-1],[-1,-3]],[[3097,2607],[1,-4],[-1,-1]],[[3095,2573],[-1,-14]],[[3091,2552],[0,-1],[0,-2]],[[3097,2520],[0,-2],[0,-1]],[[3097,2517],[-2,-7]],[[3105,2471],[0,-21]],[[3105,2450],[2,-10],[1,-6]],[[3114,2384],[1,-4],[0,-1]],[[3114,2368],[0,-9]],[[8074,5444],[3,-10],[4,-1],[2,-20],[-4,-13],[-5,-9],[-3,-17],[-1,-9],[-2,-12],[-1,-15],[-6,-2],[-3,-8],[-2,-10],[-4,1],[-4,-1],[-2,-11],[-3,-4],[-4,7],[-6,1],[-6,5],[-6,8],[-2,2],[-1,15],[-1,8],[0,7],[-1,12],[2,4],[-1,10],[8,16],[2,6],[4,4],[1,11],[3,8],[5,-6],[2,8],[5,5],[2,-5],[3,3],[5,-1],[2,7],[3,-3],[3,4],[6,-7],[0,7],[3,5]],[[8066,5512],[3,-1],[0,-8],[-7,4],[4,5]],[[8368,6014],[-4,0],[3,9],[1,-9]],[[8393,6158],[0,-8],[-5,3],[-1,8],[6,-3]],[[8386,6255],[-2,-1],[-15,15],[-4,10],[3,4],[5,-5],[6,-9],[8,-8],[-1,-6]],[[8625,7050],[-3,2],[-5,13],[0,11],[-3,6],[-7,1],[-3,-18],[-2,-22],[-5,-3],[-4,3],[-4,-4],[-1,-12],[-6,-9],[-1,-4],[-6,1],[-6,-4],[-7,3],[-6,-3],[0,-8],[3,-12],[4,-9],[-3,-13],[-4,-1],[-3,6],[-3,-3],[-5,0],[-5,5],[-6,0],[-10,20],[-3,-6],[-5,-2],[-3,-17],[-7,-21],[-3,-4],[-4,-13],[-6,-1],[-12,-17],[-13,-12],[-5,-13],[-2,-1],[-7,-14]],[[8454,6875],[-1,-7],[-4,-9],[-6,-5],[-10,5],[-1,-6],[-9,-2],[-2,-7],[-5,1],[-17,-19],[-8,-15],[1,-5],[-9,-12],[-5,2],[0,-10],[-4,-3],[-4,0],[-5,-6],[-2,12],[16,14],[-2,9],[4,7],[-1,4],[-6,1],[-2,9],[-3,-1],[0,7],[4,1],[0,10],[2,8],[7,4],[9,22],[0,6],[5,14],[-4,9],[-3,9],[-5,6],[-8,0],[-6,8],[-5,-2],[-5,-6],[-1,-10],[-9,-16],[-5,-20],[-14,-10],[-1,-4],[-10,-8],[-6,-12],[-2,-13],[1,-8],[-8,-17],[-4,1],[-2,-4],[-5,1],[-7,-10],[-4,2],[-5,12],[-4,-1],[-5,-8],[0,-8],[-4,-12],[0,-14],[4,-17],[3,-8],[7,-9],[4,0],[9,-6],[3,6],[5,0],[5,-13],[6,-14],[-5,-3],[-2,-8],[-1,-17],[1,-7],[5,-7],[8,-5],[9,3],[4,7],[-1,8],[5,5],[7,12],[0,6],[12,11],[5,-1],[3,-8],[3,-1],[2,-9],[5,-1],[3,-7],[18,2],[4,-5],[10,-3],[-3,-5],[2,-7],[-5,-5],[3,-14],[-6,-9],[-3,7],[-5,5],[-7,-7],[-6,-9],[-11,-7],[-7,-8],[1,-7],[-6,0],[-2,-9],[1,-14],[-10,-7],[-1,2],[0,11],[-6,-2],[0,-7],[4,-9],[-5,-9],[-1,-9],[-3,1],[-3,-6],[-4,-5],[-3,-14],[-4,-5],[-1,-16],[-5,-3],[0,-19],[4,0],[9,-17],[5,-6],[3,-1],[9,-10],[3,-20],[1,-13],[2,-7],[1,-7],[3,-13],[3,-19],[4,-14],[1,-12],[-2,-9],[2,-7],[6,-9],[6,-6],[3,-22],[5,-3],[5,-8],[3,-15],[-3,-4],[-4,2],[-11,12],[-5,-7],[-3,2],[-5,15],[-2,-4],[4,-15],[7,-6],[5,-12],[11,-17],[5,-13],[2,-13],[-1,-4],[-8,-1],[-6,-5],[-12,-17],[-1,-8],[-5,-9],[3,-9],[7,11],[7,0],[3,-8],[5,-15],[7,-6],[2,-7],[-8,-18],[-7,-4],[0,-7],[13,16],[1,-3],[-2,-23],[-1,-9],[-7,4],[-4,-1],[1,-7],[4,1],[1,-6],[0,-15],[-5,-12],[5,-23],[-7,-2],[-4,-9],[-1,9],[-6,-15],[-2,-8],[-3,-2],[-1,-9],[-4,-15],[0,-9],[-1,-8],[-2,1],[-1,-14],[-5,-8],[-2,1],[-1,-13],[-3,0],[-5,-9],[-6,-3],[-4,2],[-1,-12],[7,-3],[0,-9],[-4,-2],[4,-9],[-4,-1],[-6,-22],[-7,8],[2,-9],[5,0],[3,6],[4,-5],[-2,-6],[-1,-14],[-3,-5],[2,-5],[3,-12],[-5,-2],[1,8],[-4,3],[-7,-8],[6,-12],[-1,-4],[-9,3],[-3,-13],[4,-7],[-8,-7],[1,-9],[-5,-11],[-4,4],[-2,-3],[-6,2],[-3,-3],[-1,-9],[3,-13],[-3,-5],[-3,-12],[-5,-5],[-7,-12],[-5,-2],[-1,-8],[-5,-6],[-1,7],[-3,-2],[-2,-13],[-3,-14],[-6,-11],[1,-6],[-2,-6],[-5,2],[-4,-7],[-2,0],[-4,-5],[-4,0],[-4,7],[-2,-1],[-2,-10],[-4,-4],[-4,10],[-5,-2],[-5,-14],[-4,0],[0,13],[-6,-7],[-1,-10],[-2,4],[-5,-4]],[[8172,5616],[-4,-2]],[[8168,5614],[-4,0],[-1,-5],[-4,22],[-3,3],[-2,13],[-2,1],[-4,-8],[2,-10],[5,-12],[-2,-10],[1,-14],[-2,-6],[-5,2],[-3,-10],[-2,-2],[-3,9],[0,-13],[-2,-6],[-4,6],[-5,-8],[-1,-6],[-4,4],[-3,-7],[-3,-2],[-2,8],[-5,-4],[-8,-11],[-2,-5],[-5,0],[-4,-2],[-3,2],[-9,-11],[-2,2],[-5,-13],[-4,-1],[-9,-16],[0,-10],[6,-2],[-1,-7],[2,-10],[4,-8],[-4,-12],[-3,-4],[-5,0],[-3,4],[0,8],[-5,7],[-2,8],[0,14],[-3,7],[2,10],[-1,5],[2,6],[1,10],[3,3],[0,7],[-5,-1],[-4,7],[-1,-6],[-9,-5],[-2,13],[-5,0],[-2,4],[-4,-1],[-5,12],[-3,-12],[-4,5],[-2,-9],[-3,-1],[-4,-6]],[[7999,5540],[-7,12],[-4,-4],[-7,0],[-2,8],[-3,0],[-3,6],[-1,7],[-8,8],[-2,16],[-4,14],[1,11],[4,0],[1,8],[-2,13],[-5,4],[-5,-5],[-3,6],[-5,2],[-4,-5],[-5,10],[-4,2],[-1,7],[-5,11],[-7,-6],[-8,-11],[1,-9],[-3,-8],[-5,0],[-5,-11],[-3,3],[-1,7],[-4,-3],[-1,-5],[-1,-14],[-4,4],[-6,16],[-2,-11],[-3,-4],[-1,10],[-3,4],[-2,-8],[-3,-5],[0,-5],[-4,-7],[-3,3],[-1,8],[-4,6],[-5,1],[-2,5],[-2,-10],[-3,-9],[-1,-6],[-3,-1]],[[7836,5605],[-1,2]],[[7835,5607],[0,1],[-2,1],[-1,-1],[-1,0],[-1,0],[0,-1]],[[7830,5607],[-3,-1]],[[7827,5606],[0,4],[-1,2],[-1,0],[-2,-3],[0,-2],[0,-4]],[[7823,5603],[-1,-6]],[[7822,5597],[-1,-1],[-1,0]],[[7820,5596],[-1,-3]],[[7819,5593],[1,-4],[0,-6]],[[7820,5583],[1,-4],[0,-2],[1,-3]],[[7822,5574],[1,-2]],[[7823,5572],[1,-1],[0,-2]],[[7824,5569],[1,-4]],[[7825,5565],[1,-2]],[[7826,5563],[-1,-7]],[[7825,5556],[2,-9],[-2,-2],[0,-18],[0,-1],[2,-2],[0,-1]],[[7827,5523],[1,-1]],[[7828,5522],[-1,-3]],[[7827,5519],[-1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,1],[-2,3],[-1,-1],[0,1],[0,3],[-2,1],[-7,-5],[0,1],[0,1]],[[7812,5519],[-1,3]],[[7811,5522],[0,3],[0,1],[0,1]],[[7811,5527],[0,2],[0,2]],[[7811,5531],[0,1]],[[7811,5532],[-1,2],[-1,1],[1,6],[0,2],[0,1],[-1,0]],[[7809,5544],[0,1],[0,2],[1,2],[-3,10],[-8,-9],[-5,-12],[-4,-1],[-4,5],[-4,-7],[-2,8],[-1,11],[-3,2],[-1,10],[1,8],[-1,6],[-3,-2],[-2,3],[-9,4],[-2,-1],[-5,2],[0,5],[5,21],[-1,16],[3,10],[3,7],[-1,8],[-4,4],[-4,-5],[-5,8],[-5,1],[2,9],[-1,10],[-3,7],[2,5],[-2,11],[-3,2],[0,13],[5,8],[1,4],[-8,-5],[-3,4],[-4,-2],[-5,2],[-8,-7],[-7,-12],[-3,6],[5,13],[1,11],[-3,11],[-3,0],[1,22],[3,7],[2,18],[3,12],[1,-3],[6,13],[0,7],[2,9],[5,-4],[3,17],[4,0],[3,6],[-3,7],[-1,9],[4,5],[-1,10],[1,7],[1,15],[-2,40],[1,9],[-1,20],[-7,7],[-1,-9],[-2,-1],[-3,14],[-1,12],[-2,5],[1,12],[-6,16],[-5,1],[-1,8],[-5,3],[-2,-11],[0,-6],[-3,-5]],[[7703,6023],[-6,10],[-4,-2],[-8,18],[-2,2],[-2,-6],[-3,6],[5,7],[-1,7],[-3,13],[-3,8],[-5,-5],[0,6],[4,4],[-3,6],[-2,8],[-11,-2],[-1,-9],[-3,3],[-3,-9],[-5,1],[-4,-3],[-5,4],[-6,1],[-4,11],[-3,-7],[-4,-1],[-3,-8],[2,-6],[-3,-6],[-6,-5],[-11,-14],[-5,0],[-8,-12],[-2,-10],[-7,-12],[-2,0],[-3,-6],[1,-5],[-2,-9],[-9,-9],[-2,2],[-4,-2],[-3,-5],[-9,3]],[[7469,5958],[-4,7],[-1,9],[2,8],[1,14],[-1,11],[-5,8],[-7,-9],[-7,-3],[0,-6]],[[7447,5997],[-2,2]],[[7445,5999],[-6,1]],[[7439,6000],[-2,-6]],[[7437,5994],[-3,0],[-2,-1]],[[7432,5993],[0,0]],[[7432,5993],[-1,2],[-4,-2]],[[7427,5993],[-1,1],[1,2]],[[7427,5996],[-1,1],[-1,-1],[-1,-2],[-4,1],[-3,8],[-4,1],[-6,11],[-1,-2],[-2,2],[-1,-1],[-1,-6],[0,-3],[0,-1],[0,-1],[-2,-2],[-4,5],[-1,0],[-1,1],[0,1],[-1,2],[0,2],[0,3],[0,3],[-3,-6]],[[7390,6012],[1,-2],[-1,-3]],[[7390,6007],[1,-5],[-1,-3],[-1,0],[-1,0],[-1,0],[0,2],[0,4]],[[7387,6005],[-3,13]],[[7384,6018],[-5,11],[-2,-4],[-5,3],[-4,-2],[-5,4],[0,1],[0,2],[0,1],[0,4]],[[7363,6038],[0,1],[0,1]],[[7363,6040],[1,1],[0,1],[0,1],[0,1],[1,5],[-3,4],[-4,-8],[-7,5],[-2,7],[-1,1],[-2,1],[-1,1],[0,1],[-1,3],[-2,5],[-1,1],[-2,2],[0,1],[-1,2],[1,6],[-3,8],[-1,8],[-3,1],[0,1],[-1,1],[-1,0],[-1,-1]],[[7329,6099],[-2,-3]],[[7327,6096],[-2,0],[-1,-1],[0,-1],[-1,-4],[-4,3],[-5,21],[-5,10]],[[7309,6124],[-3,-1]],[[7306,6123],[-2,3],[0,1],[-1,-1],[-1,2],[-1,0],[0,-1],[-1,-1],[-8,19],[-2,2],[-1,1],[-1,2],[0,1],[-1,0],[-1,2]],[[7286,6153],[-3,2]],[[7283,6155],[-1,0],[0,-1],[-1,1],[0,2],[0,1],[0,1],[0,3],[0,2],[0,1],[-1,0],[0,1],[0,8],[-9,2],[-1,1],[-3,3],[-1,0]],[[7266,6180],[-1,-1]],[[7265,6179],[0,-1],[-1,0],[0,-1],[0,-3],[-1,0],[-1,1],[-1,2],[0,1],[-1,-1],[0,-1],[0,-1],[0,-2],[0,-5]],[[7260,6168],[-1,-5]],[[7259,6163],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-3],[-2,1],[-1,0],[0,1],[-1,3],[-1,5],[0,2],[-1,1],[0,1]],[[7249,6165],[0,4],[-6,5],[-1,5],[-13,12],[-3,7],[0,9],[-3,0],[-6,13],[-9,-1],[-6,12],[-3,15],[-4,7],[-2,-8],[-3,-2],[-4,3],[1,8],[-2,5],[4,7],[-4,12],[2,14],[-8,18],[-1,25],[5,0],[3,5],[1,-13],[5,-8],[4,3],[1,6],[4,1],[6,11],[1,8],[-5,15],[1,12],[-11,13],[-4,11],[-1,6],[0,14],[-2,18],[0,6],[5,6],[2,9],[-1,6],[-4,3],[-5,10],[-7,2],[-2,6],[-4,28],[-4,16],[2,13],[-5,-2],[-3,5]],[[7160,6545],[-1,0],[-1,-2],[-1,0],[0,-1],[-7,1],[-1,0],[-1,1]],[[7148,6544],[-3,3]],[[7145,6547],[-2,0],[-1,0],[-1,1]],[[7141,6548],[-2,3],[-3,0]],[[7136,6551],[-1,1],[-1,3],[-1,1]],[[7133,6556],[-1,0]],[[7132,6556],[-6,7],[0,8],[-7,-4],[-4,0],[-3,13],[-4,3],[-1,5],[4,10],[-1,5],[0,11],[-5,16],[-6,6],[-5,-1],[-2,12],[-7,5],[-5,-2],[-7,7],[-3,-3]],[[7070,6654],[-2,5]],[[7065,6663],[3,3]],[[7072,6669],[1,2],[0,1]],[[7075,6674],[5,-5]],[[7080,6669],[5,6],[2,6],[-7,15],[2,12],[-3,5],[1,11],[-3,6],[-1,15],[2,7],[-2,9],[-12,11],[-5,1],[-6,-10],[-4,5],[-3,18],[4,10],[-4,6],[-2,11],[1,7],[0,3],[0,4],[0,1]],[[7045,6828],[5,2],[3,9]],[[7053,6839],[-3,15]],[[7050,6854],[3,12],[1,3],[0,1]],[[7054,6870],[0,1],[1,1],[4,4],[6,0],[9,16],[4,13],[6,-5],[2,1],[1,0],[1,-1],[2,3],[6,9],[2,1],[3,-13],[-1,-6],[1,-4],[1,-1],[1,1],[5,0],[9,10]],[[7117,6900],[1,-1],[0,-1],[1,-4]],[[7119,6894],[0,-1],[1,0],[3,5],[5,15],[0,7],[1,5],[1,2],[1,1],[1,1],[0,1]],[[7132,6930],[2,11]],[[7134,6941],[1,1],[3,1],[3,-2],[6,0],[4,-2],[6,1],[3,4],[1,0],[1,0],[4,-1]],[[7166,6943],[2,0]],[[7168,6943],[8,17],[0,2],[-1,3],[1,2],[7,7],[2,5],[8,7],[3,4]],[[7196,6990],[6,6]],[[7202,6996],[2,-1],[1,1],[2,3],[2,1],[2,2],[3,1],[2,2],[0,5],[1,1],[0,1],[1,1],[2,0],[7,0],[1,1],[1,2],[0,2]],[[7229,7018],[-2,7]],[[7227,7025],[2,4],[-4,27],[3,12],[7,6],[-3,11],[6,7],[5,-1],[-1,13],[-3,3],[2,9],[-6,33],[-4,14],[1,11],[-1,11],[1,18],[3,5],[-7,6],[-7,-2],[-3,8],[5,8],[9,2],[1,3],[8,4],[4,-1],[25,15],[2,-11],[4,-3],[9,6],[5,-8],[3,5],[1,18],[-7,3],[-2,4],[2,15],[4,12],[2,21],[3,9],[4,29],[4,15],[1,18],[4,2],[10,-11],[11,-7],[7,2],[14,-1],[2,-12],[5,3],[8,13],[8,1],[2,9],[3,2],[0,13],[-2,10],[0,7],[-2,21],[2,16],[5,19],[11,1],[4,5],[7,3],[5,13],[1,9],[-2,11],[5,8],[6,2],[6,-3]],[[7425,7520],[14,6]],[[7439,7526],[0,-1],[0,-2],[0,-2],[0,-4],[0,-1],[0,-1],[1,0],[0,-1],[0,-2],[-3,-4],[0,-1],[-1,-1],[0,-2]],[[7436,7504],[2,-5]],[[7438,7499],[1,0],[0,-1],[2,-1],[1,0],[1,-1],[2,-2],[-3,-9],[6,-7],[2,0],[3,-3]],[[7453,7475],[1,-4],[1,-1]],[[7455,7470],[2,1],[1,-1],[1,-3],[1,-2],[-1,-2],[0,-2],[1,-4],[6,-7]],[[7466,7450],[2,0],[2,-1]],[[7470,7449],[3,-7],[5,-1],[3,3],[6,0],[5,-15],[4,0],[1,1],[0,1],[1,1],[0,1],[0,1],[1,0],[1,-1],[1,0],[0,-2],[0,-2],[1,-4],[6,-10],[3,-9],[1,-7],[1,-2],[0,-1],[0,-1]],[[7513,7395],[-1,-1]],[[7512,7394],[0,-1],[7,-22],[3,-2],[5,-17],[0,-3],[0,-3],[0,-3],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[-3,-14],[-1,-2],[0,-1],[0,-1],[2,-8],[0,-2],[1,-2],[0,-3],[0,-4],[0,-2],[-2,-3],[-6,-14],[0,-2],[-2,-17],[1,-1],[2,-2],[0,-2]],[[7520,7257],[1,-6]],[[7521,7251],[0,-2],[0,-1],[2,-2],[0,-1],[0,-3],[1,-2],[2,2],[5,-1],[0,-1],[1,-1],[0,-1],[2,-2],[6,1],[5,-6],[3,1],[5,0],[2,0],[3,-1],[2,-3],[3,0],[1,-1],[2,1],[2,-1],[3,1],[2,0],[3,2],[5,-3],[3,0],[1,0],[1,1],[1,-1],[10,-4],[5,-4],[0,-1],[5,-12],[3,-4],[6,0],[2,-5]],[[7618,7197],[1,-1],[0,-3]],[[7619,7193],[1,-1]],[[7620,7192],[7,-6]],[[7627,7186],[2,-3],[0,-1],[0,-1],[1,-1],[9,-7],[10,3]],[[7649,7176],[0,-2],[-1,-4]],[[7648,7170],[-1,-4],[0,-10],[3,-2],[1,0],[1,0],[5,-25],[4,-16],[1,-9],[0,-3],[1,-2],[11,-21],[1,-1],[0,-3],[1,-9]],[[7676,7065],[3,-1]],[[7679,7064],[10,2],[10,2],[9,-2],[9,-2],[23,-6],[11,-3],[11,-3],[5,2],[9,6],[1,0],[23,-7],[11,-3],[5,1],[3,-1],[4,-1],[2,-4],[4,-13],[3,-6],[2,-1],[28,-13],[18,-18],[11,4],[11,4],[0,-14],[11,-2],[3,-3],[5,10],[3,1],[3,4],[2,2],[11,11],[12,11],[13,10],[39,12],[10,-1],[7,-3],[6,4],[7,-2],[6,2]],[[8040,7044],[1,1]],[[8041,7045],[5,6],[6,6],[2,0],[2,0],[1,1]],[[8057,7058],[9,9]],[[8066,7067],[1,1],[0,4],[1,1],[3,4],[1,2],[1,3],[0,4],[1,1]],[[8074,7087],[7,17]],[[8081,7104],[4,6],[7,5]],[[8092,7115],[7,6]],[[8099,7121],[4,10],[3,0],[1,1],[1,0],[0,1],[1,2],[0,3],[0,2],[-3,11],[-2,3],[-3,4],[-1,2],[-3,9],[-3,16]],[[8094,7185],[2,6]],[[8096,7191],[1,3],[0,2]],[[8097,7196],[1,2],[0,1],[0,3],[0,1],[0,2],[5,19],[8,9],[2,-1],[10,-1],[2,-5],[1,-3],[1,-3],[4,-3],[10,-5],[10,-2],[1,0],[0,-1],[1,0],[2,-1],[1,1],[1,1],[2,4],[2,3],[2,3],[4,3],[3,7],[7,11],[4,14],[3,2],[2,0],[5,-3],[1,0],[11,1],[4,1],[4,3],[4,6],[6,9],[0,1],[1,1],[4,2],[2,4],[0,2]],[[8228,7284],[-1,8]],[[8227,7292],[4,14],[7,15],[6,5],[14,-2]],[[8258,7324],[1,2],[1,9],[1,2],[-1,3]],[[8260,7340],[2,1],[1,-1],[2,2],[0,-1]],[[8265,7341],[2,-4]],[[8267,7337],[2,-2],[5,6],[3,3],[2,3],[1,0],[1,0],[3,3],[5,-2],[3,0],[1,0],[1,1],[3,-2],[1,1],[2,5],[2,-3],[1,0],[1,2],[2,-6],[8,-3],[3,1],[7,-3]],[[8324,7341],[2,2],[0,3],[1,0],[1,-1]],[[8328,7345],[1,2]],[[8329,7347],[0,1],[1,1],[0,10],[-4,11],[-2,12],[-15,25],[-2,11],[-9,7],[-6,15],[-7,2],[-1,0],[-1,2],[-1,0],[-12,-4],[-6,-13],[-3,-4],[-1,-3],[-1,-3],[-1,0],[-7,12]],[[8251,7429],[-6,4]],[[8245,7433],[-3,0],[-7,-3],[-2,0],[-5,2],[-2,-1],[-2,-3],[-3,-7],[-2,-2],[-2,2],[-8,16],[-1,14],[0,1],[0,1],[7,5],[1,2],[0,2],[-1,14],[1,3],[0,1],[6,17],[1,2],[-1,4],[0,2],[6,22],[7,24],[5,22]],[[8240,7573],[11,-11],[5,-3],[6,-1],[8,-7],[12,11],[13,20],[12,3],[7,7],[0,18],[-3,8],[2,11],[6,9],[0,13],[6,12],[1,9],[4,9],[5,24],[2,0],[9,15],[5,3],[3,15],[0,8],[-4,8],[3,14],[-9,7],[-7,-4],[-3,1],[-1,12],[7,7],[5,10],[12,20],[9,0],[9,4],[10,7],[5,0],[7,4],[4,-2],[11,1],[8,3],[3,4],[6,-3],[5,1],[9,-6],[4,-8],[3,2],[5,-10],[7,-3],[2,-3],[11,4],[11,-12],[3,1],[11,-24],[-2,-7],[7,-7],[6,-17],[-3,-6],[6,-4],[-2,-12],[10,-32],[-1,-9],[5,-6],[-2,-12],[1,-7],[6,-12],[4,-10],[2,-15],[-2,-6],[1,-10],[7,-8],[-3,-14],[1,-14],[4,-4],[5,-13],[4,1],[3,-4],[16,5],[4,-3],[7,-14],[9,-2],[3,4],[2,-9],[4,0],[6,-17],[9,-13],[4,2],[8,-1],[-4,-17],[5,-10],[3,-16],[-4,-12],[0,-4],[6,-12],[1,-12],[3,-3],[11,5],[4,-6],[4,2],[5,-2],[7,2],[5,3],[5,-2],[4,12],[12,17],[10,-1],[3,1],[5,10],[9,6],[9,3],[4,-1],[5,-7],[-1,-9],[-3,-7],[6,-24],[-3,-8],[-5,-12],[-6,-1],[-3,-11],[2,-10],[-3,-4],[-3,-17],[-1,-14],[-4,-11],[2,-5],[0,-11],[-6,-8],[1,-5],[-2,-10],[-4,-4],[-1,-14],[-2,-8],[-6,-4],[-2,-6],[-1,-14],[1,-8],[-5,-7],[-3,2],[-24,13],[-4,7],[-6,-18],[-5,-9],[-14,-8],[4,-12],[5,-45],[-2,-20],[0,-13],[3,-15],[-6,-25],[1,-9],[-3,-5],[-6,2],[-10,-10],[4,-12],[-1,-2]],[[4923,4672],[1,5],[1,2]],[[4925,4679],[0,-2]],[[4925,4677],[1,-14]],[[4926,4663],[0,-1],[-1,-1],[-1,-2],[-1,-6]],[[4923,4653],[-1,-5]],[[4922,4648],[1,-1],[0,-1]],[[4923,4646],[3,-1],[1,-7]],[[4927,4638],[3,-51]],[[4930,4587],[0,-1],[-2,-2],[-1,0],[0,-1],[0,-1],[0,-1]],[[4927,4581],[0,-2],[0,-2],[0,-2],[-6,-16]],[[4921,4559],[0,-1]],[[4921,4558],[0,-1],[-1,-1],[-2,-14],[-2,-22],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2]],[[4917,4514],[-2,-4],[0,-5]],[[4915,4505],[-2,-1],[-3,-15],[-1,-2],[0,-3],[1,-2],[0,-2],[0,-4],[-1,-1],[0,-1],[0,-1],[2,-26],[2,-7],[1,-12],[1,-7],[1,-3],[0,-3],[-1,-8]],[[4915,4407],[2,1],[0,-7]],[[4917,4401],[3,1],[2,-4],[1,-9],[1,-4],[0,-2],[0,-1],[-1,-1],[-1,1],[0,-5],[0,-1],[0,-1],[0,-1]],[[4922,4374],[0,-1],[0,-1],[0,-1],[0,-4]],[[4922,4367],[-2,2],[-2,0],[-6,-2],[-2,5],[-3,-7],[-1,1],[-16,7],[-3,5],[-12,0],[1,-5],[7,4],[6,-4],[-18,-3],[-4,-3],[-21,-3],[-9,-5],[-8,-8],[-12,-12],[-2,-2],[-7,-5],[-5,-8],[-3,-2],[-8,-12],[-2,0],[-1,2]],[[4789,4312],[0,1],[0,2]],[[4789,4315],[0,22]],[[4789,4337],[0,4],[-1,2]],[[4788,4343],[0,3]],[[4788,4346],[0,3]],[[4788,4349],[1,12]],[[4789,4361],[3,6],[0,9],[2,0]],[[4794,4376],[0,1],[0,2]],[[4794,4379],[0,1],[0,2],[0,1],[-1,1],[0,3],[0,1],[0,3],[0,1]],[[4793,4392],[1,1],[-1,1],[1,0]],[[4794,4394],[0,5]],[[4794,4399],[-1,5],[0,5],[0,3],[0,3],[0,2],[-1,1],[-2,-1],[-4,7],[-3,3],[-1,15],[-3,6],[-3,2],[-3,-2],[-7,6],[0,6],[-2,3],[-1,-3],[-1,4],[-1,0]],[[4761,4464],[-1,0]],[[4760,4464],[1,2]],[[4761,4466],[1,2]],[[4762,4468],[6,15]],[[4768,4483],[0,5],[1,1],[0,1],[-1,1],[0,1],[0,2],[0,1],[0,1],[0,1],[1,1],[0,2],[0,1]],[[4769,4501],[0,9]],[[4769,4510],[-2,13],[-2,16],[-1,1]],[[4764,4540],[1,3],[1,1],[0,-2],[3,1],[2,-4],[3,12],[0,5],[1,1],[0,1],[-1,0],[0,2],[0,1],[0,3]],[[4774,4564],[1,10]],[[4775,4574],[2,1],[1,-2]],[[4778,4573],[0,1],[0,1]],[[4778,4575],[-1,5]],[[4777,4580],[-5,6],[-2,4],[0,2]],[[4770,4592],[0,3],[1,4]],[[4771,4599],[0,2],[-1,2],[0,1],[2,3],[6,1],[2,-5],[4,-3],[1,-2],[2,1]],[[4787,4599],[-1,4]],[[4786,4603],[0,12],[-3,11],[-5,2]],[[4778,4628],[1,12]],[[4779,4640],[0,2],[0,1],[1,2]],[[4780,4645],[2,3],[2,0]],[[4784,4648],[0,1],[0,1]],[[4784,4650],[-2,4]],[[4782,4654],[-3,3],[0,3],[1,6]],[[4780,4666],[0,1],[1,6]],[[4781,4673],[0,1],[-2,-1],[-3,-2],[-1,3],[-2,7],[0,2],[0,2],[0,1],[1,18],[0,2],[-1,0],[0,3],[0,1],[-1,1],[1,0],[0,1],[0,1],[1,0],[-1,1],[0,2],[1,3],[2,3],[2,5]],[[4778,4727],[1,0],[3,4],[3,13],[2,3],[5,-1],[1,-7],[2,-6],[7,-3],[2,-5],[1,1],[1,1],[0,2],[0,2],[-1,2],[0,1],[1,5],[5,3],[2,-2],[1,22],[4,-6],[2,-1],[1,0],[1,1],[0,2],[0,1],[-1,1],[0,1],[0,2],[0,2]],[[4821,4765],[4,2]],[[4825,4767],[2,-6]],[[4827,4761],[0,-1],[-1,-2]],[[4826,4758],[0,-4]],[[4826,4754],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[-1,-2],[0,-1],[1,-1],[-1,-3],[0,-1],[1,-1]],[[4828,4741],[-1,-2],[-1,-1]],[[4826,4738],[0,-1],[0,-1],[0,-2],[1,0],[1,-3],[4,-2],[4,11],[2,5],[6,3],[1,0],[0,-1],[1,-1]],[[4847,4745],[2,-8]],[[4858,4735],[1,-7],[0,-2]],[[4859,4726],[1,-1],[-1,-1]],[[4859,4724],[0,-2]],[[4859,4722],[1,-1],[1,-2]],[[5449,4158],[-2,-3],[-1,-15],[2,-18],[-2,-5],[-1,7],[-4,3],[-4,8],[-7,5],[-4,-4],[-3,8],[-4,-4],[-4,2],[-2,7],[-5,0],[-4,7],[-4,-5],[-4,1],[-27,1]],[[5369,4153],[0,2],[0,2],[0,1],[0,1],[-2,2],[-4,-2],[-1,0],[-1,1],[-3,0]],[[5358,4160],[-3,0]],[[5355,4160],[-1,-1],[0,-1],[-8,5],[-2,-1],[-1,0],[-1,2],[-1,0],[0,-1],[-3,-2],[-12,1],[-2,2]],[[5324,4164],[-2,0],[-7,-1]],[[5315,4163],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1]],[[5314,4158],[0,-3],[0,-1],[0,-1]],[[5314,4153],[-37,0],[-3,4],[-2,3],[0,2]],[[5272,4162],[0,1],[0,2]],[[5272,4165],[0,3],[0,14],[2,14],[0,9],[2,14],[-1,14],[-4,12],[-4,7],[-1,19],[2,10],[-2,5],[-4,-3],[-1,-5],[-8,8],[-4,6],[0,9],[-2,7],[-1,19],[-5,-6],[-3,-1],[-2,4],[2,11],[0,8],[1,2],[-1,3]],[[5238,4348],[3,11]],[[5241,4359],[2,7]],[[5243,4366],[1,2]],[[5244,4368],[1,20],[0,6]],[[5245,4394],[1,1],[0,1],[1,2],[0,1],[0,2],[-2,4],[-1,2]],[[5244,4407],[1,1],[1,3],[-1,6]],[[5245,4417],[4,7]],[[5249,4424],[8,19]],[[5257,4443],[1,3],[1,4]],[[5259,4450],[7,15],[3,2],[2,17],[3,1],[7,15],[3,-9],[7,0],[3,13],[6,-8],[2,-9],[3,-4],[2,-4],[1,-18],[6,-1],[3,9],[2,3],[1,3],[1,4],[0,2],[0,2],[0,2],[-1,1],[0,2],[0,2],[1,1],[1,4]],[[5322,4495],[4,5],[2,5]],[[5328,4505],[1,1],[0,1],[0,2],[-1,3],[-1,6],[-1,0],[0,1],[-1,0],[1,1],[0,1],[1,1],[1,7],[6,14],[0,13],[3,10],[1,3],[0,1]],[[5338,4570],[0,1],[0,2],[0,3],[0,4]],[[5338,4580],[1,8],[0,5],[0,4],[0,3],[1,2],[2,1],[1,2],[1,2],[0,1],[0,2],[0,1],[-1,4],[0,1],[1,-1],[1,0],[1,2],[2,-2],[3,4],[4,13],[1,19],[2,9],[0,3],[0,2],[-1,4],[-1,0],[0,1],[1,1]],[[5357,4671],[1,2],[2,5]],[[5360,4678],[6,5],[1,5],[0,4],[0,5],[1,2],[0,1],[0,1],[0,2],[-2,3],[0,2],[1,1],[0,3],[0,1],[0,8],[6,5],[0,7],[1,5],[1,13],[1,9],[0,4],[5,18],[1,6],[6,19],[5,-3],[6,11],[6,8],[0,3],[1,2],[0,1],[0,2],[0,1],[-2,4],[0,1],[-1,0],[0,1],[1,1]],[[5404,4839],[1,3],[0,1]],[[5405,4843],[1,10],[0,2],[0,1],[0,1]],[[5406,4857],[-1,3],[0,1]],[[5405,4861],[1,7]],[[5406,4868],[0,1],[0,1],[1,1],[0,1],[-1,1],[-1,1],[-1,2],[-1,6],[-10,5],[0,11],[-1,19],[-2,19]],[[5390,4936],[10,0],[2,-7],[0,-6],[3,-9],[6,-11],[3,-21],[-1,-13],[4,-6],[0,-11],[2,-9],[-1,-6],[2,-12],[-2,-8],[-1,-17],[0,-13],[1,-7],[0,-8],[2,-12],[0,-7],[2,-3],[2,-12],[7,-17],[4,-6],[-8,-5],[-5,4],[-4,-2],[-5,1],[-4,-3],[-8,5],[-8,-1],[-1,-9],[-5,-16],[2,-4],[8,-24],[1,-5],[12,-26],[2,0],[5,-11],[4,-13],[5,-24],[2,-22],[4,-3],[-1,-12],[-2,-7]],[[5944,6514],[0,-1]],[[5944,6513],[-2,0],[-1,1]],[[5941,6514],[0,0]],[[5941,6514],[1,0],[2,0]],[[5905,6522],[1,1],[1,0]],[[5907,6523],[-2,-1]],[[5935,6512],[0,-1],[1,0]],[[5936,6511],[0,-3]],[[5936,6508],[-1,1],[-1,0],[-1,2],[-1,0],[-2,0],[-1,-2],[-1,12],[-4,-4],[-3,4],[-7,-6],[-3,-1],[0,2],[-3,3],[0,3]],[[5908,6522],[0,0]],[[5908,6522],[4,-7],[7,7],[2,1],[6,0],[2,-7],[0,-3],[4,-1],[0,1],[1,-1],[1,0]],[[5762,4362],[0,-1],[0,-3],[3,-8],[2,-1],[4,-11],[0,-10],[6,-7],[5,-11],[4,0],[2,-5],[4,7],[6,13],[2,-6],[5,1],[5,-10],[3,3],[4,14],[1,6],[4,-2],[5,-8],[0,-9],[2,-4],[2,-7],[3,-9],[2,-2],[2,-11],[4,-1],[6,-6],[1,-18],[3,3],[4,-5],[0,-4],[0,-2]],[[5856,4248],[1,1],[0,1],[1,0],[0,-1]],[[5858,4249],[0,-8]],[[5858,4241],[-3,-10],[-2,-15],[3,-10],[-3,-21],[0,-12],[2,0],[2,-8],[1,1],[0,3],[1,2],[1,0],[0,-1],[2,-8],[3,1],[3,-9],[0,-1],[0,-1],[0,-3],[-1,-4],[-1,-5],[-2,-6],[-1,-2],[-2,-7],[-9,-19],[-3,-8],[-1,-4],[-2,-7],[-1,-1],[0,-1],[-2,-1]],[[5843,4084],[-2,-2]],[[5841,4082],[-1,0],[-1,-3],[0,-8],[-2,-7],[0,-1],[-3,-2],[-3,-7],[0,-4],[-1,-8],[1,-8],[-3,-12],[-1,-12],[0,-1],[-1,1],[-1,-5],[-3,-39],[1,-1],[0,-3],[0,-6]],[[5823,3956],[-1,-11]],[[5822,3945],[0,-9],[-2,-4]],[[5820,3932],[1,-13],[-1,-6]],[[5820,3913],[1,-2],[0,-2],[0,-2],[0,-1],[0,-2],[0,-2],[0,-4]],[[5821,3898],[-1,-1],[-1,-2]],[[5819,3895],[-1,-2],[-1,-3]],[[5817,3890],[0,0]],[[5817,3890],[-2,0],[0,-1],[-1,-1],[-1,-4],[0,-1],[-1,-3],[-1,-1],[0,-3],[-1,-3],[-1,-4],[0,-3],[-1,-3],[0,-3],[1,-11],[0,-2],[0,-3]],[[5809,3844],[-1,-7]],[[5808,3837],[-1,-2],[-2,-1],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-2]],[[5801,3824],[0,-1],[0,-2],[1,-2],[0,-6]],[[5802,3813],[0,-5],[0,-1],[1,-2],[1,0],[1,-1],[0,-1]],[[5805,3803],[1,-2],[-1,-5]],[[5816,3679],[0,-1],[0,-3],[0,-6],[-2,-18],[1,-18],[3,-10],[1,-12],[2,-16],[1,-12],[-4,-16],[2,-19],[6,-27],[9,-18],[4,-12],[4,-18],[2,-20],[6,-24],[3,-19]],[[5854,3410],[-25,-10],[-26,-10]],[[5803,3390],[-1,-2],[1,-13]],[[5803,3375],[-1,-6],[-4,-12],[-4,-12],[-6,-10],[-1,-2],[0,-3]],[[5787,3330],[3,-2],[2,-3]],[[5792,3325],[3,-19],[0,-7]],[[5795,3299],[2,-4]],[[5797,3295],[-1,-1],[0,-1],[-1,-9],[-1,-14],[0,-2],[-1,-2],[0,-1]],[[5793,3265],[1,-2],[1,-4]],[[5795,3259],[0,-16],[1,-3]],[[5796,3240],[1,-6]],[[5797,3234],[-1,-1],[0,-2],[-1,-2],[-2,-7],[-3,-19],[0,-11],[-1,-4],[0,-2],[0,-2]],[[5789,3184],[0,-1],[0,-1],[-2,-6]],[[5787,3176],[0,-1],[0,-4],[1,-3],[0,-3],[2,-12],[1,-6],[9,-17],[3,-8],[3,-12],[6,1],[1,-3],[2,-1],[2,-2],[1,0],[0,-1],[1,0],[0,1],[1,1],[-1,3],[-2,4],[1,3],[0,3],[1,1],[1,1],[1,2],[2,-2],[4,5],[0,-17],[0,-11],[0,-11],[0,-52]],[[5827,3035],[-3,-3]],[[5824,3032],[-2,2],[0,1],[0,1],[0,1],[0,1]],[[5822,3038],[1,4],[1,2]],[[5824,3044],[-3,5]],[[5821,3049],[-4,-5],[-3,-4]],[[5814,3040],[-2,-3],[-1,-1]],[[5811,3036],[-1,-2],[-2,4],[-3,-1],[-2,6],[-1,10],[-6,23],[-3,-3],[-1,0],[0,4],[-1,5],[-1,2],[1,1],[0,1],[0,1],[0,2],[0,1],[-1,3],[0,1],[-1,4],[0,1],[-2,6],[-6,1],[-5,4],[-1,5],[-8,1],[-3,8],[-3,18],[-5,9],[-2,17],[-4,-3],[-2,-19],[-2,-7],[-6,-1],[-5,2],[-2,3],[-3,-2],[-4,3],[-5,0],[-3,8],[-4,-1],[-3,5],[-4,1],[-3,5],[-2,8]],[[5702,3170],[1,4],[-1,6]],[[5702,3180],[0,2],[0,1],[0,2],[0,1],[0,1],[1,1],[0,4],[0,2],[-1,0],[-5,-4],[-5,-1],[-7,-5],[-3,-7],[-3,-2]],[[5679,3175],[-3,4],[-1,0]],[[5675,3179],[-1,1],[0,1]],[[5674,3181],[3,8]],[[5677,3189],[0,1],[0,1],[0,2],[0,1]],[[5677,3194],[0,6]],[[5677,3200],[-3,5],[-4,0],[-1,9],[-2,3],[-1,1],[-1,0]],[[5366,3578],[-4,0],[-4,3],[-2,-1],[-3,-11],[-8,-5],[-6,20]],[[5363,3665],[0,3],[0,1],[1,0],[1,-7],[6,-8],[1,-7],[4,7],[2,4],[0,1],[1,-1],[1,3],[0,17],[1,1],[2,1],[2,-4],[2,-1],[0,1],[2,5],[1,1],[2,1],[7,8],[0,-4],[1,-5],[1,-1],[0,-1],[0,-1],[-1,-5],[-1,-1],[-1,-1],[0,-1],[0,-1]],[[5398,3670],[1,-4]],[[5399,3666],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[-1,-6],[0,-2],[1,1],[1,0],[0,2],[2,1],[0,-1],[0,-1],[1,0]],[[5404,3649],[2,-3]],[[5406,3646],[5,6],[3,13],[5,10],[3,12],[7,9],[3,12],[9,7],[4,23],[2,6],[3,13]],[[5450,3757],[-1,9]],[[5449,3766],[0,25]],[[5449,3791],[0,1],[0,1],[1,5],[0,11],[-1,17],[0,3],[0,2],[0,2],[0,1]],[[5449,3834],[0,6]],[[5449,3840],[1,5],[8,19],[3,8],[0,2],[0,4],[0,1],[0,1],[1,2],[5,25],[5,12],[8,6],[1,2],[1,1],[1,4],[4,12],[1,4],[1,2]],[[5489,3950],[0,1],[1,0]],[[5490,3951],[0,1],[0,1],[0,1],[2,4]],[[5492,3958],[0,2]],[[5492,3960],[0,13],[0,7],[0,2],[0,2],[1,13],[0,3],[2,15],[3,9],[0,1],[0,7],[0,1],[0,2]],[[5498,4035],[-1,5]],[[5497,4040],[0,1],[-1,3],[1,5],[0,2],[-1,9]],[[5496,4060],[0,11]],[[5496,4071],[0,1],[0,3]],[[5496,4075],[2,8]],[[5498,4083],[2,17],[1,9]],[[5501,4109],[1,2],[-1,20]],[[5501,4131],[0,22]],[[5501,4153],[3,13],[2,13],[4,14],[4,25],[2,4],[1,4],[0,10],[0,11]],[[5624,4297],[2,8],[0,4],[1,2]],[[5634,4336],[1,2],[0,1],[0,1]],[[5671,4350],[3,7],[2,1]],[[5702,4359],[0,11]],[[5703,4373],[0,3],[1,3]],[[5712,4380],[3,-6],[1,-1],[1,-2]],[[5761,4363],[0,-1],[1,0]],[[5501,4153],[1,-16],[0,-2],[-1,-3],[0,-1]],[[5501,4131],[0,-22]],[[5498,4083],[-1,-6],[-1,-2]],[[5496,4071],[0,-5],[0,-6]],[[5497,4040],[0,-4],[1,-1]],[[5492,3960],[0,-2]],[[5490,3951],[-1,-1]],[[5449,3840],[0,-3],[0,-3]],[[5449,3791],[0,-4],[0,-3],[0,-18]],[[5449,3766],[1,-4],[0,-5]],[[5406,3646],[-2,2],[0,1]],[[5399,3666],[-1,3],[0,1]],[[5343,3666],[0,-4]],[[5333,3638],[-1,2],[-2,7],[-1,10],[-2,5],[0,7],[-3,9],[-8,17],[-1,8],[-2,5],[-3,4],[-1,2],[-1,1]],[[5308,3715],[1,3],[1,12],[1,3],[6,7],[1,6],[3,-3],[2,-9]],[[5323,3734],[1,-2],[2,1]],[[5326,3733],[2,-1],[2,3]],[[5330,3735],[0,3]],[[5330,3738],[-1,1],[-1,1],[0,2],[0,1],[2,10],[0,2]],[[5330,3755],[1,6]],[[5331,3761],[-3,3]],[[5328,3764],[-4,6]],[[5324,3770],[0,1],[0,5],[1,3]],[[5325,3779],[1,5]],[[5326,3784],[-3,11]],[[5323,3795],[-3,-3],[0,2],[0,3]],[[5320,3797],[2,9],[0,3]],[[5322,3809],[0,3]],[[5322,3812],[-1,5]],[[5321,3817],[0,12]],[[5321,3829],[0,2],[1,0],[1,-1],[1,-1],[2,-4],[1,3],[4,3],[4,-6],[11,6],[0,12],[1,3],[0,2],[-1,1],[-1,2],[0,3],[0,8],[0,1],[0,-1],[1,-2],[1,0],[2,7],[6,-7],[2,-10]],[[5357,3850],[1,-10],[1,1]],[[5359,3841],[1,-3],[0,-3],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[1,2]],[[5361,3830],[3,-3]],[[5364,3827],[1,1],[1,0],[5,-4],[1,0],[1,0],[4,7]],[[5377,3831],[3,9],[1,7]],[[5381,3847],[1,0],[0,-1],[1,-9],[1,-2],[0,-1],[1,-1],[0,-2],[0,-12],[6,-1]],[[5391,3818],[1,5]],[[5392,3823],[0,2],[0,1]],[[5392,3826],[3,5]],[[5395,3831],[-2,5]],[[5393,3836],[0,2],[1,2]],[[5394,3840],[0,3],[0,1],[1,0],[0,2],[0,3],[0,2],[0,1],[0,1]],[[5395,3853],[0,1]],[[5395,3854],[0,2]],[[5395,3856],[0,1],[4,3],[0,5]],[[5399,3865],[1,8],[0,5]],[[5400,3878],[-1,3],[0,1],[0,1]],[[5399,3883],[1,1],[1,4],[-1,2]],[[5400,3890],[1,2],[0,2],[0,1]],[[5401,3895],[1,2]],[[5402,3897],[0,1],[-1,2],[-1,1],[0,1],[0,1]],[[5400,3903],[1,2],[0,1]],[[5401,3906],[0,2],[0,2],[0,1],[0,1],[0,1],[-1,0]],[[5400,3913],[-1,11]],[[5399,3924],[0,2],[1,1],[0,3],[0,2],[1,3],[0,1]],[[5401,3936],[0,3],[0,2],[0,3]],[[5401,3944],[1,6],[0,3],[0,2],[-1,3],[-5,9],[-3,-2],[0,6],[-1,3],[0,2],[-1,2],[-1,1],[-4,2],[-1,-2],[-1,4],[0,2],[0,2],[2,7]],[[5386,3994],[0,5],[-1,2]],[[5385,4001],[0,5],[0,2],[0,2],[0,2],[0,2],[1,3],[1,6],[0,2],[2,3],[1,1],[0,2],[0,1],[0,2],[0,3],[2,0],[3,0],[2,5],[1,6],[1,3],[1,3],[1,2],[0,4],[-1,1],[1,0],[0,1],[0,1],[0,1],[-1,1],[-1,3],[0,3],[-1,3],[0,2],[-1,1],[-1,2],[0,2]],[[5396,4081],[0,7]],[[5396,4088],[-1,5],[-1,2],[0,1],[0,1],[-1,0],[-1,1],[-2,-1]],[[5390,4097],[-7,4]],[[5383,4101],[-7,-11],[-4,1],[-4,-5],[-1,14],[-1,7],[0,1],[-1,1],[0,-1],[0,2],[-1,2]],[[5364,4112],[1,2],[0,5]],[[5365,4119],[1,11],[0,11],[2,4],[1,1],[0,3],[0,4]],[[563,2474],[-3,0],[0,4],[3,-4]],[[3018,4848],[-3,-4],[-15,-9],[-1,-3],[-6,-33],[-7,-2],[-2,-13],[-4,-10],[-1,-10],[-4,-16],[-1,-20],[-2,-13],[1,-11],[-4,-20],[-2,-3],[-6,-25],[6,1],[5,8],[2,-14],[3,3],[1,-6],[3,-29],[8,-23],[0,-6],[1,-11],[-4,-11],[1,-8],[-1,-13],[1,-15],[7,-4],[1,-14],[2,-9],[3,-4],[4,-2],[5,5],[2,-2],[9,0],[2,-5],[7,4],[1,4],[6,2],[3,-1],[2,-5],[5,-5],[5,3],[2,-3],[18,-59],[3,2],[2,-5],[5,10],[7,-2],[5,-4],[5,4],[4,-1],[5,3],[6,1],[2,6],[8,-4],[2,-6],[2,-10],[-5,-16],[-1,-11],[0,-13],[-5,-7],[-1,-6],[2,-17],[-2,-35],[2,-17],[-1,-5],[2,-11],[3,-25],[4,-6],[2,-13],[3,-5],[-2,-12],[-2,-1],[-11,-26],[6,-5],[2,-9],[2,-2],[5,-14],[3,-5],[0,-8],[2,-20],[2,-8],[5,-41],[0,-7]],[[3056,3694],[-2,9],[-4,6],[-1,7],[-2,7],[-7,-2],[-5,6],[19,76],[-5,7],[-4,9],[-2,0],[-4,6],[-2,-3],[-1,9],[-5,7],[-3,2],[-4,-5],[-3,-5],[-4,-2],[-2,8],[-9,8],[-5,-13],[-4,0],[-2,-6],[-6,-3],[-7,8],[-2,-6],[-3,3],[-4,-3],[-3,9],[-3,0],[0,8],[2,8],[-2,8],[0,12],[-5,0],[-5,9],[1,14],[-4,16],[-7,4],[-1,6],[-10,12],[-1,10],[-1,5],[-1,12],[-7,16],[-1,0],[-4,13],[-3,-3],[-6,12],[-2,1],[-1,-6]],[[2909,3990],[-4,3],[-7,11],[-4,0],[-3,7],[-4,13],[-7,7],[-3,-5],[0,-10],[-5,-2],[-4,3],[-4,-2],[-6,9],[-3,-2],[-6,5],[-1,18],[-5,4],[-2,9],[-4,-2],[-1,4],[-6,4],[-7,11],[-3,8],[-3,1],[-7,17]],[[2810,4101],[-1,8],[-4,4],[5,16],[2,0],[5,-3],[1,5],[-1,10],[-3,3],[0,11],[3,15],[4,14],[3,4],[1,-8],[6,-2],[-1,10],[4,2],[2,-7],[3,0],[0,7],[1,10],[3,6],[0,12],[4,9],[1,12],[3,3],[1,11],[3,5],[2,13],[-5,7],[4,12],[-7,-5],[0,11],[2,5],[-1,9],[2,14],[0,12],[-1,21],[0,15],[-1,18],[-3,9],[4,1],[3,7],[0,6],[-3,17],[-4,12],[2,4],[1,11],[1,10],[-2,11],[-3,1],[-1,7],[-4,8],[2,4],[-4,13],[-3,6]],[[2836,4517],[2,17],[3,4],[-2,10],[3,0],[3,-10],[6,13],[-1,5],[2,7],[3,8],[-1,8],[-3,12],[-2,14],[-2,5],[3,10]],[[2850,4620],[3,-13],[4,-6],[2,-9],[2,-2],[3,-8],[-1,-13],[5,-3],[0,12],[-1,22],[-3,16],[6,5],[12,23],[2,17],[2,7],[5,6],[3,-2],[5,4],[1,12],[-2,6],[2,27],[-2,8],[4,9],[0,19],[6,9],[1,7],[6,8],[1,4],[5,10],[9,-10],[1,-16],[3,2],[2,15],[2,7],[-1,9],[2,8],[5,3],[5,-6],[12,0],[3,1],[6,15],[4,4],[5,10],[8,7],[5,7],[4,15],[-1,10],[5,2],[2,-4],[1,10],[2,-2],[4,10],[4,-1],[8,-8],[3,-17],[0,-6],[-5,-7],[-1,-5]],[[6217,3110],[-4,1],[1,7],[3,-8]],[[6235,3131],[1,-20],[-5,9],[4,11]],[[6207,3142],[-6,8],[0,10],[1,21],[3,-2],[-1,-14],[4,-19],[-1,-4]],[[4324,5062],[-4,1],[-2,6],[4,8],[3,-8],[-1,-7]],[[4340,5097],[6,-15],[2,-7],[-1,-7],[-5,2],[-3,7],[0,10],[1,10]],[[4356,5097],[2,-9],[-2,-5],[-2,4],[2,10]],[[4365,5161],[5,-3],[0,-7],[-4,-6],[-4,2],[3,14]],[[4325,5192],[-1,-11],[-3,13],[4,-2]],[[4307,5212],[2,-7],[-4,-3],[-2,5],[4,5]],[[4303,5232],[3,-7],[-6,-12],[-3,-1],[-1,13],[7,7]],[[2676,4782],[5,-31],[8,-26],[5,-12],[6,-22],[4,-2],[2,-4]],[[2706,4685],[-1,-6],[-6,8],[-1,-9],[-2,-3],[0,-27],[5,-6],[1,-4],[-4,-6],[-2,-7],[2,-8],[0,-14],[-5,-8],[3,-5],[1,-16]],[[2697,4574],[-2,14],[-5,10],[1,5],[-2,14],[-4,3],[-1,5],[-3,-2],[2,-9],[3,-5],[1,-8],[-9,3],[-4,13],[3,8],[1,7],[-1,14],[-5,12],[-3,7],[-10,13],[-7,3],[-3,4],[-1,8],[1,7],[-4,14],[-2,-1],[-7,15],[-4,-4],[3,-9],[5,-3],[2,-9],[-2,-7],[-5,-8],[-6,15],[-8,6],[-4,12],[-2,19],[1,11],[5,9],[-1,11],[-7,8],[1,4],[4,0],[1,10]],[[2619,4793],[2,8],[20,-18],[7,9],[10,-11],[3,-4],[0,-5],[5,0],[2,-5],[8,6],[0,9]],[[2698,5572],[5,-4],[3,-11],[-1,-13],[-6,-7],[-7,1],[3,9],[-3,12],[0,6],[2,8],[4,-1]],[[2836,5582],[2,2],[5,-4],[0,-6],[-4,0],[-3,8]],[[2823,5616],[2,-7],[-4,-2],[-4,8],[6,1]],[[2914,5426],[-1,5]],[[2913,5431],[-1,0],[-2,-5],[-8,-2],[-6,6],[-7,0],[-7,2],[-8,-3],[-9,-1],[-3,-3],[-9,1],[-3,-3],[-10,0],[4,11],[6,13],[6,7],[2,5],[0,11],[-4,3],[1,6],[-3,5],[-5,-2],[-16,2],[-6,14],[-3,4],[-3,6],[-2,24],[-2,12],[-3,7],[-14,-7],[-5,3],[-5,7],[-5,2],[-3,3],[-3,-3],[-1,7],[-6,5],[-5,11],[-2,1],[-13,0],[-3,3],[-3,9],[-2,-8],[-3,5],[-7,3],[-5,-2],[-2,5],[-6,6],[0,6],[7,0],[5,3],[1,8],[-7,7],[-6,-2],[-3,3],[-12,-1],[-4,1],[0,-5],[-8,-11],[-2,-9],[-4,-2],[-3,-9],[-6,1],[-9,-2],[-2,-8],[1,-8],[-5,-1],[-4,-4],[-5,-8],[0,10],[-5,0],[-4,-6],[-2,5],[8,8],[7,3],[0,6],[-3,5],[2,11],[2,9],[5,10],[7,9],[14,11],[4,7],[18,4],[5,7],[5,3],[5,1],[5,-3],[8,0],[2,-5],[6,3],[3,-6],[3,4],[3,-4],[5,3],[4,0],[2,-6],[8,-7],[7,2],[1,-4],[8,-10],[5,-15],[5,-9],[5,-2],[5,1],[5,0],[11,-11],[3,-6],[6,-5],[5,-15],[6,-7],[5,6],[10,-16],[-3,-3],[0,-9],[3,1],[2,8],[3,-9],[4,-6],[4,-3],[0,-4],[8,-1],[7,-8],[0,-6],[7,1],[2,3],[5,-5],[1,-4],[-5,-19],[2,-4],[6,0],[2,3],[7,-4],[4,1],[11,-15],[3,-10],[3,-3],[5,0],[2,-9],[-3,-8],[-4,1],[-5,-3],[-6,0],[-5,-9],[-3,-1]],[[3089,4866],[-4,1],[-4,7],[1,3],[6,-6],[1,-5]],[[2740,5384],[2,4],[4,-1],[0,-5],[-4,-2],[-2,4]],[[5941,6514],[0,1],[1,0],[-1,1]],[[5941,6516],[0,2]],[[5941,6518],[-1,0],[0,-2],[0,-1],[0,-1],[0,-1],[-1,1],[-1,-1],[0,-1]],[[5938,6512],[-1,0]],[[5937,6512],[0,1],[-1,1]],[[5936,6514],[-1,-1],[0,-1]],[[5908,6522],[4,-1],[2,5],[0,12],[14,-5],[6,2],[11,8],[4,6],[11,6],[-17,-23],[-2,-11],[3,-7]],[[5944,6513],[0,-5],[-3,6]],[[5936,6508],[0,-1]],[[5936,6507],[-1,0],[-1,-2],[-1,-8],[-10,-9],[-6,-4],[-1,2]],[[5916,6486],[-1,0]],[[5915,6486],[-2,-1]],[[5913,6485],[-1,3],[-1,0],[-4,-4],[-7,8],[-3,9],[2,11],[6,10]],[[5907,6523],[1,-1]],[[5411,7647],[5,0],[0,11],[6,-2],[4,-14],[2,1],[9,-4],[3,-5],[13,-2],[2,-9],[-6,-7],[4,-4],[10,-20],[8,10],[-2,14],[8,-3],[4,-8],[8,-1],[-1,-8],[7,-12],[7,3],[6,-8],[7,0],[2,-15],[4,-2],[2,-12]],[[5523,7550],[-9,-2],[-6,-12],[-3,-2],[-3,-13],[-5,-6],[-1,-7],[-9,-8],[-11,4],[-4,-8],[-2,-11]],[[5383,7497],[-2,7]],[[5381,7504],[-1,1],[-1,0]],[[5379,7505],[-2,5],[-1,1],[-1,1],[0,-1],[-1,-2],[-5,12],[-1,0],[-2,1],[-1,3],[-3,6],[-1,2],[0,1],[0,1],[-6,2],[-4,8],[-1,5],[0,1],[-1,0],[-1,5],[-1,2]],[[5347,7558],[0,1]],[[5347,7559],[0,3]],[[5347,7562],[-2,1],[-1,1],[0,2],[-1,1],[1,1],[1,1],[0,1],[0,1],[0,2],[1,1]],[[5346,7574],[1,2]],[[5347,7576],[0,1],[0,2]],[[5347,7579],[-1,5]],[[5346,7584],[-6,5]],[[5340,7589],[-2,9],[-1,3],[-2,1],[0,1]],[[5335,7603],[1,3]],[[5336,7606],[3,-2]],[[5339,7604],[1,-1],[-1,0]],[[5339,7603],[0,-1]],[[5339,7602],[1,-1]],[[5340,7601],[1,-4],[1,7],[5,9]],[[5347,7613],[5,1],[9,7]],[[5361,7621],[4,0],[2,6],[6,1]],[[5373,7628],[2,5],[0,1],[0,1]],[[5375,7635],[1,1],[1,1],[3,0],[1,0],[1,1],[1,-1],[1,0],[1,5],[4,1],[6,6],[1,0],[2,0],[1,1],[0,2]],[[5399,7652],[3,7]],[[5402,7659],[2,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,1],[1,0],[0,-1]],[[5406,7651],[-1,-5]],[[5405,7646],[3,-2],[1,0],[1,0]],[[5410,7644],[1,3]],[[5388,7878],[6,-9],[0,-5],[-9,-3],[1,4],[0,5],[2,8]],[[5371,7919],[3,-5],[4,1],[-4,-18],[-4,-7],[-6,7],[4,3],[-3,12],[10,-2],[-4,9]],[[5262,7931],[3,2],[11,-6],[2,-15],[5,-10],[4,2],[12,-9],[4,5],[4,-3],[0,-11],[-9,-10],[4,-6],[8,4],[2,-5],[6,-2],[1,6],[4,10],[13,3],[6,8],[5,13],[10,-8],[4,5],[3,-11],[5,-4],[5,-7],[6,3],[2,-10],[3,-9],[-2,-2],[5,-8],[8,-1],[0,-7],[1,-11]],[[5397,7837],[0,-1],[1,-3],[2,-13],[-2,-16],[-1,-1],[-2,-2],[-1,-1],[-2,-2]],[[5392,7798],[1,-1]],[[5393,7797],[0,-3]],[[5393,7794],[0,-1],[0,-1]],[[5393,7792],[1,-4]],[[5394,7788],[5,-6],[0,-1],[1,-3],[1,0],[1,-2],[2,-1]],[[5404,7775],[2,-4]],[[5406,7771],[-1,-3],[0,-2],[1,-1]],[[5406,7765],[-1,-4],[-2,-2],[1,-2],[1,-8],[1,-1],[2,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[-1,-2],[1,-1],[2,-2]],[[5410,7735],[-2,-11]],[[5408,7724],[-3,-9]],[[5405,7715],[1,-2],[0,-2],[0,-2],[1,-1],[1,-2],[1,-12],[6,-4]],[[5415,7690],[2,-13]],[[5417,7677],[0,-2]],[[5417,7675],[-1,-2],[0,-4]],[[5416,7669],[0,-2],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[-3,-11],[-1,-3]],[[5411,7648],[-1,-4]],[[5405,7646],[0,2],[1,2],[0,1]],[[5402,7659],[-6,1],[-1,-4],[2,-3],[1,-1],[1,0]],[[5375,7635],[-2,-7]],[[5361,7621],[-5,-4],[-9,-4]],[[5340,7601],[0,1],[-1,0]],[[5339,7603],[0,1]],[[5336,7606],[0,-1],[-1,-1],[0,-1]],[[5335,7603],[5,-14]],[[5346,7584],[0,-3],[1,-1],[0,-1]],[[5347,7576],[-1,-3],[0,1]],[[5347,7562],[0,-2],[0,-1]],[[5347,7559],[0,-1]],[[5379,7505],[2,-1]],[[5381,7504],[2,-6],[0,-1]],[[5383,7492],[0,-6]],[[5356,7454],[-1,-2],[-1,-1]],[[5359,7437],[1,-6]],[[5362,7412],[-1,-3]],[[5359,7404],[-3,5],[-2,1]],[[5317,7407],[-2,-3],[0,-2]],[[5304,7400],[0,1]],[[5301,7406],[1,1],[-1,1]],[[5289,7409],[0,-3]],[[5289,7406],[0,-1],[1,0],[0,-2],[0,-1]],[[5272,7409],[-2,3],[-1,-4]],[[5244,7422],[-4,5],[-3,1]],[[5212,7413],[-2,-1]],[[5210,7412],[-1,15],[2,15],[-1,7],[5,19],[1,18],[5,10],[4,5],[2,10],[-7,5],[-8,0],[-7,10],[-4,-5],[-11,8],[-4,-4],[-6,20],[-4,2]],[[5176,7547],[0,8]],[[5176,7555],[2,5],[0,2]],[[5178,7562],[2,2],[0,1],[0,1],[0,1],[0,1]],[[5180,7568],[0,0]],[[5180,7568],[0,1]],[[5180,7569],[0,1]],[[5180,7570],[0,1]],[[5180,7571],[-1,1]],[[5179,7572],[-1,0],[-6,5],[-2,5],[0,2],[0,1],[-1,1]],[[5169,7586],[0,3]],[[5169,7589],[0,1],[0,2]],[[5169,7592],[0,2]],[[5166,7639],[2,12],[-2,12],[4,4],[-2,7],[3,7],[1,13],[-3,10],[-5,6],[0,5],[6,7],[7,-5],[9,5],[3,6],[-2,9],[8,9],[0,9],[-10,8],[1,11],[9,2],[1,14],[3,8],[0,20]],[[5199,7818],[-4,15],[1,10],[4,6],[20,4],[6,-12],[-3,-4],[4,-7],[4,15],[4,5],[3,12],[3,3],[5,-4],[4,19],[-6,6],[2,8],[-6,-2],[-1,8],[7,2],[4,7],[-9,16],[-1,12]],[[5240,7937],[5,1],[17,-7]],[[6200,4822],[-8,-35]],[[6192,4787],[-4,0],[-2,5],[-3,2],[-6,-6],[-9,-2],[-3,-3],[-5,2],[0,21],[-1,20],[2,14],[3,7],[13,45]],[[6177,4892],[4,3],[4,-10],[3,5],[0,2],[0,4],[1,3],[1,4],[0,1],[1,-1],[6,7]],[[6197,4910],[6,-17],[2,-17],[0,-11],[-1,-6],[-4,-3],[-5,-12],[-4,-1],[-4,-5],[-2,-9],[-4,0],[2,-8],[2,5],[5,3],[7,0],[3,-7]],[[3295,5089],[-1,15],[-2,9],[0,7],[5,-4],[1,-5],[0,-16],[-3,-6]],[[5312,7941],[3,-5],[6,-3],[4,2],[4,-7],[-3,-9],[-8,-1],[-12,9],[1,13],[5,1]],[[5272,7950],[6,-8],[-2,-8],[-5,4],[1,12]],[[5413,7961],[7,-6],[-2,-11],[-10,7],[1,15],[4,-5]],[[5287,7988],[4,-4],[0,-6],[6,-2],[3,-10],[-2,-17],[-6,-3],[-6,3],[-12,14],[-2,13],[2,5],[13,7]],[[5342,8025],[8,-6],[-3,-9],[3,-15],[-4,-7],[-6,-4],[-1,-8],[6,-7],[-1,-6],[-6,-2],[-4,-7],[3,-10],[-5,-3],[6,-8],[-6,-11],[-6,13],[4,8],[-7,14],[-11,3],[-3,11],[2,2],[-4,20],[5,4],[11,15],[3,-14],[7,11],[-4,5],[8,10],[5,1]],[[5247,8085],[-1,-12],[-6,-8],[-3,6],[3,9],[7,5]],[[5240,7937],[1,18],[-2,21],[-5,2],[-4,8],[-6,-1],[3,18],[5,8],[-2,11],[-5,3],[0,6],[0,25],[9,2],[4,-6],[8,19],[6,3],[2,-12],[5,2],[-4,8],[-1,8],[3,8],[-4,3],[-12,-7],[-6,-15],[-6,3],[0,5],[9,19],[5,-1],[6,4],[12,1],[4,5],[11,25],[7,1],[7,8],[-1,-10],[3,-10],[0,-14],[-2,-4],[-5,-20],[2,-25],[6,-3],[6,2],[5,-7],[-1,-8],[-10,-11],[-5,2],[-4,-8],[0,-13],[-6,-7],[-1,-8],[-11,-20],[3,-13],[-6,-6],[2,-8],[5,-5],[1,-6],[-6,-1],[-3,-5]],[[3006,5292],[0,13],[2,7],[-6,8],[-2,11],[4,3],[4,12],[-2,15],[3,9],[1,6],[-4,9],[2,6],[-2,21]],[[3006,5412],[1,8],[2,6],[4,1],[5,-5],[4,-1],[5,7],[5,-2],[6,-10],[5,1],[4,-9],[5,-2],[2,4],[4,-3],[1,-15],[4,-10],[5,4],[6,-4],[5,0],[-3,-8],[-10,4],[0,-10],[5,1],[2,-4],[9,-5],[2,4],[6,-5],[5,-11],[6,-11],[0,-6],[-3,-11],[-3,-3],[-2,-12],[-3,-1],[-3,12],[-2,3],[-4,-1],[-5,4],[-8,-3],[-2,3],[-7,1],[-4,-4],[-4,-12],[-7,0],[-4,-3],[-1,15],[-3,1],[-7,-12],[-3,4],[-1,-5],[1,-7],[-4,-17],[-3,-7],[-3,-15],[-3,10],[-3,5],[-1,10],[-3,6]],[[5264,6167],[-7,-8],[8,-23],[3,-14],[4,-34],[1,-25],[-2,-37],[5,-29],[-4,-25],[-3,-16],[3,-26],[3,-6],[-1,-14],[-1,-10],[-10,-11],[-3,-13],[1,-4],[15,-52],[2,-9],[0,-30],[5,-7],[1,-13],[6,-7],[7,6],[22,-17],[2,-4],[11,-54]],[[5332,5685],[-25,-37],[-19,-29],[-18,-29],[-31,-46],[-32,-48],[-12,-27],[-12,-26],[-21,-47],[-3,-4],[-18,-9],[-24,-12]],[[5117,5371],[-22,-10],[-4,-1],[-5,12],[4,19],[-2,10],[1,17],[-8,11],[-12,5],[-3,3],[-3,12],[-3,4],[-3,-5],[-8,7],[-4,8],[0,8],[-3,6],[-5,3],[-2,6],[-3,0],[-1,4],[1,14],[-1,8],[-32,54],[-26,45],[-24,41],[-20,32],[-25,44],[-20,33],[-18,30]],[[4866,5791],[-5,8],[-10,15],[-5,8],[-17,26],[-5,8],[-5,8],[-11,17],[-11,16],[-22,34],[-6,8],[-5,8],[-6,9]],[[4758,5956],[0,7],[0,13],[0,7]],[[4758,5983],[0,72],[0,2],[1,1],[0,1],[4,4],[1,3],[2,2],[1,4],[8,12],[13,23],[7,-1],[6,9],[5,0],[5,-4],[2,5],[12,4],[8,0],[7,3],[1,-7],[5,0],[3,9],[4,17],[3,7],[3,4],[5,10],[7,8],[4,7],[3,9],[6,6],[9,3],[5,6],[0,4],[0,5],[1,3],[2,5]],[[4901,6219],[-2,10]],[[4899,6229],[-4,6],[-1,-2],[-1,0],[0,2],[0,1],[1,2],[0,2],[-1,5]],[[4893,6245],[1,2],[1,3]],[[4895,6250],[3,0],[0,19],[12,5],[6,4],[5,1],[-1,7],[-2,12],[2,1]],[[4920,6299],[10,4]],[[4930,6303],[3,0],[4,0],[10,-1],[18,-2],[1,0],[0,3],[0,2]],[[4966,6305],[-2,0]],[[4964,6305],[-1,1],[2,11]],[[4965,6317],[0,3],[0,1],[1,1],[1,1],[1,1]],[[4968,6324],[2,7]],[[4970,6331],[-7,13],[-3,3],[-4,14]],[[4956,6361],[1,2],[1,2],[0,5]],[[4958,6370],[-5,13],[0,2],[0,7],[1,8],[0,1],[1,2],[0,3],[-2,6]],[[4953,6412],[-1,9]],[[4952,6421],[0,2],[0,4],[0,3],[1,12],[0,1]],[[4953,6443],[0,1],[0,1]],[[4953,6445],[-2,13]],[[4951,6458],[-2,6]],[[4949,6464],[3,8],[-1,1],[-3,7],[0,2],[1,4],[1,4],[0,2],[-11,18],[-1,1],[0,2],[0,3]],[[4938,6516],[1,0],[1,1],[2,-2],[9,4],[7,11],[3,2],[3,5],[2,13],[5,8],[6,6],[4,-3],[4,4],[1,6],[4,3],[2,-6],[4,-2],[4,5],[3,14],[15,20],[6,3],[5,8],[6,2],[22,4],[7,4],[4,-3],[5,2],[8,14],[7,-5],[1,5],[7,-2],[5,3],[5,7],[8,-3],[9,2],[9,-1],[9,-8],[1,-6],[5,-4],[4,2],[3,7],[5,5],[4,-1],[9,6],[4,12],[3,2],[3,-8],[7,-3],[2,-4],[10,6],[1,7],[3,1],[5,-7],[4,-2],[1,-5],[4,-3],[9,8],[8,-4],[2,2]],[[5238,6648],[1,-3],[1,-3],[0,-1],[-1,-1]],[[5239,6640],[-6,-13]],[[5233,6627],[-7,-8]],[[5226,6619],[5,-6]],[[5231,6613],[1,-7],[-2,-7]],[[5230,6599],[0,-3],[0,-2],[0,-1],[1,-1],[-1,-2],[0,-1],[-1,-5],[0,-4],[0,-1],[0,-5],[-1,-5],[1,-3],[0,-3],[1,-5],[1,-2]],[[5231,6556],[0,-8],[0,-2]],[[5231,6546],[-1,-5],[0,-3]],[[5230,6538],[0,-2],[0,-3]],[[5230,6533],[1,-3],[1,-1],[1,-1],[1,-1],[-1,-2],[-1,-5],[-2,-3],[0,-8],[-1,-4],[0,-3],[0,-2],[0,-8],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-2],[0,-1],[-1,-1],[0,-2],[-1,-1],[-2,-3],[-2,-3],[-5,-6],[-2,-11],[-4,-4],[-1,-4],[-1,-2],[-1,-2],[-1,-14],[2,-17],[4,-15],[1,-2],[0,-1],[0,-9],[1,-5],[9,-8],[3,-9],[3,-10],[0,-2],[1,-18],[4,-9],[15,-23],[1,-3],[2,-21],[1,-8],[0,-8],[1,-8],[2,-16],[2,-24],[1,-8],[1,-7],[1,-16],[1,-8],[1,-8]],[[2774,3783],[-4,-2],[0,13],[2,8],[4,5],[3,-3],[-5,-21]],[[2519,3949],[1,-3],[-5,-15],[-3,-2],[-2,3],[6,15],[3,2]],[[2493,3962],[2,-3],[-1,-10],[-4,-7],[-2,1],[-3,6],[1,11],[7,2]],[[2459,3979],[2,-3],[0,-11],[-3,-2],[-4,6],[-1,8],[6,2]],[[2478,3987],[4,-4],[2,-5],[-1,-6],[-6,3],[0,10],[1,2]],[[2463,4009],[1,-9],[2,-3],[1,-14],[2,-7],[4,-10],[0,-12],[2,-1],[3,-10],[-4,-15],[-6,-4],[-7,1],[-3,9],[2,8],[5,8],[2,-1],[2,8],[-3,6],[-1,7],[-3,6],[-2,20],[-3,-2],[-2,4],[4,7],[4,4]],[[2909,3990],[-9,-5],[3,-5],[1,-11],[5,-9],[0,-7],[-1,-9],[2,-16],[-3,0],[-2,4],[-4,-42],[-15,-45],[-16,-32],[-33,-29],[-2,-5],[-7,-22],[-5,-4],[0,-5],[-4,-34],[-5,-27],[1,-7],[-1,-9],[-5,-7],[-2,-7],[1,-7],[-3,-8],[-3,-1],[-5,1],[-4,11],[-2,14],[0,6],[-4,6],[-4,-3],[-8,13],[-3,1],[-1,-6],[-5,-7],[-2,5],[4,13],[-4,1],[-1,9],[1,6],[5,0],[4,8],[-2,8],[0,10],[-3,17]],[[2768,3754],[6,5],[2,8],[3,1],[3,28],[3,18],[-2,6],[-2,-1],[-3,-8],[-2,3],[-3,-2],[-4,-9],[-4,7],[-6,15],[-7,6],[-1,6],[6,10],[0,14],[-3,21],[2,10],[1,10],[-3,7],[-2,12],[3,9],[5,0],[2,4],[1,11],[3,10],[-2,16],[3,11],[4,6],[5,14],[0,9],[1,27],[-2,7],[0,11],[6,5],[3,5],[5,2],[4,7],[8,3],[2,7],[3,-4],[4,20]],[[5949,6245],[2,-8]],[[5951,6237],[6,-40],[2,-18],[1,-4],[7,-43],[1,-18]],[[5968,6114],[-4,-13],[-1,-15],[-2,-24],[-6,-33],[2,-10],[-1,-13],[-5,-14],[-5,1],[-2,6],[-7,10],[-5,19],[-4,5],[-6,15],[-2,33],[-7,15],[-2,12],[-2,3],[-2,11],[1,9],[-4,18],[-5,-18],[-1,-9],[1,-6],[6,-12],[2,-19],[-1,-8],[5,-16],[1,-12],[4,-7],[4,-14],[5,-15],[5,-9],[2,-8],[-1,-7],[1,-15],[2,-3],[1,-11],[4,-6],[0,-10],[5,-20],[-2,-2],[0,-12],[2,-3],[9,-43],[6,-20],[4,-22],[8,-37],[7,-36],[4,-9],[3,-12],[1,-10],[-1,-13],[1,-2],[-1,-19],[2,-6],[1,-15],[3,-20],[5,-14],[9,-6],[3,-11],[3,-5],[1,-5],[3,-4],[4,-9],[5,-8],[0,-5]],[[6024,5576],[-39,0],[-32,0],[-32,0],[-29,0],[-19,0],[1,11],[-3,3],[-4,-14],[-22,0],[-27,0],[-33,0],[-27,0],[-27,0],[-38,0]],[[5693,5576],[0,42],[0,84]],[[5693,5702],[0,63],[0,42],[0,62],[0,42],[0,72],[0,59],[0,50],[0,4],[0,4],[-3,12],[0,13],[-2,8],[0,3],[1,4],[0,1],[0,2],[-3,13],[-1,5],[0,3],[3,10],[0,2],[1,2],[2,8],[1,3],[0,1],[1,5],[0,4],[1,5],[0,3],[-1,3],[-1,6],[0,3],[-1,5],[-1,9],[0,6],[0,6],[0,2],[0,3],[5,8],[1,6]],[[5696,6264],[2,5],[1,-9],[6,-2],[12,8],[4,1],[11,-7],[16,-5],[5,-5],[5,0],[2,-8],[3,-4],[5,-3],[5,4],[1,-8],[12,-4],[2,1],[12,-9],[6,-9],[5,1],[8,8],[9,14],[6,12],[3,-3],[4,5],[2,12],[10,-8],[5,2],[4,7],[5,4],[8,-9],[2,-1],[7,6],[1,-8],[-2,-5],[3,-11],[3,0],[1,-8],[5,2],[2,12],[5,-12],[7,-5],[6,5],[4,6],[2,-9],[9,5],[4,-1],[11,8],[4,6]],[[6111,5138],[3,-7],[1,-11],[3,5],[4,-5],[-4,-5],[-6,2],[-1,21]],[[6014,5021],[-2,42],[-1,19],[3,10],[4,34],[2,8],[4,25],[2,5],[-1,12],[-1,8],[0,9],[3,8],[0,22],[4,-4],[5,3],[2,-2],[3,12],[0,9],[6,4],[2,7],[2,-3],[4,7],[4,2],[5,7],[4,17],[4,8]],[[6072,5290],[2,-14],[3,-10],[4,-20],[5,-43],[3,-49],[2,-16],[4,-5],[1,-15],[3,-6],[4,-19],[-1,-10],[3,-3],[1,7],[-2,9],[0,6],[3,8],[6,-11],[-2,-8],[4,-18],[4,-5],[2,5],[5,1],[5,-13],[2,-8],[10,-4],[4,-11],[1,-7],[8,-24],[1,-9],[4,-1],[5,-6],[3,-13],[5,-6],[3,-25],[4,1],[3,-12],[3,-4],[1,-11],[5,-4],[3,1],[1,-8]],[[6177,4892],[-7,22],[-5,8],[-2,5],[-2,12],[-1,4],[-2,5],[-5,11],[-9,16],[-5,18],[-5,17],[-12,12],[-4,10],[-5,4],[-5,-3],[-4,6],[-8,1],[-8,-6],[0,3],[-1,6],[0,1],[-1,2],[-1,2]],[[6085,5048],[-2,1],[-1,-6]],[[6082,5043],[-3,-5],[-12,-6],[-3,7],[-3,12],[-6,3]],[[6055,5054],[0,3],[-1,0]],[[6054,5057],[0,1],[0,1],[0,1],[-1,1],[-1,3],[0,2]],[[6052,5066],[-1,-7],[-2,-11]],[[6049,5048],[-3,-21],[-2,-10],[-1,-6],[0,-1],[-1,2],[0,3],[-2,2],[-2,11],[-3,7],[-4,-2],[-1,-2],[0,-1]],[[6030,5030],[0,-5]],[[6030,5025],[0,-1],[-1,-1],[-2,-2],[-1,3],[-6,2],[-1,-1],[-2,0]],[[6017,5025],[-2,-1]],[[6015,5024],[0,-1],[0,-2],[-1,0]],[[5941,6514],[-2,-1],[0,-4],[-3,-2]],[[5936,6508],[0,1],[0,2]],[[5936,6514],[0,-3],[1,1]],[[5937,6512],[1,0]],[[5941,6518],[0,-2]],[[4503,5993],[-3,-12],[-2,9],[3,6],[2,-3]],[[4571,6017],[2,-9],[-1,-12],[-5,-8],[-6,8],[-1,11],[3,4],[0,8],[8,-2]],[[4522,6009],[-4,5],[1,8],[2,0],[4,-8],[-3,-5]],[[4552,6048],[-7,-14],[-2,-16],[-3,-9],[-4,-2],[-4,15],[-2,11],[11,4],[6,11],[5,0]],[[4604,6016],[-4,-5],[-1,3],[6,10],[2,13],[3,12],[1,9],[4,0],[0,-22],[-3,-13],[-8,-7]],[[4503,6067],[2,1],[2,-9],[-3,-19],[-5,21],[4,6]],[[4626,6089],[-1,-10],[-10,-10],[0,10],[3,6],[8,4]],[[5043,6804],[2,-6],[-4,-7],[-4,-5],[-4,3],[4,13],[6,2]],[[5088,6866],[-2,-11],[5,-5],[5,-1],[-2,-10],[-5,-17],[-5,-6],[-2,6],[-6,3],[0,7],[-3,5],[-4,-7],[-4,10],[6,8],[4,7],[6,7],[7,4]],[[5114,6872],[4,-4],[1,-6],[-2,-7],[-6,8],[-4,0],[-1,9],[8,0]],[[4950,7111],[1,-7],[10,-3],[-1,-15],[4,1],[8,-7],[6,-1],[1,-4],[5,-8],[7,4],[7,-10],[6,3],[3,-4],[9,1],[2,11],[11,-5],[2,-4],[5,0],[1,-2],[1,-3],[1,-3],[0,-1]],[[5039,7052],[0,-2]],[[5039,7050],[0,0]],[[5039,7046],[1,-3]],[[5047,7048],[0,-1],[1,0],[1,-1],[4,-3],[3,-6],[7,5],[5,-6],[5,2],[8,7],[7,-2]],[[5088,7043],[-2,-21],[3,-6],[-1,-12],[-11,-18],[-14,-13],[-6,-13],[-15,-7],[-15,-10],[-8,-16],[5,-8],[-9,-10],[-6,-20],[-4,-9],[-11,-32],[-3,-15],[0,-14],[3,-10],[0,-7],[5,-15],[5,-3],[2,-5],[-7,-10],[-2,-6],[-7,-5],[-5,-12],[-2,-9],[-2,-13],[-1,-4],[-4,-15],[4,-8],[-6,-4],[-4,2],[-3,-3],[-4,1],[-5,-9],[-5,-5],[-4,-11],[-2,-19],[-3,-4],[-2,-8],[-4,-3],[-4,7],[-6,-2],[-2,-8],[-3,-1],[-5,5],[-8,0],[-5,-4],[-6,3],[-12,1],[-5,-3],[-6,0],[-2,-9],[-6,-7],[-5,1],[-8,-6],[-4,-16],[-3,-2],[0,-8],[-4,-3],[-5,5],[-4,7],[-3,1],[-5,15],[-1,12],[-4,5],[-1,8],[2,2],[-4,13],[-7,10],[-8,7],[-10,0]],[[4794,6667],[-2,21],[-2,5],[3,14],[3,4],[2,10],[4,6],[2,-1],[3,13],[-5,-1],[-2,6],[-5,13],[3,20],[6,9],[2,11],[-2,7],[-4,0],[-4,17],[0,8],[-5,10],[-1,6],[14,1],[3,13],[1,10],[-4,12],[4,5],[3,8],[-2,6],[1,15],[0,13],[-3,13],[3,3],[5,15],[4,2],[5,9],[3,11],[-4,6],[-6,1],[1,14],[-3,5],[-14,4],[-3,-9],[-9,-3],[-4,5],[-9,-6],[-4,0],[-1,5],[3,9],[-3,11],[-3,-4],[-8,-4],[-4,-6]],[[4756,7009],[-3,-4],[-1,14],[3,11],[-2,11],[1,11],[-6,2],[1,8],[-3,5],[0,11],[-3,7],[0,9],[5,3],[6,11],[4,-4],[5,3],[5,10],[1,6],[6,7],[1,4],[8,3],[6,-1],[5,-4],[4,-8],[16,1],[4,-2],[8,3],[8,0],[2,5],[4,-7],[8,0],[7,-6],[12,-5],[15,-1],[10,7],[8,1],[2,-4],[10,-7],[5,6],[5,1],[11,-10],[7,-1],[9,6]],[[5628,8202],[8,2],[5,-3],[2,-7],[-2,-6],[-9,-11],[-7,1],[-5,-4],[-4,-16],[-5,18],[-4,3],[7,16],[6,7],[8,0]],[[5648,8204],[-3,-6],[-5,5],[3,5],[5,-4]],[[5631,8232],[5,-2],[3,-10],[-8,-2],[-5,-9],[-6,15],[7,14],[4,-6]],[[5778,8266],[4,-8],[-7,-6],[-6,-22],[-6,-8],[-2,-8],[4,-26],[-2,-12],[4,-10],[1,-13],[-7,-16],[-2,-11]],[[5759,8126],[-8,2]],[[5751,8128],[-3,4],[-1,0],[-1,1],[-1,0],[0,-1]],[[5745,8132],[-2,-3],[-2,0]],[[5741,8129],[-1,-1],[-2,-1],[-2,-2],[-7,7],[-3,6],[-1,2],[-3,4],[0,5],[-11,4],[-6,8],[-6,3],[-13,-8],[-1,0],[-2,0],[-2,0]],[[5681,8156],[-2,9],[2,20],[-5,3],[-7,-11],[-3,6],[-7,1],[-2,12],[-5,12],[2,8],[-4,9],[1,22],[8,5],[10,2],[-1,6],[9,6],[22,3],[6,-2],[8,10],[9,0],[2,-4],[16,-2],[5,-5],[8,-3],[8,1],[13,-3],[4,5]],[[6192,4787],[-3,-9],[-4,-15],[-1,-2],[4,-15],[1,-16],[4,-6],[3,-14],[3,-3],[1,-14],[4,-10],[1,-10],[6,-5],[11,-25],[15,-13],[27,-22],[16,-15],[23,-19],[1,-2],[28,0]],[[6332,4572],[-9,-24],[-2,-3],[-1,-4],[-4,-10],[-27,-67],[-9,-22],[-1,-5],[-2,-4],[-2,-5],[-9,-25],[-2,-8],[-1,-1],[-6,-16],[-9,-28],[-1,-1],[-26,4],[-13,-8],[-11,-14],[-4,-9],[0,-1],[-1,0],[0,-3],[-1,-5]],[[6191,4313],[-1,-5]],[[6190,4308],[-1,-1],[-1,-2],[-14,-6],[-4,0],[-6,-9]],[[6164,4290],[0,-4],[-1,-3]],[[6163,4283],[-2,-2],[-1,1],[-2,3],[-8,-4],[-6,-1],[-3,2],[-3,9],[-3,5],[-3,9],[-2,-3],[-9,-8],[-15,-19],[0,-1],[-1,-4],[-1,-5],[0,-3],[-1,-1],[-4,-12],[-1,-5],[0,-2],[-1,0],[-1,1],[0,1],[0,1],[0,1],[-1,0],[-7,1],[-3,4],[-5,-1],[-5,3]],[[6075,4253],[-2,3]],[[6073,4256],[-1,0],[-2,1],[-1,1],[-3,-2],[-8,1],[-4,8],[-24,40],[-2,7],[-5,4],[-6,1],[-16,0],[-3,5],[-1,7]],[[5997,4329],[-4,11],[0,6],[0,15],[0,1],[1,4],[0,3],[-1,4],[0,1],[0,2],[1,4],[-4,4],[-2,-1],[-4,4],[-3,-5],[-2,5],[0,6],[-5,8],[-3,16],[0,11],[0,1],[0,4],[-1,1],[0,2],[-1,2],[-2,8],[0,8],[-1,6],[-1,4],[0,4],[0,3],[-1,3]],[[5964,4474],[0,1],[0,1]],[[5964,4476],[-1,2],[-1,3],[-4,1],[0,10],[-6,6],[-3,7],[0,1],[0,3],[0,2],[0,1],[0,1],[-2,-1],[-2,6],[-1,12],[-3,9],[-5,8],[-4,2],[-3,5],[-3,-2],[-3,4],[-6,2],[-1,8],[6,23],[-1,2],[0,1],[0,1],[0,1]],[[5921,4594],[0,2],[0,5]],[[5921,4601],[2,4],[3,-2],[7,2],[2,-6],[4,3],[3,1],[1,0],[0,1],[3,6],[0,2],[1,2],[0,1],[0,2],[0,21],[-1,20],[0,18]],[[5946,4676],[0,6],[1,10],[3,25],[2,4],[0,3],[1,11],[-1,16],[-1,2],[1,3],[4,17],[4,6],[5,-10],[2,-1],[1,1],[0,1],[0,1],[0,1],[0,1],[2,3],[-1,9],[2,13],[-1,9],[4,20],[-1,16],[0,1],[1,2],[0,1],[4,4],[2,10],[1,1],[0,4],[0,3],[1,1],[0,1],[1,1],[0,1],[1,5],[5,22],[1,2],[1,4]],[[5991,4906],[0,1]],[[5991,4907],[1,0],[11,4],[0,15],[0,1],[0,1],[1,2],[-1,3],[3,24],[4,15],[2,18],[0,12],[2,19]],[[6015,5024],[1,0],[1,0],[0,1]],[[6030,5025],[0,3],[0,2]],[[6049,5048],[3,18]],[[6054,5057],[1,-3]],[[6082,5043],[3,5]],[[5634,8317],[0,-6],[-3,-4],[-7,-4],[-1,13],[11,1]],[[5585,8539],[10,-3],[-5,-7],[-5,10]],[[5804,8951],[-14,-9],[9,-5],[-9,-23],[6,-22],[17,-9],[10,-18],[10,-10],[-3,-13],[-11,-15],[-11,-22],[-1,-11],[13,-25],[1,-10],[9,-18],[6,-28],[-12,-6],[1,-21],[-4,-7],[7,-2],[0,-8],[-7,-8],[6,-14],[7,-1],[3,-7],[-5,-7],[3,-16],[13,-10],[1,-10],[-2,-6],[-9,-15],[-6,-3],[14,-20],[10,-7],[11,-12],[0,-6],[9,-15],[-3,-9],[-6,-21],[-9,-14],[-8,-8],[-23,-43],[-7,-7],[-9,-17],[-12,-11],[-5,-10],[-3,-2],[-19,-27]],[[5772,8343],[-3,-5],[-7,-2],[-11,6],[-2,-4],[-7,-3],[-7,0],[-4,-4],[-7,3],[-10,-13],[-15,0],[0,-5],[-10,-1],[-29,-14],[-6,1],[-9,-6],[-1,11],[-4,-1],[-5,10],[-4,4],[-8,1],[5,9],[-9,1],[-7,4],[-8,11],[-8,1],[-4,16],[0,12],[6,16],[-1,21],[3,2],[-7,28],[-4,4],[3,26],[-3,1],[-3,9],[2,8],[-2,13],[7,6],[2,12],[5,12],[8,-2],[8,5],[5,5],[-5,10],[6,3],[2,9],[5,6],[5,-4],[2,11],[19,16],[3,13],[8,12],[10,11],[2,11],[10,13],[8,4],[5,-7],[5,11],[-4,16],[2,21],[-8,8],[-11,3],[-5,11],[-9,2]],[[5671,8721],[-4,16],[-9,12],[-2,16],[7,9],[0,14],[3,4],[-12,24],[5,10],[1,10],[-10,4],[4,8],[-2,21],[5,3],[-14,15],[-3,12],[-13,9],[-14,3],[-5,7],[-12,8],[-15,21],[-9,5]],[[5572,8952],[4,4],[8,-4],[0,10],[8,8],[9,-2],[10,-18],[16,-21],[12,-3],[5,-4],[15,7],[5,7],[11,-8],[10,-3],[5,-7],[7,5],[2,13],[13,5],[4,9],[-2,13],[4,13],[0,10],[5,13],[4,1],[9,15],[22,1],[8,9],[8,1],[8,-13],[6,-6],[21,-10],[6,-15],[-14,-17],[-1,-8],[4,-6]],[[9954,2640],[3,-6],[-4,-3],[1,9]],[[9951,2753],[0,-4],[9,-18],[-1,-7],[2,-8],[-1,-4],[2,-11],[-5,-5],[-2,3],[-4,-3],[-3,-8],[-8,-1],[-1,2],[-14,10],[-2,11],[1,7],[4,8],[-2,7],[7,13],[6,7],[2,-3],[4,3],[6,1]],[[0,2793],[2,7],[3,-6],[-1,-6],[-4,-5],[0,-2],[0,12]],[[0,2838],[9996,-5],[-4,-16],[-4,-6],[-3,-12],[1,-4],[9,18],[1,-16],[-5,1],[-3,-5],[-9,-1],[0,8],[-7,-9],[0,-7],[-4,4],[-2,-8],[-3,-2],[-3,16],[-3,1],[2,11],[3,-4],[7,14],[9,5],[2,0],[7,9],[5,7],[-9992,2],[0,-1]],[[3309,277],[-3,-7],[-4,9],[6,3],[1,-5]],[[3351,313],[3,-7],[-5,-12],[-3,0],[-9,-24],[-4,-3],[-7,1],[-3,-12],[-5,-5],[-7,3],[-3,10],[14,9],[-2,8],[8,7],[-2,6],[-7,7],[1,6],[9,-4],[3,7],[18,-3],[1,6]],[[3368,315],[7,2],[7,-7],[9,1],[3,-12],[-2,-13],[-7,-2],[-8,-10],[-10,0],[5,-8],[-4,-3],[-6,0],[-5,5],[0,-10],[-2,-6],[-10,-2],[-2,9],[1,12],[4,7],[7,10],[5,15],[-2,6],[10,6]],[[6541,2500],[4,-2],[3,-11],[3,-7],[-1,-12],[-3,-3],[-4,0],[-6,6],[-4,17],[3,10],[5,2]],[[6252,3089],[3,-5],[0,-8],[-2,-1],[-1,14]],[[3483,4165],[0,1],[1,0],[1,0],[5,12],[1,7],[1,5],[2,7],[0,1],[0,4]],[[3494,4202],[1,1],[-1,1]],[[3494,4204],[0,1],[0,1],[1,2],[0,2],[0,1]],[[3495,4211],[0,1]],[[3495,4212],[0,1],[0,1],[0,1],[0,2]],[[3495,4217],[-1,0],[1,4]],[[3495,4221],[-1,1],[0,4]],[[3494,4226],[3,8],[0,1],[1,2],[0,1],[0,1],[0,1],[1,3],[1,3],[0,11],[-1,2]],[[3499,4259],[-1,0]],[[3498,4259],[-1,8],[0,1],[-1,2],[-2,2]],[[3494,4272],[-3,12],[-1,3]],[[3490,4287],[0,1],[0,2],[0,1],[0,2],[0,3],[-1,1],[-1,2],[0,1],[1,1],[0,1],[0,2],[-1,3],[0,5],[-1,8],[0,1],[1,3],[0,1],[0,3],[0,1],[-1,2],[0,2],[1,2],[0,1],[-1,1]],[[3487,4337],[-1,2]],[[3486,4339],[0,9],[0,1],[0,1],[1,2],[0,1],[0,3],[0,1],[0,1],[1,2]],[[3488,4360],[4,16]],[[3492,4376],[2,4],[1,2]],[[3495,4382],[2,2],[2,13],[2,13],[5,-2],[7,-10],[7,-2],[8,-6],[5,-11],[1,-3],[10,-21],[3,-2],[1,-7],[5,-7],[4,-12],[4,2],[2,-20],[2,-10],[-1,-11]],[[3306,5059],[3,-14],[1,-9],[-5,1],[-1,6],[-3,7],[-2,11],[3,4],[4,-6]],[[3288,5166],[2,-14],[-1,-6],[-3,-4],[-2,10],[-1,12],[1,7],[4,-5]],[[3295,5170],[5,-5],[-8,-5],[-2,4],[1,7],[-1,7],[2,5],[3,-13]],[[5262,7061],[2,-9],[1,-19],[0,-13],[-4,-12],[0,-18],[-6,-18],[-7,3],[-5,7],[4,8],[-6,2],[3,13],[-2,10],[-5,9],[4,7],[-2,6],[1,11],[4,7],[6,3],[2,6],[7,1],[-1,7],[3,13],[2,-14],[-1,-10]],[[5160,7553],[1,-3],[1,0],[0,-1]],[[5162,7549],[3,-4]],[[5165,7545],[5,4],[6,-2]],[[5210,7412],[-1,0]],[[5209,7412],[0,-1],[-2,-2],[0,-3]],[[5207,7406],[-1,0],[0,-3]],[[5198,7403],[0,2]],[[5193,7405],[-2,-6]],[[5191,7399],[-1,-3],[4,0]],[[5168,7332],[0,-3]],[[5170,7324],[-1,-8]],[[5165,7314],[0,-1],[0,-1],[1,-1]],[[5166,7311],[0,-2]],[[5166,7309],[2,0],[1,-1]],[[5189,7318],[1,-11]],[[5190,7303],[0,0]],[[5190,7303],[0,-1]],[[5192,7302],[3,-9]],[[5195,7293],[-7,-7],[0,-8],[5,-5],[0,-10],[5,-7],[-2,-13],[-6,-7],[-3,2],[-4,-4],[3,-6],[0,-6],[7,-6],[1,-8],[-5,-17],[1,-9],[5,-9],[9,-9],[7,4],[2,-7],[-6,-16],[1,-5]],[[5208,7140],[-2,-3]],[[5206,7137],[-1,1],[-1,-1]],[[5204,7137],[-1,-4],[-5,-3],[-5,-7],[-2,-9],[-5,-1],[-1,-15],[-5,-4],[-13,-5],[-14,9],[-5,1],[0,8],[-8,0],[-1,6],[-4,1],[-2,-6],[-7,2],[-1,6],[-9,0],[-2,7],[-5,-1],[-9,-12],[-3,-7],[-3,1],[-8,-13],[-2,-12],[0,-28],[4,-8]],[[5047,7051],[1,1],[1,0],[-1,1]],[[5048,7053],[-1,2]],[[4950,7111],[3,1],[5,13],[4,31],[3,35],[1,45],[2,26],[2,3],[4,-6],[2,5],[-10,14],[-1,6],[5,8],[0,9],[-5,18],[-7,10],[-9,6],[-1,9],[-7,13],[0,8],[3,9],[-8,14],[-3,3],[-3,17],[-7,2],[0,6],[-9,-4],[-7,10],[-5,4],[-9,2],[-2,4],[-5,1],[-4,-5],[-3,4],[-3,8],[-7,7],[9,3],[2,6],[-4,4],[3,8],[-2,3],[-6,-4],[-4,2],[1,14],[11,8],[10,4],[1,-5],[6,4],[3,-3],[3,12],[12,-1],[12,-21],[9,10],[3,-6],[10,8],[0,-6],[8,1],[0,8],[-1,33],[-6,13],[-2,10],[2,11],[6,-2],[6,4],[4,-5],[-2,-6],[7,-12],[7,-2],[11,-2],[5,-4],[9,6],[5,7],[-5,6],[4,13],[12,11],[14,6],[6,8],[4,15],[1,21],[0,21],[5,5],[6,5],[16,6]],[[4800,8469],[13,-20],[-4,-3],[-5,9],[-5,4],[1,10]],[[4808,8470],[8,-9],[-2,-9],[-8,8],[2,10]],[[9394,4498],[3,-7],[-1,-5],[-3,-1],[-2,8],[3,5]],[[5272,4070],[3,-5],[3,5],[36,0],[0,56],[0,25],[0,2]],[[5314,4153],[0,5]],[[5315,4163],[9,1]],[[5355,4160],[2,-1],[1,1]],[[5365,4119],[-1,-7]],[[5383,4101],[5,-1],[2,-3]],[[5396,4088],[0,-2],[0,-5]],[[5385,4001],[1,-7]],[[5401,3944],[0,-8]],[[5399,3924],[1,-5],[0,-3],[0,-3]],[[5401,3906],[-1,-3]],[[5402,3897],[0,-1],[-1,-1]],[[5400,3890],[-1,-7]],[[5400,3878],[-1,-13]],[[5395,3856],[0,-1],[0,-1]],[[5395,3854],[0,-1]],[[5394,3840],[-1,-4]],[[5395,3831],[0,-2],[-3,-3]],[[5392,3823],[-1,-2],[0,-3]],[[5381,3847],[-4,-16]],[[5364,3827],[-2,3],[-1,0]],[[5359,3841],[-2,9]],[[5321,3829],[0,-4],[0,-1],[0,-7]],[[5322,3812],[0,-2],[0,-1]],[[5320,3797],[3,-2]],[[5326,3784],[1,-3],[-2,-2]],[[5325,3779],[-1,-9]],[[5324,3770],[2,-2],[2,-4]],[[5331,3761],[1,-2],[-2,-4]],[[5330,3738],[0,-2],[0,-1]],[[5326,3733],[-3,1]],[[5308,3715],[-2,6],[-1,10],[-10,19],[0,10],[-5,13],[-15,31],[-6,23],[-3,2],[-1,12],[-5,14],[-1,8],[-3,7],[2,15],[-1,11],[-3,2],[-4,7],[0,9],[-4,14],[-2,17],[3,4],[3,-9],[2,8],[0,7],[5,13],[3,45],[9,-5],[-1,6],[-3,5],[-2,0],[-2,13],[-3,5],[0,5],[6,5],[3,-3],[0,12],[-2,11],[3,7],[4,-4]],[[4964,7641],[6,-6],[-3,-6],[-4,-1],[-5,8],[6,5]],[[4883,7822],[3,-3],[-3,-2],[-4,-7],[-4,4],[-2,7],[0,9],[8,0],[2,-8]],[[4825,7880],[-9,-5],[-1,10],[-5,4],[-2,8],[-4,5],[-5,-8],[-3,-13],[-8,2],[-6,4],[-2,7],[-7,10],[7,16],[10,7],[4,18],[4,4]],[[4798,7949],[7,0],[2,9],[5,-1],[8,5],[12,-6],[6,-21],[3,-3],[-1,-11],[6,-1],[3,-14],[-5,-15],[-7,-2],[-2,-10],[-3,-4],[-7,5]],[[4857,7976],[-6,3],[0,15],[5,-1],[2,-8],[-1,-9]],[[4830,8004],[2,-11],[-6,-1],[-6,13],[10,6],[0,-7]],[[4839,8018],[-5,-16],[-3,8],[2,7],[6,1]],[[4832,8061],[2,-7],[9,-6],[-2,-7],[-12,-4],[-2,6],[2,7],[-4,4],[0,6],[7,1]],[[4795,8117],[4,-9],[-7,-3],[3,12]],[[4800,8135],[1,-9],[-4,-2],[-7,6],[2,5],[8,0]],[[4824,8138],[5,-8],[1,-19],[11,-10],[-6,-10],[-3,11],[-8,-3],[-5,11],[-6,5],[0,10],[11,13]],[[4827,8185],[-3,-6],[-2,-12],[1,-5],[-5,-8],[-12,-13],[-3,5],[2,10],[-3,13],[6,3],[2,8],[13,13],[4,-8]],[[4907,8206],[9,0],[-3,-10],[1,-7],[-4,-7],[-22,-26],[-3,-7],[6,-3],[-5,-11],[1,-7],[6,2],[9,9],[6,1],[6,-4],[4,2],[14,-2],[9,2],[8,-6],[2,-10],[-6,-11],[-2,-15],[-5,-17],[-6,-10],[-3,-11],[-6,-8],[-2,-7],[7,-6],[-6,-7],[-5,1],[-9,-16],[10,-1],[4,7],[4,-1],[9,-9],[5,-1],[9,-20],[5,-4],[2,-21],[2,-15],[3,-7],[3,-17],[5,-9],[9,-4],[6,-6],[4,-15],[8,-10],[-3,-8],[2,-9],[8,-18],[-5,-5],[8,-11],[3,-14],[0,-10],[-9,-12],[6,-9],[4,0],[5,13],[11,0],[9,-3],[10,-11],[3,-11],[1,-10],[-4,-15],[-2,-14],[-6,-10],[-6,-12],[-4,4],[-3,-4],[1,-13],[-10,-13],[12,-5],[12,4],[-2,-19],[-9,-7],[-2,-9],[-4,2],[-5,-6],[-7,-3],[-3,-5],[-12,6],[-11,-2],[-7,-5],[-4,8],[-3,-4],[-7,1],[-18,-6],[-1,-9],[-12,3],[-12,7],[-11,-4],[-6,-6],[0,-13],[-4,-7],[-1,-6],[-5,0],[-6,5],[-5,8],[-7,-6],[-7,0],[-2,-7],[-4,-2],[-4,-8],[-3,-9],[-3,9],[-5,3],[-2,-5],[-3,7],[6,3],[11,16],[1,7],[6,5],[7,16],[1,14],[5,-1],[3,4],[2,12],[11,2],[11,-4],[9,1],[2,12],[8,10],[0,6],[-12,-7],[-2,-7],[-10,0],[-5,6],[-4,10],[-3,-4],[-8,-1],[-1,9],[-3,5],[-6,-1],[-2,-6],[-9,-2],[0,6],[-3,11],[-4,4],[21,16],[9,10],[3,8],[1,11],[-2,6],[2,7],[-2,12],[-8,0],[-5,3],[6,7],[1,6],[3,4],[2,4],[3,0],[8,7],[6,-2],[10,6],[4,4],[-2,10],[5,10],[-3,4],[1,12],[6,14],[-2,4],[-11,-5],[-6,20],[-4,8],[6,27],[-12,-1],[-4,-7],[-10,3],[0,-8],[-14,12],[-3,-4],[-5,3],[-1,11],[3,1],[1,9],[4,5],[4,14],[3,4],[-10,29],[-9,10],[-4,0],[4,-16],[-3,-5],[-1,-9],[-5,-21],[-4,0],[2,19],[3,14],[-3,11],[3,7],[2,11],[-2,7],[7,31],[-9,-14],[-9,9],[6,31],[5,16],[-6,5],[-2,11],[2,10],[0,14],[6,6],[3,-5],[5,9],[0,19],[7,15],[2,13],[17,-8],[6,3],[10,1],[13,5]],[[4912,8242],[4,-9],[8,-6],[-3,-4],[-4,5],[-6,-3],[-5,8],[1,8],[5,1]],[[4964,8346],[3,-13],[3,-2],[-6,-20],[-11,9],[0,5],[9,1],[-6,16],[8,4]],[[6206,6947],[-3,7],[-3,-2],[-3,10],[-4,9],[-6,5],[1,5],[-6,0],[-4,-10],[-8,5],[-5,0],[-4,-6],[-3,5],[-5,2]],[[6153,6977],[4,10],[3,12],[-1,13],[-2,8],[-3,20],[-2,18],[-3,8],[-7,3],[-3,14],[-5,5],[-7,2],[-7,3],[-3,13],[-7,5]],[[6110,7111],[2,11],[5,3],[7,-5],[5,2],[10,-12],[10,-3],[5,-7],[14,-3],[3,2],[7,1],[5,-7],[4,3],[7,-6],[0,-3],[5,-9],[9,-5],[8,-8],[-1,-10],[5,-4],[7,6],[2,5],[8,4],[3,-2],[3,-8],[2,10],[6,-5],[3,-1],[5,-11],[4,1],[6,-2],[1,-4],[-3,-16],[9,-15],[7,-2],[6,-7]],[[4929,7545],[-3,2],[4,4],[-1,-6]],[[4995,4797],[5,-5],[-3,-31],[3,-3],[4,-14],[3,0],[3,-7],[-1,-20],[1,-5],[-2,-14],[1,-13],[-3,0],[0,-11],[5,5],[3,-8],[0,-14],[-3,-11],[3,-12],[-1,-5],[-3,-1],[2,-13],[5,-8],[2,-15],[-4,-5],[1,-37],[-3,-9],[0,-8],[4,-10],[-1,-11],[0,-10],[-3,-4],[1,-10],[5,-18],[2,-12],[11,-22]],[[5032,4436],[-2,-4],[-3,-15],[-2,-5],[-5,-1],[-12,2],[-4,-4],[-4,-7],[-11,-10],[-4,-9],[-3,-2],[-5,-9],[-7,-1],[-5,-7],[-9,-6],[-5,-10],[-5,-4],[-2,-5],[-3,-1],[-7,13],[-9,6],[-8,3],[1,5],[4,2]],[[4922,4367],[1,3],[-1,4]],[[4917,4401],[-2,6]],[[4915,4505],[2,9]],[[4921,4558],[0,1]],[[4921,4559],[2,8],[2,6],[2,8]],[[4930,4587],[-1,20],[-2,20],[0,11]],[[4923,4646],[-1,2]],[[4922,4648],[1,1],[0,1],[0,3]],[[4926,4663],[-1,1],[-1,2],[1,3],[0,8]],[[4683,4888],[-3,-15],[4,-11],[5,-2],[4,13],[4,0],[2,-7],[0,-5],[3,-10],[9,21],[3,3],[6,-6],[5,-6],[4,-2],[3,10],[6,6],[3,7],[-3,8],[3,3],[4,-3],[5,-5],[0,-9],[2,-7],[0,-7],[3,-4],[0,-7],[-1,-19],[3,-1],[1,-8],[5,-7],[2,-2],[-1,-8],[-4,-12],[-2,-9],[4,-1],[1,5],[4,0],[2,-4],[0,-33],[2,-8],[6,-6],[1,-6],[0,-3],[0,-4]],[[4781,4673],[-1,-7]],[[4782,4654],[1,-2],[1,-2]],[[4784,4648],[-4,-3]],[[4779,4640],[-1,-10],[0,-2]],[[4786,4603],[0,-1],[1,-3]],[[4771,4599],[-1,-7]],[[4777,4580],[0,-2],[1,-3]],[[4778,4573],[-3,1]],[[4775,4574],[0,-5],[-1,-5]],[[4764,4540],[-2,10],[-4,0],[-1,-13],[-5,-19],[-6,-1],[-3,11],[-6,2],[3,15],[0,8],[-3,9],[1,11],[-3,18],[-2,9],[-2,7],[-4,1],[-4,-2],[-4,3],[-5,-2]],[[4714,4607],[-3,0],[-4,-11],[-1,-2],[-2,2],[-1,0],[0,-1],[-1,-1],[0,-3],[-1,1],[1,3],[1,6],[1,8],[2,7],[2,1],[0,2],[0,1],[-1,4],[0,2],[-2,5],[0,17],[-4,2],[0,2],[0,3],[1,3],[1,1],[0,3],[0,1],[0,1],[0,1],[0,1]],[[4703,4666],[-1,2],[-1,1],[-1,2]],[[4700,4671],[-1,2],[-1,3],[0,2],[0,1],[0,1]],[[4698,4680],[0,1],[-1,1],[0,2]],[[4697,4684],[-2,7],[-1,6]],[[4694,4697],[-4,9]],[[4690,4706],[-1,1],[0,5],[-1,2],[-2,1],[-17,0],[-1,-5],[-6,-4],[-3,4],[-7,-5],[-1,-10],[-3,-9],[-1,-12],[-4,-10],[-3,-1],[-2,-12],[-3,-4],[-2,2],[-2,-1],[-1,-1]],[[4630,4647],[-1,3],[2,3],[-1,4],[-1,11],[-3,2],[-3,10],[-2,15],[-3,4],[-6,14],[-6,6],[-5,13],[-3,0],[0,7],[-4,11],[-1,10],[-4,9],[1,5],[-3,11],[-1,2],[-2,-13],[-3,4],[3,12]],[[4584,4790],[4,21],[4,13],[4,0],[7,11],[7,-2],[4,4],[2,0],[1,0],[1,0],[0,1],[0,1],[0,3],[0,1],[0,9],[0,3],[0,3],[0,1],[0,2],[-2,1],[-1,3]],[[4615,4865],[-3,5]],[[4612,4870],[-1,0],[0,1],[1,1],[0,1],[0,2],[3,4],[1,-2],[2,0],[1,1],[0,2],[0,3],[0,5],[1,3],[0,1],[0,1],[0,2],[-2,4],[0,2],[0,2],[0,4]],[[4618,4907],[9,-1],[3,0],[6,-1],[0,-9],[3,-4],[2,5],[4,-7],[7,-3],[4,-6],[8,7],[4,1],[5,-3],[7,4],[3,-2]],[[4534,4935],[-2,20],[4,11],[5,-10],[-1,17]],[[4540,4973],[29,0],[1,9],[2,4],[3,-2],[5,5],[5,-1],[3,-10],[2,-3],[4,3],[4,-10],[4,-5],[6,8],[4,1],[4,-11],[-1,-6],[-6,-3],[-4,-5],[-5,1],[-6,8],[-4,0],[-1,4],[-7,6],[-3,7],[-2,-5],[0,-7],[-5,-4],[-4,1],[-8,-4],[0,-12],[-24,1],[-2,-8]],[[4553,4800],[0,-10],[-3,0],[-2,5],[5,5]],[[4557,4829],[1,-9],[-4,-3],[-1,4],[2,7],[2,1]],[[4556,4851],[-2,-9],[-3,3],[0,5],[5,1]],[[4612,4870],[1,-1],[2,-4]],[[4584,4790],[-3,-8],[-1,9],[-3,5],[-4,2],[-1,3],[-1,10],[-2,2],[3,12],[6,11],[-8,-5],[-2,9],[5,16],[-4,-2],[-2,-6],[-7,-7],[-4,1],[0,11],[-5,-2],[-5,8],[-1,14],[-3,-1],[-3,7],[-1,0],[-1,4],[-1,0],[-1,-1],[0,1]],[[4535,4883],[1,1],[1,1]],[[4537,4885],[8,1]],[[4545,4886],[4,5],[15,-1],[13,18],[22,0],[9,-1],[10,0]],[[5272,4070],[-2,7],[-4,-4],[-2,6],[-4,1],[1,10],[4,16],[2,12],[5,16],[-1,14],[0,11],[0,5],[1,1]],[[5272,4165],[0,-3]],[[5243,4267],[4,0],[1,-8],[-2,-9],[-3,-14],[-2,-8],[-7,5],[-1,5],[2,8],[2,0],[2,14],[2,8],[2,-1]],[[5663,6547],[4,0],[4,4],[0,-9],[5,-8],[10,6],[7,0],[2,-5],[9,-1],[3,-3],[5,3],[3,-1],[-1,-11],[3,-4],[2,5],[5,3],[6,-4],[-2,-10],[-2,-3],[-5,3],[-5,-2],[-5,0],[-9,-2],[-5,-3],[-10,-1],[-1,12],[-4,1],[-5,6],[-9,1],[-7,3],[-6,-1],[-2,5],[1,9],[7,8],[2,-1]],[[5640,6596],[-4,0],[1,13],[4,-11],[-1,-2]],[[5784,6612],[-3,-18],[-10,-21],[-2,5],[1,9],[-1,6],[5,12],[6,7],[4,0]],[[5710,6660],[-1,-9],[-3,-4],[-3,11],[6,9],[1,-7]],[[5731,6698],[-8,-8],[1,9],[7,-1]],[[5748,6707],[-2,-8],[-2,0],[-4,11],[5,1],[3,-4]],[[5576,6714],[4,-3],[-2,-11],[-3,6],[1,8]],[[5690,6718],[4,-11],[-2,-3],[-7,15],[5,-1]],[[5571,6759],[3,-15],[3,-10],[-2,-5],[-7,9],[-4,1],[2,9],[3,-1],[2,12]],[[5723,6766],[3,-8],[0,-12],[-1,-5],[-4,-5],[-3,7],[3,9],[-4,10],[0,4],[6,0]],[[5574,6774],[0,-6],[-4,-1],[2,14],[2,-7]],[[5651,6789],[5,-9],[6,-6],[6,-1],[4,-10],[-1,-9],[4,-16],[4,-3],[3,1],[-1,-13],[-5,0],[-9,30],[-11,1],[0,9],[-12,21],[-6,4],[4,9],[5,2],[4,-10]],[[5733,6819],[6,-19],[-6,-6],[-7,4],[-7,9],[-1,8],[13,9],[2,-5]],[[5553,6853],[-2,-6],[0,-11],[-5,9],[0,8],[5,2],[2,-2]],[[5706,6870],[-4,-16],[-1,8],[-4,-4],[-2,9],[5,2],[2,-4],[4,5]],[[5688,6913],[-4,-4],[-4,7],[4,10],[4,-4],[0,-9]],[[5731,6991],[7,-8],[1,-16],[-8,-9],[0,-12],[1,-9],[-3,-3],[-4,-11],[-2,-2]],[[5723,6921],[-4,8],[-10,2],[-7,5],[-8,0],[-6,-7],[-4,1],[-2,6],[-4,0],[-2,-8],[-7,-8],[-8,4],[-3,-6],[5,-10],[-1,-10],[9,-5],[6,-12],[-3,-4],[-3,11],[-7,7],[-6,-4],[2,-8],[6,-6],[-1,-12],[-4,5],[-4,14],[-8,4],[-1,-5],[4,-12],[5,-4],[-2,-4],[-6,6],[-2,7],[0,9],[-8,6],[-5,12],[4,5],[-2,6],[-6,-9],[-3,-2],[2,-8],[-3,-15],[0,-8],[4,-7],[4,-13],[2,-13],[5,-7],[5,-12],[2,-10],[-4,-2],[-1,9],[-4,2],[-5,-2],[-1,-5],[4,-7],[2,-8],[-5,-6],[-2,-10],[12,-7],[6,-13],[5,-2],[0,-4],[3,-6],[7,-4],[3,-6],[-2,-6],[2,-18],[0,-13],[-3,-1],[-2,8],[-3,2],[-3,10],[-6,5],[-1,-3],[-5,0],[-4,-5],[2,-7],[0,-14],[6,-4],[4,-7],[-2,-3],[-11,-5],[2,7],[-5,5],[-6,2],[1,-11],[6,-26],[3,-16],[-2,-7],[2,-9],[-3,-5],[-6,21],[-4,0],[-3,-7],[-1,-18],[-4,4],[1,11],[-6,25],[-6,-3],[0,-13],[-7,2],[0,10],[-3,6],[0,8],[3,9],[-1,8],[-3,12],[-4,7],[-3,8],[-5,5],[6,13],[1,13],[7,-4],[4,11],[5,3],[8,-11],[3,-1],[9,-8],[6,-9],[2,11],[3,-2],[4,3],[-3,8],[-6,2],[-5,6],[-4,-2],[-3,9],[-2,-6],[-11,5],[-6,-6],[-6,-1],[-5,7],[-6,-8],[-3,15],[-1,7],[-3,13],[-5,1],[1,7],[6,3],[3,-5],[2,9],[-2,3],[-11,3],[-5,10],[-2,5],[-4,3],[-4,15],[1,3],[0,3],[1,1]],[[5561,6842],[0,1],[0,1]],[[5561,6844],[1,0],[0,1]],[[5563,6849],[0,2],[0,3],[1,8]],[[5582,6929],[9,1],[2,3],[6,-3],[0,1],[1,1],[1,0],[0,1],[0,1],[1,1],[1,-1],[5,10],[0,2],[0,1],[8,4],[3,-1]],[[5619,6950],[0,-1],[2,0]],[[5621,6949],[1,-1],[9,4],[0,10],[2,2],[3,0]],[[5667,6978],[2,0],[2,-1]],[[5686,6968],[2,-3],[0,3]],[[5726,6970],[0,2]],[[5726,6972],[0,2],[0,3]],[[5723,6989],[2,3]],[[3288,4862],[-4,3],[3,11],[1,-4],[0,-10]],[[3786,8296],[-5,-7],[-6,5],[3,8],[8,-6]],[[3788,8312],[13,-4],[-1,-5],[-8,4],[-3,-9],[-9,5],[-6,8],[1,5],[13,-4]],[[3669,8362],[3,-7],[-7,-2],[-5,8],[9,1]],[[3823,8505],[10,-2],[-1,-5],[-8,-1],[-3,2],[2,6]],[[3846,8548],[7,-4],[5,-10],[-9,2],[-12,16],[4,2],[5,-6]],[[3579,8612],[3,18],[6,-5],[-9,-13]],[[3876,8642],[2,-8],[7,-9],[-10,1],[-2,14],[-9,15],[5,2],[6,-7],[1,-8]],[[3961,8721],[2,-10],[-12,-8],[-6,4],[0,12],[9,8],[7,-6]],[[3583,9015],[9,-7],[-8,-7],[0,-12],[-8,-1],[-2,14],[9,13]],[[3535,9016],[20,-9],[5,-13],[-9,-11],[-19,-9],[-21,-8],[-15,7],[-2,8],[11,-2],[-2,10],[-7,0],[-17,2],[-7,8],[5,7],[-3,5],[4,7],[-1,17],[10,8],[15,-1],[18,-7],[7,-6],[8,-13]],[[4235,9085],[4,-6],[-8,-5],[-2,9],[6,2]],[[3567,9084],[-2,-3],[-14,4],[6,6],[10,-7]],[[4292,9076],[5,-8],[-15,-4],[-4,-4],[-8,3],[-9,-5],[-41,-6],[4,15],[7,1],[17,17],[11,0],[27,14],[0,-8],[8,-4],[-2,-11]],[[3513,9095],[-13,6],[10,15],[7,-12],[-4,-9]],[[3537,9105],[-13,3],[-1,9],[5,3],[16,-2],[-7,-13]],[[3525,9140],[-1,-9],[-8,1],[-2,7],[11,1]],[[3471,9187],[-9,-10],[-8,4],[12,7],[5,-1]],[[3473,9222],[-16,-18],[-2,15],[11,6],[7,-3]],[[4335,9227],[8,-3],[14,0],[12,-14],[21,-11],[0,-7],[-19,6],[-1,-8],[17,-6],[-5,-11],[-8,1],[-15,12],[-20,9],[-16,12],[-4,17],[16,3]],[[4354,9241],[27,-7],[10,-4],[-7,-8],[8,-6],[-22,-2],[-4,9],[-10,4],[-18,2],[-20,0],[0,6],[21,2],[15,4]],[[4333,9262],[21,-8],[7,-10],[-41,-5],[-17,5],[-10,1],[-7,4],[10,10],[2,6],[22,1],[13,-4]],[[4418,9339],[11,-2],[11,-17],[-25,-5],[-25,8],[3,10],[16,8],[9,-2]],[[4439,9373],[12,-2],[-11,-13],[-15,9],[2,11],[12,5],[0,-10]],[[4505,9402],[-11,-5],[19,-18],[-16,3],[-10,-4],[-13,5],[3,21],[8,2],[20,-4]],[[4481,9497],[-6,-25],[-6,13],[3,11],[9,1]],[[2994,9555],[23,-6],[-21,-3],[-2,9]],[[4519,9737],[-15,-17],[-18,-4],[-17,6],[-7,7],[21,10],[24,6],[12,-8]],[[4479,9748],[-25,-8],[1,9],[11,4],[13,-5]],[[4518,9853],[-24,7],[11,4],[13,-11]],[[4482,9869],[-11,0],[-16,12],[14,4],[13,-16]],[[3576,9881],[-24,0],[-30,9],[-4,10],[24,-4],[34,-15]],[[3722,9928],[31,-10],[13,-9],[-28,-14],[-40,13],[-23,20],[47,0]],[[4105,9998],[43,-1],[139,-22],[-12,-7],[-129,-5],[-40,-5],[17,-5],[41,10],[75,-5],[60,8],[13,-13],[30,-11],[31,-3],[34,-14],[-27,-13],[-4,-6],[-40,-4],[-110,-7],[-56,-3],[-2,-4],[-51,-9],[-28,-9],[2,-10],[17,3],[12,7],[24,2],[49,10],[35,4],[88,-5],[-3,-15],[-44,-12],[19,-4],[30,6],[34,11],[3,16],[50,5],[8,-8],[2,-15],[-6,-18],[-28,-26],[-8,-2],[-12,-18],[29,10],[16,13],[12,3],[7,9],[36,20],[4,-6],[58,-10],[20,16],[-1,8],[35,4],[36,0],[52,-12],[11,-18],[-14,-4],[-11,-11],[-46,-19],[-3,-10],[-28,-4],[-3,-5],[-56,0],[-17,-5],[0,-6],[21,1],[11,5],[13,-7],[18,-6],[-18,-13],[-40,-4],[-44,7],[-14,-13],[-13,-17],[26,-5],[8,-5],[-10,-23],[5,-7],[13,-2],[-1,-8],[-17,-2],[-9,-7],[-1,-14],[-20,0],[-9,-4],[2,-15],[-11,-21],[-1,-14],[-8,-5],[-10,-23],[18,0],[-1,7],[11,14],[6,0],[22,-13],[17,-4],[10,-9],[-12,-5],[-17,11],[-21,-6],[12,-4],[-5,-6],[9,-7],[14,-3],[9,-8],[8,7],[13,-2],[9,-6],[1,-21],[-6,-12],[-16,6],[-9,0],[-14,7],[-17,1],[-28,-18],[-12,6],[-22,-6],[22,-5],[8,-7],[2,-10],[-3,-9],[22,3],[11,-6],[16,3],[7,-10],[-16,-9],[14,-8],[7,-10],[-3,-6],[6,-9],[-1,-22],[-13,-6],[-8,14],[-14,-3],[3,-7],[-5,-27],[7,-10],[12,-2],[10,-5],[12,4],[0,-9],[8,-3],[-11,-15],[-7,-2],[-16,3],[-4,12],[-25,2],[-14,-3],[-8,-8],[-5,-16],[7,-7],[11,4],[25,-12],[9,0],[-3,-10],[-2,-22],[-21,1],[-28,-15],[-22,7],[-25,18],[-2,16],[-9,-7],[0,-12],[-9,-5],[-16,-1],[-4,-9],[-16,-10],[8,-5],[19,-4],[2,-4],[-15,-14],[18,-8],[5,-12],[-5,-9],[10,-1],[4,-6],[17,-6],[5,-7],[13,-6],[16,-12],[-15,-13],[1,-5],[20,3],[-6,-16],[7,-3],[9,4],[8,-6],[-4,-22],[6,-10],[-5,-6],[4,-9],[-3,-12],[7,-2],[-6,-8],[-9,5],[-7,-4],[-8,9],[-3,-10],[-19,0],[-16,13],[-7,14],[-2,19],[-12,14],[-12,3],[-13,15],[-14,5],[-19,-3],[-11,8],[-2,6],[-18,17],[-13,2],[-3,-5],[14,-5],[17,-11],[-1,-4],[10,-9],[9,-4],[7,2],[20,-2],[9,-9],[-6,-13],[-22,-14],[-12,-3],[-18,0],[-8,6],[-9,-6],[5,-4],[-2,-10],[-9,-13],[2,-14],[42,8],[11,-7],[-10,-6],[-8,2],[-13,-11],[-18,-7],[4,-5],[10,4],[9,-5],[2,13],[10,6],[14,-4],[12,8],[19,7],[20,-12],[26,-9],[33,0],[0,-10],[-14,-1],[-3,-14],[-20,-3],[3,-8],[-6,-7],[-8,1],[-14,-18],[-11,-4],[-1,-7],[-17,-18],[-8,-6],[-8,0],[-5,-10],[-21,-3],[-4,-5],[-10,0],[-3,-5],[-34,-9],[-5,-6],[-9,-3],[-14,11],[-4,-10],[4,-8],[-25,-6],[-17,7],[-13,9],[0,-12],[-4,-3],[1,-11],[-12,-2],[-5,-8],[-18,-16],[2,-9],[-13,-30],[-5,-5],[-4,-15],[-5,-9],[-8,-6],[-3,-9],[-16,-10],[-6,4],[-6,-2],[2,-11],[-6,-3],[-7,-10],[-9,6],[-12,-7],[-11,-10],[-12,10],[-4,9],[16,22],[-15,-4],[-6,-13],[-1,-12],[-7,-3],[4,-10],[-3,-9],[-11,1],[-2,-5],[-14,0],[-7,-3],[-7,10],[-5,-13],[0,-19],[-7,-5],[-2,-9],[-16,3],[-8,-1],[0,-14],[12,-13],[2,-13],[6,-11],[-14,1],[-6,-5],[-13,2],[4,-11],[8,-2],[11,0],[4,-3],[-2,-22],[3,-5],[-10,-5],[2,-12],[-7,1],[-3,-9],[-14,9],[-3,0],[-3,-3],[12,-17],[-3,-13],[-5,-15],[-9,-4],[-7,2],[-3,0],[-4,-4],[-1,-9],[6,-4],[4,-10],[-4,-6],[4,-8],[-5,-16],[9,-1],[-2,-10],[-7,-12],[3,-5],[-6,-7],[1,-12],[-6,-5],[1,-19],[-6,-13],[3,-7],[-1,-10],[-4,-5],[-6,1],[-4,-8],[7,-13],[-2,-13],[-23,8],[-14,-5],[-3,-10],[-11,4],[-6,12],[8,9],[-1,11],[-7,-3],[-5,5],[-6,1],[-11,4],[8,13],[-5,6],[-4,-8],[-5,1],[5,12],[-10,12],[-1,-5],[-6,-2],[0,-5],[-6,-8],[-5,4],[0,8],[-11,-10],[-14,0],[-2,6],[-2,12],[-15,9],[2,12],[-8,2],[-11,15],[-1,8],[-5,9],[2,7],[-8,6],[10,7],[-9,3],[-5,6],[-11,11],[-3,6],[4,20],[-4,12],[-7,3],[-1,6],[5,6],[-5,6],[-8,-6],[-4,6],[-4,11],[1,10],[-11,12],[4,9],[0,8],[-9,20],[16,0],[7,14],[7,5],[-4,9],[8,8],[-4,8],[-8,-10],[-4,-1],[-5,7],[-11,-33],[-5,-6],[-9,0],[-1,16],[3,12],[-2,5],[8,10],[9,4],[-5,6],[-4,-9],[-8,2],[3,7],[-7,9],[3,14],[-7,-1],[2,10],[-12,9],[1,10],[-12,0],[3,10],[-5,9],[-5,2],[3,11],[-9,2],[3,7],[-4,8],[2,11],[6,5],[3,8],[18,0],[-12,18],[-16,-2],[-8,14],[3,5],[12,2],[35,12],[0,3],[-27,-9],[-21,-4],[2,13],[12,9],[13,14],[9,-1],[5,4],[15,-10],[21,2],[-9,6],[-8,-3],[-4,3],[-10,2],[-7,3],[-10,-1],[-6,-5],[-15,-15],[-4,6],[5,8],[-4,7],[14,11],[2,10],[15,6],[18,-11],[20,2],[17,-11],[4,3],[-13,7],[-8,8],[-3,9],[-9,-1],[-22,-7],[-6,6],[-6,-2],[-6,6],[9,8],[4,7],[18,4],[3,-5],[8,1],[12,4],[6,7],[-5,13],[1,19],[8,0],[9,-7],[8,0],[-8,13],[-12,-2],[-6,2],[5,9],[2,21],[7,12],[10,-1],[-3,8],[-16,5],[-14,0],[-5,4],[-20,3],[-8,11],[-17,10],[-22,4],[-16,20],[8,8],[9,2],[15,-5],[18,0],[10,-4],[25,-19],[15,-1],[-10,11],[13,6],[-14,3],[6,13],[-8,2],[-12,8],[2,8],[-12,0],[20,13],[-6,3],[-8,-8],[-6,9],[-20,4],[8,7],[1,11],[-28,5],[-8,-22],[-19,-6],[-10,6],[-8,-4],[-6,5],[-10,19],[14,8],[2,7],[-7,8],[18,15],[-2,8],[-7,0],[-12,7],[4,4],[15,0],[9,24],[-10,11],[-13,5],[0,13],[5,10],[-6,5],[-10,16],[-2,13],[-11,13],[2,14],[-12,-3],[5,12],[-3,6],[10,3],[-21,20],[5,3],[-36,21],[-3,8],[-12,12],[14,8],[-11,11],[-13,4],[-7,13],[-23,11],[-20,0],[-1,9],[-43,6],[-21,8],[-9,1],[-6,-14],[-9,-3],[-10,9],[-19,-9],[-8,-8],[-15,6],[5,12],[-14,-4],[-5,-10],[-18,13],[-7,-7],[8,-7],[15,-9],[-54,10],[-19,15],[-15,7],[2,4],[19,6],[4,4],[20,0],[1,7],[-25,-1],[-28,6],[-6,4],[-15,0],[-19,13],[0,6],[12,9],[51,4],[20,9],[25,0],[19,-1],[16,4],[4,5],[-6,9],[-10,4],[-14,0],[-3,-7],[-10,-3],[-29,-1],[-16,-4],[-29,7],[5,8],[-16,1],[-1,7],[-17,-1],[-17,9],[-24,16],[5,29],[18,3],[11,6],[21,-2],[2,6],[36,8],[13,6],[-2,6],[28,7],[37,5],[16,-3],[27,20],[8,9],[-7,24],[5,16],[-10,2],[-16,-6],[-8,5],[-25,-1],[-11,8],[0,12],[18,9],[1,6],[46,16],[10,16],[23,4],[26,12],[22,-2],[19,-6],[16,5],[-10,14],[14,10],[-18,16],[4,5],[34,10],[34,-6],[5,-13],[15,-1],[-10,15],[-27,9],[24,7],[44,6],[71,13],[10,-3],[15,-15],[15,-8],[59,-9],[29,-1],[11,6],[-31,15],[-15,25],[58,-4],[8,-7],[42,-13],[34,-10],[2,-6],[21,-11],[24,1],[-16,12],[13,9],[-8,11],[24,6],[3,5],[-54,23],[20,3],[87,-1],[16,-3],[17,-10],[19,-3],[0,12],[-29,5],[-155,9],[-8,6],[12,6],[35,7],[59,4],[10,5],[26,-7],[29,-14],[35,-2],[18,7],[32,6],[-34,8],[5,12],[54,8],[42,0],[76,7],[8,-1]],[[2526,5139],[5,-3],[2,0],[5,-8],[5,8],[3,-4],[1,-2],[1,-3],[1,-1]],[[2549,5126],[0,-1],[-2,-2],[-3,-8],[-16,-31],[-5,-7],[-1,-3],[1,-1],[0,-2],[-1,-4],[-1,-1],[0,-1],[0,-2],[0,-1],[1,-3],[1,-4],[1,-2],[0,-1],[-1,0]],[[2523,5052],[0,-2]],[[2523,5050],[0,-6],[-2,0],[-2,-7],[-1,0],[-1,-1],[0,-1],[0,-3]],[[2517,5032],[-1,2]],[[2516,5034],[-4,-2]],[[2512,5032],[0,-4],[-1,-1],[0,-1]],[[2511,5026],[0,-1],[1,0],[0,-2]],[[2512,5023],[0,-2],[1,-1]],[[2513,5020],[0,-1]],[[2513,5019],[-5,-6]],[[2508,5013],[-2,-8],[-3,1],[-4,-8]],[[2499,4998],[-1,-3],[-1,-2],[0,-1]],[[2497,4992],[0,-1],[0,-1],[0,-1],[0,-1],[0,-5]],[[2497,4983],[-8,9],[-9,5],[-6,-1],[-11,3],[-6,8],[-6,8],[-14,27],[1,1]],[[2438,5043],[2,7],[0,2],[0,1],[-1,3]],[[2439,5056],[0,5]],[[2439,5061],[0,1],[0,1],[1,2],[0,2],[0,5],[0,2],[0,1],[1,0],[1,1],[0,4],[-3,11],[-1,1],[0,2],[1,1]],[[2439,5095],[5,26],[7,28]],[[2451,5149],[1,2],[5,0],[4,0],[4,0],[7,0],[14,0],[1,0],[0,1],[1,1],[0,1]],[[2488,5154],[0,-1],[-1,0]],[[2487,5153],[0,1],[1,2]],[[2488,5156],[-1,1]],[[2487,5157],[1,1]],[[2488,5158],[-1,7]],[[2487,5165],[1,0],[0,1]],[[2488,5166],[0,1],[0,1],[-1,0]],[[2487,5168],[2,3]],[[2489,5171],[-2,6]],[[2487,5177],[-1,2],[0,1]],[[2486,5180],[-1,1]],[[2485,5181],[-1,0],[-1,-1]],[[2483,5180],[-1,4]],[[2482,5184],[0,1],[0,3]],[[2482,5188],[0,1],[-1,0],[1,1],[-1,3]],[[2481,5193],[-2,7],[-2,4],[-2,1],[-5,7],[0,1],[0,1],[-1,5],[-2,1],[-3,11],[-2,0],[0,2],[-1,1],[-1,0],[0,1],[0,1],[12,0],[0,39],[1,1],[7,0],[6,0],[7,0],[30,0]],[[9024,4977],[0,-9],[-2,-5],[-2,-12],[-2,-3],[-1,14],[4,6],[3,9]],[[3421,4160],[4,-17]],[[3425,4143],[3,0],[2,-4],[1,-1],[0,-1]],[[3312,4371],[-17,51],[3,14],[4,6],[-1,11],[0,6],[-1,12],[2,9],[5,1],[4,4],[2,-2],[3,6],[5,7],[4,12],[-5,6],[-2,-5],[-3,7],[1,8],[-3,14],[3,8],[1,7],[2,6],[4,0],[4,10],[5,7],[1,8],[4,4],[1,5],[-6,19]],[[3332,4612],[6,-15],[2,4],[8,-12],[8,-13],[4,-9],[7,-19],[3,-6],[6,-19],[-1,-22],[-2,-5],[-1,-18],[1,-4],[4,18],[4,0],[3,-5],[3,0],[5,-9],[8,-19],[1,-8],[2,2],[5,-8],[4,-10],[1,-15],[-2,-11],[1,-7],[-3,-10],[-2,-11]],[[3407,4381],[0,-1],[0,-1],[1,0],[0,-5],[2,2],[1,-5],[0,-1],[0,-1],[0,-1],[-1,-1],[-2,2]],[[3408,4369],[0,-6]],[[3408,4363],[-1,0],[0,-1],[1,-1],[1,-2],[-1,-1],[0,1],[-2,-2],[-3,-1],[-7,0],[-3,-5],[-2,-6]],[[3391,4345],[0,-3],[2,-10]],[[3393,4332],[-1,-3],[-1,-12]],[[3391,4317],[-1,-3],[0,-9],[-3,-6],[0,-2],[0,-1]],[[3387,4296],[0,-3],[1,-9]],[[3388,4284],[5,-16],[0,-7],[2,-3],[1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[1,0],[0,-2],[0,-1],[0,-2],[0,-5],[3,-4],[5,1],[2,3],[0,-4]],[[3408,4238],[0,-4]],[[3408,4234],[0,-1]],[[3408,4233],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-1]],[[3408,4227],[1,-2],[0,-2]],[[3409,4223],[1,1]],[[3410,4224],[0,-1]],[[3410,4223],[-1,-2],[1,-1],[0,-1],[0,-2],[1,-1],[0,-1]],[[3411,4215],[-1,0],[0,-4]],[[3410,4211],[0,-1],[1,0],[0,-1],[-1,-2]],[[3410,4207],[1,-7],[2,-5],[3,-7],[0,-10],[1,-2],[1,-1],[0,-2],[2,-10],[0,-1],[1,0],[0,-2]],[[8167,5600],[-3,-8],[-1,6],[4,2]],[[8172,5616],[3,-7],[-1,-4],[0,-9],[-5,7],[-6,0],[5,11]],[[7048,187],[-5,-6],[-5,4],[-1,9],[6,0],[5,-7]],[[2691,5074],[-4,-1],[-4,3],[-13,-18],[-4,-1],[-13,-10],[-1,3],[-5,1],[-2,9],[-4,1],[-2,-5],[-1,-11],[-5,-13],[0,-7],[-3,-2],[-3,-11],[-8,-12],[-3,-8],[-8,14],[-5,-15],[-4,-7],[-3,3],[-6,-3],[-1,-6],[2,-25],[-5,-5],[-2,-12],[-3,-6],[-7,-1]],[[2574,4929],[-3,10],[0,5],[-5,17],[-3,-5],[-3,4]],[[2560,4960],[3,28],[-3,8],[-5,-1],[-2,6],[-4,1],[-2,-6],[-5,-3],[0,8],[-7,5],[-6,10],[-2,9],[-6,5],[-2,2],[-2,0]],[[2523,5050],[0,1],[0,1]],[[2549,5126],[2,-3],[7,14],[5,3],[3,-2],[3,-7],[4,4],[6,-4],[7,-2],[12,3],[3,-2],[4,7],[6,2],[3,6],[5,-1],[6,-7],[7,1],[5,7],[2,0],[9,-8],[0,-7],[5,0],[1,4],[4,-2],[8,-19],[-3,-8],[1,-5],[5,2],[4,-7],[0,-5],[6,4],[4,-1],[4,-16],[4,-3]],[[5512,7052],[-1,-6],[-5,6],[-1,4],[-11,14],[-2,-1],[-8,5],[-7,8],[1,3],[8,-8],[4,-2]],[[5466,7108],[-5,-6],[-5,4],[2,5],[8,-3]],[[5412,7198],[11,-18],[-4,0],[-7,18]],[[5401,7223],[0,-7],[-4,-1],[0,8],[4,0]],[[5524,7294],[1,-1],[-1,-2],[-1,-3],[0,-3],[3,-10],[-1,-4],[5,-7],[-3,-3],[5,-14],[5,-2],[1,-6],[-7,-1],[-1,-5],[1,-10],[-3,-6]],[[5488,7079],[-8,13],[-6,8],[-6,12],[-7,4],[-5,7],[-9,-5],[-5,8],[0,6],[-13,17],[-9,20],[1,6],[4,6],[-12,24],[0,12],[1,7],[-3,11],[-8,13],[-6,4],[-2,-15],[-7,-23],[-4,0],[-2,10],[-4,8],[-3,26],[0,6],[2,-2]],[[5377,7262],[1,-2],[4,0],[3,-3],[1,2],[2,1],[6,2],[5,-1],[1,1],[1,3],[3,9],[1,-3],[0,-2],[1,-1],[1,0],[0,-3],[6,-4]],[[5413,7261],[0,1],[0,2]],[[5413,7264],[1,0],[4,-3],[2,-3],[1,-1],[3,2],[1,0]],[[5425,7259],[-2,19]],[[5423,7278],[0,1],[2,1],[0,1],[3,1],[1,3],[2,1],[1,0],[2,0],[1,1],[0,1],[0,2],[-1,1]],[[5434,7291],[1,7]],[[5435,7298],[0,2],[0,1],[0,1],[0,1],[-1,1],[-1,1],[-1,2],[1,1],[0,3],[2,3],[2,0],[1,2],[3,1],[1,1],[0,1],[3,2],[4,4],[1,9],[1,2],[2,1],[0,1],[2,-1],[1,-1],[2,0],[0,-1]],[[5458,7335],[0,-1],[2,-1]],[[5460,7333],[0,-1]],[[5460,7332],[2,0],[1,-1],[1,-3],[3,-2],[4,-12],[4,-7],[2,0],[2,-3],[2,-9],[7,-1],[2,-7],[6,-3],[9,-1],[6,-3]],[[5511,7280],[7,12],[3,-2]],[[5521,7290],[1,2],[1,0],[1,1],[0,1]],[[2977,5340],[-6,4],[-5,6],[-2,4],[2,5],[10,-10],[1,-9]],[[3006,5292],[-4,11],[-4,4],[-10,-1],[-13,-6],[-14,8],[-5,-3],[-2,3],[-5,-7],[-1,-10],[-3,9],[-6,11],[-4,-1],[-3,4],[-1,6],[1,13],[5,5],[3,-1],[9,-9],[6,-3],[2,2],[15,-4],[7,-3],[3,9],[8,-1],[1,10],[-7,8],[-1,7],[-6,12],[3,4],[-3,9],[3,14],[-3,5],[-6,7],[-5,4],[-5,-1],[-2,6],[3,8],[6,6],[5,0],[5,2],[11,-10],[2,-4],[15,-3]],[[5614,7471],[1,0],[1,1],[2,-1],[2,-11],[3,-1],[1,1],[3,-11],[1,0],[2,0],[1,1],[3,-3],[0,-1],[0,-2]],[[5634,7444],[1,-6]],[[5635,7438],[-4,-8],[-5,-5],[-8,-3],[-3,-10],[-5,-6],[1,-7],[-4,-7],[-1,-8],[-6,-12],[1,-6],[-4,-10],[-1,-8],[-4,-5],[-5,-22],[-3,-6],[-6,3],[-5,-10],[-10,1],[-1,-3]],[[5562,7306],[-2,3]],[[5560,7309],[-7,1],[-4,-2],[-2,2],[-1,1],[-3,-1],[-8,-13],[-4,1]],[[5531,7298],[-5,-5],[-2,1]],[[5521,7290],[-6,-5],[-4,-5]],[[5460,7332],[0,1]],[[5458,7335],[0,3],[-4,6],[-3,17],[-5,0]],[[5476,7443],[5,-1],[4,-8],[10,-10],[11,0],[15,5],[-1,10],[3,6],[16,3],[2,8],[4,2],[7,-7],[11,9],[5,16],[0,4],[9,3],[9,-6],[9,5],[8,-15],[11,4]],[[8426,3239],[2,-3],[-5,-9],[-1,-5],[-11,-8],[0,11],[6,4],[5,12],[3,4],[1,-6]],[[8386,3250],[2,-7],[-4,-6],[-3,0],[3,12],[2,1]],[[8429,3265],[-1,-6],[-3,2],[2,8],[2,-4]],[[8333,3326],[1,-6],[5,-4],[1,-8],[2,-4],[3,3],[4,-8],[2,-10],[4,-6],[1,-9],[-4,-9],[-4,-1],[-3,-6],[-2,3],[-6,4],[-5,16],[-8,10],[-1,4],[-5,3],[-2,-3],[-6,4],[-4,5],[-3,7],[2,10],[4,3],[13,4],[6,-3],[3,6],[2,-5]],[[8473,3317],[-2,-3],[0,-9],[-4,-7],[-3,-10],[-5,-10],[-4,-9],[-8,-1],[-2,-7],[-6,-7],[-6,0],[-3,2],[1,11],[6,6],[0,4],[-5,2],[2,9],[1,20],[9,20]],[[8444,3328],[3,-7],[2,4],[3,-8],[1,8],[3,6],[0,8]],[[8456,3339],[3,1],[4,7],[6,8]],[[8469,3355],[1,-9],[3,4],[3,-2],[-1,-9],[-4,-1],[2,-21]],[[8318,3389],[3,-2],[-4,-12],[-2,8],[3,6]],[[8424,3406],[1,-10],[-8,-2],[0,6],[4,7],[3,-1]],[[8242,3396],[-2,-12],[-5,-18],[2,-6],[-5,-2],[-5,0],[-4,4],[-2,-3],[-4,8],[6,6],[0,9],[-1,10],[7,14],[3,3],[7,-5],[3,-8]],[[8442,3406],[-5,-4],[-1,-6],[-9,-14],[-2,3],[1,9],[7,8],[5,9],[4,-5]],[[8450,3396],[-2,-10],[-2,-2],[-3,16],[3,-3],[5,14],[1,-10],[-2,-5]],[[8858,3399],[-1,-4],[-9,3],[0,4],[4,9],[4,-1],[2,-11]],[[8265,3397],[-2,2],[0,12],[5,2],[-3,-16]],[[8459,3414],[3,-2],[12,0],[1,-5],[0,-8],[-10,-4],[-3,0],[-7,-4],[-2,3],[2,8],[1,11],[3,1]],[[8550,3417],[8,-6],[-3,-5],[-6,5],[1,6]],[[8276,3417],[5,-3],[1,-7],[3,-10],[4,8],[6,-2],[2,-4],[3,4],[4,-1],[2,-12],[0,-5],[3,-14],[-4,-1],[-3,4],[-4,-1],[0,-7],[-8,-4],[-5,7],[-4,-7],[-2,1],[-5,-6],[-4,2],[-5,-7],[-7,-4],[-3,2],[-2,-4],[-4,-2],[-6,7],[-1,10],[2,6],[-2,9],[1,6],[6,6],[6,10],[4,-6],[6,3],[2,-11],[4,-3],[1,-9],[4,-2],[3,7],[3,0],[3,3],[-6,12],[-2,-2],[-5,8],[-3,9],[0,5],[5,5],[2,0]],[[8640,3414],[-2,-7],[-4,0],[5,11],[1,-4]],[[8415,3412],[1,-12],[-3,-2],[0,-6],[-3,-3],[0,-9],[-6,-4],[-5,-5],[-8,0],[-3,-5],[-6,-6],[-11,7],[-1,-9],[-5,2],[-3,-4],[-4,1],[-2,8],[-2,-3],[-5,5],[-6,0],[-4,-2],[-3,4],[-4,-4],[-4,3],[-1,13],[3,10],[6,5],[4,9],[11,0],[2,-5],[7,0],[1,-4],[7,-6],[3,-7],[3,-2],[5,6],[4,3],[6,-2],[7,-10],[6,4],[0,8],[3,6],[4,2],[3,5],[-2,4],[0,9],[2,3],[3,-7]],[[8208,3411],[5,-14],[-3,-9],[-7,-9],[-2,-6],[-3,3],[-6,14],[-4,5],[-4,0],[-5,13],[-1,7],[7,-1],[5,-4],[4,1],[3,8],[3,1],[8,-9]],[[8604,3437],[2,-1],[0,-7],[-2,-9],[-2,1],[-3,8],[1,9],[4,-1]],[[8519,3448],[0,-6],[-4,-5],[-4,-8],[-7,0],[-3,3],[-4,-2],[-3,-7],[0,11],[4,13],[7,-3],[3,2],[5,7],[4,2],[2,-7]],[[8857,3421],[-4,-8],[-2,-1],[-2,-6],[-4,-9],[-4,-3],[-4,2],[-9,1],[-4,-4],[-2,3],[4,23],[1,2],[3,16],[3,15],[6,11],[4,4],[7,2],[5,0],[4,-12],[2,-2],[-1,-19],[-3,-7],[0,-8]],[[8656,3484],[0,-7],[1,-11],[-1,-13],[-7,-18],[-1,-7],[-4,-4],[-3,0],[-1,9],[3,5],[-2,5],[4,19],[3,2],[5,19],[3,1]],[[8574,3483],[-5,2],[3,6],[2,-8]],[[8166,3504],[2,-4],[-1,-5],[-4,-3],[-2,-6],[-4,2],[-4,-9],[-7,1],[-4,-1],[-11,5],[-1,7],[6,12],[14,1],[3,-1],[13,1]],[[8204,3507],[0,-5],[-2,-7],[-2,7],[1,5],[3,0]],[[8738,3537],[-2,-7],[-2,7],[-3,3],[2,7],[5,-10]],[[8733,3535],[2,-4],[0,-9],[-3,-6],[-2,-10],[-3,-5],[-4,7],[2,36],[0,11],[5,-9],[-1,-3],[4,-8]],[[8726,3567],[2,-9],[4,-11],[-2,-2],[-5,14],[1,8]],[[7948,3567],[3,5],[6,-7],[2,2],[5,-2],[2,-5],[5,2],[2,11],[3,-4],[5,0],[3,-12],[6,-7],[4,4],[8,-10],[3,6],[4,0],[1,-7],[4,-11],[2,-19],[4,-4],[2,2],[3,-4],[2,4],[4,-5],[6,-1],[5,2],[5,-2],[5,-3],[8,1],[5,-5],[3,1],[3,8],[2,11],[0,9],[2,8],[5,3],[4,-3],[3,-17],[7,-1],[2,6],[3,-3],[4,-9],[4,-2],[3,2],[2,-8],[4,-1],[4,3],[4,-3],[2,-6],[4,-19],[3,0],[-2,-20],[3,-4],[5,-4],[3,-6],[4,-4],[7,6],[7,-1],[6,7],[4,-6],[3,0],[6,-9],[-1,-13],[-2,-28],[3,-16],[3,-3],[0,-8],[-5,2],[0,6],[-3,4],[-3,-2],[-13,8],[-2,5],[-6,5],[-2,5],[-4,3],[-6,-3],[-3,-6],[-2,2],[-4,-5],[-9,7],[-12,3],[-3,3],[-4,-8],[-6,7],[-5,2],[-3,-2],[-5,2],[-14,10],[-12,16],[-11,8],[-6,0],[-2,4],[-7,2],[-3,-3],[-3,4],[-10,-1],[-2,-9],[-4,0],[-10,5],[-8,6],[-2,7],[-5,5],[-9,3],[-16,3],[-4,7],[1,8],[4,11],[0,5],[-7,0],[-7,10],[-2,2],[-8,-2],[-4,-2],[-6,4],[1,11],[3,-11],[10,27],[0,15],[2,11],[4,14],[3,-9]],[[8346,3534],[-1,6],[0,39],[3,-10],[-1,-26],[-1,-9]],[[8130,3586],[1,-6],[-4,-2],[1,9],[2,-1]],[[8685,3595],[3,-18],[-2,-6],[-2,4],[1,20]],[[8738,3609],[3,-8],[2,-26],[-1,-10],[1,-4],[-2,-17],[-3,-3],[-7,10],[-2,10],[2,17],[0,10],[4,19],[3,2]],[[8695,3593],[-1,7],[3,17],[2,0],[-2,-21],[-2,-3]],[[7843,3606],[-2,-1],[-6,10],[2,4],[6,-7],[0,-6]],[[8386,3632],[4,-6],[0,-18],[-3,-2],[-4,14],[1,12],[2,0]],[[8410,3643],[-4,-10],[-1,-11],[1,-6],[-3,-8],[-4,6],[-3,2],[2,15],[1,4],[-2,16],[2,7],[3,1],[4,7],[2,-1],[2,-22]],[[8422,3662],[-5,-5],[-2,-24],[6,-12],[1,-4],[-4,-8],[-3,2],[-3,-5],[2,-5],[-3,-10],[-3,3],[-2,-2],[-2,11],[5,21],[3,28],[0,12],[1,13],[3,6],[5,-13],[1,-8]],[[8418,3711],[4,0],[1,-7],[-2,-9],[-3,-1],[-3,8],[-1,5],[4,4]],[[8564,3742],[-3,-11],[-3,-2],[-6,4],[4,7],[3,1],[4,5],[1,-4]],[[8225,3709],[-2,16],[-1,11],[1,12],[2,12],[4,7],[0,-21],[1,-26],[-5,-11]],[[8523,3775],[6,-7],[-1,-7],[6,-5],[0,-17],[-4,-3],[-5,-8],[-5,-7],[-6,5],[-10,13],[-3,12],[-2,14],[3,10],[2,-5],[7,8],[8,0],[4,-3]],[[7968,3781],[-4,4],[2,5],[3,-4],[-1,-5]],[[8597,3798],[15,-15],[8,1],[6,-10],[3,-20],[2,-1],[4,-12],[-2,-8],[0,-13],[-6,7],[-5,10],[-8,7],[-4,6],[-3,9],[-9,2],[0,-10],[-2,-2],[-10,9],[-5,-1],[0,10],[-2,1],[-5,-10],[0,-6],[-6,-3],[-2,4],[-3,14],[-6,1],[-2,-12],[-2,3],[-2,9],[4,9],[3,1],[0,6],[2,9],[5,0],[4,2],[10,-3],[5,5],[2,-11],[6,7],[1,3],[4,2]],[[7790,3778],[-3,-4],[-5,11],[0,13],[2,0],[6,-16],[0,-4]],[[7995,3815],[6,-3],[6,-12],[0,-8],[-2,-10],[-1,-9],[-6,-1],[-2,4],[-4,-8],[-4,-2],[1,8],[-1,8],[0,16],[1,3],[1,13],[5,1]],[[7783,3800],[-2,-4],[-4,0],[0,24],[6,-14],[0,-6]],[[7769,3845],[4,-15],[-4,2],[-5,11],[2,10],[3,-8]],[[8501,3821],[-3,5],[0,9],[-3,13],[1,5],[3,0],[0,-12],[2,-13],[0,-7]],[[8483,3869],[8,-2],[8,3],[8,-2],[0,-4],[-8,-3],[-15,-2],[-1,10]],[[8620,3876],[2,-11],[-5,-14],[-3,-1],[-6,4],[-5,7],[0,3],[8,8],[5,1],[4,3]],[[8458,3881],[3,0],[11,-7],[5,2],[2,-2],[1,-10],[-6,-2],[-2,-4],[-5,4],[-8,-8],[-4,0],[-2,13],[1,11],[4,3]],[[8762,3884],[3,-2],[17,-3],[6,-5],[9,0],[3,-3],[-5,-8],[-5,-1],[-4,2],[-2,-3],[-15,15],[-6,2],[-1,6]],[[8026,3885],[-4,-6],[0,7],[4,-1]],[[7940,3891],[5,-6],[0,-8],[4,-14],[-1,-9],[3,-25],[3,-8],[9,-5],[1,-6],[-2,-6],[-1,-17],[3,-6],[-1,-5],[-5,-1],[-2,9],[-10,10],[-3,2],[-2,13],[1,10],[-3,7],[-1,16],[-5,4],[-1,4],[-4,-4],[-4,-1],[-4,4],[0,10],[6,8],[0,13],[3,6],[4,1],[1,-12],[3,5],[-1,8],[4,3]],[[8550,3895],[2,0],[4,-8],[2,-2],[1,-7],[-3,-3],[-3,2],[-7,0],[-4,-3],[-5,7],[1,10],[6,11],[4,-2],[2,-5]],[[8421,3915],[0,-11],[2,-5],[3,11],[5,-3],[0,-12],[-4,-6],[-2,7],[-4,-5],[-1,13],[-2,-3],[-2,-11],[-4,-6],[-1,10],[0,12],[2,7],[8,2]],[[8044,3928],[4,-4],[1,-7],[-9,-12],[-1,3],[1,18],[4,2]],[[8747,3921],[-3,3],[2,7],[1,-10]],[[7747,3930],[0,-3],[7,-31],[1,-11],[2,-2],[-1,-13],[-4,-1],[-6,8],[-2,11],[-6,24],[2,17],[7,1]],[[8636,3931],[3,1],[1,-11],[-2,-20],[-4,1],[-3,8],[-2,19],[6,5],[1,-3]],[[8634,3943],[-1,-8],[-8,-3],[3,8],[3,-1],[3,4]],[[8761,3951],[7,-2],[3,-5],[2,4],[6,-13],[3,-14],[5,-2],[-2,-6],[-4,-3],[-4,4],[-3,-1],[-2,5],[-1,17],[-4,0],[-4,9],[-2,7]],[[8536,3942],[-5,0],[2,12],[3,-12]],[[8915,3811],[0,-86],[0,-57],[0,-73],[0,-52],[-1,-12],[-2,-7],[0,-7],[1,-12],[2,-2],[0,-76],[0,-83]],[[8915,3344],[-3,5],[-7,17],[-3,12],[-7,17],[-6,11],[-3,10],[-8,-1],[-3,-4],[-5,-1],[-4,7],[-3,-3],[-5,-11],[-2,11],[2,7],[0,8],[2,5],[0,8],[3,13],[-4,4],[-2,11],[-5,12],[2,5],[-6,13],[5,3],[2,6],[-4,8],[0,7],[-6,14],[-2,13],[0,10],[-3,15],[-6,11],[0,11],[-4,13],[-2,2],[-5,10],[-11,16],[-9,6],[-3,-1],[-13,18],[-3,0],[-6,7],[-2,5],[-7,1],[-8,5],[-7,-1],[-10,13],[-4,9],[1,16],[-5,-8],[-3,9],[-3,-9],[-3,6],[-1,11],[-6,-3],[-3,14],[-4,2],[-2,11],[2,2],[0,14],[4,10],[-1,5],[-4,-7],[0,-17],[-3,-9],[1,-6],[-5,-11],[1,-9],[-5,-15],[-10,-2],[-3,11],[-1,22],[3,-2],[2,7],[-3,7],[-1,12],[-3,-4],[-2,7],[-2,10],[-6,11],[-4,3],[-3,-3],[-2,3],[1,8],[2,7],[2,2],[11,-3],[4,-7],[3,6],[6,18],[6,4],[1,-5],[8,-3],[4,1],[5,10],[1,6],[-3,12],[-8,-8],[-7,3],[-4,-1],[-6,-5],[-4,3],[-3,-5],[-4,9],[-6,-6],[-3,7],[-4,5],[-3,10],[-1,18],[-4,12],[-2,-1],[-4,6],[-4,-2],[-3,2],[-3,-3],[-2,5],[-4,-1],[1,13],[4,5],[2,9],[1,12],[-1,7],[7,5],[2,0],[9,5],[6,15],[4,6],[5,3],[8,-1],[5,-7],[7,-5],[6,-14],[10,-2],[7,2],[3,-6],[-2,-11],[3,-13],[4,-15],[-2,-16],[-3,-8],[2,-25],[0,-10],[1,-15],[4,-10],[2,-16],[1,-8],[2,2],[-1,18],[2,8],[3,-7],[0,-19],[1,-9],[3,-7],[2,-14],[3,-6],[9,-4],[4,2],[5,13],[2,2],[4,10],[1,2],[2,15],[2,5],[6,10],[1,8],[3,17],[8,-3],[2,1],[5,7],[8,5],[-1,9],[-2,4],[1,8],[5,5],[5,8],[8,8],[3,0],[5,-9],[7,-7],[9,-5],[4,-10],[8,-7],[5,-7],[16,-18],[6,1],[1,2],[6,-9],[2,4],[6,-3],[3,-4],[0,-10],[7,2]],[[7903,3969],[2,-6],[-2,-8],[-6,4],[-2,5],[2,8],[4,2],[2,-5]],[[8389,3974],[0,-5],[-4,1],[-1,4],[5,0]],[[8544,3968],[2,-3],[-2,-12],[1,-6],[4,1],[3,-5],[-4,-9],[-4,10],[-4,-5],[-2,14],[-3,8],[1,12],[4,-4],[2,7],[2,-8]],[[8533,3980],[2,-9],[-1,-9],[-2,-2],[-2,6],[0,11],[3,3]],[[7735,3961],[-3,-5],[-2,3],[2,14],[2,6],[2,-7],[-1,-11]],[[7881,3973],[-4,-3],[-4,4],[2,6],[3,1],[3,-8]],[[8633,3998],[9,-6],[4,-5],[1,-9],[-2,-8],[-3,4],[-5,-1],[-7,19],[-2,-3],[5,-14],[1,-8],[-3,-1],[-2,7],[-3,1],[-3,4],[-4,1],[-1,11],[3,-1],[3,4],[9,5]],[[7737,3978],[-1,-3],[-5,20],[2,2],[4,-19]],[[7904,3998],[3,-4],[2,-10],[3,4],[2,-7],[-2,-5],[-3,7],[-6,-5],[-3,7],[4,13]],[[7865,4035],[0,11],[4,-3],[-1,-6],[-3,-2]],[[7873,4045],[-3,8],[1,8],[4,-10],[-2,-6]],[[7850,4069],[4,1],[7,-11],[0,-11],[-5,7],[-8,-1],[-4,7],[2,7],[0,7],[2,4],[2,-10]],[[7861,4073],[4,-12],[-2,-3],[-9,14],[-4,1],[2,8],[3,0],[6,-8]],[[7892,4080],[0,-7],[-3,-5],[-2,3],[-2,5],[6,7],[1,-3]],[[7905,4084],[1,-7],[0,-12],[-1,-7],[-3,2],[-1,14],[-4,-4],[-2,6],[4,8],[6,0]],[[7845,4067],[-3,0],[-3,10],[-1,14],[3,8],[5,-12],[-1,-10],[0,-10]],[[7704,4107],[3,-3],[6,-21],[3,-3],[4,-11],[-1,-6],[-1,-19],[-1,-6],[-4,1],[-2,18],[-7,9],[0,5],[-4,19],[-4,10],[4,0],[4,7]],[[7839,4111],[7,-6],[1,-14],[-2,0],[-3,8],[-6,3],[-3,10],[2,2],[4,-3]],[[8473,4118],[3,0],[0,-6],[2,-8],[-3,-4],[-3,-18],[-3,-14],[-7,-12],[-4,-20],[-5,-10],[-16,-6],[-4,-3],[-1,3],[-5,-1],[-5,2],[-4,14],[-3,-2],[-10,-1],[-8,2],[-15,-5],[-3,7],[-4,1],[-1,-4],[-9,-2],[-1,-4],[-4,3],[-3,-2],[-6,8],[-5,0],[-3,-4],[-3,-7],[-4,-14],[-1,-13],[-2,-5],[-1,-10],[3,-32],[4,-17],[3,-4],[2,3],[2,-5],[3,-9],[-1,-8],[3,-13],[4,4],[2,-4],[5,-2],[3,7],[1,9],[2,4],[6,20],[5,4],[1,-9],[6,-2],[5,2],[3,12],[11,1],[3,-3],[5,2],[-2,11],[6,1],[1,3],[4,-1],[5,-5],[1,-8],[-1,-18],[-5,-2],[-5,11],[-6,-3],[-3,-14],[-2,-3],[-8,-24],[-5,-9],[-4,0],[-7,-7],[-3,-14],[-4,-1],[-2,8],[-4,2],[0,-10],[6,-10],[1,-5],[4,-4],[3,-7],[6,-24],[0,-5],[8,-17],[-1,-8],[3,-7],[-4,-17],[1,-6],[-2,-7],[1,-7],[3,-6],[2,0],[5,-16],[2,-12],[4,-1],[2,-4],[0,-14],[-4,-6],[-2,-1],[-2,6],[-5,-1],[-9,-7],[-2,-14],[2,-6],[-3,-5],[-5,4],[-3,-2],[-4,7],[-2,6],[1,30],[3,11],[-2,4],[-6,4],[-3,12],[-2,0],[-8,19],[0,7],[3,13],[2,5],[0,9],[1,6],[-1,16],[-2,7],[-6,3],[-5,-5],[-1,-4],[-9,-15],[1,-15],[4,-8],[-1,-8],[2,-25],[-3,-14],[1,-17],[1,-29],[1,-4],[-2,-15],[-2,-3],[-1,-20],[3,-13],[2,-19],[-4,7],[-6,-7],[-5,2],[-3,-9],[-4,1],[-3,4],[-3,8],[-3,12],[1,11],[3,9],[1,13],[-1,10],[3,13],[1,18],[-1,5],[1,20],[-1,0],[-4,18],[2,10],[0,6],[-6,5],[-2,-5],[-6,-1],[-2,-4],[-3,16],[1,3],[-3,15],[3,3],[0,14],[-3,-1],[0,7],[2,11],[2,-2],[7,15],[-1,17],[3,14],[4,5],[0,8],[-2,9],[0,15],[1,20],[3,8],[3,18],[4,8],[1,7],[2,-14],[2,3],[-3,23],[1,26],[-5,4],[2,6],[4,-9],[1,12],[-2,9],[3,20],[3,3],[0,11],[1,5],[8,10],[4,-6],[2,-1],[3,15],[4,6],[0,17],[4,2],[6,-3],[3,-5],[4,0],[2,-8],[4,-4],[8,3],[1,-5],[3,2],[5,-4],[6,1],[4,-4],[7,-10],[3,10],[4,-2],[7,-1],[5,-4],[8,-2],[3,0],[2,4],[4,4],[4,6],[2,11],[6,1],[-1,11],[4,3],[4,7],[0,7],[5,10],[1,-4]],[[7825,4146],[1,-8],[-1,-13],[-4,-4],[-3,4],[-2,11],[1,10],[3,-1],[3,6],[2,-5]],[[8556,4155],[-3,-15],[-2,-4],[0,-7],[4,-8],[1,-13],[-2,-17],[-2,-10],[-2,-1],[-5,-10],[0,-8],[4,-7],[4,5],[0,10],[3,8],[4,6],[-1,7],[1,6],[7,12],[8,2],[-1,-9],[1,-3],[-1,-24],[-7,-10],[-4,-2],[-2,-10],[2,-7],[11,-9],[0,-15],[4,-2],[1,-5],[-9,6],[-2,5],[-6,0],[-3,5],[-5,2],[-3,-13],[2,-12],[-1,-11],[4,-29],[5,-21],[5,-13],[-4,2],[0,5],[-6,6],[-5,25],[-5,9],[0,20],[0,9],[1,8],[-4,10],[-1,10],[0,13],[2,7],[-3,3],[0,13],[-3,12],[4,18],[-1,4],[2,16],[3,12],[6,18],[4,1]],[[8571,4185],[3,-12],[-1,-13],[-3,-11],[-2,-4],[-4,-1],[-2,5],[-2,11],[4,14],[4,10],[3,1]],[[7663,4206],[2,-8],[3,-2],[5,-12],[5,-7],[1,-9],[-5,0],[-6,15],[-4,1],[-6,13],[3,11],[2,-2]],[[8267,4231],[-2,5],[0,9],[3,-2],[-1,-12]],[[8263,4249],[-7,0],[1,7],[6,-7]],[[8489,4250],[-4,-2],[1,16],[3,-14]],[[8269,4284],[-3,5],[2,7],[2,-5],[-1,-7]],[[8269,4297],[5,-1]],[[8274,4296],[1,-7],[-3,-1],[-3,9]],[[8008,4291],[2,-6],[1,-9],[-3,-14],[-4,-2],[-2,3],[2,9],[-3,3],[-2,11],[5,12],[4,-7]],[[8265,4296],[-1,-8],[7,-18],[1,-6],[-2,-5],[-6,2],[-3,-2],[-6,1],[0,-7],[3,-9],[4,0],[-3,-9],[0,-9],[4,-6],[3,-1],[1,-6],[0,-13],[4,-4],[1,-11],[7,-17],[1,-8],[-4,-5],[-3,-11],[2,-16],[2,-2],[3,-9],[9,-13],[3,-7],[2,-2],[5,-11],[2,-10],[4,-2],[0,-5],[-6,-11],[-3,3],[-3,-3],[-11,5],[-6,7],[2,-8],[-6,-4],[-6,-22],[0,-6],[-2,-9],[-2,-17],[2,-6],[-3,-17],[2,-9],[3,-2],[-1,-15],[-3,-17],[-4,3],[-4,-12],[-4,-15],[-6,-5],[-1,-7],[-7,-8],[1,-9],[-7,-7],[4,-15],[0,-8],[-3,-5],[1,-7],[4,1],[2,-4],[-2,-20],[-4,-6],[0,-17],[-1,-7],[-7,0],[5,-15],[-3,-3],[0,-6],[-2,-3],[-2,-11],[-1,-11],[-4,-2],[-7,-10],[-15,-15],[-9,-13],[-3,2],[0,9],[0,11],[0,13],[-4,14],[-2,0],[-6,7],[-4,2],[-4,-5],[-5,-3],[-2,1],[-1,19],[-4,0],[-3,-4],[-3,5],[-2,7],[-4,6],[-2,-7],[2,-5],[-12,-19],[-2,-1],[-6,9],[-5,-5],[-6,-13],[-3,1],[1,14],[-1,12],[1,9],[-2,11],[-5,-7],[-4,6],[-4,-1],[-7,-9],[-4,-1],[-4,5],[-3,-5],[-1,12],[-3,3],[-7,-10],[-2,8],[2,8],[-2,10],[1,8],[-2,7],[-2,17],[1,9],[-1,11],[-3,3],[-1,8],[3,9],[1,15],[-1,11],[-3,4],[0,9],[-3,1],[-3,9],[-1,-2],[-3,7],[-4,3],[-1,-4],[-3,4],[-1,11],[4,0],[-1,8],[-3,-1],[-4,7],[0,15],[2,6],[0,23],[-2,9],[-5,7],[0,8],[0,14],[-2,14],[2,3],[1,8],[-1,11],[4,17],[1,13],[4,8],[3,10],[-1,9],[7,4],[2,6]],[[8045,4147],[-3,-14],[0,-5],[3,-4],[1,-13],[4,-12],[3,-2],[1,-7],[6,-8],[2,-10],[4,-9],[4,-4],[2,3],[5,1],[1,6],[10,6],[4,-4],[6,-2],[3,3],[4,-2],[3,8],[5,3],[2,15],[0,6],[8,8],[9,-1],[2,2],[5,-3],[2,-7],[6,-6],[2,-4],[3,1],[4,-6],[5,8],[2,7],[4,2],[3,-3],[6,6],[4,-5],[4,18],[1,10],[4,5],[0,9],[-2,8],[1,8],[3,4],[6,13],[1,8],[-3,1],[1,16],[4,15],[3,-3],[4,2],[1,9],[-1,4],[1,11],[2,6],[-1,12],[1,18],[-1,3],[2,10],[1,9],[6,13],[4,-6],[3,8],[5,0],[2,-6],[9,5],[3,-2],[10,0],[1,1],[6,-11],[4,-3]],[[8523,4320],[0,-9],[2,-6],[-3,-9],[0,-8],[-4,-1],[3,15],[-2,2],[1,19],[3,-3]],[[7652,4400],[2,2],[9,-9],[1,-7],[5,-9],[7,-4],[8,-1],[5,5],[4,-1],[8,-8],[6,7],[5,-13],[7,-13],[4,-24],[4,-4],[2,-6],[0,-17],[1,-7],[5,-3],[5,-9],[1,-8],[3,-6],[4,-4],[6,-9],[9,-15],[3,-7],[4,-4],[1,-4],[5,-13],[2,-15],[3,-4],[2,2],[3,-10],[2,-15],[5,-14],[3,-2],[5,-10],[-2,12],[1,6],[2,4],[4,-1],[1,-5],[6,-12],[2,-20],[2,-4],[4,-4],[5,-1],[7,-15],[3,-4],[2,-14],[0,-9],[1,-6],[5,-12],[4,-5],[9,-1],[5,-12],[0,-8],[-10,-14],[6,1],[9,16],[3,3],[10,-16],[1,-5],[1,-18],[-3,0],[-5,-8],[-1,-4],[1,-5],[-3,-10],[3,1],[2,-7],[-4,-3],[-1,-15],[2,-2],[5,-14],[6,-6],[3,4],[7,-7],[5,3],[1,-20],[1,-16],[3,-23],[2,-5],[1,-8],[3,3],[2,-6],[1,-15],[6,-7],[2,2],[12,-3],[0,-11],[2,-8],[2,-2],[1,-13],[2,-6],[4,-1],[1,-6],[0,-15],[-3,-8],[-3,-22],[3,-11],[-2,-12],[-2,-17],[3,-17],[-1,-27],[1,-7],[-1,-7],[0,-15],[-1,-9],[0,-20],[-1,-12],[-5,1],[-2,11],[-2,0],[-4,14],[-2,0],[-2,-16],[-2,-7],[-9,12],[-5,9],[-2,-5],[4,-18],[1,-9],[-4,1],[-1,6],[-7,14],[-1,7],[-4,7],[-6,16],[1,6],[-6,13],[-8,6],[-1,4],[-6,15],[-7,8],[-1,6],[-5,10],[-11,20],[0,11],[-2,14],[-5,7],[-11,22],[-7,23],[-2,13],[-6,11],[-5,18],[-3,14],[2,8],[-1,10],[-2,6],[-6,26],[0,8],[-5,5],[-1,8],[1,8],[-1,5],[-2,11],[-4,11],[-4,15],[-5,12],[-2,9],[0,10],[-4,9],[-5,5],[-3,5],[-2,-2],[-3,5],[-1,25],[-2,11],[-1,4],[-2,20],[-5,29],[2,7],[-1,11],[-3,-1],[-4,13],[-5,5],[-5,11],[-5,6],[-7,3],[-2,9],[0,18],[-2,15],[-5,4],[-2,7],[-2,14],[-2,2],[-5,20],[-4,11],[-3,5],[-6,0],[-3,5],[-7,22],[-5,7],[-11,29],[-1,1],[-4,13],[-4,26],[-2,8],[1,7],[-1,11],[6,7],[2,-3]],[[4871,7877],[-4,3],[2,9],[7,13],[4,-9],[-2,-6],[-7,-10]],[[7606,4516],[2,-15],[-1,-15],[-2,0],[-2,14],[-2,1],[0,12],[5,3]],[[7571,4772],[0,-15],[-2,-5],[-3,5],[-1,14],[4,9],[2,-8]],[[7584,4852],[-3,6],[2,4],[1,-10]],[[7583,4971],[1,-2],[0,-13],[1,-7],[-2,-16],[-3,-4],[2,-8],[0,-25],[-2,-22],[-4,-9],[-1,-9],[2,-7],[-2,-26],[-3,6],[-2,11],[0,11],[3,11],[0,7],[4,5],[-2,11],[0,17],[1,4],[-1,11],[2,4],[0,11],[2,9],[-1,14],[3,14],[2,2]],[[7448,5550],[-3,1],[1,12],[2,-3],[0,-10]],[[7249,6165],[-2,-2]],[[7247,6163],[-2,0]],[[7245,6163],[0,-4],[-2,-3]],[[7243,6156],[-3,-8]],[[7240,6148],[-1,0],[0,-1],[-2,0],[-2,-10],[-1,-1],[-2,-2],[0,-1],[-1,-2],[0,-2],[1,-7],[-5,-13],[2,-11]],[[7229,6098],[-1,-9]],[[7228,6089],[0,-1],[-1,-1],[-2,0],[0,-3],[-1,-7]],[[7224,6077],[-1,-10]],[[7223,6067],[5,-7],[2,-4],[0,-3],[1,-1],[0,-1]],[[7231,6051],[2,0],[2,-3],[0,7]],[[7235,6055],[1,1],[1,0]],[[7237,6056],[2,-5]],[[7239,6051],[7,-11]],[[7246,6040],[3,-2],[0,-2],[2,-1],[2,-1],[5,-18],[2,3],[2,-6],[0,-1],[3,-3],[0,-1],[1,-1],[0,-1],[2,-2],[1,-1],[1,-2],[3,-5],[1,1],[2,3],[0,1],[3,-1],[0,-1],[1,-1],[1,-2],[7,-12],[7,2],[3,-15],[3,-1],[4,-3],[4,0],[4,-8],[1,2],[1,2],[0,1],[0,1],[0,3],[3,1],[3,-1],[7,-8],[1,0],[0,1],[0,2],[-1,2],[0,1],[1,1],[1,0],[0,1],[2,-1],[1,0],[0,1],[2,4]],[[7335,5972],[2,-3],[2,-2]],[[7339,5967],[1,-4],[1,-1],[8,-3],[2,-9],[0,-6],[-1,-3],[0,-2]],[[7350,5939],[0,-1],[0,-1]],[[7350,5937],[4,-2],[1,1]],[[7355,5936],[1,-1]],[[7356,5935],[0,-1]],[[7356,5934],[2,-2]],[[7358,5932],[1,-4],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[2,2],[1,-1],[0,-3],[0,-2],[1,-2],[2,-2],[9,9],[2,-3],[1,-12],[3,-5]],[[7383,5905],[4,5]],[[7387,5910],[1,0],[1,0],[3,-3],[1,-1],[0,-1],[1,0],[0,1],[2,1],[1,0]],[[7397,5907],[0,-1],[0,-1]],[[7397,5905],[5,-4]],[[7402,5901],[6,-8]],[[7408,5893],[0,1],[1,1]],[[7409,5895],[1,-1],[1,1],[1,1],[0,1],[0,2],[1,1],[2,2]],[[7415,5902],[2,3]],[[7417,5905],[0,-2],[1,-4],[0,-2],[0,-2],[1,-2],[1,-1],[1,0],[1,1],[0,-1]],[[7422,5892],[1,-2]],[[7423,5890],[1,-2],[1,1],[2,5],[1,0],[1,0],[3,-3],[8,6],[4,-7],[1,3],[1,3]],[[7446,5896],[0,9]],[[7446,5905],[2,6],[0,3],[0,2],[0,1],[0,7],[0,1],[0,2],[-1,2],[-1,3],[0,3],[-1,2],[-1,1],[-1,3],[0,1],[0,1],[0,1],[0,2],[0,5],[2,7],[-1,13],[3,10],[1,10],[0,3],[0,1],[0,1],[0,1]],[[7448,5997],[-1,0]],[[7703,6023],[-1,-11],[2,-3],[-1,-10],[-3,1],[-5,-11],[-5,-9],[1,-15],[6,-21],[-3,-2],[-4,6],[-3,12],[-5,1],[-2,-5],[-10,-2],[-4,-5],[-3,-12],[-3,-2],[-5,-12],[-3,-1],[-3,-9],[-8,-6],[-2,-9],[0,-17],[3,-15],[-4,-8],[0,-13],[-4,-13],[-7,-12],[-1,-11],[0,-5],[4,-2],[0,-8],[-3,-20],[-2,-3],[-7,-28],[-2,-23],[-3,-11],[-3,5],[-5,1],[-2,5],[-3,1],[-5,-4],[-2,9],[-2,-3],[1,-10],[1,-12],[2,-6],[-2,-37],[-2,-8],[-5,-1],[1,-9],[-2,-8],[0,-19],[2,-9],[0,-10],[-5,-13],[-3,-3],[-5,9],[-1,-9],[-2,-3]],[[7473,5586],[0,-14],[-2,-2],[3,-21],[-2,-1],[-4,5],[-3,-8],[-2,10],[0,18],[-4,-7],[2,-10],[-1,-10],[-5,2],[-4,-3],[-2,9],[0,9],[-4,12],[-2,-10],[-8,-13],[-14,-8],[-3,-5],[-4,-11],[-3,-11],[1,-6],[3,-17],[1,-14],[-2,-2],[-5,-12],[-1,-13],[-6,-7],[-3,-16],[-3,-3],[-15,-11],[-5,-5],[0,13],[-3,2],[-6,-12],[-4,-16],[2,-3],[-8,-18],[-4,-14],[-3,-8],[-6,-20],[-4,-8],[-5,-18],[-9,-9],[-4,-7],[-5,-14],[-6,-19],[-4,-4],[-5,-9],[-5,-4],[-7,-10],[-5,-13],[0,-12],[2,-4],[-1,-16],[-9,-13],[-7,-6],[-12,3],[-2,-3],[-2,-24],[-5,-10],[-2,0],[-2,-7],[-2,10],[-2,1],[-6,-5],[-6,-11],[-3,-17],[-2,-10],[-1,-21],[2,-22],[2,-10],[-1,-16],[-1,-7],[1,-18],[2,-11],[-1,-14],[-4,-4],[2,-6],[6,-5],[0,-17],[-2,-9],[-1,-29],[-2,-14],[-8,-32],[-2,-19],[-1,-13],[2,-14],[0,-16],[0,-15],[1,-41],[-1,-7],[-2,-2],[-6,5],[-4,0],[-5,-12],[1,-9],[-2,-5],[-6,-21],[-2,-14],[2,-15],[-10,-9],[-5,-2],[-5,-11],[-2,-7],[-1,-14],[0,-13],[-2,-8],[-16,-22],[-5,4],[-9,17],[-10,33],[-3,6],[-4,30],[-2,12],[1,30],[-4,8],[-1,12],[-3,23],[-4,18],[-2,24],[-4,23],[-2,4],[-3,16],[-5,15],[-1,10],[-3,-1],[-2,13],[-5,23],[-3,24],[-3,33],[-1,10],[-2,27],[-3,12],[-3,29],[-3,8],[-1,13],[-4,5],[-2,16],[-4,6],[1,6],[-1,19],[-3,2],[-2,12],[-2,9],[-2,11],[-3,12],[-4,32],[0,13],[-1,11],[0,10],[-1,22],[-3,17],[0,14],[-4,25],[-1,16],[-2,10],[1,8],[-2,16],[2,4],[-1,12],[-3,-1],[0,26],[-2,19],[0,10],[-2,7],[2,12],[1,19],[4,17],[2,18],[-5,20],[0,6],[-5,10],[-1,9],[1,7],[4,5],[1,8],[-7,3],[1,9],[-2,9],[1,14],[6,6],[-5,3],[-7,-2],[0,-13],[-2,-5],[-3,-2],[1,-13],[4,-10],[-2,-13],[-4,-12],[0,-8],[-11,-12],[-7,-11],[-4,-2],[-9,-10],[-4,-1],[-8,8],[-6,8],[-8,16],[-6,21],[-10,23],[-8,16],[-5,16],[-2,7],[1,7],[7,0],[0,-9],[4,4],[7,2],[4,8],[1,-3],[5,8],[6,2],[5,24],[4,9],[-3,3],[0,-9],[-4,1],[-12,-7],[-3,-8],[-13,7],[-11,13],[-5,8],[-3,9],[0,7],[-4,6],[0,18],[-3,-8],[-4,13],[0,6]],[[6893,5709],[2,4],[5,5],[8,0],[0,23],[5,2],[2,-5],[9,2],[8,0],[3,-6],[8,-2],[4,10],[8,7],[4,1],[0,-9],[6,-4],[4,9],[2,7],[-1,9],[3,7],[-4,23],[-1,10],[-4,10],[-2,11],[0,14],[-2,6],[-3,-3],[-6,2],[-5,20],[1,14],[1,26],[-3,4],[-6,-1],[-5,7],[-4,4],[-1,5],[1,18],[2,10],[8,16],[4,13],[2,14],[7,16],[3,2],[5,-8],[2,-14],[4,-2],[9,8],[4,3],[7,1],[8,5],[1,11],[3,9],[4,9],[3,21],[4,10],[14,17],[5,15],[5,22],[3,28],[6,6],[5,3],[5,10],[-2,13],[2,4],[3,12],[3,5],[5,17],[5,5],[3,6],[-3,9],[1,9],[2,10],[-4,19],[3,10],[7,13],[3,0],[10,9],[2,8],[-5,10],[-5,4],[-8,0],[-3,9],[1,10],[-4,2],[-5,7],[0,9],[-5,5],[-4,10],[0,6],[3,6],[1,14],[-5,7],[2,13],[6,5],[-1,8],[-8,0],[-1,6],[3,8],[-2,7],[-4,5],[5,22],[4,1],[5,6],[3,-1],[7,-5],[10,-4],[6,1],[3,-6],[8,-5],[4,1],[7,12],[7,1],[4,4],[4,-1],[5,6],[1,8],[4,0],[3,4],[0,4],[0,3],[0,2],[1,0]],[[7140,6517],[10,14],[10,14]],[[7936,3247],[-1,-6],[-2,3],[3,3]],[[7012,3471],[-1,1],[-1,2],[0,2],[1,-3],[1,-2]],[[4825,7880],[-3,-13],[4,-4],[1,-16],[3,-5],[-1,-13],[4,-31],[-6,-21],[0,-9],[-7,-13],[4,-9],[-1,-4],[-12,2],[-3,-4],[-15,-2],[-4,-9],[-7,-3],[-2,-5],[-11,-9],[-7,-8],[-15,-7],[-7,-6],[-2,6],[-11,-8],[1,11],[-3,5],[-2,10],[-4,-4],[-4,7],[-1,10],[10,6],[-3,5],[-13,1],[9,10],[9,-3],[0,13],[7,10],[0,13],[3,0],[1,15],[5,13],[3,-2],[6,3],[-2,9],[-14,-4],[-14,12],[-4,11],[7,4],[0,12],[10,2],[-2,7],[-6,5],[-4,18],[6,9],[16,-5],[9,0],[11,1],[-4,7],[9,7],[5,12],[-13,-2],[-6,6],[8,9],[3,1],[-1,11],[5,12],[12,3],[7,-10],[1,10],[6,12],[11,-9],[-6,-7],[-3,-6]],[[6560,5929],[-3,-9],[-4,-7],[-2,4],[-4,-4],[-6,-7],[-4,4],[11,10],[4,9],[8,6],[0,-6]],[[6357,6756],[1,-25],[3,-25],[3,-8],[9,-10],[13,-3],[6,-3],[5,-18],[5,-9],[17,-21],[22,-11],[24,11],[10,6],[10,5],[5,-1],[1,-4],[5,-2],[4,2],[0,9],[-3,28]],[[6497,6677],[8,-1],[4,3],[5,5],[3,0],[4,6],[0,10],[2,7],[8,14],[8,9],[8,3],[7,-4],[9,1],[0,6],[4,7],[4,-2],[4,3],[9,-6],[5,6],[3,-14],[1,-8],[3,-3],[6,0],[13,-11],[1,-6],[5,-4],[4,4],[5,-3],[4,2],[6,-4],[4,-7],[4,-2],[1,-12],[3,-10],[8,-5],[7,-6],[9,-28],[20,1],[3,-6],[-1,-12],[2,-21],[-1,-7],[2,-10],[-1,-14],[1,-4]],[[6696,6496],[-1,-1],[-2,-6]],[[6693,6489],[0,-1],[0,-2],[0,-2],[-1,-1]],[[6691,6460],[-2,0],[-3,0]],[[6684,6460],[-4,-9]],[[6716,6214],[0,-3],[0,-1]],[[6689,6140],[3,-6],[1,-4],[9,-22],[1,-11],[4,-12],[3,-16],[2,-8],[7,-15],[4,-4],[9,-5],[6,-14],[5,-1],[-1,-15],[1,-12],[1,-24],[-1,-11],[1,-9],[3,0],[7,3],[2,-3],[0,-12],[1,-12],[-3,-4],[-1,-15],[-10,2],[-5,-5],[-5,-1],[-3,-5],[-2,-10],[-10,-8],[-2,-5],[-1,-24],[-3,-5],[-1,-35],[-1,-6]],[[6710,5806],[-5,-10],[-6,5],[-4,6],[-11,4],[-3,13],[-3,-2],[-2,-7],[-4,0],[-4,3],[-5,-3],[-3,5],[-7,0],[-2,5],[-9,-5],[-4,2],[-2,7],[-3,3],[-7,2],[-7,-1],[-4,-2],[-3,1],[-3,10],[-4,-5],[-1,7],[-12,3],[-2,14],[-3,9],[2,5],[-3,7],[-1,14],[0,12],[-3,25],[-3,6],[-2,6],[-6,1],[-6,4],[-7,-3],[-5,-10],[-7,-2],[-2,-3],[-1,-10],[-5,-4],[-3,2],[-5,-6],[-8,-15],[-5,1],[-2,5],[-5,2],[-2,8],[-4,-1],[-5,3],[-8,-3],[-6,11],[-2,10],[-9,7],[-13,19],[-1,13],[-4,8],[-5,2],[-7,11],[-8,0],[-4,1],[-5,10],[-4,13],[0,7],[-3,10],[-2,12],[0,12],[-3,6],[-2,1],[-2,6],[3,11],[-2,5],[-6,0],[0,22],[-7,15],[-4,15],[-3,5],[0,13],[-2,6],[-4,0],[-9,-12],[-2,-1],[-1,10],[-7,0],[-6,11],[1,7],[3,-3],[0,10],[-5,1],[-3,-13],[1,-7],[1,-12],[-2,-4],[-6,1],[-4,-5]],[[6347,6148],[-2,3],[-2,11],[1,4],[-7,15],[-4,3],[0,37],[-9,1],[0,30],[4,25],[-4,18],[-8,23],[-2,9],[-6,0],[-11,21],[-6,10],[-6,5],[-5,0],[2,15],[-1,6],[-3,8],[-4,19],[-6,4],[-5,18],[-2,4],[3,10],[1,13],[-3,4],[1,16],[6,-3],[-2,12],[1,7],[5,5],[0,10],[4,3],[5,9],[-1,9],[-5,13],[2,14],[6,2],[-2,6],[-3,4],[-7,-4],[-3,2],[-2,7],[-8,11],[-3,23],[-4,0],[-3,9],[2,9],[-2,6],[-4,4],[1,7],[0,10],[-3,8]],[[6243,6663],[1,11],[-7,11],[1,19],[-4,4],[-2,6],[-4,2],[0,6],[3,10],[2,20],[-3,0],[0,17],[-1,7],[0,9],[-4,11],[2,11],[-3,4],[-1,14],[6,-1],[4,3],[1,19],[3,5],[7,-9]],[[6347,6148],[-5,0],[-3,4],[-5,1],[-3,-3]],[[6331,6150],[-7,8],[-9,-1],[-5,-4],[-2,-5],[-4,-25],[-3,-12],[-4,-13],[-5,-12]],[[6292,6086],[-5,-3],[-26,6],[-20,4],[-22,41],[-29,52],[-22,42],[-15,19],[-31,41],[-11,6],[-24,9]],[[6087,6303],[0,0]],[[6087,6303],[3,6],[1,3],[-1,4],[0,3],[-1,0],[-5,-3],[0,1],[-1,1],[-1,10],[2,2],[-8,62]],[[6076,6392],[31,40],[23,29],[7,4],[1,3],[6,25],[0,29],[2,23],[2,11],[0,15],[-3,13],[1,23],[4,12],[10,4],[2,2],[12,27],[2,9]],[[6176,6661],[6,2],[6,17],[4,-4],[4,3],[7,-3],[4,-6],[12,-1],[2,6],[7,-4],[-1,-12],[1,-7],[6,5],[4,8],[5,-2]],[[4555,8772],[2,-8],[6,-2],[-2,-8],[10,-8],[3,7],[10,2],[0,-8],[-6,-5],[3,-5],[11,1],[2,-7],[-6,-10],[3,-5],[9,-2],[16,-13],[5,-2],[-2,-15],[5,-10],[0,-8],[-10,-19],[-5,-5],[-8,-3],[-5,-17],[-5,-1],[-7,-8],[-14,-5],[-15,-7],[-10,-13],[-15,-12],[-27,-5],[1,-5],[-3,-10],[-5,-3],[-17,-6],[-15,3],[-14,7],[-11,1],[-7,9],[-21,15],[-13,-4],[-4,3],[-7,-3],[-8,2],[-10,-2],[4,11],[16,7],[4,11],[-10,17],[-5,12],[2,8],[-6,4],[-7,-1],[-13,3],[-16,-8],[-7,12],[15,4],[9,5],[15,-1],[8,4],[6,-2],[4,6],[-15,4],[10,11],[0,8],[-11,7],[-9,3],[-9,-6],[-4,1],[-14,-7],[-9,7],[-7,-1],[5,11],[7,2],[0,10],[5,5],[2,14],[9,9],[12,-6],[5,-6],[11,3],[-12,6],[-6,11],[7,11],[13,-2],[4,-11],[7,-1],[6,-6],[1,-7],[11,-7],[2,-10],[-4,-6],[-1,-9],[4,-6],[-2,-5],[5,-6],[8,14],[12,-1],[6,11],[-5,21],[7,7],[4,-3],[4,-13],[5,-3],[2,-7],[6,-1],[-2,16],[4,8],[5,1],[6,6],[7,-1],[4,-6],[1,-8],[8,-3],[-2,18],[10,-2],[8,-11],[7,-1],[5,15],[9,-5],[12,4],[1,7],[-3,16],[15,2]],[[5993,6347],[-1,0],[-1,-2],[-2,-2],[-2,-3],[0,-1],[1,-4]],[[5988,6335],[0,-5]],[[5988,6330],[-1,-8]],[[5987,6322],[-2,1],[-1,0],[-1,1],[0,6],[-6,3],[-4,-6],[-3,-20],[1,-17],[2,-7],[4,-3],[-6,-13],[-3,-16],[2,-4],[8,3],[6,8]],[[5984,6258],[0,0]],[[5984,6258],[0,-5]],[[5984,6253],[0,-2],[-1,-10],[1,-11],[-2,-6],[0,-4],[-1,-4],[0,-2],[-1,-5],[-3,-14],[-1,-14],[0,-19],[-2,-9],[-1,-14],[-1,-8],[-1,-5],[0,-4],[0,-1],[-1,-2]],[[5970,6119],[0,-1],[-2,-4]],[[5951,6237],[3,6],[0,7],[5,10],[-2,4]],[[5957,6264],[7,27],[3,23],[3,32],[0,6],[4,7],[1,13]],[[5975,6372],[2,0],[0,1]],[[5977,6373],[2,0]],[[5979,6373],[2,-3],[2,1]],[[5983,6371],[1,1],[1,0]],[[5985,6372],[1,4]],[[5986,6376],[0,6],[5,7],[1,0],[0,1],[1,1],[1,4]],[[5994,6395],[0,-1],[0,-2],[0,-4],[0,-4],[2,-22],[-1,-9],[-2,-3],[0,-3]],[[5434,6743],[-12,-37],[-1,-12],[-2,-6],[0,-12],[6,-21],[-4,-6],[-2,-11],[-1,-10],[-5,5],[-3,-2],[-8,7],[-3,11],[-3,7],[-5,5],[-6,-1],[-12,14],[-8,14],[-6,6],[-7,-1],[-6,9],[-1,8],[2,15],[6,9],[5,-7],[3,2],[2,9],[6,2],[2,-8],[4,0],[4,-7],[4,-2],[6,5],[7,-2],[10,4],[3,6],[5,2],[5,-4],[4,6],[4,1],[3,5],[4,-3]],[[5256,6958],[9,-10],[0,-15],[3,-7],[4,-21],[-2,-10],[-3,-8],[3,-13],[-2,-32],[-1,-11],[-2,-25],[-3,-1],[-5,7],[-5,0],[-2,-5],[0,-11],[-5,-8],[-3,3],[-2,-3],[-8,25],[2,4],[-2,13],[3,8],[2,20],[-4,3],[0,11],[2,4],[0,15],[-5,19],[-4,3],[-1,7],[3,13],[2,-4],[6,-2],[7,7],[7,15],[6,9]],[[5195,7293],[1,-2]],[[5225,7313],[-1,4]],[[5234,7317],[2,-3],[2,-7]],[[5243,7297],[1,0],[2,-2],[4,-1]],[[5250,7294],[-1,3],[1,1]],[[5250,7301],[2,6]],[[5274,7325],[6,-3]],[[5280,7322],[1,6]],[[5278,7333],[0,1],[0,3]],[[5278,7337],[2,5]],[[5285,7338],[5,20],[1,1]],[[5326,7368],[2,2],[1,1]],[[5338,7362],[2,-7]],[[5374,7339],[5,-3],[-2,-6]],[[5377,7330],[-5,-7]],[[5372,7323],[-1,-4]],[[5371,7319],[0,-1],[0,-2]],[[5371,7316],[1,-2],[1,1],[1,0],[0,-1],[1,0],[1,-2],[1,0],[1,0]],[[5378,7312],[0,-2]],[[5378,7310],[0,-2],[-3,-4],[0,-1]],[[5375,7303],[-1,-2],[0,-1],[-1,-1]],[[5373,7299],[1,-1]],[[5374,7298],[1,-2],[1,0],[0,1],[1,1],[1,-2]],[[5378,7296],[0,-1],[-1,-2],[-1,-4],[1,-4]],[[5377,7285],[-2,-7],[-11,4],[-1,-9],[-4,-1],[-12,-11],[-2,4],[-5,-5],[-3,-14],[4,-3],[2,-14],[4,-6],[-2,-9],[-5,-5],[1,-19],[2,-17],[3,-8],[7,-11],[6,-6],[9,-14],[10,-13],[6,-29],[3,-23],[3,-14],[4,-10],[5,-7],[5,-10],[4,-5],[1,-5],[7,-6],[4,-5],[9,-2],[16,3],[3,-2],[1,-9],[-7,-11],[-1,-10],[4,-5],[15,-16],[13,-9],[6,-8],[6,-10],[15,-13],[0,-7],[6,-7],[6,-14],[2,-11],[-3,-6],[-1,-15],[-5,2],[-5,10],[-1,10],[-4,12],[-9,1],[-8,7],[1,7],[-6,1],[-4,-5],[-5,-17],[-3,-9],[0,-8],[-3,-12],[0,-8],[7,-5],[2,-5],[9,-11],[-1,-4],[0,-30],[-8,-1],[-6,-7],[-2,-6],[1,-22],[-7,-9],[-4,-11],[-3,-14],[-9,-2],[-2,3],[-1,10],[0,10],[4,3],[3,14],[-1,13],[4,5],[3,-1],[3,7],[0,6],[-4,13],[-2,26],[-4,9],[-2,9],[0,13],[-5,14],[-6,-5],[-3,2],[-4,10],[-6,5],[2,12],[-3,12],[-4,8],[-5,-5],[-2,8],[-5,8],[-3,-2],[-4,2],[-1,6],[-5,16],[-3,8],[-6,-2],[-5,5],[-8,-5],[-4,12],[-8,5],[-5,12],[-6,8],[-2,12],[-6,9],[-3,0],[-5,18],[-8,9],[-5,2],[0,6],[-5,14],[-7,6],[1,7],[-3,4],[-5,-1],[1,15],[-3,17],[-3,7],[-1,23],[-5,15],[-7,7],[-2,-2],[-8,12],[-7,8],[-13,5],[-8,-9],[-2,-8],[-5,-6],[-2,-11],[-5,-7],[-8,-5],[-5,0]],[[2881,5290],[2,-7],[-3,-3],[-6,-1],[-9,10],[-3,-11],[-5,3],[-2,-12],[-3,7],[-3,4],[-8,-1],[-7,13],[-3,12],[-7,1],[0,11],[4,6],[6,-1],[2,6],[17,-5],[4,-3],[7,0],[3,-10],[12,-8],[2,-11]],[[4942,7533],[1,-7],[-4,1],[-2,5],[5,1]],[[6087,6303],[-4,-8]],[[6083,6295],[-17,-11]],[[6066,6284],[-26,-17],[-7,-5]],[[6033,6262],[-6,-4],[-1,-1]],[[6026,6257],[7,-17]],[[6033,6240],[8,-17],[9,-25],[3,-8],[1,-4]],[[6054,6186],[0,0]],[[6054,6186],[-8,-11],[-1,-1],[0,-1],[-5,-23],[-20,-9],[-1,-3],[-6,-24],[-12,-21],[0,-1],[-1,0],[-15,6],[-8,3],[-4,2],[-3,1]],[[5970,6104],[1,1],[0,6],[1,6],[-1,1],[0,1],[-1,0]],[[5984,6253],[0,5]],[[5984,6258],[1,5]],[[5985,6263],[0,5],[1,3],[0,4],[1,2]],[[5987,6277],[0,4],[0,1],[-1,6],[0,10]],[[5986,6298],[2,13],[-1,7],[0,2],[0,1],[0,-1],[0,1],[0,1]],[[5987,6322],[0,1],[1,7]],[[5988,6330],[-1,1],[1,4]],[[5993,6347],[0,1],[0,-1],[4,-2],[3,-7],[0,-2],[1,-4]],[[6001,6332],[0,-1]],[[6001,6331],[2,0],[1,0],[0,1],[6,-10],[12,-5],[35,48],[19,27]],[[8438,5749],[4,-5],[-2,-5],[-3,5],[1,5]],[[8563,5914],[-2,-5],[-5,-6],[-5,-13],[-3,-10],[1,-6],[-4,-4],[0,7],[3,10],[-1,8],[6,7],[2,7],[6,12],[2,-7]],[[8581,5984],[-1,4],[0,11],[2,0],[1,-9],[-2,-6]],[[8602,6038],[-2,-2],[-6,-11],[-1,-6],[-4,3],[0,7],[11,13],[2,-4]],[[8624,6184],[5,-7],[-3,-10],[-4,1],[-1,7],[3,9]],[[8639,6190],[-4,-15],[-1,9],[2,5],[0,10],[4,2],[-1,-11]],[[8616,6331],[0,-13],[-5,-10],[-1,12],[1,11],[5,0]],[[8578,6349],[2,-9],[-5,-3],[-4,1],[3,9],[4,2]],[[8638,6430],[0,-11],[2,-8],[10,-3],[3,6],[4,0],[1,-7],[-1,-12],[-5,-10],[6,0],[4,-5],[-1,-5],[3,-6],[1,-11],[-1,-8],[-4,-7],[-3,-11],[-7,-47],[1,-8],[-3,-26],[-4,4],[-4,0],[1,-9],[-5,-16],[-6,-4],[2,21],[-2,8],[0,6],[2,5],[1,6],[-4,2],[-2,-3],[-2,-12],[1,-14],[2,-9],[-3,-2],[-2,6],[-7,0],[0,5],[2,9],[2,13],[-5,12],[1,10],[-1,12],[5,2],[4,16],[2,6],[2,13],[-2,6],[1,9],[-5,9],[0,10],[-2,4],[-4,1],[-2,-4],[3,-16],[3,-1],[0,-14],[-5,-5],[1,10],[-3,4],[-4,-3],[-2,-6],[-3,10],[-2,2],[-2,10],[2,12],[-4,6],[1,10],[6,-1],[-1,7],[2,6],[6,-3],[9,8],[2,15],[6,9],[4,0],[5,-3]],[[8589,6459],[2,-3],[-1,-9],[-3,1],[2,11]],[[8726,6464],[8,-12],[5,1],[-1,-15],[3,-4],[1,-9],[-10,-14],[-3,-9],[-2,-18],[-8,17],[-5,3],[-7,-6],[-6,-7],[0,-10],[-5,-12],[-2,-2],[-3,-17],[-3,-3],[-5,4],[3,8],[-7,2],[-1,9],[3,13],[-4,5],[-1,11],[4,12],[5,6],[1,14],[1,6],[4,5],[6,-9],[6,4],[5,-2],[3,6],[1,13],[8,11],[6,-1]],[[8747,6462],[1,-5],[-6,-6],[-2,7],[4,12],[3,-8]],[[8595,6488],[0,-14],[-3,-11],[-2,2],[1,19],[4,4]],[[8704,6596],[-1,-4],[-4,5],[3,9],[2,-10]],[[8845,6729],[3,-2],[-2,-10],[-6,-7],[2,12],[-3,3],[2,12],[6,10],[-2,-18]],[[8923,6965],[5,2],[-1,-16],[0,-24],[1,-11],[8,-20],[4,-18],[0,-6],[2,-4],[2,-18],[-1,-7],[2,-8],[-2,-7],[-2,-11],[0,-13],[-3,-6],[-4,-3],[-1,-7],[-2,-7],[1,-5],[-3,-11],[0,-9],[-11,-5],[-3,-14],[-1,-9],[0,-11],[2,-12],[1,-25],[-2,-30],[-5,-5],[-5,-28],[0,-12],[-1,-4],[2,-19],[5,-19],[-5,-4],[-5,-9],[-2,-13],[0,-14],[-2,-4],[-5,-1],[-4,-7],[-4,-1],[-1,23],[5,10],[2,10],[-3,5],[-4,-3],[-1,-10],[-3,-9],[-4,-5],[-3,1],[-8,-6],[-1,-17],[1,-9],[-5,-15],[-3,-5],[-3,10],[2,28],[-3,1],[-4,-3],[-1,-8],[-4,-5],[-1,-6],[-4,-8],[0,-8],[-4,3],[-7,-1],[-3,3],[-7,-1],[-8,-5],[-1,3],[5,7],[0,5],[-11,-2],[-2,13],[-5,2],[-4,-22],[3,-6],[8,-11],[-2,-9],[-9,-3],[-6,-8],[-1,-7],[0,-7],[-4,-5],[-4,-22],[-6,-8],[-8,5],[-4,9],[2,3],[-9,12],[1,13],[2,5],[-2,13],[6,8],[3,10],[-2,10],[-3,-4],[-8,0],[-6,9],[-6,-1],[-6,-4],[-9,-12],[-1,-6],[-7,5],[-10,-13],[-3,6],[-2,-10],[-9,2],[-5,-8],[-3,1],[-1,11],[-4,0],[-4,-9],[0,-18],[-5,-7],[-8,12],[-8,-2],[-5,-8],[-7,9],[-3,-7],[-2,12],[2,5],[-2,7],[6,10],[5,-3],[5,3],[1,7],[4,10],[7,4],[6,14],[7,11],[2,8],[7,8],[-1,11],[10,5],[4,6],[3,-2],[1,-5],[4,-3],[5,6],[4,-3],[14,4],[8,9],[11,-3],[4,7],[4,3],[1,-17],[3,1],[8,-5],[2,6],[4,1],[3,4],[0,7],[4,3],[-4,14],[5,18],[8,15],[6,17],[3,14],[0,8],[-2,13],[2,14],[5,3],[5,7],[5,3],[-2,-17],[-3,-1],[-3,-7],[-2,3],[-2,-11],[5,1],[-1,-18],[4,-5],[5,0],[3,11],[13,10],[5,8],[4,1],[9,14],[6,18],[2,14],[6,9],[7,7],[3,9],[1,14],[4,20],[5,12],[4,34],[2,3],[1,13],[1,15],[-1,7],[-6,10],[4,12],[2,17],[-2,4],[-1,9],[-2,5],[5,11],[7,3],[1,16],[0,15],[9,-5],[1,-20],[3,-4],[5,7],[4,-4],[2,2],[2,20],[-1,6],[-5,-6],[-2,1],[-5,-5],[-1,5],[2,16],[2,6],[6,-3],[4,-8]],[[8923,7234],[-3,3],[1,8],[4,-7],[-2,-4]],[[8944,7260],[15,-32],[2,-9],[10,-22],[10,-15],[2,-4],[7,-10],[3,-6],[6,3],[6,-2],[3,-9],[3,-3],[9,-2],[2,2],[6,13],[4,6],[5,0],[-7,-21],[-1,-12],[3,-9],[4,-18],[-1,-14],[-5,-4],[-3,-10],[-7,3],[0,-7],[-7,0],[-5,6],[-8,-6],[-4,-6],[-7,-13],[-8,-24],[0,-13],[-3,-15],[-8,12],[-14,12],[-8,14],[-12,11],[-8,-4],[-10,-12],[-2,-6],[-8,18],[-5,1],[-4,-5],[-3,-11],[0,-7],[7,-11],[5,2],[7,-16],[6,-6],[-6,-7],[-9,6],[-1,-5],[-4,-4],[-2,-12],[-3,-3],[-2,-5],[-5,3],[-1,8],[1,10],[3,9],[0,11],[-3,9],[-7,10],[0,5],[2,11],[1,14],[5,2],[4,9],[1,-4],[8,18],[-6,14],[1,9],[4,3],[9,-13],[4,3],[5,-7],[6,8],[2,8],[-2,10],[-1,16],[1,5],[4,4],[4,7],[0,9],[0,15],[3,11],[1,12],[0,12],[-2,14],[-4,15],[0,6],[3,11],[9,4]],[[6758,7268],[-1,0],[-2,1],[-1,1],[-2,1],[-2,3],[-3,6],[-1,3],[-1,3],[-1,2],[0,3],[0,12],[3,11],[1,2],[1,2],[1,2],[1,2],[1,1],[3,2],[2,1],[1,0],[4,0],[8,-6],[1,-2],[2,-2],[0,-2],[2,-5],[0,-3],[1,-3],[0,-12],[-1,-3],[0,-2],[-1,-3],[-1,-3],[-3,-6]],[[6770,7274],[-5,-5],[-3,-1]],[[6762,7268],[-2,-1],[-2,1]],[[7145,6547],[2,-1],[1,-2]],[[7140,6517],[-4,19],[-4,20]],[[7132,6556],[1,0]],[[7136,6551],[2,0],[3,-3]],[[7227,7025],[-1,2],[-1,4],[-1,3],[-5,8],[-6,3],[-6,-1]],[[7207,7044],[-2,3],[-1,6]],[[7204,7053],[-4,4],[-1,2],[0,1],[0,1]],[[7199,7061],[-1,7]],[[7198,7068],[-3,-2]],[[7195,7066],[-4,1],[-3,2]],[[7188,7069],[-3,0],[-1,2],[-2,2],[-2,1],[-13,-1],[-4,3],[-20,2],[-1,2],[-1,1],[-3,1],[-1,0],[-7,-5],[-8,-2],[-1,2],[-1,-1],[-2,2],[-3,0],[-2,1],[-1,0]],[[7112,7079],[-6,0]],[[7106,7079],[-1,0],[-1,0],[0,-1],[-3,-9],[-1,0],[-2,2],[-2,0],[-6,1],[-2,0]],[[7088,7072],[0,1],[-4,3]],[[7084,7076],[-1,1],[-1,1],[-1,1],[-2,3],[-4,1],[-3,5],[-2,4],[-8,7],[-2,-2],[-4,-1],[-11,-8],[-4,-12],[0,-7],[-3,-15]],[[7038,7054],[3,-12]],[[7041,7042],[0,-2],[-1,0],[-4,2],[0,5],[-1,1],[-3,1],[-2,2],[-4,-1],[-1,0],[-1,1],[-1,0],[-4,7],[-3,2],[-3,0],[-6,6],[-3,1],[-2,-2],[-4,4],[-2,1],[0,1],[-1,0]],[[6995,7071],[-7,-5]],[[6988,7066],[-1,0]],[[6987,7066],[-1,2]],[[6986,7068],[-1,0],[-2,1],[-4,-3],[-2,-4],[-1,-1],[0,-1],[0,-1],[0,-3],[-1,-1],[0,-1],[-2,-1],[-1,-1]],[[6972,7052],[0,-3],[1,-2],[-3,-8]],[[6970,7039],[-1,-3],[-1,-1]],[[6968,7035],[-1,-1],[1,-2]],[[6968,7032],[2,-3]],[[6970,7029],[-1,-1],[-1,-2],[-2,-1],[-2,1],[-3,-12],[-5,4],[-3,-4],[-5,-13],[-8,-11],[-7,-2],[-6,-9],[0,-5],[-5,-1],[-5,-6],[0,-11],[-8,-12],[-6,-16],[3,-12],[-5,-6],[-6,7],[-5,8],[2,17],[-3,2],[-3,10],[-5,-1],[-26,-3],[-3,4],[-4,39],[-1,18],[-14,0],[0,29],[1,3],[1,40],[-8,-8],[-8,30],[-7,8],[-8,20],[-3,2],[-12,-12],[-34,5],[-33,-10],[-1,1],[-23,48],[-3,16],[-38,46],[-30,37],[-2,1],[-29,-16],[-42,-25],[0,-49],[0,-49],[0,-66],[0,-99]],[[6554,6963],[-9,-4],[-6,2],[-6,13],[-7,23],[-1,10],[-5,8],[-15,19],[-4,2],[-18,-6],[-12,-9],[-6,-10],[-9,-17]],[[6456,6994],[1,13],[-2,11],[5,18],[5,23],[-5,10],[-6,2],[-3,-2],[-2,6],[-7,-4],[-2,5],[-6,21],[-8,-3],[-3,3],[2,18],[-1,8],[-4,6],[-4,20],[-4,9],[0,11],[-4,5],[-10,3],[-3,6],[0,13],[2,6],[5,-2],[10,1],[8,-11],[5,8],[-3,10],[-7,8],[1,10],[7,8],[0,4],[4,13],[6,1],[5,4],[5,-2],[12,2],[5,0],[9,-7],[6,-1],[1,6],[-12,11],[1,8],[4,11],[5,16],[2,23],[-2,7],[0,9],[3,11],[-3,10],[-5,7],[-8,0],[-5,3],[-2,-7],[-7,-6],[-3,5],[-7,2],[-7,11],[-9,4],[-9,-6],[-3,-9],[-4,-3],[-5,1],[-1,-5],[-6,-5],[-4,-8],[-6,-7],[-5,3],[-4,-1],[-5,-7],[-2,-10]],[[6367,7322],[-15,16],[-3,1],[-4,7],[3,7],[6,-5],[7,6],[-9,24],[-5,22],[-4,6],[-5,16],[-4,4],[-11,-1],[-6,5],[-2,-11],[-5,7],[-1,7],[-3,7],[2,9],[-1,13],[-16,9],[7,37],[8,13],[0,7],[-7,10],[3,35],[2,4],[6,5],[4,7],[-1,16],[7,13],[2,-1],[11,-18],[6,-23],[5,-4],[10,9],[3,6],[-5,23],[-1,17],[5,1],[8,14],[7,3],[-1,10],[2,10],[10,0],[6,9],[9,5],[2,9],[4,2],[1,13],[6,-3],[4,6],[9,1],[3,-4],[1,-12],[6,4],[7,11],[6,-1],[7,7],[5,-20],[8,2],[4,-4],[6,4],[7,-2],[6,-7],[1,-12],[8,-2],[4,-7],[2,-9],[9,-8],[-3,-17],[1,-5],[7,4],[-1,20],[-4,3],[4,7],[7,-8],[4,-2],[1,-6],[7,-10],[5,-1],[4,-8],[12,14],[3,13],[4,-1],[5,12],[10,-1],[8,3],[6,-15],[10,4],[1,13],[23,-7],[-1,-7],[3,-10],[7,-8],[14,-3],[3,-11],[7,4],[7,23],[7,-12],[12,-3],[18,10],[2,6],[2,21],[2,8],[-3,11],[-13,4],[-2,9],[-12,1],[-4,3],[3,10],[-9,6],[2,8],[8,11],[5,0],[10,13],[-3,11],[-3,2],[-1,8],[-3,8],[4,2],[10,18],[8,0],[3,-4],[7,1],[2,-3],[5,4],[-1,10],[-8,3],[-3,5],[-5,-2],[-8,5],[-1,7],[2,8],[4,-4],[5,5],[-1,6],[-6,-3],[-8,6],[5,14],[-3,4],[3,10],[6,3],[2,-4],[30,2],[7,4],[8,0],[1,6],[6,-1],[10,7],[4,-4],[4,7],[16,6],[4,-3],[5,5],[5,-7],[4,2],[0,13],[6,2],[1,6],[7,-3],[3,6],[4,-4],[13,7],[21,6],[2,4],[10,0],[5,7],[10,0],[4,9],[-2,8],[10,0],[3,12],[13,-2],[4,4],[10,-4],[6,-8],[8,-6],[8,11],[5,2],[9,-17],[-1,-14],[2,-8],[5,-3],[-1,-10],[1,-19],[-6,0],[2,-10],[4,-6],[3,7],[5,-6],[6,1],[2,8],[8,-1],[3,10],[9,-17],[-4,-4],[3,-12],[6,10],[-1,6],[9,-1],[3,-10],[8,-3],[11,9],[-2,-11],[-5,-2],[-8,-16],[1,-6],[4,-4],[13,8],[10,-2],[5,-9],[1,15],[5,0],[4,11],[7,-2],[12,13],[-2,5],[7,3],[16,11],[1,7],[5,-3],[10,4],[2,-5],[-5,-12],[-8,1],[4,-13],[30,-37],[7,-13],[17,-45],[28,-82],[14,-51],[2,5],[11,7],[-1,11],[2,7],[3,0],[2,7],[13,-12],[-2,-13],[9,0],[2,-16],[6,0],[3,4],[8,-5],[9,2],[2,-2],[6,7],[2,7],[6,-2],[4,8],[9,0],[11,-9],[3,-6],[1,-7],[3,-4],[5,-27],[3,-3],[7,-2],[6,-8],[4,0],[-1,-12],[2,-2],[7,-21],[3,2],[12,-5],[3,-4],[5,2],[8,8],[6,12],[4,-1],[1,-6],[-5,-8],[6,-6],[2,-11],[5,-8],[4,-1],[3,-10]],[[6758,7268],[4,0]],[[6762,7268],[8,6]],[[6073,4256],[0,1],[0,1],[2,-5]],[[6163,4283],[-2,-8],[-5,-18],[-8,-29],[-11,-28],[0,-51],[0,-88],[0,-63],[1,-63],[15,-50],[0,-9]],[[6153,3876],[-6,-18],[-3,0],[-5,-7],[-3,-2],[0,-10],[-2,-2],[0,-9],[-6,-13],[-3,2],[-4,-3],[-4,-7],[-2,-7],[0,-13],[2,-4],[-3,-14],[0,-4],[-4,-11],[-4,-16],[1,-5],[-2,-16],[-4,-12],[-3,-23],[-5,-17],[-3,2],[-2,-5]],[[6088,3662],[-19,35],[-20,39],[-2,8],[-3,2],[0,8],[3,6],[-2,19],[-26,38],[-24,34],[-12,18],[-24,34],[-14,20],[-4,3]],[[5941,3926],[0,15],[0,9],[2,37],[0,3],[-1,7],[-1,7],[0,2]],[[5941,4006],[4,14]],[[5945,4020],[1,2],[0,2],[0,4]],[[5946,4028],[1,4],[0,7]],[[5947,4039],[5,8]],[[5952,4047],[0,3],[0,1],[0,1]],[[5952,4052],[0,1],[2,2],[1,1],[0,3],[1,3],[1,5],[0,1],[0,3],[0,2],[0,1],[0,2],[1,1],[1,-1]],[[5959,4076],[0,0]],[[5959,4076],[1,2]],[[5960,4078],[0,1],[0,2]],[[5960,4081],[3,4]],[[5963,4085],[2,0],[1,1],[0,3],[-1,8],[2,4],[1,6],[0,2]],[[5968,4109],[3,9]],[[5971,4118],[0,14],[0,1],[1,2],[0,1],[-2,5],[1,8],[-3,17],[0,3],[0,2]],[[5968,4171],[2,5]],[[5970,4176],[-1,1],[-1,2],[0,5],[-1,0],[-3,19],[-2,0],[-2,6],[-1,11],[-3,6],[-2,21],[1,1],[0,1],[1,2],[0,3],[0,6],[0,1],[0,1],[-1,1],[-2,3],[-1,-2],[-6,21],[0,6],[0,1],[-1,1],[0,1],[0,1],[0,2],[0,1],[-1,2],[-1,1]],[[5943,4301],[11,28],[8,11],[16,15],[5,4],[0,-8],[4,-1],[-1,-9],[3,-12],[2,-2],[2,2],[2,0],[2,0]],[[7106,7079],[4,-2],[2,2]],[[7188,7069],[7,-3]],[[7198,7068],[1,-1],[0,-3],[0,-1],[0,-2]],[[7204,7053],[3,-9]],[[7227,7025],[1,-1],[0,-3],[1,-3]],[[7202,6996],[-3,-4],[-3,-2]],[[7168,6943],[-1,-1],[-1,1]],[[7134,6941],[-2,-5],[-1,-2],[1,-4]],[[7119,6894],[-2,6]],[[7054,6870],[-4,-16]],[[7050,6854],[2,-7],[1,-8]],[[7045,6828],[-8,0],[-5,-6]],[[7032,6822],[-1,0],[-1,0],[-1,1]],[[7029,6823],[-6,-1]],[[7023,6822],[-6,3],[-9,-5],[-2,-10]],[[7006,6810],[-1,1]],[[7005,6811],[0,1],[0,2],[-3,2],[-1,4],[0,2],[0,1],[-2,-1],[-1,-1],[-3,-4],[-1,-1],[-1,0],[-1,1],[0,11],[-4,0],[-3,4],[-1,8],[-6,-7],[-5,-1],[0,-2],[-1,-4],[-1,-1],[-2,2],[-5,-3],[-3,13],[-4,2],[-4,-2],[-3,-3],[-1,0]],[[6949,6834],[-5,3]],[[6944,6837],[-5,-2],[-1,0],[-1,2],[-2,1],[-3,-1],[-2,-3],[-3,0],[-1,2]],[[6926,6836],[0,-1],[-1,-1]],[[6925,6834],[-1,-1],[0,2],[0,9],[-2,6],[1,6],[1,7],[1,3],[0,1]],[[6925,6867],[1,-2],[1,-4],[2,9]],[[6929,6870],[3,6]],[[6932,6876],[11,7],[1,0],[4,-5],[2,0],[1,-1],[1,-3]],[[6952,6874],[9,-6],[1,6],[8,8],[3,6]],[[6973,6888],[4,-1],[5,2],[3,-5],[3,-2]],[[6988,6882],[2,-3]],[[6990,6879],[1,-1],[2,2],[0,1],[0,1],[1,2],[1,2],[7,13],[2,2],[2,0],[4,-5],[1,1],[0,4],[0,1],[-1,2],[-1,1]],[[7009,6905],[0,1],[1,1],[0,1],[0,4]],[[7010,6912],[2,-4],[4,-3]],[[7016,6905],[2,5],[2,-1]],[[7020,6909],[0,5],[1,2],[3,2],[2,3],[4,3],[-3,6],[-3,-3],[-1,3],[-1,1],[-3,-1],[-1,0],[-2,1],[0,2],[-2,4],[-1,0],[0,1]],[[7013,6938],[0,3]],[[7013,6941],[-3,1],[-6,-2],[0,3],[0,1],[0,4],[0,2],[0,2]],[[7004,6952],[0,1],[-2,1],[-2,-3]],[[7000,6951],[0,1],[-1,2],[-3,0],[0,8],[-4,10]],[[6992,6972],[-1,0]],[[6991,6972],[0,6],[-3,-3],[1,-4]],[[6989,6971],[0,-4],[-1,-4],[-1,-2],[-1,0]],[[6986,6961],[-2,4],[-1,0],[0,-1]],[[6983,6964],[0,-13]],[[6983,6951],[-2,0]],[[6981,6951],[-1,-2],[0,-1]],[[6980,6948],[-1,0],[-2,1]],[[6977,6949],[-1,-1],[-4,5]],[[6972,6953],[-3,1],[0,1],[-1,1],[0,1]],[[6968,6957],[-1,1]],[[6967,6958],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,5],[0,1],[0,2],[-2,5],[-2,1],[-4,-4],[-4,6],[-4,1],[-1,1],[0,2],[0,2],[5,5],[2,3],[1,1],[0,1],[2,5],[1,3],[4,5],[2,1],[2,2],[0,7],[1,0],[2,0],[1,1]],[[6971,7015],[4,5],[3,3],[1,3],[-1,0]],[[6978,7026],[-4,6],[-2,0],[-1,-2],[-1,-1]],[[6970,7029],[-1,1],[-1,2]],[[6968,7035],[2,4]],[[6970,7039],[0,2],[1,5],[1,6]],[[6986,7068],[1,-2]],[[6988,7066],[3,4],[4,1]],[[7041,7042],[-2,7],[-1,5]],[[7084,7076],[4,-4]],[[6973,6875],[-1,4]],[[6972,6879],[-1,-1],[-1,-4],[5,-15],[2,1],[1,1],[0,2],[-2,3],[0,2],[1,1],[1,1],[0,2],[-1,0],[0,-1],[-1,0],[-2,2],[-1,2]],[[7901,4746],[-5,8],[-12,4],[-3,-6],[-3,-1],[-4,10],[2,7],[3,2],[1,10],[-1,9],[-4,10],[-2,-2],[-1,-18],[-4,3],[-3,-5],[-2,5],[1,17],[-2,8],[1,11],[-3,7],[-2,8]],[[7858,4833],[0,9],[-6,27],[0,14],[2,6],[-6,15],[-2,2],[1,10],[-1,15],[-3,9],[-1,10],[0,21],[5,0],[1,9],[4,5],[2,13],[3,6],[1,12],[5,8],[5,4],[5,1],[3,4],[8,-6],[4,0],[7,4],[6,-3],[9,6],[5,-4],[0,-6],[4,-5],[2,8]],[[7921,5027],[0,-2],[0,-2],[2,-7],[3,-6],[5,4],[2,-4],[4,-1],[3,-11],[5,-2],[3,12],[-4,11]],[[7944,5019],[0,4],[-1,3]],[[7943,5026],[0,2],[0,1],[0,-1],[2,-1],[0,2],[3,0],[2,8],[5,-1],[3,9],[2,-9],[3,-3],[3,-7],[4,0],[7,12],[2,7],[2,-2],[2,-2],[0,1],[0,1],[0,1],[0,1],[1,1],[0,2],[1,1],[1,3],[0,1]],[[7986,5053],[0,-2],[-1,-10],[-1,-7],[-2,-1],[-2,-22],[1,-7],[2,-3],[1,-14],[4,-18],[0,-12],[-4,-25],[2,-16],[1,-14],[-1,-18],[-3,-7],[-3,6],[-4,-4],[-5,-13],[-7,-3],[-1,-6],[-8,0],[1,-8],[-1,-8],[-3,-5],[-4,5],[-4,1],[-4,-16],[0,-9],[-1,-8],[6,-15],[3,-3],[-1,-6],[1,-13],[-4,2],[-2,6],[-2,-4],[-3,12],[-8,-5],[-2,2],[-2,-9],[-2,3],[-6,2],[1,-12],[-6,-15],[-9,-1],[-2,-7]],[[627,4143],[3,-4],[-1,-8],[-3,-4],[-1,4],[4,7],[-2,5]],[[3258,5242],[-2,-3],[-2,5],[1,3],[3,-5]],[[8522,6406],[3,-9],[-2,-9],[-16,-8],[-3,5],[1,8],[3,6],[5,4],[9,3]],[[8508,6476],[1,-9],[-4,-4],[-3,6],[6,7]],[[8553,6497],[4,-1],[-1,-8],[-5,1],[2,8]],[[8575,6506],[-1,-10],[-2,-6],[-4,10],[7,6]],[[8514,6698],[-3,-2],[-2,13],[5,-2],[0,-9]],[[8518,6712],[0,8],[2,3],[8,20],[3,4],[9,-1],[8,2],[1,-2],[7,0],[3,4],[3,7],[0,9],[3,3]],[[8565,6769],[7,-34],[8,-25],[4,-8],[3,-13],[5,-16],[4,-37],[-2,-11],[1,-15],[-2,-14],[1,-15],[3,-4],[-2,-22],[0,-9],[-3,-4],[1,-7],[-3,-3],[-2,-12],[-6,-5],[-14,1],[-1,-18],[-6,7],[-5,-1],[-1,5],[-10,-7],[3,-5],[0,-7],[-3,-2],[-4,13],[-3,-9],[3,-11],[-5,-12],[-3,8],[2,12],[-4,-2],[-4,-6],[-3,-13],[-4,4],[-6,-14],[-2,5],[1,11],[-5,4],[-1,6],[3,14],[-1,17],[0,14],[4,22],[-1,4],[4,6],[4,12],[-2,8],[-4,16],[1,6],[-3,17],[-4,11],[-5,5],[3,8],[3,-4],[6,12],[5,4],[-3,15],[3,4],[-4,9],[0,8],[-2,15],[4,1],[0,4]],[[5598,7029],[-5,-2],[-4,-8],[-4,7],[-9,-10],[0,-11],[-5,-3]],[[5557,7051],[1,7],[-1,9],[3,-2],[1,3],[1,2],[3,1]],[[5565,7071],[2,1],[1,1],[1,2],[0,1],[-1,1],[0,1],[0,2],[0,1],[2,1],[1,2],[1,0],[1,3]],[[5573,7087],[1,4],[-1,1]],[[5573,7092],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[1,0],[1,0],[2,3],[0,1],[1,0],[1,-6],[7,-6],[5,-15],[2,-2],[1,0],[1,0],[0,-1]],[[5594,7072],[0,-1]],[[5594,7071],[0,-2],[0,-2],[0,-1],[-1,-1],[1,0],[0,-1]],[[5594,7064],[4,0]],[[5598,7064],[0,-1],[1,0],[1,-3],[1,0],[1,1],[1,-1]],[[5603,7060],[0,-9]],[[5603,7051],[-3,-12],[-1,-1],[-1,-1],[-1,-1],[0,-2],[1,-3],[0,-2]],[[6338,6149],[4,-13],[1,-6],[-4,-8],[-2,2],[-3,12],[3,6],[1,7]],[[6345,6046],[-21,-1],[-2,6],[-3,21],[-2,6],[-25,8]],[[6331,6150],[2,-15],[2,-3],[3,-13],[-6,1],[-3,-5],[-4,-10],[5,-2],[2,4],[3,-8],[2,-19],[5,-18],[3,-16]],[[7835,5607],[0,-1],[1,-1]],[[7836,5605],[3,-12],[4,-8],[1,-1],[0,-2],[0,-1],[1,-1],[1,-1],[0,-1]],[[7846,5578],[3,-9]],[[7849,5569],[1,-5],[0,-3],[0,-4],[1,-5],[2,0],[0,2],[1,4],[3,-3],[2,2],[0,1],[1,-12],[-3,-6],[0,-19],[2,-11],[2,-2],[3,-13],[6,-6],[2,3]],[[7872,5492],[2,-5],[5,-7]],[[7879,5480],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[7880,5485],[1,0]],[[7881,5485],[0,1],[0,1],[0,2],[0,1],[1,2],[0,1],[8,9],[6,-6],[3,-8],[6,-8],[-2,-9],[0,-1],[-1,0],[-2,1],[0,-2],[-2,-3],[0,-1],[1,-2],[1,0],[4,0],[1,-3],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[1,-1],[4,2],[2,-3]],[[7913,5446],[0,-1],[0,-1],[0,-1],[2,-3]],[[7915,5440],[-1,-3],[0,-2],[1,-1]],[[7915,5434],[-1,-1],[0,-1],[-1,0],[-1,0]],[[7912,5432],[0,-1],[0,-1],[-1,-1],[-1,-3],[-1,-1],[0,-2],[1,0],[1,-1],[-1,-4],[-1,-3],[-2,-1]],[[7907,5414],[0,-1],[-1,-1],[0,-1]],[[7906,5411],[-1,-5],[0,-1],[-1,0],[0,1],[0,-1]],[[7904,5405],[-1,-1]],[[7903,5404],[-1,0]],[[7902,5404],[-2,4],[-1,2]],[[7899,5410],[-1,0],[-2,-2]],[[7896,5408],[-2,4]],[[7894,5412],[-3,-4],[-2,2],[-1,0],[0,-1],[0,-1],[1,-4],[0,-1],[1,-2],[1,-5],[-2,-5],[-1,-1],[-1,0],[0,-1],[-1,0]],[[7886,5389],[0,-2],[0,-1],[-2,-1],[0,-1]],[[7884,5384],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,-3],[2,1],[3,-4],[9,-14],[7,-14],[1,0],[2,-1],[1,0]],[[7912,5345],[1,0],[0,-2]],[[7913,5343],[1,-1],[5,-2],[2,-5],[-3,-13],[2,-10]],[[7920,5312],[4,-8]],[[7924,5304],[0,-2],[1,0],[1,-2],[1,3],[1,0],[1,-1],[0,-3]],[[7929,5299],[4,-12]],[[7933,5287],[-1,-6],[1,-2],[1,-2],[1,-7]],[[7935,5270],[1,-3],[0,-2]],[[7936,5265],[3,-4]],[[7939,5261],[5,-15],[5,-10],[0,-1],[1,0],[1,3]],[[7951,5238],[1,0],[0,-4]],[[7952,5234],[0,-1],[0,-1],[0,-2]],[[7952,5230],[3,-13]],[[7955,5217],[3,-1],[1,-21],[2,-7],[1,-8],[3,-3],[1,3],[0,2],[1,2],[1,-2],[0,-6],[3,-9],[4,-3],[1,-6]],[[7976,5158],[2,-3]],[[7978,5155],[1,-3],[1,-1],[1,-1],[2,1],[1,0]],[[7984,5151],[-1,-1],[0,-1],[1,-2]],[[7984,5147],[-1,-1],[0,-1],[-1,-4],[-2,-2],[-2,-3],[-2,-1],[0,-6],[6,-19],[5,-6],[1,-6],[1,-2],[1,-1],[0,-2],[0,-1],[0,-3],[-3,-11],[-3,-2],[3,-11],[-1,-1],[-1,-3],[0,-1]],[[7985,5060],[1,-6]],[[7986,5054],[0,-1]],[[7943,5026],[1,-7]],[[7921,5027],[2,2],[2,1],[2,3]],[[7927,5033],[3,8],[0,4]],[[7930,5045],[0,5]],[[7930,5050],[-1,9]],[[7929,5059],[3,14],[-4,11],[0,1],[1,2],[0,1],[1,3]],[[7930,5091],[2,3]],[[7932,5094],[0,2],[-1,2],[-2,0],[0,1],[0,2],[1,1],[1,1],[1,2]],[[7932,5105],[1,1],[0,1],[1,13]],[[7934,5120],[0,3],[-1,3],[-5,3],[-2,9],[0,2],[0,3]],[[7926,5143],[1,2],[0,1],[1,1],[-1,0]],[[7927,5147],[-3,2],[-2,1],[-3,3],[-1,1],[0,1],[-1,1],[0,2],[0,2],[0,3],[-1,3],[-3,5],[0,4],[0,1],[-1,1],[0,2],[-1,1],[-1,2],[-1,2],[1,13],[-1,22],[2,11],[0,14],[-3,11],[-7,9],[-1,4],[-1,3],[0,1],[-1,3],[0,1],[-2,3]],[[7896,5279],[-2,11]],[[7894,5290],[0,1]],[[7894,5291],[-2,4],[-1,3],[-3,14]],[[7888,5312],[-1,1],[-3,-3]],[[7884,5310],[0,2],[-1,0],[-6,6],[-3,2],[-1,0],[-2,1],[-2,-1],[-1,-2],[-4,-17],[-1,-1],[0,-1],[-1,-7],[0,-1],[-1,-2],[-1,0],[0,1],[-1,0],[-3,-3],[-2,-3],[-1,-2],[0,-1],[-1,-1]],[[7852,5280],[-1,0],[0,-1]],[[7851,5279],[0,-2],[1,-1]],[[7852,5276],[-1,0],[-1,2],[-1,1],[-1,8],[-2,0],[-1,1],[-1,1],[-3,4],[-1,3],[-1,2],[-1,2],[-1,4],[-1,1],[-1,0],[0,-1],[-1,-1],[-4,-11],[-1,0],[-1,1],[-1,2]],[[7827,5295],[-1,-3],[0,-3],[-1,-4],[0,-2]],[[7825,5283],[-4,-3]],[[7821,5280],[-1,-5],[-1,-2],[-1,-2],[0,-1],[0,-1],[0,2],[-1,0],[0,1],[0,-1],[0,-1]],[[7817,5270],[-1,-1]],[[7816,5269],[-1,-3],[-3,-6],[-4,-9]],[[7808,5251],[-1,1],[0,1]],[[7807,5253],[-1,0]],[[7806,5253],[-1,2],[0,1],[-1,1]],[[7804,5257],[-2,1],[0,1],[0,1]],[[7802,5260],[2,15]],[[7804,5275],[0,1],[1,0],[0,1],[0,3],[0,1],[0,1],[4,11],[0,1],[0,3],[0,1]],[[7809,5298],[-1,9]],[[7808,5307],[0,3]],[[7808,5310],[1,2]],[[7809,5312],[0,1],[0,1],[-2,2]],[[7807,5316],[-1,2],[0,2]],[[7806,5320],[1,6]],[[7807,5326],[4,12]],[[7811,5338],[0,16]],[[7811,5354],[2,6],[1,3]],[[7814,5363],[0,2],[-1,2],[-1,3],[-1,1]],[[7811,5371],[-1,23]],[[7810,5394],[2,8],[-4,0],[-4,3],[-2,0],[-1,0],[0,-1],[0,-1],[-2,-3],[-1,-4],[-4,4],[-4,0],[-2,16],[1,5],[0,1],[1,1],[0,1],[1,2],[0,2],[0,5],[1,5],[-5,21],[-1,3],[-1,-1],[-1,-1],[-1,-2],[-1,-4],[0,-3],[-2,0]],[[7780,5451],[0,2],[0,3]],[[7780,5456],[0,3],[0,2]],[[7780,5461],[1,5],[0,6],[1,5],[0,1],[0,1]],[[7782,5479],[1,4]],[[7783,5483],[0,1],[1,1],[1,3],[0,1],[3,4],[4,-2]],[[7792,5491],[2,2],[0,4],[-2,-1],[-1,1]],[[7791,5497],[0,1],[1,3],[0,1],[0,1],[0,1],[0,1],[0,2],[1,0],[1,1],[0,1],[1,1],[1,6],[1,9],[0,1],[0,1],[1,0],[1,-1],[6,8],[4,8]],[[7809,5542],[0,2]],[[7811,5532],[0,-1]],[[7811,5527],[0,-5]],[[7811,5522],[0,-1],[1,-2]],[[7827,5519],[1,1],[0,2]],[[7828,5522],[-1,1]],[[7825,5556],[0,3],[1,4]],[[7826,5563],[-1,2]],[[7824,5569],[-1,3]],[[7823,5572],[-1,1],[0,1]],[[7822,5574],[-2,9]],[[7820,5583],[-1,10]],[[7819,5593],[0,1],[1,2]],[[7822,5597],[0,3],[0,1],[1,2]],[[7827,5606],[2,-2],[1,3]],[[6010,6482],[1,0],[1,1]],[[6012,6483],[0,-3],[-1,0],[0,1],[-1,-1],[0,-2],[0,-1],[-1,-1],[-1,-2],[1,-1],[2,0],[3,-6],[0,-4],[1,-5]],[[6015,6458],[0,-2],[0,-2],[1,-1],[0,-1]],[[6016,6452],[-1,-2],[0,-2]],[[6015,6448],[-2,-4]],[[6013,6444],[-3,-3]],[[6010,6441],[-1,-3],[-1,-2]],[[6008,6436],[-2,-9],[-5,-3]],[[6001,6424],[-2,-4]],[[5999,6420],[0,-2],[-1,-1]],[[5998,6417],[0,-1],[-1,-4],[3,-3],[-3,-10],[-1,-2]],[[5996,6397],[-1,-1],[-1,-1]],[[5986,6376],[-1,-3],[0,-1]],[[5985,6372],[-2,-1]],[[5979,6373],[-1,-1],[-1,1]],[[5975,6372],[0,1],[-1,0],[1,2],[1,3],[3,21],[2,4],[4,20],[0,7],[3,2],[2,14],[-1,6],[5,18],[5,6],[0,7],[1,0]],[[6000,6483],[7,0]],[[6007,6483],[3,-1]],[[4769,4510],[0,-2],[0,-7]],[[4768,4483],[-3,-9],[-3,-6]],[[4762,4468],[-1,-2]],[[4760,4464],[1,0]],[[4794,4399],[0,-2],[0,-2],[0,-1]],[[4794,4394],[-1,-2]],[[4794,4379],[0,-3]],[[4789,4361],[1,-8],[-1,-2],[-1,-2]],[[4788,4346],[0,-2],[0,-1]],[[4788,4343],[1,-6]],[[4789,4337],[0,-16],[0,-3],[0,-2],[0,-1]],[[4789,4312],[0,-2],[-4,1],[-3,6],[-8,8],[-4,2],[-10,14],[-6,9],[-5,5],[-7,12],[-6,13],[0,5],[-6,11],[-9,22],[0,3],[-10,20],[-8,4],[-3,4],[-1,11],[-7,10],[-8,9],[0,8],[-3,7]],[[4681,4494],[2,6],[1,10],[4,8],[2,9],[7,11],[4,13]],[[4701,4551],[4,4]],[[4705,4555],[0,18],[0,1],[1,2]],[[4706,4576],[1,5]],[[4707,4581],[1,1],[4,1],[1,2],[0,1]],[[4713,4586],[0,2],[0,2]],[[4713,4590],[0,1],[0,3],[1,9],[0,4]],[[5666,5397],[-21,26],[-27,35],[-18,22],[-30,39],[-18,22],[-20,26],[-28,35],[-20,27],[-21,26],[-20,25],[-27,-32]],[[5416,5648],[-21,-27],[-1,0],[-17,36],[-3,4],[-18,10],[-24,14]],[[5264,6167],[6,7],[4,2],[9,27],[1,8],[1,3],[0,2]],[[5285,6216],[-1,5],[0,7]],[[5284,6228],[-4,24]],[[5280,6252],[0,1],[0,5],[5,13],[1,3],[3,0],[2,3],[1,3],[1,3],[1,8],[6,5],[2,8],[8,9],[7,7],[2,3],[1,1],[0,1],[1,2],[0,3],[-1,3],[-2,4],[0,3],[0,4],[0,7],[0,8]],[[5318,6359],[0,5],[0,5]],[[5318,6369],[1,7]],[[5319,6376],[10,-4],[7,-12],[6,-6],[11,-3],[10,5],[2,3],[5,0],[6,-7],[6,-1],[11,-6],[8,-14],[8,-5],[5,0],[8,-4],[2,-5],[2,-12],[0,-16],[4,-19],[3,-12],[4,-8],[8,-8],[9,-3],[10,-1],[12,-7],[6,-3],[3,-4],[10,-7],[2,-5],[7,-5],[4,-9],[10,-17],[7,-9],[4,-2],[8,2],[7,9],[4,6],[8,22],[3,17],[0,12],[-3,13],[-3,23],[0,17],[4,16],[9,18],[5,9],[6,6],[8,10],[6,-1],[4,3],[5,9],[3,1],[4,-3],[6,1],[8,-4],[4,-5],[16,-11],[1,-12],[-1,-11],[4,-7],[5,-2],[7,-1],[9,-6],[3,-7],[12,-1],[4,3],[8,-4],[2,-8],[3,-14],[-2,-6]],[[5693,5702],[0,-63],[0,-42],[0,-66]],[[5693,5531],[0,-17],[0,-9],[0,-9]],[[5693,5496],[0,-27],[0,-14],[0,-7],[0,-6],[0,-9],[-3,0],[-4,0],[-3,0],[-7,0],[-6,0],[-4,0]],[[5666,5433],[0,-36]],[[3308,5003],[0,-13],[-1,-8],[-3,4],[-1,9],[4,15],[1,-7]],[[7235,4685],[7,-15],[3,-9],[2,-16],[6,-17],[3,-9],[-1,-13],[4,1],[3,-26],[3,-10],[1,-11],[3,-6],[1,-18],[3,-6],[1,-6],[0,-22],[-3,-30],[-3,-10],[-9,-17],[-7,-8],[-8,-6],[-3,-6],[-3,-2],[-10,6],[-4,9],[-2,9],[-1,20],[-3,19],[0,15],[-2,12],[1,4],[-1,26],[0,4],[-3,32],[3,-2],[2,33],[2,8],[-1,11],[1,11],[3,6],[2,14],[-2,12],[6,8],[-3,10],[-2,-2],[-4,5],[1,10],[7,0],[5,-15],[2,-3]],[[5814,1906],[3,-14]],[[5817,1892],[-4,-8],[0,-2],[0,-1],[0,-2],[0,-6],[-1,-1],[-2,-1],[-1,-2],[-1,-6],[0,-4],[0,-1],[1,-2],[0,-1]],[[5809,1855],[0,-1]],[[5809,1854],[0,-2],[0,-1]],[[5809,1851],[-8,-10]],[[5801,1841],[-2,-2],[-2,-1],[-2,-2],[-3,1],[-5,-3],[-2,-6],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1]],[[5784,1822],[-1,-5]],[[5783,1817],[-4,-18],[-9,3],[-1,1],[-1,4],[-2,3],[0,1],[0,2],[-4,10],[-1,-1],[-1,1],[-3,20],[-2,2],[0,2]],[[5755,1847],[-5,25]],[[5750,1872],[1,2],[1,-1],[1,2],[3,3],[2,1],[0,3],[1,0],[0,1],[0,1],[1,1],[1,4],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[2,2]],[[5764,1898],[0,3]],[[5764,1901],[0,1],[1,1],[1,4],[1,3]],[[5767,1910],[1,2]],[[5768,1912],[0,1],[-1,1],[1,1]],[[5768,1915],[2,9],[3,-1],[1,1],[1,3],[3,0],[3,11],[3,1],[1,-1],[1,1]],[[5786,1939],[1,4]],[[5787,1943],[1,1]],[[5788,1944],[8,2]],[[5796,1946],[0,-1],[0,-2],[0,-3],[1,-1]],[[5797,1939],[1,0],[1,-4]],[[5799,1935],[2,-1],[1,-2],[1,-5],[1,-3],[4,-6],[3,-6],[1,-1],[1,0],[1,0],[0,-5]],[[5632,7898],[-2,5],[-1,2],[2,19],[3,4],[-1,9],[-5,4],[-1,8],[-9,0],[-5,-2],[-16,11],[-3,6],[-4,-2]],[[5590,7962],[-1,20],[-4,16],[-1,23]],[[5584,8021],[1,1],[2,0],[1,0],[1,6],[10,10],[3,0],[8,6],[3,2],[4,-2],[8,1],[5,-4],[5,4],[4,-6],[2,-1],[2,4],[3,1],[1,0],[5,-3],[3,1],[3,-1],[1,0],[3,0],[7,-5],[2,0],[3,2],[5,-2],[2,2],[1,1],[2,4],[1,1]],[[5685,8043],[6,5]],[[5691,8048],[6,-19],[10,-2],[1,0],[4,0],[0,-1],[1,-3],[1,-1],[13,-17],[2,-7],[9,-6]],[[5738,7992],[0,-7],[-2,-4]],[[5730,7955],[-2,-3],[0,-4]],[[5714,7929],[0,-8]],[[5714,7921],[0,-1],[0,-1]],[[5714,7916],[1,-1],[-1,-2]],[[5712,7910],[-3,-13]],[[5709,7897],[0,-1],[1,-2],[3,2]],[[5713,7896],[-4,-7]],[[5656,7865],[-3,3],[-1,0]],[[5652,7868],[-1,3]],[[5651,7871],[0,1],[1,1],[0,1],[0,2],[0,3],[0,2],[-2,4],[-12,15]],[[5638,7900],[-6,-2]],[[5169,7594],[0,-1],[0,-1]],[[5169,7592],[0,-3]],[[5169,7589],[0,-1],[0,-2]],[[5179,7572],[1,-1]],[[5180,7570],[0,-1]],[[5180,7568],[0,0]],[[5178,7562],[-2,-7]],[[5165,7545],[-1,4],[-2,0]],[[5162,7554],[1,6]],[[5162,7562],[-1,4]],[[5158,7573],[0,4]],[[5691,8048],[-3,-3],[-3,-2]],[[5584,8021],[-2,13],[3,43],[9,14],[1,18],[7,19],[9,3],[13,10],[5,-11],[13,-15],[3,-19],[3,-4],[10,-6],[7,3],[12,15],[0,9],[-1,24],[-2,12],[7,7]],[[5741,8129],[4,3]],[[5751,8128],[7,-3],[6,1]],[[5764,8126],[0,-3],[0,-1],[0,-2],[0,-1],[0,-1],[3,-2],[6,-7]],[[5773,8109],[-1,-10]],[[5772,8099],[-3,-3],[-2,-17]],[[5767,8079],[1,-3],[2,2],[1,1],[1,-1],[3,-3],[0,-1]],[[5775,8074],[-1,-2],[0,-1],[0,-2],[3,-10]],[[5777,8059],[4,-4]],[[5781,8055],[0,-1]],[[5781,8054],[-1,-1],[0,-1],[0,-1],[2,-3]],[[5782,8048],[0,-1],[0,-3]],[[5782,8044],[0,-1],[0,-2],[1,-5],[0,-2]],[[5783,8034],[-1,-6]],[[5782,8028],[-1,-2]],[[8154,5588],[0,-3],[-1,-1],[0,4],[1,0]],[[3249,5292],[-2,2]],[[3247,5294],[2,4],[0,-6]],[[4949,6464],[1,-2],[1,-4]],[[4953,6445],[0,-2]],[[4952,6421],[0,-1],[0,-1],[-1,-2],[0,-2],[2,-3]],[[4958,6370],[-2,-9]],[[4970,6331],[1,-1],[-3,-6]],[[4965,6317],[-1,-9],[0,-3]],[[4964,6305],[1,1],[1,-1]],[[4930,6303],[-5,-3],[-5,-1]],[[4895,6250],[-2,-5]],[[4899,6229],[0,-4],[2,-6]],[[4758,5983],[-2,0],[-1,0]],[[4755,5983],[0,-4],[1,-6],[0,-5],[-1,-3],[0,-4],[0,-4],[1,-8]],[[4756,5949],[0,-3],[-1,-2]],[[4755,5944],[-2,-1],[-4,-1],[-11,0],[-9,-17],[-2,-1],[-2,0],[-3,3],[-1,2],[-6,-4],[-3,3],[-4,4],[-2,3],[-5,2],[-5,-1],[-3,-3],[-3,-2],[-3,-2],[-4,-2],[1,-7],[1,-3],[0,-4],[0,-4],[-2,-4],[-2,-4],[-2,-9],[-1,-3],[-2,-4],[-1,-6],[-1,-8],[-9,-5],[-4,-28],[-3,-38],[-2,-10],[-1,-7],[-1,-3],[-2,-5],[-1,-3],[-2,-3],[-3,-4],[-3,-4],[-2,-4],[-2,-3],[-2,-5],[-5,-23],[-1,-5],[-1,-2],[-13,-14],[-3,-7],[-4,-20],[0,-5],[-2,-18],[-2,-24],[-1,-22],[0,-10],[-2,-5],[-1,-4],[-4,-8],[0,-3],[-2,-3],[-1,-6],[-2,-4],[0,-2],[1,-5],[-1,-5],[-1,-6],[-2,-7],[-3,-4],[-3,-1],[-5,0],[-4,1],[-5,0],[-4,1],[-4,2],[-8,1],[-4,-2],[-11,0],[-4,-1],[-8,-3]],[[4527,5535],[1,12],[0,14],[2,11],[2,14],[4,10],[5,3],[2,14],[2,5],[2,23],[3,5],[1,16],[5,23],[5,20],[1,12],[4,5],[4,14],[5,9],[3,10],[4,5],[3,9],[2,17],[0,21],[2,17],[2,5],[2,19],[3,10],[1,15],[2,9],[3,3],[4,10],[7,4],[8,14],[4,12],[2,23],[3,11],[4,25],[3,5],[2,12],[4,4],[9,2],[5,3],[8,3],[1,3],[15,14],[4,14],[8,18],[13,16],[3,7],[3,10],[6,15],[2,12],[7,17],[4,21],[2,20],[-3,9],[-5,11],[2,7],[-1,26],[1,16],[-1,2],[4,17],[1,7],[8,21],[3,14],[-1,9],[1,16],[8,16],[3,6],[7,18],[3,10],[2,0],[6,10],[3,2],[17,15],[8,11],[3,3],[8,14],[7,28],[8,33],[2,17],[5,27],[3,20],[9,3],[6,8],[1,-6],[1,-9],[2,-10],[5,-12],[8,-12],[11,-7],[12,7],[5,-2],[3,5],[7,-7],[6,3],[7,7],[1,-4],[0,-7],[9,-6],[4,4],[6,-4]],[[5206,7137],[-1,-2],[-1,2]],[[5783,7260],[-1,2]],[[5782,7262],[0,0]],[[5782,7262],[0,3],[-1,2]],[[5781,7267],[1,5]],[[5782,7272],[0,1],[0,1]],[[5782,7274],[-1,7],[-1,5]],[[5780,7286],[1,3]],[[5781,7289],[0,1],[-1,1],[0,1],[1,0],[0,1]],[[5781,7293],[-1,1],[0,1],[0,4]],[[5780,7299],[0,1],[0,5]],[[5780,7305],[1,3],[0,2],[0,2],[1,7],[1,2],[0,1],[-1,1],[1,1],[0,2]],[[5783,7326],[1,3]],[[5784,7329],[0,4]],[[5784,7333],[-1,2]],[[5783,7335],[1,7]],[[5784,7342],[0,1],[0,1]],[[5784,7344],[0,2],[-2,7],[-1,3],[0,2],[-1,5]],[[5780,7363],[0,3]],[[5780,7366],[0,2],[-1,2],[-1,2],[-2,1]],[[5776,7373],[-2,3],[0,2]],[[5774,7378],[-1,0],[0,1],[-1,2],[-2,10],[-2,1],[-1,0],[0,1],[-1,3],[-1,1]],[[5765,7397],[1,3],[-1,0]],[[5765,7400],[0,4]],[[5765,7404],[-2,2],[-1,3]],[[5762,7409],[0,1]],[[5762,7410],[0,1],[-1,1],[-1,1],[0,1],[-2,4],[-1,2],[0,2]],[[5757,7422],[1,0],[-1,2]],[[5757,7424],[-1,5],[-1,5],[-4,12],[0,2],[-1,1],[0,1],[1,0],[0,1],[-1,1],[0,-1],[-1,1],[-1,0],[0,5],[-4,4],[-4,1],[-1,-1]],[[5739,7461],[0,1],[0,1],[2,2],[2,3],[2,2],[9,-2],[9,8],[7,-1],[5,-9],[4,-1],[4,-8],[2,2],[4,-6],[10,-3],[5,-13],[4,3],[4,-15],[-4,-16],[7,-13],[5,-2],[0,-15],[2,-5],[-1,-8],[7,-6],[3,-9],[-1,-15],[5,-11],[-6,-2],[-4,8],[-3,-6],[-4,5],[-7,-6],[-1,13],[-6,-6],[-1,-14],[2,-5],[-2,-14],[-5,-2],[0,-9],[-5,-5],[-3,-8],[1,-11],[-6,1],[-2,-2],[0,-2]],[[6342,3047],[0,-12],[-4,3],[0,9],[4,0]],[[6370,3130],[-2,-9],[5,-10],[2,-1],[2,-8],[-1,-9],[5,-9],[3,-10],[3,-11],[-1,-10],[1,-12],[2,-2],[0,-10],[3,-20],[1,-20],[0,-10],[1,-6],[0,-12],[0,-12],[2,-19],[2,-11],[3,-11],[1,-9],[-2,-20],[-2,-16],[-3,-10],[-2,-2],[-4,9],[-1,9],[0,8],[-2,4],[-1,10],[-4,-1],[-3,-8],[3,-25],[-1,-15],[4,-7],[0,-25],[-3,-11],[1,-11],[-4,-2],[-3,-11],[-3,-17],[2,-28],[0,-9],[-2,-19],[-2,-26],[-3,-17],[-1,-13],[-3,-16],[-3,-23],[-3,-22],[-1,-15],[-4,-22],[-4,-27],[-3,-31],[-7,-56],[-7,-40],[-1,-9],[-2,-30],[-3,-26],[-3,-24],[-1,-19],[-3,-13],[-4,-21],[0,-11],[-5,-30],[-5,-12],[-9,-8],[-7,1],[-4,-2],[-13,-15],[-3,-6],[-5,-6],[-10,-1],[-8,17],[-3,3],[-10,4],[-5,13],[-5,5],[0,10],[-2,6],[0,9],[-3,10],[-4,8],[-1,16],[0,22],[0,17],[3,5],[0,8],[-4,8],[-1,19],[-3,5],[-3,13],[-2,17],[0,12],[-2,12],[2,6],[-1,10],[2,19],[4,7],[0,19],[3,9],[4,0],[2,4],[3,24],[4,12],[2,16],[4,9],[2,17],[3,6],[1,10],[-3,10],[1,12],[2,6],[-1,8],[-6,26],[1,18],[-2,14],[-4,13],[0,16],[-1,19],[1,12],[-3,12],[0,10],[7,26],[1,9],[6,20],[-1,10],[1,5],[-1,8],[1,13],[9,0],[2,-2],[6,7],[2,9],[4,5],[2,-13],[2,4],[-1,6],[4,1],[5,12],[3,-2],[6,2],[3,6],[4,-17],[3,8],[-2,10],[0,4],[16,29],[2,2],[3,-9],[-3,-12],[7,4],[-4,16],[0,6],[4,6],[2,9],[0,6],[4,12],[2,-3],[0,-9],[-2,-9],[1,-8],[8,34],[-1,17],[3,11],[3,-2],[3,6],[0,5],[-3,6],[-2,16],[1,13],[4,6],[3,-6],[1,-11],[4,-2],[0,9],[3,9],[3,1],[1,5],[4,3],[3,10],[0,13],[3,11],[0,9],[-2,12],[0,5],[-3,8],[2,3],[3,-4],[1,10],[6,13],[2,15],[2,-11]],[[7042,4300],[0,-2],[-1,0],[1,4],[0,-2]],[[2590,5474],[-5,-18],[-2,1],[0,7],[2,8],[5,2]],[[1889,5757],[3,0],[5,-10],[0,-4],[-8,14]],[[1800,6014],[-4,2],[3,8],[1,-10]],[[1881,6095],[2,-15],[-2,-18],[-3,1],[-5,7],[2,7],[0,7],[2,9],[4,2]],[[1847,6117],[4,-11],[0,-5],[5,-1],[0,-12],[-5,3],[-6,17],[2,9]],[[2301,5861],[0,-17],[-5,-24],[-3,-15],[-6,-48],[-2,-36],[0,-20],[-1,-34],[1,-21],[-2,-12],[-2,-13],[3,-26],[0,-12],[4,-18],[9,-20],[-1,-10],[-4,1],[3,9],[-7,17],[-1,-12],[5,-16],[4,-25],[4,-18],[1,-12],[13,-35],[6,-20],[3,-24],[2,-16],[4,-7],[3,-11],[2,-1],[3,-24],[4,3],[6,-4],[8,0],[6,-11],[5,-2],[7,-24],[3,-3],[7,3],[14,12],[3,5],[4,1],[14,1],[2,1],[5,11],[8,4],[10,2],[3,-1],[-2,-11],[4,0],[5,-6],[4,0],[1,4],[5,5],[2,11],[-3,3],[-2,8],[7,9],[7,11],[5,15],[1,22],[1,7],[5,10],[0,11],[1,24],[-1,9],[1,15],[3,19],[7,12],[9,8],[18,6],[12,7],[3,5],[4,3],[4,-1],[5,4],[4,-1],[10,-6],[4,-4],[6,-1],[7,8],[2,-8],[3,-1],[0,-17],[2,-2],[-2,-11],[-1,-12],[-6,-17],[-4,-9],[-6,-21],[-1,-22],[-4,-13],[-3,-2],[2,-9],[6,0],[-3,-11],[1,-5],[-3,-22],[-1,-19],[-2,-6],[-1,-19],[-3,-7],[-2,9],[-4,4],[2,14],[-3,8],[-5,-23]],[[2481,5193],[1,-5]],[[2482,5188],[0,-1],[0,-1],[0,-2]],[[2482,5184],[1,-2],[0,-2]],[[2485,5181],[0,-2],[1,1]],[[2487,5177],[2,-1],[0,-5]],[[2489,5171],[-1,-2],[0,-1],[-1,0]],[[2487,5168],[1,-2]],[[2487,5165],[0,-6],[1,-1]],[[2487,5157],[1,-1]],[[2487,5153],[1,1]],[[2451,5149],[-12,-54]],[[2439,5061],[0,-2],[0,-3]],[[2438,5043],[-2,4],[-11,27],[-4,13],[-4,6],[-7,17],[-12,24],[-8,13],[2,5],[-5,3],[-2,7],[-3,-1],[-3,6],[-3,-8],[-7,1],[3,6],[-2,6],[-3,-5],[-2,10],[-6,-12],[5,-4],[-10,-4],[-5,-13],[-15,-10],[-7,-11],[-6,1],[-3,-3],[-8,6],[-5,5],[-4,7],[-3,2],[-14,4],[-9,13],[-1,3],[-9,5],[-3,3],[-6,17],[-2,-2],[-15,10],[-6,1],[-4,3],[-7,13],[-28,25],[-5,11],[-7,8],[-2,7],[-4,4],[-4,16],[-7,7],[-4,-6],[-11,10],[-4,1],[-8,9],[-9,6],[-4,4],[-2,12],[-4,8],[0,3],[-8,16],[-9,11],[-1,6],[-3,0],[-10,9],[-5,10],[-2,13],[-5,8],[-7,26],[-1,12],[-4,15],[3,6],[7,2],[3,9],[-4,9],[-4,0],[6,19],[2,2],[0,10],[-1,10],[2,8],[-6,11],[-6,25],[-1,22],[-2,18],[-2,9],[-7,14],[-5,16],[-6,13],[-2,12],[-8,17],[-3,15],[-3,10],[-10,16],[-5,10],[2,4],[-1,8],[-3,-4],[-3,3],[-2,7],[-5,4],[-1,13],[-4,3],[0,8],[2,9],[-3,4],[-3,-1],[-4,8],[-7,10],[-2,9],[-3,-3],[-6,3],[-2,8],[-7,11],[0,16],[6,17],[-1,17],[-5,13],[-3,4],[-4,-4],[-5,9],[-1,19],[-11,6],[-3,7],[-3,10],[-1,0],[-2,16],[1,16],[-6,7],[-2,-4],[-3,6],[-2,-2],[-6,9],[-6,23],[-6,6],[-2,9],[-4,10],[1,4],[-7,13],[-4,26],[-4,4],[1,8],[-3,9],[-5,21],[-2,1],[0,19],[-3,7],[0,10],[-4,8],[-2,10],[-2,10],[3,25],[-2,4],[-12,5],[-3,15],[-6,7],[-5,-7],[-3,0],[-10,13],[-2,6],[-5,3],[-2,-1],[1,-10],[-2,-9],[-1,-26],[2,-11],[3,-5],[1,-22],[2,-15],[-1,-17],[3,-16],[3,-4],[1,-9],[4,-1],[6,-12],[8,-14],[4,-11],[-1,-3],[5,-19],[6,-8],[2,-7],[2,-17],[7,-9],[-1,-7],[3,-6],[0,-24],[5,-15],[6,-6],[3,-14],[5,-17],[4,-5],[-2,-6],[4,-11],[-1,-7],[5,-14],[2,3],[-4,8],[0,15],[7,-15],[0,-8],[3,-4],[0,-9],[4,-23],[-2,-8],[2,-13],[2,-4],[1,-8],[5,-11],[3,-23],[4,-9],[3,-15],[-2,-9],[0,-9],[1,-14],[4,-11],[4,-2],[3,3],[-1,8],[3,1],[1,-7],[5,-6],[1,-9],[4,2],[0,-8],[4,-11],[0,-11],[6,-7],[1,-7],[0,-11],[-3,-14],[-5,-5],[-5,-12],[-1,0],[-4,11],[-2,21],[-4,16],[-8,10],[-13,30],[-11,16],[-5,11],[-1,8],[-4,-1],[-4,15],[-4,-1],[-1,23],[2,12],[0,27],[0,6],[-4,20],[-2,4],[-2,9],[-4,4],[-7,10],[-9,16],[-2,12],[-4,-1],[-2,4],[-4,-1],[-4,-4],[-2,5],[-3,11],[-5,2],[-3,9],[-5,3],[-5,6],[-1,12],[-6,9],[-4,12],[-4,2],[-1,7],[4,1],[8,-4],[3,0],[5,7],[1,-10],[4,-5],[5,-1],[-1,7],[-3,-3],[-2,9],[4,14],[-2,7],[0,9],[2,15],[-3,13],[-3,1],[-4,15],[-4,4],[-2,13],[-3,1],[-7,19],[-6,4],[-3,7],[-5,6],[-6,10],[-1,13],[-2,2],[1,9],[-2,18],[-4,5],[-2,5],[1,11],[-1,13],[-3,3],[-2,7],[-3,0],[1,14],[-6,21],[-4,8],[1,22],[-6,9],[-3,19],[-2,2],[-3,18]],[[1746,6332],[37,7],[30,6],[-3,-15],[24,-19],[23,-18],[23,-19],[35,-28],[1,0],[29,0],[20,0],[29,0],[0,32],[29,0],[18,0],[4,-4],[2,-10],[4,-10],[4,-3],[7,-16],[5,-8],[1,-5],[5,-10],[4,-3],[6,-10],[3,-9],[1,-10],[5,-16],[0,-18],[3,-11],[1,-8],[5,-10],[3,0],[5,-14],[8,-4],[3,-8],[4,-2],[1,-4],[5,-6],[5,-1],[4,13],[3,4],[0,8],[3,18],[2,11],[8,3],[3,8],[5,-7],[4,1],[10,-3],[6,0],[1,-7],[4,-4],[2,-8],[3,-3],[1,-5],[5,-9],[4,-11],[2,-14],[3,-8],[0,-7],[3,-8],[3,-22],[3,-6],[3,-4],[2,-9],[3,-9],[1,-7],[4,-10],[6,-7],[1,-10],[-1,-6],[2,-10],[-1,-11],[6,-16],[2,-21],[2,-9],[8,-3],[5,-9],[1,1],[6,-5],[2,-6],[4,-3],[10,0],[3,-2],[8,-13],[4,8],[3,0]],[[9751,4511],[4,-5],[0,-1],[-4,5],[0,1]],[[5621,6949],[-2,1]],[[5598,7029],[2,0],[1,-1],[1,0],[0,2],[1,0],[2,3],[4,3],[4,-2],[4,3]],[[5617,7037],[3,-3]],[[5117,5371],[0,-70],[0,-84],[-1,-13],[0,-28],[-4,-9],[-2,-15],[0,-7],[-2,-7],[-1,-12],[-5,-6],[-5,-10],[0,-10],[-12,5],[-2,-6],[-26,-3],[-20,-1],[-2,-2],[-8,-19],[-9,-4],[-4,4],[-5,-2],[-3,2],[0,-6]],[[4826,4738],[1,0],[1,3]],[[4826,4754],[0,2],[0,2]],[[4827,4761],[-1,2],[-1,4]],[[4825,4767],[-2,-2],[-2,0]],[[4683,4888],[0,5],[-2,13],[2,5],[-2,25],[-2,3],[-1,11],[-1,7],[-4,2],[-2,-6],[-2,5],[0,6],[-3,6],[-2,11],[2,4],[1,11],[-2,8],[1,10],[-3,14],[-3,3],[0,9],[2,7],[-3,11]],[[4659,5058],[1,-1]],[[4660,5057],[2,2],[5,-1],[4,9]],[[4671,5067],[0,7]],[[4671,5074],[0,1],[0,1],[0,2],[-1,-1],[0,1]],[[4670,5078],[0,2],[0,3],[0,4]],[[4670,5087],[4,26],[2,-1],[3,5],[4,0],[2,-9],[1,-1],[7,-13],[3,-12],[5,23],[12,0],[3,-2]],[[4716,5103],[2,-2],[2,-1]],[[4720,5100],[3,2],[3,-1],[4,3],[1,1],[7,1]],[[4738,5106],[2,4]],[[4740,5110],[5,0],[4,0],[3,0],[16,0],[4,0],[5,0],[14,0],[9,0],[5,0],[5,0],[4,0],[5,0],[4,0],[7,0],[16,0],[3,29],[1,20],[1,7],[0,2],[0,1],[-1,1],[-1,2],[-1,2],[-1,2],[-3,6],[-1,2],[-3,87],[-1,13],[0,6],[0,7],[-1,7],[-1,33],[-3,69],[-2,45],[-1,18],[0,7],[0,5],[-1,18]],[[4830,5499],[-3,65]],[[4827,5564],[-5,95],[-3,76],[-1,22],[-1,17],[0,12],[-1,5],[7,0],[6,0],[6,0],[6,0],[6,0],[6,0],[6,0],[7,0]],[[5404,6570],[-1,-3],[-5,5],[4,4],[2,-6]],[[7729,4824],[-2,2],[1,11],[2,3],[-1,-16]],[[7737,4844],[0,-12],[-3,-4],[-2,7],[0,9],[5,0]],[[7733,4900],[1,-7],[-2,-8],[-2,-2],[1,13],[2,4]],[[7622,5134],[-1,12],[3,4],[3,12],[2,-4],[-3,-11],[-2,-3],[-2,-10]],[[7710,5162],[-4,6],[0,10],[2,5],[2,-2],[0,-19]],[[7602,5352],[2,-8],[-3,-6],[-5,12],[4,5],[2,-3]],[[7605,5396],[2,0],[3,-5],[-1,-4],[-3,-6],[-2,2],[-4,13],[2,5],[3,-5]],[[7809,5544],[0,-2]],[[7791,5497],[1,-6]],[[7783,5483],[0,-1],[0,-1],[-1,-2]],[[7780,5461],[0,-5]],[[7780,5456],[-1,2],[-1,2],[-1,1],[-2,4],[-3,-2],[-1,-7],[-4,-1],[-4,3],[1,-11],[-3,-7],[-4,-3],[-4,4],[-3,-5],[-1,-14],[-3,-7],[-2,4],[-8,-9],[-8,2],[-6,6],[0,-11],[-5,-6],[-2,-11],[1,-7],[0,-14],[-4,-13],[2,-5],[1,-20],[-9,-6],[0,-12],[5,-6],[4,-20],[-2,-6],[2,-15],[6,-12],[3,-15],[4,-7],[2,-11],[4,-2],[2,-12],[-2,-9],[5,-19],[1,-11],[3,5],[4,-1],[-3,-18],[-4,0],[-2,-10],[-1,-17],[0,-27],[-4,0],[-1,-7],[-3,2],[-3,-12],[2,-23],[5,-14],[4,-16],[5,-13],[6,-10],[4,-14],[1,-11],[1,-21],[1,-14],[-3,-4],[0,-10],[1,-3],[2,-18],[5,-11],[0,-9],[2,-15],[0,-9],[3,-11],[0,-6],[2,-5],[-3,-14],[-3,-2],[0,-7],[-5,-22],[-1,-6],[-6,-11],[-1,-9],[-1,-1],[-4,-9],[0,-12],[-1,-12]],[[7742,4741],[-4,-23],[-2,-1],[-1,13],[1,12],[-2,25],[3,4],[2,10],[2,1],[0,12],[2,12],[-2,9],[1,21],[-4,4],[3,16],[-2,9],[-2,14],[3,3],[-2,8],[1,9],[2,11],[-3,23],[-1,11],[-2,7],[-2,14],[-5,17],[-4,-1],[0,13],[-1,9],[1,9],[-3,14],[0,8],[-5,32],[0,21],[-2,12],[2,4],[-2,15],[0,17],[-4,12],[2,19],[-1,11],[1,5],[-3,3],[-4,-2],[-4,13],[-1,9],[-1,7],[0,6],[-3,9],[0,9],[-5,2],[-1,-5],[1,-14],[-3,-20],[-5,-16],[-8,-6],[-1,-5],[-6,-4],[-3,-6],[-6,-6],[-2,-14],[-4,-10],[-4,-6],[-6,4],[-3,5],[-3,-6],[-3,1],[0,13],[-4,-7],[-1,0],[-3,7],[2,6],[1,12],[-1,5],[-3,1],[-1,-7],[-4,-14],[-3,-2],[-1,13],[2,28],[2,-1],[2,18],[-1,8],[2,4],[0,7],[3,19],[0,17],[1,5],[-3,12],[-1,14],[1,8],[-3,19],[-3,9],[-2,19],[-2,7],[-2,0],[0,14],[-3,6],[1,-14],[-2,-5],[-5,8],[-7,25],[4,6],[1,-7],[4,-5],[3,5],[2,6],[0,6],[-1,-1],[-6,12],[-1,7],[-3,4],[3,10],[-4,0],[-4,4],[-1,8],[-6,-6],[-3,0],[-2,6],[-6,8],[4,8],[-2,12],[-5,-4],[-3,8],[-3,10],[-2,2],[-3,26]],[[5537,7001],[-5,6],[-1,8],[-6,13],[-4,3],[-9,15],[0,6]],[[5512,7052],[1,1],[0,1]],[[5514,7056],[1,1],[-1,4]],[[5512,7067],[0,16]],[[5512,7083],[5,2]],[[5517,7085],[0,5],[0,4]],[[5533,7122],[-1,-4]],[[5532,7118],[1,-3],[4,-3],[3,-8],[1,-1],[0,-2],[3,-6],[6,-5],[1,0],[2,2],[1,-3],[2,-2],[2,-5],[1,-1],[1,0],[4,-4],[1,-2],[0,-1],[0,-3]],[[7791,7710],[16,-13],[5,-3]],[[7812,7694],[1,-1],[1,-2],[2,-1],[2,1],[16,-6],[1,-1],[3,-3]],[[7838,7681],[0,-2],[0,-1],[-2,-3]],[[7836,7675],[0,-1],[0,-1],[1,-1],[0,-5],[0,-3],[2,-8],[0,-5]],[[7839,7651],[-1,-6]],[[7838,7645],[1,-2],[0,-2],[2,-2],[1,-2],[0,-12],[4,-2],[1,-1],[2,-7],[1,-1],[4,-1],[6,-6],[6,0],[1,-6],[10,-6],[2,0],[3,4],[9,-3],[8,11],[2,1],[4,0],[2,3],[3,0],[4,3],[3,-1],[2,1],[1,0],[3,4],[2,2],[9,-4],[4,0],[2,-1],[1,0],[2,-1],[2,-2]],[[7945,7612],[0,-2]],[[7945,7610],[0,-1]],[[7945,7609],[5,-3],[12,3]],[[7962,7609],[9,-9]],[[7971,7600],[0,-4]],[[7971,7596],[2,-4]],[[7973,7592],[0,-1],[0,-1]],[[7973,7590],[3,-3]],[[7976,7587],[2,-2],[14,-1],[1,-2],[1,0],[1,0]],[[7995,7582],[3,-1]],[[7998,7581],[0,-1],[0,-2],[-1,-3],[1,-8],[2,-11],[6,-5],[8,-14],[11,2],[3,-2],[1,1],[2,1],[4,-1],[1,0],[0,-1],[2,-1],[1,0],[1,-1]],[[8040,7535],[0,-1],[0,-1],[1,-1]],[[8041,7532],[6,1],[2,-1],[1,-2],[10,-5],[5,6],[7,-7],[3,0],[3,1],[4,4],[10,11],[4,-1],[5,3],[10,1],[11,9],[9,-3],[3,3],[2,3],[1,0]],[[8137,7555],[2,1]],[[8139,7556],[1,1],[0,1],[0,4],[4,11],[10,14],[8,4],[3,6],[4,5],[2,2],[3,2],[5,-4],[8,1],[7,-7],[1,-5],[4,-7],[5,-6],[6,0],[3,-1],[1,0],[1,0],[8,8],[4,2],[3,-2],[7,-5],[3,-7]],[[8245,7433],[3,-3],[3,-1]],[[8329,7347],[-1,-1],[0,-1]],[[8328,7345],[-4,-4]],[[8267,7337],[-1,1],[-1,3]],[[8260,7340],[-2,-16]],[[8227,7292],[0,-2],[1,-2],[0,-2],[0,-2]],[[8097,7196],[-1,-5]],[[8096,7191],[-1,-2],[-1,-4]],[[8099,7121],[-5,-3],[-2,-3]],[[8081,7104],[-4,-10],[-3,-7]],[[8066,7067],[-7,-6],[-1,-2],[-1,0],[0,-1]],[[8041,7045],[-1,-1]],[[7679,7064],[-3,-1],[0,1],[0,1]],[[7648,7170],[1,6]],[[7627,7186],[-5,5],[-1,0],[-1,1]],[[7619,7193],[-1,4]],[[7521,7251],[-1,4],[0,2]],[[7512,7394],[1,1]],[[7470,7449],[-4,1]],[[7455,7470],[-2,5]],[[7438,7499],[0,1],[0,2],[-1,2],[-1,0]],[[7439,7526],[0,-1],[1,0],[3,1]],[[7443,7526],[2,3],[3,4],[-1,6],[1,6]],[[7448,7545],[1,1]],[[7449,7546],[5,2]],[[7454,7548],[5,-1],[2,2]],[[7461,7549],[2,-3],[1,0],[4,-1],[-1,3],[0,3],[1,1],[0,1],[1,-1],[0,-1],[0,-1],[1,-3],[6,3]],[[7476,7550],[1,3],[0,2],[-1,2]],[[7476,7557],[2,2]],[[7478,7559],[6,1]],[[7484,7560],[1,0],[1,1],[3,2],[1,2]],[[7490,7565],[1,2],[0,1]],[[7491,7568],[-1,0],[-1,2],[0,4],[0,1],[0,3],[0,1]],[[7489,7579],[1,1]],[[7490,7580],[1,1],[5,0],[2,2],[3,9],[3,1],[1,1],[4,4],[2,1],[1,2],[6,0],[9,15],[4,0],[1,1],[2,2],[5,0],[9,16],[11,0],[3,2],[1,5],[0,4],[1,1],[0,1],[1,0],[1,-1],[0,-3],[1,-2],[6,-8],[2,1],[0,1],[1,1],[0,4],[1,1],[2,1],[1,-1],[2,-1],[0,-2],[0,-4],[0,-2],[1,-2],[0,-1],[3,-1],[8,0],[3,-1],[20,-2],[2,-11],[1,-8],[0,-4],[0,-1],[1,-2],[0,-1],[3,-2],[4,-10],[8,2],[1,-1],[1,-1],[2,-5],[8,0]],[[7648,7582],[3,-4]],[[7651,7578],[1,-1],[1,1],[1,3],[4,2],[4,4],[1,-2],[1,-3],[3,3],[1,0],[4,-3],[4,-5]],[[7676,7577],[6,-1]],[[7682,7576],[0,-1],[1,2],[2,2],[8,-2],[1,-1],[1,-3],[0,-1]],[[7695,7572],[3,-4]],[[7698,7568],[1,-1],[2,-1],[1,0],[3,2],[2,2],[2,3],[1,4],[-1,2],[0,1],[3,1],[2,2],[3,-2],[7,9],[5,16]],[[7729,7606],[0,8],[1,9]],[[7730,7623],[-5,4]],[[7725,7627],[-2,2],[0,1],[-1,2],[-1,5],[-1,4],[0,2],[1,3],[-1,2],[-1,2],[-1,1],[-1,2],[-1,2],[0,2],[2,7],[0,2],[1,3],[1,4],[-1,6]],[[7719,7679],[1,2],[1,3]],[[7721,7684],[1,5],[1,1],[0,1],[2,1]],[[7725,7692],[3,-1]],[[7728,7691],[0,2],[0,1],[0,5]],[[7728,7699],[1,5]],[[7729,7704],[2,5],[2,2],[6,2],[2,5],[4,14],[0,5],[1,1],[1,0],[1,-1]],[[7748,7737],[0,-2],[1,-2]],[[7749,7733],[9,-9]],[[7758,7724],[10,-3],[9,-11],[14,0]],[[9049,5086],[-3,3],[3,5],[0,-8]],[[5913,2072],[-15,-1],[-4,1],[-2,0],[-1,0]],[[5891,2072],[1,18],[-2,13],[0,2],[-1,7],[1,8],[1,2],[-1,7],[-3,6]],[[5887,2135],[-1,13],[2,9],[-1,13],[1,7],[0,68],[-3,19],[-1,16],[-3,7],[-3,18],[-3,13],[0,18],[-7,54],[1,1]],[[5869,2391],[4,7],[14,39],[13,33],[1,-2],[0,1],[-3,12],[2,7],[1,5],[1,5],[0,8],[-1,8],[0,3],[1,3],[1,2],[1,1],[1,-1],[1,1]],[[5906,2523],[6,19]],[[5912,2542],[0,1],[0,1],[0,2],[0,3],[1,6],[3,13],[1,10],[-4,7],[-2,0],[0,3],[0,1],[0,1],[0,1],[0,1],[0,5],[0,2],[0,1],[-1,0],[0,1],[0,5],[0,2],[1,3],[0,2],[0,1],[0,3],[1,9],[0,3],[0,1],[-1,0],[0,1],[0,2],[-3,1],[0,12],[2,4],[3,0],[0,1],[1,1],[0,2],[0,5],[-1,9],[0,1],[1,1],[2,2],[0,1],[0,1],[0,2],[0,1],[0,2],[1,1],[0,2],[-2,8],[-1,13]],[[5914,2703],[1,9],[-1,3]],[[5914,2715],[1,3],[0,1],[0,1],[1,1],[0,3],[0,6],[1,2],[-1,4],[-1,8],[2,8],[-2,5],[0,5],[0,4],[-4,17],[3,8],[1,8],[0,2],[-1,-1],[-1,-1],[-5,2],[-1,6],[-8,8],[-3,2],[-2,1],[-5,0],[-3,1],[-1,2],[0,2],[-1,2]],[[5884,2825],[-4,10]],[[5880,2835],[-5,1]],[[5875,2836],[-3,2]],[[5872,2838],[0,1],[-1,0]],[[5871,2839],[0,1],[0,1],[-1,1],[-1,5],[-1,1],[-3,2],[-1,0],[-1,-1],[0,-1]],[[5863,2848],[-1,0],[0,1]],[[5862,2849],[-2,-4]],[[5860,2845],[-3,5],[-8,0],[-2,0],[-3,0],[0,5],[0,8],[0,13]],[[5844,2876],[0,3],[0,7]],[[5844,2886],[-1,9]],[[5843,2895],[-1,5],[-1,2]],[[5841,2902],[-1,3],[-1,9],[0,3],[0,3],[0,2],[0,1],[3,1],[2,3],[2,3],[9,8],[8,4],[2,2],[4,2],[3,2],[7,8],[16,13],[14,12],[5,4],[3,4]],[[5917,2989],[5,3]],[[5922,2992],[2,-3],[0,-7],[4,-16],[5,-10],[5,-1],[15,11],[5,-14],[0,-9],[2,-20],[-1,-6],[1,-15],[-5,-15],[0,-12],[-4,-10],[-1,-7],[5,-11],[0,-11],[1,-7],[2,-1],[4,-13],[2,-3],[8,-21],[2,0],[1,-10],[-2,-5],[1,-7],[6,2],[-1,10],[0,19],[-3,5],[-1,6],[3,4],[1,15],[3,10],[9,2],[3,7],[1,43],[-2,16],[4,22],[-1,0],[-1,15],[-9,29],[-2,10],[-10,31],[-5,12],[-7,3],[-3,12],[0,12],[-1,34],[-4,35],[0,6],[6,20],[2,19],[9,-1]],[[5971,3167],[19,0],[1,6],[4,6],[3,-2],[6,-10],[1,-9],[8,2],[2,-4],[5,5],[2,6],[6,-1],[5,-7],[6,-2],[10,12],[3,17],[5,4],[5,-1],[3,-6],[4,-4],[4,10],[3,1],[4,7],[6,2],[5,-2],[5,12],[8,4],[7,9],[12,24]],[[6123,3246],[2,-2],[2,-22],[-3,-10],[2,-9],[-1,-8],[-4,-11],[3,-5],[-2,-16],[3,-26],[-1,-18],[1,-10],[-1,-7],[4,-19],[-2,-5],[1,-10],[-1,-10],[0,-19],[-1,-11],[1,-10],[3,-27],[-2,-8],[4,-9],[1,-10],[2,-4],[-1,-11],[1,-13],[-5,-13],[1,-7],[-5,-3],[2,-6],[2,-2],[-3,-20],[-4,-8],[-1,-7],[-6,-14],[-2,-11],[-3,-11],[-5,-4],[0,-7],[-3,-11],[-14,-21],[-3,-12],[-6,-4],[-8,-4],[-15,-16],[-4,-2],[-15,-22],[-4,-6],[-3,-9],[-6,-23],[-7,-18],[-2,-4],[-4,-14],[0,-6],[-3,-1],[-2,-7],[-3,-1],[-1,7],[-3,-9],[-9,-15],[-2,-10],[-7,-18],[-6,-13],[-7,-11],[-3,-2],[0,-18],[-2,-15],[1,-15],[4,-8],[3,-5],[1,-6],[3,-11],[-2,-12],[3,-23],[3,-13],[2,-32],[-1,-19],[2,2],[1,11],[2,2],[2,-19],[-2,-11],[1,-25],[2,-2],[-3,-17],[0,-10],[-2,-12],[0,-26],[4,-1],[-2,-18],[-5,-19],[-5,-16],[-13,-16],[-5,-2],[-21,-19],[-7,-7],[-9,-11],[-7,-13],[-3,-10],[-3,-15],[-2,-5],[2,-16],[5,-2],[2,-4],[-1,-41]],[[4740,5110],[0,14],[-3,-10],[0,-4],[1,-4]],[[4720,5100],[-4,3]],[[4670,5087],[0,-9]],[[4671,5074],[0,-3],[0,-2],[0,-2]],[[4660,5057],[-4,6]],[[4656,5063],[-3,11],[-4,7],[-2,0],[-5,9],[-3,21],[-3,-1],[-1,7],[-1,1],[0,1],[-1,0],[-1,0],[-2,21],[-2,5],[0,2],[-1,3],[-2,7],[-5,-3],[-4,1],[-4,8],[-1,7],[-1,1],[-3,7],[-1,3],[-2,4],[-3,7],[-2,1],[-2,-2]],[[4597,5191],[-12,1]],[[4585,5192],[-1,4],[-5,-8],[-10,-1],[-1,-4],[-2,0],[-1,-2],[-1,-1],[-2,2],[-2,1],[-6,-2],[-3,5],[-5,-6],[-1,-16],[-1,-3],[-1,0],[-1,-3],[0,-4],[-1,-7]],[[4541,5147],[-1,-3],[0,21],[2,16],[0,11],[4,22],[4,23],[4,29],[0,21],[-1,37],[-2,11],[-2,25],[-2,11],[-5,10],[0,8],[3,2],[2,8],[-3,3],[5,16],[-2,9],[2,8],[-1,8],[2,5],[-3,9],[-3,17],[-2,7],[-2,-7],[-3,7],[-3,14],[-5,21],[-2,-9],[0,-7],[-2,-4],[1,11],[1,8]],[[4527,5515],[1,7],[0,6],[0,1],[20,0],[16,0],[9,0],[10,0],[9,0],[10,0],[8,0],[14,0],[9,0],[1,0],[4,0],[0,11],[0,6],[-1,30],[-1,36],[-2,14],[0,4],[0,5],[1,5],[3,10],[11,18],[7,3],[6,7],[4,6]],[[4666,5684],[0,81],[0,55],[0,43]],[[4666,5863],[3,0],[2,0],[6,0]],[[4677,5863],[11,0],[20,0],[28,0],[11,0],[5,0]],[[4752,5863],[3,0],[3,0],[0,1],[0,92]],[[4827,5564],[2,-44],[1,-21]],[[3273,5199],[-2,-1],[1,7],[1,-6]],[[6602,2556],[3,-9],[-1,-7],[-3,-12],[-4,-2],[-4,6],[0,12],[3,9],[1,8],[4,2],[1,-7]],[[5922,2992],[-1,2],[-1,4]],[[5920,2998],[0,1],[0,-1],[-1,-2],[-2,-2]],[[5917,2994],[0,-4],[-1,0],[-1,3]],[[5915,2993],[0,3],[0,1],[-3,10],[-4,17],[5,9],[1,11],[1,5]],[[5915,3049],[1,1],[0,1]],[[5916,3051],[-1,6]],[[5915,3057],[1,16],[-2,9],[3,11],[0,2],[1,0],[0,-1],[0,-1],[1,1]],[[5919,3094],[0,1]],[[5919,3095],[1,0],[0,-1],[1,-1],[0,-1],[0,2],[1,0],[0,1],[1,3],[0,1],[3,1]],[[5926,3100],[3,7],[1,2],[0,1]],[[5930,3110],[1,1],[0,2],[-1,0],[-1,1],[-4,1]],[[5925,3115],[-1,8],[-1,4]],[[5923,3127],[0,2],[0,3],[1,6],[1,6],[-1,21],[-2,3],[0,11],[5,18],[-2,9],[-1,9]],[[5924,3215],[-1,1],[0,-1]],[[5923,3215],[0,2]],[[5923,3217],[0,1],[0,1],[1,-1],[0,1],[1,3],[3,0],[1,2],[1,1],[0,1],[1,3],[1,4],[2,4],[1,2],[0,2],[0,2]],[[5935,3243],[-2,5]],[[5933,3248],[-1,3],[-1,5],[0,2],[0,3],[0,3],[-6,15],[1,9],[-1,5],[-1,2]],[[5924,3295],[-1,3],[0,1],[-1,1]],[[5922,3300],[0,1],[0,1],[0,1],[0,1],[-1,5],[-2,-3]],[[5919,3306],[-2,2],[-1,-1]],[[5916,3307],[-1,2],[1,5],[0,2],[-2,7]],[[5914,3323],[2,1],[5,-9],[3,2],[3,-8],[9,1],[4,-6],[3,0],[-1,9],[2,5],[3,-4],[5,-13],[5,-17],[3,-25],[0,-17],[3,-15],[-1,-12],[-2,-8],[1,-7],[3,-6],[1,-10],[3,-2],[3,-15]],[[8094,4169],[-3,5],[0,18],[2,0],[1,-23]],[[8269,4297],[2,6],[3,-7]],[[7786,4389],[-1,-13],[-3,0],[0,9],[4,4]],[[7773,4459],[-1,-8],[-4,8],[5,0]],[[7835,4447],[6,-5],[2,-4],[3,-17],[11,-23],[2,-2],[5,-12],[9,-42],[1,-33],[-1,-11],[-2,-5],[1,-10],[-2,-15],[2,-12],[2,-6],[-2,-11],[1,-11],[-1,-18],[1,-7],[5,-13],[4,-4],[2,-11],[3,-9],[0,-11],[4,-17],[4,-23],[1,-13],[-2,-8],[-3,3],[-1,9],[-3,-6],[-3,4],[-5,-3],[-5,-11],[-3,18],[-10,13],[-2,2],[-4,8],[-2,-1],[-7,18],[-8,9],[-6,13],[-3,1],[-2,12],[-7,6],[-7,18],[2,6],[-2,20],[-5,14],[-2,11],[-9,17],[0,9],[2,7],[-4,5],[-2,12],[2,15],[-2,23],[-3,4],[-3,13],[1,3],[1,12],[-1,6],[-1,21],[0,10],[0,14],[-3,15],[-2,5],[-1,11]],[[7781,4460],[1,18],[3,0],[3,-12],[7,-5],[2,3],[2,-6],[1,-11],[7,-1],[0,-11],[0,-12],[-3,-10],[4,-11],[3,5],[1,6],[8,9],[3,-9],[4,-3],[3,8],[1,11],[3,6],[1,12]],[[8045,4147],[0,-10],[2,-7],[5,-6],[1,-5],[13,1],[4,-8],[5,-3],[3,1],[4,-4],[3,19],[3,22],[0,5],[0,17],[5,-3],[2,2],[-1,8],[1,14],[6,12],[10,3],[26,19],[3,9],[6,15],[4,19],[9,18],[5,20],[2,23]],[[8193,4349],[1,-5]],[[8198,4350],[1,3],[5,-3],[5,12],[0,10],[-5,8],[1,7],[4,8],[3,0],[5,2],[2,13],[4,7],[0,6],[4,21],[4,12],[4,8],[4,16],[1,11],[2,10],[3,-3],[0,-11],[-2,-14],[1,-3],[4,9],[3,9],[-1,6],[3,6],[3,-3],[0,-8],[2,-15],[3,-6],[2,4],[4,-6],[3,-10],[-1,-9],[-3,-6],[2,-7],[-1,-9],[7,0],[3,8],[3,-14],[-1,-4],[-4,0],[1,-9],[4,0],[2,8],[2,2],[4,-2],[5,-8],[4,-10],[7,-9],[3,-1],[3,2],[2,-5],[0,-12],[-3,-7],[-13,-11],[-5,-1],[-4,7],[-4,-5],[-2,-6],[2,-9],[3,-7],[8,-10],[1,-5],[-3,-6],[-11,-5],[-4,-4],[-3,1],[-6,13],[-2,-4],[1,-7],[-2,-9]],[[8256,4515],[-5,-6],[0,11],[3,5],[3,-3],[-1,-7]],[[5649,2732],[23,12],[5,0],[6,-4],[2,3],[8,-5],[8,-17]],[[5554,2222],[1,-86]],[[5555,2136],[0,-68],[0,-44],[0,-28],[0,-20]],[[5555,1976],[0,-15]],[[5555,1961],[-1,-3],[-4,-3],[-1,-1],[-1,0],[-2,-2],[-3,-1],[-2,-11],[-2,-2],[-2,-2],[-1,0],[-1,1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-2],[1,-4],[0,-1],[-1,0],[-1,-2],[-1,-2],[-1,-1],[-1,0],[-1,1],[0,1],[-2,0],[0,1],[-1,3],[0,1],[-6,2],[-5,-2]],[[5515,1927],[-2,-2],[0,1]],[[5513,1926],[-1,-1],[-1,0],[0,-1],[-7,0],[-7,9],[-8,2],[-1,4],[0,1],[-4,-2],[-1,0]],[[5483,1938],[0,8]],[[5483,1946],[0,2],[-1,1],[0,1],[0,1],[-1,3]],[[5481,1954],[0,2]],[[5481,1956],[1,2],[1,1],[0,1],[0,2],[0,2],[0,1],[-1,1],[0,1],[0,2],[0,1]],[[5482,1970],[-1,1],[0,1]],[[5481,1972],[-4,2],[0,6],[0,2],[-1,0],[-1,1],[-1,3],[-5,-3],[-1,-6],[0,-1],[0,1],[-1,0],[0,-1],[1,-2]],[[5468,1974],[-1,0],[-1,-1]],[[5466,1973],[1,-1],[0,-1],[0,-1],[0,-1],[-1,1],[-1,0],[0,-2],[0,-1],[0,-1],[1,-2],[0,-2]],[[5466,1962],[0,-1],[-1,-4]],[[5465,1957],[-2,-4]],[[5463,1953],[-2,-2],[-2,-2],[-3,-4],[-7,15],[-4,10],[-4,6],[-6,16],[-1,9],[-3,6],[0,8],[-7,22],[-1,26],[-2,3],[-3,16],[3,7],[-1,10],[-5,9],[1,20],[-4,21],[1,14],[-2,22],[1,14],[-2,19],[-5,17],[0,9],[-3,20],[-1,11],[1,6],[0,25],[-2,12],[2,7],[-2,25],[3,3],[-1,27],[-3,19],[-7,24],[-5,12],[0,5],[-3,18],[-7,22],[-6,24],[-1,13],[-2,11],[-1,15],[-2,9],[-2,3],[-2,12],[-9,38],[-3,22],[-3,8],[-1,6],[-4,15],[-7,14],[-3,20],[-2,6],[-2,13],[-2,30],[1,20],[0,1],[1,0]],[[5374,2776],[1,-7]],[[5375,2769],[2,-3],[3,-5]],[[9665,2464],[1,-5],[3,1],[0,-12],[-4,-3],[-3,10],[-1,9],[4,0]],[[9646,2512],[0,-14],[3,-3],[1,-6],[0,-9],[-3,-1],[-2,6],[-3,1],[-2,5],[3,15],[3,6]],[[9555,2557],[6,-15],[2,4],[5,-5],[3,-6],[4,-6],[3,-8],[6,-11],[4,-2],[2,-8],[4,-5],[0,-8],[5,-10],[1,-5],[3,-3],[9,-12],[4,-9],[6,-8],[4,-12],[6,-10],[4,-4],[3,-11],[-1,-6],[-3,-2],[-3,-4],[-4,8],[-5,0],[-9,17],[-2,10],[-2,-4],[-5,7],[-2,9],[-2,-2],[-11,14],[-4,13],[-6,8],[-3,14],[-2,2],[-2,8],[-4,4],[-4,9],[-2,13],[-3,4],[-2,16],[-2,0],[-1,16]],[[5416,5648],[5,-72],[0,-35],[3,-7],[9,-33],[-2,-11],[12,-30],[0,-4],[-6,-30],[-3,-68],[-1,-50],[-4,-96],[0,-3],[-12,-32],[-18,-49],[-15,-52],[-2,-11],[0,-11],[-3,-5],[-1,-9],[-4,-3],[-1,-7],[1,-9],[1,-17],[2,-14],[0,-4],[0,-2],[0,-3]],[[5377,4981],[-6,1],[-4,-12],[-5,0],[-5,-4],[-5,-15],[-4,-3],[-2,-13],[-6,2],[-2,3],[-4,-1],[-5,9],[-12,9],[-13,0],[-8,1],[-14,-8],[-7,-9],[-8,-23],[-10,-1],[-9,3],[-7,5],[-4,10],[-4,1],[-4,10],[-5,7],[-7,2],[-2,-1],[-10,-15],[-6,0],[-3,-8],[-5,0],[-3,9],[-3,14],[-9,22],[-3,3],[-3,-2],[0,1]],[[5170,4978],[-16,15]],[[5154,4993],[-1,1],[-4,-2],[-3,-7],[-10,-2],[-2,3],[-9,-5],[-3,-4],[-5,-11],[-3,-1],[0,-18],[-1,-17],[-4,-17]],[[5109,4913],[-2,-5],[-6,-11]],[[5101,4897],[0,-1],[0,-18],[-1,-9],[0,-3],[1,-6],[0,-2],[-1,-2],[0,-3],[0,-1],[0,-4],[1,-4],[0,-1],[0,-1],[0,-2],[0,-1],[-2,-2]],[[9665,1916],[0,-3],[-1,-1],[0,5],[1,-1]],[[5377,4981],[13,-45]],[[5406,4868],[0,-5],[-1,-2]],[[5405,4861],[1,-4]],[[5405,4843],[-1,-4]],[[5360,4678],[-3,-7]],[[5338,4580],[0,-10]],[[5328,4505],[-6,-10]],[[5259,4450],[-2,-7]],[[5257,4443],[-4,-8],[-4,-11]],[[5245,4417],[-1,-10]],[[5245,4394],[-1,-26]],[[5243,4366],[-1,-3],[-1,-4]],[[5238,4348],[0,-4],[-2,-9],[-4,7],[0,-12],[-2,-5],[-7,0],[-9,-4],[-13,5],[-8,-14],[-24,-7],[-4,4],[-5,9],[-5,13],[-3,14],[-4,24],[0,12],[-4,12],[-5,25],[-4,11],[-4,11],[-6,11],[-3,3],[-8,4],[-16,3],[-3,9],[-1,-2],[0,-11],[-13,-1],[-6,-1]],[[5075,4486],[1,4],[-1,3],[0,3],[0,3]],[[5074,4561],[0,2],[0,1]],[[5087,4679],[3,7]],[[5090,4686],[0,3],[1,0]],[[5105,4767],[-1,4],[-1,2]],[[5104,4780],[-1,15]],[[5096,4819],[1,8]],[[5101,4897],[8,16]],[[5154,4993],[8,-8],[8,-7]],[[2691,5074],[-8,-12],[3,-4],[3,-28],[-1,-10],[-6,-21],[-2,-15],[-2,-33],[2,-27],[-1,-23],[2,-13],[-4,1],[0,11],[2,1],[0,15],[-3,-1],[2,-11],[-5,-6],[3,-21],[-2,-15],[-3,-12],[4,-2],[1,-17],[-3,-4],[-1,-8],[-2,-5],[1,-17],[2,-11],[3,-4]],[[2619,4793],[-2,2],[-4,14],[-11,22],[-5,11],[-5,19],[-3,14],[-8,12],[-1,5],[-7,11],[-3,9],[-5,10],[0,7],[2,6],[4,-10],[3,4]],[[282,2637],[1,-6],[-2,-7],[-2,4],[3,9]],[[3104,4861],[-2,12],[3,2],[-1,-14]],[[5093,7684],[5,3],[6,-4],[13,1]],[[5118,7684],[-9,6],[-3,-5],[-8,5],[0,10],[8,1],[7,-5],[1,7],[-2,11],[-1,14],[4,2],[10,23],[2,12],[2,21],[2,13],[5,-5],[5,4],[8,10],[2,9],[4,6],[11,7],[10,0],[10,4],[5,-8],[8,-8]],[[5152,8289],[-5,-1],[-2,9],[5,2],[2,-10]],[[5157,8308],[-3,-10],[-5,3],[4,6],[4,1]],[[5157,8337],[-5,-2],[-5,7],[10,10],[0,-15]],[[5224,8543],[-8,2],[6,7],[2,-9]],[[5249,8565],[3,-8],[-16,-7],[-5,5],[6,7],[12,3]],[[5344,8698],[1,-9],[-5,-7],[-2,14],[6,2]],[[5387,8897],[-6,-14],[-7,2],[0,10],[4,3],[9,-1]],[[5420,8909],[-10,-13],[-16,-8],[3,12],[10,8],[13,1]],[[5441,8946],[-1,-13],[5,-5],[13,7],[1,-11],[-2,-8],[-11,0],[-5,-12],[-19,-3],[1,17],[7,5],[-1,11],[6,12],[6,0]],[[5421,8944],[6,-14],[-2,-6],[-7,-5],[-13,3],[-6,4],[18,10],[4,8]],[[5492,8989],[10,-10],[-5,-6],[1,-11],[-12,-2],[-19,-7],[-1,4],[8,20],[5,6],[13,6]],[[5523,9012],[6,-7],[-7,-7],[0,-7],[-15,-4],[2,19],[5,-1],[9,7]],[[5533,9026],[9,-9],[-3,-8],[-8,-4],[-10,13],[3,4],[9,4]],[[5547,9039],[10,-11],[-7,-3],[-3,14]],[[5630,9048],[8,-9],[-15,3],[7,6]],[[5652,9065],[5,-11],[-13,-13],[-7,6],[-2,6],[12,5],[5,7]],[[5661,9072],[8,-9],[-11,-1],[3,10]],[[5649,9081],[-8,-18],[-13,-2],[-14,-6],[4,14],[8,3],[6,-5],[17,14]],[[5856,9007],[3,-10],[-3,-10],[-9,0],[-6,7],[-5,-13],[-6,-6],[-16,-6],[-2,-12],[-8,-6]],[[5572,8952],[-14,-1],[6,-9],[-2,-18],[-8,-8],[8,-5],[-9,-9],[-25,11],[-11,0],[-5,5],[-8,-2],[0,-27],[-7,-14],[-16,10],[-15,-14],[-5,-19],[-4,-7],[-8,-3],[-2,-6],[9,-16],[-1,-11],[-10,-12],[-10,-20],[-7,-8],[2,-16],[-12,-8],[-15,-2],[3,-21],[-2,-10],[-1,-27],[-4,-8],[-2,-9],[-19,-36],[14,-10],[1,-17],[-6,-14],[-20,6],[-7,-3],[-8,-7],[-11,-21],[-3,-5],[1,-10],[-6,-12],[6,-20],[-3,-6],[1,-14],[-2,-10],[6,-18],[1,-8],[-5,-36],[7,-10],[6,-3],[7,-12],[-1,-12],[-4,-12],[-5,0],[-7,-4],[3,-17],[6,-17],[0,-9],[-3,-7],[1,-12],[-10,-16],[-8,-2],[1,-7],[-6,-16],[4,-22],[-5,-23],[-5,-2],[-1,7]],[[5317,8231],[-2,8],[-14,5],[-6,14],[1,8],[-5,2],[-1,-12],[-5,-17],[-12,-11],[-5,0],[-7,-4],[1,-5],[-7,-11],[-19,-27],[-5,-4],[-6,-10],[-13,-3],[-7,-3],[-11,1],[-4,7],[-9,-2],[5,9],[-16,8],[-6,10],[-6,3],[-6,17],[1,8],[17,26],[-1,6],[-7,3],[-10,-6],[-5,5],[-4,12],[8,14],[8,-2],[3,7],[-4,4],[2,7],[9,13],[1,8],[6,11],[-5,1],[-2,-10],[-7,-8],[-15,4],[-4,6],[3,8],[-1,7],[11,-5],[2,4],[1,17],[-12,-11],[-6,7],[-3,21],[4,9],[8,-3],[9,6],[10,1],[8,-6],[1,5],[-13,4],[-11,-2],[-4,-4],[-8,4],[-5,9],[3,13],[6,2],[-1,11],[-7,0],[0,8],[7,6],[0,10],[3,5],[-8,9],[3,4],[13,-3],[8,1],[3,9],[10,5],[-4,10],[2,6],[8,-1],[5,4],[8,0],[8,-4],[-1,11],[-10,-1],[1,8],[-3,6],[10,6],[7,-7],[7,2],[7,11],[6,4],[11,-1],[-3,12],[6,2],[2,7],[9,-1],[3,7],[5,1],[8,9],[7,-16],[10,3],[7,-3],[6,4],[-1,10],[8,7],[12,6],[-10,6],[-6,-11],[-7,-4],[-6,-7],[-10,-5],[-4,0],[-3,13],[-6,-1],[-1,7],[11,9],[2,16],[8,7],[8,12],[13,10],[8,-8],[5,7],[-4,11],[1,7],[-5,7],[4,4],[11,4],[5,7],[14,1],[-4,16],[8,9],[-6,7],[-2,8],[9,12],[-1,3],[9,15],[-7,1],[15,16],[-4,14],[5,9],[6,4],[6,12],[-3,7],[9,-1],[9,4],[3,13],[12,4],[9,0],[1,7],[-13,-7],[-7,4],[11,11],[-2,5],[7,5],[8,-3],[-3,14],[-9,-5],[1,9],[12,8],[13,5],[5,4],[-7,5],[11,6],[-2,-10],[7,-4],[1,11],[-4,6],[0,8],[10,9],[-2,5],[4,9],[17,8],[13,10],[-7,2],[7,13],[11,5],[-2,8],[8,15],[15,5],[7,13],[5,3],[14,2],[6,-3],[9,14],[5,-14],[19,8],[2,9],[18,-13],[1,12],[-20,16],[6,4],[11,0],[4,4],[17,-8],[10,0],[1,-9],[10,2],[5,18],[20,17],[17,23],[13,2],[10,-4],[4,-5],[-16,-21],[-2,-16],[-6,-6],[-1,-9],[9,0],[7,13],[-2,4],[16,21],[2,6],[15,17],[3,-9],[-6,-28],[13,7],[8,15],[3,10],[-7,3],[3,7],[9,5],[18,-6],[9,-2],[-1,-6],[-12,-7],[-7,-13],[12,0],[-11,-10],[8,-2],[7,7],[4,12],[7,11],[12,-1],[5,-6],[22,-6],[7,-9],[17,-14],[-3,-7],[-11,-1],[-12,-13],[-25,3],[-13,4],[0,-6],[11,-2],[15,-7],[3,-9],[-3,-7],[12,1],[1,9],[8,-5],[11,0]],[[5713,9104],[8,-13],[-12,-3],[-7,8],[11,8]],[[4778,9105],[-1,-10],[-14,-1],[5,9],[10,2]],[[5532,9345],[3,-3],[-6,-9],[-8,9],[11,3]],[[5647,9609],[-5,-15],[14,-9],[22,-3],[-15,-23],[-15,-9],[-3,-8],[-23,0],[1,12],[-7,5],[-35,-4],[-2,9],[9,2],[2,10],[11,13],[-22,12],[4,4],[19,5],[20,-1],[15,4],[10,-4]],[[5596,9637],[9,1],[12,-8],[1,-16],[-34,-5],[-11,14],[-13,7],[36,7]],[[5313,9634],[-10,4],[-11,13],[9,7],[9,-11],[3,-13]],[[5467,9729],[20,2],[37,-33],[2,-20],[23,0],[3,-11],[45,-11],[0,-8],[-13,-7],[-23,0],[-18,-5],[3,-4],[-19,-4],[2,-6],[-4,-14],[4,-7],[-13,-2],[-7,-11],[3,-11],[-7,-19],[-11,0],[-9,-13],[-4,-24],[-11,-14],[7,-6],[-11,-9],[-13,3],[-1,7],[-10,4],[-25,27],[-18,4],[-12,16],[-1,8],[15,4],[9,-3],[30,-1],[0,3],[-25,4],[4,5],[49,8],[-5,4],[-25,-2],[-6,3],[-13,-6],[-18,-3],[-20,1],[-4,21],[8,3],[32,1],[21,16],[32,1],[-26,9],[-16,-1],[-6,14],[-11,-1],[-12,-10],[-3,-14],[-12,-7],[-26,2],[-1,8],[-34,28],[-2,10],[5,15],[-13,1],[-12,19],[-4,14],[13,11],[18,9],[26,-5],[29,8],[5,-8],[-7,-5],[-20,-2],[24,-10],[19,20],[8,-3],[11,-11],[7,-21],[13,-1],[-9,38],[13,1],[-2,11],[14,3],[8,-13]],[[5934,9754],[-23,-6],[-33,-5],[-4,4],[40,6],[20,1]],[[5642,9766],[-2,-10],[43,5],[8,-4],[29,-6],[24,0],[12,-6],[-9,-18],[-12,-9],[-18,-7],[4,-7],[-9,-9],[-13,-4],[-11,2],[-14,-4],[-6,-9],[-32,2],[-14,14],[-19,-3],[-25,1],[-3,5],[-15,1],[-15,10],[23,6],[38,1],[1,9],[-47,-3],[-19,-5],[-20,0],[-17,14],[6,9],[-10,11],[26,-2],[23,24],[31,-21],[26,5],[-2,-9],[17,-3],[5,15],[16,5]],[[7283,6155],[1,-2],[2,0]],[[7306,6123],[0,-2],[3,3]],[[7327,6096],[2,2],[0,1]],[[7363,6040],[0,-2]],[[7384,6018],[2,-9],[1,-4]],[[7390,6007],[0,5]],[[7427,5996],[0,-3]],[[7432,5993],[0,0]],[[7432,5993],[5,1]],[[7439,6000],[4,-1],[2,0]],[[7445,5999],[1,-2],[2,0]],[[7446,5905],[0,-4],[0,-5]],[[7423,5890],[0,1],[-1,1]],[[7417,5905],[-2,-3]],[[7409,5895],[-1,-2]],[[7402,5901],[-4,4],[-1,0]],[[7397,5905],[0,2]],[[7387,5910],[-3,-5],[-1,0]],[[7358,5932],[0,1],[-2,1]],[[7356,5935],[-1,1]],[[7350,5937],[0,2]],[[7339,5967],[-1,0],[-3,5]],[[7246,6040],[-3,4],[-4,7]],[[7239,6051],[-2,2],[0,1],[0,1],[0,1]],[[7235,6055],[-4,-4]],[[7223,6067],[-1,6],[2,4]],[[7228,6089],[0,1],[-1,3],[2,5]],[[7240,6148],[2,4],[1,4]],[[7245,6163],[1,3],[1,-3]],[[7259,6163],[0,2],[1,3]],[[7265,6179],[1,1]],[[9636,3963],[1,-2],[-1,-2],[0,3],[0,1]],[[9617,372],[-1,-7],[0,-17],[-3,6],[-1,6],[2,12],[3,0]],[[9665,647],[6,-12],[0,-17],[-5,-2],[-3,-4],[-7,-1],[0,11],[5,11],[-2,6],[1,8],[5,0]],[[96,861],[2,-17],[5,-6],[-9,-5],[-1,6],[4,7],[-4,9],[3,6]],[[9802,1091],[-4,0],[-2,-16],[5,-8],[4,3],[1,-6],[-1,-19],[3,-11],[2,0],[10,17],[5,1],[0,6],[5,3],[5,-6],[3,1],[1,-23],[-3,0],[-2,-14],[3,-5],[2,-10],[-1,-11],[-6,-11],[-3,-15],[-9,-18],[-7,-33],[-6,-8],[-8,-8],[-1,-7],[-1,-10],[2,-14],[7,-3],[1,-13],[-6,-5],[-4,7],[-6,6],[-3,-1],[-1,-10],[-8,-6],[-15,-15],[-5,-8],[-5,-21],[1,-24],[-3,-12],[-3,-6],[-3,-15],[0,-3],[-5,-20],[2,-13],[-8,-4],[-4,-5],[-3,-12],[-11,-16],[0,-6],[-6,-8],[-13,-5],[-3,-3],[-5,3],[-1,6],[-7,-4],[-6,5],[-4,14],[-4,0],[-6,-3],[-5,15],[-6,3],[-2,-8],[-6,-1],[-3,2],[-9,1],[0,11],[-3,8],[-5,-2],[1,13],[8,6],[-2,13],[3,14],[2,5],[4,1],[-1,8],[6,14],[6,10],[9,15],[2,7],[14,28],[2,7],[7,4],[2,-3],[10,12],[3,6],[11,11],[4,3],[4,12],[4,4],[2,6],[4,1],[3,10],[5,7],[5,4],[4,8],[2,7],[5,11],[6,21],[0,11],[5,22],[11,16],[2,11],[3,3],[1,12],[0,26],[15,27],[7,0]],[[9872,1406],[3,-4],[-2,-7],[-3,2],[2,9]],[[9807,1529],[-5,-10],[4,-4],[2,-15],[5,-7],[3,0],[2,-6],[5,2],[6,-3],[3,-5],[4,-17],[6,2],[6,-22],[-1,-9],[1,-9],[-2,-4],[0,-6],[7,-19],[-1,-25],[3,-16],[12,-9],[2,-6],[1,-13],[7,0],[-2,18],[-2,6],[2,5],[-1,11],[-4,9],[2,4],[4,-6],[1,-13],[5,2],[3,-16],[3,-50],[4,-4],[2,1],[8,-7],[6,-8],[6,-4],[6,-6],[8,3],[3,4],[5,17],[4,2],[4,7],[7,0],[2,-4],[5,-3],[1,-4],[-6,-21],[-1,-19],[2,-3],[-2,-17],[-10,-15],[-2,-24],[3,-3],[-3,-11],[-2,13],[-1,2],[-11,0],[-8,-9],[-4,-11],[-1,-7],[4,-22],[-6,-30],[-4,-8],[-2,-14],[-2,0],[-5,-15],[-4,-17],[-3,-6],[-1,-9],[-3,-8],[-5,-9],[-13,-17],[-3,0],[-1,14],[-5,2],[-4,-2],[-7,9],[7,18],[3,5],[5,21],[3,25],[-3,18],[-5,12],[-3,4],[-8,2],[-7,15],[-9,6],[-6,10],[0,14],[2,5],[10,11],[5,0],[5,10],[2,15],[0,12],[2,12],[0,13],[4,-1],[1,10],[-3,2],[2,14],[-4,31],[0,11],[4,10],[-1,7],[-3,1],[-6,-6],[-4,27],[3,4],[0,13],[-7,4],[-3,-4],[-2,9],[-5,15],[-21,61],[3,11],[-1,10],[-10,27],[-2,8],[10,2]],[[6629,5445],[-1,14],[3,6],[4,17],[2,-12],[-3,-6],[-2,-10],[-3,-9]],[[6474,5192],[-8,45],[-2,2],[-7,40],[-14,82]],[[6443,5361],[22,19],[24,20],[19,17],[19,16],[9,70],[9,72],[0,3],[-13,49]],[[6566,5790],[3,-20],[3,-14],[5,-14],[4,-14],[6,-11],[5,-5],[9,-7],[4,-1],[3,-4],[4,0],[10,-8],[2,3],[8,-10],[1,-7],[3,-6],[5,-20],[3,-6],[2,-13],[7,-15],[7,-3],[2,-7],[-2,-17],[-3,-9],[-1,-11],[-4,-12],[-4,-23],[-5,-5],[-7,-16],[-4,-16],[-3,-7],[-4,-29],[-2,-3],[-7,2],[2,13],[-5,-1],[0,-7],[-4,-5],[1,-5],[-4,-5],[0,-11],[-2,-19],[-2,-7],[0,-14],[2,-10],[0,-11],[2,-18],[-4,-5],[-5,1],[-9,-3],[-8,-7],[-3,-6],[-4,-10],[-3,-32],[-2,-4],[-4,-11],[-4,1],[-8,-3],[-7,-1],[-6,-4],[-2,-11],[-4,-12],[3,-7],[-2,-14],[-6,-15],[-6,-5],[-6,6],[-6,1],[-10,-4],[-1,-6],[-6,-3],[-5,-8],[-7,-1],[-7,-7]],[[6557,5868],[3,13],[3,-2],[3,4],[2,-5],[-2,-7],[0,-8],[-1,-13],[-2,-5],[0,-8]],[[6893,5709],[-2,-8],[-7,9],[-1,-3],[-5,-1],[-3,7],[-2,12],[-3,0],[-1,8],[-2,21],[-2,12],[0,8],[-6,7],[-7,-1],[1,28],[-5,10],[1,4],[-4,13],[-5,-9],[-11,-4],[-5,-5],[-8,3],[-5,-2],[-2,-5],[-9,2],[-4,-7],[-4,3],[-5,1],[-8,5],[-3,-1],[-4,3],[-7,-1],[-2,-6],[0,-6],[-9,4],[-4,-2],[-7,2],[-8,0],[-5,-8],[-1,5],[-5,-1],[0,-7],[-6,0],[-1,-4],[-3,-1],[1,9],[-5,3]],[[6840,6142],[1,2],[1,3]],[[6843,6217],[1,1]],[[6852,6236],[2,2]],[[6877,6253],[0,3],[-1,2],[0,1]],[[6902,6274],[1,3]],[[6901,6277],[-1,1],[0,1]],[[6924,6291],[-1,12]],[[6926,6335],[2,7]],[[6928,6346],[-1,4]],[[6928,6352],[0,2],[1,1],[0,1]],[[6931,6371],[6,3]],[[6952,6393],[-4,9]],[[6968,6435],[1,3],[1,0]],[[6970,6438],[1,2],[2,1]],[[6977,6491],[2,5],[0,2],[1,2]],[[6989,6524],[-3,7]],[[6994,6616],[7,9]],[[7001,6625],[4,8]],[[7024,6641],[2,1]],[[7032,6644],[3,-1],[1,1]],[[2729,4546],[1,-6],[-1,-15],[-3,6],[1,11],[2,4]],[[2809,4604],[0,-11],[-3,1],[0,10],[3,0]],[[2836,4517],[-3,8],[-8,25],[-1,11],[-2,5],[-1,11],[4,1],[1,5],[-1,7],[3,3],[0,8],[-3,4],[-4,-5],[-2,6],[0,11],[-3,3],[-4,11],[-7,10],[-5,3],[-8,0],[-8,-15],[0,-15],[-3,-2],[-3,-8],[-7,-10],[-4,0],[-3,-6],[1,-13],[3,-4],[1,-7],[5,-10],[2,-8],[2,-10],[-4,-5],[-3,0],[-3,-3],[-4,-10],[-11,-3],[-2,25],[-4,17],[-2,0],[-1,-13],[-9,7],[-1,10],[-2,3],[-2,17],[-11,8],[-3,-3],[-2,11],[-6,-5],[-4,3],[-4,-2],[-2,-5],[0,-11],[-1,-3]],[[2706,4685],[6,-12],[0,-11],[3,-8],[0,-9],[4,-6],[6,3],[3,-3],[2,7],[5,-16],[6,-2],[6,2],[8,6],[5,11],[6,7],[3,1],[6,5],[2,7],[3,-1],[6,13],[1,7],[3,3],[10,-7],[4,0],[0,-5],[4,-3],[3,2],[10,-3],[6,-9],[5,-4],[4,-11],[4,-8],[1,-5],[4,-7],[3,-9],[2,0]],[[1436,2247],[-1,0],[0,4],[1,1],[0,-5]],[[3067,3212],[0,-1],[1,-3],[3,-13],[8,-39]],[[3092,3101],[0,-1],[-1,-4]],[[3089,3092],[0,-1]],[[3087,3084],[-1,-5],[-2,-4]],[[3084,3075],[0,-13]],[[3082,3021],[0,-1]],[[3082,3020],[-1,-5]],[[3083,2974],[0,-1],[0,-3]],[[3071,2879],[0,-2],[0,-2]],[[3072,2777],[-1,-1],[1,-1]],[[3066,2765],[-1,-6],[0,-2]],[[3065,2757],[1,0]],[[3069,2749],[0,-2],[0,-5]],[[3044,2682],[-8,13],[-6,15],[-5,6],[-4,8],[-4,5],[1,4],[-2,16],[-3,9],[-8,6],[-4,9],[-9,14],[-2,8],[-7,8],[-3,-1],[-5,8],[-11,12],[-4,7],[-7,5],[-4,5],[-9,18],[-8,7],[-1,5],[-10,12],[-9,12],[-2,14],[-4,4],[-5,19],[-8,11],[-2,6],[-2,13],[-3,7],[-2,10],[-2,6],[-1,14],[-3,3],[1,8],[2,-5],[3,23],[-2,13],[-7,24],[-1,11],[-3,9],[-1,9],[-4,10],[1,7],[-2,6],[-5,7],[-1,7],[-3,3],[1,10],[-2,22],[-3,9],[-9,15],[1,9],[-2,17],[-2,12],[-3,6],[-2,10],[-4,13],[-1,11],[-2,4],[-1,14],[0,11],[-4,13],[-2,14],[-1,6],[-1,11],[-2,6],[-3,15],[-2,8],[0,12],[-5,13],[1,4],[-2,11],[-4,11],[-5,9],[-5,16],[1,3],[-4,15],[-1,15],[-2,11],[-7,16],[0,7],[-5,10],[-5,7],[-13,18],[-9,16],[-1,14],[3,4],[2,-2],[3,8],[0,6],[-2,14],[-8,18],[1,9],[3,5],[-8,24],[1,15],[1,5],[1,12],[5,10],[2,9],[3,7],[3,12],[4,6],[3,8],[4,3],[1,5]],[[8217,4768],[-1,-1],[0,1],[1,0]],[[8339,4376],[-1,-5],[-5,-3],[-2,-6],[-3,4],[4,7],[7,3]],[[8361,4435],[11,-8],[-4,-9],[-1,6],[-4,-4],[-5,0],[0,10],[3,5]],[[8390,4458],[-3,0],[-2,7],[-1,11],[6,6],[7,-10],[-2,-3],[-2,-8],[-3,-3]],[[8415,4529],[-4,-8],[0,10],[4,-2]],[[8251,4574],[0,-13],[-3,6],[0,9],[3,-2]],[[8465,4649],[-3,4],[0,6],[2,2],[2,-6],[-1,-6]],[[8435,4659],[0,-6],[-4,-1],[-2,4],[5,8],[1,-5]],[[8489,4688],[8,-9],[2,-14],[2,-4],[4,5],[-1,-16],[4,-9],[1,-8],[-2,-6],[-4,-8],[2,-7],[4,-2],[1,-17],[2,-5],[-2,-21],[0,-7],[3,-6],[2,-2],[0,-7],[1,-11],[-1,-12],[1,-3],[-4,-14],[-3,-5],[-1,-7],[-4,-1],[2,-9],[-1,-21],[-1,-8],[-2,11],[-1,24],[-2,7],[0,5],[-3,6],[-2,18],[-4,-8],[0,-8],[-4,-8],[-4,-17],[0,-13],[5,-6],[4,-26],[-1,-14],[-8,-27],[-6,16],[3,11],[-1,10],[-2,2],[-3,-18],[-3,0],[-10,9],[-5,8],[-5,6],[-5,18],[0,16],[-2,11],[0,11],[1,10],[5,8],[1,13],[-2,4],[-3,10],[-4,7],[-3,1],[-2,6],[-4,3],[-4,-2],[1,-10],[-3,-7],[2,-8],[-1,-6],[-5,10],[-3,16],[-2,-6],[-1,-13],[-5,6],[0,14],[-3,3],[-3,-2],[-5,-11],[-2,-11],[1,-5],[-4,-10],[0,-11],[-3,-12],[-3,-1],[-4,10],[1,12],[3,6],[0,10],[2,11],[1,16],[4,14],[4,4],[14,6],[2,17],[1,8],[8,3],[1,6],[3,5],[8,-6],[3,-18],[0,-19],[5,6],[5,2],[3,22],[2,7],[4,-4],[2,-6],[4,2],[0,17],[0,15],[4,3],[6,-12],[2,4],[-1,9],[8,-1],[2,3],[0,11],[-2,16],[-2,20],[2,9],[3,-4],[2,-10]],[[8503,4705],[0,-7],[-3,2],[-1,8],[2,11],[2,-14]],[[8453,4726],[7,-9],[-3,-18],[-2,-8],[-3,-4],[-7,-1],[-3,2],[-4,9],[2,12],[5,5],[4,12],[4,0]],[[8479,4710],[-4,10],[3,3],[1,-13]],[[8490,4744],[0,-10],[1,-14],[-1,-8],[-5,11],[2,19],[3,2]],[[8332,4755],[-5,-8],[-1,7],[2,8],[4,-7]],[[8408,4757],[-2,-10],[-3,-1],[0,12],[4,12],[2,-5],[-1,-8]],[[8423,4786],[7,-5],[2,-6],[-3,-20],[-2,-8],[-3,-25],[-4,-16],[1,-27],[4,-11],[-1,-9],[-2,-8],[-5,-5],[-3,6],[-2,15],[-7,8],[-3,9],[-3,20],[2,10],[7,0],[4,10],[0,17],[-1,13],[2,4],[2,9],[0,11],[7,9],[1,-1]],[[8444,4793],[1,-3],[0,-11],[-1,-10],[1,-9],[0,-10],[-2,-11],[-5,-7],[-4,-14],[0,-5],[-5,-29],[-3,-10],[-1,6],[2,31],[3,13],[2,14],[3,11],[2,12],[2,8],[2,20],[3,4]],[[8319,4812],[2,-6],[-2,-9],[1,-6],[-1,-6],[0,-9],[2,0],[0,-12],[3,-13],[-4,-9],[-5,-3],[-4,-11],[-1,-8],[-9,-7],[-3,-6],[1,-7],[-2,-11],[-6,-23],[-5,-10],[-5,-3],[-4,-17],[-6,-14],[-6,-3],[-2,-11],[-5,-4],[-3,4],[2,10],[5,11],[5,19],[3,2],[4,12],[3,-2],[3,8],[7,21],[5,10],[8,30],[3,2],[4,13],[2,0],[3,8],[2,15],[-3,10],[6,19],[-1,12],[3,4]],[[8456,4819],[2,0],[3,-10],[3,2],[3,7],[4,-3],[-1,-7],[2,-8],[1,-15],[-1,-12],[5,-14],[0,-12],[2,-5],[-8,-12],[1,-13],[-4,8],[-3,1],[1,11],[-2,7],[2,19],[-1,11],[-4,13],[-3,-9],[-3,6],[0,25],[-3,12],[4,-2]],[[8456,4837],[3,-2],[2,-13],[-5,1],[-2,13],[2,1]],[[8396,4842],[3,-3],[6,-15],[3,6],[4,0],[1,-11],[6,7],[2,-5],[-2,-15],[-3,-12],[-5,-6],[-1,-4],[-1,-10],[-3,-3],[-2,-5],[-10,-4],[-3,-6],[-2,-7],[-3,0],[2,11],[-2,11],[3,17],[1,25],[1,21],[-1,5],[-6,3],[1,9],[2,3],[4,-8],[5,-4]],[[8332,4855],[2,-5],[0,-10],[-1,-4],[-4,16],[3,3]],[[8331,4879],[2,-2],[5,-10],[2,2],[2,-6],[-6,-6],[-4,4],[-3,15],[2,3]],[[8405,4879],[-5,9],[1,6],[5,-1],[1,-5],[-2,-9]],[[8469,4899],[4,-2],[3,3],[5,-12],[0,-9],[4,-2],[-1,-10],[2,-5],[-2,-6],[1,-19],[-1,-7],[3,-12],[2,-4],[-2,-8],[4,-6],[-7,-6],[-4,4],[-3,-1],[-2,10],[-4,1],[0,9],[-4,7],[4,8],[1,7],[-3,1],[-3,9],[-4,12],[-5,5],[-3,9],[-3,22],[3,1],[8,-2],[7,3]],[[8426,4898],[5,-6],[4,-10],[2,-8],[3,0],[5,-16],[0,-8],[-1,-7],[-3,6],[-5,7],[-5,17],[-3,0],[-2,-7],[-5,-12],[1,13],[2,4],[-2,7],[1,11],[0,13],[3,-4]],[[8392,4904],[-2,-22],[-2,-8],[-2,7],[2,10],[1,12],[3,1]],[[8434,4906],[2,-4],[0,-14],[-4,16],[2,2]],[[8421,4924],[-7,10],[3,6],[4,-16]],[[8360,4968],[1,-8],[5,0],[6,-13],[2,-14],[0,-19],[1,-9],[-3,-9],[0,-10],[-4,-8],[-4,-2],[-6,20],[0,8],[-3,7],[-1,20],[-4,13],[-4,8],[-1,9],[-3,7],[6,0],[5,-4],[7,4]],[[8385,4971],[6,-7],[0,-8],[-3,-11],[-5,10],[0,8],[2,8]],[[8450,5007],[1,-8],[4,-6],[-1,-11],[-2,-8],[-4,-5],[-4,10],[3,8],[0,19],[3,1]],[[8387,5078],[2,-4],[-3,-17],[-3,13],[1,8],[3,0]],[[8358,5330],[5,6],[9,-12],[5,-9],[7,-5],[3,0],[4,8],[1,9],[2,0],[3,-10],[0,-9],[-4,-10],[0,-10],[-1,-13],[0,-13],[3,-18],[3,-1],[2,-4],[-1,-9],[4,-6],[-2,-14],[-3,-18],[-4,-16],[0,-11],[-7,-9],[-6,-4],[-5,-11],[0,-7],[2,-8],[-7,-30],[3,-10],[3,-22],[3,-10],[-2,-1],[-1,-7],[2,-14],[2,-12],[0,-4],[5,-14],[9,-6],[1,8],[-3,8],[4,5],[4,10],[4,-3],[4,2],[3,-4],[4,-12],[2,-15],[-1,-9],[2,-4],[4,2],[2,6],[-3,12],[3,5],[4,-8],[13,-12],[-4,-7],[-6,3],[-1,-7],[3,-10],[4,-13],[-1,-11],[6,-4],[3,-7],[2,-15],[-2,-17],[-3,-1],[-3,7],[-1,14],[5,3],[0,6],[-3,1],[-2,-7],[-3,-2],[-4,3],[-4,10],[-4,-1],[0,7],[0,9],[-3,8],[-1,7],[-5,6],[-4,9],[1,3],[-3,8],[-7,9],[0,-20],[3,-8],[2,-23],[-3,-4],[-2,5],[0,9],[-5,16],[-3,2],[-3,10],[-11,15],[-1,-3],[-5,-5],[-2,-4],[1,-7],[-5,-8],[-3,4],[-7,11],[-1,8],[-4,2],[0,-6],[-3,-1],[0,19],[-1,7],[8,18],[2,4],[0,11],[-3,7],[-6,2],[-2,-6],[1,-14],[-1,-5],[-4,1],[-1,12],[-3,2],[-2,9],[-3,1],[-1,10],[0,10],[-1,15],[-4,11],[3,6],[-2,6],[0,7],[-1,16],[-3,2],[0,14],[0,5],[1,11],[3,-1],[0,-7],[5,-7],[0,-6],[6,-2],[3,9],[-2,9],[-1,18],[-1,5],[1,12],[3,13],[0,19],[1,10],[-1,11],[-2,3],[4,38],[3,20],[-1,7],[1,5],[9,2]],[[8740,4543],[-2,-13],[-3,4],[2,10],[3,-1]],[[9256,3183],[8,-9],[4,-3],[1,-7],[-8,3],[-1,5],[-3,4],[-1,7]],[[9283,3186],[2,-5],[-5,-3],[-1,8],[4,0]],[[9195,3285],[7,-2],[-3,-16],[-1,3],[-6,3],[-2,14],[1,6],[4,-8]],[[9184,3321],[2,1],[4,-7],[2,-10],[-3,-3],[-3,3],[-5,2],[-3,15],[2,6],[4,-7]],[[9176,3326],[-1,-8],[-4,3],[-2,5],[1,8],[2,3],[3,-5],[1,-6]],[[9234,3356],[2,-4],[7,0],[5,-7],[-2,-11],[-5,2],[0,6],[-6,7],[-1,7]],[[9197,3393],[0,-11],[-3,5],[3,6]],[[8989,3372],[-6,9],[2,5],[4,-10],[0,-4]],[[8982,3397],[5,0],[-1,-8],[-4,4],[0,4]],[[9105,3604],[7,-8],[0,-10],[-1,-7],[-4,5],[-3,11],[1,9]],[[9299,3604],[3,-4],[5,0],[5,-24],[4,-9],[1,-9],[7,-11],[3,-6],[3,-11],[1,-15],[-4,-4],[-2,-6],[-6,2],[-4,7],[-5,14],[1,13],[-1,5],[-6,8],[0,4],[-6,13],[-2,13],[1,13],[2,7]],[[9089,3609],[-3,-2],[-3,8],[0,7],[3,3],[2,-4],[1,-12]],[[9296,3631],[1,-9],[-1,-14],[-2,-2],[-1,12],[0,11],[3,2]],[[9054,3657],[-3,5],[1,6],[4,1],[-1,-10],[-1,-2]],[[9228,3697],[-2,-7],[7,-5],[-2,-8],[2,-15],[-1,-8],[-3,-10],[-4,-5],[-4,2],[0,-14],[4,-9],[0,-5],[-1,-7],[-4,-5],[-5,-4],[-1,4],[-7,0],[-1,-11],[-3,-11],[-4,-8],[-9,-8],[-2,-4],[-6,-4],[-3,-7],[-6,-2],[-6,3],[-4,-3],[-8,0],[-4,14],[-5,3],[-6,-6],[0,8],[-6,4],[-2,7],[-5,5],[-1,-2],[-5,4],[-2,10],[1,8],[2,6],[4,-7],[2,5],[5,-4],[4,5],[7,-7],[5,-2],[6,5],[3,-4],[4,3],[3,7],[-2,6],[3,7],[1,16],[3,1],[1,-6],[-4,-6],[0,-11],[3,-14],[4,-2],[4,7],[8,-5],[2,6],[2,-3],[4,7],[2,16],[5,13],[3,5],[7,-3],[2,10],[-3,27],[-1,3],[-1,12],[1,4],[7,-2],[4,-9],[2,5],[6,5]],[[9239,3767],[-3,6],[3,6],[0,-12]],[[8915,3811],[2,1],[6,-4],[2,-4],[7,-7],[9,-12],[3,1],[5,-9],[9,-8],[14,-12],[3,1],[10,-6],[4,-9],[5,-5],[5,-12],[6,-4],[4,3],[4,-1],[1,-11],[9,-9],[5,-18],[4,-3],[3,1],[4,-9],[7,-19],[3,-7],[0,-15],[-2,-25],[1,-4],[5,0],[10,-8],[4,-1],[6,-11],[4,-6],[4,0],[3,-7],[5,-2],[1,2],[5,-2],[5,-10],[3,-12],[2,-5],[2,-10],[-1,-15],[-2,-2],[-16,-2],[-2,2],[-4,-2],[-1,-15],[3,-7],[2,-12],[1,-12],[2,-7],[3,-2],[7,-14],[0,-8],[2,0],[2,-8],[4,-1],[3,-8],[3,0],[3,-18],[1,-19],[5,-7],[2,-6],[0,-10],[2,-10],[1,-4],[4,-1],[4,3],[10,4],[1,-8],[-3,-18],[1,-9],[7,-8],[4,-1],[3,1],[8,-3],[1,-5],[-9,-7],[0,-3],[6,-15],[7,-2],[3,-6],[8,-5],[1,-7],[-6,3],[-2,-5],[9,-8],[1,-6],[-8,-9],[-2,2],[-3,-3],[-4,4],[-4,15],[-5,7],[-8,-1],[-11,9],[-3,-3],[-12,7],[-4,-2],[-4,7],[-6,-2],[-4,6],[-3,-1],[-4,5],[-3,8],[-1,8],[-5,16],[-2,1],[-5,5],[-3,13],[-1,1],[-1,11],[-7,6],[-2,6],[1,9],[-4,15],[-5,13],[-1,12],[-3,5],[-1,8],[-8,5],[-5,6],[-4,-1],[-4,6],[-12,6],[-1,5],[-8,7],[-4,0],[-5,-9],[-1,-5],[-8,8],[-2,-8],[3,-12],[-2,-4],[-3,-1],[-4,4],[-2,-3],[2,-12],[-1,-4],[-7,0],[-10,-6],[-2,-6],[6,-5],[4,-8],[3,-13],[1,-13],[-3,-5],[-4,-1],[-14,-21],[-6,7],[-6,6],[-10,-5],[-3,2],[-4,-2],[-3,1],[-2,4],[-4,0],[-2,-4],[-3,-1],[-4,8]],[[9195,3803],[3,-5],[2,-6],[6,-3],[7,-11],[4,-9],[6,-4],[4,-15],[4,-6],[2,-8],[2,0],[2,-12],[6,-6],[3,-7],[2,0],[5,-19],[0,-8],[-2,-6],[0,-10],[-2,-12],[-3,-2],[-4,10],[-2,15],[1,11],[-1,9],[-4,22],[-5,12],[-2,9],[-3,5],[-5,3],[-5,7],[-5,14],[-4,3],[-2,5],[-11,19],[-5,0],[-1,4],[4,6],[3,-5]],[[9172,3827],[6,-7],[0,-13],[-7,-1],[-5,15],[2,3],[4,3]],[[9079,3858],[6,-1],[7,-5],[-4,-11],[-2,2],[-5,-3],[-8,2],[-2,11],[2,4],[6,1]],[[9154,3901],[4,-6],[2,-9],[-3,-1],[-4,8],[1,8]],[[5655,7694],[0,0]],[[5655,7694],[0,-1],[1,0],[0,-1],[1,0],[-1,-2],[1,-3],[1,-1],[-1,0]],[[5657,7686],[0,-2]],[[5657,7684],[-1,-1],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[2,-5],[2,-3],[1,-2],[1,-1]],[[5663,7667],[-1,0],[0,-1],[2,-8]],[[5664,7658],[2,-5],[4,-5]],[[5670,7648],[0,-2]],[[5670,7646],[-1,-1],[-1,0],[-1,0],[0,1],[-2,-1],[0,-1],[0,-2],[0,-1],[2,0]],[[5667,7641],[1,-6]],[[5668,7635],[1,-4],[0,-7]],[[5669,7624],[-3,-3],[0,-2],[0,-1],[0,-1],[0,-2],[-7,-1],[-18,-31],[-3,-8],[-1,-2],[0,-2],[-1,-1]],[[5636,7570],[-2,-6]],[[5634,7564],[-1,-1],[-1,0],[-3,-8],[-1,-3]],[[5628,7552],[1,-4]],[[5629,7548],[0,-3],[0,-1],[2,-4],[0,-6],[0,-1],[-1,-3],[0,-2],[0,-2],[0,-1],[0,1]],[[5630,7526],[4,-6],[-3,-3]],[[5631,7517],[-3,0],[-1,3],[-1,0],[0,-1]],[[5626,7519],[-5,2],[-10,8],[-1,5],[-4,7],[-6,3],[-5,-1],[-5,3],[-6,-2],[-3,-9],[-7,8],[-10,-1],[-5,-6],[-2,-9],[-9,3],[1,12],[-4,1],[-5,14],[-6,-6],[-2,-8],[-6,-1],[-3,8]],[[5411,7647],[0,1]],[[5416,7669],[1,6]],[[5417,7677],[-1,1],[-1,3],[0,9]],[[5405,7715],[0,2],[0,1],[3,6]],[[5408,7724],[0,5],[1,4],[0,1],[1,1]],[[5406,7765],[0,6]],[[5406,7771],[-1,1],[-1,3]],[[5394,7788],[-2,2],[1,2]],[[5393,7792],[0,2]],[[5393,7797],[-1,1]],[[5397,7837],[-1,14],[4,-1],[4,1],[0,11],[-5,5],[11,8],[30,16],[10,1],[3,9],[7,12],[10,3],[3,5],[8,5],[15,6],[12,1],[3,-4],[4,-17],[1,-8],[3,-4],[8,-3],[11,3],[8,4]],[[5546,7904],[35,-3],[10,-1],[12,-1],[27,-2],[2,1]],[[5632,7898],[2,3],[4,-1]],[[5651,7871],[1,-2],[0,-1]],[[3138,5326],[3,-2],[8,1],[10,-1],[4,-3],[4,2],[9,-7],[2,-10],[-4,-3],[-3,-12],[-3,-4],[-6,-3],[-7,2],[-2,3],[-3,-2],[-5,1],[-4,-2],[-8,1],[1,17],[-3,11],[3,5],[2,7],[2,-1]],[[8625,7050],[5,-17]],[[8630,7033],[-6,3],[-12,-19],[-3,-13],[-5,-10],[-2,-8],[-1,-13],[4,-7],[-3,-17],[1,-18],[-5,-3],[-10,-11],[-3,-15],[-6,-7],[-6,-4],[0,-8],[-8,-8],[-2,-5],[-8,1],[-4,-11],[-7,-4],[-3,-6],[2,-11],[-3,-11],[-3,-5],[0,-9],[2,-6],[9,-4],[7,-18],[6,-9],[2,2],[2,-10]],[[8518,6712],[-3,-3],[-5,8],[-9,-7],[-5,5],[-2,9],[-3,-3],[-3,-10],[-3,-6],[-4,1],[-1,11],[-4,-2],[-4,3],[0,11],[-3,5],[-1,16],[5,15],[6,10],[-4,7],[4,25],[4,11],[-2,11],[-3,10],[-5,1],[-5,8],[-6,-7],[-3,14],[-3,1],[-3,6],[2,8],[-1,5]],[[4525,6352],[5,2],[4,-8],[-1,-5],[-5,-1],[-5,5],[-3,7],[2,4],[3,-4]],[[4286,6713],[6,-1],[9,2],[-1,-8],[-9,-3],[-5,3],[0,7]],[[4221,6756],[-6,-4],[-6,2],[-2,5],[4,5],[10,-8]],[[4204,6762],[-2,0],[-4,6],[4,3],[2,-9]],[[4248,6771],[-8,1],[-1,7],[2,3],[7,-4],[0,-7]],[[4794,6667],[-3,-2],[-8,-11],[-5,-1],[-6,6],[-7,0],[-5,2],[-7,-5],[-3,1],[3,12],[2,19],[-1,8],[1,17],[-2,10],[3,15],[-1,12],[-3,11],[-6,-5],[-3,16],[5,2],[3,7],[-2,9],[-2,-7],[-1,-7],[-5,-3],[-5,2],[0,8],[2,8],[-1,7],[3,12],[0,13],[3,4],[4,11],[1,7],[5,32],[0,11],[3,22],[3,8],[-1,6],[1,15],[0,10],[-2,9],[-1,15],[-3,20],[0,8],[3,8]],[[3391,2514],[1,-4]],[[3392,2510],[0,-1]],[[3393,2475],[0,-8]],[[3391,2459],[-1,-6],[0,-7]],[[3391,2442],[-1,-5],[0,-4]],[[3390,2433],[0,-3],[0,-2],[1,-2]],[[3389,2417],[1,-6]],[[3437,2402],[2,-3]],[[3454,2374],[0,-13]],[[3456,2324],[1,-20]],[[3460,2295],[1,-18]],[[3488,2282],[1,-5],[3,-4],[1,-1]],[[3491,2259],[1,-3]],[[3492,2256],[0,-2],[0,-2]],[[3491,2242],[-1,-4]],[[3487,2201],[0,-1],[0,-1]],[[3483,2173],[0,-4]],[[3483,2165],[0,-2],[0,-1]],[[3483,2158],[-1,-3]],[[3481,2134],[1,-16]],[[3482,2118],[0,-1],[-1,-2],[0,-2],[0,-3]],[[3481,2110],[-1,-9]],[[3468,2070],[0,-1],[1,-3]],[[3459,2054],[-4,-7]],[[3431,2021],[0,2],[-1,2]],[[3372,2043],[-2,3],[0,1],[0,2]],[[3374,2056],[2,6]],[[3376,2062],[-1,1],[0,1],[1,2]],[[3392,2137],[1,3]],[[3393,2140],[-1,0],[0,1]],[[3392,2141],[2,7]],[[3396,2152],[-1,1]],[[3399,2177],[-1,6]],[[3303,2297],[-1,2],[0,1]],[[3302,2304],[-2,4]],[[3292,2318],[-1,3],[0,2]],[[3275,2360],[-1,1],[0,1]],[[3272,2373],[-1,6]],[[3260,2401],[0,1]],[[5949,6245],[8,19]],[[5986,6298],[1,-21]],[[5985,6263],[-1,-5]],[[853,2727],[3,-1],[0,-10],[-3,1],[-1,9],[-4,-2],[-3,2],[-2,9],[1,5],[5,2],[2,-3],[2,-12]],[[1142,3298],[-2,-4],[-6,0],[3,8],[5,-4]],[[1105,3368],[4,-2],[2,-5],[-6,-4],[0,11]],[[6419,5760],[-2,0],[-2,1],[-1,1],[-1,4]],[[6413,5766],[-1,18],[-2,14],[-1,24],[1,14],[3,4],[4,25],[6,10],[3,-4],[1,-10],[3,-1],[2,-5],[-1,-16],[-2,-10],[1,-15],[2,-2],[1,-10],[-1,-14],[-2,-7],[-2,-12],[-1,-3],[-5,-1],[-3,-5]],[[5630,7171],[0,2],[0,3]],[[5630,7176],[0,1],[-5,7],[-1,3],[0,1],[0,1],[0,1],[0,1],[2,1],[0,2],[0,1],[2,1],[0,5],[-2,2],[-2,4],[-5,-3],[0,-1],[-3,-11],[-1,-1],[-1,0],[-1,1],[0,3],[-1,0],[0,1],[-1,6],[-2,1],[-2,2],[-3,-1],[-2,0],[-1,0],[-2,6],[0,1],[-1,0],[-4,0],[-1,6],[2,0],[1,1],[1,0]],[[5597,7218],[1,2],[-1,2]],[[5597,7222],[-3,2]],[[5594,7224],[1,5]],[[5595,7229],[0,3]],[[5595,7232],[0,1],[0,1]],[[5595,7234],[1,1],[1,1],[-1,1],[-2,4],[-5,3],[-7,7],[-1,3],[-2,3],[-1,3],[-1,0],[0,1],[-1,0],[0,1]],[[5576,7262],[-1,18]],[[5575,7280],[-4,10],[-3,2],[-1,3]],[[5567,7295],[-3,3]],[[5564,7298],[-2,8]],[[5635,7438],[5,5]],[[5640,7443],[5,5],[0,-1],[1,-2],[2,-3],[3,-2],[1,0],[1,2],[1,1],[11,-4],[4,-1],[1,-2],[2,-1],[6,4],[2,-1],[2,0],[6,-10],[2,-6],[1,-1],[3,1],[2,2],[1,2],[4,9],[14,2],[2,2],[2,1],[7,2],[4,15],[1,0]],[[5731,7457],[3,1]],[[5734,7458],[4,2],[1,1]],[[5757,7424],[0,-2]],[[5762,7410],[0,-1]],[[5765,7404],[1,-1],[-1,-1],[0,-1],[0,-1]],[[5765,7400],[0,-3]],[[5774,7378],[2,-5]],[[5780,7366],[0,-2],[0,-1]],[[5784,7344],[0,-2]],[[5784,7342],[0,-2],[-1,0],[0,-5]],[[5784,7333],[0,-1],[0,-3]],[[5784,7329],[0,-2],[-1,0],[0,-1]],[[5780,7305],[0,-6]],[[5781,7293],[0,-4]],[[5781,7289],[-1,-1],[0,-2]],[[5782,7274],[0,-2]],[[5782,7272],[-1,0],[-2,-3],[2,-2]],[[5781,7267],[1,-5]],[[5782,7262],[1,-3]],[[5783,7259],[2,-3]],[[5785,7256],[1,-4],[0,-2],[2,-2],[3,-1],[2,-2],[4,-2]],[[5797,7243],[2,0],[-1,4]],[[5798,7247],[1,1],[1,2],[4,0],[6,5],[1,2],[2,0],[0,1],[1,1],[7,-4]],[[5821,7255],[2,-3],[1,-15],[-2,-21],[-14,-5],[-2,16],[-4,-3],[1,-15],[-4,-3],[0,-17],[-4,-10],[0,-13],[1,-11],[-3,-18]],[[9079,7145],[1,-4],[-7,-6],[-2,6],[8,4]],[[9064,7186],[0,-10],[-5,-2],[-6,-10],[-4,-13],[-6,-8],[0,-7],[-4,-1],[-1,8],[9,15],[2,9],[5,9],[4,15],[6,-5]],[[9133,7251],[-7,-2],[-10,-8],[-6,-14],[-6,-4],[-2,4],[-4,-13],[-5,-6],[-4,-11],[-3,-1],[-4,-6],[-3,0],[9,16],[2,11],[6,10],[0,6],[5,1],[3,7],[15,6],[8,16],[5,1],[1,-13]],[[9182,7315],[-6,-11],[-3,-3],[-3,-10],[-6,-5],[-8,-15],[-5,4],[6,13],[3,2],[6,14],[4,1],[2,7],[5,3],[5,0]],[[9301,7559],[-2,-12],[1,-8],[-3,-6],[-3,8],[6,19],[1,-1]],[[9336,7621],[-2,-1],[-5,-16],[-3,-5],[-6,-1],[-5,-10],[-4,6],[1,7],[4,10],[9,5],[4,19],[5,7],[3,-14],[-1,-7]],[[9344,7633],[-4,-1],[-3,6],[6,10],[4,-7],[-3,-8]],[[8967,7893],[4,-11],[-2,-16],[1,-11],[4,-24],[3,-4],[2,-15],[2,-32],[-1,-17],[-4,-11],[-2,-15],[2,-17],[4,-8],[-3,-17],[7,-4],[0,-7],[2,-9],[7,-67],[6,-21],[6,-35],[2,-20],[-1,-9],[-7,10],[-14,6],[-9,-8],[-3,-4],[-2,-10],[0,-9],[-5,-26],[-7,-38],[0,-19],[1,-9],[5,-15],[4,-4],[3,-8],[0,-14],[4,-26],[7,7],[3,-2],[0,-13],[3,-15],[-3,-10],[-3,-1],[-2,13],[0,11],[-5,3],[-11,0],[-1,10],[-8,-8],[-5,-22],[-2,-21],[-4,-8],[-3,8],[-1,18],[-2,9],[0,14],[6,32],[0,9],[-2,9],[0,22],[4,19],[2,7],[-2,25],[-6,21],[-1,12],[3,6],[3,24],[-1,8],[2,11],[1,16],[-1,15],[1,14],[0,18],[-3,13],[2,27],[4,13],[-3,17],[-2,11],[-8,15],[0,9],[-3,8],[-1,12],[0,22],[3,6],[2,9],[1,19],[2,11],[-3,11],[-2,15],[5,6],[8,4],[2,-11],[4,1],[4,9],[-3,10],[3,5],[3,17],[-6,14],[-2,6],[6,7],[3,7],[3,-10]],[[9669,7909],[-17,20],[6,-2],[11,-18]],[[8827,7954],[3,1],[3,-7],[5,1],[-6,-13],[0,-6],[-8,-13],[-6,19],[-6,1],[5,9],[5,13],[5,-5]],[[5546,7904],[8,24],[-1,8],[3,5],[9,0],[8,7],[8,17],[1,-1],[-12,-22],[15,-5],[4,3],[-1,18],[2,4]],[[9609,7970],[9,-4],[-1,-11],[6,-15],[5,-7],[0,-11],[-8,11],[-8,16],[-2,11],[-5,4],[4,6]],[[9571,8245],[4,-12],[-3,-11],[-6,0],[-8,-6],[-15,-16],[5,18],[0,4],[6,11],[8,7],[4,5],[5,0]],[[5994,8673],[1,-11],[-7,3],[-2,7],[8,1]],[[6924,8791],[4,1],[18,-9],[-1,-13],[-6,-1],[-8,7],[-3,13],[-4,2]],[[6396,8963],[-9,-9],[-7,-13],[-13,-8],[-18,-3],[-10,12],[2,27],[4,7],[10,8],[13,1],[25,-17],[3,-5]],[[9482,8988],[-3,-9],[1,-13],[5,-15],[-10,4],[1,17],[-1,11],[7,5]],[[9483,8979],[-1,12],[7,-1],[-1,-9],[-5,-2]],[[9705,9004],[-6,-14],[-9,0],[-19,9],[-11,8],[1,5],[12,10],[32,-10],[0,-8]],[[6648,9046],[12,-16],[6,-2],[13,-13],[0,-14],[-7,-3],[-18,2],[1,8],[-5,5],[-10,1],[-10,7],[-3,10],[-4,4],[2,9],[14,11],[9,-9]],[[7310,9048],[-2,7],[4,23],[6,-4],[-5,-7],[0,-14],[-3,-5]],[[6464,9122],[9,-12],[2,-11],[-9,0],[-7,11],[-8,8],[13,4]],[[8829,9134],[-3,-11],[-12,0],[-8,6],[5,5],[18,0]],[[0,9131],[7,4],[12,-3],[7,3],[9,-2],[10,-2],[18,-17],[8,-5],[-5,-8],[-8,-6],[-27,-4],[-13,-5],[-18,6],[9990,-9],[-15,1],[-8,-5],[-6,16],[8,14],[18,16],[12,6],[-9999,0]],[[7160,9186],[-24,-1],[0,6],[8,6],[11,13],[17,-5],[5,-6],[-17,-13]],[[8580,9210],[-4,-7],[-12,1],[-6,6],[15,3],[7,-3]],[[8592,9220],[-4,-1],[-24,4],[2,4],[16,4],[12,-5],[-2,-6]],[[7209,9231],[1,-14],[-5,-2],[-14,2],[-9,9],[16,17],[11,-12]],[[7078,9243],[-10,-14],[-11,9],[4,6],[17,-1]],[[8327,9239],[-4,5],[10,4],[6,-9],[-12,0]],[[6536,9260],[31,-8],[3,-7],[-8,-12],[-3,-13],[-11,0],[-2,-15],[-8,-19],[5,-7],[-6,-10],[9,-33],[10,-17],[2,-8],[26,-28],[16,-10],[-9,-12],[-16,6],[-25,-2],[-11,9],[-12,-8],[-14,11],[-13,-2],[-9,11],[-6,12],[17,2],[-14,7],[-9,18],[-11,-4],[-7,5],[-1,8],[-20,-9],[-9,8],[-4,22],[6,16],[10,1],[10,-3],[2,11],[7,6],[1,14],[6,7],[-3,6],[-11,3],[6,10],[15,7],[0,14],[17,10],[12,-1],[9,7],[11,3],[11,-6]],[[6970,9273],[8,-4],[12,-17],[-5,-5],[-23,-4],[-11,-4],[-9,6],[4,9],[-3,11],[14,7],[13,1]],[[8951,9298],[9,-3],[23,-20],[4,-22],[-11,-4],[-18,2],[-28,6],[-20,8],[-8,0],[-15,-6],[-2,11],[17,1],[10,21],[7,7],[26,3],[6,-4]],[[8770,9320],[14,-13],[-6,-4],[-8,8],[0,9]],[[8903,9302],[-6,1],[-4,10],[1,10],[19,5],[6,-8],[-2,-12],[-14,-6]],[[8148,9333],[-6,-9],[-10,-10],[-17,4],[-16,8],[-3,6],[14,4],[3,11],[18,-4],[16,-1],[1,-9]],[[7281,9412],[-3,-8],[-10,-5],[-5,6],[18,7]],[[9075,9415],[2,-9],[10,-2],[6,7],[29,-1],[5,-15],[14,4],[28,-3],[14,-8],[0,-16],[-39,-10],[-29,3],[-14,11],[-16,4],[-28,17],[6,11],[2,14],[10,-7]],[[8773,9407],[-11,-1],[4,14],[0,14],[15,-9],[-8,-18]],[[8863,9458],[23,-11],[6,-10],[20,-4],[1,17],[14,11],[8,-1],[24,-19],[14,-4],[15,5],[10,-3],[39,-21],[-18,-8],[-1,-19],[-10,-8],[-9,-2],[-16,3],[-15,7],[-11,15],[1,8],[14,9],[-1,7],[-18,1],[-7,-14],[3,-13],[12,-18],[23,-6],[0,-8],[-18,-1],[-13,-4],[-14,12],[-20,-6],[-29,-6],[-6,10],[-10,-1],[2,-8],[-6,-11],[-33,6],[-7,5],[-3,10],[-18,11],[-8,16],[16,2],[-7,11],[-3,14],[14,3],[-4,13],[16,6],[3,6],[23,6],[4,-8]],[[7674,9473],[3,-11],[-14,0],[-16,4],[0,5],[27,2]],[[9145,9497],[-22,-1],[11,8],[11,-7]],[[6893,9521],[8,0],[13,-18],[-5,-15],[-13,-17],[-10,-1],[-21,-11],[-27,-11],[-27,-7],[-53,-19],[-8,0],[-21,-11],[-6,1],[-34,-22],[-7,-20],[-8,-8],[-10,-2],[-1,-7],[-19,-1],[-3,-9],[-15,-7],[5,-11],[-16,-9],[-2,-9],[-6,-4],[2,-9],[-17,-17],[-2,-8],[-10,-10],[-9,-4],[-22,6],[-10,-1],[-11,8],[-15,-4],[-12,16],[-5,12],[10,10],[14,4],[-2,7],[10,7],[16,1],[-2,12],[-8,2],[13,10],[-5,10],[10,0],[0,13],[18,6],[-13,5],[-7,12],[15,2],[7,-6],[7,8],[-3,5],[8,8],[19,-5],[-5,14],[18,5],[2,7],[31,18],[10,-1],[14,13],[16,1],[7,11],[15,3],[13,-5],[19,2],[5,-5],[21,10],[9,-2],[22,12],[10,-1],[12,8],[4,7],[33,19],[18,5],[16,-3]],[[7679,9529],[-13,-7],[-8,6],[16,7],[5,-6]],[[7492,9535],[-12,-1],[-5,5],[13,6],[4,-10]],[[8139,7556],[-1,0],[-1,-1]],[[8041,7532],[-1,3]],[[7998,7581],[-2,0],[-1,1]],[[7976,7587],[-1,2],[-2,1]],[[7973,7592],[0,1],[-1,1],[-1,2]],[[7971,7600],[-5,6],[-4,3]],[[7945,7609],[0,1]],[[7945,7610],[0,2]],[[7838,7645],[1,4],[0,2]],[[7836,7675],[2,6]],[[7812,7694],[-21,16]],[[7758,7724],[-2,5],[-7,4]],[[7749,7733],[-1,4]],[[7729,7704],[0,-1],[-1,-4]],[[7728,7691],[-3,1]],[[7721,7684],[-2,-5]],[[7725,7627],[3,-1],[1,-2],[1,-1]],[[7730,7623],[-1,-17]],[[7698,7568],[-1,2],[0,1],[-2,1]],[[7682,7576],[-1,1],[0,2],[-2,1],[-3,-3]],[[7651,7578],[0,1],[-1,0],[-1,2],[-1,1]],[[7490,7580],[-1,-1]],[[7491,7568],[-1,-3]],[[7484,7560],[-1,-1],[0,-2],[-1,-1],[-4,3]],[[7476,7557],[0,-7]],[[7461,7549],[-7,-1]],[[7449,7546],[-1,-1]],[[7443,7526],[-4,0]],[[6367,7322],[-3,-8],[-7,-7],[-4,1],[0,-15],[-4,4],[-3,-3],[-6,-11],[-10,-6],[-8,1],[-1,-10],[-8,-28],[-2,-15],[-4,-14],[-3,0],[-7,-9],[0,-15],[9,-7],[1,-6],[5,-4],[7,-31],[-3,-15],[3,-7],[-1,-32],[6,-11],[1,-12],[4,-9],[12,-34],[3,-14],[5,-5]],[[6110,7111],[-7,13],[-11,24],[-6,9],[-4,9],[-11,13],[-11,5],[-2,7],[-5,8],[-13,5],[-3,7],[-2,11],[-2,4],[-10,9],[-4,-1],[-3,5],[6,4],[-1,12],[2,4],[9,-9],[13,1],[3,3],[-4,18],[6,9],[3,19],[9,9],[5,-8],[3,6],[-7,7],[-5,12],[-8,7],[1,10],[5,1],[7,7],[3,7],[11,5],[8,10],[5,-2],[0,18],[-5,2],[-4,-7],[-9,-4],[-11,-2]],[[6061,7378],[0,13],[1,15],[3,8],[10,5],[4,13],[15,-3],[10,1],[2,21],[4,11],[-5,22],[-5,0],[4,22],[-2,9],[6,2],[1,6],[5,8],[1,7],[-3,9],[2,9],[-4,1],[-5,-4],[-5,5],[-1,7],[-10,4],[-1,6],[-7,-4],[-2,5],[-15,9],[-9,-5],[-2,6],[-6,5],[-3,10],[0,5],[-5,10],[-6,-4],[-8,-2],[-7,-6],[-7,4],[-4,-2],[-5,10],[-7,0],[-4,-6],[-4,3],[-4,9],[-1,8],[2,5],[-3,16],[-6,13],[-1,6],[-3,3],[-6,-4],[-4,4],[-6,3],[-3,7],[-5,23],[7,2],[1,8],[-9,15],[-1,10],[-7,14],[-16,1],[-8,-9],[-6,0],[-5,5],[-5,-2],[-1,-11],[-6,-7],[-6,0],[-3,4]],[[5880,7748],[-3,8]],[[5877,7756],[0,15],[-3,7],[2,2],[0,1]],[[5867,7802],[4,6],[0,6]],[[5878,7816],[1,-1],[2,0]],[[5894,7809],[0,1]],[[5898,7814],[2,1]],[[5908,7825],[0,2],[0,5]],[[5908,7832],[-1,2],[-1,1],[0,1]],[[5885,7857],[-4,3]],[[5881,7860],[2,4],[1,8]],[[5870,7889],[-4,16]],[[5859,7942],[2,5]],[[5860,7952],[0,1]],[[5860,7954],[-1,1],[0,1]],[[5857,7959],[0,4],[-2,2]],[[5855,7965],[1,5]],[[5856,7970],[2,1],[0,3]],[[5858,7985],[-1,3]],[[5849,7992],[0,1],[0,2]],[[5818,7994],[-3,7]],[[5815,8001],[1,7],[-1,5]],[[5811,8015],[-5,3]],[[5782,8028],[1,5],[0,1]],[[5782,8044],[0,4]],[[5781,8054],[0,1]],[[5781,8055],[-1,1],[-2,2],[-1,1]],[[5777,8059],[-2,15]],[[5767,8079],[2,6],[1,6],[2,8]],[[5772,8099],[1,4],[0,6]],[[5764,8126],[-5,0]],[[5778,8266],[1,7],[-2,9],[11,-3],[1,11],[4,1],[8,-3],[8,15],[18,-4],[9,-5],[3,9],[-8,2],[-2,10],[-5,2],[-7,-2],[-9,1],[-9,12],[-5,3],[3,24],[-9,-4],[-5,-9],[-11,1]],[[5856,9007],[16,-7],[8,2],[1,8],[9,8],[13,-11],[11,-2],[5,-9],[-6,-5],[-11,3],[-12,-1],[15,-9],[2,1],[24,-5],[2,-8],[23,-1],[6,-4],[17,-3],[2,5],[17,-7],[42,-32],[6,-2],[11,-14],[7,-5],[3,-6],[6,1],[24,-21],[10,-2],[14,-11],[12,-12],[6,-3],[-1,-16],[4,-3],[-1,-12],[7,-6],[0,-12],[-5,-14],[-12,-15],[-8,-14],[-10,-9],[-21,-11],[-22,-5],[-17,2],[-11,4],[-7,6],[-11,4],[-13,1],[-29,9],[-14,13],[-8,-4],[-14,12],[-7,-1],[-7,8],[-2,-6],[-18,18],[-1,8],[-12,5],[-2,-7],[7,-5],[-2,-6],[13,-16],[6,0],[15,-17],[-3,-10],[10,-4],[15,-10],[10,-17],[1,-12],[-4,-1],[-1,-11],[-10,-11],[12,-25],[-1,-5],[5,-8],[-4,-8],[5,-10],[-4,-4],[3,-7],[9,-6],[4,-6],[11,4],[5,-11],[7,-5],[2,-8],[11,-6],[13,-2],[3,-6],[9,0],[0,5],[11,5],[2,7],[-4,12],[2,7],[-9,8],[-9,-6],[-6,3],[-11,21],[-5,3],[0,13],[7,4],[2,14],[3,1],[20,-11],[2,-7],[7,-5],[9,0],[4,-4],[12,-4],[10,-7],[7,-7],[14,6],[4,-5],[9,2],[-3,12],[-1,12],[-7,11],[-12,24],[4,14],[12,9],[15,19],[15,5],[14,17],[10,17],[12,-6],[3,-4],[14,3],[4,-8],[7,-3],[11,-15],[2,17],[7,15],[3,11],[-3,8],[3,10],[-8,14],[-12,7],[1,9],[6,17],[6,49],[-2,5],[-23,20],[4,4],[14,-8],[37,-1],[18,-7],[2,-9],[14,-13],[5,-21],[-20,-5],[-18,-3],[-1,-10],[-8,-4],[-3,-7],[1,-9],[18,-11],[7,-20],[5,-4],[13,4],[2,-5],[10,2],[22,12],[-1,14],[2,10],[5,7],[-3,9],[5,6],[7,2],[18,1],[-2,12],[8,0],[15,9],[21,17],[10,11],[5,-2],[10,4],[7,6],[14,4],[7,-3],[-5,-7],[7,-5],[9,10],[-6,11],[8,10],[18,11],[18,6],[-10,-25],[5,-12],[0,-7],[-8,-4],[-9,1],[-2,-7],[16,0],[12,-3],[6,7],[5,-8],[6,0],[2,15],[13,12],[11,2],[5,4],[7,-2],[11,1],[6,-5],[14,0],[7,12],[9,1],[2,7],[25,11],[15,-17],[-10,-10],[1,-16],[16,-5],[8,10],[-5,14],[19,4],[13,17],[-3,14],[-7,0],[-2,13],[-10,17],[2,7],[12,0],[3,13],[5,1],[13,-5],[21,-4],[13,0],[22,-5],[20,-9],[11,-7],[9,-11],[16,-8],[11,-3],[0,-5],[8,-2],[16,-11],[8,-1],[2,-7],[24,-22],[6,-3],[7,-14],[15,29],[5,17],[-17,7],[-10,18],[-5,19],[-9,7],[-24,11],[3,18],[10,2],[3,6],[-7,9],[5,18],[-1,5],[2,17],[-5,4],[-12,-5],[-2,8],[6,9],[-5,5],[7,16],[11,4],[18,12],[14,22],[5,15],[6,35],[4,13],[8,10],[25,4],[13,-1],[25,2],[26,-9],[9,-9],[-2,-3],[3,-25],[-7,-15],[-2,-10],[-5,-5],[0,-9],[-4,-8],[-10,-6],[0,-8],[7,-10],[16,-13],[-1,-7],[5,-9],[-4,-18],[3,-15],[-9,-8],[5,-11],[-4,-8],[6,-15],[-6,-14],[4,-9],[0,-16],[-4,-7],[2,-18],[8,-11],[19,-15],[3,-6],[-15,-20],[3,-25],[-12,-18],[-5,0],[-5,-10],[-1,-11],[-9,-1],[5,-10],[-14,-19],[-6,-2],[2,-16],[-14,-2],[-3,-7],[-8,-1],[-8,3],[-13,22],[-9,-6],[-6,3],[-7,0],[-1,-15],[8,-7],[9,-3],[5,-5],[13,-5],[22,2],[14,-3],[9,-7],[10,6],[1,11],[3,11],[13,3],[1,6],[14,6],[4,8],[6,5],[3,16],[-2,5],[6,9],[17,19],[3,18],[-4,17],[-10,15],[4,11],[-1,11],[5,6],[16,7],[33,8],[6,-1],[2,-15],[18,-17],[-1,-10],[-3,-8],[5,-3],[-4,-18],[3,-5],[-6,-10],[16,-11],[10,-6],[2,9],[-5,5],[-13,4],[2,24],[6,8],[10,1],[-4,18],[-7,9],[-1,19],[-12,7],[-9,2],[-5,8],[-9,1],[-10,7],[-15,2],[-12,-10],[-10,-3],[-13,4],[-8,-4],[-6,7],[4,17],[-11,24],[4,8],[3,17],[-1,6],[8,9],[9,15],[0,11],[-10,12],[-11,30],[-15,13],[12,15],[2,12],[11,7],[11,3],[17,10],[5,18],[-3,24],[-7,9],[6,5],[9,-4],[11,-20],[-3,-5],[4,-16],[-6,-7],[-2,-11],[-4,-3],[-1,-15],[6,-6],[1,-9],[-8,-10],[3,-4],[23,-8],[45,-6],[6,-13],[13,-5],[4,5],[-3,11],[-7,-1],[1,11],[-12,6],[-5,-4],[-12,5],[-5,5],[-10,3],[-11,7],[-8,26],[9,5],[17,3],[17,-15],[15,4],[3,8],[-8,9],[-10,-4],[-2,8],[7,3],[9,10],[12,3],[25,-1],[17,-13],[23,-9],[-6,-3],[17,-13],[3,-7],[11,-4],[12,0],[19,6],[13,-7],[-14,-21],[-15,-8],[2,-14],[-4,-5],[5,-17],[-5,-11],[6,-2],[1,15],[6,11],[13,-6],[0,-9],[-4,-13],[0,-11],[-9,-12],[0,-6],[6,-6],[8,4],[-7,13],[15,1],[8,10],[-11,40],[-6,15],[11,18],[2,8],[-7,17],[-16,4],[-17,14],[3,3],[-2,10],[-17,5],[-11,1],[-14,13],[-2,14],[6,13],[-3,9],[-6,3],[0,14],[-7,2],[16,19],[19,5],[12,2],[42,-1],[7,3],[18,1],[12,4],[6,-4],[11,0],[5,8],[33,6],[8,-3],[-2,-6],[-13,-8],[-9,-8],[27,4],[7,15],[-5,3],[-13,23],[-8,5],[-13,0],[12,15],[1,7],[-16,12],[23,-2],[9,5],[1,7],[8,6],[-1,7],[-13,3],[4,5],[24,-4],[11,5],[9,12],[14,8],[17,0],[6,9],[18,2],[7,4],[12,-2],[20,7],[43,9],[-1,6],[-19,2],[24,12],[29,-1],[18,3],[20,-4],[20,-14],[22,12],[26,11],[17,-2],[2,-5],[18,-3],[-9,13],[-14,6],[-5,12],[17,-4],[38,5],[7,5],[3,11],[-10,5],[2,10],[8,9],[26,22],[20,10],[9,8],[11,-2],[12,8],[18,-2],[8,-9],[10,-3],[15,2],[3,-10],[-14,-14],[-16,-5],[-1,-6],[26,2],[20,-6],[9,2],[11,-3],[6,-8],[-10,-7],[-13,-18],[11,-3],[16,-1],[11,9],[-1,8],[20,-1],[18,3],[20,-5],[9,4],[33,-5],[18,-15],[13,-8],[2,-7],[14,0],[6,-8],[2,-16],[10,-5],[-8,-14],[-8,-9],[11,-5],[-3,-13],[-20,-21],[-21,-8],[-11,-16],[-8,3],[-14,-11],[-20,-13],[-6,1],[-3,-13],[-12,-9],[-13,-4],[-14,-18],[-20,-11],[-17,0],[-1,-6],[-13,-16],[-12,1],[-21,-40],[22,15],[-2,9],[5,7],[11,-4],[7,3],[20,-1],[18,11],[23,5],[14,4],[33,17],[-7,7],[-10,-5],[-14,0],[-7,5],[13,17],[16,-2],[34,-18],[16,-2],[12,3],[8,10],[8,-15],[-7,-17],[21,6],[6,5],[16,-1],[20,9],[33,-3],[24,-6],[27,0],[2,-7],[-4,-15],[3,-5],[12,-6],[24,-8],[25,-3],[11,-3],[9,3],[16,-1],[2,-5],[11,-1],[5,11],[15,-8],[5,5],[1,12],[5,5],[-6,9],[-2,14],[30,19],[11,-7],[13,-4],[13,-9],[15,2],[5,-10],[14,3],[0,6],[30,-5],[13,-17],[13,-1],[15,-14],[-3,-6],[-12,2],[-17,-5],[-2,-6],[4,-2],[26,-5],[-3,-5],[-15,4],[-19,-3],[6,-7],[12,-6],[14,0],[10,-9],[1,-8],[-11,-11],[-26,10],[12,-19],[1,-8],[7,-8],[-1,-11],[10,-3],[4,-15],[8,-6],[3,-8],[11,-7],[4,-8],[16,-12],[9,-1],[9,9],[11,30],[9,27],[8,15],[7,-4],[10,-18],[14,-10],[14,-5],[17,4],[7,8],[26,7],[22,-8],[4,-4],[13,-7],[7,-12],[10,6],[-4,8],[11,14],[14,4],[8,-6],[5,-11],[7,6],[7,-3],[8,5],[-7,11],[-1,14],[-4,4],[9,18],[-9,4],[-10,-5],[-2,10],[11,14],[15,-1],[22,4],[4,11],[-10,8],[2,7],[19,-4],[4,-5],[19,-5],[9,1],[32,-4],[47,-8],[20,-6],[19,-10],[-31,2],[-10,0],[-11,6],[-6,-5],[-8,-14],[18,6],[51,4],[-12,-18],[-14,-15],[-6,4],[-15,-5],[-9,-10],[12,-3],[23,11],[29,37],[15,0],[18,-1],[16,-5],[18,-7],[13,-16],[-2,-6],[-8,-5],[-9,9],[-10,-10],[4,-5],[16,-3],[17,-11],[5,-7],[26,-5],[17,-20],[-4,-7],[18,-8],[11,0],[26,4],[9,5],[47,10],[45,-2],[26,-8],[20,-10],[13,-11],[9,-18],[2,-11],[-11,-27],[3,-6],[16,-10],[15,-2],[0,-13],[3,-13],[-2,-12],[9,-5],[8,-2],[-5,15],[1,11],[5,4],[3,5],[9,4],[5,7],[15,0],[11,5],[17,-2],[7,5],[12,-10],[11,-4],[23,2],[11,-5],[16,0],[8,-2],[21,19],[15,-15],[-1,-13],[3,-10],[15,-4],[16,-11],[1,-13],[5,-5],[20,4],[19,16],[-4,9],[1,9],[-5,6],[-5,15],[-8,-2],[-1,8],[10,6],[-2,12],[2,13],[20,-3],[19,-6],[22,-2],[2,-4],[14,-8],[2,11],[13,-7],[4,3],[29,-3],[11,2],[12,-7],[16,-2],[6,-6],[18,-4],[23,-12],[5,3],[11,-5],[-1,-10],[9,1],[8,-5],[-9981,-17],[8,-5],[6,0],[4,-6],[14,-6],[6,-8],[-2,-7],[18,-8],[3,-10],[9,-7],[4,4],[11,-7],[10,-9],[-2,-4],[8,-6],[13,-2],[-7,-10],[1,-4],[9,-5],[7,2],[-7,9],[3,5],[15,-11],[3,-23],[10,2],[-3,-24],[7,-20],[-8,-7],[15,-9],[-1,-18],[3,0],[5,12],[4,2],[5,-10],[4,7],[-14,11],[8,6],[-3,21],[-7,6],[20,3],[16,-13],[9,-2],[21,6],[6,-8],[10,-8],[-1,-5],[14,-12],[8,-11],[11,-7],[2,-6],[11,-3],[-5,-6],[-7,-3],[-11,-11],[1,-13],[-5,-5],[-8,-1],[-2,-9],[-6,4],[-15,-2],[-25,15],[0,-5],[8,-3],[0,-11],[7,-1],[-1,-14],[3,-12],[-7,-8],[-10,-5],[-3,-19],[9,-4],[2,-11],[-20,-11],[-24,12],[-2,10],[-16,12],[1,7],[-13,-4],[-11,2],[-5,9],[-4,2],[1,13],[-4,9],[0,11],[-30,15],[-7,-5],[-5,-7],[-24,0],[-7,5],[3,12],[-6,3],[-7,12],[6,15],[-3,5],[-12,1],[-3,-4],[-13,-2],[-1,-12],[3,-11],[12,-11],[1,-7],[-7,-10],[-1,-11],[-4,-7],[-9,-5],[9993,-4],[-8,-14],[-7,-1],[-13,-12],[-29,5],[-12,9],[-8,-4],[-5,5],[-17,2],[3,-8],[11,-13],[7,9],[10,5],[4,-1],[-3,-14],[2,-11],[6,-8],[9,-7],[8,11],[4,-8],[1,-18],[7,-6],[2,-19],[-2,-12],[-3,-5],[21,-15],[2,-6],[-5,-10],[3,-6],[5,-3],[2,-11],[-6,-13],[-7,-2],[0,-11],[-18,7],[-12,7],[-21,3],[1,8],[-8,6],[-3,-5],[2,-11],[-12,-4],[-8,-13],[-18,-9],[-13,-12],[-10,-5],[-9,-10],[-10,3],[-4,-10],[-5,-1],[-7,4],[-2,-13],[-5,-4],[-5,-9],[-5,-3],[-8,-11],[-7,2],[2,-12],[-8,-6],[-3,-6],[-12,-5],[-1,-6],[-6,1],[-1,-8],[-5,-6],[-10,-3],[-7,-6],[3,-6],[-5,-5],[-3,-22],[-3,-4],[-9,10],[-6,16],[-2,11],[-14,10],[-15,-1],[-4,3],[-11,-2],[-29,-17],[-21,-35],[-5,-1],[2,21],[3,7],[-1,12],[-5,5],[-10,-13],[-16,-14],[2,-6],[-5,-11],[-6,-4],[-2,12],[-7,11],[-4,-1],[0,-7],[-5,-2],[-4,5],[-10,1],[1,-11],[-5,0],[-4,-6],[1,-13],[-6,-9],[3,-6],[0,-10],[-6,-1],[-5,-12],[5,-10],[-7,-6],[-12,-16],[-6,-18],[-5,-23],[1,-12],[5,-7],[7,-3],[2,11],[5,2],[8,-9],[6,-2],[3,-7],[-7,-18],[-7,-6],[-1,-17],[2,-6],[-2,-10],[0,-11],[5,-4],[3,2],[6,-3],[-2,-7],[3,-17],[1,-13],[-7,-6],[-2,-7],[-6,4],[-5,12],[3,9],[4,6],[-4,4],[-7,-4],[-3,-4],[6,-8],[-13,-10],[-10,-37],[-1,-17],[2,-14],[9,-23],[0,-6],[-11,-18],[-12,-2],[-7,7],[-9,-4],[-9,-11],[-5,-10],[-5,-5],[-4,-14],[-2,-13],[4,-16],[-2,-21],[3,-1],[0,-11],[-11,10],[-17,-13],[-8,-13],[-5,13],[-4,-6],[6,-4],[-3,-13],[3,-4],[-3,-9],[1,-20],[-7,-18],[0,-5],[-15,-31],[-6,-4],[-2,-10],[-12,-16],[-9,-17],[2,14],[-2,8],[-5,7],[-1,16],[0,19],[-1,32],[-2,13],[1,9],[-4,5],[-4,24],[-3,31],[-2,36],[-6,40],[-3,34],[-2,28],[4,54],[2,5],[4,34],[6,18],[7,6],[12,21],[5,15],[-2,17],[-3,8],[5,6],[7,-6],[6,3],[3,10],[6,3],[8,0],[7,7],[9,13],[10,10],[21,37],[-1,6],[4,9],[12,15],[5,15],[9,4],[13,19],[7,14],[10,10],[1,15],[8,9],[8,6],[7,1],[4,8],[12,3],[12,9],[-8,6],[8,13],[5,4],[2,8],[-2,6],[-5,3],[3,12],[5,3],[2,42],[8,6],[4,7],[5,1],[7,-4],[5,4],[-11,7],[-5,8],[-6,1],[-21,-7],[-10,-5],[-1,-15],[-4,-6],[2,-14],[-5,-16],[10,-7],[0,-4],[-12,-6],[1,7],[-14,0],[-12,-21],[-11,-9],[-4,-8],[-8,-11],[-7,-6],[-2,-11],[-13,-4],[-6,9],[7,12],[-6,4],[-7,-7],[-3,3],[4,9],[-2,11],[2,8],[12,28],[-3,12],[-7,-6],[-2,-7],[-11,-7],[-2,10],[-4,7],[-12,1],[-2,-6],[-17,0],[-5,-6],[-8,3],[-9,0],[-3,-5],[-9,-4],[-3,-8],[-7,-1],[-1,-15],[-2,-8],[-5,-4],[-10,-15],[-3,-14],[-16,-16],[-6,-8],[-5,-3],[-10,-20],[-5,-2],[2,-12],[-7,-2],[2,-16],[-6,-10],[5,-5],[5,8],[6,-1],[4,-5],[5,2],[6,-11],[0,-12],[-11,1],[-3,-3],[-5,5],[-4,-8],[-9,-4],[-7,9],[-12,5],[-1,-11],[-6,-1],[-5,-12],[-10,3],[-4,5],[-7,-3],[-4,-8],[-9,-1],[-10,0],[-3,17],[6,6],[9,-3],[9,2],[6,5],[-5,5],[-5,-2],[-5,2],[-4,13],[-9,5],[-10,0],[-3,-7],[-9,7],[-2,4],[-23,11],[-13,-9],[2,-8],[-9,-9],[3,-3],[-6,-9],[-10,2],[-1,9],[-5,2],[-8,-2],[-9,-6],[-1,-5],[-8,7],[-15,4],[-8,5],[-3,-4],[-1,-9],[-7,-10],[-6,11],[4,8],[-8,2],[-19,-4],[-15,0],[-17,2],[-10,-6],[-9,3],[-16,-9],[-9,-8],[-9,-13],[-5,-12],[-5,-11],[-11,-12],[-8,-5],[-6,-14],[-5,-25],[-15,-11],[-5,-14],[-6,-4],[-4,-10],[-6,-2],[-8,-9],[0,-6],[-7,-6],[-11,-25],[-4,-7],[3,-7],[-9,-5],[-2,-10],[-4,-7],[-3,-1],[-23,-32],[-5,-3],[-7,-10],[-3,-9],[-10,-13],[-9,-6],[-9,-14],[-1,-5],[3,-8],[10,-4],[3,-6],[14,3],[8,-2],[6,4],[3,-4],[-4,-13],[3,-7],[-1,-18],[-3,-3],[0,-15],[2,-3],[5,6],[7,0],[3,13],[-4,1],[-3,7],[11,12],[7,-3],[-7,-17],[3,-4],[6,-2],[-5,-9],[-3,-11],[-5,-1],[1,-9],[16,4],[11,12],[2,13],[5,4],[-1,-15],[-4,-7],[-4,-11],[7,1],[5,13],[3,18],[-1,24],[12,-8],[6,0],[11,7],[1,-6],[5,-6],[7,-5],[2,-6],[-2,-6],[8,-16],[11,-13],[9,-13],[3,0],[2,-11],[-7,-12],[-6,-3],[8,-7],[1,-19],[-5,-10],[1,-6],[10,-14],[-6,-9],[4,-7],[-7,-9],[-2,-10],[-6,-5],[0,-13],[-5,-7],[-2,-28],[-3,-4],[-3,-24],[3,-15],[0,-14],[3,-6],[-4,-6],[-2,-8],[3,-8],[1,-13],[-6,-25],[0,-6],[-5,-35],[0,-15],[-4,-8],[-8,-12],[-2,-5],[-8,-14],[-3,-8],[-2,-9],[-7,-25],[-2,-1],[-10,-23],[-5,-23],[0,-8],[-4,-7],[-3,-16],[-9,-20],[-3,-11],[-7,-12],[-7,-18],[-9,-13],[-2,-8],[-3,-4],[-3,-10],[-5,-7],[-7,-23],[-6,-5],[-3,-10],[-4,-7],[-1,-9],[-2,-3],[-1,-12],[-4,-8],[-4,-3],[-2,-12],[-5,-4],[-10,-16],[-11,-11],[-8,-14],[-9,-3],[-8,-6],[-4,-5],[-5,8],[-5,-3],[-1,8],[-5,-2],[-5,7],[-3,-4],[2,29],[-7,-8],[-5,-7],[-2,2],[4,12],[-7,1],[0,-5],[-7,-15],[-1,-10],[-5,-7],[-4,-9],[-13,1],[5,-10],[-4,-16]],[[7858,9686],[-8,-19],[20,8],[18,1],[11,-10],[3,-9],[19,-4],[6,-18],[-17,-16],[-17,-1],[-13,-5],[-23,-3],[-46,-1],[-6,-5],[-27,-12],[-14,-1],[-7,7],[21,21],[-1,6],[7,17],[22,27],[0,6],[14,16],[16,1],[5,6],[16,-4],[1,-8]],[[7118,9713],[37,-8],[-25,-4],[-15,6],[3,6]],[[7524,9744],[43,-3],[6,-4],[30,-4],[-2,-7],[-29,-11],[-19,0],[5,10],[-24,6],[-10,13]],[[6659,9735],[-9,-1],[-17,7],[20,6],[6,-12]],[[7715,9748],[8,-7],[-8,-7],[14,-5],[8,8],[18,5],[23,-16],[-9,-19],[1,-14],[-5,-7],[10,-22],[-14,-10],[-46,-1],[-14,3],[-13,10],[-24,0],[-14,8],[-11,-5],[-19,15],[-1,17],[-16,4],[1,9],[11,8],[3,9],[18,12],[16,3],[24,-1],[34,6],[5,-3]],[[6389,9742],[-14,8],[20,5],[-6,-13]],[[6585,9763],[1,-16],[-4,-4],[-29,1],[2,18],[30,1]],[[6481,9767],[4,-16],[-23,0],[-2,8],[8,8],[13,0]],[[6646,9763],[-30,-4],[-8,-8],[-19,5],[1,10],[-9,7],[42,-1],[23,-9]],[[6574,9792],[7,-6],[-31,-2],[-1,9],[25,-1]],[[6329,9797],[11,1],[14,-12],[-20,0],[-14,6],[-15,-14],[-25,-8],[-17,6],[-11,9],[51,7],[17,8],[9,-3]],[[6729,9795],[-6,-9],[-28,-19],[-20,7],[-19,-5],[-11,7],[0,8],[12,14],[25,-1],[41,4],[6,-6]],[[6638,9796],[-16,-4],[-16,5],[25,6],[7,-7]],[[6537,9800],[18,-4],[-31,-6],[-13,9],[26,1]],[[6388,9800],[20,2],[28,-15],[-21,-10],[-34,-3],[-7,-10],[-18,2],[-5,-5],[12,-9],[-18,-7],[-23,2],[-14,3],[-13,8],[22,3],[21,7],[-5,9],[23,-3],[22,10],[-17,10],[27,6]],[[7225,9807],[6,-7],[-34,-4],[3,11],[25,0]],[[6702,9808],[-9,-4],[-25,7],[15,6],[30,1],[-11,-10]],[[6560,9819],[14,-1],[44,-13],[-12,-6],[-17,4],[-29,16]],[[6542,9811],[13,2],[47,-16],[-18,-9],[-10,8],[-25,4],[-11,7],[-27,4],[6,8],[25,-8]],[[6797,9825],[14,-5],[6,-16],[-28,-13],[-36,-4],[-17,12],[17,9],[25,1],[7,13],[12,3]],[[7536,9816],[-37,2],[2,7],[39,-1],[-4,-8]],[[7665,9825],[16,-9],[12,-13],[23,-6],[5,-7],[-22,-5],[-5,-9],[5,-21],[-60,-7],[-37,-10],[-33,12],[-11,9],[-5,13],[22,3],[4,12],[-4,15],[9,8],[51,10],[6,9],[19,2],[5,-6]],[[6577,9838],[25,-4],[-35,-12],[-17,11],[27,5]],[[6605,9848],[17,-4],[-3,-7],[-43,5],[7,7],[22,-1]],[[6743,9861],[25,-1],[-6,-8],[-21,2],[2,7]],[[6638,9863],[-31,-2],[8,9],[29,2],[-6,-9]],[[5846,3921],[2,-18]],[[5848,3903],[2,-3]],[[5850,3900],[2,-2],[1,0]],[[5853,3898],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[1,-3],[1,-4],[1,0]],[[5856,3884],[-1,-21]],[[5855,3863],[1,-6],[0,-4],[1,-1],[0,-1],[0,-2],[-1,-9],[0,-3],[0,-5],[0,-1],[0,-1],[0,-1]],[[5856,3829],[-1,-1]],[[5855,3828],[-1,0],[0,-1],[-2,2],[-1,0]],[[5851,3829],[-1,-3],[-1,0]],[[5849,3826],[-1,0]],[[5802,3813],[0,2],[-1,1],[0,8]],[[5808,3837],[1,3],[0,4]],[[5817,3890],[0,0]],[[5819,3895],[2,3]],[[5821,3898],[2,1],[5,3],[2,-10],[2,1],[5,8],[6,21],[3,-1]],[[4752,5863],[-8,0],[-11,0],[-17,0],[-25,0],[-14,0]],[[4666,5863],[0,-76],[0,-65],[0,-38]],[[4527,5515],[-2,-8],[2,28]],[[4755,5944],[1,5]],[[4755,5983],[3,0]],[[6345,6046],[1,-3],[2,-15],[2,-5],[0,-7],[7,-21],[-2,-6],[2,-10],[3,1],[3,-5],[4,-1],[-2,-8],[4,-7],[1,-10],[2,-4],[3,4],[5,-17],[8,-10],[0,-8],[1,-15],[5,-7],[0,-13],[-1,-8],[-5,3],[4,-15],[0,-5],[2,-11],[1,-7],[3,-10],[3,-2],[2,-11],[1,-17],[4,-13],[1,-7],[2,-2],[2,-8]],[[6419,5760],[4,5],[4,-10],[-2,-6],[7,-11]],[[6443,5361],[-26,-9],[-36,-13],[-17,-6],[-2,-2],[-25,-31],[-16,-49],[-4,-27],[-7,-9],[-6,0],[-6,21],[-1,1],[-11,-3],[-25,6],[-7,8],[-14,1],[-7,-1],[-9,-5],[-9,0],[-4,8],[-3,4],[-3,0],[-7,-14],[-1,-29],[3,-11],[-2,-8],[-2,1],[-1,-10],[-3,-3],[-4,-8]],[[6188,5173],[0,7],[-2,7],[1,7],[-3,10],[-3,5],[0,9],[-6,12],[-1,20],[-5,15],[-11,18],[-3,13],[-4,19],[-1,8],[-2,7],[-2,3],[-2,7],[1,9],[-3,9],[1,8],[-3,4],[-1,13],[-2,3],[0,11],[-5,7],[0,8],[-1,6],[-3,0],[-3,13],[-7,11],[-6,12],[-4,-2],[-4,6],[-3,8],[-5,18],[1,3],[-6,13],[-4,18],[-2,9],[2,7],[-2,21],[-3,12],[2,26],[3,12],[-5,27],[0,7],[-4,8],[-1,8],[-2,10],[-3,24],[-3,5],[-1,10],[-3,7],[-8,14],[-6,6],[-5,10],[-4,-2],[-3,7],[1,6],[-9,29],[3,1],[1,7],[-1,17],[-4,9],[-5,23],[-3,8],[-2,0],[-2,7],[1,12],[-5,4],[-4,19],[-4,20],[-4,10],[-3,13],[-4,11],[-1,7],[-7,19],[-2,13],[-4,17],[-8,18],[-4,-3],[-7,1],[-1,5],[5,26],[-1,10],[2,11],[1,16],[2,22]],[[6054,6186],[0,0]],[[6033,6240],[-3,9],[-4,8]],[[6026,6257],[7,5]],[[6066,6284],[16,10],[1,1]],[[6083,6295],[4,8]],[[6024,5576],[0,-23],[3,-15],[3,-13],[1,-8],[-1,-8],[1,-9],[1,-13],[2,-13],[-2,-16],[1,-16],[0,-10],[1,-12],[0,-12],[1,-13],[1,-22],[3,-22],[3,-11],[4,3],[4,-9],[3,-3],[3,-8],[3,-16],[3,0],[5,-8],[3,-1],[2,-8]],[[5991,4907],[0,-1]],[[5946,4676],[-5,0],[-1,7],[1,12],[2,9],[0,15],[-2,10],[-12,25],[-3,8],[-6,6],[1,8],[-3,53],[2,7],[0,18],[2,20],[-13,0],[0,-15],[-18,0],[7,-21],[0,-34],[2,-9],[0,-4],[-13,-29],[-2,-13],[-6,-18],[-12,-30],[-2,-2],[-11,-3],[-8,17],[-13,22],[-11,-15],[0,-11],[-4,-11],[-6,-3],[-7,-8],[-5,-13],[1,-7],[-23,0],[-4,19],[-15,2],[-7,-1],[-11,-9],[-4,3],[-10,32],[-2,2],[-3,9],[-3,5],[0,11],[-2,5],[-10,-5],[-11,-4],[-2,-9],[-1,-14],[-5,-12],[0,-19],[-3,-12],[-1,-13],[-2,-12],[0,-9],[-5,-4],[-6,-11]],[[5671,4621],[-7,2]],[[5658,4622],[-3,2],[-3,-1]],[[5652,4630],[2,5]],[[5656,4664],[0,4],[0,6]],[[5634,4781],[2,10]],[[5636,4791],[0,1],[0,1]],[[5636,4793],[0,1],[0,2],[0,1],[1,4],[0,1]],[[5637,4802],[0,3]],[[5637,4805],[-1,11],[-4,0],[-4,8],[-2,5],[0,4],[-1,3],[2,22],[-3,4],[0,10],[-2,16],[-1,3],[0,1],[1,3],[1,8],[0,1],[-3,2],[-4,6],[-4,-7],[-3,0],[-2,3],[-1,5],[-1,2],[0,1],[1,3],[0,5],[3,11],[2,6],[3,4],[4,10],[0,3]],[[5618,4958],[-2,14]],[[5616,4972],[-2,5]],[[5614,4977],[0,6],[-1,2],[0,1]],[[5613,4986],[0,1],[0,2],[3,9],[1,3],[8,10]],[[5625,5011],[1,4],[-1,3]],[[5625,5018],[-2,2],[-1,16],[-1,3],[0,2],[0,3],[2,4],[6,3],[0,1],[1,1],[-1,0]],[[5629,5053],[0,4]],[[5629,5057],[0,4],[0,2],[0,1],[1,3],[1,6],[5,9],[1,7],[0,1],[1,9],[0,2],[-1,2],[-1,6],[0,2],[0,2],[0,2],[2,3],[2,6],[1,1],[1,0],[1,0],[4,-2],[8,5],[11,-2],[0,71]],[[5666,5197],[0,83]],[[5666,5280],[0,17],[0,17],[0,16],[0,17],[0,17]],[[5666,5364],[0,42],[0,18],[0,9]],[[5693,5496],[0,35]],[[5693,5531],[0,45]],[[5921,4601],[0,-7]],[[5964,4476],[0,-2]],[[5943,4301],[-2,-6],[-2,-6],[-3,-8],[-3,-7],[-2,-5],[-1,-2],[-1,0],[-5,0],[-2,0],[-1,1],[-1,1],[-3,7],[-8,-8],[-9,-2],[-1,0],[-5,-8],[-1,-1],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[-2,1],[-2,4],[-2,1],[-1,0],[0,1],[0,5],[-4,10],[0,-1],[-2,-6],[-1,-1],[-3,-1],[-1,-3],[-6,9],[-1,1],[-3,0],[-1,0],[-1,-3],[0,-1],[-4,-4],[-2,-9],[-1,-4],[0,-1]],[[5762,4362],[-2,5]],[[5757,4396],[0,1],[0,1]],[[5756,4399],[0,4],[-2,5]],[[5753,4412],[-4,6]],[[5732,4451],[-1,3],[-1,2]],[[5732,4470],[0,2],[0,1]],[[5702,4547],[-1,9]],[[5670,4603],[1,7],[2,3]],[[5672,4622],[-1,-1]],[[4545,4886],[-5,-2],[-3,1]],[[4535,4883],[-2,7],[1,11],[-1,18],[1,4],[0,12]],[[4540,4973],[-5,13],[-2,24],[-2,6],[-2,12],[-3,7],[-4,14],[-4,6],[-1,5],[6,9],[8,22],[4,17],[5,22],[1,9],[0,8]],[[4585,5192],[9,-1],[3,0]],[[4656,5063],[3,-5]],[[7887,4098],[0,-5],[-3,-4],[-6,3],[1,7],[4,3],[4,-4]],[[3953,124],[7,-5],[7,1],[15,-5],[-1,-10],[8,1],[3,-3],[1,-7],[5,-6],[3,-8],[2,-15],[-6,-7],[-6,10],[-4,15],[-5,1],[-14,19],[-6,-2],[-1,10],[-9,1],[1,10]],[[4842,2857],[0,-6],[-3,-2],[0,5],[3,3]],[[9445,3173],[9,-12],[5,-8],[-2,-5],[-7,16],[-2,-2],[-4,4],[1,7]],[[9612,3233],[0,-8],[-4,0],[-2,-7],[-3,4],[4,11],[5,0]],[[9481,3265],[4,-3],[7,-11],[2,-3],[8,0],[5,-16],[0,-12],[-5,1],[-9,7],[-1,3],[-6,9],[-1,14],[-6,4],[2,7]],[[9483,3323],[3,-14],[1,-11],[-5,8],[1,17]],[[9442,3321],[12,1],[4,-8],[4,-6],[0,-6],[3,-2],[1,-10],[-5,-5],[-5,3],[-4,6],[-5,-1],[-8,2],[-3,6],[-4,14],[1,16],[2,3],[7,-13]],[[9448,3353],[3,-2],[0,-8],[-5,5],[2,5]],[[9388,3385],[3,1],[0,-12],[-3,-5],[-3,6],[0,6],[3,4]],[[9371,3383],[-3,-4],[-2,4],[4,11],[2,-6],[-1,-5]],[[9466,3398],[5,-17],[-1,-7],[0,-9],[5,-9],[2,-14],[3,-21],[2,-5],[-2,-6],[-2,10],[-10,21],[-3,15],[-3,25],[2,3],[-4,12],[6,2]],[[9378,3410],[3,-3],[2,-7],[2,-12],[0,-6],[-6,5],[-3,17],[-2,2],[-7,-5],[-1,7],[3,2],[2,12],[3,5],[2,-3],[2,-14]],[[9365,3416],[-3,-1],[-3,10],[1,8],[3,2],[3,-8],[-1,-11]],[[9349,3455],[6,-14],[-4,-13],[-1,9],[-3,7],[-1,6],[3,5]],[[9405,3454],[1,1],[9,-17],[3,-7],[9,-6],[1,-3],[11,-22],[-1,-4],[1,-11],[-6,13],[-8,7],[-14,21],[-4,11],[-3,5],[1,12]],[[9327,3494],[-2,-7],[-2,3],[2,8],[2,-4]],[[9349,3521],[2,-2],[3,-7],[7,-9],[3,-6],[0,-10],[5,-10],[6,-8],[-3,-3],[-6,5],[-8,10],[-6,22],[-7,12],[1,9],[3,-3]],[[4650,4544],[2,-8],[-3,-1],[-9,6],[1,3],[8,2],[1,-2]],[[4690,4706],[2,-3],[2,-6]],[[4697,4684],[1,-4]],[[4700,4671],[3,-5]],[[4713,4590],[0,-4]],[[4707,4581],[0,-1],[-1,-4]],[[4705,4555],[-1,0],[-1,-2],[-2,-2]],[[4681,4494],[-10,17],[-14,13],[-5,4],[2,10],[-1,8],[-7,5],[-4,9],[-1,18],[-2,11],[-5,-4],[0,7],[-3,10],[3,1],[-2,17],[0,11],[2,7],[-4,4],[0,3],[0,1],[0,1]],[[2560,4960],[1,-10],[-4,-8],[-7,0],[-8,5],[-1,-2],[-7,3],[-13,17],[-8,1],[-4,3],[-4,-1],[-1,6],[-7,9]],[[2497,4992],[2,6]],[[2508,5013],[2,4],[3,2]],[[2513,5020],[-1,3]],[[2511,5026],[1,6]],[[2516,5034],[1,0],[0,-2]],[[5345,7147],[-1,3],[1,3],[1,-2],[-1,-4]],[[6200,4822],[7,-10],[0,-8],[3,-7],[2,-11],[5,-13],[12,-25],[3,-4],[6,-1],[4,3],[6,-1],[1,3],[7,11],[3,5],[4,1],[3,5],[6,8],[8,-7],[3,2],[3,-7],[4,-1],[5,5],[7,10],[3,3],[5,10],[5,7],[4,1],[5,-6],[13,3],[5,9],[9,4],[6,-6],[1,0],[1,0]],[[6359,4805],[0,-81]],[[6359,4724],[0,-48],[-17,-65],[-2,-7],[-1,-6],[-2,-7],[-5,-19]],[[6163,4283],[1,7]],[[6190,4308],[1,3],[0,2]],[[6359,4724],[0,33],[0,24],[0,16],[0,8]],[[6359,4805],[8,4],[8,7],[1,4],[8,1],[2,3],[4,0],[6,6],[4,7],[3,6],[1,10],[6,5],[7,-7],[7,-4],[-1,-13],[-4,-11],[-1,-11],[0,-11],[3,-2],[-2,-12],[1,-23],[1,-9],[3,-5],[3,0],[-1,-8],[-3,4],[-4,-1],[-5,-6],[-1,-16],[0,-6],[-2,-29],[1,-12],[-2,-9],[-3,-5],[-1,-10],[-6,-19],[-3,-15],[-1,-11],[-3,-12],[-3,-14],[-6,-12],[-1,-16],[-6,-30],[-6,-21],[-4,-15],[-4,-29],[0,-7],[-1,-12],[-11,-48],[-3,-7],[-3,-12],[-7,-22],[-4,-21],[-3,-11],[-10,-29],[-2,-9],[-14,-35],[-5,-15],[-5,-15],[-11,-26],[-6,-16],[-6,-9],[-16,-25],[-7,-7],[-12,-22],[-11,-24],[-6,-16],[-4,-6],[-9,-22],[-11,-28],[-9,-25],[-3,-8],[-11,-32],[-5,-13],[-6,-26],[-6,-24],[-3,-10]],[[3437,7370],[-2,-3],[-2,12],[4,-5],[0,-4]],[[5524,7294],[7,4]],[[5560,7309],[4,-11]],[[5564,7298],[1,-2],[2,-1]],[[5575,7280],[2,1],[-1,-11],[1,-5],[-1,-3]],[[5595,7234],[0,-2]],[[5595,7229],[-2,-1],[1,-4]],[[5597,7222],[0,-4]],[[5630,7176],[0,-5]],[[5630,7171],[-1,-1],[-2,-2],[0,-7]],[[5621,7138],[0,-1],[0,-1]],[[5624,7125],[0,-2]],[[5628,7113],[1,-1]],[[5636,7099],[1,-10]],[[5622,7070],[2,-5]],[[5624,7065],[0,-1],[-1,-4]],[[5623,7060],[-1,-7]],[[5622,7035],[-5,2]],[[5603,7051],[0,5],[1,2],[-1,2]],[[5598,7064],[-3,0],[-1,0]],[[5594,7071],[0,1]],[[5573,7092],[0,-5]],[[5532,7118],[0,2],[1,2]],[[5183,4004],[-2,-4],[-2,14],[2,9],[3,4],[3,-9],[-4,-14]],[[3410,4207],[0,4]],[[3410,4211],[0,1],[0,1],[1,2]],[[3410,4223],[0,1]],[[3409,4223],[-1,4]],[[3408,4233],[0,1]],[[3408,4234],[1,3],[-1,1]],[[3388,4284],[-1,12]],[[3391,4317],[2,15]],[[3393,4332],[0,1],[0,1],[-1,6],[-1,5]],[[3408,4363],[0,3],[0,3]],[[3407,4381],[2,5],[0,4],[3,7],[1,18],[2,10],[3,4],[8,-2],[2,-3],[8,-3],[8,-6],[4,12],[6,0],[9,-1],[3,-5],[2,6],[3,1],[7,-1],[9,-3],[12,-7],[1,-7],[-2,-18],[-2,-4],[0,-2],[-1,-4]],[[3492,4376],[-2,-8],[-2,-8]],[[3486,4339],[0,-1],[1,-1]],[[3490,4287],[4,-15]],[[3498,4259],[1,0]],[[3494,4226],[1,-5]],[[3495,4221],[0,-3],[0,-1]],[[3495,4212],[0,-1]],[[3494,4204],[0,-2]],[[3440,4159],[3,-6]],[[3446,4144],[0,-8]],[[3425,4143],[-3,10],[-1,7]],[[5626,7519],[-1,-6],[-2,-1],[-3,-20],[-5,-8],[-1,-1],[0,-1]],[[5614,7482],[1,-3],[-1,-3]],[[5614,7476],[0,-5]],[[5435,7298],[0,-1],[0,-3],[0,-1],[0,-2],[-1,0]],[[5423,7278],[1,-1],[0,-1],[1,-1],[1,-2],[-1,-14]],[[5413,7264],[0,-3]],[[5377,7262],[0,3],[7,4],[-2,11],[-5,5]],[[5377,7285],[1,11]],[[5374,7298],[-1,1]],[[5373,7299],[2,4]],[[5378,7310],[0,1],[0,1]],[[5371,7316],[0,3]],[[5371,7319],[0,1],[1,3]],[[5377,7330],[3,6]],[[5474,8112],[-1,-8],[-5,-22],[-6,-25],[-2,-16],[-5,-8],[0,22],[6,24],[3,1],[5,16],[2,14],[3,2]],[[5521,8148],[6,5],[3,-6],[-8,-8],[-1,-25],[-2,-9],[-8,-6],[-5,-1],[-4,8],[2,9],[-1,10],[9,21],[9,2]],[[5327,8177],[-2,-10],[-9,2],[5,7],[6,1]],[[5671,8721],[-6,-2],[-16,2],[-8,-7],[-7,6],[-13,-3],[-6,-15],[-6,-11],[-13,-1],[6,-8],[-2,-9],[-12,-23],[8,-25],[4,-2],[-10,-11],[-8,-11],[-2,-12],[-6,-13],[-5,1],[-21,-21],[-8,1],[-5,-7],[-7,-19],[-12,0],[-4,-11],[2,-8],[-11,-6],[-6,0],[4,-17],[-5,-6],[-15,-7],[6,-15],[-6,-20],[1,-15],[-8,-5],[3,-11],[-2,-6],[3,-12],[-2,-21],[4,-12],[-2,-6],[10,-3],[1,-10],[8,6],[2,-6],[8,-12],[4,0],[0,-11],[11,-9],[3,-9],[4,-3],[-6,-7],[-4,-14],[-12,-13],[-6,-2],[9,-16],[-9,-8],[-5,-12],[-7,9],[-1,-11],[-14,-15],[-12,-2],[6,-11],[-4,-3],[3,-16],[-4,-16],[-6,-7],[6,-9],[-2,-6],[2,-15],[-4,-8],[-2,-13],[2,-5],[-5,-25],[-7,-25],[-2,-12],[-5,-12],[-8,9],[-2,-2],[-23,-2],[-9,-14],[-4,-10],[0,-7],[4,-14],[-5,-10],[-8,3],[-7,-1],[-7,-5],[-10,4],[-2,13],[3,7],[-4,5],[-8,26],[6,11],[-6,11],[6,2],[3,7],[-2,8],[-4,0],[-4,12],[-6,7],[-4,16],[-3,18],[-5,7],[-3,14],[-3,3],[-1,8],[5,26],[-2,9],[-6,-5],[-5,7],[-5,1],[0,31],[-3,11],[3,10],[6,-7]],[[5891,2072],[-3,0]],[[5888,2072],[0,-6],[-1,-13],[0,-11],[0,-2],[0,-1],[0,-1],[-2,0],[-3,0],[-4,0],[-3,0],[-10,8],[-2,6],[-3,6],[-1,3],[0,1],[0,5],[-2,10],[-1,-2],[0,-1],[-1,0],[0,7],[-1,17],[1,6],[3,7],[2,6],[2,8],[1,8],[1,4],[0,2],[2,5],[3,6],[1,1],[1,0],[1,0],[3,-5],[3,-4],[6,-8]],[[5884,2134],[0,-1],[3,2]],[[3249,5292],[-2,0],[0,2]],[[6540,3666],[2,-4],[-1,-4],[-1,4],[0,4]],[[6001,6331],[0,1]],[[5994,6395],[2,2]],[[5998,6417],[1,3]],[[6001,6424],[6,7],[1,5]],[[6010,6441],[3,0],[0,3]],[[6013,6444],[1,1],[1,3]],[[6016,6452],[-1,6]],[[6012,6483],[-2,-1]],[[6010,6482],[-2,4],[-1,-3]],[[6000,6483],[-1,1],[-3,20],[0,13],[2,6],[-1,17],[-4,8],[1,21],[3,6]],[[5997,6575],[6,-7],[2,10],[4,5],[0,11],[4,3],[3,7],[-2,13],[2,18],[2,5],[8,-5],[2,-8],[6,1],[6,-1],[5,7],[5,2],[10,10],[10,-5],[3,-8],[4,-3],[7,1],[5,-3],[15,6],[12,11],[5,7],[9,8],[5,2],[9,-5],[8,1],[14,7],[5,10],[5,-6],[0,-8]],[[3005,5565],[4,0],[1,-5],[-3,2],[-2,3]],[[5666,5397],[0,-33]],[[5666,5280],[0,-33],[0,-50]],[[5629,5057],[0,-1],[0,-3]],[[5625,5018],[0,-7]],[[5613,4986],[1,-9]],[[5616,4972],[0,-7],[1,-3],[1,-3],[0,-1]],[[5637,4805],[0,-1],[0,-2]],[[5636,4793],[0,-2]],[[5045,4444],[-6,-3],[-7,-5]],[[7729,4585],[5,-8],[-1,-8],[1,-5],[-5,-7],[0,7],[0,21]],[[7779,4685],[0,-8],[-3,-3],[-1,10],[4,1]],[[7780,5456],[0,-5]],[[7810,5394],[1,-17],[0,-6]],[[7814,5363],[-3,-9]],[[7811,5338],[-2,-9],[-2,-3]],[[7807,5326],[0,-2],[-1,-4]],[[7806,5320],[1,-4]],[[7809,5312],[0,-1],[-1,-1]],[[7808,5307],[1,-3],[0,-6]],[[7804,5275],[-1,-10],[-1,-5]],[[7804,5257],[2,-4]],[[7807,5253],[1,-2]],[[7816,5269],[0,1],[1,0]],[[7821,5280],[1,2],[3,1]],[[7825,5283],[2,12]],[[7852,5276],[-1,3]],[[7851,5279],[1,1]],[[7884,5310],[4,2]],[[7894,5291],[0,-1]],[[7894,5290],[1,-7],[0,-2],[1,-2]],[[7927,5147],[-1,-4]],[[7934,5120],[-2,-15]],[[7932,5094],[-1,0],[0,-2],[-1,-1]],[[7929,5059],[1,-4],[0,-5]],[[7930,5045],[-3,-12]],[[7927,5033],[-6,-6]],[[7858,4833],[0,7],[-4,12],[-1,10],[-3,8],[-2,-5],[-2,5],[-5,3],[-2,9],[-4,12],[-4,3],[-3,10],[-4,2],[-1,-3],[-6,-2],[-10,4],[-4,-5],[-3,7],[2,8],[-1,6],[2,9],[-2,5],[2,7],[-1,7],[2,4],[-1,8],[-8,4],[-9,-3],[-1,2],[-7,-7],[-2,-11],[3,-7],[1,-7],[-3,-19],[-1,-12],[1,-18],[0,-7],[1,-6],[-5,-16],[-1,-17],[-2,-2],[-3,-13],[-2,-14],[1,-10],[-3,-6],[0,-15],[-7,-26],[0,-7],[-3,-6],[2,-10],[-1,-6],[0,-35],[4,-18],[-2,-5],[0,-7],[6,-2],[2,5],[4,3],[5,-1],[2,-14],[1,-33],[4,-16],[3,2],[2,-9],[3,-57],[-2,6],[0,11],[-3,1],[-2,-6],[1,-13],[3,-12],[2,-1],[1,-9],[3,-5],[3,4],[4,-15],[3,-2],[4,-7],[5,0],[5,3],[6,-5],[5,-24],[9,-17]],[[7781,4460],[-4,9],[-1,7],[-5,11],[-3,4],[0,17],[-3,3],[-1,7],[-5,6],[-2,21],[-4,9],[-3,-2],[1,9],[-4,15],[-3,-4],[-2,5],[0,10],[-4,12],[-4,-4],[-1,-12],[-4,6],[-2,21],[1,15],[4,24],[-1,9],[1,8],[3,22],[2,6],[-1,10],[2,8],[3,20],[1,9]],[[6970,6885],[-12,-15],[-6,4]],[[6932,6876],[-2,-1],[-1,-5]],[[6929,6870],[-4,-3]],[[6925,6834],[1,2]],[[6944,6837],[3,-1],[3,4],[0,-3],[-1,-2],[0,-1]],[[7005,6811],[1,-1]],[[7023,6822],[4,-1],[2,2]],[[7029,6823],[3,-1]],[[7080,6669],[-7,12]],[[7066,6681],[-1,0]],[[7065,6681],[-4,1]],[[7047,6668],[-1,2],[-2,0]],[[7044,6670],[1,4]],[[7045,6674],[1,1],[1,1],[1,1],[0,1]],[[7048,6678],[0,6]],[[7020,6666],[-2,-11]],[[6988,6711],[0,6]],[[6981,6717],[-2,4]],[[6978,6748],[-2,4],[-2,2]],[[6965,6756],[-2,-2]],[[6962,6753],[1,-1],[0,-1]],[[6950,6720],[-1,1]],[[6939,6695],[-1,0]],[[6937,6696],[-6,-1]],[[6928,6688],[-1,-1]],[[6927,6686],[-1,-2]],[[6924,6661],[-1,-1]],[[6914,6673],[-1,0]],[[6913,6673],[-2,2]],[[6911,6671],[-2,2]],[[6888,6648],[-6,18]],[[6882,6666],[1,9],[0,16],[7,20],[2,7],[3,3],[3,16],[-1,5],[-4,7],[-3,14],[-1,11],[4,11],[-2,11],[-11,0],[-2,11],[-7,4],[2,20],[2,5],[7,5],[9,-5],[7,-2],[5,2],[2,8],[0,12],[5,5],[0,7],[4,11],[-7,-3],[-2,5],[12,4],[4,-4],[3,3],[1,10],[-4,13],[4,5],[0,8],[3,6],[6,-12],[10,8],[8,9],[2,11],[2,0],[7,-15],[2,-9],[-11,-17],[0,-7],[4,-1],[2,-9],[3,-2],[7,3]],[[6829,6689],[-2,4]],[[6827,6693],[0,1],[-1,0],[0,-3]],[[6784,6592],[0,1],[-1,0],[-2,-1]],[[6779,6589],[-1,-3]],[[6778,6586],[0,-5],[-7,-2]],[[6752,6569],[0,-2],[0,-2]],[[6739,6525],[-1,0],[-1,1]],[[6709,6542],[-4,7]],[[6497,6677],[-2,29],[-1,21],[1,12],[0,23],[1,11],[3,16],[-3,9],[-4,2],[-2,10],[-3,4],[1,6],[-5,-1],[-9,5],[3,9],[5,2],[6,-5],[3,5],[-5,7],[-3,10],[4,12],[-3,4],[-4,-4],[-4,4],[-8,-4],[-4,8],[1,7],[-2,9],[1,15],[4,12],[-1,4],[3,22],[5,-17],[6,0],[4,-3],[5,3],[2,-11],[8,2],[4,5],[4,0],[-1,12],[2,2],[4,-8],[4,2],[3,9],[-4,17],[-8,10],[-7,14],[-1,14],[-2,11],[-2,14],[-5,5],[-11,-5],[-5,1],[-5,-7],[-3,-16],[2,-6],[0,-9],[-3,-12],[-7,9],[1,8],[-4,9]],[[6554,6963],[23,-2],[6,-3],[4,9],[-4,6],[-1,13],[-1,16],[5,6],[2,9],[5,6],[7,-1],[6,3],[4,22],[7,-2],[-2,9],[3,7],[6,-3],[3,10],[8,-17],[7,-1],[3,-12],[6,-6],[11,1],[5,-7],[-2,-7],[1,-11],[7,-10],[-6,-4],[3,-11],[-2,-6],[1,-9],[9,-11],[3,-2],[9,3],[3,-4],[4,2],[5,-5],[5,10],[5,-3],[6,-9],[3,-8],[2,-22],[4,-15],[4,-5],[3,-19],[0,-11],[4,-9],[25,-35],[6,-15],[11,-16],[6,0],[9,-16],[9,-9],[7,-12],[11,-15],[3,-1],[4,3],[10,-9],[2,-5],[7,-3],[3,-6],[-4,-12],[-1,-19],[1,-11]],[[8444,3328],[5,6],[7,5]],[[8469,3355],[5,13],[1,11],[14,7],[7,3],[5,-3],[5,2],[5,6],[3,-5],[9,7],[3,6],[3,-4],[3,2],[3,-7],[-8,-18],[-4,-5],[-8,-4],[-4,-11],[-7,-2],[-6,-10],[-3,0],[-5,-5],[-2,1],[-6,-7],[-5,-10],[-4,-5]],[[130,2482],[2,1],[1,-7],[-3,3],[0,3]],[[3308,4776],[-4,-12],[0,-12],[1,-11],[0,-16],[-5,-4],[-10,0],[-2,-1],[-3,7],[3,6],[3,0],[2,4],[-1,9],[0,12],[-4,11],[6,2],[1,2],[13,3]],[[3318,4812],[0,-6],[-7,-8],[0,5],[3,6],[4,3]],[[5303,6430],[4,-7],[-5,-10],[-4,4],[0,12],[5,1]],[[5318,6369],[0,-10]],[[5280,6252],[2,-12],[2,-12]],[[5284,6228],[1,-12]],[[5230,6533],[0,5]],[[5231,6546],[0,10]],[[5230,6599],[1,14]],[[5231,6613],[-5,3],[0,3]],[[5233,6627],[1,11],[2,0],[3,2]],[[5238,6648],[6,3],[5,10],[6,9],[4,0],[9,7],[5,-2],[-2,-7],[1,-4],[7,8],[2,-2],[2,-19],[4,-7],[-1,-9],[6,1],[1,7],[5,2],[7,14],[3,-18],[-2,-3],[-7,-24],[-7,-9],[-1,-18],[3,-16],[7,-12],[4,-2],[2,-13],[-1,-11],[2,-9],[-5,-18],[0,-6],[-9,-23],[-5,-4],[-1,-5],[-7,-7],[-4,-11],[2,-14],[3,-10],[4,-10],[5,-4],[6,4],[0,-16],[5,5],[2,7],[4,-7],[0,-7],[2,-8],[0,-9],[9,-2],[0,-3]],[[5721,6879],[-6,-4],[0,8],[4,2],[2,-6]],[[5731,6991],[1,7]],[[5754,7016],[1,0]],[[5766,7008],[4,1],[1,-2]],[[5778,7010],[-2,-11],[4,-15],[8,-12],[14,-13],[6,-2],[-4,-17],[-4,-3],[-5,1],[-11,8],[-6,-3],[-2,-5],[-6,3],[-6,-2],[-3,-11],[-7,-15],[-3,-1],[-10,-11],[-2,-7],[-5,-9],[-2,-6],[-4,0],[1,8],[-1,5],[17,19],[-1,4],[-14,-4],[-6,1],[-1,9]],[[5997,6575],[2,7],[-5,22],[6,15],[5,5],[0,15],[-5,9],[-6,-11],[-5,-3],[0,-9],[-5,-1],[-3,-4],[-16,20],[-6,-4],[-7,-13],[-6,-12],[0,-6],[-15,-14],[-11,-1],[-6,-1],[-3,-6],[-4,1],[-9,10],[-9,26],[-17,16],[-2,3],[-11,4],[-5,-1],[-2,3],[-3,-8],[0,-18],[-3,-9],[1,-4],[-2,-8],[-5,5],[-3,-4],[-7,-2],[-3,-6],[-3,0],[-2,5],[-8,3],[-6,12],[0,18],[-4,4],[-3,-2],[-7,3],[-5,7],[-5,-2],[0,-6],[-4,-9],[-2,14],[0,10],[-1,7],[-6,-3],[-8,0],[-1,3],[-5,-5],[-1,7],[2,4],[5,-2],[2,3],[0,10],[-6,6],[-4,0],[0,18],[-2,6],[3,4],[0,18],[-3,0],[-5,5],[-2,-1],[-3,12],[-4,-1],[0,-7],[-10,13],[6,6],[-4,18],[5,2],[3,-9],[0,-8],[4,-3],[5,5],[-3,11],[-2,2],[-1,7],[8,11],[-2,5],[-4,1],[2,8],[-4,9],[-2,8],[7,13],[-1,7],[-12,-4],[-8,-5],[-2,3],[2,9],[0,23],[4,5],[3,13],[3,1],[6,14],[8,-1],[2,5],[6,0],[1,-6],[3,-4],[9,0],[0,16],[5,-3],[4,-7],[7,0],[8,-3],[4,3],[8,-2],[1,6],[-5,1],[-4,6],[6,6],[8,2],[2,7],[-3,7],[-6,9],[3,16],[2,2],[19,-6],[7,-1],[3,5],[16,-9],[11,1],[5,7],[0,9],[7,5],[6,8],[7,7],[4,9],[9,8],[9,3],[11,10],[28,-5],[4,2],[6,-2],[6,4],[1,7],[5,-6],[-1,-8],[4,-11],[8,-9],[10,6],[5,-1],[2,-5],[0,-12],[3,-7],[6,-9],[5,10],[6,-2],[4,-4],[1,-8],[6,-3],[7,-7],[4,5],[7,-9],[2,0],[10,-5],[11,3],[6,6],[6,2],[3,-1],[5,4],[4,-6],[8,-5],[3,2],[4,-5],[9,10],[7,3],[3,7],[6,2],[10,11],[4,10]],[[8378,5808],[2,-5],[5,-3],[0,-12],[-2,-7],[0,-15],[1,-6],[-2,-9],[0,-9],[-3,-8],[-4,-38],[-2,-23],[-2,-14],[-2,-14],[-5,-15],[-3,-7],[-2,-9],[-2,-17],[0,-17],[-1,-9],[-4,4],[0,10],[-2,13],[-3,9],[-5,7],[-5,26],[0,9],[-3,10],[2,15],[0,12],[2,18],[4,18],[4,15],[2,12],[4,15],[4,7],[2,9],[4,15],[9,8],[4,9],[3,-4]],[[6108,3442],[-2,-12],[-5,-6],[-1,4],[3,9],[5,5]],[[6093,3574],[2,-21],[2,2],[2,-18],[-3,-2],[-4,14],[-2,-3],[-2,10],[1,3],[-1,14],[5,8],[0,-7]],[[6102,3644],[3,-2],[2,-19],[-2,-13],[-4,-1],[0,8],[2,5],[-2,17],[1,5]],[[6088,3662],[0,-14],[-2,-3],[1,-13],[-2,-6],[-2,-20],[-5,-25],[-1,-16],[2,-9],[0,-14],[3,-9],[2,1],[5,-13],[2,-12],[5,-3],[2,-10],[0,-9],[-5,-11],[-3,-23],[1,-7],[4,-10],[0,-13],[-3,-18],[-1,-3],[0,-14],[2,-14],[2,-4],[1,-13],[0,-11],[5,-7],[0,-19],[3,-22],[0,-13],[4,-7],[2,-8],[7,-4],[3,-11],[3,1],[0,-10]],[[5914,3323],[-6,9],[-5,2],[-4,9],[-5,0],[-2,4]],[[5892,3347],[-3,2],[-1,-2]],[[5888,3347],[-1,1],[-1,2]],[[5886,3350],[0,4],[1,3]],[[5887,3357],[-5,3],[-3,-2],[-3,8],[0,3],[0,3],[-1,1],[0,2],[-1,0],[-2,3]],[[5872,3378],[-2,4]],[[5870,3382],[-2,-3],[-4,1],[-5,4],[-3,12],[-2,14]],[[5825,3678],[1,0],[0,2],[0,1]],[[5826,3681],[1,4]],[[5833,3691],[1,7],[2,4],[1,3]],[[5853,3761],[0,1],[1,0]],[[5849,3826],[2,3]],[[5855,3828],[1,1]],[[5855,3863],[1,3],[0,18]],[[5853,3898],[-3,2]],[[5848,3903],[-1,18],[2,1]],[[5849,3922],[1,-1],[1,0],[0,1],[1,2],[0,1],[1,1],[1,1],[1,0],[1,-1],[17,0],[25,0],[26,0]],[[5924,3926],[10,0],[5,0],[2,0]],[[5820,3913],[0,19]],[[5822,3945],[0,11],[1,0]],[[5841,4082],[1,-1],[1,3]],[[5858,4241],[0,5],[0,3]],[[5970,4176],[-1,-3],[-1,-1],[0,-1]],[[5971,4118],[-1,-6],[-2,-3]],[[5963,4085],[-2,-4],[-1,0]],[[5960,4078],[0,-1],[-1,-1]],[[5959,4076],[0,0]],[[5952,4052],[0,-5]],[[5952,4047],[-3,-4],[-1,-2],[-1,-2]],[[5947,4039],[-1,-11]],[[5945,4020],[-2,-8],[0,-1],[-2,-5]],[[5941,3926],[-17,0]],[[5849,3922],[-3,-1]],[[6061,7378],[-2,-2],[-8,2],[-8,-1],[-7,-15],[-3,4],[-9,-10],[-5,-1],[-14,-8],[-8,-2],[-11,-14],[-6,-11],[-2,8],[-4,-10],[-8,-7],[2,-18],[5,-18],[8,-22],[4,-5],[6,3],[3,5],[6,-3],[3,7],[5,1],[8,-5],[-5,-13],[1,-11],[-6,-5],[-5,3],[-6,-4],[-2,6],[-6,3],[-5,-8],[-10,-12],[-7,-1],[-8,-7],[-4,-12],[-5,-8],[-5,-4],[-7,1],[-7,15],[2,7],[0,9],[2,7],[-1,12],[-4,6],[-5,-2],[-10,14],[-6,-2],[-4,1],[0,9],[11,14],[9,7],[6,7],[7,4],[-3,17],[-3,-7],[-6,6],[-10,-1],[-4,1],[-8,-4],[-6,4],[-9,16],[4,11],[5,-3],[2,7],[-12,7],[-7,-1],[-9,-3],[-4,2],[-6,-2],[-6,-6],[0,-9],[-8,-23],[-9,-18],[-5,1],[-3,-12],[-8,-8],[5,-7],[0,-10],[-5,5]],[[5798,7247],[-1,-4]],[[5785,7256],[0,3],[-1,0],[-1,0]],[[5783,7259],[0,1]],[[5739,7461],[-5,-3]],[[5734,7458],[-1,0],[-2,-1]],[[5640,7443],[-6,1]],[[5614,7476],[0,6]],[[5631,7517],[-1,9]],[[5629,7548],[0,1],[-1,3]],[[5634,7564],[1,5],[1,1]],[[5669,7624],[-1,11]],[[5668,7635],[-1,3],[0,3]],[[5670,7646],[0,1],[0,1]],[[5670,7648],[-6,10]],[[5664,7658],[-1,9]],[[5657,7684],[0,1],[0,1]],[[5655,7694],[1,0]],[[5656,7694],[0,1],[0,1]],[[5655,7700],[0,1]],[[5798,7687],[1,9]],[[5809,7701],[2,-10],[2,-7]],[[5850,7684],[0,1]],[[5849,7688],[-1,9]],[[5848,7697],[-1,1],[1,1],[-1,2],[1,1]],[[5848,7702],[1,2]],[[5848,7705],[1,2],[0,1]],[[5853,7720],[1,2]],[[5854,7722],[1,3]],[[5859,7731],[0,3],[15,4]],[[3422,1836],[3,-6]],[[3425,1830],[1,-2],[1,-1]],[[3427,1825],[3,-5]],[[3438,1805],[1,-4],[0,-2]],[[3444,1780],[0,-2],[0,-4]],[[3444,1774],[-1,-4],[0,-1]],[[3451,1773],[4,11]],[[3515,1581],[1,-4],[-2,-7],[-2,-16],[-4,-10],[-2,-14],[-6,-7],[-4,-13],[-5,-3],[-17,-18],[-4,6],[-5,-1],[-4,7],[-11,2],[-8,-9],[-7,-1],[-3,11],[-4,0],[-6,4],[-9,17],[-2,1],[-10,0],[-2,1],[-6,-3],[-7,20],[-3,3],[-3,12],[-2,3],[-1,12],[0,29],[2,7],[-1,9],[6,3],[2,6],[1,8],[-2,7],[0,11],[-1,7],[0,2],[-1,7]],[[3386,1684],[-2,5],[-1,2]],[[3384,1697],[0,9]],[[3387,1715],[2,12],[0,4],[0,3]],[[3389,1745],[0,6],[1,2],[1,3]],[[3392,1803],[1,7]],[[3398,1822],[3,4]],[[678,5443],[7,-7],[5,-7],[2,-6],[0,-10],[3,-1],[1,-7],[3,-9],[-4,-10],[-6,-6],[-3,0],[-6,-9],[-3,-13],[-2,-2],[-5,7],[-1,8],[1,14],[-3,20],[-2,9],[4,10],[2,10],[-1,7],[0,11],[4,-2],[4,-7]],[[641,5486],[-2,2],[0,11],[5,-6],[-3,-7]],[[650,5507],[3,-9],[5,3],[5,-8],[4,-3],[0,-8],[-9,-7],[-3,0],[-1,14],[-5,2],[-2,8],[3,8]],[[632,5521],[10,-4],[2,0],[2,-5],[-4,-3],[-5,3],[-6,-1],[1,10]],[[614,5548],[1,-10],[6,-11],[-4,-4],[-3,4],[-6,-1],[-3,13],[0,8],[3,0],[3,8],[3,-7]],[[572,5593],[3,-6],[-1,-14],[-3,-6],[-5,2],[-4,6],[-1,6],[2,7],[4,4],[5,1]],[[2305,5998],[3,16],[1,-2],[-4,-14]],[[2450,6114],[-6,6],[2,5],[6,-4],[-2,-7]],[[1707,6400],[5,-5],[-3,-6],[-2,11]],[[1665,6440],[2,-7],[-4,-3],[-3,8],[5,2]],[[2993,6950],[-5,-6],[1,-5],[6,5],[2,-4],[-9,-10],[-5,-4],[-3,0],[-7,-5],[-8,-2],[-13,-9],[-3,5],[-4,-6],[-2,5],[4,11],[11,11],[8,-3],[3,5],[9,-1],[5,2],[9,12],[1,-1]],[[3039,6974],[2,-8],[-8,-1],[6,9]],[[3105,7177],[-6,-3],[2,11],[4,-8]],[[1595,7470],[-1,-13],[-4,0],[3,13],[2,0]],[[3134,7240],[5,-26],[-7,-13],[-4,1],[-5,-7],[-7,1],[-2,-11],[-6,-2],[0,7],[-5,0],[-8,-6],[1,-8],[-4,0],[-4,13],[-5,-4],[0,-9],[-3,-18],[-4,-8],[-3,7],[-3,-11],[-5,2],[-4,-12],[-5,9],[-7,-11],[1,-10],[-5,-3],[0,-9],[-4,-4],[-8,-34],[-1,-11],[5,-8],[-6,-4],[-5,-17],[7,-4],[5,-12],[2,-20],[8,-7],[5,4],[4,6],[0,-13],[-14,-3],[-6,-8],[0,15],[-3,-6],[-8,-7],[-4,-6],[-2,13],[-2,7],[-3,-12],[1,-8],[-2,-7],[-10,-3],[-1,2],[-11,-5],[-14,-1],[-11,-7],[-13,-12],[-5,-12],[-3,-2],[-4,-11],[-4,-1],[-2,-10],[3,-4],[4,-2],[2,-6],[-2,-23],[-2,0],[-1,-22],[-7,-12],[-10,-35],[-3,-8],[-3,0],[3,15],[-4,4],[-4,0],[-6,10],[-1,-21],[3,-9],[4,-9],[2,0],[1,-18],[-3,-22],[-2,-1],[-2,-9],[-4,-10],[-1,-10],[-11,-34],[-4,-3],[4,18],[-1,4],[6,16],[-2,10],[-3,1],[2,10],[-3,10],[-3,-2],[-6,7],[-2,10],[4,6],[-1,27],[2,13],[-4,2],[3,12],[-1,4],[-6,-3],[-1,-10],[2,-13],[-5,-17],[1,-18],[4,-9],[0,-12],[-1,-7],[-5,1],[2,-9],[8,-8],[-2,-13],[-1,-15],[3,-5],[-4,-13],[-2,-4],[4,-5],[1,-13],[8,-4],[2,-14],[0,-22],[4,-23],[-5,9],[-7,-7],[-6,-2],[-3,-5],[-4,3],[-2,-8],[10,0],[5,4],[4,-1],[2,-7],[4,7],[3,-11],[-1,-16],[-4,-2],[-7,-17],[-9,3],[-2,8],[-4,-10],[6,-3],[0,-6],[-4,-18],[5,3],[3,-9],[-4,-9],[-5,-4],[-6,2],[-9,-7],[-1,-4],[-8,-9],[-4,-6],[-4,-13],[-2,-17],[-4,-5],[-10,2],[-10,-10],[-5,-10],[-5,-16],[-2,-16],[-5,-13],[-6,0],[-1,-7],[-7,-14],[-4,-8],[-5,-3],[-8,-9],[1,-6],[-12,-21],[1,-5],[-6,-15],[-4,-5],[-3,-11],[-1,-11],[2,-10],[-6,-22],[0,-19],[2,-2],[-1,-12],[6,-52],[2,-14],[7,-37],[9,-33],[-5,0],[1,8],[-3,5],[3,-30],[10,-51],[1,-11],[5,-26],[2,-13],[1,-11],[0,-19],[-2,-48],[-5,-19],[-1,-9],[1,-9],[-3,-10],[-5,1],[-3,-7],[-4,3],[-7,-5],[-2,8],[1,12],[-5,28],[-2,5],[-8,9],[-4,9],[-1,25],[-5,5],[-1,11],[0,14],[-2,5],[-2,-10],[-3,3],[-7,31],[0,9],[-2,9],[2,2],[1,7],[4,10],[-6,14],[-1,-20],[-5,9],[2,20],[-1,6],[3,18],[1,22],[0,11],[-3,8],[-1,7],[-2,5],[-4,-1],[-4,10],[-2,7],[-5,9],[0,10],[-4,3],[-4,15],[-9,13],[-7,-1],[-3,-5],[1,-9],[-5,2],[-10,-14],[-12,-2],[-1,14],[-9,16],[-1,9],[-4,-2],[-6,6],[-8,6],[2,8],[-6,-1],[-5,-4],[-6,-1],[-3,8],[-4,-3],[-5,-12],[-13,-5],[1,5],[-4,8],[-1,17],[-3,-1],[-2,-22],[-7,4],[-3,-5],[-7,2],[-5,6],[-3,-4],[-9,-6],[-3,-8],[-7,-1],[-2,5],[-5,2],[-3,6],[-4,2],[-6,-12],[0,-5],[2,-6],[5,-3],[4,1],[4,9],[3,-4],[-2,-8],[4,-8],[4,8],[4,5],[-1,-17],[-5,-15],[-1,-7],[9,-12],[4,0],[5,-15],[-5,-8],[-5,4],[-3,11],[-8,7],[-4,10],[-5,4],[2,-12],[-2,-6],[0,-8],[-4,-6],[0,12],[-4,3],[-5,0],[-4,-13],[-14,9],[-3,4],[3,8],[-3,6],[-6,3],[-1,8],[-3,8],[-5,0],[-3,5],[-4,-5],[0,-10],[-4,-6],[-12,5],[-9,9],[-5,3],[-7,0],[-8,-2],[-3,-3],[-1,8],[3,3],[0,8],[-2,2],[-2,-16],[1,-7],[-5,1],[-17,-17],[-2,5],[1,13],[-3,5],[-2,-7],[-4,-9],[4,-12],[-5,-13],[-3,-3],[0,-8],[-6,-12],[-6,-8],[-6,-2],[-11,-11],[-3,4],[-6,1],[-1,-5],[5,-11],[-7,-8],[-3,8],[-1,-14],[-2,-6],[-8,-1],[4,-7],[-5,-15],[-2,3],[-3,-3],[3,-11],[-4,-25],[-3,-7],[2,-7],[-1,-8],[-2,-2],[0,-12],[2,-4],[2,-17],[-1,-8],[3,-5],[1,-17],[2,-10],[2,-1]],[[1746,6332],[-1,10],[-2,2],[0,14],[-2,16],[-5,16],[-8,14],[-5,7],[-3,7],[-5,3],[-4,5],[-4,14],[-7,-1],[-4,2],[-8,7],[-1,8],[-5,8],[-5,4],[-7,-1],[-7,4],[-10,-1],[-1,5],[-4,5],[2,8],[-1,11],[-1,4],[1,16],[-7,8],[0,11],[-3,4],[-5,13],[-3,2],[-2,9],[-3,7],[-1,7],[-11,24],[-2,12],[4,14],[1,9],[-4,12],[-6,0],[-7,16],[0,12],[-4,12],[1,18],[2,2],[2,-16],[6,-1],[-1,6],[-4,9],[1,3],[-3,10],[5,7],[-5,7],[-3,-4],[-1,-21],[-5,7],[-6,10],[-1,16],[-4,13],[-4,4],[-5,13],[-6,12],[-2,7],[1,5],[-4,23],[2,14],[-3,21],[-7,20],[-7,11],[-1,13],[4,18],[1,0],[3,23],[0,12],[2,18],[-5,30],[0,11],[-4,8],[-2,15],[1,17],[0,7],[-4,13],[3,13],[2,23],[2,1],[4,38],[1,30],[2,22],[0,15],[2,24],[0,21],[2,15],[-2,7],[1,24],[2,5],[7,2],[-2,8],[-7,-3],[-3,7],[4,6],[0,21],[-5,1],[2,17],[-4,4],[-1,14],[-3,9],[-3,28],[-6,12],[-3,18],[2,11],[2,4],[10,-8],[5,-6],[10,-1],[12,-4],[4,3],[3,-4],[6,-1],[3,-11],[3,-2],[3,-10],[-5,-5],[4,-12],[-2,-14],[-6,-9],[-4,5],[-1,-12],[5,4],[2,-5],[11,20],[-3,19],[1,10],[2,12],[3,5],[-4,8],[-1,13],[-4,5],[3,15],[-3,13],[-3,0],[-3,9],[0,7]],[[60,7719],[1,-11],[-4,2],[-7,10],[7,4],[3,-5]],[[80,7710],[-4,-4],[-3,3],[4,7],[3,-6]],[[96,7726],[-3,-7],[4,-3],[-2,-9],[-8,2],[2,8],[0,8],[7,1]],[[9990,7720],[-5,3],[4,8],[4,-4],[-3,-7]],[[178,7740],[1,-7],[-8,-1],[-4,5],[11,3]],[[163,7758],[4,-6],[-3,-13],[-8,-2],[-9,-7],[-7,3],[11,9],[6,2],[3,4],[-3,7],[6,3]],[[9827,7765],[-4,-11],[-4,7],[8,4]],[[9802,7801],[6,-1],[5,-4],[-3,-10],[-3,3],[-4,-6],[-8,8],[0,10],[7,0]],[[333,7842],[6,-5],[-2,-8],[-12,-11],[-5,-14],[-8,-6],[0,16],[4,7],[7,-1],[-1,10],[6,10],[5,2]],[[368,7871],[3,-7],[8,0],[-2,-9],[1,-6],[-4,-3],[-6,-11],[-3,0],[-15,-9],[-7,-8],[-6,5],[4,5],[7,4],[4,-1],[5,4],[0,11],[6,6],[-6,10],[3,8],[8,1]],[[392,7885],[6,-3],[-10,-7],[-3,6],[5,7],[2,-3]],[[402,7892],[2,-5],[-4,-6],[-2,8],[4,3]],[[451,7949],[5,0],[4,-11],[2,-10],[-2,-7],[-5,-4],[-5,1],[-9,-1],[-6,-6],[-2,-7],[-7,-3],[-5,2],[-3,12],[7,6],[4,15],[7,1],[11,10],[4,2]],[[1304,7958],[3,-17],[5,-9],[0,-11],[-8,15],[-5,16],[5,6]],[[536,7967],[0,-10],[-4,2],[0,9],[4,-1]],[[1338,7974],[5,-8],[-3,-11],[-3,11],[1,8]],[[1355,8012],[7,-17],[0,-20],[-3,-12],[-3,-5],[-13,11],[-4,10],[4,5],[-2,6],[1,15],[3,4],[10,3]],[[1294,8028],[3,-11],[-5,0],[-4,-7],[-5,2],[3,9],[8,7]],[[1320,8030],[3,2],[8,-8],[-1,-12],[-5,-2],[-4,11],[-7,4],[5,16],[4,-1],[-3,-10]],[[1289,8041],[11,-1],[4,-7],[0,-13],[4,1],[5,-5],[7,-16],[4,-9],[-2,-10],[12,-24],[-5,-15],[5,2],[1,-15],[-2,-7],[-8,4],[1,7],[-9,8],[-1,12],[-9,11],[-7,0],[4,25],[-6,-3],[-3,9],[6,8],[-2,6],[-2,19],[-9,3],[1,10]],[[1315,8048],[0,-12],[-6,-2],[-5,8],[4,7],[7,-1]],[[1329,8041],[4,0],[2,-11],[-4,-5],[-8,11],[1,15],[5,-10]],[[1309,8074],[9,-15],[-5,-6],[-6,0],[2,21]],[[1278,8078],[5,-6],[3,-13],[-4,-1],[0,-11],[-4,-10],[3,-5],[-2,-9],[-7,-2],[-2,21],[4,2],[2,6],[-9,19],[-1,8],[7,5],[5,-4]],[[1284,8093],[11,-5],[7,0],[4,-5],[1,-21],[-5,-1],[-1,-12],[-14,0],[-1,27],[-9,13],[7,4]],[[745,8100],[2,-6],[-6,-5],[-3,5],[7,6]],[[1234,8105],[1,-7],[-6,-2],[-2,9],[3,7],[4,-7]],[[1239,8120],[7,2],[6,-10],[3,-11],[3,-24],[3,-9],[-1,-27],[-3,-9],[-9,23],[-2,15],[-6,6],[2,4],[-1,11],[-10,22],[8,7]],[[750,8155],[14,-2],[5,-6],[-4,-4],[0,-8],[8,-2],[-7,-14],[-8,-11],[-11,-4],[-4,1],[-10,-15],[1,-3],[-11,-17],[-4,3],[7,13],[-6,7],[-4,-12],[-8,6],[-1,13],[-6,11],[4,15],[11,10],[5,-1],[6,-18],[2,11],[-5,12],[0,6],[6,7],[4,-5],[11,-2],[-1,10],[6,-1]],[[1230,8176],[22,-14],[0,-8],[-3,-4],[3,-8],[3,-18],[-7,-3],[-16,18],[3,-18],[-5,-7],[-6,7],[-13,30],[3,9],[-3,9],[12,3],[4,7],[3,-3]],[[1252,8186],[3,-3],[3,-11],[14,0],[2,-15],[-2,-9],[7,-16],[2,-19],[-7,-6],[-10,-17],[-4,12],[5,14],[-6,15],[-4,37],[-3,7],[0,11]],[[761,8193],[3,-7],[11,0],[3,-9],[-4,-5],[-12,-4],[-7,-9],[-5,4],[-6,9],[5,10],[7,-2],[1,12],[4,1]],[[764,8194],[-4,4],[5,7],[3,-6],[-4,-5]],[[533,8207],[-2,-6],[-5,-2],[0,11],[7,-3]],[[913,8329],[6,-3],[-9,-13],[-7,-14],[-10,-11],[-1,5],[5,10],[14,18],[2,8]],[[386,8331],[3,-5],[9,-1],[-2,-9],[5,-18],[-12,-4],[-7,-5],[-10,4],[-16,12],[-7,12],[4,3],[12,-2],[2,6],[9,7],[2,-3],[8,3]],[[929,8337],[6,0],[0,-9],[-7,-7],[-4,10],[5,6]],[[897,8339],[3,-4],[-4,-13],[-3,1],[2,14],[2,2]],[[207,8331],[-1,-4],[-13,12],[4,2],[10,-10]],[[231,8576],[5,-11],[16,-6],[7,8],[11,1],[5,-5],[2,-6],[13,-13],[15,0],[8,-3],[-2,-10],[-13,1],[-12,-12],[-3,7],[-8,6],[-10,11],[-11,7],[-6,-1],[-10,-9],[-8,4],[-4,11],[5,20]],[[1388,8009],[-4,-11],[1,-14],[4,-19],[-2,-4],[-8,-23],[-6,-7],[-10,1],[-1,18],[-3,9],[5,10],[0,27],[-8,16],[-6,5],[-9,-9],[-3,-16],[-4,-12],[-6,7],[-2,10],[5,8],[4,12],[-1,10],[4,3],[-4,12],[-5,1],[-1,7],[-8,9],[0,10],[-5,5],[-6,8],[3,4],[-9,8],[-13,7],[5,11],[-6,18],[1,9],[-8,18],[-6,8],[0,15],[-5,-5],[-7,10],[-8,3],[-1,8],[-9,23],[-2,21],[-5,5],[0,-17],[4,-13],[1,-11],[4,-22],[-2,-7],[-5,3],[-3,10],[-6,2],[-7,-3],[1,11],[-6,21],[-5,-4],[6,-28],[-15,-11],[-11,13],[-4,-1],[-11,12],[-1,4],[-11,13],[-1,9],[-6,7],[-22,18],[-6,3],[-18,17],[5,2],[6,10],[-4,12],[-20,-13],[-15,3],[-11,7],[0,12],[-3,2],[-10,-6],[-7,5],[-23,6],[-11,-3],[-11,-1],[-9,-4],[-12,15],[-6,-1],[-9,14],[3,6],[-6,4],[-6,-11],[-5,-1],[-5,6],[-10,1],[7,11],[0,3],[-15,7],[-7,-5],[-1,10],[-7,10],[-5,-1],[-4,5],[-8,-9],[-15,1],[-7,9],[-4,-10],[-7,-4],[8,-5],[2,-10],[3,-1],[4,-12],[-7,-7],[-2,-16],[-3,-9],[-5,-3],[-10,1],[-11,4],[-7,-9],[-5,-1],[-1,-12],[-3,0],[-12,-17],[-6,4],[-3,-8],[-12,-10],[-1,-5],[-8,3],[-4,-6],[-5,-1],[-7,8],[3,10],[6,5],[6,1],[5,5],[4,16],[-10,-11],[-7,3],[-4,8],[5,18],[7,11],[5,25],[-4,13],[10,5],[17,17],[6,-7],[5,-1],[12,5],[-13,12],[3,7],[-13,0],[-5,3],[-12,-9],[-3,-7],[-11,-6],[-5,-5],[-3,-12],[-6,-6],[-8,-14],[-2,-13],[-8,-9],[3,-5],[-4,-13],[-8,-2],[-1,-13],[-7,-5],[-7,1],[-4,-13],[-10,-6],[-1,-12],[-3,-5],[6,-5],[8,-1],[11,-9],[-3,-15],[-7,-8],[-6,0],[-3,-17],[-8,-4],[4,-8],[-4,-6],[-4,1],[-4,-9],[-12,1],[-2,-10],[-7,-5],[-2,-7],[-5,5],[-1,-9],[-5,-7],[-15,-11],[-1,-8],[1,-9],[-4,-5],[-2,-9],[-6,2],[-8,-10],[-3,-7],[-6,0],[-15,-9],[1,-13],[-5,3],[-8,-3],[-7,-12],[7,2],[1,-11],[-3,-3],[-3,-10],[-9,1],[-2,-7],[-4,1],[-15,-8],[-6,3],[-9,-14],[-6,-4],[-3,-8],[-8,-4],[-4,6],[-3,-7],[-7,-5],[-7,2],[4,13],[-7,3],[-2,-6],[0,-9],[-5,-11],[-2,-9],[-9,-7],[-9,10],[-1,-12],[-6,-4],[-5,12],[-5,-4],[-3,5],[8,7],[2,-4],[9,14],[12,25],[11,13],[10,5],[9,0],[9,-16],[3,9],[5,6],[-1,5],[5,19],[5,8],[13,14],[8,3],[14,16],[7,-4],[0,16],[10,21],[7,6],[4,8],[6,5],[0,11],[3,27],[2,11],[1,15],[12,19],[0,11],[-11,-6],[-3,-4],[-16,-9],[-5,2],[-2,9],[-5,3],[-6,0],[-3,-8],[4,-13],[-2,-8],[-6,1],[-9,24],[-10,11],[-5,-10],[-4,8],[-6,2],[-2,11],[-9,-8],[-19,-16],[0,-5],[-6,-4],[-10,2],[6,9],[-3,16],[6,7],[-10,4],[-2,7],[2,11],[7,8],[-10,27],[-5,16],[-6,8],[-2,-15],[-15,-10],[-15,-4],[-13,2],[-3,15],[-6,4],[-2,6],[-14,12],[-9,17],[9,9],[-1,6],[10,9],[0,-7],[11,-2],[1,-7],[8,6],[4,-3],[0,-11],[9,7],[1,6],[-12,6],[-14,2],[-5,-2],[-2,6],[-14,-1],[2,10],[-4,7],[-5,-6],[-7,5],[0,10],[-5,2],[-3,7],[4,8],[-12,6],[8,7],[-5,9],[14,2],[-4,8],[1,11],[16,29],[7,1],[0,15],[2,13],[6,16],[6,6],[6,2],[11,-2],[4,-9],[7,-5],[8,2],[8,11],[5,4],[10,20],[5,-7],[14,0],[11,4],[11,17],[0,6],[-4,16],[-2,14],[-13,20],[12,-1],[6,9],[-2,12],[-8,10],[-7,-12],[-8,1],[-10,-5],[-6,-7],[-9,-8],[-5,-12],[-3,12],[-10,10],[-4,-4],[10,-6],[-3,-7],[-11,11],[-22,1],[-19,-10],[-12,5],[-20,5],[-9,11],[3,12],[-8,6],[-2,5],[8,9],[9,7],[-22,8],[-13,1],[-19,13],[7,10],[7,0],[1,6],[5,6],[8,-1],[10,13],[12,9],[5,-4],[10,-2],[7,4],[-11,6],[3,6],[13,8],[10,2],[6,7],[21,4],[6,-8],[-4,-8],[0,-16],[6,-7],[16,0],[10,2],[3,-5],[13,3],[7,-2],[7,7],[3,8],[13,-3],[-1,9],[-10,5],[-7,0],[-5,11],[-9,12],[-5,0],[-6,12],[9,5],[9,-14],[-2,-8],[6,-9],[7,-6],[15,3],[8,-8],[15,2],[0,9],[-18,10],[-7,-2],[-5,-8],[-7,2],[-8,10],[-1,8],[4,10],[-2,7],[-17,-4],[-8,4],[-6,-1],[-21,5],[-3,17],[-10,20],[-15,15],[-4,1],[-17,15],[-13,6],[-5,7],[-12,9],[8,15],[0,22],[16,-1],[17,1],[20,4],[10,5],[10,9],[13,17],[6,31],[11,12],[2,7],[16,19],[7,-5],[8,0],[14,7],[18,16],[7,4],[8,13],[8,-4],[37,6],[13,8],[9,9],[12,16],[23,-8],[10,0],[1,-9],[-14,-10],[5,-7],[10,3],[1,6],[9,6],[2,8],[15,-10],[-4,-7],[5,-6],[12,-2],[6,7],[11,-1],[6,3],[21,-3],[9,-5],[-9,-9],[2,-9],[19,0],[-6,-8],[23,0],[18,4],[11,-5],[6,5],[15,0],[27,-14],[4,3],[12,-4],[0,-4],[19,-5],[8,2],[27,-2],[7,-7],[13,-5],[16,-2],[5,5],[32,5],[10,-3],[12,-9],[5,-7],[17,-6],[7,-8],[11,0]],[[2914,5426],[-2,1],[1,4]],[[6972,6879],[1,-2],[0,-2]],[[6978,7026],[-7,-11]],[[6967,6958],[0,-1],[1,0]],[[6972,6953],[5,-4]],[[6980,6948],[1,3]],[[6981,6951],[1,-3],[1,1],[0,2]],[[6983,6964],[3,-3]],[[6989,6971],[1,0],[1,1]],[[6991,6972],[0,-1],[1,0],[0,1]],[[7000,6951],[4,1]],[[7013,6941],[0,-1],[0,-1],[0,-1]],[[7020,6909],[-4,-4]],[[7010,6912],[-1,-2],[0,-5]],[[6990,6879],[0,1],[0,3],[-1,3],[-1,-4]],[[6973,6888],[-3,-3]],[[6882,6666],[0,3]],[[6878,6671],[-1,0],[-1,-2]],[[3301,4941],[-3,3],[1,13],[3,-4],[-1,-12]],[[3313,4635],[1,-6],[-5,-11],[-6,-1],[-1,9],[7,8],[4,1]],[[3303,4631],[4,14],[2,-3],[-2,-7],[-4,-4]],[[3228,4787],[-3,-8],[-4,-1],[-4,7],[-1,-2],[-5,2],[1,7],[4,2],[5,-7],[1,8],[4,3],[2,-11]],[[3018,4848],[-1,-6],[-8,-6],[-8,-6],[0,-15],[5,-20],[2,-19],[3,-9],[-1,-19],[-4,-8],[-3,-15],[-3,-3],[-1,-12],[-3,-7],[4,-12],[1,-12],[6,-10],[-1,-17],[2,-4],[5,-1],[7,6],[3,11],[3,6],[-1,14],[1,14],[0,7],[-4,9],[-2,12],[-3,5],[-4,24],[0,14],[2,4],[0,12],[4,1],[12,15],[5,4],[5,0],[6,8],[3,1],[4,11],[3,-1],[3,-6],[2,4],[-1,11],[-2,4],[-9,-7],[0,10],[-3,10],[3,17],[5,6],[2,-3],[3,-10],[1,-15],[3,-19],[2,-5],[3,3],[4,-1],[3,3],[5,-6],[6,0],[6,-8],[6,-12],[4,-20],[-1,-7],[2,-16],[3,-7],[5,-1],[11,4],[11,2],[4,4],[13,2],[6,-2],[2,3],[4,-3],[0,-8],[7,-13],[8,-9],[11,-7],[3,-3],[3,3],[6,1],[3,10],[4,0],[4,10],[6,7],[3,-3],[6,1],[-1,7],[-3,2],[-5,0],[-3,-4],[-1,9],[4,-2],[6,1],[5,2],[6,-2],[2,2],[6,2],[2,3],[7,-2],[5,4],[16,-5],[5,3],[1,-6],[-8,-1],[-3,-8],[-9,3],[-5,-2],[0,-9],[3,-2],[4,-11],[2,-3],[3,-19],[3,-14],[2,8],[-1,7],[2,6],[5,-5],[4,-9],[2,0],[6,-3],[0,6],[4,-4],[3,-7],[6,-10],[2,0],[5,-9],[2,-8],[-1,-5],[-4,-7],[-1,-9],[-3,-6],[0,-11],[-3,-14],[-8,-1],[2,-9],[3,0],[1,-6],[3,7],[5,2],[1,4],[8,2],[2,-4],[4,-1],[3,7],[5,0],[4,-5]],[[3207,5322],[-1,-3],[-1,1],[-1,-3],[0,4],[2,1],[1,0]],[[3202,5273],[-4,-6],[-1,5],[5,1]],[[7888,4748],[2,-6],[1,-9],[-3,-15],[-2,16],[-2,4],[4,10]],[[7999,5540],[-3,3],[-3,-2],[-1,-7],[-4,-8],[-6,-1],[-1,-20],[-3,0],[-2,-5],[-4,4],[-4,-8],[-3,4],[-2,-17],[-4,-12],[1,-6],[-1,-15],[-4,-2],[-4,-11],[-4,-7],[-3,3],[-2,-5],[-1,-12],[-3,-12],[0,-15],[0,-8],[-1,-3],[-1,-9],[-2,-3],[0,-12],[4,-11],[1,-11],[4,-14],[3,-8],[9,-13],[3,-11],[-2,-6],[2,-13],[3,-16],[4,-9],[10,-18],[2,-13],[11,-22],[2,-7],[2,-3],[2,-11],[4,4],[5,-10],[0,-7],[3,-4],[2,-8],[3,-7],[1,-8],[4,-16],[1,-5],[5,-6],[3,-8],[-1,-8],[1,-12],[4,-18],[0,-11],[4,-25],[-1,-7],[4,-18],[-1,-9],[-2,-1],[2,-12],[-2,-13],[3,-4],[0,-15],[4,-15],[-7,-20],[0,-7],[3,-10],[-3,-1],[0,-23],[0,-9],[-3,-6],[4,-9],[-3,-12],[-3,-4],[-1,-11],[-2,-4],[-3,1],[-3,-10],[-4,0],[-3,-9],[-3,-7],[-7,-3],[-3,-15],[-3,1],[-8,-11],[-2,-4],[-5,-5],[-2,-4],[-3,7],[-6,1],[-2,11],[-3,-3],[-1,-6],[2,-9],[-2,-14],[2,-7],[-4,-5],[-1,-7],[2,-3],[-3,-11],[0,-7],[-3,-7],[-2,0],[-9,14],[3,-14],[0,-13],[-5,-4],[-13,-13],[-3,-6],[-3,-15],[-4,-7],[-2,-8],[-7,-4],[0,11],[-2,7],[1,16],[0,37],[2,21],[2,0],[3,10],[-2,7],[-3,0],[-3,8],[-6,4],[-3,12]],[[7986,5054],[-1,2],[0,4]],[[7984,5147],[0,4]],[[7978,5155],[-1,1],[-1,2]],[[7955,5217],[-1,7],[-2,6]],[[7952,5234],[-1,4]],[[7939,5261],[-1,3],[-2,1]],[[7936,5265],[-1,5]],[[7933,5287],[-2,6],[-2,6]],[[7924,5304],[0,2],[0,2],[-4,4]],[[7913,5343],[-1,2]],[[7884,5384],[2,5]],[[7894,5412],[2,-2],[0,-2]],[[7899,5410],[3,-6]],[[7903,5404],[0,1],[1,0]],[[7906,5411],[1,3]],[[7912,5432],[3,2]],[[7915,5440],[-2,6]],[[7881,5485],[-1,0]],[[7879,5480],[-1,2],[-1,3],[-1,1],[-4,6]],[[7849,5569],[-1,2],[-2,2],[0,5]],[[9706,2588],[-3,1],[-3,10],[0,11],[3,1],[1,-10],[3,-4],[-1,-9]],[[9699,2654],[1,-7],[3,-6],[-2,-5],[-8,7],[0,14],[2,4],[3,0],[1,-7]],[[9675,2739],[3,0],[4,-11],[-1,-7],[-4,-2],[-3,8],[-3,4],[4,8]],[[9671,2808],[4,-15],[-4,-1],[-2,7],[2,9]],[[9675,2827],[-5,-3],[-7,7],[5,6],[2,7],[2,-11],[3,-6]],[[9650,2842],[10,-18],[0,-9],[-5,-1],[-4,-5],[-2,14],[-1,12],[-1,7],[-3,-4],[-2,6],[1,14],[4,-2],[3,-14]],[[9644,2868],[-4,3],[1,6],[3,-2],[0,-7]],[[9672,2850],[-1,2],[-2,22],[2,4],[2,-18],[-1,-10]],[[9662,2887],[-4,0],[-1,4],[3,8],[5,3],[-1,-11],[-2,-4]],[[9633,2910],[3,0],[1,13],[2,1],[1,-13],[2,0],[1,-11],[0,-5],[1,-11],[-3,-4],[-5,0],[-4,-5],[-5,19],[1,9],[-3,31],[1,13],[1,1],[4,-14],[2,-24]],[[9652,2983],[3,-3],[-2,-10],[-3,1],[-1,8],[3,4]],[[9654,3004],[-4,-2],[-1,9],[3,3],[2,-10]],[[54,2971],[-3,0],[1,5],[2,-5]],[[5913,6485],[1,0],[1,1]],[[5916,6486],[0,-2],[0,-2],[1,-4],[-3,0],[0,7],[-2,1],[0,2],[1,-3]],[[234,2998],[3,-2],[0,-6],[-8,0],[-5,4],[-3,6],[0,4],[4,3],[9,-6],[0,-3]],[[214,3030],[3,-7],[0,-8],[-3,-5],[-6,-3],[-2,8],[-5,9],[6,6],[5,2],[2,-2]],[[6488,4909],[2,1],[3,-7],[7,2],[3,4],[9,-11],[0,-4],[-6,-4],[-3,-6],[-10,-3],[-6,2],[-1,6],[-5,7],[2,10],[5,3]],[[6474,5192],[-14,-12],[-8,-15],[-4,-20],[2,-10],[0,-17],[-5,-3],[-10,-12],[-9,-12],[-8,-6],[-14,-7],[-11,-15],[-6,0],[-10,-8],[-14,-16],[-2,-13],[-4,-6],[-1,-6],[-4,-8],[-10,-2],[-4,-4],[-1,5],[-4,2],[-4,-7],[-6,-6],[-7,-16],[-6,-5],[-8,-4],[-5,-7],[-11,-2],[-2,2],[-8,-3],[-8,-4],[-5,-10],[-2,-9],[-6,-4],[-5,-13],[-2,0],[-2,-8],[-5,6],[-4,-1],[-3,-7],[-7,-6],[-7,-1],[-1,3],[-9,8],[-3,-4],[0,11],[-6,26],[0,22],[1,14],[-2,12],[-4,14],[-2,25],[1,8],[-3,18],[0,11],[-2,14],[-2,9],[0,6],[-2,16],[-1,11],[4,11],[0,13],[-1,23]],[[6051,630],[-7,-1],[2,9],[4,-1],[1,-7]],[[5887,2135],[-3,-1]],[[5888,2072],[0,2],[2,0],[1,-2]],[[5913,2072],[-1,-20],[-5,-29],[-2,-26],[-2,-22],[-3,-14],[-1,-12],[-10,-22],[-8,-8],[-7,-17],[-8,-25],[-5,-22],[0,-5],[-3,-6],[-14,-59],[-11,-32],[-6,-11],[-11,-21],[-7,-17],[-1,-6],[-7,-17],[-7,-14],[-2,-6],[-9,-15],[-9,-19],[-4,-5],[-10,-18],[-13,-16],[-11,-12],[-6,-1],[-10,4],[-7,-6],[-3,-18],[-5,1],[-8,5],[-4,-2],[-4,-10],[1,-4],[-8,0],[-11,9],[-15,6],[-6,-3],[0,-7],[-13,2],[-9,6],[-6,-4],[-4,0],[-4,-4],[0,-6],[-6,-4],[0,-6],[-6,-4],[-5,3],[-7,-5],[-8,5],[-9,-6],[-3,-1],[-9,-16],[-7,-10],[-3,4],[-6,-1],[-7,12],[-2,13],[-5,2],[-1,4],[-8,-2],[1,15],[-3,6],[-5,0],[-3,-5],[1,-7],[-2,-4],[-3,19],[2,8],[3,1],[-2,15],[-3,9],[0,7],[-5,8],[-1,11],[-5,12],[-2,15],[4,9],[3,-5],[5,9],[2,12],[0,16],[-2,26],[-3,17],[-7,23],[-10,36],[0,6],[-8,29],[-3,24],[-1,10],[-2,14],[-3,23],[-2,5],[-2,15],[-5,16],[-2,11],[-2,6],[0,4],[6,5]],[[5465,1957],[1,5]],[[5466,1973],[2,1]],[[5481,1972],[1,-2]],[[5481,1956],[0,-1],[0,-1]],[[5483,1946],[0,-3],[0,-3],[0,-2]],[[5513,1926],[2,1]],[[5555,1961],[0,6],[0,9]],[[5555,2136],[-1,85],[4,-9]],[[5567,2192],[1,-4],[3,-13],[2,-11]],[[5573,2164],[1,-2],[-1,-2]],[[5574,2157],[0,-3]],[[5576,2147],[-1,-2],[1,0]],[[5577,2140],[1,-17]],[[5576,2112],[-4,-10]],[[5572,2093],[0,-10]],[[5597,2071],[2,0],[2,-1]],[[5606,2085],[6,3]],[[5631,2133],[0,5],[0,1],[-1,1]],[[5630,2140],[1,10]],[[5633,2155],[0,8]],[[5717,2203],[1,9]],[[5718,2215],[0,7]],[[5739,2247],[2,4],[0,1]],[[5757,2314],[3,5],[4,1]],[[5775,2350],[1,1],[2,2],[0,6]],[[5814,2405],[1,0],[3,3]],[[5818,2408],[1,-1],[1,0],[0,1],[0,1],[1,0],[1,0],[1,1],[3,0],[11,-12],[4,-3],[1,0],[2,0],[3,2],[3,-1],[6,3],[3,-1],[3,-2]],[[5862,2396],[1,-1]],[[5863,2395],[1,1],[1,1],[0,-1],[4,-5]],[[5768,1915],[0,-3]],[[5768,1912],[-1,0],[0,-2]],[[5764,1901],[0,-2],[0,-1]],[[5750,1872],[0,-3],[5,-22]],[[5783,1817],[1,3],[0,2]],[[5801,1841],[7,9],[1,1]],[[5809,1854],[0,1]],[[5817,1892],[-2,12],[-1,2]],[[5799,1935],[-2,4]],[[5796,1946],[-1,1],[0,1],[-1,0],[-6,-4]],[[5787,1943],[0,-3],[-1,-1]],[[5844,2876],[-2,-1],[-4,0],[-5,0],[-5,2],[-12,-7],[-6,-7],[-4,-9],[-3,-2],[-2,-8],[-1,-28],[-2,-6],[-3,-1],[-10,-10],[-5,-9],[-6,-7],[-3,-5],[-4,-14],[-2,-12],[-11,-29],[0,-5],[-3,-8],[-5,-3],[-5,-5],[-8,9],[-6,3],[-6,-8],[-8,14],[-5,-3],[-5,1],[-2,3]],[[5649,2732],[0,3]],[[5610,2840],[0,5],[0,5]],[[5610,2875],[0,7],[0,3],[0,7]],[[5610,2892],[0,22]],[[5610,3065],[31,0],[10,0],[7,0],[4,0],[3,0],[1,0]],[[5664,3099],[3,8]],[[5667,3109],[0,3],[0,5]],[[5665,3126],[0,10],[0,9]],[[5665,3164],[1,7],[0,5]],[[5677,3200],[-1,-2],[1,-4]],[[5677,3189],[-1,-6],[-2,-1],[0,-1]],[[5675,3179],[4,-4]],[[5702,3180],[0,-10]],[[5811,3036],[3,4]],[[5821,3049],[1,-3],[1,0],[1,-2]],[[5824,3044],[-2,-6]],[[5824,3032],[3,0],[0,3]],[[5787,3176],[2,8]],[[5797,3234],[-1,1],[0,1],[0,1],[0,3]],[[5795,3259],[-2,6]],[[5797,3295],[-1,2],[-1,2]],[[5792,3325],[-5,5]],[[5803,3375],[0,7],[0,8]],[[5870,3382],[1,-4],[1,0]],[[5887,3357],[-1,-7]],[[5888,3347],[4,0]],[[5916,3307],[3,-1]],[[5922,3300],[2,-5]],[[5933,3248],[1,-4],[1,-1]],[[5923,3217],[-1,-1],[1,-1]],[[5923,3215],[1,0]],[[5923,3127],[2,-12]],[[5930,3110],[-4,-10]],[[5919,3095],[0,-1]],[[5915,3057],[0,-3],[1,-3]],[[5916,3051],[-1,-2]],[[5915,2993],[2,1]],[[5920,2998],[2,-6]],[[5922,2992],[-2,-1],[-3,-2]],[[5841,2902],[2,-7]],[[5844,2886],[-1,-5],[1,-5]],[[5860,2845],[1,1],[1,3]],[[5862,2849],[1,-1]],[[5871,2839],[1,-1]],[[5872,2838],[1,0],[2,-2]],[[5880,2835],[3,-7],[1,-3]],[[5914,2715],[0,-12]],[[5912,2542],[-1,-3],[-2,-6],[-3,-10]],[[5863,2395],[-1,0],[0,1]],[[5818,2408],[-3,-2]]],"transform":{"scale":[0.036003600360036005,0.013936429948428685],"translate":[-180,-55.71626240133828]},"bbox":[-180,-55.71626240133828,180,83.63410065300013]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment