Skip to content

Instantly share code, notes, and snippets.

@phil-pedruco
Last active February 7, 2017 08:30
Show Gist options
  • Star 3 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save phil-pedruco/9999984 to your computer and use it in GitHub Desktop.
Save phil-pedruco/9999984 to your computer and use it in GitHub Desktop.
Contours of Nepal using topojson and d3.js

This is an answer to this Stackoverflow question which asks how to render topographic contour lines. The second part of the question looks into animating parts of the visualisation which isn't covered here.

To demonstrate this a visualisation of topographic contours of Nepal (and Tibet) was created. The visualisation here is based on ETOPO1 1 minute resolution dataset from the NOAA National Geophysical Data Centre. It was downloaded as an ArcGIS ASCII grid and processed in QGIS where the resulting DEM was contoured into 500m contours.

The resulting contours were then converted to topojson using the command line version. This was necessary to preserve the properties of the topojson as I wanted to colour code the contours based on elevation. On-line topojson tools typically don't allow this as the default in topojson to to remove properties.

The contours are then rendered using the typical pattern for geo-objects. The stroke property for the paths set based on the elevation property using the interpolateLab function.

Well, there is a little bit of interaction when you mouse over a contour just to give a bit of a demo of what's possible.

<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Nepal Topographic Contours</title>
<script type="text/javascript" src="http://d3js.org/d3.v3.min.js"></script>
<script type="text/javascript" src="http://d3js.org/topojson.v1.min.js"></script>
</head>
<body>
</body>
<script type="text/javascript">
var h = 500,
w = 960;
// set-up unit projection and path
var projection = d3.geo.mercator()
.scale(1)
.translate([0, 0]);
var path = d3.geo.path()
.projection(projection);
// set-up svg canvas
var svg = d3.select("body").append("svg")
.attr("height", h)
.attr("width", w);
// set-up scale for colour coding contours
var cScale = d3.scale.linear()
.domain([0, 1]);
// read in topojson of Nepal
d3.json("z_contours_500_clipped.json", function(error, nepal) {
// first variable is used to centre and scale map to viewport
// could have used the bbox feature (see https://github.com/mbostock/topojson/issues/67)
var bTopo = topojson.feature(nepal, nepal.objects.contours_500_clipped),
topo = bTopo.features;
// calculate range for colours based on ELVE property
// Note when converting to topojon the default is to REMOVE all properties
// from the input file, you need to use the -p switch.
var hRange = d3.extent(topo, function(d, i) {
return d.properties.ELEV
});
cScale.domain(hRange);
// calculate bounds, scale and transform
// see http://stackoverflow.com/questions/14492284/center-a-map-in-d3-given-a-geojson-object
var b = path.bounds(bTopo),
s = .95 / Math.max((b[1][0] - b[0][0]) / w, (b[1][1] - b[0][1]) / h),
t = [(w - s * (b[1][0] + b[0][0])) / 2, (h - s * (b[1][1] + b[0][1])) / 2];
projection.scale(s)
.translate(t);
svg.selectAll("path")
.data(topo).enter()
.append("path")
.style("fill", "none")
.style("stroke", function(d, i) {
return interp(cScale(d.properties.ELEV));
})
.attr("d", path)
.on("mouseover", highlight) // just a little example of what's available in terms of interaction
.on("mouseout", function (d,i) {unhighlight(this,d);
});
});
// function to interpolate between to colours
// see http://stackoverflow.com/questions/12217121/continuous-color-scale-from-discrete-domain-of-strings
function interp(x) {
var ans = d3.interpolateLab("#ffffe5", "#004529")(x);
return ans
}
// A simple highlight example
function highlight(x) {
var s = d3.select(this);
s.style("stroke", "red");
}
function unhighlight(x,y) {
var old = y.properties.ELEV;
var u = d3.select(x);
u.style("stroke", function(d, i) {
return interp(cScale(old));
})
}
</script>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","transform":{"scale":[0.0008026563200853341,0.0003675234757478239],"translate":[80.16289782246932,26.757478632485284]},"objects":{"contours_500_clipped":{"type":"GeometryCollection","geometries":[{"type":"LineString","arcs":[0],"properties":{"ID":1338,"ELEV":5500}},{"type":"MultiLineString","arcs":[[1],[2]],"properties":{"ID":1364,"ELEV":5500}},{"type":"LineString","arcs":[3],"properties":{"ID":1375,"ELEV":5500}},{"type":"LineString","arcs":[4],"properties":{"ID":1402,"ELEV":6000}},{"type":"LineString","arcs":[5],"properties":{"ID":1431,"ELEV":5500}},{"type":"LineString","arcs":[6],"properties":{"ID":1438,"ELEV":4500}},{"type":"LineString","arcs":[7],"properties":{"ID":1439,"ELEV":4500}},{"type":"LineString","arcs":[8],"properties":{"ID":1441,"ELEV":5000}},{"type":"LineString","arcs":[9],"properties":{"ID":1447,"ELEV":5500}},{"type":"MultiLineString","arcs":[[10],[11]],"properties":{"ID":1462,"ELEV":4000}},{"type":"LineString","arcs":[12],"properties":{"ID":1463,"ELEV":4000}},{"type":"LineString","arcs":[13],"properties":{"ID":1465,"ELEV":4500}},{"type":"LineString","arcs":[14],"properties":{"ID":1476,"ELEV":4000}},{"type":"LineString","arcs":[15],"properties":{"ID":1481,"ELEV":5500}},{"type":"MultiLineString","arcs":[[16],[17]],"properties":{"ID":1486,"ELEV":5000}},{"type":"LineString","arcs":[18],"properties":{"ID":1487,"ELEV":5000}},{"type":"LineString","arcs":[19],"properties":{"ID":1490,"ELEV":5500}},{"type":"LineString","arcs":[20],"properties":{"ID":1492,"ELEV":5500}},{"type":"LineString","arcs":[21],"properties":{"ID":1499,"ELEV":3500}},{"type":"LineString","arcs":[22],"properties":{"ID":1500,"ELEV":4000}},{"type":"LineString","arcs":[23],"properties":{"ID":1508,"ELEV":5500}},{"type":"MultiLineString","arcs":[[24],[25]],"properties":{"ID":1514,"ELEV":4000}},{"type":"MultiLineString","arcs":[[26],[27]],"properties":{"ID":1515,"ELEV":5000}},{"type":"MultiLineString","arcs":[[28],[29]],"properties":{"ID":1516,"ELEV":5500}},{"type":"LineString","arcs":[30],"properties":{"ID":1523,"ELEV":5000}},{"type":"LineString","arcs":[31],"properties":{"ID":1524,"ELEV":5000}},{"type":"LineString","arcs":[32],"properties":{"ID":1525,"ELEV":5500}},{"type":"LineString","arcs":[33],"properties":{"ID":1532,"ELEV":6000}},{"type":"LineString","arcs":[34],"properties":{"ID":1535,"ELEV":3500}},{"type":"LineString","arcs":[35],"properties":{"ID":1537,"ELEV":4500}},{"type":"LineString","arcs":[36],"properties":{"ID":1538,"ELEV":4500}},{"type":"LineString","arcs":[37],"properties":{"ID":1539,"ELEV":5000}},{"type":"MultiLineString","arcs":[[38],[39]],"properties":{"ID":1547,"ELEV":3000}},{"type":"LineString","arcs":[40],"properties":{"ID":1550,"ELEV":5500}},{"type":"MultiLineString","arcs":[[41],[42]],"properties":{"ID":1554,"ELEV":3000}},{"type":"LineString","arcs":[43],"properties":{"ID":1555,"ELEV":4000}},{"type":"LineString","arcs":[44],"properties":{"ID":1556,"ELEV":4000}},{"type":"LineString","arcs":[45],"properties":{"ID":1557,"ELEV":5000}},{"type":"LineString","arcs":[46],"properties":{"ID":1558,"ELEV":5000}},{"type":"LineString","arcs":[47],"properties":{"ID":1567,"ELEV":3500}},{"type":"LineString","arcs":[48],"properties":{"ID":1568,"ELEV":5000}},{"type":"LineString","arcs":[49],"properties":{"ID":1569,"ELEV":5000}},{"type":"MultiLineString","arcs":[[50],[51]],"properties":{"ID":1570,"ELEV":5500}},{"type":"MultiLineString","arcs":[[52],[53],[54]],"properties":{"ID":1571,"ELEV":5500}},{"type":"LineString","arcs":[55],"properties":{"ID":1577,"ELEV":3000}},{"type":"LineString","arcs":[56],"properties":{"ID":1578,"ELEV":5000}},{"type":"MultiLineString","arcs":[[57],[58]],"properties":{"ID":1580,"ELEV":5500}},{"type":"LineString","arcs":[59],"properties":{"ID":1589,"ELEV":6000}},{"type":"MultiLineString","arcs":[[60],[61]],"properties":{"ID":1593,"ELEV":2500}},{"type":"LineString","arcs":[62],"properties":{"ID":1594,"ELEV":3000}},{"type":"LineString","arcs":[63],"properties":{"ID":1595,"ELEV":4000}},{"type":"LineString","arcs":[64],"properties":{"ID":1598,"ELEV":5500}},{"type":"MultiLineString","arcs":[[65],[66]],"properties":{"ID":1599,"ELEV":5500}},{"type":"LineString","arcs":[67],"properties":{"ID":1610,"ELEV":3500}},{"type":"LineString","arcs":[68],"properties":{"ID":1612,"ELEV":5500}},{"type":"MultiLineString","arcs":[[69],[70]],"properties":{"ID":1618,"ELEV":2000}},{"type":"LineString","arcs":[71],"properties":{"ID":1619,"ELEV":3500}},{"type":"LineString","arcs":[72],"properties":{"ID":1620,"ELEV":4000}},{"type":"LineString","arcs":[73],"properties":{"ID":1621,"ELEV":4500}},{"type":"LineString","arcs":[74],"properties":{"ID":1622,"ELEV":5500}},{"type":"LineString","arcs":[75],"properties":{"ID":1623,"ELEV":5500}},{"type":"MultiLineString","arcs":[[76],[77],[78]],"properties":{"ID":1628,"ELEV":5500}},{"type":"LineString","arcs":[79],"properties":{"ID":1629,"ELEV":5500}},{"type":"LineString","arcs":[80],"properties":{"ID":1632,"ELEV":6000}},{"type":"LineString","arcs":[81],"properties":{"ID":1636,"ELEV":3500}},{"type":"LineString","arcs":[82],"properties":{"ID":1638,"ELEV":5000}},{"type":"LineString","arcs":[83],"properties":{"ID":1639,"ELEV":5000}},{"type":"LineString","arcs":[84],"properties":{"ID":1640,"ELEV":5000}},{"type":"LineString","arcs":[85],"properties":{"ID":1641,"ELEV":5000}},{"type":"LineString","arcs":[86],"properties":{"ID":1646,"ELEV":6000}},{"type":"MultiLineString","arcs":[[87],[88]],"properties":{"ID":1649,"ELEV":1500}},{"type":"LineString","arcs":[89],"properties":{"ID":1650,"ELEV":4500}},{"type":"LineString","arcs":[90],"properties":{"ID":1651,"ELEV":4500}},{"type":"LineString","arcs":[91],"properties":{"ID":1652,"ELEV":4500}},{"type":"LineString","arcs":[92],"properties":{"ID":1657,"ELEV":5500}},{"type":"LineString","arcs":[93],"properties":{"ID":1661,"ELEV":2500}},{"type":"LineString","arcs":[94],"properties":{"ID":1663,"ELEV":4000}},{"type":"LineString","arcs":[95],"properties":{"ID":1664,"ELEV":4500}},{"type":"LineString","arcs":[96],"properties":{"ID":1665,"ELEV":5000}},{"type":"LineString","arcs":[97],"properties":{"ID":1666,"ELEV":5000}},{"type":"LineString","arcs":[98],"properties":{"ID":1670,"ELEV":5500}},{"type":"LineString","arcs":[99],"properties":{"ID":1671,"ELEV":5500}},{"type":"LineString","arcs":[100],"properties":{"ID":1672,"ELEV":5500}},{"type":"LineString","arcs":[101],"properties":{"ID":1680,"ELEV":6000}},{"type":"MultiLineString","arcs":[[102],[103]],"properties":{"ID":1682,"ELEV":1500}},{"type":"LineString","arcs":[104],"properties":{"ID":1683,"ELEV":3500}},{"type":"LineString","arcs":[105],"properties":{"ID":1684,"ELEV":4500}},{"type":"LineString","arcs":[106],"properties":{"ID":1685,"ELEV":4500}},{"type":"LineString","arcs":[107],"properties":{"ID":1687,"ELEV":5000}},{"type":"LineString","arcs":[108],"properties":{"ID":1689,"ELEV":5000}},{"type":"LineString","arcs":[109],"properties":{"ID":1690,"ELEV":5000}},{"type":"LineString","arcs":[110],"properties":{"ID":1693,"ELEV":5500}},{"type":"LineString","arcs":[111],"properties":{"ID":1697,"ELEV":4000}},{"type":"LineString","arcs":[112],"properties":{"ID":1698,"ELEV":4000}},{"type":"LineString","arcs":[113],"properties":{"ID":1701,"ELEV":5000}},{"type":"LineString","arcs":[114],"properties":{"ID":1702,"ELEV":5000}},{"type":"LineString","arcs":[115],"properties":{"ID":1703,"ELEV":5000}},{"type":"LineString","arcs":[116],"properties":{"ID":1712,"ELEV":3500}},{"type":"LineString","arcs":[117],"properties":{"ID":1713,"ELEV":5000}},{"type":"LineString","arcs":[118],"properties":{"ID":1714,"ELEV":5000}},{"type":"LineString","arcs":[119],"properties":{"ID":1720,"ELEV":6000}},{"type":"LineString","arcs":[120],"properties":{"ID":1721,"ELEV":6000}},{"type":"LineString","arcs":[121],"properties":{"ID":1723,"ELEV":3500}},{"type":"LineString","arcs":[122],"properties":{"ID":1724,"ELEV":4500}},{"type":"LineString","arcs":[123],"properties":{"ID":1727,"ELEV":5000}},{"type":"LineString","arcs":[124],"properties":{"ID":1728,"ELEV":5000}},{"type":"LineString","arcs":[125],"properties":{"ID":1731,"ELEV":6000}},{"type":"LineString","arcs":[126],"properties":{"ID":1732,"ELEV":6000}},{"type":"LineString","arcs":[127],"properties":{"ID":1740,"ELEV":5500}},{"type":"LineString","arcs":[128],"properties":{"ID":1742,"ELEV":5500}},{"type":"LineString","arcs":[129],"properties":{"ID":1750,"ELEV":3500}},{"type":"LineString","arcs":[130],"properties":{"ID":1751,"ELEV":5000}},{"type":"LineString","arcs":[131],"properties":{"ID":1752,"ELEV":5000}},{"type":"LineString","arcs":[132],"properties":{"ID":1753,"ELEV":5500}},{"type":"LineString","arcs":[133],"properties":{"ID":1757,"ELEV":2500}},{"type":"LineString","arcs":[134],"properties":{"ID":1758,"ELEV":3500}},{"type":"LineString","arcs":[135],"properties":{"ID":1762,"ELEV":5500}},{"type":"LineString","arcs":[136],"properties":{"ID":1771,"ELEV":2000}},{"type":"LineString","arcs":[137],"properties":{"ID":1772,"ELEV":3000}},{"type":"LineString","arcs":[138],"properties":{"ID":1773,"ELEV":3000}},{"type":"LineString","arcs":[139],"properties":{"ID":1774,"ELEV":4500}},{"type":"MultiLineString","arcs":[[140],[141],[142],[143]],"properties":{"ID":1775,"ELEV":5000}},{"type":"LineString","arcs":[144],"properties":{"ID":1776,"ELEV":5000}},{"type":"LineString","arcs":[145],"properties":{"ID":1777,"ELEV":5000}},{"type":"LineString","arcs":[146],"properties":{"ID":1781,"ELEV":5500}},{"type":"LineString","arcs":[147],"properties":{"ID":1788,"ELEV":3000}},{"type":"LineString","arcs":[148],"properties":{"ID":1789,"ELEV":4000}},{"type":"LineString","arcs":[149],"properties":{"ID":1790,"ELEV":5000}},{"type":"LineString","arcs":[150],"properties":{"ID":1791,"ELEV":5000}},{"type":"LineString","arcs":[151],"properties":{"ID":1792,"ELEV":5000}},{"type":"LineString","arcs":[152],"properties":{"ID":1797,"ELEV":1500}},{"type":"LineString","arcs":[153],"properties":{"ID":1800,"ELEV":2000}},{"type":"LineString","arcs":[154],"properties":{"ID":1801,"ELEV":2000}},{"type":"LineString","arcs":[155],"properties":{"ID":1802,"ELEV":3500}},{"type":"LineString","arcs":[156],"properties":{"ID":1803,"ELEV":4000}},{"type":"LineString","arcs":[157],"properties":{"ID":1804,"ELEV":4500}},{"type":"MultiLineString","arcs":[[158],[159]],"properties":{"ID":1810,"ELEV":1000}},{"type":"LineString","arcs":[160],"properties":{"ID":1811,"ELEV":2000}},{"type":"LineString","arcs":[161],"properties":{"ID":1812,"ELEV":2500}},{"type":"LineString","arcs":[162],"properties":{"ID":1813,"ELEV":3000}},{"type":"LineString","arcs":[163],"properties":{"ID":1814,"ELEV":3500}},{"type":"LineString","arcs":[164],"properties":{"ID":1818,"ELEV":1500}},{"type":"LineString","arcs":[165],"properties":{"ID":1819,"ELEV":2000}},{"type":"LineString","arcs":[166],"properties":{"ID":1820,"ELEV":3500}},{"type":"LineString","arcs":[167],"properties":{"ID":1821,"ELEV":3500}},{"type":"LineString","arcs":[168],"properties":{"ID":1822,"ELEV":4000}},{"type":"LineString","arcs":[169],"properties":{"ID":1823,"ELEV":5500}},{"type":"LineString","arcs":[170],"properties":{"ID":1829,"ELEV":2000}},{"type":"LineString","arcs":[171],"properties":{"ID":1830,"ELEV":2500}},{"type":"LineString","arcs":[172],"properties":{"ID":1832,"ELEV":6000}},{"type":"LineString","arcs":[173],"properties":{"ID":1837,"ELEV":2000}},{"type":"LineString","arcs":[174],"properties":{"ID":1838,"ELEV":2000}},{"type":"LineString","arcs":[175],"properties":{"ID":1839,"ELEV":3500}},{"type":"LineString","arcs":[176],"properties":{"ID":1840,"ELEV":4000}},{"type":"LineString","arcs":[177],"properties":{"ID":1841,"ELEV":4500}},{"type":"LineString","arcs":[178],"properties":{"ID":1842,"ELEV":4500}},{"type":"LineString","arcs":[179],"properties":{"ID":1843,"ELEV":5000}},{"type":"LineString","arcs":[180],"properties":{"ID":1844,"ELEV":5000}},{"type":"LineString","arcs":[181],"properties":{"ID":1851,"ELEV":2000}},{"type":"LineString","arcs":[182],"properties":{"ID":1854,"ELEV":5000}},{"type":"LineString","arcs":[183],"properties":{"ID":1861,"ELEV":1000}},{"type":"LineString","arcs":[184],"properties":{"ID":1862,"ELEV":2000}},{"type":"LineString","arcs":[185],"properties":{"ID":1863,"ELEV":3000}},{"type":"LineString","arcs":[186],"properties":{"ID":1864,"ELEV":4000}},{"type":"LineString","arcs":[187],"properties":{"ID":1865,"ELEV":5000}},{"type":"LineString","arcs":[188],"properties":{"ID":1866,"ELEV":5000}},{"type":"LineString","arcs":[189],"properties":{"ID":1867,"ELEV":5000}},{"type":"LineString","arcs":[190],"properties":{"ID":1875,"ELEV":1500}},{"type":"LineString","arcs":[191],"properties":{"ID":1876,"ELEV":4000}},{"type":"LineString","arcs":[192],"properties":{"ID":1877,"ELEV":4500}},{"type":"LineString","arcs":[193],"properties":{"ID":1887,"ELEV":1500}},{"type":"LineString","arcs":[194],"properties":{"ID":1890,"ELEV":3000}},{"type":"LineString","arcs":[195],"properties":{"ID":1891,"ELEV":3000}},{"type":"LineString","arcs":[196],"properties":{"ID":1896,"ELEV":1500}},{"type":"LineString","arcs":[197],"properties":{"ID":1897,"ELEV":2500}},{"type":"LineString","arcs":[198],"properties":{"ID":1898,"ELEV":2500}},{"type":"LineString","arcs":[199],"properties":{"ID":1899,"ELEV":3000}},{"type":"LineString","arcs":[200],"properties":{"ID":1900,"ELEV":3500}},{"type":"LineString","arcs":[201],"properties":{"ID":1901,"ELEV":4000}},{"type":"MultiLineString","arcs":[[202],[203],[204],[205]],"properties":{"ID":1906,"ELEV":5500}},{"type":"MultiLineString","arcs":[[206],[207]],"properties":{"ID":1907,"ELEV":5500}},{"type":"LineString","arcs":[208],"properties":{"ID":1912,"ELEV":1000}},{"type":"LineString","arcs":[209],"properties":{"ID":1914,"ELEV":3000}},{"type":"LineString","arcs":[210],"properties":{"ID":1915,"ELEV":3500}},{"type":"LineString","arcs":[211],"properties":{"ID":1916,"ELEV":4000}},{"type":"LineString","arcs":[212],"properties":{"ID":1917,"ELEV":4500}},{"type":"LineString","arcs":[213],"properties":{"ID":1918,"ELEV":5000}},{"type":"LineString","arcs":[214],"properties":{"ID":1922,"ELEV":1500}},{"type":"LineString","arcs":[215],"properties":{"ID":1924,"ELEV":2000}},{"type":"LineString","arcs":[216],"properties":{"ID":1925,"ELEV":5000}},{"type":"LineString","arcs":[217],"properties":{"ID":1926,"ELEV":5000}},{"type":"LineString","arcs":[218],"properties":{"ID":1929,"ELEV":5500}},{"type":"MultiLineString","arcs":[[219],[220]],"properties":{"ID":1930,"ELEV":5500}},{"type":"LineString","arcs":[221],"properties":{"ID":1936,"ELEV":1500}},{"type":"LineString","arcs":[222],"properties":{"ID":1937,"ELEV":1500}},{"type":"LineString","arcs":[223],"properties":{"ID":1938,"ELEV":2000}},{"type":"LineString","arcs":[224],"properties":{"ID":1939,"ELEV":2500}},{"type":"LineString","arcs":[225],"properties":{"ID":1940,"ELEV":2500}},{"type":"LineString","arcs":[226],"properties":{"ID":1941,"ELEV":2500}},{"type":"LineString","arcs":[227],"properties":{"ID":1942,"ELEV":3500}},{"type":"LineString","arcs":[228],"properties":{"ID":1943,"ELEV":4500}},{"type":"LineString","arcs":[229],"properties":{"ID":1949,"ELEV":2500}},{"type":"LineString","arcs":[230],"properties":{"ID":1950,"ELEV":4500}},{"type":"LineString","arcs":[231],"properties":{"ID":1953,"ELEV":1500}},{"type":"LineString","arcs":[232],"properties":{"ID":1954,"ELEV":2000}},{"type":"LineString","arcs":[233],"properties":{"ID":1955,"ELEV":2000}},{"type":"LineString","arcs":[234],"properties":{"ID":1956,"ELEV":2500}},{"type":"LineString","arcs":[235],"properties":{"ID":1957,"ELEV":5000}},{"type":"LineString","arcs":[236],"properties":{"ID":1962,"ELEV":2500}},{"type":"LineString","arcs":[237],"properties":{"ID":1963,"ELEV":5000}},{"type":"LineString","arcs":[238],"properties":{"ID":1968,"ELEV":1500}},{"type":"LineString","arcs":[239],"properties":{"ID":1969,"ELEV":1500}},{"type":"LineString","arcs":[240],"properties":{"ID":1970,"ELEV":3500}},{"type":"LineString","arcs":[241],"properties":{"ID":1971,"ELEV":5000}},{"type":"LineString","arcs":[242],"properties":{"ID":1978,"ELEV":2500}},{"type":"LineString","arcs":[243],"properties":{"ID":1979,"ELEV":5000}},{"type":"LineString","arcs":[244],"properties":{"ID":1984,"ELEV":2000}},{"type":"LineString","arcs":[245],"properties":{"ID":1985,"ELEV":2500}},{"type":"LineString","arcs":[246],"properties":{"ID":1987,"ELEV":5000}},{"type":"LineString","arcs":[247],"properties":{"ID":1990,"ELEV":5500}},{"type":"LineString","arcs":[248],"properties":{"ID":1994,"ELEV":2000}},{"type":"LineString","arcs":[249],"properties":{"ID":1996,"ELEV":3000}},{"type":"LineString","arcs":[250],"properties":{"ID":1997,"ELEV":4000}},{"type":"LineString","arcs":[251],"properties":{"ID":2001,"ELEV":1000}},{"type":"LineString","arcs":[252],"properties":{"ID":2002,"ELEV":1500}},{"type":"LineString","arcs":[253],"properties":{"ID":2003,"ELEV":3500}},{"type":"LineString","arcs":[254],"properties":{"ID":2004,"ELEV":3500}},{"type":"LineString","arcs":[255],"properties":{"ID":2005,"ELEV":4000}},{"type":"LineString","arcs":[256],"properties":{"ID":2006,"ELEV":5000}},{"type":"LineString","arcs":[257],"properties":{"ID":2013,"ELEV":1500}},{"type":"LineString","arcs":[258],"properties":{"ID":2014,"ELEV":3000}},{"type":"LineString","arcs":[259],"properties":{"ID":2015,"ELEV":3500}},{"type":"LineString","arcs":[260],"properties":{"ID":2017,"ELEV":5000}},{"type":"LineString","arcs":[261],"properties":{"ID":2020,"ELEV":5500}},{"type":"LineString","arcs":[262],"properties":{"ID":2022,"ELEV":1000}},{"type":"LineString","arcs":[263],"properties":{"ID":2023,"ELEV":1500}},{"type":"LineString","arcs":[264],"properties":{"ID":2026,"ELEV":2000}},{"type":"LineString","arcs":[265],"properties":{"ID":2027,"ELEV":4000}},{"type":"LineString","arcs":[266],"properties":{"ID":2029,"ELEV":5000}},{"type":"LineString","arcs":[267],"properties":{"ID":2031,"ELEV":5500}},{"type":"LineString","arcs":[268],"properties":{"ID":2032,"ELEV":6000}},{"type":"LineString","arcs":[269],"properties":{"ID":2033,"ELEV":2000}},{"type":"LineString","arcs":[270],"properties":{"ID":2034,"ELEV":3000}},{"type":"LineString","arcs":[271],"properties":{"ID":2035,"ELEV":3000}},{"type":"LineString","arcs":[272],"properties":{"ID":2036,"ELEV":3500}},{"type":"LineString","arcs":[273],"properties":{"ID":2038,"ELEV":5000}},{"type":"LineString","arcs":[274],"properties":{"ID":2043,"ELEV":6000}},{"type":"LineString","arcs":[275],"properties":{"ID":2044,"ELEV":6500}},{"type":"LineString","arcs":[276],"properties":{"ID":2046,"ELEV":2000}},{"type":"LineString","arcs":[277],"properties":{"ID":2047,"ELEV":2000}},{"type":"LineString","arcs":[278],"properties":{"ID":2048,"ELEV":2500}},{"type":"LineString","arcs":[279],"properties":{"ID":2049,"ELEV":2500}},{"type":"LineString","arcs":[280],"properties":{"ID":2050,"ELEV":4000}},{"type":"LineString","arcs":[281],"properties":{"ID":2056,"ELEV":5500}},{"type":"LineString","arcs":[282],"properties":{"ID":2058,"ELEV":1500}},{"type":"LineString","arcs":[283],"properties":{"ID":2060,"ELEV":2500}},{"type":"LineString","arcs":[284],"properties":{"ID":2061,"ELEV":3000}},{"type":"LineString","arcs":[285],"properties":{"ID":2069,"ELEV":4000}},{"type":"LineString","arcs":[286],"properties":{"ID":2070,"ELEV":4000}},{"type":"LineString","arcs":[287],"properties":{"ID":2072,"ELEV":4500}},{"type":"LineString","arcs":[288],"properties":{"ID":2079,"ELEV":2500}},{"type":"LineString","arcs":[289],"properties":{"ID":2080,"ELEV":3500}},{"type":"LineString","arcs":[290],"properties":{"ID":2081,"ELEV":3500}},{"type":"LineString","arcs":[291],"properties":{"ID":2082,"ELEV":4500}},{"type":"LineString","arcs":[292],"properties":{"ID":2083,"ELEV":5000}},{"type":"LineString","arcs":[293],"properties":{"ID":2086,"ELEV":5500}},{"type":"LineString","arcs":[294],"properties":{"ID":2087,"ELEV":1000}},{"type":"LineString","arcs":[295],"properties":{"ID":2088,"ELEV":2500}},{"type":"LineString","arcs":[296],"properties":{"ID":2089,"ELEV":3500}},{"type":"LineString","arcs":[297],"properties":{"ID":2090,"ELEV":3500}},{"type":"LineString","arcs":[298],"properties":{"ID":2091,"ELEV":4500}},{"type":"LineString","arcs":[299],"properties":{"ID":2096,"ELEV":1000}},{"type":"LineString","arcs":[300],"properties":{"ID":2098,"ELEV":5000}},{"type":"LineString","arcs":[301],"properties":{"ID":2106,"ELEV":1000}},{"type":"LineString","arcs":[302],"properties":{"ID":2107,"ELEV":2500}},{"type":"LineString","arcs":[303],"properties":{"ID":2108,"ELEV":3000}},{"type":"LineString","arcs":[304],"properties":{"ID":2114,"ELEV":5500}},{"type":"LineString","arcs":[305,306],"properties":{"ID":2117,"ELEV":1500}},{"type":"LineString","arcs":[307],"properties":{"ID":2118,"ELEV":2500}},{"type":"LineString","arcs":[308],"properties":{"ID":2119,"ELEV":2500}},{"type":"LineString","arcs":[309],"properties":{"ID":2120,"ELEV":3000}},{"type":"LineString","arcs":[310],"properties":{"ID":2121,"ELEV":3000}},{"type":"LineString","arcs":[311],"properties":{"ID":2122,"ELEV":3500}},{"type":"LineString","arcs":[312],"properties":{"ID":2123,"ELEV":4000}},{"type":"LineString","arcs":[313],"properties":{"ID":2127,"ELEV":1000}},{"type":"LineString","arcs":[314,315],"properties":{"ID":2129,"ELEV":1500}},{"type":"LineString","arcs":[316],"properties":{"ID":2130,"ELEV":3000}},{"type":"LineString","arcs":[317],"properties":{"ID":2131,"ELEV":4000}},{"type":"LineString","arcs":[318],"properties":{"ID":2133,"ELEV":5000}},{"type":"LineString","arcs":[319],"properties":{"ID":2136,"ELEV":5500}},{"type":"LineString","arcs":[320],"properties":{"ID":2138,"ELEV":1500}},{"type":"LineString","arcs":[321],"properties":{"ID":2139,"ELEV":2500}},{"type":"LineString","arcs":[322],"properties":{"ID":2140,"ELEV":3000}},{"type":"LineString","arcs":[323],"properties":{"ID":2141,"ELEV":3500}},{"type":"LineString","arcs":[324],"properties":{"ID":2148,"ELEV":5500}},{"type":"LineString","arcs":[325],"properties":{"ID":2149,"ELEV":5500}},{"type":"LineString","arcs":[326],"properties":{"ID":2150,"ELEV":5500}},{"type":"MultiLineString","arcs":[[327],[328]],"properties":{"ID":2152,"ELEV":500}},{"type":"LineString","arcs":[329],"properties":{"ID":2158,"ELEV":4000}},{"type":"LineString","arcs":[330],"properties":{"ID":2159,"ELEV":4000}},{"type":"LineString","arcs":[331],"properties":{"ID":2168,"ELEV":5500}},{"type":"LineString","arcs":[332],"properties":{"ID":2169,"ELEV":5500}},{"type":"LineString","arcs":[333],"properties":{"ID":2171,"ELEV":2500}},{"type":"LineString","arcs":[334],"properties":{"ID":2172,"ELEV":3500}},{"type":"LineString","arcs":[335],"properties":{"ID":2176,"ELEV":5000}},{"type":"LineString","arcs":[336],"properties":{"ID":2177,"ELEV":5000}},{"type":"LineString","arcs":[337],"properties":{"ID":2178,"ELEV":5000}},{"type":"LineString","arcs":[338],"properties":{"ID":2179,"ELEV":5000}},{"type":"LineString","arcs":[339],"properties":{"ID":2180,"ELEV":5000}},{"type":"LineString","arcs":[340],"properties":{"ID":2182,"ELEV":3000}},{"type":"LineString","arcs":[341],"properties":{"ID":2188,"ELEV":5000}},{"type":"LineString","arcs":[342],"properties":{"ID":2189,"ELEV":5000}},{"type":"LineString","arcs":[343],"properties":{"ID":2190,"ELEV":5500}},{"type":"LineString","arcs":[344],"properties":{"ID":2192,"ELEV":1000}},{"type":"LineString","arcs":[345],"properties":{"ID":2193,"ELEV":2500}},{"type":"LineString","arcs":[346],"properties":{"ID":2194,"ELEV":3500}},{"type":"LineString","arcs":[347],"properties":{"ID":2196,"ELEV":4500}},{"type":"MultiLineString","arcs":[[348],[349]],"properties":{"ID":2201,"ELEV":5500}},{"type":"LineString","arcs":[350],"properties":{"ID":2202,"ELEV":3500}},{"type":"LineString","arcs":[351],"properties":{"ID":2203,"ELEV":4000}},{"type":"LineString","arcs":[352],"properties":{"ID":2204,"ELEV":4000}},{"type":"LineString","arcs":[353],"properties":{"ID":2207,"ELEV":5500}},{"type":"LineString","arcs":[354],"properties":{"ID":2208,"ELEV":6000}},{"type":"LineString","arcs":[355],"properties":{"ID":2209,"ELEV":1000}},{"type":"LineString","arcs":[356],"properties":{"ID":2210,"ELEV":2000}},{"type":"LineString","arcs":[357],"properties":{"ID":2211,"ELEV":2000}},{"type":"LineString","arcs":[358],"properties":{"ID":2212,"ELEV":4000}},{"type":"LineString","arcs":[359],"properties":{"ID":2216,"ELEV":5500}},{"type":"LineString","arcs":[360],"properties":{"ID":2217,"ELEV":5500}},{"type":"LineString","arcs":[361],"properties":{"ID":2218,"ELEV":6000}},{"type":"LineString","arcs":[362],"properties":{"ID":2219,"ELEV":1000}},{"type":"LineString","arcs":[363],"properties":{"ID":2221,"ELEV":5500}},{"type":"LineString","arcs":[364],"properties":{"ID":2222,"ELEV":5500}},{"type":"LineString","arcs":[365],"properties":{"ID":2225,"ELEV":1000}},{"type":"LineString","arcs":[366],"properties":{"ID":2226,"ELEV":1500}},{"type":"LineString","arcs":[367],"properties":{"ID":2227,"ELEV":2000}},{"type":"LineString","arcs":[368],"properties":{"ID":2228,"ELEV":2500}},{"type":"LineString","arcs":[369],"properties":{"ID":2230,"ELEV":4500}},{"type":"LineString","arcs":[370],"properties":{"ID":2231,"ELEV":5000}},{"type":"LineString","arcs":[371],"properties":{"ID":2233,"ELEV":5500}},{"type":"LineString","arcs":[372],"properties":{"ID":2234,"ELEV":5500}},{"type":"MultiLineString","arcs":[[373],[374],[375]],"properties":{"ID":2236,"ELEV":500}},{"type":"LineString","arcs":[376],"properties":{"ID":2237,"ELEV":1500}},{"type":"LineString","arcs":[377],"properties":{"ID":2238,"ELEV":2000}},{"type":"LineString","arcs":[378],"properties":{"ID":2239,"ELEV":3500}},{"type":"LineString","arcs":[379],"properties":{"ID":2241,"ELEV":4000}},{"type":"LineString","arcs":[380],"properties":{"ID":2243,"ELEV":4500}},{"type":"LineString","arcs":[381],"properties":{"ID":2244,"ELEV":4500}},{"type":"LineString","arcs":[382],"properties":{"ID":2245,"ELEV":4500}},{"type":"LineString","arcs":[383],"properties":{"ID":2248,"ELEV":5000}},{"type":"LineString","arcs":[384],"properties":{"ID":2252,"ELEV":5500}},{"type":"LineString","arcs":[385],"properties":{"ID":2254,"ELEV":1000}},{"type":"LineString","arcs":[386],"properties":{"ID":2255,"ELEV":1500}},{"type":"LineString","arcs":[387],"properties":{"ID":2256,"ELEV":2000}},{"type":"LineString","arcs":[388],"properties":{"ID":2257,"ELEV":4500}},{"type":"LineString","arcs":[389],"properties":{"ID":2262,"ELEV":1000}},{"type":"LineString","arcs":[390],"properties":{"ID":2263,"ELEV":2500}},{"type":"LineString","arcs":[391],"properties":{"ID":2264,"ELEV":4000}},{"type":"LineString","arcs":[392],"properties":{"ID":2268,"ELEV":5000}},{"type":"LineString","arcs":[393],"properties":{"ID":2269,"ELEV":5500}},{"type":"LineString","arcs":[394],"properties":{"ID":2273,"ELEV":1500}},{"type":"LineString","arcs":[395],"properties":{"ID":2274,"ELEV":3000}},{"type":"LineString","arcs":[396],"properties":{"ID":2275,"ELEV":4000}},{"type":"LineString","arcs":[397],"properties":{"ID":2279,"ELEV":1000}},{"type":"LineString","arcs":[398],"properties":{"ID":2280,"ELEV":2000}},{"type":"LineString","arcs":[399],"properties":{"ID":2281,"ELEV":3500}},{"type":"LineString","arcs":[400],"properties":{"ID":2282,"ELEV":4000}},{"type":"LineString","arcs":[401],"properties":{"ID":2283,"ELEV":4000}},{"type":"LineString","arcs":[402],"properties":{"ID":2284,"ELEV":5000}},{"type":"LineString","arcs":[403],"properties":{"ID":2287,"ELEV":6000}},{"type":"LineString","arcs":[404],"properties":{"ID":2288,"ELEV":2000}},{"type":"LineString","arcs":[405],"properties":{"ID":2289,"ELEV":4000}},{"type":"LineString","arcs":[406],"properties":{"ID":2291,"ELEV":5500}},{"type":"LineString","arcs":[407],"properties":{"ID":2297,"ELEV":2000}},{"type":"LineString","arcs":[408],"properties":{"ID":2298,"ELEV":2000}},{"type":"LineString","arcs":[409],"properties":{"ID":2299,"ELEV":4000}},{"type":"LineString","arcs":[410],"properties":{"ID":2300,"ELEV":4500}},{"type":"LineString","arcs":[411],"properties":{"ID":2303,"ELEV":5000}},{"type":"LineString","arcs":[412],"properties":{"ID":2307,"ELEV":5500}},{"type":"LineString","arcs":[413],"properties":{"ID":2308,"ELEV":500}},{"type":"LineString","arcs":[414],"properties":{"ID":2309,"ELEV":1500}},{"type":"LineString","arcs":[415],"properties":{"ID":2310,"ELEV":1500}},{"type":"LineString","arcs":[416],"properties":{"ID":2311,"ELEV":2000}},{"type":"LineString","arcs":[417],"properties":{"ID":2312,"ELEV":3500}},{"type":"LineString","arcs":[418],"properties":{"ID":2313,"ELEV":4000}},{"type":"LineString","arcs":[419],"properties":{"ID":2314,"ELEV":5000}},{"type":"LineString","arcs":[420],"properties":{"ID":2315,"ELEV":5000}},{"type":"LineString","arcs":[421],"properties":{"ID":2319,"ELEV":5500}},{"type":"LineString","arcs":[422],"properties":{"ID":2323,"ELEV":500}},{"type":"LineString","arcs":[423],"properties":{"ID":2324,"ELEV":1000}},{"type":"LineString","arcs":[424],"properties":{"ID":2325,"ELEV":3500}},{"type":"LineString","arcs":[425],"properties":{"ID":2326,"ELEV":4000}},{"type":"LineString","arcs":[426],"properties":{"ID":2327,"ELEV":4000}},{"type":"LineString","arcs":[427],"properties":{"ID":2328,"ELEV":4000}},{"type":"LineString","arcs":[428],"properties":{"ID":2333,"ELEV":500}},{"type":"LineString","arcs":[429],"properties":{"ID":2334,"ELEV":500}},{"type":"LineString","arcs":[430],"properties":{"ID":2335,"ELEV":1500}},{"type":"LineString","arcs":[431],"properties":{"ID":2336,"ELEV":2500}},{"type":"LineString","arcs":[432],"properties":{"ID":2337,"ELEV":4500}},{"type":"LineString","arcs":[433],"properties":{"ID":2340,"ELEV":5500}},{"type":"LineString","arcs":[434],"properties":{"ID":2341,"ELEV":2000}},{"type":"LineString","arcs":[435],"properties":{"ID":2342,"ELEV":4000}},{"type":"LineString","arcs":[436],"properties":{"ID":2343,"ELEV":4000}},{"type":"MultiLineString","arcs":[[437],[438],[439],[440]],"properties":{"ID":2345,"ELEV":5500}},{"type":"LineString","arcs":[441],"properties":{"ID":2350,"ELEV":1000}},{"type":"LineString","arcs":[442],"properties":{"ID":2351,"ELEV":1500}},{"type":"LineString","arcs":[443],"properties":{"ID":2352,"ELEV":1500}},{"type":"LineString","arcs":[444],"properties":{"ID":2355,"ELEV":5500}},{"type":"LineString","arcs":[445],"properties":{"ID":2362,"ELEV":1000}},{"type":"LineString","arcs":[446],"properties":{"ID":2363,"ELEV":1500}},{"type":"LineString","arcs":[447],"properties":{"ID":2364,"ELEV":1500}},{"type":"LineString","arcs":[448],"properties":{"ID":2365,"ELEV":3000}},{"type":"LineString","arcs":[449],"properties":{"ID":2366,"ELEV":3500}},{"type":"LineString","arcs":[450],"properties":{"ID":2374,"ELEV":6000}},{"type":"LineString","arcs":[451],"properties":{"ID":2376,"ELEV":1500}},{"type":"LineString","arcs":[452],"properties":{"ID":2377,"ELEV":1500}},{"type":"LineString","arcs":[453],"properties":{"ID":2378,"ELEV":1500}},{"type":"LineString","arcs":[454],"properties":{"ID":2379,"ELEV":2500}},{"type":"LineString","arcs":[455],"properties":{"ID":2383,"ELEV":5000}},{"type":"MultiLineString","arcs":[[456],[457]],"properties":{"ID":2384,"ELEV":6000}},{"type":"LineString","arcs":[458],"properties":{"ID":2385,"ELEV":500}},{"type":"LineString","arcs":[459],"properties":{"ID":2386,"ELEV":1500}},{"type":"LineString","arcs":[460],"properties":{"ID":2387,"ELEV":1500}},{"type":"LineString","arcs":[461],"properties":{"ID":2389,"ELEV":5000}},{"type":"LineString","arcs":[462],"properties":{"ID":2393,"ELEV":5500}},{"type":"LineString","arcs":[463],"properties":{"ID":2396,"ELEV":2500}},{"type":"LineString","arcs":[464],"properties":{"ID":2397,"ELEV":2500}},{"type":"LineString","arcs":[465],"properties":{"ID":2398,"ELEV":3000}},{"type":"LineString","arcs":[466],"properties":{"ID":2399,"ELEV":4000}},{"type":"LineString","arcs":[467],"properties":{"ID":2400,"ELEV":5000}},{"type":"LineString","arcs":[468],"properties":{"ID":2401,"ELEV":6000}},{"type":"LineString","arcs":[469],"properties":{"ID":2402,"ELEV":1000}},{"type":"LineString","arcs":[470],"properties":{"ID":2403,"ELEV":2000}},{"type":"LineString","arcs":[471],"properties":{"ID":2404,"ELEV":2500}},{"type":"LineString","arcs":[472],"properties":{"ID":2405,"ELEV":4500}},{"type":"LineString","arcs":[473],"properties":{"ID":2409,"ELEV":1000}},{"type":"LineString","arcs":[474],"properties":{"ID":2410,"ELEV":1500}},{"type":"LineString","arcs":[475],"properties":{"ID":2411,"ELEV":1500}},{"type":"LineString","arcs":[476],"properties":{"ID":2412,"ELEV":3000}},{"type":"LineString","arcs":[477],"properties":{"ID":2413,"ELEV":4000}},{"type":"LineString","arcs":[478],"properties":{"ID":2414,"ELEV":4500}},{"type":"LineString","arcs":[479],"properties":{"ID":2417,"ELEV":5500}},{"type":"LineString","arcs":[480],"properties":{"ID":2420,"ELEV":1000}},{"type":"LineString","arcs":[481],"properties":{"ID":2421,"ELEV":2500}},{"type":"LineString","arcs":[482],"properties":{"ID":2422,"ELEV":4500}},{"type":"LineString","arcs":[483],"properties":{"ID":2424,"ELEV":5500}},{"type":"LineString","arcs":[484],"properties":{"ID":2428,"ELEV":1000}},{"type":"LineString","arcs":[485],"properties":{"ID":2429,"ELEV":3000}},{"type":"LineString","arcs":[486],"properties":{"ID":2430,"ELEV":4500}},{"type":"LineString","arcs":[487],"properties":{"ID":2433,"ELEV":5500}},{"type":"LineString","arcs":[488],"properties":{"ID":2434,"ELEV":5500}},{"type":"LineString","arcs":[489],"properties":{"ID":2438,"ELEV":1000}},{"type":"LineString","arcs":[490],"properties":{"ID":2439,"ELEV":3500}},{"type":"LineString","arcs":[491],"properties":{"ID":2440,"ELEV":6000}},{"type":"LineString","arcs":[492],"properties":{"ID":2441,"ELEV":6000}},{"type":"LineString","arcs":[493],"properties":{"ID":2442,"ELEV":6000}},{"type":"LineString","arcs":[494],"properties":{"ID":2444,"ELEV":6500}},{"type":"LineString","arcs":[495],"properties":{"ID":2445,"ELEV":7000}},{"type":"LineString","arcs":[496],"properties":{"ID":2446,"ELEV":500}},{"type":"LineString","arcs":[497],"properties":{"ID":2447,"ELEV":1000}},{"type":"LineString","arcs":[498],"properties":{"ID":2448,"ELEV":1500}},{"type":"LineString","arcs":[499],"properties":{"ID":2449,"ELEV":2000}},{"type":"LineString","arcs":[500],"properties":{"ID":2450,"ELEV":3000}},{"type":"LineString","arcs":[501],"properties":{"ID":2453,"ELEV":6000}},{"type":"LineString","arcs":[502],"properties":{"ID":2454,"ELEV":6500}},{"type":"LineString","arcs":[503],"properties":{"ID":2455,"ELEV":6500}},{"type":"LineString","arcs":[504],"properties":{"ID":2456,"ELEV":7000}},{"type":"LineString","arcs":[505],"properties":{"ID":2457,"ELEV":1000}},{"type":"LineString","arcs":[506],"properties":{"ID":2458,"ELEV":2500}},{"type":"LineString","arcs":[507],"properties":{"ID":2459,"ELEV":2500}},{"type":"LineString","arcs":[508],"properties":{"ID":2460,"ELEV":4000}},{"type":"LineString","arcs":[509],"properties":{"ID":2464,"ELEV":5500}},{"type":"LineString","arcs":[510],"properties":{"ID":2465,"ELEV":5500}},{"type":"LineString","arcs":[511],"properties":{"ID":2466,"ELEV":6000}},{"type":"MultiLineString","arcs":[[512],[513],[514]],"properties":{"ID":2467,"ELEV":6000}},{"type":"LineString","arcs":[515],"properties":{"ID":2468,"ELEV":6500}},{"type":"LineString","arcs":[516],"properties":{"ID":2469,"ELEV":4000}},{"type":"LineString","arcs":[517],"properties":{"ID":2475,"ELEV":5500}},{"type":"LineString","arcs":[518],"properties":{"ID":2476,"ELEV":6000}},{"type":"LineString","arcs":[519],"properties":{"ID":2477,"ELEV":1000}},{"type":"LineString","arcs":[520],"properties":{"ID":2478,"ELEV":1500}},{"type":"LineString","arcs":[521],"properties":{"ID":2479,"ELEV":2000}},{"type":"LineString","arcs":[522],"properties":{"ID":2480,"ELEV":2000}},{"type":"LineString","arcs":[523],"properties":{"ID":2483,"ELEV":5000}},{"type":"LineString","arcs":[524],"properties":{"ID":2485,"ELEV":6000}},{"type":"LineString","arcs":[525],"properties":{"ID":2486,"ELEV":6000}},{"type":"LineString","arcs":[526],"properties":{"ID":2487,"ELEV":6500}},{"type":"LineString","arcs":[527],"properties":{"ID":2488,"ELEV":6500}},{"type":"LineString","arcs":[528],"properties":{"ID":2489,"ELEV":7000}},{"type":"LineString","arcs":[529],"properties":{"ID":2490,"ELEV":1000}},{"type":"LineString","arcs":[530],"properties":{"ID":2491,"ELEV":1000}},{"type":"LineString","arcs":[531],"properties":{"ID":2492,"ELEV":2000}},{"type":"LineString","arcs":[532],"properties":{"ID":2493,"ELEV":2000}},{"type":"LineString","arcs":[533],"properties":{"ID":2494,"ELEV":2000}},{"type":"LineString","arcs":[534],"properties":{"ID":2497,"ELEV":5000}},{"type":"LineString","arcs":[535],"properties":{"ID":2499,"ELEV":5500}},{"type":"MultiLineString","arcs":[[536],[537]],"properties":{"ID":2502,"ELEV":5500}},{"type":"MultiLineString","arcs":[[538],[539]],"properties":{"ID":2503,"ELEV":5500}},{"type":"LineString","arcs":[540],"properties":{"ID":2505,"ELEV":6000}},{"type":"LineString","arcs":[541],"properties":{"ID":2506,"ELEV":6500}},{"type":"LineString","arcs":[542],"properties":{"ID":2507,"ELEV":1000}},{"type":"LineString","arcs":[543],"properties":{"ID":2508,"ELEV":2000}},{"type":"LineString","arcs":[544],"properties":{"ID":2509,"ELEV":3500}},{"type":"MultiLineString","arcs":[[545],[546]],"properties":{"ID":2510,"ELEV":5000}},{"type":"MultiLineString","arcs":[[547],[548],[549]],"properties":{"ID":2511,"ELEV":5500}},{"type":"LineString","arcs":[550],"properties":{"ID":2512,"ELEV":5500}},{"type":"LineString","arcs":[551],"properties":{"ID":2513,"ELEV":5500}},{"type":"LineString","arcs":[552],"properties":{"ID":2514,"ELEV":6000}},{"type":"LineString","arcs":[553],"properties":{"ID":2516,"ELEV":6000}},{"type":"LineString","arcs":[554],"properties":{"ID":2517,"ELEV":1000}},{"type":"LineString","arcs":[555],"properties":{"ID":2518,"ELEV":1000}},{"type":"LineString","arcs":[556],"properties":{"ID":2519,"ELEV":1500}},{"type":"LineString","arcs":[557],"properties":{"ID":2520,"ELEV":5000}},{"type":"LineString","arcs":[558],"properties":{"ID":2522,"ELEV":1000}},{"type":"LineString","arcs":[559],"properties":{"ID":2523,"ELEV":1500}},{"type":"LineString","arcs":[560],"properties":{"ID":2524,"ELEV":2000}},{"type":"LineString","arcs":[561],"properties":{"ID":2525,"ELEV":3500}},{"type":"LineString","arcs":[562],"properties":{"ID":2526,"ELEV":4000}},{"type":"LineString","arcs":[563],"properties":{"ID":2528,"ELEV":5000}},{"type":"LineString","arcs":[564],"properties":{"ID":2529,"ELEV":5500}},{"type":"LineString","arcs":[565],"properties":{"ID":2530,"ELEV":6000}},{"type":"LineString","arcs":[566],"properties":{"ID":2531,"ELEV":6000}},{"type":"LineString","arcs":[567],"properties":{"ID":2532,"ELEV":500}},{"type":"LineString","arcs":[568],"properties":{"ID":2533,"ELEV":3500}},{"type":"LineString","arcs":[569],"properties":{"ID":2535,"ELEV":4500}},{"type":"LineString","arcs":[570],"properties":{"ID":2536,"ELEV":5000}},{"type":"MultiLineString","arcs":[[571],[572]],"properties":{"ID":2539,"ELEV":5500}},{"type":"LineString","arcs":[573],"properties":{"ID":2540,"ELEV":5500}},{"type":"MultiLineString","arcs":[[574],[575]],"properties":{"ID":2541,"ELEV":5500}},{"type":"LineString","arcs":[576],"properties":{"ID":2543,"ELEV":6500}},{"type":"LineString","arcs":[577],"properties":{"ID":2544,"ELEV":4000}},{"type":"LineString","arcs":[578],"properties":{"ID":2546,"ELEV":6500}},{"type":"LineString","arcs":[579],"properties":{"ID":2547,"ELEV":2000}},{"type":"LineString","arcs":[580],"properties":{"ID":2548,"ELEV":3000}},{"type":"LineString","arcs":[581],"properties":{"ID":2549,"ELEV":3000}},{"type":"LineString","arcs":[582],"properties":{"ID":2551,"ELEV":5000}},{"type":"LineString","arcs":[583],"properties":{"ID":2552,"ELEV":5000}},{"type":"LineString","arcs":[584],"properties":{"ID":2554,"ELEV":6000}},{"type":"LineString","arcs":[585],"properties":{"ID":2555,"ELEV":1500}},{"type":"LineString","arcs":[586],"properties":{"ID":2556,"ELEV":1500}},{"type":"LineString","arcs":[587],"properties":{"ID":2557,"ELEV":2500}},{"type":"LineString","arcs":[588],"properties":{"ID":2559,"ELEV":4500}},{"type":"LineString","arcs":[589],"properties":{"ID":2565,"ELEV":5500}},{"type":"LineString","arcs":[590],"properties":{"ID":2566,"ELEV":5500}},{"type":"LineString","arcs":[591],"properties":{"ID":2569,"ELEV":6000}},{"type":"LineString","arcs":[592],"properties":{"ID":2571,"ELEV":6000}},{"type":"LineString","arcs":[593],"properties":{"ID":2572,"ELEV":6000}},{"type":"LineString","arcs":[594],"properties":{"ID":2573,"ELEV":6500}},{"type":"LineString","arcs":[595],"properties":{"ID":2575,"ELEV":7000}},{"type":"LineString","arcs":[596],"properties":{"ID":2576,"ELEV":3000}},{"type":"LineString","arcs":[597],"properties":{"ID":2577,"ELEV":3500}},{"type":"LineString","arcs":[598],"properties":{"ID":2578,"ELEV":3500}},{"type":"LineString","arcs":[599],"properties":{"ID":2579,"ELEV":3500}},{"type":"LineString","arcs":[600],"properties":{"ID":2580,"ELEV":4000}},{"type":"LineString","arcs":[601],"properties":{"ID":2582,"ELEV":5500}},{"type":"LineString","arcs":[602],"properties":{"ID":2583,"ELEV":5500}},{"type":"LineString","arcs":[603],"properties":{"ID":2585,"ELEV":7000}},{"type":"LineString","arcs":[604],"properties":{"ID":2586,"ELEV":2500}},{"type":"LineString","arcs":[605],"properties":{"ID":2587,"ELEV":3500}},{"type":"LineString","arcs":[606],"properties":{"ID":2591,"ELEV":6500}},{"type":"LineString","arcs":[607],"properties":{"ID":2592,"ELEV":2000}},{"type":"LineString","arcs":[608],"properties":{"ID":2593,"ELEV":2500}},{"type":"LineString","arcs":[609],"properties":{"ID":2594,"ELEV":3000}},{"type":"LineString","arcs":[610],"properties":{"ID":2595,"ELEV":3500}},{"type":"LineString","arcs":[611],"properties":{"ID":2596,"ELEV":3500}},{"type":"LineString","arcs":[612],"properties":{"ID":2600,"ELEV":5000}},{"type":"LineString","arcs":[613],"properties":{"ID":2605,"ELEV":5500}},{"type":"LineString","arcs":[614],"properties":{"ID":2606,"ELEV":5500}},{"type":"LineString","arcs":[615],"properties":{"ID":2610,"ELEV":7000}},{"type":"LineString","arcs":[616],"properties":{"ID":2611,"ELEV":1500}},{"type":"LineString","arcs":[617],"properties":{"ID":2612,"ELEV":2000}},{"type":"LineString","arcs":[618],"properties":{"ID":2613,"ELEV":3000}},{"type":"LineString","arcs":[619],"properties":{"ID":2614,"ELEV":3500}},{"type":"LineString","arcs":[620],"properties":{"ID":2615,"ELEV":3500}},{"type":"LineString","arcs":[621],"properties":{"ID":2616,"ELEV":5000}},{"type":"LineString","arcs":[622],"properties":{"ID":2617,"ELEV":5500}},{"type":"LineString","arcs":[623],"properties":{"ID":2619,"ELEV":6000}},{"type":"LineString","arcs":[624],"properties":{"ID":2620,"ELEV":6000}},{"type":"LineString","arcs":[625],"properties":{"ID":2621,"ELEV":6500}},{"type":"LineString","arcs":[626],"properties":{"ID":2622,"ELEV":500}},{"type":"LineString","arcs":[627],"properties":{"ID":2623,"ELEV":1500}},{"type":"LineString","arcs":[628],"properties":{"ID":2624,"ELEV":2500}},{"type":"LineString","arcs":[629],"properties":{"ID":2625,"ELEV":3000}},{"type":"LineString","arcs":[630],"properties":{"ID":2626,"ELEV":3500}},{"type":"LineString","arcs":[631],"properties":{"ID":2629,"ELEV":6000}},{"type":"LineString","arcs":[632],"properties":{"ID":2630,"ELEV":500}},{"type":"LineString","arcs":[633],"properties":{"ID":2631,"ELEV":1500}},{"type":"LineString","arcs":[634],"properties":{"ID":2632,"ELEV":1500}},{"type":"LineString","arcs":[635],"properties":{"ID":2633,"ELEV":2500}},{"type":"LineString","arcs":[636],"properties":{"ID":2635,"ELEV":5500}},{"type":"LineString","arcs":[637],"properties":{"ID":2640,"ELEV":7000}},{"type":"LineString","arcs":[638],"properties":{"ID":2641,"ELEV":1000}},{"type":"LineString","arcs":[639],"properties":{"ID":2642,"ELEV":2000}},{"type":"LineString","arcs":[640],"properties":{"ID":2643,"ELEV":2000}},{"type":"LineString","arcs":[641],"properties":{"ID":2644,"ELEV":2500}},{"type":"LineString","arcs":[642],"properties":{"ID":2645,"ELEV":3000}},{"type":"LineString","arcs":[643],"properties":{"ID":2646,"ELEV":3000}},{"type":"LineString","arcs":[644],"properties":{"ID":2647,"ELEV":3500}},{"type":"LineString","arcs":[645],"properties":{"ID":2648,"ELEV":4000}},{"type":"LineString","arcs":[646],"properties":{"ID":2650,"ELEV":6000}},{"type":"LineString","arcs":[647],"properties":{"ID":2651,"ELEV":6500}},{"type":"LineString","arcs":[648],"properties":{"ID":2653,"ELEV":5500}},{"type":"LineString","arcs":[649],"properties":{"ID":2655,"ELEV":1000}},{"type":"LineString","arcs":[650],"properties":{"ID":2656,"ELEV":2500}},{"type":"LineString","arcs":[651],"properties":{"ID":2657,"ELEV":3000}},{"type":"LineString","arcs":[652],"properties":{"ID":2660,"ELEV":5000}},{"type":"LineString","arcs":[653],"properties":{"ID":2663,"ELEV":6000}},{"type":"LineString","arcs":[654],"properties":{"ID":2665,"ELEV":2000}},{"type":"LineString","arcs":[655],"properties":{"ID":2668,"ELEV":5000}},{"type":"LineString","arcs":[656],"properties":{"ID":2670,"ELEV":5500}},{"type":"LineString","arcs":[657],"properties":{"ID":2673,"ELEV":1500}},{"type":"LineString","arcs":[658],"properties":{"ID":2674,"ELEV":1500}},{"type":"LineString","arcs":[659],"properties":{"ID":2675,"ELEV":1500}},{"type":"LineString","arcs":[660],"properties":{"ID":2676,"ELEV":1500}},{"type":"LineString","arcs":[661],"properties":{"ID":2677,"ELEV":2000}},{"type":"LineString","arcs":[662],"properties":{"ID":2678,"ELEV":2500}},{"type":"LineString","arcs":[663],"properties":{"ID":2679,"ELEV":4000}},{"type":"LineString","arcs":[664],"properties":{"ID":2680,"ELEV":4500}},{"type":"LineString","arcs":[665],"properties":{"ID":2684,"ELEV":6000}},{"type":"LineString","arcs":[666],"properties":{"ID":2687,"ELEV":1000}},{"type":"LineString","arcs":[667],"properties":{"ID":2688,"ELEV":1000}},{"type":"LineString","arcs":[668],"properties":{"ID":2689,"ELEV":1500}},{"type":"LineString","arcs":[669],"properties":{"ID":2690,"ELEV":1500}},{"type":"LineString","arcs":[670],"properties":{"ID":2691,"ELEV":1500}},{"type":"LineString","arcs":[671],"properties":{"ID":2692,"ELEV":2000}},{"type":"LineString","arcs":[672],"properties":{"ID":2693,"ELEV":2000}},{"type":"LineString","arcs":[673],"properties":{"ID":2694,"ELEV":3000}},{"type":"LineString","arcs":[674],"properties":{"ID":2695,"ELEV":3000}},{"type":"LineString","arcs":[675],"properties":{"ID":2697,"ELEV":6000}},{"type":"LineString","arcs":[676],"properties":{"ID":2698,"ELEV":2000}},{"type":"LineString","arcs":[677],"properties":{"ID":2699,"ELEV":2500}},{"type":"LineString","arcs":[678],"properties":{"ID":2700,"ELEV":2500}},{"type":"LineString","arcs":[679],"properties":{"ID":2701,"ELEV":4000}},{"type":"MultiLineString","arcs":[[680],[681],[682]],"properties":{"ID":2705,"ELEV":5500}},{"type":"LineString","arcs":[683],"properties":{"ID":2712,"ELEV":1000}},{"type":"LineString","arcs":[684],"properties":{"ID":2713,"ELEV":1500}},{"type":"LineString","arcs":[685],"properties":{"ID":2714,"ELEV":2500}},{"type":"LineString","arcs":[686],"properties":{"ID":2715,"ELEV":2500}},{"type":"LineString","arcs":[687],"properties":{"ID":2716,"ELEV":2500}},{"type":"MultiLineString","arcs":[[688],[689]],"properties":{"ID":2717,"ELEV":2500}},{"type":"LineString","arcs":[690],"properties":{"ID":2718,"ELEV":3000}},{"type":"LineString","arcs":[691],"properties":{"ID":2726,"ELEV":1000}},{"type":"LineString","arcs":[692],"properties":{"ID":2727,"ELEV":1500}},{"type":"LineString","arcs":[693],"properties":{"ID":2729,"ELEV":4500}},{"type":"LineString","arcs":[694],"properties":{"ID":2734,"ELEV":1000}},{"type":"LineString","arcs":[695],"properties":{"ID":2735,"ELEV":1000}},{"type":"LineString","arcs":[696],"properties":{"ID":2736,"ELEV":1500}},{"type":"LineString","arcs":[697],"properties":{"ID":2737,"ELEV":1500}},{"type":"LineString","arcs":[698],"properties":{"ID":2738,"ELEV":1500}},{"type":"LineString","arcs":[699],"properties":{"ID":2742,"ELEV":500}},{"type":"LineString","arcs":[700],"properties":{"ID":2743,"ELEV":1000}},{"type":"LineString","arcs":[701],"properties":{"ID":2744,"ELEV":2000}},{"type":"LineString","arcs":[702],"properties":{"ID":2745,"ELEV":2000}},{"type":"LineString","arcs":[703],"properties":{"ID":2746,"ELEV":4000}},{"type":"MultiLineString","arcs":[[704],[705]],"properties":{"ID":2749,"ELEV":5000}},{"type":"LineString","arcs":[706,707],"properties":{"ID":2750,"ELEV":5500}},{"type":"MultiLineString","arcs":[[708],[709]],"properties":{"ID":2751,"ELEV":5500}},{"type":"LineString","arcs":[710,711],"properties":{"ID":2752,"ELEV":5500}},{"type":"LineString","arcs":[712],"properties":{"ID":2754,"ELEV":6000}},{"type":"LineString","arcs":[713],"properties":{"ID":2755,"ELEV":1000}},{"type":"LineString","arcs":[714],"properties":{"ID":2756,"ELEV":1000}},{"type":"LineString","arcs":[715],"properties":{"ID":2757,"ELEV":1500}},{"type":"LineString","arcs":[716],"properties":{"ID":2758,"ELEV":1500}},{"type":"LineString","arcs":[717],"properties":{"ID":2759,"ELEV":1500}},{"type":"LineString","arcs":[718],"properties":{"ID":2760,"ELEV":2000}},{"type":"LineString","arcs":[719],"properties":{"ID":2761,"ELEV":2000}},{"type":"LineString","arcs":[720],"properties":{"ID":2762,"ELEV":4000}},{"type":"LineString","arcs":[721],"properties":{"ID":2767,"ELEV":4500}},{"type":"LineString","arcs":[722],"properties":{"ID":2773,"ELEV":1000}},{"type":"LineString","arcs":[723],"properties":{"ID":2774,"ELEV":1500}},{"type":"LineString","arcs":[724],"properties":{"ID":2775,"ELEV":1500}},{"type":"LineString","arcs":[725],"properties":{"ID":2776,"ELEV":2000}},{"type":"LineString","arcs":[726],"properties":{"ID":2777,"ELEV":4000}},{"type":"LineString","arcs":[727],"properties":{"ID":2784,"ELEV":1000}},{"type":"LineString","arcs":[728],"properties":{"ID":2785,"ELEV":1500}},{"type":"LineString","arcs":[729],"properties":{"ID":2786,"ELEV":2000}},{"type":"LineString","arcs":[730],"properties":{"ID":2789,"ELEV":6000}},{"type":"LineString","arcs":[731],"properties":{"ID":2791,"ELEV":1000}},{"type":"LineString","arcs":[732],"properties":{"ID":2792,"ELEV":1500}},{"type":"LineString","arcs":[733],"properties":{"ID":2793,"ELEV":1500}},{"type":"LineString","arcs":[734],"properties":{"ID":2794,"ELEV":3000}},{"type":"LineString","arcs":[735],"properties":{"ID":2797,"ELEV":5500}},{"type":"LineString","arcs":[736],"properties":{"ID":2800,"ELEV":1000}},{"type":"LineString","arcs":[737],"properties":{"ID":2801,"ELEV":1000}},{"type":"LineString","arcs":[738],"properties":{"ID":2802,"ELEV":1000}},{"type":"LineString","arcs":[739],"properties":{"ID":2803,"ELEV":1500}},{"type":"LineString","arcs":[740],"properties":{"ID":2804,"ELEV":1500}},{"type":"LineString","arcs":[741],"properties":{"ID":2805,"ELEV":1500}},{"type":"LineString","arcs":[742],"properties":{"ID":2806,"ELEV":1500}},{"type":"LineString","arcs":[743],"properties":{"ID":2807,"ELEV":2000}},{"type":"MultiLineString","arcs":[[744],[745]],"properties":{"ID":2809,"ELEV":5500}},{"type":"LineString","arcs":[746],"properties":{"ID":2810,"ELEV":5500}},{"type":"LineString","arcs":[747],"properties":{"ID":2813,"ELEV":1000}},{"type":"LineString","arcs":[748],"properties":{"ID":2814,"ELEV":1000}},{"type":"LineString","arcs":[749],"properties":{"ID":2815,"ELEV":1000}},{"type":"MultiLineString","arcs":[[750],[751]],"properties":{"ID":2817,"ELEV":5500}},{"type":"MultiLineString","arcs":[[752],[753]],"properties":{"ID":2819,"ELEV":6000}},{"type":"LineString","arcs":[754],"properties":{"ID":2820,"ELEV":2000}},{"type":"LineString","arcs":[755],"properties":{"ID":2823,"ELEV":500}},{"type":"LineString","arcs":[756],"properties":{"ID":2824,"ELEV":1000}},{"type":"LineString","arcs":[757],"properties":{"ID":2825,"ELEV":1000}},{"type":"LineString","arcs":[758],"properties":{"ID":2826,"ELEV":1500}},{"type":"LineString","arcs":[759],"properties":{"ID":2827,"ELEV":5000}},{"type":"MultiLineString","arcs":[[760],[761]],"properties":{"ID":2829,"ELEV":7000}},{"type":"LineString","arcs":[762],"properties":{"ID":2830,"ELEV":1000}},{"type":"LineString","arcs":[763],"properties":{"ID":2831,"ELEV":1000}},{"type":"LineString","arcs":[764],"properties":{"ID":2832,"ELEV":1500}},{"type":"LineString","arcs":[765],"properties":{"ID":2833,"ELEV":2000}},{"type":"LineString","arcs":[766],"properties":{"ID":2835,"ELEV":4500}},{"type":"LineString","arcs":[767],"properties":{"ID":2836,"ELEV":5500}},{"type":"LineString","arcs":[768],"properties":{"ID":2838,"ELEV":1000}},{"type":"LineString","arcs":[769],"properties":{"ID":2839,"ELEV":1000}},{"type":"LineString","arcs":[770],"properties":{"ID":2840,"ELEV":1000}},{"type":"LineString","arcs":[771],"properties":{"ID":2841,"ELEV":1000}},{"type":"LineString","arcs":[772],"properties":{"ID":2842,"ELEV":1500}},{"type":"LineString","arcs":[773],"properties":{"ID":2843,"ELEV":1500}},{"type":"LineString","arcs":[774],"properties":{"ID":2844,"ELEV":2000}},{"type":"LineString","arcs":[775],"properties":{"ID":2847,"ELEV":4500}},{"type":"MultiLineString","arcs":[[776],[777]],"properties":{"ID":2852,"ELEV":6500}},{"type":"LineString","arcs":[778],"properties":{"ID":2853,"ELEV":1500}},{"type":"LineString","arcs":[779],"properties":{"ID":2854,"ELEV":3000}},{"type":"MultiLineString","arcs":[[780],[781]],"properties":{"ID":2855,"ELEV":5000}},{"type":"LineString","arcs":[782],"properties":{"ID":2858,"ELEV":1000}},{"type":"LineString","arcs":[783],"properties":{"ID":2859,"ELEV":1500}},{"type":"LineString","arcs":[784],"properties":{"ID":2860,"ELEV":2000}},{"type":"LineString","arcs":[785],"properties":{"ID":2861,"ELEV":2500}},{"type":"LineString","arcs":[786],"properties":{"ID":2866,"ELEV":500}},{"type":"LineString","arcs":[787],"properties":{"ID":2867,"ELEV":500}},{"type":"LineString","arcs":[788],"properties":{"ID":2868,"ELEV":500}},{"type":"LineString","arcs":[789],"properties":{"ID":2869,"ELEV":500}},{"type":"LineString","arcs":[790],"properties":{"ID":2870,"ELEV":500}},{"type":"LineString","arcs":[791],"properties":{"ID":2871,"ELEV":1000}},{"type":"LineString","arcs":[792],"properties":{"ID":2872,"ELEV":1500}},{"type":"LineString","arcs":[793],"properties":{"ID":2873,"ELEV":3500}},{"type":"LineString","arcs":[794],"properties":{"ID":2874,"ELEV":5000}},{"type":"MultiLineString","arcs":[[795],[796],[797],[798]],"properties":{"ID":2875,"ELEV":6000}},{"type":"MultiLineString","arcs":[[799],[800]],"properties":{"ID":2876,"ELEV":6000}},{"type":"LineString","arcs":[801],"properties":{"ID":2877,"ELEV":500}},{"type":"LineString","arcs":[802],"properties":{"ID":2878,"ELEV":1000}},{"type":"LineString","arcs":[803],"properties":{"ID":2879,"ELEV":1000}},{"type":"LineString","arcs":[804],"properties":{"ID":2880,"ELEV":1500}},{"type":"LineString","arcs":[805],"properties":{"ID":2881,"ELEV":2000}},{"type":"LineString","arcs":[806],"properties":{"ID":2884,"ELEV":500}},{"type":"LineString","arcs":[807],"properties":{"ID":2885,"ELEV":500}},{"type":"LineString","arcs":[808],"properties":{"ID":2886,"ELEV":1000}},{"type":"LineString","arcs":[809],"properties":{"ID":2887,"ELEV":5500}},{"type":"LineString","arcs":[810],"properties":{"ID":2890,"ELEV":500}},{"type":"LineString","arcs":[811],"properties":{"ID":2891,"ELEV":1000}},{"type":"LineString","arcs":[812],"properties":{"ID":2895,"ELEV":6000}},{"type":"MultiLineString","arcs":[[813],[814]],"properties":{"ID":2897,"ELEV":7000}},{"type":"MultiLineString","arcs":[[815],[816]],"properties":{"ID":2898,"ELEV":7500}},{"type":"LineString","arcs":[817],"properties":{"ID":2899,"ELEV":8000}},{"type":"LineString","arcs":[818],"properties":{"ID":2900,"ELEV":500}},{"type":"LineString","arcs":[819],"properties":{"ID":2901,"ELEV":500}},{"type":"LineString","arcs":[820],"properties":{"ID":2902,"ELEV":1000}},{"type":"LineString","arcs":[821],"properties":{"ID":2903,"ELEV":1000}},{"type":"LineString","arcs":[822],"properties":{"ID":2904,"ELEV":1000}},{"type":"LineString","arcs":[823],"properties":{"ID":2905,"ELEV":1000}},{"type":"MultiLineString","arcs":[[824],[825]],"properties":{"ID":2907,"ELEV":6500}},{"type":"LineString","arcs":[826],"properties":{"ID":2908,"ELEV":500}},{"type":"LineString","arcs":[827],"properties":{"ID":2911,"ELEV":1000}},{"type":"MultiLineString","arcs":[[828],[829]],"properties":{"ID":2915,"ELEV":5500}},{"type":"LineString","arcs":[830],"properties":{"ID":2916,"ELEV":5500}},{"type":"LineString","arcs":[831],"properties":{"ID":2917,"ELEV":6000}},{"type":"LineString","arcs":[832],"properties":{"ID":2918,"ELEV":500}},{"type":"LineString","arcs":[833],"properties":{"ID":2919,"ELEV":500}},{"type":"LineString","arcs":[834],"properties":{"ID":2920,"ELEV":1000}},{"type":"LineString","arcs":[835],"properties":{"ID":2921,"ELEV":1000}},{"type":"LineString","arcs":[836],"properties":{"ID":2922,"ELEV":1500}},{"type":"LineString","arcs":[837],"properties":{"ID":2923,"ELEV":3000}},{"type":"LineString","arcs":[838],"properties":{"ID":2926,"ELEV":500}},{"type":"LineString","arcs":[839],"properties":{"ID":2927,"ELEV":1000}},{"type":"LineString","arcs":[840],"properties":{"ID":2928,"ELEV":1500}},{"type":"LineString","arcs":[841],"properties":{"ID":2929,"ELEV":1500}},{"type":"MultiLineString","arcs":[[842],[843]],"properties":{"ID":2932,"ELEV":6000}},{"type":"MultiLineString","arcs":[[844],[845]],"properties":{"ID":2933,"ELEV":6500}},{"type":"MultiLineString","arcs":[[846],[847]],"properties":{"ID":2934,"ELEV":7000}},{"type":"MultiLineString","arcs":[[848],[849]],"properties":{"ID":2936,"ELEV":7500}},{"type":"MultiLineString","arcs":[[850],[851]],"properties":{"ID":2937,"ELEV":8000}},{"type":"LineString","arcs":[852],"properties":{"ID":2938,"ELEV":500}},{"type":"LineString","arcs":[853],"properties":{"ID":2939,"ELEV":500}},{"type":"LineString","arcs":[854],"properties":{"ID":2940,"ELEV":500}},{"type":"LineString","arcs":[855],"properties":{"ID":2941,"ELEV":1500}},{"type":"LineString","arcs":[856],"properties":{"ID":2942,"ELEV":1500}},{"type":"LineString","arcs":[857],"properties":{"ID":2943,"ELEV":2500}},{"type":"LineString","arcs":[858],"properties":{"ID":2944,"ELEV":5000}},{"type":"LineString","arcs":[859],"properties":{"ID":2946,"ELEV":6000}},{"type":"MultiLineString","arcs":[[860],[861],[862]],"properties":{"ID":2947,"ELEV":6000}},{"type":"MultiLineString","arcs":[[863],[864]],"properties":{"ID":2948,"ELEV":6500}},{"type":"LineString","arcs":[865],"properties":{"ID":2949,"ELEV":500}},{"type":"LineString","arcs":[866],"properties":{"ID":2950,"ELEV":1000}},{"type":"LineString","arcs":[867],"properties":{"ID":2951,"ELEV":1000}},{"type":"LineString","arcs":[868],"properties":{"ID":2952,"ELEV":1500}},{"type":"LineString","arcs":[869],"properties":{"ID":2954,"ELEV":4000}},{"type":"LineString","arcs":[870],"properties":{"ID":2955,"ELEV":1000}},{"type":"LineString","arcs":[871],"properties":{"ID":2956,"ELEV":1000}},{"type":"LineString","arcs":[872],"properties":{"ID":2957,"ELEV":1000}},{"type":"LineString","arcs":[873],"properties":{"ID":2958,"ELEV":1000}},{"type":"LineString","arcs":[874],"properties":{"ID":2959,"ELEV":1500}},{"type":"LineString","arcs":[875],"properties":{"ID":2960,"ELEV":1500}},{"type":"LineString","arcs":[876],"properties":{"ID":2961,"ELEV":1500}},{"type":"LineString","arcs":[877],"properties":{"ID":2962,"ELEV":3500}},{"type":"MultiLineString","arcs":[[878],[879]],"properties":{"ID":2964,"ELEV":4500}},{"type":"LineString","arcs":[880],"properties":{"ID":2965,"ELEV":500}},{"type":"LineString","arcs":[881],"properties":{"ID":2966,"ELEV":500}},{"type":"LineString","arcs":[882],"properties":{"ID":2967,"ELEV":1000}},{"type":"LineString","arcs":[883],"properties":{"ID":2968,"ELEV":1000}},{"type":"LineString","arcs":[884],"properties":{"ID":2969,"ELEV":2000}},{"type":"LineString","arcs":[885],"properties":{"ID":2971,"ELEV":5500}},{"type":"MultiLineString","arcs":[[886],[887]],"properties":{"ID":2972,"ELEV":5500}},{"type":"LineString","arcs":[888],"properties":{"ID":2973,"ELEV":5500}},{"type":"LineString","arcs":[889],"properties":{"ID":2974,"ELEV":6000}},{"type":"MultiLineString","arcs":[[890],[891]],"properties":{"ID":2975,"ELEV":6000}},{"type":"LineString","arcs":[892],"properties":{"ID":2976,"ELEV":500}},{"type":"LineString","arcs":[893],"properties":{"ID":2977,"ELEV":500}},{"type":"LineString","arcs":[894],"properties":{"ID":2978,"ELEV":500}},{"type":"LineString","arcs":[895],"properties":{"ID":2979,"ELEV":1000}},{"type":"LineString","arcs":[896],"properties":{"ID":2980,"ELEV":1000}},{"type":"LineString","arcs":[897],"properties":{"ID":2981,"ELEV":1000}},{"type":"LineString","arcs":[898],"properties":{"ID":2982,"ELEV":6000}},{"type":"LineString","arcs":[899],"properties":{"ID":2983,"ELEV":6500}},{"type":"LineString","arcs":[900],"properties":{"ID":2984,"ELEV":500}},{"type":"LineString","arcs":[901],"properties":{"ID":2985,"ELEV":1000}},{"type":"LineString","arcs":[902],"properties":{"ID":2986,"ELEV":1000}},{"type":"LineString","arcs":[903],"properties":{"ID":2987,"ELEV":1000}},{"type":"LineString","arcs":[904],"properties":{"ID":2988,"ELEV":5000}},{"type":"LineString","arcs":[905],"properties":{"ID":2989,"ELEV":5500}},{"type":"LineString","arcs":[906],"properties":{"ID":2990,"ELEV":500}},{"type":"LineString","arcs":[907],"properties":{"ID":2991,"ELEV":1000}},{"type":"LineString","arcs":[908],"properties":{"ID":2992,"ELEV":1500}},{"type":"LineString","arcs":[909],"properties":{"ID":2993,"ELEV":1500}},{"type":"LineString","arcs":[910],"properties":{"ID":2994,"ELEV":1500}},{"type":"LineString","arcs":[911],"properties":{"ID":2995,"ELEV":1500}},{"type":"LineString","arcs":[912],"properties":{"ID":2996,"ELEV":1500}},{"type":"LineString","arcs":[913],"properties":{"ID":2997,"ELEV":2000}},{"type":"LineString","arcs":[914,915],"properties":{"ID":2999,"ELEV":5500}},{"type":"LineString","arcs":[916],"properties":{"ID":3000,"ELEV":5500}},{"type":"LineString","arcs":[917],"properties":{"ID":3001,"ELEV":6000}},{"type":"LineString","arcs":[918],"properties":{"ID":3002,"ELEV":6000}},{"type":"LineString","arcs":[919],"properties":{"ID":3003,"ELEV":6000}},{"type":"LineString","arcs":[920],"properties":{"ID":3004,"ELEV":500}},{"type":"LineString","arcs":[921],"properties":{"ID":3005,"ELEV":1000}},{"type":"LineString","arcs":[922,923],"properties":{"ID":3006,"ELEV":1500}},{"type":"LineString","arcs":[924],"properties":{"ID":3007,"ELEV":2000}},{"type":"LineString","arcs":[925],"properties":{"ID":3008,"ELEV":2000}},{"type":"LineString","arcs":[926],"properties":{"ID":3009,"ELEV":6000}},{"type":"LineString","arcs":[927],"properties":{"ID":3010,"ELEV":500}},{"type":"LineString","arcs":[928],"properties":{"ID":3011,"ELEV":1000}},{"type":"LineString","arcs":[929,930],"properties":{"ID":3012,"ELEV":1500}},{"type":"LineString","arcs":[931],"properties":{"ID":3013,"ELEV":1500}},{"type":"LineString","arcs":[932],"properties":{"ID":3014,"ELEV":3000}},{"type":"LineString","arcs":[933],"properties":{"ID":3015,"ELEV":3000}},{"type":"LineString","arcs":[934],"properties":{"ID":3016,"ELEV":4000}},{"type":"MultiLineString","arcs":[[935],[936],[937],[938]],"properties":{"ID":3018,"ELEV":5500}},{"type":"LineString","arcs":[939],"properties":{"ID":3019,"ELEV":5500}},{"type":"MultiLineString","arcs":[[940,941],[942],[943],[944]],"properties":{"ID":3020,"ELEV":5500}},{"type":"LineString","arcs":[945],"properties":{"ID":3022,"ELEV":500}},{"type":"LineString","arcs":[946],"properties":{"ID":3023,"ELEV":1000}},{"type":"LineString","arcs":[947],"properties":{"ID":3024,"ELEV":1500}},{"type":"LineString","arcs":[948,949],"properties":{"ID":3025,"ELEV":1500}},{"type":"LineString","arcs":[950],"properties":{"ID":3026,"ELEV":4500}},{"type":"LineString","arcs":[951],"properties":{"ID":3027,"ELEV":6500}},{"type":"LineString","arcs":[952],"properties":{"ID":3028,"ELEV":7000}},{"type":"LineString","arcs":[953],"properties":{"ID":3029,"ELEV":500}},{"type":"LineString","arcs":[954],"properties":{"ID":3030,"ELEV":2000}},{"type":"LineString","arcs":[955],"properties":{"ID":3031,"ELEV":3500}},{"type":"LineString","arcs":[956],"properties":{"ID":3032,"ELEV":4000}},{"type":"LineString","arcs":[957],"properties":{"ID":3033,"ELEV":6500}},{"type":"LineString","arcs":[958],"properties":{"ID":3034,"ELEV":7000}},{"type":"LineString","arcs":[959],"properties":{"ID":3035,"ELEV":2000}},{"type":"LineString","arcs":[960],"properties":{"ID":3036,"ELEV":2500}},{"type":"LineString","arcs":[961],"properties":{"ID":3037,"ELEV":4500}},{"type":"LineString","arcs":[962],"properties":{"ID":3038,"ELEV":5500}},{"type":"MultiLineString","arcs":[[963],[964]],"properties":{"ID":3039,"ELEV":6000}},{"type":"LineString","arcs":[965],"properties":{"ID":3041,"ELEV":1000}},{"type":"LineString","arcs":[966],"properties":{"ID":3042,"ELEV":1500}},{"type":"LineString","arcs":[967],"properties":{"ID":3043,"ELEV":1500}},{"type":"LineString","arcs":[968],"properties":{"ID":3044,"ELEV":3000}},{"type":"LineString","arcs":[969],"properties":{"ID":3045,"ELEV":3500}},{"type":"MultiLineString","arcs":[[970],[971],[972],[973],[974],[975],[976],[977],[978],[979],[980],[981],[982],[983],[984],[985],[986],[987],[988]],"properties":{"ID":3046,"ELEV":5000}},{"type":"LineString","arcs":[989],"properties":{"ID":3047,"ELEV":5000}},{"type":"LineString","arcs":[990],"properties":{"ID":3048,"ELEV":5500}},{"type":"LineString","arcs":[991],"properties":{"ID":3049,"ELEV":2000}},{"type":"LineString","arcs":[992],"properties":{"ID":3050,"ELEV":4500}},{"type":"LineString","arcs":[993],"properties":{"ID":3051,"ELEV":6000}},{"type":"LineString","arcs":[994],"properties":{"ID":3052,"ELEV":6500}},{"type":"LineString","arcs":[995],"properties":{"ID":3053,"ELEV":2000}},{"type":"LineString","arcs":[996],"properties":{"ID":3054,"ELEV":3500}},{"type":"LineString","arcs":[997],"properties":{"ID":3055,"ELEV":3500}},{"type":"LineString","arcs":[998],"properties":{"ID":3056,"ELEV":1500}},{"type":"LineString","arcs":[999],"properties":{"ID":3057,"ELEV":2000}},{"type":"LineString","arcs":[1000],"properties":{"ID":3058,"ELEV":2000}},{"type":"LineString","arcs":[1001],"properties":{"ID":3059,"ELEV":2000}},{"type":"LineString","arcs":[1002],"properties":{"ID":3060,"ELEV":2000}},{"type":"LineString","arcs":[1003],"properties":{"ID":3061,"ELEV":2500}},{"type":"LineString","arcs":[1004],"properties":{"ID":3063,"ELEV":1000}},{"type":"MultiLineString","arcs":[[1005],[1006],[1007],[1008],[1009],[1010],[1011],[1012]],"properties":{"ID":3064,"ELEV":4500}},{"type":"MultiLineString","arcs":[[1013],[1014],[1015]],"properties":{"ID":3065,"ELEV":5500}},{"type":"LineString","arcs":[1016],"properties":{"ID":3067,"ELEV":1500}},{"type":"LineString","arcs":[1017],"properties":{"ID":3068,"ELEV":2000}},{"type":"LineString","arcs":[1018],"properties":{"ID":3069,"ELEV":2000}},{"type":"LineString","arcs":[1019],"properties":{"ID":3070,"ELEV":3500}},{"type":"LineString","arcs":[1020],"properties":{"ID":3071,"ELEV":4500}},{"type":"LineString","arcs":[1021],"properties":{"ID":3073,"ELEV":2500}},{"type":"LineString","arcs":[1022],"properties":{"ID":3075,"ELEV":1000}},{"type":"LineString","arcs":[1023],"properties":{"ID":3076,"ELEV":1500}},{"type":"LineString","arcs":[1024],"properties":{"ID":3077,"ELEV":2000}},{"type":"LineString","arcs":[1025],"properties":{"ID":3078,"ELEV":2500}},{"type":"LineString","arcs":[1026],"properties":{"ID":3079,"ELEV":3000}},{"type":"LineString","arcs":[1027],"properties":{"ID":3080,"ELEV":3500}},{"type":"LineString","arcs":[1028],"properties":{"ID":3081,"ELEV":500}},{"type":"LineString","arcs":[1029],"properties":{"ID":3082,"ELEV":1000}},{"type":"LineString","arcs":[1030],"properties":{"ID":3083,"ELEV":1500}},{"type":"LineString","arcs":[1031],"properties":{"ID":3084,"ELEV":1500}},{"type":"LineString","arcs":[1032],"properties":{"ID":3086,"ELEV":2000}},{"type":"LineString","arcs":[1033],"properties":{"ID":3088,"ELEV":2500}},{"type":"LineString","arcs":[1034],"properties":{"ID":3089,"ELEV":2500}},{"type":"LineString","arcs":[1035],"properties":{"ID":3090,"ELEV":3500}},{"type":"LineString","arcs":[1036],"properties":{"ID":3091,"ELEV":4500}},{"type":"LineString","arcs":[1037],"properties":{"ID":3092,"ELEV":1000}},{"type":"LineString","arcs":[1038],"properties":{"ID":3093,"ELEV":1500}},{"type":"LineString","arcs":[1039],"properties":{"ID":3094,"ELEV":1500}},{"type":"LineString","arcs":[1040],"properties":{"ID":3095,"ELEV":2000}},{"type":"LineString","arcs":[1041],"properties":{"ID":3096,"ELEV":2000}},{"type":"LineString","arcs":[1042],"properties":{"ID":3097,"ELEV":2500}},{"type":"LineString","arcs":[1043],"properties":{"ID":3098,"ELEV":3000}},{"type":"LineString","arcs":[1044],"properties":{"ID":3099,"ELEV":3500}},{"type":"LineString","arcs":[1045],"properties":{"ID":3100,"ELEV":3500}},{"type":"LineString","arcs":[1046],"properties":{"ID":3102,"ELEV":500}},{"type":"LineString","arcs":[1047],"properties":{"ID":3103,"ELEV":1500}},{"type":"LineString","arcs":[1048],"properties":{"ID":3104,"ELEV":1500}},{"type":"LineString","arcs":[1049],"properties":{"ID":3105,"ELEV":2000}},{"type":"LineString","arcs":[1050],"properties":{"ID":3106,"ELEV":2500}},{"type":"MultiLineString","arcs":[[1051],[1052],[1053],[1054]],"properties":{"ID":3107,"ELEV":5000}},{"type":"LineString","arcs":[1055],"properties":{"ID":3108,"ELEV":2000}},{"type":"LineString","arcs":[1056],"properties":{"ID":3110,"ELEV":2500}},{"type":"LineString","arcs":[1057],"properties":{"ID":3111,"ELEV":2500}},{"type":"LineString","arcs":[1058],"properties":{"ID":3112,"ELEV":3500}},{"type":"LineString","arcs":[1059],"properties":{"ID":3113,"ELEV":3500}},{"type":"LineString","arcs":[1060],"properties":{"ID":3114,"ELEV":1500}},{"type":"LineString","arcs":[1061],"properties":{"ID":3115,"ELEV":1500}},{"type":"LineString","arcs":[1062],"properties":{"ID":3116,"ELEV":2500}},{"type":"LineString","arcs":[1063],"properties":{"ID":3117,"ELEV":2500}},{"type":"LineString","arcs":[1064],"properties":{"ID":3118,"ELEV":3000}},{"type":"LineString","arcs":[1065],"properties":{"ID":3119,"ELEV":3500}},{"type":"LineString","arcs":[1066],"properties":{"ID":3120,"ELEV":3500}},{"type":"MultiLineString","arcs":[[1067],[1068]],"properties":{"ID":3121,"ELEV":4500}},{"type":"LineString","arcs":[1069],"properties":{"ID":3122,"ELEV":1000}},{"type":"LineString","arcs":[1070],"properties":{"ID":3123,"ELEV":2000}},{"type":"LineString","arcs":[1071],"properties":{"ID":3125,"ELEV":1000}},{"type":"LineString","arcs":[1072],"properties":{"ID":3126,"ELEV":2500}},{"type":"LineString","arcs":[1073],"properties":{"ID":3127,"ELEV":3000}},{"type":"LineString","arcs":[1074],"properties":{"ID":3128,"ELEV":1000}},{"type":"LineString","arcs":[1075],"properties":{"ID":3129,"ELEV":2000}},{"type":"LineString","arcs":[1076],"properties":{"ID":3130,"ELEV":500}},{"type":"LineString","arcs":[1077],"properties":{"ID":3131,"ELEV":1500}},{"type":"MultiLineString","arcs":[[1078],[1079],[1080],[1081],[1082],[1083],[1084]],"properties":{"ID":3132,"ELEV":4000}},{"type":"LineString","arcs":[1085],"properties":{"ID":3133,"ELEV":500}},{"type":"LineString","arcs":[1086],"properties":{"ID":3134,"ELEV":1500}},{"type":"LineString","arcs":[1087],"properties":{"ID":3135,"ELEV":3000}},{"type":"LineString","arcs":[1088],"properties":{"ID":3136,"ELEV":500}},{"type":"LineString","arcs":[1089],"properties":{"ID":3137,"ELEV":500}},{"type":"LineString","arcs":[1090],"properties":{"ID":3138,"ELEV":2500}},{"type":"MultiLineString","arcs":[[1091],[1092],[1093],[1094],[1095],[1096]],"properties":{"ID":3139,"ELEV":3500}},{"type":"LineString","arcs":[1097],"properties":{"ID":3140,"ELEV":1500}},{"type":"LineString","arcs":[1098],"properties":{"ID":3141,"ELEV":1500}},{"type":"LineString","arcs":[1099],"properties":{"ID":3142,"ELEV":2500}},{"type":"LineString","arcs":[1100],"properties":{"ID":3143,"ELEV":3000}},{"type":"LineString","arcs":[1101],"properties":{"ID":3145,"ELEV":500}},{"type":"LineString","arcs":[1102],"properties":{"ID":3146,"ELEV":1000}},{"type":"LineString","arcs":[1103],"properties":{"ID":3147,"ELEV":1000}},{"type":"LineString","arcs":[1104],"properties":{"ID":3148,"ELEV":1500}},{"type":"LineString","arcs":[1105],"properties":{"ID":3149,"ELEV":2000}},{"type":"LineString","arcs":[1106],"properties":{"ID":3150,"ELEV":3000}},{"type":"LineString","arcs":[1107],"properties":{"ID":3151,"ELEV":500}},{"type":"LineString","arcs":[1108],"properties":{"ID":3152,"ELEV":1000}},{"type":"LineString","arcs":[1109],"properties":{"ID":3153,"ELEV":1000}},{"type":"LineString","arcs":[1110],"properties":{"ID":3155,"ELEV":2000}},{"type":"LineString","arcs":[1111],"properties":{"ID":3157,"ELEV":500}},{"type":"LineString","arcs":[1112],"properties":{"ID":3158,"ELEV":1000}},{"type":"MultiLineString","arcs":[[1113],[1114],[1115],[1116],[1117]],"properties":{"ID":3160,"ELEV":3000}},{"type":"LineString","arcs":[1118],"properties":{"ID":3161,"ELEV":2500}},{"type":"LineString","arcs":[1119],"properties":{"ID":3162,"ELEV":500}},{"type":"LineString","arcs":[1120],"properties":{"ID":3164,"ELEV":1500}},{"type":"LineString","arcs":[1121],"properties":{"ID":3167,"ELEV":500}},{"type":"LineString","arcs":[1122],"properties":{"ID":3168,"ELEV":1500}},{"type":"LineString","arcs":[1123],"properties":{"ID":3170,"ELEV":2000}},{"type":"LineString","arcs":[1124],"properties":{"ID":3172,"ELEV":1500}},{"type":"LineString","arcs":[1125],"properties":{"ID":3173,"ELEV":1500}},{"type":"LineString","arcs":[1126],"properties":{"ID":3174,"ELEV":1500}},{"type":"LineString","arcs":[1127],"properties":{"ID":3177,"ELEV":500}},{"type":"LineString","arcs":[1128],"properties":{"ID":3178,"ELEV":1000}},{"type":"LineString","arcs":[1129],"properties":{"ID":3179,"ELEV":1500}},{"type":"LineString","arcs":[1130],"properties":{"ID":3180,"ELEV":2000}},{"type":"LineString","arcs":[1131],"properties":{"ID":3181,"ELEV":500}},{"type":"LineString","arcs":[1132],"properties":{"ID":3182,"ELEV":1500}},{"type":"LineString","arcs":[1133],"properties":{"ID":3183,"ELEV":2500}},{"type":"LineString","arcs":[1134],"properties":{"ID":3184,"ELEV":500}},{"type":"LineString","arcs":[1135],"properties":{"ID":3185,"ELEV":500}},{"type":"LineString","arcs":[1136],"properties":{"ID":3186,"ELEV":2500}},{"type":"LineString","arcs":[1137],"properties":{"ID":3187,"ELEV":500}},{"type":"LineString","arcs":[1138],"properties":{"ID":3188,"ELEV":1000}},{"type":"LineString","arcs":[1139],"properties":{"ID":3189,"ELEV":500}},{"type":"LineString","arcs":[1140],"properties":{"ID":3190,"ELEV":500}},{"type":"LineString","arcs":[1141],"properties":{"ID":3191,"ELEV":1500}},{"type":"LineString","arcs":[1142],"properties":{"ID":3192,"ELEV":1500}},{"type":"LineString","arcs":[1143],"properties":{"ID":3193,"ELEV":2500}},{"type":"LineString","arcs":[1144],"properties":{"ID":3194,"ELEV":500}},{"type":"LineString","arcs":[1145],"properties":{"ID":3195,"ELEV":500}},{"type":"LineString","arcs":[1146],"properties":{"ID":3198,"ELEV":1000}},{"type":"LineString","arcs":[1147],"properties":{"ID":3199,"ELEV":1500}},{"type":"MultiLineString","arcs":[[1148],[1149]],"properties":{"ID":3200,"ELEV":3000}},{"type":"LineString","arcs":[1150],"properties":{"ID":3203,"ELEV":1500}},{"type":"LineString","arcs":[1151],"properties":{"ID":3204,"ELEV":2000}},{"type":"LineString","arcs":[1152],"properties":{"ID":3205,"ELEV":1500}},{"type":"LineString","arcs":[1153],"properties":{"ID":3206,"ELEV":1500}},{"type":"LineString","arcs":[1154],"properties":{"ID":3207,"ELEV":2000}},{"type":"LineString","arcs":[1155],"properties":{"ID":3208,"ELEV":2500}},{"type":"LineString","arcs":[1156],"properties":{"ID":3210,"ELEV":2000}},{"type":"LineString","arcs":[1157],"properties":{"ID":3212,"ELEV":500}},{"type":"LineString","arcs":[1158],"properties":{"ID":3213,"ELEV":2000}},{"type":"LineString","arcs":[1159],"properties":{"ID":3214,"ELEV":2000}},{"type":"LineString","arcs":[1160],"properties":{"ID":3215,"ELEV":500}},{"type":"LineString","arcs":[1161],"properties":{"ID":3216,"ELEV":500}},{"type":"MultiLineString","arcs":[[1162],[1163],[1164]],"properties":{"ID":3219,"ELEV":2500}},{"type":"LineString","arcs":[1165],"properties":{"ID":3220,"ELEV":500}},{"type":"LineString","arcs":[1166],"properties":{"ID":3221,"ELEV":1000}},{"type":"LineString","arcs":[1167],"properties":{"ID":3222,"ELEV":2000}},{"type":"LineString","arcs":[1168],"properties":{"ID":3223,"ELEV":500}},{"type":"LineString","arcs":[1169],"properties":{"ID":3224,"ELEV":1000}},{"type":"LineString","arcs":[1170],"properties":{"ID":3225,"ELEV":1500}},{"type":"LineString","arcs":[1171],"properties":{"ID":3226,"ELEV":1500}},{"type":"MultiLineString","arcs":[[1172],[1173]],"properties":{"ID":3227,"ELEV":2000}},{"type":"LineString","arcs":[1174],"properties":{"ID":3228,"ELEV":500}},{"type":"LineString","arcs":[1175],"properties":{"ID":3229,"ELEV":1000}},{"type":"LineString","arcs":[1176],"properties":{"ID":3230,"ELEV":2000}},{"type":"LineString","arcs":[1177],"properties":{"ID":3231,"ELEV":2000}},{"type":"LineString","arcs":[1178],"properties":{"ID":3233,"ELEV":1500}},{"type":"LineString","arcs":[1179],"properties":{"ID":3235,"ELEV":1500}},{"type":"LineString","arcs":[1180],"properties":{"ID":3236,"ELEV":1500}},{"type":"LineString","arcs":[1181],"properties":{"ID":3237,"ELEV":500}},{"type":"LineString","arcs":[1182],"properties":{"ID":3238,"ELEV":1500}},{"type":"LineString","arcs":[1183],"properties":{"ID":3239,"ELEV":500}},{"type":"LineString","arcs":[1184],"properties":{"ID":3240,"ELEV":1500}},{"type":"LineString","arcs":[1185],"properties":{"ID":3241,"ELEV":2000}},{"type":"LineString","arcs":[1186],"properties":{"ID":3242,"ELEV":1500}},{"type":"LineString","arcs":[1187,1188,1189],"properties":{"ID":3243,"ELEV":1500}},{"type":"LineString","arcs":[1190],"properties":{"ID":3244,"ELEV":1000}},{"type":"LineString","arcs":[1191],"properties":{"ID":3245,"ELEV":500}}]}},"arcs":[[[1525,9864],[2,2],[-1,3]],[[2372,9735],[-5,13]],[[2376,9745],[-4,-10]],[[1728,9725],[-21,2],[0,3],[0,1],[21,2],[3,-3],[-3,-5]],[[2466,9630],[-11,0],[-5,9],[1,45],[4,7],[18,26]],[[1604,9544],[-4,4],[4,8],[14,-8],[-14,-4]],[[1853,9467],[13,36],[-13,27],[-21,-25],[-7,-2],[7,-27],[21,-9]],[[1894,9494],[6,9],[7,45],[8,36],[4,10],[-4,3],[-21,12],[-21,-7],[-2,-8],[-9,-46],[11,-27],[18,-18],[3,-9]],[[2102,9492],[5,11],[-5,6],[-19,-6],[19,-11]],[[2455,9497],[9,6],[-9,5],[-5,-5],[5,-6]],[[939,9406],[1,0]],[[913,9395],[5,-23],[21,34]],[[1687,9406],[3,6],[-3,13],[-21,-5],[-8,-8],[8,-6],[21,0]],[[1915,9395],[1,17],[-1,5],[-1,-5],[1,-17]],[[1624,9351],[14,16],[-14,33],[-18,-33],[18,-16]],[[1658,9960],[0,-4],[2,-45],[-15,-14],[-21,-16],[-20,-6],[-7,-9],[-1,-46],[8,-8],[20,-24],[9,-13],[-9,-26],[-3,-19],[3,-39],[1,-7],[-1,-1],[-4,1],[-16,5],[-5,-5],[-16,-45],[0,-1],[-8,-44],[-7,-46],[-6,-7],[-15,-38],[1,-45],[-7,-42],[-4,-4],[-9,-10]],[[1512,9321],[-12,-9],[-7,3]],[[1782,9993],[8,-19],[15,-18],[-6,-45],[12,-40],[2,-5],[-2,-6],[-21,-33],[-5,-7],[-15,-21],[-14,-24],[14,-13],[20,-12],[21,-14],[2,-6],[-2,-6],[-21,-31],[-3,-9],[-17,-27],[-21,1],[-21,-10],[-21,-8],[-20,5],[-7,-6],[7,-3],[20,2],[21,-12],[21,-5],[21,4],[20,13],[1,1],[20,22],[21,22],[2,1],[19,11],[6,-11],[3,-45],[-9,-40],[-2,-5],[-11,-46],[-8,-12],[-21,-7],[-21,4],[-20,-8],[-21,-7],[-21,1],[-21,2],[-18,-18],[-2,-2],[-2,2],[-19,39],[-21,-6],[-5,-33],[-16,-39],[-20,35],[-4,4],[-17,23],[-18,-23],[2,-45],[-4,-46],[0,-45],[-1,-1],[-21,-22],[-21,-11],[-8,-12]],[[2226,9313],[3,8],[-3,3],[-1,-3],[1,-8]],[[2024,9321],[-5,-34],[-8,34],[-13,20],[-19,26],[11,45],[8,9],[21,11],[19,-20],[2,-2],[5,-43],[-5,-19],[-16,-27]],[[1811,9310],[-5,11],[0,46],[5,5],[9,-5],[1,-46],[-10,-11]],[[881,9254],[4,22],[-5,24]],[[1624,9263],[19,13],[-19,9],[-12,36],[-8,41],[-21,-40],[0,-1],[-21,-32],[-21,-3],[-19,-10],[19,-10],[21,-3],[21,5],[21,3],[20,-8]],[[1126,9265],[-8,11],[-13,34],[-3,11],[3,7],[21,-5],[1,-2],[6,-45],[-7,-11]],[[1500,9226],[5,5],[-5,8],[-21,-1],[-12,4]],[[1424,9235],[5,-4],[8,-2],[21,-9],[21,5],[21,1]],[[981,9260],[-21,-16],[-21,21],[-8,11],[7,45],[1,8],[10,8]],[[1036,9357],[7,-16],[11,-20],[-10,-45],[-1,-3],[-2,3],[-19,32],[-21,2],[-10,-34],[-10,-16]],[[2157,9231],[-14,-19],[-16,19],[10,45],[-4,45],[0,46],[10,45],[-2,46],[-3,45],[-15,39],[-21,4],[-2,2],[-19,29],[-21,9],[-20,5],[-21,0],[-4,3],[4,3],[21,3],[20,12],[21,8],[18,19],[-18,27],[-21,-6],[-17,24],[-3,10],[-16,36],[16,32],[20,2],[21,5],[21,5],[4,1],[-4,2],[-21,4],[-21,15],[-18,24],[-2,3],[-21,28],[-21,4],[-13,11],[5,7]],[[2349,9751],[2,-17],[3,-4],[-3,-2],[-17,-44],[-4,-14],[-9,14],[-11,7],[-9,-7],[-12,-17],[-21,-4],[-8,21],[-13,34],[-3,12],[-18,29],[-20,11],[-21,-9],[-21,-16],[-3,-15],[1,-46],[2,-12],[4,-33],[-4,-17],[-11,-28],[4,-46],[7,-29],[8,-16],[-8,-33],[-5,-12],[-15,-46],[16,-45],[4,-9],[10,-37],[-9,-45],[-1,-3],[-7,-42]],[[1790,9192],[-20,17],[-21,16],[-7,6],[7,9],[21,23],[13,13],[-13,39],[-5,6],[-16,9],[-21,8],[-21,27],[0,2],[21,20],[21,4],[21,9],[20,11],[3,1],[18,7],[21,2],[11,-9],[9,-45],[1,-3],[20,-24],[5,-19],[-5,-32],[-3,-13],[3,-8],[13,-37],[-13,-33],[-12,33],[-8,16],[-21,8],[-21,-7],[-10,-17],[-11,-39]],[[1624,9185],[-20,-2],[-4,2],[4,42],[20,-41],[3,-1],[-3,0]],[[2060,9221],[-20,7],[-2,3],[2,12],[17,33],[3,2],[21,41],[21,-30],[10,-13],[3,-45],[-13,-6],[-12,6],[-9,11],[-8,-11],[-13,-10]],[[2536,9182],[-2,3],[2,46],[2,11],[8,-11]],[[1707,9134],[1,6],[-1,1],[0,-1],[0,-6]],[[1666,9133],[-10,7],[-11,11],[-21,-1],[-20,6],[-21,13],[-21,14],[-5,2],[-16,19],[-7,27],[7,7],[21,1],[21,9],[21,3],[13,-20],[7,-15],[21,-7],[21,-11],[6,-13],[1,-45],[-7,-7]],[[1936,9116],[11,24],[9,45],[-20,18],[-7,-18],[-3,-45],[10,-24]],[[1458,9138],[-21,-13],[-15,15],[15,12],[21,-11],[3,-1],[-3,-2]],[[835,9086],[5,9],[-2,3]],[[813,9082],[2,-2],[20,6]],[[2185,9086],[-5,9],[5,13],[10,-13],[-10,-9]],[[794,9013],[9,36],[-5,10]],[[789,9037],[5,-24]],[[1520,9033],[6,16],[-6,10],[-20,-10],[20,-16]],[[2330,9017],[6,32],[-6,22],[-3,-22],[3,-32]],[[1043,9031],[-17,18],[17,24],[9,-24],[-9,-18]],[[2268,9031],[-10,18],[10,33],[11,-33],[-11,-18]],[[2102,8999],[0,5],[0,1],[0,-1],[0,-5]],[[1604,8992],[-10,12],[10,4],[3,-4],[-3,-12]],[[2247,9001],[-3,3],[3,8],[3,-8],[-3,-3]],[[1230,8967],[-2,3]],[[1230,8968],[0,-1]],[[2517,8983],[-21,3],[-6,18],[-11,45],[17,29],[7,17],[-7,16],[-17,29],[17,31],[17,14],[4,8],[6,38],[-6,18],[-11,27],[-10,37],[-11,8],[-9,10],[-21,27],[-5,9],[-13,45],[-3,7],[-21,8],[-5,31],[4,45],[1,7],[6,38],[-2,46],[4,45],[1,45],[2,46],[1,1]],[[2475,9552],[-1,-4],[2,-12],[1,0]],[[2536,9073],[-8,-24],[0,-45],[-11,-21]],[[1915,8952],[11,7],[-11,5],[-8,-5],[8,-7]],[[2185,8955],[-21,-12],[-8,16],[8,9],[21,0],[2,-9],[-2,-4]],[[2663,8949],[-21,10],[-21,32],[-11,13],[6,11]],[[2668,8991],[-3,-32],[-2,-10]],[[1168,8951],[-12,8],[12,15],[4,-15],[-4,-8]],[[752,8904],[3,9],[1,46],[-4,8],[-2,-2]],[[740,8910],[12,-6]],[[2040,8910],[8,3],[-8,2],[-2,-2],[2,-3]],[[2310,8891],[3,22],[0,46],[4,45],[-7,2],[-1,-2],[-1,-45],[-3,-46],[5,-22]],[[1126,8905],[-8,8],[8,11],[3,-11],[-3,-8]],[[2766,8882],[-1,26]],[[2768,8904],[-2,-22]],[[1832,8842],[11,26],[-11,26],[-4,-26],[4,-26]],[[2746,8855],[-5,13],[5,20],[19,-20],[-19,-13]],[[711,8812],[6,11],[-6,5]],[[687,8814],[3,-19],[21,17]],[[2289,8817],[2,6],[-2,9],[-11,-9],[11,-6]],[[2060,8819],[-2,4],[2,7],[16,-7],[-16,-4]],[[2517,8811],[5,12],[-5,8],[-21,3],[-20,34],[0,1],[0,-1],[-8,-45],[8,-44],[20,32],[21,0]],[[979,8823],[-19,-27],[-21,7],[-21,18],[-6,2],[6,4],[9,41],[3,45],[5,46],[4,4],[21,-3],[1,-1],[9,-46],[11,-28],[20,1],[9,-18],[-9,-13],[-20,-22],[-2,-10]],[[1095,8823],[-11,-35],[-8,35],[5,45],[3,23],[21,-7],[3,-16],[-3,-8],[-10,-37]],[[1209,8792],[-21,8],[-5,23],[0,45],[-12,45],[-3,6],[-21,19],[-12,21],[12,27],[10,18],[4,40]],[[1159,9054],[-12,18],[-16,23],[16,43],[7,2],[-7,3],[-4,42],[4,42],[7,-42],[4,-13]],[[1187,9019],[-6,-15],[7,-29],[6,-16],[7,-46],[8,-20],[11,-25],[-5,-45],[-6,-31]],[[2808,8819],[-2,4],[2,16],[15,-16],[-15,-4]],[[960,8813],[-21,6],[-4,4],[1,45],[3,20],[21,10],[10,-30],[-3,-45],[-7,-10]],[[1832,8771],[2,6],[-2,17],[-9,-17],[9,-6]],[[1105,8766],[13,11],[-13,17],[-5,-17],[5,-11]],[[1873,8771],[0,6],[0,8],[5,-8],[-5,-6]],[[2393,8745],[-21,1],[-4,31],[-17,38],[-7,8],[7,9],[21,4],[21,-2],[3,-11],[15,-46],[-18,-32]],[[2579,8750],[-20,-9],[-11,36],[11,19],[20,17],[7,-36],[-7,-27]],[[1064,8760],[-5,17],[5,4],[2,-4],[-2,-17]],[[545,8695],[5,15]],[[543,8705],[2,-10]],[[1001,8722],[-4,10],[4,31],[16,-31],[-16,-10]],[[1666,8731],[3,1],[-3,3],[-2,-3],[2,-1]],[[2746,8713],[1,19],[-1,7],[-2,-7],[2,-19]],[[877,8721],[-3,11],[-6,45],[8,46],[1,16],[5,-16],[2,-46],[-2,-45],[-5,-11]],[[2081,8678],[20,9],[-20,17],[-11,-17],[11,-9]],[[2413,8669],[8,18],[-8,18],[-9,-18],[9,-18]],[[2704,8683],[0,4],[0,-4]],[[1396,8685],[-3,2],[-18,17],[-7,28],[7,45],[20,-45],[1,-16],[5,-29],[-5,-2]],[[2725,8684],[-1,3],[1,32],[1,-32],[-1,-3]],[[1204,8687],[-16,-31],[-10,31],[9,45],[1,10],[21,18],[6,-28],[-6,-23],[-5,-22]],[[1084,8673],[-20,-18],[-9,32],[0,45],[-12,31],[-7,14],[-8,46],[12,45],[3,4],[1,-4],[8,-45],[12,-20],[18,-26],[-6,-45],[8,-28],[19,-17],[-19,-14]],[[2517,8685],[-21,-20],[-7,22],[7,34],[21,-30],[2,-4],[-2,-2]],[[1188,8685],[0,2],[0,1],[1,-1],[-1,-2]],[[524,8613],[6,28],[-4,17]],[[518,8626],[6,-13]],[[2330,8641],[2,0],[-2,1],[-1,-1],[1,0]],[[1292,8643],[17,44],[4,10],[9,-10],[12,-17],[11,17],[9,39],[1,6],[-1,3],[-20,10],[-21,3],[-16,29],[-5,14],[-21,2],[-20,20],[-9,-36],[9,-24],[20,1],[9,-22],[-5,-45],[17,-44]],[[2579,8628],[3,13],[-3,7],[-2,-7],[2,-13]],[[2505,8641],[-9,-31],[-20,31],[-1,0],[-5,46],[6,23],[4,22],[16,40],[21,-23],[17,-17],[4,-15],[4,-30],[-4,-10],[-21,-17],[-12,-19]],[[1770,8640],[-2,1],[2,4],[3,-4],[-3,-1]],[[2600,8640],[0,1],[0,10],[1,-10],[-1,-1]],[[1043,8636],[-3,5],[3,4],[5,-4],[-5,-5]],[[1458,8596],[1,0],[-1,1],[-2,-1],[2,0]],[[2663,8576],[17,20],[-17,10],[-5,-10],[5,-20]],[[1354,8573],[-14,23],[14,45],[0,1],[1,-1],[13,-45],[-14,-23]],[[1915,8595],[-1,1],[-16,45],[17,15],[6,-15],[10,-45],[-16,-1]],[[2870,8578],[-1,18],[1,3],[2,-3],[-2,-18]],[[960,8524],[16,27],[-16,14],[-7,-14],[7,-27]],[[2393,8527],[-10,24],[10,20],[9,-20],[-9,-24]],[[2559,8549],[-1,2],[1,14],[4,-14],[-4,-2]],[[1604,8547],[-9,4],[9,5],[8,-5],[-8,-4]],[[1687,8540],[-13,11],[13,16],[1,-16],[-1,-11]],[[2642,8494],[1,11],[-1,3],[-1,-3],[1,-11]],[[2974,8482],[6,23],[-6,33],[-7,-33],[7,-23]],[[1313,8504],[-21,0],[-1,1],[1,5],[13,41],[-7,45],[15,40],[16,-40],[-9,-45],[-6,-46],[-1,-1]],[[2932,8491],[-4,14],[4,36],[4,-36],[-4,-14]],[[1105,8505],[-21,-18],[-1,18],[1,15],[21,-14],[0,-1]],[[1666,8497],[-14,8],[14,32],[6,-32],[-6,-8]],[[1583,8490],[-6,15],[-7,46],[13,13],[21,23],[9,9],[11,15],[6,-15],[15,-28],[21,17],[7,11],[-7,38],[-1,7],[1,4],[4,-4],[17,-14],[10,-31],[-2,-45],[-4,-46],[-4,-3],[-21,-29],[-21,2],[-12,30],[-9,21],[-20,0],[-17,-21],[-4,-15]],[[1500,8420],[-21,38],[-1,2],[1,5],[21,8],[17,-13],[-17,-40]],[[2600,8410],[3,4],[-3,5],[-21,5],[-10,-10],[10,-26],[21,22]],[[1126,8406],[2,8],[17,46],[-19,12],[-6,-12],[2,-46],[4,-8]],[[1790,8410],[-20,-2],[-21,-38],[-19,44],[19,28],[21,-10],[20,-10],[4,-8],[-4,-4]],[[1084,8395],[-9,19],[4,46],[-4,45],[3,46],[6,15],[10,-15],[11,-16],[18,-30],[-18,-37],[-5,-8],[-2,-46],[-14,-19]],[[2143,8342],[11,27],[6,45],[-14,46],[-3,7],[-12,38],[-5,46],[17,37],[4,8],[-4,9],[-13,36],[-4,46],[-3,3],[-19,-3],[5,-46],[13,-45],[-1,-45],[-15,-46],[13,-45],[4,-10],[10,-36],[-4,-45],[14,-27]],[[2559,8350],[14,19],[-14,28],[-18,-28],[18,-19]],[[1147,8335],[-14,34],[8,45],[6,16],[17,-16],[-8,-45],[-9,-34]],[[877,8304],[9,20],[-9,11],[-10,-11],[10,-20]],[[1977,8299],[9,25],[-9,41],[-9,-41],[9,-25]],[[2517,8320],[7,4],[-7,7],[-19,38],[-2,4],[-7,-4],[7,-16],[11,-29],[10,-4]],[[2704,8306],[20,18],[-20,9],[-12,-9],[12,-18]],[[1168,8282],[-21,11],[-18,31],[-3,6],[-21,28],[-20,11],[-1,1],[-20,42],[-3,2],[3,4],[6,42],[-2,45],[-2,46],[-2,10],[-21,33],[-2,2],[-19,33],[-10,12],[10,9],[21,29],[2,8],[-1,45],[-1,4],[-20,41],[-1,3],[-21,39],[-20,-15],[-21,-24],[-21,7],[-21,13],[-20,-16],[-2,-7],[2,-10],[11,-35],[-11,-17],[-14,-28],[-7,-40],[-2,-6],[-19,-19],[-10,19],[-6,46],[16,29],[5,16],[-5,31],[-2,14],[2,7],[10,39],[1,45],[-11,34],[-3,11],[-13,46],[16,13],[8,-13],[13,-31],[6,-15],[15,-34],[17,34],[-3,46],[3,45],[3,12],[11,-12],[10,-7],[21,-18],[15,-20],[6,-28],[20,8],[8,-26],[13,-29],[16,29],[5,9],[5,-9],[9,-45],[7,-38],[6,38],[4,45],[10,30],[20,16],[1,1],[21,12],[14,32],[-14,43],[-1,2],[-20,33],[-4,13],[4,30],[13,15],[8,9],[7,36],[-7,29],[-9,17],[-12,20],[-14,25],[-7,23],[-11,22],[-9,31],[-6,15],[1,2]],[[1255,8941],[-4,-13],[-21,-10],[-3,-5],[3,-8],[21,-25],[20,22],[5,11],[2,5]],[[1311,8911],[2,-9],[11,11],[10,9],[3,13]],[[1365,9045],[10,-10],[8,14],[1,46],[0,45],[12,38],[18,-38],[3,-12],[7,-33],[-7,-28],[-7,-18],[-3,-45],[2,-45],[8,-16],[9,16],[11,28],[21,-15],[6,-13],[9,-46],[6,-4],[6,4],[15,17],[20,-15],[21,21],[11,23],[10,25],[21,5],[9,-30],[-4,-46],[16,-40],[20,-5],[21,19],[21,15],[21,-10],[20,-22],[2,-2],[19,-29],[3,-16],[-3,-5],[-21,-10],[-20,4],[-21,-12],[-20,-23],[-1,-1],[-13,-44],[-3,-45],[9,-46],[7,-27],[3,27],[8,46],[10,14],[21,-5],[3,-9],[17,-35],[7,-11],[-1,-45],[-6,-16],[-5,-29],[5,-31],[7,-15],[-7,-17],[-20,-7],[-15,-21],[-6,-14],[-13,-32],[-8,-22],[-8,22],[-1,46],[-12,31],[-19,14],[-1,1],[-1,-1],[-14,-45],[-6,-22],[-8,-24],[-13,-16],[-18,16],[11,46],[0,45],[-10,46],[-4,6],[-21,35],[-1,4],[-8,45],[9,16],[14,-16],[7,-9],[21,-21],[8,-15],[13,-13],[10,13],[5,45],[-12,46],[-3,37],[-1,8],[-5,45],[-15,13],[-21,28],[-21,-1],[-20,-35],[-21,18],[-21,21],[-1,2],[-20,32],[-12,13],[-8,16],[-21,8],[-18,-24],[4,-45],[14,-44],[0,-2],[0,-16],[-14,16],[-7,2],[-21,42],[-20,-2],[-21,-41],[-14,45],[-7,11],[-21,-9],[-20,39],[-21,-32],[-2,-9],[-4,-46],[6,-31],[4,-14],[-4,-9],[-10,-36],[-2,-46],[-9,-35],[-21,18],[-10,17],[-10,43],[-1,3],[1,6],[3,39],[2,45],[-5,35],[-3,11],[2,45],[-20,38],[-13,-38],[-8,-15],[-12,-30],[12,-34],[4,-12],[2,-45],[-6,-43],[0,-2],[-1,-46],[-20,-11],[-17,-34],[17,-23],[21,-14],[15,-8],[-3,-46],[9,-43],[21,39],[16,-41],[-7,-46],[-6,-45],[14,-45],[-17,-42]],[[1230,8319],[-5,5],[-16,32],[-3,13],[3,8],[18,-8],[3,-7],[3,-38],[-3,-5]],[[1749,8292],[-16,32],[16,43],[4,-43],[-4,-32]],[[2663,8314],[-3,10],[3,4],[1,-4],[-1,-10]],[[669,8277],[0,1],[0,2],[1,-2],[-1,-1]],[[1645,8275],[2,3],[-2,6],[-3,-6],[3,-3]],[[1479,8273],[-21,0],[-6,5],[6,21],[21,-2],[3,-19],[-3,-5]],[[1541,8275],[-3,3],[-18,34],[-13,12],[-7,18],[-4,27],[-12,45],[-5,9],[-18,37],[-3,14],[-5,31],[5,17],[21,1],[10,-18],[11,-12],[20,-3],[13,-30],[5,-46],[-11,-45],[-3,-45],[17,-41],[3,-5],[-3,-3]],[[2663,8272],[-21,4],[-3,2],[3,13],[3,33],[18,28],[12,-28],[-9,-46],[-3,-6]],[[815,8232],[0,1],[0,1],[-1,-1],[1,-1]],[[2185,8231],[15,2],[-15,1],[-1,-1],[1,-2]],[[2226,8223],[13,10],[-13,8],[-19,-8],[19,-10]],[[1936,8220],[-14,13],[14,15],[3,-15],[-3,-13]],[[2953,8211],[10,22],[-7,45],[3,46],[-5,45],[-1,2],[0,-2],[-2,-45],[2,-46],[-14,-45],[14,-22]],[[2496,8222],[-9,11],[9,7],[13,-7],[-13,-11]],[[314,8188],[2,39],[0,6],[21,38],[21,-1],[20,4],[5,1]],[[289,8176],[6,-11],[19,23]],[[2289,8176],[13,12],[-13,7],[-21,5],[-11,-12],[11,-10],[21,-2]],[[565,8182],[-20,2],[-4,4],[-17,25],[-21,-2],[-7,22],[7,31],[21,-17],[21,10],[14,-24],[6,-27],[10,-18],[-10,-6]],[[1541,8158],[9,30],[-9,7],[-6,-7],[6,-30]],[[2559,8187],[2,1],[-2,0],[-1,0],[1,-1]],[[648,8138],[2,4],[-2,10],[-5,-10],[5,-4]],[[2393,8142],[0,46],[0,2],[-1,-2],[-20,-36],[-21,-1],[-21,7],[-19,-16],[19,-19],[21,9],[21,-28],[21,38]],[[1998,8117],[-7,25],[2,46],[5,38],[14,-38],[-6,-46],[-8,-25]],[[2123,8101],[-7,41],[7,34],[3,-34],[-3,-41]],[[2683,8140],[2,2],[-2,4],[-15,42],[-3,45],[-2,3],[-10,-3],[-7,-45],[17,-20],[17,-26],[3,-2]],[[3078,8141],[-1,1],[1,1],[0,-1],[0,-1]],[[2310,8064],[7,33],[-7,42],[-10,-42],[10,-33]],[[1500,8092],[2,5],[-2,2],[-12,-2],[12,-5]],[[3318,8087],[-12,2],[-2,8],[0,9]],[[607,8049],[-5,3],[5,2],[4,-2],[-4,-3]],[[2289,8015],[17,37],[-17,27],[-12,-27],[12,-37]],[[2019,8049],[-1,3],[1,4],[2,-4],[-2,-3]],[[1251,8051],[-1,1],[1,0],[0,-1]],[[1022,8051],[-4,1],[4,33],[1,-33],[-1,-1]],[[1168,8022],[-21,-11],[-4,41],[4,40],[9,5],[12,2],[0,-2],[14,-45],[-14,-30]],[[2579,8036],[-4,16],[4,28],[5,-28],[-5,-16]],[[2995,8018],[-2,34],[-5,45],[-14,44],[0,1],[0,2],[21,3],[6,-5],[4,-45],[-8,-45],[-2,-34]],[[2268,7981],[17,25],[-17,28],[-19,-28],[19,-25]],[[2621,8000],[-6,6],[3,46],[3,8],[18,-8],[-11,-46],[-7,-6]],[[628,7958],[4,3],[-4,5],[-21,0],[-9,-5],[9,-5],[21,2]],[[1458,7941],[8,20],[-8,20],[-15,25],[-6,15],[-2,-15],[2,-17],[9,-28],[12,-20]],[[835,7958],[-10,3],[10,14],[4,-14],[-4,-3]],[[1105,7949],[-21,2],[-2,10],[2,13],[21,23],[8,-36],[-8,-12]],[[1707,7947],[-20,4],[-5,10],[-1,45],[-2,46],[-1,45],[-12,14],[-5,31],[-3,46],[8,25],[21,-22],[3,-3],[17,-27],[9,27],[-6,45],[-3,14],[-6,31],[6,38],[21,3],[18,-41],[3,-11],[6,-34],[12,-45],[-13,-46],[-5,-17],[-21,-2],[-21,1],[-15,-27],[7,-45],[7,-46],[1,-3],[6,-42],[-6,-14]],[[2579,7961],[1,0],[-1,0]],[[2787,7923],[0,38],[-21,38],[-8,7],[8,13],[19,33],[-1,45],[-18,35],[-20,-2],[-14,12],[-7,35],[-13,11],[5,45],[5,45],[3,4],[4,-4],[17,-30],[9,-15],[11,-20],[7,20],[1,45],[-8,29],[-4,17],[4,13],[16,32],[5,25],[12,-25],[9,-15],[5,15],[-5,40],[-2,5],[-19,12],[-21,-11],[-2,-1],[-18,-2],[-21,-21],[-12,23],[-9,18],[-11,28],[11,19],[21,13],[21,-14],[16,27],[4,36],[21,1],[21,-33],[18,42],[3,5],[20,6],[17,-11],[4,-7],[7,-39],[5,-45],[9,-38],[2,-8],[5,-45],[14,-26],[3,-19],[-3,-37],[-9,37],[-12,28],[-4,17],[-17,34],[-19,-34],[6,-45],[5,-46],[1,-45],[-14,-18],[-6,18],[-14,37],[-18,-37],[1,-45],[-4,-18],[-15,-28],[1,-45],[14,-25],[2,-20],[-2,-13],[-8,-33],[-12,-45],[-1,-38]],[[2185,7910],[4,6],[-4,4],[-18,-4],[18,-6]],[[3161,7896],[6,20],[-6,17],[-18,-17],[18,-20]],[[3202,7908],[1,8],[-1,0],[-2,0],[2,-8]],[[358,7866],[-1,4],[1,5],[2,-5],[-2,-4]],[[2081,7864],[-21,0],[-9,6],[9,31],[21,-8],[5,-23],[-5,-6]],[[2247,7870],[9,0],[-9,0]],[[2123,7820],[0,5],[0,2],[-1,-2],[1,-5]],[[1894,7822],[-5,3],[5,2],[1,-2],[-1,-3]],[[2206,7816],[-21,-1],[-21,9],[0,1],[0,1],[21,12],[21,-3],[13,-10],[-13,-9]],[[2912,7800],[12,25],[-12,12],[-9,-12],[9,-25]],[[2413,7815],[-8,10],[-12,28],[-21,8],[-4,9],[4,8],[21,22],[20,-29],[1,-1],[15,-45],[-16,-10]],[[1707,7799],[7,26],[-7,40],[-15,-40],[15,-26]],[[3617,7825],[-20,-10],[-12,10],[-9,11],[-21,30],[-2,4],[-18,34],[-21,1],[-11,11],[-10,23],[-8,-23],[-13,-14],[-14,-32],[-6,-16],[-11,16],[2,46],[4,45],[-16,14],[-21,4],[-21,-11],[-3,-7],[-17,-32],[-21,7],[-21,8],[-9,17],[-12,28],[-4,17],[-17,35],[-13,11],[-7,11],[-21,1],[-14,33],[-1,45],[-6,20],[-21,4],[-20,-17],[-15,-7],[-6,-21],[-6,21],[-15,9],[-14,37],[7,45],[7,10],[21,34],[1,1],[20,19],[6,17]],[[3164,8380],[-3,3],[-21,-2],[-21,-7],[-2,-5],[-18,-25],[-21,13],[-5,12],[-10,45],[7,46],[-13,45],[-21,34],[-2,12],[2,18],[5,-18],[16,-45],[14,34]],[[3509,7935],[5,-10],[4,12]],[[3589,7872],[0,-2],[8,-25],[20,-20]],[[3659,7784],[-1,17]],[[3666,7799],[-7,-15]],[[399,7766],[13,14],[8,14],[21,20],[21,-14],[20,21],[12,4],[-12,8],[-15,37],[15,19],[21,26],[0,1],[21,45],[21,-4],[20,4],[1,0],[-1,3],[-20,13],[-21,-16],[-21,17],[-20,-17],[-1,-1],[-20,-13],[-21,-14],[-11,-17],[-10,-33],[-4,-13],[-17,-33],[-5,-12],[-16,-44],[-1,-1],[1,-1],[21,-13]],[[2891,7773],[5,7],[-5,6],[-1,-6],[1,-7]],[[1043,7763],[-9,17],[9,20],[11,-20],[-11,-17]],[[1666,7779],[-1,1],[1,2],[1,-2],[-1,-1]],[[2725,7778],[-1,2],[1,1],[1,-1],[-1,-2]],[[3119,7769],[-20,-1],[-3,12],[-8,45],[-10,25],[-12,20],[12,16],[21,8],[20,-19],[3,-5],[2,-45],[-3,-45],[-2,-11]],[[2019,7731],[1,3],[-1,38],[-8,-38],[8,-3]],[[2372,7712],[9,22],[-9,10],[-21,8],[-21,2],[-20,-6],[-21,4],[-21,19],[-3,9],[-18,18],[-17,-18],[17,-32],[8,-14],[13,-11],[21,-5],[21,-21],[20,7],[21,11],[21,-3]],[[3016,7731],[-21,-20],[-21,-4],[-18,27],[8,46],[10,12],[21,6],[14,27],[7,13],[20,14],[21,6],[13,-33],[-13,-18],[-21,-5],[-15,-22],[-1,-46],[-4,-3]],[[3265,7714],[2,20],[-2,10],[-7,-10],[7,-20]],[[2974,7730],[-3,4],[3,17],[11,-17],[-11,-4]],[[3763,7712],[-14,22],[1,5]],[[3771,7740],[2,-6],[-10,-22]],[[399,7673],[-19,16],[-2,5],[-5,40],[5,6],[8,-6],[13,-20],[17,-25],[-17,-16]],[[1334,7672],[3,17],[-3,5],[-4,-5],[4,-17]],[[2434,7688],[6,1],[-6,1],[-1,-1],[1,-1]],[[2642,7674],[6,15],[-6,13],[-21,7],[-12,-20],[12,-30],[21,15]],[[2683,7688],[6,1],[-6,2],[-17,43],[-3,12],[-7,-12],[7,-13],[19,-32],[1,-1]],[[2829,7682],[5,7],[-5,7],[-21,-5],[-2,-2],[2,-6],[21,-1]],[[2891,7686],[-1,3],[1,5],[6,-5],[-6,-3]],[[3244,7681],[1,8],[-1,1],[-21,4],[-11,-5],[11,-34],[21,26]],[[2746,7636],[6,8],[-6,5],[-4,-5],[4,-8]],[[3555,7639],[4,5],[-4,2],[-5,-2],[5,-5]],[[2040,7578],[3,20],[-3,28],[-5,-28],[5,-20]],[[565,7592],[-20,-16],[-21,13],[-10,9],[10,12],[21,11],[20,-7],[5,-16],[-5,-6]],[[2496,7584],[16,14],[-16,12],[-18,34],[-2,4],[-2,-4],[2,-6],[14,-40],[6,-14]],[[1687,7597],[0,1],[0,1],[-1,-1],[1,-1]],[[3805,7586],[4,12],[-4,8],[-5,-8],[5,-12]],[[1936,7552],[-1,1],[1,3],[0,-3],[0,-1]],[[3722,7542],[-2,11],[2,14],[12,-14],[-12,-11]],[[524,7502],[0,6],[-4,0],[4,-6]],[[2060,7506],[10,2],[-10,1],[-20,13],[-8,31],[-13,17],[-10,-17],[-6,-45],[16,-22],[21,16],[20,4]],[[3162,7508],[20,43],[10,2],[-10,12],[-21,-8],[-1,-4],[-20,-33],[-19,-12],[19,-25],[21,23],[1,2]],[[3327,7502],[-1,6],[1,14],[1,-14],[-1,-6]],[[2476,7425],[14,37],[-14,45],[-21,-45],[21,-37]],[[3036,7431],[0,31],[-2,46],[2,3],[6,-3],[-4,-46],[-2,-31]],[[856,7411],[-5,6],[-16,30],[-20,5],[-6,10],[6,34],[20,-24],[6,-10],[15,-38],[2,-7],[-2,-6]],[[731,7414],[-2,3],[2,2],[4,-2],[-4,-3]],[[3452,7407],[-10,10],[10,15],[18,-15],[-18,-10]],[[3942,7455],[-4,7],[0,3]],[[323,7371],[-7,-11],[-21,-7],[-8,18],[-1,46],[9,19],[21,23],[11,3],[10,7],[21,4],[2,-11],[-2,-31],[-3,-14],[-18,-19],[-14,-27]],[[1334,7367],[-6,4],[6,14],[8,-14],[-8,-4]],[[3638,7327],[19,44],[-3,46],[-16,24],[-13,21],[-7,6],[-21,3],[-19,37],[-2,3],[-21,8],[-7,-11],[7,-11],[21,-35],[0,-1],[21,-12],[20,-32],[1,-6],[9,-40],[11,-44]],[[939,7324],[2,2],[-2,4],[-3,-4],[3,-2]],[[1624,7322],[3,4],[-3,14],[-10,-14],[10,-4]],[[2123,7324],[-1,2],[1,1],[15,-1],[-15,-2]],[[2413,7314],[-6,12],[-14,43],[-21,-23],[-21,-4],[-21,27],[-1,2],[1,6],[3,40],[18,29],[21,2],[21,-9],[12,-22],[8,-17],[16,-29],[-5,-45],[-11,-12]],[[2725,7323],[1,3],[-1,3],[-20,-3],[20,-3]],[[2808,7326]],[[1604,7263],[6,18],[-6,37],[-10,-37],[10,-18]],[[2081,7253],[7,28],[-7,7],[-10,-7],[10,-28]],[[2206,7262],[-8,19],[8,12],[6,-12],[-6,-19]],[[2849,7272],[-2,9],[-14,45],[10,45],[4,46],[-13,45],[15,38],[14,-38],[-10,-45],[17,-37],[5,-9],[-5,-9],[-11,-36],[-8,-45],[-2,-9]],[[3182,7258],[-5,23],[5,16],[3,-16],[-3,-23]],[[877,7224],[17,11],[-17,16],[-7,-16],[7,-11]],[[1583,7222],[8,13],[-8,24],[-21,-1],[-9,-23],[9,-39],[21,26]],[[586,7214],[-7,21],[-1,46],[-13,35],[-3,10],[3,7],[20,38],[1,3],[21,41],[13,-44],[-13,-23],[-8,-22],[4,-45],[-8,-46],[-9,-21]],[[3431,7231],[7,4],[-7,14],[-9,-14],[9,-4]],[[3369,7233],[-1,2],[1,4],[2,-4],[-2,-2]],[[3057,7207],[-14,28],[-7,27],[-3,19],[3,5],[3,-5],[18,-32],[10,-14],[-10,-28]],[[3016,7227],[-8,8],[8,9],[4,-9],[-4,-8]],[[482,7179],[-4,11],[4,4],[5,-4],[-5,-11]],[[1147,7182],[-3,8],[2,45],[1,1],[4,-1],[16,-45],[-20,-8]],[[2455,7185],[7,5],[-7,12],[-5,-12],[5,-5]],[[2517,7182],[-5,8],[-16,19],[-20,19],[-4,7],[-17,41],[-5,5],[5,23],[21,-13],[4,-10],[16,-19],[21,-14],[18,-13],[-1,-45],[-17,-8]],[[3971,7183],[7,7],[-7,13],[-13,-13],[13,-7]],[[2995,7158],[-10,32],[10,31],[9,-31],[-9,-32]],[[2994,7190],[1,1],[0,-1],[0,-1],[-1,1]],[[607,7140],[-21,-13],[-21,-1],[-14,19],[-6,11],[-21,12],[-8,22],[8,6],[21,9],[20,3],[12,-18],[9,-14],[21,-28],[2,-3],[-2,-5]],[[939,7142],[-10,3],[10,11],[8,-11],[-8,-3]],[[1375,7142],[0,3],[0,8],[1,-8],[-1,-3]],[[2268,7139],[1,6],[-1,4],[-2,-4],[2,-6]],[[1749,7101],[-6,44],[6,17],[4,-17],[-4,-44]],[[2995,7120],[-15,25],[-4,45],[-2,37],[-1,8],[1,2],[21,17],[21,17],[19,-36],[-19,-35],[-4,-10],[-11,-45],[-6,-25]],[[378,7083],[-8,16],[8,14],[6,-14],[-6,-16]],[[2247,7078],[3,21],[-3,4],[0,-4],[0,-21]],[[1230,7072],[-21,14],[-21,11],[-20,-1],[-14,3],[14,17],[16,29],[-16,45],[20,5],[21,-4],[2,-1],[19,-31],[8,-14],[-1,-46],[-7,-27]],[[1749,7049],[-21,-10],[-19,15],[19,31],[21,13],[1,-44],[-1,-5]],[[2891,7046],[4,8],[-4,14],[-21,7],[-18,-21],[18,-34],[21,26]],[[3493,7048],[6,6],[-6,19],[-3,-19],[3,-6]],[[1022,7007],[-2,2],[2,2],[6,-2],[-6,-2]],[[2206,6999],[-7,10],[7,15],[3,-15],[-3,-10]],[[2849,7007],[1,2],[-1,1],[-5,-1],[5,-2]],[[3161,6972],[6,37],[-5,45],[-1,5],[-1,-5],[-3,-45],[4,-37]],[[3580,7009],[-4,-13],[-7,13],[-3,45],[-11,29],[-20,12],[-6,4],[1,46],[0,45],[-16,24],[-16,21],[15,46],[-8,45],[-12,44],[0,1],[0,3],[21,7],[18,-10],[3,-3],[19,-42],[1,-5],[12,-40],[-12,-44],[-1,-2],[-16,-45],[15,-45],[2,-5],[21,-35],[6,-6],[15,-36],[15,36],[6,8],[6,-8],[1,-45],[-7,-6],[-21,1],[-17,-40]],[[3348,7006],[-21,-3],[-14,6],[14,4],[21,-2],[1,-2],[-1,-3]],[[1417,6951],[5,12],[-5,8],[-5,-8],[5,-12]],[[1213,6963],[-4,-11],[-2,11],[-3,46],[-10,45],[-6,7],[-20,-2],[-21,-4],[-1,-1],[-20,-30],[-18,30],[-3,20],[-15,25],[15,6],[21,27],[7,13],[-7,21],[-21,19],[-5,5],[-16,20],[-20,12],[-21,2],[-8,11],[8,6],[21,16],[20,-3],[21,-3],[21,-7],[21,25],[12,12],[9,15],[9,-15],[11,-27],[14,-19],[7,-3],[21,-19],[21,0],[20,21],[21,-13],[19,-31],[-19,-44],[-2,-1],[-19,-14],[-11,-32],[-6,-45],[-3,-1],[-16,-44],[-5,-18],[-17,-28]],[[1704,6963],[-17,-34],[-21,-10],[-4,44],[4,21],[7,25],[-7,13],[-21,10],[-16,22],[16,20],[11,25],[10,33],[21,-4],[8,17],[12,19],[16,26],[5,16],[21,19],[21,1],[13,-36],[0,-45],[7,-21],[21,-9],[21,5],[11,-21],[9,-45],[-7,-45],[-13,-26],[-10,26],[-1,45],[-10,32],[-21,4],[-20,-8],[-7,-28],[-14,-40],[-9,-5],[-12,-7],[-21,-31],[-3,-8]],[[2427,6963],[-14,-18],[-6,18],[2,46],[4,5],[8,40],[-2,45],[-6,25],[-5,21],[5,24],[21,-8],[14,-16],[7,-9],[21,-29],[20,-1],[21,8],[21,-10],[21,0],[20,-3],[2,-2],[19,-18],[21,-6],[17,-21],[-17,-13],[-21,-9],[-21,-1],[-20,8],[-21,0],[-14,15],[-7,21],[-14,-21],[-7,-9],[-20,-11],[-21,-16],[-11,-9],[-10,-28],[-7,-18]],[[3680,6928],[6,35],[-6,16],[-6,-16],[6,-35]],[[1375,6909],[6,9],[-6,13],[-9,-13],[9,-9]],[[3016,6959],[-2,4],[-19,44],[-1,2],[-1,45],[-19,37],[-13,8],[2,46],[-1,45],[-9,28],[-21,7],[-13,10],[13,17],[21,-6],[21,32],[4,3],[-4,4],[-17,41],[13,45],[4,11],[19,-11],[2,0],[21,-22],[20,16],[12,-39],[9,-19],[16,-26],[5,-8],[19,-38],[2,-38],[1,-7],[11,-45],[8,-20],[7,-26],[14,-39],[1,-6],[-1,-27],[-1,-18],[-12,-46],[-8,-15],[-11,15],[-9,18],[-21,18],[-8,10],[-13,31],[-5,14],[-5,45],[-11,16],[-15,30],[-5,11],[-3,-11],[-3,-46],[6,-44],[0,-1],[12,-45],[-11,-46],[-1,-4]],[[1354,6841],[9,32],[-9,32],[-13,-32],[13,-32]],[[2268,6867],[6,6],[1,45],[4,45],[-2,46],[-9,35],[-6,-35],[-3,-46],[3,-45],[-15,-41],[-5,-4],[5,-8],[21,2]],[[2621,6838],[-21,11],[-21,19],[-2,5],[2,7],[14,38],[7,15],[18,-15],[3,-4],[13,-41],[-13,-35]],[[2995,6870],[-21,-18],[-14,21],[14,12],[21,-10],[1,-2],[-1,-3]],[[1936,6802],[9,25],[12,21],[20,17],[4,8],[17,40],[3,5],[8,45],[-11,21],[-10,25],[-5,45],[-6,11],[-15,34],[-5,31],[-10,15],[2,45],[-6,45],[-2,46],[-5,35],[-8,10],[8,17],[3,28],[18,36],[7,10],[13,22],[21,10],[10,13],[-10,33],[-21,-20],[-20,-6],[-21,-3],[-6,-4],[-15,-21],[-9,21],[-12,8],[-21,-4],[-10,-4],[10,-5],[21,-10],[15,-30],[4,-46],[-1,-45],[3,-13],[11,-32],[4,-46],[-7,-45],[11,-45],[-3,-46],[5,-9],[15,-36],[6,-15],[11,-30],[1,-46],[-6,-45],[-6,-15],[-21,-30],[-1,0],[-20,-18],[-11,-28],[11,-45]],[[1915,6782],[21,20]],[[2517,6823],[16,4],[-1,46],[-15,19],[-5,-19],[-16,-30],[-20,-13],[-6,-3],[6,-5],[20,-3],[21,4]],[[2579,6825],[1,2],[-1,1],[-20,9],[-13,-10],[13,-4],[20,2]],[[1654,6827],[-9,-16],[-21,-16],[-20,14],[-11,18],[-10,20],[-21,-9],[-9,35],[9,35],[21,-12],[21,-5],[20,-4],[9,31],[12,33],[3,12],[-3,14],[-21,23],[-20,3],[-4,6],[-4,45],[7,45],[1,1],[0,-1],[20,-16],[12,16],[9,14],[11,32],[7,45],[-2,45],[5,8],[6,-8],[15,-18],[20,3],[7,15],[-1,46],[15,6],[11,-6],[10,-9],[21,-6],[20,-16],[21,1],[21,-16],[-20,-45],[20,-14],[21,-13],[10,-18],[10,-24],[6,-22],[-6,-9],[-11,-36],[5,-45],[6,-13],[21,9],[21,-38],[0,-4],[0,-1],[-19,-44],[-2,-3],[-21,-17],[-15,20],[-5,5],[-19,-5],[-2,-1],[-2,1],[-19,8],[-17,37],[5,46],[-6,45],[-3,2],[-3,-2],[-17,-17],[-10,-28],[-11,-34],[-21,-5],[-4,-7],[-8,-45],[-9,-33],[-20,3],[-7,-15],[-14,-28],[-12,-18]],[[2289,6824],[-4,3],[4,2],[7,-2],[-7,-3]],[[2143,6822],[-20,-5],[-21,4],[-5,6],[5,7],[21,0],[20,30],[2,-37],[-2,-5]],[[3140,6823],[1,4],[-1,4],[-1,-4],[1,-4]],[[1105,6763],[3,19],[-3,22],[-2,-22],[2,-19]],[[1894,6737],[21,45]],[[1915,6782],[-21,23],[-15,-23],[15,-45]],[[1749,6772],[-8,10],[-13,29],[-4,16],[4,23],[21,-14],[3,-9],[1,-45],[-4,-10]],[[3119,6761],[9,21],[-9,11],[-6,-11],[6,-21]],[[4926,6779],[-1,3],[1,8],[3,-8],[-3,-3]],[[3369,6740],[-5,42],[5,9],[4,-9],[-4,-42]],[[856,6726],[-7,11],[7,10],[3,-10],[-3,-11]],[[2455,6733],[6,4],[0,45],[-6,24],[-21,-10],[-21,-12],[-1,-2],[1,-9],[14,-36],[7,-4],[21,0]],[[1666,6736],[0,1],[0,-1]],[[2766,6720],[-20,-21],[-13,38],[-8,17],[-13,28],[13,22],[14,-22],[7,-14],[20,-18],[12,-13],[-12,-17]],[[3285,6730],[-20,7],[20,4],[3,-4],[-3,-7]],[[3991,6717],[-20,10],[-21,3],[-4,7],[-2,45],[6,9],[3,-9],[18,-42],[20,25],[16,-28],[-16,-20]],[[4469,6735],[3,2],[-3,4],[-13,-4],[13,-2]],[[109,6647],[5,36]],[[111,6695],[-2,2],[-11,-6],[11,-44]],[[2060,6680],[-20,3],[-4,8],[4,17],[20,0],[7,-17],[-7,-11]],[[3535,6681],[6,10],[-6,10],[-21,-8],[-2,-2],[2,-17],[21,7]],[[3223,6685],[-21,-18],[-7,24],[7,11],[21,5],[8,-16],[-8,-6]],[[3389,6670],[-20,11],[-4,10],[4,43],[20,-2],[11,-41],[-11,-21]],[[690,6641],[-3,5],[3,3],[2,-3],[-2,-5]],[[2081,6644],[-21,-5],[-20,-1],[-21,-24],[-21,-1],[-12,33],[12,45],[19,46],[-2,45],[4,3],[21,-1],[6,-2],[14,-16],[21,-2],[6,-27],[3,-46],[-6,-45],[-3,-2]],[[3212,6646],[-10,-25],[-16,25],[-4,14],[-21,-3],[-15,34],[15,37],[21,-16],[20,25],[21,13],[21,4],[21,5],[20,1],[14,-23],[-14,-35],[-20,-8],[-3,-3],[-18,-40],[-21,12],[-11,-17]],[[3680,6672],[-21,-4],[-21,-7],[-6,30],[6,31],[5,15],[-5,15],[-20,-2],[-21,-7],[-17,39],[-4,43],[0,2],[-15,46],[-6,12],[-20,-4],[-11,-8],[-10,-7],[-15,-39],[4,-45],[-10,-41],[-11,41],[-10,22],[-20,19],[-3,4],[3,10],[12,36],[-12,27],[-21,6],[-7,12],[-7,45],[2,46],[-9,23],[-21,-6],[-5,-17],[-15,-24],[-9,-22],[-12,-28],[-21,19],[-19,9],[-2,1],[-14,45],[-7,27],[-13,-27],[2,-46],[-9,-22],[-21,22],[-21,-38],[-3,-7],[-18,-24],[-20,14],[-2,10],[2,28],[2,17],[13,46],[0,45],[-14,45],[10,46],[-11,28],[-4,17],[-16,45],[-1,8],[-5,38],[5,28],[4,17],[17,40],[3,5],[-3,17],[-2,29],[2,7],[13,-7],[7,-8],[21,-36],[1,-2],[-1,-5],[-5,-40],[-16,-45],[0,-7],[21,-35],[3,-4],[18,-30],[21,7],[13,-22],[7,-23],[17,23],[4,4],[2,-4],[4,-45],[5,-46],[-11,-35],[-5,-10],[5,-4],[21,1],[3,3],[18,19],[10,26],[11,36],[20,-34],[21,3],[4,-5],[17,-28],[21,9],[12,-26],[1,-45],[7,-35],[21,1],[21,7],[21,-7],[20,17],[12,-29],[3,-45],[6,-12],[20,-33],[1,-6],[7,-40],[14,-32],[20,-1],[21,7],[21,-2],[14,-17],[7,-5],[5,5],[16,21],[20,13],[4,11],[-4,12],[-10,34],[-10,24],[-7,21],[7,13],[16,32],[1,46],[3,34],[2,11],[0,45],[11,46],[8,11],[13,-11],[8,-13],[21,-3],[6,16],[14,29],[9,-29],[12,-25],[8,-21],[9,-45],[-13,-45],[-4,-17],[-14,-29],[-1,-45],[-6,-6],[-2,6],[-6,45],[-12,14],[-7,-14],[-14,-34],[-4,-11],[-4,-45],[4,-46],[4,-8],[18,-37],[-18,-28],[-21,-10],[-11,-7],[3,-46],[-13,-18],[-20,0],[-18,18],[-3,4],[-4,-4],[-17,-19]],[[3036,6634],[-20,-31],[-21,18],[-21,22],[-4,3],[-15,45],[-2,15],[-3,31],[-10,45],[13,18],[15,27],[-15,23],[-14,23],[-6,45],[20,23],[12,-23],[9,-9],[21,7],[21,-43],[-21,-38],[-9,-8],[-7,-45],[16,-30],[8,-15],[-7,-46],[20,-21],[20,-23],[1,-1],[-1,-12]],[[3867,6637],[-9,9],[9,4],[2,-4],[-2,-9]],[[3991,6619],[6,27],[-6,6],[-20,-6],[20,-27]],[[2746,6582],[1,19],[6,45],[-7,7],[-9,-7],[7,-45],[2,-19]],[[2922,8808],[-9,-31],[19,-29],[14,-16],[1,-45],[-1,-46],[5,-45],[2,-20],[2,-25],[-2,-7],[-16,7],[-5,2],[-20,40],[-2,3],[2,27],[0,18],[0,2],[-21,33],[-21,5],[-21,-20],[-13,26],[-7,41],[-1,4],[-20,41],[-12,-41],[2,-45],[10,-35],[1,-11],[-1,-2],[-1,2],[-20,38],[-3,8],[-15,45],[7,45],[0,46],[-10,4],[-3,-4],[-17,-22],[-11,22],[-10,31],[-7,14],[-14,30],[-15,-30],[-2,-45],[4,-46],[-2,-45],[-3,-45],[-3,-13],[-20,10],[-1,3],[-5,45],[5,45],[-20,28],[-8,18],[6,45],[-5,45],[-14,35],[-21,6],[-21,-1],[-6,6],[-14,9],[-7,-9],[7,-20],[5,-26],[15,-33],[4,-12],[-4,-36],[-20,34],[-21,-18],[-10,20],[-11,36],[-21,-24],[-7,33],[-13,29],[-7,17],[-9,45],[-5,9],[-6,-9],[-8,-45],[3,-46],[11,-38],[1,-7],[-1,-4],[-7,4],[-14,14],[-14,-14],[-7,-6],[-4,6],[-16,36],[-2,9],[-14,46],[16,29],[5,16],[1,45],[-6,32],[-2,14],[-7,45],[9,8],[4,-8],[16,-35],[9,-10],[12,-23],[17,23],[-17,42],[-1,3],[-3,45],[4,11],[21,7],[3,28],[-3,10],[-21,16],[-21,-4],[-20,-2],[-21,13],[-8,12],[-13,40],[-1,5],[1,17],[21,9],[20,-26],[1,0],[0,1],[-14,45],[-7,15],[-9,30],[7,46],[-8,45],[10,25],[9,20],[2,46],[-11,34],[-8,-34],[-13,-24],[-11,-22],[-10,-26],[-8,-19],[-4,-45],[-8,-16],[-21,6],[-9,10],[-12,20],[-7,25],[-8,45],[-6,23],[-5,23],[-9,45],[-6,45],[-1,2],[0,-2],[-8,-45],[-6,-45],[-6,-40],[-2,-6],[2,-3],[13,-42],[7,-45],[-20,-35],[-12,-11],[12,-16],[20,-6],[10,-23],[11,-30],[21,-8],[7,-8],[11,-45],[-18,-13],[-21,-10],[-13,-22],[13,-35],[15,-11],[-15,-2],[-4,2],[-17,30],[-20,14],[-21,-6],[-8,-38],[8,-22],[16,-23],[5,-7],[17,-38],[-12,-46],[-4,-45],[-1,-4],[-3,4],[-16,45],[-2,1],[-21,15],[-12,30],[2,45],[-11,15],[-18,-15],[-2,-1],[-1,1],[-20,42],[-21,-17],[-15,-25],[-6,-16],[-13,-29],[-7,-7],[-21,-3],[-3,10],[-6,45],[-4,45],[-8,25],[-8,21],[-13,18],[-20,15],[-10,12],[-11,31],[-2,14],[-2,46],[4,26],[3,19],[7,46],[11,7],[20,0],[21,13],[21,21],[6,4],[15,18],[7,-18],[13,-24],[21,-21],[0,-1],[0,1],[0,5],[-1,40],[-18,45],[-2,2],[-20,8],[-21,-4],[-8,-6],[-13,-12],[-21,-3],[-20,10],[-12,5],[10,46],[2,4],[20,17],[21,22],[2,2],[-2,3],[-16,42],[-5,14],[-20,12],[-17,20],[-4,12],[-10,33],[-4,45],[-7,7],[-9,-7],[-12,-8],[-10,8],[-11,21],[-10,25],[-10,32],[-4,13],[-5,45],[-7,43]],[[3410,6598],[-1,3],[-20,40],[-11,5],[-9,3],[-14,42],[0,46],[-7,39],[-4,6],[-17,32],[-21,1],[-10,12],[10,25],[21,-17],[6,-8],[15,-37],[20,37],[1,1],[0,-1],[20,-45],[10,-45],[11,-37],[4,-9],[12,-45],[-15,-45],[-1,-3]],[[4075,6599],[-11,2],[11,7],[1,-7],[-1,-2]],[[254,6555],[0,1],[0,-1]],[[794,6554],[-1,1],[-20,34],[-21,11],[0,1],[21,10],[2,-10],[19,-45],[1,-1],[-1,-1]],[[1926,6555],[-11,-3],[-3,3],[-1,46],[4,45],[21,14],[6,-14],[15,-37],[20,10],[12,-18],[-12,-10],[-20,-5],[-21,-25],[-10,-6]],[[3202,6539],[9,16],[-9,20],[-20,3],[-15,-23],[15,-38],[20,22]],[[4989,6555],[-1,-1],[0,1],[-9,46],[6,45],[3,19],[15,26],[6,25],[1,6]],[[4989,6557],[0,-2]],[[3452,6498],[5,12],[-5,21],[-10,-21],[10,-12]],[[2829,6486],[-11,24],[-10,41],[-1,4],[1,5],[16,-5],[5,-1],[14,-44],[-14,-24]],[[4760,6495],[-11,15],[11,11],[6,-11],[-6,-15]],[[4220,6498],[-5,12],[5,13],[17,-13],[-17,-12]],[[4468,6510],[1,0],[2,0],[-2,-1],[-1,1]],[[1749,6464],[4,0],[-4,2],[-1,-2],[1,0]],[[1998,6425],[18,39],[-18,42],[-17,-42],[17,-39]],[[2060,6458],[3,6],[-3,12],[-20,-5],[-18,39],[-3,5],[-15,-5],[15,-29],[7,-17],[14,-15],[20,9]],[[4739,6458],[-2,6],[2,11],[2,-11],[-2,-6]],[[3223,6422],[-8,42],[8,9],[19,-9],[-19,-42]],[[4261,6458],[-4,6],[4,14],[5,-14],[-5,-6]],[[4511,6464],[-2,0],[2,4],[0,-4]],[[1728,6417],[1,2],[-1,2],[-4,-2],[4,-2]],[[3638,6393],[-20,5],[-14,21],[14,22],[20,-10],[3,-12],[-3,-26]],[[4178,6402],[-5,17],[5,20],[6,-20],[-6,-17]],[[1707,6372],[2,2],[-2,13],[-20,-1],[-20,-12],[20,-20],[20,18]],[[1936,6372],[3,2],[-3,4],[-21,5],[-4,-9],[4,-1],[21,-1]],[[815,6353],[-12,21],[12,17],[20,-17],[-20,-21]],[[939,6343],[-21,20],[-6,11],[-14,42],[-1,3],[-20,39],[-3,6],[3,7],[6,-7],[15,-41],[2,-4],[18,-29],[21,-9],[4,-7],[-4,-31]],[[2621,6356],[-12,18],[-5,45],[17,30],[5,-30],[-2,-45],[-3,-18]],[[3285,6356],[-20,17],[-21,-2],[-5,3],[-16,12],[-20,33],[-1,3],[-20,9],[-16,33],[16,14],[20,14],[13,18],[8,16],[19,29],[-4,46],[6,35],[6,-35],[15,-45],[17,45],[3,6],[20,-6],[-12,-46],[-8,-10],[-15,-35],[-5,-44],[0,-2],[-1,-45],[1,-29],[20,-2],[14,-14],[-14,-18]],[[3514,6370],[-2,4],[2,1],[11,-1],[-11,-4]],[[3597,6368],[-3,6],[3,17],[4,-17],[-4,-6]],[[129,6353],[13,21],[-13,30],[-3,15],[3,9],[18,36],[3,7],[21,12],[17,-19],[4,-3],[17,-42],[3,-45],[0,-1],[21,-5],[3,6],[-3,10],[-12,35],[12,18],[21,19],[21,2],[8,6],[-8,5],[-21,4],[-21,24],[-10,13],[-11,7],[-20,7],[-21,8],[-13,23],[-8,18],[-21,24],[-11,4],[-9,38],[-1,7],[-12,13]],[[114,6577],[5,-22],[0,-18]],[[61,6432],[-4,-13],[10,-21],[19,-24],[2,-2],[21,-39],[20,20]],[[1292,6295],[-21,24],[-20,4],[-3,5],[3,41],[0,5],[20,17],[21,-13],[6,-4],[9,-46],[-15,-33]],[[1458,6326],[0,2],[0,2],[1,-2],[-1,-2]],[[3016,6327],[-21,-3],[-21,3],[-1,1],[1,24],[3,22],[18,5],[5,-5],[16,-39],[1,-7],[-1,-1]],[[2310,6288],[-18,40],[18,22],[7,-22],[-7,-40]],[[3326,6328],[-20,-29],[-21,19],[-10,10],[-10,13],[-21,4],[-21,17],[-17,12],[-4,6],[-20,3],[-21,-6],[-14,42],[-4,45],[18,37],[12,9],[-12,16],[-21,23],[-4,6],[4,46],[-13,45],[3,45],[7,46],[3,7],[21,21],[21,0],[20,8],[21,5],[21,3],[21,0],[20,-2],[21,-2],[10,-40],[-2,-46],[-8,-36],[-7,-9],[7,-4],[17,-41],[-4,-46],[-13,-36],[-6,-9],[-15,-37],[-1,-9],[1,-20],[21,0],[17,-25],[4,-17],[5,-28],[-5,-42],[-1,-4]],[[3974,6328],[17,31],[21,5],[17,10],[-17,8],[-21,13],[-20,-21],[-3,-46],[3,-17],[3,17]],[[4075,6327],[3,1],[-3,5],[-4,-5],[4,-1]],[[4199,6321],[7,7],[-7,9],[-4,-9],[4,-7]],[[4365,6326],[1,2],[-1,3],[-4,-3],[4,-2]],[[67,6261],[-21,13],[-4,9],[-8,45],[12,18],[15,-18],[6,-19],[6,-26],[-6,-22]],[[1396,6280],[-4,3],[4,8],[2,-8],[-2,-3]],[[963,6283],[-3,-5],[-21,-21],[-17,26],[-4,7],[-20,20],[-5,18],[-16,26],[-13,20],[-8,12],[-21,-11],[-9,44],[9,31],[5,14],[-5,11],[-20,20],[-21,-14],[-21,-4],[-21,-3],[-10,-10],[-11,-6],[-5,6],[3,46],[-18,35],[-21,9],[0,1],[-21,18],[-21,6],[-15,-24],[-5,-20],[-13,20],[-8,10],[-9,-10],[-12,-9],[-11,9],[-10,8],[-17,38],[-3,29],[-4,16],[-17,17],[-19,28],[-2,5],[-21,5],[-20,3],[-21,1],[-21,-11],[-21,19],[-21,-2],[-20,-15],[-19,41],[-2,3],[-21,17],[-21,21],[-20,-5],[-18,9],[18,16],[20,-6],[21,20],[12,15],[9,13],[21,-7],[5,-6],[15,-28],[21,-10],[21,-1],[4,-6],[17,-13],[21,12],[3,1],[17,4],[21,20],[21,-15],[21,18],[20,-5],[14,-22],[-7,-45],[7,-46],[-3,-45],[10,-25],[21,3],[19,22],[2,2],[20,36],[3,7],[16,46],[2,1],[2,-1],[19,-12],[21,-12],[20,-12],[8,-10],[13,-8],[21,3],[21,-15],[18,-25],[3,-35],[0,-10],[20,-19],[21,3],[21,14],[2,2],[19,7],[3,-7],[1,-46],[-4,-30],[-4,-15],[4,-5],[20,-17],[21,2],[16,20],[3,45],[2,5],[2,-5],[3,-45],[16,-18],[20,-4],[21,-17],[4,-7],[-4,-7],[-21,-24],[-20,2],[-21,-16],[17,-45],[4,-17],[12,-29],[-12,-11],[-18,-34]],[[3535,6251],[13,32],[-13,17],[-14,-17],[14,-32]],[[150,6228],[-21,5],[-11,5],[11,8],[21,23],[10,-31],[-10,-10]],[[1770,6232],[-21,6],[21,11],[16,-11],[-16,-6]],[[3119,6227],[-15,11],[-5,25],[-4,20],[4,8],[15,-8],[5,-4],[12,-41],[-12,-11]],[[3618,6215],[-11,23],[11,18],[7,-18],[-7,-23]],[[4926,6232],[-1,6],[-4,45],[5,11],[4,-11],[-3,-45],[-1,-6]],[[752,6187],[-4,5],[4,42],[7,-42],[-7,-5]],[[2060,6183],[1,9],[-1,1],[-17,-1],[17,-9]],[[2310,6183],[-15,9],[5,46],[10,38],[4,-38],[-2,-46],[-2,-9]],[[648,6145],[4,2],[-4,1],[-4,-1],[4,-2]],[[939,6137],[-9,10],[9,23],[8,-23],[-8,-10]],[[3075,6147],[-18,-22],[-17,22],[13,45],[4,2],[21,23],[10,-25],[-10,-29],[-3,-16]],[[3370,6147],[-1,-4],[-3,4],[-18,40],[-2,5],[2,23],[21,15],[20,-33],[1,-5],[-1,-4],[-19,-41]],[[3659,6141],[3,6],[-3,3],[-4,-3],[4,-6]],[[3588,6147],[-12,-33],[-8,33],[-13,26],[-6,19],[-4,46],[10,23],[14,22],[-7,45],[-7,17],[-20,-8],[-7,-9],[-14,-16],[-10,16],[-11,27],[-6,19],[6,43],[21,-11],[15,13],[6,7],[16,-7],[4,-4],[4,4],[17,45],[-6,46],[-15,20],[-20,19],[-21,-3],[-9,9],[9,17],[21,11],[20,3],[21,-8],[5,-23],[16,-36],[19,-9],[2,-1],[0,1],[20,37],[4,8],[0,46],[17,18],[5,-18],[11,-46],[5,-20],[9,-25],[-9,-25],[-12,-21],[2,-45],[10,-24],[9,-21],[12,-36],[1,-10],[-1,-4],[-7,4],[-14,19],[-21,-3],[-18,-16],[-3,-5],[-20,-21],[-21,6],[-10,-25],[4,-45],[6,-28],[8,-18],[-8,-16],[-9,-29]],[[4491,6147],[-1,-1],[-21,-2],[-4,3],[4,6],[21,-4],[1,-2]],[[3119,6100],[2,2],[-2,1],[0,-1],[0,-2]],[[2440,6102],[-6,-7],[-4,7],[-7,45],[11,43],[2,2],[19,46],[0,2],[7,43],[8,45],[1,46],[-5,45],[6,45],[4,41],[20,-6],[21,-3],[15,-32],[6,-31],[21,30],[0,1],[0,4],[-5,42],[-12,45],[3,46],[14,20],[20,12],[21,-19],[7,-13],[14,-29],[21,-12],[3,-5],[6,-45],[12,-20],[20,-11],[7,-15],[14,-33],[21,-9],[21,-3],[-21,-3],[-21,-25],[-11,-17],[-10,-11],[-5,11],[-15,19],[-9,-19],[-6,-46],[-6,-31],[-5,-14],[-16,-41],[-21,22],[-13,19],[-3,45],[-5,6],[-5,-6],[-15,-15],[-16,-30],[-5,-9],[-21,-18],[-21,-3],[-8,-15],[-6,-46],[-6,-19],[-16,-26],[-5,-14],[-15,-31]],[[4972,6119],[-5,-6],[-20,-10],[-2,44],[2,5],[2,6]],[[3036,6050],[14,6],[-14,5],[-19,41],[-1,4],[-20,41],[-1,5],[-2,-5],[2,-4],[17,-41],[-8,-46],[12,-10],[20,4]],[[3099,6054],[2,2],[-2,4],[-3,-4],[3,-2]],[[2870,6045],[-15,11],[-5,46],[20,45],[0,1],[21,17],[21,-13],[3,-5],[-3,-4],[-21,-33],[-2,-8],[-12,-46],[-7,-11]],[[2787,6033],[-9,23],[-6,46],[10,45],[-3,45],[6,46],[2,3],[1,-3],[3,-46],[0,-45],[17,-45],[-10,-46],[-11,-23]],[[4967,6053],[3,3],[-3,3],[-9,-3],[9,-3]],[[3763,6038],[-8,18],[8,16],[17,-16],[-17,-18]],[[1168,6009],[10,2],[-10,6],[-21,-5],[-2,-1],[2,0],[21,-2]],[[1271,6004],[-4,7],[4,11],[9,-11],[-9,-7]],[[1334,5985],[-21,-10],[-16,36],[-5,19],[-7,26],[7,8],[21,0],[21,1],[14,-9],[1,-45],[-15,-26]],[[2962,6011],[12,28],[13,17],[-13,15],[-21,-9],[-4,-6],[-12,-45],[16,-15],[9,15]],[[4616,6011],[19,20],[21,6],[11,19],[10,28],[13,18],[7,14],[11,-14],[10,-15],[4,15],[-4,41],[-1,4],[-5,45],[6,32],[2,14],[18,45],[-8,45],[-12,8],[-14,-8],[-7,-15],[-2,-30],[-5,-45],[-13,-29],[-21,15],[-7,-32],[0,-45],[-14,-40],[-7,-5],[-14,-8],[-11,-38],[5,-45],[6,-3],[2,3]],[[3638,5994],[9,17],[0,45],[-6,46],[-3,10],[-1,-10],[-7,-46],[-5,-45],[13,-17]],[[3576,6006],[-6,5],[-15,21],[-20,22],[-1,2],[1,5],[20,5],[7,-10],[14,-37],[2,-8],[-2,-5]],[[4158,6001],[4,10],[-4,20],[-6,25],[-15,37],[-6,9],[-15,23],[-21,-21],[-7,-2],[7,-3],[21,-18],[9,-25],[12,-25],[15,-20],[6,-10]],[[4282,6006],[2,5],[-2,6],[-5,-6],[5,-5]],[[1064,5960],[4,6],[-4,6],[-13,-6],[13,-6]],[[1728,5965],[0,1],[4,45],[-4,33],[-5,-33],[-16,-31],[-12,-14],[12,-35],[21,34]],[[3016,5962],[-4,4],[4,1],[1,-1],[-1,-4]],[[2782,5966],[-16,-9],[-7,9],[2,45],[-3,45],[-1,46],[-2,45],[-9,37],[-3,8],[3,8],[9,38],[11,40],[3,5],[9,45],[7,46],[2,5],[12,40],[9,22],[5,-22],[1,-45],[-6,-34],[-7,-12],[-2,-45],[9,-24],[5,-21],[-5,-18],[-7,-28],[7,-32],[18,-13],[1,-45],[-3,-46],[-16,-17],[-13,-28],[-8,-38],[-5,-7]],[[2372,5959],[-11,7],[0,45],[-10,29],[-6,16],[6,33],[21,-14],[21,-4],[13,-15],[-13,-38],[-3,-7],[-15,-45],[-3,-7]],[[3618,5935],[7,31],[-7,29],[-7,-29],[7,-31]],[[939,5912],[10,8],[-10,11],[-12,-11],[12,-8]],[[1022,5910],[17,10],[-17,32],[-19,14],[-2,0],[-20,-28],[-9,-18],[9,-5],[20,-3],[21,-2]],[[752,5898],[-21,3],[-6,19],[-14,39],[-6,7],[-15,20],[-14,25],[-7,20],[-21,14],[-20,-12],[-21,9],[-21,-9],[-10,23],[3,46],[7,15],[21,-5],[18,-10],[3,-3],[20,-31],[21,-2],[8,-10],[13,-22],[21,-13],[5,-10],[15,-35],[21,-6],[6,-4],[7,-46],[-13,-22]],[[3431,5895],[16,25],[-16,7],[-16,39],[-5,17],[-13,28],[-6,45],[-2,2],[-6,-2],[-14,-24],[-9,24],[-12,7],[-21,29],[-5,10],[-16,29],[-6,16],[-15,35],[-6,10],[-14,23],[-21,4],[-10,-27],[-11,-24],[-12,-21],[12,-19],[21,13],[21,-4],[18,-35],[2,-6],[21,-31],[4,-9],[17,-24],[21,11],[16,-32],[5,-4],[20,-20],[10,-21],[8,-46],[3,-7],[21,-18]],[[3825,5916],[5,4],[-5,10],[-5,-10],[5,-4]],[[4101,5920],[-6,-34],[-20,3],[-9,31],[9,25],[10,21],[-10,36],[-4,9],[4,5],[9,-5],[11,-9],[21,-29],[1,-7],[-1,-5],[-15,-41]],[[2247,5858],[4,17],[-4,6],[-3,-6],[3,-17]],[[3680,5873],[1,2],[-1,1],[-1,-1],[1,-2]],[[4012,5864],[1,11],[-1,4],[-1,-4],[1,-11]],[[4241,5915],[-5,5],[-6,46],[9,45],[-19,32],[-16,13],[4,46],[-9,27],[-8,18],[-13,20],[-17,25],[17,10],[9,-10],[12,-33],[3,-12],[18,-34],[17,-11],[4,-5],[20,-17],[21,16],[2,6],[-2,6],[-21,15],[-8,24],[-12,32],[-4,13],[4,20],[20,9],[6,17],[-6,12],[-20,25],[-13,8],[13,3],[20,29],[9,13],[-3,46],[15,33],[6,12],[15,26],[21,15],[3,4],[-3,9],[-21,28],[-21,-12],[-11,21],[-2,45],[-8,17],[-5,-17],[-15,-40],[-8,40],[-9,46],[-4,3],[-8,-3],[-13,-3],[-4,3],[-17,20],[-16,-20],[10,-46],[-14,-12],[-21,8],[-3,4],[3,3],[17,43],[-17,29],[-21,14],[-18,2],[-3,0],[-20,34],[-3,11],[3,3],[20,11],[21,-4],[8,-10],[13,-29],[21,14],[6,15],[-1,46],[-5,12],[-21,10],[-21,9],[-21,10],[-9,4],[9,6],[21,16],[14,23],[-14,26],[-2,2]],[[4086,6890],[-11,17],[-4,11],[-7,45],[10,25]],[[4070,7032],[-11,22],[-5,14],[-4,18]],[[4641,6941],[-2,-23],[-4,-13],[-14,-32],[-4,-46],[-3,-6],[-12,-39],[-8,-38],[-4,-7],[4,-12],[4,-34],[0,-45],[6,-45],[-4,-46],[-6,-10],[-9,10],[-12,15],[-21,26],[-2,5],[-16,45],[-3,8],[-15,37],[-5,14],[-12,-14],[9,-45],[-18,-40],[-5,-5],[5,-5],[21,-9],[20,-13],[9,-19],[12,-28],[12,-17],[9,-21],[8,-25],[-8,-18],[-11,-27],[-2,-45],[-8,-13],[-21,1],[-20,-18],[-18,30],[-3,4],[-2,-4],[2,-13],[9,-33],[-9,-10],[-21,-16],[-21,6],[-20,-11],[-21,-3],[-8,-11],[8,-43],[2,-2],[19,-5],[20,-10],[19,15],[2,2],[21,16],[21,3],[20,-14],[6,-7],[1,-46],[-7,-31],[-4,-14],[-16,-31],[-9,-14],[-10,-46],[-2,-9],[-9,-36],[-9,-45],[-3,-6],[-21,-17],[-20,-20],[-21,39],[-2,4],[1,45],[-10,45],[-10,16],[-21,4],[-21,3],[-11,-23],[11,-41],[1,-4],[-1,-5],[-10,-40],[-10,-4],[-21,-21],[-11,-21],[-10,-19],[-13,19],[-2,46],[-6,21],[-4,-21],[-10,-46],[-6,-5]],[[893,5830],[-16,-43],[-20,43],[-1,3],[-7,42],[-4,45],[11,44],[15,2],[6,0],[2,-46],[19,-40],[2,-5],[-2,-21],[-5,-24]],[[711,5819],[-11,11],[11,18],[17,-18],[-17,-11]],[[2932,5824],[2,6],[-2,5],[-3,-5],[3,-6]],[[4158,5822],[4,8],[-4,26],[-6,-26],[6,-8]],[[1126,5828],[-2,2],[-19,28],[-7,17],[7,34],[3,11],[1,46],[17,17],[21,-5],[21,0],[20,-4],[5,-8],[16,-46],[0,-5],[21,-35],[3,-5],[18,-36],[20,-3],[10,-6],[-10,-11],[-20,0],[-6,11],[-15,36],[-21,5],[-6,4],[-15,8],[-20,10],[-21,-13],[-5,-5],[-14,-45],[-2,-2]],[[981,5784],[-1,0],[1,0],[2,0],[-2,0]],[[2912,5777],[3,7],[-3,10],[-4,-10],[4,-7]],[[4531,5782],[1,2],[-1,3],[-3,-3],[3,-2]],[[3784,5776],[5,8],[-5,8],[-15,38],[-6,7],[-18,-7],[18,-24],[13,-22],[8,-8]],[[5161,5769],[-7,-7],[-21,13],[-5,9],[-15,22],[-21,0],[-21,15],[-21,2],[-8,7],[2,2]],[[1500,5738],[-1,1],[1,0],[1,0],[-1,-1]],[[1562,5700],[-21,-3],[-11,42],[11,11],[21,21],[20,-32],[-20,-39]],[[2891,5726],[5,13],[-5,13],[-21,-5],[-21,-5],[-3,-3],[3,-2],[21,-1],[21,-10]],[[2185,5715],[-21,0],[-21,-20],[-20,40],[-4,4],[-17,32],[-6,13],[6,7],[21,15],[20,13],[12,11],[9,28],[7,-28],[4,-46],[10,-17],[9,-28],[-9,-24]],[[3161,5737],[-1,2],[1,4],[1,-4],[-1,-2]],[[4988,5720],[-12,19],[-9,11],[-20,3],[-21,24],[-11,7],[-2,46],[-2,45],[15,20],[11,25],[10,45],[18,-45],[2,-5],[1,-3]],[[4991,5795],[4,-11],[1,-45],[-8,-19]],[[1084,5684],[14,10],[-14,16],[-11,-16],[11,-10]],[[1770,5669],[-21,23],[0,2],[0,1],[21,3],[10,-4],[-10,-25]],[[2829,5683],[2,11],[-2,18],[-21,-10],[-20,-8],[20,-22],[21,11]],[[3078,5655],[-4,39],[4,13],[4,-13],[-4,-39]],[[4075,5691],[-2,3],[2,6],[1,-6],[-1,-3]],[[2268,5642],[-3,6],[-4,46],[2,45],[-1,45],[6,18],[12,-18],[-5,-45],[2,-45],[-2,-46],[-7,-6]],[[2538,5642],[-1,6],[1,5],[1,-5],[-1,-6]],[[4511,5621],[7,27],[-1,46],[-6,17],[-3,-17],[-1,-46],[4,-27]],[[2974,5642],[-21,-3],[-3,9],[3,10],[21,-2],[21,-8],[-21,-6]],[[3057,5625],[-5,23],[5,18],[20,-18],[-20,-23]],[[4178,5640],[-20,6],[-2,2],[2,14],[20,-5],[12,-9],[-12,-8]],[[1977,5597],[5,6],[-2,45],[3,46],[-6,7],[-5,-7],[-5,-46],[-10,-16],[-12,-29],[12,-45],[20,39]],[[2060,5594],[-5,9],[-3,45],[8,22],[15,-22],[-9,-45],[-6,-9]],[[2143,5591],[-4,12],[4,35],[13,-35],[-13,-12]],[[3431,5594],[-21,-21],[-21,7],[-20,21],[-21,-29],[-21,21],[-14,10],[-7,6],[-16,39],[16,38],[5,8],[16,40],[13,-40],[8,-17],[21,-8],[20,-15],[21,2],[17,38],[4,8],[4,-8],[13,-46],[-5,-45],[-12,-9]],[[1043,5555],[-2,3],[-19,23],[-21,8],[-8,14],[-12,21],[-21,-1],[-21,25],[21,25],[12,21],[-4,45],[-8,5],[-16,-5],[-5,-3],[-4,3],[-17,34],[-3,11],[3,9],[11,37],[10,13],[21,30],[21,-20],[20,1],[21,1],[19,-25],[2,-10],[9,-36],[-9,-22],[-7,-23],[-14,-38],[-21,-7],[0,-1],[12,-45],[9,-19],[21,-13],[15,-13],[-1,-45],[-14,-3]],[[1853,5546],[-21,-8],[-17,20],[17,37],[21,-30],[3,-7],[-3,-12]],[[2476,5545],[6,13],[-6,22],[-21,0],[-21,-11],[-3,-11],[3,-42],[21,20],[21,9]],[[4490,5547],[5,11],[10,45],[-15,14],[-14,-14],[2,-45],[12,-11]],[[3452,5556],[1,2],[-1,2],[-21,2],[-4,-4],[4,-15],[21,13]],[[3265,5558],[0,-1],[-21,-2],[-1,3],[-17,45],[-3,8],[-10,37],[-11,23],[-20,0],[-21,11],[-19,12],[-2,16],[-21,-3],[-12,-13],[-8,-20],[-3,-26],[-18,-29],[-11,-16],[-10,-21],[-21,17],[-1,4],[1,8],[6,37],[10,46],[-15,45],[13,45],[7,4],[2,-4],[19,-31],[21,22],[20,-24],[21,-8],[11,41],[-2,46],[3,45],[9,9],[9,-9],[12,-14],[20,-4],[11,-27],[-10,-46],[1,-45],[19,-17],[12,-28],[9,-12],[15,-34],[6,-24],[20,-6],[11,-15],[-11,-5],[-20,-40]],[[4303,5557],[-21,-5],[-3,6],[3,17],[11,28],[6,45],[-12,46],[4,45],[12,13],[21,4],[20,-2],[15,-15],[-15,-42],[-1,-3],[-19,-46],[0,-5],[-17,-40],[-4,-45],[0,-1]],[[1901,5512],[14,33],[21,-1],[20,14],[-20,21],[-16,24],[-5,14],[-6,31],[5,46],[1,1],[10,44],[-10,26],[-21,12],[-3,7],[-17,46],[-1,0],[-15,45],[-5,12],[-9,-12],[2,-45],[7,-36],[3,-10],[7,-45],[-10,-25],[-18,25],[-3,8],[-1,-8],[1,-19],[4,-26],[17,-24],[8,-22],[9,-45],[3,-9],[10,-36],[4,-46],[7,-42],[7,42]],[[2185,5506],[-4,6],[4,8],[5,-8],[-5,-6]],[[3452,5509],[-2,3],[2,3],[3,-3],[-3,-3]],[[4158,5475],[-21,-3],[-21,38],[-21,-21],[-14,23],[14,16],[21,-5],[5,35],[-3,45],[-2,31],[-1,14],[1,9],[5,37],[16,41],[1,4],[-1,7],[-21,21],[-8,17],[-13,29],[-3,17],[3,28],[21,-5],[6,22],[15,43],[21,-5],[4,-38],[16,-20],[21,15],[17,-40],[4,-8],[19,-38],[0,-45],[2,-44],[0,-1],[0,-1],[-10,-45],[-6,-45],[-5,-9],[-21,-7],[-21,-14],[-13,-15],[1,-46],[-8,-37]],[[1749,5460],[-21,-20],[-10,27],[-11,32],[-5,13],[-2,46],[-4,45],[-9,11],[-12,34],[-9,24],[-11,22],[-10,17],[-11,28],[6,45],[5,16],[8,-16],[13,-20],[9,-25],[12,-22],[10,-23],[6,-46],[4,-19],[7,-26],[1,-45],[13,-30],[9,-16],[12,-37],[3,-8],[-3,-7]],[[4445,5467],[3,8],[17,37],[-17,17],[-20,-10],[-8,-7],[-13,-19],[-16,-26],[16,-34],[21,12],[17,22]],[[3535,5439],[3,28],[-3,8],[-6,-8],[6,-28]],[[3701,5462],[2,5],[-2,16],[-3,-16],[3,-5]],[[3846,5430],[-21,32],[-1,5],[-2,45],[-15,46],[0,45],[18,30],[13,-30],[5,-45],[3,-23],[4,-23],[4,-45],[-8,-37]],[[1666,5408],[-8,13],[-13,12],[-12,34],[6,45],[-15,36],[-4,10],[-16,31],[-7,14],[-14,26],[-12,19],[-9,10],[-21,-5],[-21,14],[-20,27],[-21,20],[-21,25],[-21,18],[-20,-1],[-21,-10],[-10,-7],[-11,-8],[-7,8],[-14,17],[-20,13],[-21,10],[-4,5],[4,8],[21,9],[20,15],[21,-8],[20,22],[1,3],[21,27],[20,-24],[4,-6],[17,-32],[9,-14],[12,-21],[21,20],[20,-6],[5,7],[16,23],[19,23],[2,4],[2,-4],[19,-16],[21,-21],[3,-9],[-2,-45],[-1,-45],[20,-33],[12,-13],[9,-16],[8,-29],[12,-45],[-7,-46],[8,-32],[8,-13],[-5,-46],[-3,-13]],[[3036,5398],[-5,23],[5,17],[13,-17],[-13,-23]],[[3680,5419],[-2,2],[2,6],[4,-6],[-4,-2]],[[3742,5402],[-20,-10],[-18,29],[18,37],[20,2],[17,-39],[-17,-19]],[[4199,5401],[-1,20],[1,3],[3,-3],[-3,-20]],[[3722,5408],[-9,13],[9,17],[17,-17],[-17,-13]],[[3991,5414],[-5,7],[5,8],[3,-8],[-3,-7]],[[1624,5348],[3,28],[-3,5],[-15,-5],[15,-28]],[[2330,5365],[4,11],[-4,5],[-8,-5],[8,-11]],[[1998,5374],[0,2],[0,2],[-2,-2],[2,-2]],[[2476,5371],[-21,1],[-21,-10],[-21,-3],[-2,17],[2,4],[21,13],[21,1],[5,27],[-5,46],[21,22],[20,5],[20,-27],[-20,-35],[-3,-11],[-12,-45],[-5,-5]],[[4386,5353],[4,23],[10,45],[-14,32],[-5,-32],[-2,-45],[7,-23]],[[5237,5335],[-20,5],[-21,32],[-2,4],[2,6],[21,20],[20,-1],[20,-25],[-20,-41]],[[3971,5375],[-21,-10],[-21,-28],[-19,39],[19,38],[21,-4],[14,11],[7,3],[20,24],[10,-27],[-10,-27],[-19,-18],[-1,-1]],[[3825,5370],[-4,6],[4,6],[6,-6],[-6,-6]],[[3929,5362],[-7,14],[7,14],[11,-14],[-11,-14]],[[2310,5326],[3,5],[-3,13],[-2,-13],[2,-5]],[[2060,5329],[-1,2],[1,3],[4,-3],[-4,-2]],[[2725,5288],[-10,43],[10,15],[6,-15],[-6,-43]],[[5113,5329],[0,2],[0,1],[-1,-1],[1,-2]],[[4614,5321],[-7,10],[7,12],[6,-12],[-6,-10]],[[4967,5322],[-20,-1],[-21,-2],[-10,12],[10,14],[21,-3],[20,-5],[4,-6],[-4,-9]],[[3943,5331],[-14,-12],[-21,-7],[-13,19],[4,45],[9,23],[12,22],[5,46],[4,7],[9,-7],[12,-14],[21,6],[18,8],[2,2],[9,43],[12,20],[9,-20],[1,-45],[-10,-21],[-4,-25],[-13,-45],[-4,-7],[-20,-17],[-21,-12],[-7,-9]],[[5423,5331],[-20,-35],[-20,25],[-10,10],[-8,45],[-1,7]],[[5332,5403],[-6,-27],[-6,-5],[-20,-7],[-21,7],[-17,5],[17,17],[5,28],[-5,44],[0,2],[-21,42],[-1,3],[1,2],[21,5],[21,7],[14,32],[-11,45],[-3,32],[-21,3],[-3,10],[-3,46],[-15,12],[-21,7],[-20,-6],[-6,11]],[[5424,5336],[-1,-5]],[[3867,5330],[-1,1],[1,0],[0,-1]],[[5092,5249],[12,36],[-12,17],[-6,-17],[6,-36]],[[5196,5280],[11,5],[-11,19],[-13,-19],[13,-5]],[[3867,5244],[-6,41],[-15,34],[-3,12],[-18,21],[-17,24],[17,23],[21,-21],[1,-2],[20,-26],[15,-19],[-7,-46],[-8,-41]],[[2663,5232],[10,8],[-10,8],[-19,37],[-2,19],[-21,-7],[-19,34],[-2,3],[-5,-3],[5,-15],[7,-31],[14,-13],[21,-9],[7,-23],[14,-8]],[[2766,5198],[6,42],[-6,26],[-11,-26],[11,-42]],[[1832,5236],[-3,4],[3,10],[2,-10],[-2,-4]],[[3327,5231],[12,9],[-12,9],[-7,-9],[7,-9]],[[4594,5238],[14,2],[-14,45],[0,1],[-1,-1],[-1,-45],[2,-2]],[[4169,5240],[-11,-15],[-21,-22],[-15,37],[-3,45],[-2,46],[20,15],[21,-2],[10,-13],[10,-27],[8,-19],[-8,-14],[-9,-31]],[[3846,5229],[-4,11],[4,13],[19,-13],[-19,-11]],[[4156,5240],[-19,-23],[-9,23],[-2,45],[11,39],[21,-7],[13,-32],[-13,-41],[-2,-4]],[[4552,5220],[-10,20],[10,5],[2,-5],[-2,-20]],[[4144,5240],[-7,-8],[-3,8],[-2,45],[5,16],[21,-12],[1,-4],[-1,-5],[-14,-40]],[[1334,5188],[-4,7],[-17,32],[-9,13],[-12,21],[-11,24],[-10,20],[-20,18],[-7,8],[-14,22],[-19,23],[-2,6],[-19,39],[-2,4],[-20,38],[-5,4],[-16,24],[-21,5],[-21,10],[-6,6],[-15,36],[-16,10],[16,6],[10,-6],[11,-21],[10,21],[11,14],[5,-14],[16,-26],[21,-10],[13,-10],[7,-11],[21,-23],[6,-11],[15,-44],[0,-2],[21,-19],[20,-26],[0,-1],[12,-44],[9,-23],[21,-5],[7,-18],[1,-45],[13,-35],[5,-10],[-5,-7]],[[2704,5188],[17,7],[-17,5],[-8,-5],[8,-7]],[[2123,5182],[-3,13],[-8,45],[-10,27],[-6,18],[-15,18],[-15,-18],[-6,-14],[-8,14],[-12,28],[-20,18],[-1,8],[-1,37],[-10,45],[11,19],[15,-19],[6,-9],[20,-20],[18,29],[3,9],[14,-9],[7,-13],[19,-32],[-16,-45],[5,-46],[13,-22],[7,-23],[2,-45],[-9,-13]],[[2808,5190],[-14,5],[3,45],[11,40],[9,-40],[-6,-45],[-3,-5]],[[3285,5156],[18,39],[-18,34],[-6,-34],[6,-39]],[[5300,5178],[-15,17],[15,17],[6,-17],[-6,-17]],[[4144,5195],[-7,-12],[-9,12],[-12,45],[0,4],[-4,41],[-2,46],[6,16],[21,21],[21,0],[20,-11],[7,19],[0,45],[14,31],[12,15],[9,28],[19,-28],[-7,-46],[2,-45],[-14,-23],[-11,-22],[-6,-46],[-4,-30],[-9,-15],[-12,-7],[-20,-25],[-14,-13]],[[6130,5193],[-1,2],[-7,14]],[[6125,5210],[5,-12],[1,-3],[-1,-2]],[[6213,5190],[-4,5],[2,0]],[[6213,5192],[0,-2]],[[4490,5188],[-21,-28],[-20,35],[-1,9],[-1,36],[1,6],[21,17],[21,-22],[2,-1],[3,-45],[-5,-7]],[[4469,5191],[-2,4],[-2,45],[4,4],[4,-4],[-1,-45],[-3,-4]],[[1666,5126],[-7,23],[7,29],[7,-29],[-7,-23]],[[1957,5148],[-1,1],[1,3],[0,-3],[0,-1]],[[4884,5147],[1,2],[-1,1],[-2,-1],[2,-2]],[[3954,5149],[-4,-6],[-21,-22],[-21,5],[-20,16],[-8,7],[-13,14],[-21,0],[-21,1],[-20,21],[-12,10],[3,45],[9,18],[16,27],[-16,43],[-1,3],[-20,14],[-21,5],[-14,-19],[-7,-24],[-11,-22],[-9,-24],[-8,24],[-13,35],[-21,-2],[-12,13],[-9,21],[-4,24],[-9,45],[-8,28],[-20,7],[-16,-35],[-5,-6],[-8,6],[-13,28],[-8,18],[8,27],[4,18],[-4,30],[-21,-11],[-20,0],[-20,27],[20,15],[20,2],[21,-13],[21,5],[21,-8],[8,44],[-1,45],[-7,28],[-5,18],[5,7],[11,-7],[9,-10],[21,-18],[15,-18],[6,-16],[11,-29],[10,-20],[7,20],[9,45],[5,22],[20,0],[21,-11],[2,-11],[13,-45],[6,-32],[3,32],[16,45],[2,4],[20,35],[21,-33],[6,-6],[8,-45],[7,-44],[0,-1],[5,-46],[3,-45],[4,-46],[9,-11],[4,11],[3,46],[0,45],[8,46],[5,19],[7,-19],[14,-29],[10,-17],[11,-11],[15,11],[-10,46],[-5,7],[-20,38],[20,31],[20,-31],[1,-2],[20,-22],[21,11],[14,-32],[7,-16],[21,-25],[13,41],[8,23],[12,22],[-4,45],[-8,5],[-21,18],[-16,23],[6,45],[10,38],[4,7],[-4,21],[-3,25],[-3,45],[-2,45],[-13,43],[-1,3],[-20,32],[-8,13],[-8,45],[6,46],[1,45],[1,45],[-10,46],[-3,6],[-9,39],[9,29],[21,2],[21,-4],[21,-5],[21,-17],[4,-5],[16,-17],[13,-28],[5,-46],[3,-19],[21,-3],[1,22],[3,46],[17,22],[20,-2],[13,25],[-13,30],[-17,15],[-3,7],[-21,16],[-9,23],[9,33],[2,12],[-2,14],[-21,12],[-9,19],[-12,42],[-13,-42],[-7,-12],[-9,12],[-12,20],[-21,22],[-15,-42],[-6,-18],[-21,2],[-20,9],[-16,-38],[-1,-45],[-3,-46],[-1,-1],[-21,-7],[-21,-3],[-11,-34],[11,-34],[4,-11],[13,-46],[4,-8],[9,-37],[-9,-41],[-1,-4],[-4,-46],[5,-37],[1,-8],[7,-45],[13,-36],[7,-10],[13,-45],[-20,-22],[-21,-20],[-21,31],[-20,-4],[-21,-3],[-21,13],[-9,5],[9,5],[21,31],[4,9],[-4,7],[-16,39],[1,45],[-6,14],[-15,31],[-6,9],[-16,-9],[7,-45],[-3,-45],[-8,-18],[-21,11],[-11,7],[-10,10],[-21,26],[-20,-10],[-19,19],[-2,45],[21,32],[20,8],[4,6],[-4,4],[-17,41],[15,45],[2,3],[5,-3],[16,-9],[17,9],[4,2],[2,-2],[19,-18],[14,18],[6,15],[12,31],[-2,45],[10,45],[-2,46],[1,45],[2,6],[13,39],[-13,20],[-20,26],[-1,1],[-20,38],[-21,-12],[-9,18],[5,46],[-7,45],[11,21],[21,-8],[6,-13],[14,-20],[21,-3],[5,-22],[16,-25],[10,-21],[11,-24],[17,-21],[3,-2],[21,-26],[12,28],[-9,45],[18,33],[19,13],[-19,24],[-15,21],[-6,4],[-18,41],[-3,11],[-10,35],[-10,30],[-4,15],[4,17],[13,28],[7,17],[7,29],[4,45],[10,9],[6,-9],[15,-30],[16,-15],[5,-6],[20,-15],[17,-25],[4,-9],[6,9],[-4,46],[-2,16],[-3,29],[-8,45],[-10,16],[-9,30],[-11,27],[-9,18],[-4,45],[-6,46],[-2,21],[-10,24],[-11,6],[-21,25],[-5,14],[-15,24],[-14,22],[-7,42],[-1,3],[1,3],[16,42],[-16,21],[-21,3],[-17,22],[-4,6],[-20,20],[-21,12],[-2,7],[2,6],[17,40],[-9,45],[-8,14],[-7,-14],[-14,-14],[-18,14],[-3,4],[-15,41],[4,46],[-9,21],[-14,-21],[-7,-7],[-19,-39],[-2,-6],[-4,6],[-17,30],[-21,2],[-20,-11],[-9,-21],[0,-45],[-12,-9],[-6,9],[-13,45],[17,46],[-19,41],[-21,2],[-20,-10],[-21,-1],[-1,13],[1,1],[21,28],[11,16],[-8,46],[-3,7],[-21,21],[-21,-18],[-21,30],[-16,-40],[-4,-13],[-18,-33],[-3,-20],[-20,20],[6,46],[0,45],[-2,45],[-5,25],[-21,-24],[0,-1],[-3,-45],[-17,-17],[-10,-28],[-7,-46],[-4,-32],[-7,32],[-9,46],[-5,27],[-21,-23],[-2,-4],[2,-7],[7,-39],[3,-45],[11,-35],[3,-10],[4,-46],[-7,-35],[-21,25],[-21,1],[-4,9],[4,27],[4,19],[-4,8],[-20,27],[-3,10],[-18,37],[-16,8],[1,46],[-6,31],[-4,14],[4,5],[12,-5],[9,-6],[6,6],[15,14],[20,27],[3,4],[10,46],[-8,45],[-3,45],[-2,3],[-4,-3],[-9,-45],[-7,-15],[-21,-21],[-12,36],[-9,10],[-7,-10],[-14,-12],[-17,12],[1,45],[-4,5],[-21,9],[-21,-10],[-18,42],[-3,3],[-3,-3],[-7,-46],[-10,-13],[-17,13],[-4,8],[-4,-8],[-17,-37],[-13,37],[-1,46],[-7,19],[-13,26],[7,45],[6,4],[21,20],[21,13],[8,9],[13,18],[13,27],[7,17],[21,25],[2,3],[13,46],[-15,9],[-16,-9],[-5,-5],[-20,-20],[-17,-21],[-4,-6],[-21,-17],[-18,23],[-3,16],[-6,30],[6,7],[15,38],[-9,45],[-6,21],[-8,-21],[-12,-18],[-21,7],[-17,11],[13,46],[4,17],[9,28],[10,46],[-19,41],[-1,4],[-17,45],[-3,17],[-12,29],[-5,45],[10,14]],[[4665,6951],[-2,-33],[-7,-35],[-2,-10],[-6,-46],[-13,-31],[-6,-14],[-4,-45],[-2,-46],[2,-45],[-1,-45],[-2,-46],[-3,-45],[-5,-17],[-9,-29],[-11,-26],[-8,-19],[-10,-45],[-3,-9],[-21,-32],[-3,-5],[-18,-35],[-7,-10],[7,-6],[21,-28],[4,-11],[-2,-46],[-2,-7],[-10,-38],[-11,-31],[-7,-14],[-13,-36],[-3,-10],[-12,-45],[-6,-27],[-5,-18],[-16,-30],[-14,-16],[-7,-6],[-20,-13],[-21,18],[-2,1],[-16,46],[-3,30],[-21,-10],[-6,-20],[-15,-44],[-20,7],[-7,-9],[-14,-22],[-12,-23],[-9,-22],[-21,-8],[-10,-15],[8,-46],[-3,-45],[1,-45],[0,-46],[1,-45],[3,-8],[2,8],[4,45],[-1,46],[3,45],[2,45],[11,10],[8,-10],[13,-6],[21,6],[20,-3],[21,-20],[21,-18],[21,6],[17,-10],[-17,-32],[-21,26],[-21,-19],[-8,-20],[-13,-23],[-10,-23],[3,-45],[-13,-17],[-9,-28],[-4,-46],[-8,-18],[-21,8],[-21,-23],[-1,-12],[-10,-46],[5,-45],[-14,-22],[-15,-23],[-6,-13],[-7,-33],[-5,-45],[-9,-30],[-21,0],[-15,-15],[-5,-8],[-21,-31],[-21,10],[-5,29],[-3,45],[-4,45],[0,46],[12,33],[11,12],[10,22],[21,6],[9,17],[-9,15],[-21,5],[-21,14],[-21,-18],[-7,-16],[-13,-36],[-4,-9],[-10,-45],[-7,-46],[-14,-45],[-7,-17],[-15,-28],[-6,-7],[-7,7],[-14,30],[-7,15],[-10,45],[-3,7],[-21,3],[-21,-9],[0,-1],[-1,-45],[1,-2],[21,-31],[5,-12],[-1,-46]],[[5191,5149],[-16,-36],[-21,8],[-21,16],[-8,12],[-8,46],[16,41],[4,4],[17,26],[17,19],[-13,46],[14,45],[3,11],[8,34],[13,19],[21,-9],[20,4],[13,-14],[8,-6],[4,6],[-4,39],[-1,7],[-20,37],[-3,8],[3,27],[21,11],[18,8],[-18,31],[-2,14],[-19,30],[-20,-21],[-21,6],[-17,30],[-4,7],[-21,6],[-14,33],[-6,45],[-1,0],[-20,12],[-21,14],[-21,3],[-21,-15],[-3,-14],[3,-9],[12,-36],[9,-43],[1,-3],[14,-45],[-7,-45],[-8,-14],[-4,14],[-17,43],[-3,2],[-16,45],[-1,1],[-1,-1],[-6,-45],[-14,-41],[-13,41],[-8,11],[-21,-4],[-7,-7],[-13,-4],[-8,4],[-11,45],[4,46],[-6,5],[-9,-5],[-12,-3],[-21,-35],[-12,-8],[-8,-15],[-14,-30],[-7,-9],[-13,-36],[13,-35],[21,-5],[5,-6],[-5,-10],[-21,-13],[-6,-22],[6,-7],[16,-39],[5,-18],[20,-22],[8,-5],[-8,-5],[-20,-24],[-7,-16],[-14,-8],[-19,8],[-2,1],[-13,44],[-8,27],[-6,18],[-1,46],[7,25],[8,20],[-8,10],[-20,16],[-16,20],[-5,12],[-21,23],[-10,-35],[-11,-22],[-11,-24],[0,-45],[-10,-19],[-20,-7],[-8,-20],[-13,-25],[-12,25],[2,46],[10,26],[6,19],[15,22],[18,24],[-5,45],[7,32],[6,13],[6,46],[9,9],[21,-5],[21,14],[12,-18],[6,-46],[3,-9],[20,4],[21,-34],[16,39],[0,46],[5,19],[5,26],[1,45],[13,46],[2,2],[14,43],[-11,45],[17,22],[21,4],[10,20],[5,45],[6,8],[21,-5],[2,-3],[18,-24],[9,-6]],[[5513,5374],[-6,-5],[-1,0]],[[5451,5348],[-6,-9],[-2,-8],[2,-15],[4,-31],[14,-45],[-18,-5],[-21,-16],[-7,21],[-14,24],[-9,21],[-11,18],[-21,19],[-13,9],[-8,13],[-21,-3],[-20,5],[-21,-13],[-2,-2],[2,-6],[5,-40],[-5,-15],[-21,9],[-7,6],[-14,19],[-16,-19],[-2,-45],[-2,-7],[-12,-38],[-9,-35],[-5,-11]],[[3929,5146],[-14,3],[-7,6],[-20,18],[-21,13],[-21,0],[-21,3],[-4,6],[4,40],[1,5],[13,45],[-12,46],[-2,2],[-20,24],[-21,14],[-11,5],[-10,9],[-21,-5],[-16,-4],[-4,-22],[-3,22],[-18,15],[-21,-5],[-21,24],[-3,11],[-10,46],[-8,37],[-7,8],[7,21],[8,-21],[13,-8],[14,8],[7,4],[21,6],[4,-10],[17,-22],[9,22],[2,46],[9,39],[19,-39],[-3,-46],[5,-13],[17,13],[4,2],[1,-2],[0,-45],[20,-24],[12,-22],[8,-4],[21,1],[15,-42],[6,-7],[21,3],[0,4],[18,45],[2,33],[1,13],[20,31],[21,-18],[21,9],[13,23],[7,44],[7,2],[14,0],[1,0],[19,-46],[1,-7],[15,-38],[3,-46],[-9,-45],[-2,-45],[-4,-46],[-3,-15],[-9,-30],[-12,-19],[-9,19],[-8,45],[-4,18],[-20,25],[-21,-11],[-21,-15],[-18,-17],[-3,-37],[-1,-8],[1,-3],[19,-42],[2,-12],[3,-34],[-3,-3]],[[5009,5140],[-3,9],[3,6],[4,-6],[-4,-9]],[[5177,5149],[-2,-4],[-21,-2],[-7,6],[-14,30],[-3,16],[3,9],[21,13],[7,23],[14,18],[21,-4],[9,-14],[-7,-45],[-2,-8],[-19,-38]],[[4594,5145],[-19,4],[-2,1],[-21,12],[-13,33],[-8,17],[-12,28],[12,18],[21,7],[10,-25],[11,-35],[6,-10],[15,-44],[0,-2],[0,-4]],[[1458,5101],[-6,3],[6,3],[6,-3],[-6,-3]],[[2621,5104],[-1,0],[1,0]],[[2226,5102],[-8,2],[8,4],[2,-4],[-2,-2]],[[5017,5104],[-8,-8],[-6,8],[-14,45],[20,36],[21,-31],[3,-5],[-3,-8],[-13,-37]],[[1520,5039],[-20,4],[-13,16],[13,44],[20,-22],[11,-22],[-11,-20]],[[2808,5050],[-4,9],[4,2],[1,-2],[-1,-9]],[[3255,5059],[10,26],[18,19],[-18,16],[-19,29],[-2,2],[-1,-2],[-20,-22],[-18,22],[-3,4],[-20,13],[-14,29],[8,45],[6,37],[1,8],[-1,3],[-21,9],[-5,-12],[-16,-31],[-21,0],[-17,-14],[-2,-45],[19,-37],[21,36],[15,-45],[6,-15],[18,-30],[3,-5],[20,-17],[21,-11],[8,-12],[13,-33],[11,33]],[[3348,5050],[-6,9],[6,30],[13,-30],[-13,-9]],[[6151,5057],[1,2],[-1,0],[-1,0],[1,-2]],[[5486,5019],[15,40],[-15,30],[-6,-30],[6,-40]],[[5466,5053],[-4,6],[-17,15],[-5,30],[-8,45],[13,9],[5,-9],[16,-32],[6,-13],[-6,-45],[0,-6]],[[4635,5047],[-21,-13],[-13,25],[13,10],[21,-3],[16,-7],[-16,-12]],[[5632,5057],[-1,2],[1,19],[2,-19],[-2,-2]],[[1728,4993],[3,20],[-3,11],[-6,-11],[6,-20]],[[3389,5003],[-13,10],[13,19],[20,-19],[-20,-10]],[[3680,5013],[0,1],[0,-1]],[[5154,5009],[-1,4],[1,5],[4,-5],[-4,-4]],[[5744,5009],[-8,-27],[-17,25]],[[5649,5046],[-17,-9],[-12,22],[3,45],[9,28],[21,13],[2,-3]],[[5507,5012],[0,1],[0,1],[1,-1],[-1,-1]],[[6047,5007],[-21,-31],[-19,37],[1,3]],[[6031,5040],[16,-24],[4,-3],[-4,-6]],[[4697,5010],[-3,3],[3,6],[10,-6],[-10,-3]],[[6172,4929],[16,39],[-16,27],[-18,-27],[18,-39]],[[4781,4958],[-21,-16],[-7,26],[-14,35],[-13,10],[13,31],[18,-31],[3,-3],[21,-19],[8,-23],[-8,-10]],[[2143,4912],[-20,10],[-1,1],[1,5],[20,8],[4,-13],[-4,-11]],[[4407,4878],[3,45],[-3,15],[-14,-15],[14,-45]],[[5300,4922],[0,1],[7,45],[-7,38],[-13,-38],[-8,-12],[-7,-33],[7,-39],[21,38]],[[5839,4918],[-2,5],[2,7],[14,-7],[-14,-5]],[[6258,4905],[-3,-2],[-3,20],[-4,45],[-14,27],[-17,18],[17,18],[21,9],[4,-14]],[[4767,4923],[-7,-16],[-15,16],[-2,45],[-4,9],[-21,15],[-21,2],[-20,18],[-2,1],[-12,46],[14,8],[7,-8],[13,-10],[21,-5],[7,15],[14,21],[10,-21],[11,-21],[21,-5],[20,24],[7,-44],[-6,-45],[-1,-3],[-20,-25],[-14,-17]],[[2393,4873],[-10,4],[10,24],[2,-24],[-2,-4]],[[2621,4867],[-5,10],[5,22],[2,-22],[-2,-10]],[[3036,4875],[-1,2],[-19,29],[-21,7],[-21,6],[-7,4],[7,8],[21,2],[21,0],[13,-10],[7,-40],[1,-6],[-1,-2]],[[5632,4855],[-6,22],[6,7],[3,-7],[-3,-22]],[[5383,4865],[-9,12],[9,22],[13,-22],[-13,-12]],[[6109,4867],[-20,-25],[-10,35],[-1,46],[10,45],[1,1],[2,-1],[13,-45],[5,-21],[4,-25],[-4,-10]],[[4576,4877],[-3,-10],[-21,-13],[-7,23],[-5,46],[12,45],[0,1],[21,41],[6,3],[15,23],[8,-23],[10,-45],[-18,-45],[0,-1],[-18,-45]],[[5964,4843],[-16,34],[11,46],[5,21],[9,-21],[-3,-46],[-6,-34]],[[6089,4874],[-1,3],[1,11],[2,-11],[-2,-3]],[[5486,4847],[-20,-9],[-21,29],[-3,10],[3,29],[3,17],[18,32],[20,-32],[1,0],[5,-46],[-6,-30]],[[5486,4877],[-20,-15],[-10,15],[10,37],[20,-37]],[[5881,4826],[1,6],[-1,14],[-8,-14],[8,-6]],[[3327,4831],[-1,1],[1,1],[1,-1],[-1,-1]],[[3763,4815],[2,17],[-2,6],[-7,-6],[7,-17]],[[6151,4819],[5,13],[-5,12],[-4,-12],[4,-13]],[[3600,4832],[-3,-5],[-1,5],[-20,44],[-1,1],[-20,19],[-20,-2],[-15,-17],[-6,-10],[-4,10],[-8,46],[-9,44],[-1,1],[1,1],[21,21],[21,8],[20,-19],[12,-11],[7,-45],[2,-31],[7,31],[14,19],[21,-7],[4,-12],[-4,-13],[-12,-33],[-6,-45]],[[4577,4832],[-4,-17],[-21,-14],[-7,31],[-11,45],[-3,13],[-7,33],[5,45],[2,6],[14,39],[7,46],[-4,45],[-17,45],[-20,28],[-21,-18],[-7,-10],[-14,-27],[-21,-1],[-11,28],[1,46],[0,45],[8,45],[2,4],[11,-4],[10,-2],[21,-20],[21,-4],[20,23],[21,3],[18,-45],[3,-8],[21,-37],[15,-46],[5,-24],[8,-21],[13,-12],[21,-5],[14,17],[7,12],[20,7],[2,-19],[19,-18],[17,18],[4,3],[2,-3],[19,-36],[21,3],[20,8],[9,-20],[4,-46],[-2,-45],[-11,-24],[-20,-21],[0,-1],[-20,-45],[-1,-1],[-21,-20],[-6,21],[-6,46],[-9,38],[-3,7],[-18,9],[-20,10],[-21,3],[-15,-22],[-6,-13],[-19,-32],[-2,-2],[-20,-31],[-6,-13],[-11,-45]],[[5985,4794],[-21,13],[-21,16],[-6,9],[1,45],[5,14],[11,32],[9,45],[1,12],[5,-12],[15,-45],[-6,-46],[7,-22],[18,-23],[-18,-38]],[[4947,4815],[-21,12],[-9,5],[9,5],[21,24],[6,-29],[-6,-17]],[[2870,4786],[0,1],[0,-1]],[[6130,4751],[9,36],[-9,15],[-6,-15],[6,-36]],[[4967,4786],[0,1],[-20,4],[-21,7],[-21,6],[-21,-13],[-7,41],[7,36],[21,-12],[21,8],[9,13],[12,9],[8,-9],[7,-45],[5,-45],[0,-1]],[[2766,4725],[-3,16],[3,25],[7,-25],[-7,-16]],[[3119,4740],[-20,-43],[-21,9],[-21,32],[-11,3],[2,46],[9,12],[12,-12],[9,-10],[21,-25],[20,-10],[1,-1],[-1,-1]],[[3514,4731],[17,10],[-17,9],[-16,-9],[16,-10]],[[3389,4738],[-1,3],[-19,25],[-16,21],[14,45],[2,1],[20,5],[3,-6],[8,-45],[-2,-46],[-9,-3]],[[6109,4704],[17,37],[-17,15],[-15,-15],[15,-37]],[[4511,4737],[-3,4],[3,3],[4,-3],[-4,-4]],[[4718,4726],[-3,15],[3,29],[4,-29],[-4,-15]],[[6220,4722],[-7,-5],[-11,24],[11,28],[12,-6]],[[5486,4721],[-4,20],[4,25],[6,-25],[-6,-20]],[[4344,4682],[3,14],[-3,18],[-5,-18],[5,-14]],[[2538,4680],[-21,14],[-1,2],[1,4],[18,41],[3,4],[1,-4],[12,-45],[-13,-16]],[[4635,4687],[4,9],[-4,4],[-2,-4],[2,-9]],[[3452,4685],[-15,11],[15,3],[10,-3],[-10,-11]],[[3784,4686],[-3,10],[3,5],[1,-5],[-1,-10]],[[6219,4695],[-6,-6],[-13,7],[-8,15],[-10,30],[1,46],[9,15],[19,30],[-19,37],[-2,8],[2,8],[16,-8],[5,-18],[21,-1],[6,-5]],[[5030,4691],[-21,-19],[-21,-6],[-21,10],[-20,14],[-4,6],[-17,34],[-21,10],[-21,-30],[-10,31],[-6,46],[-4,34],[-2,11],[-9,45],[-2,46],[13,9],[10,-9],[10,-9],[21,-3],[21,-10],[21,11],[20,-8],[9,-27],[3,-45],[9,-26],[18,-19],[3,-4],[20,-42],[1,-10],[5,-35],[-5,-5]],[[5009,4689],[-21,-7],[-21,10],[-4,4],[-9,45],[-7,7],[-21,15],[-21,8],[-21,-18],[-8,34],[-6,45],[-6,40],[-1,5],[1,7],[20,9],[21,-7],[21,-1],[21,14],[20,-19],[1,-3],[2,-45],[16,-45],[2,-6],[21,-19],[10,-21],[-3,-45],[-7,-7]],[[5507,4678],[-21,1],[-10,17],[-10,45],[0,5],[-6,41],[-15,34],[-21,-27],[-6,38],[6,26],[6,19],[8,46],[7,21],[12,24],[9,15],[9,-15],[11,-20],[21,-21],[3,-4],[-3,-5],[-9,-41],[-6,-45],[15,-38],[6,-7],[-1,-46],[0,-45],[-5,-18]],[[5486,4691],[-2,5],[-10,45],[3,46],[9,24],[9,-24],[8,-46],[-6,-45],[-11,-5]],[[1998,4650],[4,1],[-4,2],[-10,43],[-11,15],[-13,30],[-7,7],[-20,39],[-1,5],[-7,-5],[6,-46],[1,-2],[21,-23],[9,-20],[11,-16],[21,-29],[0,-1]],[[4324,4645],[5,6],[-5,8],[-6,-8],[6,-6]],[[5985,4648],[5,3],[-5,5],[-21,3],[-8,-8],[8,-13],[21,10]],[[4614,4619],[10,32],[-10,10],[-13,-10],[13,-32]],[[3555,4644],[-20,-4],[-21,-1],[-8,12],[8,15],[20,30],[1,1],[1,-1],[19,-36],[2,-9],[-2,-7]],[[5653,4640],[-21,-4],[-5,15],[5,4],[21,11],[14,-15],[-14,-11]],[[2081,4565],[2,40],[-2,2],[-21,12],[-20,-3],[-9,-11],[9,-24],[20,-2],[21,-14]],[[2932,4600],[1,5],[-1,25],[0,-25],[0,-5]],[[4303,4590],[6,15],[-6,24],[-6,-24],[6,-15]],[[4220,4586],[-5,19],[5,36],[3,-36],[-3,-19]],[[6151,4594],[-3,11],[2,46],[1,1],[1,-1],[13,-46],[-14,-11]],[[5570,4555],[-21,4],[-2,1],[-19,45],[21,3],[21,-2],[1,-1],[3,-45],[-4,-5]],[[1873,4513],[-2,2],[-18,19],[-21,15],[-7,11],[-14,27],[-14,18],[-7,17],[-14,29],[-6,16],[-21,16],[-9,13],[-12,23],[-21,8],[-20,14],[-1,0],[-18,46],[-2,4],[-21,11],[-21,8],[-11,22],[-9,18],[-21,21],[-2,6],[-1,46],[1,45],[-19,18],[-11,27],[11,8],[6,-8],[15,-44],[0,-1],[11,-45],[10,-6],[20,5],[21,-28],[9,-17],[12,-21],[16,-24],[5,-8],[20,-11],[11,-26],[10,-28],[13,-18],[8,-19],[21,-17],[5,-9],[15,-30],[11,-15],[10,-20],[21,-2],[12,-24],[9,-25],[8,-20],[12,-42],[6,-3],[-6,-2]],[[2766,4510],[6,5],[-6,5],[-3,-5],[3,-5]],[[3825,4502],[5,13],[-5,36],[-16,-36],[16,-13]],[[4137,4508],[-13,7],[13,25],[7,-25],[-7,-7]],[[3187,4515],[-5,-10],[-10,10],[-11,13],[-14,32],[14,43],[2,2],[19,10],[13,-10],[7,-10],[21,-28],[3,-7],[-3,-8],[-21,-13],[-15,-24]],[[3369,4508],[-3,7],[3,8],[5,-8],[-5,-7]],[[5715,4512],[10,3],[-10,22],[-5,-22],[5,-3]],[[5009,4514],[-1,1],[1,1],[2,-1],[-2,-1]],[[5590,4491],[-16,24],[-4,5],[-21,6],[-21,8],[-12,26],[-1,45],[13,36],[21,-9],[21,0],[20,-11],[21,-15],[1,-1],[-1,-1],[-9,-44],[9,-45],[-21,-24]],[[5590,4511],[-2,4],[-18,23],[-21,4],[-21,16],[-1,2],[-6,45],[7,18],[21,-3],[21,-1],[20,-14],[1,0],[-1,-7],[-1,-38],[1,-16],[3,-29],[-3,-4]],[[6047,4459],[-21,8],[0,2],[0,26],[21,-16],[4,-10],[-4,-10]],[[2081,4416],[-21,-6],[-16,14],[16,7],[21,-4],[4,-3],[-4,-8]],[[2766,4416],[-4,8],[4,4],[17,-4],[-17,-8]],[[4386,4387],[-4,37],[4,19],[4,-19],[-4,-37]],[[5736,4401],[-11,23],[11,9],[11,-9],[-11,-23]],[[6174,4393],[-2,-1],[-4,32],[4,41],[3,4],[9,3]],[[2870,4371],[10,7],[-10,8],[-1,-8],[1,-7]],[[5715,4373],[-5,5],[5,18],[8,-18],[-8,-5]],[[5632,4357],[-21,20],[0,1],[-7,46],[-11,45],[-3,2],[-20,23],[-21,13],[-21,4],[-21,1],[0,3],[-1,45],[1,29],[1,16],[-1,34],[0,12],[-21,16],[-18,29],[-2,10],[-9,35],[-12,37],[-21,-12],[-14,21],[-3,45],[3,45],[14,19],[7,27],[14,45],[21,37],[20,-28],[8,-9],[13,-12],[17,-33],[-17,-31],[-3,-15],[-1,-45],[4,-10],[21,-26],[16,-9],[-16,-12],[-8,-34],[0,-45],[8,-33],[9,-12],[12,-7],[21,1],[20,-8],[21,12],[1,2],[20,17],[19,28],[2,3],[20,1],[7,-4],[6,-45],[-13,-19],[-20,-15],[-13,-12],[-8,-10],[-16,-35],[7,-45],[9,-42],[2,-4],[3,-45],[6,-46],[-11,-21]],[[3293,4333],[13,32],[21,13],[0,1],[-21,18],[-21,5],[-4,-24],[-6,-45],[10,-18],[8,18]],[[3763,4328],[5,5],[-5,16],[-14,-16],[14,-5]],[[4552,4331],[1,2],[-1,24],[-3,-24],[3,-2]],[[4926,4329],[0,4],[0,3],[-1,-3],[1,-4]],[[5362,4308],[2,25],[-2,25],[-8,-25],[8,-25]],[[4822,4329],[-1,4],[1,3],[9,-3],[-9,-4]],[[5466,4319],[-11,14],[11,24],[19,-24],[-19,-14]],[[5756,4291],[-11,42],[-9,9],[-21,-6],[-21,22],[-16,20],[16,15],[11,31],[10,21],[21,24],[20,16],[21,-1],[16,-15],[3,-45],[-19,-21],[-18,-25],[5,-45],[-8,-42]],[[6130,4310],[-15,23],[-6,18],[-5,27],[-15,35],[-6,11],[6,8],[10,-8],[10,-23],[4,-23],[17,-31],[20,-14],[-20,-23]],[[2102,4281],[-21,-3],[-10,10],[-11,23],[-20,14],[-7,8],[-14,24],[-21,12],[-16,9],[-5,18],[-20,17],[-21,9],[-2,2],[-19,38],[-3,7],[3,9],[7,-9],[14,-38],[21,17],[20,-17],[21,-2],[21,3],[10,-8],[7,-46],[4,-11],[20,-10],[21,-21],[1,-3],[20,-35],[4,-10],[-4,-7]],[[2226,4284],[-20,-9],[-11,13],[-10,20],[-21,12],[-21,8],[-3,5],[-17,34],[-9,11],[9,11],[20,6],[14,-17],[7,-19],[21,-9],[18,-17],[3,-6],[20,-8],[4,-31],[-4,-4]],[[2538,4287],[-21,-5],[-2,6],[2,4],[21,-4],[0,-1]],[[3680,4277],[17,11],[-17,13],[-17,32],[-4,5],[-6,-5],[6,-8],[15,-37],[6,-11]],[[4531,4243],[7,45],[-7,30],[-7,-30],[7,-45]],[[2749,4288],[-3,-5],[-5,5],[4,45],[-20,45],[-21,-5],[-10,5],[10,14],[21,-13],[3,45],[-3,22],[-5,23],[-2,46],[7,21],[15,24],[-1,45],[7,13],[20,4],[15,-17],[1,-45],[5,-23],[21,-12],[7,-10],[14,-20],[17,-26],[3,-5],[21,-27],[6,-13],[15,-41],[6,-5],[15,-22],[20,-8],[21,-11],[3,-4],[-3,-26],[-21,-1],[-20,2],[-21,-4],[-21,14],[-21,4],[-20,-3],[-21,1],[-10,13],[-11,16],[-11,-16],[-10,-19],[-17,-26]],[[2351,4284],[-2,4],[-19,38],[-5,7],[-15,45],[-1,0],[1,1],[0,-1],[20,-34],[21,7],[9,-18],[-6,-45],[-3,-4]],[[3535,4285],[-1,3],[1,13],[4,-13],[-4,-3]],[[3950,4262],[-21,11],[-7,15],[-14,23],[-14,22],[14,27],[21,-22],[2,-5],[19,-28],[7,-17],[-7,-26]],[[6175,4281],[-3,-1],[-6,8],[-12,45],[17,29]],[[3119,4219],[-2,23],[2,6],[4,-6],[-4,-23]],[[4075,4240],[-2,2],[-13,46],[15,23],[18,-23],[-16,-46],[-2,-2]],[[4137,4241],[-5,1],[5,2],[1,-2],[-1,-1]],[[5985,4237],[-4,5],[4,7],[11,-7],[-11,-5]],[[6198,4242],[-6,-17],[-3,17],[-17,21],[-18,25],[-3,9],[-20,-9],[-1,0],[-21,-4],[-20,-11],[-13,15],[13,15],[11,30],[-6,45],[-5,12],[-18,34],[18,25],[20,-11],[4,-14],[8,-46],[9,-17],[21,-10],[13,27],[-3,46],[3,45],[8,41],[14,-13]],[[6244,4283],[-10,-25],[-17,7]],[[6212,4265],[-14,-23]],[[2164,4193],[-2,4],[2,7],[2,-7],[-2,-4]],[[2434,4194],[-6,3],[6,12],[2,-12],[-2,-3]],[[3418,4197],[-8,-7],[-4,7],[-12,45],[16,15],[21,-2],[0,-13],[0,-5],[-13,-40]],[[3929,4167],[5,30],[-5,12],[-5,-12],[5,-30]],[[4967,4189],[-6,8],[-8,45],[14,43],[17,-43],[-13,-45],[-4,-8]],[[6525,4184],[3,13],[-1,3]],[[6523,4193],[2,-9]],[[3971,4188],[-7,9],[7,23],[7,-23],[-7,-9]],[[2579,4148],[12,4],[-12,8],[-7,-8],[7,-4]],[[3327,4145],[11,7],[-11,13],[-21,-5],[-14,-8],[14,-42],[21,35]],[[6317,4149],[-5,3],[5,1],[1,-1],[-1,-3]],[[2478,4106],[18,29],[21,0],[21,8],[11,9],[-11,18],[-21,5],[-21,-13],[-20,13],[-18,-23],[16,-46],[2,-3],[2,3]],[[4448,4106],[1,0],[-1,1],[0,-1]],[[4677,4105],[-4,1],[4,2],[1,-2],[-1,-1]],[[5424,4097],[10,9],[-10,5],[-11,-5],[11,-9]],[[5902,4095],[2,11],[0,46],[19,42],[0,3],[0,1],[-21,8],[-1,-9],[0,-45],[-4,-46],[5,-11]],[[2268,4057],[8,4],[-8,15],[-8,-15],[8,-4]],[[3202,4049],[8,12],[-8,30],[-5,-30],[5,-12]],[[3701,4047],[-20,14],[20,13],[6,-13],[-6,-14]],[[6483,4053],[0,8],[0,1],[0,-1],[0,-8]],[[6026,4050],[-16,11],[16,41],[17,-41],[-17,-11]],[[6276,4055],[-5,6],[-16,17],[-12,28],[-9,43],[-3,3],[-18,10],[-21,20],[-11,15],[-6,45],[-3,5],[-21,27],[-21,-7],[-21,-3],[-17,-22],[-3,-7],[-5,7],[-16,20],[-8,26],[-2,45],[10,4],[15,41],[-15,29],[-15,17],[-6,8],[-21,-4],[-13,41],[1,46],[12,17],[15,-17],[6,-10],[16,-36],[5,-17],[21,13],[20,3],[11,-44],[9,-46],[1,-3],[21,-5],[4,8],[-1,46],[2,45],[-5,45],[0,1],[-2,45],[-14,45],[2,46],[14,26],[12,19],[9,27],[15,-27],[-10,-45],[4,-46],[-6,-45],[9,-45],[3,-3]],[[6257,4297],[4,-9],[12,-46],[-18,-15],[-21,-11],[-7,-19],[7,-42],[21,21],[15,-24],[6,-12],[15,-34],[-5,-45],[-10,-6]],[[6683,4061],[-13,-27],[-21,27]],[[6649,4061],[-15,45],[15,19],[21,-2],[21,12],[16,17],[5,4],[1,-4],[19,-35],[12,-11],[-12,-21],[-20,14],[-21,-12],[-8,-26]],[[6797,4061],[-2,-13],[-21,4],[-15,9],[15,10],[11,35],[6,12]],[[6806,4079],[-9,-18]],[[6629,4049],[-21,-8],[-8,20],[8,26],[21,-4],[20,-22]],[[6649,4061],[-20,-12]],[[6670,4050],[-9,11],[-12,39],[-2,6],[2,3],[21,2],[13,-5],[-8,-45],[-5,-11]],[[2372,4002],[-14,14],[-7,11],[-21,20],[-6,14],[-11,45],[17,12],[5,-12],[16,-28],[13,-17],[8,-22],[7,-23],[-7,-14]],[[4428,3997],[6,19],[-4,45],[-2,6],[-2,-6],[-9,-45],[11,-19]],[[2645,4016],[-3,-8],[-21,0],[-21,-21],[-21,14],[-10,15],[-10,16],[-21,-14],[-21,30],[-19,13],[19,11],[21,4],[21,24],[20,-30],[21,27],[21,-8],[21,0],[21,-13],[19,-15],[-19,-20],[-18,-25]],[[3867,3985],[1,31],[-1,2],[-6,-2],[6,-31]],[[5196,4011],[0,5],[0,-5]],[[3348,3991],[-11,25],[7,45],[4,31],[8,-31],[-3,-45],[-5,-25]],[[4531,3984],[-20,27],[-2,5],[2,9],[20,14],[10,-23],[-10,-32]],[[6006,4015],[-2,1],[2,13],[0,-13],[0,-1]],[[6878,3939],[3,31],[-3,19],[-21,-13],[-11,-6],[11,-30],[21,-1]],[[4947,3919],[-21,-14],[-6,20],[6,9],[21,-5],[6,-4],[-6,-6]],[[3057,3911],[-21,-15],[-14,29],[14,20],[21,-10],[9,-10],[-9,-14]],[[5217,3912],[-8,13],[8,14],[14,-14],[-14,-13]],[[3597,3921],[-21,-34],[-3,38],[3,5],[21,1],[3,-6],[-3,-4]],[[6753,3918],[6,7],[-6,8],[-15,-8],[15,-7]],[[4988,3842],[-11,38],[11,26],[16,-26],[-16,-38]],[[4488,3880],[-19,-33],[-5,33],[-11,45],[16,12],[21,11],[10,-23],[-10,-40],[-2,-5]],[[3306,3872],[-21,7],[-1,1],[1,13],[12,32],[9,2],[2,-2],[16,-45],[-18,-8]],[[7002,3859],[-4,21],[4,24],[6,-24],[-6,-21]],[[5881,3833],[1,1],[-1,3],[-1,-3],[1,-1]],[[3099,3802],[-2,32],[2,3],[3,-3],[-3,-32]],[[6089,3807],[2,27],[-2,4],[-5,-4],[5,-27]],[[6566,3821],[3,13],[-3,10],[-8,-10],[8,-13]],[[6919,3828],[-4,6],[4,4],[8,-4],[-8,-6]],[[3846,3782],[2,7],[-1,45],[-1,3],[0,-3],[-2,-45],[2,-7]],[[4967,3770],[-16,19],[16,19],[14,-19],[-14,-19]],[[5528,3788],[1,1],[-1,1],[-3,-1],[3,-1]],[[2829,3781],[-8,8],[8,18],[13,-18],[-13,-8]],[[3036,3762],[-20,-7],[-11,34],[-5,45],[-5,37],[-4,9],[4,1],[21,30],[13,-31],[-6,-46],[13,-25],[13,-20],[-13,-27]],[[4282,3787],[-5,2],[5,2],[2,-2],[-2,-2]],[[5570,3777],[-4,12],[4,14],[18,-14],[-18,-12]],[[3991,3786],[-20,-8],[-5,11],[5,30],[20,-23],[8,-7],[-8,-3]],[[7005,3789],[-3,-4],[-7,4],[-13,17],[-11,28],[8,46],[0,45],[-10,16]],[[7055,3842],[-3,-8],[-8,-24],[-16,24],[-5,10],[-3,-10],[-15,-45]],[[6878,3787],[-3,2],[-16,45],[19,14],[8,-14],[-7,-45],[-1,-2]],[[4339,3744],[5,16],[12,29],[9,29],[21,15],[1,1],[-1,2],[-21,19],[-6,25],[6,13],[21,21],[21,5],[4,6],[4,45],[-8,22],[-21,-6],[-15,30],[-6,17],[-19,28],[-2,1],[-20,12],[-16,32],[-5,11],[-18,35],[1,45],[-4,23],[-4,-23],[2,-45],[-6,-46],[8,-9],[20,-36],[1,-1],[21,-8],[18,-36],[2,-13],[13,-33],[-13,-33],[-2,-12],[-18,-37],[-21,-1],[-8,-7],[8,-15],[13,-31],[0,-45],[-6,-45],[14,-29],[15,29]],[[5154,3738],[-21,-5],[-20,-3],[-15,14],[15,13],[20,10],[11,22],[10,44],[13,-44],[-8,-45],[-5,-6]],[[3410,3720],[9,24],[-9,30],[-15,-30],[15,-24]],[[7106,3711],[-13,33],[4,20]],[[7116,3735],[-10,-24]],[[7106,3739],[-2,5],[2,5]],[[7106,3749],[2,-5],[-2,-5]],[[4137,3696],[-1,2],[1,2],[3,-2],[-3,-2]],[[5133,3651],[3,2],[-3,2],[-20,0],[-7,-2],[7,-5],[20,3]],[[3830,3653],[16,37],[21,-8],[14,16],[-14,21],[-21,-18],[-21,7],[-17,36],[-3,8],[-21,13],[-21,-12],[-11,-9],[11,-9],[21,-20],[21,14],[13,-31],[4,-45],[3,-2],[5,2]],[[4302,3653],[1,1],[13,44],[-13,28],[-21,-2],[-6,-26],[-5,-45],[11,-34],[20,34]],[[6359,3650],[1,3],[-1,4],[-4,-4],[4,-3]],[[6629,3649],[-9,4],[9,13],[2,-13],[-2,-4]],[[8144,3648],[-20,-4],[-21,-21],[-6,2]],[[8133,3672],[11,-15],[6,-4],[-6,-5]],[[5197,3608],[-1,-3],[-19,3],[9,45],[10,28],[14,17],[7,13],[5,-13],[15,-22],[21,-6],[21,1],[21,-15],[1,-3],[-1,-8],[-21,-13],[-21,5],[-21,-1],[-20,-11],[-20,-17]],[[5009,3597],[-7,11],[7,5],[4,-5],[-4,-11]],[[5549,3598],[-21,-7],[-10,17],[0,45],[10,20],[6,-20],[15,-29],[3,-16],[-3,-10]],[[4095,3602],[-2,6],[2,2],[9,-2],[-9,-6]],[[6898,3601],[-1,7],[1,37],[2,-37],[-2,-7]],[[7376,3602],[0,6],[0,5],[1,-5],[-1,-6]],[[2953,3559],[1,3],[-1,2],[-1,-2],[1,-3]],[[3099,3554],[10,8],[-10,5],[-21,0],[-20,41],[-1,1],[-1,-1],[1,-2],[20,-44],[1,-11],[21,3]],[[4926,3562]],[[5445,3521],[-14,41],[14,30],[8,-30],[-8,-41]],[[4320,3562],[-17,-19],[-11,19],[4,46],[7,13],[21,11],[8,21],[5,45],[7,14],[21,6],[17,26],[4,9],[21,5],[21,27],[1,4],[18,45],[1,3],[7,-3],[14,-2],[21,-14],[21,-21],[4,-8],[16,-25],[16,-20],[-16,-45],[-20,31],[-21,7],[-21,-9],[-21,0],[-6,-30],[6,-13],[20,-32],[-20,-41],[-20,36],[-6,5],[-15,9],[-21,23],[-13,-32],[-8,-27],[-10,-18],[-11,-18],[-20,-21],[-4,-7]],[[3182,3559],[-4,3],[-17,43],[-10,3],[-11,2],[-21,19],[-4,24],[-16,30],[-12,15],[-9,28],[-16,18],[10,45],[6,5],[16,-5],[5,-3],[20,-40],[3,-2],[18,-19],[10,-27],[3,-45],[8,-41],[21,-4],[5,-46],[-5,-3]],[[3867,3561],[-1,1],[1,1],[2,-1],[-2,-1]],[[7085,3550],[-20,-24],[-21,36],[21,22],[7,24],[13,39],[18,-39],[-14,-46],[-4,-12]],[[8092,3562],[-10,-17],[-18,17],[5,30]],[[8195,3617],[-9,5],[-21,-1],[-18,-13],[-3,-2],[-1,2],[-19,12],[-11,-12],[-10,-17],[-11,-29]],[[3701,3510],[14,7],[-14,5],[-3,-5],[3,-7]],[[6338,3515],[-1,2],[1,4],[2,-4],[-2,-2]],[[7168,3512],[-20,4],[-1,1],[1,2],[19,3]],[[7170,3514],[-2,-2]],[[3472,3441],[-16,30],[16,22],[8,-22],[-8,-30]],[[3805,3510],[-10,7],[-3,45],[13,24],[20,-15],[21,34],[21,-2],[11,5],[10,16],[8,-16],[11,-46],[-10,-45],[-9,-18],[-21,5],[-20,13],[-1,1],[-21,9],[-7,-10],[-13,-7]],[[4158,3467],[-7,4],[-14,22],[-10,24],[10,20],[21,-13],[4,-7],[3,-46],[-7,-4]],[[6317,3454],[-3,17],[3,23],[9,-23],[-9,-17]],[[4884,3412],[19,14],[-19,35],[-9,-35],[9,-14]],[[5071,3423],[-1,3],[1,6],[1,-6],[-1,-3]],[[5279,3423],[5,3],[-5,3],[-2,-3],[2,-3]],[[5362,3410],[2,16],[3,45],[0,46],[-5,18],[-4,-18],[1,-46],[-2,-45],[5,-16]],[[5507,3403],[7,23],[-7,28],[-8,-28],[8,-23]],[[5632,3426],[1,0],[-1,0]],[[3036,3426],[0,1],[1,-1],[-1,0]],[[6483,3425],[-1,1],[1,4],[3,-4],[-3,-1]],[[7438,3417],[-13,9],[13,7],[15,-7],[-15,-9]],[[8248,3422],[-2,4],[-19,35],[-13,10],[-7,20],[-3,24]],[[8198,3566],[-12,6],[-21,1],[-21,-4],[-20,22],[-20,-29],[-1,-1],[-21,-35],[-21,14],[-20,16],[-3,6],[-18,32],[-6,14],[0,4]],[[8227,3498],[0,-1],[10,-1]],[[8259,3449],[-6,-23],[-5,-4]],[[8310,3418],[-15,6]],[[8310,3440],[6,-14],[-6,-8]],[[5175,3356],[17,25],[-17,15],[-18,30],[-3,5],[-9,-5],[9,-27],[4,-18],[17,-25]],[[5589,3381],[-19,-41],[-21,38],[-2,3],[2,3],[15,42],[6,12],[20,5],[11,-17],[-11,-41],[-1,-4]],[[3535,3377],[-3,4],[3,7],[9,-7],[-9,-4]],[[3140,3375],[-6,6],[6,6],[4,-6],[-4,-6]],[[6047,3379],[-3,2],[3,1],[2,-1],[-2,-2]],[[4884,3296],[5,39],[-5,16],[-5,-16],[5,-39]],[[5756,3326],[13,9],[-13,15],[-5,-15],[5,-9]],[[5611,3328],[-6,7],[6,5],[2,-5],[-2,-7]],[[8227,3316],[-12,19],[12,36],[13,-36],[-13,-19]],[[4947,3276],[13,14],[-13,9],[-21,-2],[-18,-7],[18,-9],[21,-5]],[[4730,3290],[-12,-30],[-21,-5],[-15,35],[15,39],[2,6],[-2,26],[-2,20],[-14,45],[16,31],[21,10],[21,-35],[15,-6],[6,-6],[11,-39],[3,-46],[-14,-21],[-21,-7],[-9,-17]],[[7806,3285],[-15,-1],[-3,5]],[[8456,3255],[-21,-4],[-21,14],[-20,22],[-21,-3],[-3,6],[3,8],[21,-1],[6,38],[-1,18]],[[8456,3257],[0,-2]],[[8435,3266],[-21,12],[-10,12],[6,45],[0,6]],[[8438,3271],[-3,-5]],[[8434,3283],[-17,7],[5,32]],[[5140,3245],[14,28],[19,17],[-7,45],[-12,38],[-18,8],[-3,4],[-20,39],[-1,2],[1,2],[19,43],[-19,15],[-21,-1],[-15,32],[1,45],[9,46],[-5,45],[-11,4],[-18,41],[-2,46],[-1,0],[-6,-46],[0,-45],[6,-14],[14,-31],[-2,-46],[-3,-45],[-9,-29],[-20,-11],[-3,-6],[3,-15],[6,-30],[14,-24],[10,-21],[11,-45],[0,-1],[21,-14],[13,-31],[8,-22],[16,-23],[4,-18],[7,18]],[[5486,3231],[12,14],[-9,45],[15,45],[-8,46],[-10,15],[-5,-15],[-15,-39],[-7,-7],[-14,-27],[-2,-18],[2,-8],[12,-37],[9,-41],[20,27]],[[3140,3242],[-1,3],[1,1],[1,-1],[-1,-3]],[[3535,3243],[-21,-15],[-21,0],[-21,13],[-2,4],[-18,21],[-16,24],[-5,7],[-21,10],[-21,16],[-13,12],[-7,8],[-21,9],[-8,29],[-13,12],[-21,28],[-2,5],[-15,45],[11,46],[6,10],[6,-10],[15,-45],[1,-1],[20,-6],[21,-11],[20,-6],[21,-16],[3,-6],[18,-24],[16,-21],[5,-8],[20,-37],[0,-1],[21,-19],[21,-25],[0,-1],[21,-43],[1,-2],[-1,-2]],[[4137,3236],[-5,9],[5,8],[12,-8],[-12,-9]],[[4178,3240],[-12,5],[12,6],[9,-6],[-9,-5]],[[8497,3228],[-20,2],[-21,0],[-21,4],[-11,11],[-10,8],[-20,9],[-21,4],[-10,24],[10,35],[12,10],[-8,36]],[[8500,3251],[4,-6],[-7,-17]],[[5694,3199],[21,45],[1,1],[-1,17],[-21,-15],[-1,-2],[1,-46],[0,-13],[0,13]],[[4697,3149],[-20,-7],[-19,12],[18,45],[-6,46],[7,25],[12,-25],[-11,-46],[19,-36],[10,-9],[-10,-5]],[[7833,3132],[-21,3],[-2,3]],[[7834,3173],[10,-19],[-11,-22]],[[8435,3139],[-7,15],[7,40],[9,-40],[-9,-15]],[[7937,3139],[-2,15],[1,45],[1,1],[0,-1],[4,-45],[-4,-15]],[[5466,3099],[2,10],[6,45],[-8,41],[-21,-19],[-21,-8],[-21,12],[-11,19],[-9,34],[-4,12],[-17,35],[-10,10],[-11,16],[-9,29],[9,23],[14,23],[-14,24],[-21,-20],[-7,-4],[-13,-16],[-5,-30],[-16,-45],[-1,0],[1,0],[21,-25],[12,-20],[8,-6],[21,-14],[15,-26],[6,-5],[21,-6],[13,-34],[7,-7],[21,-9],[19,-29],[2,-8],[21,-2]],[[5694,3097],[5,12],[-5,39],[-2,-39],[2,-12]],[[3535,3104],[-5,5],[5,4],[17,-4],[-17,-5]],[[5777,3098],[-21,-3],[-20,-6],[-3,20],[3,12],[20,5],[21,2],[6,-19],[-6,-11]],[[6068,3154],[-21,-9],[-18,9],[18,29],[5,16],[16,13],[21,18],[20,-30],[1,-1],[5,-45],[-6,-1],[-1,1],[-19,18],[-21,-18]],[[6899,3109],[-1,-5],[0,5],[-1,45],[1,4],[21,41],[0,5],[13,-5],[-5,-45],[-8,-15],[-20,-30]],[[5196,3052],[12,11],[-12,6],[-19,40],[-2,9],[-21,28],[-5,-37],[5,-4],[21,-1],[17,-41],[4,-11]],[[5653,3044],[-21,-14],[-21,22],[-5,11],[5,23],[8,23],[-8,42],[-3,3],[-18,29],[-9,-29],[-11,-18],[-21,-23],[-21,4],[-10,-8],[-11,-7],[-7,7],[3,45],[4,29],[19,16],[2,1],[21,12],[21,1],[20,-10],[21,38],[21,-25],[11,-17],[-11,-11],[-20,-34],[20,-26],[21,-12],[3,-7],[0,-46],[-3,-19]],[[5403,3025],[-20,22],[-13,16],[13,10],[20,3],[7,-13],[-7,-38]],[[7168,3059],[2,4],[2,46],[-4,9],[-3,-9],[-17,-40],[-5,-6],[5,-12],[20,8]],[[9743,3029],[-21,33],[0,1],[-3,9]],[[9737,3102],[6,-13],[10,-26],[-10,-34]],[[8663,3031],[-20,-8],[-21,17],[-12,23],[3,46],[-12,42],[-3,3],[3,3],[4,2]],[[8673,3059],[-10,-28]],[[8663,3049],[-20,-14],[-21,24],[-2,4],[2,20],[2,26],[1,3]],[[8668,3063],[-5,-14]],[[8660,3063],[-17,-15],[-13,15],[1,34]],[[8663,3068],[-3,-5]],[[8645,3063],[-2,-2],[-2,2],[-1,19]],[[8651,3075],[-6,-12]],[[5466,2998],[14,20],[-14,21],[-6,-21],[6,-20]],[[5570,3001],[15,17],[-15,36],[-21,9],[-21,4],[-11,-4],[11,-6],[19,-39],[2,-2],[21,-15]],[[5715,3012],[13,6],[-13,37],[-6,-37],[6,-6]],[[3816,3018],[-11,-9],[-21,-4],[-21,10],[-2,3],[-19,26],[-20,7],[-12,12],[-9,18],[-21,-18],[-21,5],[-21,22],[-13,19],[-7,27],[-5,18],[5,8],[20,0],[21,14],[21,20],[21,-9],[21,-12],[20,-9],[13,-12],[8,-19],[4,-26],[10,-46],[7,-17],[21,-22],[11,-6]],[[3991,3012],[-4,6],[4,6],[3,-6],[-3,-6]],[[6878,3013],[-5,5],[5,35],[15,-35],[-15,-5]],[[7750,3010],[-21,-7],[-5,15],[5,12],[21,-10],[4,-2],[-4,-8]],[[7957,3004],[-3,14],[3,13],[3,-13],[-3,-14]],[[8663,3009],[-20,-13],[-16,22],[-5,4],[-21,40],[-1,1],[-7,46],[-13,11],[-15,-11],[-5,-3],[-3,3],[-6,45],[-8,45],[-4,11],[-21,18],[-9,-29],[-4,-45],[-8,-27],[-5,27],[-2,45],[-13,12],[-21,3],[-21,3],[-21,18],[-20,1],[-16,9],[-5,2],[-17,43],[-4,24],[-6,21],[6,18],[9,28],[2,4]],[[8522,3255],[12,1]],[[8677,3054],[-11,-36],[-3,-9]],[[9947,3018],[-17,-18],[-21,9],[-15,9],[0,5]],[[9952,3033],[-1,-3],[-4,-12]],[[5611,2956],[2,17],[-2,7],[-17,-7],[17,-17]],[[4552,2972],[0,1],[0,-1]],[[5798,2948],[-21,6],[-9,19],[9,28],[10,17],[11,19],[20,-19],[-10,-45],[-10,-25]],[[7127,2934],[4,39],[5,45],[-9,18],[-13,-18],[-4,-45],[17,-39]],[[8248,2968],[3,5],[-3,2],[-3,-2],[3,-5]],[[5403,2958],[-13,15],[-7,10],[-21,16],[-16,19],[-5,9],[-21,5],[-13,31],[-7,15],[-10,31],[10,24],[15,21],[5,7],[4,-7],[17,-20],[21,0],[20,-25],[1,-1],[20,-4],[21,-36],[2,-5],[7,-45],[12,-44],[0,-1],[0,-1],[-3,1],[-18,12],[-5,-12],[-16,-15]],[[4594,2914],[-15,13],[15,4],[12,-4],[-12,-13]],[[5694,2918],[-21,-5],[-20,6],[-14,8],[-2,46],[16,41],[20,-10],[21,-14],[15,-17],[0,-46],[-15,-9]],[[6006,2915],[-21,11],[-13,1],[13,5],[21,5],[5,-10],[-5,-12]],[[3942,2927],[-13,-34],[-7,34],[-14,24],[-20,14],[-4,8],[-4,45],[8,11],[20,-2],[9,-9],[12,-20],[21,-11],[21,12],[8,-26],[-8,-30],[-21,-2],[-8,-14]],[[4075,2897],[-18,30],[18,31],[16,-31],[-16,-30]],[[5549,2913],[-21,11],[-1,3],[1,2],[21,1],[2,-3],[-2,-14]],[[7708,2907],[2,20],[-2,3],[-3,-3],[3,-20]],[[8871,2927],[-12,25]],[[8875,2950],[-4,-23]],[[4967,2880],[6,2],[-6,29],[-2,-29],[2,-2]],[[5964,2873],[7,9],[-7,2],[-4,-2],[4,-9]],[[4137,2880],[1,2],[-1,3],[-2,-3],[2,-2]],[[4220,2877],[-10,5],[10,9],[4,-9],[-4,-5]],[[6400,2867],[-7,15],[7,5],[6,-5],[-6,-15]],[[7814,2882],[-2,-4],[-3,4],[2,45],[1,3],[21,20],[3,-23],[-3,-8],[-19,-37]],[[9494,2864],[-12,18],[-9,13],[-21,23],[-7,8]],[[9501,2872],[-7,-8]],[[9536,2880],[-3,2],[3,1],[0,-1],[0,-2]],[[8530,2882],[-12,-20],[-17,20],[-4,3],[-6,42],[6,34],[8,12],[-8,10],[-11,35],[6,45],[5,15],[4,-15],[12,-45],[5,-17],[21,-25],[3,-3],[18,-31],[7,-15],[-7,-9],[-13,9],[-8,30],[-6,-30],[-3,-45]],[[9996,2850],[-4,-11],[-20,13],[-11,30],[11,30],[8,15],[-8,40],[-21,-3],[-21,5],[-6,4],[-15,4],[-20,13],[-18,28],[-2,16]],[[9859,3048],[-12,11],[-6,4],[-15,19],[-21,8],[-20,3],[-8,16],[8,28],[8,13]],[[5881,2830],[19,7],[-19,10],[-21,-2],[-10,-8],[10,-5],[21,-2]],[[5943,2836],[1,1],[-1,1],[-20,6],[-20,-7],[20,-6],[20,5]],[[6026,2833],[3,4],[-3,4],[-17,-4],[17,-4]],[[3535,2817],[-21,17],[-16,3],[16,2],[21,12],[3,-14],[-3,-20]],[[5237,2828],[-20,-18],[-8,27],[-2,45],[10,44],[0,1],[20,19],[21,-10],[4,-9],[-4,-22],[-5,-23],[1,-45],[-17,-9]],[[5279,2836],[-4,1],[4,2],[0,-2],[0,-1]],[[8560,2835],[-5,2],[5,2],[0,-2],[0,-2]],[[8268,2837],[1,0],[0,-4],[-1,4]],[[5715,2828],[7,9],[14,31],[20,8],[21,4],[21,-6],[17,-37],[4,-35],[12,35],[-3,45],[-9,5],[-21,1],[-21,-4],[-21,3],[-20,7],[-21,-12],[-1,0],[-20,-24],[-21,-9],[-20,-7],[-3,-5],[3,-3],[20,-3],[21,-3],[21,0]],[[4552,2754],[4,37],[-4,26],[-20,-26],[20,-37]],[[5196,2785],[-3,6],[3,15],[10,-15],[-10,-6]],[[7148,2790],[1,1],[-1,7],[-1,-7],[1,-1]],[[7957,2779],[3,12],[-3,5],[-9,-5],[9,-12]],[[8082,2787],[-4,4],[4,7],[2,-7],[-2,-4]],[[5258,2734],[-5,12],[5,18],[5,-18],[-5,-12]],[[7127,2744],[1,2],[-1,1],[-1,-1],[1,-2]],[[4282,2733],[-3,13],[3,9],[7,-9],[-7,-13]],[[4469,2734],[-10,12],[10,19],[18,-19],[-18,-12]],[[4511,2741],[-18,5],[18,6],[6,-6],[-6,-5]],[[5030,2745],[-9,1],[9,1],[0,-1],[0,-1]],[[5570,2701],[-21,43],[-2,2],[-19,37],[-2,8],[2,9],[21,3],[16,-12],[5,-3],[12,-42],[-12,-45]],[[6615,2746],[-7,-9],[-7,9],[-14,41],[-3,4],[-18,14],[-21,21],[-15,-35],[-5,-5],[-10,5],[-11,9],[-21,33],[-21,-2],[-2,6],[2,35],[2,10],[19,20],[21,6],[21,0],[20,-20],[21,11],[21,19],[9,-36],[12,-42],[1,-3],[20,-36],[4,-10],[-4,-18],[-14,-27]],[[8331,2733],[-21,-19],[-20,-12],[-21,8],[-9,36],[-11,45],[-1,8],[-4,38],[4,8],[21,19],[21,-23],[20,-3],[21,15],[21,29]],[[8352,2882],[19,-45],[-19,-25],[-21,13],[-19,-34],[19,-28],[6,-17],[-6,-13]],[[8622,2745],[-1,1],[1,1],[3,-1],[-3,-1]],[[8505,2746],[-8,-25],[-20,16],[-4,9],[4,11],[11,34],[9,25],[21,7],[5,-32],[-5,-7],[-13,-38]],[[9991,2786],[0,5],[1,7],[7,1]],[[8290,2735],[-9,11],[-12,20],[-7,25],[-6,46],[13,14],[11,-14],[10,-32],[5,-14],[11,-45],[-16,-11]],[[4158,2697],[13,4],[-13,3],[-21,0],[-21,10],[-21,29],[-2,3],[-18,3],[-21,2],[-14,-5],[14,-6],[21,-3],[13,-36],[7,-13],[21,-27],[21,34],[21,2]],[[5694,2687],[8,14],[-8,44],[-5,-44],[5,-14]],[[7554,2701],[-12,19],[-9,26],[9,40],[20,-40],[1,-4],[4,4],[-4,1],[-20,44],[5,46],[-6,25],[-6,-25],[-15,-33],[-6,-13],[-4,-45],[10,-45]],[[7521,2701],[21,-13],[12,13]],[[8996,2694],[7,7],[-7,5],[-21,13],[-15,-18],[15,-34],[21,27]],[[9058,2700],[0,1],[0,2],[-21,2],[-6,-4],[6,-13],[21,12]],[[7999,2691],[-21,4],[-3,6],[-6,45],[6,45],[-18,37],[-14,9],[14,27],[21,-15],[15,-12],[-9,-46],[3,-45],[12,-34],[8,-11],[-8,-10]],[[3223,2681],[-21,-10],[-20,-1],[-21,6],[-21,-11],[-21,18],[-18,18],[0,45],[18,20],[21,17],[21,7],[21,-11],[12,12],[8,9],[21,2],[21,3],[21,-3],[20,-10],[21,7],[5,-8],[6,-45],[2,-45],[-13,-19],[-21,-3],[-20,2],[-15,20],[-6,43],[-2,2],[-19,14],[-3,-14],[3,-8],[15,-37],[-15,-20]],[[6878,2643],[2,12],[3,46],[-5,13],[-5,-13],[-4,-46],[9,-12]],[[6359,2633],[-21,-6],[-21,28]],[[6317,2655],[0,1],[-11,45],[11,19],[21,15],[21,4],[20,-38],[-11,-46],[-9,-22]],[[6961,2649],[-21,1],[-2,5],[2,5],[21,25],[2,-30],[-2,-6]],[[7251,2648],[-20,-8],[-7,15],[7,17],[20,-11],[6,-6],[-6,-7]],[[7293,2650],[-2,5],[2,32],[8,-32],[-8,-5]],[[9577,2616],[4,39],[1,46],[-5,3],[-1,-3],[-6,-46],[7,-39]],[[8041,2629],[-13,26],[-8,26],[-21,-15],[-21,-2],[-20,37],[1,45],[8,45],[-10,21],[-20,0],[-21,-21],[-8,46],[8,25],[19,20],[2,3],[10,42],[-8,46],[-2,13],[-4,-13],[-17,-8],[-5,8],[-16,39],[-2,6],[-19,38],[-2,7],[2,6],[21,0],[12,40],[9,33],[3,12],[0,5]],[[7880,3198],[-6,-15],[-20,-5],[-5,14]],[[7804,3257],[-13,5],[-13,23]],[[7912,3441],[4,7],[18,-22],[-1,-45],[-7,-46],[1,-45],[3,-45],[7,-11],[20,-26],[6,-9],[15,-40],[5,-5],[-5,-13],[-3,-32],[-8,-46],[5,-45],[6,-22],[16,-23],[-16,-16],[-15,-30],[3,-45],[12,-17],[21,-16],[21,-3],[15,-9],[-15,-18],[-21,-16],[-3,-12],[0,-45],[3,-7],[21,3],[8,-41],[13,-21],[9,-25],[-9,-26]],[[8477,2655],[-1,0],[1,1],[0,-1]],[[8518,2632],[-5,23],[-16,22],[-9,24],[-11,10],[-14,35],[14,43],[0,2],[0,33],[-2,13],[-13,45],[-6,30],[-4,15],[4,16],[9,30],[-9,5],[-21,12],[-9,-17],[-12,-24],[-6,-22],[6,-26],[4,-19],[-4,-15],[-17,-30],[5,-46],[12,-39],[2,-6],[-2,-5],[-20,-16],[-3,21],[-17,45],[13,46],[-14,4],[-21,41]],[[8352,2882],[14,45],[-13,46],[20,24],[12,21],[9,25],[20,17],[21,-31],[21,22],[6,12],[4,46],[6,45],[-16,38],[-14,7],[-7,1],[-21,11],[-20,-2],[-21,5],[-17,31],[-4,13],[-16,-13],[-5,-9],[-2,9],[-2,45],[4,21],[3,24],[10,46],[-13,24],[-21,-23],[-20,1],[-21,3],[-6,-5],[-15,-29],[-16,29],[-5,9],[-20,1],[-12,35],[-1,45],[-8,40],[-11,6],[-10,4],[-11,-4],[-10,-5],[-2,5],[-18,35],[-21,-31],[-3,-4],[-18,-35],[-21,25],[-20,-6],[-8,16],[-13,36],[-5,9],[-15,40]],[[7998,3600],[-5,-38],[-5,-45],[-9,-46],[-1,-2],[-2,2],[-19,11],[-6,6]],[[8683,3045],[-6,-27],[-14,-43],[-3,-2],[3,-12],[18,-22]],[[8680,2921],[-17,-9],[-7,15],[-13,23],[-7,23],[-14,21],[-21,21],[-2,3],[-19,28],[-20,-3],[-9,20],[-12,13],[-5,-13],[5,-14],[15,-31],[6,-9],[20,-24],[5,-12],[4,-46],[-5,-45],[-4,-19],[-5,-26],[-15,-39],[-15,-7],[-6,-7],[-21,-28],[-3,-10],[-9,-45],[12,-38],[3,-8],[-3,-23]],[[5549,2605],[2,5],[-2,5],[-16,40],[-5,9],[-20,-9],[20,-41],[4,-4],[17,-5]],[[4430,2610],[-2,-2],[-21,-17],[-21,-3],[-21,-3],[-21,2],[-20,19],[-6,4],[-15,34],[-21,-30],[-21,12],[-10,29],[-10,28],[-21,18],[21,26],[5,19],[-5,40],[-2,5],[2,2],[20,26],[21,15],[21,-5],[7,8],[14,15],[20,7],[21,17],[3,6],[1,45],[3,46],[-7,6],[-12,39],[12,30],[21,13],[2,2],[-2,8],[-10,38],[10,9],[16,-9],[5,-6],[18,-40],[1,-45],[2,-8],[20,-2],[21,-25],[21,30],[13,-40],[8,-13],[20,-24],[2,-9],[-2,-34],[-20,-1],[-21,3],[-14,-13],[14,-16],[15,-29],[6,-16],[2,16],[18,44],[21,-34],[4,-10],[17,-20],[21,-18],[4,-8],[16,-39],[20,39],[1,3],[21,6],[7,-9],[14,-24],[20,21],[3,3],[18,16],[21,15],[3,15],[7,45],[11,19],[21,-17],[0,-2],[4,-45],[16,-20],[16,20],[5,7],[21,-4],[5,-3],[16,-25],[20,-19],[21,17],[21,14],[21,-33],[20,-2],[21,-11],[7,13],[14,24],[21,-14],[20,34],[21,-26],[17,28],[4,6],[13,-6],[1,-46],[4,-45],[-18,-22],[-21,-3],[-21,-2],[-11,-18],[-9,-16],[-21,10],[-21,-8],[-21,-9],[-9,23],[-11,14],[-21,12],[-21,-12],[-10,-14],[-11,-32],[-17,32],[-3,4],[-21,26],[-21,-19],[-18,-11],[-3,-3],[-15,-43],[-5,-11],[-21,8],[-3,3],[3,10],[7,36],[-7,7],[-21,10],[-21,12],[-21,-4],[-20,6],[-21,-6],[-21,3],[-21,7],[-11,-35],[-9,-9],[-21,6],[-21,2],[-18,1],[-3,0],[-20,0],[-2,0],[-19,-12],[-21,-11],[-21,1],[-19,22],[-1,4],[-1,-4],[-15,-46],[16,-42],[2,-3]],[[5653,2604],[-7,6],[-14,30],[-7,15],[7,6],[9,-6],[12,-28],[2,-17],[-2,-6]],[[6317,2583],[-21,-5],[-6,32],[6,12],[21,33]],[[6317,2655],[14,-45],[-14,-27]],[[8310,2587],[4,23],[8,45],[-12,6],[-4,-6],[-14,-45],[18,-23]],[[9948,2582],[-12,28],[15,43],[1,-5]],[[9949,2598],[-5,12],[7,21],[0,-1]],[[3016,2598],[-21,-7],[-21,-3],[-21,22],[-21,31],[-5,-31],[-15,-35],[-17,35],[-4,27],[-21,-22],[-6,-5],[-15,-7],[-5,7],[-15,28],[-7,17],[-14,22],[-15,24],[-6,19],[-21,-1],[-20,12],[-11,15],[-10,17],[-21,20],[-7,8],[-14,18],[-20,28],[2,45],[-2,10],[-3,-10],[-18,-16],[-10,16],[-11,15],[-21,24],[-4,6],[-17,24],[-14,22],[-6,24],[-21,20],[-2,1],[-19,24],[-4,21],[-17,26],[-12,20],[-8,19],[-21,22],[-3,4],[-15,45],[-3,9],[-21,34],[-4,3],[-16,30],[-4,15],[4,5],[20,-1],[3,-4],[18,-28],[21,12],[8,-29],[13,-25],[3,-21],[17,-39],[5,-6],[16,-40],[12,-5],[9,-3],[21,-42],[4,-1],[16,-3],[21,-14],[19,-28],[2,-5],[21,-23],[9,-17],[12,-28],[20,-12],[5,-6],[16,-26],[9,-19],[12,-12],[21,-9],[19,-24],[1,-3],[21,-20],[14,-23],[7,-15],[16,-30],[5,-12],[20,-31],[2,-2],[19,-23],[21,-14],[21,0],[20,-1],[21,22],[21,-1],[21,-9],[21,15],[10,11],[10,16],[21,1],[18,28],[3,4],[15,-4],[4,-45],[0,-46],[-19,-21],[-21,-10],[-21,11],[-12,-25],[-8,-12]],[[5923,2552],[-21,-7],[-7,20],[7,11],[21,-8],[3,-3],[-3,-13]],[[9556,2564],[0,1],[0,-1]],[[9722,2521],[3,44],[-3,29],[-4,-29],[4,-44]],[[9847,2528],[-7,37],[-2,45],[9,17],[17,-17],[4,-15],[7,-30],[-7,-8],[-21,-29]],[[9847,2563],[0,2],[0,45],[0,1],[1,-1],[1,-45],[-2,-2]],[[6172,2495],[-10,24],[10,35],[12,-35],[-12,-24]],[[8165,2505],[2,14],[-2,13],[-2,-13],[2,-14]],[[8705,2499],[-21,1],[-21,14],[-1,5],[-4,46],[5,8],[10,-8],[11,-22],[21,-15],[3,-9],[-3,-20]],[[8394,2485],[-20,34],[-1,7],[-21,35],[-6,4],[-15,33],[0,12],[0,1],[21,4],[21,18],[15,-23],[6,-16],[9,-29],[0,-46],[-9,-34]],[[9855,2519],[-8,-20],[-21,-2],[-8,22],[8,14],[7,32],[-4,45],[18,33],[21,-6],[17,18],[4,27],[10,-27],[10,-12],[21,-4],[3,16],[5,46],[13,26],[15,-26],[2,-13]],[[9948,2556],[-5,9],[-13,31],[-18,-31],[-3,-13],[-20,7],[-21,-19],[-13,-21]],[[6857,2455],[-6,19],[-15,16],[-15,29],[-6,22],[-8,24],[8,11],[21,5],[20,-16],[1,-3],[8,-43],[3,-45],[-11,-19]],[[5777,2446],[-7,28],[-14,43],[0,2],[0,9],[5,-9],[16,-10],[9,-35],[-9,-28]],[[8975,2447],[5,27],[5,45],[-6,46],[-4,33],[-5,-33],[-1,-46],[-13,-45],[19,-27]],[[7604,2473],[-20,-13],[-7,14],[-6,45],[7,46],[6,8],[20,10],[21,2],[21,8],[16,-28],[-16,-19],[-21,-16],[-5,-11],[-15,-45],[-1,-1]],[[8643,2469],[1,5],[-1,5],[-8,-5],[8,-5]],[[8399,2474],[-5,-23],[-21,-19],[-21,15],[-20,27],[16,45],[-17,20],[-12,26],[3,45],[9,25],[21,6],[12,14],[-12,39],[-21,-4],[-21,-5],[-20,-20],[-8,-10],[-7,-45],[-6,-22],[-8,-23],[-13,-28],[-11,28],[10,45],[1,5],[12,40],[-4,46],[-8,33],[-2,12],[-8,45],[-5,46],[15,32],[21,8],[21,-8],[8,13],[12,29],[16,16],[-8,46],[-1,45],[14,24],[21,18],[21,1],[0,2],[17,46],[-17,28],[-21,10],[-21,-5],[-21,-7],[-11,19],[-8,45],[2,46],[-3,9],[-4,-9],[-17,-30],[-21,12],[-20,18],[-1,0],[-8,-46],[8,-36],[2,-9],[15,-45],[4,-12],[11,-34],[-11,-12],[-21,1],[-14,11],[-6,9],[-7,37],[-1,45],[-4,45],[-9,29],[-18,17],[-3,2],[-11,43],[-8,45],[1,46],[-1,45],[-2,3],[-1,-3],[-9,-45],[-10,-25],[-3,-21],[3,-11],[4,-34],[-4,-15],[-8,-30],[8,-13],[13,-33],[-5,-45],[5,-45],[7,-33],[2,-13],[1,-45],[-3,-7],[-13,7],[-7,12],[-21,-2],[-9,35],[-3,46],[-7,45],[-2,39],[-2,6],[-19,15],[-7,31],[-3,45],[-4,45],[-6,32],[-12,14],[-9,4],[-4,-4],[4,-20],[6,-26],[-1,-45],[-5,-8],[-21,-16],[-21,18],[-8,-39],[8,-9],[21,-37],[21,-7],[12,-38],[9,-43],[0,-2],[0,-2],[-21,-1],[-21,-2],[-14,-41],[4,-45],[10,-16],[16,-29],[-15,-46],[-1,-1],[-21,-5],[0,-39],[21,-14],[21,-3],[21,-9],[20,-10],[21,-6],[3,-3],[12,-46],[-15,-34],[-21,16],[-14,-27],[-1,-45],[15,-40],[2,-6],[2,-45],[-4,-28],[-20,4],[-11,24],[-10,22],[-21,-4],[-17,-18],[-4,-8],[-21,-24],[-6,32],[2,45],[-4,46],[-1,45],[-11,33],[-21,-23],[-21,34],[0,1],[-21,35],[-11,11],[-9,9],[-21,-8],[-1,-1],[-20,-42],[-2,-4],[-8,-45],[-11,-40],[-11,40],[1,45],[0,46],[-1,45],[4,45],[-12,46],[19,40],[21,-25],[21,12],[21,-27],[20,-42],[5,-4],[16,-11],[21,-2],[6,13],[-6,7],[-21,24],[-3,15],[-18,40],[-1,5],[-13,45],[14,40],[8,6],[-8,8],[-20,1],[-5,-9],[-16,-23],[-21,6],[-21,4],[-15,13],[-5,9],[-16,36],[-5,10],[-21,28],[-21,-19],[-7,26],[-1,46],[-7,30]],[[7685,3296],[-7,12]],[[7734,3245],[16,-10],[21,-14],[10,-11]],[[7788,3223],[-4,22],[-13,18],[-6,14]],[[7521,3533],[0,2]],[[7516,3603],[0,5],[4,45],[1,4],[9,14]],[[7496,3772],[-16,2],[-5,15],[-10,27]],[[7421,3723],[11,-25],[-14,-18],[-19,-27],[-2,-6],[-5,-39],[5,-18],[9,-28],[-9,-42],[-1,-3],[-13,-46],[14,-31],[13,-14],[-1,-45],[2,-46],[-1,-5]],[[7159,3626],[-3,-18],[-8,-32],[-14,32],[-4,45],[-3,6],[-9,-6],[-12,-7],[-3,7],[-6,45],[-12,31],[-6,15],[-10,45],[-4,16],[-5,-16],[-16,-44],[-21,40],[-21,-32],[-15,-9],[-5,-9],[-8,9],[-8,45],[-5,14],[-21,0],[-9,-14],[-12,-18],[-21,3],[-18,-30],[-2,-1],[-2,1],[-19,8],[-21,27],[-12,-35],[-9,-28],[-20,-5],[-8,33],[-13,23],[-21,12],[-12,10],[-9,22],[-10,-22],[-10,-11],[-21,-18],[-21,-6],[-8,-10],[0,-46],[-13,-13],[-10,13],[-7,46],[-3,27],[-1,18],[1,21],[1,24],[19,35],[21,-1],[21,-1],[21,0],[20,-23],[21,-2],[21,4],[21,14],[19,-26],[1,-30],[21,1],[4,29],[6,46],[11,19],[21,-4],[10,-15],[10,-19],[21,15],[15,4],[-15,16],[-14,29],[-7,9],[-4,36],[3,10]],[[6866,4021],[-1,-5],[-8,-11],[-11,11],[-10,15],[-12,30],[-8,10]],[[6815,4071],[-6,-10],[0,-45],[-14,-33],[-17,33],[-4,4],[-21,18],[-21,15],[-5,8],[-15,17],[-21,-14],[-1,-3],[-20,-43],[-21,19],[-20,-20],[-4,-1],[-17,-5],[-21,5],[0,8],[0,37],[0,2],[9,43],[12,13],[19,33],[2,3],[2,-3],[18,-11],[21,-5],[15,16],[0,45],[6,12],[14,-12],[7,-11],[10,-34],[10,-19],[21,-8],[21,-2],[11,14]],[[6778,4155],[-4,1],[-21,23],[-6,18],[2,13]],[[6267,5060],[-12,6],[-21,24],[-19,14],[-2,2],[-17,43],[-4,7],[-17,39],[-3,11],[-6,-11],[-15,-33],[-8,-13],[-13,-9],[-11,9],[-10,14],[-20,-7],[-6,-7],[-11,-12]],[[6055,5096],[-8,-35],[0,-2],[0,-1],[21,-13],[19,-32],[2,-2],[20,-10],[14,-33],[-2,-45],[5,-46],[-16,-45],[-1,-1],[-20,-28],[-8,29],[-10,45],[-3,24],[-9,22],[-12,20],[-12,-20],[-9,-10],[-11,10],[-9,18],[-5,-18],[-10,-46],[15,-17],[11,-28],[-8,-45],[-3,-9],[-21,-4],[-21,4],[-5,9],[-16,18],[-19,27],[7,45],[12,32],[5,14],[2,45],[-7,16],[-20,11],[-21,-20],[-3,-7],[-18,-17],[-21,-24],[-3,13]],[[5980,5038],[1,-25],[4,-7],[2,7],[3,15]],[[5623,5322],[-12,-37],[21,-33]],[[5765,5002],[-6,-34],[-3,-6],[-20,-6],[-15,12],[-6,11],[-21,30],[-7,4],[-14,14],[-20,-4],[-21,-6],[-21,33],[-2,9],[2,29],[1,16],[13,45],[7,31],[12,15],[-12,22],[-21,5],[-10,18],[-11,39],[-1,6],[-19,31],[-12,15],[-9,13],[-21,6],[-21,-12],[-21,-6],[-6,-1],[-10,-46],[16,-16],[21,-6],[21,-4],[9,-19],[-9,-18],[-21,-7],[-21,-6],[-20,-12],[-6,-2],[6,-8],[20,-22],[4,-16],[1,-45],[16,-37],[17,37],[4,6],[8,-6],[-1,-45],[-6,-46],[-1,-9],[-4,-36],[4,-8],[12,-37],[-12,-22],[-13,-24],[4,-45],[9,-13],[21,-13],[21,-13],[20,16],[9,-22],[-9,-14],[-20,5],[-21,-11],[-21,-23],[-1,-3],[0,-45],[1,-4],[21,-32],[21,1],[20,-8],[21,13],[21,15],[10,15],[11,21],[20,11],[21,-4],[21,-23],[11,-5],[-11,-26],[-5,-19],[-16,-19],[-21,-24],[-4,-3],[-16,-11],[-21,-28],[-3,-6],[3,-20],[10,-25],[11,-21],[3,-25],[-3,-23],[-4,-22],[4,-20],[5,-26],[-5,-30],[-10,-15],[-11,-17],[-8,17],[-13,11],[-12,34],[-6,46],[-3,11],[-20,18],[-5,16],[-16,16],[-21,5],[-19,-21],[-2,-4],[-1,4],[-11,46],[2,45],[0,45],[-6,46],[-5,3],[-20,8],[-16,34],[-1,45],[-4,11],[-21,-9],[-21,18],[-6,26],[-10,45],[-4,5],[-21,28],[-8,12],[8,32],[5,14],[16,12],[6,-12],[14,-29],[19,29],[2,15],[5,30],[10,45],[-5,46],[-6,45],[-4,13],[-21,25],[-3,7],[3,17],[9,29],[-9,44],[0,1],[-20,45],[0,1],[-21,15],[-21,5],[-21,5],[-20,13],[-8,-39],[-13,-44],[-21,20],[-21,11],[-8,-32],[-12,-29],[-5,-16],[-8,-46],[4,-45],[2,-45],[-14,-33],[-21,6],[-10,27],[-11,30],[-10,15],[-11,6],[-20,8],[-4,31],[-5,46],[9,16],[12,29],[8,36],[7,9],[2,46],[9,45],[3,6],[11,39],[-4,46],[14,16],[21,-2],[14,-14],[7,-2],[3,2],[-3,8],[-10,37],[8,46],[-19,12],[-21,9],[-15,24],[-6,8],[-21,37],[-17,46],[-3,6],[-9,-6],[-6,-46],[4,-45],[2,-45],[-10,-46],[-2,-17],[-21,-5],[-11,22],[-10,32],[-12,-32],[12,-40],[2,-5],[9,-46],[10,-29],[5,-16],[4,-45],[-9,-28],[-12,28],[-9,36],[-1,9],[-12,45],[-7,26],[-6,20],[-7,45],[-8,7],[-21,29],[-19,10],[-2,0],[-20,9],[-21,0],[-21,12],[-10,-21],[10,-9],[21,-8],[21,-20],[3,-9],[17,-17],[18,-28],[3,-32],[1,-14],[-1,-3],[-6,3],[-15,7],[-20,3],[-21,-6],[-9,-4],[9,-5],[21,-8],[19,-32],[1,-1],[21,-39],[3,-5],[18,-37],[2,-9],[-2,-4],[-21,-15],[-21,5],[-17,-31],[17,-44],[9,-1],[-9,-1],[-1,1],[-19,35],[-7,10],[-14,18],[-10,27],[-11,18],[-21,10],[-20,-18],[-21,3],[-19,-13],[-2,-2],[-3,2],[-10,46],[-8,26],[-20,14],[-2,5],[1,45],[-17,46],[4,45],[-7,9],[-21,2],[-6,-11],[-6,-45],[-5,-46],[-4,-10],[-21,-15],[-8,-20],[8,-42],[2,-3],[-2,-4],[-20,-19],[-21,-22],[0,-1],[-21,-44],[-7,-1],[-10,-45],[14,-46],[3,-9],[21,-9],[11,18],[10,8],[20,12],[21,-13],[9,-7],[12,-11],[21,-22],[13,-12],[8,-4],[20,-1],[18,-40],[2,-46],[1,-44],[0,-1],[21,-28],[21,14],[20,4],[21,7],[12,-42],[9,-6],[14,6],[7,5],[20,1],[5,-6],[11,-46],[4,-45],[1,-4],[21,-17],[11,-24],[10,-19],[16,-27],[4,-18],[21,3],[21,1],[9,14],[12,14],[4,-14],[13,-45],[-17,-27],[-21,2],[-17,-20],[-4,-5],[-1,5],[-20,31],[-20,-17],[-21,-9],[-19,-5],[-2,-1],[-1,1],[-20,9],[-20,10],[-18,26],[-3,6],[-21,14],[-11,-20],[-10,-20],[-20,9],[-3,11],[-2,45],[-6,46],[-4,45],[-5,45],[-1,7],[-21,20],[-21,17],[-20,-23],[-10,-21],[-11,-23],[-14,-22],[-3,-45],[-4,-29],[-3,-17],[0,-45],[-18,-14],[-21,-10],[-4,24],[4,21],[6,24],[7,46],[4,45],[4,29],[2,16],[-2,14],[-13,32],[-8,15],[-20,12],[-16,-27],[-5,-14],[-21,-13],[-21,-1],[-10,-18],[-10,-38],[-2,-7],[-1,-45],[-18,-30],[-19,-16],[-2,-1],[-3,1],[-18,19],[-5,27],[5,45],[-8,45],[-12,40],[-5,6],[-3,45],[8,9],[14,36],[6,31],[3,15],[-3,27],[-2,18],[-18,32],[-21,-9],[-12,-23],[-9,-15],[-21,3],[-20,8],[-5,4],[2,45],[3,43],[0,3],[0,45],[4,45],[16,23],[21,-2],[21,-21],[21,12],[20,16],[18,18],[3,4],[19,41],[2,38],[21,-24],[20,10],[9,21],[4,46],[1,45],[7,14],[21,21],[11,11],[8,45],[2,7],[8,38],[-8,39],[-5,7],[5,25],[20,1],[21,16],[6,3],[15,17],[11,28],[10,13],[7,-13],[14,-21],[13,-24],[7,-33],[21,29],[1,4],[-1,6],[-12,39],[6,46],[-7,45],[13,26],[17,-26],[4,-6],[3,6],[1,45],[-4,27],[-4,19],[4,21],[21,5],[20,-12],[15,31],[6,15],[21,20],[18,10],[-18,15],[-21,26],[-3,5],[-18,19],[-19,26],[5,45],[-6,35],[-2,11],[2,4],[20,28],[4,13],[5,45],[12,9],[14,37],[7,37],[21,1],[12,7],[-1,45],[2,46],[-11,45],[-1,46],[4,45],[7,45],[-4,46],[-1,11]],[[8697,3019],[-1,-1],[7,-45]],[[8740,2889],[2,-7],[-8,-45],[-8,-4],[-3,4],[-18,30],[-14,15],[-7,6],[-4,-6],[-17,-22],[-20,11],[-17,11],[-4,15],[-13,30],[-8,7],[-1,-7],[-2,-45],[-6,-45],[9,-23],[21,-21],[21,18],[20,-20],[21,-45],[6,-45],[-6,-8],[-21,2],[-20,1],[-5,5],[-16,19],[-16,26],[-5,19],[-21,-6],[-16,-13],[-4,-11],[-21,-31],[-2,-3],[2,-6],[13,-40],[-10,-45],[-3,-9],[-15,-36],[-6,-13],[-17,-33],[-4,-26],[-3,26],[-2,46],[5,27],[3,18],[-3,8],[-20,3],[-21,18],[-6,16],[4,46],[-19,39],[-9,-39],[-12,-38],[-2,-8],[2,-15],[4,-30],[5,-45],[-4,-46],[-5,-4],[-15,-41]],[[9286,2473],[0,1],[-12,45],[-4,46],[-4,27],[-3,18],[3,31],[6,14],[14,8],[11,-8],[10,-7],[18,-38],[-13,-45],[-5,-8],[-10,-38],[-9,-45],[-2,-1]],[[9764,2470],[-2,4],[2,3],[6,-3],[-6,-4]],[[6144,2428],[-14,-20],[-21,6],[-20,-16],[-11,30],[11,20],[11,26],[9,10],[21,3],[21,-7],[4,-6],[-4,-12],[-7,-34]],[[8580,2412],[-20,-26],[-10,42],[-3,46],[13,20],[13,-20],[7,-24],[9,-22],[-9,-16]],[[9907,2412],[-9,16],[11,27],[16,19],[5,15],[3,-15],[1,-4]],[[9912,2428],[0,1]],[[7023,2361],[-11,22],[11,5],[13,-5],[-13,-22]],[[8435,2344],[11,39],[-11,45],[0,1],[0,-1],[-16,-45],[16,-39]],[[9660,2362],[7,21],[-2,45],[-5,4],[-1,-4],[-8,-45],[9,-21]],[[6691,2314],[13,24],[-13,21],[-14,24],[-7,12],[-8,-12],[8,-5],[17,-40],[4,-24]],[[6317,2332],[-21,-3],[-3,9],[-17,39],[-9,6],[-12,25],[-4,20],[-17,27],[-18,19],[18,42],[14,-42],[7,-27],[3,27],[-3,10],[-20,35],[20,13],[15,-13],[6,-9],[20,-33],[2,-3],[19,-25],[16,-21],[-7,-45],[-7,-45],[-2,-6]],[[7646,2317],[4,21],[-4,27],[-6,-27],[6,-21]],[[7812,2332],[0,6],[0,1],[0,-1],[0,-6]],[[8144,2305],[6,33],[-6,21],[-6,-21],[6,-33]],[[7210,2320],[-8,18],[8,11],[7,-11],[-7,-18]],[[6898,2266],[-20,-16],[-11,42],[-9,46],[-1,2],[-12,43],[12,33],[21,-11],[18,-22],[2,-5],[8,-40],[-1,-46],[-7,-26]],[[8820,2901],[-1,-19],[-10,-32],[-21,1],[-14,-14],[14,-21],[7,-25],[3,-45],[-10,-12],[-21,1],[-11,11],[-9,6],[-16,39],[-5,8],[-21,25],[-16,-33],[5,-45],[11,-38],[3,-7],[6,-46],[-9,-4],[-8,4],[-13,7],[-21,7],[-20,3],[-21,18],[-12,11],[-9,10],[-6,-10],[6,-25],[4,-21],[17,-43],[1,-2],[-1,-3],[-2,3],[-19,35],[-21,-1],[-20,-30],[-2,-4],[-10,-45],[-9,-36],[-6,-10],[-8,-45],[-7,-16],[-6,-30],[-8,-45],[-7,-9],[-20,-19],[-7,28],[7,38],[2,7],[4,46],[-4,45],[-2,18],[-8,28],[-13,22],[-12,-22],[-4,-46],[-5,-13],[-21,-9],[-8,-23],[-9,-46],[-3,-5],[-21,-16],[-11,-24],[-10,-40],[-18,-5],[-3,-2],[0,2],[-5,45],[5,31],[4,14],[-4,4],[-21,33],[-2,9],[2,11],[14,34],[-14,29],[-7,17],[-13,42],[-11,-42],[-2,-46],[-8,-33],[-5,-12],[-11,-46],[-5,-10],[-21,9],[0,1],[0,1],[13,45],[0,45],[-13,30],[-8,16],[8,19],[9,26],[7,45],[-2,46],[-8,45],[-6,35],[-1,10],[-5,46],[6,29],[8,16],[13,25],[21,7],[6,13],[12,46],[3,8],[6,37],[9,45],[-7,46],[-8,11],[-5,-11],[-2,-46],[-14,-27],[-17,-18],[-4,-4],[-21,-18],[-12,22],[-8,12],[-14,33],[-7,25],[-13,21],[-6,45],[-2,6],[-2,-6],[-3,-45],[2,-46],[2,-45],[1,-3],[11,-42],[-11,-29],[-21,24],[-20,-18],[-21,8],[-8,15],[-8,45],[-5,34],[-4,11],[-8,46],[-9,38],[-4,-38],[-4,-46],[-12,-32],[-21,-2],[-5,-11],[5,-8],[21,-6],[9,-31],[6,-46],[-15,-39],[-10,-6],[10,-2],[20,-9],[21,-7],[21,-23],[2,-4],[10,-46],[-5,-45],[-7,-27],[-21,6],[-18,-24],[15,-46],[1,-45],[2,-21],[2,-24],[-2,-13],[-18,-33],[-3,-3],[-20,-25],[-20,28],[-1,2],[-21,16],[-7,-18],[-14,-37],[-21,23],[-20,-2],[-4,16],[-5,46],[0,45],[9,22],[4,23],[-1,46],[-3,36],[-21,-15],[-17,-21],[-4,-4],[-21,-11],[-6,15],[6,33],[5,12],[-5,14],[-20,3],[-21,-11],[-3,-6],[-7,-45],[-9,-46],[-2,-4],[-21,-7],[-9,11],[-11,21],[-6,25],[-15,29],[-21,8],[-2,8],[1,45],[1,15],[11,31],[10,45],[0,1],[13,44],[-13,17],[-21,9],[-9,20],[-12,28],[-13,17],[6,45],[7,7],[21,11],[16,-18],[5,-6],[21,-11],[20,3],[21,14],[-21,10],[-20,8],[-11,28],[-10,23],[-17,22],[-4,6],[-7,-6],[-14,-10],[-5,10],[-11,45],[-3,46],[-1,7],[-17,38],[-4,7],[-12,22]],[[7523,3481],[-2,4],[-14,32],[-6,25],[-4,20],[4,32],[1,14],[-1,33],[-1,12],[1,3],[16,42],[-16,24],[-21,7],[-11,15],[-10,30],[-9,9]],[[7443,3767],[6,-23],[4,-46],[-7,-45],[-8,-17],[-9,-28],[9,-46],[-20,-27],[-4,-18],[4,-24],[5,-22],[15,-12],[21,3],[12,-36],[-9,-45],[-3,-7],[-16,7],[-5,1],[-1,-1],[-7,-46],[-6,-45],[14,-37],[7,-8],[6,-46],[8,-22],[9,-23],[-9,-38],[-21,33],[-4,5],[-16,20],[-6,7]],[[7181,3472],[-13,4],[-6,-5],[-14,-9],[-12,9],[-6,46],[-3,29],[-2,16],[-16,46],[-3,3],[-19,42],[-2,12],[-4,33],[-16,36],[-20,-36],[-1,-1],[-2,1],[-15,46],[-4,6],[-5,-6],[-16,-28],[-10,-18],[-10,-17],[-7,17],[-14,25],[-21,21],[0,1],[-1,-1],[-20,-41],[-1,-5],[1,-6],[4,-39],[-4,-11],[-19,11],[-2,1],[-14,44],[-6,11],[-21,3],[-11,-14],[-10,-15],[-20,-30],[-1,-1],[-20,-17],[-5,18],[-14,45],[-2,8],[-21,35],[-18,-43],[-3,-23],[-2,23],[-18,29],[-21,-10],[-8,-19],[-10,-45],[-3,-3],[-17,-42],[-4,-7],[-18,7],[-2,0],[-3,0],[-18,-30],[-21,-5],[-16,-11],[-5,-3],[-21,-15],[-15,18],[12,46],[3,43],[1,2],[20,26],[21,15],[1,4],[9,46],[11,30],[2,15],[4,45],[8,46],[7,5],[20,18],[21,3],[21,0],[21,-6],[20,-11],[12,-9],[9,-7],[21,2],[6,5],[15,19],[20,-7],[21,4],[18,29],[-18,36],[-21,-12],[-20,-8],[-21,10],[-12,19],[-9,32],[-4,14],[-17,13],[-19,-13],[-1,-3],[-21,-13],[-21,2],[-21,11],[-20,-16],[-21,-9],[-21,-12],[-6,-6],[-15,-19],[-6,19],[6,46],[8,45],[3,45],[10,23],[21,12],[6,11],[15,31],[20,-23],[11,-8],[10,-4],[3,4],[3,45],[15,28],[21,-6],[14,-22],[5,-45],[1,-2],[7,2],[-3,45],[-2,31]],[[6211,4663],[-19,-5],[-2,-7],[2,-46],[-5,-45],[3,-16]],[[6271,4309],[5,-16],[1,-5],[19,-38],[4,-8],[-4,-8],[-20,-25],[-11,-12],[11,-15],[18,-30],[2,-5],[14,-41],[0,-45],[-3,-45],[-11,-33],[-20,22],[-21,11],[-8,45],[-13,29],[-11,16],[-10,18],[-16,28],[-5,5],[-20,24],[-7,16],[-4,45],[-10,14],[-21,-10],[-21,-2],[-1,-2],[-19,-44],[-1,-1],[-3,-45],[-12,-46],[-5,-10],[-6,10],[3,46],[-6,45],[4,45],[-15,46],[-1,5],[-21,28],[-1,12],[1,5],[21,28],[21,6],[2,6],[-2,5],[-21,11],[-21,7],[-20,19],[-1,4],[-10,45],[2,46],[9,25],[20,11],[21,-13],[7,-23],[14,-31],[21,20],[20,-7],[14,-28],[5,-45],[2,-14],[9,14],[4,45],[-2,46],[-4,45],[-7,20],[-6,25],[-4,46],[10,13],[17,32],[4,29],[3,16],[14,46],[4,8],[20,31],[4,6],[-4,7],[-12,38],[12,35],[21,-4],[21,-8],[4,23],[-4,16],[-21,15],[-3,14],[-18,25],[-10,20],[7,46],[3,32],[2,13],[-2,3],[-20,0],[-2,-3],[-19,-10],[-16,10],[-5,3],[-21,5],[-20,2],[-8,-10],[8,-26],[9,-19],[11,-12],[21,-17],[8,-17],[0,-45],[-3,-45],[2,-46],[-7,-17],[-10,-28],[-11,-24],[-12,-21],[-8,-12],[-21,-2],[-4,14],[4,41],[0,4],[0,3],[-8,42],[-13,29],[-21,-24],[-4,-5],[4,-17],[3,-28],[-3,-9],[-8,-36],[-12,-35],[-21,7],[-21,-3],[-20,31],[-1,1],[-5,-1],[-15,-13],[-6,13],[-2,45],[8,38],[1,7],[15,46],[-16,38],[-21,-8],[-21,-23],[-6,-7],[-15,-21],[-21,-12],[-13,33],[8,27]],[[5778,4997],[-1,-1],[-7,-28],[-14,-25],[-20,-3],[-21,19],[-9,9],[-12,19],[-21,10],[-20,5],[-21,-2],[-21,8],[-3,5],[-9,46],[-1,45],[9,45],[-17,21],[-13,25],[-1,45],[-6,22],[-8,-22],[-13,-39],[-3,-6],[-18,-20],[-15,-26],[15,-13],[21,-8],[8,-24],[-7,-45],[-1,-5],[-8,-41],[4,-45],[4,-12],[13,-33],[-13,-26],[-14,-20],[7,-45],[7,-5],[21,-5],[8,10],[12,15],[21,12],[16,-27],[-11,-45],[-5,-15],[-21,-26],[-14,-5],[-6,-5],[-8,5],[-13,3],[-3,-3],[-6,-45],[9,-14],[21,0],[20,-7],[21,7],[21,13],[1,1],[20,39],[8,6],[11,46],[1,5],[21,3],[1,-8],[11,-46],[9,-13],[21,-13],[20,-5],[21,-13],[1,-1],[-1,-2],[-21,-31],[-4,-12],[-16,-17],[-21,-11],[-13,-18],[-8,-9],[-21,-9],[-20,-18],[-7,-9],[7,-15],[12,-30],[4,-46],[-7,-45],[10,-46],[1,-6],[12,-39],[-12,-19],[-20,-21],[-3,-5],[-18,-29],[-19,-17],[-2,-1],[-2,1],[-19,32],[-7,14],[-2,45],[6,45],[-17,31],[-13,15],[-8,28],[-21,15],[-16,-43],[-5,-17],[-21,11],[0,6],[-4,45],[1,46],[3,23],[3,22],[-3,29],[-2,16],[-18,28],[-21,-1],[-21,9],[-21,-8],[-11,-28],[-9,-26],[-21,5],[-2,21],[2,9],[10,37],[-10,29],[-4,16],[-1,45],[5,2],[1,-2],[7,-45],[13,-22],[20,-4],[21,8],[5,18],[-5,8],[-21,11],[-9,26],[-9,46],[-2,9],[-19,36],[-2,2],[-21,33],[-9,10],[9,22],[7,24],[14,26],[21,8],[17,-34],[3,-7],[5,7],[7,45],[9,45],[-6,46],[-15,42],[-2,3],[-18,45],[4,46],[-4,20],[-7,25],[-14,28],[-15,-28],[-6,-11],[-8,11],[-13,30],[-9,-30],[9,-34],[3,-11],[9,-46],[9,-34],[3,-11],[-3,-15],[-21,8],[-2,7],[-18,37],[-13,8],[-8,9],[-15,37],[-3,45],[-3,3],[-11,-3],[-10,-8],[-13,-37],[-7,-44],[-1,-2],[1,-1],[11,-44],[7,-45],[-9,-46],[6,-45],[-15,-12],[-12,12],[-9,15],[-21,3],[-10,-18],[-11,-14],[-12,14],[-9,28],[-3,17],[3,18],[8,28],[-8,12],[-20,10],[-21,13],[-2,10],[2,14],[4,31],[-4,31],[-2,15],[2,6],[21,35],[1,4],[7,45],[6,46],[-3,45],[9,21],[14,24],[-7,46],[8,45],[-15,39],[-20,-39],[-7,-45],[3,-46],[-15,-45],[-1,-45],[-1,-2],[-15,-44],[-6,-12],[-21,-1],[-12,13],[2,46],[-6,45],[-4,14],[-7,-14],[-5,-45],[8,-46],[-17,-41],[-7,-4],[7,-6],[17,-39],[4,-6],[20,-29],[4,-11],[-4,-11],[-15,-34],[-5,-34],[-21,2],[-21,27],[-3,5],[-14,45],[-4,8],[-20,20],[-18,18],[-3,5],[-14,40],[-7,20],[-21,7],[-10,-27],[-10,-21],[-19,21],[-2,5],[-21,0],[-21,11],[-12,29],[-8,28],[-10,18],[-11,43],[-1,2],[-18,45],[-2,10],[-1,-10],[-11,-45],[7,-45],[5,-19],[5,-27],[-5,-19],[-21,-3],[-21,-5],[-20,-12],[-21,0],[-3,-6],[-1,-45],[4,-7],[21,1],[20,1],[21,-12],[21,-13],[21,-12],[2,-4],[19,-23],[20,-3],[16,-19],[5,-13],[8,-32],[2,-46],[7,-45],[4,-5],[8,5],[13,22],[6,23],[14,41],[21,2],[13,-43],[-1,-45],[9,-25],[21,13],[20,2],[21,-23],[3,-12],[3,-46],[15,-35],[14,-10],[7,-13],[6,-32],[14,-24],[21,4],[17,20],[4,3],[21,7],[5,-10],[13,-46],[2,-8],[15,-37],[6,-30],[3,-15],[-3,-6],[-21,-20],[-20,-7],[-7,-13],[3,-45],[-17,-24],[-21,9],[-3,15],[-6,45],[-11,46],[-1,1],[-1,-1],[-19,-11],[-21,-3],[-21,-6],[-21,11],[-20,7],[-1,2],[-20,31],[-21,2],[-16,-33],[-5,-3],[-20,-7],[-21,9],[-1,1],[1,2],[4,43],[-4,30],[-4,15],[-5,46],[-10,45],[-2,5],[-21,34],[-20,1],[-21,-39],[-1,-1],[-8,-45],[-4,-46],[12,-45],[-20,-33],[-21,-9],[-4,-3],[-17,-27],[-20,25],[-1,2],[1,5],[4,40],[10,45],[6,33],[2,13],[1,45],[-3,37],[-20,-3],[-21,-29],[-21,6],[-21,7],[-4,-18],[4,-20],[18,-25],[-7,-46],[-11,-19],[-20,-22],[-21,22],[-21,-8],[-21,0],[-11,-18],[-9,-16],[-21,-14],[-15,30],[0,45],[15,16],[17,30],[4,8],[10,37],[-7,45],[-3,10],[-21,29],[-21,-1],[-19,8],[19,34],[4,11],[17,21],[16,24],[5,16],[6,30],[-6,36],[-21,-2],[-21,-31],[-21,7],[-20,11],[-21,15],[-3,9],[3,10],[8,35],[-8,46],[3,45],[5,45],[12,46],[1,1],[3,-1],[17,-3],[21,2],[21,-18],[21,18],[1,1],[19,23],[15,22],[5,45],[-9,46],[10,6],[21,3],[11,-9],[10,-42],[15,42],[2,45],[3,12],[18,34],[3,7],[16,38],[5,19],[8,26],[-8,14],[-21,15],[-10,17],[10,36],[5,9],[7,45],[9,17],[21,-1],[12,-16],[8,-16],[7,16],[8,46],[6,8],[21,20],[21,-28],[21,-18],[5,18],[-5,31],[-4,14],[3,45],[-20,31],[-4,15],[4,19],[20,26],[1,0],[20,-14],[21,3],[1,11],[-1,3],[-19,42],[-2,6],[-14,40],[14,45],[21,8],[8,-8],[13,-45],[19,-46],[2,-7],[20,-15],[8,22],[-8,13],[-14,33],[-6,12],[-17,33],[0,45],[-4,16],[-8,30],[8,40],[2,5],[14,45],[-13,46],[17,45],[1,0],[20,-13],[4,13],[8,45],[9,17],[21,21],[1,8],[3,45],[-4,15],[-14,31],[5,45],[-12,29],[-21,-15],[-16,-14],[-4,-3],[-7,3],[0,45],[-11,46],[3,45],[-2,45],[-4,9],[-21,-1],[-8,-8],[-13,-32],[-8,32],[-12,23],[-21,0],[-20,23],[-1,1],[-21,22],[-14,-23],[-7,-14],[-8,-32],[-12,-26],[-8,-19],[-12,-45],[2,-46],[-3,-25],[-2,-20],[-6,-45],[-4,-46],[-7,-45],[-2,-3],[-11,-43],[-10,-36],[-3,-9],[-17,-36],[-3,-9],[-17,-46],[-1,-2],[-18,-43],[17,-45],[-5,-46],[-10,-45],[-5,-17],[-8,-28],[-13,-25],[-8,-21],[-12,-37],[-3,-8],[-9,-45],[-9,-46],[-21,-12],[-21,-15],[-20,-12],[-21,8],[-21,17],[-12,14],[-9,19],[-6,-19],[-15,-24],[-20,0],[-13,-21],[-8,-21],[-10,-24],[10,-17],[21,0],[20,-4],[21,-19],[15,-6],[6,-3],[21,-4],[21,-2],[20,-22],[4,-14],[-4,-16],[-18,-29],[-2,-7],[-13,-39],[-8,-9],[-5,9],[-16,39],[-21,-8],[-20,-31],[12,-45],[-13,-22],[-15,-23],[-2,-46],[12,-45],[-15,-27],[-21,20],[-21,-1],[-19,-38],[9,-45],[1,-45],[-12,-6],[-20,-5],[-17,-35],[-4,-43],[0,-2],[0,-10],[1,-35],[9,-46],[-10,-28],[-15,28],[-6,13],[-21,15],[-20,-28],[0,-3],[-15,-42],[15,-33],[1,-12],[-1,-5],[-21,-15],[-15,-26],[-6,-5],[-21,-13],[-16,18],[1,46],[9,45],[2,45],[4,30],[2,16],[3,45],[-4,45],[2,46],[11,45],[-14,18],[-7,-18],[-8,-45],[-5,-9],[-8,-37],[-13,-37],[-3,-8],[-18,-44],[-1,-1],[-20,-26],[-21,18],[-20,-38],[0,-4],[-21,-32],[-11,-9],[-10,-8],[-21,4],[-3,4],[-17,15],[-21,19],[-21,-1],[-21,-2],[-19,14],[-1,2],[-7,-2],[-14,-3],[-6,3],[-15,25],[-5,21],[5,43],[0,2],[14,45],[-14,15],[-4,-15],[-17,-42],[-1,-3],[-12,-45],[-7,-12],[-21,-9],[-21,-6],[-21,19],[-21,5],[-20,-13],[-17,16],[-4,7],[-21,29],[-6,9],[6,9],[21,11],[17,-20],[4,-10],[20,-31],[21,14],[7,27],[-7,17],[-18,28],[-3,12],[-4,34],[-5,45],[-11,9],[-9,-9],[-12,-8],[-21,5],[-3,3],[-18,18],[-20,11],[-3,16],[-18,30],[-21,-8],[-17,24],[11,45],[6,46],[-21,32],[-10,13],[10,22],[21,-3],[21,-17],[21,2],[20,3],[21,12],[21,-8],[10,34],[-10,28],[-6,18],[6,17],[21,27],[20,-8],[21,-28],[21,-7],[21,0],[21,15],[20,-7],[21,16],[10,-25],[8,-46],[3,-8],[3,8],[13,46],[5,7],[20,11],[21,-11],[21,-7],[10,-46],[10,-45],[1,-13],[1,13],[19,24],[14,21],[7,8],[21,6],[11,-14],[10,-16],[19,-29],[1,-1],[2,1],[19,18],[14,-18],[7,-17],[21,-13],[6,30],[-6,11],[-11,34],[-10,18],[-21,13],[-12,15],[12,14],[15,31],[-4,45],[10,46],[-4,45],[1,45],[-17,46],[-1,1],[-21,32],[-5,12],[-5,45],[1,46],[-3,45],[0,45],[-8,43],[-2,3],[-14,45],[-5,3],[-10,-3],[-2,-45],[12,-44],[1,-2],[7,-45],[-8,-30],[-3,-15],[-3,-46],[4,-45],[2,-19],[4,-26],[17,-27],[8,-19],[5,-45],[-13,-40],[-4,-5],[-17,-25],[-21,-9],[-21,5],[-20,16],[-21,-2],[-21,8],[-21,-3],[-10,10],[-10,45],[0,6],[-21,23],[-21,3],[-9,13],[-12,28],[-20,-11],[-4,-17],[-17,-31],[-21,12],[-21,-20],[-6,-6],[-15,-6],[-20,4],[-2,2],[2,6],[14,39],[6,27],[6,19],[15,27],[17,18],[1,45],[3,10],[10,36],[7,45],[4,7],[10,38],[11,31],[14,15],[6,7],[21,2],[21,9],[8,27],[-8,16],[-21,4],[-12,25],[4,46],[8,24],[21,15],[21,-3],[5,9],[2,45],[-7,18],[-21,5],[-16,23],[-5,11],[-15,34],[-5,46],[-1,1],[-3,-1],[-17,-10],[-13,10],[-8,3],[-3,-3],[3,-9],[9,-37],[12,-24],[7,-21],[11,-46],[-8,-45],[-10,-26],[-6,-19],[3,-46],[-18,-45],[-1,0],[-20,11],[-6,-11],[-15,-38],[-3,-7],[3,-18],[5,-28],[-5,-7],[-21,-17],[-20,-19],[-1,-2],[1,-39],[0,-6],[0,-1],[-8,-45],[-5,-45],[-8,-33],[-5,-12],[-16,-18],[-15,-28],[-6,-11],[-14,11],[6,46],[-12,30],[-7,15],[-14,30],[-21,1],[-21,6],[-6,8],[6,41],[1,5],[-1,26],[0,19],[0,1],[1,-1],[20,-17],[21,14],[4,3],[-1,45],[13,46],[-16,33],[-21,5],[-1,7],[-20,44],[-20,-26],[-16,27],[16,16],[16,30],[-6,45],[10,18],[21,11],[21,0],[14,16],[7,20],[4,26],[-4,6],[-21,3],[-21,17],[-7,19],[7,39],[4,7],[17,14],[21,16],[20,8],[21,-5],[20,-33],[1,-5],[5,5],[10,45],[-13,45],[-2,2],[-21,17],[-15,27],[1,45],[-7,18],[-18,-18],[-2,-5],[-12,-40],[-9,-12],[-21,-25],[-21,33],[-2,4],[-16,45],[-2,3],[-20,42],[-1,11],[-4,35],[-17,30],[-21,14],[-20,-23],[-21,-8],[-12,-13],[12,-15],[21,-3],[20,-16],[5,-12],[6,-45],[10,-45],[0,-2],[19,-44],[2,-5],[16,-40],[-16,-34],[-4,-11],[-6,-46],[-11,-15],[-6,15],[-15,37],[-3,9],[-17,24],[-14,21],[-7,30],[-7,15],[-4,46],[-10,18],[-19,27],[-2,1],[-21,8],[-20,-6],[-21,2],[-21,22],[-21,-3],[-20,-5],[-12,26],[-9,23],[-7,23],[0,45],[-14,37],[-21,-34],[-20,15],[-10,-18],[10,-14],[18,-31],[-11,-46],[-7,-14],[-13,-31],[-7,-45],[-1,-3],[-3,3],[-18,15],[-18,30],[-3,28],[-12,17],[-8,3],[-2,-3],[2,-4],[17,-41],[-4,-45],[7,-22],[9,-24],[12,-30],[4,-15],[-4,-38],[-1,-7],[1,-12],[3,-34],[-3,-6],[-21,1],[-4,5],[-16,17],[-17,-17],[-4,-4],[-15,4],[-6,46],[-1,0],[-20,-11],[-21,4],[-6,7],[6,16],[6,29],[-6,15],[-20,25],[-15,5],[15,8],[19,38],[-19,32],[-10,13],[10,12],[20,26],[8,7],[-8,8],[-20,13],[-21,13],[-12,12],[7,45],[3,45],[2,11],[18,-11],[3,-1],[0,1],[0,16],[-2,30],[2,2],[20,13],[15,-15],[6,-9],[14,-37],[7,-13],[13,13],[-7,46],[-4,45],[-2,4],[-21,16],[-19,25],[14,46],[-14,45],[-2,1],[-3,-1],[-17,-8],[-6,8],[-13,45],[0,46],[-2,10],[-12,-10],[-9,-4],[-7,-42],[-2,-45],[9,-25],[6,-20],[-6,-15],[-17,-31],[-4,-4],[-20,-18],[-10,22],[-11,42],[-2,4],[-9,45],[11,19],[12,26],[-12,44],[-21,-24],[-21,-4],[-20,16],[-9,14],[8,45],[1,2],[20,25],[14,18],[-14,39],[-20,-4],[-21,-14],[-8,25],[-13,33],[-21,-26],[-11,38],[8,46],[3,5],[13,-5],[8,-13],[21,-16],[14,-17],[7,-18],[3,18],[17,43],[15,-43],[6,-23],[11,-22],[5,-46],[5,-3],[3,3],[6,46],[-9,36],[-4,9],[-3,46],[7,14],[21,22],[20,-7],[21,10],[21,-32],[5,-7],[16,-16],[20,8],[5,-38],[-5,-21],[-5,-24],[-5,-46],[-4,-45],[14,-24],[17,-21],[4,-5],[3,5],[-3,6],[-12,39],[12,33],[4,12],[14,46],[3,4],[21,22],[17,19],[-1,46],[5,39],[20,2],[21,-17],[10,-24],[-2,-46],[0,-45],[4,-46],[9,-10],[2,10],[13,46],[6,10],[20,13],[7,-23],[2,-46],[-1,-45],[13,-35],[6,35],[15,39],[3,6],[1,46],[13,45],[4,11],[20,7],[7,-18],[14,-28],[8,-17],[13,-33],[3,-13],[-3,-17],[-7,-28],[-14,-41],[-1,-4],[1,-4],[21,-15],[21,-11],[20,3],[20,-19],[1,0],[19,-45],[2,-21],[21,-16],[21,36],[0,1],[0,1],[-15,44],[10,46],[5,4],[3,-4],[17,-29],[10,-17],[10,-45],[1,-5],[1,5],[20,16],[12,-16],[5,-45],[4,-9],[20,-21],[12,30],[-12,25],[-7,20],[0,45],[-4,46],[11,17],[9,28],[-9,26],[-20,14],[-4,5],[-17,16],[-21,21],[-4,9],[4,13],[10,32],[5,46],[6,5],[21,-2],[3,-3],[17,-39],[17,-7],[4,-3],[21,-34],[21,28],[13,-36],[7,-13],[21,-7],[10,-26],[-1,-45],[11,-45],[1,-4],[4,-42],[-4,-19],[-15,-26],[15,-19],[21,0],[20,-21],[3,-5],[18,-39],[4,-7],[17,-22],[15,-23],[-3,-45],[9,-18],[7,18],[4,45],[0,45],[-11,22],[-9,24],[-9,45],[-3,45],[21,19],[20,-19],[1,0],[20,-21],[9,21],[12,42],[21,-24],[12,-18],[9,-9],[20,-2],[21,-29],[3,-5],[11,-45],[7,-19],[9,-27],[6,-45],[-4,-45],[-11,-45],[0,-1],[0,-45],[0,-1],[2,1],[19,8],[10,37],[9,46],[1,9],[21,0],[5,36],[-5,13],[-13,32],[-8,29],[-6,17],[-14,38],[-3,7],[-18,45],[-21,28],[-12,18],[-5,45],[-4,8],[-14,-8],[-6,-3],[-2,3],[-9,45],[-10,13],[-18,-13],[-3,-1],[-1,1],[-19,46],[13,45],[-14,30],[-20,-19],[-16,35],[-5,39],[-9,-39],[-12,-15],[-21,-3],[-11,18],[-3,45],[-7,12],[-4,-12],[-16,-39],[-21,-3],[-21,32],[-10,10],[-11,16],[-10,29],[-10,34],[-11,-34],[-10,-19],[-21,6],[-5,13],[-1,46],[4,45],[2,12],[15,33],[-15,12],[-21,12],[-8,-24],[-11,-45],[5,-45],[-6,-24],[-21,-6],[-14,30],[-5,45],[-2,3],[-21,37],[-10,-40],[-2,-45],[-5,-46],[-3,-13],[-11,-32],[-8,-45],[-2,-18],[-4,-28],[4,-26],[2,-19],[-2,-4],[-21,0],[-21,2],[0,2],[-8,45],[1,46],[-14,20],[-12,25],[-8,22],[-19,23],[-2,7],[-4,-7],[-17,-3],[-3,3],[2,46],[-20,36],[-16,9],[-4,1],[-9,44],[4,46],[5,16],[8,29],[10,45],[-18,38],[-2,8],[-14,45],[-5,14],[-21,-12],[-10,-2],[-11,-45],[21,-40],[5,-6],[0,-45],[-5,-22],[-2,-23],[-10,-46],[2,-45],[7,-45],[3,-23],[2,-23],[-2,-6],[-21,-3],[-3,9],[-9,46],[-8,45],[0,2],[-18,43],[-3,18],[-3,-18],[-18,-40],[-21,3],[-12,-8],[-8,-3],[-21,-1],[-21,0],[-6,4],[-15,16],[-9,29],[6,46],[3,8],[21,21],[20,16],[1,1],[21,42],[2,2],[18,26],[19,20],[-19,18],[-20,14],[-21,-23],[-6,-9],[-15,-13],[-5,13],[-3,45],[-4,45],[-2,46],[-2,45],[-3,45],[6,46],[13,28],[21,-1],[12,18],[-12,16],[-9,29],[1,46],[-13,34],[-4,11],[-9,45],[4,46],[-12,19],[-7,-19],[-14,-37],[-6,-9],[4,-45],[2,-13],[4,-32],[2,-46],[-6,-13],[-20,-18],[-21,31],[0,2],[-1,-2],[-3,-45],[4,-9],[14,-36],[-3,-46],[-2,-45],[-1,-45],[1,-46],[-5,-45],[-4,-6],[-2,6],[-12,45],[-7,15],[-10,31],[-11,39],[-2,6],[-7,45],[-8,46],[-3,10],[-2,-10],[-6,-46],[-2,-45],[3,-45],[-3,-46],[10,-29],[4,-16],[-2,-45],[18,-13],[5,-33],[-5,-17],[-7,17],[-13,44],[-14,-44],[-7,-43],[-2,-2],[-19,-4],[-6,4],[-15,21],[-9,-21],[-11,-21],[-10,21],[9,45],[1,2],[20,31],[3,13],[-2,45],[-1,1],[-20,24],[-21,8],[-21,11],[-21,-27],[-10,-17],[-10,-10],[-21,2],[-15,8],[-6,2],[-1,-2],[-8,-45],[-12,-24],[-18,-22],[-3,-1],[-5,1],[-15,14],[-13,32],[-8,22],[-9,23],[9,10],[17,35],[-8,46],[11,45],[1,4],[20,32],[19,-36],[2,-12],[5,12],[16,33],[5,12],[16,17],[10,-17],[6,-45],[5,-26],[14,26],[6,4],[3,-4],[18,-24],[21,13],[12,11],[-12,12],[-15,33],[-6,11],[-18,35],[4,45],[6,45],[-13,36],[-6,-36],[-14,-24],[-21,-1],[-17,-20],[-4,-5],[-21,4],[-2,1],[-19,34],[-4,11],[4,11],[21,35],[1,0],[20,-15],[5,15],[3,45],[13,22],[21,-14],[20,32],[2,5],[-2,6],[-11,40],[-2,45],[13,44],[3,2],[18,5],[17,-5],[4,-2],[1,2],[20,22],[20,7],[21,10],[21,0],[4,6],[-4,2],[-21,15],[-8,28],[-13,36],[-6,-36],[-14,-23],[-21,13],[-21,8],[-21,-16],[-20,15],[-3,3],[-14,46],[-4,18],[-17,27],[4,45],[-8,19],[-20,27],[5,45],[-6,12],[-3,-12],[3,-45],[0,-1],[11,-45],[8,-45],[2,-41],[1,-4],[10,-46],[10,-30],[4,-15],[-4,-17],[-21,-4],[-21,-4],[-4,-20],[4,-13],[13,-33],[-13,-18],[-21,0],[-11,18],[-9,15],[-14,31],[-7,40],[-14,-40],[-1,-46],[-2,-45],[-4,-9],[-3,9],[-18,40],[-2,5],[-18,41],[-3,5],[-17,45],[-1,1],[-1,-1],[-20,-26],[-9,-19],[-3,-46],[-9,-17],[-20,-8],[-21,-6],[-21,28],[-21,-36],[-20,28],[-9,11],[1,46],[8,6],[20,28],[9,-34],[12,-43],[12,43],[9,25],[10,20],[11,15],[20,13],[10,17],[11,29],[8,17],[13,25],[5,20],[15,45],[-20,28],[-20,-28],[-1,-1],[-21,-31],[-6,-13],[-14,-27],[-21,-17],[-3,-1],[-18,-6],[-21,2],[-20,-12],[-21,8],[-6,8],[6,39],[21,-8],[20,-23],[15,37],[3,45],[-18,23],[-10,23],[5,45],[5,16],[21,-2],[15,31],[-15,32],[-6,14],[0,45],[6,23],[11,22],[1,46],[-2,45],[0,45],[11,45],[0,1],[-21,26],[-9,19],[-10,45],[-2,6],[-9,40],[-11,23],[-21,-9],[-12,31],[-9,9],[-5,-9],[5,-21],[14,-24],[7,-6],[13,-40],[8,-21],[8,-24],[1,-45],[4,-46],[-13,-19],[-21,-6],[-21,-3],[-21,-2],[-18,-15],[18,-43],[21,25],[21,-3],[21,-6],[7,-18],[-5,-46],[-2,-6],[-11,-39],[-10,-31],[-21,6],[-21,-18],[-21,3],[-2,-5],[2,-5],[21,0],[17,-41],[-10,-45],[-7,-16],[-21,12],[-6,4],[-14,35],[-12,-35],[6,-45],[-15,-15],[-3,15],[-2,45],[-16,27],[-21,-1],[-17,19],[-3,34],[-1,12],[1,4],[20,20],[20,21],[-20,30],[-4,15],[-13,46],[-3,4],[-15,-4],[-6,-5],[-9,-41],[-12,-22],[-16,-23],[-5,-4],[-6,4],[-14,43],[-21,-14],[-21,14],[-4,2],[-17,8],[-20,7],[-21,10],[-6,21],[-15,30],[-21,-19],[-2,-11],[-19,-18],[-20,-7],[-21,4],[-6,21],[6,21],[7,24],[1,45],[-8,22],[-7,-22],[-14,-25],[-14,-20],[-7,-10],[-14,-35],[-6,-17],[-21,-2],[-9,19],[5,45],[4,26],[6,19],[-6,7],[-21,13],[-8,26],[8,31],[11,14],[-11,13],[-21,16],[-20,3],[-21,-8],[-21,3],[-16,18],[16,22],[21,13],[8,11],[13,11],[20,32],[3,2],[18,16],[21,4],[21,6],[20,9],[21,7],[13,4],[-13,16],[-9,29],[-12,5],[-6,-5],[-14,-19],[-21,-4],[-21,2],[-21,3],[-20,-14],[-21,28],[-8,-41],[-13,-23],[-21,0],[-20,23],[-21,1],[0,-1],[0,-2],[8,-44],[-2,-45],[-6,-12],[-17,-34],[-4,-6],[-21,-3],[-21,-10],[-20,-18],[-19,-7]],[[1394,9231],[2,-4],[19,-42],[2,-2],[2,2],[18,15],[17,-15],[4,-4],[10,4],[11,5],[21,5],[19,-10],[-7,-45],[-5,-45],[-7,-9],[-21,-5],[-21,-2],[-15,-30],[15,-17],[21,-25],[2,-3],[19,-20],[20,-11],[16,31],[5,14],[21,16],[21,11],[21,-7],[20,-17],[5,-17],[-5,-24],[-6,-21],[6,-32],[21,2],[19,30],[2,3],[5,-3],[16,-16],[20,-15],[9,-15],[12,-19],[17,-26],[4,-21],[21,-21],[2,-3],[-2,-3],[-21,-10],[-21,-23],[-21,-6],[-20,1],[-5,-5],[5,-18],[6,-27],[14,-41],[21,14],[21,-9],[21,10],[20,0],[21,0],[21,-19],[21,3],[13,42],[-4,45],[-4,46],[15,21],[21,-20],[12,-1],[2,-46],[6,-45],[1,-6],[4,-39],[17,-40],[21,-4],[3,-2],[17,-15],[21,-29],[2,-1],[10,-45],[-12,-15],[-21,-29],[-20,7],[-21,0],[-21,33],[-7,4],[-14,6],[-16,39],[-5,22],[-20,21],[-21,-11],[-14,-32],[-7,-4],[-21,-1],[-17,5],[-3,1],[-21,11],[-21,-12],[-17,-45],[17,-41],[4,-5],[17,-23],[21,-1],[20,-11],[20,-10],[1,-2],[19,-44],[-19,-36],[-21,-4],[-20,-1],[-3,-4],[2,-45],[-5,-46],[6,-23],[20,21],[21,-18],[9,-25],[-5,-45],[-4,-10],[-11,-36],[-10,-17],[-20,4],[-13,-32],[-8,-15],[-21,-17],[-3,-13],[0,-46],[3,-11],[7,-34],[-1,-45],[15,-40],[2,-6],[8,-45],[-10,-5],[-7,5],[-14,14],[-7,31],[-14,29],[-20,-11],[-21,-7],[-9,-11],[-12,-7],[-8,7],[-13,35],[-6,11],[6,23],[10,22],[-10,17],[-4,28],[4,45],[10,-45],[11,-27],[12,27],[0,46],[-4,45],[-3,45],[-5,28],[-4,18],[4,23],[7,22],[14,28],[13,17],[-1,46],[6,45],[3,7],[18,38],[-18,46],[-1,0],[-20,-44],[-1,-2],[-14,-45],[-6,-18],[-8,-27],[-13,-26],[-20,-3],[-2,29],[2,7],[15,38],[2,45],[-6,46],[-11,9],[-4,-9],[-9,-46],[-8,-13],[-21,-21],[-21,-7],[-1,-4],[-3,-45],[4,-9],[21,-32],[1,-5],[-1,-1],[-21,-21],[-21,15],[-15,7],[-5,4],[-2,-4],[-19,-37],[-21,-5],[-21,28],[-17,14],[-3,11],[-13,35],[13,16],[9,-16],[11,-22],[9,22],[6,45],[6,25],[18,-25],[3,-2],[1,2],[-1,3],[-16,42],[-5,9],[-21,24],[-3,13],[3,29],[2,16],[12,46],[7,13],[21,-10],[3,-3],[18,-19],[20,15],[2,4],[-2,2],[-20,39],[-1,4],[-9,45],[10,28],[10,18],[10,15],[13,-15],[8,-12],[21,-24],[6,36],[-6,23],[-9,22],[-12,30],[-21,1],[-20,-14],[-21,3],[-13,25],[-8,15],[-21,17],[-10,-32],[10,-15],[12,-30],[9,-25],[7,-20],[-7,-27],[-6,-19],[-15,-21],[-20,2],[-14,19],[-7,13],[-10,-13],[4,-45],[6,-37],[1,-8],[-1,-3],[-17,-43],[-4,-25],[-8,25],[-13,21],[-20,12],[-8,-33],[-13,-19],[-21,-4],[-21,20],[-2,3],[2,13],[10,33],[1,45],[9,45],[-20,39],[-20,-4],[-21,-35],[16,-45],[-6,-45],[-10,-19],[-16,19],[-5,9],[-21,22],[-7,14],[-13,21],[-21,24],[2,46],[-2,22],[-3,-22],[3,-46],[-14,-45],[14,-3],[16,-42],[5,-9],[20,-15],[8,-22],[2,-45],[-10,-43],[0,-3],[-1,-45],[1,-5],[2,5],[19,41],[4,4],[17,22],[21,-17],[1,-5],[-1,-9],[-7,-36],[7,-36],[20,17],[15,19],[6,9],[10,-9],[9,-45],[-9,-46],[-10,-31],[-21,-1],[-20,22],[-11,10],[-10,8],[-21,12],[-8,-20],[-13,-29],[-8,-16],[-12,-34],[-9,34],[-12,23],[-21,-5],[-4,27],[-9,46],[-8,11],[-21,8],[-18,26],[-2,6],[-21,16],[-21,20],[-12,3],[-9,5],[-20,29],[-4,12],[4,18],[20,24],[21,-41],[21,41],[2,3],[8,46],[-10,19],[-21,18],[-6,8],[-15,18],[-7,27],[7,24],[21,17],[4,5],[-2,45],[-2,3],[-19,42],[-2,4],[-20,2],[-5,-6],[-16,-22],[-21,-2],[-17,24],[-4,2],[-1,-2],[1,-5],[14,-40],[7,-21],[8,-24],[-8,-11],[-21,-11],[-8,-24],[8,-16],[21,-24],[2,-5],[-2,-5],[-21,-13],[-20,6],[-21,6],[-21,3],[-4,3],[-17,20],[-7,-20],[-13,-34],[-21,23],[-2,11],[2,13],[7,32],[-7,20],[-12,26],[-2,45],[14,27],[10,-27],[11,-32],[20,13],[10,19],[-1,45],[12,44],[1,2],[-1,21],[-1,24],[-13,45],[-7,20],[-19,26],[19,31],[18,14],[3,2],[7,-2],[14,-12],[19,-33],[2,-4],[0,4],[3,45],[-3,28],[-3,17],[3,14],[20,-5],[6,-9],[15,-24],[15,-21],[6,-6],[21,-21],[20,0],[14,-18],[7,-30],[16,30],[4,45],[-20,19],[-21,23],[-2,3],[-18,31],[-13,15],[13,16],[20,6],[21,23],[21,-28],[13,-17],[8,-24],[5,-22],[15,-22],[21,-20],[17,-3],[4,0],[-16,45],[-5,8],[-13,38],[3,45],[10,44],[2,1],[-2,3],[-18,43],[-3,4],[-20,29],[-16,-33],[-5,-6],[-8,6],[-13,20],[-21,-11],[-17,-9],[-3,-1],[-21,-15],[-15,16],[-6,7],[-17,-7],[-4,-2],[0,2],[-4,45],[4,20],[6,25],[8,46],[7,13],[4,0]],[[9872,2288],[-2,4],[17,46],[-8,45],[6,45],[4,15],[11,31],[-11,45],[-1,0],[-20,5],[-3,-5],[-16,-45],[-2,-4],[-18,-42],[-3,-34],[-2,-11],[-19,-22],[-13,22],[7,45],[-9,46],[5,45],[10,15],[20,31],[-8,45],[-12,32],[-20,-4],[-10,17],[10,23],[20,1],[21,-17],[21,12],[10,27],[-10,18],[-20,27],[20,15],[21,3],[21,-8],[9,-10],[11,-39],[18,39],[3,4],[21,25],[4,16],[-4,14],[-21,21],[-21,-7],[-20,11],[-21,4],[-9,3],[-9,45],[-3,4],[-21,21],[-6,20],[6,28],[4,18],[-4,9],[-21,15],[-15,21],[-5,8],[-4,-8],[4,-15],[7,-30],[-2,-46],[-5,-14],[-14,-31],[-7,-12],[-17,-33],[-4,-8],[-21,-9],[-20,16],[-2,1],[-19,23],[-19,-23],[1,-46],[7,-45],[5,-45],[-11,-46],[-2,-45],[-2,-9],[-1,9],[-5,45],[-5,46],[4,45],[4,45],[2,46],[0,41]],[[9664,2885],[17,5],[21,-2],[20,12],[13,27],[-4,46],[-9,18],[-13,27],[-4,10]],[[9907,2388],[-6,-5],[-12,-45],[4,-13]],[[6234,2241],[6,6],[-6,9],[-4,-9],[4,-6]],[[6192,2215],[-20,12],[-21,1],[-21,-6],[-20,25],[-1,0],[-20,45],[-21,-5],[-9,5],[-12,12],[-21,29],[-4,5],[4,6],[21,30],[4,9],[17,33],[17,-33],[4,-19],[16,-26],[4,-4],[10,4],[11,5],[21,10],[21,-11],[3,-4],[13,-46],[4,-9],[7,-36],[-7,-32]],[[7791,2235],[4,12],[-4,41],[-20,-27],[-13,-14],[13,-30],[20,18]],[[9349,2243],[-2,4],[2,20],[10,-20],[-10,-4]],[[9785,2246],[3,1],[-3,2],[-21,10],[-17,-12],[17,-43],[21,42]],[[9598,2201],[0,1],[0,1],[-3,-1],[3,-1]],[[8830,2143],[6,13],[-6,30],[-13,-30],[13,-13]],[[7480,2130],[7,26],[-7,5],[-3,-5],[3,-26]],[[6255,2129],[-17,27],[17,10],[8,-10],[-8,-27]],[[7272,2144],[-21,-10],[-20,1],[-21,11],[-9,10],[-12,20],[-21,18],[-3,8],[3,15],[21,4],[21,2],[18,24],[3,20],[20,-2],[13,-18],[7,-45],[1,-11],[5,-35],[-5,-12]],[[8269,2155],[0,1],[0,2],[0,-2],[0,-1]],[[7895,2155],[0,1],[-2,46],[2,10],[2,-10],[-1,-46],[-1,-1]],[[5860,2106],[6,5],[0,45],[-6,15],[-21,-2],[-20,12],[-14,-25],[14,-18],[20,-3],[17,-24],[4,-5]],[[8809,2090],[7,21],[-7,29],[-15,-29],[15,-21]],[[5964,2107],[-2,4],[2,5],[4,-5],[-4,-4]],[[8954,2107],[2,4],[-2,2],[-6,-2],[6,-4]],[[6379,2086],[-5,25],[3,45],[2,7],[9,-7],[6,-45],[-15,-25]],[[6587,2088],[-21,-2],[-6,25],[6,20],[21,-11],[5,-9],[-5,-23]],[[7791,2102],[3,9],[-3,7],[-7,-7],[7,-9]],[[9639,2106],[-18,5],[18,18],[5,-18],[-5,-5]],[[9743,2103],[-19,8],[19,12],[16,-12],[-16,-8]],[[6130,2024],[7,42],[-7,31],[-19,-31],[19,-42]],[[6026,2053],[-20,12],[-2,1],[2,5],[20,9],[11,-14],[-11,-13]],[[7688,2047],[4,19],[-4,4],[-4,-4],[4,-19]],[[9528,2066],[8,29],[4,16],[-4,11],[-21,34],[0,10],[-2,-10],[-6,-45],[-6,-45],[14,-43],[13,43]],[[6234,2051],[-21,5],[-6,10],[6,8],[21,11],[10,-19],[-10,-15]],[[8580,2060],[-16,6],[16,4],[3,-4],[-3,-6]],[[8046,2066],[-5,-20],[-8,20],[6,45],[-17,45],[10,46],[6,45],[3,19],[2,-19],[18,-30],[7,-15],[3,-46],[6,-45],[-16,-15],[-15,-30]],[[7854,2066],[-11,45],[11,17],[20,4],[11,-21],[-11,-27],[-20,-18]],[[9349,2034],[-9,32],[-5,45],[14,21],[10,-21],[1,-45],[-11,-32]],[[4656,1990],[-17,30],[-4,11],[-21,12],[-12,23],[-4,45],[16,10],[9,-10],[12,-15],[9,-30],[12,-22],[15,-24],[-15,-30]],[[6982,2012],[-21,4],[-2,4],[-19,31],[-8,15],[-13,28],[-10,17],[-11,42],[-2,3],[2,5],[21,0],[2,-5],[19,-38],[13,-7],[8,-13],[13,-32],[8,-28],[4,-18],[-4,-8]],[[7667,2005],[12,15],[-12,14],[-5,-14],[5,-15]],[[7168,2000],[-8,20],[8,17],[16,-17],[-16,-20]],[[8933,1992],[-20,28],[-1,0],[1,4],[20,2],[8,-6],[-8,-28]],[[9832,2080],[-6,17],[-4,14],[-17,26],[-16,19],[-2,46],[18,5],[21,13],[21,19],[5,8],[0,45],[3,46],[-1,45],[-7,22],[-3,-22],[-8,-45],[-10,-18],[-21,-10],[-20,6],[-21,-9],[-9,-15],[-12,-14],[-21,-1],[-4,15],[4,14],[13,32],[8,10],[21,17],[8,18],[-8,35],[-21,7],[-4,3],[-9,46],[13,13],[19,32],[2,9],[21,18],[12,19],[-12,25],[-8,20],[-13,23],[-7,22],[7,21],[10,25],[11,23],[20,20],[1,2],[20,38],[21,6],[11,1],[-11,2],[-21,10],[-15,34],[-6,26],[-4,-26],[-16,-36],[-7,-10],[-14,-16],[-17,-29],[-4,-7],[-21,-9],[-9,16],[-11,36],[-12,-36],[1,-45],[0,-46],[-4,-45],[-6,-45],[0,-1],[-17,-45],[-4,-5],[-14,5],[0,46],[0,45],[-7,18],[-15,27],[7,46],[6,45],[-4,45],[2,46],[-1,30]],[[9680,2921],[1,1],[17,5],[-8,20]],[[9537,2936],[4,-9],[15,-29],[5,-16],[-5,-20],[-7,-25],[0,-46],[-6,-45],[-7,-26],[-21,-12],[-7,38],[-5,45],[-9,21],[-16,-21],[-5,-5],[-4,5],[-7,46],[-10,37],[-16,-37],[-4,-6],[-21,2],[-7,4],[-14,28],[-21,-21],[-2,-7],[-3,-46],[5,-12],[10,-33],[-4,-45],[-6,-4],[-20,-19],[-6,-23],[-15,-30],[-13,30],[0,46],[-8,20],[-8,25],[8,14],[21,23],[3,8],[4,46],[-7,29],[-20,-29],[-1,-1],[-21,-18],[-11,19],[-9,16],[-21,25],[-1,4],[-4,45],[-3,46],[-7,43]],[[9369,2943],[0,-2],[10,-14],[11,-34],[14,-11],[7,-16],[3,16],[-3,4],[-13,41],[-8,18],[-3,10]],[[7148,1958],[-7,17],[7,10],[5,-10],[-5,-17]],[[6629,1968],[-5,7],[4,45],[1,0],[13,-45],[-13,-7]],[[6670,1972],[-8,3],[8,4],[4,-4],[-4,-3]],[[8477,1966],[-19,9],[-2,10],[-6,35],[-15,23],[-10,23],[10,14],[14,-14],[7,-26],[3,-20],[18,-30],[6,-15],[-6,-9]],[[9598,1959],[-9,16],[9,10],[8,-10],[-8,-16]],[[6308,1930],[-12,-3],[-20,-13],[-21,9],[-6,7],[-15,13],[-16,32],[-5,18],[-4,-18],[-17,-26],[-20,-6],[-21,21],[-13,11],[13,15],[21,21],[5,9],[-5,12],[-8,34],[8,14],[20,15],[15,16],[4,45],[-19,14],[-20,11],[-21,8],[-17,-33],[-4,-5],[-14,5],[-7,3],[-20,32],[-4,11],[-17,38],[-21,-2],[-15,9],[-6,13],[-20,16],[-21,14],[-1,2],[-9,46],[10,17],[21,15],[8,13],[-8,45],[0,1],[-15,45],[-6,8],[-20,-8],[-1,-1],[-21,1],[-20,13],[-16,-13],[-5,-31],[-21,11],[-17,20],[-4,7],[-21,28],[-12,10],[12,14],[21,13],[7,19],[-7,21],[-9,24],[-12,41],[0,4],[0,2],[21,9],[21,-8],[2,-3],[19,-30],[21,-10],[20,5],[8,-10],[13,-21],[21,17],[2,4],[-2,34],[-1,11],[1,2],[2,-2],[19,-12],[20,0],[16,-33],[-11,-45],[-5,-14],[-8,-32],[8,-32],[16,-13],[5,-3],[6,3],[15,6],[21,32],[10,7],[10,7],[21,15],[8,24],[8,45],[5,4],[5,-4],[16,-12],[20,-15],[12,-18],[9,-22],[21,18],[8,4],[13,6],[21,8],[14,-14],[6,-11],[16,-35],[5,-8],[20,-37],[1,-1],[21,-32],[4,-13],[10,-45],[-5,-45],[-9,-35],[-2,-11],[0,-45],[-19,-32],[-8,-13],[-13,-22],[-14,22],[-7,11],[-20,7],[-14,-18],[14,-17],[16,-29],[4,-28],[4,-17],[-4,-7],[-20,-38],[14,-46],[6,-41],[1,-4],[11,-45]],[[9432,1923],[1,7],[-1,42],[-6,-42],[6,-7]],[[6732,1926],[-12,4],[12,4],[3,-4],[-3,-4]],[[7521,1930]],[[7729,1913],[-13,17],[13,25],[19,-25],[-19,-17]],[[8435,1918],[-10,12],[10,2],[3,-2],[-3,-12]],[[9556,1920],[-12,10],[12,8],[14,-8],[-14,-10]],[[9817,2013],[-2,7],[-10,41],[-2,5],[-18,20],[-19,25],[-2,7],[-7,38],[7,46],[-21,43],[-21,-20],[-20,4],[-8,18],[-4,45],[11,46],[1,2],[20,25],[17,18],[-17,16],[-13,29],[6,46],[7,19],[21,24],[1,2],[-1,5],[-6,41],[6,29],[8,16],[-7,45],[4,46],[-5,4],[-8,-4],[-13,-16],[-7,-30],[-7,-45],[-6,-26],[-5,-19],[-14,-46],[-2,-5],[-21,-23],[-21,-3],[-12,-14],[-6,-46],[-2,0],[-1,0],[-20,40],[-21,-17],[-8,23],[8,26],[8,19],[13,17],[21,28],[0,1],[-21,19],[-9,26],[3,45],[6,18],[14,28],[2,45],[-1,45],[-1,46],[-2,21]],[[9590,2889],[-5,-7],[-1,-45],[-6,-46],[-1,-27],[0,-18],[-17,-45],[-4,-16],[-8,-30],[-12,-32],[-19,32],[-2,3],[-2,-3],[-12,-45],[-7,-19],[-21,8],[-10,11],[1,45],[-11,46],[-1,0],[-12,45],[-8,18],[-21,6],[-6,-24],[6,-21],[6,-24],[4,-46],[-10,-28],[-21,-4],[-4,-13],[4,-12],[14,-33],[7,-14],[18,-32],[3,-8],[10,-37],[-3,-46],[1,-45],[0,-45],[-8,-15],[-21,9],[-5,6],[-2,45],[-10,45],[-4,13],[-4,33],[-17,44],[-1,1],[-19,26],[-12,-26],[12,-37],[1,-8],[-1,-3],[-21,-31],[-5,-12],[-16,-35],[-15,-10],[-6,-3],[-2,3],[-10,45],[-8,16],[-21,16],[-10,14],[-11,20],[-8,-20],[-9,-46],[0,-45],[1,-45],[-5,-13],[-20,-12],[-3,25],[-4,45],[-11,45],[-3,8],[-21,36],[0,2],[21,42],[21,-8],[2,11],[-2,17],[-5,29],[-1,45],[6,24],[19,21],[1,1],[3,-1],[18,-5],[4,5],[13,46],[4,11],[21,12],[1,22],[-1,6],[-21,9],[-21,18],[-21,8],[-5,4],[5,5],[16,41],[-16,40],[-2,5],[2,5],[15,40],[-15,34],[-12,5]],[[8144,1823],[4,16],[-4,8],[-5,-8],[5,-16]],[[6774,1802],[-21,27],[-1,10],[-20,39],[-20,-15],[-10,21],[-8,46],[-3,10],[-16,-10],[-5,-2],[-6,2],[-15,6],[-20,-6],[-1,0],[-20,-18],[-12,18],[4,45],[-9,45],[-4,9],[-21,-5],[-7,-4],[-14,-11],[-5,11],[-15,33],[-11,13],[-10,29],[-6,16],[6,34],[1,11],[-1,3],[-12,43],[12,21],[13,24],[8,24],[20,4],[21,-23],[6,-5],[6,-45],[9,-12],[21,-17],[16,-17],[5,-11],[8,-34],[0,-45],[12,-8],[21,-13],[21,-1],[11,-24],[10,-14],[20,-23],[9,-8],[12,-17],[12,-28],[9,-23],[10,-23],[2,-45],[-12,-37]],[[6442,1792],[-6,2],[6,1],[3,-1],[-3,-2]],[[9660,1782],[-8,12],[8,21],[12,-21],[-12,-12]],[[9474,1794],[-1,-1],[0,1],[-15,45],[15,31],[21,-16],[10,-15],[-10,-14],[-20,-31]],[[6836,1725],[4,23],[-4,14],[-5,-14],[5,-23]],[[6919,1746],[-3,2],[3,12],[2,-12],[-2,-2]],[[8705,1694],[17,9],[-17,14],[-16,31],[-5,15],[-4,-15],[4,-20],[9,-25],[12,-9]],[[9639,1701],[2,2],[-2,1],[0,-1],[0,-2]],[[9818,1765],[-13,26],[-20,-13],[-9,16],[9,10],[20,-3],[7,38],[8,45],[-15,45],[0,1],[-19,45],[0,45],[-1,3],[-21,23],[-21,11],[-21,-11],[-18,20],[-2,13],[-4,32],[4,10],[13,35],[-13,23],[-21,-7],[-15,30],[-2,45],[-1,45],[9,46],[9,37],[5,8],[6,45],[10,34],[2,12],[18,45],[-20,22],[-7,-22],[-14,-32],[-13,-13],[-8,-10],[-12,-36],[-9,-29],[-20,-4],[-21,24],[-21,-22],[-21,-6],[-9,37],[2,46],[7,28],[7,17],[14,36],[7,10],[-7,36],[-2,9],[-19,19],[-7,-19],[-13,-26],[-10,-19],[-11,-27],[-21,8],[-19,19],[-2,1],[-21,14],[-19,30],[-1,3],[-1,-3],[1,-5],[10,-40],[10,-45],[1,-1],[18,-45],[-11,-46],[13,-44],[0,-1],[0,-4],[-3,-41],[-18,-22],[-11,-24],[-3,-45],[-6,-8],[-12,8],[-9,13],[-19,32],[-2,3],[-21,21],[-3,22],[3,18],[7,27],[-7,40],[-20,-2],[-21,-27],[-5,-11],[-16,-36],[-12,-9],[-9,-6],[-4,6],[-16,25],[-11,20],[-10,22],[-13,-22],[5,-45],[-6,-46],[4,-45],[-11,-35],[-21,19],[-20,-16],[-21,11],[-21,-23],[0,-1],[-6,-46],[-9,-45],[10,-45],[-16,-24],[-10,-22],[4,-45],[-15,-42],[-9,42],[-6,45],[-5,12],[-9,34],[9,28],[14,17],[6,9],[11,36],[-5,46],[6,45],[9,23],[15,22],[6,13],[18,33],[-3,45],[-15,38],[-21,-6],[-21,12],[-1,1],[1,3],[21,31],[2,12],[19,25],[10,20],[-10,34],[-4,12],[-3,45],[7,9],[19,-9],[2,-4],[0,4],[5,45],[16,29],[18,17],[-4,45],[-14,13],[-21,0],[-15,32],[15,13],[21,31],[1,2],[-1,2],[-11,43],[-10,42],[-3,3],[-4,10]],[[8961,2919],[-7,-37],[-21,-6],[-20,-3],[-8,9],[-13,32],[-21,-29],[-21,35],[-19,-38],[-1,-45],[0,-2],[-18,-44],[18,-38],[2,-7],[-2,-26],[-8,-19],[-13,-10],[-21,3],[-21,-15],[-16,22],[-4,6],[-20,39],[-1,3],[-21,14],[-2,-17],[2,-6],[18,-39],[3,-10],[15,-36],[6,-13],[20,-21],[7,-11],[14,-26],[21,-14],[1,-5],[-1,-2],[-21,-19],[-17,-25],[-4,-6],[-1,6],[-19,37],[-4,9],[-17,28],[-11,17],[-10,17],[-21,4],[-21,-14],[-3,-7],[3,-3],[21,-20],[10,-22],[11,-17],[12,-29],[-1,-45],[-11,-46],[-21,29],[-21,10],[-2,7],[-15,45],[-3,21],[-21,9],[-12,16],[-9,18],[-18,27],[-3,2],[-1,-2],[1,-8],[11,-37],[-11,-29],[-9,-17],[9,-10],[21,-21],[6,-14],[14,-46],[-20,-36],[-5,-9],[5,-12],[21,-33],[-21,-19],[-20,19],[-1,1],[-20,12],[-16,32],[-5,29],[-8,-29],[-13,-18],[-21,-26],[-1,-1],[-19,-33],[-11,-13],[-10,-22],[-5,22],[-2,46],[7,34],[1,11],[7,45],[1,46],[-9,45],[-14,-45],[-7,-9],[-11,9],[-10,4],[-1,-4],[-1,-46],[-18,-29],[-21,-15],[0,-1],[-8,-45],[-13,-31],[-10,-15],[-11,-22],[-9,22],[-12,36],[-3,10],[-2,45],[4,45],[-14,46],[-5,35],[-8,-35],[-10,-46],[-3,-5],[-21,-40],[-21,-24],[-8,24],[-11,45],[19,37],[3,9],[-2,45],[-1,2],[-20,38],[-3,6],[3,9],[14,36],[6,23],[4,22],[-4,34],[-1,12],[-7,45],[-7,45],[-4,46],[3,45],[16,28],[9,17],[-9,23],[-13,23],[-7,12],[-10,-12],[-11,-24],[-7,-22],[-14,-26],[-21,7],[-20,9],[-21,10],[-21,27],[-6,-27],[6,-25],[12,-20],[9,-7],[15,-38],[6,-18],[20,-28],[-20,-45],[0,-2],[-9,-43],[-8,-46],[2,-45],[-6,-6],[-5,-39],[-3,-46],[-13,-28],[-12,-17],[-9,-21],[-14,-25],[-6,-7],[-5,7],[-16,30],[-13,-30],[-8,-28],[-21,5],[-12,23],[-9,12],[-5,-12],[-15,-22],[-19,-23],[-2,-2],[-21,-15],[-1,17],[1,14],[8,31],[2,46],[3,45],[3,46],[-4,45],[9,27],[7,18],[-7,21],[-21,-8],[-13,-13],[-8,-8],[-15,8],[-5,11],[-21,-1],[-3,-10],[-18,-43],[-2,-2],[-19,-34],[-14,34],[-6,8],[-13,37],[-8,33],[-21,-2],[-21,-17],[-1,32],[1,20],[3,25],[3,45],[2,46],[13,42],[1,3],[-1,17],[-1,28],[-20,42],[-20,-14],[-8,18],[-10,45],[-3,33],[-6,12],[6,2],[21,17],[20,19],[17,8],[-17,7],[-19,38],[-1,10],[-14,35],[-7,25],[-8,21],[-13,23],[-12,22],[-9,25],[-3,10]],[[7525,3449],[-4,9],[-6,13],[-14,32],[-9,14],[-8,45],[3,46],[-3,45],[1,45],[-5,4],[-4,-4],[-2,-45],[-7,-45],[2,-46],[-10,-45],[15,-46],[6,-21],[4,-24],[-4,-37],[-2,-8],[2,-8],[4,-38],[-4,-12],[-17,12],[-4,4],[-4,-4],[-8,-45],[12,-16],[12,-29],[9,-36],[3,-10],[2,-45],[-1,-45],[-1,-46],[-3,-34],[-21,14],[-7,20],[-9,46],[-5,7],[-20,24],[-21,10],[-21,-16],[-13,-25],[-8,-20],[-20,-14],[-6,34],[-2,25]],[[7194,3425],[-5,-3],[-5,4],[-16,15],[-20,-15],[0,-45],[0,-3],[-21,-39],[-18,42],[-3,9],[-5,36],[5,42],[1,3],[5,46],[-6,29],[-8,-29],[-13,-17],[-14,-29],[-6,-7],[-10,7],[-11,31],[-3,15],[-18,35],[-11,10],[10,46],[1,3],[21,7],[19,35],[-19,19],[-21,12],[-21,1],[-17,-32],[-3,-6],[-6,6],[-15,45],[-21,-45],[-14,-45],[-6,-46],[7,-45],[-8,-20],[-21,13],[-5,7],[-7,45],[-8,29],[-4,17],[4,30],[2,15],[-2,7],[-21,0],[-6,-7],[-15,-10],[-16,-35],[-5,-10],[-20,-14],[-9,24],[-12,45],[0,2],[-9,-2],[-12,-7],[-6,-38],[-7,-46],[-8,-22],[-6,22],[-3,46],[-5,45],[-6,31],[-8,-31],[-13,-30],[-13,-15],[-8,-22],[-21,-21],[-5,-3],[-8,-45],[-7,-12],[-7,12],[-14,22],[-21,-5],[-21,-17],[-21,-35],[-5,-11],[-15,-17],[-21,14],[-1,3],[-3,46],[-13,45],[17,21],[9,25],[11,45],[1,1],[14,44],[6,12],[21,15],[8,19],[13,31],[6,14],[6,45],[4,46],[5,13],[21,17],[14,15],[6,11],[21,3],[21,9],[15,22],[-15,9],[-21,6],[-21,5],[-20,-12],[-14,-8],[-7,-7],[-21,-12],[-14,-26],[-7,-14],[-16,-31],[-5,-8],[-12,8],[0,45],[10,45],[2,12],[7,34],[10,45],[-2,45],[6,24],[10,22],[11,13],[16,32],[5,14],[21,3],[12,-17],[8,-10],[11,10],[10,45],[1,0],[20,0],[2,0],[-2,4],[-5,26]],[[6379,4156],[1,-4],[-1,-8],[-20,-5],[-11,11]],[[6328,4176],[5,-24],[-7,-46],[4,-45],[-8,-45],[-2,-46],[-3,-5],[-21,-30],[-20,35],[0,1],[-1,-1],[-14,-45],[-6,-30],[-8,30],[-7,45],[1,46],[-7,39],[-1,6],[-20,32],[-21,-3],[-20,-10],[-7,26],[3,46],[-17,41],[-1,4],[-20,22],[-21,-13],[-3,-9],[3,-36],[1,-9],[-1,-3],[-15,-43],[-5,-14],[-17,-31],[-4,-6],[-14,6],[-7,7],[-19,38],[19,22],[6,24],[-3,45],[2,45],[-5,16],[-21,6],[-20,-5],[-5,29],[5,18],[6,27],[-6,27],[-21,2],[-4,16],[4,19],[6,27],[-6,18],[-21,14],[-11,13],[7,46],[4,5],[21,11],[11,29],[10,20],[20,-6],[21,-2],[6,-12],[12,-45],[3,-6],[5,6],[12,45],[4,7],[5,-7],[15,-26],[18,-19],[3,-7],[1,7],[-1,5],[-10,40],[-5,45],[-6,26],[-11,20],[11,15],[21,25],[3,5],[8,45],[10,31],[5,15],[16,40],[3,5],[-3,25],[-7,20],[2,46],[-16,34],[-4,-34],[1,-46],[-18,-43],[-1,-2],[-19,-45],[-1,-2],[-20,-28],[-21,-14],[-12,44],[0,45],[-9,45],[0,1],[0,-1],[-8,-45],[-10,-45],[-3,-7],[-12,-39],[-8,-12],[-17,12],[-4,3],[-7,-3],[-14,-8],[-6,8],[-15,23],[-13,-23],[-6,-45],[-1,-5],[-3,5],[-18,42],[-1,3],[-4,46],[5,20],[4,25],[9,45],[8,37],[2,9],[-2,6],[-21,6],[-11,-12],[-10,-13],[-21,-31],[-2,-2],[-19,-10],[-10,10],[-10,28],[-5,18],[5,11],[8,27]],[[5791,4993],[-11,-25],[-3,-5],[-21,-39],[-20,1],[-21,20],[-21,20],[-10,3],[-11,4],[-20,12],[-21,-1],[-21,0],[-18,30],[-3,24],[-11,22],[-8,45],[2,45],[-3,7],[-5,-7],[4,-45],[-2,-45],[-10,-46],[8,-45],[5,-10],[20,-35],[0,-43],[21,15],[21,15],[13,-33],[-4,-45],[-9,-37],[-2,-8],[-8,-46],[10,-11],[6,11],[15,25],[7,21],[10,45],[3,5],[21,17],[15,-22],[2,-45],[4,-16],[16,-30],[5,-3],[20,-3],[21,1],[19,-40],[-5,-45],[-14,-9],[-21,-12],[-20,-18],[-9,-7],[-12,-15],[-21,-19],[-21,-4],[-7,-7],[7,-19],[8,-26],[3,-46],[10,-38],[17,38],[4,5],[21,18],[20,16],[21,5],[21,-17],[21,-9],[10,-18],[-1,-45],[-9,-7],[-21,-20],[-17,-19],[17,-40],[2,-5],[-2,-8],[-9,-37],[-12,-15],[-19,-31],[-2,-6],[-2,6],[-18,31],[-21,-27],[-6,42],[-15,26],[-19,-26],[-2,-4],[-18,-42],[-2,-7],[-19,-38],[-2,-3],[-4,3],[-17,8],[-21,22],[-20,-4],[-15,-26],[-6,-10],[-11,10],[0,45],[11,31],[5,15],[-5,22],[-3,23],[3,12],[21,17],[4,16],[-4,9],[-21,16],[-17,21],[-4,5],[-2,-5],[-11,-46],[-8,-16],[-21,-28],[-15,44],[0,46],[-5,40],[-1,5],[1,5],[5,41],[0,45],[-2,45],[-3,5],[-21,1],[-21,0],[-5,-6],[-16,-17],[-11,-28],[-9,-29],[-21,-16],[0,-1],[0,1],[-14,45],[-5,45],[9,46],[-8,45],[-3,9],[-21,16],[-10,-25],[-10,-18],[-9,18],[-7,45],[16,27],[14,19],[6,14],[21,9],[8,-23],[13,-9],[5,9],[-5,10],[-18,35],[-3,4],[-21,18],[-10,23],[10,37],[4,9],[17,21],[13,24],[8,12],[21,5],[20,-10],[6,38],[-6,38],[-2,8],[-18,24],[-11,21],[-10,45],[0,1],[0,-1],[-6,-45],[-7,-45],[-8,-12],[-21,8],[-2,4],[-14,45],[-4,9],[-21,10],[-21,-2],[-4,-17],[4,-7],[21,-34],[1,-4],[-1,-15],[-21,-20],[-12,-11],[12,-31],[1,-14],[-1,-7],[-12,-38],[-9,-10],[-19,10],[-1,1],[-21,19],[-21,-19],[-21,3],[-21,21],[-20,10],[-4,10],[4,33],[2,12],[-2,19],[-21,14],[-14,13],[2,45],[3,45],[-4,46],[9,45],[-17,11],[-15,-11],[-6,-16],[-5,-29],[5,-9],[13,-37],[-13,-41],[-1,-4],[-12,-45],[13,-41],[2,-5],[11,-45],[-13,-16],[-14,16],[7,45],[-13,11],[-21,24],[-9,11],[-12,14],[-19,31],[-2,4],[-20,36],[-21,5],[-21,41],[-3,5],[-18,22],[-10,-22],[-10,-14],[-21,3],[-7,11],[-14,19],[-21,4],[-18,22],[-2,6],[-8,-6],[-13,-14],[-21,-22],[-8,-9],[8,-5],[21,-6],[21,-26],[16,-9],[4,0],[21,-20],[19,-25],[1,-45],[1,-32],[4,32],[17,9],[20,16],[21,-3],[21,0],[10,-22],[-1,-46],[12,-23],[20,3],[21,-18],[3,-7],[9,-45],[9,-42],[21,5],[5,-9],[5,-45],[10,-37],[21,11],[21,13],[21,8],[20,-40],[0,-2],[11,-44],[10,-25],[21,-2],[6,-18],[-6,-26],[-4,-19],[-17,-35],[-12,-11],[12,-37],[6,-8],[-6,-5],[-20,-40],[-1,-1],[-2,1],[-18,5],[-3,-5],[-18,-39],[-21,-1],[-21,-4],[-13,44],[-7,26],[-4,19],[4,12],[10,33],[-10,11],[-21,2],[-21,-6],[-21,10],[-20,13],[-12,16],[-9,13],[-12,-13],[-9,-15],[-21,-10],[-20,-15],[-14,-6],[-6,-45],[-1,-8],[-3,8],[1,45],[-19,44],[0,2],[0,4],[8,41],[-8,26],[-3,19],[-5,46],[-13,34],[-20,3],[-20,-37],[-1,-8],[-3,-38],[3,-9],[21,-21],[4,-15],[-4,-10],[-18,-35],[-3,-9],[-21,-7],[-21,-18],[-7,-12],[-12,-45],[-2,-1],[0,1],[-10,45],[-10,16],[-20,30],[12,45],[8,41],[0,4],[7,46],[-7,22],[-14,-22],[-7,-7],[-16,-39],[-5,-7],[-19,-38],[-2,-3],[-20,-14],[-21,16],[-21,-7],[-21,-24],[-9,-13],[-11,-9],[-21,-22],[-21,1],[-10,30],[-3,45],[-1,45],[14,46],[5,0],[16,-3],[2,3],[19,43],[0,2],[0,3],[-8,42],[-13,21],[-21,1],[-21,-5],[-18,29],[18,32],[7,13],[14,33],[11,12],[-11,12],[-21,7],[-20,27],[-21,0],[-14,45],[10,45],[-17,32],[-9,14],[0,45],[9,13],[12,32],[9,23],[7,23],[12,45],[2,2],[4,-2],[16,-11],[21,-1],[21,-16],[21,25],[2,3],[17,45],[-16,46],[17,45],[1,0],[20,-9],[21,-4],[21,2],[3,11],[6,46],[11,17],[14,28],[1,45],[-15,22],[-18,24],[5,45],[11,45],[2,8],[16,38],[5,7],[21,8],[21,5],[6,25],[-6,17],[-11,28],[-10,35],[-3,11],[3,5],[21,20],[15,20],[5,13],[10,-13],[11,-20],[18,20],[3,3],[11,42],[10,36],[2,10],[-2,44],[0,1],[-4,45],[-2,46],[6,15],[11,-15],[10,-18],[20,-1],[9,19],[-9,35],[-3,10],[3,12],[21,28],[2,5],[-2,5],[-21,39],[0,2],[-16,45],[16,45],[0,1],[-9,45],[9,23],[21,7],[12,15],[-12,16],[-21,4],[-15,26],[4,45],[-9,35],[-5,10],[-14,46],[-2,4],[-21,3],[-4,-7],[-17,-42],[-1,-4],[-7,-45],[-13,-37],[-3,-8],[3,-44],[1,-2],[-1,-2],[-2,-43],[2,-27],[2,-19],[-2,-4],[-20,-10],[-21,5],[-14,-36],[-4,-45],[-3,-4],[-21,-18],[-8,-24],[-12,-20],[-12,-25],[12,-29],[7,-16],[-7,-29],[-4,-17],[-14,-45],[-3,-26],[-3,-19],[-18,-33],[-6,-13],[-15,-21],[-8,-24],[-8,-45],[-4,-14],[-7,-32],[-14,-35],[-19,-10],[-2,-1],[-21,-14],[-20,-8],[-21,5],[-15,18],[-6,5],[-21,2],[-8,-7],[-3,-45],[11,-9],[21,-3],[21,-11],[21,1],[20,3],[13,-27],[4,-45],[-7,-45],[-10,-16],[-13,-30],[-5,-45],[-2,-6],[-14,6],[-7,3],[-21,33],[-12,-36],[8,-45],[-17,-15],[-21,-10],[-2,-21],[2,-8],[12,-37],[-7,-46],[-5,-19],[-20,4],[-15,15],[-6,8],[-17,-8],[3,-45],[14,-45],[-21,-16],[-21,-11],[-19,-19],[-1,-12],[-4,-33],[1,-45],[3,-13],[3,-33],[0,-45],[8,-45],[9,-42],[2,-4],[2,-45],[-4,-14],[-20,-2],[-4,16],[-17,45],[0,1],[-11,45],[0,45],[-10,19],[-11,-19],[-10,-33],[-2,-12],[-17,-46],[-1,-2],[-21,-9],[-21,-16],[-16,-18],[-5,-11],[-16,11],[-4,3],[-13,42],[0,46],[9,45],[4,33],[1,12],[8,46],[2,45],[-11,25],[-9,-25],[-12,-20],[-11,-25],[-10,-21],[-21,-23],[-21,2],[-2,-4],[-9,-45],[11,-43],[1,-2],[-1,-4],[-20,-1],[-3,5],[-18,27],[-21,-17],[-21,-2],[-20,26],[-12,11],[-9,8],[-21,-5],[-14,-3],[-7,-3],[-1,3],[-19,22],[-21,-16],[-21,6],[-10,-12],[-11,-20],[-10,-25],[-6,-46],[16,-45],[11,-45],[-11,-34],[-20,28],[-2,6],[-19,31],[-21,-5],[-21,13],[-8,6],[-13,21],[-4,24],[4,13],[16,33],[5,9],[21,-1],[14,-8],[7,-4],[3,4],[10,45],[-13,27],[-21,-4],[-21,11],[-18,11],[-3,2],[-1,-2],[-19,-24],[-18,24],[-3,4],[-21,30],[-5,12],[-16,24],[-20,20],[-1,1],[1,1],[20,34],[10,10],[11,17],[21,15],[8,14],[-8,5],[-21,5],[-21,15],[-20,-10],[-21,-7],[-21,27],[-17,10],[-4,2],[-17,43],[-3,32],[-21,0],[-7,14],[0,45],[-14,23],[-21,9],[-20,-5],[-21,-26],[-21,30],[-21,12],[-16,-43],[-5,-29],[-4,-16],[-16,-24],[-16,-22],[-5,-6],[-14,6],[10,46],[4,19],[5,26],[-5,8],[-21,33],[-1,5],[-16,45],[-4,14],[-20,19],[-18,12],[-3,3],[-21,1],[-21,9],[-5,-13],[-15,-44],[-1,-1],[-20,-15],[-15,-30],[-6,-42],[-8,42],[-13,17],[-12,28],[4,45],[-12,25],[-7,21],[7,11],[11,34],[-6,45],[15,21],[21,14],[19,-35],[2,-2],[2,2],[19,21],[20,-21],[17,46],[-4,45],[8,25],[21,18],[21,-25],[20,1],[21,7],[21,-19],[2,-7],[-2,-11],[-11,-34],[11,-43],[2,-3],[13,-45],[6,-14],[17,-31],[3,-3],[2,3],[19,34],[5,11],[16,39],[21,-19],[8,-20],[13,-23],[10,-22],[10,-10],[13,10],[8,9],[17,36],[4,9],[5,-9],[16,-31],[18,-14],[2,-2],[21,-31],[21,-10],[2,-3],[19,-15],[20,7],[12,8],[8,46],[1,2],[16,43],[5,16],[21,4],[20,-2],[16,-18],[5,-9],[21,-7],[21,10],[21,0],[18,6],[2,1],[21,18],[13,-19],[8,-22],[18,22],[3,4],[3,-4],[17,-6],[21,-10],[21,-5],[13,-24],[8,-36],[20,12],[21,10],[21,2],[21,-11],[15,-23],[5,-7],[15,7],[-15,10],[-12,36],[12,36],[20,9],[-15,45],[3,46],[-8,5],[-1,-5],[-14,-46],[-5,-12],[-21,-8],[-21,-4],[-21,1],[-20,15],[-21,5],[-6,3],[-15,6],[-21,4],[-20,11],[-15,25],[-6,12],[-21,25],[-21,-3],[-11,-34],[-9,-24],[-21,0],[-21,9],[-13,15],[-8,13],[-21,6],[-20,11],[-18,15],[13,45],[-16,20],[-20,-20],[-1,-1],[-21,-43],[-20,9],[-10,35],[1,46],[-12,27],[-14,18],[-7,5],[-21,-3],[-13,-2],[-7,-1],[-1,1],[-5,45],[6,18],[8,28],[-8,36],[-2,9],[2,8],[20,29],[21,8],[0,1],[-21,23],[-6,22],[-14,15],[-21,22],[-4,8],[-9,45],[-8,37],[-2,9],[2,5],[21,9],[8,31],[13,26],[14,19],[6,17],[11,29],[-10,45],[5,46],[15,30],[17,15],[-17,16],[-16,29],[-5,7],[-18,39],[-2,5],[-19,40],[-2,5],[-20,-5],[15,-45],[5,-12],[15,-34],[6,-14],[11,-31],[-11,-28],[-9,-17],[-2,-46],[-10,-21],[-16,-24],[-5,-8],[-4,8],[-17,40],[-2,5],[-17,46],[-1,1],[-21,19],[-7,-20],[7,-22],[7,-24],[-7,-28],[-9,-17],[-8,-46],[17,-20],[11,-25],[-8,-45],[-3,-42],[-1,-4],[1,-1],[21,-39],[1,-5],[-1,-16],[-21,-21],[-21,25],[-21,0],[-13,12],[-8,8],[-20,20],[-21,9],[-6,8],[-15,15],[-21,-8],[-20,19],[-21,-4],[-21,2],[-21,-10],[-20,14],[-7,18],[7,18],[20,15],[7,12],[-3,45],[17,43],[2,3],[-2,2],[-21,15],[-4,28],[4,39],[2,7],[-2,4],[-9,41],[5,45],[-4,46],[-12,18],[-4,-18],[-17,-37],[-7,-9],[7,-45],[0,-11],[0,-34],[0,-15],[-1,-31],[-20,-41],[-21,-3],[-20,28],[-21,-16],[-21,-7],[-21,19],[-21,-17],[-13,37],[-7,6],[-17,40],[-4,31],[-5,14],[-16,25],[-4,20],[-17,41],[-4,5],[4,10],[9,35],[9,45],[-18,17],[-18,29],[18,34],[4,11],[9,45],[6,46],[-19,43],[-20,-16],[-21,-22],[-14,40],[-7,26],[-21,2],[-9,17],[-11,22],[-15,-22],[-6,-10],[-21,8],[-1,2],[-20,37],[-4,9],[4,7],[21,15],[21,7],[16,16],[-16,14],[-21,23],[-3,8],[3,10],[9,36],[-9,45],[-21,-32],[-7,-13],[-13,-29],[-21,-6],[-21,17],[-21,3],[-15,15],[15,10],[10,35],[11,41],[21,1],[1,3],[9,46],[-8,45],[10,46],[1,45],[8,8],[14,-8],[6,-4],[4,4],[17,11],[8,-11],[13,-26],[21,-18],[20,32],[21,-31],[21,43],[21,23],[20,-7],[21,2],[21,-4],[21,3],[20,-10],[21,3],[6,-10],[4,-45],[-10,-46],[21,-5],[5,5],[16,43],[0,3],[0,21],[-1,24],[1,1],[21,17],[20,-1],[21,-8],[7,-9],[14,-36],[3,-9],[18,-40],[20,12],[10,-18],[11,-37],[20,37],[1,2],[16,44],[5,9],[20,6],[8,-15],[13,-34],[5,-12],[16,-33],[6,-12],[10,-46],[-3,-45],[8,-27],[20,-1],[13,-17],[8,-12],[21,-16],[12,28],[9,15],[21,15],[20,-30],[0,-1],[4,1],[17,19],[13,26],[-13,11],[-21,18],[-6,16],[-3,46],[9,23],[5,22],[5,46],[11,20],[21,13],[21,-3],[20,-19],[15,34],[-15,35],[-20,-14],[-21,0],[-11,24],[-10,20],[-12,-20],[-9,-35],[-3,-10],[-15,-45],[-2,-10],[-4,-36],[0,-45],[-17,-39],[-8,-7],[-13,-15],[-21,-8],[-12,23],[-7,46],[-2,5],[-16,40],[-4,9],[-18,37],[-3,20],[-8,25],[-13,11],[-21,21],[-6,13],[-12,46],[-2,3],[-15,42],[-6,34],[-14,-34],[4,-45],[3,-46],[-13,-45],[-1,-2],[-2,2],[-19,13],[-12,32],[-8,31],[-7,15],[-14,29],[-21,-6],[-21,3],[-20,-7],[-21,1],[-21,1],[-21,12],[-8,12],[-13,44],[-1,1],[1,3],[6,43],[15,34],[18,11],[2,45],[-18,46],[-2,19],[-2,26],[-4,45],[-4,46],[0,45],[-1,45],[3,46],[-13,36],[-11,-36],[-2,-46],[-4,-45],[-1,-45],[2,-46],[0,-45],[-1,-45],[-3,-11],[-13,11],[-8,6],[-15,39],[-6,17],[-14,28],[-7,19],[-7,-19],[7,-36],[4,-9],[7,-45],[8,-46],[2,-14],[4,-31],[-4,-31],[-21,12],[-16,-26],[-4,-4],[-21,-3],[-8,7],[-13,14],[-21,14],[-13,-28],[-7,-21],[-12,-25],[-9,-9],[-9,9],[-12,36],[-3,10],[3,10],[11,35],[1,45],[-1,46],[10,40],[7,5],[-7,2],[-21,2],[-3,-4],[-18,-44],[-20,1],[-3,-2],[3,-8],[14,-38],[-14,-15],[-21,-5],[-21,-20],[-21,20],[-21,-22],[-20,16],[-21,3],[-21,17],[-21,-2],[-3,8],[3,21],[3,25],[-3,6],[-20,39],[4,45],[-4,21],[-10,25],[10,5],[20,-3],[9,-2],[12,-6],[3,6],[18,27],[6,18],[7,45],[8,17],[20,5],[20,-22],[1,-2],[1,2],[20,27],[18,19],[-18,15],[-21,6],[-21,9],[-20,-2],[-21,-4],[-18,-24],[-3,-1],[-21,-6],[-9,7],[-11,16],[-21,22],[-3,7],[-1,45],[4,12],[21,-8],[12,-4],[8,-3],[21,-9],[21,-23],[15,35],[6,20],[11,26],[9,14],[21,31],[0,1],[21,30],[9,14],[12,18],[10,-18],[11,-10],[6,10],[-6,22],[-9,24],[0,45],[-12,33],[-13,-33],[-8,-28],[-15,-17],[-6,-7],[-21,6],[-1,1],[-19,22],[-12,-22],[-1,-46],[-8,-16],[-21,5],[-6,11],[-15,39],[-3,7],[-17,37],[-10,8],[-11,26],[-6,-26],[6,-28],[3,-17],[-3,-7],[-21,2],[-21,-15],[-20,-23],[-21,17],[-21,-8],[-6,-12],[-5,-45],[-10,-19],[-7,19],[1,45],[-14,32],[-13,14],[-8,11],[-21,33],[-4,1],[-17,8],[-21,13],[-9,25],[-2,45],[11,7],[21,-1],[14,-6],[7,-6],[21,-11],[18,17],[3,3],[20,18],[21,-13],[21,19],[16,18],[-16,14],[-21,3],[-21,5],[-20,-10],[-21,5],[-21,23],[-5,6],[5,13],[7,32],[14,40],[21,-12],[10,17],[-10,26],[-5,20],[2,45],[-18,31],[-14,-31],[-7,-10],[-15,-35],[-6,-10],[-12,10],[-9,7],[-3,-7],[3,-46],[-20,-17],[-21,4],[-15,13],[-6,39],[-2,7],[-19,29],[-19,-29],[-1,-2],[-1,2],[-20,17],[-21,-9],[-5,37],[5,5],[17,40],[4,11],[9,35],[3,45],[-12,29],[-15,-29],[-6,-12],[-21,-22],[-20,-11],[0,-1],[-2,1],[-19,9],[-21,16],[-21,0],[-20,5],[-20,15],[-1,4],[-19,41],[-1,46],[-1,2],[-2,-2],[-19,-34],[-21,-11],[0,-1],[-20,-20],[-21,1],[-17,19],[-4,19],[-21,19],[-13,-38],[-7,-11],[-21,5],[-7,6],[-14,28],[-6,18],[6,43],[0,2],[0,2],[-14,43],[-7,46],[0,45],[-20,8],[-21,-8],[-2,0],[-3,-45],[5,-2],[21,-43],[0,-1],[6,-45],[-6,-34],[-21,1],[-21,12],[-21,-1],[-20,2],[-18,20],[-3,2],[-21,6],[-12,-8],[-9,-25],[-4,-20],[4,-11],[21,-7],[21,5],[21,-9],[20,-7],[18,-17],[2,-45],[1,-16],[21,5],[21,0],[20,-31],[5,-3],[16,-19],[21,-19],[14,-8],[5,-45],[2,-3],[3,3],[17,18],[21,12],[3,-30],[-3,-8],[-13,-37],[-8,-22],[-20,-17],[-7,-7],[7,-22],[20,3],[21,-11],[12,-15],[9,-10],[13,10],[5,45],[-8,46],[11,23],[14,22],[6,9],[11,-9],[10,-11],[21,0],[21,-29],[0,-5],[8,-46],[-8,-40],[-1,-5],[0,-45],[1,-1],[5,1],[16,9],[6,-9],[14,-10],[18,-36],[3,-5],[21,-20],[20,-20],[1,-2],[12,-43],[-8,-46],[1,-45],[5,-46],[-10,-25],[-21,19],[-1,6],[0,46],[-20,22],[-21,-7],[-20,4],[-21,-13],[-21,21],[-21,3],[-11,15],[-10,21],[-13,25],[-7,23],[-21,-10],[-21,-1],[-21,1],[-20,3],[-21,1],[-21,-12],[-2,-5],[2,-6],[21,-22],[21,-6],[17,-12],[3,-1],[12,1],[9,4],[2,-4],[19,-22],[21,-3],[10,-20],[4,-46],[-14,-28],[-17,-17],[-4,-2],[-21,-28],[-21,-8],[-3,-7],[3,-7],[21,-13],[12,-26],[9,-30],[15,30],[6,7],[12,-7],[8,-7],[16,-38],[-16,-21],[-20,-16],[-14,-8],[-7,-5],[-15,-41],[-5,-45],[-1,-1],[-21,-4],[-20,2],[-21,-36],[-5,-6],[5,-41],[21,-3],[0,-2],[0,-3],[-18,-42],[-3,-45],[21,-42],[2,-4],[12,-45],[6,-26],[5,-19],[-5,-18],[-20,-13],[-21,16],[-9,-31],[1,-45],[8,-23],[4,-22],[-4,-12],[-2,12],[-19,39],[-3,6],[-18,27],[-8,18],[2,46],[-14,38],[-4,7],[-17,21],[-21,-2],[-21,18],[-20,2],[-21,-3],[-5,9],[5,18],[8,28],[7,45],[6,15],[2,30],[-2,12],[-8,34],[-10,45],[-3,10],[-12,35],[12,17],[21,2],[13,-19],[7,-19],[7,19],[-2,46],[6,45],[-11,31],[-20,-6],[-10,20],[-5,46],[2,45],[-8,6],[-8,-6],[-8,-45],[5,-46],[-10,-21],[-21,-20],[-21,4],[-6,-8],[-14,-29],[-21,-3],[-13,-13],[-8,-6],[-2,6],[-13,45],[-6,7],[-20,17],[-21,21],[-6,46],[1,45],[5,14],[21,15],[3,16],[-2,46],[3,45],[8,46],[-5,45],[-7,2],[-2,-2],[-4,-45],[-15,-32],[-5,-14],[3,-45],[-19,-17],[-8,17],[-13,31],[-20,-26],[-21,3],[-21,-8],[0,-1],[0,1],[-21,14],[-20,15],[-17,16],[-4,1],[-4,-1],[4,-5],[11,-40],[10,-8],[14,-38],[6,-25],[21,19],[21,-20],[11,-19],[10,-23],[11,-22],[-11,-27],[-13,-19],[-8,-26],[-5,-19],[5,-30],[2,-15],[-2,-46],[0,-2],[-6,2],[-15,5],[-21,28],[-15,13],[-5,23],[-8,22],[-13,9],[-5,-9],[-16,-44],[-1,-1],[-18,-46],[19,-21],[18,-24],[-12,-45],[-6,-12],[-21,-16],[-8,-18],[-12,-34],[-7,-11],[-14,-18],[-13,18],[-8,17],[-19,28],[12,46],[4,45],[-18,34],[-21,-21],[-20,0],[-6,-13],[-15,-41],[-1,-4],[-20,-35],[-21,6],[-9,29],[-11,34],[-9,11],[9,27],[20,13],[4,5],[17,18],[21,-2],[21,-2],[20,3],[21,18],[7,-35],[14,-37],[16,37],[-16,35],[-15,11],[-6,11],[-6,34],[4,45],[-19,34],[-5,12],[-15,20],[-21,4],[-7,21],[-14,21],[-21,-3],[-20,24],[-21,1],[-1,2],[1,10],[4,36],[8,45],[9,18],[20,10],[21,13],[7,5],[-7,2],[-21,21],[-7,22],[-11,45],[6,46],[-8,23],[-8,-23],[-13,-18],[-21,-24],[-3,-4],[3,-4],[17,-41],[-17,-38],[-21,-4],[-20,12],[-21,-13],[-21,2],[-3,-4],[-18,-29],[-20,-11],[-21,18],[-16,22],[1,45],[8,45],[-14,30],[-14,16],[-7,43],[0,2],[0,1],[20,44],[1,4],[21,27],[19,-31],[2,-4],[7,4],[9,46],[4,14],[7,31],[-7,26],[-6,19],[-14,20],[-15,26],[12,45],[3,8],[20,7],[21,15],[21,13],[1,2],[0,46],[20,16],[12,-16],[8,-11],[21,-33],[1,-2],[20,-20],[16,20],[-16,19],[-10,27],[-11,41],[-1,4],[1,5],[21,5],[21,4],[20,0],[21,19],[21,-14],[12,-19],[9,-11],[12,11],[-12,27],[-6,18],[-15,12],[-21,4],[-21,3],[-20,-2],[-21,-10],[-21,16],[-21,-14],[-11,37],[-5,45],[9,45],[6,46],[-11,13]],[[5146,1713],[8,20],[21,-9],[21,-9],[15,-12],[6,-16],[2,-9]],[[8518,1645],[11,13],[-11,15],[-7,-15],[7,-13]],[[8426,1658],[-12,-27],[-6,27],[-4,45],[10,45],[0,5],[1,-5],[20,-31],[8,-14],[-8,-24],[-9,-21]],[[6712,1611],[1,1],[-1,2],[-6,-2],[6,-1]],[[8809,1609],[6,3],[-6,31],[-5,-31],[5,-3]],[[7729,1610],[-2,2],[-10,46],[-9,8],[-20,20],[-21,12],[-6,5],[6,17],[8,28],[6,46],[7,8],[12,-8],[8,-36],[1,-10],[4,-45],[16,-41],[4,-4],[-3,-46],[-1,-2]],[[9810,1670],[-5,6],[-20,24],[-2,3],[-10,45],[-9,19],[-14,27],[-7,26],[-6,19],[6,9],[21,1],[21,14],[6,21],[-6,29],[-5,17],[-14,45],[-2,18],[-14,27],[-7,3],[-3,-3],[-18,-12],[-20,5],[-6,7],[-15,41],[-12,5],[2,45],[-11,15],[-17,30],[5,46],[-9,35],[-2,10],[2,42],[1,3],[10,46],[-11,22],[-20,6],[-21,13],[-21,-35],[-3,-6],[-2,-46],[1,-45],[-17,-20],[-9,20],[-2,45],[-1,46],[-3,45],[-5,21],[-5,24],[5,41],[0,5],[8,45],[-8,23],[-10,-23],[-11,-17],[-21,3],[-6,-31],[-7,-46],[11,-45],[2,-20],[1,-25],[-1,-5],[-21,-16],[-17,-25],[9,-45],[-13,-19],[-17,-26],[-1,-46],[-2,-7],[-21,-5],[-21,-8],[-17,20],[5,46],[-1,45],[-8,7],[-17,38],[-1,46],[-2,10],[-8,-10],[-13,-7],[-21,-17],[-21,-17],[-20,14],[-11,-19],[-1,-45],[-9,-22],[-9,-23],[-10,-46],[-2,-3],[-3,3],[-18,19],[-20,-10],[-21,11],[-7,-20],[-10,-45],[17,-31],[8,-14],[-8,-13],[-21,-18],[-9,-15],[9,-41],[1,-4],[20,-30],[10,-15],[-10,-16],[-11,16],[-10,39],[-17,-39],[-4,-2],[-21,-37],[-20,15],[-11,24],[4,45],[-7,45],[-7,30],[-4,16],[4,17],[7,28],[-7,35],[-5,10],[5,5],[4,-5],[17,-17],[10,17],[1,46],[-2,45],[11,22],[10,23],[11,17],[15,29],[-15,34],[-6,11],[-15,15],[-20,23],[-21,-21],[-11,28],[11,22],[21,-14],[15,38],[5,8],[21,14],[17,23],[-15,46],[-2,10],[-20,35],[19,45],[1,3],[4,-3],[17,-9],[6,9],[15,36],[5,10],[-5,8],[-21,24],[-5,13],[-16,43],[-1,2],[1,5],[21,26],[14,15],[-5,45],[-9,15],[-21,-5],[-17,11]],[[8977,2936],[3,-9],[12,-45],[-17,-34],[-21,-1],[-21,-9],[-5,-1],[-15,-4],[-19,-42],[-2,-5],[-21,3],[-1,2],[-6,46],[-12,45],[-2,2],[-1,-2],[-4,-45],[-15,-38],[-4,-8],[4,-7],[13,-38],[7,-34],[4,-11],[-4,-11],[-20,-16],[-21,-14],[-12,-5],[12,-9],[21,-15],[10,-21],[-8,-45],[-2,-4],[-21,-37],[-4,-5],[-17,-21],[-13,-24],[-8,-15],[-7,15],[-12,45],[-1,4],[-19,42],[-2,3],[-9,-3],[8,-46],[1,-8],[9,-37],[-1,-46],[-8,-33],[-12,-12],[-9,-4],[-7,4],[-14,34],[-21,1],[-20,-15],[-13,-20],[6,-45],[7,-35],[2,-11],[-2,-7],[-21,6],[-21,-5],[-21,-10],[-9,16],[-11,21],[-13,25],[-8,16],[-12,-16],[-9,-15],[-21,-18],[-7,-13],[-7,-45],[3,-45],[-3,-46],[-5,-45],[-1,0],[-21,-21],[-4,21],[4,24],[6,21],[-6,7],[-15,39],[-2,45],[-4,21],[-3,24],[1,46],[-19,38],[-20,-14],[-11,-24],[-10,-22],[-10,-24],[-11,-28],[-9,-17],[-12,-12],[-15,12],[-6,18],[-20,25],[-2,2],[2,33],[0,13],[1,45],[-1,13],[-9,-13],[-12,-8],[-21,-19],[-11,-18],[-10,-19],[-20,2],[-6,17],[0,45],[-10,45],[13,46],[3,13],[5,32],[-5,9],[-20,37],[11,45],[9,19],[7,26],[-5,46],[-2,21],[-4,24],[-9,45],[-4,46],[0,45],[-4,10],[-6,-10],[-15,-25],[-21,-5],[-7,-15],[7,-11],[13,-35],[-7,-45],[-6,-15],[-11,-30],[-6,-46],[7,-45],[-2,-45],[-8,-24],[-12,-22],[-5,-45],[-4,-16],[-18,-30],[-3,-10],[-21,-20],[-10,-15],[-10,-15],[-15,15],[-6,10],[-3,-10],[-9,-45],[-9,-23],[-21,-11],[-12,34],[-9,41],[-20,-21],[-19,-20],[8,-46],[-6,-45],[-4,-9],[-10,9],[-11,14],[-5,31],[-16,33],[-12,13],[12,18],[8,27],[-7,45],[8,46],[10,45],[0,46],[-13,45],[-6,4],[-4,-4],[-16,-33],[-16,33],[-5,8],[-4,-8],[-17,-33],[-6,-12],[-9,-46],[-4,-45],[-2,-3],[-20,-14],[-18,-29],[-2,-45],[-1,-7],[-3,7],[-18,43],[-1,2],[-2,46],[3,12],[21,31],[1,2],[6,46],[-7,21],[-8,24],[-13,31],[-21,-11],[-20,-3],[-17,28],[17,28],[4,18],[3,45],[5,45],[-6,46],[13,45],[-19,34],[-21,-1],[-21,12],[16,46],[-16,31],[-18,14],[-3,9],[-4,36],[4,11],[21,17],[21,9],[12,9],[-12,17],[-21,1],[-19,27],[-2,13],[-3,32],[-4,46],[-14,35],[-2,10],[-8,32]],[[7526,3424],[-1,2],[-4,10],[-17,35],[-3,9],[-8,-9],[2,-45],[-2,-45],[1,-46],[-14,-40],[-4,-5],[4,-10],[12,-35],[9,-29],[5,-17],[-5,-33],[-2,-12],[2,-33],[0,-12],[2,-46],[-2,-7],[-8,-38],[-9,-45],[-4,-25],[-21,3],[-4,22],[-5,45],[-12,31],[-5,14],[-13,46],[-2,2],[-21,13],[-14,-15],[-7,-26],[-7,-20],[-14,-17],[-20,-17],[-21,-2],[-21,34],[-2,2],[2,8],[7,38],[2,36]],[[7205,3392],[-16,3],[-21,-7],[-2,-7],[2,-6],[10,-40],[-10,-27],[-20,14],[-19,-32],[-2,-5],[-21,-35],[-16,40],[-2,45],[5,46],[-8,35],[-3,10],[-17,17],[-19,-17],[-2,-2],[-1,2],[-7,45],[-10,46],[-3,5],[-21,22],[-11,18],[11,41],[2,5],[19,44],[1,1],[-1,0],[-21,9],[-5,-9],[-15,-26],[-21,10],[-14,-29],[-7,-19],[-5,-27],[5,-18],[7,-27],[10,-46],[-12,-45],[3,-45],[-4,-46],[-4,-25],[-6,25],[-3,46],[5,45],[-17,25],[-21,18],[-2,2],[-18,25],[-9,21],[-2,45],[-8,46],[-2,6],[-21,-4],[-1,-2],[-20,-43],[-3,-3],[-17,-33],[-12,33],[-9,28],[-10,-28],[-11,-29],[-5,-16],[-16,-40],[-13,40],[-7,29],[-7,16],[-14,20],[-8,-20],[-13,-23],[-16,-22],[3,-46],[-8,-41],[-17,41],[-3,4],[-21,39],[-21,-12],[-21,-19],[-6,-12],[-15,-21],[-18,-24],[-2,-2],[-5,2],[-16,10],[-14,35],[-6,46],[-1,2],[-18,43],[18,39],[5,7],[4,45],[12,14],[13,31],[8,19],[15,27],[5,5],[21,18],[9,22],[9,45],[3,11],[6,35],[15,38],[8,7],[-8,8],[-21,-4],[-2,-4],[-19,-40],[-2,-5],[-19,-30],[-20,12],[-19,18],[11,45],[8,41],[1,4],[9,46],[10,24],[6,21],[-5,45],[10,46],[10,33],[21,11],[0,1],[13,45],[8,9],[21,-1],[20,-7],[13,36]],[[6394,4157],[0,-5],[6,-21],[13,-25],[-9,-45],[17,-44],[0,-1],[0,-1],[-1,1],[-20,39],[-2,6],[-19,26],[-16,19],[-4,6],[-9,-6],[2,-45],[-14,-41],[-1,-4],[1,-18],[1,-28],[10,-45],[-11,-15],[-21,15],[-16,-45],[-4,-46],[-1,-7],[-1,7],[-10,46],[-9,21],[-5,-21],[-11,-46],[-5,-14],[-10,-31],[-5,-45],[-6,-32],[-13,-14],[-8,-3],[-21,-24],[-6,-18],[-14,-19],[-3,19],[-18,36],[-6,9],[6,17],[21,-7],[20,-3],[19,39],[1,45],[1,4],[14,41],[-14,45],[0,1],[10,45],[-1,45],[3,46],[-10,45],[-2,4],[-21,1],[-4,-5],[-16,-19],[-21,9],[-1,10],[0,45],[-8,46],[-12,33],[-7,-33],[-11,-46],[-3,-5],[-16,-40],[-4,-9],[-21,-33],[-21,19],[-21,-17],[-3,-5],[-17,-30],[-21,-2],[-12,32],[12,29],[3,16],[10,45],[8,7],[20,36],[3,3],[7,45],[-10,28],[-20,-12],[-21,-5],[-21,34],[21,38],[3,8],[-3,15],[-10,30],[-7,45],[1,46],[-5,5],[-21,0],[-5,40],[3,46],[2,3],[21,25],[17,17],[4,15],[15,30],[6,3],[11,-3],[9,-3],[21,0],[21,-41],[21,41],[3,3],[-3,5],[-14,41],[14,23],[17,22],[-17,35],[-21,-9],[-13,19],[-7,46],[-1,13],[-2,-13],[-16,-46],[-3,-4],[-20,-27],[-21,14],[-21,-14],[-21,26],[-8,-40],[-12,-44],[-21,37],[-3,7],[-8,45],[-8,46],[12,45],[7,26],[4,19],[-4,26],[-21,-12],[-9,-14],[-12,-24],[-21,-5],[-20,21],[-21,-1],[-5,9],[5,32],[3,14],[18,44],[0,1],[0,4]],[[5802,4990],[-4,-8],[-6,-14],[-15,-26],[-10,-19],[-11,-25],[-20,7],[-13,18],[-8,7],[-21,12],[-21,-5],[-13,-14],[2,-46],[11,-12],[13,12],[8,11],[10,-11],[11,-14],[12,-31],[9,-28],[7,-17],[13,-21],[21,14],[21,-14],[19,-25],[2,-7],[3,-38],[-3,-13],[-8,-32],[-13,-32],[-21,-1],[-18,-13],[-3,-4],[-20,-23],[-19,-18],[19,-40],[20,17],[21,1],[21,-11],[21,-3],[20,-3],[8,-6],[0,-46],[0,-45],[-8,-19],[-20,-22],[-6,-5],[6,-34],[1,-11],[-1,-4],[-9,-41],[-12,-32],[-20,-14],[-1,-1],[-8,-44],[-13,-17],[-17,17],[-3,6],[-4,-6],[-17,-20],[-6,20],[-9,45],[-6,23],[-11,-23],[-10,-17],[-9,-28],[-11,-20],[-16,-25],[-5,-21],[-6,21],[-15,19],[-20,26],[-1,1],[-1,-1],[-19,-22],[-18,-23],[-3,-2],[-21,-6],[-6,8],[-6,45],[6,45],[6,27],[7,19],[-2,45],[-5,28],[-13,-28],[-8,-6],[-21,-20],[-15,-19],[-5,-6],[-21,-24],[-21,28],[0,2],[0,1],[9,44],[9,45],[3,13],[9,33],[-9,29],[-7,16],[3,46],[2,45],[-19,20],[-17,-20],[-4,-5],[-13,-40],[-7,-18],[-18,-28],[-3,-4],[-7,4],[-10,46],[-4,12],[-9,33],[-6,45],[3,46],[-9,18],[-13,-18],[-7,-6],[-7,6],[-14,30],[-3,15],[-9,45],[12,23],[13,23],[-13,31],[-4,14],[4,13],[14,32],[7,14],[11,32],[9,37],[8,8],[13,15],[21,26],[11,4],[-11,33],[-21,-21],[-21,7],[-15,27],[-5,15],[-6,-15],[-5,-46],[-10,-24],[-8,-21],[-9,-45],[-4,-9],[-21,-22],[-20,3],[-21,14],[-21,-13],[-21,10],[-21,12],[-7,5],[-13,8],[-14,37],[-4,45],[-3,5],[-21,17],[-12,24],[-9,16],[-4,-16],[4,-14],[13,-32],[8,-28],[8,-17],[-3,-45],[-5,-10],[-6,10],[-15,11],[-20,10],[-13,24],[-1,45],[-7,10],[-21,-8],[-12,44],[-9,11],[-17,34],[-3,6],[-14,-6],[14,-26],[6,-19],[14,-18],[20,-28],[1,0],[15,-45],[5,-45],[1,-3],[21,-11],[20,-32],[0,-10],[21,-26],[21,5],[21,4],[14,-18],[6,-13],[11,-32],[10,-37],[21,3],[14,-12],[7,-30],[1,-15],[-1,-28],[-2,-17],[-19,-25],[-10,-21],[10,-20],[21,-9],[16,-16],[-6,-45],[-10,-11],[-8,11],[-13,19],[-16,-19],[-5,-17],[-21,-17],[-20,-10],[-1,-2],[-17,-45],[-3,-4],[-3,4],[-18,19],[-17,-19],[-4,-8],[-20,6],[-4,2],[-11,45],[-6,6],[-21,26],[-10,14],[10,16],[18,29],[-18,23],[-21,17],[-2,5],[-18,16],[-21,25],[-21,-37],[-14,-4],[-7,-3],[-17,-42],[3,-45],[-6,-44],[-21,10],[-11,34],[-10,26],[-8,19],[8,25],[5,20],[-5,12],[-10,34],[2,45],[-6,45],[-7,27],[-20,-17],[-2,-10],[2,-2],[13,-43],[-13,-29],[-9,-16],[-12,-39],[-21,-1],[-5,-6],[-4,-45],[-12,-31],[-21,-11],[-20,33],[-3,9],[-18,39],[-21,-7],[-8,13],[8,33],[3,13],[18,41],[1,4],[4,45],[-5,9],[-4,-9],[-17,-24],[-11,-21],[-10,-19],[-20,-16],[-21,-9],[-21,10],[-7,-11],[-11,-46],[-3,-8],[-20,6],[-21,-18],[-21,1],[-13,19],[-8,22],[-16,24],[6,45],[-3,45],[13,25],[7,21],[14,24],[21,17],[2,4],[-1,45],[-1,2],[-21,3],[-9,-5],[-12,-8],[-11,8],[-9,14],[-9,32],[-6,45],[15,29],[9,16],[-9,15],[-21,-5],[-20,36],[-1,4],[-12,41],[5,45],[-14,21],[-15,25],[1,45],[14,23],[15,22],[6,10],[13,36],[6,45],[2,4],[21,26],[20,-5],[21,7],[21,6],[4,7],[-4,10],[-14,36],[14,20],[10,25],[11,20],[20,11],[21,8],[3,7],[-3,15],[-12,30],[12,13],[20,-13],[1,-1],[4,1],[2,45],[-6,7],[-21,19],[-7,20],[7,43],[1,2],[20,44],[1,1],[17,46],[1,45],[-7,45],[0,46],[-12,30],[-21,-17],[-7,-13],[-11,-46],[-3,-7],[-10,-38],[-10,-18],[-21,-8],[-21,-15],[-3,-4],[3,-6],[14,-40],[7,-35],[2,-10],[-2,-11],[-10,-34],[-11,-25],[-19,-21],[-2,-7],[-2,-38],[-17,-45],[-1,-1],[-2,1],[-19,10],[-5,-10],[-10,-46],[-6,-11],[-17,11],[-4,2],[-1,-2],[1,-7],[6,-38],[-6,-39],[-1,-7],[-9,-45],[-11,-12],[-16,12],[-4,4],[-7,-4],[-2,-45],[-12,-26],[-21,-11],[-17,-9],[-4,-5],[-10,-40],[-1,-45],[4,-46],[1,-45],[6,-35],[4,-10],[13,-46],[4,-41],[2,-4],[-2,-1],[-15,-44],[-4,-46],[4,-45],[-6,-41],[-7,41],[3,45],[-16,19],[-9,27],[-6,45],[-6,15],[-14,30],[-7,31],[-21,-17],[-5,-14],[-15,-33],[-21,-4],[-13,-8],[-8,-33],[-4,-12],[-17,-30],[-7,30],[-13,17],[-13,28],[-8,27],[-5,18],[0,46],[5,19],[6,26],[3,45],[-9,46],[-21,-43],[-3,-3],[-18,-23],[-15,-22],[7,-45],[-5,-46],[-8,-20],[-15,20],[-5,8],[-21,37],[-21,-17],[-21,-17],[-18,35],[-2,3],[-15,-3],[-6,-2],[-1,2],[-20,21],[-16,-21],[-5,-11],[-5,11],[-15,39],[-21,-27],[-21,2],[-7,-14],[-12,-46],[19,-25],[7,-20],[7,-45],[7,-17],[21,-12],[10,-17],[-10,-15],[-11,-30],[-4,-45],[-6,-12],[-21,2],[-5,10],[-16,34],[-20,-23],[-13,34],[-8,44],[-21,-4],[-5,5],[-16,17],[-9,-17],[8,-45],[1,-12],[13,-33],[-13,-6],[-21,-14],[-20,14],[-21,-12],[-10,18],[-11,44],[-6,1],[-15,3],[-20,15],[-11,-18],[-10,-22],[-21,2],[-21,6],[-12,14],[12,18],[12,27],[-5,46],[-7,13],[-20,31],[-2,1],[-19,11],[-20,34],[-1,11],[-2,35],[2,1],[4,-1],[17,-13],[12,13],[9,4],[6,-4],[14,-12],[21,-32],[21,20],[21,2],[20,-14],[21,2],[21,10],[21,6],[5,18],[-5,8],[-14,37],[-7,11],[-21,11],[-21,0],[-5,23],[-15,42],[-2,4],[-19,34],[-4,11],[4,32],[5,13],[-5,5],[-21,26],[-21,5],[-20,10],[-21,41],[-3,4],[-5,45],[-13,29],[-6,17],[-8,45],[-7,4],[-4,-4],[-16,-24],[-15,-21],[-6,-11],[-6,11],[-15,23],[-14,-23],[1,-46],[-8,-16],[-21,-12],[-20,4],[-17,-21],[-4,-14],[-21,-9],[-21,18],[-4,5],[-10,45],[14,33],[11,13],[-11,25],[-11,20],[11,16],[5,30],[-5,13],[-18,32],[-2,3],[-6,-3],[-15,-8],[-9,8],[-12,14],[-10,-14],[-11,-27],[-20,-13],[-21,-5],[-4,-46],[-17,-37],[-19,37],[-2,9],[-20,23],[-21,13],[0,1],[15,45],[-15,21],[-21,0],[-21,-13],[-13,37],[13,37],[21,-4],[17,13],[4,3],[21,35],[2,7],[-2,11],[-21,27],[-5,7],[5,9],[21,19],[17,18],[3,4],[19,41],[2,5],[3,-5],[12,-45],[6,-10],[20,10],[1,0],[20,-13],[5,13],[-4,45],[6,45],[14,19],[21,25],[21,-43],[20,6],[21,19],[6,20],[-6,21],[-6,24],[-15,45],[0,1],[21,6],[21,4],[4,-11],[16,-45],[1,-1],[20,-28],[2,-16],[-2,-4],[-20,-25],[-13,-17],[8,-45],[5,-28],[8,-17],[6,-46],[6,-26],[21,13],[6,13],[15,31],[11,15],[10,24],[21,-13],[2,-11],[-2,-8],[-9,-38],[9,-19],[17,-26],[3,-8],[7,8],[14,22],[12,23],[9,8],[6,-8],[15,-23],[15,23],[0,46],[5,25],[2,-25],[1,-46],[16,-45],[2,-24],[21,-14],[6,-7],[15,-26],[20,17],[3,9],[17,45],[1,1],[15,44],[6,10],[13,-10],[8,-4],[20,-1],[21,-17],[21,1],[17,21],[-17,8],[-21,16],[-21,17],[0,5],[-20,17],[-21,11],[-13,17],[-8,14],[-7,-14],[-14,-39],[-20,-3],[-10,42],[-11,42],[-1,3],[-5,46],[-15,24],[-21,-4],[-20,2],[-21,12],[-3,11],[3,36],[1,9],[14,46],[-6,45],[6,45],[-10,46],[-5,6],[-21,39],[0,1],[-9,44],[-10,46],[19,43],[2,2],[5,45],[-7,7],[-12,-7],[-9,-15],[-6,-30],[-14,-37],[-3,-8],[3,-16],[7,-30],[5,-45],[8,-38],[2,-7],[8,-46],[-10,-45],[-19,-45],[-1,-2],[-2,2],[-19,40],[-2,5],[-15,45],[3,46],[-7,10],[-21,0],[-21,11],[-20,23],[-2,1],[-19,12],[-21,22],[-21,-15],[-19,26],[-1,2],[-4,-2],[-17,-9],[-20,-36],[18,-45],[2,-3],[21,-42],[0,-1],[0,-1],[-21,-27],[-21,13],[-14,15],[-7,4],[-20,6],[-18,36],[-3,10],[-10,35],[9,45],[-11,46],[8,45],[4,10],[21,24],[4,11],[4,46],[-6,45],[-2,39],[-4,-39],[-6,-45],[-11,-19],[-21,-10],[-21,-10],[-20,26],[-21,-9],[-21,-3],[-21,-3],[-21,-3],[-20,16],[-21,4],[-21,-19],[-3,-16],[3,-21],[10,-24],[-10,-10],[-9,10],[-12,9],[-20,9],[-5,-18],[2,-45],[-8,-46],[8,-45],[-1,-45],[4,-26],[20,-12],[6,-8],[15,-10],[12,10],[9,9],[21,-6],[20,3],[7,-6],[-1,-45],[-6,-13],[-20,-27],[-3,-5],[-17,-46],[-1,-6],[-21,-34],[-21,15],[-16,-20],[-4,-9],[-21,5],[-7,-41],[-13,-46],[-1,-7],[-2,7],[-19,13],[-20,12],[-14,21],[14,30],[2,15],[-2,16],[-7,29],[4,46],[-8,45],[-10,35],[-2,10],[2,8],[13,38],[4,45],[4,21],[6,24],[-6,17],[-21,14],[-12,-31],[-9,-18],[-21,-26],[-20,23],[-6,-24],[-8,-45],[-7,-24],[-21,-7],[-21,7],[-16,24],[-5,6],[-20,7],[-20,-13],[-1,-1],[-21,-13],[-21,-23],[-1,-9],[-11,-45],[-8,-11],[-15,-34],[15,-41],[5,-5],[15,-37],[2,-8],[-2,-16],[-5,16],[-15,30],[-8,15],[-13,16],[-21,-12],[-2,-4],[-14,-45],[-5,-6],[-20,-32],[-3,-7],[-18,-45],[-21,15],[-18,30],[-2,45],[-1,2],[-10,43],[3,46],[-13,24],[-21,2],[-16,-26],[-5,-9],[-21,-31],[-2,-6],[-19,-25],[-18,-20],[-2,-2],[-3,2],[-18,18],[-21,16],[-21,-3],[-11,14],[-9,46],[10,45],[-10,32],[-9,13],[-12,33],[-21,6],[-5,7],[5,42],[21,-32],[6,-10],[15,-25],[20,18],[7,-39],[14,-42],[1,-3],[-1,-11],[-3,-34],[3,-10],[21,9],[21,0],[1,1],[19,16],[21,9],[17,20],[-13,45],[-4,13],[-21,31],[0,2],[0,16],[2,29],[2,45],[17,37],[13,9],[-13,31],[-2,14],[-19,22],[-18,-22],[-2,-3],[-21,-4],[-11,7],[11,21],[16,24],[5,7],[20,39],[0,1],[1,-1],[14,-46],[6,-34],[21,-9],[1,-2],[20,-22],[19,22],[2,4],[2,-4],[13,-45],[5,-14],[21,-26],[3,-6],[-3,-8],[-19,-37],[3,-45],[16,-39],[21,-5],[1,-2],[15,-45],[5,-14],[5,14],[5,45],[10,25],[15,21],[-11,45],[17,27],[11,18],[3,46],[-14,38],[-2,7],[2,7],[15,38],[-15,31],[-6,15],[-11,45],[-2,46],[-2,6],[-13,39],[13,20],[21,-18],[21,6],[15,-8],[-2,-45],[8,-30],[20,12],[21,6],[4,12],[17,34],[7,11],[5,45],[9,14],[10,-14],[10,-10],[21,-22],[21,30],[10,-43],[9,-45],[2,-2],[21,-22],[16,-22],[4,-8],[11,8],[10,8],[4,-8],[9,-45],[8,-32],[21,15],[20,8],[21,-35],[7,44],[-7,22],[-8,23],[-2,46],[10,29],[21,-4],[21,-19],[7,-6],[13,-12],[11,12],[-11,23],[-5,22],[-5,45],[-10,10],[-21,29],[-7,7],[7,18],[11,27],[-11,11],[-21,7],[-14,27],[7,46],[7,3],[21,25],[5,17],[16,21],[8,24],[-8,39],[-21,-21],[-21,5],[-16,23],[-5,12],[-15,33],[-5,10],[-6,-10],[-15,-30],[-21,11],[-18,19],[-3,4],[-20,32],[-4,9],[-6,46],[10,36],[6,9],[-6,6],[-21,-3],[-6,-3],[-15,-8],[-21,-4],[-21,8],[-4,4],[-16,23],[-17,22],[4,46],[6,45],[-11,45],[18,24],[15,22],[5,45],[1,0],[2,-45],[14,-46],[4,-5],[2,5],[19,38],[9,8],[0,45],[-1,46],[1,45],[12,27],[21,14],[18,4],[2,1],[2,-1],[19,-5],[21,-3],[13,-37],[8,-8],[5,8],[15,14],[14,-14],[7,-12],[6,12],[15,32],[13,13],[8,10],[20,-8],[3,-2],[18,-7],[21,4],[3,3],[18,21],[20,-17],[7,-4],[14,-6],[21,-32],[21,21],[21,9],[20,-1],[21,-3],[21,-23],[6,-10],[15,-45],[11,45],[-11,36],[-3,9],[-18,41],[-19,5],[-2,0],[-21,4],[-11,-4],[-9,-12],[-21,9],[-10,3],[-11,0],[-21,11],[-21,29],[-8,5],[-12,12],[-11,33],[11,19],[11,27],[9,19],[12,26],[5,45],[-9,46],[-3,45],[-3,45],[-2,18],[-1,-18],[-2,-45],[-2,-45],[-14,-46],[-1,-2],[-2,2],[-19,19],[-8,-19],[3,-45],[-7,-45],[-9,-16],[-21,3],[-20,-12],[-21,-4],[-21,15],[-18,14],[-3,1],[0,-1],[0,-14],[3,-32],[-3,-13],[-20,3],[-21,-17],[-21,21],[-4,6],[-17,45],[0,1],[-20,39],[-21,-13],[-18,-26],[-3,-2],[-1,2],[-20,39],[-13,-39],[-8,-42],[-1,-4],[-19,-34],[-5,34],[4,46],[-20,36],[-9,9],[-12,11],[-8,-11],[-10,-45],[-3,-11],[-4,11],[-8,45],[-8,20],[-21,19],[-3,6],[-1,46],[4,16],[3,29],[-2,45],[-1,3],[-21,39],[-1,4],[1,2],[21,24],[21,7],[20,3],[21,2],[5,7],[16,43],[0,2],[0,2],[-21,17],[-21,-1],[-20,11],[-21,11],[-8,6],[-13,39],[-1,6],[-3,45],[4,19],[9,27],[12,9],[12,-9],[9,-10],[20,-12],[21,-7],[21,-9],[11,38],[-11,41],[-11,4],[-10,2],[-21,40],[-20,1],[-21,-4],[-10,6],[-11,10],[-8,-10],[-13,-11],[-20,-20],[-21,19],[-11,-33],[-5,-45],[-5,-28],[-21,7],[-20,9],[-21,-8],[-4,20],[4,24],[7,21],[6,45],[-13,18],[-21,23],[-4,5],[-17,8],[-21,16],[-12,-24],[1,-46],[-9,-45],[0,-1],[-21,-4],[-1,5],[1,5],[10,40],[-10,28],[-5,18],[-15,45],[20,24],[12,22],[-5,45],[-7,21],[-21,22],[-1,2],[1,2],[21,10],[18,-12],[3,-4],[20,-8],[21,-3],[21,-1],[14,16],[-14,14],[-21,14],[-7,18],[7,17],[12,28],[9,29],[5,16],[-5,32],[-21,-28],[-2,-4],[-19,-24],[-20,-13],[-21,3],[-21,16],[-15,18],[-6,17],[-9,-17],[-11,-11],[-10,11],[-11,22],[-21,-4],[-21,-14],[-20,37],[-1,5],[1,9],[6,36],[14,15],[21,25],[2,5],[11,46],[-13,7],[-6,-7],[-15,-19],[-20,-3],[-21,-12],[-21,18],[-21,11],[-4,5],[-16,11],[-21,10],[-21,13],[-21,-13],[-21,11],[-20,-4],[-21,6],[-9,11],[-12,12],[-21,20],[-20,-28],[-21,9],[-21,15],[-10,17],[-11,36],[-20,-18],[-21,-11],[-2,-7],[2,-5],[21,-13],[13,-27],[7,-12],[21,-10],[16,-23],[5,-7],[21,5],[2,2],[18,13],[8,-13],[13,-18],[21,-18],[4,-10],[17,-36],[20,25],[21,-7],[20,18],[1,2],[1,-2],[20,-16],[18,-29],[3,-19],[3,-26],[10,-46],[7,-45],[0,-1],[17,-44],[4,-8],[21,-32],[12,-6],[9,-5],[13,5],[7,2],[2,-2],[19,-42],[4,-3],[7,-45],[-11,-13],[-21,-14],[-4,-19],[2,-45],[2,-11],[21,-12],[19,-23],[-19,-34],[-7,-11],[-14,-13],[-20,-12],[-17,-20],[3,-46],[14,-31],[8,-14],[-8,-18],[-21,-20],[-20,38],[-1,5],[-8,40],[8,22],[16,24],[-13,45],[1,45],[-4,19],[-21,10],[-20,1],[-21,-15],[-11,-15],[11,-26],[21,1],[7,-20],[-7,-21],[-21,10],[-10,11],[-11,21],[-21,1],[-21,-4],[-8,-18],[-12,-35],[-21,-6],[-4,-4],[4,-8],[21,1],[20,-4],[21,10],[13,-45],[5,-45],[-14,-45],[-4,-3],[-21,-4],[-20,-12],[-20,-27],[-1,-45],[21,-24],[9,-21],[-9,-17],[-21,9],[-7,8],[-14,16],[-21,2],[-20,-12],[-4,-6],[4,-6],[13,-40],[-8,-45],[2,-45],[13,-21],[12,-25],[7,-45],[1,-45],[1,-5],[21,-26],[7,-15],[14,-29],[5,-16],[-5,-44],[-21,36],[-7,8],[-14,17],[-21,10],[-20,-20],[-3,-7],[3,-9],[7,-36],[-6,-46],[-1,-3],[-21,-19],[-14,-23],[-7,-16],[-11,16],[11,45],[0,25],[0,21],[-20,45],[-1,1],[-20,44],[0,5],[-21,8],[-20,33],[-1,25],[-1,20],[-20,12],[-20,-4],[-15,-8],[-6,-6],[-15,-39],[-6,-36],[-5,36],[-7,45],[9,45],[3,8],[7,38],[2,45],[7,45],[3,46],[-19,27],[-21,14],[-1,4],[1,4],[12,41],[9,25],[16,21],[5,7],[21,24],[9,14],[-9,4],[-19,41],[-2,12],[-2,-12],[-19,-40],[-5,-5],[-16,-17],[-21,-15],[-6,-13],[-14,-26],[-21,-2],[-21,-13],[-15,41],[-6,16],[-20,28],[-1,1],[-20,22],[-13,23],[0,46],[-2,45],[15,43],[2,2],[-2,4],[-21,2],[-19,40],[-2,4],[-2,-4],[-18,-29],[-20,-17],[20,-28],[6,-17],[14,-29],[7,-16],[-7,-13],[-13,-33],[-7,-23],[-9,-22],[9,-32],[8,-13],[-8,-35],[-2,-11],[2,-3],[20,-27],[11,-15],[-5,-45],[-6,-21],[-8,21],[-12,11],[-21,9],[-19,25],[-2,3],[-21,21],[-13,-24],[13,-44],[1,-1],[3,-46],[-4,-43],[-20,7],[-11,36],[-10,28],[-14,-28],[-7,-16],[-15,-29],[-6,-22],[-20,-2],[-19,-21],[-2,-2],[-2,2],[-19,25],[-14,-25],[-7,-21],[-18,-25],[2,-45],[-5,-34],[-20,2],[-14,32],[14,22],[19,23],[-4,46],[-8,45],[5,45],[8,36],[7,10],[-7,8],[-20,6],[-6,-14],[-15,-46],[-21,-19],[-21,-13],[-8,-13],[-12,-14],[-21,-1],[-21,-13],[-12,28],[12,16],[18,29],[3,8],[20,38],[-20,23],[-10,22],[-6,45],[16,32],[11,14],[10,12],[20,0],[21,-5],[21,-7],[21,-8],[18,8],[-7,45],[3,45],[-14,30],[-21,1],[-21,14],[0,1],[-21,32],[-7,13],[-13,18],[-21,-8],[-16,35],[8,46],[4,45],[-17,25],[-21,-14],[-20,30],[-17,-41],[-4,-18],[-21,13],[-17,-40],[-4,-5],[-20,1],[-11,-42],[-10,-8],[-8,8],[-4,46],[-9,16],[-21,14],[-20,-30],[-1,-4],[0,4],[-20,34],[-16,11],[16,10],[20,10],[13,26],[8,18],[8,27],[13,37],[1,8],[-1,3],[-21,22],[-11,21],[-6,45],[15,45],[2,4],[17,42],[4,12],[21,14],[21,-22],[10,41],[-10,30],[-10,15],[-11,17],[-7,29],[7,18],[8,27],[13,38],[20,1],[8,6],[13,25],[6,21],[15,40],[21,1],[20,-12],[5,16],[-5,13],[-12,32],[-8,34],[-13,7]],[[8269,1561],[-2,6],[2,5],[19,-5],[-19,-6]],[[9494,1563],[0,4],[1,45],[-1,24],[-5,-24],[-14,-45],[19,-4]],[[9037,1566],[0,1],[0,3],[2,-3],[-2,-1]],[[9707,1567],[-5,-8],[-21,3],[-2,5],[2,5],[20,40],[1,1],[20,5],[8,-6],[-8,-7],[-15,-38]],[[6089,1517],[-21,-25],[-21,13],[-15,17],[-6,19],[-20,-10],[-21,2],[-21,20],[-21,7],[-20,5],[-1,2],[-20,36],[-6,9],[-15,21],[-15,25],[-6,10],[-10,35],[-11,19],[-9,26],[-11,23],[-21,10],[-21,3],[-21,3],[-12,7],[-8,5],[-21,20],[-21,17],[-21,-12],[-20,9],[-21,-19],[-21,-4],[-21,-12],[-20,8],[-21,-2],[-21,2],[-21,-7],[-21,4],[-20,7],[-21,6],[-21,20],[-1,3],[-20,34],[-16,11],[-4,2],[-21,16],[-21,16],[-14,12],[-7,12],[-20,20],[-17,13],[17,14],[20,4],[21,7],[21,-2],[21,1],[20,4],[21,2],[21,-5],[21,-9],[20,-4],[21,-5],[21,-3],[8,-4],[13,-9],[21,-6],[20,-7],[21,-11],[10,-12],[11,-32],[15,-14],[6,-14],[1,14],[10,46],[9,35],[21,-7],[21,-3],[21,19],[20,-19],[21,5],[21,-13],[16,-17],[5,-22],[20,7],[14,-31],[7,-14],[15,-31],[6,-22],[21,-2],[21,14],[20,-19],[21,-15],[17,44],[4,4],[2,-4],[19,-44],[1,-1],[19,-46],[21,-3],[21,-4],[21,-14],[16,-24],[4,-4],[21,-11],[21,-1],[21,-1],[20,-4],[21,-16],[11,-8],[-2,-46],[-9,-9],[-19,9],[-2,3],[0,-3],[-20,-25],[-21,5],[-21,-3],[-21,3],[-17,-25],[1,-45],[-4,-5]],[[6753,1520],[-1,2],[1,2],[18,-2],[-18,-2]],[[8207,1485],[20,37],[-20,15],[-14,-15],[14,-37]],[[7480,1502],[-21,-24],[-21,27],[-20,11],[-6,6],[6,7],[15,38],[5,12],[11,-12],[10,-10],[21,-14],[18,-21],[-18,-20]],[[9528,1522],[-13,-34],[-9,34],[5,45],[3,45],[1,10],[21,30],[2,-40],[3,-45],[-5,-21],[-8,-24]],[[8539,1516],[-4,6],[4,4],[2,-4],[-2,-6]],[[6462,1419],[-20,-8],[-21,-12],[-8,32],[-13,40],[-3,5],[3,5],[7,-5],[14,-14],[21,2],[20,-25],[4,-8],[-4,-12]],[[7833,1419],[4,12],[3,45],[-7,29],[-9,17],[-5,45],[-7,33],[-9,-33],[4,-45],[4,-46],[1,-5],[13,-40],[8,-12]],[[9556,1423],[20,8],[-17,45],[-3,6],[-1,-6],[-19,-43],[-12,-2],[12,-6],[20,-2]],[[7708,1426],[-20,4],[-21,-4],[-4,5],[4,3],[21,-2],[20,7],[3,-8],[-3,-5]],[[6234,1383],[-21,-15],[-10,17],[-11,29],[-9,17],[-11,20],[-20,25],[-1,2],[-1,-2],[-20,-12],[-10,12],[-3,46],[13,20],[21,14],[21,-9],[20,-17],[9,-8],[-2,-46],[14,-21],[9,-24],[12,-41],[1,-5],[-1,-2]],[[7584,1380],[-21,-27],[-7,32],[7,15],[21,2],[3,-17],[-3,-5]],[[9794,1405],[-9,16],[-3,10],[3,9],[11,36],[9,37],[4,9],[4,45],[-7,45],[-1,2],[-20,39],[-21,-24],[-19,29],[13,45],[-15,45],[-16,46],[-5,14],[-16,31],[15,45],[1,2],[21,2],[11,-4],[10,-1],[1,1],[-1,4],[-11,42],[-5,45],[-5,11],[-21,-9],[-20,5],[-16,-7],[-5,-3],[-2,3],[-19,31],[-21,-8],[-11,-23],[-9,-23],[-11,-22],[-10,-44],[-1,-2],[-20,-18],[-21,14],[-17,-41],[-3,-16],[-10,16],[-11,17],[-11,28],[11,27],[6,19],[8,45],[7,9],[18,-9],[2,-2],[2,2],[19,42],[13,3],[8,3],[21,36],[15,7],[-15,4],[-21,7],[-13,34],[13,45],[0,1],[21,19],[9,26],[-6,45],[-3,21],[-7,24],[7,41],[1,5],[-1,1],[-21,5],[-3,-6],[-5,-46],[1,-45],[-14,-22],[-17,-23],[-4,-6],[-17,6],[-3,5],[-4,40],[-1,45],[-3,46],[-7,45],[-2,45],[-4,39],[-8,-39],[2,-45],[-4,-45],[-11,-39],[-21,-6],[0,-1],[0,-2],[9,-43],[-9,-32],[-11,-13],[-10,-25],[-3,-21],[3,-18],[7,-27],[-7,-8],[-20,3],[-11,5],[-10,5],[-15,-5],[-6,-2],[-15,-43],[-6,-23],[-8,-23],[-12,-25],[-11,25],[-10,37],[-2,9],[-7,45],[9,35],[7,10],[14,33],[4,13],[-4,6],[-18,39],[1,45],[-4,7],[-9,-7],[-12,-22],[-6,-23],[-15,-31],[-20,17],[-14,-31],[-4,-46],[8,-45],[-11,-9],[-21,5],[-4,4],[-17,23],[-20,-12],[-9,-11],[9,-15],[10,-30],[-10,-36],[-8,-10],[0,-45],[8,-11],[20,-30],[2,-4],[-2,-3],[-18,-43],[-2,-14],[-21,5],[-15,9],[-6,8],[-21,3],[-6,-11],[-13,-45],[-1,-45],[-1,-3],[-3,-43],[3,-11],[13,-34],[-8,-45],[-5,-14],[-20,-7],[-4,21],[-2,45],[-12,45],[2,46],[13,45],[-1,45],[-17,35],[-4,11],[4,35],[1,10],[-1,8],[-21,28],[-21,0],[-7,9],[7,3],[21,28],[3,15],[10,45],[-13,26],[-21,15],[-4,4],[1,46],[3,2],[21,9],[13,-11],[8,-3],[7,3],[5,45],[9,23],[11,22],[9,30],[12,16],[-12,18],[-20,27],[-21,-16],[-21,-6],[-11,22],[-3,45],[14,13],[16,33],[5,7],[21,-7],[20,30],[19,15],[-19,25],[-20,10],[-16,11],[-5,10],[-13,35],[13,16],[19,-16],[2,-5],[1,5],[-1,7],[-5,38],[5,17],[20,-9],[21,27],[15,11],[-11,45],[-4,9],[-17,36],[10,46],[-14,26],[-20,1],[-9,18],[0,16]],[[9003,2961],[-7,-12],[-2,-22],[2,-6],[14,-39],[6,-15],[15,-30],[6,-19],[7,-27],[-7,-15],[-21,-18],[-12,33],[-8,24],[-21,-5],[-21,-9],[-21,-3],[-20,5],[-6,-12],[-14,-45],[-1,-39],[-21,34],[-4,-40],[4,-35],[2,-11],[-2,-9],[-10,-36],[10,-16],[12,-29],[-2,-46],[11,-15],[5,-30],[-5,-17],[-18,17],[-3,11],[-5,34],[-16,23],[-16,-23],[-4,-5],[-21,-23],[-12,-17],[-9,-36],[-7,-10],[-14,-34],[-20,24],[-10,-35],[-11,-44],[-21,14],[-21,9],[-17,21],[-4,5],[-5,-5],[-7,-45],[8,-46],[-8,-45],[12,-18],[14,-27],[-14,-8],[-10,8],[-10,30],[-3,15],[-18,22],[-21,-4],[-16,-18],[-5,-15],[-20,0],[-4,15],[-17,43],[-21,-13],[-18,-30],[9,-45],[-6,-46],[15,-39],[3,-6],[-3,-5],[-21,-20],[-20,-5],[-9,-15],[9,-31],[4,-15],[16,-38],[2,-7],[-2,-6],[-20,-28],[-10,-11],[10,-21],[12,-25],[-12,-14],[-21,6],[-19,-37],[-2,-3],[-21,-24],[-20,8],[-21,-2],[-21,7],[-21,-13],[-21,9],[-20,15],[-2,3],[2,7],[20,28],[21,-4],[21,-11],[21,0],[21,6],[12,19],[-12,16],[-13,30],[-8,20],[-10,25],[10,18],[21,-1],[20,-8],[11,-9],[10,-4],[2,4],[-2,7],[-12,38],[-9,21],[-10,25],[10,20],[17,25],[-14,45],[3,46],[-1,45],[1,45],[-3,46],[-3,6],[-5,-6],[-15,-25],[-11,-21],[-10,-35],[-4,-10],[-14,-45],[-3,-9],[-6,9],[-15,8],[-21,0],[-13,37],[-7,13],[-21,25],[-4,7],[-17,31],[-17,-31],[-4,-11],[-15,-34],[-5,-17],[-11,17],[6,45],[-15,46],[-1,14],[-7,31],[-3,45],[4,46],[6,29],[4,16],[-4,8],[-11,38],[2,45],[9,30],[7,15],[-7,32],[-6,14],[-13,45],[-2,2],[0,-2],[-10,-45],[-9,-46],[2,-45],[-3,-45],[-1,-8],[-4,-38],[-16,-25],[-4,-20],[4,-31],[1,-15],[-1,-4],[-21,-40],[0,-1],[-21,-28],[-21,6],[-14,-23],[-6,-34],[-21,-3],[-3,-9],[-12,-45],[-6,-18],[-21,-18],[-13,36],[-8,45],[-8,-45],[-12,-43],[-1,-2],[1,-5],[14,-41],[-14,-14],[-21,-22],[-4,-9],[4,-5],[21,-25],[14,-15],[-14,-16],[-20,-30],[-1,-23],[-21,18],[-21,1],[-20,-14],[-9,-27],[5,-45],[4,-29],[1,-17],[-1,-3],[-21,-17],[-8,20],[-9,46],[-4,6],[-14,-6],[-7,-3],[-20,-6],[-17,9],[17,24],[5,21],[15,25],[6,20],[14,46],[1,6],[7,39],[2,45],[12,10],[21,9],[7,27],[13,38],[3,7],[-3,32],[-1,13],[-19,24],[-11,22],[11,44],[1,1],[4,45],[5,46],[10,37],[2,8],[-2,23],[-20,-3],[-21,26],[0,1],[-1,-1],[-15,-46],[-4,-45],[-1,-10],[-21,-34],[-9,-2],[-11,-11],[-3,-34],[-1,-45],[-17,-18],[-18,-28],[-3,-4],[-21,3],[-3,1],[3,23],[3,23],[8,45],[-8,45],[2,46],[10,45],[0,46],[-15,33],[-20,-31],[-21,3],[-17,40],[5,45],[-9,30],[-9,16],[9,10],[21,2],[12,33],[3,45],[-7,46],[13,32],[4,13],[-4,8],[-21,4],[-21,12],[-17,-24],[-4,-7],[-9,7],[5,45],[4,16],[19,30],[-19,18],[-21,5],[-9,22],[9,45],[0,2],[20,44],[-18,45],[-2,11],[-5,34],[-11,46],[-4,16],[-7,29],[-6,31]],[[7539,3353],[-18,23],[-13,-41],[-5,-45],[8,-45],[10,-34],[3,-12],[-3,-14],[-6,-31],[-3,-45],[9,-43],[1,-3],[-1,-2],[-13,-43],[-7,-17],[-7,-28],[-5,-46],[-9,-36],[-21,14],[-11,22],[-7,46],[-3,18],[-10,27],[-9,45],[-1,4],[-21,10],[-4,-14],[-17,-25],[-13,-20],[-8,-25],[-20,-1],[-11,-19],[-10,-26],[-10,-20],[10,-32],[5,-13],[-1,-45],[4,-46],[13,-22],[12,-23],[-10,-45],[-2,-6],[-21,-35],[-20,41],[-1,2],[-5,43],[3,45],[-6,46],[-4,45],[-9,17],[-21,16],[-20,0],[-10,12],[10,24],[20,-2],[13,24],[8,24],[11,21],[-11,10],[-21,11],[-20,19],[-4,5],[4,29],[11,17],[9,3],[21,11],[7,31],[-7,8],[-2,4]],[[7214,3368],[-4,-13],[-18,-20],[-3,-13],[-7,-32],[-14,-14],[-20,3],[-17,-34],[-4,-11],[-21,-26],[-21,22],[-3,15],[-12,45],[-4,45],[9,46],[-10,33],[-21,-17],[-17,29],[-4,44],[0,1],[-19,46],[-2,2],[-20,27],[-9,16],[-12,25],[-10,-25],[10,-45],[15,-46],[-5,-45],[11,-30],[2,-15],[-2,-12],[-16,-34],[8,-45],[-13,-12],[-17,-33],[-4,-41],[-9,41],[-12,10],[-21,15],[-18,20],[13,45],[5,20],[10,26],[3,45],[-13,13],[-20,18],[-21,-11],[-6,25],[0,46],[-15,42],[-21,-26],[-7,-16],[-9,-46],[-4,-16],[-6,16],[-12,46],[-3,9],[-4,-9],[-17,-32],[-6,-14],[2,-45],[-12,-45],[16,-43],[1,-3],[-1,-2],[-1,2],[-20,38],[-2,8],[-10,45],[-8,32],[-4,13],[-9,46],[-8,20],[-12,-20],[-8,-46],[-1,-4],[-7,-41],[-5,-45],[-9,-40],[-2,-6],[1,-45],[-19,-13],[-15,13],[9,45],[-5,46],[6,45],[-14,45],[-2,4],[-21,-1],[-2,-3],[-18,-45],[-1,-1],[-21,-11],[-20,-11],[-21,3],[-21,-14],[-20,34],[0,45],[7,46],[-8,16],[-20,19],[-21,3],[-21,-27],[-21,6],[-20,27],[-1,1],[1,0],[20,21],[15,25],[6,7],[6,-7],[15,-33],[21,11],[6,22],[13,45],[-19,44],[-1,1],[1,2],[20,27],[20,-29],[1,-2],[2,2],[19,36],[3,10],[18,12],[20,24],[8,9],[-8,22],[-13,23],[-7,4],[-21,1],[-13,41],[12,45],[1,12],[3,33],[10,46],[8,40],[2,5],[1,45],[11,46],[6,26],[5,19],[12,45],[4,9],[21,17],[17,14]],[[6416,4168],[4,-16],[1,-1],[20,-45],[-1,-45],[2,-14],[1,-31],[-1,-5],[-17,-41],[-4,-18],[-5,18],[-16,29],[-8,17],[-12,45],[-1,0],[-19,-45],[-1,-11],[-3,-35],[3,-11],[6,-34],[-3,-45],[-3,-7],[-21,6],[-3,1],[-18,4],[-1,-4],[1,-33],[1,-13],[20,-38],[6,-7],[-3,-45],[-3,-9],[-21,-20],[-21,-5],[-6,34],[-9,45],[-5,21],[-7,-21],[-10,-45],[-4,-29],[-3,-17],[-18,-31],[-21,-11],[-1,-3],[-19,-45],[20,-35],[9,-11],[-7,-45],[-2,-2],[-21,-3],[-1,5],[1,11],[10,34],[-10,43],[-20,-19],[-12,22],[-7,45],[-2,4],[-21,33],[-3,8],[-5,46],[8,23],[21,-9],[19,-14],[2,-2],[7,2],[9,45],[4,13],[14,32],[-11,46],[-1,45],[13,45],[-2,46],[-13,15],[-17,-15],[-3,-3],[-21,-43],[-9,46],[-4,45],[-3,45],[-5,19],[-4,-19],[-17,-43],[0,-2],[-20,-39],[-4,-6],[-17,-36],[-21,29],[-11,-39],[-10,-39],[-20,23],[-21,-26],[-21,33],[-21,0],[-5,9],[5,14],[9,32],[11,45],[-14,45],[15,9],[21,7],[21,17],[7,13],[-7,21],[-21,6],[-18,18],[-3,4],[-17,41],[17,35],[6,11],[-6,19],[-14,26],[-2,45],[-5,9],[-9,37],[-6,45],[-3,46],[18,28],[15,17],[6,33],[3,12],[18,17],[21,10],[20,0],[21,8],[6,11],[15,33],[7,12],[-7,5],[-21,23],[-16,-28],[-5,-11],[-20,-2],[-10,13],[-11,8],[-10,-8],[-11,-11],[-21,-3],[-7,-31],[-13,-19],[-17,19],[-4,8],[-16,37],[-5,45],[0,1],[-10,45],[-11,36],[-21,5],[-2,4],[-18,19],[-21,0],[-16,26],[-5,39],[-14,-39],[-7,-12],[-9,12],[-11,7],[-7,-7],[7,-17],[8,-28],[12,-28],[21,2],[21,-4],[9,-15],[12,-20],[17,-26],[2,-45],[0,-45],[1,-15],[21,-26],[3,-5],[-3,-4],[-21,-3],[-20,-14],[-21,-18],[-9,-6],[9,-3],[21,-11],[20,0],[21,-15],[7,-16],[-7,-36],[-1,-10],[-2,-45],[-18,-45],[0,-1],[0,-17],[1,-28],[-1,-3],[-9,-42],[9,-15],[21,-7],[16,-24],[-16,-37],[-21,-4],[-20,21],[-21,-10],[-7,-15],[7,-36],[2,-9],[6,-46],[-4,-45],[-4,-13],[-2,13],[-10,45],[-9,11],[-21,22],[-13,-33],[-7,-18],[-7,18],[-14,26],[-9,20],[-12,45],[-21,-16],[-16,-29],[-4,-27],[-4,-19],[-12,-45],[-5,-24],[-6,24],[-8,45],[-7,22],[-20,24],[-1,1],[0,-1],[-20,-26],[-21,-6],[-21,-11],[-2,-3],[-18,-45],[-1,-1],[-2,1],[-9,45],[3,46],[2,45],[6,39],[1,6],[8,46],[-9,13],[-13,-13],[-8,-9],[-20,-22],[-10,-15],[-11,-17],[-21,-21],[-21,22],[-20,7],[-6,9],[6,13],[11,33],[9,35],[6,10],[14,45],[1,8],[9,38],[-9,19],[-7,26],[-1,46],[-13,7],[-2,-7],[-18,-46],[-1,0],[-20,-29],[-14,-16],[-7,-22],[-6,22],[-1,45],[-3,46],[-11,33],[-6,12],[-7,45],[-7,11],[-21,13],[-6,22],[-9,45],[-6,26],[-4,19],[4,25],[12,21],[-8,45],[14,45],[-18,17],[-15,-17],[-6,-7],[-20,-1],[-16,8],[-5,4],[-6,-4],[-15,-9],[-9,9],[-12,9],[-21,5],[-20,-2],[-21,19],[-21,-27],[-2,-4],[2,-3],[21,-2],[21,0],[20,-15],[13,-25],[8,-45],[0,-1],[21,-5],[7,6],[14,10],[6,-10],[3,-46],[6,-45],[6,-34],[1,-11],[-1,-5],[-21,-26],[-11,-15],[11,-9],[21,-17],[11,-19],[6,-45],[-12,-46],[-5,-45],[0,-2],[-1,2],[-14,45],[-6,4],[-21,19],[-8,-23],[-13,-29],[-21,4],[-11,-20],[-1,-46],[-8,-13],[-11,13],[-10,10],[-21,19],[-12,-29],[-5,-45],[-4,-31],[-20,6],[-17,-20],[-4,-3],[-8,3],[3,45],[5,8],[21,35],[1,2],[-1,2],[-21,13],[-16,31],[-5,34],[-6,11],[-15,11],[-11,35],[11,28],[11,17],[-11,10],[-19,35],[-1,2],[-21,17],[-11,-19],[-10,-32],[-16,-13],[0,-45],[-5,-35],[-1,-11],[-8,-45],[-11,-26],[-15,26],[-6,9],[-21,14],[-15,22],[6,46],[-12,28],[-3,17],[3,22],[7,23],[-6,46],[-1,12],[-5,-12],[-15,-8],[-10,-38],[-11,-18],[-16,-27],[-5,-28],[-6,-17],[-15,-23],[-12,-23],[-9,-22],[-17,22],[-3,13],[-5,33],[-14,45],[-2,4],[-21,-2],[-2,-2],[-19,-37],[-8,37],[3,45],[-15,32],[-19,-32],[-2,-3],[-5,3],[-16,19],[-5,-19],[-14,-45],[-2,-3],[-20,-10],[-21,7],[-20,-39],[-1,-16],[-11,-30],[-10,-15],[-10,15],[-2,46],[1,45],[-1,45],[-8,15],[-21,24],[-2,7],[-6,45],[8,17],[10,28],[7,46],[4,5],[20,11],[18,29],[-18,17],[-20,13],[-21,15],[-21,38],[-13,8],[-8,27],[-1,18],[1,14],[3,31],[4,46],[-7,17],[-21,28],[6,45],[-6,9],[-20,20],[-10,17],[10,23],[7,22],[13,44],[2,1],[19,19],[16,27],[-16,28],[-21,-17],[-14,-11],[-6,-11],[-15,-35],[-6,-10],[-21,-10],[-16,-25],[-3,-45],[3,-46],[3,-45],[13,-35],[11,-10],[10,-21],[4,-25],[8,-45],[-12,-22],[-21,-18],[-2,-5],[2,-27],[2,-19],[5,-45],[-2,-45],[-5,-10],[-20,-36],[-1,-1],[-1,1],[-19,9],[-15,37],[-3,45],[-3,11],[-8,34],[3,46],[-4,45],[-12,26],[-9,-26],[-9,-45],[-3,-7],[-5,7],[-15,19],[-18,-19],[-3,-7],[-21,-37],[-1,-2],[1,-10],[4,-35],[2,-45],[-6,-17],[-12,17],[-9,13],[-20,27],[-4,5],[4,10],[5,35],[-5,19],[-18,27],[-3,7],[-7,38],[-9,45],[0,46],[3,45],[-8,11],[-15,-11],[3,-45],[-9,-45],[0,-1],[-15,-45],[-2,-45],[-4,-16],[-6,16],[-1,45],[-13,17],[-18,28],[-3,6],[-12,-6],[-9,-25],[-21,-11],[-11,36],[-9,18],[-19,-18],[-2,-4],[-3,4],[-18,31],[-16,-31],[-5,-7],[-4,7],[-16,30],[-19,-30],[7,-45],[12,-17],[20,-20],[6,-8],[15,-27],[21,-8],[21,-7],[7,-4],[-7,-29],[-21,17],[-21,-10],[-21,-21],[-1,-2],[1,-4],[21,-36],[1,-5],[20,-38],[5,-8],[16,-29],[14,-16],[6,-13],[5,-32],[-5,-18],[-15,18],[-5,11],[-18,34],[-3,12],[-7,-12],[-14,-4],[-2,4],[-19,37],[-17,-37],[-3,-45],[0,-2],[-21,-33],[-17,35],[-4,10],[-21,-1],[-3,-9],[-17,-43],[-21,26],[-10,17],[-11,14],[-21,11],[-7,-25],[-10,-46],[-4,-7],[-5,7],[-15,20],[-19,26],[19,33],[11,12],[-11,16],[-21,7],[-13,22],[-8,11],[-21,-9],[-6,-2],[6,-1],[21,-26],[6,-18],[7,-45],[-13,-14],[-5,-32],[-16,-35],[-16,35],[-4,5],[-8,-5],[-13,-9],[-6,9],[-15,25],[-21,7],[-20,-9],[-21,10],[-9,-33],[9,-30],[4,-15],[4,-45],[13,-29],[11,-17],[9,-39],[1,-6],[17,-46],[-18,-23],[-8,23],[7,46],[-19,27],[-21,4],[-7,14],[-4,46],[-10,24],[-21,9],[-3,12],[-9,45],[-7,46],[-1,6],[-21,1],[-3,-7],[-18,-28],[-19,28],[-2,6],[-14,39],[-7,40],[-20,2],[-21,-8],[-8,11],[8,8],[21,-5],[20,-2],[1,-1],[20,-27],[21,1],[19,26],[-19,39],[-3,7],[-18,23],[-12,22],[-9,37],[-4,8],[4,46],[1,0],[20,-43],[8,-3],[13,-4],[21,-11],[21,6],[9,9],[11,20],[21,16],[8,-36],[-1,-45],[6,-45],[8,-24],[17,-22],[4,-2],[20,-4],[16,6],[-16,11],[-11,35],[-9,13],[-16,32],[2,45],[14,40],[2,6],[-2,4],[-21,14],[-15,27],[-6,11],[-21,-6],[-6,-5],[-14,-14],[-11,14],[-10,44],[-21,-3],[-2,4],[-5,46],[-4,45],[8,45],[3,4],[21,-1],[1,-3],[18,-45],[2,-3],[20,-21],[21,18],[21,-10],[21,5],[20,-10],[21,-15],[21,26],[3,10],[-3,16],[-10,29],[-4,46],[-7,32],[-2,13],[-18,45],[-1,1],[0,-1],[-17,-45],[-3,-17],[-21,-18],[-11,35],[-10,25],[-14,20],[14,23],[15,23],[-15,23],[-12,22],[2,45],[-9,46],[-2,5],[-4,-5],[-2,-46],[-14,-19],[-21,-9],[-7,-17],[5,-45],[-19,-5],[-7,5],[-14,19],[-13,-19],[-8,-11],[-7,11],[-13,15],[-6,-15],[-9,-46],[-6,-18],[-12,-27],[-9,-15],[-7,15],[4,45],[-6,46],[-12,17],[-20,19],[-4,9],[-17,34],[-7,11],[-4,46],[11,36],[4,9],[14,46],[-18,8],[-9,-8],[-12,-16],[-21,-8],[-20,-18],[-2,-4],[-19,-36],[-4,-9],[4,-16],[19,-30],[2,-1],[11,-44],[-11,-45],[-1,0],[-20,24],[-11,-24],[-4,-46],[-6,-45],[-3,0],[-3,45],[-15,34],[-4,12],[-14,45],[-2,10],[-21,-7],[-1,-3],[-20,-36],[-18,36],[-3,9],[-21,29],[-20,-16],[-21,16],[-21,-14],[-11,21],[-10,31],[-4,15],[-12,45],[16,22],[14,-22],[7,-28],[4,-17],[17,-37],[21,16],[20,-19],[21,12],[21,-7],[21,7],[21,8],[6,20],[-4,45],[-2,3],[-21,8],[-20,35],[9,45],[-10,2],[-3,-2],[-18,-18],[-10,18],[-11,36],[-4,9],[0,46],[4,13],[21,0],[21,1],[21,22],[5,9],[-5,8],[-21,33],[-1,4],[1,5],[21,40],[0,1],[8,45],[-8,12],[-21,27],[-5,6],[4,46],[1,2],[18,43],[3,4],[4,-4],[17,-18],[16,-27],[-9,-46],[13,-38],[14,38],[7,13],[6,-13],[15,-30],[12,-15],[9,-10],[4,10],[-4,35],[-3,10],[3,6],[16,40],[-2,45],[6,7],[8,-7],[13,-29],[21,20],[21,-33],[14,-3],[6,-2],[2,2],[-2,18],[-1,27],[-11,45],[12,21],[21,12],[13,13],[8,8],[16,-8],[5,-14],[8,-32],[12,-10],[16,-35],[5,-26],[6,-19],[-6,-12],[-21,-33],[0,-1],[0,-45],[21,-41],[21,40],[1,1],[11,45],[9,17],[13,29],[8,11],[7,-11],[9,-46],[4,-8],[13,-37],[0,-45],[8,-12],[21,9],[2,3],[14,45],[5,9],[20,16],[11,-25],[5,-45],[5,-42],[1,-4],[19,-45],[1,-2],[21,-17],[7,19],[13,30],[21,14],[1,1],[20,35],[21,-1],[4,12],[-4,3],[-21,5],[-21,14],[-8,-22],[-13,-33],[-20,-2],[-12,35],[-9,37],[-4,8],[-9,45],[-8,41],[-21,-6],[-20,10],[-21,-7],[-4,8],[-12,45],[2,45],[14,45],[0,1],[0,4],[-6,41],[-8,45],[-5,46],[-2,3],[-1,-3],[0,-46],[-5,-45],[-9,-45],[-6,-10],[-20,-16],[-21,19],[-4,7],[-15,45],[-2,7],[-12,38],[-9,24],[-21,7],[-8,15],[-12,15],[-21,11],[-21,5],[-21,-3],[-20,9],[-4,-37],[4,-8],[20,-23],[8,-15],[-8,-13],[-20,-25],[-6,-7],[-15,-9],[-21,0],[-8,9],[-13,22],[-20,4],[-12,-26],[-9,-31],[-11,-14],[-10,-8],[-11,8],[-10,13],[-11,32],[-9,45],[15,46],[5,12],[15,33],[-13,45],[-2,11],[-1,-11],[-19,-24],[-21,1],[-21,-9],[-21,29],[-21,-16],[-19,19],[10,46],[9,17],[21,5],[21,8],[21,9],[21,-12],[20,-12],[18,30],[-18,14],[-20,10],[-21,-11],[-21,15],[-21,-9],[-21,7],[-20,6],[-9,-32],[-12,-34],[-7,-11],[-14,-21],[-15,21],[-6,9],[-4,-9],[-11,-46],[8,-45],[7,-24],[21,-8],[21,-11],[5,-2],[16,-6],[20,-12],[21,-11],[5,-17],[-2,-45],[-3,-7],[-17,-38],[-4,-6],[-20,-27],[-5,-13],[-11,-45],[-1,-45],[-4,-46],[2,-45],[-2,-20],[-7,20],[-14,36],[-2,9],[2,38],[2,8],[-2,1],[-21,21],[-12,-22],[-8,-9],[-21,-13],[-8,-24],[1,-45],[-2,-45],[-12,-30],[-21,15],[-11,15],[11,45],[-20,15],[-12,30],[-9,15],[-14,31],[14,29],[7,16],[-7,31],[-3,14],[3,43],[0,3],[0,1],[-11,44],[-5,45],[0,46],[-5,6],[-3,-6],[-18,-24],[-20,1],[-7,-23],[-14,-36],[-21,4],[-19,-13],[-2,-2],[0,2],[-14,45],[-7,11],[-8,-11],[-12,-26],[-10,26],[-11,13],[-21,-8],[-3,-5],[-4,-45],[-14,-17],[-20,-23],[-3,-5],[3,-7],[20,-19],[21,-13],[3,-7],[-3,-35],[-1,-10],[1,-7],[7,-38],[-7,-26],[-21,-5],[-16,31],[-4,11],[-12,34],[-9,19],[-17,-19],[-4,-20],[-21,-14],[-6,-11],[-6,-46],[2,-45],[10,-45],[-20,-10],[-15,10],[-6,32],[-1,13],[-20,28],[-20,17],[-1,2],[-15,-2],[-5,0],[-1,0],[-3,46],[-6,45],[-6,45],[-5,23],[-21,-21],[-1,-2],[-18,-45],[1,-45],[-3,-5],[-6,5],[-15,17],[-20,-7],[-21,-7],[-21,33],[-21,1],[-20,3],[-6,5],[-15,23],[-17,22],[-4,11],[-21,21],[-20,6],[-10,8],[-11,18],[-21,10],[-21,-19],[-20,24],[-21,1],[-6,11],[-15,41],[-1,4],[-12,46],[13,45],[7,-45],[0,-46],[14,-16],[21,-1],[11,17],[9,5],[21,-5],[21,-16],[21,16],[-9,46],[5,45],[4,8],[20,27],[8,10],[13,17],[21,9],[21,0],[20,3],[21,7],[21,9],[0,1],[-21,5],[-21,3],[-20,5],[-17,32],[2,45],[15,20],[20,9],[21,13],[8,4],[11,45],[2,4],[21,17],[8,25],[12,27],[20,-27],[1,-3],[10,-43],[5,-45],[6,-26],[5,26],[13,45],[-3,46],[-15,45],[21,0],[21,-23],[15,-22],[5,-22],[7,-24],[-7,-23],[-4,-22],[4,-21],[21,-1],[16,-24],[-4,-45],[9,-15],[15,-30],[-3,-46],[9,-32],[4,32],[16,40],[4,6],[-4,33],[-2,12],[2,45],[-9,46],[-7,45],[-4,19],[-6,27],[-9,45],[-6,28],[-7,17],[7,7],[21,12],[20,-1],[15,-18],[6,-7],[21,5],[21,-8],[20,-3],[20,-32],[1,-2],[1,2],[2,45],[-3,13],[-10,33],[-3,45],[13,6],[10,-6],[11,-10],[21,-10],[20,-18],[10,-7],[11,-16],[7,16],[14,15],[21,-6],[20,36],[1,2],[0,-2],[20,-39],[9,-6],[-9,-25],[-20,-2],[-4,-19],[2,-45],[2,-3],[20,-7],[4,10],[17,39],[13,6],[-11,46],[-2,4],[-14,41],[-7,24],[-9,21],[-11,23],[-12,23],[12,29],[20,4],[21,-13],[14,-20],[7,-14],[21,-27],[0,41],[16,45],[-16,26],[-14,19],[-7,5],[-21,10],[-21,0],[-20,7],[-21,-14],[-21,21],[-21,-6],[-21,3],[-20,3],[-21,-29],[0,-2],[-1,2],[-20,16],[-21,-1],[-7,-15],[-1,-45],[-12,-41],[-21,33],[-21,1],[-9,-38],[-12,-32],[-10,-14],[-10,-11],[-21,2],[-21,4],[-21,-15],[-18,20],[4,46],[14,17],[21,17],[11,11],[-11,16],[-12,29],[-9,25],[-8,21],[-10,45],[-2,3],[-21,30],[-3,12],[3,11],[18,35],[3,5],[7,-5],[13,-8],[21,-8],[21,-15],[9,31],[-9,15],[-21,25],[-1,5],[1,4],[21,23],[21,1],[18,17],[-18,43],[-4,3],[-17,4],[-21,-2],[-1,-2],[-20,-31],[-20,16],[-9,15],[-11,45],[-1,4],[-3,-4],[-7,-45],[-7,-46],[-4,-7],[-18,7],[-3,2],[-21,7],[-3,-9],[3,-42],[1,-3],[-1,-4],[-2,-41],[2,-30],[1,-16],[-1,-8],[-5,-37],[5,-22],[7,-23],[-3,-46],[-4,-10],[-20,-15],[-11,-20],[2,-45],[-12,-19],[-9,-27],[4,-45],[-16,-31],[-21,-8],[-20,5],[-7,-11],[7,-45],[0,-1],[0,-3],[-1,-42],[-20,-28],[-21,-10],[-21,-1],[-20,0],[-5,-6],[-16,-20],[-21,-6],[-19,-20],[-2,-2],[-20,-20],[-18,-23],[-3,-5],[-4,5],[-17,13],[-21,7],[-5,25],[5,18],[6,28],[-1,45],[16,33],[13,12],[8,7],[10,-7],[11,-25],[8,25],[12,29],[9,17],[0,45],[12,5],[21,19],[21,-1],[18,22],[2,12],[21,25],[5,9],[16,17],[21,-4],[11,32],[-9,45],[18,19],[21,24],[1,3],[-1,10],[-4,35],[-2,45],[6,37],[2,9],[3,45],[-2,45],[-3,8],[-21,-6],[0,-2],[-9,-45],[-11,-38],[-21,12],[-20,26],[-1,16],[-5,29],[-16,31],[-11,-31],[-2,-45],[0,-45],[-7,-10],[-21,-1],[-8,11],[-11,45],[19,38],[6,7],[-6,14],[-21,4],[-10,28],[10,19],[17,26],[4,10],[21,27],[20,-9],[11,17],[10,10],[21,0],[21,6],[13,-16],[7,-11],[21,0],[21,-13],[21,-1],[18,25],[2,8],[17,38],[-17,39],[-2,6],[2,7],[21,22],[21,11],[14,-40],[7,-12],[20,12],[-5,46],[-15,34],[-3,11],[-18,33],[-21,10],[-3,2],[-18,18],[-20,-12],[-6,-6],[-15,-7],[-21,3],[-12,4],[-9,8],[-20,17],[-21,-6],[-10,27],[-11,17],[-10,28],[-10,45],[20,2],[2,-2],[19,-41],[4,-4],[17,-18],[20,-9],[21,17],[4,10],[17,17],[11,-17],[10,-24],[20,-1],[21,13],[21,-20],[21,-1],[7,-12],[0,-46],[14,-24],[20,11],[8,13],[12,46],[1,3],[3,-3],[18,-20],[21,-1],[20,-18],[21,6],[4,-13],[-4,-43],[-21,13],[-20,-9],[-5,-6],[4,-45],[1,-1],[0,1],[20,25],[7,-25],[-1,-46],[15,-41],[20,-4],[1,0],[19,-46],[2,-3],[17,-42],[3,-8],[21,-12],[7,20],[-7,37],[-1,8],[-4,46],[5,26],[21,9],[7,10],[11,46],[3,12],[6,-12],[14,-13],[18,-33],[3,-21],[8,21],[3,46],[-3,45],[4,45],[9,20],[21,3],[10,23],[11,24],[20,-8],[12,-16],[9,-17],[21,2],[14,-31],[7,-17],[20,7],[21,-6],[8,16],[13,24],[19,22],[2,2],[3,-2],[17,-12],[21,1],[13,11],[-7,45],[6,45],[-12,12],[-18,-12],[-3,-7],[-20,7],[-21,-8],[-14,8],[-7,4],[-2,-4],[-3,-45],[-16,-20],[-16,20],[-4,6],[-21,-6],[-21,18],[-19,27],[-2,6],[-14,40],[-6,12],[-9,-12],[-12,-25],[-21,-12],[-21,22],[-6,-31],[-14,-45],[-1,-1],[-20,-25],[-21,0],[-10,26],[10,27],[4,18],[-3,46],[-1,2],[-21,4],[-2,-6],[-10,-46],[-9,-10],[-12,10],[-8,17],[-10,29],[-11,22],[-17,-22],[-4,-6],[-4,6],[-17,10],[-20,13],[-21,9],[-12,13],[-9,20],[-21,24],[-20,-42],[-19,43],[-2,21],[-5,25],[5,8],[21,2],[13,-10],[7,-34],[4,34],[17,18],[21,6],[8,21],[-8,17],[-21,25],[-1,3],[1,6],[21,6],[6,-12],[15,-31],[10,-14],[10,-33],[21,27],[2,6],[-2,10],[-7,35],[-12,46],[19,38],[7,7],[14,20],[21,23],[3,2],[-3,1],[-21,13],[-21,11],[-8,21],[-9,45],[-4,27],[-2,18],[2,8],[12,38],[9,21],[21,9],[17,15],[-17,16],[-21,9],[-21,-15],[-8,-10],[-12,-14],[-17,-31],[-4,-15],[-8,-31],[2,-45],[-15,-22],[-21,18],[-2,4],[-18,44],[-21,-23],[-21,15],[-4,9],[4,45],[0,1],[0,1],[-2,44],[-12,45],[-7,12],[-8,-12],[-7,-45],[-6,-13],[-12,-32],[-8,-41],[-21,23],[-21,15],[-3,3],[3,9],[6,36],[7,45],[-13,46],[-17,45],[-1,46],[18,38],[4,7],[-4,5],[-17,40],[17,33],[21,2],[21,-9],[15,20],[-15,24],[-21,-3],[-16,24],[-5,3],[-21,17],[-20,-18],[-5,-2],[-16,-7],[-5,7],[-16,28],[-21,-14],[-20,11],[-8,20],[-11,46],[4,45],[-6,14],[-21,13],[-7,18],[-14,15],[-20,-2],[-5,-13],[5,-7],[11,-38],[8,-45],[1,-6],[14,-40],[7,-36],[2,-9],[16,-45],[3,-5],[21,-7],[20,-8],[19,-26],[2,-5],[21,-20],[8,-20],[-1,-45],[-7,-19],[-21,-20],[-6,-7],[6,-15],[18,-30],[3,-3],[15,-43],[-6,-45],[-9,-14],[-21,-19],[-11,-12],[-10,-30],[-6,-16],[6,-9],[21,-26],[18,-10],[3,-2],[21,-13],[20,-13],[14,-17],[-7,-46],[14,-14],[21,-8],[21,-9],[10,31],[10,16],[15,-16],[6,-18],[15,-27],[-15,-16],[-16,-29],[-5,-9],[-20,-1],[-21,-28],[-21,24],[-21,-31],[-20,19],[-14,26],[-3,45],[-4,12],[-20,33],[-1,3],[-21,18],[-20,-1],[-10,-20],[5,-45],[5,-12],[9,-33],[-3,-46],[2,-45],[-8,-8],[-21,7],[-1,1],[-6,45],[-14,35],[-21,-5],[-4,16],[4,9],[9,36],[-9,26],[-6,19],[4,46],[-5,45],[-1,45],[-12,25],[-11,-25],[6,-45],[-9,-45],[-7,-35],[-8,-11],[-13,-5],[-5,5],[-16,17],[-21,-4],[-20,-11],[-2,-2],[2,-7],[20,-21],[6,-17],[3,-45],[12,-45],[0,-1],[-21,29],[-19,-29],[-1,-1],[-2,1],[-19,12],[-21,16],[-13,-28],[1,-45],[12,-21],[21,-18],[3,-6],[-3,-10],[-10,-36],[10,-25],[11,-20],[-5,-45],[15,-30],[5,-16],[15,-45],[21,7],[8,-7],[-8,-41],[-2,-4],[-19,-10],[-20,-31],[-21,30],[-5,11],[-16,22],[-18,-22],[-3,-21],[-2,-25],[-18,-39],[-8,-6],[-13,-24],[-8,-21],[-13,-24],[-21,0],[-11,24],[-2,45],[13,38],[3,7],[-3,20],[-20,24],[-21,-2],[-2,4],[2,10],[4,35],[-4,12],[-21,3],[-10,30],[-4,46],[-7,21],[-20,-18],[-4,-3],[-17,-31],[-4,-15],[-1,-45],[-16,-24],[-3,-21],[3,-26],[9,-20],[-9,-8],[-21,-1],[-21,-18],[-6,-18],[-14,-37],[-3,-8],[-18,-36],[-8,-10],[-13,-31],[-3,-14],[-18,-33],[-10,-13],[-10,-17],[-21,15],[-7,2],[-14,10],[-20,36],[20,11],[21,-2],[18,36],[3,8],[20,10],[13,28],[-2,45],[10,14],[20,31],[1,14],[21,15],[20,-5],[6,22],[1,45],[14,45],[0,8],[-1,38],[-19,45],[7,45],[-2,46],[15,15],[7,30],[3,45],[-10,28],[-21,6],[-9,12],[9,18],[7,27],[11,45],[-18,26],[-13,-26],[-7,-14],[-21,-2],[-21,-11],[-19,27],[-2,4],[-17,42],[-3,5],[-21,39],[-1,1],[-20,29],[-18,16],[-3,2],[0,-2],[-8,-45],[8,-15],[11,-30],[4,-46],[6,-4],[14,-41],[-4,-45],[3,-46],[-1,-45],[-8,-45],[-4,-9],[-19,9],[-2,1],[-10,44],[-10,45],[0,2],[-21,15],[-21,21],[-3,-38],[2,-45],[-20,-37],[-20,0],[-11,37],[-10,37],[-17,-37],[3,-45],[-7,-16],[-21,-10],[-20,9],[-21,-14],[-21,11],[-9,-26],[-5,-45],[9,-45],[5,-33],[5,-13],[-5,-7],[-14,-38],[-7,-11],[-6,11],[-7,45],[-8,15],[-20,2],[-10,-17],[-8,-45],[-3,-11],[-21,-18],[-21,22],[-2,7],[2,39],[1,6],[6,46],[14,24],[10,21],[11,34],[7,11],[13,46],[-8,45],[-12,17],[-19,-17],[-2,-3],[-14,-42],[-7,-13],[-20,2],[-21,-5],[-21,-8],[-21,0],[-20,-1],[-3,25],[3,23],[4,22],[16,21],[16,24],[-16,31],[-20,4],[-7,11],[7,8],[20,9],[13,28],[-13,25],[-20,14],[-10,6],[-11,15],[-13,31],[13,17],[21,10],[13,18],[7,15],[21,3],[17,-18],[4,-5],[4,5],[17,15],[20,-7],[6,-8],[15,-7],[21,1],[5,6],[-5,26],[-21,-9],[-10,28],[-10,46],[-1,1],[-20,1],[-21,17],[-21,-2],[-13,28],[6,45],[7,35],[2,11],[-2,35],[-21,-8],[-15,18],[-5,8],[-4,-8],[-8,-45],[-8,-46],[-1,-1],[-16,-44],[-5,-7],[-8,7],[-10,45],[-3,4],[-2,-4],[-18,-40],[-21,3],[-15,-8],[-6,-6],[-4,6],[-11,45],[-6,15],[-4,-15],[-8,-45],[-9,-23],[-12,-22],[-8,-32],[-21,23],[-5,9],[5,24],[6,21],[15,36],[2,9],[-2,10],[-21,10],[-21,-2],[-21,-4],[-20,11],[-21,-9],[-15,30],[15,12],[15,33],[6,28],[20,-4],[21,-1],[6,23],[-6,26],[-4,19],[4,45],[21,-26],[12,-19],[9,-29],[20,21],[4,8],[9,45],[-13,15],[-17,31],[-3,8],[-7,37],[7,9],[20,29],[3,7],[18,35],[4,11],[6,45],[8,45],[3,24],[2,22],[15,45],[-11,13]],[[9058,1340]],[[6334,1295],[-17,-11],[-19,11],[-2,2],[-20,22],[-10,21],[10,24],[12,21],[8,16],[21,-4],[21,3],[10,-15],[4,-45],[-14,-39],[-4,-6]],[[7833,1280],[-3,15],[3,4],[15,-4],[-15,-15]],[[6442,1233],[-21,3],[-15,13],[-6,7],[-21,21],[-9,18],[9,43],[2,2],[19,32],[21,11],[16,-43],[5,-19],[13,-26],[1,-46],[-14,-16]],[[7314,1249],[-7,0],[7,5],[11,-5],[-11,0]],[[9577,1249],[-21,-11],[-7,11],[0,46],[7,37],[20,-37],[1,-31],[1,-15],[-1,0]],[[7418,1193],[-7,11],[7,45],[10,-45],[-10,-11]],[[7812,1201],[-13,3],[13,3],[3,-3],[-3,-3]],[[8082,1202],[-3,2],[3,6],[4,-6],[-4,-2]],[[6545,1153],[-7,6],[-13,10],[-21,26],[-21,6],[-3,3],[-12,45],[2,46],[13,21],[10,-21],[11,-18],[21,-12],[8,-16],[12,-40],[13,-5],[-4,-45],[-9,-6]],[[8310,1157],[1,2],[-1,1],[-1,-1],[1,-2]],[[7480,1147],[-21,9],[-1,3],[-4,45],[5,3],[4,-3],[17,-32],[5,-13],[-5,-12]],[[7625,1157],[0,2],[1,0],[-1,-2]],[[6608,1110],[-11,3],[-10,14],[-10,32],[10,28],[5,-28],[16,-40],[1,-6],[-1,-3]],[[8747,1107],[-4,6],[0,46],[4,3],[0,-3],[20,-46],[-20,-6]],[[8414,1085],[-20,13],[-11,15],[11,11],[20,28],[11,-39],[-11,-28]],[[7168,1067],[1,1],[-1,1],[0,-1],[0,-1]],[[8020,1067],[0,1],[-21,11],[-14,-11],[14,-10],[21,9]],[[9037,1110],[-4,3],[-17,41],[-3,5],[3,1],[21,12],[21,-4],[21,12],[14,-21],[-13,-46],[-1,-1],[-1,1],[-20,29],[-18,-29],[-3,-3]],[[7937,1022],[0,1],[-1,0],[1,-1]],[[7882,1023],[-8,-2],[-1,2],[-19,39],[-6,6],[6,3],[20,17],[17,25],[4,6],[21,4],[21,21],[20,-31],[-20,-23],[-10,-22],[-11,-24],[-21,-18],[-13,-3]],[[6919,975],[-6,2],[6,6],[6,-6],[-6,-2]],[[7376,959],[11,18],[-11,22],[-8,24],[-13,20],[-12,25],[-8,10],[-21,3],[-19,32],[-2,4],[-21,3],[-8,-7],[8,-8],[15,-37],[6,-23],[21,-7],[11,-15],[10,-6],[20,-25],[10,-15],[11,-18]],[[8456,977],[1,0],[-1,2],[-1,-2],[1,0]],[[8705,947],[-15,30],[7,46],[8,20],[7,-20],[11,-46],[-18,-30]],[[8394,977],[-2,0],[2,1],[0,-1]],[[7874,930],[1,2],[-1,7],[-6,38],[-14,10],[-21,19],[-10,17],[-11,31],[-8,-31],[8,-9],[16,-37],[5,-10],[19,-35],[2,-6],[20,4]],[[7916,926],[7,6],[-3,45],[-4,9],[-21,-8],[-4,-1],[4,-2],[19,-43],[2,-6]],[[7521,922],[-4,10],[4,14],[10,-14],[-10,-10]],[[7688,913],[-21,-12],[-21,14],[-15,17],[-6,10],[-15,35],[-6,9],[-20,-7],[-21,13],[-6,31],[0,45],[-9,45],[15,27],[10,19],[11,45],[20,-14],[9,14],[12,17],[16,-17],[5,-6],[21,-31],[11,-8],[-11,-12],[-21,-31],[-2,-3],[-5,-45],[7,-16],[21,-11],[2,-18],[13,-46],[6,-10],[12,-35],[-12,-19]],[[9780,893],[-16,20],[-21,13],[-7,6],[-13,45],[11,46],[9,15],[18,27]],[[9771,1180],[-3,24],[0,45],[9,46],[2,45],[6,15],[7,10]],[[9328,839],[-21,-5],[-15,7],[15,14],[21,-6],[2,-8],[-2,-2]],[[8996,810],[-6,31],[6,29],[6,-29],[-6,-31]],[[7895,794],[-1,2],[1,1],[1,-1],[-1,-2]],[[8290,789],[-6,7],[6,14],[10,-14],[-10,-7]],[[8954,796],[-4,0],[4,0],[1,0],[-1,0]],[[9598,795],[-21,-25],[-21,21],[-3,5],[3,27],[5,18],[16,9],[21,25],[14,-34],[-14,-45],[0,-1]],[[8456,742],[-2,9],[2,4],[15,-4],[-15,-9]],[[9183,700],[4,5],[-2,46],[-2,4],[-1,-4],[-1,-46],[2,-5]],[[8521,705],[-3,-4],[-1,4],[-16,46],[-4,4],[-20,0],[-6,41],[6,14],[20,8],[16,-22],[5,-20],[21,-22],[2,-3],[-2,-6],[-18,-40]],[[8041,701],[-16,4],[4,46],[4,45],[8,9],[3,-9],[2,-45],[-3,-46],[-2,-4]],[[8767,637],[11,23],[6,45],[-17,30],[-7,16],[-7,45],[-1,45],[15,43],[1,3],[20,33],[21,12],[21,33],[15,12],[5,10],[12,36],[9,19],[13,26],[-12,45],[-1,12],[-8,34],[-13,12],[-20,33],[0,16],[-3,29],[-18,32],[-7,14],[-12,45],[-2,11],[-6,34],[6,27],[3,19],[18,42],[10,3],[-10,4],[-21,33],[-4,9],[-7,45],[-10,25],[-9,20],[-8,46],[-3,15],[-12,-15],[6,-46],[-8,-45],[-3,-45],[17,-22],[10,-24],[2,-45],[-8,-46],[8,-45],[8,-23],[10,-22],[11,-34],[5,-12],[9,-45],[7,-12],[15,-33],[6,-12],[14,-34],[-5,-45],[-9,-23],[-16,-22],[-5,-17],[-21,-25],[-5,-4],[-16,-30],[-3,-15],[-17,-33],[-5,-12],[-3,-46],[-13,-31],[-18,31],[-3,3],[-4,-3],[4,-12],[10,-33],[11,-12],[15,-33],[6,-25],[9,-21],[-6,-45],[17,-23]],[[9162,653],[4,7],[-4,5],[-4,-5],[4,-7]],[[9872,696],[-4,-14],[-11,23],[-10,10],[-21,-1],[-21,-3],[-9,40],[-3,45],[-8,9],[-21,36],[-13,46],[-8,3],[-21,8],[-20,8],[-21,2],[-9,-21],[-12,-25],[-15,-21],[-6,-8],[-8,8],[-12,16],[-16,30],[16,27],[7,18],[13,45],[21,19],[21,-2],[17,29],[1,45],[3,9],[20,4],[21,15],[5,17],[-5,36],[-3,10],[-13,45],[-5,9],[-20,24],[-21,4],[-7,8],[-9,46],[16,8],[21,-5],[5,-3],[15,-16],[21,-8],[16,24],[-1,45],[6,22],[8,23],[-8,30],[-16,16],[16,12],[10,33],[-2,46],[8,45],[-16,16],[-21,-7],[-6,-9],[-15,-25],[-20,-20],[-1,0],[-20,-11],[-21,10],[0,1],[-2,45],[2,24],[7,21],[14,12],[21,24],[10,10],[10,18],[20,27],[-20,17],[-20,11],[-10,17],[10,30],[5,16],[-5,11],[-21,0],[-14,34],[14,45],[0,1],[21,30],[20,13],[2,2],[-2,2],[-20,9],[-21,-5],[-21,19],[-21,-2],[-10,-23],[-10,-44],[-1,-2],[-20,-35],[-13,-10],[-8,-6],[-11,6],[-10,6],[-2,-6],[-8,-45],[10,-45],[0,-1],[-20,-11],[-7,11],[-13,46],[-1,2],[-2,-2],[-19,-14],[-21,-19],[-15,-13],[-3,-45],[-3,-6],[-16,6],[14,45],[-3,46],[-5,45],[10,40],[3,5],[18,28],[21,10],[3,8],[13,45],[5,12],[21,30],[2,3],[18,43],[21,-6],[5,9],[-5,17],[-10,28],[10,41],[1,4],[-1,15],[-21,1],[-20,-1],[-11,31],[-3,45],[-4,45],[-3,36],[-4,-36],[-13,-45],[-4,-29],[-2,-16],[-19,-39],[-3,-7],[3,-10],[14,-35],[-7,-45],[-7,-10],[-11,10],[-10,9],[-20,5],[-21,-7],[-21,0],[-2,-7],[-2,-46],[-10,-45],[-7,-2],[-20,-21],[-14,-22],[-7,-46],[0,-1],[0,1],[-4,46],[-2,45],[1,45],[-7,46],[-9,42],[-1,3],[1,7],[5,38],[-2,46],[-3,3],[-2,-3],[-19,-23],[-18,-23],[6,-45],[-8,-45],[0,-3],[-3,3],[-18,10],[-21,-2],[-6,-8],[-8,-46],[14,-37],[4,-8],[1,-45],[-5,-11],[-21,-34],[0,-1],[0,-1],[19,-44],[2,-31],[1,-14],[-1,-2],[0,2],[-21,27],[-20,-3],[-13,21],[-8,12],[-21,6],[-21,-7],[-3,-11],[3,-17],[7,-28],[6,-46],[8,-21],[2,-24],[-2,-2],[-17,-43],[6,-46],[11,-39],[2,-6],[19,-34],[17,-11],[4,-7],[18,-39],[2,-8],[6,-37],[-6,-18],[-20,6],[-21,4],[-15,-38],[-6,-23],[-6,-22],[-12,-45],[-3,-8],[-16,-38],[7,-45],[-12,-31],[-9,31],[0,45],[9,46],[-12,45],[12,29],[6,16],[15,40],[2,6],[10,45],[-12,25],[-7,21],[-2,45],[-12,22],[-20,-11],[-21,23],[-4,11],[4,30],[1,16],[1,45],[-2,6],[-21,19],[-21,11],[-13,9],[13,9],[21,36],[0,1],[21,27],[5,18],[-2,45],[-3,7],[-14,39],[0,45],[-7,11],[-8,-11],[-13,-17],[-20,-13],[-10,30],[-11,45],[21,23],[20,10],[8,13],[10,45],[-18,15],[-20,20],[-21,-1],[-8,11],[-4,46],[12,13],[21,3],[20,19],[8,10],[13,17],[21,-12],[15,40],[6,30],[3,16],[-3,6],[-21,-3],[-7,-3],[-14,-10],[-7,10],[-14,24],[-12,21],[-8,45],[20,29],[21,14],[2,3],[19,30],[21,2],[11,13],[-11,11],[-21,9],[-13,26],[-8,19],[-21,0],[-9,26],[9,21],[21,2],[17,22],[4,6],[14,40],[7,16],[20,9],[2,20],[-2,3],[-9,42],[-11,41],[-3,5],[-18,31],[-10,14],[-6,45],[-5,28],[-21,-15],[-6,-13],[6,-16],[14,-29],[7,-14],[11,-31],[10,-46],[-17,-45],[-4,-5],[-21,-18],[-20,20],[-3,3],[-18,21],[-14,-21],[-7,-9],[-11,9],[-10,7],[-20,3],[-3,-10],[-2,-45],[-13,-46],[-3,-2],[-8,-43],[8,-20],[8,-25],[13,-28],[16,-18],[-16,-44],[-1,-1],[-6,-46],[7,-44],[0,-1],[0,-2],[-21,-3],[-2,5],[-19,43],[-21,2],[-4,46],[-16,8],[-8,-8],[-13,-26],[-6,-20],[-7,-45],[2,-45],[-10,-32],[-13,32],[-8,9],[-9,-9],[-5,-46],[-6,-43],[-21,32],[-6,11],[-15,28],[-21,1],[-8,-29],[8,-24],[7,-21],[7,-45],[7,-29],[4,-17],[-4,-9],[-20,-36],[-1,-2],[-1,2],[-9,45],[-11,15],[-20,-8],[-12,39],[-8,45],[-1,1],[-6,-1],[-15,-5],[-14,-40],[-7,-25],[-20,7],[-14,18],[-7,38],[-7,-38],[-6,-46],[13,-25],[7,-20],[-7,-24],[-14,-21],[-7,-11],[-16,-35],[12,-45],[-17,-43],[-1,-2],[1,-4],[21,-40],[2,-2],[19,-19],[6,-26],[-6,-12],[-21,0],[-21,-2],[-12,14],[-8,6],[-13,-6],[-8,-16],[-21,-26],[-2,-3],[2,-10],[21,-29],[1,-7],[13,-45],[-14,-22],[-9,-23],[9,-29],[7,-17],[14,-28],[8,-17],[12,-20],[21,7],[11,13],[10,7],[12,-7],[9,-18],[5,-27],[4,-46],[11,-40],[2,-5],[-2,-4],[-2,4],[-18,24],[-21,1],[-21,4],[-18,-29],[-3,-7],[-20,-24],[-9,-15],[-12,-19],[-21,10],[-21,-12],[-9,-24],[-11,-21],[-21,7],[-13,14],[13,16],[12,29],[9,26],[20,-7],[21,-2],[17,29],[4,45],[-9,46],[-2,45],[-10,22],[-21,-18],[-14,41],[-6,32],[-3,14],[-6,45],[9,38],[1,7],[-1,11],[-21,20],[-21,-6],[-21,-16],[-21,-2],[-13,39],[-7,5],[-4,-5],[-17,-25],[-21,3],[-12,22],[12,27],[15,18],[3,45],[3,12],[21,8],[11,26],[9,25],[21,-9],[12,-16],[9,-16],[8,16],[-8,23],[-6,22],[6,41],[6,4],[15,4],[10,-4],[11,-2],[3,2],[-3,10],[-6,36],[6,16],[14,29],[-6,45],[0,46],[-6,45],[-2,9],[-3,-9],[-14,-45],[-4,-8],[-13,-38],[-8,-16],[-10,16],[-11,18],[-18,-18],[-3,-3],[-20,-11],[-10,-31],[-11,-28],[-13,28],[-8,28],[-3,17],[3,21],[6,25],[12,45],[-18,26],[-10,-26],[-11,-18],[-10,-27],[-10,-30],[-11,-16],[-10,-18],[-4,18],[-8,46],[-9,24],[-14,21],[14,22],[21,17],[2,6],[-2,6],[-16,40],[-5,17],[-8,28],[-4,45],[2,46],[-11,9],[-4,-9],[1,-46],[-17,-44],[-1,-1],[-10,-45],[-10,-12],[-21,-7],[-21,-4],[-4,-23],[4,-20],[12,-25],[9,-24],[4,-21],[5,-46],[12,-17],[14,-28],[-13,-45],[-1,-3],[-21,2],[-21,-14],[-10,-31],[-9,-45],[19,-31],[17,-14],[-8,-46],[-9,-5],[-7,5],[-13,10],[-21,5],[-17,31],[0,45],[4,45],[-2,46],[-5,45],[-1,13],[-1,-13],[-17,-45],[-2,-46],[-1,0],[-15,-45],[-3,-45],[-3,-8],[-20,-16],[-21,-1],[-19,25],[-2,3],[-10,-3],[2,-46],[8,-15],[10,-30],[11,-41],[16,-4],[5,-1],[0,1],[20,31],[21,-10],[21,-21],[0,-2],[-8,-44],[-11,-45],[3,-45],[-5,-12],[-8,12],[-13,14],[-20,-7],[-21,-3],[-21,33],[-7,8],[5,45],[-15,46],[-4,1],[-20,11],[-10,-12],[-11,-10],[-21,-1],[-21,9],[-1,2],[-9,45],[-10,24],[-21,-1],[-15,-23],[-6,-16],[-11,16],[-4,45],[-6,8],[-12,38],[6,45],[6,20],[21,11],[21,-5],[5,19],[16,20],[12,26],[-12,35],[-12,10],[8,45],[4,10],[20,18],[21,1],[19,17],[-16,45],[18,19],[16,26],[-16,32],[-4,14],[4,21],[4,24],[3,45],[-6,46],[-1,3],[-1,-3],[-6,-46],[-14,-26],[-21,-12],[-3,-7],[0,-45],[-17,-45],[-2,-1],[-19,-5],[-21,-37],[-21,-1],[-3,-2],[-17,-23],[-7,-22],[-14,-25],[-21,8],[-11,-29],[2,-45],[-12,-20],[-13,20],[-8,14],[-10,-14],[-10,-14],[-21,-17],[-6,-14],[6,-33],[6,-13],[-6,-1],[-13,1],[-8,5],[-7,41],[-2,45],[9,38],[3,7],[18,30],[9,16],[12,13],[13,-13],[7,-12],[5,12],[16,32],[15,13],[6,5],[21,5],[7,35],[3,46],[11,33],[5,12],[1,45],[4,46],[1,45],[-11,12],[-12,-12],[-9,-27],[-21,-2],[-21,-13],[-1,-3],[-11,-46],[-9,-10],[-20,-10],[-7,20],[-14,26],[-21,-3],[-11,-23],[-10,-10],[-20,-23],[-15,33],[15,40],[3,6],[17,14],[21,19],[3,12],[-3,17],[-4,29],[4,7],[21,10],[21,24],[14,4],[6,2],[21,13],[11,30],[-11,19],[-13,27],[13,30],[21,13],[4,2],[9,45],[-2,46],[-7,45],[-4,2],[-2,-2],[-19,-38],[-5,-7],[-16,-18],[-20,-9],[-8,27],[8,26],[8,19],[12,32],[5,13],[-5,22],[-20,2],[-15,22],[11,45],[3,45],[-20,35],[-5,11],[-2,45],[7,30],[6,15],[-6,27],[-8,19],[-13,40],[-7,-40],[1,-46],[-5,-45],[-6,-45],[7,-46],[-8,-45],[-3,-6],[-16,-39],[-1,-46],[6,-45],[-9,-19],[-21,-17],[-21,22],[-11,14],[-10,17],[-9,28],[-5,46],[-6,15],[-16,30],[-5,10],[-7,-10],[-8,-45],[-6,-10],[-21,-14],[-20,-15],[-3,-7],[3,-6],[20,-30],[4,-9],[-4,-6],[-20,-30],[-3,-9],[3,-12],[9,-34],[11,-22],[21,-11],[21,-11],[0,-1],[0,-2],[-21,-12],[-21,-23],[-2,-8],[-18,-39],[-4,-7],[-17,-42],[-3,-3],[-18,-36],[-11,36],[-10,21],[-14,-21],[-7,-12],[-20,-13],[-21,12],[-7,13],[0,45],[0,46],[7,4],[21,9],[18,-13],[2,-3],[5,3],[16,27],[3,18],[1,45],[-4,46],[0,1],[-21,38],[-20,1],[-11,5],[-10,9],[-21,26],[-21,5],[-4,5],[4,14],[15,32],[6,5],[21,9],[21,26],[3,5],[-3,3],[-21,32],[-4,10],[4,22],[5,24],[3,45],[13,20],[7,25],[0,2]],[[7221,3350],[-4,-15],[-7,-13],[-11,-32],[-10,-30],[-21,-10],[-4,-5],[-5,-46],[-11,-23],[-13,-22],[-8,-13],[-21,1],[-2,12],[-19,20],[-10,-20],[-10,-29],[-21,9],[-3,20],[3,14],[8,31],[9,46],[-9,45],[-3,45],[-5,19],[-21,20],[-6,7],[-6,45],[-5,45],[-4,9],[-4,-9],[-6,-45],[4,-45],[-5,-46],[5,-45],[-14,-41],[-11,-4],[-10,-17],[-3,-29],[-16,-45],[-2,-6],[-21,-38],[-1,-1],[0,-46],[-20,-42],[-19,42],[-1,46],[6,45],[14,45],[-20,44],[-2,2],[-16,45],[15,45],[3,16],[6,30],[-6,24],[-21,0],[-11,21],[-9,45],[-1,8],[-21,0],[-1,-8],[-8,-45],[-11,-12],[-10,12],[-11,30],[-8,-30],[-4,-45],[12,-37],[3,-9],[0,-45],[1,-45],[-4,-24],[-5,24],[-16,17],[-10,28],[-11,29],[-7,16],[-12,46],[-1,8],[-11,37],[-10,45],[0,1],[0,-1],[-11,-45],[-4,-45],[-6,-27],[-5,-19],[3,-45],[-19,-36],[-8,-9],[-12,-27],[-15,27],[-6,7],[-19,38],[19,38],[2,7],[-2,10],[-10,36],[7,45],[-18,4],[-1,-4],[-20,-32],[-8,-13],[-13,-25],[-18,25],[-2,2],[-7,-2],[-14,-20],[-21,-16],[-17,36],[-4,6],[-8,-6],[-12,-17],[-4,17],[-3,45],[7,38],[1,7],[2,46],[-3,3],[-21,1],[-3,-4],[-18,-21],[-21,3],[-20,2],[-21,-20],[-18,36],[9,45],[9,11],[21,15],[13,20],[7,13],[21,27],[21,-20],[16,25],[-10,45],[12,46],[3,5],[20,14],[16,-19],[5,-9],[4,9],[17,28],[21,13],[3,4],[-3,6],[-21,12],[-21,21],[-2,6],[-3,46],[5,23],[6,22],[4,45],[6,46],[-3,45],[8,22],[9,23],[1,46],[-8,7]],[[6444,4196],[12,-44],[6,-15],[13,-31],[-13,-34],[-4,-11],[-2,-45],[-13,-46],[-1,-7],[-7,-38],[-14,-17],[-13,17],[-8,27],[-11,18],[-10,22],[-5,-22],[3,-45],[1,-45],[-19,-38],[-14,-8],[14,-13],[20,-31],[1,-1],[-1,-1],[-16,-44],[-4,-6],[-16,-40],[-5,-9],[-21,-4],[-21,-17],[-14,30],[-6,31],[-7,-31],[-14,-29],[-9,-16],[-12,-20],[-21,-25],[21,-27],[11,-19],[-9,-45],[-2,-4],[-21,-25],[-15,-17],[-6,-8],[-6,8],[-8,46],[-6,31],[-21,-3],[-21,-26],[-21,30],[-7,13],[7,8],[21,24],[10,14],[-10,28],[-5,17],[-16,41],[-2,4],[1,46],[1,9],[11,36],[10,23],[20,-23],[1,-1],[4,1],[17,23],[5,22],[3,46],[-2,45],[12,45],[-18,9],[-4,-9],[-17,-33],[-16,33],[-5,25],[-11,21],[-10,8],[-4,-8],[-11,-46],[-2,-45],[-3,-7],[-9,7],[-12,12],[-11,-12],[-10,-15],[-21,-11],[-20,-1],[-3,-18],[3,-19],[4,-27],[-4,-18],[-7,-27],[0,-45],[-14,-46],[-21,-20],[-21,9],[-17,-34],[-3,-5],[-7,5],[-5,45],[5,46],[7,20],[13,25],[7,17],[12,28],[5,46],[4,42],[0,3],[0,1],[-21,0],[-1,-1],[-19,-8],[-4,8],[0,45],[4,37],[2,9],[11,45],[-9,45],[16,24],[21,12],[16,10],[-16,12],[-14,33],[-7,16],[-11,29],[7,46],[-12,45],[-4,18],[-7,27],[7,36],[1,10],[-1,9],[-5,36],[-5,46],[8,45],[2,7],[20,9],[9,29],[-9,25],[-20,-16],[-21,13],[-10,24],[-11,25],[-9,20],[-4,45],[-8,34],[-7,12],[-14,11],[-19,34],[-1,1],[-21,1],[-21,5],[-4,-7],[4,-2],[21,-2],[21,-3],[9,-38],[11,-15],[13,-31],[-2,-45],[10,-34],[6,-11],[15,-33],[7,-13],[-7,-16],[-18,-29],[15,-45],[-8,-46],[-3,-45],[-3,-46],[-4,-24],[-4,-21],[4,-19],[21,-22],[2,-4],[5,-46],[-7,-22],[-10,-23],[-7,-45],[-4,-7],[-6,7],[-15,17],[-14,-17],[0,-46],[11,-45],[-13,-45],[-4,-8],[-21,-9],[-11,17],[-8,45],[-2,4],[-4,-4],[-15,-45],[0,-46],[17,-45],[-5,-45],[7,-9],[21,-7],[3,-30],[-3,-12],[-6,-33],[-15,-18],[-21,-6],[-16,24],[14,45],[-4,46],[-6,45],[-8,28],[-2,17],[-3,46],[-5,45],[-11,28],[-8,17],[-13,30],[-21,14],[-8,-44],[-4,-45],[-3,-45],[-5,-7],[-21,-16],[-21,-4],[-11,27],[3,45],[-9,45],[-4,6],[-4,-6],[-16,-30],[-21,6],[-21,-21],[0,-2],[2,-43],[-2,-5],[-21,0],[-21,-9],[-20,1],[-18,13],[18,20],[7,25],[8,45],[1,46],[4,32],[2,13],[1,45],[-3,5],[-4,-5],[-16,-14],[-21,-30],[-1,-1],[-20,-31],[-19,31],[-2,3],[-20,-2],[-1,-1],[-20,-18],[-21,7],[-3,11],[3,12],[14,33],[7,10],[16,36],[4,45],[1,3],[17,42],[3,16],[8,30],[-8,38],[-20,-25],[-11,-13],[-10,-13],[-12,-33],[-9,-21],[-16,21],[-5,26],[-1,20],[1,19],[2,26],[-2,29],[-1,17],[-19,38],[-3,7],[-18,35],[-6,10],[-11,46],[-4,17],[-7,28],[-8,45],[0,46],[2,45],[-8,11],[-20,1],[-21,2],[-21,-10],[-4,-4],[4,-7],[21,-3],[21,-35],[2,-46],[6,-45],[3,-45],[-11,-42],[-3,-4],[3,-2],[20,-30],[7,-13],[8,-45],[0,-46],[-11,-45],[-4,-21],[-10,-25],[10,-28],[2,-17],[-2,-12],[-6,12],[-14,26],[-5,19],[-16,33],[-9,13],[-12,17],[-7,-17],[-14,-29],[-8,-17],[8,-26],[5,-19],[-5,-15],[-21,-26],[-20,31],[-8,10],[-13,18],[-21,-7],[-2,-11],[2,-18],[3,-27],[-3,-15],[-13,-31],[-8,-7],[-4,7],[-16,27],[-21,-13],[-21,-7],[-20,39],[-1,3],[-8,42],[8,33],[9,12],[-2,46],[-7,14],[-18,31],[-2,8],[-12,38],[1,45],[-10,33],[-7,-33],[-4,-45],[-3,-46],[-7,-21],[-8,-24],[-4,-46],[-9,-9],[-20,-17],[-21,-10],[-7,36],[-14,24],[-21,0],[-17,22],[3,45],[6,46],[-7,45],[-5,27],[-21,-23],[-2,-4],[-10,-45],[-9,-32],[-11,-14],[-10,-22],[-9,-23],[-12,-20],[-9,20],[-11,16],[-16,29],[-5,33],[-5,13],[-16,10],[-5,-10],[-13,-46],[-3,-4],[-20,-23],[-7,27],[-3,46],[4,45],[-15,11],[-21,2],[-4,-13],[-16,-45],[-1,-3],[-3,3],[-17,6],[-21,0],[-3,-6],[3,-23],[5,-23],[13,-45],[3,-30],[1,-16],[-1,-3],[-21,-32],[-14,35],[-7,34],[-21,-13],[-17,-21],[-3,-8],[-16,-37],[1,-45],[-6,-15],[-21,12],[-21,-13],[-7,16],[-14,31],[-7,14],[7,18],[6,27],[0,46],[14,45],[-20,37],[-4,9],[4,45],[1,0],[20,-23],[21,-12],[21,-3],[6,38],[-6,19],[-8,26],[-13,43],[-1,3],[-5,45],[6,36],[4,9],[12,46],[5,11],[21,26],[12,8],[-12,6],[-21,8],[-21,26],[-16,5],[-5,3],[-15,43],[4,45],[-3,45],[0,46],[-7,10],[-19,35],[-1,8],[-21,-1],[-7,-7],[7,-5],[15,-40],[6,-41],[1,-5],[5,-45],[-6,-11],[-19,-34],[-2,-37],[-1,-9],[1,-7],[3,-38],[14,-45],[-6,-46],[-11,-14],[-21,-4],[-13,-27],[-8,-16],[-20,-29],[-1,0],[-18,45],[-2,31],[-5,14],[-16,8],[-11,38],[-4,45],[-6,38],[-20,7],[-8,-45],[-5,-45],[-1,-46],[-5,-45],[12,-45],[-14,-27],[-21,-1],[-20,-18],[17,-45],[-18,-17],[-9,17],[-11,36],[-3,9],[-11,46],[14,39],[3,6],[17,29],[8,16],[-8,14],[-20,19],[-21,6],[-21,-6],[-12,13],[12,45],[0,1],[17,44],[-13,46],[-4,26],[-21,-2],[-3,-24],[-11,-46],[-7,-13],[-6,13],[-14,33],[-6,13],[-15,43],[-21,-28],[-21,1],[-17,29],[-3,11],[-5,-11],[-2,-45],[7,-5],[20,-11],[21,-26],[1,-4],[9,-45],[-10,-30],[-21,7],[-20,-12],[-12,-10],[12,-17],[12,-29],[8,-12],[21,-17],[8,-16],[-8,-44],[0,-1],[-7,-46],[-14,-23],[-10,-22],[3,-45],[1,-46],[-1,-45],[7,-15],[21,-11],[21,-2],[21,-7],[20,9],[10,-20],[11,-25],[21,2],[19,-22],[-19,-21],[-21,0],[-9,21],[-12,24],[-20,1],[-7,-25],[7,-16],[9,-29],[8,-46],[3,-9],[18,-36],[-7,-45],[10,-26],[14,-20],[7,-27],[1,-18],[-1,-3],[-21,-18],[-8,21],[-4,45],[-9,16],[-20,23],[-21,-9],[-6,-30],[-15,-35],[-15,35],[11,46],[-17,18],[-19,27],[-1,30],[-2,15],[-19,9],[-21,10],[-9,-19],[-12,-10],[-18,10],[-1,46],[19,21],[21,-3],[16,27],[-16,32],[-16,13],[16,14],[20,32],[1,6],[5,39],[-5,14],[-13,32],[7,45],[6,45],[-3,46],[-18,9],[-20,36],[-1,1],[0,-1],[-1,-45],[-8,-46],[-11,-13],[-21,-26],[-21,35],[-20,-41],[2,-45],[-3,-20],[-9,-26],[-11,-9],[-5,9],[-16,41],[-3,5],[-4,45],[-8,45],[-6,10],[-5,-10],[-16,-23],[-10,-22],[-11,-24],[-18,24],[-2,3],[-21,32],[-6,-35],[6,-25],[4,-20],[-4,-16],[-21,11],[-5,5],[-16,13],[-19,32],[-1,2],[-21,-1],[-21,25],[-21,2],[-15,-28],[14,-45],[1,-3],[18,-43],[3,-28],[21,-10],[15,-7],[6,-21],[3,-25],[13,-45],[4,-10],[21,-29],[21,1],[2,-7],[19,-25],[11,-21],[6,-45],[-17,-9],[-15,9],[-6,3],[-5,-3],[-16,-7],[-9,7],[-12,22],[-20,11],[-21,-5],[-4,17],[0,46],[-17,20],[-21,-9],[-20,-1],[-21,-3],[-10,38],[10,19],[9,26],[-9,33],[-14,13],[-7,14],[-14,31],[-7,7],[-12,-7],[-8,-2],[-4,2],[-17,42],[-1,4],[1,2],[13,43],[-13,39],[-21,-32],[-21,23],[-4,15],[-17,45],[0,1],[-20,26],[-21,-25],[-2,-1],[-10,-46],[12,-32],[4,-13],[17,-33],[4,-12],[-4,-39],[-21,-4],[-21,29],[-21,-18],[-8,-14],[-12,-34],[-21,19],[-1,15],[-20,39],[-21,-27],[-20,21],[-6,13],[-15,43],[-3,2],[3,3],[21,19],[20,-5],[15,28],[-15,32],[-3,14],[3,17],[21,20],[11,8],[10,6],[3,-6],[18,-34],[14,-11],[6,-5],[10,5],[-1,45],[-9,45],[-8,46],[8,42],[4,3],[17,6],[4,-6],[17,-28],[21,-7],[11,-10],[9,-5],[6,5],[-6,7],[-11,38],[-9,19],[-14,26],[-7,18],[-21,27],[-1,1],[-20,12],[-20,15],[-8,18],[-13,22],[-15,23],[-6,20],[-6,26],[-15,25],[-6,20],[6,17],[19,28],[2,5],[2,-5],[12,-45],[7,-16],[18,-29],[3,-3],[20,-16],[21,-12],[6,-15],[13,-45],[2,-6],[21,-28],[20,34],[1,0],[20,-41],[19,41],[-19,33],[-5,12],[-16,42],[-1,4],[1,2],[15,43],[0,45],[6,13],[21,24],[19,9],[2,1],[1,-1],[18,-46],[2,-2],[20,-22],[21,8],[21,4],[21,5],[3,7],[-3,6],[-21,3],[-19,37],[-2,6],[-15,39],[-6,9],[-11,36],[-4,46],[-5,19],[-3,-19],[-18,-29],[-21,-9],[-14,-8],[-7,-7],[-21,-8],[-20,-9],[-6,-21],[0,-45],[-15,-16],[-21,-7],[-21,18],[-20,4],[-1,1],[1,1],[13,44],[7,45],[0,1],[-20,36],[-16,9],[-5,37],[-1,8],[-20,32],[-12,-32],[2,-45],[10,-44],[1,-2],[-1,-1],[-21,-1],[-2,2],[-18,21],[-17,-21],[3,-45],[-7,-33],[-21,-4],[-9,-8],[-12,-11],[-20,11],[2,45],[12,45],[-14,44],[-21,-11],[-15,-33],[-6,-16],[-17,-29],[-4,-2],[-1,2],[-20,43],[-1,2],[1,9],[7,37],[-7,29],[-20,0],[-21,4],[-21,-12],[-9,24],[-12,23],[-10,22],[-10,32],[-8,14],[-7,45],[-6,33],[-2,13],[2,32],[21,-18],[20,-3],[12,-11],[9,-16],[16,-30],[5,-16],[21,-6],[19,-23],[1,-2],[3,2],[18,25],[14,20],[-11,46],[-3,3],[-16,-3],[-5,-2],[0,2],[-6,45],[-14,29],[-12,16],[12,18],[5,28],[15,45],[0,1],[2,-1],[19,-13],[21,9],[3,4],[-3,5],[-12,40],[12,43],[1,3],[8,45],[-9,14],[-21,8],[-3,23],[2,46],[1,3],[21,35],[3,7],[18,29],[21,-21],[20,1],[5,-9],[16,-41],[5,-4],[16,-27],[10,27],[5,45],[6,12],[20,21],[21,-3],[21,-5],[20,-25],[1,-1],[0,1],[0,2],[-8,43],[8,20],[20,21],[7,5],[-7,22],[-20,-5],[-21,-2],[-21,0],[-21,22],[-18,8],[-2,1],[-1,-1],[-2,-45],[-18,-25],[-21,-3],[-21,12],[-7,16],[-13,36],[-5,9],[-10,45],[13,46],[-8,45],[-11,3],[-4,-3],[-17,-34],[-17,34],[-4,5],[-21,-2],[-20,-1],[-21,9],[-2,-11],[2,-1],[21,-1],[20,-16],[21,6],[13,-33],[4,-46],[1,-45],[3,-35],[4,-10],[-4,-2],[-21,-3],[-21,-31],[-6,-10],[-14,-34],[-3,-11],[-2,-45],[-3,-46],[-4,-45],[-3,-45],[-6,-14],[-21,13],[0,1],[-7,45],[-9,45],[-5,16],[-19,-16],[-1,-1],[-12,-44],[-5,-45],[-4,-25],[-7,-21],[-14,-11],[-21,0],[-20,-24],[-6,-10],[-15,-33],[-10,-12],[-5,-46],[-6,-14],[-7,14],[-4,46],[-7,45],[15,45],[3,35],[3,11],[-3,27],[-2,18],[2,3],[7,42],[-7,17],[-8,29],[8,36],[4,9],[-2,45],[-2,26],[-3,-26],[-18,-37],[-3,-8],[-15,-45],[-2,-4],[-17,4],[6,45],[2,45],[-11,46],[-1,2],[-2,-2],[-16,-46],[-3,-3],[-4,3],[-17,13],[-12,33],[-9,40],[-17,-40],[-3,-5],[-3,5],[-15,45],[-3,7],[-3,-7],[-18,-44],[-2,-1],[2,-1],[19,-45],[2,-45],[21,-39],[2,-6],[-2,-7],[-12,-39],[5,-45],[7,-13],[20,-8],[20,-24],[1,-22],[2,-24],[-2,-2],[-18,-43],[-3,-12],[-14,12],[-6,21],[-6,24],[-4,46],[-11,26],[-15,19],[-6,6],[-21,15],[-20,23],[-1,1],[-16,46],[-4,12],[-4,-12],[-17,-36],[-12,-10],[8,-45],[4,-6],[21,-19],[8,-20],[4,-46],[-12,-24],[-14,24],[-7,10],[-9,-10],[-12,-31],[-16,31],[-4,3],[-3,-3],[-18,-26],[-16,26],[-1,46],[-4,39],[-9,6],[-12,2],[-2,-2],[-18,-14],[-13,-31],[-8,-29],[-10,29],[-4,45],[12,45],[-14,46],[-5,18],[-3,-18],[-18,-39],[-21,12],[-8,-19],[0,-45],[-12,-12],[-21,-7],[-15,19],[8,45],[-14,39],[-21,4],[-20,-12],[-6,15],[-15,22],[-17,23],[-4,7],[-21,20],[-18,18],[-2,4],[-21,6],[-21,21],[-15,-31],[-6,-16],[-4,16],[-16,32],[-21,9],[-5,5],[-16,28],[-19,17],[-2,45],[0,1],[-21,28],[-9,-29],[-11,-17],[-21,13],[-21,-10],[-15,14],[-3,46],[9,45],[9,24],[21,13],[12,-37],[9,-29],[20,-6],[12,35],[9,23],[21,5],[21,-5],[10,-23],[10,-45],[1,-1],[20,-3],[21,-2],[4,6],[6,45],[11,24],[10,21],[11,22],[20,10],[12,14],[9,41],[1,4],[5,45],[15,44],[2,2],[19,11],[20,20],[12,14],[9,13],[18,33],[3,8],[12,37],[9,22],[20,19],[4,4],[17,29],[21,2],[7,-31],[14,-11],[21,7],[3,4],[17,30],[21,-1],[21,9],[21,7],[2,1],[-2,2],[-21,17],[-21,2],[-21,-10],[-20,6],[-16,-17],[-5,-8],[-9,8],[-12,4],[-21,7],[-17,34],[7,45],[-11,29],[-11,-29],[6,-45],[-15,-23],[-15,-22],[-6,-11],[-21,-33],[-1,-2],[-9,-45],[-11,-21],[-14,-24],[-6,-12],[-21,-12],[-21,-2],[-21,-9],[-6,-11],[-14,-34],[-21,30],[-21,-9],[-21,-31],[-2,-1],[-18,-43],[-2,-3],[-19,-6],[-4,6],[-17,29],[-21,-27],[-21,28],[-18,16],[18,40],[2,5],[13,46],[-15,31],[-12,14],[12,10],[21,11],[12,24],[9,27],[21,6],[21,-15],[12,28],[-6,45],[14,22],[21,9],[20,14],[1,1],[3,-1],[18,-1],[1,1],[10,46],[9,18],[15,27],[6,11],[21,1],[8,33],[-1,46],[14,18],[9,27],[0,45],[-9,11],[-21,7],[-21,11],[-10,-29],[-11,-30],[-20,30],[0,1],[-4,-1],[-17,-2],[-1,2],[-20,30],[-15,16],[-1,45],[-5,29],[-2,16],[-7,46],[4,45],[5,23],[6,22],[15,13],[21,4],[21,14],[20,-6],[21,16],[21,-3],[21,5],[20,-8],[21,0],[21,-10],[21,21],[-9,45],[9,30],[5,16],[15,34],[18,11],[-18,10],[-20,-3],[-14,-7],[-7,-5],[-18,5],[-3,0],[-1,0],[-20,-13],[-6,13],[-14,38],[-21,-16],[-14,23],[-7,18],[-9,28],[-12,37],[-1,8],[-8,45],[9,21],[21,-3],[21,-18],[21,-28],[20,-2],[21,19],[21,11],[21,-25],[20,-7],[21,9],[21,-19],[21,0],[2,-3],[19,-34],[11,-11],[9,-12],[4,12],[17,38],[21,-23],[21,11],[20,-11],[21,1],[12,-16],[9,-29],[6,-17],[10,-45],[5,-43],[0,-2],[20,-29],[8,29],[9,45],[4,6],[5,-6],[16,-35],[9,35],[12,20],[14,-20],[6,-13],[6,13],[10,45],[5,14],[14,32],[-14,26],[-21,-19],[-7,-7],[-13,-16],[-21,-2],[-21,4],[-9,14],[-2,45],[-10,9],[-20,9],[-21,27],[0,1],[-1,-1],[-20,-9],[-4,9],[-17,28],[-20,-2],[-17,20],[-4,3],[-21,2],[-21,37],[-20,-40],[-21,0],[-13,43],[-8,13],[-21,-5],[-18,37],[18,32],[9,14],[12,25],[10,20],[11,17],[21,-6],[7,-11],[13,-16],[14,16],[-8,45],[-6,19],[-8,27],[8,29],[21,3],[11,-32],[10,-12],[19,-34],[2,-2],[5,2],[-5,33],[-2,13],[0,45],[2,3],[20,24],[13,18],[-13,40],[-1,6],[-10,45],[-5,45],[8,46],[-12,5],[-3,-5],[-6,-46],[-1,-45],[-10,-45],[-1,-3],[-21,-1],[-21,4],[-20,42],[-21,-7],[-21,10],[-18,45],[-3,39],[-13,-39],[-8,-3],[-20,-19],[-21,17],[-3,5],[-18,19],[-21,13],[-6,14],[-14,34],[-21,-28],[-6,-6],[6,-22],[5,-24],[16,-28],[20,-6],[10,-11],[11,-16],[14,-29],[7,-18],[21,-1],[20,15],[21,-19],[21,-13],[14,-10],[-2,-45],[-12,-27],[-14,-18],[-7,-10],[-18,-36],[-3,-3],[-6,3],[-14,9],[-6,-9],[-15,-24],[-21,21],[-21,-33],[-20,25],[-15,11],[-6,9],[-10,37],[-9,45],[-2,3],[-8,-3],[-4,-45],[-4,-46],[6,-45],[10,-21],[14,-24],[6,-46],[-20,-28],[-21,3],[-20,12],[-10,13],[10,39],[2,7],[-2,3],[-21,13],[-21,18],[-9,11],[-12,12],[-7,-12],[-9,-45],[9,-46],[-13,-32],[-10,32],[-11,46],[7,45],[3,45],[3,46],[8,28],[8,17],[-8,45],[0,4],[-1,-4],[-20,-37],[-21,3],[-14,-11],[7,-45],[-1,-46],[-13,-44],[-21,28],[-20,-11],[-21,-10],[-4,-8],[4,-4],[21,-34],[4,-7],[-4,-31],[-3,-15],[3,-4],[16,-41],[-7,-45],[11,-32],[21,-14],[21,-24],[21,10],[10,-31],[11,-23],[20,18],[21,-29],[6,-11],[-6,-12],[-21,-27],[-3,-7],[-17,-22],[-16,22],[-5,10],[-21,31],[-13,-41],[-6,-45],[-2,-4],[-4,4],[-17,29],[-20,-19],[-8,-10],[-13,-13],[-8,13],[-13,39],[-21,-39],[-20,-43],[-2,-2],[2,-4],[20,-19],[11,-23],[-11,-37],[-2,-8],[-5,-46],[7,-45],[0,-3],[21,-18],[8,21],[12,45],[1,3],[21,21],[20,-19],[4,-5],[-4,-11],[-8,-34],[-5,-45],[9,-46],[4,-8],[10,-37],[11,-34],[8,-11],[-6,-46],[-2,-6],[-21,-34],[-1,-5],[1,-9],[21,-13],[21,-3],[14,-20],[1,-46],[-12,-45],[-3,-3],[-21,-33],[-7,-9],[-14,-19],[-20,-18],[-21,11],[-17,26],[-4,4],[-19,41],[-2,4],[-15,41],[-5,22],[-6,-22],[-15,-38],[-7,-7],[5,-45],[2,-2],[15,-44],[5,-45],[1,-4],[2,-41],[5,-46],[-7,-45],[0,-4],[-2,4],[-19,31],[-4,14],[0,46],[-17,25],[-11,20],[-10,42],[-20,-6],[-7,-36],[7,-17],[7,-28],[-4,-46],[-3,-8],[-20,8],[-1,1],[0,-1],[-1,-45],[1,-8],[6,-37],[1,-46],[-7,-43],[-21,31],[-21,4],[-5,8],[5,35],[3,11],[4,45],[-7,44],[0,1],[0,3],[4,43],[-4,6],[-20,22],[-12,17],[-9,15],[-15,-15],[-6,-8],[-21,-27],[-9,-10],[-12,-9],[-15,9],[-4,45],[19,19],[12,26],[-2,46],[-10,29],[-7,16],[7,10],[21,16],[21,0],[21,-6],[21,3],[18,22],[-18,10],[-21,24],[-4,12],[-17,40],[-3,5],[3,36],[21,1],[3,8],[2,46],[16,11],[11,-11],[9,-19],[14,19],[7,19],[4,26],[-4,24],[-7,21],[7,20],[21,17],[20,9],[1,0],[20,33],[21,2],[17,10],[-8,45],[-8,46],[-1,2],[-21,13],[-20,-5],[-21,26],[-21,3],[-21,-7],[-3,13],[3,7],[21,3],[21,6],[6,30],[1,45],[-7,22],[-21,23],[-18,46],[-3,6],[-13,39],[-7,8],[-3,-8],[-18,-44],[-1,-1],[1,-2],[14,-44],[-10,-45],[-4,-11],[-21,-11],[-16,22],[-5,4],[-3,-4],[-18,-41],[-1,-4],[1,-23],[7,-23],[-7,-5],[-20,-15],[-21,-24],[-1,-1],[1,-44],[0,-2],[14,-45],[-14,-32],[-11,-13],[-10,-8],[-21,0],[-5,8],[-15,19],[-21,20],[-4,6],[-17,8],[-21,11],[-20,-6],[-21,11],[-20,21],[-1,6],[-15,40],[15,11],[21,22],[15,12],[6,6],[20,8],[15,-14],[6,-4],[21,3],[0,1],[0,3],[-8,43],[8,15],[21,5],[7,25],[-7,24],[-8,21],[8,20],[20,17],[9,9],[12,19],[21,18],[21,-16],[8,24],[11,45],[-5,46],[-14,9],[-20,-9],[-1,-1],[-1,1],[-16,45],[-4,23],[-2,22],[2,9],[13,-9],[8,-5],[8,5],[2,46],[9,45],[-19,25],[-9,20],[9,35],[5,11],[-5,34],[-21,-13],[-11,24],[-10,13],[-16,32],[-4,11],[-17,35],[-4,8],[-9,-8],[9,-18],[12,-28],[-1,-45],[10,-33],[4,-12],[-4,-24],[-5,-22],[1,-45],[-14,-45],[-3,-24],[-10,-22],[-11,-40],[-7,40],[-14,11],[-20,0],[-3,35],[-10,45],[-8,15],[-5,-15],[-9,-45],[-7,-14],[-18,-32],[5,-45],[-7,-45],[2,-46],[-3,-10],[-2,10],[1,46],[-11,45],[-8,15],[-12,30],[-9,32],[-14,-32],[-3,-45],[-4,-9],[-12,9],[-9,9],[-20,17],[-21,-12],[-5,-14],[3,-45],[2,-6],[21,-20],[12,-20],[8,-19],[21,-16],[4,-10],[-2,-45],[-2,-7],[-15,-39],[-6,-4],[-4,4],[-16,19],[-21,11],[-9,16],[-12,26],[-18,-26],[-3,-3],[-4,3],[-17,20],[-19,25],[-1,1],[-1,-1],[-11,-45],[-9,-26],[-21,-8],[-21,5],[-20,2],[-21,-19],[0,-1],[-1,1],[-6,46],[-14,37],[-2,8],[2,5],[21,18],[21,16],[1,6],[-1,13],[-3,33],[3,8],[20,22],[10,15],[11,29],[5,16],[-5,35],[-21,-32],[-6,-3],[-14,-7],[-21,-9],[-21,2],[-21,-14],[-4,-17],[-13,-45],[-3,-3],[-2,3],[-16,45],[-1,45],[5,46],[1,45],[-8,20],[-11,-20],[-10,-25],[-21,-7],[-20,3],[-21,23],[-14,6],[-7,7],[-19,38],[19,15],[12,-15],[9,-30],[9,30],[8,46],[4,7],[7,-7],[13,-17],[21,-8],[15,25],[6,12],[21,23],[10,10],[-10,11],[-21,12],[-14,22],[-7,16],[-20,30],[19,45],[1,3],[21,11],[14,31],[7,13],[17,33],[-5,45],[8,28],[4,17],[-2,46],[-2,2],[-4,-2],[-16,-31],[-3,-15],[-16,-45],[-2,-2],[-21,-28],[-21,-11],[-1,-4],[-19,-26],[-15,26],[-6,14],[-11,-14],[-10,-14],[-21,6],[-16,-38],[16,-25],[21,-14],[2,-6],[-2,-18],[-21,-1],[-18,19],[-3,12],[-3,-12],[-17,-20],[-8,20],[-13,33],[-10,-33],[-11,-13],[-20,13],[-1,5],[-3,40],[3,19],[9,27],[12,24],[6,21],[-6,19],[-21,6],[-20,-10],[-7,-15],[-14,-40],[-14,-5],[-7,-3],[-1,3],[-20,39],[-16,6],[16,5],[21,35],[2,5],[-2,5],[-21,24],[-20,17],[20,23],[21,3],[18,19],[-10,46],[-8,29],[-5,16],[-16,36],[-3,9],[3,7],[21,-2],[7,-5],[14,-15],[12,-30],[9,-16],[20,8],[2,8],[2,45],[17,26],[21,-7],[18,-19],[3,-2],[1,2],[-1,2],[-15,44],[-6,25],[-6,20],[6,14],[21,25],[4,6],[16,29],[9,17],[0,45],[-3,13]],[[9120,612],[21,-1],[1,4],[-1,3],[-21,-2],[-1,-1],[1,-3]],[[8435,612],[2,3],[-2,0],[-1,0],[1,-3]],[[9403,615],[-13,-16],[-21,13],[0,3],[20,45],[-9,45],[10,5],[1,-5],[20,-42],[2,-3],[-2,-10],[-8,-35]],[[9058,557],[21,1],[9,11],[-9,10],[-21,14],[-5,-24],[5,-12]],[[9722,568],[1,1],[-1,4],[-6,-4],[6,-1]],[[8041,551],[-21,15],[-3,3],[-18,30],[-11,16],[11,20],[5,25],[-5,20],[-7,25],[-11,46],[5,45],[-5,45],[17,46],[1,1],[1,-1],[20,-40],[15,40],[6,25],[20,7],[13,-32],[-4,-46],[12,-38],[9,-7],[-9,-5],[-10,-40],[-1,-46],[-10,-12],[-19,-33],[9,-45],[-7,-46],[-3,-18]],[[8331,552],[-21,1],[-1,16],[1,2],[21,7],[8,-9],[-8,-17]],[[9921,606],[-8,9],[-4,10],[-20,-9],[-4,-1],[-17,-6],[-10,6],[-9,45],[-2,5],[-21,-1],[-5,-4],[-9,-45],[-7,-31],[-20,-1],[-15,32],[0,45],[5,45],[-5,46],[-6,19],[-21,8],[-21,-6],[-12,24],[2,45],[-10,11],[-15,-11],[-3,-45],[-3,-17],[-4,-28],[-8,-46],[-9,-11],[-3,11],[-12,46],[-6,17],[-18,-17],[-2,-4],[-21,-22],[-10,-20],[-11,-26],[-9,26],[-12,27],[-20,-7],[-19,26],[-2,22],[-5,23],[-16,8],[-18,37],[7,46],[-1,45],[12,21],[21,0],[6,-21],[15,-20],[15,-25],[5,-7],[10,7],[11,21],[12,24],[9,16],[8,29],[-8,23],[-6,23],[-12,45],[18,21],[21,15],[15,-36],[5,-13],[21,-11],[18,24],[-13,45],[16,28],[21,4],[4,14],[-4,17],[-21,25],[-1,3],[-20,18],[-17,27],[-4,9],[-20,36],[-21,-16],[-18,17],[18,6],[21,-6],[8,45],[12,29],[21,1],[21,-23],[9,-7],[12,-6],[20,-6],[10,12],[4,45],[-8,46],[15,42],[2,3],[-1,46],[-1,1],[0,-1],[-21,-25],[-12,-21],[-8,-12],[-15,12],[-6,4],[-21,8],[-21,11],[-20,20],[-1,3],[1,1],[20,28],[5,16],[-5,26],[-5,19],[5,13],[21,20],[16,13],[5,19],[11,26],[-11,13],[-21,29],[-21,-2],[-10,5],[1,46],[9,26],[8,19],[3,45],[-11,8],[-2,-8],[-18,-35],[-6,-10],[-15,-23],[-21,-14],[-7,-8],[6,-46],[-20,-28],[-16,-17],[-4,-41],[-21,21],[-5,20],[-16,45],[-17,-45],[-4,-13],[-10,-32],[-11,-24],[-9,-22],[-3,-45],[-8,-13],[-21,11],[0,2],[-21,30],[-21,10],[-3,5],[3,9],[21,37],[15,45],[6,35],[8,10],[11,46],[-3,45],[5,20],[6,25],[9,46],[5,20],[21,4],[21,12],[3,9],[17,45],[-20,32],[-21,-22],[-21,14],[-20,2],[-21,-19],[-3,-7],[3,-12],[6,-33],[-6,-16],[-21,-9],[-21,-5],[-10,-15],[0,-46],[0,-45],[-10,-33],[-8,-12],[-13,-13],[-9,13],[-3,45],[-6,45],[-3,32],[-1,14],[0,45],[1,27],[1,18],[-1,7],[-12,39],[-9,32],[-2,-32],[-9,-46],[-9,-7],[-6,7],[-15,17],[-10,-17],[10,-20],[7,-25],[-4,-45],[-3,-15],[-17,-31],[17,-29],[5,-16],[0,-45],[0,-46],[-5,-6],[-21,-3],[-5,9],[-16,32],[-20,8],[-5,6],[-16,21],[-12,-21],[11,-46],[1,-6],[6,-39],[-6,-15],[-20,-30],[9,-46],[11,-42],[21,5],[20,-6],[21,14],[12,-16],[-5,-45],[-7,-25],[-5,-21],[5,-16],[21,-10],[21,12],[15,14],[5,5],[18,-5],[3,-7],[3,-38],[-3,-13],[-8,-33],[8,-25],[5,-20],[-5,-34],[-14,34],[-7,10],[-14,35],[-6,10],[-21,18],[-16,-28],[1,-45],[0,-45],[2,-46],[7,-45],[-15,-19],[-6,19],[-10,45],[-5,15],[-5,31],[-4,45],[-11,23],[-18,-23],[-3,-5],[-15,-40],[-6,-23],[-8,-23],[0,-45],[8,-39],[2,-6],[-2,-27],[-21,-14],[-2,-5],[-19,-32],[-10,-13],[-10,-13],[-8,13],[-13,20],[-12,-20],[-7,-45],[-2,-5],[-11,-41],[6,-45],[5,-14],[21,-17],[4,-14],[-4,-20],[-21,-2],[-21,2],[-15,20],[-5,7],[-15,38],[15,33],[6,12],[-6,19],[-6,27],[-12,45],[6,45],[-9,16],[-13,30],[-8,26],[-8,19],[8,17],[15,-17],[6,-7],[14,7],[7,2],[20,-1],[21,8],[20,-9],[1,0],[1,45],[12,46],[-13,8],[-21,9],[-21,13],[-11,15],[-8,45],[19,17],[21,10],[21,-9],[21,7],[17,21],[3,21],[3,24],[-3,10],[-6,36],[-14,17],[-21,-8],[-21,-7],[-21,19],[-6,24],[4,45],[2,8],[21,34],[2,4],[-2,14],[-21,21],[-20,1],[-21,-14],[-9,23],[-1,45],[10,13],[21,18],[17,15],[3,3],[21,26],[10,16],[-10,28],[-6,17],[-7,46],[-8,3],[-3,-3],[-17,-33],[-11,33],[-10,33],[-21,1],[-21,-12],[-16,23],[-4,9],[-18,36],[-1,46],[19,31],[20,-23],[8,-8],[13,-13],[21,3],[13,10],[8,21],[5,24],[-5,5],[-21,3],[-21,30],[-4,7],[-5,46],[9,25],[20,20],[1,1],[21,-1],[20,26],[20,19],[-20,24],[-20,-4],[-11,26],[0,45],[-1,45],[12,46],[20,24],[13,21],[-13,23],[-20,18],[-2,5],[-2,45],[-17,39],[-3,6],[-18,38],[-11,8],[-10,6],[-3,-6],[-3,-46],[6,-26],[10,-19],[-8,-45],[13,-46],[-15,-36],[-4,-9],[-1,-46],[5,-45],[-5,-45],[-15,-32],[-21,16],[-4,16],[-16,45],[-1,3],[-21,8],[-20,21],[-18,-32],[18,-42],[1,-3],[11,-46],[-12,-30],[-21,-7],[-21,8],[-10,-16],[-11,-29],[-20,-3],[-21,15],[-10,-28],[9,-46],[-20,-44],[0,-1],[-20,-45],[-1,-1],[0,1],[-16,45],[-5,20],[-20,-4],[-21,17],[-11,12],[-8,46],[-2,1],[0,-1],[-8,-46],[-13,-26],[-17,-19],[17,-13],[21,-25],[2,-7],[-2,-8],[-21,-34],[-20,6],[-21,16],[-15,-26],[10,-45],[-12,-45],[17,-16],[21,-6],[20,-14],[7,-10],[-7,-22],[-11,-23],[-9,-43],[-3,-2],[-18,-4],[-9,4],[-12,5],[-9,-5],[-12,-10],[-20,-24],[-2,-12],[2,-4],[18,-41],[-18,-34],[-8,-11],[8,-17],[20,-17],[7,-12],[14,-17],[21,11],[8,6],[13,26],[5,-26],[10,-45],[5,-20],[12,-25],[9,-18],[9,-28],[2,-45],[-11,-25],[-10,-21],[-2,-45],[12,-20],[11,-25],[10,-28],[18,-18],[3,-8],[5,-37],[-5,-16],[-6,16],[-15,29],[-21,-13],[-20,-16],[-1,-1],[0,1],[-1,45],[-17,46],[-2,2],[-6,-2],[-15,-10],[-9,10],[9,45],[0,7],[1,38],[-1,4],[-21,22],[-11,-26],[-10,-16],[-20,-24],[-4,-5],[-17,-21],[-18,-24],[11,-46],[-1,-45],[-11,-45],[17,-46],[-5,-45],[-14,-29],[-8,-16],[-6,-46],[14,-30],[15,-15],[6,-24],[2,-21],[-2,-8],[-21,3],[-4,5],[-17,30],[-14,15],[-6,3],[-5,-3],[-16,-22],[-14,-23],[-7,-7],[-10,7],[-11,44],[-21,-1],[-12,2],[-8,8],[-5,37],[5,5],[20,7],[21,2],[18,32],[2,45],[1,11],[2,34],[19,26],[14,20],[7,13],[17,32],[0,45],[-17,26],[-21,-8],[-21,16],[-13,12],[-8,11],[-8,34],[-13,37],[-20,-7],[-21,-15],[-11,-15],[-10,-21],[-11,21],[-10,34],[-7,11],[7,9],[17,37],[4,3],[21,8],[21,-10],[1,-1],[19,-32],[21,18],[21,-32],[18,46],[3,5],[21,29],[20,-2],[5,13],[-1,46],[-4,5],[-20,2],[-21,10],[-21,-10],[-14,38],[14,25],[21,12],[3,8],[-1,46],[-2,27],[-5,18],[-16,15],[-11,-15],[-10,-14],[-21,-16],[-10,30],[-7,45],[-3,8],[-6,-8],[-15,-17],[-21,2],[-21,-27],[-2,-3],[-18,-45],[0,-1],[0,1],[-15,45],[-6,5],[-15,40],[10,46],[5,6],[12,-6],[9,-7],[3,7],[7,45],[10,33],[21,12],[-1,46],[1,1],[21,13],[21,11],[6,20],[14,19],[21,13],[2,13],[19,29],[21,16],[0,1],[9,45],[-9,18],[-11,-18],[-10,-16],[-21,16],[-21,-21],[-13,-24],[-7,-11],[-21,-10],[-21,-18],[-15,39],[1,45],[-3,45],[-4,20],[-5,-20],[-15,-28],[-10,-17],[-9,-45],[-2,-3],[-5,3],[-2,45],[-10,45],[-4,20],[-17,26],[-4,5],[-13,40],[10,45],[-17,22],[-21,-17],[-8,-5],[2,-45],[5,-45],[1,-3],[21,-39],[1,-4],[9,-45],[-10,-39],[-2,-6],[-19,-33],[-21,-4],[-9,-9],[-3,-45],[12,-11],[21,-18],[21,-13],[3,-3],[-3,-3],[-21,-39],[-1,-4],[-20,-35],[-10,-10],[-11,-14],[-9,14],[-11,12],[-21,2],[-13,-14],[13,-33],[2,-12],[0,-46],[-2,-4],[-20,-41],[4,-45],[0,-46],[-5,-4],[-21,-18],[-13,22],[-8,11],[-6,-11],[-14,-25],[-21,-4],[-8,29],[-13,23],[-14,23],[-7,9],[-19,36],[-1,6],[-21,25],[-21,-1],[-21,1],[-12,14],[-8,14],[-8,-14],[8,-39],[1,-6],[-1,-4],[-6,-41],[-9,-46],[-5,-45],[-1,-12],[-7,-33],[-14,-44],[-9,44],[-12,20],[-12,25],[-5,45],[-3,10],[-21,32],[-21,-11],[-21,13],[-1,2],[1,5],[7,40],[4,45],[-4,46],[10,45],[4,10],[21,23],[20,12],[-8,46],[2,45],[7,11],[12,34],[8,22],[21,3],[21,19],[2,2],[-2,2],[-14,43],[14,43],[1,2],[13,46],[-14,27],[-21,-16],[-11,-11],[-10,-27],[-4,-19],[-16,-41],[-21,14],[-7,-18],[-7,-45],[-7,-21],[-21,-5],[-14,-20],[-6,-45],[-1,-2],[-20,-9],[-12,11],[-9,9],[-7,-9],[-8,-45],[-6,-32],[-3,-14],[-18,-24],[-20,-1],[-20,25],[4,46],[16,44],[0,1],[20,45],[-11,46],[-8,45],[17,45],[2,12],[14,34],[7,14],[21,20],[10,11],[11,36],[20,2],[21,4],[7,3],[-7,9],[-21,-4],[-20,1],[-17,40],[-4,38],[-21,-29],[-6,-9],[6,-21],[14,-25],[-14,-8],[-21,-7],[-12,-30],[-8,-14],[-21,-28],[-2,-3],[-19,-22],[-11,-24],[-10,-25],[-11,25],[0,46],[-6,45],[17,20],[13,25],[8,16],[13,30],[3,45],[-16,30],[-18,15],[18,40],[2,6],[19,27],[15,18],[6,6],[15,40],[-10,45],[15,17],[21,2],[21,8],[21,2],[20,12],[4,4],[-4,6],[-20,29],[-4,11],[4,6],[20,29],[5,10],[16,28],[14,17],[-14,17],[-21,-10],[-8,-7],[-12,-15],[-21,1],[-6,14],[6,28],[3,18],[11,45],[0,45],[-14,17],[-10,29],[9,45],[1,8],[2,37],[-2,5],[-20,41],[-1,12],[-1,-12],[0,-46],[-5,-45],[-15,-38],[-3,-7],[3,-22],[5,-24],[3,-45],[-8,-25],[-11,-20],[-9,-21],[-9,-25],[-12,-36],[-12,36],[-9,22],[-21,15],[-5,9],[-12,45],[-3,12],[-13,33],[-8,25],[-21,-24],[-1,-1],[1,-2],[6,-43],[-6,-25],[-21,-15],[-3,-5],[3,-11],[21,-24],[5,-11],[16,-7],[21,-36],[1,-2],[12,-45],[-13,-16],[-21,4],[-20,-34],[20,-38],[3,-7],[-3,-6],[-21,3],[-2,3],[-19,28],[-20,-23],[-3,-5],[-18,-45],[21,-42],[2,-4],[-2,-13],[-21,-16],[-21,17],[-8,12],[-12,46],[-1,4],[-2,-4],[-19,-32],[-20,-9],[-5,-5],[0,-45],[5,-12],[18,-34],[2,-39],[1,-6],[-1,-2],[-5,-43],[5,-14],[21,-11],[17,-21],[4,-8],[21,-35],[1,-2],[-1,-1],[-14,-44],[14,-39],[3,-7],[-2,-45],[-1,-2],[-21,-16],[-21,-14],[-21,1],[-13,-14],[-7,-16],[-21,10],[-21,-2],[-1,8],[1,3],[9,42],[-9,13],[-21,18],[-9,14],[-11,23],[-13,23],[-8,33],[-2,12],[2,7],[21,19],[20,2],[21,17],[0,1],[-21,42],[0,3],[0,2],[21,40],[2,3],[7,45],[-9,16],[-21,3],[-20,16],[-6,11],[-15,19],[-21,-13],[-21,15],[-17,24],[17,12],[21,7],[21,0],[21,-8],[20,19],[6,16],[-6,29],[-3,16],[3,8],[18,37],[-8,46],[11,34],[21,-3],[21,6],[20,-6],[8,14],[-2,45],[-2,46],[-4,6],[-20,0],[-21,7],[-14,32],[-7,10],[-21,5],[-20,22],[-4,8],[3,46],[1,2],[20,31],[21,1],[14,11],[-13,45],[-1,43],[0,3],[10,45],[11,41],[3,4],[2,23]],[[7216,3247],[-6,33],[-8,-35],[-13,-21],[-11,-25],[-10,-33],[-5,-12],[-15,-45],[0,-1],[-21,-20],[-21,-7],[-20,28],[-1,3],[-1,-3],[0,-46],[1,-5],[7,-40],[-1,-45],[-6,-16],[-11,-30],[2,-45],[9,-22],[12,-23],[4,-46],[-16,-8],[-8,8],[-12,25],[-7,21],[-14,34],[-6,11],[5,45],[-4,46],[-16,42],[-6,3],[-6,45],[12,40],[2,6],[-2,10],[-5,35],[-1,45],[6,24],[8,22],[1,45],[-5,45],[-4,6],[-5,-6],[-3,-45],[-13,-30],[-5,-15],[-15,-33],[-6,-13],[-15,-45],[-18,-45],[-3,-23],[-3,-23],[-11,-45],[-7,-13],[-15,-32],[-6,-17],[-6,17],[-14,9],[-16,-9],[-5,-6],[-21,-19],[-14,25],[14,26],[10,19],[11,45],[-9,46],[9,22],[10,23],[3,45],[-13,17],[-11,29],[-4,45],[11,45],[-5,46],[-12,20],[-8,-20],[-13,-20],[-13,20],[-7,7],[-9,-7],[9,-33],[3,-13],[0,-45],[5,-45],[-8,-38],[-3,-8],[-16,-45],[-2,-5],[-21,-34],[-8,39],[6,45],[-15,46],[-4,11],[-16,34],[-4,10],[-11,35],[-10,46],[0,2],[-1,-2],[-7,-46],[0,-45],[7,-45],[-20,-30],[-21,-7],[-4,-9],[4,-17],[6,-28],[-6,-21],[-17,-24],[1,-46],[-4,-10],[-21,-24],[-21,-11],[-21,20],[-12,25],[12,25],[21,1],[21,8],[16,12],[-16,35],[-2,10],[2,9],[5,36],[-5,10],[-21,9],[-21,2],[-15,25],[15,29],[6,16],[15,38],[4,7],[-4,21],[-21,-14],[-3,-7],[-18,-18],[-13,18],[-7,12],[-6,-12],[-15,-24],[-19,-21],[-2,-5],[-1,5],[-15,45],[-5,10],[-5,-10],[-15,-19],[-21,9],[-21,9],[-1,1],[1,3],[18,43],[-11,45],[-7,28],[-11,17],[-10,4],[-20,-1],[-3,-3],[-18,-32],[-6,-13],[-15,-23],[-19,23],[2,45],[7,46],[4,45],[6,13],[21,23],[13,10],[8,7],[20,37],[1,1],[20,29],[10,16],[11,37],[2,9],[19,38],[14,7],[6,11],[12,-11],[9,-4],[3,4],[-3,2],[-16,43],[-1,46],[6,45],[-7,45],[-3,3],[0,-3],[-8,-45],[-12,-31],[-21,-12],[-21,7],[-3,-9],[3,-8],[21,-3],[10,-35],[-10,-14],[-14,-31],[-7,-14],[-12,-31],[-9,-14],[-20,-27],[-2,-5],[-19,-32],[-21,-6],[-7,-7],[-14,-15],[-12,15],[-8,17],[-9,-17],[-12,-23],[-15,-22],[15,-24],[6,-22],[-6,-38],[-2,-7],[-19,-31],[-12,-15],[-9,-24],[-21,-18],[-20,26],[-11,16],[-10,38],[-19,-38],[-2,-3],[-14,-42],[14,-39],[2,-6],[-2,-7],[-21,-20],[-20,3],[-8,24],[0,45],[8,23],[7,22],[-4,46],[-3,7],[-7,-7],[-14,-7],[-9,7],[-3,45],[12,15],[21,7],[20,21],[3,3],[-3,9],[-20,15],[-15,21],[5,45],[10,20],[7,26],[6,45],[7,27],[9,18],[12,24],[21,-7],[8,29],[-8,15],[-21,9],[-18,21],[-1,45],[-2,3],[0,-3],[-1,-45],[-19,-45],[-21,17],[-10,-17],[-11,-29],[-11,-17],[11,-16],[11,-29],[-11,-17],[-21,-14],[-7,-14],[-13,-29],[-6,-17],[6,-35],[1,-10],[-1,-4],[-19,4],[-2,1],[-1,-1],[-20,-8],[-21,-6],[-20,-25],[-21,22],[-21,15],[-1,2],[1,45],[0,2],[18,44],[2,45],[1,2],[21,21],[10,22],[10,39],[2,7],[-2,3],[-20,1],[-21,41],[1,45],[-1,23],[-1,23],[1,6],[12,39],[0,45],[9,28],[14,18],[-1,45],[-13,35],[-7,10],[7,37],[1,9],[-1,4],[-12,41],[-9,31],[-10,14],[10,18],[7,28],[-3,45],[-4,38],[-16,-38],[-5,-10],[-4,-35],[0,-46],[-4,-45],[8,-13],[16,-32],[-1,-46],[-12,-45],[-3,-26],[-2,-19],[-19,-34],[-18,-12],[8,-45],[-11,-45],[-20,-35],[-21,-6],[-8,-5],[8,-31],[6,-14],[15,-17],[16,-28],[3,-46],[-18,-45],[-1,-3],[-21,-26],[-13,-16],[-8,-10],[-21,-16],[-16,26],[-4,8],[-21,4],[-14,33],[14,40],[6,5],[9,46],[-13,45],[3,45],[-4,46],[-1,10],[-7,35],[-14,30],[-11,-30],[-5,-45],[-5,-9],[-20,-23],[-15,-14],[4,-45],[-10,-16],[-21,9],[-1,7],[-12,45],[-8,19],[-11,27],[-9,17],[-17,-17],[2,-46],[-6,-14],[-21,2],[-16,12],[-5,4],[-8,-4],[-13,-42],[0,-3],[-20,-28],[-8,28],[3,45],[-16,17],[-21,12],[-17,17],[17,24],[8,21],[13,18],[18,27],[3,15],[3,31],[-3,36],[-21,-22],[-9,-14],[-12,-15],[-21,6],[-6,9],[-14,14],[-21,-12],[-3,-2],[-18,-29],[-21,-15],[-20,32],[-21,10],[-1,2],[1,1],[21,23],[20,20],[1,1],[12,45],[8,17],[19,29],[-19,36],[-21,-7],[-9,16],[-3,45],[-1,46],[2,45],[-3,46],[-6,12],[-15,33],[-6,12],[-20,33],[-1,4],[-13,-4],[13,-27],[2,-18],[8,-45],[4,-46],[-13,-45],[-1,-3],[-7,-43],[3,-45],[-6,-45],[-11,-44],[-1,-2],[-19,-11],[-5,11],[-2,46],[-4,45],[-10,32],[-19,13],[-2,2],[-1,-2],[1,-7],[4,-38],[-3,-45],[-1,-5],[-15,-41],[-1,-45],[-5,-18],[-4,18],[-17,27],[-9,18],[-10,46],[-1,2],[-21,13],[-4,-15],[-8,-46],[-7,-45],[-2,-7],[-7,7],[-14,6],[-20,27],[-21,-4],[-16,-29],[-1,-45],[-4,-10],[-21,-5],[-8,15],[-12,16],[-21,18],[-3,11],[1,45],[2,7],[15,39],[1,45],[5,25],[4,20],[-4,12],[-18,34],[-3,19],[-4,-19],[-6,-46],[-11,-28],[-21,-12],[-5,-5],[-15,-20],[-21,-10],[-11,-15],[4,-46],[-14,-19],[-21,5],[-16,14],[3,46],[11,45],[-18,29],[-20,16],[5,46],[3,45],[-9,40],[-9,-40],[-12,-22],[-10,-23],[-11,-26],[-11,-20],[-10,-27],[-7,-18],[-13,-23],[-15,23],[7,45],[-13,26],[-7,20],[-13,45],[-1,2],[0,-2],[-21,-40],[-3,-5],[1,-46],[-14,-45],[-4,-31],[-21,-6],[-1,37],[-1,45],[2,27],[2,19],[-1,45],[-1,23],[-21,2],[-19,-25],[2,-45],[-1,-46],[-3,-6],[-14,-39],[-6,-21],[-21,-8],[-15,29],[-6,15],[-21,8],[-10,-23],[-5,-45],[8,-46],[-13,-12],[-21,2],[-12,10],[-9,8],[-6,-8],[-2,-45],[8,-41],[1,-4],[-1,-5],[-21,-2],[-15,7],[1,45],[-7,20],[-15,25],[5,46],[-10,20],[-21,16],[-14,9],[-7,10],[-6,35],[6,16],[21,22],[6,8],[-2,45],[4,46],[1,45],[12,29],[12,16],[8,8],[8,-8],[13,-13],[8,13],[-5,46],[-3,23],[-3,22],[3,15],[6,30],[8,46],[7,28],[7,17],[-7,8],[-21,11],[-14,26],[-7,17],[-14,29],[-6,8],[-5,-8],[5,-46],[0,-13],[0,-32],[13,-45],[-5,-46],[-8,-23],[-21,-18],[-7,-4],[-8,-45],[-6,-25],[-21,12],[-17,-33],[6,-45],[-8,-45],[-1,-2],[-3,2],[-18,12],[-13,33],[-8,23],[-8,22],[1,46],[3,45],[-17,25],[-9,-25],[1,-45],[-12,-45],[-1,-1],[1,-2],[6,-43],[4,-45],[10,-33],[5,-13],[5,-45],[-10,-6],[-4,6],[-8,45],[-8,9],[-21,1],[-21,10],[-21,-1],[-10,27],[-10,20],[-20,-20],[-1,-2],[-2,2],[-9,45],[-10,27],[-4,18],[4,17],[11,29],[10,37],[2,8],[-2,22],[-21,-3],[-12,-19],[-9,-9],[-4,9],[-13,45],[6,46],[11,40],[2,5],[-2,38],[-21,-35],[-20,42],[0,1],[-20,45],[-1,3],[-3,-3],[2,-46],[1,-10],[5,-35],[2,-45],[-7,-22],[-13,-24],[13,-23],[7,-22],[-3,-45],[5,-46],[12,-22],[12,-23],[-12,-14],[-21,-2],[-14,16],[-7,9],[-5,-9],[3,-45],[2,-40],[1,-6],[20,-30],[21,6],[20,-2],[11,-19],[10,-20],[21,7],[21,-19],[8,-14],[13,-21],[20,-16],[1,-8],[20,-31],[19,-14],[2,-2],[4,2],[17,6],[3,-6],[17,-30],[21,-7],[9,-9],[12,-26],[9,-19],[-9,-22],[-21,2],[-14,20],[-7,20],[-20,7],[-16,-27],[-2,-45],[-3,-9],[-12,-37],[11,-45],[1,-24],[1,-21],[20,-28],[20,-2],[21,-4],[21,-2],[6,-10],[-6,-8],[-14,-37],[9,-45],[-15,-46],[-1,-2],[-21,-23],[-20,25],[0,2],[-9,-2],[-12,-3],[-21,-13],[-21,-19],[-11,-10],[-9,-7],[-11,7],[-10,15],[-21,-9],[-21,6],[-10,33],[10,32],[4,14],[17,17],[21,13],[21,5],[20,-11],[21,2],[21,-13],[15,32],[-4,45],[-11,43],[-1,3],[-20,25],[-21,0],[-6,20],[6,37],[3,8],[-3,44],[0,2],[-20,24],[-16,21],[-5,8],[-10,-8],[-7,-45],[14,-46],[-4,-45],[-14,-31],[-15,-14],[-6,-8],[-16,8],[-4,45],[-1,2],[-16,43],[-4,8],[-5,-8],[-11,-45],[-5,-9],[-21,-22],[-21,28],[0,3],[-20,31],[-21,-7],[-21,-16],[-21,32],[-5,5],[5,15],[21,10],[21,10],[21,10],[0,1],[-21,20],[-21,19],[-12,6],[-9,2],[-20,10],[-21,18],[-6,15],[-7,46],[13,9],[21,27],[9,9],[-9,13],[-10,32],[8,46],[2,6],[8,39],[-8,39],[-21,-5],[-21,-4],[-5,-30],[0,-45],[-12,-46],[-4,-6],[-5,6],[-15,31],[-21,5],[-6,10],[-4,45],[-11,20],[-20,26],[-1,2],[-1,-2],[-20,-34],[-5,-12],[5,-12],[12,-33],[-12,-20],[-20,20],[-21,23],[-17,22],[-4,5],[-21,13],[-18,-18],[18,-43],[1,-2],[19,-46],[1,-4],[21,-16],[19,-25],[2,-6],[20,-28],[8,-11],[2,-46],[11,-34],[13,-11],[8,-45],[-10,-46],[9,-45],[-11,-45],[-9,-26],[-21,-14],[-8,-6],[-12,-13],[-6,13],[-6,46],[1,45],[11,8],[17,37],[-17,24],[-11,22],[-10,13],[-21,-12],[-21,10],[-20,-10],[-1,-1],[1,-2],[15,-44],[-15,-39],[-21,1],[-7,-7],[-14,-38],[-8,38],[-6,45],[0,46],[11,45],[-7,45],[-11,10],[-10,-10],[-7,-45],[-3,-7],[-21,-29],[-7,-9],[-4,-46],[-10,-20],[-21,2],[-20,-6],[-17,24],[17,23],[5,23],[-1,45],[-4,8],[-21,13],[-21,10],[-21,-17],[-8,31],[8,32],[6,14],[15,16],[21,15],[21,-1],[20,5],[4,10],[-1,45],[-3,15],[-6,31],[-14,8],[-17,-8],[-4,-4],[-21,-4],[-5,8],[5,19],[6,26],[-3,46],[-3,6],[-21,3],[-16,36],[-5,15],[-8,-15],[8,-45],[-1,-46],[-16,-45],[-3,-20],[-21,7],[-8,13],[-13,33],[-21,-27],[-2,-6],[2,-9],[12,-37],[-4,-45],[-8,-27],[-20,27],[-21,-15],[-14,15],[-2,45],[-5,13],[-14,33],[-7,13],[-20,-6],[-21,24],[-3,14],[-18,23],[-21,14],[-20,-30],[-21,14],[-5,25],[4,45],[-17,45],[-3,45],[0,1],[21,24],[12,-24],[9,-8],[20,-5],[15,13],[-15,18],[-20,-4],[-14,31],[-7,28],[-21,9],[-2,8],[2,17],[5,29],[16,38],[13,7],[-13,21],[-20,24],[-1,1],[0,-1],[-21,-32],[-13,-13],[-8,-11],[-20,-12],[-9,-22],[7,-46],[-12,-45],[5,-45],[-12,-41],[-17,-5],[0,-45],[-4,-6],[-3,6],[3,45],[-4,46],[4,33],[2,12],[-2,2],[-21,16],[-17,27],[-3,5],[-5,-5],[5,-24],[4,-21],[4,-45],[-7,-46],[-1,-1],[-1,1],[-6,46],[4,45],[-18,27],[-11,18],[-9,46],[-1,1],[-21,9],[-5,35],[5,15],[21,1],[21,-1],[17,-15],[4,-10],[9,10],[11,5],[21,13],[20,27],[1,15],[21,9],[18,22],[2,45],[21,13],[10,32],[-10,23],[-21,10],[-18,13],[-2,2],[-21,27],[-11,16],[-1,45],[12,7],[5,-7],[16,-22],[20,-15],[12,-8],[9,-13],[21,-11],[14,-21],[7,-21],[12,-25],[9,-25],[8,25],[12,15],[10,-15],[11,-38],[2,-7],[0,-45],[19,-38],[3,-8],[18,-27],[9,-18],[11,-17],[19,-28],[2,-4],[5,4],[-5,4],[-14,41],[14,38],[21,-1],[21,8],[0,1],[-21,11],[-18,34],[-3,4],[-21,20],[-16,21],[-3,45],[3,46],[-4,45],[16,45],[-16,43],[-21,-26],[-21,-3],[-19,-14],[-2,-1],[-3,1],[-17,7],[-19,39],[4,45],[-6,24],[-9,-24],[-12,-19],[-21,-11],[-18,30],[-3,5],[-20,40],[2,46],[-2,2],[-5,-2],[-16,-11],[-21,-13],[-12,24],[-9,22],[-20,-1],[-21,-14],[-1,-7],[-20,-35],[-16,35],[-5,11],[-7,-11],[-13,-35],[-2,-11],[-19,-32],[-21,18],[-10,14],[-6,46],[13,45],[3,8],[21,23],[21,-19],[20,9],[21,-7],[21,4],[7,27],[-7,13],[-18,33],[7,45],[-8,46],[-2,27],[-1,18],[1,3],[21,25],[19,-28],[2,-2],[20,-7],[21,-14],[21,23],[-21,19],[-19,26],[-2,7],[-5,39],[5,12],[21,3],[12,-15],[9,-17],[10,17],[11,26],[5,19],[15,33],[17,12],[2,46],[-13,45],[3,45],[0,46],[-9,38],[-12,-38],[-3,-46],[-5,-14],[-5,-31],[0,-45],[-16,-36],[-21,7],[-19,29],[-2,13],[-20,9],[-3,-22],[-1,-46],[-8,-45],[-9,-14],[-12,14],[-9,10],[-21,-1],[-6,-9],[6,-27],[4,-18],[-4,-7],[-20,-10],[-18,-29],[-3,-20],[-10,-25],[-11,-9],[-8,9],[-13,25],[-5,20],[-6,46],[-3,45],[6,45],[-12,20],[-10,26],[8,45],[2,7],[20,29],[5,9],[-4,46],[-1,2],[0,-2],[-20,-40],[-21,11],[-21,16],[-4,13],[0,45],[-17,16],[-21,-8],[-1,-8],[1,-7],[7,-38],[-7,-32],[-3,-14],[3,-7],[21,-8],[21,-9],[8,-21],[-3,-45],[1,-46],[-6,-37],[-8,-8],[8,-23],[2,-22],[10,-46],[-12,-28],[-16,28],[-5,14],[-21,3],[-12,-17],[-8,-26],[-4,-19],[3,-45],[1,-3],[20,-11],[21,-19],[14,-13],[-14,-25],[-14,-20],[-7,-20],[-20,-12],[-19,32],[-2,4],[-21,-1],[-10,42],[-2,46],[9,45],[-1,45],[-4,46],[8,29],[7,16],[-4,45],[0,46],[-3,5],[-21,16],[-17,24],[-3,4],[-5,-4],[5,-13],[7,-32],[4,-46],[-4,-45],[-7,-26],[-13,-19],[-5,-46],[-3,-4],[-2,4],[-3,46],[-14,45],[-2,3],[-1,-3],[-20,-38],[-20,6],[-6,-13],[1,-46],[5,-17],[20,-20],[3,-8],[-3,-7],[-18,-38],[-2,-5],[-5,5],[-16,28],[-21,11],[-2,6],[-4,45],[0,46],[-15,37],[-4,8],[4,27],[2,18],[-2,15],[-20,3],[-6,-18],[-5,-45],[-2,-45],[1,-46],[-9,-44],[-21,6],[-21,36],[-1,2],[-1,46],[-2,45],[-1,45],[-1,46],[-15,17],[-18,-17],[-2,-29],[-1,-17],[1,-5],[4,-40],[-4,-24],[-6,-21],[-15,-21],[-21,-24],[0,-1],[21,-38],[3,-7],[5,-45],[13,-17],[16,-29],[4,-27],[9,-18],[-9,-4],[-20,-7],[-21,10],[-21,-32],[-2,-13],[2,-5],[14,-40],[-14,-16],[-21,1],[-20,15],[0,5],[-15,40],[15,22],[5,24],[15,19],[14,26],[-14,28],[-7,18],[-13,37],[-4,8],[4,33],[1,12],[-1,15],[-18,31],[-3,2],[-10,43],[-11,23],[-14,22],[14,28],[21,14],[9,4],[12,7],[20,35],[2,3],[-2,38],[-20,-10],[-21,3],[-6,14],[-11,46],[-4,3],[-18,42],[-3,2],[-20,3],[-21,8],[-17,-13],[17,-37],[1,-8],[7,-46],[-8,-25],[-10,25],[-11,21],[-21,-4],[-17,-17],[-3,-11],[-21,9],[-1,2],[1,5],[10,41],[11,31],[4,14],[-4,29],[-5,16],[-16,11],[-21,3],[-21,27],[-4,5],[-12,45],[-5,14],[-9,-14],[-11,-11],[-21,-6],[-21,9],[-21,-7],[-7,15],[-10,45],[-3,6],[-21,3],[-21,10],[-15,-19],[-6,-16],[-4,16],[-16,43],[-2,3],[2,1],[20,23],[15,21],[6,14],[9,31],[8,46],[4,9],[21,3],[2,-12],[-2,-14],[-6,-32],[6,-15],[20,12],[1,3],[20,25],[21,14],[15,-39],[6,-16],[20,-1],[6,17],[15,13],[21,-1],[21,2],[21,7],[16,-21],[4,-36],[21,31],[2,5],[19,42],[2,4],[-2,5],[-21,32],[-2,8],[-19,40],[-20,-29],[-21,-3],[-21,36],[-21,-31],[-13,32],[-8,11],[-20,0],[-21,2],[-12,33],[12,17],[17,28],[4,14],[20,31],[1,1],[-1,0],[-20,14],[-18,31],[18,15],[20,17],[16,13],[5,8],[13,38],[8,17],[21,3],[17,-20],[4,-3],[1,3],[-1,7],[-11,38],[11,27],[16,18],[4,4],[21,38],[21,-8],[10,12],[-2,45],[13,21],[15,24],[5,11],[21,0],[7,35],[4,45],[-11,10],[-3,-10],[-18,-21],[-20,11],[-16,10],[-5,3],[-21,42],[0,1],[-21,2],[-10,43],[0,45],[-8,45],[-2,21],[-3,25],[-5,45],[8,37],[2,8],[18,27],[21,15],[21,2],[2,2],[19,30],[20,5],[21,1],[21,1],[21,-2],[20,8],[4,2],[-4,7],[-20,17],[-7,22],[-14,26],[-21,9],[-21,9],[0,1],[0,2],[7,43],[-7,23],[-5,23],[-6,45],[-8,45],[19,41],[21,-6],[21,-8],[21,-22],[20,-4],[21,23],[21,2],[21,7],[19,-33],[1,0],[2,0],[-2,7],[-8,39],[-12,5],[-21,10],[-21,3],[-18,27],[13,45],[5,11],[12,-11],[9,-5],[21,2],[2,3],[18,36],[6,10],[15,24],[10,21],[-10,41],[-21,-24],[-20,5],[-16,-22],[-5,-7],[-15,7],[-6,3],[-2,-3],[-19,-23],[-20,23],[0,1],[-21,11],[-10,-12],[10,-15],[11,-30],[4,-46],[-13,-45],[-2,-8],[-21,-4],[-19,12],[-2,0],[-20,10],[-21,20],[-7,15],[-14,29],[-9,-29],[-3,-45],[-9,-33],[-20,7],[-17,26],[-4,13],[-11,32],[-4,46],[-2,45],[-4,15],[-3,-15],[-13,-45],[-5,-10],[-9,-36],[9,-12],[20,-33],[-9,-45],[10,-26],[21,-1],[10,-19],[11,-34],[20,14],[21,-18],[7,-7],[14,-28],[4,-17],[-4,-14],[-16,-32],[-5,-9],[-21,-27],[-6,-9],[6,-28],[3,-17],[-3,-4],[-20,-5],[-11,9],[-10,9],[-21,21],[-11,-30],[-10,-8],[-21,-2],[-20,9],[0,1],[-21,3],[-18,-3],[9,-46],[-12,-44],[0,-1],[0,-6],[21,2],[4,4],[17,14],[14,-14],[6,-6],[21,-18],[6,-22],[-6,-35],[-3,-10],[3,-5],[13,-40],[8,-42],[1,-4],[-1,-3],[-16,-42],[16,-24],[7,-21],[-7,-30],[-5,-16],[5,-29],[9,-16],[12,-12],[14,-33],[0,-46],[-7,-45],[-7,-12],[-21,-18],[-9,-15],[-12,-31],[-11,-15],[-10,-11],[-20,-29],[-21,17],[-21,21],[-1,2],[-20,45],[-12,-45],[5,-45],[4,-45],[3,-36],[2,-10],[-2,-4],[-8,-41],[-4,-45],[-8,-21],[-13,21],[-8,19],[-10,26],[-10,45],[-1,13],[-21,14],[-1,-27],[-15,-45],[16,-31],[3,-14],[-3,-10],[-14,-36],[14,-34],[4,-11],[-4,-15],[-20,8],[-18,-39],[-3,-6],[-21,6],[-5,46],[-16,5],[-6,-5],[-14,-21],[-21,20],[-18,-45],[-3,-11],[-21,7],[-21,-5],[-20,-7],[-18,16],[18,16],[20,-10],[21,7],[8,33],[13,39],[21,-37],[13,43],[2,46],[6,38],[1,7],[-1,6],[-7,39],[-5,46],[-9,14],[-10,-14],[-11,-26],[-21,-8],[-21,-7],[-20,0],[-4,-5],[-11,-45],[-6,-10],[-5,10],[-16,22],[-12,23],[12,32],[14,14],[0,45],[-14,23],[-9,22],[9,32],[21,-17],[21,3],[8,28],[-8,19],[-10,26],[-11,43],[-1,2],[1,2],[21,16],[20,-13],[21,19],[21,20],[0,2],[-21,35],[-5,10],[-15,45],[20,31],[21,0],[7,15],[14,35],[21,1],[20,5],[2,4],[-2,5],[-9,40],[9,27],[8,19],[13,26],[21,12],[5,7],[15,45],[-20,15],[-21,26],[-21,-12],[-18,17],[-1,45],[19,44],[2,2],[-2,3],[-20,42],[0,1],[-1,-1],[-15,-45],[-5,-23],[-8,-23],[-13,-14],[-15,-31],[15,-36],[4,-10],[-1,-45],[-3,-2],[-7,2],[-14,29],[-2,-29],[-19,-24],[-18,-21],[18,-43],[1,-3],[-1,-1],[-1,1],[-19,39],[-20,-39],[-1,-1],[-21,-8],[-21,-32],[-20,37],[-4,4],[-17,11],[-9,-11],[9,-26],[5,-19],[5,-45],[-10,-44],[-1,-2],[-20,-18],[-11,18],[-10,43],[-20,2],[-21,-16],[-21,-21],[-6,-8],[6,-13],[21,-29],[1,-3],[-1,-3],[-21,-22],[-21,-6],[-14,-14],[3,-46],[-9,-6],[-20,-39],[-1,-39],[-21,10],[-21,28],[0,1],[0,3],[3,42],[-3,35],[-4,11],[-16,8],[-6,-8],[-15,-33],[-21,2],[-17,31],[-4,6],[-4,-6],[-17,-24],[-20,-17],[-8,-5],[-13,-11],[-10,11],[-11,7],[-21,-3],[-10,42],[10,34],[19,11],[2,1],[1,-1],[20,-16],[21,2],[11,14],[-11,26],[-5,19],[5,12],[20,21],[17,13],[-17,15],[-20,18],[-21,-10],[-21,-11],[-21,12],[-20,-2],[-21,-13],[-14,36],[12,45],[2,6],[4,-6],[17,-26],[15,26],[-2,46],[7,12],[21,-12],[21,3],[21,21],[20,-7],[21,-12],[21,14],[18,26],[-5,45],[8,9],[21,1],[0,-10],[14,-45],[6,-11],[21,-18],[6,-16],[15,-20],[21,-1],[20,13],[21,-8],[21,7],[9,9],[-9,12],[-21,21],[-5,12],[-16,18],[-18,27],[-2,4],[-19,42],[19,34],[20,-1],[14,12],[7,19],[10,27],[11,21],[21,-5],[20,3],[7,26],[14,24],[7,21],[-7,11],[-21,20],[-5,15],[5,18],[21,16],[8,11],[13,28],[21,2],[20,-1],[21,3],[21,10],[2,3],[-2,3],[-21,10],[-21,32],[0,1],[0,4],[2,41],[2,45],[7,46],[-11,28],[-13,-28],[-7,-32],[-2,-14],[-8,-45],[-11,-35],[-21,1],[-21,32],[-5,-43],[-15,-39],[-11,39],[-7,45],[-1,45],[-2,11],[-8,-11],[0,-45],[-10,-45],[2,-46],[6,-45],[-11,-22],[-21,4],[-10,18],[-10,45],[0,1],[-21,20],[-12,-21],[12,-27],[7,-18],[6,-45],[5,-46],[-18,-15],[-21,-9],[-21,-21],[-20,-23],[-5,23],[-16,30],[-21,-30],[0,-1],[0,1],[-13,45],[-8,11],[-21,6],[-14,-17],[-2,-45],[-1,-45],[-3,-5],[-21,-32],[-10,37],[-11,34],[-10,11],[-11,8],[-5,-8],[-7,-45],[-6,-46],[-2,-3],[-6,3],[-15,7],[-21,25],[-2,14],[2,7],[10,38],[-10,21],[-10,24],[-8,46],[-1,45],[19,41],[6,4],[15,23],[4,23],[-4,29],[-21,-3],[-12,-26],[-9,-14],[-20,-10],[-18,24],[-3,9],[-14,36],[-3,45],[-4,13],[-21,13],[-20,-4],[-21,23],[-2,1],[-19,8],[-17,-8],[17,-46],[0,-1],[21,-42],[0,-2],[0,-12],[-3,-33],[-6,-46],[4,-45],[5,-30],[21,-15],[20,-37],[2,-9],[5,-45],[-7,-8],[-20,-4],[-3,12],[-18,16],[-12,-16],[-8,-45],[-1,-2],[-1,2],[-20,19],[-21,-5],[-14,-14],[14,-39],[3,-7],[18,-15],[16,-30],[5,-28],[5,-18],[16,-32],[5,-13],[3,-45],[-2,-46],[-6,-11],[-5,11],[0,46],[-16,41],[-21,-18],[-17,22],[-4,10],[-19,35],[-1,3],[-21,18],[-21,10],[-20,-31],[-1,-1],[-1,1],[-19,17],[-20,29],[-1,7],[-21,26],[-10,12],[10,11],[21,-7],[20,42],[1,1],[18,44],[-18,17],[-21,11],[-9,17],[4,46],[5,15],[21,-1],[20,-14],[1,0],[20,-15],[21,-6],[21,-25],[20,42],[2,4],[-2,44],[0,1],[15,45],[6,23],[5,23],[-5,14],[-21,10],[-15,21],[-5,13],[-20,32],[20,16],[14,-16],[6,-12],[4,12],[16,46],[-3,45],[-17,23],[-20,19],[-3,3],[3,4],[20,42],[0,1],[5,-1],[16,-5],[15,5],[6,1],[7,-1],[14,-5],[1,5],[20,36],[20,-10],[11,19],[-7,45],[-4,6],[-16,40],[16,40],[2,5],[19,35],[9,10],[-9,22],[-21,-2],[-13,-20],[-7,-13],[-17,13],[-4,6],[-6,-6],[2,-45],[-4,-45],[-13,-19],[-21,1],[-21,2],[-20,-6],[-13,-24],[-8,-14],[-21,10],[0,4],[0,7],[9,39],[-9,5],[-21,12],[-20,21],[-4,7],[4,22],[2,23],[1,46],[-3,8],[-3,-8],[-18,-34],[-9,-12],[-12,-29],[-5,-16],[5,-10],[21,-35],[-21,-43],[-21,10],[-20,-3],[-21,5],[-5,-15],[5,-21],[4,-24],[-4,-15],[-21,1],[-14,14],[-7,12],[-20,20],[-21,-32],[-1,0],[-20,14],[-8,31],[-13,40],[-10,6],[10,4],[21,2],[5,-6],[16,-23],[21,19],[20,-13],[8,17],[-8,32],[-2,13],[-18,40],[-6,5],[6,11],[14,35],[6,9],[21,-6],[2,-3],[19,-42],[21,17],[20,18],[1,7],[-1,2],[-20,14],[-13,29],[13,32],[20,7],[4,6],[-4,5],[-20,9],[-21,31],[0,1],[0,1],[20,44],[1,0],[20,26],[7,20],[-7,23],[-20,20],[-1,2],[1,37],[0,8],[20,41],[21,-1],[21,-18],[21,-4],[20,10],[14,18],[4,45],[3,6],[15,39],[-8,9]],[[8996,515],[20,-7],[21,12],[3,4],[-3,5],[-21,3],[-20,3],[-7,-11],[7,-9]],[[9515,516],[1,8],[-1,2],[-3,-2],[3,-8]],[[9369,510],[-20,-3],[-7,17],[7,6],[20,21],[4,-27],[-4,-14]],[[9909,521],[-1,3],[1,5],[1,-5],[-1,-3]],[[8144,465],[-20,-9],[-13,22],[13,43],[20,-22],[10,-21],[-10,-13]],[[9909,409],[1,24],[-1,2],[-5,-2],[5,-24]],[[9826,345],[-15,43],[15,8],[13,-8],[-13,-43]],[[7667,341],[-4,1],[4,2],[1,-2],[-1,-1]],[[9805,326],[-12,16],[12,40],[21,-40],[-21,-16]],[[8331,285],[-5,12],[5,10],[13,-10],[-13,-12]],[[9785,291],[-21,5],[-1,1],[1,1],[21,12],[3,-13],[-3,-6]],[[9254,297],[12,9],[13,-9],[-13,-17],[-12,17]],[[9889,199],[-21,-5],[-9,12],[5,46],[0,45],[4,27],[3,-27],[4,-45],[14,-30],[7,-16],[-7,-7]],[[9947,365],[-8,-23],[-9,-37],[-12,37],[-9,40],[-1,6],[-19,39],[-21,-18],[-11,24],[6,45],[5,22],[4,24],[-4,13],[-21,0],[-21,26],[-6,-39],[-9,-46],[-6,-5],[-20,-5],[-21,10],[-21,33],[-6,13],[6,11],[21,31],[1,3],[-1,2],[-21,32],[-4,12],[4,32],[2,13],[-2,22],[-4,23],[-17,20],[-14,-20],[-5,-45],[-1,-6],[-9,-39],[-12,-25],[-21,-17],[-10,42],[-9,45],[-2,5],[-5,-5],[-7,-45],[-8,-32],[-6,-14],[-6,-45],[-9,-36],[-8,-10],[8,-39],[0,-6],[0,-1],[-21,-10],[-2,11],[-7,45],[-10,46],[4,45],[-6,35],[-2,11],[-18,37],[-14,-37],[-7,-17],[-21,-8],[-14,25],[-7,16],[-21,27],[-17,-43],[-3,-21],[-3,-25],[-18,-32],[-7,-13],[-9,-46],[16,-44],[0,-1],[0,-2],[-21,-43],[5,-46],[16,-34],[5,-11],[-5,-19],[-21,11],[-21,-23],[-20,10],[-21,-3],[-21,2],[-21,-23],[-20,-40],[-7,-6],[-14,-17],[-13,17],[-8,6],[-21,24],[-10,16],[-6,45],[-4,6],[-5,-6],[-16,-15],[-21,2],[-21,-21],[-8,-11],[-13,-34],[-12,34],[-8,17],[-21,26],[-21,-24],[-21,-12],[-15,-7],[-5,-2],[-21,-14],[-21,14],[-2,2],[2,1],[21,4],[18,40],[-5,45],[8,23],[11,-23],[9,-11],[20,11],[1,1],[21,27],[15,-28],[6,-12],[20,-15],[21,15],[6,12],[15,26],[13,20],[8,16],[15,-16],[6,-8],[13,8],[7,5],[3,-5],[18,-28],[21,-4],[21,-3],[20,-5],[21,1],[21,-1],[21,18],[11,22],[-10,45],[-1,1],[-8,-1],[-13,-2],[-8,2],[-13,13],[-4,32],[-8,46],[-9,5],[-20,4],[-10,36],[9,46],[1,0],[20,-6],[21,-15],[21,-4],[11,25],[8,45],[2,24],[1,21],[-1,23],[-3,23],[3,15],[5,30],[15,21],[15,-21],[6,-8],[17,-37],[4,-12],[10,12],[11,9],[20,3],[10,33],[-10,23],[-20,10],[-5,12],[-7,46],[12,17],[20,7],[6,21],[-2,45],[17,32],[21,-6],[21,1],[21,-14],[11,-13],[9,-19],[8,19],[0,46],[-8,22],[-10,23],[-10,23],[-5,22],[5,10],[20,9],[21,11],[21,-7],[21,10],[20,-8],[6,21],[-6,16],[-20,11],[-21,10],[-21,1],[-21,-5],[-20,-2],[-21,-3],[-21,-7],[-4,24],[4,7],[21,18],[8,20],[4,46],[-12,19],[-21,14],[-21,2],[-6,10],[6,11],[21,-3],[21,12],[21,3],[20,17],[21,-39],[21,5],[21,26],[5,13],[15,26],[21,2],[21,4],[12,14],[-12,5],[-21,13],[-21,8],[-20,8],[-15,11],[-4,46],[18,45],[-16,45],[17,27],[7,19],[-7,15],[-21,30],[0,1],[0,-1],[-21,-12],[-15,-33],[1,-46],[-1,-45],[-6,-17],[-9,-28],[-11,-40],[-3,-6],[-18,-21],[-21,6],[-5,15],[-1,46],[-15,45],[-20,-45],[-1,-1],[-1,1],[-19,0],[-1,0],[-20,-18],[-14,18],[-7,45],[-2,0],[-19,-4],[-2,4],[-18,33],[-12,12],[12,33],[3,13],[17,37],[10,8],[10,45],[1,3],[19,43],[0,45],[2,10],[7,35],[-7,25],[-21,6],[-13,-31],[-2,-45],[-6,-27],[-4,-18],[-16,-22],[-21,-23],[-21,17],[-8,28],[0,45],[-6,45],[-5,46],[0,45],[-2,3],[-4,-3],[-14,-45],[-2,-46],[4,-45],[-4,-45],[5,-46],[-5,-17],[-21,-21],[-13,-7],[-8,-7],[-5,7],[-16,24],[-15,-24],[-5,-21],[-8,-24],[8,-20],[20,-22],[21,8],[21,-4],[15,-8],[-3,-45],[-3,-45],[12,-15],[15,15],[5,4],[4,-4],[17,-14],[21,-16],[9,-16],[-2,-45],[-7,-21],[-7,-25],[7,-24],[5,-21],[9,-45],[7,-11],[20,-2],[13,-33],[-10,-45],[-3,-12],[-20,-3],[-21,-12],[-9,27],[-12,36],[-3,9],[-18,42],[-2,4],[-18,44],[-15,-44],[2,-46],[7,-45],[-1,-45],[2,-46],[5,-21],[8,-24],[-8,-15],[-21,1],[-14,14],[-7,17],[-7,28],[-11,46],[-3,8],[-13,37],[-7,28],[-21,-15],[-4,-13],[4,-22],[4,-23],[-2,-46],[3,-45],[16,-41],[0,-4],[0,-27],[-2,27],[-19,38],[-7,7],[-14,6],[-21,-1],[-2,-5],[-1,-45],[0,-46],[-18,-7],[-6,7],[-14,26],[-21,-16],[-3,-10],[3,-5],[12,-40],[9,-33],[10,-12],[10,-17],[12,-29],[-12,-37],[-1,-8],[-19,-38],[-13,38],[-8,14],[-21,4],[-7,-18],[-7,-45],[-5,-46],[-2,-11],[-1,11],[-17,46],[-2,1],[-7,-1],[-14,-4],[-21,-21],[-21,18],[-10,-39],[-10,-23],[-21,-22],[-21,-29],[-11,29],[11,16],[12,29],[8,46],[-20,34],[-21,6],[-14,5],[-6,15],[-8,30],[8,4],[20,1],[4,-5],[17,-27],[21,26],[21,-15],[15,16],[5,9],[21,-6],[19,43],[-19,34],[-5,11],[5,14],[21,21],[4,10],[-4,23],[-5,23],[-13,45],[1,45],[-4,9],[-16,37],[-5,9],[-14,36],[-6,26],[-7,19],[7,12],[20,32],[21,-16],[21,-28],[2,0],[19,7],[13,39],[-13,15],[-21,29],[-1,1],[-8,45],[9,18],[21,20],[8,8],[12,17],[21,11],[21,9],[6,8],[-6,4],[-21,7],[-21,9],[-20,4],[-19,22],[14,45],[1,45],[-17,19],[-11,-19],[-10,-11],[-21,5],[-3,6],[3,20],[4,26],[10,45],[-14,40],[-3,5],[3,4],[21,22],[21,18],[2,2],[19,29],[14,16],[-14,13],[-21,5],[-14,27],[2,46],[-9,7],[-14,-7],[-7,-6],[-20,-12],[-9,18],[-8,45],[-4,8],[-13,-8],[-8,-5],[-7,5],[-14,12],[-7,-12],[-13,-26],[-8,-19],[-6,-46],[-4,-45],[-3,-4],[-2,4],[-19,18],[-21,-6],[-14,-12],[-6,-8],[-10,8],[-5,45],[9,46],[6,9],[20,11],[21,-19],[8,44],[-8,36],[-1,9],[1,5],[21,14],[21,18],[3,9],[6,45],[11,26],[21,6],[10,-32],[11,-10],[6,10],[15,26],[16,19],[3,46],[1,3],[14,42],[7,16],[21,19],[11,10],[-11,39],[-2,7],[-6,45],[-2,45],[-11,39],[-5,-39],[-2,-45],[-2,-45],[-12,-29],[-8,-17],[-12,-30],[-21,8],[-10,22],[-9,46],[-2,5],[-4,-5],[-6,-46],[-9,-45],[-2,-2],[-20,-18],[-21,-25],[0,-2],[-21,-23],[-21,-11],[-11,-10],[-7,-45],[-2,-2],[-21,-31],[-5,-12],[-16,-22],[-18,-24],[-3,-5],[-15,-40],[-6,-9],[-10,9],[-7,45],[5,46],[-8,21],[-16,24],[-5,4],[-6,-4],[4,-45],[-12,-46],[-7,-19],[-21,-8],[-20,-3],[-7,-15],[7,-27],[9,-18],[11,-8],[21,-22],[21,-11],[4,-5],[-4,-5],[-19,-40],[-2,-3],[-21,-31],[-3,-11],[-17,-38],[-21,1],[-21,-7],[-4,-2],[4,-3],[9,-42],[12,-34],[21,13],[20,-4],[21,-4],[2,-16],[-2,-6],[-20,-40],[16,-45],[4,-8],[7,8],[14,14],[21,-7],[1,-7],[0,-45],[-1,-5],[-10,-41],[10,-36],[2,-9],[-2,-17],[-13,-29],[-7,-45],[20,-26],[10,-19],[6,-46],[4,-13],[21,6],[17,-38],[-6,-45],[-9,-46],[-2,-11],[-1,11],[-20,43],[-19,-43],[-1,-4],[-21,-19],[-12,23],[-9,39],[-21,-37],[-20,41],[-1,3],[-6,45],[-14,12],[-21,24],[-5,9],[-11,46],[-5,16],[-18,-16],[4,-46],[-2,-45],[16,-44],[1,-1],[7,-46],[-8,-17],[-16,-28],[-4,-8],[-16,-37],[16,-37],[20,14],[21,2],[21,-17],[3,-8],[-3,-5],[-21,-28],[-11,-12],[-10,-18],[-11,-27],[11,-16],[21,-9],[21,-14],[5,-7],[16,-30],[5,-15],[15,-40],[2,-5],[19,-41],[21,-1],[21,19],[15,-23],[-15,-14],[-21,11],[-21,-10],[-8,-32],[-13,-20],[-20,-4],[-21,-7],[-21,1],[-12,-15],[-9,-45],[-7,45],[-7,45],[-6,22],[-15,-22],[-6,-4],[-6,4],[-15,10],[-14,-10],[-7,-6],[-4,6],[-1,45],[5,13],[21,32],[0,1],[12,45],[-12,25],[-10,20],[-11,14],[-20,17],[-17,-31],[-4,-3],[-21,-5],[-21,-31],[-21,12],[-8,27],[-12,38],[-21,0],[-21,3],[-5,5],[5,8],[11,37],[-11,33],[-4,12],[4,18],[21,12],[19,16],[2,1],[20,0],[19,44],[-2,45],[4,9],[21,31],[5,6],[16,40],[3,5],[-3,4],[-21,21],[-21,-8],[-21,2],[-7,26],[3,46],[-16,9],[-21,-3],[-3,-6],[-12,-46],[15,-12],[8,-33],[-8,-22],[-21,19],[0,3],[-5,45],[-16,8],[-13,38],[-7,20],[-21,-18],[-1,-2],[-5,-46],[-15,-27],[-7,27],[-14,30],[-19,16],[19,21],[12,24],[9,10],[21,29],[2,6],[19,35],[6,11],[14,45],[1,0],[20,-1],[8,1],[13,5],[21,5],[4,-10],[16,-13],[21,3],[21,-4],[7,14],[-7,6],[-21,9],[-21,15],[-7,16],[-11,45],[18,8],[21,29],[5,8],[-5,13],[-21,2],[-20,3],[-19,28],[-2,11],[-21,19],[-6,-30],[-15,-30],[-7,-16],[-13,-25],[-21,-11],[-21,-6],[-16,42],[16,29],[15,17],[-13,45],[-2,6],[-16,39],[9,46],[7,23],[21,18],[4,4],[8,45],[9,20],[20,16],[4,10],[17,36],[21,7],[2,2],[-2,14],[-21,-3],[-21,-1],[-10,-10],[-10,-18],[-9,18],[-1,45],[-11,12],[-11,-12],[-10,-16],[-18,16],[2,46],[-5,16],[-3,-16],[-17,-41],[-3,-5],[3,-19],[4,-26],[16,-21],[13,-24],[-13,-30],[-20,-16],[0,-1],[-13,-44],[-8,-34],[-4,-11],[-11,-46],[-6,-8],[-6,8],[-15,25],[-20,-25],[0,-1],[-18,-44],[6,-45],[12,-18],[20,-18],[21,-5],[5,-5],[-5,-23],[-7,-22],[-14,-10],[-20,6],[-21,-12],[-21,0],[-21,-21],[-21,22],[-20,-19],[-13,-11],[-6,-46],[9,-45],[10,-40],[2,-6],[-2,-4],[-21,-15],[-21,-24],[-2,-2],[2,-4],[8,-41],[-8,-24],[-10,24],[-11,21],[-10,24],[-10,27],[-8,18],[8,25],[7,21],[13,28],[14,17],[-3,46],[-11,44],[-1,1],[-12,45],[-7,8],[-13,38],[-8,24],[-19,21],[-2,1],[-1,-1],[-20,-37],[-2,-8],[-5,-46],[-13,-35],[-3,-10],[3,-18],[6,-27],[5,-46],[-6,-45],[-5,-8],[-21,-22],[-11,-16],[-10,-20],[-21,14],[-20,6],[0,1],[-1,-1],[-20,-4],[-13,4],[-8,7],[-21,37],[-1,2],[0,45],[1,1],[21,5],[11,-6],[10,-4],[7,4],[2,46],[-6,45],[-3,16],[-21,11],[-21,16],[-4,2],[-17,10],[-11,36],[9,45],[2,8],[10,37],[-1,46],[0,45],[4,45],[8,21],[16,25],[5,16],[9,29],[-9,13],[-21,-12],[0,-1],[-21,-34],[-20,-10],[-4,-1],[-12,-46],[-5,-26],[-12,-19],[-9,-6],[-21,-39],[0,-1],[-19,-45],[-1,-6],[-13,-39],[-8,-14],[-21,-31],[0,-1],[0,1],[0,45],[-17,45],[-4,14],[-11,32],[11,12],[21,7],[18,26],[-18,19],[-10,26],[6,46],[4,19],[10,26],[7,45],[4,33],[2,13],[-2,20],[-4,25],[-17,16],[-6,-16],[-13,-45],[-2,-3],[-3,3],[-17,13],[-12,32],[-1,45],[2,46],[-10,45],[5,45],[16,19],[18,27],[-12,45],[-6,4],[-16,41],[16,39],[3,7],[17,25],[21,14],[4,6],[7,46],[10,23],[6,22],[7,45],[8,17],[20,29]],[[7521,2701],[-20,25],[-21,-15],[-17,35],[-4,10],[-18,35],[-3,3],[-17,-3],[17,-43],[1,-2],[13,-45],[2,-46],[-16,-29],[-12,-16],[-8,-26],[-10,-19],[-11,-10],[-21,7],[-3,3],[-18,9],[-5,-9],[5,-10],[12,-36],[-8,-45],[-2,-46],[-2,-9],[-20,-14],[-16,23],[-5,8],[-21,7],[-3,-15],[1,-45],[2,-5],[21,-30],[6,-10],[15,-37],[3,-9],[12,-45],[-5,-45],[-1,-46],[0,-45],[-1,-45],[-8,-15],[-21,-12],[-21,-12],[-5,-7],[5,-4],[21,-15],[21,-15],[6,-11],[14,-44],[1,-1],[-1,-2],[-1,2],[-19,26],[-21,-18],[-6,-8],[-15,-18],[-11,18],[-10,10],[-21,3],[-20,32],[-21,18],[-12,-18],[2,-45],[-11,-39],[-21,13],[-20,-13],[-21,6],[-21,9],[-17,24],[-4,12],[-10,33],[10,38],[7,7],[14,10],[21,21],[21,14],[0,1],[0,39],[-21,2],[-21,-15],[-21,11],[-3,8],[3,28],[21,8],[4,9],[-4,29],[-2,17],[-2,45],[4,11],[12,34],[9,24],[15,22],[-15,37],[-21,-20],[-8,-17],[-13,-21],[-20,-6],[-7,-19],[-14,-12],[-21,-12],[-10,-21],[-11,-22],[-16,22],[14,45],[-18,38],[-21,3],[-2,5],[-4,45],[0,45],[6,12],[21,-2],[20,-1],[21,22],[7,15],[-7,14],[-21,28],[-1,3],[1,14],[21,6],[10,26],[11,37],[21,-5],[17,13],[-17,37],[-2,8],[2,3],[20,9],[21,-5],[7,-7],[14,-32],[11,32],[10,21],[10,25],[1,45],[9,14],[21,15],[21,0],[21,16],[0,1],[-21,13],[-21,3],[-21,22],[-2,7],[-18,36],[-5,9],[-16,43],[-1,2],[-20,41],[-13,-41],[7,-45],[6,-12],[13,-33],[4,-46],[-17,-27],[-21,-8],[-20,14],[-21,2],[-21,2],[-9,17],[9,39],[3,7],[-3,5],[-9,40],[3,45],[-15,42],[-1,4],[-14,45],[3,45],[3,46],[-2,45],[-9,5],[-2,-5],[-17,-45],[-2,-10],[-5,-36],[-6,-45],[-8,-45],[19,-15],[9,-31],[-9,-35],[-14,-10],[-7,-4],[-3,4],[-18,15],[-16,-15],[2,-45],[-7,-18],[-3,18],[-2,45],[-14,45],[-1,4],[-4,-4],[-17,-20],[-21,-5],[-13,-20],[-8,-19],[-19,19],[-1,1],[-18,44],[11,46],[7,18],[8,27],[12,29],[11,16],[1,46],[8,45],[-10,45],[-10,31],[-5,-31],[-15,-44],[-1,-1],[-16,-45],[-4,-13],[-16,-33],[-5,-9],[-21,-27],[-10,36],[2,46],[-1,45],[1,45],[-10,46],[-2,4],[-2,-4],[-2,-46],[-17,-34],[-12,-11],[0,-45],[-9,-33],[-5,-13],[-8,-45],[13,-29],[9,-16],[12,-25],[7,-21],[-2,-45],[-5,-2],[-2,2],[-19,15],[-21,10],[-20,7],[-6,-32],[6,-15],[12,-30],[8,-16],[12,-30],[9,-45],[0,-45],[0,-2],[21,-33],[4,-11],[2,-45],[15,-33],[5,-12],[11,-46],[-16,-43],[-2,-2],[-2,-46],[-12,-45],[16,-39],[14,-6],[6,-6],[5,-40],[16,-21],[21,-13],[11,-11],[-11,-28],[-7,-17],[7,-13],[21,-21],[7,-12],[-7,-29],[-13,-16],[-8,-3],[-3,3],[-18,38],[-11,7],[-10,45],[0,1],[-16,45],[-4,9],[-14,-9],[-7,-10],[-5,10],[-16,22],[-12,-22],[12,-10],[16,-35],[5,-10],[15,-36],[6,-10],[20,-5],[6,-30],[0,-45],[9,-46],[6,-6],[21,-33],[7,-6],[14,-12],[20,6],[21,-39],[0,-2],[1,2],[7,45],[13,28],[13,-28],[8,-37],[20,13],[18,-21],[3,-5],[8,-41],[-7,-45],[20,-19],[16,-26],[5,-15],[21,14],[20,-11],[19,-34],[2,-3],[21,-24],[6,-18],[15,-35],[20,-7],[4,-3],[17,-17],[21,-26],[6,-3],[15,-9],[19,-36],[1,-2],[21,-21],[14,-22],[-14,-27],[-21,5],[-17,22],[-3,8],[-21,35],[-2,2],[-19,17],[-21,-2],[-20,-7],[-21,27],[-6,10],[-15,29],[-21,14],[-20,2],[-1,1],[-10,45],[-10,27],[-21,8],[-18,-35],[-3,-4],[-21,-2],[-20,-1],[-17,7],[17,15],[5,30],[-5,24],[-7,22],[-14,26],[-21,17],[-3,2],[-18,11],[-6,-11],[-1,-45],[-13,-21],[-21,-19],[-21,4],[-19,36],[-2,10],[-20,17],[-18,18],[-3,7],[-15,38],[-6,6],[-11,-6],[-10,-6],[-5,6],[-15,11],[-12,-11],[-9,-11],[-21,-12],[-12,23],[-1,46],[-8,22],[-21,0],[-20,-18],[-2,-4],[-19,-34],[-21,-3],[-21,10],[-20,17],[-21,7],[-3,3],[3,18],[3,27],[18,30],[20,7],[14,8],[-14,11],[-20,11],[-17,24],[-4,3],[-9,-3],[-12,-7],[-21,-26],[-20,13],[-7,20],[-6,45],[1,45],[12,41],[2,5],[18,26],[21,4],[11,15],[10,21],[21,7],[20,3],[16,14],[5,13],[6,33],[15,23],[17,22],[4,5],[20,21],[21,5],[21,6],[21,-5],[20,13],[1,1],[9,45],[-6,45],[-3,20],[-7,26],[5,45],[-12,45],[-7,12],[-21,32],[-1,2],[-20,17],[-21,1],[-20,8],[-21,5],[-7,14],[-14,27],[-21,0],[-15,18],[-5,11],[-21,9],[-21,-11],[-18,-9],[-3,-6],[-3,6],[-17,18],[-21,27],[-21,-22],[-21,10],[-20,3],[-7,10],[-14,23],[-21,-17],[-8,-6],[-13,-2],[-21,-18],[-20,13],[-5,7],[-8,45],[13,23],[20,15],[21,-33],[21,1],[21,12],[21,24],[20,-28],[16,31],[5,16],[21,-9],[4,-7],[17,-16],[20,0],[21,12],[21,-7],[21,-11],[20,17],[5,5],[16,19],[21,3],[21,6],[20,-16],[21,27],[3,7],[-3,3],[-21,36],[-3,6],[-17,16],[-21,15],[-21,5],[-21,7],[-7,2],[0,46],[7,7],[13,-7],[8,-17],[5,17],[16,16],[21,-16],[0,-1],[20,-1],[2,2],[19,36],[8,9],[-8,12],[-21,17],[-11,16],[-5,46],[0,45],[-4,4],[-4,-4],[-17,-26],[-6,-19],[-15,-33],[-21,21],[-19,12],[-1,8],[-8,37],[-13,6],[-21,1],[-21,4],[-8,34],[8,39],[5,7],[-5,11],[-12,34],[-8,8],[-5,-8],[-16,-44],[-1,-1],[-20,-14],[-21,8],[-5,6],[-11,45],[6,45],[6,46],[4,38],[1,7],[20,42],[3,4],[-3,6],[-21,-2],[-20,-2],[-2,-2],[0,-46],[-7,-45],[-12,-30],[-11,-16],[-10,-21],[-9,-24],[-12,-25],[-21,-5],[-20,20],[-12,10],[-9,10],[-5,-10],[5,-21],[4,-24],[-4,-24],[-5,-22],[-16,-20],[-21,-21],[-2,-4],[-18,-31],[-19,31],[-2,6],[-21,25],[-21,-14],[-17,28],[-3,8],[-12,38],[12,19],[20,10],[21,5],[10,11],[11,31],[5,14],[-5,7],[-21,13],[-14,26],[-2,45],[16,26],[17,20],[-11,45],[4,45],[11,27],[10,19],[-10,20],[-21,-20],[-21,-29],[-8,-17],[6,-45],[-18,-36],[-21,7],[-21,-10],[-6,-6],[6,-21],[7,-25],[-7,-13],[-21,-2],[-15,15],[-5,6],[-18,40],[-3,3],[-21,-1],[-21,43],[5,45],[12,46],[4,29],[2,16],[19,35],[8,10],[-8,13],[-12,33],[-1,45],[0,45],[-3,46],[8,45],[-13,28],[-18,-28],[-3,-12],[-6,-33],[-15,-42],[-2,-4],[2,-5],[13,-40],[4,-45],[-3,-46],[-14,-40],[-2,-5],[-18,-40],[-5,-5],[-16,-46],[-21,0],[-21,-37],[-20,20],[-8,17],[-13,13],[-21,18],[-7,15],[-7,45],[1,45],[13,34],[13,12],[-13,37],[-2,8],[2,8],[7,37],[-7,46],[-21,-42],[-4,-4],[-7,-45],[-9,-30],[-14,-15],[-7,-13],[-18,-33],[-3,-3],[-21,-40],[-10,43],[10,43],[1,3],[-1,10],[-3,35],[-17,31],[-11,-31],[-10,-11],[-21,8],[-15,-42],[2,-46],[-8,-10],[-21,4],[-20,-1],[-21,5],[-21,-26],[-9,28],[9,21],[20,25],[-8,45],[-12,29],[-21,8],[-13,8],[-7,8],[-15,38],[15,18],[20,14],[8,13],[-8,33],[-12,12],[-8,7],[-21,0],[-4,-7],[-17,-25],[-16,-20],[-5,-12],[-15,-33],[-5,-19],[-4,19],[-5,45],[-12,38],[-7,7],[-14,25],[-3,21],[3,7],[21,25],[8,13],[13,41],[6,4],[14,24],[16,22],[-16,4],[-20,25],[-6,16],[-3,45],[-3,46],[-9,18],[-5,-18],[-5,-46],[1,-45],[-4,-45],[-4,-46],[-4,-8],[-21,-22],[-20,-10],[-17,40],[-4,37],[-10,-37],[-5,-45],[4,-45],[4,-46],[-14,-35],[-21,25],[-1,10],[-12,46],[-8,27],[-13,18],[-7,14],[-21,-11],[0,-3],[0,-1],[15,-44],[-2,-46],[-13,-43],[-16,43],[-5,11],[-12,35],[-9,15],[-20,10],[-18,-25],[5,-46],[-8,-15],[-21,4],[-21,-25],[-20,19],[-21,12],[-10,5],[-2,46],[-6,45],[-3,33],[-2,12],[2,9],[8,37],[-8,13],[-21,-7],[-5,-6],[-7,-46],[-2,-45],[-6,-23],[-21,-9],[-7,-13],[-14,-34],[-21,30],[-1,4],[-5,45],[-14,16],[-21,2],[-12,27],[10,46],[-2,45],[-14,45],[-3,16],[-5,-16],[-16,-39],[-2,-6],[-3,-45],[-16,-25],[-20,2],[-14,23],[-7,12],[-15,33],[-4,45],[-2,8],[-1,-8],[-15,-45],[2,-45],[-7,-18],[-20,-25],[-2,-3],[2,-11],[20,-34],[-20,-20],[-16,-25],[-5,-9],[-12,-37],[12,-42],[1,-3],[-1,-4],[-7,-41],[7,-14],[21,-20],[13,-12],[7,-9],[18,-36],[-17,-45],[-1,-1],[-20,-17],[-16,18],[-5,15],[-15,-15],[-6,-4],[-9,4],[-12,6],[-14,39],[-6,14],[-16,31],[-5,24],[-10,22],[4,45],[6,9],[21,24],[20,5],[6,7],[-6,8],[-20,20],[-7,18],[7,17],[10,28],[10,45],[-20,22],[-21,-4],[-17,-18],[-4,-39],[-1,-6],[-20,-18],[-20,11],[-11,7],[-10,3],[-3,-3],[3,-7],[10,-38],[-10,-39],[-2,-7],[-16,-45],[-3,-3],[-1,3],[-20,45],[-1,0],[-20,6],[-20,18],[-10,22],[10,41],[1,4],[-1,2],[-21,29],[-3,14],[1,46],[-19,19],[-21,24],[-1,2],[1,45],[0,2],[16,44],[5,21],[5,24],[2,46],[-1,45],[-6,11],[-7,-11],[-1,-45],[-13,-45],[-4,-1],[-16,-3],[-2,3],[-19,20],[-17,26],[-4,11],[-6,-11],[6,-23],[5,-23],[10,-45],[6,-33],[2,-13],[-2,-7],[-21,-15],[-12,22],[-9,12],[-20,28],[-4,6],[-17,23],[-21,7],[-21,-11],[-18,26],[-2,7],[-21,3],[-21,5],[-13,31],[-4,45],[2,45],[4,46],[-10,9],[-18,36],[-3,8],[-20,37],[0,4],[-1,-4],[1,-4],[13,-41],[7,-24],[7,-21],[-1,-46],[12,-45],[-18,-45],[-2,0],[2,-1],[21,-27],[10,-18],[11,-12],[21,-21],[8,-12],[13,-13],[20,-2],[21,-14],[12,-17],[2,-45],[7,-3],[11,3],[10,3],[1,-3],[19,-37],[6,-8],[15,-13],[21,-13],[15,-20],[6,-10],[11,-35],[7,-45],[-18,-13],[-21,-12],[-21,14],[-17,11],[-4,2],[-2,-2],[-18,-46],[9,-45],[11,-20],[21,-10],[21,30],[21,-9],[20,2],[21,-10],[21,-22],[7,-6],[11,-46],[-18,-37],[-21,23],[-21,-6],[-20,-25],[20,-35],[3,-10],[-3,-5],[-20,-26],[-21,-15],[18,-45],[3,-4],[16,-41],[-14,-46],[-2,-2],[-2,2],[-15,46],[-4,13],[-21,2],[-5,-15],[5,-8],[12,-38],[-7,-45],[-5,-4],[-8,4],[-13,10],[-10,-10],[-10,-7],[-21,-25],[-5,-13],[5,-15],[20,-31],[1,0],[20,-31],[9,-14],[10,-46],[2,-5],[21,-33],[9,-7],[12,-27],[4,-18],[-4,-4],[-21,-10],[-13,14],[-8,18],[-19,-18],[-2,-1],[-1,1],[-6,45],[-13,10],[-21,-7],[-21,40],[-1,2],[-12,46],[-8,18],[-20,0],[-21,15],[-6,12],[-11,46],[17,15],[21,18],[20,11],[2,1],[-2,8],[-19,37],[19,26],[21,20],[-21,5],[-20,-3],[-7,-2],[-14,-9],[-21,-11],[-14,-26],[5,-45],[-12,-14],[-21,1],[-6,13],[6,36],[7,9],[-7,14],[-20,18],[-11,14],[-10,23],[-6,22],[-9,45],[15,23],[21,9],[20,6],[3,8],[18,29],[16,16],[5,12],[21,13],[21,9],[20,-3],[13,14],[-13,11],[-19,35],[-1,4],[-21,-1],[-2,-3],[-19,-26],[-21,-16],[-3,-4],[-18,-21],[-20,2],[-14,19],[-7,32],[-21,-24],[-21,9],[-15,-17],[-5,-7],[-21,7],[-21,43],[-1,3],[-19,45],[-1,1],[-20,25],[-14,19],[-7,28],[-5,18],[-16,41],[-3,4],[-6,45],[-6,46],[-6,38],[-8,7],[-12,7],[-5,-7],[-12,-45],[11,-46],[-1,-45],[4,-45],[3,-6],[19,-40],[1,-29],[21,-5],[7,-11],[-7,-29],[-21,15],[-3,-31],[3,-3],[21,-9],[11,-34],[10,-34],[8,-11],[-8,-14],[-21,-17],[-21,23],[-20,0],[-21,4],[-15,4],[-6,1],[-21,9],[-12,-10],[-9,-35],[-2,-10],[-7,-46],[7,-45],[2,-3],[11,-42],[-1,-46],[11,-45],[0,-1],[12,-44],[9,-24],[21,13],[21,-12],[20,-19],[2,-4],[-2,-21],[-15,-24],[2,-46],[-7,-21],[-21,7],[-10,14],[-11,23],[-15,23],[-6,6],[-21,-3],[-2,-3],[2,-16],[5,-30],[16,-35],[5,-10],[-5,-6],[-21,-10],[-20,12],[-3,4],[-11,45],[4,46],[-3,45],[-8,17],[-21,17],[-21,-33],[-18,45],[-2,5],[-21,8],[-21,-2],[-21,23],[-2,11],[0,45],[2,4],[21,0],[3,-4],[18,-23],[21,3],[20,15],[21,-32],[20,-8],[1,-1],[0,1],[0,2],[-4,43],[4,10],[8,36],[-3,45],[-3,45],[-2,3],[-2,-3],[-1,-45],[-18,-22],[-12,22],[-9,22],[-8,23],[-7,46],[3,45],[12,35],[7,10],[14,42],[1,4],[-1,29],[-21,-12],[-12,-17],[-8,-11],[-17,-35],[-4,-7],[-16,-38],[-5,-23],[-5,-22],[-16,-32],[-18,-14],[-2,-1],[-3,1],[-18,14],[-9,32],[9,31],[3,14],[12,45],[6,24],[5,22],[-4,45],[-1,12],[-6,-12],[-15,-31],[-21,-13],[-5,-1],[5,-10],[4,-36],[-4,-6],[-21,-17],[-20,-9],[-19,-13],[19,-38],[1,-7],[3,-46],[-4,-15],[-17,-30],[-4,-14],[-3,14],[-18,42],[-21,-10],[-14,-32],[-7,-20],[-20,17],[-2,3],[-7,45],[-12,19],[-21,-7],[-9,34],[-12,24],[-14,21],[5,45],[9,16],[17,-16],[4,-7],[4,7],[17,31],[21,-10],[13,25],[-11,45],[18,14],[20,-14],[1,-1],[1,1],[-1,16],[0,29],[-21,40],[-20,-7],[-10,13],[10,32],[8,13],[-2,45],[6,46],[-12,31],[-18,-31],[-3,-7],[-6,7],[-15,24],[-6,-24],[-12,-46],[-1,-45],[-2,-5],[-2,5],[-2,45],[-16,28],[-19,-28],[8,-45],[-10,-33],[-5,-12],[2,-46],[-18,-23],[-9,-22],[-12,-32],[-13,32],[-7,23],[-21,12],[-5,10],[-16,39],[-7,7],[-14,27],[-3,18],[1,45],[2,4],[6,-4],[15,-9],[21,-30],[10,-6],[11,-5],[1,5],[-1,15],[-6,30],[6,25],[4,21],[-4,20],[-21,-12],[-21,16],[-8,21],[-6,45],[-5,46],[-2,28],[-3,-28],[-17,-31],[-19,31],[-2,3],[-21,35],[-21,-23],[-17,30],[-4,18],[-20,7],[-13,-25],[13,-14],[13,-31],[7,-13],[21,-3],[21,-22],[6,-8],[9,-45],[6,-29],[9,-16],[2,-46],[-11,-35],[-21,-10],[-21,-17],[-21,7],[-20,-5],[-21,8],[-4,7],[-16,45],[-1,1],[-3,-1],[-18,-6],[-20,6],[-1,0],[-20,12],[-21,-9],[-2,-3],[2,-19],[4,-26],[17,-19],[21,-10],[13,-16],[7,-16],[21,-4],[6,-26],[-6,-24],[-17,-21],[17,-10],[21,-12],[8,22],[13,29],[12,16],[8,12],[21,12],[21,3],[15,-27],[6,-13],[20,-32],[-18,-45],[-2,-3],[-8,3],[-13,7],[-5,-7],[-16,-35],[-4,-11],[4,-45],[19,-45],[-14,-46],[4,-45],[-9,-32],[-21,2],[-15,30],[-5,7],[-7,-7],[-14,-13],[-13,13],[-8,31],[-5,14],[5,6],[21,27],[6,13],[1,45],[-7,16],[-21,27],[-1,2],[-20,29],[-20,17],[-21,14],[-8,-14],[-13,-33],[-21,11],[-20,-13],[-11,-11],[-10,-25],[-17,25],[6,46],[11,17],[7,28],[-7,32],[-4,13],[4,6],[21,22],[9,18],[-8,45],[-1,3],[-21,6],[-7,-9],[-14,-18],[-10,18],[-11,38],[-3,7],[-14,46],[17,32],[13,13],[-13,7],[-20,11],[-21,9],[-21,0],[-7,18],[0,46],[-14,21],[-21,11],[-14,13],[14,33],[21,-13],[21,-20],[1,0],[20,-3],[15,3],[6,7],[6,39],[-3,45],[14,45],[3,5],[21,33],[3,8],[-2,45],[-1,7],[-2,-7],[-19,-17],[-20,9],[-21,-14],[-5,-23],[-16,-31],[-7,-15],[-14,-19],[-21,4],[-8,15],[-12,44],[-17,-44],[-4,-5],[-5,5],[-16,17],[-21,0],[-6,-17],[0,-45],[6,-25],[6,-20],[-6,-13],[-20,-18],[-21,-12],[-2,-3],[-5,-45],[-14,-42],[-11,42],[-10,19],[-7,-19],[7,-45],[2,-1],[19,-2],[13,-43],[0,-45],[-13,-26],[-12,26],[-9,15],[-13,30],[-7,31],[-5,-31],[-3,-45],[-7,-46],[-6,-23],[-16,23],[-5,4],[-21,31],[-4,11],[-16,21],[-21,4],[-20,20],[-1,1],[-13,44],[-8,19],[-21,-1],[-9,28],[-2,45],[11,23],[21,-16],[21,32],[21,-13],[21,-22],[1,-4],[10,-45],[9,-18],[21,18],[0,1],[9,44],[12,16],[8,30],[13,23],[20,-1],[21,11],[9,12],[7,45],[-16,29],[-21,16],[-20,-2],[-3,3],[3,4],[20,-4],[21,33],[7,12],[14,8],[21,-5],[12,42],[1,46],[7,6],[21,20],[21,-4],[11,-22],[10,-36],[5,-10],[15,-15],[21,11],[21,1],[21,-15],[21,-13],[7,31],[3,46],[10,45],[1,0],[20,15],[21,28],[1,2],[-1,7],[-7,39],[-13,45],[-1,2],[-7,43],[-14,27],[-7,19],[-13,35],[-3,10],[-2,45],[-16,38],[-12,8],[12,5],[9,-5],[12,-22],[5,-24],[15,-39],[8,-6],[13,-15],[17,-30],[4,-4],[6,4],[12,45],[3,4],[16,-4],[-7,-45],[11,-13],[19,-33],[-19,-33],[-9,-12],[9,-8],[21,-14],[13,22],[8,9],[3,-9],[-1,-45],[19,-36],[20,21],[5,15],[0,45],[16,30],[21,-5],[21,-1],[9,21],[-9,7],[-21,17],[-12,22],[-9,13],[-18,32],[-1,45],[19,28],[21,5],[21,-20],[14,-13],[6,-4],[21,-15],[21,-11],[8,-15],[13,-19],[21,-18],[20,16],[21,-16],[19,-8],[2,-5],[0,5],[4,45],[-4,16],[-21,-1],[-21,-6],[-20,10],[-20,26],[-1,3],[-21,30],[-21,-6],[-10,19],[-11,15],[-20,10],[-12,20],[-9,38],[-21,-17],[-12,24],[-9,17],[-16,-17],[8,-45],[-11,-45],[-1,-2],[-21,-30],[-21,8],[-21,23],[0,1],[-20,34],[-21,-7],[-19,18],[-2,2],[-21,27],[-15,16],[-4,46],[10,45],[8,45],[-15,46],[16,16],[21,1],[14,-17],[7,-12],[21,-17],[12,29],[-12,43],[-1,2],[1,2],[20,11],[3,33],[2,45],[16,41],[5,4],[-5,39],[-21,-27],[-18,-12],[-2,-4],[-8,-41],[-13,-30],[-21,-15],[-21,1],[-16,44],[-4,37],[-5,-37],[-16,-23],[-21,-12],[-21,3],[-1,-13],[1,-2],[21,-9],[15,-35],[-15,-39],[-3,-6],[3,-16],[5,-30],[1,-45],[-6,-29],[-14,29],[-7,11],[-14,-11],[-7,-5],[-9,5],[-11,6],[-21,26],[-21,-12],[-5,-20],[5,-45],[-21,-34],[-6,-12],[-3,-45],[-11,-34],[-13,34],[3,45],[-6,46],[-5,4],[-6,-4],[-15,-15],[-21,-26],[-2,-5],[-16,-45],[-2,-12],[-21,0],[-19,12],[-2,3],[-19,42],[19,37],[3,9],[13,45],[5,14],[20,31],[1,1],[20,8],[6,37],[15,45],[-21,31],[-20,-28],[-5,-3],[-16,-10],[-8,10],[-13,24],[-21,12],[-5,10],[-15,38],[-20,-38],[-1,-2],[-1,2],[-20,15],[-21,25],[-2,5],[-17,45],[-1,46],[-1,9],[-1,-9],[-12,-46],[3,-45],[10,-45],[1,0],[20,-42],[6,-4],[15,-9],[21,-9],[21,-13],[13,-14],[-10,-46],[-3,-3],[-19,3],[-2,1],[-21,15],[-21,-7],[-21,-4],[-20,-3],[-17,-2],[17,-18],[2,-27],[18,-18],[21,-17],[13,-10],[-9,-46],[-4,-19],[-21,-17],[-20,24],[-9,12],[-12,14],[-21,16],[-12,-30],[12,-45],[0,-1],[21,-33],[2,-11],[-2,-11],[-16,-35],[-5,-8],[-21,-35],[-1,-2],[1,-12],[5,-33],[-5,-22],[-4,-24],[4,-8],[21,-15],[21,3],[21,-12],[20,-12],[1,-1],[-1,-12],[-1,-33],[-19,-16],[-21,12],[-6,-42],[-15,-22],[-11,-23],[11,-37],[6,-8],[15,-12],[21,-24],[4,-10],[16,-31],[8,-14],[-8,-10],[-20,3],[-21,-18],[-21,8],[-21,16],[0,1],[0,6],[3,39],[-3,6],[-20,5],[-17,35],[-4,4],[-21,19],[-21,-14],[-14,-9],[-6,-4],[-2,4],[-2,45],[4,9],[20,29],[4,7],[17,39],[4,7],[0,45],[-4,10],[-12,35],[12,39],[7,7],[4,45],[-7,45],[7,46],[-9,45],[-2,4],[-1,-4],[-17,-45],[-3,-5],[-11,-41],[-3,-45],[-6,-22],[-7,-23],[-13,-46],[-1,-1],[-2,1],[-19,21],[-9,25],[-12,24],[-16,-24],[-4,-23],[-17,23],[-4,18],[-7,27],[-14,6],[-21,35],[-4,4],[-17,17],[-20,-16],[0,-1],[-21,-14],[-13,14],[-2,46],[-6,10],[-20,35],[-1,2],[-13,43],[-7,31],[-10,15],[10,8],[15,37],[5,17],[11,-17],[10,-33],[21,-7],[21,33],[12,-38],[-12,-44],[-1,-2],[1,-1],[20,0],[21,-18],[21,14],[15,-40],[6,-13],[21,6],[17,-38],[3,-9],[21,0],[3,9],[18,31],[6,14],[-6,31],[-21,-8],[-11,22],[-4,46],[-6,23],[-20,8],[-21,-6],[-10,20],[10,10],[21,8],[7,27],[-7,25],[-7,21],[7,17],[12,28],[8,17],[16,-17],[5,-3],[21,-18],[21,-14],[8,-10],[12,-37],[10,37],[11,17],[14,-17],[7,-8],[4,8],[17,44],[1,1],[-1,5],[-10,41],[-11,29],[-18,-29],[-3,-4],[-5,4],[-16,4],[-20,18],[-7,23],[-14,33],[-12,12],[12,16],[12,30],[9,17],[20,25],[2,3],[-2,3],[-19,42],[19,40],[3,6],[18,38],[7,7],[-7,16],[-14,29],[-7,7],[-5,-7],[-12,-45],[-3,-7],[-21,-17],[-21,14],[-15,-35],[-6,-27],[-11,27],[-9,10],[-21,18],[-21,5],[-6,12],[-11,45],[12,46],[5,18],[21,23],[1,4],[-1,4],[-21,7],[-21,20],[-20,-31],[-1,0],[-13,45],[-7,42],[-6,-42],[-11,-45],[-4,-20],[-21,0],[-21,5],[-10,15],[10,19],[11,26],[-11,17],[-16,29],[-4,8],[-18,37],[-3,5],[-21,8],[-5,-13],[-5,-45],[-11,-30],[-20,27],[-21,-22],[-7,-21],[-14,-31],[-10,31],[-6,46],[5,45],[11,11],[21,4],[9,30],[-9,19],[-9,27],[9,26],[21,10],[7,9],[9,45],[4,7],[21,25],[3,14],[18,42],[3,3],[18,20],[18,-20],[2,-45],[1,0],[20,18],[21,9],[21,-12],[20,8],[5,22],[-5,13],[-20,6],[-21,-1],[-20,27],[-1,1],[-18,45],[18,20],[18,25],[-1,46],[-7,45],[11,23],[21,11],[11,11],[9,17],[21,29]],[[1894,6737],[-21,35],[-20,-23],[-21,0],[-18,33],[-3,2],[-2,-2],[-6,-45],[4,-46],[-10,-45],[-3,-45],[-4,-8],[-13,-38],[-7,-14],[-21,0],[-10,14],[-9,46],[-2,4],[-1,-4],[-5,-46],[6,-21],[8,-24],[-8,-19],[-6,-27],[-15,-19],[-20,5],[-16,-31],[-5,-5],[-21,-7],[-10,12],[-11,31],[-20,-13],[-21,24],[-10,-42],[-11,-22],[-21,21],[-16,-44],[-5,-7],[-5,7],[-15,19],[-9,-19],[4,-46],[0,-45],[-4,-45],[-10,-46],[12,-45],[-14,-41],[-1,-4],[1,-3],[15,-43],[6,-26],[6,-19],[-6,-17],[-21,-15],[-21,8],[-21,6],[-13,18],[-2,45],[6,46],[-8,45],[17,8],[8,37],[-1,46],[-3,45],[-4,13],[-20,21],[-8,11],[-13,30],[-16,16],[-5,3],[-2,-3],[-19,-16],[-20,15],[-3,1],[3,5],[5,40],[15,31],[21,-9],[21,8],[8,15],[13,17],[15,-17],[5,-10],[10,10],[11,19],[21,19],[7,8],[14,16],[20,-6],[14,35],[7,28],[21,15],[8,3],[-3,45],[-5,6],[-4,-6],[-17,-32],[-21,26],[-8,-39],[-12,-20],[-21,6],[-10,14],[-11,19],[-21,-8],[-20,18],[-11,16],[11,36],[2,9],[-2,4],[-21,29],[-9,13],[8,45],[0,45],[1,4],[2,-4],[19,-6],[5,6],[3,46],[6,45],[6,16],[16,-16],[5,-6],[5,6],[-2,45],[-3,32],[-1,14],[1,2],[21,6],[14,37],[7,33],[1,12],[19,34],[7,12],[14,26],[19,19],[-19,27],[-21,-25],[-20,7],[-6,-9],[-15,-20],[-14,-25],[-7,-16],[-21,-7],[-20,-19],[-1,-4],[1,-12],[2,-33],[-2,-7],[-14,-38],[-7,-14],[-11,14],[-10,22],[-9,23],[-12,16],[-14,-16],[4,-45],[-10,-37],[-21,6],[-9,-15],[1,-45],[-13,-22],[-21,5],[-10,-28],[-4,-46],[-6,-5],[-7,5],[-14,9],[-21,-4],[-13,-5],[1,-45],[12,-34],[9,-11],[-5,-46],[17,-45],[14,-45],[-14,-13],[-21,-11],[-10,-22],[10,-25],[10,-20],[-10,-15],[-21,11],[-2,4],[-13,45],[8,46],[-13,32],[-6,13],[6,31],[2,14],[-2,9],[-21,9],[-21,-12],[-5,40],[5,17],[9,28],[12,33],[5,12],[13,46],[3,22],[1,23],[-1,6],[-21,-4],[-21,0],[-21,30],[-21,-32],[0,-2],[2,-43],[-2,-24],[-20,-3],[-21,7],[-7,20],[-4,45],[-10,17],[-21,2],[-18,26],[-2,15],[-12,31],[-9,25],[-7,-25],[-12,-46],[-2,-4],[-6,4],[-15,11],[-20,14],[-21,10],[-21,1],[-13,10],[13,15],[9,30],[12,20],[21,-2],[20,-2],[21,-6],[21,7],[21,13],[20,2],[21,9],[7,4],[-7,7],[-21,12],[-20,-6],[-21,1],[-21,2],[-21,3],[-20,12],[-7,15],[2,45],[5,8],[20,32],[21,3],[1,2],[10,46],[10,8],[15,37],[6,8],[17,-8],[3,-1],[3,1],[18,8],[21,-1],[21,14],[20,0],[20,24],[1,3],[21,35],[7,8],[14,15],[21,14],[20,-9],[12,-20],[2,-46],[7,-9],[10,9],[-6,46],[17,42],[1,3],[20,40],[3,6],[17,27],[21,10],[4,8],[17,43],[3,2],[-3,43],[-21,-23],[-14,-20],[-7,-14],[-20,-18],[-13,-13],[-8,-19],[-11,-26],[-10,-21],[-21,-8],[-20,0],[-21,5],[-21,2],[-16,22],[-5,14],[-2,-14],[-17,-46],[-2,-3],[-20,-16],[-21,-21],[-21,28],[-21,-31],[-1,-2],[-19,-18],[-21,7],[-21,-12],[-9,23],[-3,45],[-9,42],[-1,4],[-4,45],[-15,37],[-4,8],[-9,46],[2,45],[11,39],[2,6],[-2,1],[-21,9],[-19,36],[-2,5],[-6,-5],[-15,-37],[-20,-8],[-1,-1],[1,0],[20,-2],[21,-42],[1,-1],[2,-45],[-3,-20],[-1,-26],[1,-4],[16,-41],[5,-43],[0,-2],[0,-4],[-5,-42],[5,-15],[10,-30],[11,-38],[1,-8],[3,-45],[-4,-16],[-6,16],[-15,16],[-21,13],[-21,7],[-7,9],[-12,46],[-1,2],[-21,19],[-5,-21],[5,-14],[12,-32],[9,-23],[6,-22],[14,-25],[17,-20],[-17,-28],[-6,-18],[-2,-45],[-12,-33],[-13,-12],[-8,-2],[-1,2],[-20,40],[-3,5],[-9,45],[-9,27],[-21,-6],[-12,25],[-8,27],[-14,-27],[9,-46],[5,-37],[13,-8],[-13,-3],[-4,3],[-17,11],[-21,14],[-21,0],[-20,-19],[-5,-6],[5,-6],[20,-23],[7,-16],[14,-31],[14,-15],[-14,-18],[-21,-22],[-20,1],[-21,-1],[-17,-5],[-4,-3],[-21,-5],[-15,-37],[10,-46],[5,-11],[13,-34],[8,-45],[21,-38],[4,-8],[-4,-32],[-1,-13],[-4,-45],[5,-32],[10,32],[11,21],[5,24],[5,45],[10,38],[15,-38],[6,-13],[21,-2],[21,8],[20,-32],[21,6],[17,-12],[4,-9],[10,-36],[11,-13],[21,3],[20,-17],[6,-19],[15,-39],[3,-6],[18,-11],[11,11],[10,11],[19,-11],[1,-2],[12,-43],[9,-29],[9,29],[12,22],[21,12],[6,-34],[8,-46],[6,-13],[21,-11],[12,-21],[9,-15],[19,-31],[-17,-45],[-2,-6],[-21,-28],[-10,-11],[10,-9],[21,-24],[5,-13],[16,-21],[18,-24],[-5,-45],[-3,-46],[10,-20],[21,-3],[7,23],[14,11],[14,-11],[-5,-45],[-9,-18],[-21,12],[-21,1],[-20,3],[-1,2],[-3,45],[-17,41],[-4,5],[-17,9],[-21,1],[-20,15],[-20,-25],[10,-46],[10,-33],[5,-12],[-5,-8],[-21,-37],[0,-2],[-21,-28],[-16,30],[-5,6],[-20,0],[-21,33],[-21,-13],[-21,0],[-4,19],[4,10],[21,27],[21,0],[21,6],[0,2],[0,5],[-11,41],[-10,26],[-6,19],[-15,23],[-21,-15],[-12,-8],[-3,-45],[-5,-7],[-21,-27],[-21,28],[-15,6],[15,2],[21,26],[16,17],[-16,41],[-2,4],[-18,46],[-1,45],[-2,0],[-19,-2],[-15,-43],[-6,-12],[-20,-20],[-16,-14],[2,-45],[-7,-12],[-15,-33],[15,-41],[1,-5],[-1,-2],[-21,-9],[-14,11],[-7,11],[-19,35],[19,44],[2,1],[0,45],[17,46],[2,6],[20,39],[-2,45],[-18,33],[-21,-25],[-4,-8],[-16,-15],[-21,0],[-19,15],[-2,2],[-2,-2],[-19,-23],[-8,-22],[8,-29],[4,-16],[-4,-23],[-8,23],[-12,16],[-19,-16],[-2,-2],[-3,2],[-5,45],[-13,32],[-5,13],[-1,46],[6,19],[5,26],[10,46],[-15,12],[-21,24],[-5,9],[-15,10],[-8,-10],[-13,-26],[-21,6],[-21,18],[-21,-41],[-1,-2],[-10,-46],[-9,-6],[-8,6],[-13,37],[-1,9],[-5,45],[-12,45],[-3,4],[-21,39],[-19,-43],[-1,-2],[-21,-18],[-18,-25],[-3,-3],[-6,3],[-15,41],[0,4],[0,2],[11,44],[-1,45],[9,45],[2,14],[21,25],[8,7],[13,17],[20,18],[10,10],[11,15],[21,10],[20,-25],[1,-4],[9,-41],[11,-10],[21,5],[21,0],[16,5],[5,2],[21,32],[8,11],[12,6],[21,14],[20,25],[1,2],[10,44],[-10,38],[-6,7],[-15,6],[-6,-6],[-15,-26],[-16,26],[-4,5],[-21,4],[-14,36],[-7,16],[-21,14],[-7,16],[7,30],[3,15],[18,25],[21,13],[5,7],[13,46],[3,3],[20,2],[8,-5],[13,-13],[9,13],[-2,45],[-7,34],[-2,11],[2,16],[5,30],[-5,22],[-21,-18],[-5,-4],[-15,-31],[-5,-15],[-16,-20],[-21,11],[-8,9],[-13,33],[-8,-33],[-13,-21],[-20,-10],[-3,-14],[3,-9],[7,-36],[-7,-33],[-21,-6],[-4,-7],[-17,-18],[-21,-24],[-2,-3],[-18,-9],[-21,-1],[-17,-35],[-4,-10],[-21,-9],[-8,19],[8,42],[1,3],[-1,2],[-20,32],[-10,11],[10,12],[20,23],[21,-20],[21,-12],[21,2],[20,16],[13,25],[-13,14],[-20,19],[-6,12],[-15,40],[-3,5],[-7,46],[10,44],[0,1],[17,46],[4,9],[20,15],[21,13],[21,3],[4,5],[10,45],[7,5],[20,9],[11,-14],[10,-23],[9,23],[12,36],[5,10],[16,31],[21,1],[20,-5],[21,0],[8,18],[-8,11],[-17,34],[14,46],[3,2],[8,-2],[13,-3],[21,-11],[16,-32],[4,-20],[5,20],[16,21],[21,-12],[21,-7],[1,-2],[19,-11],[21,-9],[14,20],[-14,17],[-15,29],[-6,29],[-20,-7],[-15,23],[-6,8],[-10,-8],[-11,-9],[-15,9],[0,45],[-6,27],[-13,19],[13,5],[21,9],[18,-14],[3,-4],[6,4],[15,4],[20,10],[20,-14],[1,-2],[21,1],[0,1],[13,45],[-13,17],[-21,12],[-6,16],[6,18],[21,8],[15,20],[6,8],[20,25],[21,-5],[21,10],[5,7],[16,27],[13,18],[-13,21],[-21,-16],[-9,-5],[-12,-16],[-21,-4],[-20,6],[-21,-31],[-21,-24],[-21,-9],[-6,-12],[-14,-34],[-21,-7],[-21,14],[-14,27],[14,27],[21,6],[15,12],[-15,15],[-21,1],[-21,11],[-20,-23],[-1,-4],[-12,-45],[-8,-22],[-21,21],[-1,1],[-20,4],[-20,7],[-21,-8],[-4,-3],[4,-35],[0,-11],[0,-1],[-21,-17],[-21,10],[-21,-13],[-4,21],[-16,20],[-19,26],[-2,25],[-9,20],[9,3],[21,-2],[1,-1],[19,-27],[12,27],[-6,45],[-6,5],[-20,20],[-10,21],[-11,41],[-1,4],[1,2],[6,-2],[15,-11],[7,11],[13,10],[14,-10],[7,-6],[21,-6],[21,-17],[21,28],[0,1],[0,1],[-21,22],[-9,22],[9,24],[11,22],[10,16],[17,29],[3,8],[9,-8],[12,-9],[10,9],[2,45],[-6,46],[8,45],[-2,46],[0,45],[-3,7]],[[9979,275],[-7,18],[-21,-31],[-10,-10],[-4,-46],[14,-45],[-21,-23],[-21,-1],[-20,8],[-21,-6],[-21,-6],[-21,21],[-1,7],[1,7],[6,38],[4,46],[-10,24],[-14,-24],[-7,-15],[-15,-31],[-5,-18],[-7,18],[-14,16],[-21,-11],[-6,-5],[-15,-15],[-20,9],[-2,6],[-7,46],[9,26],[11,19],[9,13],[13,32],[8,19],[21,7],[9,20],[-9,19],[-21,0],[-21,10],[-5,16],[-5,45],[-4,46],[-6,38],[-12,-38],[-4,-46],[1,-45],[-6,-19],[-21,-2],[-19,21],[-2,8],[0,-8],[0,-10],[4,-35],[-4,-3],[-20,-13],[-21,0],[-6,-30],[6,-32],[3,-13],[-2,-45],[-1,-1],[-21,-7],[-8,8],[-8,45],[-5,7],[-10,-7],[-10,-8],[-21,8],[5,45],[14,46],[2,9],[5,36],[-5,6],[-21,15],[-6,24],[-15,27],[-17,19],[-4,4],[-10,-4],[-11,-12],[-9,-34],[9,-45],[-3,-45],[-17,-44],[-1,-2],[1,-2],[12,-43],[4,-45],[-16,-25],[-19,-21],[-2,-1],[-2,1],[-19,27],[-21,-15],[-20,-2],[-21,1],[-21,-6],[-2,-5],[-19,-37],[-7,-8],[-3,-45],[-10,-8],[-21,-1],[-6,9],[-15,32],[-21,-10],[-10,23],[-10,11],[-8,-11],[-13,-21],[-12,21],[-6,45],[-3,9],[-6,-9],[-15,-17],[-9,-28],[-2,-45],[-10,-12],[-17,12],[-3,4],[-12,41],[-1,45],[-8,20],[-11,-20],[-10,-10],[-16,10],[-5,3],[-5,-3],[-15,-45],[0,-2],[-21,-24],[-17,26],[-4,12],[-21,10],[-9,23],[-11,28],[-9,18],[-12,23],[-21,-1],[-21,-12],[-20,1],[-16,34],[16,45],[20,14],[21,-9],[21,-2],[1,-3],[20,-18],[20,-12],[21,16],[4,14],[-4,6],[-19,40],[17,45],[2,3],[3,-3],[18,-14],[11,14],[10,25],[9,-25],[11,-36],[13,36],[8,15],[11,30],[10,19],[15,-19],[6,-25],[4,-20],[12,-45],[4,-7],[7,7],[14,23],[7,22],[-7,43],[0,2],[-9,46],[9,18],[21,-6],[8,-12],[10,-46],[3,-9],[13,9],[8,6],[6,-6],[14,-10],[18,-35],[3,-7],[9,7],[12,25],[13,-25],[8,-12],[4,12],[-4,45],[0,1],[-21,6],[-20,39],[-1,24],[-3,21],[-18,15],[-20,17],[-6,14],[6,10],[20,29],[21,-1],[3,7],[8,45],[10,19],[21,-16],[4,-3],[16,-21],[6,21],[-1,46],[-5,14],[-20,7],[-21,9],[-11,15],[11,22],[5,23],[16,33],[20,11],[2,2],[15,45],[4,3],[21,36],[4,6],[17,17],[14,-17],[-2,-45],[-3,-45],[11,-9],[21,-4],[1,13],[-1,7],[-4,38],[4,18],[9,27],[12,15],[21,12],[1,19],[19,29],[20,16],[1,1],[2,-1],[19,-9],[6,9],[5,45],[-11,12],[-21,5],[-21,6],[-19,-23],[-1,-1],[-1,1],[-1,46],[2,4],[20,16],[16,25],[5,14],[20,31],[-20,28],[-12,18],[-9,13],[-17,32],[-3,13],[-21,15],[-21,17],[0,1],[21,15],[21,4],[20,10],[21,-3],[19,-27],[2,-1],[2,1],[-2,6],[-11,40],[-10,45],[0,3],[0,-3],[-21,-30],[-20,25],[-21,-9],[-11,14],[-10,10],[-15,36],[-6,9],[-20,20],[-8,16],[-13,15],[-18,30],[-1,46],[19,29],[21,14],[1,2],[-1,11],[-21,-1],[-21,2],[-14,-12],[-7,-11],[-20,-31],[-7,-3],[7,-2],[16,-44],[4,-26],[8,-19],[13,-16],[21,-7],[10,-22],[11,-19],[11,-27],[-4,-45],[-7,-33],[-4,-13],[4,-19],[7,-26],[13,-12],[21,-14],[12,-19],[9,-21],[18,-25],[-18,-17],[-19,-28],[1,-45],[-3,-40],[-1,-6],[-20,-17],[-20,-2],[-21,1],[-5,18],[-16,26],[-11,20],[-7,45],[-3,9],[-1,-9],[-5,-45],[1,-46],[5,-13],[11,-32],[-2,-45],[-9,-13],[-20,-3],[-21,0],[-14,16],[-7,6],[-9,-6],[9,-46],[0,-2],[3,-43],[-3,-10],[-21,-32],[-20,17],[-16,25],[-5,22],[-19,23],[-2,11],[0,-11],[-19,-45],[14,-45],[5,-5],[21,-19],[17,-22],[-16,-45],[-1,-3],[-21,-17],[-12,-25],[-3,-46],[-6,-26],[-6,-19],[-15,-11],[-5,11],[-11,45],[-4,6],[-21,32],[-15,-38],[1,-45],[-7,-32],[-3,-13],[-18,-37],[-17,37],[-2,45],[-1,7],[-21,13],[-21,-9],[-5,-11],[5,-23],[5,-22],[-5,-46],[-21,28],[-9,18],[-11,15],[-14,-15],[-7,-46],[18,-45],[-18,-4],[-4,4],[-17,20],[-21,-6],[-9,-14],[-11,-5],[-8,5],[-13,9],[-12,-9],[-9,-8],[-21,-22],[-20,27],[-1,3],[1,3],[20,20],[15,22],[6,20],[21,22],[21,-1],[2,5],[-1,45],[19,39],[4,6],[-4,25],[-20,13],[-21,6],[-21,-1],[-1,3],[-6,45],[-4,45],[11,26],[21,17],[21,-2],[7,5],[13,10],[10,-10],[11,-15],[14,15],[7,8],[9,-8],[12,-11],[6,11],[2,45],[-8,17],[-21,22],[-6,6],[6,6],[21,12],[20,7],[14,21],[-10,45],[-4,17],[-20,5],[-21,21],[-1,2],[1,6],[13,40],[-8,45],[-5,14],[-21,17],[-13,14],[13,15],[21,22],[7,9],[14,26],[20,17],[7,2],[6,45],[8,28],[10,18],[-10,17],[-21,-10],[-13,-7],[-7,-5],[-21,-26],[-9,-15],[-12,-9],[-21,-1],[-20,-34],[-13,44],[13,24],[20,8],[4,14],[17,19],[21,14],[8,12],[13,17],[20,22],[4,7],[-4,15],[-20,12],[-21,10],[-21,4],[-1,4],[1,1],[21,11],[8,33],[3,46],[10,29],[5,16],[-5,9],[-13,36],[13,34],[9,12],[11,23],[10,22],[-8,45],[-2,2],[-1,-2],[-19,-25],[-21,3],[-17,22],[-4,14],[-20,-14],[13,-45],[-14,-38],[-20,-5],[-3,-2],[-18,-19],[-14,19],[-7,14],[-20,-14],[-1,-6],[-20,-27],[-19,33],[-2,2],[-9,-2],[-12,-5],[-2,5],[2,45],[9,45],[7,46],[5,12],[21,28],[5,5],[15,27],[5,18],[10,46],[-15,15],[-20,-15],[-1,0],[-5,-46],[-15,-16],[-21,-3],[-14,-26],[-7,-28],[-21,-15],[-20,14],[-18,29],[-3,17],[-5,-17],[5,-22],[5,-23],[16,-19],[18,-27],[-18,-38],[-10,-7],[-11,-15],[-15,-30],[-6,-16],[-16,-30],[16,-9],[21,-14],[12,-22],[-6,-45],[15,-15],[14,15],[6,7],[21,-7],[0,-1],[21,-40],[2,-5],[-2,-3],[-21,-10],[-19,-32],[19,-45],[21,-30],[9,-16],[-9,-15],[-21,5],[-11,-35],[-7,-46],[5,-45],[13,-29],[21,9],[21,-25],[-1,-46],[1,-1],[21,-17],[15,-27],[5,-18],[8,-27],[13,-22],[20,-24],[-8,-45],[-12,-23],[-21,-16],[-20,15],[-10,-21],[10,-28],[4,-18],[-4,-14],[-21,-28],[-2,-3],[-12,-45],[-7,-5],[-5,5],[-16,41],[-6,4],[-15,10],[-9,35],[9,32],[5,14],[-5,32],[-20,-13],[-21,-4],[-21,-14],[-21,18],[-14,26],[-6,12],[-19,33],[-2,10],[-3,-10],[-15,-45],[18,-15],[16,-30],[5,-11],[10,-35],[-10,-34],[-8,-11],[8,-9],[20,-3],[8,12],[13,16],[17,-16],[4,-8],[13,-37],[-13,-19],[-21,-17],[-3,-10],[3,-45],[0,-1],[21,0],[21,-8],[14,9],[6,3],[21,1],[2,-4],[-2,-36],[0,-9],[0,-5],[21,-34],[21,1],[2,-8],[-2,-5],[-21,3],[-19,-43],[-2,-30],[-2,-15],[-6,-46],[-13,-15],[-7,15],[-4,46],[-9,22],[-21,-9],[-3,-13],[-9,-46],[-9,-7],[-14,7],[-7,6],[-3,-6],[-17,-24],[-16,24],[-5,7],[-9,-7],[2,-45],[7,-38],[2,-8],[-2,-2],[-21,-12],[-21,8],[-4,6],[-16,32],[-21,-19],[-21,-6],[-13,39],[2,45],[-10,18],[-12,-18],[-8,-12],[-16,-33],[-5,-10],[-10,-36],[-11,-23],[-21,-14],[-13,-8],[-8,-6],[-20,-10],[-21,-8],[-17,24],[17,33],[12,12],[6,46],[-18,35],[-4,10],[4,11],[21,32],[1,3],[19,22],[21,3],[21,2],[8,18],[13,24],[11,21],[10,33],[5,13],[-5,10],[-21,-3],[-6,-7],[-15,-14],[-21,-10],[-18,24],[-3,2],[-3,-2],[-17,-14],[-21,-7],[-15,-25],[-6,-6],[-3,6],[-9,46],[12,21],[7,24],[-7,35],[-21,1],[-20,-1],[-9,10],[-12,35],[-3,11],[3,5],[21,17],[20,23],[-5,45],[1,46],[4,11],[21,22],[21,12],[21,-1],[1,1],[5,45],[-6,26],[-21,-10],[-21,0],[-21,8],[-16,22],[1,45],[-5,8],[-2,-8],[-1,-45],[-18,-46],[1,-45],[-1,-3],[-16,-42],[-5,-13],[-18,13],[12,45],[6,38],[18,7],[-18,3],[-19,43],[0,45],[-2,5],[-4,-5],[-16,-27],[-21,-12],[-14,-6],[-7,-17],[-21,10],[-20,-8],[-21,-15],[-21,13],[-21,-5],[-21,-23],[-16,45],[16,36],[11,9],[10,9],[21,10],[21,7],[21,-4],[18,23],[2,16],[6,30],[15,17],[21,24],[6,4],[15,12],[20,26],[11,7],[10,14],[21,32],[18,45],[-18,35],[-21,4],[-6,7],[-15,21],[-6,24],[-8,45],[2,46],[10,45],[-13,45],[3,46],[-8,13],[-4,-13],[-5,-46],[-2,-45],[-10,-31],[-18,-14],[18,-11],[13,-35],[-8,-45],[-5,-15],[-21,-26],[-7,-4],[7,-9],[9,-37],[-7,-45],[-2,-4],[-6,4],[-15,14],[-16,31],[-4,43],[-9,-43],[-12,-15],[-21,-7],[-21,-20],[-8,-3],[8,-5],[21,-11],[21,-1],[21,-9],[9,-20],[-9,-21],[-11,-24],[-10,-13],[-21,-12],[-21,4],[-21,-6],[-20,-2],[-8,-16],[-6,-46],[-7,-17],[-21,-20],[-21,4],[-20,9],[-5,-21],[-10,-45],[-6,-8],[-21,-4],[-9,12],[-12,8],[-20,37],[17,45],[3,7],[13,39],[8,16],[17,29],[-7,45],[-10,28],[-16,-28],[-5,-22],[-12,-23],[-8,-6],[-20,6],[-1,0],[0,-2],[3,-43],[-3,-9],[-12,-37],[-9,-12],[-10,12],[-9,46],[0,45],[-2,2],[-20,8],[-21,-2],[-21,0],[-21,25],[-7,12],[-14,30],[-13,16],[1,45],[12,27],[21,16],[5,3],[-5,5],[-21,12],[-20,-8],[-21,25],[-5,11],[5,19],[10,26],[-5,46],[-1,45],[8,45],[9,26],[7,20],[-3,45],[-4,11],[-3,-11],[-18,-36],[-10,-9],[-4,-46],[-7,-14],[-9,-31],[-1,-45],[-11,-25],[-20,-5],[-4,-16],[4,-12],[20,-31],[1,-2],[8,-45],[12,-19],[10,-27],[-10,-32],[-21,1],[-3,-14],[-17,-29],[-21,-14],[-3,-3],[-18,-10],[-6,10],[-4,46],[-11,14],[-20,9],[-21,4],[-11,18],[-10,14],[-18,32],[-3,3],[-11,-3],[-9,-3],[-2,3],[-19,45],[0,1],[-21,19],[-14,25],[14,26],[21,4],[21,5],[20,-20],[11,-15],[10,-23],[11,23],[10,17],[21,17],[6,12],[-6,12],[-21,17],[-8,16],[-3,45],[11,18],[5,28],[9,45],[7,18],[8,27],[2,46],[8,45],[-18,26],[-8,19],[-13,32],[-8,14],[-5,45],[0,45],[-3,46],[-4,45],[-1,13],[-1,-13],[-3,-45],[-5,-46],[1,-45],[2,-45],[-15,-44],[-1,-2],[1,-1],[21,-20],[17,-24],[-1,-45],[-3,-46],[-13,-23],[-21,-5],[-20,7],[-16,-24],[15,-45],[-20,-41],[-21,35],[-4,6],[-17,34],[-7,11],[-14,29],[-15,-29],[6,-45],[9,-26],[10,-20],[-10,-24],[-20,17],[-8,7],[-13,19],[-12,27],[-9,18],[-13,27],[-8,14],[-10,-14],[-10,-12],[-21,3],[-21,1],[-5,8],[-16,42],[-2,3],[-18,38],[-3,8],[-15,45],[-3,15],[-7,30],[7,16],[16,30],[-8,45],[-8,11],[-5,-11],[-16,-22],[-8,22],[-10,45],[-3,6],[-20,17],[-21,7],[-6,16],[4,45],[-12,45],[-7,22],[-7,24],[-3,45],[0,45],[10,30],[8,16],[13,32],[4,13],[17,43],[0,3],[20,39],[5,6],[16,41],[3,4],[18,32],[21,11],[20,0],[21,2],[1,1],[-1,1],[-21,5],[-20,1],[-21,8],[-21,-10],[-21,-4],[-15,44],[-1,45],[-1,46],[-2,45],[-1,5],[-1,-5],[-4,-45],[-13,-46],[12,-45],[6,-19],[19,-26],[-8,-46],[-11,-26],[-9,-19],[-12,-25],[-18,-20],[-3,-5],[-14,-41],[-7,-18],[-21,13],[-1,5],[-1,46],[-18,33],[-6,12],[-15,38],[-10,7],[-11,7],[-17,39],[-4,7],[-20,19],[-10,19],[-11,14],[-15,31],[0,46],[-2,45],[-4,32],[-12,13],[-9,3],[-1,-3],[1,-22],[5,-23],[-5,-8],[-7,-37],[-11,-46],[18,-22],[11,-23],[-11,-31],[-8,-14],[8,-16],[21,-10],[10,-20],[-10,-34],[-5,-11],[5,-14],[9,-31],[8,-46],[4,-40],[2,-5],[-2,-3],[-19,-43],[19,-19],[11,-26],[-2,-45],[12,-13],[20,-23],[6,-10],[15,-13],[21,-14],[18,-18],[3,-4],[20,-2],[21,-24],[7,-15],[13,-46],[1,-1],[21,-12],[19,-32],[2,-4],[17,-41],[3,-9],[12,-37],[5,-45],[4,-38],[2,-7],[-2,-10],[-21,-16],[-15,26],[-5,12],[-21,30],[-3,3],[-18,28],[-10,17],[-11,16],[-6,-16],[6,-15],[12,-30],[9,-22],[7,-23],[14,-27],[11,-19],[10,-25],[20,-12],[4,-8],[17,-45],[21,26],[14,-26],[7,-16],[13,-30],[7,-19],[21,-22],[4,-4],[17,-11],[21,-22],[20,-6],[4,-6],[15,-46],[2,-1],[21,-29],[6,-15],[15,-28],[6,-17],[-2,-46],[16,-14],[19,-31],[2,-8],[21,-11],[16,-27],[5,-21],[21,-11],[20,18],[16,-31],[-7,-45],[0,-46],[12,-13],[14,13],[7,16],[9,30],[12,26],[20,-13],[8,-13],[12,-46],[1,0],[1,0],[20,29],[21,-3],[7,-26],[12,-45],[1,-4],[3,4],[10,45],[8,18],[21,-14],[21,17],[20,-2],[21,-3],[20,-16],[1,-1],[21,-25],[11,-19],[10,-11],[17,-34],[3,-18],[16,-28],[-10,-45],[-2,-45],[14,-46],[3,-14],[11,14],[8,46],[0,45],[2,4],[21,17],[8,-21],[-8,-31],[-17,-14],[2,-46],[10,-45],[5,-4],[20,-33],[4,-8],[17,-30],[21,1],[17,-17],[4,-5],[10,5],[10,5],[21,22],[12,-27],[9,-15],[21,-17],[5,32],[15,39],[4,7],[8,45],[-12,34],[-5,11],[5,9],[21,-8],[1,-1],[17,-45],[3,-2],[7,2],[4,45],[10,18],[21,-10],[7,-8],[13,-12],[21,-18],[8,-15],[13,-31],[7,-14],[4,-46],[10,-9],[17,-36],[3,-35],[1,-10],[-1,-5],[-4,5],[-16,10],[-14,-10],[-3,-46],[-4,-10],[-21,-29],[-5,-6],[3,-45],[2,-45],[7,45],[14,9],[17,-9],[4,-2],[5,2],[15,4],[7,-4],[4,-46],[10,-23],[21,5],[13,-27],[-11,-46],[-2,-10],[-13,-35],[-8,-43],[-21,19],[-20,-8],[-16,32],[-5,9],[-21,29],[-10,7],[-11,6],[-20,2],[-21,17],[-21,-20],[-21,37],[-8,4],[-13,28],[-1,17],[1,15],[3,31],[18,45],[-21,22],[-20,-6],[-21,6],[-11,23],[-10,14],[-21,18],[-20,9],[-8,5],[-13,9],[-21,8],[-21,8],[-8,20],[-12,25],[-12,20],[-9,16],[-21,6],[-21,17],[-20,-15],[-21,-24],[20,-45],[-20,-20],[-21,-7],[-15,27],[15,44],[12,1],[-12,1],[-21,30],[-11,15],[-10,7],[-18,38],[-2,3],[-21,-2],[-21,14],[-11,30],[-10,36],[-8,10],[-9,45],[-3,11],[-21,1],[-21,8],[-12,25],[-9,28],[-20,-9],[-21,8],[-21,-21],[-14,40],[-7,9],[-20,22],[-15,14],[-6,4],[-21,-2],[-21,26],[-13,17],[-8,35],[-2,11],[-18,27],[-11,18],[-10,26],[-10,19],[-11,45],[0,1],[-21,22],[-18,23],[-2,2],[-20,44],[-1,1],[-21,5],[-21,8],[-20,-12],[-21,14],[-13,-16],[3,-46],[10,-34],[4,-11],[-4,-4],[-5,4],[-16,20],[-21,-5],[-20,13],[-21,14],[-4,3],[-17,24],[-21,11],[-9,11],[9,14],[21,10],[21,13],[4,8],[-4,10],[-13,35],[-8,23],[-21,-5],[-21,16],[-20,-7],[-21,18],[0,1],[-21,35],[-4,10],[-17,24],[-12,-24],[-8,-11],[-21,4],[-21,-32],[-21,21],[-4,18],[-10,45],[-6,15],[-9,-15],[-12,-12],[-21,-8],[-17,20],[11,46],[-15,32],[-12,13],[-8,8],[-9,-8],[-12,-29],[-21,-3],[-21,13],[-8,19],[-11,45],[-2,5],[-4,-5],[-12,-45],[-4,-6],[-13,6],[-8,4],[-21,10],[-21,14],[-20,12],[-5,5],[-16,9],[-21,15],[-21,6],[-14,16],[-6,18],[-11,27],[-10,45],[0,2],[-1,-2],[-5,-45],[4,-45],[2,-32],[2,-14],[19,-25],[20,2],[21,-11],[6,-11],[-6,-25],[-21,-5],[-20,8],[-21,-11],[-10,-12],[-11,-12],[-8,12],[3,45],[-16,40],[-20,-35],[-4,-5],[-10,-45],[-7,-7],[-21,0],[-11,7],[4,45],[-5,45],[-9,30],[-21,-13],[-20,-15],[-21,29],[-12,15],[-9,6],[-21,15],[-10,24],[10,45],[0,46],[-16,45],[-4,8],[-17,-8],[-4,-11],[-2,-34],[-3,-46],[-16,-16],[-21,-6],[-20,10],[-11,12],[-10,10],[-21,21],[-11,15],[-10,13],[-20,17],[-15,15],[-4,45],[19,19],[15,27],[5,7],[5,-7],[16,-28],[21,-11],[16,-7],[5,-1],[20,-12],[21,11],[2,2],[-2,4],[-21,20],[-10,22],[-10,22],[-21,6],[-10,17],[-11,25],[-7,20],[-9,46],[4,45],[-9,9],[-3,-9],[-9,-45],[-8,-8],[-18,8],[-3,2],[-19,43],[-2,5],[-21,37],[-3,3],[-18,15],[-17,-15],[15,-45],[2,-7],[11,-38],[-3,-46],[-8,-35],[-20,-9],[-21,24],[-14,20],[-7,12],[-21,33],[0,1],[-14,45],[5,45],[-11,46],[-11,45],[-6,46],[12,45],[-16,14],[-21,-6],[-4,-8],[-6,-45],[-11,-22],[-20,-5],[-10,-19],[-11,-21],[-21,18],[-3,3],[3,13],[3,33],[1,45],[-4,9],[-21,20],[-20,16],[0,1],[-21,41],[-2,4],[-19,20],[-21,12],[-19,13],[-2,2],[-20,38],[-20,5],[20,19],[10,27],[-10,18],[-8,27],[8,8],[20,9],[15,28],[6,22],[21,22],[21,-7],[21,-18],[12,-19],[2,-45],[6,-12],[17,-33],[4,-26],[3,-20],[2,-45],[16,-33],[13,-12],[8,-7],[4,7],[0,45],[16,37],[21,-36],[0,-1],[21,-32],[13,-13],[8,-9],[18,-37],[2,-6],[21,-19],[13,-20],[8,-11],[21,5],[3,6],[-3,30],[-2,15],[2,9],[14,37],[6,6],[21,15],[21,-15],[9,-6],[12,-9],[21,-3],[20,-19],[18,-15],[3,-3],[1,3],[8,46],[12,31],[12,14],[9,10],[9,-10],[7,-45],[4,-6],[21,-3],[21,-19],[9,-18],[-1,-45],[13,-32],[11,32],[9,19],[19,26],[2,3],[21,6],[6,-9],[15,-9],[20,-11],[21,-23],[21,19],[21,15],[6,9],[-6,9],[-21,11],[-21,9],[-21,8],[-10,9],[10,15],[21,13],[21,8],[15,9],[-15,10],[-21,-1],[-21,1],[-20,9],[-13,26],[-8,7],[-19,-7],[19,-13],[14,-32],[-14,-19],[-21,8],[-16,11],[-5,10],[-17,35],[17,36],[6,10],[-3,45],[5,45],[13,8],[21,18],[21,1],[20,6],[21,-16],[21,-1],[21,28],[2,2],[19,15],[15,-15],[5,-7],[3,7],[18,27],[21,-4],[21,-17],[5,-6],[15,-12],[21,3],[21,2],[21,-6],[8,13],[12,35],[11,10],[-11,3],[-20,3],[-21,8],[-21,14],[-14,17],[0,46],[14,16],[21,3],[21,18],[20,8],[-20,45],[-1,0],[-20,6],[-21,27],[-12,-33],[-9,-8],[-7,8],[-13,14],[-21,10],[-21,-19],[-21,7],[-20,11],[-15,23],[9,45],[6,43],[1,2],[-1,1],[-14,45],[-2,45],[-5,16],[-8,-16],[0,-45],[-13,-29],[-15,-17],[-6,-33],[-1,-12],[-17,-45],[-3,-4],[-20,-5],[-21,9],[-11,-46],[11,-11],[21,-28],[1,-6],[-1,-8],[-21,-37],[-21,3],[-4,-3],[-17,-18],[-14,18],[-6,7],[-21,-7],[-6,-46],[-15,-25],[-16,25],[-5,9],[-20,4],[-8,-13],[-11,-45],[-2,-7],[-21,-32],[-3,-6],[-18,-30],[-20,-2],[-14,-14],[-7,-8],[-9,8],[-12,27],[-6,19],[6,14],[9,31],[12,41],[2,4],[19,31],[9,15],[11,45],[0,2],[21,18],[15,25],[6,16],[19,30],[-19,9],[-21,8],[-15,-17],[-6,-7],[-20,-19],[-21,-3],[-7,29],[-14,41],[-15,-41],[-6,-15],[-21,-20],[-16,-11],[-3,-45],[-1,-2],[-21,-9],[-8,11],[-4,45],[12,10],[19,36],[2,11],[7,34],[13,39],[21,-32],[21,-1],[21,24],[21,5],[6,10],[14,24],[21,22],[8,45],[13,16],[21,17],[10,12],[-7,46],[1,45],[-4,11],[-6,-11],[-15,-35],[-6,-10],[-15,-25],[-21,-2],[-17,27],[-3,3],[-6,-3],[-9,-46],[-6,-26],[-12,-19],[-9,-5],[-10,5],[6,45],[-17,31],[-5,15],[5,8],[19,37],[-19,19],[-18,27],[-1,45],[6,45],[13,43],[1,3],[4,45],[-5,14],[-4,-14],[-17,-35],[-4,-10],[-13,-46],[-3,-5],[-21,-36],[-4,-4],[-17,-45],[0,-1],[-1,1],[-20,2],[-3,-2],[-17,-24],[-21,24],[0,-3],[4,-43],[-4,-13],[-16,-32],[-5,-7],[-4,7],[-17,28],[-8,17],[-12,22],[-21,4],[-7,20],[7,38],[21,-3],[2,10],[-2,4],[-16,41],[16,37],[4,9],[1,45],[-3,45],[-2,4],[-2,-4],[-16,-45],[-3,-4],[-14,-41],[-7,-15],[-21,-11],[-20,-16],[-2,-4],[2,-9],[8,-36],[3,-45],[-11,-34],[-5,-12],[-16,-21],[-21,5],[-21,-1],[-6,17],[-15,43],[-8,3],[3,45],[2,45],[3,17],[21,20],[1,9],[-1,19],[-21,-6],[-20,10],[-8,-23],[-13,-27],[-20,-19],[-1,0],[-21,-19],[-20,0],[-21,12],[-5,7],[5,24],[8,22],[-8,24],[-4,21],[4,18],[7,27],[-7,38],[-1,8],[1,6],[21,37],[1,2],[-1,1],[-21,8],[-15,36],[-3,46],[-3,12],[-5,-12],[-3,-46],[-13,-35],[-20,4],[-17,31],[-4,20],[-9,26],[-8,45],[-4,6],[-16,39],[-4,46],[-1,2],[-20,2],[-4,-4],[4,-20],[7,-26],[9,-45],[-1,-45],[5,-18],[8,-28],[13,-43],[1,-2],[20,-39],[6,-6],[15,-26],[6,-20],[-5,-45],[-1,-2],[-2,2],[-19,19],[-21,22],[-21,-8],[-20,-13],[-21,-5],[-21,0],[-20,30],[-1,4],[-1,42],[1,10],[15,35],[-13,45],[-2,7],[-21,6],[-14,33],[-6,13],[-8,-13],[-2,-46],[10,-31],[6,-14],[-6,-10],[-21,-19],[-21,29],[0,1],[-11,44],[7,46],[-12,45],[-5,16],[-10,-16],[-10,-38],[-2,-7],[-19,-29],[-17,29],[-4,14],[-15,-14],[-6,-3],[-20,-7],[-15,10],[-6,6],[-21,0],[-19,39],[-1,45],[-1,12],[-3,-12],[-7,-45],[-6,-45],[16,-18],[21,-28],[-16,-45],[-5,-7],[-6,7],[-14,31],[-9,14],[-3,46],[-9,13],[-5,-13],[-16,-22],[-21,-1],[-17,23],[-3,43],[-1,2],[-19,45],[-1,4],[-6,-4],[-3,-45],[-5,-45],[-7,-12],[-21,4],[-6,8],[-15,10],[-20,20],[-21,9],[-4,6],[-17,16],[-18,-16],[-3,-23],[-1,-22],[1,-2],[21,0],[21,-16],[21,-21],[3,-7],[17,-28],[10,-17],[-10,-18],[-20,-18],[-4,-9],[4,-5],[20,-13],[21,-27],[21,0],[0,-1],[0,-1],[-21,0],[-8,-44],[-13,-27],[-20,-18],[20,-10],[21,-5],[17,-31],[4,-24],[6,-21],[15,-39],[21,-1],[2,-5],[18,-39],[5,-7],[-5,-4],[-3,4],[-17,40],[-21,2],[-4,4],[-17,31],[-21,-22],[-4,-9],[4,-7],[14,-39],[-14,-32],[-21,1],[-20,-4],[-21,17],[-18,-27],[-3,-8],[-21,-19],[-20,-8],[-20,-11],[18,-45],[2,-3],[20,-10],[21,-17],[6,-15],[0,-46],[-6,-10],[-21,-7],[-20,-16],[-21,-5],[-4,-7],[-5,-45],[-5,-46],[-7,-8],[-8,8],[-13,14],[-20,7],[-21,7],[-21,15],[-11,3],[11,13],[8,32],[13,12],[12,-12],[9,-10],[20,8],[2,2],[-2,43],[0,2],[0,2],[2,44],[-2,6],[-10,39],[10,36],[3,9],[1,46],[17,33],[8,12],[13,27],[21,7],[9,12],[11,24],[21,4],[21,9],[13,8],[-13,7],[-21,26],[-4,12],[-17,23],[-11,23],[-9,15],[-14,-15],[12,-46],[-6,-45],[-13,-16],[-16,16],[-5,2],[-3,-2],[-18,-26],[-20,-19],[13,-46],[-4,-45],[-9,-9],[-21,-4],[-14,13],[-7,5],[-3,-5],[3,-46],[14,-45],[-14,-29],[-21,-11],[-20,4],[-21,10],[-5,-19],[-4,-46],[-6,-45],[-6,-9],[-21,-5],[-21,-11],[-20,2],[-16,23],[-5,8],[-18,37],[18,45],[21,-7],[20,8],[-20,14],[-9,31],[9,23],[20,6],[21,8],[21,0],[5,8],[-2,46],[5,45],[-8,22],[-21,-21],[0,-1],[-16,-45],[-5,-9],[-20,9],[-21,-22],[-21,-9],[-17,31],[-1,45],[13,46],[-16,22],[-16,-22],[-4,-8],[-21,-27],[-21,1],[-1,-12],[1,-2],[13,-43],[8,-43],[1,-3],[20,-16],[20,-28],[1,-1],[10,-45],[-11,-20],[-20,-17],[-21,-6],[-12,-3],[-9,-3],[-21,-9],[-10,12],[-10,13],[-21,31],[-1,2],[-20,36],[-4,9],[-14,45],[-3,8],[-20,-7],[-21,29],[-11,16],[-10,18],[-21,26],[0,1],[-21,32],[-8,14],[-12,22],[-9,23],[-5,45],[-7,8],[-15,38],[-6,23],[-9,22],[-10,45],[-2,11],[-8,35],[-12,36],[-15,9],[-6,2],[-20,43],[-1,3],[-7,-3],[7,-6],[19,-39],[2,-8],[7,-37],[7,-46],[7,-20],[10,-25],[10,-31],[8,-14],[-8,-36],[-7,-10],[7,-4],[21,-30],[3,-11],[12,-45],[6,-27],[4,-19],[11,-45],[6,-8],[20,-16],[21,0],[14,-22],[7,-25],[21,-17],[1,-3],[20,-26],[9,-19],[11,-31],[5,-15],[1,-45],[-6,-12],[-15,12],[-5,9],[-21,1],[-5,-10],[-16,-22],[-14,22],[-7,13],[-21,5],[-20,10],[-21,-4],[-8,21],[-10,46],[-3,3],[-15,-3],[-6,-5],[-20,-27],[-18,32],[-3,12],[-19,-12],[-2,-3],[-8,-43],[3,-45],[-16,-10],[-2,10],[-16,45],[-2,14],[-21,26],[-5,6],[-16,12],[-13,-12],[10,-46],[3,-6],[13,-39],[-13,-27],[-18,-18],[18,-9],[21,-11],[21,-17],[5,-9],[-5,-16],[-4,-29],[4,-19],[20,5],[17,-31],[4,-7],[5,7],[13,45],[3,5],[4,-5],[17,-10],[20,-34],[3,-1],[16,-46],[2,-1],[3,1],[-2,46],[20,33],[12,12],[-12,27],[-21,-7],[-17,25],[10,46],[7,18],[9,-18],[12,-24],[6,-22],[15,-30],[8,30],[12,27],[21,-9],[7,-18],[4,-45],[10,-40],[3,-5],[18,-31],[11,31],[-11,24],[-8,21],[8,12],[21,6],[12,-18],[8,-15],[18,-30],[3,-8],[21,2],[2,6],[19,45],[20,-2],[21,-34],[21,29],[21,-35],[9,-3],[11,-5],[15,-41],[6,-12],[21,-13],[21,-13],[4,-7],[7,-45],[9,-12],[20,-34],[-20,-22],[-14,22],[-6,24],[-21,9],[-21,12],[0,1],[-21,33],[-20,-2],[-21,-24],[-21,-3],[-13,-4],[3,-46],[-11,-34],[-3,-11],[-13,-45],[16,-18],[19,-28],[-19,-20],[-20,-14],[-21,4],[-21,9],[-21,9],[-20,12],[-1,0],[-14,46],[-6,3],[-5,-3],[-16,-25],[-21,5],[-21,18],[-1,2],[-19,30],[-15,-30],[-6,-13],[-21,-25],[-21,-3],[-20,34],[-6,7],[-15,30],[-5,15],[4,45],[-19,46],[-1,1],[-1,-1],[-20,-25],[-20,-5],[-21,14],[-21,16],[-21,18],[-20,3],[-21,11],[-21,-24],[-20,-8],[7,-46],[13,-7],[21,-4],[21,-17],[20,1],[17,-18],[-17,-42],[-20,13],[-21,13],[-21,-5],[-21,20],[0,1],[-8,45],[-13,29],[-15,-29],[1,-45],[-6,-14],[-21,3],[-19,11],[-2,2],[-21,9],[-20,10],[-21,8],[-21,11],[-3,5],[3,26],[21,16],[21,-23],[20,12],[21,11],[21,-9],[12,13],[-12,45],[5,45],[-5,42],[-1,4],[-10,45],[2,45],[9,21],[21,3],[20,16],[3,6],[-3,4],[-20,17],[-18,24],[-3,8],[-21,34],[-5,3],[-11,46],[5,45],[-3,45],[-7,11],[-13,-11],[-7,-10],[-4,10],[-14,46],[-3,6],[-7,-6],[-14,-17],[-10,17],[-11,20],[-20,-16],[-3,-4],[-18,-11],[-21,-14],[-21,8],[-20,9],[-21,-1],[-2,9],[-11,45],[6,46],[7,11],[21,8],[13,26],[7,29],[8,16],[-8,25],[-20,-12],[-15,-13],[-6,-7],[-21,2],[-12,-40],[-9,-19],[-11,19],[-10,18],[-10,27],[-10,20],[-14,26],[-7,13],[-21,19],[-6,13],[-15,38],[-3,7],[-17,23],[-9,23],[-9,45],[2,45],[13,46],[-18,6],[-4,-6],[-2,-46],[-15,-25],[-21,17],[-4,8],[-16,40],[-4,6],[-17,20],[-15,25],[-6,12],[-5,-12],[5,-14],[11,-31],[10,-25],[7,-21],[14,-39],[2,-6],[18,-41],[3,-4],[17,-46],[1,-2],[15,-43],[6,-25],[9,-20],[12,-35],[2,-11],[13,-45],[5,-7],[21,-24],[8,-14],[13,-24],[13,-22],[-13,-34],[-4,-11],[-17,-17],[-21,1],[-8,16],[-12,11],[-21,4],[-21,10],[-12,-25],[12,-26],[21,-5],[21,-5],[3,-10],[17,-30],[21,7],[21,2],[18,-24],[-18,-38],[-18,-7],[18,-4],[21,-5],[20,-19],[9,-18],[8,-45],[-17,-26],[-20,-14],[-21,28],[-21,-3],[-21,7],[-13,8],[-7,6],[-21,0],[-21,6],[-21,22],[-20,-5],[-21,2],[-12,14],[-9,14],[-21,7],[-20,2],[-21,16],[-4,7],[-17,36],[-8,9],[7,45],[-20,27],[-5,19],[-16,36],[-4,9],[-10,46],[-6,18],[-21,8],[-9,19],[-12,45],[0,1],[-21,27],[-20,-6],[-21,23],[0,1],[-21,11],[-15,34],[14,45],[-20,8],[-20,6],[-20,32],[-1,2],[-21,6],[-21,30],[-20,-13],[-21,-6],[-21,21],[-21,-28],[-21,7],[-16,26],[-4,15],[-15,-15],[-6,-3],[-6,3],[-15,6],[-20,39],[-1,3],[-20,6],[-21,16],[-18,21],[-3,2],[-21,22],[-17,21],[1,45],[16,35],[17,11],[-17,8],[-20,21],[-21,-24],[-21,40],[-21,20],[-14,25],[-6,15],[-21,11],[-15,20],[-6,6],[-21,12],[-19,27],[-2,2],[-17,43],[-3,16],[-8,30],[-13,28],[-8,17],[2,46],[6,14],[21,22],[11,9],[9,11],[13,-11],[8,-17],[9,17],[12,9],[21,16],[15,-25],[6,-20],[14,20],[6,7],[21,11],[21,26],[2,1],[-2,1],[-21,10],[-21,9],[-13,26],[13,35],[4,10],[17,40],[21,-7],[21,-4],[13,16],[7,19],[21,11],[8,16],[-8,17],[-13,28],[-8,19],[-20,-18],[-21,1],[-21,3],[-21,19],[-9,21],[-11,27],[-7,19],[7,30],[6,15],[0,45],[14,33],[7,13],[14,24],[21,-16],[3,-8],[14,-46],[4,-11],[5,11],[15,11],[21,1],[21,5],[10,-17],[11,-17],[13,-28],[7,-45],[1,0],[20,-15],[21,-4],[18,-27],[3,-5],[4,5],[11,46],[-15,16],[-21,27],[-1,2],[-9,45],[10,17],[21,-14],[7,43],[13,29],[16,16],[2,45],[-18,10],[-17,36],[10,45],[7,16],[15,29],[-15,29],[-20,-18],[-16,-11],[-5,-6],[-20,-39],[-1,-1],[-7,-44],[-8,-46],[-6,-20],[-20,-13],[-16,33],[-5,12],[-17,34],[-4,40],[-3,-40],[-1,-46],[-17,-28],[-20,28],[0,1],[-4,-1],[-17,-5],[-4,5],[-17,22],[-21,-1],[-10,25],[-10,32],[-9,13],[-7,45],[-5,12],[-6,-12],[0,-45],[-15,-38],[-21,-2],[-21,0],[-9,-5],[9,-7],[21,-3],[21,-1],[21,-3],[21,-24],[4,-8],[-4,-9],[-21,-36],[-21,-28],[-21,-5],[-18,-12],[18,-10],[21,-4],[11,-32],[-11,-30],[-8,-15],[4,-45],[4,-40],[1,-6],[-1,-1],[-21,-24],[-21,15],[-20,-35],[20,-28],[12,-17],[9,-12],[21,-1],[21,-10],[6,-23],[-6,-17],[-19,-28],[-2,-6],[-21,-38],[-1,-1],[-20,-17],[-20,7],[-21,-16],[-21,-3],[-21,5],[-20,10],[-6,14],[-8,45],[-7,9],[-18,36],[-3,9],[-10,-9],[-11,-8],[-20,-10],[-15,18],[-6,25],[-8,21],[-13,31],[-21,10],[-1,4],[1,3],[16,42],[5,16],[13,30],[-13,16],[-21,-3],[-20,1],[-17,31],[-4,10],[-21,15],[-11,20],[-3,46],[-7,15],[-21,17],[-16,-32],[-4,-5],[-7,5],[-14,13],[-21,3],[-21,0],[-20,3],[-16,26],[-5,12],[-19,33],[-2,7],[-12,39],[12,45],[0,2],[7,43],[-4,46],[-3,12],[-21,25],[-6,8],[6,6],[21,18],[21,1],[21,6],[4,14],[7,46],[9,22],[21,-9],[2,-13],[19,-34],[21,16],[13,-28],[7,-19],[16,-26],[5,-28],[2,28],[-2,10],[-13,35],[12,46],[-20,16],[-20,-5],[-21,12],[-16,22],[-5,5],[-21,22],[-11,19],[-9,17],[-21,-9],[-12,37],[-2,45],[-7,21],[-9,25],[-5,45],[14,39],[21,5],[3,1],[18,19],[20,22],[3,5],[-1,45],[-2,2],[-1,-2],[-19,-22],[-9,22],[-12,13],[-16,-13],[-5,-7],[-21,-38],[-20,-29],[-21,29],[8,45],[13,16],[18,29],[-18,34],[-8,12],[-13,18],[-16,-18],[-5,-10],[-21,-12],[-10,22],[-10,21],[-9,24],[-12,32],[-7,13],[2,46],[5,19],[15,26],[6,16],[5,29],[15,40],[4,6],[5,45],[12,28],[21,7],[8,10],[-8,43],[-21,-26],[-21,-5],[-20,9],[-21,-15],[-1,-6],[1,-1],[21,-38],[1,-6],[-1,-1],[-21,-19],[-13,-25],[-8,-19],[-13,19],[-8,31],[-8,-31],[0,-46],[8,-20],[6,-25],[-6,-23],[-19,-22],[17,-46],[2,-45],[21,-21],[13,-24],[8,-26],[6,-20],[15,-30],[12,-15],[-12,-16],[-10,16],[-11,27],[-21,-10],[-21,10],[-21,-3],[-11,-24],[-9,-21],[-21,-21],[-3,42],[-6,45],[-12,19],[-21,6],[-20,14],[-21,-14],[-12,21],[-9,13],[-8,-13],[-13,-16],[-18,-30],[-2,-8],[-21,-20],[-18,28],[-3,19],[-21,-3],[-20,10],[-12,20],[-9,34],[-6,11],[6,8],[8,37],[6,46],[7,27],[20,-21],[20,39],[1,2],[21,26],[21,1],[13,16],[7,13],[13,-13],[8,-6],[4,6],[-4,24],[-4,22],[-17,24],[-15,21],[-5,19],[-3,-19],[-18,-27],[-21,-4],[-21,2],[-9,-16],[-11,-14],[-18,14],[1,45],[-4,11],[-9,34],[-4,46],[13,16],[21,27],[2,2],[18,23],[21,-2],[21,11],[5,13],[10,46],[6,7],[13,-7],[7,-3],[21,-9],[10,12],[11,15],[21,6],[20,2],[21,19],[6,3],[-6,4],[-21,3],[-20,8],[-20,31],[-1,1],[-1,-1],[-20,-25],[-21,9],[-20,10],[-3,6],[-2,45],[5,13],[20,24],[16,8],[-16,12],[-12,34],[12,36],[4,9],[-4,17],[-5,28],[-15,33],[-21,-26],[-21,2],[-2,-9],[2,-22],[4,-23],[-4,-7],[-21,-20],[-10,-18],[-9,-46],[19,-45],[0,-4],[7,-41],[12,-46],[-19,-41],[-20,14],[-6,-18],[-15,-32],[-8,-14],[-13,-22],[-16,-23],[-5,-7],[-4,7],[-16,32],[-7,13],[-14,28],[-7,18],[0,45],[-13,46],[3,45],[-4,4],[-21,15],[-10,26],[0,46],[-11,6],[-9,-6],[-10,-46],[-1,-2],[-2,2],[-8,46],[-11,17],[-11,28],[-10,20],[-12,25],[-9,35],[-6,11],[-14,8],[-21,34],[-21,-17],[-21,-1],[-16,21],[-4,5],[-21,3],[-21,16],[-21,6],[-16,15],[-4,3],[-21,2],[-21,17],[-11,24],[-4,45],[15,28],[21,5],[21,-7],[15,19],[-15,12],[-21,-2],[-21,25],[-13,11],[-8,11],[-10,-11],[3,-46],[-12,-45],[-2,-2],[-9,-43],[-11,-26],[-21,0],[-21,-11],[-21,0],[-8,-9],[8,-12],[21,-12],[21,-21],[21,-29],[20,10],[20,-26],[1,-3],[21,-20],[21,2],[12,21],[9,10],[7,-10],[-4,-46],[17,-20],[16,20],[5,5],[3,-5],[18,-26],[21,-19],[-11,-45],[11,-30],[20,7],[21,-15],[21,-2],[21,7],[11,-13],[9,-45],[0,-4],[21,-29],[21,-7],[3,-5],[3,-46],[15,-23],[9,-22],[11,-17],[16,-29],[-11,-45],[-5,-19],[-10,-26],[10,-12],[21,-10],[21,-20],[5,-4],[10,-45],[6,-25],[21,-6],[10,-14],[10,-18],[8,-28],[-8,-16],[-20,-23],[-3,-6],[3,-14],[20,-9],[21,-22],[-21,-21],[-20,8],[-21,-12],[-21,1],[-21,20],[-21,-1],[-20,-15],[-21,-6],[-14,26],[-2,45],[-5,11],[-3,-11],[-14,-45],[2,-46],[-6,-15],[-20,-18],[-21,10],[-21,-13],[-21,32],[-3,4],[-17,7],[-21,20],[-21,1],[-21,-15],[-12,-13],[-8,-28],[-14,28],[-7,6],[-21,14],[-19,26],[-2,6],[-19,39],[-2,1],[-20,14],[-7,-15],[-7,-45],[14,-6],[20,-27],[6,-13],[15,-22],[21,-8],[8,-15],[10,-45],[3,-22],[5,-24],[-5,-30],[-5,-15],[1,-45],[4,-2],[21,-3],[20,-5],[21,7],[19,-43],[2,-4],[12,-41],[6,-45],[-15,-46],[-3,-8],[-21,4],[-2,4],[-7,46],[-12,16],[-20,-3],[-21,19],[-21,9],[-2,4],[-19,23],[-21,-2],[-20,21],[-16,3],[-5,1],[-21,33],[-6,12],[-7,45],[13,33],[21,12],[0,1],[-21,13],[-14,32],[-7,8],[-12,-8],[-8,-11],[-8,11],[-13,14],[-8,-14],[8,-39],[2,-7],[5,-45],[-5,-45],[-2,-9],[-21,-10],[-6,19],[-7,45],[-8,9],[-20,6],[-21,13],[-4,17],[-8,46],[12,31],[21,8],[4,6],[0,45],[4,46],[-6,45],[-2,6],[-21,11],[-6,-17],[-15,-34],[-12,-11],[-1,-46],[-8,-15],[-10,15],[-10,45],[-1,1],[1,1],[20,44],[-11,45],[-9,8],[-3,-8],[-18,-36],[-6,-9],[0,-45],[-6,-46],[-9,-20],[-9,20],[-12,15],[-21,19],[-3,12],[-13,45],[-4,15],[-21,0],[-21,-7],[-21,23],[-16,14],[-4,7],[-21,22],[-21,14],[-21,-7],[-20,-4],[-13,14],[3,45],[10,4],[5,-4],[15,-22],[21,-15],[21,6],[21,11],[20,-8],[12,-17],[9,-16],[21,-8],[21,1],[20,7],[21,-10],[14,26],[7,44],[0,1],[0,1],[-21,16],[-21,15],[-12,13],[12,15],[21,17],[21,-7],[21,3],[21,-13],[5,31],[-5,16],[-10,29],[1,45],[5,46],[-17,43],[-19,-43],[-2,-3],[-8,3],[-13,4],[-9,-4],[-12,-4],[-17,4],[-3,0],[-3,0],[-18,-5],[-4,5],[-17,44],[0,1],[-21,43],[-4,3],[-16,7],[-21,1],[-21,-6],[-8,-2],[-13,-7],[-2,7],[-14,45],[-4,25],[-4,20],[3,46],[1,20],[1,25],[19,35],[3,10],[-3,31],[-2,15],[2,11],[6,34],[15,34],[21,-2],[17,13],[4,6],[20,24],[21,10],[21,-8],[20,14],[-18,45],[-2,8],[-7,37],[7,30],[8,16],[-8,30],[-21,-18],[-5,-12],[-16,-29],[-17,-17],[-3,-2],[-8,2],[-13,8],[-4,-8],[-17,-36],[-4,-9],[-17,-36],[-11,-9],[-9,-5],[-4,5],[-8,45],[-3,45],[-6,46],[0,6],[-8,39],[-13,18],[-21,25],[-1,2],[-5,46],[6,11],[21,0],[18,-11],[3,-3],[2,3],[17,45],[2,8],[15,37],[-6,46],[11,29],[16,16],[5,8],[18,38],[3,10],[15,35],[-2,45],[8,13],[11,33],[9,21],[21,12],[21,-11],[10,23],[-10,39],[-1,6],[1,3],[17,43],[-17,23],[-9,22],[5,45],[-1,46],[-16,24],[-19,21],[5,45],[-7,13],[-11,33],[-3,45],[4,45],[-9,27]],[[9990,160],[-12,-44],[-6,-17],[-21,-12],[-13,-17],[-8,-13],[-21,-5],[-17,-27],[-3,-7],[-6,7],[-15,32],[-21,1],[-21,-13],[-11,25],[-9,46],[-1,4],[-2,-4],[-18,-25],[-21,10],[-21,11],[-3,4],[-18,7],[-8,-7],[-12,-23],[-10,23],[-11,32],[-7,13],[-14,19],[-13,26],[-8,18],[-5,-18],[-15,-28],[-21,0],[-21,2],[-21,-7],[-19,33],[-1,3],[-21,-2],[-21,13],[-19,32],[-2,4],[-1,-4],[1,-46],[-12,-45],[-9,-27],[-20,-5],[-21,19],[-21,-10],[-21,0],[-9,-22],[-7,-46],[-4,-1],[-21,-6],[-21,4],[-21,-8],[-20,-19],[-21,1],[-21,1],[-21,13],[-20,-25],[-21,27],[-12,13],[-9,7],[-1,-7],[-14,-45],[-6,-25],[-21,1],[-15,24],[-5,8],[-21,3],[-21,28],[-7,6],[-14,11],[-9,-11],[-11,-13],[-21,3],[-20,10],[-1,1],[-21,29],[-9,16],[-11,12],[-16,33],[-5,16],[-21,24],[-21,-4],[-20,6],[-21,-6],[-21,6],[-5,3],[-16,8],[-20,14],[-21,14],[-3,10],[3,25],[21,9],[20,7],[5,4],[-5,3],[-19,42],[-1,7],[-9,39],[9,18],[20,2],[21,-20],[21,17],[21,4],[20,18],[21,-9],[21,9],[21,5],[0,1],[20,35],[21,9],[7,1],[-7,3],[-21,15],[-20,-15],[-10,-3],[-11,-22],[-10,22],[-11,7],[-12,-7],[-9,-21],[-20,19],[-21,1],[-21,-29],[-21,-3],[-20,10],[-19,23],[-1,46],[9,45],[11,26],[9,20],[-9,37],[-21,-19],[-4,-18],[-8,-46],[-9,-19],[-14,-26],[-7,-24],[-21,-12],[-20,22],[-9,-32],[-12,-18],[-21,-20],[-21,10],[-19,-17],[-1,-1],[-21,-22],[-21,-3],[-21,16],[-20,10],[-1,0],[-20,12],[-21,-3],[-21,-3],[-15,-6],[-5,-3],[-21,-29],[-21,0],[-14,-13],[14,-20],[21,0],[21,-17],[20,13],[21,13],[21,-6],[21,-16],[9,-13],[11,-15],[21,-8],[21,6],[8,17],[13,11],[20,16],[21,3],[21,4],[14,12],[7,8],[20,13],[21,20],[21,-15],[11,-26],[-11,-44],[-2,-2],[-11,-45],[-8,-23],[-20,-22],[-1,0],[-20,6],[-12,-6],[-9,-9],[-9,9],[-12,8],[-8,-8],[-13,-17],[-13,17],[-7,16],[-21,16],[-13,-32],[-8,-18],[-18,18],[-3,2],[-20,7],[-21,15],[-21,0],[-21,2],[-20,11],[-8,8],[-13,12],[-21,-7],[-12,40],[-9,31],[-21,-14],[-20,-6],[-21,5],[-21,8],[-13,22],[-6,45],[-1,45],[9,46],[-6,45],[0,46],[-4,7],[-12,38],[-5,45],[-3,14],[-12,32],[-9,24],[-15,21],[-1,45],[-5,18],[-12,28],[-9,40],[-4,5],[-16,18],[-12,27],[-9,14],[-21,32],[-21,17],[-12,-17],[12,-7],[21,6],[15,-45],[6,-10],[17,-35],[4,-7],[14,-38],[6,-19],[13,-27],[7,-45],[1,-9],[12,-36],[9,-15],[16,-31],[-14,-45],[9,-45],[10,-27],[12,-19],[6,-45],[2,-46],[-13,-45],[7,-45],[-2,-46],[8,-25],[21,-11],[9,-9],[-9,-18],[-21,-13],[-11,-14],[-3,-46],[-6,-8],[-18,8],[6,46],[-9,12],[-9,-12],[-12,-13],[-8,13],[6,45],[-19,29],[-5,-29],[-5,-45],[-10,-20],[-12,20],[-9,7],[-21,9],[-18,29],[-3,42],[0,3],[0,2],[8,44],[-8,10],[-20,1],[-10,-11],[-11,-27],[-7,-19],[3,-45],[-17,-41],[-21,33],[-4,8],[-17,17],[-20,-9],[-21,5],[-21,15],[-21,5],[-20,11],[-4,1],[-17,27],[-21,-1],[-21,14],[-5,6],[5,11],[21,9],[21,-13],[5,-7],[16,-42],[20,37],[3,5],[-3,15],[-2,30],[2,12],[18,-12],[3,-2],[1,2],[-1,1],[-15,44],[-6,17],[-15,29],[-5,38],[-2,7],[2,2],[20,30],[5,14],[-5,12],[-13,33],[-7,3],[-21,5],[-8,-8],[0,-45],[-13,-13],[-9,13],[-12,24],[-8,21],[-12,23],[-21,20],[-2,2],[2,5],[6,41],[-6,10],[-21,17],[-3,-27],[-6,-46],[-12,-24],[-20,15],[-21,2],[-16,7],[-5,2],[-5,-2],[-16,-8],[-4,8],[-17,27],[-20,10],[-21,4],[-3,5],[-18,38],[-21,-4],[-20,-30],[-21,21],[-21,12],[-5,8],[-16,21],[-20,-5],[-21,1],[-21,12],[-21,13],[-6,3],[-14,8],[-21,35],[-2,3],[-19,41],[-21,-7],[-6,11],[-15,19],[-14,26],[-6,20],[-14,26],[-7,8],[-11,-8],[11,-41],[1,-5],[-1,-3],[-21,-17],[-21,9],[-5,-34],[-11,-45],[-4,-2],[-2,2],[-19,13],[-21,23],[-4,9],[-17,30],[-7,15],[-13,24],[-18,22],[-3,4],[-21,17],[-16,24],[-5,7],[-20,38],[-1,0],[-20,34],[-5,12],[5,16],[21,16],[20,0],[21,9],[7,4],[14,5],[16,40],[-15,46],[20,15],[20,17],[21,0],[12,13],[-12,14],[-21,-4],[-20,3],[-21,9],[-21,21],[-8,2],[-13,2],[-20,11],[-21,16],[-21,-2],[-17,19],[-4,3],[-21,2],[-20,8],[-18,32],[-3,6],[-21,7],[-21,-5],[-18,-8],[-2,-5],[-18,5],[-3,0],[-21,-22],[-14,22],[-7,5],[-9,-5],[-11,-12],[-19,12],[-2,1],[-21,2],[-20,-3],[-1,0],[-20,10],[-21,18],[-13,18],[4,45],[9,14],[7,31],[2,46],[12,20],[13,-20],[7,-6],[21,-23],[9,29],[-9,10],[-21,1],[-12,34],[-8,15],[-21,-9],[-19,39],[-2,2],[-5,-2],[5,-5],[16,-40],[-2,-45],[-14,-13],[-21,-14],[-21,1],[-18,26],[-2,2],[-21,20],[-13,23],[-8,6],[-21,-2],[-20,-1],[-10,-3],[-10,-45],[-1,-1],[0,1],[-21,37],[-9,8],[-12,7],[-20,13],[-21,-5],[-21,-10],[-21,-4],[0,-1],[-20,-21],[-16,-24],[-5,-13],[-18,13],[-3,13],[-7,32],[-14,7],[-21,-1],[-20,13],[-21,3],[-11,23],[-10,7],[-21,9],[-13,30],[-7,13],[-16,32],[-5,12],[-10,-12],[-11,-17],[-8,17],[-13,13],[-13,32],[-7,8],[-21,14],[-21,14],[-14,10],[-7,1],[-20,10],[-21,22],[-11,12],[-10,7],[-21,12],[-16,26],[-5,9],[-15,37],[-5,16],[-14,29],[-7,27],[-21,12],[-16,6],[-5,1],[-20,19],[-15,26],[-6,10],[-13,35],[-8,40],[-21,-13],[-19,18],[-1,2],[-21,40],[-2,4],[2,7],[21,35],[20,-7],[16,-35],[5,-34],[8,34],[-8,19],[-12,26],[-9,24],[-20,-20],[-21,9],[-17,32],[-4,8],[-21,12],[-19,26],[-1,2],[-20,43],[-1,3],[-21,6],[-8,37],[7,45],[-20,44],[0,1],[-21,35],[-8,11],[-12,14],[-21,12],[-21,2],[-12,17],[-9,8],[-20,26],[-19,11],[-2,1],[-21,11],[-19,34],[19,40],[21,1],[21,0],[20,-12],[21,12],[1,4],[20,41],[21,1],[4,3],[-4,12],[-21,-9],[-21,-2],[-1,-1],[-20,-25],[-20,-14],[-16,39],[-5,17],[-21,-1],[-21,28],[-1,2],[-19,13],[-21,21],[-13,11],[-8,4],[-21,4],[-12,-8],[12,-9],[21,1],[10,-37],[11,-23],[21,10],[14,-33],[4,-45],[0,-45],[-11,-46],[-7,-16],[-21,1],[-11,15],[-10,6],[-21,-6],[-16,-45],[-4,-6],[-15,6],[-6,1],[-20,44],[-1,3],[-19,43],[15,45],[-4,45],[-13,34],[-21,-8],[-20,-6],[-21,6],[-10,20],[-11,7],[-21,-6],[-11,44],[-7,45],[-2,2],[-6,-2],[-15,-7],[-12,7],[-9,11],[-21,25],[-20,-19],[-15,-17],[-6,-9],[-21,-3],[-20,12],[-1,1],[-20,24],[-16,-25],[-5,-6],[-21,-8],[-21,13],[-20,-17],[-21,2],[-21,6],[-6,10],[-14,46],[-1,0],[-21,-23],[-20,-13],[-21,5],[-21,26],[-4,5],[-17,8],[-20,2],[-5,-10],[-16,-17],[-21,-1],[-21,5],[-12,13],[-8,7],[-21,18],[-21,1],[-21,-13],[-13,32],[-7,11],[-21,1],[-21,-11],[-2,-1],[2,0],[21,-3],[21,-6],[17,-36],[3,-4],[21,-6],[21,-5],[16,-31],[5,-7],[20,-12],[21,-15],[12,-11],[9,-2],[21,-10],[20,-17],[21,-15],[21,18],[19,-19],[2,-1],[20,-27],[12,28],[9,21],[21,10],[21,-8],[13,-23],[8,-9],[20,-16],[21,-1],[21,-4],[21,6],[14,-22],[6,-4],[4,4],[17,24],[14,-24],[7,-15],[9,15],[12,12],[20,-10],[1,-2],[20,-37],[10,-8],[11,-4],[4,4],[17,24],[20,-3],[21,-4],[21,20],[21,-24],[20,-2],[7,-11],[10,-45],[4,-16],[17,-30],[-17,-45],[-19,-45],[19,-46],[21,-21],[21,-15],[3,-9],[-3,-2],[-21,-7],[-9,9],[-12,45],[-21,-15],[-20,-10],[-21,-3],[-21,7],[-1,-24],[-20,-18],[-20,6],[-21,5],[-17,7],[-4,1],[-1,-1],[-20,-14],[-20,-2],[-21,3],[-21,-16],[-18,-16],[-3,-4],[-2,4],[-18,26],[-19,19],[-2,23],[-2,-23],[-7,-45],[-12,-25],[-20,-21],[-1,-1],[-20,-13],[-21,-9],[-21,5],[-7,18],[-6,46],[-2,45],[-6,7],[-17,38],[-4,6],[-20,3],[-21,-1],[-19,-8],[19,-6],[21,-4],[20,-8],[13,-27],[4,-45],[-17,-31],[-20,-14],[-21,15],[-21,29],[-21,-9],[-20,-10],[-21,5],[-21,-3],[-21,1],[-11,17],[-9,8],[-21,-3],[-12,-5],[-9,-11],[-21,-18],[-20,-1],[-21,-13],[-2,-3],[2,-2],[21,-15],[20,-24],[6,-4],[15,-5],[21,-19],[15,-22],[6,-13],[17,-32],[-5,-45],[8,-12],[16,-34],[5,-13],[13,-32],[8,-14],[13,-31],[-13,-43],[-19,43],[-2,4],[-17,41],[-4,6],[-20,39],[0,2],[-21,34],[-6,10],[-15,17],[-21,28],[-20,18],[-21,15],[-21,6],[-6,6],[-15,12],[-21,31],[-1,3],[-19,42],[-21,-10],[-13,13],[-8,8],[-21,10],[-20,18],[-14,10],[-7,4],[-21,24],[-21,-4],[-20,5],[-21,2],[-7,14],[-14,42],[-17,-42],[-4,-7],[-13,7],[-7,3],[-21,18],[-21,4],[-21,11],[-21,-15],[-16,24],[-4,5],[-21,20],[-21,11],[-11,10],[-10,5],[-20,13],[-21,15],[-21,0],[-21,9],[-3,3],[-17,27],[-7,18],[-14,24],[-20,-24],[-1,-1],[-21,-24],[-20,13],[-4,12],[-17,15],[-21,-12],[-21,5],[-21,6],[-18,-14],[-2,-2],[-21,-4],[-12,6],[-9,7],[-1,-7],[-20,-35],[-20,-10],[-21,5],[-21,13],[-21,-15],[-20,10],[-21,-3],[-15,-10],[-6,-7],[-21,-7],[-20,13],[-6,1],[-9,45],[-6,20],[-21,4],[-9,22],[-11,45],[-1,4],[-17,41],[17,10],[11,-10],[10,-18],[11,18],[-5,46],[-6,23],[-3,22],[3,16],[5,29],[16,22],[21,9],[20,7],[21,-5],[21,5],[12,8],[-12,8],[-21,23],[-7,14],[-14,8],[-20,19],[-21,18],[0,1],[-21,5],[-5,-6],[-16,-31],[-16,-14],[-5,-8],[-10,8],[-10,2],[-4,-2],[-17,-39],[-2,-6],[2,-4],[15,-42],[5,-45],[-19,-45],[-1,-3],[-2,3],[-19,10],[-21,28],[-3,7],[-17,25],[-21,-2],[-21,1],[-21,1],[-20,-4],[-21,17],[-21,7],[-21,11],[-20,0],[-21,9],[-21,8],[-21,1],[-9,17],[9,25],[21,16],[15,4],[6,2],[21,22],[20,20],[0,1],[0,1],[-20,17],[-21,3],[-21,11],[-21,-20],[-21,-6],[-20,3],[-21,-1],[-21,-2],[-11,-6],[11,-11],[21,-6],[21,-19],[1,-9],[-1,-29],[-14,-16],[-7,-1],[-1,1],[-20,27],[-21,17],[-20,-3],[-10,4],[-11,15],[-21,1],[-21,12],[-11,17],[-9,16],[-21,4],[-17,26],[-4,8],[-21,5],[-20,13],[-11,19],[-10,16],[-21,29],[0,1],[-21,7],[-21,18],[-16,20],[-4,4],[-21,13],[-21,25],[-2,3],[-19,27],[-19,18],[-1,1],[-21,11],[-21,22],[-8,12],[-13,11],[-20,13],[-21,16],[-5,5],[-16,13],[-21,27],[-20,5],[-1,1],[-20,20],[-15,25],[-6,14],[-13,31],[-8,9],[-21,16],[-15,21],[-3,45],[-2,10],[-13,35],[13,29],[20,-29],[11,0],[-11,14],[-3,32],[-17,22],[-11,23],[-10,20],[-6,-20],[1,-45],[-2,-46],[-14,-15],[-10,15],[-11,24],[-13,22],[-7,25],[-5,20],[-16,29],[-11,16],[-10,13],[-21,28],[-2,5],[-11,45],[-7,14],[-21,21],[-4,10],[-13,46],[-4,4],[-21,10],[-20,14],[-10,17],[-11,10],[-21,22],[-7,13],[-14,21],[-21,12],[-20,12],[-21,-23],[-21,-2],[-21,0],[-20,18],[-21,1],[-5,7],[-15,45],[-1,2],[-21,8],[-20,30],[-3,5],[-11,46],[-7,26],[-21,10],[-5,9],[5,10],[21,6],[21,0],[20,-7],[7,-9],[14,-21],[21,-22],[1,-2],[20,-40],[12,-6],[8,-2],[21,-10],[17,12],[4,4],[4,-4],[17,-12],[20,-24],[21,-5],[6,-4],[15,-6],[21,-11],[21,-27],[14,-1],[6,-1],[21,-1],[21,-35],[2,-9],[19,-27],[7,-18],[13,-24],[21,-5],[21,12],[13,-28],[8,-12],[15,-34],[5,-12],[21,-9],[21,5],[19,-29],[2,0],[20,-45],[0,-1],[1,1],[14,45],[-15,24],[-20,-23],[-20,44],[-1,6],[-21,2],[-20,38],[-1,0],[-20,17],[-13,28],[-8,7],[-21,19],[-21,11],[-4,8],[-16,21],[-14,25],[-7,6],[-21,-3],[-16,42],[-5,4],[-20,13],[-21,21],[-4,7],[-17,12],[-21,9],[-13,25],[-8,17],[-20,7],[-10,21],[-11,23],[-14,23],[-7,7],[-21,32],[-4,6],[-16,20],[-15,25],[-6,8],[-21,18],[-18,20],[-3,2],[-20,23],[-21,17],[-3,3],[-18,19],[-21,22],[-2,4],[-18,20],[-17,26],[-4,5],[-20,40],[-1,2],[-9,43],[-6,46],[-6,13],[-20,32],[-1,0],[-20,8],[-21,37],[-21,21],[-21,12],[-7,13],[-13,32],[-4,13],[-7,45],[7,46],[4,13],[8,-13],[12,-4],[15,4],[-15,21],[-9,24],[9,24],[9,21],[-9,10],[-20,19],[-5,17],[4,45],[1,5],[9,40],[11,8],[18,-8],[3,-1],[21,-9],[21,-13],[20,-12],[11,-10],[9,-45],[-17,-46],[-3,-6],[-12,-39],[8,-45],[4,-12],[21,2],[21,-33],[21,12],[7,-15],[9,-45],[5,-9],[18,-36],[2,-9],[16,-37],[5,-6],[21,-14],[11,-25],[10,-24],[20,-20],[2,-1],[19,-15],[3,15],[-3,16],[-8,29],[-13,21],[-20,-1],[-12,25],[-9,37],[-3,9],[-18,26],[-17,19],[-3,45],[-1,7],[-8,39],[-12,30],[-11,15],[-8,45],[18,46],[-1,45],[-19,33],[-5,12],[5,13],[18,33],[-2,45],[-16,25],[-9,21],[-12,17],[-21,15],[-8,13],[-13,7],[-20,22],[-14,16],[-7,5],[-21,21],[-13,20],[-8,7],[-20,-7],[-1,0],[-17,-46],[0,-45],[8,-45],[-4,-46],[-7,-19],[-21,14],[-2,5],[-9,46],[-10,44],[0,1],[-1,45],[1,19],[5,27],[-5,2],[-20,14],[-21,14],[-10,15],[-11,12],[-9,-12],[-12,-33],[-20,-12],[-17,45],[-4,20],[-10,25],[-11,18],[-17,-18],[4,-45],[-8,-17],[-20,3],[-6,14],[-14,45],[-1,3],[-8,-3],[-13,-8],[-4,8],[-17,16],[-16,30],[-5,12],[-15,33],[-5,13],[-7,-13],[7,-12],[15,-33],[5,-27],[6,-19],[3,-45],[12,-37],[12,-8],[9,-9],[21,-14],[8,-23],[10,-45],[3,-7],[16,7],[4,3],[21,39],[13,-42],[8,-23],[21,-11],[6,-11],[6,-46],[8,-18],[21,-12],[6,-15],[11,-46],[4,-20],[7,-25],[14,-13],[16,-32],[4,-40],[1,-6],[16,-45],[4,-2],[16,-43],[-6,-46],[-10,-17],[-21,-12],[-20,0],[-21,19],[-6,10],[-12,46],[-3,4],[-21,39],[0,2],[-20,37],[-9,8],[-12,8],[-21,28],[-5,10],[-16,27],[-10,18],[-10,21],[-17,24],[-4,4],[-21,11],[-21,15],[-21,7],[-5,9],[-15,33],[-21,-9],[-21,18],[-2,3],[-19,19],[-20,17],[-21,1],[-8,9],[-13,13],[-21,17],[-9,15],[-11,27],[-8,-27],[-13,-33],[-21,0],[-21,22],[-7,11],[-13,20],[-21,20],[-6,5],[-15,7],[-21,26],[-21,-18],[-20,26],[-4,5],[-17,11],[-21,-8],[-21,14],[-9,28],[-11,45],[-21,-42],[-4,-3],[-17,-22],[-12,22],[-9,22],[-20,-4],[-14,27],[-7,26],[-21,1],[-21,-3],[-8,22],[-2,45],[4,45],[-14,28],[-21,-27],[-7,-1],[-14,-3],[-4,3],[-17,35],[-3,11],[-18,28],[-20,-14],[-9,31],[-9,45],[-3,13],[-21,-3],[-18,36],[-3,4],[-7,-4],[-13,-7],[-6,7],[-15,19],[-17,26],[-4,7],[-21,12],[-20,-2],[-21,9],[-21,-13],[-21,-4],[-20,4],[-21,9],[-21,-2],[-21,21],[-2,4],[-19,21],[-14,25],[-6,25],[-4,20],[-1,45],[5,26],[2,20],[6,45],[12,30],[8,6]]]}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment