Skip to content

Instantly share code, notes, and snippets.

@pkerpedjiev
Last active February 13, 2017 01:40
Show Gist options
  • Star 1 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save pkerpedjiev/91fbba8179f5517348fdb7d5079be04a to your computer and use it in GitHub Desktop.
Save pkerpedjiev/91fbba8179f5517348fdb7d5079be04a to your computer and use it in GitHub Desktop.
Cambridge Tree Map
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
@import url('https://fonts.googleapis.com/css?family=Francois+One');
.block {
fill: black;
opacity: 0.4;
stroke-width: 0px;
}
.block.selected {
opacity: 1.0;
stroke-width: 10;
}
.road {
stroke: black;
stroke-width: 1px;
fill: transparent;
opacity: 0.6;
}
text {
font: 10px sans-serif;
}
.legend-rect {
stroke-width: 0px;
stroke: black;
opacity: 0.6;
}
.legend-rect.selected {
opacity: 1.0;
stroke-width: 3;
}
text.title {
font-family: 'Francois One', sans-serif;
font-size: 15px;
font-weight: bold;
opacity: .7;
}
text.abstract {
font-style: italic;
opacity: 0.9;
}
<head>
<body>
<link rel="stylesheet" href="index.css">
<svg width=400 height=400 style="border: 1px solid">
</svg>
<script src="https://d3js.org/d3.v4.min.js"></script>
<script src="//d3js.org/topojson.v1.min.js"></script>
<script src="index.js"></script>
</body>
</head>
var width=550, height=400;
var svg = d3.select('svg')
.attr('width', width)
.attr('height', height);
var bgRect = svg.append('rect')
.attr('width', width)
.attr('height', height)
.attr('fill', 'white');
var gBackground = d3.select('svg')
.append('g')
var g = svg.append('g')
var legendColumnWidth = 90;
var legendRowHeight = 10;
var gBlocks = g.append('g');
var gRoads = g.append('g')
var gLegend = svg.append('g')
.attr('transform', 'translate(' + (width - 2 * legendColumnWidth - 10) + ',55)')
svg.append('text')
.classed('title', true)
.text("Common Trees in Cambridge")
.attr('x', 430)
.attr('y', 40)
.attr('text-anchor', 'middle')
;
texts = ['This map shows which trees are found',
'most often on each block in Cambridge',
'Use the mouse to hover over items',
'in the legend or on the map to see',
'where each species is most common']
var gAbstract = svg.append('g')
.attr('transform', 'translate(20,340)')
gAbstract.selectAll('.abstract')
.data(texts)
.enter()
.append('text')
.classed('abstract',true)
.attr('y', function(d,i) { return 10 * i; })
.text(function(d) { return d; });
var projection = d3.geoMercator()
.scale(1000000)
var path = d3.geoPath()
.projection(projection);
d3.json("block_trees.json", function(error, data) {
if (error) throw error;
var treeNames = d3.set(data.features.map(function(d) {
return d.properties.most_common_tree_name}));
var colorList = ["rgb(52,71,180)", "rgb(202,211,250)","rgb(86,238,173)", "rgb(32,80,46)", "rgb(135,212,207)", "rgb(38,85,130)", "rgb(142,128,251)", "rgb(194,223,125)", "rgb(119,49,41)", "rgb(244,142,155)", "rgb(186,26,23)", "rgb(44,245,43)", "rgb(31,147,131)", "rgb(53,151,33)", "rgb(162,6,85)", "rgb(253,143,47)", "rgb(157,141,136)", "rgb(241,192,57)", "rgb(132,30,164)", "rgb(226,109,248)", "rgb(63,22,249)", "rgb(50,149,233)", "rgb(254,22,244)", "rgb(249,79,156)", "rgb(239,208,165)"] // thanks to Colorgorical
var colorScale = d3.scaleOrdinal()
.domain(treeNames)
.range(colorList);
function selectTreeType(treeType) {
var allBlocks = gBlocks.selectAll('.block')
var sameBlocks = allBlocks.filter(function(e) {
return e.properties.most_common_tree_name == treeType;
});
sameBlocks.classed('selected', true);
gLegend.selectAll('.legend-rect')
.filter(function(d) { return d == treeType; })
.classed('selected', true);
}
function unselectAllTreeTypes() {
gBlocks.selectAll('.block')
.classed('selected', false);
gLegend.selectAll('.legend-rect')
.classed('selected', false);
}
gBlocks.selectAll('.block')
.data(data.features)
.enter()
.append('path')
.attr("class", "block")
.attr('d', path)
.attr('stroke', 'black')
.style('fill', function(d) { return colorScale(d.properties.most_common_tree_name) })
.on('mouseover', function(d) {
unselectAllTreeTypes();
selectTreeType(d.properties.most_common_tree_name);
});
// mouse moves out of the map area
bgRect.on('mouseover', unselectAllTreeTypes);
/* scale to fit all of cambridge */
// https://bl.ocks.org/mbostock/4699541
var bounds = path.bounds(data),
dx = bounds[1][0] - bounds[0][0],
dy = bounds[1][1] - bounds[0][1],
x = (bounds[0][0] + bounds[1][0]) / 2,
y = (bounds[0][1] + bounds[1][1]) / 2,
scale = .9 / Math.max(dx / width, dy / height),
translate = [width / 2 - scale * x, height / 2 - scale * y];
g.attr('transform', "translate(" + translate + ")scale(" + scale + ")")
//add the legend
var popularTreeCounts = {}
for (let i = 0; i < data.features.length; i++) {
var treeName = data.features[i].properties.most_common_tree_name
if (treeName in popularTreeCounts)
popularTreeCounts[treeName] += 1;
else
popularTreeCounts[treeName] = 1;
}
// a list of the tree types, sorted by how common they are
var treeList = treeNames.values().sort(function(a,b) { return popularTreeCounts[b] - popularTreeCounts[a]} );
var itemBarWidth = 20;
var itemBarLength = 6
var halfTreeListLength = Math.ceil(treeList.length / 2);
var legendItems = gLegend.selectAll('.legend-item')
.data(treeList)
.enter()
.append('g')
.classed('legend-item', true)
.attr('transform', function(d,i) {
return "translate(" + (legendColumnWidth * Math.floor(i / halfTreeListLength)) + ',' + ((i % halfTreeListLength) * legendRowHeight) + ")";
})
legendItems.append('text')
.text(function(d) { return d + " (" + popularTreeCounts[d] + ")"; })
.attr('dy', 8)
.attr('dx', 4);
legendItems.append('rect')
.attr('x', -itemBarLength)
.attr('y', 2)
.attr('height', legendRowHeight - 4)
.attr('width', itemBarLength)
.classed('legend-rect', true)
.style('fill', function(d) { return colorScale(d) }) ;
legendItems.on('mouseover', function(d) {
d3.selectAll('.legend-rect').classed('selected', false);
d3.select(this).select('rect').classed('selected', true)
gBlocks.selectAll('.block').classed('selected', false);
selectTreeType(d);
});
console.log("popularTreeCounts:", popularTreeCounts);
console.log('treeList', treeList);
});
// add the roads
d3.json("roads.topo", function(error, data1) {
gRoads.selectAll('.road')
.data(topojson.feature(data1,data1.objects.roads).features)
.enter()
.append('path')
.attr("class", "road")
.attr('d', path)
});
/*
d3.xml("img/tree.svg").mimeType("image/svg+xml").get(function(error, xml) {
if (error) throw error;
gBackground
.attr('transform', 'translate(270,10)scale(0.6)')
.style('opacity', 0.06)
.node()
.appendChild(xml.documentElement);
});
*/
This file has been truncated, but you can view the full file.
{"type":"Topology","objects":{"roads":{"type":"GeometryCollection","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}},"geometries":[{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":445.112003983,"Shape_len":86.5591744702},"arcs":[[0]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":13269.4625646,"Shape_len":1138.88284567},"arcs":[[1,2,3,4,5]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":15546.7268644,"Shape_len":1348.31194858},"arcs":[[6,7,8,9,10,11,12,13,14,15,16,17,18,19,20]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":807.761458614,"Shape_len":111.530043136},"arcs":[[21,22,23,24,25]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":269.609157619,"Shape_len":65.2968756209},"arcs":[[26,27]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1361.25787669,"Shape_len":157.972439394},"arcs":[[28,29,30]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":158.035859179,"Shape_len":54.1071440071},"arcs":[[31,-32,32]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":10970.686253,"Shape_len":623.637395689},"arcs":[[33,34,35,36,37,38,39]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":320.464480453,"Shape_len":63.5158650306},"arcs":[[40,-41]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":187.712763204,"Shape_len":57.3218031086},"arcs":[[41,42]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1354.21667407,"Shape_len":131.093397937},"arcs":[[43,44,45,46,47]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1696.81698393,"Shape_len":648.141444311},"arcs":[[48]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":381.579262746,"Shape_len":126.853865476},"arcs":[[49,50,51,52]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1488.10542707,"Shape_len":136.812350501},"arcs":[[53]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":219.862743039,"Shape_len":79.4685308175},"arcs":[[54,-55,55]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":221.659586364,"Shape_len":98.2400284785},"arcs":[[56,57,58,59]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":858.202994976,"Shape_len":132.74158841},"arcs":[[60,61,62,63]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":519.860919059,"Shape_len":103.71608911},"arcs":[[64]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":6659.44899952,"Shape_len":289.410711049},"arcs":[[65]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":918.202412147,"Shape_len":133.755632947},"arcs":[[66,67]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1917.64159266,"Shape_len":339.43673505},"arcs":[[68,69,70,71,72,73]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":388.446214228,"Shape_len":270.204302496},"arcs":[[74]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":5846.0601241,"Shape_len":948.071499359},"arcs":[[75,76,77,78,79,80,81,-76,82,83,84,85]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":628.574960822,"Shape_len":237.902916076},"arcs":[[86]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":838.057348627,"Shape_len":125.953313247},"arcs":[[87]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":16892.9474137,"Shape_len":460.882284124},"arcs":[[88]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":69.9317902559,"Shape_len":35.8812007018},"arcs":[[89]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":178.215237067,"Shape_len":69.2811217365},"arcs":[[90]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":81.306908582,"Shape_len":40.1190111331},"arcs":[[91,-92,92]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":125.297993614,"Shape_len":58.396269732},"arcs":[[93]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":117.580427837,"Shape_len":55.0002903675},"arcs":[[94,-95,95]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":352.620109705,"Shape_len":143.848023276},"arcs":[[96]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":2278.57769315,"Shape_len":209.793263188},"arcs":[[97]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1187.09645179,"Shape_len":438.865061351},"arcs":[[98,99,100,101,-101,102,-99,103]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":194.022255771,"Shape_len":76.1477683991},"arcs":[[104]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1168.23686989,"Shape_len":333.567685837},"arcs":[[105,106,107,108,-106,109]]},{"type":"Polygon","properties":{"TYPE":"RD-PAVED","EditDate":null,"Shape_area":34545.9143923,"Shape_len":2458.94423933},"arcs":[[110,111,112,113,-114,114,115,116,117,118,119]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1152.99778759,"Shape_len":176.76518045},"arcs":[[120,121]]},{"type":"Polygon","properties":{"TYPE":"RD-PAVED","EditDate":null,"Shape_area":9232.9370515,"Shape_len":811.506386816},"arcs":[[122]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1137.37619238,"Shape_len":366.899106706},"arcs":[[123]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":2189.27659516,"Shape_len":674.46419204},"arcs":[[124,125,126,127]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":4315.64790822,"Shape_len":541.79155792},"arcs":[[128,129,130,-130,131,132]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":7639.66459385,"Shape_len":738.51811463},"arcs":[[133,134,135,136,137,138,-137,139,-134,140,141]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":5438.13967121,"Shape_len":434.910771043},"arcs":[[142,143,144,145,146]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1193.73874306,"Shape_len":400.275259024},"arcs":[[147,148,-148,149]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":4820.76078427,"Shape_len":397.183668828},"arcs":[[150,151,152,153,154,155]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":7881.77693951,"Shape_len":465.664160407},"arcs":[[156,157,158,159,160,161]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":8458.69671435,"Shape_len":720.009658633},"arcs":[[162,163,164,165,166,167,168,169,170,171,172,173]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":297.331868661,"Shape_len":128.588303464},"arcs":[[174]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":869.053227034,"Shape_len":509.965094882},"arcs":[[175,176,177,178,179,180,181,-178,182,-176,183]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":516.603620595,"Shape_len":214.516225521},"arcs":[[184,185]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1057.40554269,"Shape_len":332.412364161},"arcs":[[186,187,188,189,190,191]]},{"type":"Polygon","properties":{"TYPE":"RD-PAVED","EditDate":null,"Shape_area":72476.6087906,"Shape_len":4580.61756998},"arcs":[[192,-193,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":974.261915394,"Shape_len":482.737629672},"arcs":[[213,214,215,216,-217,217,-215,218,219]]},{"type":"Polygon","properties":{"TYPE":"RD-PAVED","EditDate":null,"Shape_area":876.503696968,"Shape_len":117.526734647},"arcs":[[220]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":847.081994551,"Shape_len":355.473280638},"arcs":[[221,222,-222,223]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":580.777304009,"Shape_len":168.444173034},"arcs":[[224]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":4902.30513515,"Shape_len":906.105102424},"arcs":[[225,226,227,228,229,230,231,-231,232,-228,233]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":17056.0217298,"Shape_len":1202.99208081},"arcs":[[234,235,236,237,238,239,-237,240,241,242]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":709.056791092,"Shape_len":157.249862276},"arcs":[[243]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":16665.9005838,"Shape_len":778.033863926},"arcs":[[244,245]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":11960.3496197,"Shape_len":567.501094889},"arcs":[[246]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":3353.36606633,"Shape_len":396.412009715},"arcs":[[247]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":9922.39875466,"Shape_len":1345.80765292},"arcs":[[248]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":6999.90844897,"Shape_len":403.359395607},"arcs":[[249,250]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":10300.2880719,"Shape_len":1123.20901215},"arcs":[[251,252,253,254]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":11623.2919645,"Shape_len":617.417373094},"arcs":[[255]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":15194.1931305,"Shape_len":720.164957572},"arcs":[[256,257,258,259]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":4869.24487599,"Shape_len":338.121240102},"arcs":[[260]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":7387.39952126,"Shape_len":472.925309206},"arcs":[[261,262]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":6293.08363732,"Shape_len":340.025579994},"arcs":[[263]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":9189.6907389,"Shape_len":2034.11251652},"arcs":[[264,265,266,267,268,269,270,271,-268,272,-266,273]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":788.422409447,"Shape_len":145.867792013},"arcs":[[274]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":105.230455967,"Shape_len":39.3974427516},"arcs":[[275,-276,276]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1172.83936981,"Shape_len":159.720137776},"arcs":[[277,278,279,280]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":369.181592198,"Shape_len":109.510420966},"arcs":[[281,282,283,284]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1684.3582597,"Shape_len":497.647714745},"arcs":[[285,286,287]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":3641.53785566,"Shape_len":280.459119569},"arcs":[[288,289]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":131.094144375,"Shape_len":40.6544219887},"arcs":[[290,291,292,293]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":12369.6352248,"Shape_len":1578.71523549},"arcs":[[294,295,296,297,298,299,300,301,302,303,304,305,-306,306,307,308,309,310,311,312,313,314,315,316,317]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":423.923554379,"Shape_len":73.2980099575},"arcs":[[318]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1698.57658739,"Shape_len":186.739956354},"arcs":[[319,320]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1197.12607867,"Shape_len":203.057906075},"arcs":[[321,322,323,324,-325,325,326,-322,327]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1497.99499129,"Shape_len":229.883819539},"arcs":[[328,329,330,331,332]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":4593.76578453,"Shape_len":1491.67941632},"arcs":[[333]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1265.64641021,"Shape_len":136.150141927},"arcs":[[334,335,336]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":2434.92544926,"Shape_len":388.515366184},"arcs":[[337,338]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1464.17498936,"Shape_len":502.758388677},"arcs":[[339,340]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":577.321329633,"Shape_len":85.6550891134},"arcs":[[341,342,343]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1517.24927882,"Shape_len":525.619231298},"arcs":[[344,345,346,347]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":3024.06005701,"Shape_len":249.400996412},"arcs":[[348]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":4374.67418109,"Shape_len":1380.65863089},"arcs":[[349,350,351,352]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":0.0354828734786,"Shape_len":1.3160423865},"arcs":[[353,353,353]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":6272.07411161,"Shape_len":370.734783471},"arcs":[[354]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":74.2019674551,"Shape_len":42.0840220564},"arcs":[[355]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":37.4955693177,"Shape_len":26.4010454189},"arcs":[[356,-357,357]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":67.7497953595,"Shape_len":33.436424563},"arcs":[[358,359]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":75.2062461289,"Shape_len":35.0422042273},"arcs":[[360,-361,361]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":114.653687039,"Shape_len":54.5649416386},"arcs":[[362,363,364]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":55.7934564511,"Shape_len":28.9861168324},"arcs":[[365]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":108.066790882,"Shape_len":47.7451799733},"arcs":[[366,367]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":3366.45941719,"Shape_len":366.187435657},"arcs":[[368]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1211.57128474,"Shape_len":158.796381658},"arcs":[[369]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":2525.92428114,"Shape_len":222.641734986},"arcs":[[370]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":5335.95669219,"Shape_len":333.533365211},"arcs":[[371]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":5617.32858415,"Shape_len":350.164474449},"arcs":[[372,373]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":161.360323692,"Shape_len":66.8874603385},"arcs":[[374,375]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":120.202661679,"Shape_len":50.7720597331},"arcs":[[376]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":5236.94965891,"Shape_len":374.021064637},"arcs":[[377,378,379,380]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1714.44570844,"Shape_len":199.93286626},"arcs":[[381]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":8862.83787658,"Shape_len":434.784918616},"arcs":[[382,383,-384,384,385,386]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":13720.9430968,"Shape_len":1067.38988345},"arcs":[[387,388,389,390]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1433.07918744,"Shape_len":573.52421933},"arcs":[[391,392,393,394,395,396,-396,397,-394,398,-392]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":234.295601389,"Shape_len":79.2208859287},"arcs":[[399,400]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":274.460915829,"Shape_len":74.8269785397},"arcs":[[401]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":249.396029787,"Shape_len":56.0395065281},"arcs":[[402,403]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1800.44485676,"Shape_len":182.122107262},"arcs":[[404]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":607.930490433,"Shape_len":274.715190366},"arcs":[[405,406,-406,407]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":219.26635267,"Shape_len":63.9710817272},"arcs":[[408]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":197.965579042,"Shape_len":67.2989991818},"arcs":[[409]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":195.005229306,"Shape_len":66.8505598105},"arcs":[[410,411,-411]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":636.677754809,"Shape_len":126.569212376},"arcs":[[412,-413,413,414]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":724.660417803,"Shape_len":346.888097918},"arcs":[[415,416]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":578.168343576,"Shape_len":271.563567873},"arcs":[[417,418]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":641.029244199,"Shape_len":110.678248604},"arcs":[[419]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":376.511807775,"Shape_len":165.698450242},"arcs":[[420,421]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":242.955879532,"Shape_len":64.9912701151},"arcs":[[422,423,424]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":15028.0584538,"Shape_len":4246.5597327},"arcs":[[425,426,427,428,429,430,431,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,-461,463,-459,464,465,466,467,-454,468,469,-452,470,471,-449,472,473,-446,474,475,476,-443,477,478,-440,479,-438,480,-436,481,-434,482,-432,-431,483,-429,484,485,-427,486,487,488,489]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":2509.79139637,"Shape_len":335.540095098},"arcs":[[490,491]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1444.6477168,"Shape_len":203.760930044},"arcs":[[492]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1539.10530283,"Shape_len":393.909680831},"arcs":[[493,494,-494,495]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":6856.66342929,"Shape_len":934.997173806},"arcs":[[496,497]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":19906.972098,"Shape_len":4633.28834795},"arcs":[[498,194,499,196,500,501,502,503,504,202,505,506,507,508,207,509,510,511,512,513,-514,-212,-211,-210,-209,-208,-207,-206,-205,-204,-203,-202,-201,-200,-199,-198,-197,-196,-195,-194,192,514]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":359.688937895,"Shape_len":88.0645773372},"arcs":[[515,516,-517,517,518]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":435.516528483,"Shape_len":74.0349089918},"arcs":[[519,520]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":776.634026427,"Shape_len":283.575331423},"arcs":[[521,522]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":2912.86437716,"Shape_len":927.443908863},"arcs":[[523]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":2869.60409204,"Shape_len":890.745867176},"arcs":[[524,525,526,527,528,529,530,531,532,533,534,535,536]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1260.51993018,"Shape_len":436.70962357},"arcs":[[537,538,539]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1412.89944982,"Shape_len":493.81348364},"arcs":[[540,-541,541]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":978.921961807,"Shape_len":352.577678371},"arcs":[[542,543,544,545,546,547]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":2282.3104008,"Shape_len":773.902944295},"arcs":[[548,549,550,551,552,553,554,-552,555,556,557,558]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":3266.35072825,"Shape_len":1138.22901103},"arcs":[[559]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":747.365185727,"Shape_len":281.110867336},"arcs":[[560]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":230.164997912,"Shape_len":90.3913899961},"arcs":[[561]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":658.82739328,"Shape_len":241.485968436},"arcs":[[562]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":413.425532852,"Shape_len":148.657240564},"arcs":[[563]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1717.09658612,"Shape_len":566.254382879},"arcs":[[564,565,566,567,568,569]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":821.552606515,"Shape_len":304.248643756},"arcs":[[570]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":52.6463436064,"Shape_len":28.2982495553},"arcs":[[571]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":741.846338667,"Shape_len":287.205902917},"arcs":[[572,573]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":77.6329396279,"Shape_len":38.3801331126},"arcs":[[574,-575,575]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":78.1859226574,"Shape_len":39.8399501345},"arcs":[[576]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1048.51120845,"Shape_len":371.96521079},"arcs":[[577,578,579,580]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":74.6841346245,"Shape_len":37.1223085623},"arcs":[[581]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":716.074116491,"Shape_len":286.056373538},"arcs":[[582]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":442.430088855,"Shape_len":173.315947498},"arcs":[[583]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":622.240774598,"Shape_len":244.365983068},"arcs":[[584]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":786.359460986,"Shape_len":298.036965083},"arcs":[[585]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":175.741933816,"Shape_len":53.028371293},"arcs":[[586,587]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":945.449164834,"Shape_len":187.975273088},"arcs":[[588,589,590]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":99.2331204518,"Shape_len":42.5930130945},"arcs":[[591,592,-593,-592]]},{"type":"Polygon","properties":{"TYPE":"RD-PAVED","EditDate":null,"Shape_area":32078.5547543,"Shape_len":3053.29905626},"arcs":[[593,594,595,596,597,598,-599,599,600,601,602,603,-604,515,-516,-519,-518,516,604,605]]},{"type":"Polygon","properties":{"TYPE":"RD-UNPAVED","EditDate":null,"Shape_area":1312.11986302,"Shape_len":229.622189},"arcs":[[606,-607,607]]},{"type":"Polygon","properties":{"TYPE":"RD-UNPAVED","EditDate":null,"Shape_area":2722.89341212,"Shape_len":421.607807431},"arcs":[[608,609]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":782.305903119,"Shape_len":157.298006588},"arcs":[[610,611,612]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":77.7564200233,"Shape_len":69.5525694631},"arcs":[[613,-614,614]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":13421.0623428,"Shape_len":1619.60718283},"arcs":[[615,616,617,618,619,620,621]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":14764.057271,"Shape_len":2184.12787925},"arcs":[[622,623]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":8596.31488071,"Shape_len":1371.99428067},"arcs":[[624,625,626,627,628,629]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":5730.06858081,"Shape_len":741.535891293},"arcs":[[630,631]]},{"type":"Polygon","properties":{"TYPE":"RD-UNPAVED","EditDate":null,"Shape_area":7036.3892597,"Shape_len":620.139165471},"arcs":[[632,633,634,635,636,-637,637,638,639]]},{"type":"Polygon","properties":{"TYPE":"RD-ALLEY","EditDate":null,"Shape_area":7164.16352518,"Shape_len":1097.29712727},"arcs":[[640,641,642,643]]},{"type":"Polygon","properties":{"TYPE":"RD-PAVED","EditDate":null,"Shape_area":66938.2334157,"Shape_len":3104.52629312},"arcs":[[644,645,646,647,648,649,650,651,652,653,654,655,656,657,658,659,660,661,662,-647,-646,-645]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":234.570517235,"Shape_len":111.948893712},"arcs":[[663]]},{"type":"Polygon","properties":{"TYPE":"RD-PAVED","EditDate":null,"Shape_area":5657.17201374,"Shape_len":519.792900655},"arcs":[[664]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":682.990668407,"Shape_len":92.6987087689},"arcs":[[665,666]]},{"type":"Polygon","properties":{"TYPE":"RD-UNPAVED","EditDate":null,"Shape_area":48042.1100372,"Shape_len":7075.00896115},"arcs":[[667]]},{"type":"Polygon","properties":{"TYPE":"RD-PAVED","EditDate":null,"Shape_area":113526.114662,"Shape_len":6006.46074318},"arcs":[[668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,-724,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,-640,635,636,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,792]]},{"type":"Polygon","properties":{"TYPE":"RD-PAVED","EditDate":null,"Shape_area":47553.1467852,"Shape_len":4389.44004213},"arcs":[[793,794,795,796,797,798,799,800,801,802,803,804,805,806,807,808,809,810,811,812,787,813,814,-691,-690,-689,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,747,837,838,839,840,841,842]]},{"type":"Polygon","properties":{"TYPE":"RD-PAVED","EditDate":null,"Shape_area":103855.203498,"Shape_len":5347.44058697},"arcs":[[843,844,845,846,847,848,849,850,851,852,853,854,855,856,-783,857,858,859,-777,860,-775,861,-773,862,863,864,865,-768,866,867,-765,868,869,870,871,872,873,-760,874,875,876,-756,877,-754,878,-637,-636,639,-751,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,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,-807,-809,928,929,930,931,932,933,934]]},{"type":"Polygon","properties":{"TYPE":"RD-PAVED","EditDate":null,"Shape_area":93594.5268168,"Shape_len":6550.29899515},"arcs":[[935,936,674,937,938,939,940,941,942,706,943,722,944,744,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,727,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,679,991,-791,992,-788,-813,993,802,853,994,-925,995,996,997,998,999,1000,1001,-918,1002,1003,1004,-914,1005,-912,1006,-910,-908,907,1007,1008,1009,1010,927,1011,-805,1012,-852,1013,1014,1015,791,1016,1017,1018,1019,1020,1021,1022,1023,-849,1024,1025,1026]]},{"type":"Polygon","properties":{"TYPE":"RD-PAVED","EditDate":null,"Shape_area":2275.53429071,"Shape_len":228.045651733},"arcs":[[1027,1028,1029,1030,1031]]},{"type":"Polygon","properties":{"TYPE":"RD-PAVED","EditDate":null,"Shape_area":4426.60801055,"Shape_len":396.23479256},"arcs":[[1032,1033,1034,1035,1036,1037,1038,1039]]},{"type":"Polygon","properties":{"TYPE":"RD-PAVED","EditDate":null,"Shape_area":20353.7837194,"Shape_len":1235.72240972},"arcs":[[1040,1041,1042,1043]]},{"type":"Polygon","properties":{"TYPE":"RD-PAVED","EditDate":null,"Shape_area":55118.2092531,"Shape_len":3551.96729505},"arcs":[[1044,1045,-891,1046,1028,1029,-740,1047,734,1048,1049,-712,1050,1051,1052,1033,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1035,1038,1067,714,1068,1069,737,1070,1071,1072,1073,1074]]},{"type":"Polygon","properties":{"TYPE":"RD-PAVED","EditDate":null,"Shape_area":109896.838617,"Shape_len":4031.64987982},"arcs":[[-1061,1075,1076,1077,-1057,1078,1079,-1052,1080,-711,-717,1081,733,1082,1083,1084,-890,1085,1086,1087,1088,1089,1090,1091,1092,896,1093,1094,1095,741,1096,731,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,-846,-845,1123,-1124,1124,1125,1126,1127,1128,1129,-1063,1130]]},{"type":"Polygon","properties":{"TYPE":"RD-PAVED","EditDate":null,"Shape_area":26592.8944288,"Shape_len":3161.66616799},"arcs":[[-842,-841,-840,-839,-838,-748,-837,-836,-835,1131,1132,1133,1134,1135,1136,-828,1137,-826,1138,1139,-823,1140,1141,1142,1143,1144,1145,-687,1146,-983,1147,1148,1149,1150,1151,-977,1152,-975,1153,1154,-972,1155,1156,-969,1157,1158,1159,1160,1161,1162,1163,1164,-705,-725,-728,1165,-747,-959,1166,881,-957,839,-901,1167,1168,-953,1169,1170,-950,1171,1172]]},{"type":"Polygon","properties":{"TYPE":"RD-PAVED","EditDate":null,"Shape_area":126921.777091,"Shape_len":6021.30889402},"arcs":[[1173,1174,1175,1176,1177,1178,1179,-844,1180,1125,1181,1127,1182,1183,-1115,-1114,-1113,-1112,1184,1185,-1109,1186,-1107,1187,1188,1189,1190,-1102,1191,-1100,1192,-719,1193,730,-1097,1194,1195,-887,1196,1197,1198,1199,1200,1201,1202,1203,884,1204,1205,1206,720,1207,1208,1209,1210,1211,-939,1212,675,-676,-675,1213,1214,1215,1216,1217,-933,-932,1218,1219,1220,-1127,1221,1222,1223,-1120,-1119,1224]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1913.73275419,"Shape_len":195.831526273},"arcs":[[1225,1226]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":5527.1318093,"Shape_len":1229.46129824},"arcs":[[1227,1228,-1228,1229,1230,1231,1232,1233,1234]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":2596.71633539,"Shape_len":740.782480989},"arcs":[[1235,1236,1237,1238]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":2087.73439077,"Shape_len":315.209461681},"arcs":[[1239,1240]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":148.732101007,"Shape_len":48.5694764693},"arcs":[[1241]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":829.646041265,"Shape_len":246.900001286},"arcs":[[1242]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":118.849075381,"Shape_len":52.6599263297},"arcs":[[1243,1243,1243]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":112.258430061,"Shape_len":51.8266424},"arcs":[[1244,-1245,1245]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":7541.55255489,"Shape_len":1803.69781191},"arcs":[[1246]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":691.56607507,"Shape_len":389.94444749},"arcs":[[1247,1248,1249]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":41.5010704456,"Shape_len":26.9872301815},"arcs":[[1250,1250,1250]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":346.566025627,"Shape_len":82.3485577952},"arcs":[[1251,1252,1253]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":211.568821302,"Shape_len":60.0794384777},"arcs":[[1254,-1255,1255]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":182.206097398,"Shape_len":58.1712344478},"arcs":[[1256,1257]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":4659.18869769,"Shape_len":1377.87585679},"arcs":[[1258,1259,1260]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":780.328803174,"Shape_len":281.849765428},"arcs":[[1261,1262,1263,1264,-1265]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":48.7406003867,"Shape_len":26.3653787104},"arcs":[[1265,-1266,1266]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1158.62794052,"Shape_len":546.199513904},"arcs":[[1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":352.783589331,"Shape_len":122.806132693},"arcs":[[1280,1281,1282,1283,1284,1285,-1282,1286]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":258.045024114,"Shape_len":92.5677004537},"arcs":[[1287,1288]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":334.1922415,"Shape_len":75.8846991398},"arcs":[[-1288,1289]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":307.236044504,"Shape_len":75.2350416726},"arcs":[[1290]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":387.691865557,"Shape_len":88.2672556194},"arcs":[[1291]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":3098.31937651,"Shape_len":856.283474528},"arcs":[[1292,1293,1294,1295,1296,1297,1298,1299]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":3894.07428665,"Shape_len":904.228837785},"arcs":[[1300]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":2657.20859351,"Shape_len":990.130439175},"arcs":[[1301,1302,1303,1304,1305,1306,1307,-1305,1308]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":142.747486445,"Shape_len":47.6490679419},"arcs":[[1309]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":3342.40878427,"Shape_len":1522.88534103},"arcs":[[1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":949.512978029,"Shape_len":131.935399521},"arcs":[[1326]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":873.706215364,"Shape_len":276.050292638},"arcs":[[1327]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":467.886541572,"Shape_len":166.573631258},"arcs":[[1328,1329]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":173.746360276,"Shape_len":64.8804084461},"arcs":[[1330]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1987.0564413,"Shape_len":158.077380029},"arcs":[[1331,1332]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":372.764756413,"Shape_len":505.789696527},"arcs":[[644,645,646,-663,-648,-647,-646,-645]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1915.53565649,"Shape_len":269.062450513},"arcs":[[1333,1334,1335,1336,1337,1338,1339,1340,1341]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":485.770002267,"Shape_len":98.7416265251},"arcs":[[1342,1343]]},{"type":"Polygon","properties":{"TYPE":"RD-PAVED","EditDate":null,"Shape_area":13802.5878871,"Shape_len":1375.077589},"arcs":[[1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,1363,1364,1365,1366,1367,1368,1369,1370]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":2700.2528674,"Shape_len":1484.83211642},"arcs":[[-1370,-1369,-1368,-1367,-1366,-1365,-1364,-1363,-1362,-1361,-1360,-1359,-1358,-1357,-1356,1371,1356,1357,1358,1372,1373,1374,1375,1361,1376,1363,1377,1366,1378,1368,1379]]},{"type":"Polygon","properties":{"TYPE":"RD-PAVED","EditDate":null,"Shape_area":14580.8089076,"Shape_len":1412.58717614},"arcs":[[-1369,-1379,-1367,-1378,-1364,-1377,-1362,-1376,-1375,-1374,-1373,-1359,-1358,-1357,-1372,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,1391,1392,1393]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":2854.28038627,"Shape_len":402.799513113},"arcs":[[1394,1395,-1395,1396]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1823.99829266,"Shape_len":249.547363402},"arcs":[[1397,1398,1399,1400,1401,-1400,1402,1403]]},{"type":"Polygon","properties":{"TYPE":"RD-UNPAVED","EditDate":null,"Shape_area":46639.8884993,"Shape_len":5392.3893235},"arcs":[[1404,1405,1406,-1407,1407]]},{"type":"Polygon","properties":{"TYPE":"RD-PAVED","EditDate":null,"Shape_area":7484.34198606,"Shape_len":745.591571113},"arcs":[[1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420]]},{"type":"Polygon","properties":{"TYPE":"RD-PAVED","EditDate":null,"Shape_area":7793.97185847,"Shape_len":790.131237955},"arcs":[[1421,-1416,1422,1423,-1413,1424,1425,-1410,1426,1427,1428,1429,1430,1431]]},{"type":"Polygon","properties":{"TYPE":"RD-PAVED","EditDate":null,"Shape_area":7174.65185982,"Shape_len":753.863698707},"arcs":[[1432,1433,1434,1435,1436,1437,1438,1439,1440,1441]]},{"type":"Polygon","properties":{"TYPE":"RD-PAVED","EditDate":null,"Shape_area":9437.31904211,"Shape_len":939.928777643},"arcs":[[1442,1443,-1439,1444,1445,-1436,1446,1447,1448,1449,1450]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":271.316303377,"Shape_len":74.9685958171},"arcs":[[1451,1452]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":91.7626886027,"Shape_len":40.8409538653},"arcs":[[1453]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":5029.7429138,"Shape_len":1304.53650075},"arcs":[[1454,1455,1456,1457,1458,1459,1460,-1461,1461,1462,1463,1464,1465,-1455,1466]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":89.3662431317,"Shape_len":39.9918216295},"arcs":[[1467,-1468,1468]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":4842.37077582,"Shape_len":988.152129126},"arcs":[[1469,1470,1471,1472,1473,1474,-1470,1475]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":2394.95509386,"Shape_len":704.572016341},"arcs":[[1476,1477,1478,1479]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1158.34733877,"Shape_len":317.783902125},"arcs":[[1480,1481]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":2013.68569374,"Shape_len":253.034781208},"arcs":[[1482,1483,-1484,1484,1485]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":168.058337028,"Shape_len":56.2568362603},"arcs":[[1486]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":153.176851613,"Shape_len":53.475907687},"arcs":[[1487]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":542.122336364,"Shape_len":121.058065197},"arcs":[[1488]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":225.899823543,"Shape_len":66.1311713879},"arcs":[[1489,1490]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1348.37380861,"Shape_len":821.249606886},"arcs":[[1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,-1496,1501,-1494,1502,-1492]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1990.8340227,"Shape_len":190.682671603},"arcs":[[1503,1504]]},{"type":"Polygon","properties":{"TYPE":"RD-PAVED","EditDate":null,"Shape_area":2503.55806225,"Shape_len":360.490869825},"arcs":[[1505]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":597.640511967,"Shape_len":214.830275682},"arcs":[[1506,1507]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":752.43972822,"Shape_len":126.165675495},"arcs":[[1508]]},{"type":"Polygon","properties":{"TYPE":"RD-PAVED","EditDate":null,"Shape_area":2081.45398745,"Shape_len":384.362776551},"arcs":[[1509]]},{"type":"Polygon","properties":{"TYPE":"RD-ALLEY","EditDate":null,"Shape_area":3989.9249058,"Shape_len":650.992136739},"arcs":[[1510,1511,1512]]},{"type":"Polygon","properties":{"TYPE":"RD-PAVED","EditDate":null,"Shape_area":871.599151892,"Shape_len":278.562013916},"arcs":[[1513]]},{"type":"Polygon","properties":{"TYPE":"RD-PAVED","EditDate":null,"Shape_area":4386.83794451,"Shape_len":423.644256113},"arcs":[[1514,1515]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1309.91310369,"Shape_len":165.991346032},"arcs":[[1516]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1019.99106555,"Shape_len":145.530597742},"arcs":[[1517,1518]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":537.904240353,"Shape_len":92.0951875501},"arcs":[[1519]]},{"type":"Polygon","properties":{"TYPE":"RD-ALLEY","EditDate":null,"Shape_area":3165.28132943,"Shape_len":511.644045713},"arcs":[[1520,-1521,1521,1522,1523]]},{"type":"Polygon","properties":{"TYPE":"RD-ALLEY","EditDate":null,"Shape_area":3196.63715081,"Shape_len":492.158688227},"arcs":[[1524,-1525,1525,1526,1527]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":379.653044033,"Shape_len":142.371314619},"arcs":[[1528,1529]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":3328.26951503,"Shape_len":252.074507337},"arcs":[[1530]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":7418.27232264,"Shape_len":471.759300695},"arcs":[[1531,1532]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":175.91397809,"Shape_len":56.7035111471},"arcs":[[1533]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":1173.18109693,"Shape_len":288.9146599},"arcs":[[1534,1535,1536,1537]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":811.363918838,"Shape_len":122.064130011},"arcs":[[1538,1539,1540]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":861.1278141,"Shape_len":170.597238053},"arcs":[[1541,1542,1543]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":243.575034727,"Shape_len":71.0120845254},"arcs":[[1544,1545]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":2871.00903921,"Shape_len":221.935412606},"arcs":[[1546,1547]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":317.423335569,"Shape_len":77.1637805134},"arcs":[[1548,1549]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":164.916187672,"Shape_len":69.1675474939},"arcs":[[1550]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":303.690175421,"Shape_len":120.479674694},"arcs":[[1551,-1552,1552]]},{"type":"Polygon","properties":{"TYPE":"RD-ALLEY","EditDate":null,"Shape_area":3366.82926648,"Shape_len":513.091004035},"arcs":[[1553,1554,1555,1556]]},{"type":"Polygon","properties":{"TYPE":"RD-UNPAVED","EditDate":null,"Shape_area":1536.98984074,"Shape_len":198.183734709},"arcs":[[1557,1558]]},{"type":"Polygon","properties":{"TYPE":"RD-PAVED","EditDate":null,"Shape_area":831.23001146,"Shape_len":284.638263869},"arcs":[[1559,1560,1561,1562,1563,1564,1565]]},{"type":"Polygon","properties":{"TYPE":"RD-UNPAVED","EditDate":null,"Shape_area":54923.1737746,"Shape_len":4124.93720467},"arcs":[[1566,1567,-869,1568,1569,-696,1570,778,1571,1572,1573,-1001,1574,1575,-650,1576,1577,659,1578,660,1579,645,1580,1581,1582,1583,1584,1585,-781,1586,1587,700,1588,-638,636,751,1589,1590,1591,870,1592]]},{"type":"Polygon","properties":{"TYPE":"RD-PAVED","EditDate":null,"Shape_area":9609.81908691,"Shape_len":780.701576528},"arcs":[[1593]]},{"type":"Polygon","properties":{"TYPE":"RD-PAVED","EditDate":null,"Shape_area":1559.49653279,"Shape_len":296.124883851},"arcs":[[1594]]},{"type":"Polygon","properties":{"TYPE":"RD-UNPAVED","EditDate":null,"Shape_area":1207.87744811,"Shape_len":244.297561195},"arcs":[[1595]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":4433.0595147,"Shape_len":1085.82750882},"arcs":[[1596,1597,1598,1599,1600,1601,1602,1603,1604]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":2299.50805423,"Shape_len":551.588582524},"arcs":[[1605,1606,1607,1608,-1606,1609]]},{"type":"Polygon","properties":{"TYPE":"RD-PAVED","EditDate":null,"Shape_area":110401.060505,"Shape_len":7079.64580023},"arcs":[[1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,-1634,1634,1635,1636,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,-1648,1648,-1491,1649,1650,1651],[1487]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":30.5432463752,"Shape_len":22.2897877332},"arcs":[[1652,1652,1652]]},{"type":"Polygon","properties":{"TYPE":"RD-PAVED","EditDate":null,"Shape_area":25360846.8824,"Shape_len":1628652.18151},"arcs":[[1653,1654,1655,1656,1657,1658,1659,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,665,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,-1567,1698,1699,1700,-1250,-1249,-1248,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,-1622,1712,1713,-1652,1714,1715,1716,1717,-1650,-1490,-1649,1647,1718,1719,1720,1721,1623,1722,1723,-1619,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,-1615,1734,1735,1641,-1642,-1641,1736,1737,-1639,1738,1739,1740,1741,-1629,1742,1743,1744,1745,1451,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,-234,227,-233,230,-232,-231,-230,1757,-228,-227,1758,1759,1760,1761,1762,1763,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,49,1787,1788,1789,57,1790,1791,1792,1793,1794,1795,1796,-115,113,1797,1798,1799,1800,1801,1802,1803,1804,1805,-514,-513,-512,-511,-510,-208,-509,-508,-507,-506,-203,-505,-504,-503,-502,-501,-197,-500,-195,-499,1806,-600,598,1807,1808,-597,1809,1810,1811,-497,-498,1812,1813,1814,1815,1816,1817],[1652,1652,1652],[-357,356,1818],[1250,1250,1250],[1819,-1820,1820],[-1266,1265,1821],[571],[365],[1822,1823,1824],[1825,1825,1825],[1826,1827,1828],[-360,-359],[89],[-356],[581],[360,-361,361],[-575,574,1829],[613,-614,614],[576],[91,-92,92],[-1468,1467,1830],[1453],[-592,1831,-593],[1832,-1833,1833],[-276,275,353],[1834,-1835,1835],[366,367],[-1245,1244,1836],[-365,364,1837],[1838,1838,1838],[-95,94,1839],[1840,-1841,1243],[-377],[-94],[-294,-293,-292,-291],[1309],[1241],[-32,31,1841],[374,375],[-1551],[1486],[1330],[586,587],[1533],[-91],[-1257,-1258],[1842,-43],[-105],[410,411,-411],[-410],[1254,-1255,1255],[-409],[54,-55,55],[59,-59,-58,-57],[-562],[1843,-400],[663],[422,-423,1844],[-1545,-1546],[1845,-403],[-1288,-1289],[26,27],[-1452,-1453],[-402],[1846,1847,1848],[-175],[1849,-1552],[-1291],[-1549,-1550],[-41,40],[1287,-1290],[-1252,-1254,-1253],[-97],[-1287,1281,-1286,-1285,1850,-1282,-1281],[-284,-283,-282,-285],[420,-422],[1528,-1530],[-50,-53,-52,50],[1291],[74],[-564],[-319],[-520,-521],[-584],[-1],[1851,-1330],[1342,-1344],[-185,185],[-65],[-1520],[-1489],[-343,-342,-344],[-418,418],[-225],[1506,-1508],[405,-407,-406,-408],[-585],[-87],[-414,412,-413,-415],[-420],[-563],[-666,-667],[-244],[-583],[415,-417],[1852,1853,1854,1855],[-574,1856],[-561],[-1509],[-522,522],[-1265,-1264,-1263,-1262,1264],[-612,-611,-613],[-586],[-275],[-22,-26,-25,1857],[1539,-1539,-1541],[-571],[-1243],[-88],[221,-223,-222,-224],[1858,-62,60],[-1542,-1544,-1543],[175,-183,177,-182,-181,179,-179,-178,1859,1860,-176,-184],[-1328],[1861,-68],[-590,-589,-591],[-1327],[-219,214,-218,216,-217,-216,-215,-214,219],[-547,-546,544,-544,-543,-548],[1862,-1518,1863],[1864,580,-580,578],[-191,-190,-189,-188,-187,191],[-124],[-121,-122],[-1481,1481],[-1279,-1278,1865,-1275,-1274,1272,-1272,-1271,-1270,-1269,-1268,-1280],[105,-109,107,-107,-106,-110],[-280,-279,-278,-281],[-1537,1535,-1535,-1538],[1866,98,-103,100,-102,-101,-100,-99,103],[147,-149,-148,-150],[321,-327,-326,324,-325,-324,-323,-322,-328],[-370],[1867,1868,1869,1870,1871,1872],[1873,539,-540,-539],[-336,-335,-337],[-1517],[-48,-47,-46,-45,1874,1875],[-31,-30,-29],[1876,1877,1878,1879,1880,1881,1882,1883,1884],[1885,1886,1887,1888,1889],[1890,-541,-542],[492],[-340,340],[-54],[-329,-333,-332,-331,-330],[-347,-346,-345,347],[493,-495,-494,-496],[286,-286,-288],[-49],[-320,-321],[-382],[-569,-568,566,-566,-565,-570],[-405],[-1828,1827,1891,1892,1893,1894,1895,1896,-1894,1897,1898,1899],[-1404,-1403,1399,-1402,-1401,-1400,-1399,-1398],[-1226,1226],[1900,-1340,-1339,-1338,-1337,-1336,-1335,-1334,1341],[-73,-72,-71,-70,-69,-74],[-1332,-1333],[-1505,-1504],[-1485,1483,-1484,-1483,-1486],[-1833,1901,1902,1903,1904,1905,1906,1907,1908,1909,1910,1911,-1903,1912],[-1240,-1241],[-127,125,-125,127],[1913,1914,1915,-1916,1916,1917,1918,1919,1920,1921],[-98],[-558,-557,-556,551,-555,553,-553,-552,-551,-550,-549,558],[1605,-1609,-1608,-1607,-1606,-1610],[-1479,1477,-1477,-1480],[-338,-339],[-491,491],[1922,1923,1924,1925,1926,1927,1928,1929,1930,1931,1932,-1928,1933,-1926],[-371],[1237,-1237,1235,-1239],[1304,-1308,1306,-1306,-1305,-1304,1934,1935,-1309],[1936,1937],[1394,-1396,-1395,-1397],[1938,532,1939,-534,-533,-532,-531,-530,-529,-528,-527,-526,-525,-537],[-1547,1940,-1548],[-524],[-349],[1941,1942],[-1299,-1298,-1297,-1296,-1295,-1294,-1293,1943],[1944],[-560],[-1531],[-1325,-1324,-1323,1945,1313,-1321,-1320,-1319,1317,-1317,-1316,-1315,-1314,-1313,-1312,-1311,1325],[-248],[-369],[1946],[1947],[-289,-290],[1948,1949],[-1301],[1950,1951,1952],[1953,1954,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966],[-132,129,-131,-130,-129,-133],[-352,350,-350,-353],[-1604,-1603,-1602,1967,-1600,1598,-1598,-1597,-1605],[-334],[1968,-1260,1969],[1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1981,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,-1975,1994,1995],[-155,-154,-153,-152,-151,155],[1469,-1475,-1474,-1473,-1472,-1471,-1470,-1476],[-261],[1454,-1466,-1465,-1464,-1463,-1462,1460,-1461,-1460,-1459,-1458,-1457,-1456,-1455,-1467],[379,-379,1996,-381],[-372],[1997,1998,-146,144,-144,-143],[1999,1227,-1229,-1228,-1235,-1234,-1232,-1231],[2000,2001,2002,2003,2004,2005,2006,2007,2008],[372,-374],[630,-632],[-84,-83,75,-82,-81,-80,78,-78,-77,-76,-86,-85],[-355],[-264],[2009,2010,2011,2012],[-66],[249,-251],[2013],[-263,-262,2014],[2015,-1533],[-1247],[-141,133,-140,136,-139,-138,-137,-136,-135,-134,-142],[-161,-160,-159,157,-157,161],[2016],[2017,2018,2019],[2020,2021,2022],[-163,2023,-173,-172,-171,-170,-169,-168,-167,-166,2024,-164],[2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047],[-628,-627,-626,-625,-630,-629],[-385,383,-384,-383,-387,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,-2064,2073,2074,2075,2076,2077,2078,2079,2080,2081,2082,2083,2084,2085,2086],[265,-273,267,-272,-271,269,-269,-268,-267,-266,-265,2087],[-254,252,-252,254],[2088,2089,2090,2091],[2092,-36,-35,-34,2093,2094,-39],[-256],[2095],[-247],[2096,2097,2098,2099,2100,-2101,2101,2102,-2099,2103],[-317,-316,-315,-314,-313,-312,-311,-310,-309,-308,-307,2104,2105,-306,-305,-304,-303,-302,-301,-300,-299,-298,-297,-296,-295,-318],[2106],[-3,-2,-6,2107,2108,-4],[2109,2110,-622,-621,-620,-619,-618,-617],[2111],[2112],[2113,-624],[2114,-488,-487,426,2115,-485,428,-484,2116,431,-483,433,-482,435,-481,437,-480,439,-479,-478,442,-477,2117,-475,445,-474,-473,448,-472,-471,451,2118,-469,453,-468,-467,-466,-465,458,-464,460,2119,-462,-461,-460,-459,-458,-457,466,-455,-454,-453,-452,-451,-450,-449,-448,-447,-446,-445,-444,-443,-442,-441,-440,-439,-438,-437,-436,-435,-434,-433,-432,-431,-430,-429,-428,-427,-426,-490],[2120,2121,2122,2123,2124],[256,-260,2125,-258],[2126,2127,2128,2129,2130,2131],[2132,2133,-1381,1491,-1503,1493,-1502,1495,-1501,1497,-1499,-1498,-1497,-1496,-1495,-1494,-1493,-1492,-1355,2134,2135,2136,2137,1356],[-20,-19,-18,-17,-16,-15,-14,-13,-12,-11,-10,-9,-8,-7,20],[2138,-1693,2139],[2140],[2141,2142,2143,2144,2145,2146,2147,2148],[2149,-246],[2150,2151],[-89],[-242,-241,236,-240,2152,-238,-237,-236,-235,-243],[2153,2154,2155,2156],[2157],[2158,2159],[2160,2161],[2162],[-2154,2163,-2156,2164,2165,2166,2167,2168,2169],[2170],[2171,2172,2173],[2174,2175,2176,2177],[2178,-1371,-1380,-1394,2179,2180,2181,2182,-1390,2183,2184,2185,1386,1375,2186,1348,2187,2188,2189],[2190,2191],[2192],[2193,2194,2195,2196,2197,2198,2199,2200,2201,2202],[2203,2204,2205,2206,2207],[2208,2209],[2210],[2211,2212,-2199,2213,2214,-2202],[2215,2216,2217],[2218],[2219,2220,2221],[2222,2223,2224,2225,2226],[2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244,2245,2246,2247,2248,2249,2250,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,2278],[2279],[2280],[2281],[2282],[2283],[2284],[2285],[2286],[2287,2288,2289,2290,2291],[2292],[2293],[2294],[2295],[2296],[2297],[2298,2299,2300],[2301,2302,2303,2304,2305,2306],[2307,2308,2309,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,2350,2351,2352,2353],[2354,2355],[2356],[2357,2358,2359,2360],[2361],[-1385,2362,2363,2364,2365,1350,2366,1372],[2367],[2368,2369,2370,2371],[2372,2373,2374,23,2375,2376],[2377],[2378],[2379,2380,2381,2382,2383,2384,2385],[2386],[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,2428,2429],[2430],[2431],[2432],[2433],[2434,2435,-1637,2436,2437,-1635,1633,2438],[2439,2440],[2441],[2442],[2443],[2444,2445,2446,2447,2448],[2449],[2450,2451,2452,2453],[-2019,2454],[-2169,2455,2456,2457,2458,2459],[2460,2461,2462,2463,2464,2465,2466,2467],[2468,2469,2470],[2471,2472,2473,2474,2475],[2476,2477,2478],[2479,2480],[2481,2482,2483],[2484,2485,-1761,2486,2487],[2488,2489,2490,2491,2492,2493,2494,2495],[2496],[2497,2498,2499],[2500,2501,2502,2503,2504,2505],[2506,2507,2508,2509,2510,2511,2512],[2513],[2514],[2515,2516],[2517],[2518],[2519],[2520],[-2467,2521,2522,2523,-2463,2524],[2525,-2176,2526,2527,2528],[2529,2530,2531,2532,2533,2534],[2535,2536,2537],[2538,2539,2540,2541],[2542,2543],[2544],[2545,2546,2547],[2548,2549,2550],[2551,2552],[2553,2554,2555,2556,2557],[2558,2559],[2560,2561,2562,2563],[2564,2565,2566,2567,2568,2569,2570,2571,2572],[2573],[2574],[2575],[2576,2577,-2389,2578,2579],[2580,2581,2582],[2583,2584,2585,2586,2587,2588,2589],[2590],[-1682,2591,2592,-1679,2593,2594,2595],[2596],[2597,2598,2599],[2600,2601,2602],[2603],[2604,2605,2606],[2607,2608,2609,2610,2611,2612,2613,-1779,2614,2615,-1776,2616,2617,-1773,2618,2619],[2620],[2621,2622],[2623,-2303,2624,2625],[2626,2627,2628,2629,2630,2631,2632,2633],[2634,-2400,2635],[2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648,2649],[2650,2651,2652,2653,2654,2655,2656],[2657],[2658,2659],[2660,2661,2662,2663,2664],[2665],[2666,2667],[2668],[2669,2670,2671,2672,2673,2674],[2675],[2676],[2677,2678,2679,2680,2681,2682,2683],[2684],[2685,2686,2687,2688],[2689,2690,2691],[2692,2693,2694],[2695,2696,2697,2698,2699,2700],[2701,2702,2703,2704,2705,2706,2707,2708],[2709,2710],[2711,2712],[2713,2714,2715],[2716],[2717,2718],[2719,2720],[2721,2722,2723],[2724],[2725],[-1658,2726,2727],[2728,2729,2730,2731,2732],[2733],[2734,2735],[2736],[2737,2738,2739,2740,2741],[2742,2743,2744,2745,2746,2747],[2748,2749],[2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760],[2761,2762,2763,2764],[2765,2766,2767,2768,2769,2770,2771],[2772],[2773,2774,2775,2776,2777,2778,2779,2780],[-2011,2781,2782,2783,2784,2785,2786],[2787,2788],[2789],[2790,2791,2792,2793,2794,2795,2796],[2797],[2798],[2799],[2800],[2801],[2802],[2803],[2804,2805,2806],[2807],[2808],[2809],[2810,-2412,2811,2812,2813,2814],[2815],[2816],[2817],[2818],[2819,2820],[2821],[2822],[2823,2824,2825,2826,2827],[2828,2829,2830],[2831,2832,2833,2834,2835,2836,2837],[2838,2839],[2840],[2841,2842],[2843],[2844,2845,1428,-1428,2846,1397,2847,2848,-1421,2849,2850,2851,2852,2853,-1432,2854],[2855,2856],[2857],[2858],[2859,2860,2861,2862,2863],[2864],[1520,2865,-1525,2866,-1527,2867,-1523,2868],[2869],[2870,2871,2872,2873,2874,2875],[2876],[-2829,2877],[2878],[2879],[2880,2881,2882,2883,2884,2885],[2886,2887,2888],[2889],[2890],[2891,2892,2893],[2894,2895],[2896,2897,2898,2899,2900,2901,2902],[2903,2904,2905,2906,2907],[2908,2909],[2910],[2911,2912,2913],[2914,2915,2916,2917,2918],[2919],[2920],[2921],[2922],[2923,2924,2925,2926,2927],[2928],[2929,-1555,2930,-1557,2931],[2932,2933,2934,2935,2936,2937,2938],[2939,2940],[2941,2942,2943,2944,2945,2946],[2947,2948,2949],[2950],[2951,2952,2953],[2954],[2955],[2956],[2957],[2958,2959,2960],[2961],[2962,2963,2964,2965,2966],[2967,2968],[2969,2970],[2971,2972,2973,2974,2975,2976,2977,2978,2979,2980],[2981,2982,2983,2984],[2985],[2986,2987,2988,2989],[2990],[2991,2992,2993,2994,2995],[2996],[2997,2998],[2999],[3000,3001],[3002],[3003],[3004,3005,3006,3007],[3008,3009],[3010],[3011,3012,3013],[3014,3015],[3016],[3017],[3018,3019],[3020],[3021],[3022],[3023],[3024],[3025],[3026],[3027],[3028],[3029],[3030,3031,3032],[3033],[3034],[3035],[3036],[3037],[3038],[3039],[3040],[3041],[3042],[3043,3044,3045],[3046,-2760,3047,-2758,3048,3049,3050,-2754,3051,-2938,3052,-2936,3053,3054,3055],[3056],[3057],[3058],[3059,3060,3061,3062,3063],[3064],[3065,3066,3067],[3068,3069,3070,-2925],[3071,3072,3073],[3074,3075],[3076],[3077],[3078,3079,3080,3081],[3082],[3083,3084],[3085],[-1848,3086],[3087],[3088,3089],[3090],[3091,-2862,3092,-2860,3093,3094],[3095],[-2953,3096],[3097,3098,3099,3100,3101,3102,3103],[3104],[3105,3106,3107,3108,3109,3110,3111],[3112,3113,3114,3115,3116],[3117,3118],[3119,3120,3121],[3122],[3123,3124,3125,3126],[3127],[3128],[3129,3130],[3131],[3132,3133,3134,3135,3136,3137,3138,3139],[3140],[3141],[3142,3143,3144,3145],[3146],[3147],[3148],[3149],[3150],[3151],[3152,3153,3154,3155,3156,3157,3158,3159,3160,3161],[3162,3163,3164,3165],[3166,3167],[3168],[3169,3170,3171,3172,3173],[3174],[3175],[3176],[3177,3178],[3179],[3180,3181,3182],[3183,3184,3185,3186,3187,3188,3189,3190,3191],[3192],[3193,3194,3195],[1541,3196,3197,3198],[3199],[3200],[3201],[3202],[3203],[3204],[3205],[3206,3207,3208,3209,3210,3211,3212],[3213,3214,3215,3216,3217,3218],[3219,3220,3221,3222],[3223,3224,3225,-2915,3226],[-2686,3227],[3228],[3229,3230,3231,3232,3233],[3234],[3235],[3236,3237],[3238,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,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,3283,3284,3285,3286,3287,3288,3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,3307,3308,3309,3310],[3311,3312,3313],[337,3314,3315],[3316,3317,3318,3319],[3320,3321,3322,3323],[3324,3325],[3326],[3327,3328,3329],[3330,3331,3332],[3333,3334,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],[3362,3363,3364],[3365,3366,3367,3368,3369,3370,3371,3372],[3373],[3374],[3375],[-2428,3376],[3377,3378],[3379,3380,3381],[-3191,3382,-3189,3383,3384,-3186,3385,3386,3387,3388,3389,-3208,3390,3391,3392],[3393],[3394,3395],[3396],[3397,3398,3399,3400,3401,3402,3403,3404],[3405],[3406,3407,3408,3409,3410,3411,3412,3413],[3414,3415],[3416],[3417],[3418],[3419,3420,3421,3422,3423,3424],[-1451,3425,3426,3427,-1442,3428,3429],[3430,3431,3432],[3433,3434],[3435],[3436],[3437],[3438],[3439],[3440],[3441,3442,3443],[3444,3445,3446,3447,3448,3449,3450],[3451,3452,3453,3454,3455,3456,3457,3458],[3459,3460,3461],[3462,3463],[-2406,3464,3465,3466],[-2884,3467,-2882,3468],[3469],[3470,3471],[3472],[3473,3474],[3475,3476],[3477],[3478],[3479,3480,3481],[3482,3483,3484],[3485],[3486,3487],[3488],[3489],[3490,3491,3492,3493,3494,3495],[3496],[3497,3498,3499,3500,3501,3502,3503],[1282,3504,3505],[3506],[3507,3508,3509,3510,3511,3512,3513],[3514,3515,3516,3517,3518,3519,3520],[-3496,3521,3522,3523,3524,3525],[3526,-2688,3527],[3528],[3529],[3530],[3531],[3532,3533],[3534,3535,3536,3537],[3538],[3539],[3540],[3541],[3542,3543],[3544],[3545,3546,3547,3548,3549,3550],[3551],[3552,3553,3554,3555],[3556],[3557,3558,3559],[3560],[3561],[3562],[3563,3564,3565,3566,3567,3568],[3569],[3570],[3571,3572,3573,3574,3575,3576,3577,3578,3579,3580],[3581],[3582],[3583],[3584],[3585],[3586,3587,3588],[3589],[3590],[3591],[3592,3593,3594,3595,3596,3597,3598],[3599,3600,3601],[3602],[3603],[3604,3605],[-607,3606,3607,3608,3609,3610,3611,3612],[3613],[3614],[3615,3616,3617,3618,3619],[3620,3621],[3622,3623,3624],[3625],[3626],[3627],[3628,3629],[3630,3631,3632,3633,3634],[3635],[3636,3637,3638],[3639,3640,3641,3642,3643,3644],[3645,-1937,3646,3647,-1767,3648],[3649],[3650],[3651],[3652,3653,3654],[3655,-2588,3656,3657,3658,3659,3660,3661,3662,3663],[-2393,3664,3665],[3666],[3667,3668,3669,3670,3671,3672,3673],[3674,3675,3676],[3677],[3678,3679,3680],[3681],[3682,3683,3684,3685,3686,3687,3688,3689],[3690,3691,3692],[3693,3694],[3695,3696,3697,3698],[3699],[3700,3701],[3702,3703,3704,3705,-2775,3706,3707,3708],[3709,3710],[3711],[3712],[3713,3714],[3715,3716],[3717,3718,-1672,3719,-1670,3720,-1668,3721],[3722],[3723,3724],[3725,3726],[3727,3728,3729],[3730,3731,3732],[3733,3734],[3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,3746,3747,3748,3749,3750,3751],[3752],[3753,3754,3755,3756,3757,3758,3759,3760,3761,3762,3763],[3764,3765,3766],[3767],[292,3768,290,3769],[3770],[3771],[3772,3773],[3774],[3775,3776,3777,3778,3779,3780,3781,3782,3783,3784,3785,3786,3787,3788,3789,3790,3791,3792],[3793],[3794],[3795,3796],[3797,25,3798,3799,3800,3801,3802],[3803,3804],[3805],[3806],[3807],[3808],[3809,3810],[3811],[3812],[3813],[3814,3815,3816],[3817],[3818],[3819],[3820,3821,3822,3823,3824],[3825,3826,3827],[3828,3829],[3830,3831,3832,3833,3834,3835],[3836],[3837],[3838,3839,3840,3841,3842,3843,3844],[3845,3846,3847,3848,3849,3850],[3851],[3852],[3853,3854,3855,3856,3857,3858,3859],[3860,3861],[3862],[3863,3864,3865],[3866,3867,3868],[3869,3870,3871,3872,3873,3874,3875,3876],[3877,3878,3879,3880,3881],[3882],[3883],[3884],[3885],[3886],[3887],[3888,3889,3890,-1875,44,3891,3892,3893],[3894,3895,3896,3897,3898,3899,3900,3901,3902,3903,3904],[3905],[3906,3907],[3908,3909,3910,3911],[3912],[3913,3914],[3915,3916,3917,3918,3919,3920,3921,3922],[3923,3924],[3925,3926,3927],[3928],[3929],[3930,3931,3932],[3933,3934,3935,3936,3937,3938,3939],[3940],[3941,3942,3943,3944,3945],[3946,3947],[3948],[3949],[3950],[3951],[3952,3953,3954,3955],[3956,3957],[3958],[3959],[3960,3961,3962,3963,3964,3965,3966,3967,3968,3969],[3970],[3971],[-1558,3972,3973],[3974],[3975],[-3455,3976,3977,3978,3979,3980,3981],[3982,-3312,3983],[3984],[3985],[3986,3987,3988],[3989,3990,3991,3992,3993],[3994,3995,3996,3997,3998,3999,-3007,4000,4001,-3098,4002,4003,4004,4005,4006],[4007],[4008,4009,4010],[4011,4012,4013,4014,4015],[4016,4017,4018],[4019,4020,4021,4022,4023,4024,-3856,4025,-3854,4026],[4027],[4028,4029,4030],[4031,4032],[4033,4034],[4035,1284,4036,4037,4038,4039,-655,4040,-653,4041,-657,4042],[4043],[4044],[4045,4046,4047,4048],[4049],[4050],[4051],[4052,4053,4054,4055],[4056],[4057],[4058],[4059,4060],[4061,4062,4063,4064,4065],[4066,4067,4068],[4069,4070,4071,4072,4073,4074],[4075,4076,4077],[4078,4079,4080,-3577,4081,4082],[4083],[4084,4085,4086,4087,4088,4089,4090,4091,4092,4093,4094],[-2461,4095,4096,4097,-1512,4098],[4099],[4100,4101,4102],[4103],[4104],[4105,4106,-3642,4107,-3640,4108,4109],[4110],[4111],[-3619,4112,4113,4114],[4115,4116,334,4117,4118],[4119,4120,4121,4122,-1926,4123,-1913,1902,4124,4125,4126,4127,4128,4129,4130,4131,4132],[4133,4134,4135],[4136,-1566,-1565,-1564,-1563,4137],[4138,4139,4140,4141],[319,4142,4143,4144,4145,4146,4147,4148,4149,4150,4151,4152,15,4153,4154,4155,4156],[-1515,4157],[4158,4159],[4160,4161,4162],[519,4163,4164],[4165,4166,4167,4168,4169,-641,4170,4171,4172,-643,4173],[4174],[4175],[4176,-2547,4177,4178,4179,342,4180,4181,4182,4183,4184],[4185],[4186],[4187,4188],[4189,4190,4191,4192],[4193,4194,288,4195],[4196,4197,4198,4199,4200,4201,4202,4203],[4204,4205,4206,4207,4208],[4209,4210,4211,4212,-2121,4213,4214,4215,4216],[4217,4218,4219,4220,4221,4222,4223,4224,4225,4226],[4227,4228,4229,4230,4231,4232,-2143,4233,4234,-2323,4235,-2321,4236,4237,4238,-2131,4239,4240,4241,4242,4243,4244,4245,-2313,4246,4247,4248,4249,-2671,4250],[4251],[-2217,4252],[4253,1253,4254],[4255,4256,4257,4258,4259,-2699,4260,4261,4262,4263],[4264,-4190,4265,4266,4267],[4268,4269,4270,4271,4272,1819,4273,1971,4274,4275,1974,4276,4277,4278,-1993,-1992,-1991,4279,4280,-1988,-1987,4281,-2086,4282,4283,4284,-2083,4285,4286,-2080,-2079,4287,4288,4289,4290,4291,4292,4293,4294,4295,4296,2065,4297,2067,-2071,4298,4299,1406,4300,-1405,4301,4302,4303,4304,4305,4306,4307,4308],[4309,4310,4311,4312,4313,-2046,4314,4315,2025,4316,-2042,4317,4318,-2039,4319,-2037,-2036,4320,-2034,4321,4322,4323,-1966,4324,4325,4326,1956,4327,-1961,4328,1958,4329,4330],[4331,4332,4333,4334,4335],[4336,4337,4338,4339,4340,4341,4342,4343,4344,4345,-1898,4346,-1897,4347],[4348,4349,4350,4351,-391,389,-389,-388,4352,364,4353,4354,4355,391,-399,393,-398,395,-397,-396,-395,-394,-393,-392,4356,4357],[4358,-605,-517,-516,603,4359,4360,4361,4362,4363,4364],[4365,-1871,4366,4367,-2007,4368,4369,4370,-2003,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380,-2835,4381,-2833,4382,4383,4384,4385,4386,4387,4388,4389],[4390,-3309,4391,-3307,4392,4393,4394,4395,4396,4397,4398,4399,4400,4401,4402,-3296,4403,4404,-3292,4405,-3290,4406,-3288,4407,-3286,4408,-3284,4409,4410,4411,4412,-3279,4413,-3277,4414,4415,-3274,4416,4417,4418,4419,4420,4421,-2258,4422,-2256,4423,-2254,4424,4425,-2251,4426,-2249,4427,4428,4429,-2245,4430,-2243,4431,-2241,-2240,-2239,4432,4433,4434,4435,4436,4437,4438]]},{"type":"Polygon","properties":{"TYPE":"RD-TRAF-ISLAND","EditDate":null,"Shape_area":12348.37076,"Shape_len":1512.77462673},"arcs":[[-2104,2098,-2103,-2102,2100,-2101,-2100,-2099,-2098,-2097]]}]}},"arcs":[[[113,432],[-1,0],[0,1],[1,0],[0,-1]],[[155,454],[0,-2],[0,-1],[1,-2],[0,-1],[0,-1],[-1,0],[0,1],[0,2],[-1,1],[0,1],[0,2],[-1,1],[0,1],[0,2],[-1,3],[0,1],[-1,2],[0,2],[-1,1]],[[150,467],[0,2],[0,1],[-1,1]],[[149,471],[0,3],[1,0],[0,-1],[0,-1]],[[150,472],[0,-1],[1,-2]],[[151,469],[1,-4],[0,-1],[1,-4],[0,-1],[1,-1],[0,-2],[0,-1],[1,-1]],[[149,476],[-1,0]],[[148,476],[0,1],[-1,3],[0,1],[0,2],[-1,2],[0,1],[0,2]],[[146,488],[-1,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1]],[[144,496],[-1,1],[0,1],[0,1],[0,1],[0,1]],[[143,501],[-1,1],[0,1],[0,1],[0,1]],[[142,505],[-1,1]],[[141,506],[0,1],[0,1],[1,0]],[[142,508],[0,-1],[0,-1],[0,-1]],[[142,505],[1,0]],[[143,505],[0,-1]],[[143,504],[0,-1],[0,-1],[0,-1]],[[143,501],[1,-1],[0,-2],[0,-1],[0,-1]],[[144,496],[1,-1],[0,-2],[1,-1],[0,-1],[0,-1],[0,-2]],[[146,488],[1,-2],[0,-2],[1,-1],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1]],[[149,476],[0,-1],[0,1]],[[185,480],[-1,-1]],[[184,479],[-1,0]],[[183,479],[0,1]],[[183,480],[1,0],[0,1],[1,0]],[[185,481],[0,-1]],[[164,494],[0,1],[0,-1]],[[164,494],[0,0]],[[143,507],[-1,1]],[[142,508],[0,1],[0,1],[1,0],[1,0],[0,-1]],[[144,509],[-1,0],[0,-1],[0,-1]],[[163,510],[0,1]],[[163,510],[0,0]],[[106,510],[0,-1]],[[106,509],[-1,0],[-1,0],[0,1],[1,0],[1,1],[0,1]],[[106,512],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1]],[[108,519],[0,1]],[[108,520],[1,0]],[[109,520],[1,0],[0,-1],[1,0],[0,-1],[1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1]],[[109,514],[-2,-2],[-1,-1],[0,-1]],[[268,539],[0,-1],[1,0]],[[200,623],[0,1],[1,0]],[[201,624],[0,-1],[-1,0]],[[351,624],[1,-1]],[[352,623],[0,-1]],[[352,622],[-1,0],[-1,0]],[[350,622],[0,1],[0,1]],[[350,624],[1,0]],[[426,625],[0,-3],[0,-5],[-1,-7],[0,-2],[0,1],[0,1],[1,7],[0,5],[0,3]],[[8,652],[0,1]],[[8,653],[0,1],[0,-1]],[[8,653],[1,-1]],[[9,652],[0,-1],[-1,1]],[[7,655],[0,1],[0,1],[1,0],[0,-1],[0,-1],[-1,0]],[[5,657],[0,1]],[[5,657],[1,0],[-1,0]],[[10,657],[0,1]],[[10,658],[1,0]],[[11,658],[-1,-1]],[[10,657],[-1,0],[1,0]],[[205,658],[1,0],[-1,0]],[[205,658],[0,-1],[0,-1]],[[205,656],[-1,2]],[[204,658],[1,0]],[[209,662],[1,0],[0,-1],[-1,0],[0,1],[0,1],[0,-1]],[[206,660],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[206,667],[-2,0]],[[204,667],[0,1],[1,0],[1,1],[0,-1],[0,-1]],[[202,667],[-1,0],[0,1]],[[201,668],[-1,1]],[[200,669],[-1,1],[1,0],[0,-1]],[[200,669],[1,0],[0,-1]],[[201,668],[1,0],[0,-1]],[[202,667],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,1],[0,1]],[[195,675],[1,-2],[2,-2],[-2,2],[-1,2]],[[186,686],[0,-1]],[[186,685],[1,0],[0,-1]],[[187,684],[2,-2],[2,-2],[2,-3]],[[193,677],[1,-1],[-1,1]],[[193,677],[-1,2],[-3,2]],[[189,681],[-2,3]],[[187,684],[-1,1]],[[186,686],[-1,0]],[[185,686],[0,1],[-1,0],[0,1],[-1,0]],[[183,688],[0,1],[-1,1],[0,1],[1,0],[0,1],[1,0],[0,-1],[0,-1],[1,0]],[[185,690],[0,-1],[0,-1],[1,-1],[0,-1]],[[425,698],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[-1,1],[0,1],[0,1],[0,1],[0,2]],[[175,698],[0,1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0]],[[182,692],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[425,698],[0,1],[0,0],[0,-1]],[[426,701],[1,0],[0,-1],[-1,1]],[[426,701],[0,1]],[[426,701],[0,0]],[[416,721],[-1,1],[1,1],[0,-1],[0,-1]],[[415,723],[0,1]],[[415,723],[0,0]],[[412,727],[0,1],[-1,1],[0,1],[0,-1],[1,0],[0,-1],[0,-1]],[[42,737],[0,1],[-1,0],[0,2],[0,1],[1,0],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1]],[[408,733],[-1,1],[-1,1],[-1,1]],[[405,736],[-1,1]],[[404,737],[-1,1]],[[403,738],[-1,0],[0,1],[1,-1]],[[404,737],[1,0],[0,-1]],[[408,733],[0,-1],[0,1]],[[398,742],[1,0],[0,-1],[-1,1]],[[37,744],[-1,0],[-1,0]],[[35,744],[-1,0],[-1,1]],[[33,745],[-1,0],[1,0]],[[33,745],[1,0],[1,-1]],[[37,744],[1,0],[0,-1],[-1,1]],[[205,761],[-1,1]],[[204,762],[-1,0]],[[203,762],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-2,-2],[-1,-1],[0,-1],[-1,-1],[-3,-3],[-1,-2],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0]],[[194,730],[0,1]],[[194,730],[0,-1],[-2,-2],[0,-1]],[[192,726],[0,1],[0,1],[0,1],[-2,2],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[1,0],[1,1],[2,2],[0,1],[2,2],[1,1],[1,2],[2,1],[1,2],[1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0]],[[203,763],[1,0]],[[204,763],[1,0]],[[205,763],[1,0]],[[206,763],[0,-1],[1,0],[1,0],[1,-1],[0,-1],[-1,0],[-2,1],[-1,0]],[[31,788],[1,0]],[[32,788],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[0,2]],[[32,828],[5,0],[1,0],[1,0],[2,0],[2,0],[0,-1],[-2,0],[-5,0],[-2,0],[-1,0],[-2,0],[-2,0],[-1,0],[1,1],[3,0]],[[326,849],[1,-2],[2,-2],[1,-2],[1,-1],[-1,0],[0,1],[-1,2],[-2,2],[-1,2]],[[317,864],[1,-1],[2,-2],[2,-4],[1,-2]],[[323,855],[0,-1],[1,-2],[-1,2],[0,1]],[[323,855],[-1,1],[-1,2],[-1,1],[-1,1],[-1,2],[-1,2]],[[317,864],[0,1],[-1,1],[1,-1],[0,-1]],[[197,869],[1,0],[0,-1]],[[198,868],[1,0],[0,-1]],[[199,867],[1,0],[0,-1],[-1,1]],[[198,868],[-1,1]],[[197,869],[-3,2],[-2,2],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[203,865],[0,-1]],[[203,864],[0,-1],[1,0]],[[204,863],[0,-1]],[[204,862],[0,-1]],[[204,861],[1,-2]],[[205,859],[-1,0],[0,1],[0,1]],[[204,862],[-1,2]],[[203,865],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0]],[[201,871],[0,-1],[0,-1],[1,-1],[0,-2],[1,-1]],[[203,874],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,2],[-1,1]],[[201,871],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1]],[[199,875],[-1,0],[1,0]],[[199,875],[2,0],[1,0]],[[202,875],[1,-1]],[[310,876],[1,-2]],[[311,874],[2,-2],[1,-3],[-2,3],[-1,2]],[[310,876],[-1,1],[1,0],[0,-1]],[[197,880],[0,-1]],[[197,879],[-1,0],[0,-1],[0,-1],[0,-1],[-1,1],[-2,0],[-1,0],[0,1]],[[192,878],[1,0],[1,0],[0,1]],[[194,879],[1,0],[0,1]],[[195,880],[1,0],[1,0]],[[197,880],[0,1],[1,0],[-1,0],[0,-1]],[[203,883],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-2,0],[-1,0]],[[199,876],[-1,0],[1,0]],[[199,876],[1,2],[0,1],[1,1],[0,1]],[[201,881],[1,0],[0,1],[0,1]],[[202,883],[1,0]],[[203,883],[0,1],[0,-1]],[[202,884],[0,-1]],[[202,883],[-1,-1],[0,-1]],[[201,881],[-1,0],[0,-1]],[[200,880],[-1,-2],[-1,-1],[-1,-1],[0,1],[0,1],[0,1]],[[197,879],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1]],[[202,887],[1,0]],[[203,887],[0,1],[1,2]],[[204,890],[0,1],[1,0],[-1,-1]],[[204,890],[0,-1],[0,-1],[0,-1]],[[204,887],[-1,0]],[[203,887],[0,-1],[0,-1]],[[203,885],[-1,0],[0,-1]],[[263,929],[2,-1],[0,-1],[-2,2]],[[252,927],[0,-1]],[[252,926],[-1,-1]],[[251,925],[0,-1]],[[251,924],[-1,-1]],[[250,923],[-1,-1],[1,1]],[[250,923],[0,1]],[[250,924],[1,0]],[[251,925],[0,1],[1,0]],[[252,927],[0,1],[2,2],[1,3],[0,-1],[0,-1],[-1,-2],[-1,0],[-1,-2]],[[260,932],[1,-1],[0,-1],[-1,2]],[[260,932],[-2,1],[2,-1]],[[255,937],[-1,0],[-1,0],[0,1]],[[253,938],[-1,0],[0,1],[-1,1]],[[251,940],[-1,1],[1,0],[0,-1]],[[251,940],[2,-2]],[[253,938],[1,0],[1,-1]],[[255,937],[0,-1],[0,1]],[[161,893],[1,-1],[1,0]],[[161,893],[-1,0]],[[160,893],[-2,1]],[[158,894],[-1,1]],[[157,895],[-1,0]],[[156,895],[0,1],[-1,0]],[[155,896],[-1,1],[-2,1],[-1,1],[-2,1],[-1,0]],[[148,900],[-1,1],[-1,1],[-1,0],[-3,2],[-2,1],[-1,0]],[[139,905],[0,1],[-1,0]],[[138,906],[-2,1]],[[136,907],[-2,1],[-2,1]],[[132,909],[-1,1],[-2,1],[-2,1]],[[127,912],[-3,2],[-1,1],[-2,1],[-3,1]],[[118,917],[-1,1],[-3,1],[-3,2],[-1,1],[-2,1]],[[108,923],[-1,1],[-1,0],[-1,1],[-4,2]],[[101,927],[-1,0]],[[100,927],[-2,2],[-2,1]],[[96,930],[-1,0],[-2,2],[-2,1],[-1,0]],[[90,933],[-1,1],[-1,1],[-2,1],[-1,0]],[[85,936],[-1,1]],[[84,937],[0,1],[0,1],[1,1],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[2,-2],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[3,-2],[2,-1],[1,-1],[1,0],[2,-1],[2,-2],[2,0],[2,-1],[1,-1],[2,-1],[0,-1],[1,0],[2,-1],[2,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[2,-1],[2,-1],[1,0],[6,-4],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[2,-1],[1,0],[0,-1],[1,0],[1,-1],[2,-1],[1,-1],[2,-1],[1,0],[1,-1],[0,-1],[2,-1],[1,0],[1,-1],[1,-1],[1,-1]],[[260,940],[0,2],[1,1]],[[261,943],[0,1]],[[261,944],[0,1],[1,1]],[[262,946],[1,1]],[[262,946],[-1,-2]],[[261,943],[-1,-3]],[[260,940],[-1,-2],[-1,-1],[1,1],[1,2]],[[265,976],[1,-1],[0,-1],[-1,0],[0,1],[0,1]],[[136,512],[-1,0]],[[135,512],[-1,0],[-2,1],[1,0],[2,-1]],[[136,512],[1,0],[1,-1],[1,0],[-1,0],[-1,0],[-1,1]],[[184,845],[0,2],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1]],[[169,256],[-1,0]],[[168,256],[1,1],[1,0],[1,1],[1,0],[1,0]],[[173,258],[1,0]],[[174,258],[0,1],[1,0]],[[175,259],[1,0],[1,0]],[[177,259],[1,0],[1,0],[1,0],[1,0],[1,0]],[[182,259],[2,0],[1,-1],[-1,0],[-1,0],[-1,1]],[[177,259],[-1,-1],[-1,0],[-1,0]],[[173,258],[0,-1],[-1,0],[-1,0],[-2,-1]],[[263,311],[1,2]],[[264,313],[1,2],[1,2]],[[266,317],[1,2]],[[267,319],[0,1]],[[267,320],[0,2],[1,3]],[[268,325],[1,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-3],[-1,-2],[-1,-2],[-1,-2]],[[266,317],[0,-1],[-1,-2],[0,-1],[-1,0]],[[264,313],[0,-1],[-1,-1]],[[263,311],[-1,-1],[0,-1],[1,2]],[[271,338],[1,0],[0,-1],[-1,0],[-1,0],[0,1],[1,0]],[[273,344],[-1,-2],[0,-2]],[[272,340],[0,-1],[-1,0],[-1,0],[0,1],[0,3],[0,1],[1,3],[0,6],[0,5],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-2],[1,-2],[0,-1],[0,-3],[0,-1]],[[277,362],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,3],[0,3],[0,1],[-1,2],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0]],[[269,355],[0,2],[0,2],[0,3],[0,1],[0,1],[0,1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-2]],[[294,382],[0,-1],[-1,-1],[-1,-1],[-2,-1],[0,-1],[-2,-1],[-1,-1],[-1,-1],[-2,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,1],[0,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[2,1],[1,1],[1,1],[2,2],[2,2],[1,0],[0,1],[1,0],[0,1]],[[271,374],[0,1],[0,-1]],[[271,374],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[272,393],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-3],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[270,369],[0,-1],[0,-1],[0,1],[0,1]],[[270,369],[-1,1],[0,1],[0,3],[0,3],[0,2],[0,2],[0,2],[1,1],[0,2],[0,2],[0,1],[1,2],[0,1],[0,1],[1,0]],[[272,393],[0,1],[0,1],[0,-1],[0,-1]],[[274,388],[-1,-1],[0,-1],[-1,0],[1,2],[0,2],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,1],[1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-2],[-1,-2],[0,-1],[0,-1]],[[267,401],[0,1],[0,-1]],[[267,401],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1]],[[271,394],[-1,0],[0,-1]],[[270,393],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,2],[-1,2],[0,3],[0,2],[0,1],[0,1],[-1,2],[0,2],[0,1]],[[273,400],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0]],[[281,405],[0,-1],[0,-1]],[[281,403],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,1],[1,1],[1,0]],[[267,405],[1,0],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1]],[[267,405],[0,1],[-1,0],[0,1],[-1,1],[-1,2],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-2,1],[-1,1],[-2,1],[-1,0],[-1,1],[-2,1]],[[245,428],[-2,1]],[[243,429],[-1,0],[-2,2]],[[240,431],[-1,1]],[[239,432],[-1,0],[-1,1]],[[237,433],[-1,0],[1,0]],[[237,433],[1,0]],[[238,433],[1,-1]],[[240,431],[3,-1],[0,-1]],[[245,428],[1,0],[2,-2],[2,0],[0,-1],[2,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-2],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1]],[[353,410],[0,-1],[0,-1],[-1,1],[0,1],[0,1],[1,-1]],[[371,421],[0,-1]],[[371,421],[0,0]],[[353,425],[0,1],[0,1]],[[353,427],[-1,0]],[[352,427],[0,1],[1,-1]],[[353,427],[1,0],[0,-1],[0,-1],[-1,0]],[[234,430],[0,1]],[[234,431],[1,0]],[[235,431],[-1,-1]],[[234,430],[0,-2],[0,1],[0,1]],[[238,433],[0,1]],[[238,434],[-1,0],[1,0]],[[238,434],[1,0],[1,-1],[3,-2],[2,-1],[1,-1],[-1,1],[-1,0],[-2,1],[-2,1],[-2,1]],[[243,435],[0,-1]],[[243,434],[0,-1],[-1,0],[-2,2],[0,1],[3,1],[0,-1],[0,-1]],[[200,450],[0,1]],[[200,451],[1,0]],[[201,451],[0,-1]],[[201,450],[-1,0]],[[228,439],[-2,1],[-1,1],[-1,1]],[[224,442],[-1,0],[-1,1],[0,1]],[[222,444],[-1,0],[0,1]],[[221,445],[-1,0],[0,1]],[[220,446],[-1,0],[-1,1],[-1,1],[0,1]],[[217,449],[-1,0],[0,1]],[[216,450],[-1,1]],[[215,451],[-1,1]],[[214,452],[-1,1],[0,1]],[[213,454],[-2,2]],[[211,456],[-1,2]],[[210,458],[-1,1]],[[210,458],[1,-1],[0,-1]],[[211,456],[1,-1],[1,-1]],[[213,454],[1,-1],[0,-1]],[[214,452],[1,0],[0,-1]],[[215,451],[1,0],[0,-1]],[[216,450],[1,-1]],[[217,449],[1,0],[0,-1],[1,-1],[1,-1]],[[220,446],[1,-1]],[[221,445],[1,0],[0,-1]],[[222,444],[1,-1],[1,0],[0,-1]],[[224,442],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1]],[[228,439],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[2,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,2]],[[166,460],[-1,0],[0,1],[1,0],[0,-1]],[[177,460],[0,1]],[[177,461],[1,0],[1,-2],[1,0],[-1,0],[-1,0],[0,1],[-1,0]],[[424,469],[0,-1]],[[424,468],[1,0]],[[425,468],[0,-1],[0,-1]],[[425,466],[1,0]],[[425,466],[-1,0]],[[424,466],[0,1],[0,1]],[[424,469],[-1,0],[0,1],[1,-1]],[[426,466],[0,1],[-1,1]],[[425,468],[0,1],[-1,1],[1,0]],[[425,470],[0,-1],[1,0]],[[426,469],[0,-1],[1,0]],[[427,468],[0,-1],[0,-1],[-1,0]],[[419,494],[0,2],[0,2],[0,2],[0,3],[0,1],[0,3],[0,1],[0,1],[0,3],[0,1],[1,3],[0,4],[0,1],[0,4],[0,4],[1,4],[0,-1],[0,-2],[0,-4],[-1,-2],[0,-3],[0,-2],[0,-1],[0,-3],[0,-3],[0,-1],[0,-1],[-1,-3],[0,-2],[0,-4],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1]],[[290,540],[0,1],[0,1]],[[290,542],[1,0],[0,-1],[0,-1],[0,-1]],[[291,539],[-1,0],[0,1]],[[407,546],[-2,-1]],[[405,545],[-2,0],[2,1],[2,1],[1,1],[1,0],[-2,-2]],[[421,537],[0,1],[0,4],[0,2],[1,5],[0,-4],[-1,-5],[0,-1],[0,-2]],[[421,537],[0,-1],[0,1]],[[305,559],[-1,0],[0,1]],[[304,560],[0,1]],[[304,561],[1,0],[0,-1],[0,-1]],[[422,553],[0,3],[0,3]],[[422,559],[1,7],[0,-4],[-1,-3]],[[422,559],[0,-4],[0,-2]],[[422,553],[0,-1],[0,1]],[[326,595],[0,1],[0,1],[1,0],[2,-2],[0,-1],[-1,0],[-1,1],[-1,0]],[[424,584],[0,-3],[0,-2],[-1,-3]],[[423,576],[0,-4],[0,-2],[0,2],[0,4]],[[423,576],[0,3],[0,3],[1,2]],[[424,584],[0,2],[0,3],[0,2],[0,2],[0,3],[0,2],[1,2],[0,3],[0,2],[0,1],[0,-1],[0,-2],[0,-3],[0,-2],[0,-2],[-1,-3],[0,-2],[0,-2],[0,-3],[0,-2]],[[371,420],[0,0]],[[380,506],[-1,0],[0,1],[-3,3],[-1,0],[0,1],[0,1],[1,1],[1,0],[0,-1],[3,-5],[0,-1]],[[404,397],[1,1],[0,-1],[-1,0]],[[404,398],[0,-1]],[[404,398],[0,0]],[[372,419],[0,1]],[[372,420],[1,-1],[-1,0]],[[372,420],[-1,0]],[[372,420],[0,0]],[[434,429],[-1,0]],[[433,429],[1,1]],[[434,430],[0,-1]],[[375,458],[0,-1],[0,0],[0,1]],[[376,458],[0,1],[0,-1]],[[376,458],[0,0]],[[173,447],[-2,0],[0,1],[1,0],[1,0],[1,0],[2,1],[1,0],[0,-1],[0,-1],[-2,0],[-2,0]],[[393,480],[-1,2],[0,1],[1,0],[1,0],[0,-1],[-1,0],[0,-1],[0,-1]],[[463,390],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[-1,0],[-1,1],[0,1],[-1,1]],[[407,400],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1]],[[426,449],[0,1],[0,-1]],[[426,449],[0,-1],[1,-2],[0,-2],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[1,0],[1,0],[0,1],[1,0]],[[424,466],[0,-1],[0,1]],[[424,466],[0,0]],[[427,465],[-1,-1],[0,1],[1,0]],[[450,371],[-1,1]],[[449,372],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[1,0],[1,-1],[1,0],[2,-1],[0,-1]],[[450,373],[1,0],[-1,0]],[[450,373],[0,-1],[0,-1]],[[444,376],[-1,0],[-2,1],[0,1],[1,0],[1,-1],[1,0],[0,-1]],[[433,430],[-1,1]],[[432,431],[0,-1]],[[432,431],[-1,2],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,0],[1,0],[1,0]],[[433,438],[1,1]],[[434,439],[0,-1],[0,-2],[-1,-2],[0,-2],[0,-1],[0,-1]],[[445,457],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,2],[-1,1]],[[435,455],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1]],[[433,460],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[1,-1],[1,-1],[1,-1],[1,0],[0,-1]],[[433,460],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0]],[[459,452],[1,0]],[[460,452],[1,-1]],[[461,451],[1,0],[1,0]],[[463,451],[1,0],[1,-1]],[[465,450],[1,0],[1,0],[1,0]],[[468,450],[1,0],[0,-1],[-1,1]],[[465,450],[-1,0],[-1,0],[0,1]],[[461,451],[-1,0],[0,1]],[[129,513],[0,1],[-1,0],[1,0],[1,0]],[[130,514],[-1,-1]],[[336,431],[0,-1],[-1,0],[0,1],[1,0]],[[320,472],[0,-1],[-1,0]],[[319,471],[0,1],[1,0]],[[320,496],[-1,-1],[0,-1],[-2,0],[0,1],[1,0],[1,1],[1,0]],[[45,742],[-1,0],[-1,0]],[[43,742],[-1,0],[0,1],[1,-1]],[[45,742],[1,0],[1,-1],[-1,0],[-1,1]],[[41,744],[0,-1],[-1,0],[0,1],[1,0]],[[228,647],[0,1],[1,-1],[-1,0]],[[226,649],[0,1]],[[226,650],[-1,0],[1,0]],[[209,813],[0,-1]],[[209,813],[-1,0]],[[208,813],[0,1],[1,0],[0,-1]],[[198,814],[-2,0],[-1,0],[1,0],[2,0]],[[198,814],[1,1],[1,0],[2,0],[-2,-1],[-1,0],[-1,0]],[[207,815],[1,0],[1,0],[-2,0]],[[207,815],[-3,0],[3,0]],[[208,818],[1,0],[0,1],[0,-1],[0,-1],[-1,0],[0,1]],[[210,819],[0,1],[0,1],[0,-1],[0,-1]],[[210,819],[0,-1],[0,-1],[0,2]],[[212,803],[0,-1]],[[212,802],[-1,0]],[[211,802],[1,1]],[[186,709],[1,2]],[[187,711],[1,3],[1,2]],[[189,716],[1,1],[1,4],[1,2],[1,2],[1,1]],[[194,726],[0,1],[1,1],[0,1],[0,1]],[[195,730],[1,1],[0,1]],[[196,732],[1,1]],[[197,733],[0,1]],[[197,734],[0,1],[1,0]],[[198,735],[0,1]],[[198,736],[0,1],[1,0]],[[199,737],[0,1],[0,1]],[[199,739],[0,1],[1,0]],[[200,740],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1]],[[201,746],[0,1],[1,0]],[[202,747],[0,1],[0,1]],[[202,749],[0,2]],[[202,751],[1,1]],[[203,752],[0,1],[0,1]],[[203,754],[0,2]],[[203,756],[0,1],[0,1],[1,2]],[[204,760],[0,1],[0,1]],[[204,762],[0,1]],[[204,763],[0,1],[1,0]],[[205,764],[0,1],[0,1],[0,1],[0,1]],[[205,768],[0,1],[1,1]],[[206,770],[0,2]],[[206,772],[0,1]],[[206,773],[0,1],[1,2],[0,2]],[[207,778],[0,1]],[[207,779],[0,1],[0,1]],[[207,781],[0,1],[1,1]],[[208,783],[0,1],[0,2]],[[208,786],[0,1],[1,1]],[[209,788],[0,1],[0,1],[0,1],[0,1]],[[209,792],[0,1],[1,1]],[[210,794],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[210,800],[0,1],[0,1],[1,0]],[[211,802],[-1,-1],[0,-1]],[[210,794],[0,-1],[-1,-1]],[[209,788],[0,-1],[-1,-1]],[[208,786],[0,-1],[0,-2]],[[208,783],[0,-1],[-1,-1]],[[207,781],[0,-2]],[[207,778],[0,-1],[0,-2]],[[207,775],[-1,0],[0,-2]],[[206,772],[0,-1],[0,-1]],[[206,770],[-1,-2]],[[205,764],[0,-1]],[[205,763],[-1,-1]],[[204,760],[0,-2]],[[204,758],[-1,-1],[0,-1]],[[203,756],[0,-1],[0,-1]],[[203,752],[0,-1],[-1,0]],[[202,751],[0,-1],[0,-1]],[[202,747],[0,-1],[-1,0]],[[200,740],[-1,-1]],[[199,737],[-1,-1]],[[198,735],[-1,-1]],[[196,732],[0,-2],[-1,0]],[[194,726],[-1,-2],[0,-1]],[[193,723],[-3,-4],[-1,-3]],[[187,711],[-1,-1],[0,-1]],[[186,709],[0,-1]],[[186,708],[-1,0],[0,-1]],[[185,707],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[2,3]],[[190,822],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,2],[0,1],[0,1]],[[190,822],[0,1],[0,1],[0,-1],[0,-1]],[[188,830],[1,-3],[0,-1],[0,1],[-1,3]],[[186,838],[1,-4]],[[187,834],[1,-1],[-1,0],[0,1]],[[186,838],[0,1],[-1,1],[0,1],[0,1],[1,-2],[0,-2]],[[186,877],[0,1],[-1,0],[0,1],[-1,0],[-2,1],[0,1],[-2,0],[-1,1]],[[179,882],[1,0],[1,0],[1,-1],[2,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0]],[[164,891],[-1,0],[-2,1],[-1,1]],[[158,894],[-1,0],[0,1]],[[156,895],[-1,1]],[[155,896],[-2,1],[-1,0],[-2,1],[0,1],[-1,0],[-1,1]],[[148,900],[-1,0],[-1,1],[-3,2],[-1,0],[-1,1],[-2,1]],[[139,905],[-1,1]],[[138,906],[-1,0],[-1,1]],[[132,909],[-4,2],[-1,1]],[[127,912],[-2,1],[-2,1],[-1,1],[-1,0],[-3,2]],[[118,917],[-3,2],[-2,1],[-3,1],[-2,2]],[[108,923],[-3,1],[-4,3]],[[100,927],[-1,1],[-3,1],[0,1]],[[96,930],[-2,1],[-2,1],[-2,1]],[[90,933],[-4,2],[-1,1]],[[85,936],[-1,0],[0,1]],[[84,937],[-1,0]],[[163,892],[0,-1],[1,0]],[[204,875],[0,1]],[[204,876],[0,1]],[[204,876],[1,0]],[[205,876],[-1,-1]],[[217,498],[0,-1],[-1,0]],[[216,497],[0,1],[1,0]],[[427,634],[0,-4],[-1,-1],[0,2],[0,1],[1,2]],[[427,634],[0,2],[0,-2]],[[427,639],[0,3],[0,3],[0,4],[1,3],[0,2],[0,1],[0,2],[0,3],[0,2],[0,1],[0,-2],[0,-4],[0,-1],[0,-3],[0,-4],[0,-2],[-1,-2],[0,-3],[0,-3]],[[428,677],[0,1],[0,1],[0,2]],[[428,681],[-1,2],[0,1]],[[427,684],[0,1],[0,2]],[[427,687],[-1,1],[0,1],[1,0],[0,-2]],[[427,687],[0,-1],[0,-2]],[[427,684],[1,-3]],[[428,681],[0,-1],[0,-3]],[[428,677],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1]],[[429,671],[0,-1],[0,-1]],[[429,669],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1]],[[428,668],[0,1],[1,0]],[[429,669],[0,1],[-1,1]],[[428,671],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[424,704],[-1,1]],[[423,705],[0,1],[0,1],[0,1],[-1,1],[-1,2],[-1,2],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-2],[0,-2],[1,-1]],[[424,705],[0,-1]],[[392,747],[2,-2],[2,-1]],[[392,747],[-2,2],[-2,1],[0,1],[1,-1],[2,-2],[1,-1]],[[383,756],[1,-1]],[[384,755],[1,-1],[0,-1]],[[385,753],[1,0],[0,-1],[0,1],[-1,0]],[[385,753],[-1,1],[0,1]],[[384,755],[-1,0],[0,1]],[[383,756],[-1,0],[-1,2],[1,0],[0,-1],[1,-1]],[[371,775],[0,-1],[2,-2]],[[373,772],[2,-5]],[[375,767],[2,-3],[1,0],[0,-1]],[[378,763],[0,-1]],[[378,762],[1,0],[0,-1]],[[379,761],[1,-1],[-1,1]],[[379,761],[-1,1]],[[378,763],[-1,0],[-2,4]],[[375,767],[-1,2],[-1,2],[0,1]],[[373,772],[-2,1],[0,2]],[[371,775],[-1,0],[1,0]],[[369,778],[-1,0],[0,1],[0,1],[-1,2],[-2,2],[-1,2],[-2,2],[-1,2],[-1,3],[-1,2],[-1,2],[-2,1],[-1,2],[0,1],[1,-1],[1,-2],[1,-1],[1,-2],[1,-2],[1,-2],[1,-2],[1,-1],[1,-2],[1,-1],[1,-2],[1,-2],[1,-1],[1,-1],[0,-1]],[[349,811],[2,-2],[1,-2],[1,-2],[-1,0],[-2,4],[-1,2]],[[348,812],[0,1],[-1,1],[1,0],[0,-1],[0,-1]],[[343,820],[1,0],[0,-1],[2,-2],[0,-1],[-1,2],[-2,2]],[[341,825],[1,-1],[-1,0],[0,1],[-1,1],[1,-1]],[[337,831],[-1,1],[0,1]],[[336,833],[-1,1],[-1,2]],[[334,836],[0,1],[-1,1],[-1,1],[1,-1],[1,-1],[0,-1]],[[334,836],[2,-3]],[[336,833],[1,-2]],[[337,831],[1,-1],[1,-2],[-2,2],[0,1]],[[308,879],[-1,2],[-1,0],[-1,3],[2,-2],[0,-1],[1,-2]],[[303,886],[0,1],[0,-1],[0,0]],[[302,888],[-3,4]],[[299,892],[-1,2],[2,-3],[1,-1],[1,-2]],[[298,895],[-1,0]],[[298,895],[0,0]],[[297,896],[0,0],[0,0],[0,0]],[[293,901],[1,-2],[1,0]],[[295,899],[1,-2],[-1,2]],[[295,899],[-2,1],[0,1]],[[293,901],[-1,1],[-1,2],[1,-2],[1,-1]],[[289,906],[0,0],[0,0],[0,0]],[[287,908],[-2,2],[-2,2],[2,-1],[2,-3]],[[280,915],[2,-1],[-1,0],[-1,1],[-1,1],[1,-1]],[[273,921],[2,-1],[2,-2],[-2,1],[-2,2]],[[266,926],[5,-3],[0,-1],[-5,4]],[[429,752],[1,0],[-1,0]],[[429,752],[0,0]],[[427,752],[0,1],[1,0],[1,1],[0,-1],[0,-1]],[[429,752],[-1,0],[-1,0]],[[427,752],[-1,-1],[0,1],[1,0]],[[258,623],[-1,0]],[[257,623],[0,1]],[[204,877],[1,0],[0,-1]],[[205,876],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,-1]],[[206,857],[-1,0],[-1,0]],[[204,857],[0,-1]],[[204,856],[-2,0],[-1,0],[0,-1],[-1,0],[-3,-1],[-4,-2],[-2,-1],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1]],[[185,848],[0,-1]],[[185,848],[-1,2]],[[184,850],[1,0],[1,0],[3,2],[2,0],[2,1],[1,1],[3,1],[2,1],[2,1],[1,0],[2,1]],[[204,858],[1,0],[1,0]],[[206,858],[0,1],[1,0],[2,1],[2,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-2,0]],[[204,875],[-1,0]],[[204,877],[0,2]],[[204,879],[0,-1],[0,-1]],[[406,571],[0,-1]],[[406,571],[-1,1],[0,1],[-1,1],[0,1],[2,-3],[0,-1]],[[376,408],[0,-1],[0,1]],[[376,408],[-1,-3],[0,-1],[-1,-1],[0,-1],[-1,-3],[-1,0],[1,2],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,2]],[[432,430],[1,0]],[[433,430],[0,-1]],[[433,429],[0,-1],[-1,-1],[0,1],[0,1],[0,1]],[[423,699],[0,2]],[[423,699],[0,0]],[[860,257],[1,2],[2,3]],[[863,262],[0,1],[1,1],[0,1],[2,2]],[[866,267],[0,1],[1,2],[2,4]],[[869,274],[1,2],[2,4],[0,1],[2,2],[-1,-2],[-1,-2],[-1,-2],[-1,-3],[-1,0]],[[869,274],[-1,-3],[0,-2],[-1,-2],[-1,0]],[[866,267],[0,-1],[-1,-2],[-1,-1],[0,-1],[-2,-3]],[[862,259],[-1,-3],[-2,-3],[-1,-3],[-1,-1],[-1,0],[1,1],[3,7]],[[788,264],[-4,1]],[[784,265],[-1,0],[-1,0],[-4,1],[-3,1],[-1,0],[-4,1],[-2,1],[-1,0],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[0,1],[0,-1],[1,0],[2,0],[2,0],[1,0],[1,0],[1,-1],[3,0],[1,-1],[4,-1],[3,0],[1,-1],[1,0],[1,0],[4,-1],[5,-1],[3,-1],[1,0],[5,-2],[1,0],[-1,0],[-6,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-3,1]],[[733,247],[0,1],[1,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1]],[[736,267],[1,0],[0,1],[1,1],[0,1]],[[738,270],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0]],[[743,273],[1,1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0]],[[743,273],[0,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1]],[[738,267],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1]],[[748,274],[-1,0],[1,0]],[[748,274],[1,0],[1,0],[1,0],[2,-1],[2,0],[1,0],[2,-1],[1,0],[1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,1],[-2,0],[-1,0],[0,1]],[[966,339],[0,-1],[1,-1]],[[967,337],[1,-1],[0,-1],[3,-4],[-2,0],[0,1],[0,1],[-2,3],[-1,0],[0,1]],[[966,337],[-1,1],[0,1]],[[965,339],[-1,0],[-1,0]],[[963,339],[-1,0]],[[963,339],[0,1],[0,1]],[[963,341],[1,0],[0,-1],[1,0],[0,-1]],[[965,339],[1,0]],[[721,363],[0,-1]],[[721,362],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-2,2],[-3,2],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1]],[[703,373],[0,1]],[[703,374],[1,-1],[1,-1],[2,-1],[1,0],[4,-3],[2,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0]],[[925,386],[0,1]],[[925,387],[1,0]],[[926,387],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1]],[[929,396],[1,1],[0,1]],[[930,398],[1,-1],[1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[926,386],[0,-1]],[[926,385],[-1,-1],[-1,-2],[0,-1],[0,-1],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[0,-1],[-1,0],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,0],[-1,-3],[0,-1],[-1,0],[0,-1]],[[914,359],[0,-1],[-1,0]],[[913,358],[0,-1]],[[913,357],[0,-1],[-1,-2],[-1,-3],[-1,-2],[-1,0],[-1,-3],[-1,-4]],[[907,342],[-1,0],[-1,1]],[[905,343],[0,1],[1,1],[0,1],[1,2],[1,2],[0,1],[1,1],[1,2],[0,2],[1,1],[0,1]],[[911,358],[1,0]],[[912,358],[0,1],[0,1]],[[912,360],[1,1],[1,2],[0,2],[1,1],[1,1],[0,1],[1,2],[1,2],[1,2],[1,2],[0,2],[1,2],[1,1],[0,1],[1,2],[0,1],[1,2]],[[924,387],[0,1]],[[924,388],[1,0]],[[925,388],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0]],[[930,398],[-1,-2]],[[764,406],[-1,-3],[1,3],[0,0]],[[911,405],[1,-1],[0,-1],[-1,1],[-2,2],[-2,2],[-1,0],[-1,0],[-1,1],[0,1],[1,0],[0,1],[2,-2],[1,0],[0,-1],[1,0],[0,-1],[2,-1],[0,-1]],[[704,414],[0,-1]],[[704,413],[-1,0],[0,1],[1,0]],[[857,415],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[1,0],[2,-1],[1,-1],[2,-1],[2,0],[1,-1],[1,0],[1,0],[2,-1],[2,0],[3,-1],[1,-1],[3,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-4,1],[-1,0],[-2,1],[-3,1],[-2,0],[-2,1],[-2,1],[-2,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[-1,0],[-2,1],[-3,1],[-2,0],[-3,1],[-3,1],[-2,1],[-3,0],[-2,1],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-2,2],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-2],[0,-1],[1,0],[1,-2],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[3,-1],[1,0],[2,-1],[1,0],[1,0],[1,0],[2,0],[0,-1],[1,0],[3,-1],[3,0],[2,-1],[1,0],[1,-1],[1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-2,1],[-3,1],[-2,0],[-2,1],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,1],[-1,0],[-2,1],[-1,0],[-1,0],[-1,1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-2],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,2],[0,1],[-1,0],[-1,2],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,-1],[2,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[2,-1],[2,0],[1,0],[2,-1],[2,0],[1,-1],[2,0],[2,-1],[2,0],[3,-1],[1,-1],[1,0],[1,0],[0,1],[1,1]],[[951,383],[1,-1]],[[952,382],[1,-1]],[[953,381],[1,0]],[[954,381],[0,-1]],[[954,380],[1,0]],[[955,380],[0,-1]],[[955,379],[0,-1]],[[955,378],[-1,0]],[[954,378],[0,1],[-1,0]],[[953,379],[-1,1]],[[952,380],[-1,1]],[[951,381],[-1,0],[0,1],[-1,0]],[[949,382],[0,-1]],[[949,381],[1,0],[1,-1]],[[951,380],[0,-1]],[[951,379],[1,0]],[[952,379],[1,-1]],[[953,378],[0,-1],[1,0]],[[954,377],[-1,-1]],[[953,376],[0,1],[-1,0]],[[952,377],[0,1],[-1,0]],[[951,378],[0,1]],[[951,379],[-1,0],[0,1]],[[950,380],[-1,0],[-1,1]],[[948,381],[-1,0],[0,1]],[[947,382],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1]],[[935,374],[0,-1]],[[935,373],[0,-1]],[[935,372],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0]],[[946,350],[1,-1]],[[947,349],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[2,-1],[1,0],[1,0],[1,-1],[1,0]],[[960,342],[1,0],[1,0]],[[962,342],[1,0]],[[963,342],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1]],[[973,344],[1,0]],[[974,344],[1,0]],[[975,344],[0,1]],[[975,345],[1,0],[0,1]],[[976,346],[1,0]],[[977,346],[1,1],[1,1]],[[979,348],[1,1],[1,1]],[[981,350],[1,0],[0,1],[1,0]],[[983,351],[0,1]],[[983,352],[1,0]],[[984,352],[0,1],[1,0]],[[985,353],[0,1],[1,0],[0,-1],[-1,0]],[[985,353],[0,-1]],[[985,352],[-1,-1]],[[984,351],[-1,0]],[[983,351],[0,-1],[-1,-1]],[[982,349],[-1,0]],[[981,349],[0,-1],[-1,-1]],[[980,347],[-1,0]],[[979,347],[0,-1],[-1,0],[0,-1],[-1,0]],[[977,345],[0,-1]],[[977,344],[-1,0]],[[976,344],[-1,0]],[[975,344],[0,-1]],[[975,343],[1,0]],[[976,343],[0,1]],[[977,344],[1,0],[0,1],[1,0],[1,0],[0,1]],[[980,346],[1,0],[1,1]],[[982,347],[1,0]],[[983,347],[0,1]],[[983,348],[1,0],[0,1]],[[984,349],[1,0]],[[985,349],[0,1]],[[985,350],[1,0]],[[986,350],[1,1],[1,0],[0,-1],[1,-1],[-1,0],[-1,0]],[[987,349],[0,-1]],[[987,348],[-1,0]],[[986,348],[0,-1]],[[986,347],[-1,0],[-1,-1]],[[984,346],[-1,0]],[[983,346],[0,-1],[-1,0],[-1,-1]],[[981,344],[-1,0],[0,-1],[-1,0],[-1,0]],[[978,343],[0,-1]],[[978,342],[-1,0]],[[977,342],[-1,0]],[[976,342],[0,-1]],[[976,341],[-1,0]],[[975,341],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1]],[[969,339],[-1,0],[-1,0],[-1,0]],[[962,339],[0,1],[-1,0]],[[961,340],[-1,0],[-1,0]],[[959,340],[-1,0]],[[958,340],[-1,1],[-1,0]],[[956,341],[-1,0]],[[955,341],[-1,1],[-1,0]],[[953,342],[0,1],[-1,0],[-1,0]],[[951,343],[0,1],[-1,0]],[[950,344],[-1,1],[-1,0]],[[948,345],[0,1],[-1,0]],[[947,346],[0,1],[-1,0]],[[946,347],[-1,1]],[[945,348],[-1,1]],[[944,349],[-1,1]],[[943,350],[0,1],[-1,0]],[[942,351],[0,1],[-1,0]],[[941,352],[0,1]],[[941,353],[-1,1],[-1,1]],[[939,355],[0,1],[-1,1]],[[938,357],[-1,2]],[[937,359],[0,1],[-1,0]],[[936,360],[0,1]],[[936,361],[0,1],[-1,1]],[[935,363],[0,1]],[[935,364],[0,1],[0,1],[-1,0]],[[934,366],[0,1],[0,1]],[[934,368],[0,1],[0,1],[0,1],[0,1],[0,1]],[[934,373],[0,1]],[[934,374],[0,1]],[[934,375],[0,1]],[[934,376],[0,1]],[[934,377],[0,1]],[[934,378],[1,0],[0,1],[0,1]],[[935,380],[1,0],[0,1],[0,1]],[[936,382],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0]],[[944,385],[1,0]],[[945,385],[1,0]],[[946,385],[1,0]],[[947,385],[0,-1]],[[947,384],[1,0]],[[948,384],[1,0],[1,-1]],[[950,383],[1,0]],[[977,338],[-1,1],[0,1]],[[976,340],[-1,0],[0,1]],[[975,341],[-1,1],[0,1],[-1,1]],[[973,344],[-1,2],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1]],[[968,354],[-1,0],[-1,2],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-2,2],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1]],[[951,378],[-1,0],[-1,1],[-1,1],[0,1]],[[948,381],[-1,1]],[[947,382],[-2,2],[-1,1]],[[944,385],[-1,1]],[[943,386],[0,1],[-1,0]],[[942,387],[0,1]],[[942,388],[-1,0]],[[941,388],[0,1]],[[941,389],[-1,0]],[[940,389],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-2,2],[1,0],[1,0],[0,-1],[1,0],[0,-1],[2,-1],[0,-1],[1,0],[0,-1],[1,-1]],[[941,390],[0,-1]],[[941,389],[1,0],[1,-1]],[[943,388],[0,-1],[1,0]],[[944,387],[0,-1]],[[944,386],[1,0],[0,-1]],[[946,385],[1,-2],[1,-1],[1,-1]],[[949,381],[1,-1]],[[952,377],[1,-1]],[[953,376],[0,-1],[1,0]],[[954,375],[0,-1],[2,-1],[1,-2]],[[957,371],[1,-2],[2,-2]],[[960,367],[0,-1],[1,0]],[[961,366],[1,-3],[1,0]],[[963,363],[0,-1],[1,0]],[[964,362],[0,-1]],[[964,361],[0,-1],[1,0]],[[965,360],[0,-1],[1,0]],[[966,359],[0,-1]],[[966,358],[1,-2],[1,-1],[0,-1]],[[968,354],[1,0],[0,-1]],[[969,353],[0,-1],[1,0]],[[970,352],[0,-1],[0,-1],[1,0]],[[971,350],[1,-1]],[[972,349],[0,-1]],[[972,348],[0,-1],[1,-1]],[[973,346],[1,-1]],[[974,345],[0,-1]],[[974,344],[1,-1]],[[975,343],[0,-1],[1,0]],[[976,341],[1,-1]],[[977,340],[1,-1]],[[978,339],[0,-1]],[[978,338],[3,-5],[1,-1]],[[982,332],[2,-4],[7,-12],[1,-1]],[[992,315],[-1,0],[-1,1],[0,1],[-1,1],[-1,2],[-1,1],[-1,2],[-1,2],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,2],[-1,1],[-1,1],[0,1]],[[951,388],[1,-1]],[[952,387],[-1,0]],[[951,387],[0,-1]],[[951,386],[-1,0]],[[950,386],[-1,0]],[[949,386],[0,1],[-1,0]],[[948,387],[-1,0]],[[947,387],[-1,0],[-1,1],[-1,0]],[[944,388],[-1,0]],[[943,388],[-1,-1]],[[942,387],[-1,0],[-1,0]],[[940,387],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1]],[[936,382],[-1,0],[0,-1],[0,-1]],[[935,380],[-1,0],[0,-1],[0,-1]],[[934,377],[-1,-1]],[[933,376],[0,-1]],[[933,375],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1]],[[934,366],[0,-1],[1,-1]],[[935,363],[0,-1],[1,-1]],[[936,360],[1,-1]],[[937,359],[0,-1],[0,-1],[1,0]],[[938,357],[0,-1],[1,-1]],[[939,355],[1,-2],[1,0]],[[941,352],[1,-1]],[[942,351],[0,-1],[1,0]],[[944,349],[0,-1]],[[944,348],[1,0]],[[945,348],[0,-1]],[[945,347],[1,0]],[[946,347],[1,-1]],[[947,346],[1,-1]],[[950,344],[0,-1],[1,0]],[[951,343],[1,-1],[1,0]],[[953,342],[1,-1],[1,0]],[[956,341],[0,-1],[1,0],[1,0]],[[959,340],[1,-1],[1,0],[1,0]],[[969,339],[1,0],[1,0],[2,0],[1,0],[1,0],[1,1]],[[976,340],[1,0]],[[977,340],[1,0]],[[978,340],[1,0]],[[979,340],[1,0],[0,1],[1,0],[1,0],[1,0]],[[983,341],[0,1]],[[983,342],[1,0],[1,0]],[[985,342],[0,1]],[[985,343],[1,0]],[[986,343],[1,0],[1,0]],[[988,343],[0,1]],[[988,344],[1,0]],[[989,344],[1,0]],[[990,344],[1,1],[1,-1],[0,-1],[-1,0]],[[991,343],[-1,0],[0,-1]],[[990,342],[-1,0]],[[989,342],[-1,0],[0,-1],[-1,0]],[[987,341],[-1,0]],[[986,341],[-1,-1],[-1,0]],[[984,340],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0]],[[980,339],[-1,-1]],[[979,338],[-1,0]],[[978,338],[-1,0]],[[977,338],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[967,337],[-1,0]],[[966,337],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0]],[[943,346],[0,1],[-1,0]],[[942,347],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-2,2]],[[937,353],[0,1]],[[937,354],[1,0],[0,-1],[1,0],[-1,1],[-1,0]],[[937,354],[0,1]],[[937,355],[0,1],[-1,0]],[[936,356],[0,1],[-1,1],[0,1]],[[935,359],[0,1],[-1,0]],[[934,360],[0,1]],[[934,361],[0,1],[-1,1]],[[933,363],[0,1],[0,1],[-1,1]],[[932,366],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1]],[[931,372],[0,1],[0,1]],[[931,374],[1,0],[0,1],[0,1]],[[932,376],[0,1],[0,1]],[[932,378],[0,1],[1,0],[0,1],[0,1],[0,1]],[[933,382],[1,0],[0,1],[0,1]],[[934,384],[1,0],[0,1]],[[935,385],[1,0],[0,1]],[[936,386],[1,0],[0,1],[1,0]],[[938,387],[0,1]],[[938,388],[1,0],[0,1]],[[939,389],[1,0]],[[941,390],[1,0],[1,0],[1,0],[1,0]],[[945,390],[1,0]],[[946,390],[1,0]],[[947,390],[0,-1]],[[947,389],[1,0]],[[948,389],[1,0],[1,-1]],[[950,388],[1,0]],[[953,381],[1,-1]],[[954,380],[1,-1]],[[955,378],[1,0],[1,-3],[1,0]],[[958,375],[0,-1],[1,0]],[[959,374],[1,-1],[1,-2]],[[961,371],[0,-1],[2,-2],[1,-1]],[[964,367],[0,-1],[1,-1],[1,-1]],[[966,364],[1,-2],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-2],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-2]],[[977,346],[0,-1]],[[977,344],[1,-1]],[[978,342],[1,-1],[0,-1]],[[979,340],[1,-1]],[[980,339],[1,-2],[1,-2],[1,-2],[1,-2],[2,-1],[1,-2],[1,-2],[1,-1],[1,-2],[1,-2],[1,-2],[1,-1],[0,-1],[1,-1],[-1,-1],[-1,1]],[[992,316],[0,1],[-1,1],[-1,2]],[[990,320],[-1,1],[-1,2]],[[988,323],[-1,1],[-1,2]],[[986,326],[-1,1],[0,2],[-1,1],[-1,2],[-1,0]],[[982,332],[0,1],[-1,1]],[[981,334],[0,1],[-1,1]],[[980,336],[-1,2]],[[979,338],[0,1],[-1,0]],[[978,339],[0,1]],[[978,340],[-1,1]],[[977,341],[0,1]],[[977,342],[-1,1]],[[976,344],[-1,1]],[[975,345],[0,1],[-1,0]],[[974,346],[0,1],[0,1],[-1,0]],[[973,348],[0,1],[-1,1],[0,1]],[[972,351],[-1,2]],[[971,353],[-1,1]],[[970,354],[0,1],[-1,1]],[[969,356],[0,1],[-1,0]],[[968,357],[0,1]],[[968,358],[-1,1]],[[967,359],[0,1],[-1,0]],[[966,360],[0,1]],[[966,361],[-1,1]],[[965,362],[0,1],[-1,0]],[[964,363],[0,1]],[[964,364],[-1,1],[0,1],[-1,0]],[[962,366],[0,1]],[[962,367],[-1,1]],[[961,368],[-1,1]],[[960,369],[-1,2]],[[959,371],[-1,1]],[[958,372],[0,1],[-1,1],[-1,0]],[[956,374],[0,1]],[[956,375],[-2,2]],[[954,377],[0,1]],[[954,378],[-1,0]],[[953,378],[0,1]],[[953,379],[-1,0]],[[952,379],[0,1]],[[952,380],[-1,0]],[[951,380],[0,1]],[[949,382],[0,1],[-1,0],[0,1]],[[947,384],[-1,0],[0,1]],[[944,386],[-1,0]],[[940,387],[-1,0],[-1,0]],[[936,386],[-1,0],[0,-1]],[[935,385],[-1,0],[0,-1]],[[934,384],[-1,0],[0,-1],[0,-1]],[[933,382],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1]],[[931,379],[0,-1]],[[931,378],[0,-1]],[[931,377],[0,-1],[0,-1],[0,-1]],[[931,372],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1]],[[932,366],[0,-1],[0,-1],[0,-1],[1,0]],[[933,363],[0,-1],[0,-1],[1,0]],[[934,360],[0,-1],[1,0]],[[936,356],[1,-1]],[[937,354],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[930,378],[0,1],[0,1]],[[930,380],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0]],[[938,388],[1,1]],[[940,389],[1,-1]],[[942,388],[1,0]],[[944,388],[0,-1]],[[944,387],[1,0],[1,-1],[1,0],[0,-1]],[[947,385],[1,0],[0,-1]],[[950,383],[1,-1],[0,1]],[[951,383],[-1,1],[-1,1],[-1,1],[-1,1]],[[947,387],[0,1],[-1,1],[-1,0],[0,1]],[[945,390],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[1,-1],[2,-1]],[[944,393],[0,-1],[1,0]],[[945,392],[0,-1],[1,0],[0,-1]],[[946,390],[1,-1]],[[947,389],[1,-1],[0,-1]],[[949,386],[2,-1]],[[951,385],[1,-2],[0,-1]],[[952,382],[1,0],[0,-1]],[[989,346],[-1,0]],[[988,346],[-1,0]],[[987,346],[0,1],[-1,0]],[[986,347],[1,0],[1,1]],[[988,348],[1,0],[1,-1],[0,-1],[-1,0]],[[974,366],[0,-1],[0,1]],[[974,366],[-1,1],[0,1]],[[973,368],[0,1]],[[973,369],[1,0]],[[974,369],[0,1],[0,1],[0,1],[0,1],[0,1]],[[974,374],[1,0],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[974,369],[0,-1],[0,-1]],[[974,367],[0,-1]],[[974,374],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1]],[[972,371],[-1,0],[0,-1]],[[971,370],[-1,2],[0,1]],[[970,373],[1,0],[1,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-1,1],[-1,1],[0,1],[-2,2],[-2,2],[-1,1],[-2,3],[-2,1],[3,-1],[1,-1],[1,0],[1,-2],[1,0],[1,-2],[2,-2],[1,-1],[1,-1],[2,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[990,341],[0,1]],[[990,342],[-1,1],[0,1]],[[988,344],[0,1],[0,1]],[[986,348],[0,1],[-1,0]],[[985,350],[-1,1]],[[984,351],[0,1]],[[983,352],[-1,2],[0,1],[-1,1],[-1,2],[-1,1],[-1,1],[-1,1]],[[977,361],[-1,1]],[[976,362],[0,1],[-1,2],[-1,1]],[[973,368],[-1,0]],[[972,368],[0,1],[-1,1]],[[971,370],[-1,1],[-1,2],[-1,1],[-2,1]],[[966,375],[-1,1]],[[965,376],[-1,2],[-1,1]],[[963,379],[0,1],[-1,0]],[[962,380],[-1,2],[-1,1],[-1,1],[-1,1],[-1,1]],[[957,386],[-1,1]],[[956,387],[0,1],[-1,0],[-1,1]],[[954,389],[-1,1]],[[953,390],[-1,1]],[[952,391],[0,1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1]],[[970,373],[1,-1],[1,-1]],[[972,371],[1,-1],[0,-1]],[[974,367],[1,0],[1,-1],[1,-2],[1,-2],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-2],[1,-1]],[[985,352],[1,-1],[0,-1]],[[986,350],[1,0],[0,-1]],[[987,348],[1,0]],[[988,348],[0,-1],[1,0],[0,-1]],[[989,346],[0,-1],[1,0],[0,-1]],[[990,344],[1,-1]],[[991,343],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,-2],[1,-1],[1,-2],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,1],[-1,2],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,2],[-1,1],[0,1],[-1,1],[0,1],[-1,0]],[[957,386],[1,-2],[1,-1],[1,-1],[1,-1],[1,-1]],[[962,380],[1,-1]],[[963,379],[0,-1],[1,-1],[1,-1]],[[966,375],[1,-1],[1,-2],[1,-1],[1,-1],[1,-1],[1,-1]],[[972,368],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1]],[[977,361],[0,-1],[1,-1],[1,-1],[1,-1],[0,-2],[1,-1],[1,-1],[0,-1],[1,0]],[[984,351],[0,-2]],[[985,349],[0,-1],[1,-1]],[[986,347],[1,-1]],[[987,346],[0,-1],[0,-1],[1,0]],[[988,343],[1,-1]],[[989,342],[0,-1],[1,0]],[[990,341],[0,-1],[0,-1],[1,-1],[1,-2],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-2],[1,-2],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,1],[-2,2],[-1,2]],[[995,327],[-1,2],[-1,2],[-1,1]],[[992,332],[0,1],[-1,1]],[[991,334],[0,1],[-1,0]],[[990,335],[0,1],[-1,2],[-1,1]],[[988,339],[-1,2]],[[986,341],[0,1],[0,1]],[[986,343],[-2,2]],[[984,345],[0,1]],[[983,346],[0,1]],[[983,348],[-1,1]],[[982,349],[-1,1]],[[981,350],[-1,1],[-1,2]],[[979,353],[0,1],[-1,0]],[[978,354],[-1,2]],[[977,356],[0,1],[-1,0]],[[976,357],[0,1],[-1,1]],[[975,359],[0,1],[-1,0]],[[974,360],[0,1],[-1,1]],[[973,362],[-1,1]],[[972,363],[-1,2],[-1,0],[0,1]],[[970,366],[-1,1],[-1,1],[-1,2]],[[967,370],[-1,1],[-1,1]],[[965,372],[0,1],[-1,0]],[[964,373],[0,1],[-1,0]],[[963,374],[0,1],[-1,0]],[[962,375],[0,1],[-1,0]],[[961,376],[0,1],[-1,1]],[[960,378],[-1,1],[-1,1],[-1,1]],[[957,381],[-1,1]],[[956,382],[-1,0]],[[955,382],[0,1]],[[955,383],[-1,0],[0,1]],[[954,384],[-1,0],[0,1]],[[953,385],[-1,0],[-1,0]],[[951,385],[0,1]],[[952,387],[1,0]],[[952,387],[0,1],[-1,1],[-1,1]],[[950,390],[-1,1],[-1,0]],[[948,391],[-1,1]],[[947,392],[0,1],[1,0]],[[948,393],[1,0],[1,-1],[1,0],[1,-1]],[[952,391],[0,-1],[1,0]],[[954,389],[0,-1],[2,-1]],[[974,345],[0,1]],[[974,346],[-1,0]],[[973,346],[-1,2]],[[972,348],[-1,1],[0,1]],[[971,350],[0,1],[-1,1]],[[970,352],[0,1],[-1,0]],[[968,354],[0,2],[-1,1],[-1,1]],[[966,359],[-1,1]],[[965,360],[0,1],[-1,0]],[[964,362],[-1,1]],[[963,363],[-1,1],[0,1],[-1,0],[0,1]],[[961,366],[0,1],[-1,0]],[[960,367],[0,1],[-1,1],[-1,1],[-1,1]],[[957,371],[0,1],[-2,1],[0,1],[-1,1]],[[954,375],[-1,1]],[[954,377],[0,-1],[1,0],[0,-1],[1,0]],[[956,374],[1,-1],[1,-1]],[[958,372],[0,-1],[1,0]],[[959,371],[0,-1],[1,0],[0,-1]],[[960,369],[0,-1],[1,0]],[[961,368],[0,-1],[1,0]],[[962,366],[1,-2],[1,0]],[[964,363],[1,-1]],[[965,362],[0,-1],[1,0]],[[966,360],[1,-1]],[[967,359],[0,-1],[1,0]],[[968,357],[0,-1],[1,0]],[[969,356],[1,-2]],[[970,354],[0,-1],[1,0]],[[971,353],[0,-1],[1,-1]],[[972,351],[0,-2]],[[972,349],[1,-1]],[[973,348],[1,-2]],[[974,346],[1,-1]],[[976,343],[0,-1]],[[977,341],[0,-1]],[[979,338],[0,-1],[1,-1]],[[980,336],[0,-1],[1,-1]],[[982,332],[1,-1],[1,-2],[1,-1],[1,-2]],[[986,326],[1,-1],[1,-2]],[[990,320],[1,-3],[1,-1]],[[992,316],[0,-1]],[[963,374],[-1,0],[0,1]],[[962,375],[-1,0],[0,1]],[[961,376],[-1,0],[0,1],[-1,1],[-1,1],[-1,2]],[[957,381],[-1,0],[0,1]],[[956,382],[-1,1]],[[955,383],[-2,2]],[[953,385],[-1,2]],[[951,388],[-1,2]],[[948,391],[0,1],[-1,0]],[[948,393],[1,-1],[2,-2],[2,-3]],[[953,387],[2,-3],[2,-2],[1,-1],[1,-1],[1,-2]],[[964,373],[1,-1]],[[965,372],[0,-1],[2,-1]],[[970,366],[1,-2],[1,-1]],[[973,362],[0,-1],[1,-1]],[[974,360],[1,-1]],[[975,359],[0,-1],[1,-1]],[[976,357],[1,-1]],[[978,354],[1,-1]],[[981,350],[0,-1]],[[982,349],[0,-1],[0,-1]],[[983,346],[1,-1]],[[984,345],[0,-1],[1,-1]],[[985,342],[1,-1]],[[986,341],[1,-2],[1,0]],[[988,339],[0,-1],[0,-1],[1,-1],[1,-1]],[[990,335],[1,-1]],[[991,334],[0,-1],[1,-1]],[[992,332],[1,-2],[1,-2],[1,-1]],[[995,327],[0,-1],[1,-2],[1,-2],[1,-1],[0,-1],[-1,-1],[0,-1],[-1,2],[-1,1],[-1,2],[-1,2],[-1,1],[-1,2],[-1,2],[-1,2],[-1,2],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,2]],[[984,340],[-1,1]],[[983,342],[-1,1],[-1,1]],[[981,344],[0,1],[-1,1]],[[980,346],[0,1]],[[979,347],[0,1]],[[979,348],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,2],[-1,1],[-1,1],[-1,2],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,1]],[[966,364],[0,1],[-1,1],[0,1],[-1,0]],[[964,367],[0,1],[-1,1],[-1,1],[0,1],[-1,0]],[[961,371],[-1,1],[-1,1],[0,1]],[[958,375],[-1,1],[-1,0],[0,1],[-1,1]],[[955,379],[1,0],[-1,1]],[[955,380],[-1,1]],[[954,381],[-1,2],[-1,1],[-1,1]],[[951,385],[-1,1]],[[950,386],[0,1],[-2,2]],[[947,390],[-2,2]],[[945,392],[-1,1]],[[944,393],[0,1],[1,0],[1,-1],[1,-1]],[[948,391],[1,-1],[1,-1],[0,-1]],[[950,388],[1,-1]],[[951,387],[3,-3]],[[955,382],[1,-1],[2,-2],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,-2],[1,-2],[2,-1],[1,-2],[1,-2],[0,1],[-1,1],[-1,2],[-1,1],[-1,2],[-1,1],[-1,2],[-1,1],[-1,0],[0,1],[-1,1],[0,1]],[[688,362],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,-2],[0,-1]],[[688,362],[0,-1],[0,1]],[[825,256],[1,0]],[[826,256],[1,-1],[1,0],[-2,0],[0,1]],[[825,256],[-1,-1]],[[824,255],[-2,1],[-1,0],[-1,0],[-2,1],[-2,0],[-3,1]],[[813,258],[-1,0],[-2,1],[-2,0],[-1,0],[-1,1]],[[806,260],[-1,0],[1,0]],[[806,260],[1,0],[2,-1],[3,0],[1,-1]],[[813,258],[2,0],[1,0],[1,0],[1,0],[3,-1],[4,-1]],[[844,251],[1,0],[-1,0]],[[844,251],[-3,1],[-2,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,1]],[[832,254],[-1,0],[1,0]],[[832,254],[1,0],[2,-1],[1,0],[1,0],[1,0],[4,-1],[2,0],[0,-1]],[[852,249],[1,0],[1,0],[0,-1],[-1,0],[-1,1]],[[852,249],[-2,0],[-2,1],[3,0],[1,-1]],[[872,284],[0,-1],[0,1],[0,0]],[[872,285],[-2,1],[-1,0],[-1,0],[0,1],[2,-1],[2,0],[0,-1]],[[866,287],[0,0]],[[865,287],[-1,0]],[[865,287],[0,0]],[[897,326],[0,-1],[-1,-1],[-1,-2],[-2,-3],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-2,-4],[-1,-1],[0,-1],[-1,-1],[-1,-2],[0,-1],[-1,-1],[-1,-2],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[-1,-1],[0,1],[1,1],[1,3],[1,1],[0,1],[1,2],[1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[2,4],[0,1],[1,1],[1,1],[0,1],[1,2],[1,1],[1,2],[1,1],[0,1]],[[941,288],[-2,1],[-1,1],[-1,2]],[[937,292],[-1,0],[-1,1],[0,1],[1,-1],[1,-1]],[[937,292],[0,-1],[2,-1],[2,-2]],[[897,326],[0,0]],[[895,327],[1,0]],[[896,327],[0,-1],[-1,-1],[0,1]],[[895,326],[0,1]],[[896,327],[0,1]],[[896,327],[0,0]],[[896,328],[-1,-1]],[[895,327],[0,1],[1,0]],[[897,329],[0,1],[-1,0],[0,1],[-1,0],[-1,2],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-3,2],[-1,2],[-2,1],[0,1],[-1,0],[0,1],[1,-1],[2,-2],[1,-1]],[[880,345],[2,-2],[1,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,0],[2,-2],[1,0],[2,-2],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,0]],[[898,330],[-1,-1]],[[901,325],[2,-1]],[[903,324],[1,-1],[1,-1],[-1,0],[-1,2]],[[903,324],[-1,0],[-1,1]],[[901,325],[0,1],[-1,0]],[[900,326],[0,1]],[[900,326],[0,0]],[[900,331],[0,1]],[[900,332],[1,0]],[[901,332],[0,1],[0,1],[1,2]],[[902,336],[1,2]],[[903,338],[1,1],[0,1]],[[904,340],[1,1],[0,1],[0,-1],[-1,-1]],[[904,340],[-1,-2]],[[903,338],[0,-2]],[[903,336],[-1,0]],[[902,336],[0,-2]],[[902,334],[-1,-2]],[[901,332],[-1,-1]],[[900,331],[0,-1],[-1,0],[1,1]],[[890,339],[-1,0],[1,1]],[[890,340],[0,1]],[[890,341],[0,1]],[[890,342],[1,0]],[[891,342],[0,-1]],[[891,341],[-1,0]],[[890,340],[0,-1]],[[870,352],[0,1]],[[870,353],[1,-1],[-1,0]],[[870,352],[-1,1],[1,0]],[[871,354],[-1,0],[0,1],[1,-1]],[[868,355],[1,0],[0,1],[0,1],[0,-1],[0,-1],[-1,0]],[[874,352],[1,0],[0,-1],[1,0],[0,-1]],[[876,350],[1,-1]],[[877,349],[2,-1],[2,-2]],[[881,346],[2,-3],[-1,2],[-1,1]],[[881,346],[-2,1],[-1,1],[-1,1]],[[877,349],[0,1],[-1,0]],[[876,350],[-2,2]],[[874,352],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1]],[[867,361],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[1,0],[0,-1],[1,0],[1,-1],[2,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1]],[[836,388],[0,-1],[1,0]],[[837,387],[2,-1]],[[839,386],[2,-2],[2,-2],[0,-1]],[[843,381],[1,-1]],[[844,380],[1,0],[0,-1]],[[845,379],[1,0],[1,-1],[1,-1],[2,-1],[1,-1],[1,-1],[-1,1],[-1,1],[-2,1],[-1,1],[-1,1],[-1,0]],[[845,379],[-1,1]],[[843,381],[-2,2],[-3,2],[-1,1],[-1,1],[0,1]],[[848,374],[0,1],[0,-1],[0,0]],[[811,411],[3,-2],[1,-1],[1,-1]],[[816,407],[2,-2]],[[818,405],[1,-1],[2,-2]],[[821,402],[2,-2],[2,-2]],[[825,398],[1,0],[1,-1]],[[827,397],[1,-1],[0,-1]],[[828,395],[1,0],[1,-1],[1,-1]],[[831,393],[1,-1],[0,-1],[1,0],[-1,0],[0,1],[-1,1]],[[831,393],[-1,0],[-1,1],[-1,1]],[[828,395],[-1,2]],[[827,397],[-1,0],[-1,1]],[[825,398],[-2,2],[-3,2],[-1,1]],[[819,403],[-1,2]],[[818,405],[-2,1],[0,1]],[[816,407],[-2,1],[-1,1],[-2,2]],[[811,411],[-2,2],[2,-2]],[[804,412],[1,2],[1,0],[0,-1],[-2,-1]],[[804,418],[2,-2],[1,0],[0,-1],[-1,1],[-1,1],[-1,1],[-1,1],[1,-1]],[[806,411],[0,1],[1,0]],[[807,412],[-2,-1],[-1,-1],[2,1]],[[878,373],[0,-1],[1,0],[-1,0],[0,1]],[[938,330],[0,1]],[[938,331],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0]],[[517,31],[-1,0]],[[516,31],[0,1]],[[516,32],[-1,0]],[[515,32],[0,1]],[[515,33],[-1,1],[1,0],[0,-1]],[[515,33],[1,0],[0,-1]],[[516,32],[1,0],[1,0]],[[518,32],[-1,0],[0,-1]],[[517,31],[0,-1],[0,-1],[0,1],[0,1]],[[518,34],[0,1],[0,-1]],[[518,34],[0,-1],[-1,1],[1,0]],[[528,30],[-1,0]],[[527,30],[-1,1],[-1,0]],[[525,31],[0,1]],[[525,32],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,1]],[[520,35],[-1,0]],[[519,35],[0,1],[-1,0]],[[518,36],[0,1]],[[518,37],[-1,0],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1]],[[510,45],[-1,1]],[[509,46],[-1,1]],[[508,47],[0,2]],[[508,49],[1,-2]],[[509,47],[1,0]],[[510,47],[1,-1]],[[511,46],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1]],[[518,38],[1,-1]],[[519,37],[1,-1]],[[520,36],[1,0]],[[521,36],[0,-1],[1,0]],[[522,35],[0,-1],[1,0],[1,0],[0,-1],[1,0]],[[525,33],[0,-1]],[[525,32],[1,0]],[[526,32],[1,0]],[[527,32],[0,-1],[1,0]],[[528,31],[1,0]],[[529,31],[0,-1]],[[529,30],[-1,0]],[[508,49],[1,-1],[0,-1]],[[518,38],[1,0]],[[519,38],[0,-1]],[[519,37],[1,0]],[[520,37],[0,-1]],[[521,36],[1,-1]],[[525,33],[1,-1]],[[527,32],[1,-1]],[[529,31],[1,-1],[1,0],[1,0],[-1,0],[-1,0],[-1,0]],[[508,49],[0,1]],[[508,50],[1,-2],[1,0]],[[510,48],[1,-1]],[[511,47],[1,-2],[1,0],[2,-2],[2,-2],[0,-1],[1,0]],[[518,40],[0,-1],[1,0],[0,-1]],[[519,38],[1,0]],[[520,38],[0,-1]],[[520,37],[1,0]],[[521,37],[1,-1]],[[522,36],[1,0]],[[523,36],[0,-1],[1,0]],[[524,35],[0,-1],[1,0]],[[525,34],[1,-1],[1,0]],[[527,33],[1,0],[1,-1],[1,0],[0,-1],[-1,0]],[[518,51],[0,1]],[[518,52],[0,1],[0,1],[0,1],[1,2],[0,-2],[-1,-3]],[[518,51],[0,-1],[0,-1],[0,-1],[-1,0],[-1,1],[0,1],[1,0],[0,1],[1,0]],[[661,77],[0,-1]],[[661,76],[0,-1]],[[661,75],[0,-1]],[[661,74],[1,0]],[[662,74],[0,-1],[-1,0],[0,1]],[[661,75],[-1,0]],[[660,75],[0,1],[0,1],[1,0]],[[630,124],[1,1]],[[631,125],[1,1],[1,1],[1,0],[0,1],[1,0],[3,3],[2,2],[2,1],[0,1],[1,0],[4,4],[2,1],[1,1],[0,1],[1,1],[2,2],[1,1],[1,0],[2,2],[1,1],[2,2],[3,2],[1,2],[2,2],[1,0],[1,2],[1,0],[0,1],[1,0]],[[670,160],[0,1]],[[670,160],[0,-1],[-1,-1],[-1,0],[-1,-2],[-3,-3],[-4,-3],[-5,-4],[-1,-2],[-2,-2],[-3,-2],[-2,-2],[-2,-2],[-1,-1],[-1,-1],[-1,0],[0,-1],[-2,-2],[-2,-1],[-1,-2],[-2,-1],[-2,-2],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-2,-3],[-1,0],[-1,-2],[-2,-1],[-2,-2],[-1,-1],[-2,-2],[-1,-1],[-2,-1],[-1,-2],[-2,-1],[-2,-2],[-2,-2],[-3,-3],[-2,-1],[0,-1],[-3,-2],[-1,-1],[-2,-3],[-3,-2],[-2,-2],[-3,-2],[-3,-3],[1,1],[2,2],[1,1],[7,7],[2,1],[1,1],[1,1],[2,2],[2,2],[2,1],[1,2],[1,1],[2,2],[2,2],[2,2],[2,1],[1,1],[0,1],[2,1],[1,2],[2,1],[2,2],[0,1],[1,0],[2,2],[2,2]],[[686,90],[0,1]],[[686,91],[1,0],[1,1]],[[688,92],[1,0],[1,1]],[[690,93],[1,0],[0,1]],[[691,94],[1,0]],[[692,94],[1,1]],[[693,95],[1,0],[1,1]],[[695,96],[1,1],[1,0]],[[697,97],[1,1]],[[698,98],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1]],[[693,93],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1]],[[688,90],[-1,0],[0,-1]],[[687,89],[-1,0],[0,1]],[[698,98],[-1,0],[0,-1]],[[695,96],[-1,0],[-1,-1]],[[693,95],[-1,0],[0,-1]],[[691,94],[-1,-1]],[[690,93],[-1,0],[-1,-1]],[[686,91],[-1,-1]],[[685,90],[0,1],[0,1]],[[685,92],[-1,0],[1,0]],[[685,92],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1]],[[693,97],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0]],[[698,99],[0,-1]],[[714,106],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0]],[[702,100],[0,-1],[0,1]],[[702,100],[1,1]],[[703,101],[1,1],[1,0],[1,1]],[[706,103],[1,0],[1,1],[1,1]],[[709,105],[1,0],[0,1]],[[710,106],[1,0]],[[711,106],[1,0],[1,1]],[[713,107],[1,0],[0,1]],[[714,108],[0,-2]],[[717,111],[-1,0],[0,-1],[-1,0],[0,-1],[-2,-1],[0,-1]],[[713,107],[-1,0],[-1,-1]],[[710,106],[-1,-1]],[[709,105],[-1,0],[-1,-1],[-1,-1]],[[703,101],[-1,0],[0,-1]],[[702,100],[-1,1]],[[701,101],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,2]],[[714,111],[1,0],[1,1]],[[716,112],[1,-1]],[[519,30],[-1,0]],[[518,30],[0,1],[1,0],[0,-1]],[[733,247],[0,-1],[0,0],[0,1]],[[728,212],[0,1]],[[728,213],[1,4]],[[729,217],[0,1],[0,1],[0,2],[0,1],[0,1],[1,2]],[[730,225],[0,2],[0,2],[0,1],[0,1],[1,1],[0,1]],[[731,233],[0,1],[0,2]],[[731,236],[1,3]],[[732,239],[0,1]],[[732,239],[0,-2],[-1,-1]],[[731,236],[0,-1],[0,-2]],[[731,233],[0,-3],[-1,-2],[0,-2],[0,-1]],[[730,225],[0,-1],[0,-1],[0,-3],[-1,-3]],[[729,217],[0,-3],[-1,-1]],[[728,212],[0,-2],[0,-4],[-1,0],[0,2],[1,4]],[[732,241],[0,-1]],[[732,241],[0,0]],[[740,238],[1,-1]],[[741,237],[2,-1],[1,-1],[1,0],[0,-1]],[[745,234],[1,0],[1,-1],[1,0],[1,-1],[0,-1]],[[749,231],[1,0],[0,-1],[1,0],[0,-1],[-2,2]],[[749,231],[-2,1],[-2,2]],[[745,234],[-2,1],[-1,2],[-1,0]],[[740,238],[-2,1],[-2,2],[-1,1],[1,-1],[1,-1],[1,0],[1,-1],[1,-1]],[[735,203],[1,0],[1,0],[3,-1]],[[740,202],[3,0],[-3,0]],[[740,202],[-3,0],[-1,0],[-1,1]],[[735,203],[-1,0],[-4,0],[0,1],[4,-1],[1,0]],[[749,201],[2,0],[2,-1],[-2,0],[-2,1]],[[749,201],[-2,0],[2,0]],[[829,183],[0,1],[0,1]],[[829,185],[-1,0]],[[829,185],[1,0],[0,-1],[-1,-1]],[[829,183],[0,-1],[0,-1],[-1,0],[0,1],[1,1]],[[830,181],[0,0],[0,0],[0,0]],[[839,194],[0,1],[0,-1],[0,0]],[[589,103],[-1,0],[-1,0],[0,1],[1,0],[0,-1],[1,0]],[[834,189],[-1,0]],[[833,189],[1,1],[0,-1]],[[508,49],[-2,1],[0,1]],[[506,51],[-1,0],[0,1]],[[505,52],[-1,0]],[[504,52],[-1,1],[0,1]],[[503,54],[-1,0],[0,1]],[[502,55],[-1,0],[0,1]],[[501,56],[-1,0],[0,1],[-1,1],[-1,1],[-1,1]],[[497,60],[-1,0],[-1,2],[2,-1],[0,-1]],[[497,60],[1,-1],[1,-1],[1,-1],[1,-1]],[[501,56],[1,-1]],[[503,54],[1,-1],[0,-1]],[[505,52],[1,-1]],[[546,511],[-1,-1]],[[545,510],[-1,0],[-1,0],[0,1],[1,0],[1,1],[1,-1]],[[481,299],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1]],[[476,448],[1,0],[-1,0]],[[476,448],[-2,1],[-1,0],[2,0],[1,-1]],[[477,451],[1,0],[0,-1],[0,-1],[-1,0],[-1,1],[1,0],[0,1]],[[537,463],[-1,0],[-1,0],[-1,1],[-1,0],[0,-2],[0,-1],[0,-1],[-1,0],[1,1],[0,1],[0,2],[0,1],[1,-1],[1,0],[2,-1]],[[486,290],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,-1],[-1,0]],[[474,289],[0,1],[0,1]],[[474,291],[0,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[567,197],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[1,1],[1,1],[0,1],[1,1],[1,1]],[[511,212],[-1,0],[0,-1]],[[510,211],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,3],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1]],[[491,344],[1,0],[1,-1],[1,-1],[-1,0],[-1,1],[-1,0],[0,1]],[[574,434],[0,-1],[0,-1],[-1,0],[0,1]],[[573,433],[0,1],[1,1],[0,1],[0,-1],[0,-1]],[[612,417],[1,0],[1,0],[0,-1],[-1,0],[-1,0],[0,1]],[[638,297],[1,0]],[[638,297],[-2,1],[-1,1],[-1,0],[-1,1],[-3,1]],[[630,301],[0,1]],[[630,302],[1,0],[1,-1],[1,0],[2,-2],[1,0],[1,-1],[1,-1]],[[640,303],[0,-1]],[[640,303],[-1,0],[-1,1],[-1,1],[-2,2],[-1,0],[-1,1],[-1,0]],[[632,308],[1,1]],[[633,309],[0,-1],[2,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1]],[[582,256],[0,1],[0,-1]],[[582,256],[-1,-1],[-1,-1],[1,2],[1,0]],[[559,251],[-1,0],[-1,0],[-1,0],[-1,0],[1,2],[1,0],[0,1],[1,-1],[1,-1],[0,-1]],[[567,248],[-1,0],[0,-1]],[[566,247],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,0],[2,1],[2,0],[1,0],[1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1]],[[573,252],[0,-1],[-1,0],[1,0],[0,1]],[[577,253],[1,0],[1,0]],[[579,253],[0,1],[0,-1]],[[579,253],[-2,0]],[[577,253],[0,-1],[-1,0],[-1,0],[-1,0],[1,0],[0,1],[1,0],[1,0]],[[578,250],[-1,0]],[[577,250],[0,-1],[0,1]],[[577,250],[0,1],[1,0],[0,1],[0,-1],[0,-1]],[[580,252],[0,-1]],[[580,251],[-2,-2],[0,1]],[[578,250],[1,1],[0,1],[1,0]],[[539,54],[-1,0],[0,1]],[[538,55],[1,0],[0,-1]],[[491,345],[-1,0],[-1,0],[0,1],[0,1],[0,1],[2,-1]],[[491,347],[0,-1],[0,-1]],[[806,209],[0,-1]],[[806,208],[-1,1],[1,0]],[[698,103],[1,0],[0,-1],[-1,1]],[[698,104],[0,3]],[[698,104],[0,0]],[[646,316],[1,-2],[1,0],[1,-1],[1,-1],[2,-1],[1,0]],[[653,311],[0,-1]],[[653,310],[-1,0],[-2,2],[-1,0],[-1,1],[-1,1],[-2,1]],[[645,315],[0,1],[1,0]],[[613,288],[1,1]],[[614,289],[1,-1],[1,0],[0,-1],[0,-1],[-1,1],[-2,1]],[[590,74],[0,-1],[-1,-1],[-1,0]],[[588,72],[-1,-1]],[[587,71],[-1,-1]],[[586,70],[0,1],[1,0]],[[587,71],[0,1],[1,0]],[[588,72],[1,1],[0,1]],[[589,74],[1,0]],[[943,346],[-1,2]],[[942,348],[1,0],[1,0]],[[944,349],[1,0],[1,1]],[[946,350],[1,2],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,3],[-2,2],[-2,3],[-1,2],[-1,0],[-4,6],[-1,1]],[[935,373],[-1,0]],[[934,374],[-1,1]],[[933,375],[-1,1]],[[932,376],[-1,1]],[[931,378],[-1,0]],[[930,378],[-1,1],[0,1],[-1,0],[0,-1],[-1,1],[1,1],[-1,3],[-1,1]],[[926,386],[-1,0]],[[925,386],[-1,1]],[[924,388],[-1,1],[-2,2],[-1,0],[0,1],[-1,1],[-2,3],[-1,1],[0,1],[-1,1],[-2,2],[-1,1],[2,0],[1,-1],[1,-3],[1,0],[1,-2],[3,-4],[2,-2],[1,-2]],[[925,388],[0,-1]],[[926,387],[0,-1]],[[926,386],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[930,380],[1,-1]],[[931,379],[1,-1]],[[932,378],[1,-1],[0,-1]],[[933,376],[1,0]],[[934,375],[1,-1]],[[935,374],[2,-2],[3,-4],[2,-3],[1,-1],[1,-1],[0,-1],[2,-3],[2,-2],[1,-2],[1,0],[0,-1],[1,0],[1,0],[2,-2],[2,-2],[2,-3],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1]],[[963,342],[0,-1]],[[961,340],[0,1],[-1,1]],[[960,342],[-1,1],[-2,2],[-1,2],[-3,3],[-1,2],[-1,1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1]],[[947,349],[-1,0],[-1,-1]],[[945,347],[-1,0],[-1,-1]],[[452,702],[-1,-1],[0,-1],[2,-2],[0,-1],[1,-2],[2,-4],[1,-2],[1,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,2],[-1,2],[-1,1],[0,1],[-1,2],[-1,2],[0,1],[1,1],[1,-1]],[[682,384],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[-1,0],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1]],[[531,491],[-1,2],[0,4],[1,-5],[0,-1]],[[772,213],[-1,0],[0,1]],[[771,214],[-1,0],[-2,2],[-1,0],[-1,2]],[[766,218],[-1,0],[1,0]],[[766,218],[1,-1],[1,0]],[[768,217],[0,-1],[1,0]],[[769,216],[1,-1],[1,-1]],[[771,214],[1,0]],[[772,214],[0,-1]],[[772,213],[2,-1],[2,-2],[2,-1],[1,-1],[1,-1],[2,-1],[0,-1],[1,0],[-1,0],[-1,1],[-2,2],[-2,1],[-2,2],[-2,1],[-1,1]],[[759,223],[1,-1]],[[760,222],[1,0],[1,0]],[[762,222],[0,-1],[1,0]],[[763,221],[0,-1],[1,-1],[-2,1],[-1,1],[-1,1]],[[759,223],[-2,2],[-2,1],[3,-2],[1,-1]],[[841,202],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1]],[[840,188],[0,-1]],[[840,187],[0,-1],[0,-1]],[[840,185],[0,-1]],[[840,184],[0,-1]],[[840,183],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1]],[[843,183],[0,2]],[[843,185],[0,1]],[[843,186],[1,0]],[[844,186],[0,1],[0,1]],[[844,188],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[1,1],[0,2],[0,1],[0,1]],[[845,202],[1,0]],[[846,202],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[845,188],[0,-1]],[[845,187],[0,-1]],[[845,186],[-1,-1]],[[844,185],[0,-1],[0,-1]],[[844,183],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-2,-1],[-2,-1],[-2,-1]],[[800,158],[0,1]],[[800,159],[1,1],[1,0]],[[802,160],[0,1],[2,0],[1,1],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,1],[1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[811,168],[-1,0],[-1,0]],[[809,168],[-1,0],[-1,0],[-1,-1],[-1,0]],[[805,167],[-1,0]],[[805,167],[2,2],[1,0],[0,1],[1,0]],[[809,170],[1,0],[1,0]],[[811,170],[0,-1]],[[811,169],[1,0]],[[812,169],[1,0]],[[813,169],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1]],[[837,178],[1,0],[0,1],[0,1]],[[838,180],[0,1]],[[838,181],[0,1],[1,0],[0,1],[0,1]],[[839,184],[0,1]],[[839,185],[0,1],[0,1]],[[839,187],[0,1]],[[839,188],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1]],[[835,189],[1,0]],[[835,189],[-1,0]],[[833,189],[-1,1],[-1,0]],[[831,190],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,2],[0,2],[0,1],[0,1]],[[840,203],[1,-1]],[[854,245],[0,0]],[[287,919],[-1,-2],[-1,-1]],[[285,916],[-1,-1]],[[284,915],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[3,-3],[1,0],[1,1],[1,1],[0,1],[1,2],[2,2],[1,2],[1,0],[1,2],[0,1],[2,2],[1,2],[1,1],[1,1],[1,2],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,2],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-2],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[2,-3],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,1],[1,1],[0,1],[1,1],[1,2],[1,1],[1,2],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,2],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[1,2],[1,0],[0,1],[1,1],[0,1],[1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-2],[1,-1],[0,-1],[1,0],[1,0],[1,0],[1,-1],[0,-1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[2,-2],[0,-1],[1,-2],[1,0],[0,-1],[1,-1],[1,-1],[1,2],[1,0],[0,1],[0,1],[-2,1],[0,1],[-1,1],[0,1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,2],[1,1],[1,2],[1,1],[0,1],[-1,0],[-2,2],[-1,1],[0,1],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[1,1],[0,2],[1,1],[1,1],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[1,1],[1,-1],[0,-1],[1,-1],[1,-1],[1,0],[0,1],[1,2],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[1,2],[1,2],[1,2],[1,1],[1,-1],[-1,0],[0,-1],[-1,-1],[-1,-2],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[2,-2],[2,-2],[1,-1],[1,-1],[0,-1],[1,-2]],[[334,903],[1,-1]],[[335,902],[0,-1]],[[335,901],[1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-2],[-1,0],[1,0],[0,-1],[1,-1],[2,-3],[2,-2],[1,0],[0,1],[1,0],[1,2],[0,-1],[-1,-2],[-1,-1],[0,-1],[-2,-3],[-1,-2],[-1,0],[1,3],[1,1],[0,1],[1,1],[0,1],[-1,0],[-1,2],[-1,1],[-1,1],[-2,2],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-2,-2],[0,-1],[-1,-1],[-1,-2],[0,-1],[1,-1],[1,-2],[1,-2],[1,-1],[1,-3],[1,-1],[1,-2],[1,-1],[1,-1],[1,-2],[0,-1],[1,-1],[0,-1],[2,-2],[1,0],[0,1],[1,0],[1,1],[0,1],[1,1],[1,1],[1,1],[0,1],[1,0],[1,2],[1,1],[1,1],[2,2],[-1,1],[-1,1],[0,1],[-1,2],[-1,1],[0,1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[1,0],[0,2],[0,1],[0,1],[1,0],[0,-2],[0,-2],[-1,0],[1,0],[1,0],[0,-1],[2,0],[1,0],[1,0],[1,0],[0,-2],[-1,0],[-1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,-2],[1,-1],[1,-1],[0,-1],[2,-2],[1,-3],[1,-1],[1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,0],[1,-2],[0,-1],[1,-1],[0,-1],[1,0],[0,-2],[1,-1],[1,0],[0,1],[1,1],[1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[367,825],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,1],[1,0],[0,-1],[-1,-1],[0,-1],[1,-1],[2,-3],[1,-2],[1,-1],[1,-1],[1,-2],[2,-4],[0,-1]],[[381,803],[0,-1],[-1,-1],[0,-1],[-2,-2],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-2],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[1,-1],[1,-2],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,1],[1,0],[1,2],[1,0],[0,1],[1,1],[1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[2,1],[0,1],[1,1],[1,-1],[-1,0],[-1,-2],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-3],[-1,0],[0,-1],[-1,0],[-1,-2],[-1,0],[0,-1],[-1,0],[0,-1],[2,-2],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[2,-3],[1,1],[2,2],[1,3],[2,2],[1,1],[1,1],[1,2],[1,1],[1,2],[1,0],[1,1],[1,2],[1,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[1,1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[0,1],[2,2],[0,1],[1,0],[1,1],[0,1],[1,1],[1,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[1,1],[0,-1],[1,-1],[1,-1],[0,-1],[2,-2],[1,2],[1,0],[1,1],[1,1],[0,1],[1,1],[0,1],[0,2],[-1,2],[-1,1],[0,1],[0,1],[0,1],[1,0],[1,-3],[0,-1],[0,-1],[1,-2],[2,3],[0,1],[-1,0],[-1,1],[0,1],[-1,1],[1,0],[1,0],[1,-2],[1,0],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[-3,1],[0,1],[-1,0],[0,1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-2],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-2],[1,-3],[1,0],[1,2],[0,1],[1,2],[0,2],[1,1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[1,-1],[0,-1],[1,-1],[1,-2],[1,-2],[0,-1],[1,3],[1,1],[0,1],[0,1],[1,2],[1,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,1],[1,3],[1,0],[0,1],[0,1],[1,1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-2],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-2],[1,0],[1,2],[0,1],[1,2],[0,1],[0,1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[-1,-3],[0,-1],[1,-1],[2,-3],[1,-2],[0,1],[1,1],[1,2],[1,2],[0,1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[1,-2],[1,-1],[0,-1],[1,-1],[1,-2],[1,-1],[0,-1],[1,-1],[1,2],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[2,-2],[0,-1],[2,-3],[1,2],[1,1],[0,1],[0,1],[1,2],[1,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-3],[0,-1],[0,-1],[1,-2],[1,0],[0,-1],[1,-2],[1,-1],[0,-2],[1,0],[1,1],[1,2],[1,1],[0,-1],[0,-1],[-1,0],[-1,-3],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,2],[0,1],[-1,1],[-1,2],[0,1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0]],[[447,715],[0,-1],[-3,-2],[0,-1],[-1,-1],[-1,0]],[[442,710],[0,-1],[-1,0]],[[441,709],[0,-1],[1,0],[0,-1],[1,-3],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-2],[-1,0],[-1,3],[-2,5],[-1,1],[0,1],[0,1],[-1,2],[-1,-1],[-1,-1],[-1,0]],[[438,706],[0,-1],[-1,-1],[-1,-1],[-3,-3],[-1,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[2,-2],[1,0],[0,-1],[1,-1],[1,-1],[0,1],[2,1],[1,1],[1,1],[1,0],[0,1],[1,1],[1,1],[1,0],[1,1],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[1,-1],[1,-2],[1,0],[1,-1],[1,-2],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,2],[1,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-2],[-2,-1],[0,-1],[1,-2],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[2,-2],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[3,-2],[0,-1],[1,0],[1,-1],[2,-2],[1,-1],[2,-2],[2,-4],[0,-1],[1,-1],[-1,1],[-2,2],[-4,4],[-5,4],[-1,2],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-2,2],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,3],[1,1],[0,1],[1,1],[0,1],[1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,1],[0,1],[1,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[-1,0],[1,-1],[-1,-1],[-1,-2],[0,-1],[-1,-1],[-1,-1],[-1,-2],[0,-1],[1,-2],[1,-1],[1,-1],[1,-2],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,-1],[1,-1],[1,-1],[0,-1]],[[491,618],[2,-1],[1,-2],[1,-1],[1,-2],[1,-1],[1,-2],[1,0],[0,1],[1,0],[-1,-4],[-1,-2],[0,-1],[-1,-2],[-1,0]],[[496,601],[0,-1],[0,-1],[3,-4],[0,-1],[1,-1],[1,-1],[1,-2],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-2],[1,0],[1,-2],[1,-1],[0,-1],[1,-1],[1,-1],[1,-2],[0,-1],[1,-1],[1,0],[0,2],[1,1],[0,1],[0,1],[1,2],[0,1],[1,-1],[1,-3],[-2,2],[0,-2],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-2],[1,-1],[1,-2],[1,-1],[0,-1],[1,0],[1,-2],[0,-1],[1,0],[0,-2],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[1,0],[1,-2],[1,-2],[2,-2],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,1],[1,-1],[-1,0],[0,-1],[-1,-2],[-1,0],[-1,-1],[0,-1],[-1,0],[1,-1],[0,-1],[1,0],[1,-2],[0,-1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0],[1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[2,-3],[0,-1],[2,-2],[0,-1],[1,0],[0,1],[1,1],[3,3],[0,1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[2,-3],[1,-1],[0,-1],[1,0],[0,-1],[1,-2],[1,0],[0,-1],[1,-1],[0,-1],[0,1],[1,0],[2,1],[2,0],[0,1],[1,0],[1,-1],[-2,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[2,-2],[0,-1],[1,-1],[0,-1],[2,-2],[0,-1],[1,-1],[1,-2],[1,0],[1,1],[1,0],[3,1],[0,-1],[1,-1],[-1,0],[-3,-1],[-1,-1],[1,-2],[1,-1],[0,-1],[2,-2],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[2,-2],[0,-1],[1,-2],[0,1],[1,1],[1,0],[0,1],[1,1],[0,1],[1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[0,-2],[3,-3],[1,1],[1,1],[1,2],[1,-1],[-3,-3],[0,-1],[0,-1],[1,-2],[4,-5],[0,-1],[0,1],[1,0],[2,2],[0,1],[0,1],[1,-1],[-1,-2],[-1,-1],[-1,-1],[0,-1],[2,-3],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,1],[0,-2],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[1,-2],[2,-2],[1,-2],[1,-1],[2,-3],[0,-1],[1,0],[0,-1],[0,-1],[3,-3],[0,-1],[1,-1],[0,1],[1,1],[2,2],[1,-1],[-2,-2],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[2,-2],[0,-1],[1,-1],[0,-1],[2,-2],[1,2],[1,0],[0,1],[1,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-2,-2],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[2,0],[1,0],[0,1],[0,2],[0,1],[0,2],[0,1],[1,2],[0,2],[0,1],[0,1],[0,1],[1,1],[0,2],[0,1],[1,1],[0,1],[0,2],[0,1],[1,0],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-2],[0,-1],[-1,-3],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0]],[[628,413],[0,1]],[[628,414],[0,1],[0,1],[0,1],[0,2],[0,1],[1,1]],[[629,421],[0,1]],[[629,422],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[630,428],[0,1]],[[630,429],[0,1],[0,1],[0,1],[1,1]],[[631,433],[0,1],[0,1],[0,1],[1,0]],[[632,436],[0,1],[0,1],[3,0],[1,0],[1,-1],[1,-1],[2,-2],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[-1,-3],[0,-1],[2,-1],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[2,-1],[1,0],[0,-1],[0,1],[1,2],[0,1],[1,1],[0,1],[1,1],[0,1],[1,2],[0,1],[2,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-2,-3],[-1,-2],[0,-2],[0,-1],[1,-1],[2,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,2],[1,1],[0,1],[0,1],[1,0],[0,2],[1,1],[0,2],[1,2],[0,1],[1,0],[0,1],[0,1],[1,2],[0,1],[1,1],[1,2],[0,1],[0,1],[1,1],[0,1],[1,0],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-3],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,3],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,3],[0,2],[1,0],[0,1],[0,1],[1,2],[1,0],[0,-1],[-1,-2],[-1,-2],[0,-2],[-1,-2],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,3],[1,0],[0,1],[0,1],[0,2],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,3],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-4],[1,-4],[0,-2],[0,-1],[0,-1],[1,-2],[0,-1],[0,-4],[1,-1],[0,-1],[0,1],[1,2],[1,2],[1,3],[1,3],[0,2],[1,3],[0,1],[1,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[1,-3],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-2],[-2,-7],[-1,-3],[-1,-2],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,-1],[1,0],[1,0],[1,0],[1,-1],[2,0],[2,0],[1,-1],[1,0],[0,1],[0,1],[0,2],[1,2],[0,3],[1,1]],[[695,407],[0,1],[0,2],[0,2],[1,3],[0,1],[0,4],[1,3],[0,2],[0,1],[0,1],[-1,3],[0,1],[0,1],[0,2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-2],[0,-2],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1]],[[702,414],[0,1],[1,0],[1,0],[0,-1]],[[704,413],[0,-1],[-1,0]],[[703,412],[0,-1]],[[703,411],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[702,404],[0,-1],[1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1]],[[701,396],[0,-1]],[[701,395],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,0]],[[708,394],[0,1],[0,3],[1,3],[0,1]],[[709,402],[0,1],[0,2],[1,5]],[[710,410],[0,1],[0,1],[0,1],[0,2],[1,1]],[[711,416],[0,3],[0,1],[0,1],[0,2],[1,2]],[[712,425],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[2,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[0,1],[1,0],[0,-3],[0,-1],[3,0],[1,0],[1,-1],[1,1],[0,2],[0,1],[1,-1],[-1,-1],[0,-1],[0,-1],[1,0],[3,-1],[2,0],[3,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-2],[2,-3],[2,-3],[1,-1],[0,-1],[1,0],[2,-4],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,1],[1,3],[0,1],[1,1],[0,2],[1,1],[0,2],[1,0],[0,2],[1,1],[0,1],[1,3],[0,1],[1,0],[0,1],[1,1],[1,1],[2,1],[1,0],[1,0],[1,-1],[1,0],[2,-2],[1,-1],[1,-1],[0,-1],[1,-1],[-1,1],[-1,0],[-2,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[1,-1],[2,-1],[2,-1],[2,-1],[2,-2],[2,-1],[0,1],[1,3],[2,4],[1,4],[2,3]],[[781,409],[0,2],[1,1]],[[782,412],[0,1],[0,1],[1,1],[0,1],[0,1],[2,0]],[[785,417],[1,0],[2,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,0],[2,0],[1,0],[0,1],[1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[1,0],[1,1],[1,1],[0,1],[1,0],[1,-1],[2,-2],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[2,-2],[0,-1],[1,0],[1,-1],[1,-1],[3,-3],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,-1],[2,-2],[1,-1],[1,0],[1,0],[1,2],[0,1],[1,1],[0,1],[1,2],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[3,-2],[2,-1],[0,-1],[2,-1],[1,0],[0,-1],[1,-1],[1,0],[2,-2],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,2],[1,2],[1,2],[1,2],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[1,1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1]],[[878,373],[1,0],[1,-1],[1,0],[2,-1],[2,-1],[2,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[2,0],[1,-1],[2,-1],[2,0],[1,-1],[1,0],[0,-1],[1,0],[2,0],[1,-1],[2,-1],[1,0],[1,-1],[1,0],[1,0],[0,1],[1,2],[0,1],[-1,0],[0,1],[-1,0],[-2,2],[-3,3],[-4,4],[-3,2],[-1,1],[1,2],[1,0],[-1,-1],[1,0],[0,-1],[1,0],[2,-2],[1,-1],[1,1],[2,5],[1,1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,-1],[0,-1]],[[911,381],[0,-1],[0,-1]],[[911,379],[-1,-3],[-1,-1],[-1,-3],[0,-1],[-1,0]],[[907,371],[0,-1],[1,0],[1,-1],[2,-2],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1]],[[912,360],[1,0],[0,-1],[1,0]],[[914,359],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-2],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,-2],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,1],[1,0],[2,1],[0,1],[1,0],[1,1],[2,1],[1,1]],[[942,347],[0,1]],[[943,346],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[0,1]],[[938,330],[-1,0],[1,1]],[[938,331],[0,1],[-1,0],[-1,2],[-1,2],[-1,1],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-2],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[1,0],[1,-2],[3,-3],[3,-3],[4,-3],[3,-3],[4,-4],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[2,-1],[1,-2],[1,0],[1,-2],[1,0],[1,-1],[1,-1],[0,-2]],[[941,288],[-1,-1],[-2,1],[0,1],[-1,1],[-2,1],[0,1],[-1,1],[-1,0],[-1,2],[-1,0],[0,1],[-1,0],[-4,4],[-2,2],[-2,2],[-3,3],[-3,2],[0,1],[-1,0],[0,1],[-3,2],[-1,2],[-3,2],[-1,1],[-1,1],[-2,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-2,-3],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1]],[[889,297],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1]],[[889,289],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-2],[-1,-2],[-1,-2],[-1,-1],[-1,-2],[-1,-4],[-3,-5],[-2,-3],[-2,-5],[-3,-4],[-2,-5],[-1,-1]],[[869,250],[0,-1],[0,-1],[-2,-2]],[[867,246],[0,-1],[-1,-2],[0,-1],[-1,-1],[-2,-3]],[[863,238],[-1,-2],[-1,-3],[-2,-3]],[[859,230],[-1,-2],[-1,-2],[-1,-3],[-2,-3],[-1,-2],[-1,-2],[-1,-1]],[[851,215],[-1,-2]],[[850,213],[-1,-2]],[[849,211],[0,-1],[0,-1],[-1,0]],[[848,209],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1]],[[845,202],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[0,1]],[[843,210],[-1,0],[0,-1],[0,-2],[0,-2],[0,-2],[-1,-1]],[[840,203],[0,1],[0,1],[1,1],[0,3],[0,1],[0,1],[1,3],[0,1],[0,1],[0,2],[0,2],[1,2],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,1],[0,-1],[-1,1],[-2,0],[-1,0],[0,1],[-3,0],[-1,0],[-2,1],[-1,0],[0,1],[-1,-1],[-1,1],[-1,0],[-3,1],[-1,0],[-1,0],[-1,1],[-2,0],[-2,0],[-1,0],[0,1],[-1,0],[0,-1],[0,-2],[-1,-4],[0,-3],[0,-1],[-1,0]],[[809,222],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-3,1],[-2,1],[-1,0],[-1,1],[-3,2],[-1,0],[-1,0],[0,-2],[-1,-2],[0,-1],[-1,-1],[0,-2],[-1,0],[0,-1],[0,-1],[2,-1],[2,-1],[1,0],[2,-1],[1,0],[1,-1],[3,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1]],[[806,209],[1,0],[0,-1],[-1,0]],[[806,208],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-2],[0,-2],[-1,-1],[0,-1],[0,-1],[1,0],[1,0],[1,0],[2,0],[2,-1],[1,0],[4,0],[1,0],[2,-1],[1,0],[1,0],[2,0],[2,0],[2,-1],[1,0]],[[836,189],[1,0],[1,0],[0,-1],[1,0]],[[839,188],[1,0]],[[840,188],[1,0],[1,0],[1,0],[1,0]],[[844,188],[1,0]],[[845,187],[1,0],[1,0],[2,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,-1],[2,0],[1,0],[2,0],[4,-1],[4,0],[4,-1],[5,-1],[3,0],[4,-1],[3,0],[0,-2],[-3,1],[-4,0],[-4,1],[-3,0],[-4,1],[-2,0],[-3,1],[-3,0],[-3,1],[-2,0],[-2,0],[-3,0],[-2,1],[-2,0],[-2,0],[-2,1],[-2,0],[-2,0],[-2,0],[-2,1],[-1,0],[-1,0]],[[845,186],[-1,0]],[[843,186],[-1,0],[-1,1],[-1,0]],[[840,187],[-1,0]],[[839,187],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,0],[-2,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-2,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1]],[[789,196],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[2,0],[2,-1],[1,0],[2,0],[3,0],[2,-1],[1,0],[2,0],[2,0],[2,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[0,-1],[1,0]],[[839,185],[1,0]],[[840,185],[1,0],[1,0],[1,0]],[[843,185],[1,0]],[[844,185],[1,0],[1,-1],[1,0],[1,0],[2,0],[3,-1],[2,0],[2,0],[1,0],[2,-1],[3,0],[2,0],[2,-1],[3,0],[2,0],[4,-1],[3,0],[4,-1],[4,0],[4,-1],[4,-1],[4,0],[0,-2],[-4,1],[-4,0],[-4,1],[-4,0],[-5,1],[-5,1],[-3,0],[-2,0],[-1,1],[-2,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0]],[[844,183],[-1,0]],[[843,183],[-1,0],[-1,0],[-1,0]],[[840,184],[-1,0]],[[839,184],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0]],[[837,178],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0]],[[814,171],[0,-1],[-1,0],[0,-1]],[[812,169],[-1,-1]],[[811,168],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1]],[[802,160],[-2,0]],[[800,160],[0,-1]],[[800,158],[-5,-3],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-3,-2],[-3,-1],[-1,-1],[0,-1],[-5,-3],[-2,-1],[-2,-1],[-3,-2],[-1,0],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-2,-1],[-2,-2],[-3,-1],[-2,-2],[-3,-1],[-2,-2],[-3,-2],[-3,-2],[-1,-1],[-3,-1],[-1,-1],[-1,0],[-4,-2],[-2,-2],[-1,0],[-2,-2],[-1,0],[-1,-1],[-2,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,-3],[1,-4],[0,-2],[1,-5],[1,-3],[2,-5],[0,-3],[2,-6],[1,-3],[0,-1],[1,-3],[1,-4],[1,-4],[0,-2],[1,-2],[1,-3],[1,-4],[1,-3],[0,-3],[1,-3],[1,-4],[1,-3],[1,-3],[1,-4],[1,-4],[1,-3],[0,-1],[1,-3],[0,-2],[-1,-1],[-1,0],[-1,3],[0,1],[-1,5],[-1,4],[-1,4],[-1,3],[-1,5],[-1,5],[-2,4],[-1,5],[-1,4],[-1,5],[-1,4],[-2,6],[-1,4],[-1,5],[-2,5],[-1,5],[-1,4],[-1,4],[0,2],[-1,3],[-1,2],[0,1],[0,1],[-1,0],[-1,0]],[[698,95],[0,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-1,0]],[[691,91],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-1,-1],[-3,-1],[0,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-2,-1],[-1,0],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-2,-1],[-1,-1],[-2,-1],[-1,0],[0,-1],[-1,0],[-2,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-2,-1],[-2,-2],[-2,-1],[-1,0],[-5,-4],[-2,-1],[-1,0],[-4,-3],[-1,0],[-2,-2],[-2,-1],[-2,-1],[-1,0],[-2,-1],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-2,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1]],[[528,29],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[0,1],[-1,0],[-1,0],[-1,-1]],[[518,30],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-3],[0,-2],[0,-1],[-1,-3],[0,-1],[0,-1],[0,-1],[0,-4],[0,-1],[-2,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,3],[0,1],[0,2],[0,1],[1,3],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[516,31],[-1,0],[0,1]],[[515,32],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,2],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1]],[[503,51],[-1,0],[-2,2],[-2,2],[-1,2]],[[497,57],[-2,2],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,2],[-1,2],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,2],[-1,0],[-1,2],[-1,1],[-1,1],[-1,1],[-1,3],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,2],[0,1],[-1,2],[0,1],[-1,1],[0,1],[0,1],[-1,3],[-1,1],[0,1],[0,2],[-1,3],[0,2],[-1,2],[0,2],[0,3],[-1,2],[0,2],[0,2],[0,2],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,2],[-1,3],[0,2],[0,3],[0,4],[-1,4],[0,3],[0,5],[0,4],[-1,1],[0,4],[0,3],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,-1],[-2,-1],[-1,0],[0,-1],[-1,0],[-2,-1],[-1,-1],[-1,0],[0,-1],[-1,3],[1,0],[0,1],[1,0],[1,0],[1,1],[2,1],[1,1],[4,2],[2,1],[1,0],[0,1],[0,1],[0,4],[0,3],[0,2],[0,3],[0,3],[0,3],[0,2],[0,3],[-1,4],[0,3],[0,1],[0,4],[0,4],[0,4],[0,1],[0,3],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-5,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[1,0],[1,0],[1,0],[2,1],[1,0],[1,0],[1,0],[4,1],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[1,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,2],[0,1],[-1,2],[0,1],[0,2],[0,1],[-1,1],[0,2],[0,2],[-1,2],[0,2],[0,1],[-1,1],[0,2],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,2],[-1,1],[0,1],[-1,1],[0,2],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,2],[-1,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-2,0],[-2,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[-1,-2],[-1,-2],[-1,-2],[0,-1],[-2,1],[1,0],[0,1],[1,2],[1,2],[1,3],[1,2],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,2],[-2,2],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,2],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,2],[-1,2],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,2],[-1,1],[0,1],[-1,1],[-1,2],[-1,1],[0,1],[-1,1],[-1,1],[-1,2],[-1,2],[-3,4],[-1,2],[-1,1],[-1,0],[-1,2],[-1,1],[-1,1],[-1,2],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,2],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-2,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0]],[[281,403],[0,-1],[0,-1],[-1,-1],[-1,-3],[-1,-2],[0,-1],[-1,0],[0,-1],[-1,-2],[-1,-1],[0,-1],[-1,-1]],[[274,388],[0,-2],[1,0],[1,0],[0,-1],[0,-1],[-1,-2]],[[275,382],[0,-1],[0,-3],[0,-1]],[[275,377],[1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[0,1]],[[273,376],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,2],[1,1],[1,0],[2,2],[1,1],[2,1],[0,1],[1,0],[0,1],[1,0],[0,-1]],[[294,382],[0,-1],[-1,0],[0,-1],[-1,0],[-2,-2],[-2,-2],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[2,1],[1,1],[1,1],[2,1],[0,1],[2,1],[1,1],[1,1],[1,-1],[-1,0],[0,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-4],[-1,-4],[-2,-3],[-1,-3],[-2,-3],[-1,-2],[-2,-3],[-2,-3],[-1,0],[0,-1],[-1,-1],[-1,-1],[-2,-2],[-3,-3],[-1,-2],[-2,-2],[-2,-2],[-1,-2],[-1,-1],[-1,-1],[-2,-3],[-2,-2],[-2,-3],[-1,-2],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-2],[-1,0],[-2,-3],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-2,-2],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-2,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1]],[[175,259],[-1,-1]],[[168,256],[0,1],[0,1],[2,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[4,-2],[1,-1],[3,-1],[2,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[2,1],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,0],[1,1],[0,1],[1,1],[1,1],[0,1],[0,1],[1,1],[1,1],[1,2],[1,2],[1,0],[0,2],[1,1],[1,1],[1,1],[1,1],[1,2],[2,3],[1,0],[0,2],[1,0],[1,1],[0,1],[1,1],[1,1],[1,1],[2,2],[1,1],[1,1],[1,1],[1,1],[0,1],[1,1],[1,1],[2,2],[0,1],[1,1],[1,1],[0,1],[1,2],[1,1],[0,1],[1,1],[0,2],[1,1],[0,2],[1,2],[0,1],[1,2],[0,2],[0,1],[0,1],[0,1],[0,2],[1,2],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,3],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,2],[0,1],[0,1],[0,2],[0,2],[0,2],[0,2],[0,2],[0,2],[0,1],[-1,2],[0,3],[0,2],[0,3],[0,2],[0,2],[0,1],[0,1],[-1,2],[0,2],[0,1],[-1,1],[0,2],[-1,2],[0,2],[0,1],[-1,1],[0,2],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-2,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0]],[[235,431],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0]],[[233,425],[0,-1]],[[233,424],[0,-1],[0,-1],[-1,0]],[[232,422],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-2],[0,-1],[-1,-1]],[[227,415],[0,-2]],[[227,413],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[-1,-1]],[[235,398],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,1],[1,1],[1,0],[1,0],[1,1],[1,0],[0,-1],[-1,0],[1,0],[0,-1],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-2],[0,-1],[0,-2],[-1,-2],[0,-2],[0,-2],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,-2],[0,-1],[-1,-3],[-1,-1],[0,-1],[0,-1],[-1,-2],[0,-2],[-1,-2],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-2],[0,-2],[-1,0],[0,-2],[-1,-2],[0,-1],[-1,-2],[0,-2],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[-1,-3],[-1,-2],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[0,-1],[-2,0],[-2,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,1],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[2,2],[2,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[3,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[2,4],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,2],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,2],[0,2],[1,3],[1,3],[1,1],[1,3],[1,2],[0,1],[0,1],[1,3],[1,1],[0,1],[0,1],[0,1],[1,0],[1,4],[1,3],[0,2],[1,2],[0,1],[0,1],[1,0],[0,2],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,3],[0,3],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,2],[0,2],[0,2],[0,2],[0,1],[0,2],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,3],[0,2],[0,2],[0,1],[0,3],[1,2],[0,1],[0,1],[0,2],[0,2],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,2],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-3,-1],[-1,0],[-2,0],[-1,-1],[-2,0],[-2,0],[-1,-1],[-2,0],[-1,-1],[-2,0],[-1,0],[-2,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,-1],[-1,0],[-2,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-2,1],[-1,0],[-1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[2,1],[1,1],[1,0],[2,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-2,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-2],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,2],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,3],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,2],[0,2],[0,-1],[1,0],[1,0],[1,0],[1,1],[0,2],[0,2],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,3],[0,1],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[2,0],[3,-1],[1,0],[1,0],[1,0],[1,0],[1,0]],[[79,461],[0,1]],[[79,462],[-1,0],[0,3],[0,1],[0,2],[0,1],[0,1]],[[78,470],[-1,0],[-2,1],[-3,1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,3]],[[71,480],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,2],[0,6],[0,1],[1,3],[-1,0],[0,1],[-2,0],[-3,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-2,1],[-1,-2],[0,-2],[-1,0],[0,-2],[0,-1],[0,-1],[-1,0],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,0],[-2,1],[-1,0],[-1,-1],[0,-1],[0,3],[0,1],[0,1],[1,2],[0,2],[1,0],[0,1],[0,2],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,2],[0,1],[0,1],[1,1],[0,1],[0,2],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,3],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[-2,0],[-1,0],[0,1],[-1,0],[-1,1],[2,0],[2,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[2,-1],[1,0],[0,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0]],[[75,510],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[1,2],[0,1],[1,0],[2,-1],[1,0],[2,0],[1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[0,-4],[0,-1],[0,-3],[1,0],[2,-1],[3,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[-1,2],[-1,0]],[[86,536],[0,-1],[-1,0]],[[85,535],[0,-1]],[[85,534],[0,-1],[-1,0]],[[84,533],[0,-1],[-1,-1]],[[83,531],[0,-1]],[[83,530],[0,-1],[-1,-1],[0,-1],[-1,0],[0,1]],[[81,528],[-1,0],[0,1]],[[80,529],[-1,0]],[[79,529],[0,1],[-1,0]],[[78,530],[-1,0],[0,-1],[0,-3],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,2],[1,3],[0,1],[0,1]],[[77,531],[-1,1],[-2,2],[-2,1],[0,1],[1,0]],[[73,536],[0,1],[0,1],[1,1]],[[74,539],[0,1],[1,1]],[[75,541],[0,1],[1,1]],[[76,543],[0,1],[0,1],[1,0]],[[77,545],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-2,0],[-2,1],[-2,1],[-1,0],[-2,1],[-2,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-2,1],[-1,0],[0,1],[-1,1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,2],[0,1],[0,2],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,2],[-1,1],[0,2],[-1,0],[-1,0],[-2,-1],[-2,-1],[0,1],[0,1],[1,0],[1,0],[1,1],[1,1],[0,1],[0,2],[0,1],[-1,1],[0,2],[-1,0],[0,1],[0,1],[-1,2],[-1,2],[0,1],[0,1],[-1,2],[-1,1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[0,1],[-2,3],[0,1],[0,1],[0,1],[-1,1],[-1,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[1,1],[1,0],[2,1],[1,0],[0,1],[0,1],[-1,3],[-1,2],[0,1],[-1,2],[0,1],[-1,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[-1,1],[0,1]],[[8,653],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1]],[[5,657],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1]],[[5,658],[1,0],[1,0],[1,0],[1,0],[1,0]],[[11,658],[0,1],[1,1],[1,0],[1,1],[1,0],[1,0],[2,1],[2,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[1,1],[0,3],[0,1],[0,1],[0,1],[1,2],[0,2],[0,2],[0,2],[1,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment