Skip to content

Instantly share code, notes, and snippets.

@kevinschaul
Last active August 29, 2015 13:58
Show Gist options
  • Save kevinschaul/10283486 to your computer and use it in GitHub Desktop.
Save kevinschaul/10283486 to your computer and use it in GitHub Desktop.
Ukraine's language divide
<!DOCTYPE html>
<meta charset='utf-8'>
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes, minimum-scale=1.0, maximum-scale=1.0">
<style>
body {
width: 100%;
max-width: 600px;
margin: auto;
}
.country {
fill: #E7E7E7;
stroke: none;
}
.country-boundary {
fill: none;
stroke: #999;
}
.region {
stroke: none;
}
.region-boundary {
fill: none;
stroke: #424242;
stroke-dasharray: 2 2;
stroke-linejoin: round;
opacity: 0.5;
}
.ukraine-boundary {
fill: none;
stroke: #333;
}
.river {
fill: none;
stroke: #fff;
}
.lake {
fill: #fff;
stroke: none;
}
</style>
<body>
<div id='map'></div>
<script src='http://d3js.org/d3.v3.min.js'></script>
<script src='http://d3js.org/topojson.v1.min.js'></script>
<script>
var mapScale = 4.35;
var mapRatio = .65;
var width = parseInt(d3.select('#map').style('width'));
var height = width * mapRatio;
var projection = d3.geo.albers()
.center([0, 48.5])
.rotate([-31.5, 0])
.parallels([45, 50])
.scale(width * mapScale)
.translate([width / 2, height / 2]);
var color = d3.scale.threshold()
.domain([10, 20, 30, 50])
.range(['#F7CB6D', '#C4AA73', '#899BAD', '#739AC4', '#2E5C8A'])
var svg = d3.select('#map').append('svg')
.attr('width', width)
.attr('height', height);
var countriesPath;
var regionsPath;
var riversPath;
var lakesPath;
d3.json('ukraine.json', function(error, data) {
var countries = topojson.feature(data, data.objects.countries);
countriesPath = d3.geo.path()
.projection(projection);
svg.selectAll('.country')
.data(countries.features)
.enter().append('path')
.attr('class', 'country')
.attr('d', countriesPath)
var countryBoundaries = topojson.mesh(data, data.objects.countries,
function(a, b) { return a !== b });
svg.append('path')
.datum(countryBoundaries)
.attr('class', 'country-boundary')
.attr('d', countriesPath)
var regions = topojson.feature(data, data.objects['ukraine-regions']);
regionsPath = d3.geo.path()
.projection(projection);
svg.selectAll('.region')
.data(regions.features)
.enter().append('path')
.attr('class', 'region')
.attr('d', regionsPath)
.style('fill', function(d) { return color(d.properties.percent); })
var rivers = topojson.feature(data, data.objects['rivers_lake_centerlines']);
riversPath = d3.geo.path()
.projection(projection);
svg.selectAll('.river')
.data(rivers.features)
.enter().append('path')
.attr('class', 'river')
.attr('d', riversPath)
var lakes = topojson.feature(data, data.objects.lakes);
lakesPath = d3.geo.path()
.projection(projection);
svg.selectAll('.lake')
.data(lakes.features)
.enter().append('path')
.attr('class', 'lake')
.attr('d', lakesPath)
var ukraineRegionBoundaries = topojson.mesh(data,
data.objects['ukraine-regions'], function(a, b) { return a !== b });
svg.append('path')
.datum(ukraineRegionBoundaries)
.attr('d', regionsPath)
.attr('class', 'region-boundary')
var ukraineBoundaries = topojson.mesh(data,
data.objects['ukraine-regions'], function(a, b) { return a === b });
svg.append('path')
.datum(ukraineBoundaries)
.attr('d', regionsPath)
.attr('class', 'ukraine-boundary')
d3.select(window).on('resize', resize);
});
function resize() {
width = parseInt(d3.select('#map').style('width'));
height = width * mapRatio;
svg
.style('width', width + 'px')
.style('height', height + 'px');
svg.selectAll('.country,.country-boundary').attr('d', countriesPath);
svg.selectAll('.region,.region-boundary,.ukraine-boundary').attr('d', regionsPath);
svg.selectAll('.lake').attr('d', lakesPath);
svg.selectAll('.river').attr('d', riversPath);
projection
.scale(width * mapScale)
.translate([width / 2, height / 2]);
}
</script>
GENERATED_FILES = \
build/ne_10m_admin_1_states_provinces.shp \
build/ne_10m_admin_0_countries.shp \
public/ukraine.json
LIBRARY_FILES = \
public/lib/d3.v3.min.js \
public/lib/topojson.v1.min.js \
BOUNDS = 19.0 43.2 42.3 53.3
all: $(GENERATED_FILES) $(LIBRARY_FILES)
clean:
rm -rf build
rm -rf $(GENERATED_FILES) $(LIBRARY_FILES)
build/ne_10m_admin_1_states_provinces.zip:
mkdir -p build
curl -o $@.download "http://www.nacis.org/naturalearth/10m/cultural/ne_10m_admin_1_states_provinces.zip"
mv $@.download $@
build/ne_10m_admin_1_states_provinces.shp: build/ne_10m_admin_1_states_provinces.zip
unzip -d build $<
touch build/ne_10m_admin_1_states_provinces.*
build/ne_10m_admin_0_countries.zip:
mkdir -p build
curl -o $@.download "http://www.nacis.org/naturalearth/10m/cultural/ne_10m_admin_0_countries.zip"
mv $@.download $@
build/ne_10m_admin_0_countries.shp: build/ne_10m_admin_0_countries.zip
unzip -d build $<
touch build/ne_10m_admin_0_countries.*
build/ne_10m_lakes.zip:
mkdir -p build
curl -o $@.download "http://www.nacis.org/naturalearth/10m/physical/ne_10m_lakes.zip"
mv $@.download $@
build/ne_10m_rivers_lake_centerlines.zip:
mkdir -p build
curl -o $@.download "http://www.nacis.org/naturalearth/10m/physical/ne_10m_rivers_lake_centerlines.zip"
mv $@.download $@
build/ne_10m_lakes.shp: build/ne_10m_lakes.zip
unzip -d build $<
touch build/ne_10m_lakes.*
build/ne_10m_rivers_lake_centerlines.shp: build/ne_10m_rivers_lake_centerlines.zip
unzip -d build $<
touch build/ne_10m_rivers_lake_centerlines.*
build/ukraine-regions.json: build/ne_10m_admin_1_states_provinces.shp
mkdir -p build
rm -f $@
ogr2ogr -f GeoJSON -where "ADM0_A3 IN ('UKR')" -clipsrc $(BOUNDS) $@ $<
build/countries.json: build/ne_10m_admin_0_countries.shp
mkdir -p build
rm -f $@
ogr2ogr -f GeoJSON -clipsrc $(BOUNDS) $@ $<
build/lakes.json: build/ne_10m_lakes.shp
mkdir -p build
rm -f $@
ogr2ogr -f GeoJSON -clipsrc $(BOUNDS) $@ $<
build/rivers_lake_centerlines.json: build/ne_10m_rivers_lake_centerlines.shp
mkdir -p build
rm -f $@
ogr2ogr -f GeoJSON -clipsrc $(BOUNDS) $@ $<
public/ukraine.json: build/ukraine-regions.json build/countries.json build/lakes.json build/rivers_lake_centerlines.json data/regions-speaking-russian.csv
topojson -o $@ -q 1e4 -e data/regions-speaking-russian.csv \
--id-property adm1_code -p +percent,name \
-- build/ukraine-regions.json build/countries.json build/lakes.json \
build/rivers_lake_centerlines.json
public/lib/d3.v3.min.js:
mkdir -p public/lib
curl -o $@ "http://d3js.org/d3.v3.min.js"
public/lib/topojson.v1.min.js:
mkdir -p public/lib
curl -o $@ "http://d3js.org/topojson.v1.min.js"
adm1_code Region percent
Ukraina 29.59
UKR-283 Avtonomna Respublika Krym 76.55
UKR-323 Vinnytska oblast 4.74
UKR-318 Volynska oblast 2.51
UKR-326 Dnipropetrovska oblast 31.91
UKR-327 Donetska oblast 74.92
UKR-324 Zhytomyrska oblast 6.57
UKR-293 Zakarpatska oblast 2.90
UKR-331 Zaporizka oblast 48.19
UKR-289 Ivano-Frankivska oblast 1.78
UKR-321 Kyivska oblast 7.17
UKR-320 Kirovohradska oblast 10.02
UKR-329 Luhanska oblast 68.84
UKR-291 Lvivska oblast 3.77
UKR-284 Mykolaivska oblast 29.26
UKR-322 Odeska oblast 41.95
UKR-330 Poltavska oblast 9.47
UKR-286 Rivnenska oblast 2.73
UKR-325 Sumska oblast 15.50
UKR-292 Ternopilska oblast 1.19
UKR-328 Kharkivska oblast 44.29
UKR-4827 Khersonska oblast 24.86
UKR-290 Khmelnytska oblast 4.09
UKR-319 Cherkaska oblast 6.66
UKR-288 Chernivetska oblast 5.27
UKR-285 Chernihivska oblast 10.26
UKR-4826 m. Kyiv 25.27
UKR-5482 m. Sevastopol 90.56
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"ukraine-regions":{"type":"GeometryCollection","geometries":[{"type":"Polygon","properties":{"name":"Crimea","percent":76.55},"id":"UKR-283","arcs":[[0,1,2,3,4,5,6,7]]},{"type":"MultiPolygon","properties":{"name":"Mykolayiv","percent":29.26},"id":"UKR-284","arcs":[[[8,9,10]],[[11,12,13,14,15,16,17,18]]]},{"type":"Polygon","properties":{"name":"Chernihiv","percent":10.26},"id":"UKR-285","arcs":[[19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,-37,37,38,39,-41,41,-43,43,44,-46,46,-48,48,-50,50,-52,52,-54,54,-56,56,57,58,59,-61,61,-63,63,64,-66,66,-68,68,69,70,-72,72,-74,74,75]]},{"type":"Polygon","properties":{"name":"Rivne","percent":2.73},"id":"UKR-286","arcs":[[76,77,78,79,80,81]]},{"type":"Polygon","properties":{"name":"Chernivtsi","percent":5.27},"id":"UKR-288","arcs":[[82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,-119,119,-121,121,122,123,124]]},{"type":"Polygon","properties":{"name":"Ivano-Frankivs'k","percent":1.78},"id":"UKR-289","arcs":[[125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,-124,150,151,152,153]]},{"type":"Polygon","properties":{"name":"Khmel'nyts'kyy","percent":4.09},"id":"UKR-290","arcs":[[154,155,-114,-113,-112,-111,-110,-109,-108,-107,-106,-105,-104,-103,-102,-101,-100,-99,-98,-97,-96,-95,-94,156,-78]]},{"type":"Polygon","properties":{"name":"L'viv","percent":3.77},"id":"UKR-291","arcs":[[157,-80,158,-154,-153,159,160,-162,162,-164,164,-166]]},{"type":"Polygon","properties":{"name":"Ternopil'","percent":1.19},"id":"UKR-292","arcs":[[-157,-93,-92,-91,-90,-89,-88,-87,-86,-85,-84,-83,-125,-150,-149,-148,-147,-146,-145,-144,-143,-142,-141,-140,-139,-138,-137,-136,-135,-134,-133,-132,-131,-130,-129,-128,-127,-126,-159,-79]]},{"type":"Polygon","properties":{"name":"Transcarpathia","percent":2.9},"id":"UKR-293","arcs":[[-160,-152,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181]]},{"type":"Polygon","properties":{"name":"Volyn","percent":2.51},"id":"UKR-318","arcs":[[-81,-158,165,-165,163,-163,161,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205]]},{"type":"Polygon","properties":{"name":"Cherkasy","percent":6.66},"id":"UKR-319","arcs":[[206,207,208,209,210]]},{"type":"Polygon","properties":{"name":"Kirovohrad","percent":10.02},"id":"UKR-320","arcs":[[-212,212,213,-19,-18,-17,214,-216,216,217,-209,-219,219]]},{"type":"Polygon","properties":{"name":"Kiev","percent":7.17},"id":"UKR-321","arcs":[[-39,-38,36,-36,-35,220,-211,221,222,223],[224]]},{"type":"MultiPolygon","properties":{"name":"Odessa","percent":41.95},"id":"UKR-322","arcs":[[[225]],[[215,-215,-16,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,-251,251,252,-254,254,255,256,257,258,-260,260,-262,262,263,-265,265,266,-217]]]},{"type":"Polygon","properties":{"name":"Vinnytsya","percent":4.74},"id":"UKR-323","arcs":[[-222,-210,-218,-267,267,268,-270,270,-272,272,-274,274,-276,276,-278,278,-280,280,281,-283,283,284,285,286,-288,288,289,-291,291,-293,293,294,-296,-116,-115,-156,296]]},{"type":"Polygon","properties":{"name":"Zhytomyr","percent":6.57},"id":"UKR-324","arcs":[[-223,-297,-155,-77,297]]},{"type":"Polygon","properties":{"name":"Sumy","percent":15.5},"id":"UKR-325","arcs":[[298,299,300,-33,-32,-31,-30,-29,-28,-27,-26,-25,-24,-23,-22,-21,-20,301]]},{"type":"Polygon","properties":{"name":"Dnipropetrovs'k","percent":31.91},"id":"UKR-326","arcs":[[302,303,304,-306,306,-308,308,309,-311,311,-313,313,314,-316,316,-12,-214,317,-319,319,320]]},{"type":"Polygon","properties":{"name":"Donets'k","percent":74.92},"id":"UKR-327","arcs":[[321,322,323,324,325,326,-304,327,328]]},{"type":"Polygon","properties":{"name":"Kharkiv","percent":44.29},"id":"UKR-328","arcs":[[329,-328,-303,330,-300,331]]},{"type":"Polygon","properties":{"name":"Luhans'k","percent":68.84},"id":"UKR-329","arcs":[[332,333,334,335,336,337,-323,-322,-329,-330,338]]},{"type":"Polygon","properties":{"name":"Poltava","percent":9.47},"id":"UKR-330","arcs":[[-331,-321,-320,318,-318,-213,211,-220,218,-208,-207,-221,-34,-301]]},{"type":"Polygon","properties":{"name":"Zaporizhzhya","percent":48.19},"id":"UKR-331","arcs":[[-327,339,340,341,342,343,344,-314,312,-312,310,-310,-309,307,-307,305,-305]]},{"type":"Polygon","properties":{"name":"Kiev City","percent":25.27},"id":"UKR-4826","arcs":[[-225]]},{"type":"MultiPolygon","properties":{"name":"Kherson","percent":24.86},"id":"UKR-4827","arcs":[[[345]],[[346,-342,347]],[[348]],[[315,-315,-345,349,350,-8,351,352,353,-9,354,355,356,-13,-317]]]},{"type":"Polygon","properties":{"name":"Sevastopol","percent":90.56},"id":"UKR-5482","arcs":[[357,358,359,-4]]}]},"countries":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398]]},{"type":"MultiPolygon","arcs":[[[399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449]],[[450,451]]]},{"type":"MultiPolygon","arcs":[[[452,453]],[[454,-75,73,-73,71,-71,-70,-69,67,-67,65,-65,-64,62,-62,60,-60,-59,-58,-57,55,-55,53,-53,51,-51,49,-49,47,-47,45,-45,-44,42,-42,40,-40,-224,-298,-82,-206,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489]]]},{"type":"MultiPolygon","arcs":[[[490,491]],[[492,493]]]},{"type":"MultiPolygon","arcs":[[[494,495,496,497,498,499,500,501,502]],[[503,504,505,506]],[[507,508,509,510,511,512]],[[513,-401,-400,514]]]},{"type":"Polygon","arcs":[[-180,-179,-178,-177,-176,515,516,517,518]]},{"type":"Polygon","arcs":[[519,520]]},{"type":"Polygon","arcs":[[-294,292,-292,290,-290,-289,287,-287,-286,-285,-284,282,-282,-281,279,-279,277,-277,275,-275,273,-273,271,-271,269,-269,-268,-266,264,-264,-263,261,-261,259,-259,-258,-257,-256,521,-523,523,-525,525,-527,527,528,529,530,531,-533,533,534,-536,536,537,-539,539,540,-542,542,543,-545,545,-547,547,-549,549,550,551,-553,553,-555,555,-557,557,-559,559,560,-562,562,-564,564,-566,566,-568,568,-570,570,-572,572,-574,574,-576,576,577,578,579,580,581,-583,583,584,585,-587,587,-589,589,590,-592,592,-594,594,595,-597,597,598,599,-601,601,-603,603,-605,605,-607,607,608,609,-611,611,612,-614,614,-616,616,617,618,-620,620,-622,622,623,624,-626,626,-628,628,-117,295,-295]]},{"type":"Polygon","arcs":[[629,630,-451,631,-449]]},{"type":"Polygon","arcs":[[-489,-488,-487,-486,-485,-484,-483,-482,-481,-480,-479,-478,-477,-476,-475,-474,-473,-472,-471,-470,-469,-468,-467,-466,-465,-464,-463,-462,-461,-460,-459,-458,-457,-456,-205,-204,-203,-202,-201,-200,-199,-198,-197,-196,-195,-194,-193,-192,-191,-190,-189,-188,-187,-186,-185,-184,-183,-161,-182,632,633]]},{"type":"Polygon","arcs":[[-627,625,-625,-624,-623,621,-621,619,-619,-618,-617,615,-615,613,-613,-612,610,-610,-609,-608,606,-606,604,-604,602,-602,600,-600,-599,-598,596,-596,-595,593,-593,591,-591,-590,588,-588,586,-586,-585,-584,582,-582,-581,-580,-579,-578,-577,575,-575,573,-573,571,-571,569,-569,567,-567,565,-565,563,-563,561,-561,-560,558,-558,556,-556,554,-554,552,-552,-551,-550,548,-548,546,-546,544,-544,-543,541,-541,-540,538,-538,-537,535,-535,-534,532,-532,-531,-530,-529,-528,526,-526,524,-524,522,-522,-255,253,-253,-252,250,-250,-249,-248,-247,-246,-245,-244,-243,-242,-241,-240,-239,-238,-237,-236,-235,-234,-233,-232,-231,-230,-229,-228,634,-388,-387,-386,-385,-384,-383,-382,-381,-380,-379,-378,-377,-376,-375,-374,-373,-372,-371,-370,-369,-368,-367,-366,-365,-364,-363,-362,-361,-399,-398,-397,-396,-395,-394,-393,-392,-391,635,636,-638,638,639,-641,641,-643,643,-645,645,646,-648,648,649,-651,651,652,653,654,-656,656,-658,658,-660,660,-662,662,-664,664,-666,666,-668,668,669,670,-516,-175,-174,-173,-172,-171,-170,-169,-168,-167,-151,-123,-122,120,-120,118,-118,-629,627]]},{"type":"Polygon","arcs":[[-493,671,-492,672,-324,-338,-337,-336,-335,-334,-333,-339,-332,-299,-302,-76,-455,673,-453,674]]},{"type":"Polygon","arcs":[[-671,-670,-669,667,-667,665,-665,663,-663,661,-661,659,-659,657,-657,655,-655,-654,-653,-652,650,-650,-649,647,-647,-646,644,-644,642,-642,640,-640,-639,637,-637,-636,-390,675,-521,676,-630,-448,-447,-446,-445,-444,-443,-442,-441,-440,-439,-438,-437,-436,-435,-434,-433,-432,-431,-430,-429,-428,-427,-426,-425,-424,-423,-422,-421,-420,-419,-418,-417,-416,-415,-414,-413,-412,-411,-410,-409,-408,-407,-406,-405,-404,-403,-402,-514,677,-512,-511,-510,-509,-508,678,-506,-505,-504,679,-502,-501,-500,-499,-498,-497,-496,-495,680,-517]]},{"type":"Polygon","arcs":[[-181,-519,681,-633]]},{"type":"MultiPolygon","arcs":[[[225]],[[345]],[[348]],[[301,298,331,338,332,333,334,335,336,337,323,324,682,340,347,683,343,349,684,1,685,358,686,5,687,352,688,10,354,355,689,14,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,-251,251,252,-254,254,255,256,257,258,-260,260,-262,262,263,-265,265,267,268,-270,270,-272,272,-274,274,-276,276,-278,278,-280,280,281,-283,283,284,285,286,-288,288,289,-291,291,-293,293,294,-296,116,117,-119,119,-121,121,122,150,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,160,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,81,297,223,39,-41,41,-43,43,44,-46,46,-48,48,-50,50,-52,52,-54,54,-56,56,57,58,59,-61,61,-63,63,64,-66,66,-68,68,69,70,-72,72,-74,74,75]]]}]},"lakes":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[690]]},{"type":"Polygon","arcs":[[691]]},{"type":"Polygon","arcs":[[692]]},{"type":"Polygon","arcs":[[693,694]]},{"type":"Polygon","properties":{"name":"Kiyevskoye"},"arcs":[[695,696]]},{"type":"Polygon","properties":{"name":"Kakhovka Reservoir"},"arcs":[[697]]},{"type":"Polygon","properties":{"name":"Kremenchuk Reservoir"},"arcs":[[698]]},{"type":"MultiPolygon","properties":{"name":"Tsimlyansk Reservoir"},"arcs":[[[699]],[[700]]]},{"type":"Polygon","properties":{"name":"Syvash"},"arcs":[[701]]}]},"rivers_lake_centerlines":{"type":"GeometryCollection","geometries":[{"type":"LineString","properties":{"name":"Tsna"},"arcs":[702]},{"type":"LineString","properties":{"name":"Ialomita"},"arcs":[703]},{"type":"LineString","properties":{"name":"Seym"},"arcs":[704,705]},{"type":"MultiLineString","properties":{"name":"Dnipro (Dnieper)"},"arcs":[[706,36,707,708],[709],[710,218,711,712],[713,714,318,715,211,716],[717,315,718,312,719,310,720,721,722]]},{"type":"MultiLineString","properties":{"name":"Dnipro (Dnieper)"},"arcs":[[723,73,724,71,725,726,727,67,728,65,729,730,62,731,60,732,733,734,735,55,736,53,737,51,738,49,739,47,740,45,741,742,42,743,40,744],[745],[746,747],[748],[749,307,750,305,751],[752]]},{"type":"LineString","properties":{"name":"Vistula"},"arcs":[753]},{"type":"LineString","properties":{"name":"Dniester"},"arcs":[754]},{"type":"MultiLineString","properties":{"name":"Dniester"},"arcs":[[755,756,126,757,128,758,130,759,132,760,761,135,762,137,763,764,765,766,142,767,144,768,146,769,770,149,124,771,83,772,773,86,774,88,775,90,776,92,93,777,95,778,97,779,99,780,101,781,103,782,105,783,107,784,109,785,111,786,113,787,115,295,788,789,292,790,290,791,792,287,793,794,795,796,282,797,798,279,799,277,800,275,801,273,802,271,803,269,804,805,264,806,807,261,808,259,809,810,811,812],[813]]},{"type":"MultiLineString","properties":{"name":"Danube"},"arcs":[[814],[815],[495,816,817,498,818,819,820],[821,822,505],[823,824,509,825,826,827,828,829,667,830,665,831,663,832,661,833,659,834,657,835,655,836,837,838,839,650,840,841,647,842,843,644,844,642,845,640,846,847,637,848,849,850,851,393,852,395,853,854,398,855,361],[856],[857,858,859,860,366,861,862,369,863,864,865,866,374,867,376,868,378,869,870,871,382,872,384,873,386,874,875,876,877,253,878,879,250]]},{"type":"LineString","properties":{"name":"Don"},"arcs":[880]},{"type":"MultiLineString","properties":{"name":"Don"},"arcs":[[881],[882],[883]]},{"type":"MultiLineString","arcs":[[884],[885],[886,167,887,169,888,171,889,173,890,176,891,178,892],[893],[894],[895]]},{"type":"MultiLineString","properties":{"name":"Soroksari Duna"},"arcs":[[896],[897]]},{"type":"LineString","properties":{"name":"Tisa"},"arcs":[898]},{"type":"LineString","properties":{"name":"Pripyat"},"arcs":[899]},{"type":"LineString","properties":{"name":"Pripyat"},"arcs":[900]},{"type":"LineString","properties":{"name":"Morava"},"arcs":[901]},{"type":"MultiLineString","properties":{"name":"Donets"},"arcs":[[902,321,903,332,904,905,335,906,907],[908]]},{"type":"LineString","properties":{"name":"Oka"},"arcs":[909]},{"type":"MultiLineString","properties":{"name":"Desna"},"arcs":[[910],[911,912,21,913,23,914,25,915,27,916,29,917,31,918]]},{"type":"MultiLineString","properties":{"name":"Khopr"},"arcs":[[919],[920]]},{"type":"LineString","properties":{"name":"Bratul Chillia"},"arcs":[227,921,229,922,231,923,233,924,235,925,237,926,239,927,241,928,243,929,930,931,247,932,249,933]},{"type":"LineString","properties":{"name":"Sava"},"arcs":[399,934,402,935,936,937,406,938,939,940]},{"type":"LineString","properties":{"name":"Bratul Sfintu Gheorghe"},"arcs":[941]},{"type":"LineString","properties":{"name":"Bratul Sulina"},"arcs":[942]},{"type":"LineString","properties":{"name":"Borcea"},"arcs":[943]},{"type":"LineString","properties":{"name":"Prut"},"arcs":[944,945,120,946,118,947,627,948,625,949,950,951,621,952,619,953,954,955,615,956,613,957,958,610,959,960,961,606,962,604,963,602,964,600,965,966,967,596,968,969,593,970,591,971,972,588,973,586,974,975,976,582,977,978,979,980,981,982,575,983,573,984,571,985,569,986,567,987,565,988,563,989,561,990,991,558,992,556,993,554,994,552,995,996,997,548,998,546,999,544,1000,1001,541,1002,1003,538,1004,1005,535,1006,1007,532,1008,1009,1010,1011,1012,526,1013,524,1014,522,1015]},{"type":"LineString","properties":{"name":"Kuban"},"arcs":[1016]},{"type":"LineString","arcs":[1017]},{"type":"LineString","properties":{"name":"Pivd. Buh"},"arcs":[1018]},{"type":"MultiLineString","properties":{"name":"Pivd. Buh"},"arcs":[[1019],[1020,215,1021,17,1022]]},{"type":"LineString","properties":{"name":"Olt"},"arcs":[1023]},{"type":"LineString","properties":{"name":"Warta"},"arcs":[1024]},{"type":"MultiLineString","properties":{"name":"Bug"},"arcs":[[1025],[1026,165,1027,163,1028,161,1029,183,1030,1031,1032,1033,188,1034,190,1035,192,1036,1037,195,1038,197,1039,199,1040,201,1041,1042,1043,1044,1045,458,1046,1047,1048,1049,1050,1051,465,1052,467,1053,469,1054,1055,1056,473,1057,475,1058,477,1059,1060,1061,1062,482,1063,484,1064,486,1065]]},{"type":"LineString","properties":{"name":"Mukhavyets"},"arcs":[1066]},{"type":"LineString","properties":{"name":"Mures"},"arcs":[1067]},{"type":"MultiLineString","properties":{"name":"Drina"},"arcs":[[1068,1069,410,1070,1071,413,1072,1073,416,1074,418,1075,1076,421,1077,423,1078,425,1079,1080,428,1081,430,1082,1083,1084,434,1085,1086,437,1087,1088,1089,441,1090,1091,1092,1093,446,1094],[1095]]}]}},"arcs":[[[6867,2504],[18,-59]],[[6885,2445],[124,-295],[64,-73],[15,-2],[77,34],[9,10],[11,20],[2,10],[0,9],[2,7],[7,2],[2,3],[7,15],[1,5],[1,18],[4,19],[6,14],[7,7],[10,-1],[1,-10],[-3,-15],[-2,-18],[3,-12],[7,-10],[33,-32],[16,-9],[16,5],[13,27],[5,30],[2,5],[12,12],[9,15],[8,4],[50,0],[6,6],[7,9],[7,-3],[3,-13],[-3,-17],[5,0],[4,5],[4,6],[5,3],[8,-3],[13,-15],[9,-3],[25,9],[9,-2],[11,-23],[7,-11],[7,3],[8,13],[7,2],[6,-6],[7,-12],[7,-34],[3,-23],[-3,-11],[-14,-6],[-5,-1],[-5,3],[-13,11],[-10,2],[-8,-3],[-6,-10],[-2,-20],[2,-7],[3,-4],[1,-4],[-3,-9],[-4,-3],[-9,-1],[-4,-3],[-6,-13],[-5,-20],[-3,-21],[-4,-59],[0,-21],[2,-21],[12,-22],[6,-14],[-1,-15],[-6,-9],[-31,-19],[-38,-3],[-5,-2],[-4,-4],[-2,-6],[-2,-17],[-2,-5],[-8,-4],[-38,14],[-25,25],[0,-7],[-13,9],[-10,-15],[-7,-23],[-6,-12],[-33,3],[-30,-9],[-8,7],[-4,22],[-3,10],[-13,26],[-5,8],[-28,29],[-31,20],[-18,5],[-19,-1],[-18,-6],[-15,-12],[-23,-30],[-4,-8],[-1,-12],[-2,-8],[-1,-7],[1,-11],[3,-4],[12,-9],[0,-6],[-6,-5],[-14,2],[-6,-4],[-5,-11],[-1,-13],[3,-30],[-21,26],[-1,-4],[-5,-5],[-3,-4],[-10,10],[-8,-8],[-10,-33],[-7,-11],[-19,-7],[-8,-6],[-10,-32],[-9,-43],[-12,-31],[-19,5],[-4,10],[-4,14],[-5,12],[-9,5],[-14,1],[-5,-1],[-5,-4],[-3,-5],[-3,-6],[-3,-5],[-8,-2],[-14,5],[-6,-6],[-7,-5],[-30,8],[-15,-9],[-31,-33],[-16,-12],[-34,-13],[-14,-10],[-11,-19],[0,3],[0,3],[-1,1],[-2,0],[-17,-40],[-2,-7],[-4,-9],[-15,-42],[-16,-72],[-5,-13],[-3,-2],[-10,2],[-6,0],[-5,1],[-2,-1],[-2,-3],[0,-3],[0,-4],[-1,-3],[-9,-25],[-5,-7],[-21,-7],[-5,-11],[-4,-15],[-6,-17],[-4,-7],[-15,-17],[-6,-3],[-10,-3],[-46,-36],[-9,-2],[-9,3],[-27,18],[-6,-1],[-9,-5],[-4,-1],[-29,1]],[[6326,1184],[-5,2]],[[6321,1186],[15,8],[1,12],[8,6],[29,7],[-4,25],[-16,70],[-13,5],[-3,23],[-17,-2],[-7,28],[16,42],[-18,42],[-36,-5],[-6,58],[34,34],[-7,37],[-24,24],[-16,3],[-4,33]],[[6253,1636],[12,7]],[[6265,1643],[4,12],[3,17],[2,20],[0,22],[-5,39],[-1,17],[-1,5],[-8,25],[-1,9],[-2,26],[-7,40],[-10,23],[-30,31],[-24,36],[-7,5],[-18,-4],[-16,-10],[-15,-15],[-10,-4],[-4,9],[-4,14],[-9,8],[-20,9],[-6,10],[-15,30],[-11,11],[-3,8],[-5,15],[-4,5],[-8,5],[-3,3],[-29,40],[-16,17],[-17,12],[-64,9],[-10,-3],[-6,-7],[-15,-27],[-7,-6],[-30,0],[-9,5],[-15,13],[-10,2],[-12,54],[-1,14],[5,26],[13,23],[51,62],[8,4],[10,2],[8,4],[7,6],[6,8],[4,7],[3,7],[3,5],[7,2],[4,-1],[8,-5],[5,-2],[6,4],[1,8],[-2,9],[0,7],[1,9],[1,5],[3,7],[13,22],[30,32],[97,73],[6,7],[2,12],[-2,3],[-4,4],[-4,6],[1,10],[4,6],[4,-5],[7,-15],[15,-14],[15,3],[31,32],[16,11],[2,6],[13,23],[6,5],[18,19],[7,4],[3,-2],[8,-9],[5,-3],[4,1],[11,6],[10,20],[9,10],[5,3],[4,1],[5,-2],[4,-4],[4,-5],[2,-6],[2,-5],[5,-1],[9,2],[0,12],[0,23],[1,18],[6,-4],[7,6],[15,6],[7,7],[-7,11],[-9,7],[-24,11],[-11,-2],[-5,-3],[-3,-6],[-3,-3],[-5,6],[8,18],[4,11],[-2,5],[-5,3],[0,9],[2,9],[3,9],[0,7],[-6,34],[-1,11],[5,11],[4,11],[-2,15]],[[6284,2876],[-6,20]],[[6278,2896],[13,23],[5,24],[-4,37],[4,8],[19,-22],[17,-3],[20,10],[19,-7],[20,-19],[22,-23],[20,-23],[15,-14],[18,-11],[16,-10],[24,-4],[17,9],[15,-2],[16,-14],[12,-14],[14,0],[12,-14],[7,-25],[6,-21],[8,-21],[10,-16],[14,-16],[17,-5],[7,19],[4,11],[17,-4],[13,2],[18,2],[20,-7],[20,-21],[12,-20],[9,-33],[0,-30],[0,-39],[2,-25],[9,-19],[26,-11],[20,-26],[15,-25],[10,-5],[11,12]],[[5515,3289],[-15,-39]],[[5500,3250],[-19,13]],[[5481,3263],[-10,4],[-10,1],[-6,-6],[-7,-11],[-2,-5],[-2,-8],[0,-9],[0,-31],[-10,41],[-3,7],[-6,3],[-50,82],[-7,23],[14,-18],[11,-19],[6,-5],[75,9],[15,-7],[25,-24],[1,-1]],[[6023,4719],[5,-6],[-1,-7],[-2,-9],[-4,-19],[1,-5],[1,-4],[2,-2],[2,0],[3,0],[2,1],[3,-1],[3,-3],[4,-9],[2,-6],[-1,-4],[-1,-3],[-1,-2],[-2,-4],[-1,-5],[0,-23],[-1,-4],[-1,-4],[-1,-3],[0,-6],[-1,-6],[0,-55],[0,-7],[2,-4],[1,-3],[2,-1],[2,-5],[2,-5],[3,-13],[-1,-6],[-1,-3],[-19,-2],[-16,-7],[-3,-2],[-3,-4],[-2,-3],[0,-3],[0,-3],[3,-9],[7,-20],[3,-12],[1,-4],[1,-6],[1,-10],[0,-6],[-1,-4],[-3,-6],[-5,-8],[-1,-3],[-1,-4],[-2,-8],[1,-4],[0,-4],[2,-1],[3,-2],[36,-9]],[[6046,4339],[-1,-9],[0,-11],[0,-8],[1,-3],[0,-4],[1,-2],[2,-3],[6,-8],[3,-5],[0,-2],[1,-4],[0,-3],[-1,-4],[-2,-6],[0,-4],[0,-3],[0,-2],[0,-1],[0,-2],[3,-8],[1,-3],[1,-4],[0,-2],[1,-3],[0,-4],[0,-4],[-1,-8],[-1,-9],[-1,-4],[1,-3],[0,-4],[1,-3],[1,-3],[1,-6],[1,-3],[0,-4],[-1,-3],[-2,-3],[-4,-2],[-8,-1],[-2,1],[-3,1],[-1,2],[-1,3],[-2,13],[-4,15],[-1,3],[-2,1],[-1,-2],[-1,-5],[-1,-9],[-2,-5],[-7,-14],[-1,-5],[-1,-3],[0,-3],[1,-3],[1,-3],[1,-3],[1,-3],[2,-2],[1,-2],[2,-1],[3,-1],[14,0],[3,-1],[1,-2],[2,-2],[9,-33],[0,-3],[1,-7],[0,-6],[0,-2],[0,-4],[-1,-8],[-4,-19],[-2,-12],[-1,-8],[0,-4],[0,-3],[1,-4],[0,-3],[3,-9],[9,-25],[1,-4],[-1,-3],[-2,-8],[-1,-4],[0,-4],[-1,-3],[-2,-3],[-4,1],[-2,1],[-5,5],[-3,1],[-2,-1],[-3,-3],[-12,-23],[-2,-3],[-4,-2],[-6,-2],[-10,1],[-1,1],[-5,9],[-1,1],[-2,-1],[-2,-6],[-4,-16],[-11,-37],[-8,-17],[-1,-3],[0,-4],[0,-3],[0,-3],[1,-3],[0,-5],[1,-9],[0,-2],[2,-2],[2,-1],[7,1],[2,0],[2,-1],[25,-23],[19,-30],[1,-3],[0,-3],[0,-3],[-1,-3],[-4,-9],[-7,-14],[-2,-3],[0,-2],[-1,-3],[0,-3],[0,-3],[0,-2],[-12,12],[-2,4],[-3,5],[-2,5],[-2,4],[-1,0],[-1,0],[-3,-3],[-4,-6],[-2,-5],[-1,-5],[1,-11],[0,-7],[1,-3],[0,-4],[2,-2],[1,-2],[2,-1],[16,0],[1,0],[2,-2],[1,-2],[1,-3],[0,-3],[-2,-4],[-4,-4],[-18,-7],[-5,-6],[-9,-16],[-5,-3],[-42,-11],[-2,-2],[-2,-5],[0,-3],[1,-3],[1,-3],[1,-2],[2,-1],[4,-2],[10,-1],[23,3],[3,-1],[3,-4],[3,0],[4,0],[2,0],[1,-3],[-4,-5],[-8,-6],[-33,-19],[-2,-2],[-2,-1],[-2,-1],[-21,1],[-23,-5],[-5,1],[-1,0],[-2,2],[-1,2],[-2,2],[-1,3],[-3,8],[-1,3],[-2,2],[-1,2],[-10,5],[-2,2],[-2,2],[-1,2],[-4,1],[-17,-1],[-4,2],[-3,2],[-2,2],[-4,1],[-2,1],[-1,3],[-1,2],[-2,2],[-2,-1],[-2,-1],[-1,-4],[0,-15],[0,-5],[-1,-4],[0,-4],[-1,-3],[-2,-2],[-2,-2],[-3,-2],[-15,-1],[-5,1],[-2,2],[-1,3],[-2,6],[-1,3],[-2,1],[-3,1],[-9,-2],[-14,-6],[-3,-3],[-4,-6],[-1,-4],[-5,-25],[-1,-3],[-2,-2],[-4,-1],[-11,1],[-25,14],[-5,1],[-5,-2],[-3,-1],[-3,-3],[-3,-6],[-2,-4],[-1,-5],[-4,-18],[-4,-13],[-2,-3],[-2,-5],[-4,-4],[-7,-5],[-13,-6],[-5,0],[-5,3],[-8,7],[-2,1],[-2,0],[-3,-1],[-4,-2],[-7,-8],[-3,-6],[-7,-3],[-22,1],[0,-5]],[[5564,3487],[-2,5]],[[5562,3492],[-5,14],[-4,17],[-2,41],[8,31],[12,29],[9,34],[2,20],[0,15],[-5,10],[-21,6],[-5,8],[2,13],[13,31],[3,10],[-3,7],[-11,3],[-19,-6],[-8,2],[-7,11],[12,42],[2,24],[-7,25],[-6,9],[-5,2],[-4,5],[-4,15],[-1,19],[0,10],[-2,8],[-6,10],[-25,19],[-4,12],[2,20],[-1,7],[-4,4],[-2,-4],[-6,-18],[-1,-5],[3,-12],[6,-11],[9,-8],[19,-8],[4,-12],[0,-58],[2,-5],[10,-4],[3,-5],[2,-4],[3,-3],[5,-7],[-3,-17],[-7,-16],[-3,-7],[-3,-45],[14,-9],[19,4],[14,-4],[-12,-22],[-6,-16],[-2,-17],[3,-17],[8,-3],[9,5],[9,9],[2,-22],[-4,-29],[-8,-26],[-9,-11],[-11,-6],[-9,-14],[-5,-21],[0,-27],[16,-34],[2,-7],[-3,-44],[1,-17],[2,-8],[1,-6],[-4,-13],[-3,-6],[-10,-10],[-5,-4],[-19,-6],[-18,4],[-42,26],[-26,-4],[-7,-6],[-4,-14],[-4,-12],[-9,-2],[-4,3],[-6,9],[-4,2],[-9,-1],[-5,0],[-3,4],[-2,14],[4,17],[24,63],[6,22],[0,9],[5,8],[20,46],[-5,13],[-4,-6],[-3,-14],[-3,-12],[-3,-5],[-8,-5],[-4,-4],[-2,-5],[-8,-20],[-1,-4],[-1,-3],[-5,-2],[-6,5],[-6,8],[-6,25],[-5,12],[-6,4],[5,-24],[0,-7],[1,-14],[3,-6],[4,-3],[13,-18],[2,-7],[-3,-12],[-8,-21],[-1,-3],[-7,-9],[-14,-37],[-6,-8],[-8,-3],[-19,-17],[-6,-8],[-6,5],[-12,3],[-6,6],[-3,-8],[-8,9],[-30,13]],[[5230,3395],[-6,55],[0,18],[1,5],[1,7],[0,6],[-1,6],[-2,9],[-3,79],[-1,9],[-8,10],[-5,6],[-2,2],[-1,3],[-5,18],[-3,8],[-3,5],[-18,19],[-3,7],[-4,13],[-3,21],[-1,9],[1,5],[2,1],[21,2],[2,1],[2,2],[4,13],[2,2],[2,2],[2,0],[2,0],[2,-2],[3,-4],[2,0],[2,0],[4,2],[26,3],[2,1],[2,2],[2,9],[1,3],[2,2],[9,6],[1,2],[1,2],[3,12],[2,15],[2,6],[2,5],[2,3],[3,7],[1,6],[0,7],[0,10],[4,17],[0,7],[-1,4],[-1,2],[-3,1],[-7,1],[-2,1],[-2,3],[-1,5],[-1,8],[-2,4],[-1,4],[-1,3],[-5,6],[-1,4],[-2,4],[-2,10],[-2,4],[-1,3],[-5,0],[-4,-2],[-5,-4],[-2,-2],[-2,0],[-2,1],[-2,2],[-4,6],[-4,3],[-11,5],[-2,1],[-2,3],[-1,4],[-1,4],[0,4],[0,8],[1,8],[2,3],[1,1],[2,2],[4,1],[4,3],[2,2],[6,10],[1,4],[2,7],[-1,9],[-1,5],[-4,12],[0,2],[-1,1],[-1,2],[-2,1],[-34,-12],[-13,-10],[-3,1],[-2,2],[-5,12],[-1,3],[-2,0],[-17,1],[-24,7],[-5,14],[-7,25],[-21,96],[-2,16],[6,22],[2,16],[2,8],[0,11],[0,7],[0,6],[1,0],[3,3],[1,2],[1,4],[1,3],[0,10],[-2,21],[-2,6],[-6,11],[-5,14],[-3,6],[-2,3],[-15,1],[-2,2],[0,2],[1,3],[0,6],[1,8],[-1,17],[-2,7],[-2,3],[-24,-8],[-2,-2],[-1,-3],[0,-4],[-3,-17],[-2,-7],[-1,-2],[-1,-2],[-2,0],[-2,2],[-2,3],[-3,8],[-2,18],[-1,4],[-3,2],[-15,1],[-3,1],[-3,1],[-5,7],[-3,2],[-2,0],[-2,-1],[-4,-7],[-7,-8],[-3,-3],[-3,-1],[-2,1],[-2,2],[-2,4],[-1,2],[-2,1],[-3,0],[-19,-5],[-2,1],[-2,2],[-4,7],[-2,3],[-10,8],[-4,5],[-2,4],[-1,4],[-1,10],[-3,12],[-1,4],[0,4],[0,4],[1,4],[3,9],[1,4],[0,5],[0,7],[-1,3],[-1,4],[-6,6],[-6,9],[-1,5],[0,4],[1,4],[1,3],[4,6],[2,3],[1,3],[0,2],[0,4],[-2,15],[-2,5],[-3,2],[-11,7],[-4,4],[-7,11],[-2,5],[-1,3],[-1,5],[0,3],[-11,106],[-1,5],[-1,4],[-8,15],[-5,10],[-1,3],[-2,2],[-2,2],[-10,4],[-3,3],[-1,3],[-1,3],[0,9],[0,4],[1,3],[3,9],[0,3],[1,4],[-1,3],[1,13],[-1,6],[-1,3],[-5,5],[-1,3],[1,3],[3,4],[2,2],[14,10],[7,-1],[2,1],[2,5],[2,2],[2,1],[3,-1],[2,-1],[2,0],[2,0],[2,3],[0,4],[0,5],[-2,3],[-5,5],[-2,3],[0,5],[-1,17]],[[4846,4886],[13,-1]],[[4859,4885],[3,2],[2,6],[3,17],[3,4],[66,0]],[[4936,4914],[4,-1],[3,-1],[4,-1],[19,-10],[16,-5],[5,0],[2,1],[1,3],[1,2],[2,8],[1,3],[3,4],[6,4],[20,11],[5,1],[12,-4],[13,0],[6,-1],[4,-2],[0,-3],[1,-4],[1,-3],[2,-4],[4,-3],[3,1],[2,2],[2,13],[2,3],[1,3],[4,4],[3,1],[3,0],[2,-2],[2,-2],[1,-3],[1,-3],[0,-3],[0,-4],[1,-4],[2,-4],[6,-3],[3,0],[3,0],[2,2],[2,2],[1,3],[2,4],[4,4],[13,6],[3,3],[2,3],[1,3],[1,3],[1,9],[3,5],[6,6],[15,8],[9,2],[31,-4],[6,-4],[8,-1],[4,-2],[2,-2],[1,-3],[1,-3],[1,-27],[0,-3],[2,-4],[3,-2],[9,-5],[3,-2],[0,-1],[0,-3],[0,-16],[0,-3],[1,-4],[1,-2],[1,-2],[1,-2],[1,-1],[4,-3],[40,-9],[3,0],[8,8],[7,5],[2,-1],[1,-3],[1,-3],[1,-4],[2,-3],[3,-3],[3,0],[2,1],[1,2],[4,2],[5,3],[24,3],[2,-1],[1,-2],[2,-2],[0,-4],[1,-7],[-2,-21],[0,-4],[-1,-3],[-2,-6],[-1,-2],[0,-3],[1,-3],[2,-4],[2,-1],[3,-1],[2,1],[1,3],[1,3],[0,4],[0,12],[1,5],[2,4],[3,4],[3,-1],[1,-2],[2,-4],[2,-1],[2,0],[7,2],[2,1],[1,2],[1,4],[-1,10],[1,4],[0,3],[2,3],[2,2],[7,5],[3,-1],[2,-2],[5,-10],[3,-2],[4,-3],[5,2],[4,-1],[3,-2],[4,-5],[3,-1],[2,-1],[17,5],[4,0],[2,-3],[1,-2],[3,-17],[1,-6],[1,-3],[0,-3],[1,-4],[-1,-4],[0,-5],[-1,-3],[-1,-3],[-2,-3],[-5,-5],[-17,-12],[-1,-2],[0,-2],[0,-3],[6,-17],[14,-36],[5,-11],[5,-8],[3,0],[10,3],[3,0],[2,-2],[2,-5],[2,-6],[1,-4],[0,-4],[0,-3],[1,-3],[1,-3],[1,-2],[9,-18],[1,-3],[1,-3],[0,-3],[1,-4],[-1,-3],[0,-4],[-1,-3],[-8,-17],[-1,-3],[-1,-4],[0,-3],[0,-4],[1,-3],[3,-8],[1,-3],[1,-3],[0,-4],[0,-4],[-1,-5],[0,-4],[1,-5],[1,-5],[3,-2],[2,-1],[38,1],[2,1],[1,1],[1,4],[1,4],[0,3],[3,3],[5,1],[15,-3],[4,-2],[4,-7],[10,-9],[2,-2],[2,-2],[1,-3],[4,-12],[1,-6],[2,-4],[4,-4],[8,-7],[5,-3],[3,-1],[5,1],[4,3],[1,2],[3,4],[5,11],[6,18],[9,24],[1,2],[2,3],[2,2],[3,2],[16,4],[7,-2],[5,-2],[11,-12],[8,-12],[2,0],[2,0],[5,4],[5,2],[2,-1],[3,-1],[2,-2],[28,-16],[4,-1],[75,19],[1,1],[2,2],[0,3],[1,16],[0,4],[0,8],[1,3],[1,2],[9,2],[2,2],[1,2],[0,3],[-2,3],[-1,2],[-2,2],[0,4],[0,3],[0,9],[0,4],[0,3],[-3,8],[-1,3],[-1,4],[0,3],[1,3],[1,3],[2,2],[4,1],[12,3],[2,1],[1,2],[1,3],[0,4],[0,7],[0,3],[-2,2],[-7,2],[-2,1],[-2,3],[-1,3],[0,3],[-1,3],[0,4],[1,4],[1,4],[1,4],[1,3],[1,2],[2,3],[3,3],[5,5],[18,5],[9,5],[2,0],[2,-2],[1,-2],[3,-9],[2,-3],[2,-3],[5,-4],[3,0],[2,1],[1,3],[1,3],[2,8],[1,3],[1,2],[14,5],[1,1],[2,2],[1,3],[0,2],[0,1],[0,1],[-2,9],[0,8],[0,4],[0,3],[1,4],[2,3],[3,3],[5,2],[5,0],[10,-3],[3,0],[9,10],[3,0],[1,-2],[1,-3],[1,-3],[0,-7],[1,-3],[1,-3],[2,-5],[8,-15],[1,-2],[0,-2],[1,-2],[0,-4],[-1,-12],[1,-3],[1,-3],[7,-8]],[[6180,9053],[-2,-5]],[[6178,9048],[-3,-16],[-1,-16]],[[6174,9016],[-1,-7],[-6,-11],[-2,-7],[-1,-8],[-1,-18],[-1,-7],[-4,-10],[-11,-17],[-3,-11]],[[6144,8920],[3,-47],[1,-10],[2,-1],[18,-9],[2,-2],[10,-14],[8,-16],[5,-7],[1,-3],[1,-3],[1,-3],[1,-3],[2,-2],[2,-1],[13,-2],[2,-1],[1,-3],[0,-3],[-1,-6],[-1,-6],[-3,-10],[-2,-5],[-2,-2],[-10,-4],[-10,-2],[-5,1],[-3,1],[-1,2],[-1,3],[-1,3],[-1,3],[-1,2],[-2,0],[-2,-2],[-2,-3],[-1,-6],[0,-33],[0,-4],[-1,-5],[-2,-6],[-2,-3],[-2,-3],[-1,-2],[-1,-3],[3,-2],[7,-17]],[[6169,8681],[1,-10],[-5,-12]],[[6165,8659],[-24,-11],[-10,-2]],[[6131,8646],[-6,-5]],[[6125,8641],[-15,-18],[-5,-4],[-20,2]],[[6085,8621],[-8,-4],[3,-12],[0,-7],[-11,-4]],[[6069,8594],[-5,-14],[-4,-16]],[[6060,8564],[-8,-7],[-6,-8],[-7,-19],[-4,-23],[2,-21]],[[6037,8486],[3,-7],[4,-23]],[[6044,8456],[3,-8],[3,-6],[24,-34]],[[6074,8408],[0,-11],[-7,-13],[-1,-11],[1,-9],[2,-3],[3,-2],[2,-2],[1,-3],[1,-4],[2,-39],[1,-5],[2,-3],[2,-2],[2,-2],[1,-3],[0,-3],[-1,-3],[-2,-2],[-7,-3],[-2,-4],[-1,-5],[0,-13],[2,-7],[1,-4],[9,-11],[1,-3],[2,-2],[0,-3],[-1,-4],[-6,-12],[-1,0],[-1,-1],[-1,0],[-3,2],[-13,9],[-1,0],[-1,-2],[4,-20],[0,-4],[0,-4],[-2,-5],[-2,-3],[-2,-3],[-2,-1],[-1,-5],[-1,-7],[2,-15],[2,-7],[3,-5],[3,-4],[0,-3],[0,-2],[-2,-4],[-1,-2],[-1,-4],[-1,-6],[1,-8],[1,-5],[0,-6],[-2,-6],[-2,-3],[-1,-3],[-5,-2],[-9,-3],[-5,0],[-3,1],[-2,2],[-2,2],[-1,2],[-1,3],[-3,12],[-1,2],[-1,2],[-1,2],[-2,1],[-3,1],[-2,-1],[-2,-2],[-1,-3],[-3,-10],[-1,-2],[0,-3],[1,-3],[2,-6],[4,-11],[1,-7],[2,-4],[2,-2],[2,-1],[5,0],[2,-1],[2,-2],[1,-2],[0,-5],[0,-4],[-2,-9],[-1,-5],[0,-6],[2,-5],[2,-4],[5,-7],[1,-2],[1,-4],[-2,-4],[-1,-3],[-1,-4],[0,-5],[2,-12],[0,-4],[0,-4],[-2,-3],[-2,-3],[-12,-9],[-1,-4],[0,-6],[0,-11],[0,-6],[-1,-8],[-2,-3],[-2,-2],[-22,-11],[-2,-3],[-1,-7],[1,-13],[2,-8],[1,-6],[0,-5],[-1,-6],[-1,-4],[-10,-25],[-1,-4],[0,-3],[2,-2],[17,-7],[16,-12],[3,-1],[2,0],[9,4],[2,-1],[2,-2],[1,-2],[0,-4],[0,-3],[-3,-5],[-6,-6],[0,-3],[0,-3],[2,-4],[2,-2],[4,-4],[9,-7],[22,-7],[3,0],[2,2],[1,3],[9,27],[1,3],[3,0],[5,-2],[5,-4],[1,-2],[1,-4],[-4,-12],[-6,-18],[-3,-4],[-2,-2],[-6,-12],[-1,-3],[-1,-3],[1,-4],[1,-5],[1,-3],[9,-11],[1,-3],[1,-6],[-1,-10],[-1,-22],[1,-4],[0,-8],[-1,-5],[-1,-8],[-4,-8],[-3,-3],[-2,-2],[-2,-2],[-1,-3],[-2,-5],[-10,-56],[0,-11],[-1,-18],[1,-10],[1,-8],[1,-4],[4,-7],[6,-6],[3,-3],[2,-3],[2,-4],[0,-6],[-1,-7],[-4,-7],[-4,-5],[-3,-3],[-2,-5],[-2,-6],[-1,-11],[0,-15],[-1,-4],[-1,-4],[-3,-5],[-4,-4],[-2,-3],[-1,-3],[1,-7],[1,-8],[1,-3],[0,-5],[-1,-12],[-4,-23],[-15,-63]],[[6034,7265],[-16,-46],[-6,-12],[-11,-6],[-5,-5],[-2,-4],[-2,-5],[-3,-12],[-2,-3],[-2,-3],[-8,-3],[-9,-9],[-3,-4],[-2,-4],[-3,-11],[-2,-9],[-2,-4],[-2,-2],[-5,-2],[-15,-2],[-7,-3],[-36,-30],[-16,1],[-2,1],[-1,3],[-1,3],[-2,2],[-4,0],[-17,-5],[-43,3],[-10,4],[-1,2],[-1,2],[-2,5],[-2,7],[0,3],[-1,3],[0,4],[-2,6],[-1,2],[-1,2],[-3,1],[-3,1],[-6,0],[-3,-1],[-13,-14],[-3,-1],[-1,1],[-3,5],[-1,3],[-3,5],[-2,2],[-3,1],[-11,-1],[-26,-19],[-2,-2],[-2,-2],[-3,-5],[-8,-21],[-5,-8],[-5,-5],[-3,-2],[-3,0],[-2,1],[-4,4],[-2,2],[-25,0]],[[5639,7079],[-26,23],[-3,4],[-3,6],[1,2],[2,3],[3,5],[2,1],[1,3],[1,3],[0,5],[-1,2],[-2,2],[-5,1],[-5,-1],[-3,0],[-4,1],[-7,5],[-3,4],[-2,3],[-1,2],[0,3],[-1,3],[0,4],[0,4],[0,5],[-1,7],[-1,3],[-2,2],[-10,13],[-1,6],[-1,4],[1,4],[3,6],[4,10],[1,0],[1,1],[1,1],[1,0],[9,-2],[1,0],[2,2],[1,2],[1,4],[0,3],[1,14],[-1,14],[-2,6],[-3,3],[-18,-1],[-5,1],[-2,2],[-4,4],[-4,7],[-15,31],[-6,6],[-12,17],[-5,5],[-4,3],[-9,-2],[-9,-4],[-2,-2],[-1,-2],[-1,-3],[-1,-3],[0,-4],[0,-4],[-1,-3],[-2,-5],[-1,-2],[0,-4],[0,-3],[0,-3],[0,-3],[-1,-2],[-4,-3],[-2,-2],[-1,-3],[-1,-3],[-3,-6],[-1,-2],[-2,-2],[-2,-2],[-3,0],[-17,2],[-2,0],[-3,-1],[-2,-1],[-1,-2],[-3,-5],[-3,-5],[-2,-2],[-2,-2],[-5,-1],[-2,-1],[-2,-2],[-1,-2],[-4,-8],[-2,-2],[-2,-2],[-3,0],[-5,1],[-3,-1],[-2,-1],[-3,-4],[-2,-2],[-2,-1],[-2,0],[-27,9],[-1,0],[-2,-1],[-2,-1],[-2,-2],[-4,-8],[-5,-6],[-33,13],[-9,1],[-6,0],[-2,-3],[-3,-1],[-4,-2],[-3,2],[-3,2],[-4,4],[-3,2],[-5,0],[-3,1],[-2,2],[-2,2],[-1,2],[-1,3],[-1,3],[-1,3],[0,4],[1,9],[-1,5],[-1,5],[-3,2],[-3,1],[-8,-1],[-3,2],[-2,2],[-13,18],[-1,3],[-1,3],[0,3],[0,4],[1,8],[1,3],[2,1],[4,0],[2,1],[2,2],[1,2],[2,4],[1,7],[1,4],[1,4],[0,3],[-2,11],[-2,13],[-1,6],[-2,6],[-3,5],[-6,10],[-10,12],[0,1],[-1,3],[0,8],[0,5],[-2,3],[-2,1],[-7,0],[-6,2],[-3,2],[-1,4],[0,3],[1,4],[1,4],[0,3],[-1,4],[-3,5],[-2,4],[-1,4],[-2,6],[-2,3],[-2,1],[-3,0],[-2,-1],[-2,-2],[-5,-6],[-2,-1],[-4,-2],[-5,-1],[-24,4],[-5,-1],[-4,-2],[-7,-9],[-3,-1],[-5,1],[-20,8],[-3,-1],[-1,-2],[-4,-9],[-1,-3],[-3,-3],[-4,0],[-2,1],[-2,2],[-3,6],[-2,4],[-5,7],[-4,2],[-3,1],[-12,-5],[-5,0],[-2,2],[-2,3],[0,3],[1,4],[1,3],[6,15],[4,14],[3,11],[1,8],[2,21],[0,3],[-1,4],[-4,5],[-14,16],[-4,4],[-23,12],[-5,4],[-2,3],[-1,3],[-1,3],[0,4],[0,4],[0,4],[1,5],[2,16],[2,18],[0,8],[0,4],[0,3],[-1,7],[-1,3],[-1,4],[-1,3],[-2,4],[-10,14],[-5,4],[-3,1],[-3,-1],[-3,1],[-6,2],[-5,6],[-3,3],[-2,1],[-2,0],[-2,-2],[-1,-2],[-3,-3],[-2,-2],[-5,0],[-2,2],[-1,3],[-1,4],[-1,29],[1,61]],[[4940,7829],[1,9],[7,54]],[[4948,7908],[1,-8],[-1,-8]],[[4948,7908],[-1,7],[-5,20],[-1,5]],[[4941,7940],[1,5],[2,2],[2,0],[8,-1],[2,1],[2,2],[1,2],[1,4],[-1,7]],[[4959,7962],[0,1]],[[4959,7987],[0,-24]],[[4959,7987],[2,2],[7,19]],[[4969,8023],[-1,-15]],[[4969,8023],[14,13],[11,19]],[[4994,8055],[-2,27],[6,4],[-1,5]],[[4986,8137],[2,-7],[4,-28],[2,-5],[3,-6]],[[4986,8137],[-5,5],[-5,1]],[[4971,8157],[2,-12],[3,-2]],[[4971,8157],[1,12],[3,7],[5,3]],[[4986,8177],[-6,2]],[[4986,8177],[0,7],[-5,3]],[[4971,8211],[2,-12],[4,-7],[4,-5]],[[4971,8211],[3,8],[-2,7],[-5,7]],[[4945,8279],[5,-9],[14,-6],[7,-5],[-3,-11],[-2,-5],[-4,-4],[5,-6]],[[4945,8279],[0,6],[2,3]],[[4948,8290],[-1,-2]],[[4948,8290],[2,1],[4,2],[0,6],[-4,3]],[[4950,8302],[-8,10],[0,8],[12,16]],[[4954,8336],[5,3],[-1,10]],[[4958,8349],[-1,4],[2,2],[3,8]],[[4965,8415],[3,-13],[-5,-21],[2,-14],[-3,-4]],[[4965,8415],[6,2],[13,1]],[[4989,8421],[-5,-3]],[[4989,8421],[2,9],[1,13]],[[4992,8443],[1,11],[5,8]],[[4986,8476],[8,-6],[4,-1],[0,-7]],[[4986,8476],[5,8],[10,9],[7,12]],[[5008,8520],[0,-15]],[[5008,8520],[-3,9],[0,4],[2,3],[2,7],[10,18],[1,3],[2,3],[2,7]],[[5024,8574],[3,6],[9,7]],[[5036,8587],[1,8],[0,10]],[[5059,8614],[-4,-3],[-13,2],[-3,-2],[-2,-6]],[[5059,8614],[4,6],[5,11]],[[5065,8648],[1,-6],[2,-4],[0,-7]],[[5065,8648],[0,4],[12,6],[6,6],[6,6],[5,7],[4,9],[0,3],[0,5],[1,6],[3,6],[3,4],[3,2],[2,-2],[3,-5],[11,1],[4,13],[-4,13],[-12,2],[1,5],[1,5],[1,5],[2,5],[-2,17],[7,10],[10,5],[59,5],[17,-3],[10,-9],[20,-24],[10,-5],[10,6],[7,17],[7,19],[8,17],[34,19],[39,1],[76,-21],[49,4]],[[5478,8812],[26,3],[14,-4],[10,-13],[3,-17],[0,-18],[2,-15],[7,-7],[8,2],[22,16],[16,2],[26,-9],[8,0],[59,40],[19,22],[12,38],[6,59],[4,18],[4,6],[5,5],[5,6],[2,11],[-1,8],[-8,21],[-2,10],[6,34],[17,6],[37,-20],[21,9],[84,-63],[13,0],[26,9],[12,1],[7,-5],[13,-15],[8,-1],[8,5],[44,57],[8,5],[4,0],[5,-5],[4,2],[3,5],[5,14],[5,3],[8,4],[5,8],[11,19],[7,8],[6,1],[42,-11],[28,0],[7,-2],[11,-11]],[[3719,8207],[-14,-3],[-10,-7],[-5,-2],[-4,-3],[-1,-2],[-2,-6],[-1,-9],[-2,-19],[1,-9],[1,-6],[6,-9],[3,-5],[1,-3],[0,-3],[0,-4],[0,-4],[-1,-3],[-3,-1],[-2,1],[-2,2],[-17,21],[-2,3],[-1,3],[-1,3],[-2,6],[-2,6],[-1,2],[-2,3],[-2,1],[-2,1],[-2,-1],[-1,-2],[-2,-8],[-4,-44],[0,-12],[1,-9],[6,-8],[2,-3],[1,-3],[0,-5],[-1,-5],[-3,-9],[-1,-4],[-2,-4],[-4,-7],[-2,-1],[-2,-2],[-24,-8],[-1,-2],[-1,-3],[1,-4],[13,-42],[1,-2],[0,-2],[1,-7],[0,-4],[-1,-6],[-1,-6],[-4,-11],[-2,-5],[-2,-4],[-10,-8],[-2,-2],[-1,-3],[-1,-3],[-6,-24],[-2,-6],[-1,-5],[-2,-2],[-2,-2],[-3,-8],[-1,-2],[-1,-6],[-1,-7],[-1,-22],[-1,-7],[-2,-8],[-2,-4],[-2,-3],[-5,-7],[-1,-2],[-2,-5],[-5,-18],[-2,-5],[-2,-4],[-10,-7],[-17,-6],[-2,-1],[-2,-2],[-2,-2],[-1,-4],[-4,-21],[-1,0],[-2,-4],[-1,-2],[0,-3],[3,-9],[4,-12],[1,-4],[1,-6],[0,-9],[2,-5],[1,-3],[3,-5],[2,-3],[0,-4],[-2,-5],[-2,-3],[-4,-3],[-1,-3],[1,-5],[2,-4],[5,-11],[2,-6],[0,-7],[0,-10],[-7,-48],[0,-5],[0,-7],[1,-11],[1,-6],[1,-4],[0,-3],[5,-12],[8,-19],[1,-3],[2,-6],[1,-7],[1,-3],[-1,-7],[-2,-10],[-9,-38],[-4,-9],[-9,-15],[-1,-5],[-4,-18],[-3,-10],[-1,-2],[0,-4],[0,-4],[2,-9],[2,-4],[2,-3],[8,-7],[2,-2],[1,-2],[1,-4],[-3,-15],[-15,-26]],[[3516,7268],[-21,7],[-3,2],[-2,4],[0,4],[0,5],[0,5],[-1,5],[-2,8],[-2,3],[-3,2],[-7,0],[-3,-2],[-1,-2],[-2,-3],[-1,-6],[-3,-12],[-1,-3],[-2,-2],[-2,-1],[-9,-4],[-8,-6],[-4,-4],[-7,-9],[-2,-5],[-3,-3],[-4,-5],[-3,-2],[-3,0],[-6,2],[-8,7],[-9,5],[-3,0],[-3,0],[-8,-11],[-30,-19],[0,-1],[-2,-4],[-1,-3],[-1,-4],[0,-4],[0,-3],[1,-8],[0,-4],[0,-4],[-1,-4],[-2,-2],[-3,-1],[-2,1],[-10,6],[-5,1],[-3,-2],[-1,-3],[0,-4],[-1,-8],[-1,-5],[-2,-5],[-4,-7],[-3,-4],[-1,-4],[0,-4],[-2,-6],[-4,-7],[-19,-22],[-1,-4],[0,-3],[0,-7],[0,-2],[0,-4],[-1,-3],[-1,-3],[-2,-3],[-20,-21],[-3,-5],[-4,-9],[-3,-10],[-2,-4],[-4,-6],[-16,-16],[-1,-3],[-5,-11],[-2,-5],[-8,-11],[-3,-3],[-4,-2],[-10,-1],[-3,0],[-5,2],[-4,0],[-6,-1],[-4,-2],[-2,-2],[-7,-9],[-3,-5],[-18,-41],[-7,-13],[-9,-9],[-21,-14]],[[3104,6883],[-1,30],[-1,3],[-3,5],[-3,3],[-4,5],[-1,5],[0,5],[0,4],[1,4],[2,7],[2,6],[1,3],[3,5],[2,4],[1,6],[0,5],[-1,4],[-3,4],[-2,1],[-1,-1],[-5,-8],[-3,-4],[-13,-7],[-2,-1],[-3,0],[-3,1],[-27,20],[-5,2],[-3,1],[-3,-1],[-2,0],[-2,-1],[-12,-10],[-4,0],[-6,2],[-12,7],[-6,2],[-4,0],[-10,-12],[-40,-64],[-3,-4],[-6,-5],[-50,-6],[-7,-2],[-4,-3],[-7,-10],[-2,-3],[-4,-4],[-3,0],[-2,2],[-3,6],[-3,3],[-2,-1],[-2,-1],[-9,-14],[-2,-2],[-4,-3],[-3,0],[-1,2],[-3,3],[-3,3],[-10,4],[-10,6],[-10,5],[-5,0],[-4,-1],[-1,-3],[-1,-3],[-2,-16],[-1,-8],[1,-4],[0,-3],[2,-2],[1,-3],[5,-6],[2,-3],[0,-2],[0,-4],[-3,-9],[0,-4],[-2,-4],[-3,-5],[-12,-11],[-1,-2],[-1,-4],[-1,-4],[1,-4],[0,-7],[0,-4],[0,-10],[-1,-4],[-1,-4],[-1,-1],[-3,5],[-3,3],[-6,1],[-2,-1],[-2,-3],[0,-4],[-1,-15]],[[2733,6745],[-31,28],[-40,53],[-4,8],[-4,25],[0,4],[0,8],[0,17],[4,24],[-1,5],[-1,5],[-9,15],[-1,6],[0,4],[1,3],[12,18],[3,5],[1,3],[1,4],[0,5],[0,8],[-2,13],[-1,7],[-2,4],[-2,2],[-2,2],[-5,2],[-2,1],[-3,-1],[-5,-1],[-11,-11],[-4,-2],[-5,0],[-9,1],[-6,4],[-3,10]],[[2602,7024],[25,36],[10,16],[5,10],[3,4],[4,3],[4,1],[6,4],[2,6],[1,5],[0,4],[0,4],[-2,2],[-2,2],[-8,2],[-2,2],[-1,2],[-11,28],[-4,8],[-7,9],[-7,8],[-1,2],[-2,3],[-1,4],[1,3],[2,2],[2,0],[8,-2],[3,1],[2,1],[2,1],[1,3],[2,2],[3,7],[7,18],[0,2],[-1,3],[-1,2],[-3,5],[-12,14],[-2,3],[-2,5],[0,4],[1,4],[2,3],[3,5],[2,3],[2,1],[2,0],[20,-8],[33,-5],[3,1],[4,3],[4,6],[3,5],[1,4],[0,5],[0,4],[0,4],[-1,3],[0,4],[-2,6],[-5,15],[-1,4],[1,7],[1,3],[2,2],[31,-7],[3,0],[4,3],[1,3],[-1,3],[-1,2],[-10,9],[-2,3],[0,4],[1,7],[3,6],[1,5],[0,4],[-2,10],[0,4],[0,5],[2,1],[1,-1],[7,-9],[5,-5],[9,-6],[11,-3],[3,0],[5,2],[12,12],[15,8],[17,13],[9,10],[9,7],[22,0],[6,-2],[2,-1],[6,-9],[9,-15],[1,-3],[0,-3],[0,-3],[-1,-3],[2,-3],[1,-2],[17,-4],[3,-1],[2,-2],[3,-4],[9,-14],[4,-4],[2,-2],[3,0],[5,0],[2,2],[2,3],[4,33],[1,4],[1,3],[2,4],[2,5],[3,7],[1,4],[0,4],[0,7],[0,4],[0,4],[-2,19],[1,39],[0,3],[0,3],[1,4],[3,8],[2,3],[2,3],[2,1],[19,23],[4,3],[2,1],[2,0],[3,0],[8,-3],[4,0],[2,2],[2,2],[2,6],[1,3],[-1,2],[-1,2],[-2,3],[-10,7],[-2,2],[-1,4],[2,7],[5,12],[11,15],[2,4],[1,3],[0,4],[0,4],[0,4],[0,4],[-1,2],[-2,3],[-2,4],[-2,3],[-7,8],[-2,2],[-1,3],[0,5],[2,7],[2,4],[2,2],[31,7],[3,1],[4,3],[6,6],[1,5],[1,4],[-1,8],[0,12],[-1,3],[-1,3],[-1,3],[-1,2],[-1,3],[-1,3],[-1,8],[0,3],[-1,4],[-7,17],[-7,12],[-4,4],[-2,2],[-2,1],[-5,-1],[-4,-1],[-1,-1],[-4,-5],[-2,-2],[-3,0],[-11,7],[-2,2],[-1,2],[0,5],[2,28],[1,6],[2,2],[30,9],[3,4],[5,7],[4,10],[2,7],[1,6],[0,10],[0,4],[-1,4],[-1,3],[-1,3],[-22,32],[-33,23],[-1,2],[-2,3],[-2,6],[-8,15],[-12,14],[-2,2],[-1,3],[-1,3],[-1,3],[0,8],[-1,4],[0,2],[-1,2],[-2,1],[-8,6],[-4,3],[-2,3],[-1,2],[-2,6],[-1,4],[1,7],[1,11],[4,22],[1,8],[-1,3],[-2,-1],[-6,-9],[-2,-1],[-2,-2],[-3,-1],[-6,1],[-2,1],[-3,1],[-2,2],[-1,2],[-1,3],[-1,4],[-1,3],[-1,1],[-2,1],[-2,-1],[-2,-3],[-1,-3],[-3,-9],[-1,-3],[-3,-4],[-2,-2],[-2,-1],[-3,-1],[-2,1],[-9,5],[-6,1],[-5,0],[-5,-2],[-5,-3],[-5,-5],[-2,-2],[-1,-3],[-1,-3],[-2,-11],[-2,-3],[-1,-2],[-2,-2],[-2,1],[-2,1],[-2,1],[-1,3],[-2,2],[-2,6],[-1,3],[0,3],[0,5],[3,37],[0,4],[-1,11],[0,9],[0,13],[2,16],[1,9],[0,4],[-1,4],[0,3],[-5,28],[-1,8],[0,5],[1,15],[0,6],[2,4],[2,5],[3,5],[8,10],[2,5],[3,10],[1,6],[1,5],[-1,3],[-1,3],[-2,2],[-2,2],[-8,3],[-2,2],[-1,3],[-1,3],[0,4],[-1,3],[-1,2],[-2,0],[-4,-2],[-3,0],[-5,2],[-3,1],[-1,2],[-2,3],[-1,3],[0,3],[0,4],[-1,13],[-1,19],[1,17],[2,21],[1,9],[1,7],[4,10],[21,43],[15,19],[3,5],[5,11],[5,13],[1,5],[1,5],[0,4],[-1,3],[-1,3],[-1,3],[-1,7],[-1,5],[-1,8],[0,7],[1,4],[1,4],[1,3],[2,2],[2,2],[6,5],[1,3],[-1,1],[-2,1],[-39,4],[-5,5],[-2,17]],[[2810,8632],[58,-1],[36,10],[92,-25],[30,2],[13,-4],[27,-36],[13,-8],[100,-6],[5,-4],[0,-7],[-1,-9],[1,-9],[5,-11],[6,-4],[95,-5],[81,-51],[28,-7],[43,22],[38,-2],[18,-6],[11,-9],[3,-16],[-1,-21],[0,-26],[3,-20],[7,-8],[8,-2],[11,2],[12,-4],[-1,-18],[-6,-21],[-3,-17],[6,-7],[9,1],[17,8],[26,-6],[9,1],[9,6],[12,19],[8,6],[15,0],[46,-27],[25,-1],[6,-6],[6,-20],[-4,-25],[-14,-50],[1,-3]],[[2935,5382],[9,-17],[1,-6],[0,-9],[0,-3]],[[2945,5347],[21,-13],[7,-1],[7,2],[7,7],[6,20],[5,7],[10,-8],[4,1],[3,5],[1,16],[2,6],[7,4],[4,-6],[2,-13],[-1,-19],[0,7],[-4,-33]],[[3026,5329],[1,-11],[5,-14],[6,-10]],[[3038,5294],[9,-7],[7,2],[6,12]],[[3060,5301],[-7,16],[-4,10],[-1,11]],[[3048,5338],[0,15],[1,4]],[[3049,5357],[12,-2]],[[3061,5355],[6,-13],[-1,-28]],[[3066,5314],[2,-28],[14,-13]],[[3082,5273],[25,8],[7,-1]],[[3114,5280],[5,-3],[11,-10],[14,-9],[12,-1],[11,7]],[[3167,5264],[10,17],[8,-5],[21,9],[8,-8],[11,-15],[3,-8],[8,-28],[5,-13],[6,-8],[7,-5],[10,-1],[7,7],[-7,33],[4,15],[5,1],[3,-5]],[[3276,5250],[2,-6],[2,-4]],[[3280,5240],[5,-2],[14,2],[9,4],[-1,10],[-8,11],[-7,8],[-16,7],[-8,7],[-1,10]],[[3267,5297],[9,12],[9,-4]],[[3285,5305],[16,-18],[6,-4],[7,-1],[5,6],[2,16],[-2,6],[-8,14]],[[3311,5324],[-2,8],[3,9]],[[3312,5341],[5,0],[5,-6],[2,-10],[2,-17],[4,-11],[6,0],[6,18],[1,10]],[[3343,5325],[-3,15],[2,8]],[[3342,5348],[4,6],[5,1]],[[3351,5355],[4,-2],[5,-5]],[[3360,5348],[-3,-21],[2,-19],[6,-15],[8,-6],[11,3],[6,8],[4,11],[7,12],[9,7],[9,-1],[16,-6]],[[3435,5321],[6,-10],[2,-4]],[[3443,5307],[2,2],[2,4],[2,2]],[[3449,5315],[6,-1],[8,-5]],[[3463,5309],[19,-3],[4,1],[3,5],[5,13],[2,3],[15,0]],[[3511,5328],[5,-2],[9,-10]],[[3525,5316],[5,-1],[5,0],[4,2],[4,4],[2,7],[0,14],[-2,4],[-5,1],[-4,4],[0,13],[8,3]],[[3542,5367],[18,-5],[4,-5]],[[3564,5357],[3,-6],[4,-4],[6,1]],[[3577,5348],[4,6],[6,16]],[[3587,5370],[5,5]],[[3592,5375],[17,-8],[12,-18],[9,-25],[6,-30]],[[3636,5294],[9,-65],[4,-9]],[[3649,5220],[-9,-21],[-27,-34],[-7,-6],[-6,4],[-12,17],[-8,4],[-16,-13],[-23,-44],[-2,-5],[-16,-13],[-14,1],[-46,27],[-9,9],[-5,2],[-5,-3],[0,-7],[1,-8],[0,-7],[0,-4],[2,-5],[0,-5],[-2,-3],[-5,2],[-5,-1],[-3,3],[-3,1],[-4,-7],[-16,-4],[-15,14],[-14,18],[-14,10],[-5,-3],[-1,-6],[-2,-7],[-3,-6],[-3,0],[-7,5],[-3,-1],[-4,-9],[0,-9],[2,-12],[3,-19],[0,-19],[-2,-13],[-5,-7],[-8,-1],[-8,6],[-5,11],[-5,12],[-6,10],[-8,5],[-3,-9],[-2,-12],[-14,-14],[-5,-12],[-3,-15],[0,-9]],[[3269,5008],[-13,-9]],[[3202,4980],[54,19]],[[3202,4980],[-7,-3],[-20,-1],[-8,-3]],[[3153,4962],[14,11]],[[3153,4962],[-7,-4],[-8,2]],[[3138,4960],[-4,2],[-3,-33],[1,-22],[-5,-32],[-7,-30],[-6,-21],[-6,-10],[-11,-14],[-5,-11],[-10,-34],[-4,-10],[-20,-14],[-10,-1],[-31,0],[-28,-13],[-20,3],[-7,-2],[-13,-9],[-23,-4],[-28,-18],[-211,-35],[-18,-20],[-42,-107],[-18,-27],[0,-1],[-27,-18],[-32,-9],[-6,-1]],[[2544,4469],[0,12],[0,5],[2,22],[1,4],[20,70],[1,8],[0,4],[0,4],[0,4],[-1,3],[0,4],[-4,12],[-1,7],[0,3],[0,21],[-1,4],[0,4],[-1,3],[-1,2],[-7,13],[-1,3],[-1,3],[-3,16],[-1,7],[0,16],[-2,19],[0,4],[0,3],[1,9],[2,7],[19,57],[2,8],[2,17],[0,4],[2,5],[3,5],[7,8],[5,3],[8,4],[2,1],[1,2],[22,41],[5,5],[4,3],[2,0],[3,1],[1,3],[1,5],[-1,3],[-2,6],[-1,4],[0,3],[0,4],[0,9],[0,4],[1,4],[0,3],[2,5],[3,4],[7,8],[6,5],[4,3],[4,4],[41,83],[33,39],[16,12],[18,8],[19,4],[9,-1],[5,-2],[9,-5],[4,-4],[4,-3],[2,-1],[3,0],[2,2],[2,3],[2,6],[2,8],[2,25],[3,88],[-1,11],[-11,48],[-5,28],[-1,12],[1,4],[0,5],[3,8],[1,5],[4,7],[6,8],[16,19]],[[2848,5423],[5,-6],[10,-4],[19,-3],[3,-6],[4,-23],[4,-6],[5,3],[2,7],[1,9],[3,9],[11,12],[7,-9],[5,-15],[8,-9]],[[2449,6229],[35,-82],[7,-20],[7,-32],[2,-7],[3,-10],[0,-4],[0,-4],[-3,-6],[0,-3],[-1,-4],[0,-4],[1,-4],[0,-3],[1,-3],[1,-7],[2,-19],[1,-12],[0,-3],[2,-4],[2,-3],[9,-5],[1,-5],[2,-7],[2,-9],[1,-7],[0,-4],[1,-4],[-1,-4],[0,-4],[0,-4],[-1,-4],[-1,-3],[-1,-2],[-7,-9],[-1,-2],[-1,-3],[-1,-3],[0,-4],[0,-3],[3,-13],[1,-4],[0,-4],[0,-4],[-1,-9],[0,-4],[0,-4],[0,-3],[1,-4],[1,-3],[1,-2],[2,-2],[4,-1],[3,1],[2,2],[1,3],[4,4],[2,1],[2,1],[2,-1],[8,-6],[14,-3],[2,-3],[2,-4],[2,-7],[1,-5],[0,-5],[0,-8],[1,-4],[0,-3],[1,-3],[1,-3],[1,-3],[0,-4],[-1,-3],[-1,-3],[-1,-3],[-2,-2],[-2,-1],[-2,-1],[-3,0],[-4,3],[-12,9],[-5,2],[-3,0],[-3,-1],[-2,-1],[-1,-2],[-1,-4],[0,-3],[0,-4],[1,-4],[1,-3],[5,-6]],[[2536,5775],[14,-8]],[[2550,5767],[4,-4],[2,-7]],[[2556,5756],[1,-6],[0,-6],[2,-9],[6,-16],[7,-7],[7,-1]],[[2579,5711],[18,6],[7,-2]],[[2604,5715],[22,-21],[4,-7],[0,-10]],[[2630,5677],[-3,-16],[1,-10],[2,-10]],[[2630,5641],[10,-25],[6,-7],[3,6],[2,12],[1,11]],[[2652,5638],[1,9],[3,7]],[[2656,5654],[4,7],[9,11]],[[2669,5672],[5,3],[6,-1],[0,-7],[-4,-12],[-4,-25],[-2,-27]],[[2670,5603],[2,-17],[10,17]],[[2682,5603],[10,-1]],[[2692,5602],[23,-16],[-9,-14]],[[2706,5572],[-24,-10],[-5,-17]],[[2677,5545],[6,-26],[11,7]],[[2694,5526],[21,33],[7,1]],[[2722,5560],[3,-3],[2,1],[0,14],[0,12],[-1,9],[2,5],[8,2],[6,-3],[5,-4],[6,-3],[7,3],[1,4],[-1,7],[0,6],[4,3],[3,-1],[6,-5],[4,-1],[-4,-14],[-2,-7],[-3,-6],[5,-10],[9,-11],[10,-9],[7,-4],[11,-2]],[[2810,5543],[8,-6],[12,-18],[12,-11]],[[2842,5508],[3,-4]],[[2845,5504],[5,-14],[-1,-6]],[[2849,5484],[-3,-3],[-1,-7]],[[2845,5474],[0,-9],[-1,-2]],[[2844,5463],[1,-1],[4,-9]],[[2849,5453],[3,-11],[-1,-7],[-3,-6],[0,-6]],[[2544,4469],[-14,-4],[-8,9],[-10,24],[-14,40],[-5,12],[-7,8],[-34,22],[-15,14],[-7,13],[-2,13],[-1,13],[-3,15],[-6,13],[-11,14],[-17,15]],[[2390,4690],[1,12],[5,35],[2,11],[22,51],[1,5],[-1,4],[-14,32],[-29,45],[-3,7],[-2,5],[-2,9],[-1,6],[0,5],[1,4],[0,4],[1,4],[2,6],[2,6],[3,7],[1,7],[0,4],[-1,4],[-9,22],[-8,24],[-1,3],[-2,4],[-28,40],[-8,10],[-5,7],[-3,7],[-3,3],[-3,2],[-11,0],[-2,1],[-1,3],[-1,5],[0,7],[-2,12],[-1,6],[-2,4],[-5,6],[-3,5],[-1,2],[-2,0],[-2,0],[-1,-3],[-3,-10],[-1,-3],[-2,-6],[-3,-5],[-3,-3],[-2,-2],[-4,-2],[-10,-3],[-11,0],[-13,4],[-3,2],[-3,4],[-5,8],[-3,6],[-2,5],[0,4],[-3,30],[-1,12],[0,8],[3,25],[0,3],[1,4],[0,4],[0,5],[-1,7],[-1,7],[0,3],[0,7],[0,6],[1,9],[0,5],[-1,7],[-1,4],[-2,2],[-2,1],[-2,-1],[-2,-1],[-21,-22],[-8,-5],[-20,-5],[-9,-9],[-7,-12],[-1,-2],[-4,-4],[-4,-2],[-3,0],[-3,0],[-5,4],[-2,3],[-2,3],[0,4],[0,4],[0,4],[1,7],[1,4],[1,3],[1,8],[0,6],[-1,6],[-3,11],[-2,5],[-2,4],[-1,2],[-4,4],[-2,2],[-2,1],[-5,1],[-4,2],[-4,3],[-24,31],[-2,5],[-2,4],[0,4],[0,4],[0,4],[1,9],[0,5],[-1,9],[-2,4],[-2,2],[-5,2],[-6,1],[-5,0],[-5,-1],[-6,-3],[-3,0],[-4,1],[-8,10],[-27,49],[-16,12],[-18,7]],[[1945,5468],[18,110],[0,8],[-1,11],[-1,3],[-1,3],[-2,6],[-4,9],[-2,6],[0,4],[0,4],[2,7],[10,72],[2,9],[7,7],[9,12],[2,3],[8,11],[3,7],[3,12],[11,52],[1,4],[2,3],[2,5],[8,9],[7,7],[5,2],[6,2],[43,-9],[22,1],[3,2],[4,3],[9,13],[3,2],[3,1],[5,-1],[15,-11],[4,2],[5,3],[19,22],[5,2],[2,0],[5,-1],[19,-9],[3,-1],[5,1],[20,13],[5,2],[10,-1],[10,3],[4,3],[18,16],[17,10],[5,1],[3,0],[2,0],[3,-1],[2,-1],[3,-1],[4,1],[8,5],[4,4],[3,4],[1,3],[1,4],[0,4],[0,3],[-1,4],[-8,15],[-3,8],[-5,-5]],[[2320,5970],[-8,2],[-10,4],[-3,5],[-1,23],[0,4],[0,5],[2,4],[2,5],[1,5],[0,4],[0,3],[-2,2],[-1,3],[-4,3],[-2,1],[-3,0],[-2,-2],[-9,-13],[-1,-1],[-2,-2],[-3,-1],[-2,1],[-2,1],[-1,3],[-1,3],[-1,3],[0,5],[0,6],[2,4],[2,3],[8,4],[5,2],[9,0],[6,2],[5,4],[3,5],[4,9],[14,21],[2,5],[1,3],[0,4],[-1,3],[-2,2],[-13,13],[-2,2],[1,6],[2,10],[13,31],[3,8],[0,4],[0,4],[0,4],[-1,3],[-1,7],[-3,8],[-1,4],[1,5],[1,6],[4,12],[3,5],[2,4],[2,1],[3,0],[15,-6],[5,0],[32,13],[6,0],[4,-2],[5,-3],[4,-3],[9,-13],[2,-3],[2,-2],[2,-1],[2,0],[4,1],[2,0],[2,-2],[3,-3],[3,-1],[2,-1],[6,1]],[[3516,7268],[6,-5],[2,-4],[6,-12],[6,-6],[3,-4],[2,-9],[2,-6],[2,-5],[4,-3],[3,-2],[8,-4],[2,-1],[2,-2],[0,-3],[-2,-3],[-1,-2],[-10,-8],[-3,-3],[-4,-5],[-1,-3],[-1,-2],[-1,-4],[-1,-3],[-9,-46],[0,-4],[0,-4],[1,-4],[2,-3],[4,-4],[3,-1],[12,-3],[4,-4],[2,-3],[1,-4],[1,-11],[2,-5],[2,-4],[5,-6],[18,-16],[14,-16],[4,-4],[2,-2],[0,-3],[-1,-4],[-2,-6],[-1,-3],[1,-3],[1,-2],[3,-1],[5,2],[2,-1],[2,-3],[3,-8],[2,-4],[4,-4],[9,-4],[2,-2],[1,-2],[2,-3],[1,-4],[0,-12],[1,-4],[2,-3],[3,-1],[19,-2],[2,0],[2,2],[1,3],[1,3],[3,11],[1,2],[2,3],[1,2],[2,7],[1,3],[2,2],[2,0],[3,0],[2,-3],[2,-4],[1,-9],[0,-6],[-2,-23],[0,-4],[1,-5],[1,-4],[3,-7],[7,-11],[5,-11],[1,-3],[1,-5],[0,-8],[-1,-4],[-2,-3],[-4,-3],[-2,-2],[-1,-3],[0,-3],[1,-4],[6,-7],[1,-3],[1,-3],[-1,-5],[-5,-10],[-3,-7],[-1,-6],[-1,-4],[0,-3],[0,-2],[0,-4],[2,-4],[3,-4],[8,-5],[2,-1],[2,-4],[1,-5],[0,-8],[0,-12],[-1,-4],[0,-3],[-2,-3],[-7,-2],[-2,-1],[-2,-2],[-1,-3],[-3,-5],[-1,-2],[-2,-2],[-2,-1],[-3,-1],[-2,0],[-22,4],[-1,0],[0,-4],[1,-5],[12,-33],[2,-6],[0,-4],[0,-3],[0,-3],[-1,-2],[-3,-1],[-7,-1],[-2,-1],[-2,-2],[0,-4],[-2,-22],[2,-4],[3,-4],[16,-9],[2,-2],[2,-3],[1,-5],[0,-4],[0,-4],[-1,-3],[0,-4],[0,-3],[0,-3],[2,-6],[12,-23],[5,-11],[1,-6],[1,-7],[1,-4],[1,-2],[1,-3],[3,-5],[89,-39]],[[3806,6494],[-8,-14],[-6,-3],[-8,0],[-2,-1],[0,-2],[1,-3],[8,-8],[1,-3],[0,-3],[-2,-7],[-4,-7],[-3,-4],[-2,-2],[-2,-1],[-3,0],[-11,3],[-2,0],[-2,-1],[-1,-3],[-4,-13],[-1,-4],[0,-4],[1,-5],[1,-3],[2,-3],[11,-8],[4,-3],[3,-5],[3,-4],[2,-6],[1,-3],[0,-4],[0,-3],[-1,-6],[-2,-7],[-13,-40],[-4,-8],[-1,-3],[0,-3],[1,-4],[2,-4],[4,-7],[1,-2],[1,-5],[-1,-5],[-4,-9],[-3,-3],[-3,0],[-4,3],[-2,1],[-2,0],[-3,-1],[-2,-1],[-1,-5],[-1,-7],[-1,-14],[1,-7],[1,-4],[12,-14],[2,-3],[1,-2],[-1,-3],[-1,-3],[-6,-6],[-1,-2],[-1,-4],[-1,-4],[1,-7],[1,-4],[2,-3],[2,-1],[2,-1],[3,-1],[27,0],[1,-2],[2,-3],[1,-3],[1,-6],[3,-13],[0,-4],[-1,-3],[-2,-2],[-13,-8],[-1,-1],[-1,-2],[0,-4],[1,-6],[1,-4],[2,-6],[1,-4],[0,-11],[1,-3],[1,-3],[1,-2],[2,-2],[7,-2],[2,-2],[2,-3],[0,-3],[0,-4],[0,-4],[0,-6],[0,-4],[0,-4],[1,-7],[1,-2],[6,-10],[2,-6],[1,-3],[0,-4],[-2,-5],[-4,-7],[-2,-6],[-1,-5],[-1,-8],[0,-5],[1,-4],[1,-3],[1,-3],[5,-10],[1,-3],[1,-3],[0,-3],[1,-4],[0,-8],[0,-8],[0,-4],[1,-4],[1,-6],[1,-7],[1,-3],[-1,-4],[-2,-4],[-4,-3],[-4,-1],[-13,-2],[-10,-7],[-4,-4],[-8,-17],[-2,-3],[-2,-1],[-3,0],[-5,1],[-4,3],[-4,3],[-9,11],[-4,2],[-8,2],[-3,2],[-4,3],[-7,8],[-6,5],[-11,3],[-3,-2],[-3,-5],[-8,-26],[-2,-2],[-2,-2],[-2,0],[-19,4],[-10,0],[-3,-3],[-2,-5],[-3,-13],[-2,-7],[-2,-5],[0,-5],[0,-7],[-1,-5],[-2,-5],[-7,-4],[-2,-2],[-1,-3],[-1,-4],[-2,-10],[-1,-5],[-1,-3],[-1,-3],[-2,-2],[-3,-4],[-5,-6],[-1,-2],[-2,-2],[-1,-3],[-2,-4],[-2,-13],[-2,-4],[-1,-4],[0,-5],[2,-9],[1,-5],[2,-4],[2,-5],[1,-3],[0,-4],[-1,-4],[-2,-5],[-2,-2],[-4,-4],[-2,-2],[0,-4],[0,-5],[1,-7],[1,-4],[4,-12],[3,-17],[2,-13],[1,-8],[1,-53],[2,-14],[3,-13],[2,-5],[1,-3],[1,-3],[1,-3],[0,-4],[-3,-3],[-2,-1],[-5,1],[-2,-2],[-1,-4],[0,-9],[1,-10],[1,-5],[1,-5],[-2,-23],[-2,-24],[-10,-54]],[[3167,5264],[-6,23],[-4,13],[-1,8],[1,4],[1,1],[3,1],[1,2],[1,4],[-1,2],[-5,6],[-4,6],[-3,2],[-8,7],[-3,3],[-3,6],[-1,4],[0,4],[1,3],[3,9],[1,3],[0,3],[0,4],[0,6],[-2,2],[-1,-1],[-2,-5],[-2,-2],[-3,1],[-4,4],[-1,4],[0,4],[1,4],[0,5],[-1,3],[-2,1],[-3,1],[-3,1],[-4,3],[-5,7],[-2,5],[-1,5],[0,4],[1,4],[2,11],[1,4],[0,4],[0,20],[0,4],[0,3],[2,8],[1,5],[-1,4],[-2,4],[-6,10],[-1,4],[0,4],[1,3],[2,6],[1,3],[1,7],[1,2],[1,2],[5,1],[2,2],[1,3],[0,3],[-2,2],[-9,6],[-1,2],[-2,2],[-6,14],[-1,5],[0,5],[2,31],[1,13],[1,5],[-1,3],[-2,2],[-2,0],[-4,-2],[-3,0],[-1,2],[0,4],[0,4],[1,3],[1,3],[1,4],[1,6],[0,9],[-1,5],[-1,4],[-4,9],[0,3],[1,3],[4,3],[2,3],[0,5],[-1,5],[-2,9],[0,4],[2,2],[5,2],[3,6],[0,2],[-1,6],[-5,12],[-3,11],[0,6],[0,5],[1,3],[1,3],[2,5],[5,7],[2,3],[1,4],[1,8],[0,5],[0,4],[-1,3],[-6,22],[-1,5],[0,5],[0,9],[1,3],[2,12],[1,5],[0,3],[-1,3],[-5,8],[-1,4],[-3,8],[0,5],[0,5],[3,15],[0,11],[0,7],[0,5],[1,4],[1,3],[2,2],[2,2],[3,3],[7,4],[1,3],[1,5],[0,10],[0,6],[1,5],[2,7],[2,8],[0,4],[-1,4],[-5,10],[-1,4],[-2,4],[-1,7],[-1,5],[1,6],[2,12],[0,4],[-1,6],[-3,19],[0,9],[0,11],[-1,5],[-1,4],[-1,2],[-11,12],[-1,4],[-2,5],[-4,26],[-4,18],[-7,25],[-3,11],[0,6],[0,5],[0,3],[1,3],[5,22],[1,1],[1,3],[1,2],[2,2],[12,9],[1,3],[2,2],[0,4],[2,12],[2,26],[1,7],[1,4],[1,3],[1,3],[1,2],[5,7],[2,3],[1,5],[2,9],[0,5],[-1,4],[-1,3],[-1,2],[-12,15],[-2,3],[-2,4],[-2,7],[0,6],[0,4],[0,4],[2,6],[1,3],[2,3],[5,6],[1,6],[1,9],[1,19],[0,10],[-1,6],[0,4],[-2,6],[-1,2],[-2,3],[-10,12],[-2,4],[-1,4],[-2,8],[0,5],[0,4],[1,5],[1,7],[1,11],[0,6],[0,5],[-1,4],[-1,2],[-2,3],[-1,2],[-6,6],[-2,4],[-3,7],[0,5],[0,4],[3,12],[1,7],[0,5],[0,4],[-2,10],[-4,16],[0,4],[0,3],[0,3],[1,3],[2,2],[1,2],[4,4],[24,12],[2,3],[1,5],[1,8],[-1,4],[-2,2],[-6,1],[-3,2],[-2,2],[-3,5],[0,4],[1,2],[1,2],[8,7],[2,2],[1,3],[1,4],[2,12],[-1,4],[-1,3],[-6,6],[-1,2],[-2,4],[-1,4],[0,3],[1,3],[2,2],[16,2],[4,1],[3,3],[2,4],[1,7],[0,5],[0,4],[-2,3],[-1,3],[-3,4],[-4,4],[-15,6],[-2,2],[-1,2],[0,2],[2,2],[9,7]],[[2257,7309],[7,2],[5,4],[4,2],[11,2],[2,1],[1,2],[2,2],[2,6],[2,3],[1,2],[2,1],[1,0],[3,0],[3,-3],[6,-6],[7,-12],[3,-6],[0,-5],[0,-4],[0,-3],[1,-3],[12,-18],[2,-2],[3,-1],[5,0],[7,4],[3,1],[4,-2],[2,-1],[3,-3],[12,-21],[3,-6],[0,-3],[1,-4],[0,-4],[-1,-3],[-1,-4],[-1,-3],[-1,-2],[-3,-5],[-4,-3],[-21,-8],[-2,-1],[-2,-2],[-1,-3],[-1,-3],[0,-3],[1,-3],[2,-2],[18,-22],[2,-4],[1,-3],[0,-3],[0,-4],[-1,-7],[0,-4],[0,-3],[2,-3],[3,-2],[6,1],[3,1],[2,3],[1,3],[1,3],[0,4],[0,8],[0,4],[1,3],[2,2],[2,0],[3,-2],[2,-4],[2,-4],[2,-7],[2,-2],[3,-2],[14,-1],[3,-1],[2,-2],[1,-4],[1,-4],[0,-4],[0,-4],[3,-4],[18,-16],[4,-7],[3,-5],[-1,-8],[0,-4],[1,-3],[2,-2],[2,-2],[4,-2],[21,-3],[7,1],[4,1],[4,4],[4,3],[4,2],[10,3],[27,-6],[5,1],[3,3],[-1,11],[1,4],[1,2],[4,-1],[6,-4],[12,-12],[9,-7],[13,4],[1,0],[3,-1],[2,-1],[2,-3],[2,-3],[1,-3],[1,-4],[1,-11],[-1,-28]],[[2733,6745],[0,-7],[0,-5],[1,-1],[1,-3],[2,-5],[2,-3],[9,-9],[2,-2],[1,-3],[1,-7],[1,-2],[6,-11],[1,-2],[0,-4],[1,-3],[0,-4],[-1,-3],[-2,-3],[-4,-2],[-6,-1],[-2,-1],[-2,-4],[-2,-8],[-1,-5],[0,-4],[2,-6],[1,-3],[1,-4],[0,-4],[0,-3],[-1,-4],[-1,-3],[-1,-3],[-2,-3],[-4,-4],[-7,-6],[-5,-2],[-6,-1],[-2,-1],[-9,-8],[-2,-2],[-10,-3],[-15,-13],[-2,-1],[-32,-9],[-4,-3],[-4,-2],[-21,-4],[-2,-1],[-2,-4],[-2,-7],[-3,-17],[0,-4],[0,-4],[1,-3],[3,-10],[7,-16],[1,-3],[1,-3],[0,-3],[0,-4],[0,-4],[-1,-4],[-2,-4],[-3,-4],[-9,-8],[-3,-2],[-3,-1],[-6,1],[-2,1],[-1,2],[-1,3],[-2,2],[-2,1],[-2,-3],[-2,-4],[-10,-27],[-1,-7],[-1,-4],[-3,-10],[-12,-34],[-2,-3],[-75,-63],[-4,-2],[-3,0],[-3,1],[-5,0],[-3,-2],[-1,-6],[-3,-32],[-1,-12],[-6,-18]],[[1945,5468],[-10,7],[-4,1],[-23,-5],[-9,1],[-12,4],[-5,3],[-3,3],[-2,2],[0,3],[-1,3],[0,4],[0,5],[-1,5],[-1,5],[-4,6],[-3,1],[-2,0],[-2,-3],[-6,-13],[-2,-3],[-4,-2],[-2,0],[-1,1],[0,2],[-1,2],[0,3],[-1,3],[0,11],[0,3],[-1,5],[-2,1],[-2,-1],[-4,-6],[-4,-2],[-6,-1],[-20,3],[-4,2],[-3,4],[-4,5],[-2,4],[-9,23],[-9,39],[-4,8],[-4,7],[-3,2],[-3,2],[-12,-3],[-18,-9],[-4,-3],[-3,-1],[-3,-1],[-7,1],[-4,1],[-2,2],[-1,3],[-3,5],[0,4],[-1,3],[-2,5],[-2,5],[-15,20],[-11,19],[-2,6],[-2,6],[-1,11],[0,4],[0,8],[0,4],[2,8],[4,12],[-1,8],[-8,15],[-7,7]],[[1659,5755],[-1,2],[-7,18],[-2,10],[1,13],[4,20],[0,8],[-6,10],[-19,16],[-8,9],[-12,25],[-14,15],[1,1],[1,0],[-7,7],[-5,-11],[-2,-2],[-3,6],[2,12],[7,21],[6,35],[7,30],[2,15],[-6,90],[-2,16],[-2,8],[-9,14],[-6,14],[-1,5],[-2,11],[-2,43],[-3,14],[-9,35],[11,39],[33,65],[7,32],[3,8],[5,7],[9,2],[5,3],[7,11],[27,72],[4,8],[4,3],[7,5],[4,5],[2,7],[3,20],[3,8],[18,28],[46,102],[17,28],[16,18],[13,30],[98,158],[19,22],[24,26],[12,15],[34,55],[6,12],[0,2],[6,26],[4,15],[6,8],[8,6],[14,6],[78,2],[23,14],[9,32],[2,11],[1,13],[-1,19],[1,12],[28,21],[8,13],[5,11],[1,2],[-2,3],[-3,13],[-5,47],[10,26]],[[2229,7340],[-6,3],[-4,4],[-3,19],[-5,4],[-6,-1],[-5,-2],[-5,-4],[-3,-7]],[[2229,7340],[4,-8],[2,-9]],[[2239,7315],[-4,8]],[[2239,7315],[5,-3],[8,-4]],[[2257,7309],[0,-7],[-5,6]],[[2390,4690],[-3,3],[-9,3],[-24,0],[-24,9],[-9,0],[-10,-9],[-16,-22],[-21,-1],[-29,-23],[-9,1],[-26,15],[0,-1],[-8,2],[-16,24]],[[2186,4691],[-8,6]],[[2178,4697],[-21,9],[-8,8]],[[2149,4714],[-13,1],[-43,-28]],[[2093,4687],[-9,0],[-3,15],[-23,32]],[[2058,4734],[-7,6]],[[2051,4740],[-30,-3],[-9,2],[-18,10]],[[1994,4749],[-28,5],[-8,4]],[[1958,4758],[-16,-5],[-5,-2],[-4,-6],[-2,-7],[-2,-5],[-3,-5],[-1,-2],[-2,-2],[-9,0],[-27,21],[-1,1],[-1,0],[-1,-1],[-3,-2],[-4,0],[-3,0],[-3,2],[-10,18],[-20,27],[-18,33],[-7,8],[-30,16],[-10,2],[-9,-6],[-8,-20],[-10,-47],[-5,-17],[-19,-22],[-7,-2],[-7,4],[-6,6],[-7,7],[-7,6],[-7,-1],[-4,-12],[4,-20],[-4,-13],[-7,-9],[-9,-4]],[[1664,4699],[-16,20],[-3,12],[7,14],[1,16],[3,9],[1,10],[-3,19],[-4,13],[-6,12],[-13,18],[-15,13],[-2,5],[-7,7]],[[1607,4867],[-7,-3],[-7,-7],[-8,-4],[-31,0],[-6,-5]],[[1548,4848],[-1,0],[-2,4],[-7,24],[-6,31],[-6,20],[-32,65],[-2,1],[-1,1],[-2,0],[-9,-7],[-6,-1],[-7,3],[-8,5],[-2,0],[-2,0],[-2,-1],[-3,-5],[-3,-1],[-4,1],[-2,5],[-21,50],[-5,20],[0,14],[1,11],[0,10],[-4,8],[-3,1],[-11,-1],[0,15],[6,30],[-15,12]],[[1389,5163],[-15,3]],[[1374,5166],[-14,-9],[-4,-7],[-1,0],[-11,3]],[[1344,5153],[1,71],[5,16],[1,16],[-5,40],[1,20],[6,16],[28,35],[3,7],[5,16],[3,7],[5,5],[12,6],[5,5],[7,14],[5,18],[3,21],[-1,22],[1,13],[4,6],[4,5],[3,8],[3,12],[1,6],[-1,34],[0,8],[0,8],[3,12],[1,2],[3,7],[10,13],[4,9],[1,6],[0,13],[0,5],[6,17],[9,42],[8,9],[16,3],[7,9],[0,17],[2,23],[3,22],[3,16]],[[1519,5813],[9,14],[9,-4],[16,-27],[10,-11],[10,-2],[9,1],[15,-1],[10,4],[5,-1],[4,-6],[8,-17],[5,-2],[7,-6],[10,-13],[8,-6],[5,16],[0,3]],[[2192,7356],[-11,38],[-3,21],[2,23]],[[2180,7438],[-11,4],[-12,11],[-6,15],[6,17]],[[2157,7485],[0,6],[-12,3]],[[2145,7494],[-10,6],[-7,13]],[[2128,7513],[0,19],[5,17]],[[2133,7549],[10,11],[11,2]],[[2154,7562],[12,-9]],[[2166,7553],[9,5],[14,1]],[[2189,7559],[13,4],[5,17]],[[2207,7580],[-5,12],[-36,29]],[[2166,7621],[-29,39],[-7,16],[-2,13]],[[2128,7689],[0,9],[-2,8]],[[2126,7706],[-4,10],[-6,5],[-5,4]],[[2111,7725],[-3,4]],[[2108,7729],[2,8],[0,6],[-5,41],[-4,13],[-11,26],[-7,19],[2,9],[7,6]],[[2092,7857],[-5,12],[-20,30],[-22,20],[-10,17]],[[2035,7936],[-23,75],[-8,7],[-8,1]],[[1996,8019],[-7,5],[-3,21]],[[1986,8045],[3,13],[6,14],[7,12]],[[2002,8084],[8,5],[-3,13],[1,10],[3,7]],[[2011,8119],[5,3],[-4,12],[-17,37],[-1,7]],[[1994,8178],[7,19],[-6,6],[-8,5]],[[1987,8208],[-7,6],[-2,14],[-1,6]],[[1977,8234],[4,-4],[3,3],[2,15],[-1,9],[-11,48],[-3,8],[1,8],[5,13],[4,7],[5,4],[42,15],[10,0],[31,-13],[10,-1],[17,-10],[12,-21],[13,-17],[17,4],[64,83],[48,48],[13,24],[10,65],[6,19],[16,34],[9,13],[9,5],[107,12],[27,-9],[8,0],[121,27],[39,29],[19,9],[20,1],[72,-28],[84,-2]],[[5609,6968],[4,-1],[4,0],[2,0],[3,-4],[2,-6],[3,-11],[5,-11],[2,-3],[2,-3],[1,-4],[1,-8],[1,-5],[3,-5],[3,-2],[9,-3],[5,-2],[1,-2],[1,-1],[8,-16],[2,-3],[3,0],[4,3],[3,4],[3,4],[2,2],[2,1],[2,0],[2,-1],[3,-4],[1,-3],[0,-5],[1,-12],[-2,-5],[-1,-3],[-15,-8],[-1,-2],[0,-6],[9,-45],[1,-4],[4,-4],[3,-2],[10,-6],[2,-1],[2,0],[7,3],[2,1],[2,-2],[20,-57],[2,-7],[2,-2],[10,-9],[2,-3],[1,-5],[1,-9],[0,-6],[-1,-6],[-4,-20],[0,-4],[0,-6],[1,-17],[0,-5],[-2,-4],[-1,-2],[-2,-1],[-2,1],[-4,2],[-2,1],[-2,-1],[-2,-2],[-1,-3],[-1,-4],[1,-7],[3,-10],[15,-41],[8,-15],[2,-2],[2,-1],[2,-1],[2,1],[4,3],[2,1],[2,0],[2,-1],[2,-2],[6,-10],[3,-6],[2,-5],[1,-2],[1,-2],[2,0],[1,1],[4,3],[2,0],[2,-1],[14,-16],[2,-4],[1,-5],[0,-11],[0,-6],[-1,-26],[1,-4],[1,-4],[3,-5],[3,-2],[46,-27],[2,-4],[2,-7],[1,-28],[1,-5],[2,-7],[2,-4],[1,-3],[12,-12],[1,-3],[2,-4],[3,-18],[0,-5],[0,-6],[-1,-11],[-1,-6],[-2,-4],[-1,-3]],[[5900,6277],[-10,-8],[-1,-2],[-2,-2],[-1,-3],[-17,-43],[0,-5],[1,-6],[4,-11],[4,-9],[3,-5],[17,-33],[2,-6],[18,-71],[1,-8],[0,-17],[-2,-47]],[[5917,6001],[-5,-28],[-1,-3],[-9,-42],[0,-3],[0,-4],[3,-5],[5,-6],[1,-2],[1,-3],[2,-3],[0,-2],[4,-13],[3,-23],[1,-11],[0,-27],[0,-6],[0,-3],[1,-2],[2,-8],[0,-4],[8,-31],[1,-3],[2,-2],[7,-2],[2,-2],[1,-3],[0,-4],[-1,-4],[-1,-4],[-3,-5],[-19,-24],[-3,-5],[-2,-5],[-2,-3],[-3,-2],[-7,1],[-7,3],[-2,2],[-1,2],[-2,3],[-11,11],[-5,3],[-2,1],[-3,-2],[-3,-4],[-2,-4],[-1,-4],[-1,-3],[-2,-7],[-4,-7],[-8,-10],[-2,-2],[-4,-1],[-5,1],[-4,1],[-2,2],[-5,6],[-4,4],[-3,0],[-2,-1],[-3,-4],[-1,-4],[0,-4],[0,-4],[0,-4],[-1,-4],[-1,-3],[-3,-2],[-6,0],[-3,2],[-2,2],[-1,3],[0,4],[-1,18],[-1,10],[-2,6],[-1,3],[-16,34],[-3,8],[-1,3],[0,4],[0,24],[0,3],[-1,4],[-2,1],[-2,-1],[-4,-4],[-6,-9],[-2,-1],[-3,-1],[-5,0],[-7,2],[-5,2],[-2,2],[-1,3],[0,3],[-1,4],[0,3],[-2,3],[-4,4],[-1,2],[0,3],[0,8],[0,4],[-1,2],[-2,2],[-2,1],[-2,-2],[-6,-7],[-5,-3],[-5,-8],[-2,-3],[0,-3],[0,-4],[1,-3],[1,-3],[-1,-3],[-1,-3],[-2,0],[-7,2],[-4,3],[-3,0],[-3,0],[-3,-5],[-1,-3],[-7,-20],[-4,-9],[-6,-15],[-1,-3],[-2,-2],[-15,-15],[-3,-4],[-2,-4],[-2,-7],[0,-3],[0,-3],[2,-3],[1,-2],[2,-2],[0,-4],[0,-3],[0,-4],[-1,-5],[-3,-16],[-1,-3],[-2,-4],[-3,-2],[-7,0],[-4,1],[-2,2],[-1,3],[-1,3],[-3,1],[-12,-4],[-3,1],[-1,2],[0,2],[-1,3],[-2,2],[-2,2],[-2,0],[-2,-2],[-8,-11],[-2,-3],[-19,-10],[-6,-6],[-4,-4],[-2,-7],[-3,-5],[-5,-8],[-3,-6],[-2,-4],[-4,-2],[-5,2],[-3,4],[-1,5],[-3,17],[-1,5],[-1,5],[-1,5],[-2,3],[-2,4],[-14,14],[-33,18],[-3,1],[-15,1],[-3,-1],[-3,-4],[-3,-8],[-1,-6],[-3,-5],[-4,-3],[-25,1],[-13,7],[-4,1],[-4,-2],[-4,-7],[-1,-6],[-1,-7],[0,-13],[1,-18],[0,-20],[0,-6],[-2,-11],[-2,-5],[-2,-4],[-12,-15],[-4,-8],[-1,-4],[-1,-6],[-1,-6],[-2,-11],[-3,-15],[-3,-4],[-6,-5],[-13,-6],[-9,-7],[-10,-5],[-5,0],[-4,-1],[-4,-7],[-1,-1],[-3,1],[-1,3],[-3,9],[-1,2],[-1,2],[-2,1],[-6,5],[-6,1],[-7,-1],[-3,0],[-9,5],[-5,1],[-15,-1],[-4,-2],[-21,-19],[-7,-3],[-17,0],[-3,-1],[-3,0],[-3,1],[-2,2],[-5,6],[-7,7],[-13,6],[-11,1],[-7,4],[-5,2],[-21,-3],[-5,3],[-4,0],[-15,-6],[-6,-1],[-3,1],[-1,3],[-2,5],[-3,2],[-3,0],[-6,-1],[-3,1],[-3,1],[-2,2],[-2,1],[-3,1],[-6,0],[-5,1],[-4,0],[-4,-1],[-15,-13],[-12,-19],[-10,-11],[-4,-8],[-1,-4],[2,-6],[1,-4],[0,-3],[0,-3],[0,-2],[-4,-28],[-1,-4],[-3,-5],[-17,-22],[-4,-8],[-1,-5],[1,-2],[2,-2],[9,-6],[2,-2],[1,-3],[0,-3],[1,-19],[-1,-8],[-1,-9],[-3,-3],[-4,-3],[-32,-5],[-2,1],[-1,2],[-2,2],[-1,3],[-2,5],[-2,3],[-2,1],[-7,2],[-10,-1],[-3,-1],[-2,-3],[-3,-7],[-2,-5],[0,-5],[-1,-8],[0,-4],[-1,-4],[-1,-4],[-56,-45],[-2,-5],[-1,-2],[-2,-1],[-3,0],[-7,2],[-3,3],[-2,3],[-1,3],[-1,2],[-2,2],[-2,2],[-4,-1],[-5,-4],[-12,-14],[-11,-18],[-5,-3],[-14,2]],[[4753,5203],[-6,10],[-4,5],[-2,2],[-2,1],[-3,0],[-2,0],[-4,-2],[-21,-14],[-3,-1],[-2,1],[-2,2],[0,4],[0,6],[1,4],[1,2],[8,11],[1,2],[2,6],[2,5],[1,6],[0,3],[1,1],[2,0],[1,0],[1,1],[3,4],[2,5],[0,2],[1,3],[1,4],[0,4],[0,4],[-3,14],[-6,19],[-8,16],[-4,11],[-4,12],[-1,5],[-1,7],[0,29],[0,4],[-2,3],[-2,3],[-19,12],[-14,15],[-3,4],[-3,5],[-1,5],[0,5],[0,10],[2,4],[1,3],[8,7],[1,2],[2,2],[0,3],[-2,4],[-2,2],[-3,2],[-2,2],[-3,4],[-4,8],[-2,3],[-3,2],[-12,-2],[-15,3],[-2,2],[-2,8],[-8,61],[-2,9],[-2,2],[-10,4],[-2,2],[-1,2],[-1,4],[-2,5],[-1,8],[0,5],[1,4],[2,2],[5,6],[1,4],[0,5],[-1,8],[-1,4],[-2,4],[-2,5],[-2,2],[-2,2],[-2,1],[-7,0],[-2,1],[-2,2],[-3,4],[-1,2],[-8,7],[-2,3],[0,2],[2,4],[1,3],[2,4],[3,14],[2,4],[2,2],[2,0],[2,3],[1,4],[-1,11],[-1,2],[-1,5],[-2,2],[-1,2],[-3,2],[-2,1],[-13,0],[-3,1],[-4,4],[-1,2],[-1,3],[-1,4],[-1,4],[0,7],[1,7],[1,6],[5,11],[2,2],[2,2],[14,13],[8,5],[2,4],[0,4],[0,10],[0,6],[0,5],[2,5],[3,3],[8,6],[1,3],[1,5],[-2,10],[-1,6],[-1,5],[0,4],[2,6],[3,6],[0,4],[-1,5],[-2,6],[-3,4],[-2,3],[-6,4],[-2,2],[0,8],[10,17]],[[4591,5967],[16,-8],[2,-2],[2,-4],[-1,-2],[-1,-2],[-2,-1],[-2,-3],[-1,-3],[0,-7],[2,-5],[3,-5],[9,-10],[7,-4],[26,4],[10,-1],[3,2],[2,3],[-1,11],[0,3],[0,4],[2,3],[1,3],[6,8],[3,5],[3,9],[2,5],[2,10],[1,3],[1,3],[5,4],[10,11],[4,1],[14,1],[5,1],[2,2],[5,11],[3,6],[3,1],[3,0],[3,-1],[13,-2],[2,-1],[5,-4],[2,-1],[3,-1],[2,2],[1,3],[-1,3],[-1,3],[-3,8],[0,3],[-1,1],[0,3],[2,4],[3,4],[6,5],[3,5],[4,9],[3,1],[2,0],[9,-6],[2,-2],[0,-3],[0,-3],[-5,-11],[-2,-7],[-1,-4],[0,-3],[1,-3],[1,-3],[2,-1],[76,-25],[2,-1],[1,-1],[0,-3],[0,-4],[0,-4],[1,-4],[1,-4],[5,-3],[3,0],[3,2],[1,3],[8,54],[2,11],[1,4],[0,4],[0,7],[1,9],[1,8],[1,4],[2,4],[4,4],[4,2],[3,0],[2,-2],[2,-1],[2,-2],[4,-4],[1,-3],[2,-5],[1,-4],[2,-2],[2,-3],[1,0],[2,0],[14,8],[2,1],[5,7],[2,1],[2,-1],[12,-11],[2,1],[2,2],[2,5],[6,17],[1,4],[2,1],[2,-2],[3,-4],[3,-2],[5,-1],[7,3],[4,1],[2,-1],[2,-2],[1,-2],[9,-23],[1,-3],[3,-2],[2,0],[2,0],[8,7],[14,7],[1,2],[5,8],[2,3],[4,4],[3,-1],[7,-4],[4,0],[3,2],[4,7],[4,4],[3,0],[2,-1],[1,-3],[1,-3],[2,-3],[2,-3],[6,-1],[3,4],[2,4],[0,4],[0,12],[0,4],[1,4],[0,3],[11,28],[1,4],[3,4],[7,9],[3,4],[4,8],[4,7],[11,15],[2,6],[3,4],[18,19],[1,2],[1,3],[2,5],[7,26],[3,5],[4,6],[13,14],[3,4],[0,2],[0,4],[1,12],[0,3],[0,4],[-1,3],[-1,3],[-2,2],[-5,2],[-2,1],[-2,3],[0,3],[-1,4],[1,11],[1,4],[2,4],[5,7],[1,3],[5,22],[5,13],[1,4],[0,4],[0,4],[-1,3],[-2,6],[0,3],[1,4],[1,3],[5,15],[1,3],[4,36],[0,4],[0,3],[-2,2],[-1,2],[-2,3],[-1,2],[0,4],[0,3],[1,4],[0,2],[5,14],[1,4],[0,3],[-1,3],[-2,2],[-3,4],[-2,2],[-1,3],[1,3],[1,3],[4,8],[1,2],[4,13],[4,6],[2,4],[3,1],[15,3],[33,35],[4,2],[5,1],[16,0],[5,1],[7,4],[3,1],[2,0],[3,-1],[1,-2],[2,-2],[0,-4],[1,-3],[0,-4],[1,-3],[1,-3],[1,-2],[1,-3],[2,-2],[2,-2],[0,-3],[1,-4],[0,-7],[1,-3],[1,-3],[3,-5],[2,-5],[2,-3],[2,-1],[1,0],[1,2],[1,3],[1,9],[1,5],[2,5],[3,2],[2,-1],[2,-2],[1,-2],[2,-2],[4,-1],[5,0],[3,2],[3,2],[1,3],[1,3],[1,4],[1,8],[0,7],[1,3],[1,5],[2,1],[3,1],[2,-2],[1,-2],[1,-3],[0,-4],[-1,-20],[1,-4],[1,-2],[2,-2],[40,-12],[3,1],[1,1],[2,5],[4,14],[5,11],[8,12],[1,3],[1,3],[0,4],[-1,10],[1,4],[1,3],[11,21],[4,13],[2,8],[1,8],[0,8],[0,8],[-1,7],[0,3],[0,3],[0,3],[1,5],[2,2],[2,2],[17,7],[3,3],[3,3],[0,4],[1,3],[-1,7],[-3,13],[-1,6],[-1,8],[0,7],[-1,4],[0,3],[-3,13],[-1,3],[2,5],[4,6],[13,15],[3,4],[2,7],[2,9],[2,6],[2,0],[4,-2],[3,-1],[5,1],[3,2],[3,2],[9,14],[2,6],[3,6],[1,3],[0,4],[0,4],[-1,3],[-1,3],[-2,5],[-2,2],[-2,5],[-1,3],[0,1],[0,3],[-1,4],[1,4],[0,4],[2,5],[2,5],[4,9],[3,3],[2,2],[4,2],[2,1],[5,-1],[3,-1],[4,-4],[4,-3],[6,-4]],[[6394,5629],[-3,6],[-7,5],[-7,3],[-15,0],[-8,3]],[[6394,5629],[9,-20]],[[6403,5609],[-11,-25],[-3,-13],[0,-4],[-1,-4],[-2,-4],[-4,-5],[-3,-8],[-3,-5],[-3,-3],[-3,-9],[-4,-16],[-1,-3],[-1,-4],[-2,-2],[-2,-1],[-3,2],[-1,1],[0,10],[-2,7],[-1,3],[0,4],[0,4],[0,4],[-1,2],[-2,0],[-2,-3],[-2,-8],[-2,-5],[-4,-1],[-1,2],[0,4],[1,13],[0,3],[-1,3],[-2,2],[-3,1],[-2,0],[-3,0],[-2,-2],[-1,-2],[-8,-17],[-3,-2],[-3,-1],[-2,0],[-3,2],[-1,2],[-1,3],[-1,7],[0,3],[-1,3],[-2,2],[-2,2],[-3,0],[-3,1],[-3,-2],[-16,-22],[-3,0],[-3,0],[-1,2],[-1,3],[-1,3],[-2,2],[-2,1],[-2,0],[-3,-3],[-2,-5],[-7,-15],[0,-6],[0,-3],[2,-7],[1,-3],[1,-2],[2,-3],[4,-3],[1,-2],[1,-3],[1,-3],[2,-10],[1,-2],[2,-2],[2,-2],[24,-6],[2,-2],[10,-10],[2,-1],[2,-1],[26,-2],[1,-2],[1,-3],[1,-3],[0,-4],[1,-3],[1,-2],[3,-2],[16,-6],[2,-2],[1,-2],[-1,-4],[-2,-5],[-6,-6],[-3,-3],[-4,-1],[-2,0],[-2,-1],[-3,-3],[-16,-25],[-3,-4],[-45,-33],[-2,-1],[0,-1],[-2,-2],[-12,-19],[-3,-3],[-2,1],[-1,5],[-1,1],[-37,-22],[-12,-13],[-2,-3],[-1,-4],[-1,-8],[1,-5],[0,-4],[1,-2],[0,-2],[1,0],[1,-1],[3,0],[2,-1],[0,-3],[0,-7],[0,-4],[1,-7],[9,-33],[0,-3],[-1,-3],[-3,-5],[-1,-3],[-1,-6],[1,-8],[1,-3],[1,-2],[2,-1],[2,-2],[1,-3],[0,-4],[0,-4],[0,-3],[3,-21],[1,-51],[1,-9],[0,-1],[0,-1],[1,-3],[2,-1],[5,-3],[2,-2],[1,-3],[0,-3],[0,-4],[-5,-47],[-1,-4],[-2,-4],[-5,-2],[-3,-1],[-3,0],[-3,-1],[-2,-2],[-5,-15],[-1,-2],[-17,-26],[-4,-7],[-2,-3],[-3,-1],[-5,-2],[-3,0],[-2,1],[-1,2],[-2,2],[-1,2],[-1,3],[-2,2],[-2,2],[-2,0],[-1,-2],[-2,-7],[-2,-6],[-18,-30],[-1,-3],[-3,-14],[-4,-16],[-1,-3],[-2,-1],[-2,1],[-2,3],[-1,3],[-1,11],[0,3],[0,4],[1,3],[1,3],[1,3],[0,2],[0,3],[-3,27],[-1,3],[-1,2],[-1,0],[-2,-1],[-2,-3],[-2,-17],[-2,-12],[-1,-8],[0,-8],[1,-7],[0,-8],[-1,-8],[0,-4],[-2,-7],[-1,-4],[-3,-3],[-11,-4],[-16,2],[-3,-2],[-3,-3],[-7,-7],[-3,-5],[-3,-7],[-4,-12],[-3,-6],[-5,-6],[-3,-1],[-4,-3],[-1,-3],[-5,-26],[-5,-33]],[[4846,4886],[-90,8]],[[4726,4949],[6,-24],[9,-19],[15,-12]],[[4726,4949],[-7,22],[-5,-3],[-2,-1],[-5,-6],[-4,-2],[-2,1],[-3,3],[-5,8],[-3,1],[-2,-1],[-1,-2],[-3,-6],[-10,-28],[-2,-2],[-2,-3],[-2,0],[-2,1],[-2,3],[-5,9],[-1,3],[-2,3],[-8,9],[-2,2],[-3,1],[-1,-1],[-7,-4],[-11,-3]],[[4624,4953],[-1,8],[1,3],[2,5],[2,5],[1,4],[0,4],[0,3],[-1,3],[0,3],[0,3],[1,6],[0,1],[-1,2],[-2,2],[-2,1],[-11,4],[-2,2],[-1,2],[-1,2],[-1,3],[1,3],[1,4],[8,18],[3,7],[3,15],[1,4],[0,8],[0,8],[0,4],[0,3],[0,3],[0,2],[1,4],[1,3],[3,5],[13,20],[10,18],[2,6],[5,11],[3,5],[8,10],[2,2],[4,0],[6,-2],[2,-4],[1,-4],[-1,-4],[0,-4],[0,-4],[1,-2],[2,-6],[1,-3],[3,-17],[1,-3],[1,-3],[1,-2],[3,2],[5,6],[9,18],[6,17],[2,3],[3,2],[14,3],[6,6],[10,22]],[[6069,5871],[-45,51],[-107,79]],[[6069,5871],[3,-5],[3,-5],[8,-19],[1,-6],[1,-3],[1,-2],[4,-12],[2,-3],[4,-4],[39,-6],[2,-1],[2,-9],[2,-4],[3,-2],[11,-4],[2,-5],[0,-3],[-1,-4],[-1,-2],[-2,-1],[-7,-2],[-1,-2],[0,-3],[0,-6],[0,-4],[0,-4],[-1,-3],[-1,-2],[-2,-2],[-4,-4],[-1,-1],[1,-3],[1,-2],[7,-7],[2,-3],[7,-15],[1,-3],[1,-3],[2,-3],[7,-7],[2,-3],[2,-3],[0,-2],[2,-1],[1,-1],[4,3],[1,4],[2,4],[1,3],[4,0],[6,-3],[14,-9],[5,-5],[2,-5],[4,-4],[18,-11],[5,-6],[2,-4],[1,-3],[2,-1],[5,1],[3,3],[2,2],[5,13],[2,2],[4,-1],[16,-12],[3,-4],[5,-7],[1,-3],[3,-11],[2,-7],[0,-3],[0,-3],[1,-3],[2,0],[3,4],[1,4],[1,5],[2,17],[1,4],[1,3],[3,2],[4,2],[8,1],[4,2],[3,3],[1,3],[13,3],[12,-19]],[[5639,7079],[-11,-44],[-7,-15],[-1,-2],[-1,-3],[1,-4],[1,-3],[1,-3],[0,-3],[-1,-6],[-1,-3],[-11,-25]],[[4591,5967],[-4,14],[-5,3],[-7,-1],[-5,0],[-3,2],[-2,2],[0,5],[-3,9],[-8,18],[-6,20],[-2,4],[-2,2],[-2,1],[-12,3],[-4,2],[-6,5],[-3,5],[-1,4],[-1,8],[-1,5],[-1,7],[-7,19],[0,2],[0,7],[0,4],[0,1],[1,2],[0,2],[1,2],[1,3],[2,2],[21,22],[2,2],[1,3],[1,3],[0,9],[0,13],[-2,7],[-10,31],[-1,6],[0,3],[1,4],[1,2],[2,2],[2,1],[2,2],[2,2],[1,2],[0,2],[1,12],[0,8],[-1,4],[-1,3],[-18,13],[-2,3],[-3,4],[-3,8],[-2,5],[-1,4],[0,11],[0,8],[0,5],[1,3],[1,4],[4,13],[1,4],[1,5],[0,7],[0,4],[-1,3],[-4,4],[-3,2],[-21,4]],[[4483,6386],[2,15],[1,2],[2,3],[7,5],[2,3],[1,5],[0,6],[1,7],[0,6],[-1,4],[-1,2],[-2,1],[-3,-1],[-10,-2],[-5,0],[-6,1],[0,2],[0,2],[3,6],[3,6],[3,9],[1,5],[1,7],[2,13],[0,7],[0,5],[-2,7],[-2,4],[-1,9],[1,4],[1,3],[3,4],[2,1],[3,0],[5,0],[3,1],[2,4],[3,6],[2,3],[2,1],[4,-1],[2,0],[2,1],[16,18],[14,9],[2,4],[6,7],[1,2],[7,3],[2,2],[1,2],[3,3],[6,14],[3,10],[3,5],[1,2],[12,9],[3,4],[10,15],[2,7],[1,5],[0,4],[-1,3],[-24,60],[-1,4],[-1,4],[0,6],[1,5],[3,4],[1,3],[0,2],[-6,37],[0,9],[0,7],[0,4],[2,3],[1,1],[1,1],[14,5],[3,3],[3,4],[4,10],[-1,5],[-1,5],[-1,5],[0,13],[-1,7],[-1,5],[-2,2],[-6,5],[-2,2],[-1,2],[-1,3],[-1,3],[-1,3],[0,4],[0,13],[1,4],[0,4],[-1,11],[2,39],[0,9],[-2,6],[-5,2],[-2,2],[-1,2],[-2,3],[-3,10],[-6,18],[-1,3],[-1,3],[-2,2],[-2,1],[-3,0],[-5,0],[-3,2],[-2,6],[-1,15],[-5,21],[-3,27],[-2,5],[-1,3],[-1,2],[-1,3],[-1,3],[-5,10],[-4,4],[-2,2],[-2,1],[-19,-1],[-2,-1],[-16,-10],[-3,-1],[-2,1],[-3,2],[-3,8],[0,4],[1,3],[10,2],[2,1],[2,2],[1,3],[2,4],[-1,3],[-1,2],[-7,6],[-2,4],[0,3],[1,3],[2,2],[2,0],[8,-3],[2,0],[2,2],[1,2],[2,3],[1,3],[4,20],[0,5],[0,3],[0,1],[-1,2],[0,2],[-2,2],[-4,5],[-3,3],[-2,7],[1,5],[1,2],[5,1],[2,2],[2,2],[0,3],[5,18],[2,12],[-1,4],[-1,3],[-7,8],[-2,2],[-2,4],[-2,5],[0,4],[1,4],[4,13],[4,11],[12,27],[4,13],[1,3],[2,3],[13,11],[2,3],[2,5],[3,9],[1,5],[0,5],[-6,34],[-2,14],[-1,6],[-1,4],[-1,2],[-3,5],[-5,3],[-5,1],[-16,-3],[-2,1],[-2,2],[-1,4],[0,4],[8,69],[0,7],[-1,5],[-1,2],[-10,17],[-24,55],[-2,2],[-2,2],[-2,0],[-3,2],[-2,5],[-2,13],[0,7],[2,3],[14,0],[3,-1],[2,-1],[3,-5],[2,-2],[2,-1],[2,0],[1,6],[1,8],[-2,22],[0,7],[0,6],[1,5],[1,4],[2,7],[6,12],[1,7],[1,5],[-1,4],[0,3],[-1,3],[-1,3],[-3,4],[-2,3],[-4,3],[-11,5],[-2,2],[-1,2],[-1,3],[-1,7],[-1,3],[-1,3],[-1,3],[-3,5],[-13,18],[-8,7],[-4,3],[-3,0],[-2,-1],[-1,-2],[-9,-21],[-1,-2],[-1,-1],[-1,2],[-1,2],[-2,7],[-2,14],[-4,51],[-9,43],[1,4],[2,1],[5,1],[5,2],[8,6],[13,14],[6,8],[5,11],[5,13],[1,8],[0,11],[2,37],[-1,7],[0,3],[-1,2],[-1,1],[-1,-1],[-4,-3],[-2,-1],[-2,0],[-1,3],[-1,2],[-3,8],[0,1]],[[4443,8095],[11,15],[10,4],[19,-11],[9,0],[6,16],[6,24],[4,12],[6,4],[11,2],[10,6],[7,11],[6,13],[9,12],[8,5],[10,2],[9,-2],[8,-7],[7,-18],[4,-15],[5,-11],[39,-9],[8,3],[4,6],[7,20],[6,5],[4,0],[7,-7],[5,0],[26,20],[10,4],[60,3],[13,-5],[12,-13],[16,-32],[6,-9],[21,-15],[6,-8],[3,-7],[1,-6],[0,-8],[0,-10],[-1,-8],[-3,-21],[-1,-1],[3,-10],[13,-25],[6,-7],[6,-4],[13,0],[6,-2],[7,-9],[9,-21],[7,-3],[6,1],[6,-2],[5,-5],[5,-8],[3,-9],[5,1],[2,6]],[[4998,7301],[-41,6],[-5,-9],[4,-23],[-11,9],[-8,21],[-12,17],[-6,34],[-11,4],[-2,28],[-42,0],[0,-24],[-28,-5],[10,-24],[-3,-20],[-7,19],[-8,-7],[4,-16],[0,-19],[-8,-10],[-10,-13],[-2,-17],[2,-19],[-3,-19],[-4,-9],[0,-16],[1,-17],[-5,-15],[0,-17],[-3,-25],[5,-12],[4,10],[7,-3],[7,33],[18,-9],[10,8],[6,-6],[6,-39],[11,-20],[14,-17],[10,-27],[-4,-19],[3,-23],[8,0],[7,2],[3,-23],[1,-18],[8,-5],[1,-17],[7,5],[12,-15],[-4,-43],[11,-1],[2,-48],[12,-6],[5,-30],[2,-46],[27,19],[-4,16],[5,11],[-10,35],[-3,26],[8,2],[6,31],[-7,38],[-12,48],[4,9],[-5,16],[15,8],[3,-15],[9,5],[12,-8],[9,5],[-1,30],[3,16],[13,-20],[16,4],[0,39],[17,0],[7,21],[-13,14],[-1,17],[-23,54],[-2,37],[5,12],[-7,17],[1,15],[9,23],[13,12],[16,27],[-3,54],[-18,15],[-23,14],[-10,-16],[1,-28],[-10,-12],[-13,-8],[-8,-28]],[[4638,2390],[-33,-23],[22,20],[8,11],[4,9],[2,10],[6,3],[6,2],[6,3],[7,9],[12,22],[8,10],[67,101],[22,18],[-94,-143],[-43,-52]],[[5230,3395],[-12,0],[-22,-11],[-23,-5],[-18,-10],[-9,-2],[-4,-4],[-10,-13],[-4,0],[-4,4],[-6,-4],[-25,-28],[-6,-2],[-18,6],[-4,1],[-5,-8],[-13,-28],[-2,-8],[1,-13],[7,-25],[3,-20],[2,0],[3,-5],[2,-6],[-2,-3],[-1,-2],[-2,-5],[-1,-5],[-4,-30],[-1,-5],[-18,-37],[-7,-11],[-23,3],[-4,-6],[2,-5],[10,-11],[3,-8],[0,-11],[-2,-9],[-12,-40],[-30,-69],[-9,-28],[-6,-14],[-7,-6],[-4,-8],[-8,-39],[-4,-13],[-53,-82],[-47,-101],[-24,-40],[-29,-35],[1,13],[-2,55],[-4,2],[-4,-6],[-3,-10],[-2,-11],[-2,-27],[0,-6],[-2,-7],[0,-5],[-1,-3],[-3,-2],[-1,2],[-3,4],[-2,2],[-2,-4],[-3,-4],[-20,26],[-10,8],[-10,-8],[-3,-20],[-1,-24],[-3,-23],[-4,12],[-4,9],[0,7],[2,10],[-1,6],[-4,-2],[-3,-14],[-1,-17],[2,-13],[4,-10],[4,-8],[-3,-27],[-3,9],[-3,7],[-9,11],[-1,4],[0,4],[0,4],[-4,1],[-2,-2],[-1,-4],[-1,-5],[-1,-2],[-10,0],[-12,-4],[-9,-10],[-3,-20],[3,-13],[6,-6],[11,-7],[7,-11],[3,-7],[-2,-4],[-8,-5],[-7,-9],[-7,-6],[-9,7],[-1,-7],[-1,-2],[0,-3],[2,-8],[-6,-6],[-12,-7],[-6,-8],[1,26],[-5,27],[-8,21],[-10,8],[2,7],[-3,47],[3,16],[2,8],[1,6],[-3,11],[-3,5],[-1,2],[-1,2],[-9,12],[-3,4],[-2,9],[-2,-1],[-2,-5],[-1,-8],[2,-6],[6,-13],[1,-5],[-2,-8],[-7,-17],[-3,-12],[0,-15],[1,-8],[2,-7],[3,-11],[-15,-19],[-2,-38],[1,-48],[-5,-45],[11,-8],[6,-4],[9,-1],[8,3],[6,7],[11,18],[-6,-11],[-14,-36],[-5,-8],[-5,-4],[-3,-10],[-2,-9],[-2,-4],[-7,-4],[0,-9],[7,-23],[4,-8],[4,-5],[5,2],[2,8],[-1,12],[1,10],[7,3],[0,-23],[1,-4],[3,1],[2,3],[0,4],[3,-2],[4,1],[3,-4],[1,-16],[3,15],[2,16],[4,8],[6,-12],[3,-16],[1,-19],[-4,-14],[-8,2],[6,-12],[3,-18],[2,-22],[1,-42],[-1,-8],[-1,-9],[-4,-13],[0,-9],[-5,-23],[-1,-11],[0,-8],[1,-2],[-1,0],[-8,-14],[-7,-6],[-8,-4],[-7,3]],[[4574,1996],[2,7]],[[4576,2003],[1,7],[0,7],[-3,7]],[[4574,2024],[6,28]],[[4580,2052],[-2,39],[-8,34]],[[4570,2125],[-9,14],[-5,5],[-20,29],[-60,35],[-33,6],[-4,2],[-5,4]],[[4434,2220],[-4,1],[-4,-4],[-3,-5]],[[4423,2212],[-3,-5]],[[4420,2207],[-4,-5],[-4,-2]],[[4412,2200],[-9,0],[-7,2],[-7,0],[-9,-9]],[[4380,2193],[-6,-9],[-4,-7]],[[4370,2177],[-2,-7],[-2,-3],[-10,-1],[-4,-3],[-6,-10]],[[4346,2153],[-7,-6],[-18,-8]],[[4321,2139],[-22,-29],[-6,-5],[-9,-1]],[[4284,2104],[-4,-2],[-3,-3]],[[4277,2099],[-3,-9],[-1,-19],[-2,-7]],[[4271,2064],[-10,-6],[-8,8],[-7,13]],[[4246,2079],[-6,6]],[[4240,2085],[-9,3],[-12,13]],[[4219,2101],[-6,4],[-12,-5]],[[4201,2100],[0,-14],[0,-15]],[[4201,2071],[-12,-10]],[[4189,2061],[-1,-8],[2,-9],[2,-7],[3,-4],[12,-9]],[[4207,2024],[-5,-9],[-6,-4],[-13,-1]],[[4021,2088],[15,-14],[38,-16],[36,-30],[57,-21],[16,3]],[[4021,2088],[-7,3],[-10,11]],[[4004,2102],[-8,24],[-13,54]],[[3964,2230],[13,-12],[8,-18],[-2,-20]],[[3964,2230],[-9,-2],[-1,0],[-6,11]],[[3948,2239],[1,7],[3,13],[3,11],[1,0],[22,28],[31,-4],[32,-13],[28,-2],[9,7],[2,11],[-3,34],[-1,2],[0,2],[2,7],[1,2],[2,3],[12,9],[-6,13],[-2,14],[-1,14],[-2,14],[-6,9],[-6,6],[-4,7],[3,12],[10,24],[4,8],[8,8],[12,6],[3,8],[-2,11],[-1,8],[7,18],[28,5],[12,11],[1,9],[0,10],[-1,9],[0,6],[3,4],[12,5],[9,7],[5,9],[3,13],[1,20],[-2,16],[-6,35],[0,16],[5,15],[7,8],[75,31],[11,8],[1,20],[-8,43],[-1,24],[3,16],[15,27],[10,26],[5,24],[-2,21],[-11,17],[-15,22],[-7,15],[0,14],[3,14],[2,18],[0,16],[-8,46],[-3,37],[2,27],[9,22],[32,35],[15,9],[9,5],[37,34],[9,0],[7,-14],[3,-22],[1,-83],[-1,-12],[-3,-9],[-4,-10],[-3,-9],[0,-11],[8,-9],[9,9],[16,27],[5,3],[3,-1],[2,1],[3,13],[0,9],[-2,20],[2,12],[7,20],[6,-3],[10,-34],[8,-18],[5,0],[19,46],[8,14],[8,8],[1,0],[10,-3],[2,-6],[1,-6],[-1,-7],[-2,-7],[-3,-8],[0,-8],[0,-7],[3,-7],[6,-4],[14,-5],[6,-3],[6,-9],[6,-22],[6,-12],[6,-7],[8,-1],[7,4],[5,10],[4,16],[-3,24],[3,6],[12,1],[9,5],[5,15],[0,27],[5,-15],[23,-34],[9,-23],[2,-8],[1,-9],[-1,-19],[1,-7],[9,-15],[8,2],[16,23],[8,6],[7,3],[51,-5],[18,5],[12,18],[10,31]],[[4777,3191],[-6,5],[-7,2],[-6,-1]],[[4758,3197],[-4,-6],[-8,13],[-19,25],[3,9]],[[4730,3238],[-5,17],[-3,6],[-4,5]],[[4716,3266],[2,0]],[[4716,3266],[-5,-6],[-3,-1]],[[4706,3261],[2,-2]],[[4706,3261],[-2,9],[-1,3]],[[4703,3273],[-18,13],[-7,12]],[[4677,3320],[1,-22]],[[4677,3320],[8,1],[9,3],[5,21],[-1,9],[-5,21],[-2,10],[0,13],[2,9],[2,9],[2,12],[3,61],[0,19],[-2,7],[-5,15],[-2,7],[0,9],[0,21],[-1,7],[-5,4],[-4,-3],[-4,-4],[-4,0],[-2,6],[-3,17],[-2,7],[-13,17],[-12,2],[-12,-2],[-14,3],[-8,10],[-10,26],[-7,11],[-6,3],[-14,2],[-7,4],[-4,5],[-7,13],[-4,3],[-11,-2],[-2,1],[-4,11],[1,13],[0,3],[2,13],[3,37],[5,11],[5,9],[3,13],[0,15],[-3,14],[-5,10],[-6,7],[-8,-2],[-5,-11],[-4,-13],[-4,-6],[-4,6],[-13,39],[-1,3],[-1,3],[1,3],[1,3],[12,2],[9,4],[6,12],[3,25],[-5,51],[2,22],[10,9],[5,17],[0,23],[-4,23],[-6,17],[-7,10],[-8,5],[-9,0],[-8,-1],[-5,-15],[-2,-16],[-3,-13],[-7,-12],[-7,-3],[-7,1],[-6,5],[-6,8],[-4,11],[-2,4],[-1,14],[0,15],[-3,15],[-5,13],[-7,5],[-7,2],[-5,5],[-4,11],[-2,12],[-3,10],[-13,14],[-8,21],[-6,5],[-7,-5],[-4,-11],[-4,-5],[-8,9],[-4,10],[-7,30],[-1,4],[-3,9],[-5,40],[5,26],[11,23],[12,30],[4,37],[0,35],[2,31],[13,26],[5,12],[-2,11],[-5,8],[-15,8],[-4,7],[0,11],[4,17],[5,11],[8,13],[6,15],[2,13],[-5,5],[-16,8],[-7,7],[-3,15],[-4,33],[-3,16],[-5,13],[-5,7],[-6,4],[-8,0],[-13,-10],[-19,-38],[-16,-5],[-13,8],[-6,8],[-9,11],[-14,23],[-9,23]],[[4232,4752],[0,1],[8,10],[36,24],[9,10],[5,11],[6,10],[3,4],[7,6],[5,6],[1,3],[1,3],[0,4],[0,4],[-3,24],[-1,7],[1,3],[1,3],[2,2],[12,8],[3,1],[3,0],[5,-2],[2,-2],[2,-3],[2,-3],[8,-10],[5,-6],[2,-2],[4,-7],[3,-4],[23,-14],[8,-7],[2,0],[40,1],[41,27],[6,0],[2,-2],[2,-2],[17,-16],[5,-2],[33,-4],[24,4],[4,2],[2,1],[2,-1],[4,-3],[2,0],[2,2],[7,33],[1,6],[0,5],[-1,3],[-1,3],[-9,17],[-2,6],[-1,3],[1,4],[1,5],[5,4],[5,-1],[2,-1],[5,0],[3,2],[25,21]],[[4232,4752],[-3,8],[-7,10],[-2,7],[-1,6],[-2,25],[-6,26],[-1,7],[-1,7],[-1,7],[-3,8],[-12,12],[-15,4],[-30,1],[-40,25],[-13,1],[-10,-6],[-8,-36]],[[4077,4864],[0,-4],[-3,-17]],[[4074,4826],[0,17]],[[4074,4826],[-1,-9],[-5,-1],[-9,10]],[[4042,4873],[12,-39],[5,-8]],[[4042,4873],[7,12],[1,15],[-4,14],[-7,7]],[[4019,4892],[4,15],[6,12],[10,2]],[[4019,4892],[-7,-12],[-9,-2]],[[3998,4886],[5,-8]],[[3998,4886],[0,14],[3,14],[6,12]],[[4021,4962],[-3,-21],[-5,-9],[-6,-6]],[[4021,4962],[-1,18],[-4,8]],[[4008,4990],[8,-2]],[[4008,4990],[-19,-4],[-8,-7]],[[3981,4979],[-6,-9],[-10,-8]],[[3948,4962],[7,-4],[10,4]],[[3948,4962],[-4,11],[-2,19]],[[3942,4992],[-3,16],[-7,-1]],[[3932,5007],[-13,-18],[-7,-3],[-10,1]],[[3902,4987],[-6,7],[8,39],[-2,18]],[[3895,5064],[7,-13]],[[3895,5064],[-9,6],[-22,5],[-16,3]],[[3848,5078],[-17,10],[-10,23]],[[3818,5116],[3,-5]],[[3818,5116],[-5,11],[-9,20]],[[3770,5189],[28,-31],[6,-11]],[[3770,5189],[-14,10],[-54,0]],[[3702,5199],[-8,6],[-1,26],[-10,2]],[[3649,5220],[18,0],[5,2],[11,11]],[[3806,6494],[38,8],[29,-7],[14,2],[37,16],[41,1],[4,3],[8,5],[3,0],[5,-1],[20,-14],[4,-1],[5,0],[9,2],[7,3],[1,2],[2,4],[8,21],[2,3],[4,1],[38,-1],[4,-1],[11,-10],[3,-3],[1,-3],[1,-2],[2,-1],[9,3],[7,4],[7,6],[2,1],[3,0],[32,-7],[4,0],[1,1],[2,2],[1,2],[1,3],[3,14],[6,16],[1,3],[1,2],[6,5],[10,7],[4,3],[3,4],[2,3],[1,3],[1,8],[2,7],[2,3],[3,1],[27,-6],[3,-1],[2,-2],[0,-4],[0,-4],[-1,-3],[1,-5],[2,-6],[7,-10],[2,-5],[2,-4],[-2,-6],[0,-3],[0,-4],[1,-3],[0,-3],[1,-4],[0,-3],[0,-9],[0,-3],[0,-3],[1,-2],[7,-23],[3,-8],[2,-2],[1,-2],[12,-14],[1,-4],[0,-3],[-20,-40],[-3,-6],[-1,-3],[0,-3],[0,-3],[0,-2],[2,-3],[8,-8],[2,-5],[1,-5],[1,-3],[0,-3],[1,-4],[6,-13],[0,-3],[0,-3],[-1,-3],[-1,-3],[-4,-7],[-1,-3],[-1,-3],[1,-3],[1,-3],[2,-2],[2,-3],[4,-2],[9,-4],[17,2],[30,-7],[46,5],[9,-2],[2,0],[2,1],[1,5],[0,9],[0,4],[1,4],[3,4],[6,3],[18,3],[7,-1],[4,2],[4,4],[14,19],[2,3],[1,2],[5,4],[10,-1]],[[3719,8207],[2,-5],[6,-9],[7,-8],[6,-4],[6,2],[5,6],[20,39],[2,6],[2,13],[0,11],[-1,11],[0,12],[2,20],[6,17],[8,11],[10,2],[9,-7],[26,-41],[8,-6],[8,-3],[42,0],[8,4],[10,14],[14,38],[9,19],[9,12],[9,6],[9,0],[6,-11],[2,-10],[0,-8],[0,-9],[4,-11],[5,-8],[12,-11],[6,-8],[2,-11],[5,-27],[3,-8],[5,-3],[6,4],[11,16],[21,20],[11,6],[12,0],[38,-11],[11,-7],[4,-13],[1,-21],[7,-55],[3,-14],[4,-10],[7,-5],[6,4],[6,5],[5,-1],[3,-12],[3,-18],[5,-11],[8,13],[2,14],[-1,38],[1,17],[9,27],[12,21],[13,16],[14,10],[12,4],[27,1],[11,6],[8,13],[11,31],[8,12],[9,4],[8,1],[18,-6],[10,-10],[5,-12],[9,-36],[15,-31],[5,-16],[1,-26],[-4,-26],[3,-11],[7,-8],[9,-14],[5,-20],[4,-21],[5,-18],[10,-8],[9,4],[5,7]],[[6566,8087],[4,-34],[-11,-33],[-17,-27],[-25,-25],[31,-19],[10,-3],[8,5],[16,20],[15,5],[16,-3],[30,-16],[14,-8],[28,7],[13,-2],[6,-9],[3,-14],[2,-15],[4,-15],[6,-9],[8,-4],[31,-3],[30,10],[35,21],[20,18],[7,1],[8,-6],[8,-7],[8,3],[9,5],[9,2],[8,-4],[5,-10],[4,-15],[10,-91],[9,-32],[12,-18],[15,-1],[29,9],[15,-1],[8,-4],[8,-7],[4,-11],[-4,-17],[-6,-8],[-23,-7],[1,-11],[0,-21],[0,-6],[1,-10],[4,-7],[10,-3],[6,-5],[5,-13],[0,-12],[-1,-12],[1,-15],[3,-13],[9,-17],[3,-13],[1,-14],[-1,-12],[1,-10],[6,-9],[11,-9],[5,-7],[3,-9],[4,-28],[-1,-25],[0,-21],[10,-19],[-33,-22],[-6,-12],[0,-12],[21,-121],[9,-24],[14,-9],[10,-2],[9,-5],[7,-9],[6,-17],[4,-23],[0,-18],[3,-15],[9,-16],[9,-9],[8,-6],[9,-4],[9,-1],[8,4]],[[7163,7073],[0,-6],[-1,-4],[-1,-4],[-1,-3],[-1,-3],[-2,-2],[-3,-2],[-3,-2],[-7,0],[-9,2],[-13,6],[-3,-1],[-5,-1],[-7,-5],[-12,-2],[-14,4],[-1,0],[-1,-2],[0,-4],[1,-3],[3,-6],[1,-2],[0,-3],[-2,-1],[-4,2],[-29,27],[-5,3],[-2,1],[-3,0],[-2,-1],[-2,-3],[-1,-5],[0,-5],[0,-15],[0,-4],[-1,-4],[-1,-2],[-2,-2],[-4,1],[-2,2],[-11,9],[-2,1],[-3,0],[-4,-3],[-5,-8],[-1,-4],[0,-4],[1,-2],[1,-3],[0,-2],[-1,-2],[-2,-2],[-3,-1],[-12,5],[-2,-1],[-2,-3],[-3,-6],[-2,-4],[0,-4],[1,-3],[1,-6],[1,-4],[0,-3],[-1,-3],[-2,-3],[-3,-2],[-15,-5],[-5,1],[-4,1],[-2,2],[-9,7],[-5,2],[-6,1],[-3,-2],[-3,-4],[-5,-9],[-2,-6],[-2,-5],[0,-4],[-1,-4],[-2,-3],[-2,-1],[-3,2],[-6,6],[-3,-1],[-4,-5],[-6,-10],[-1,-6],[0,-5],[1,-3],[0,-3],[0,-4],[-1,-3],[-2,-3],[-2,-1],[-4,1],[-5,5],[-5,6],[-3,5],[-1,2],[-2,2],[-1,0],[-3,-3],[-3,-13],[-2,-9],[-3,-4],[-2,-4],[-16,-13]],[[6827,6876],[-40,14],[-12,-3],[-10,-12],[-8,-6],[-3,0],[-3,2],[-6,8],[-3,2],[-2,0],[-4,-2],[-1,-3],[-1,-5],[-2,-8],[0,-4],[-1,-3],[-1,-4],[-2,-2],[-2,-2],[-2,-2],[-15,0],[-42,9],[-7,-2],[-8,-3],[-2,-3],[-6,-8],[-2,-1],[-1,1],[-2,5],[0,4],[1,4],[-1,5],[-1,4],[-4,7],[-1,5],[0,5],[1,12],[1,3],[2,2],[10,2],[2,1],[1,2],[1,2],[1,1],[1,3],[1,3],[1,4],[0,4],[0,4],[0,3],[-1,3],[-1,6],[-1,2],[-1,2],[-1,2],[-16,16],[-3,6],[-1,5],[0,3],[-1,3],[-5,6],[-1,4],[0,3],[0,8],[-1,3],[-1,3],[-1,2],[-2,2],[-3,1],[-5,-1],[-2,-3],[-2,-3],[-1,-4],[-2,-1],[-2,1],[-4,5],[-1,4],[-2,4],[0,7],[-2,25],[1,4],[0,4],[2,8],[3,10],[1,3],[0,4],[0,4],[-1,3],[-1,6],[-3,5],[-3,5],[-18,24],[-15,25],[-10,20],[-2,6],[-1,7],[0,7],[-1,49],[2,21],[-1,3],[-1,3],[-1,2],[-15,8],[-2,0],[-2,-4],[-1,-4],[-2,-4],[-4,-3],[-9,-2],[-4,-3],[-3,-3],[-2,-2],[-10,-3],[-1,-3],[-1,-3],[1,-7],[0,-1],[-1,-4],[-1,-2],[-3,-1],[-8,4],[-4,0],[-4,-2],[-2,-3],[-2,-3],[0,-3],[0,-4],[0,-3],[1,-3],[-1,-4],[-2,-1],[-3,0],[-33,22],[-14,17],[-6,9],[-5,11],[-3,2],[-4,0],[-14,-5],[-22,-15],[-2,-2],[-1,-3],[-1,-3],[0,-2],[1,-1],[0,-1],[13,-12],[2,-2],[0,-4],[-4,-3],[-6,-3],[-18,-1],[-12,-4],[-4,-8],[-3,-1],[-5,1],[-32,23],[-131,39],[-3,3],[-12,7],[-3,3],[-3,3],[-1,3],[-2,2],[-4,0],[-6,-1],[-12,-5],[-4,-5],[-3,-4],[-1,-4],[-1,-3],[-1,-3],[-2,-3],[-5,-1],[-41,7],[-16,14]],[[6180,9053],[1,-1],[7,-5],[8,1],[6,6],[6,7],[6,5],[8,-16],[-2,-38],[7,-15],[9,1],[30,41],[37,25],[20,5],[19,-1],[11,-5],[5,-9],[3,-14],[7,-17],[9,-12],[18,-16],[8,-16],[10,-34],[6,-11],[28,-26],[7,-11],[7,-16],[4,-12],[3,-10],[1,-9],[0,-11],[-8,-22],[0,-6],[2,-17],[1,-32],[2,-19],[6,-18],[9,-20],[1,-17],[-3,-15],[-1,-9],[22,0],[9,-9],[15,-30],[3,-3],[6,-6],[2,-4],[1,-4],[2,-14],[0,-3],[5,-2],[8,5],[5,0],[8,-7],[14,-23],[8,-9],[10,-14],[7,-10],[11,-39],[1,-41],[-16,-27],[-9,-4],[-25,1],[-73,-25],[-17,-14],[-4,-23],[5,-10],[15,-6],[6,-6],[2,-7],[2,-21],[2,-9],[3,-8],[18,-29],[6,-14],[3,-17],[1,-22],[-1,-10],[-4,-18],[-1,-10],[1,-10],[1,-8],[1,-9],[-1,-10],[-3,-6],[-10,-3],[-2,-6],[2,-8],[4,-8],[9,-12],[6,-6],[7,-4],[8,-2],[6,0],[9,7]],[[6859,5904],[15,-4],[6,2],[2,2],[2,0],[3,-2],[4,-5],[3,-2],[4,-1],[10,3],[3,0],[10,-3],[9,0],[2,-1],[7,-5],[13,-14],[3,-5],[2,-4],[1,-7],[1,-3],[1,-3],[28,-34],[3,-6],[1,-4],[2,-4],[12,-12],[2,-3],[8,-16],[5,-9],[26,-22],[6,-9],[9,-14],[3,-2],[3,-1],[6,0],[8,3],[3,0],[21,-5],[3,0],[2,2],[1,2],[3,0],[3,-1],[7,-9],[2,-3],[2,-3],[3,-1],[13,1],[3,-1],[3,-3],[4,-5],[3,-3],[4,1],[2,1],[4,4],[3,0],[18,-8],[9,-6],[5,-5],[4,0],[3,1],[2,2],[2,2],[4,2],[2,1],[4,2],[2,1],[7,8],[7,7],[20,10],[6,6],[4,-2],[5,-6],[12,-17],[4,-8],[1,-7],[0,-3],[0,-4],[0,-4],[3,-6],[8,-14],[1,-2],[1,-3],[-1,-3],[-1,-3],[-5,-12],[-1,-3],[-2,-2],[-11,-10],[-3,-4],[-1,-2],[-1,-3],[0,-3],[2,-1],[15,1],[2,-1],[3,-3],[7,-9],[3,-4],[12,-5],[3,-3],[2,-5],[0,-5],[1,-5],[4,-4],[10,-9],[4,-4],[2,-4],[3,-9],[2,-4],[12,-12],[2,-6],[1,-4],[-1,-2],[-1,-2],[-3,-4],[-8,-9],[-2,-3],[-1,-3],[-1,-4],[0,-3],[0,-4],[3,-3],[16,-17],[10,-17],[31,-38],[5,-10],[1,-3],[1,-3],[-1,-4],[-1,-3],[-6,-16],[-1,-3],[0,-4],[0,-3],[1,-3],[7,-8],[8,-12],[1,-2],[0,-3],[0,-2],[-1,-3],[-12,-21],[-1,-2],[-1,-3],[1,-3],[4,-7],[2,-1],[3,0],[3,4],[4,7],[2,2],[2,1],[2,-1],[2,-2],[4,-5],[1,-2],[3,0],[4,2],[7,8],[2,4],[-1,4],[-3,4],[-2,2],[0,3],[0,3],[7,19],[32,57],[7,7],[2,1],[4,0],[7,-4],[19,-16],[6,-8],[3,-4],[2,-7],[2,-2],[3,-2],[5,-1],[15,1],[4,3],[4,6],[8,9],[25,5]],[[7607,5372],[1,-10],[0,-3],[1,-4],[1,-3],[1,-3],[1,-1],[2,-1],[15,5],[3,-1],[1,-1],[1,-3],[1,-3],[-1,-3],[-2,-3],[-3,-4],[-2,-2],[-4,-14],[-2,-2],[-2,-2],[-2,-4],[-1,-5],[0,-19],[0,-6],[1,-2],[1,-2],[2,0],[13,2],[2,1],[2,2],[1,4],[1,4],[3,21],[1,5],[2,7],[2,2],[2,2],[19,3],[5,-2],[1,-1],[1,-3],[1,-3],[1,-3],[1,-11],[0,-22],[0,-3],[-1,-4],[-3,-4],[-5,-4],[-6,-3],[-1,-3],[-1,-3],[1,-9],[1,-4],[0,-2],[1,-2],[0,-3],[-1,-3],[-2,-3],[-4,-4],[-2,-3],[-1,-3],[0,-31],[1,-4],[4,-5],[0,-2],[-2,-5],[-2,-2],[-10,-7],[-1,-3],[-1,-4],[0,-8],[0,-5],[2,-13],[2,-29],[0,-5],[-3,-22],[0,-5],[0,-3],[1,-3],[1,-3],[1,-2],[2,0],[2,1],[4,2],[4,2],[3,0],[2,-1],[2,-1],[1,-3],[0,-3],[1,-3],[1,-3],[1,-1],[10,-2],[2,-2],[1,-2],[1,-4],[1,-10],[0,-7],[2,-6],[1,-7],[3,-38],[0,-3],[1,-3],[0,-4],[1,-10],[0,-4],[-1,-4],[-2,-6],[-6,-10],[-4,-4],[-3,-2],[-4,-2],[-2,-2],[-1,-3],[-1,-7],[0,-4],[0,-4],[3,-27],[1,-7],[4,-18],[1,-7],[1,-14],[0,-3],[0,-4],[-1,-4],[-2,-6],[-5,-8],[-10,-14],[-6,-5],[-4,-2],[-2,1],[-15,12],[-16,7],[-3,2],[-1,2],[-2,2],[-1,10],[-2,3],[-1,2],[-2,2],[-25,12],[-3,0],[-2,0],[-14,-6],[-8,0],[-2,0],[-2,-1],[-2,-2],[-2,-2],[-1,-4],[-2,-6],[-1,-8],[-1,-58],[0,-4],[2,-14],[0,-11],[2,-5],[2,-3],[8,-2],[2,-1],[2,-3],[1,-2],[1,-3],[0,-3],[3,-13],[3,-8],[0,-3],[0,-2],[-2,-3],[-4,-1],[-15,0],[-2,-1],[-3,-1],[-3,-4],[-3,-1],[-7,-1],[-2,-2],[-1,-3],[-1,-5],[-1,-5],[0,-4],[0,-3],[1,-4],[2,-4],[4,-3],[6,-3],[2,-3],[2,-3],[3,-23]],[[7543,4598],[-79,-19],[-2,2],[-2,2],[-2,5],[-1,3],[-2,1],[-2,1],[-3,0],[-2,-1],[-4,-2],[-4,-6],[-2,-5],[-3,-7],[-3,-3],[-4,-1],[-10,-1],[-5,1],[-3,2],[-4,7],[-2,2],[-3,1],[-9,1],[-2,1],[-2,2],[-1,3],[0,3],[-1,4],[-1,14],[0,3],[-1,3],[-1,2],[-2,1],[-3,0],[-2,-1],[-3,-2],[-3,-6],[-2,-4],[-3,-8],[-1,-3],[-3,-1],[-20,-4],[-3,1],[-2,2],[-1,3],[-2,2],[-4,3],[-1,2],[0,3],[-1,4],[-1,2],[-4,4],[-1,3],[0,3],[0,4],[1,3],[1,2],[3,-1],[2,-2],[3,-5],[2,0],[2,1],[3,5],[1,4],[3,17],[3,11],[1,3],[0,4],[-1,3],[0,3],[-1,3],[0,4],[1,3],[1,7],[0,2],[0,1],[-1,0],[-12,-1],[-2,2],[-1,1],[-1,2],[-1,2],[-1,2],[-2,1],[-2,1],[-2,2],[-1,3],[1,11],[0,3],[-1,14],[-1,7],[-1,3],[-1,3],[-2,2],[-2,1],[-6,2],[-1,1],[-1,2],[-1,3],[1,4],[1,3],[2,3],[5,10],[2,3],[0,3],[1,4],[-1,3],[0,3],[-3,1],[-3,-2],[-14,-14],[-1,-1],[-3,-1],[-5,0],[-2,2],[0,3],[0,8],[-1,4],[-2,9],[0,3],[0,4],[0,4],[2,13],[0,4],[0,3],[-2,3],[-1,2],[-2,2],[-3,1],[-4,0],[-26,-10],[-23,-15],[-5,-1],[-4,1],[-6,17],[-1,2],[-2,2],[-3,2],[-20,6],[-3,2],[-1,2],[-6,10],[-3,8],[-2,2],[-1,2],[-2,2],[-2,2],[-5,1],[-12,-3],[-18,-8],[-4,-3],[-7,-8],[-10,-16],[-4,-4],[-7,-4],[-4,-1],[-3,0],[-1,0],[-6,5],[-68,19],[-28,22],[-8,3],[-5,1],[-23,-7],[-7,-2]],[[6933,4871],[4,-1],[4,2]],[[6933,4871],[-11,8],[-5,1]],[[6910,4879],[7,1]],[[6910,4879],[-9,-2],[-3,-3],[-4,-3],[-7,-2],[-4,0],[-4,1],[-5,-3],[-7,-5],[-14,-19],[-11,-11],[-25,0],[-2,1],[-2,2],[-1,3],[0,3],[-1,7],[0,7],[-1,7],[1,5],[-1,3],[-1,2],[-2,1],[-2,1],[-2,0],[-3,-2],[-2,-4],[-2,-8],[0,-6],[0,-4],[2,-10],[2,-8],[0,-2],[0,-2],[0,-3],[-1,-3],[0,-5],[-1,-24],[-1,-3],[-2,-4],[-5,-6],[-3,-2],[-1,-6],[0,-5],[1,-3],[1,-2],[2,-1],[5,0],[2,-1],[2,-2],[0,-2],[1,-3],[0,-5],[0,-3],[0,-4],[1,-3],[1,-3],[1,-2],[2,-2],[4,-4],[16,-6],[2,-2],[1,-2],[1,-3],[1,-7],[1,-3],[-1,-4],[0,-5],[-1,-4],[-3,-4],[-4,-3],[-19,-7],[-3,-2],[-11,-15],[-2,-5],[-2,-7],[-1,-5],[0,-5],[0,-4],[0,-3],[1,-3],[0,-3],[3,-5],[34,-32],[2,-3],[1,-2],[0,-2],[0,-3],[-1,-4],[-1,-4],[-3,-11],[-2,-6],[0,-5],[0,-3],[0,-4],[1,-3],[0,-3],[0,-4],[-1,-13],[-1,-3],[2,-3],[2,-2],[7,-3],[11,-2],[2,-2],[1,-2],[1,-4],[0,-3],[-5,-47],[-3,-15],[-4,-29],[-2,-17],[-7,-26],[0,-3],[-1,-4],[1,-3],[1,-2],[9,-10],[2,-5],[1,-3],[1,-3],[0,-3],[0,-4],[-3,-21],[0,-4],[-3,-7],[-2,-5],[-2,-2],[-3,-1]],[[6823,4280],[-29,3],[-44,13]],[[6692,4325],[22,-5],[36,-24]],[[6692,4325],[-4,-1],[-60,-44]],[[6574,4262],[54,18]],[[6574,4262],[-49,-26]],[[6525,4236],[-20,-5]],[[6462,4238],[43,-7]],[[6462,4238],[-67,33],[-9,0],[-55,-23],[-42,-4],[-5,2],[-1,2],[-3,11],[0,2],[-2,4],[-2,4],[-3,0],[-10,-1],[-3,1],[-1,3],[-1,3],[-2,9],[-1,7],[0,3],[0,4],[1,3],[4,9],[1,3],[0,3],[-1,4],[-2,4],[-3,5],[-3,2],[-2,1],[-26,-9],[-3,-1],[-1,-1],[-1,-3],[0,-3],[0,-3],[1,-7],[0,-4],[0,-3],[-1,-4],[-1,-2],[-2,-3],[-3,-2],[-46,-15],[-2,-1],[-2,-2],[-1,-2],[-1,-3],[0,-3],[0,-4],[-1,-1],[-1,-1],[-3,-3],[-2,0],[-3,1],[-5,4],[-4,6],[-2,5],[-2,2],[0,3],[-1,3],[-2,10],[-1,6],[-4,4],[-7,4],[-32,10],[-4,4],[-6,9],[-2,2],[-33,14]],[[6403,5609],[3,-6]],[[6484,5534],[-7,5],[-3,3],[-5,7],[-2,2],[-3,1],[-7,-2],[-3,2],[-48,51]],[[6484,5534],[23,-5],[13,-11]],[[6520,5518],[13,-26],[6,-1],[12,13],[10,13],[1,3],[1,3],[1,2],[0,4],[-1,2],[-2,2],[-2,2],[-2,2],[-1,3],[-1,3],[0,3],[0,4],[1,4],[1,3],[8,15],[5,4],[2,4],[1,3],[-1,15],[0,3],[-1,4],[0,3],[-1,3],[-2,2],[-12,19],[-1,2],[-1,4],[0,3],[0,4],[1,12],[1,4],[0,4],[4,14],[6,27],[2,3],[1,4],[3,4],[5,6],[8,4],[5,1],[3,2],[2,3],[0,4],[0,2],[-2,2],[-4,0],[-3,1],[-1,0],[0,1],[0,2],[-1,2],[1,3],[1,3],[2,3],[10,14],[7,10],[5,12],[1,3],[1,4],[0,4],[-1,7],[0,3],[1,5],[3,1],[2,0],[5,-3],[77,51],[15,3],[35,17],[4,3],[3,2],[4,9],[4,7],[4,3],[3,3],[3,1],[10,-1],[4,2],[3,4],[3,1],[2,0],[12,-7],[2,-3],[1,-2],[0,-3],[-1,-2],[-3,-5],[-2,-2],[0,-4],[0,-3],[2,-3],[2,-2],[5,0],[3,2],[3,2],[1,3],[1,3],[1,9],[1,5],[2,5],[3,6],[3,2],[3,1],[2,0],[5,-3],[5,-3],[12,-13]],[[8227,5675],[17,-8]],[[8244,5667],[1,-11],[5,-23],[2,-10],[0,-7],[0,-14],[1,-4],[1,-4],[4,-3],[6,-3],[3,-1],[5,-2],[2,-2],[1,-4],[-1,-7],[0,-4],[0,-6],[1,-6],[4,-11],[2,-11],[0,-7],[-1,-5],[-2,-7],[-2,-6],[-5,-12],[-2,-4],[0,-4],[-1,-3],[0,-4],[0,-5],[1,-2],[0,-3],[2,-1],[9,3],[2,0],[2,-1],[1,-3],[0,-6],[-1,-4],[-2,-4],[-6,-14],[-10,-13],[-3,-5],[0,-1],[-1,-3],[-1,-4],[0,-3],[-1,-4],[2,-25],[2,-16],[0,-1],[0,-3],[-1,-8],[0,-5],[0,-4],[6,-21],[1,-6],[-1,-6],[0,-4],[-3,-11],[-1,-4],[0,-4],[1,-4],[2,-4],[5,-5],[5,-3],[7,-3],[2,-2],[1,-3],[1,-5],[0,-4],[-1,-8],[0,-3],[-1,0],[-1,-5],[-1,-9],[-1,-12],[-1,-7],[0,-8],[2,-4],[2,-5],[6,-6],[3,-3],[4,-1],[2,0],[2,-1],[6,-6],[3,0],[2,0],[2,1],[1,3],[3,5],[2,2],[2,-1],[3,-5],[5,-13],[1,-7],[1,-6],[1,-3],[1,-3],[1,-4],[3,-4],[9,-11],[4,-10],[6,-18],[1,-5],[0,-2],[0,-3],[-1,-3],[-1,-3],[-2,-3],[-1,-2],[-2,-2],[-2,-1],[-19,-5],[-1,-1],[-2,-1],[0,-2],[0,-3],[0,-3],[1,-8],[3,-11],[1,-13],[2,-4],[2,-3],[6,-4],[6,-2],[43,6],[3,-1],[2,-3],[2,-8],[2,-10],[1,-10],[2,-9],[7,-24],[1,-3],[0,-3],[0,-4],[-1,-8],[-1,-8],[0,-4],[1,-4],[2,-4],[9,-9],[54,-31],[25,-23],[2,-3],[1,-5],[1,-9],[-1,-5],[-1,-4],[-4,-9],[-2,-7],[-1,-4],[0,-4],[-1,-4],[2,-6],[4,-7],[11,-15],[6,-5],[4,-3],[30,1],[40,-14],[2,-6],[1,-9],[-1,-33],[0,-9],[2,-7],[2,-4],[2,-3],[4,-4],[0,-7],[1,-7],[-8,-51],[-1,-8],[0,-1]],[[8598,4610],[-68,5],[-20,-13],[-15,-28],[-10,-39],[-8,-45],[-4,-42],[-4,-16],[-9,-1],[-15,9],[-7,-2],[-8,-9],[-16,-28],[-8,-11],[-11,-8],[-90,-19],[-14,-16],[-11,-28],[-9,-34],[-6,-35],[2,-71],[-3,-28],[-10,-30],[-13,-28],[-6,-17],[0,-16],[5,-10],[8,-2],[16,4],[8,-1],[7,-5],[4,-11],[-1,-20],[-6,-14],[-9,-10],[-10,-7],[-8,-9],[-8,-23],[-3,-29],[2,-32],[7,-27]],[[8247,3864],[-9,-13],[-23,-52],[-15,-11],[10,32],[0,16],[-12,7],[-14,18],[-2,-2],[-2,-3],[-11,-11],[-4,-2],[-17,10],[-11,4],[-5,-5],[-38,10],[-46,-25],[-19,-2],[-55,16],[-15,-8],[-27,-45],[-45,-101],[-12,-35],[-7,-16],[-9,-7],[2,25],[-10,19],[-15,12],[-14,5],[-8,-4],[-20,-24],[-49,-31]],[[7745,3641],[-4,-1]],[[7741,3640],[-12,38],[-1,3],[0,4],[1,5],[1,3],[1,3],[2,2],[12,18],[2,3],[2,3],[2,1],[2,0],[2,-1],[5,-3],[2,-1],[2,-1],[2,2],[1,1],[7,8],[0,4],[0,6],[-9,24],[0,1],[2,5],[3,5],[5,7],[1,2],[0,4],[-1,4],[-3,6],[-2,3],[-6,6],[-8,12],[-1,2],[-2,0],[-1,-1],[-1,-2],[-3,-7],[-1,-2],[-1,-1],[-2,2],[-15,19],[-2,4],[-1,7],[-5,29],[-4,11],[-6,18],[-3,4],[-1,3],[-8,7],[-18,13],[-4,3],[-11,17],[-2,5],[-1,3],[0,3],[2,3],[1,2],[3,1],[22,3],[4,2],[2,2],[1,2],[1,3],[0,4],[-1,25],[-1,7],[-1,5],[-6,21],[-2,9],[-1,10],[1,4],[2,3],[4,3],[1,1],[2,0],[2,-1],[1,-3],[2,-1],[2,-1],[4,0],[2,-1],[2,-2],[1,-3],[2,-2],[5,-2],[8,-2],[9,1],[16,8],[1,2],[2,3],[0,3],[1,4],[-1,11],[1,4],[0,3],[1,4],[4,10],[1,3],[1,3],[2,9],[2,7],[1,3],[1,2],[4,4],[1,1],[2,0],[2,0],[2,-1],[2,-1],[2,-2],[1,-2],[3,-5],[1,-3],[2,-6],[1,-2],[1,-3],[1,-2],[1,1],[2,1],[3,3],[2,3],[1,2],[0,4],[0,3],[-1,5],[0,8],[0,4],[0,4],[1,4],[2,7],[4,14],[0,4],[0,9],[0,3],[1,4],[7,19],[1,3],[0,4],[0,3],[-4,1],[-7,0],[-18,4],[-2,0],[-2,-2],[-1,-7],[-1,-2],[-2,-2],[-2,1],[-3,3],[-8,21],[-2,2],[-33,46],[-11,23],[-4,5],[-18,18],[-4,1],[-2,-1],[-12,-13],[-3,-5],[-1,-2],[-5,5],[-7,11],[-17,29],[-7,10],[-5,4],[-14,-9],[-4,-1],[-2,2],[-1,3],[-1,7],[1,5],[1,9],[1,4],[-1,4],[-1,2],[-7,2],[-2,2],[-2,4],[-1,4],[-1,9],[2,4],[1,2],[4,2],[4,2],[2,2],[0,2],[-1,3],[-3,2],[-11,5],[-2,3],[-3,6],[-6,25],[-12,41],[-1,6],[-1,14],[-1,7],[0,3],[-2,2],[-3,0],[-11,-4],[-5,1],[-5,1],[-4,3],[-3,12],[0,41]],[[7607,5372],[-7,23],[-1,11],[1,28],[0,17],[0,8],[-7,44],[-1,11],[0,8],[1,4],[2,4],[2,2],[2,1],[5,0],[5,-1],[13,-11],[5,-2],[20,-2],[3,0],[4,7],[5,8],[6,7],[2,2],[4,3],[4,1],[3,0],[5,-2],[41,-32],[1,-1],[1,-2],[2,-2],[3,-2],[4,-1],[2,2],[1,3],[1,4],[0,4],[-1,3],[-2,2],[-9,6],[-2,2],[0,1],[-1,2],[0,3],[0,4],[1,3],[5,12],[3,4],[2,1],[2,-1],[5,-3],[3,-1],[4,0],[2,2],[2,3],[1,4],[0,4],[1,5],[1,7],[2,4],[2,2],[3,1],[2,0],[2,0],[3,-2],[1,-2],[4,-8],[1,-2],[2,-3],[2,-2],[2,-1],[3,-1],[3,1],[10,3],[3,3],[1,3],[0,4],[-1,17],[0,4],[1,5],[2,5],[3,3],[3,1],[2,3],[1,2],[2,9],[3,10],[1,3],[17,17],[3,3],[12,0],[4,2],[3,3],[1,3],[0,4],[0,3],[-1,3],[-2,5],[-1,3],[0,4],[0,3],[1,8],[0,4],[-1,3],[-4,4],[-1,2],[-1,3],[1,4],[7,19],[2,4],[3,3],[10,6],[2,3],[2,4],[0,4],[0,5],[2,6],[3,10],[2,5],[2,3],[98,91],[3,6],[1,4],[-1,3],[-5,13],[-2,3],[-1,2],[-2,0],[-10,0],[-16,3],[-5,2],[-2,1],[-2,2],[0,3],[13,34],[3,4],[2,2],[42,1],[54,-24],[20,1],[7,2],[3,3],[1,4],[0,5],[1,3],[1,9]],[[8088,5971],[5,0],[4,-4],[5,-6],[3,-5],[2,-6],[2,-2],[2,-2],[2,-1],[8,-1],[2,-2],[2,-2],[0,-6],[-1,-3],[-2,-1],[-12,-1],[-2,-1],[-1,-3],[-1,-4],[-2,-12],[0,-5],[1,-3],[4,-4],[18,-12],[12,-12],[2,-1],[3,0],[2,1],[1,2],[12,15],[1,2],[3,1],[17,-2],[2,0],[2,-2],[0,-5],[-3,-26],[-1,-8],[0,-4],[1,-3],[0,-7],[-1,-4],[0,-4],[-2,-4],[-1,-2],[-4,-8],[-2,-3],[1,-8],[3,-12],[12,-45],[0,-3],[0,-1],[0,-2],[-1,-3],[-1,-3],[-1,-2],[-2,-1],[-7,0],[-2,-1],[-1,-3],[0,-3],[0,-4],[-1,-2],[-2,-2],[-5,1],[-2,-1],[-2,-2],[-1,-3],[-1,-4],[-1,-3],[0,-4],[1,-3],[2,-2],[3,-1],[3,-1],[3,-3],[4,-7],[3,-2],[2,-1],[49,-5]],[[8164,6642],[0,-6],[1,-9],[7,-24],[1,-3],[3,-5],[1,-3],[2,-2],[9,-7],[0,-3],[0,-3],[-2,-3],[-2,-2],[-3,-1],[-9,-1],[-9,-4],[-7,-6],[-2,-4],[-1,-2],[0,-3],[1,-3],[0,-2],[18,-21],[1,-3],[0,-3],[-2,-3],[-2,-2],[-5,-5],[-2,-3],[-1,-3],[-1,-3],[-1,-4],[-1,-4],[-2,-7],[-2,-1],[-1,0],[-10,4],[-3,-1],[-2,-1],[-1,-3],[-3,-5],[-5,-13],[-1,-3],[0,-5],[1,-5],[2,-2],[2,-1],[11,8],[2,0],[3,0],[2,-2],[1,-2],[1,-3],[1,-2],[0,-2],[0,-3],[-1,-27],[1,-12],[0,-5],[0,-3],[0,-4],[-1,-5],[-2,-5],[-6,-9],[-1,-5],[-4,-18],[-2,-5],[-2,-3],[-4,-3],[-1,-1],[-1,-2],[0,-3],[0,-6],[3,-13],[1,-3],[3,-6],[1,-2],[0,-3],[0,-3],[-3,-2],[-1,-3],[0,-4],[4,-20],[0,-3],[0,-4],[0,-4],[-2,-5],[-2,-3],[-9,-10],[-2,-2],[-1,-4],[-2,-15],[-2,-16],[-3,-10],[-2,-5],[-2,-1],[-7,-3],[-2,-1],[-2,-2],[-5,-12],[-1,-4],[0,-4],[1,-5],[2,-3],[4,-8],[1,-3],[2,-6],[1,-7],[0,-7],[-2,-50],[0,-12],[1,-7],[3,-2],[7,-1],[3,-1],[2,-2],[1,-2],[2,-3],[1,-3],[0,-3],[0,-5],[-1,-7],[-6,-15],[-6,-10],[-11,-12],[-11,-15]],[[6859,5904],[2,6],[1,8],[-1,11],[-2,11],[-2,11],[-2,6],[-8,22],[-1,3],[0,5],[0,5],[2,9],[3,10],[4,9],[22,36],[2,2],[2,1],[2,0],[2,0],[2,-2],[2,-2],[2,-5],[2,-3],[5,-6],[4,-4],[3,-1],[42,-5],[9,2],[23,18],[7,8],[13,22],[11,27],[11,22],[0,4],[0,4],[-5,11],[0,4],[2,5],[0,3],[-1,3],[-3,4],[-6,4],[-2,4],[-1,7],[-3,9],[-1,7],[0,6],[1,5],[0,4],[1,4],[2,3],[1,1],[7,3],[4,2],[2,1],[3,0],[24,-10],[3,0],[1,2],[3,6],[1,3],[2,1],[8,0],[2,1],[1,2],[0,2],[1,3],[-2,6],[-5,6],[-9,9],[-7,11],[-9,7],[-1,4],[-1,6],[1,3],[2,1],[20,0],[9,3],[2,1],[2,2],[-1,8],[-4,13],[-19,55],[-1,6],[-1,7],[0,3],[0,3],[1,3],[4,2],[1,2],[0,3],[0,3],[-1,11],[-1,3],[-2,2],[-3,2],[-13,0],[-2,-1],[-2,-2],[-1,-3],[-2,-8],[-1,-3],[-1,-2],[-3,-1],[-5,2],[-22,9],[-2,2],[-1,3],[-1,5],[0,4],[-2,3],[-12,3],[-2,2],[-2,3],[-1,7],[0,13],[-1,4],[-2,3],[-9,9],[-1,2],[-2,5],[-2,6],[-2,16],[-1,5],[0,15],[1,28],[0,7],[-1,7],[-1,4],[-2,4],[-7,11],[-3,2],[-3,1],[-2,1],[-2,-1],[-2,-1],[-6,-5],[-2,-1],[-2,-1],[-6,1],[-26,20],[-2,4],[-6,11],[-3,4],[-3,2],[-18,0],[-5,1],[-3,2],[-2,1],[-3,5],[-4,7],[-2,2],[-2,2],[-8,3],[-3,2],[-2,3],[-4,13],[-2,2],[-2,4],[-2,6],[-3,27],[0,3],[-7,27],[1,2],[4,11],[4,8],[19,29],[3,5],[1,8],[1,14],[0,54],[-4,13]],[[7163,7073],[2,1],[6,10],[5,13],[7,13],[3,2],[9,1],[4,2],[4,8],[9,17],[6,7],[8,4],[40,7],[75,-9],[12,-10],[3,-18],[12,-9],[43,-101],[10,-8],[10,1],[10,7],[10,10],[8,12],[3,2],[5,1],[4,-2],[9,-8],[10,-3],[11,-13],[14,-4],[4,-3],[7,-6],[1,-3],[-2,-4],[0,-22],[-1,-9],[1,-9],[6,-8],[9,-5],[10,-3],[10,2],[8,8],[4,8],[7,21],[4,9],[5,8],[72,62],[28,16],[28,3],[31,-7],[62,27],[13,14],[25,38],[13,8],[43,9],[8,-7],[7,-26],[6,-32],[7,-26],[37,-28],[14,-21],[1,-41],[-5,-24],[-1,-11],[1,-10],[3,-7],[15,-23],[41,-94],[15,-16],[34,-23],[17,-16],[15,-20],[13,-25],[14,-36],[0,-2],[7,-18],[0,-15],[2,-6],[10,9]],[[8870,5335],[9,5],[51,-10],[11,-10],[9,-17],[3,-26]],[[8953,5277],[1,-7],[1,-6],[1,-4],[0,-3]],[[8956,5257],[-2,-9],[-4,-2],[-4,1]],[[8946,5247],[-2,-1],[1,-15],[4,-8],[5,-6],[13,-45]],[[8967,5172],[5,-26],[3,-13]],[[8975,5133],[4,-9],[-9,-14],[-8,-15],[-29,-38],[30,-29],[8,2],[23,12],[9,-3],[6,-17],[-1,-19],[-6,-18],[-7,-13],[-21,-24],[-8,-15],[-21,-62],[-5,-20],[-1,-23],[6,-31],[0,-9],[-2,-1],[-2,1],[-24,-7],[-5,-5],[-3,-9],[1,-5],[3,-6],[5,-11],[6,-21],[0,-10],[0,-16],[-2,-8],[-5,-15],[-1,-8],[1,-7],[1,-14],[1,-6],[-3,-29],[-7,-24],[-11,-17],[-14,-5],[-43,18],[-14,2],[-26,-8],[-12,3],[-10,5],[-19,-8],[-9,-1],[-8,6],[-14,15],[-9,3],[-63,-9],[-17,-8],[-8,-1],[-9,4],[-23,24],[-2,0]],[[8164,6642],[18,18],[6,3],[4,-2],[8,-8],[5,-1],[20,21],[2,43],[-3,46],[4,30],[7,2],[28,-4],[11,4],[8,-2],[6,-11],[13,-57],[5,-11],[9,-6],[19,-3],[8,-4],[10,-11],[15,-8],[31,8],[22,-6],[4,3],[3,4],[11,5],[1,3],[0,-3],[3,-19],[2,-16],[2,-9],[3,-4],[26,-28],[44,-20],[15,-20],[10,-25],[12,-17],[41,4],[7,3],[8,11],[14,30],[7,13],[17,9],[11,-14],[0,-1],[24,-93],[10,-20],[12,-12],[16,-6],[17,6],[17,12],[16,5],[16,-16],[8,-5],[25,-4],[6,-11],[4,-22],[7,-43],[11,-34],[13,-13],[15,-6],[18,-13],[22,-32],[9,-6],[11,-1],[14,4],[13,8],[10,9],[26,40],[10,5],[9,0],[42,-17],[1,-2],[5,-9],[-2,-20],[-7,-14],[-16,-15],[-8,-10],[-8,-33],[3,-31],[9,-29],[16,-40],[21,-36],[4,-16],[-1,-17],[-6,-34],[0,-36],[-4,-9],[-10,-9],[-8,-10],[-14,-34],[-9,-14],[-25,-27],[-12,-17],[-9,-23],[-2,-14],[-1,-29],[-2,-10],[-5,-5],[-7,-1],[-12,4],[-13,0],[-36,-19],[-22,2],[-7,-8],[-3,-50],[6,-12],[9,-9],[7,-11],[6,-18],[4,-14],[4,-10],[11,-6],[34,-12],[15,3],[5,-1],[4,-6],[8,-16],[6,-4],[9,8],[8,15],[8,12],[11,-2],[8,-16],[0,-20],[-6,-19],[-9,-17],[-19,-23],[-17,-3],[-47,28],[-10,0],[-10,-7],[-8,-15],[-4,-11],[-3,-11],[-3,-9],[-11,-7],[-4,-8],[-26,-133],[-4,-25],[16,2]],[[7741,3640],[-4,-1]],[[7737,3639],[-5,-4],[-14,-19],[-5,-4],[-15,-9],[-22,-35],[-14,-4],[4,-23],[-6,-22],[-9,-22],[-4,-24],[-3,-27],[-8,-27],[-10,-16],[-11,5],[0,7],[3,0],[9,-6],[8,28],[5,35],[0,18],[-4,4],[-15,29],[-7,6],[-14,8],[-6,7],[-7,-7],[-8,1],[-12,6],[-7,-3],[-5,-7],[-3,-7],[-3,-4],[-29,0],[-17,-17],[-22,-6],[-14,-11],[-12,-16],[-29,-48],[-9,-23],[-2,-29],[-3,0],[0,15],[-2,3],[-4,-3],[-4,-3],[-1,-6],[0,-2],[-2,9],[1,4],[0,6],[0,5],[-5,5],[-1,2],[-3,11],[-3,5],[-2,4],[-9,6],[-8,0],[-16,-6],[-31,7],[-59,-17],[-10,0],[-32,-29],[-24,-22],[-12,-16],[-35,-65],[-14,-21],[-51,-40],[-8,-9],[-7,-13],[-13,-29],[-6,-10],[-15,-17],[-7,-10],[-41,-108],[-2,-4]],[[6986,3025],[-5,4],[-1,1]],[[6980,3030],[11,32]],[[6991,3062],[16,26],[6,16],[2,25],[-8,-12],[-7,-11],[-9,-1],[-10,15],[-4,22],[3,26],[8,37],[-3,3],[-7,1],[-4,2],[-3,3],[-6,9],[-7,7],[-5,14],[-5,17],[-1,18],[-9,-19],[3,-19],[8,-18],[4,-15],[1,-13],[3,-7],[1,-8],[-2,-16],[-3,-11],[-15,-24],[-25,-62],[-2,-3]],[[6911,3064],[-15,5],[-4,6],[0,18],[0,4],[-3,19],[0,8],[0,3],[1,4],[2,12],[0,4],[0,6],[-11,71],[-2,8],[-3,4],[-12,1],[-2,1],[-3,1],[-6,7],[-4,2],[-6,5],[-9,14],[-3,1],[-20,-3],[-6,0],[-1,2],[-1,1],[0,1],[0,10],[0,4],[1,3],[1,2],[2,2],[1,3],[1,4],[0,6],[-2,4],[-2,1],[-20,3],[-15,-1],[-4,2],[-2,2],[-1,3],[-1,3],[-1,3],[0,4],[-11,26],[-2,6],[0,3],[-1,3],[0,4],[0,3],[1,4],[2,6],[5,7],[1,3],[1,4],[0,3],[0,4],[-1,6],[-2,10],[-2,9],[-3,4],[-2,2],[-10,2],[-3,2],[-3,3],[-8,9],[-2,1],[-2,-1],[-2,-2],[-3,0],[-4,3],[-2,3],[-1,4],[-1,10],[0,4],[1,3],[1,3],[1,3],[2,2],[1,1],[3,1],[11,0],[2,1],[2,1],[2,2],[1,3],[1,3],[3,6],[3,4],[4,3],[1,1],[2,3],[1,3],[2,12],[1,4],[1,3],[3,6],[1,3],[0,3],[1,23],[0,3],[1,4],[1,2],[2,1],[4,2],[11,8],[2,2],[1,4],[0,8],[-2,15],[-2,8],[-1,5],[-2,2],[-2,2],[-2,1],[-5,1],[-2,1],[-4,4],[-1,3],[-1,4],[-5,31],[-2,6],[-1,3],[-2,2],[-21,11],[-3,4],[-5,6],[-2,2],[-2,2],[-11,3],[-3,3],[-1,3],[-1,3],[-1,14],[-1,10],[-2,5],[-1,3],[-1,2],[-1,0],[-5,3],[-4,2],[-2,3],[-1,3],[0,7],[-1,34],[-7,47],[-1,4],[-3,2],[-6,4],[-3,3],[-2,4],[0,4],[-1,7],[-2,13],[0,7],[0,7],[0,4],[1,21],[0,3],[0,4],[-4,27],[0,4],[0,3],[1,4],[1,2],[2,3],[1,3],[1,4],[0,8],[-1,4],[-1,3],[-6,8],[-3,4],[-2,4],[0,4],[0,4],[1,8],[0,4],[1,4],[1,3],[2,2],[6,4],[1,2],[2,2],[0,4],[-1,3],[-1,2],[-1,1],[-2,0],[-29,-4],[-4,-3],[-1,-2],[-1,-3],[-1,-4],[0,-4],[-1,-3],[-3,-6],[-1,-3],[-2,-7],[-1,-3],[-2,-1],[-2,-1],[-2,1],[-3,1],[-6,5],[-2,1],[-6,-1],[-2,-2],[-5,-5],[-3,-3],[-3,0],[-2,0],[-3,2],[-1,3],[-1,4],[0,15],[0,4],[-1,4],[-4,17],[-22,111],[-11,47]],[[5853,2831],[62,-13],[29,10],[13,-1],[14,-17],[18,13],[10,2],[4,-11],[5,-7],[19,3],[6,-13],[-8,-13],[-180,47],[3,6],[2,1],[3,-7]],[[6979,3027],[1,3]],[[6986,3025],[-7,-13],[-23,-72],[-10,-24],[-10,-17],[-18,-10],[-10,-14],[-15,-5],[-10,-13],[-17,-12],[-7,4],[1,10],[14,25],[15,15],[-2,4],[-2,9],[45,22],[22,19],[12,39],[10,18],[5,17]],[[5645,2926],[5,-6],[-9,3],[-18,14],[-157,54],[-67,41],[-14,20],[-11,30],[-4,16],[-4,25],[0,19],[8,-5],[7,-42],[7,-30],[10,-20],[17,-16],[138,-54],[56,-22],[36,-27]],[[6911,3064],[-13,-24],[-19,-19],[-40,-16],[-4,0],[-6,3],[-2,6],[-1,7],[-1,4],[-4,-4],[-3,-9],[-1,-11],[-1,-9],[-19,-14],[-1,-5],[-8,-17],[-2,-9],[-1,-10],[1,-8],[3,-17],[2,-63],[2,-14],[4,-16],[15,-120],[4,-13],[5,-12],[5,-12],[22,-98]],[[6848,2564],[19,-60]],[[6278,2896],[-7,20]],[[6271,2916],[-7,10],[-11,-6],[-9,-13],[-8,-15],[0,-14],[11,-12],[0,-8],[-11,-1],[-11,-6],[-4,-12],[9,-21],[-5,0],[-9,7],[-26,0],[-4,5],[-13,29],[-11,16],[-12,3],[-9,-20],[-2,5],[-2,2],[-2,0],[-2,1],[7,11],[4,13],[-1,12],[-9,4],[-34,-7],[3,13],[2,13],[4,69],[-10,-18],[-7,-27],[-9,-25],[-14,-12],[-3,-1],[-5,-4],[-5,-1],[-4,3],[-9,11],[-25,20],[4,-28],[-6,-14],[-45,-12],[-6,0],[-4,2],[-3,3],[-3,1],[-10,-1],[-4,1],[-23,13],[-10,1],[-7,-2],[-16,-13],[-54,-16],[-4,-2],[-5,-5],[-7,-13],[-3,-3],[-17,-5],[-86,41],[-10,10],[-5,-1],[-3,2],[0,4],[-2,13],[0,4],[-2,7],[-2,14],[-2,6],[8,12],[2,6],[1,10],[-12,-10],[-12,-2],[-11,4],[-19,11],[-6,2],[-6,4],[-16,35],[-12,16],[-13,-8],[-22,18],[-35,44],[-1,-11],[2,-14],[1,-11],[-4,-5],[-27,2],[-8,4],[-6,7],[-6,11],[-2,15],[5,13],[9,11],[7,5],[9,2],[24,-8],[32,10],[4,4],[23,33],[5,2],[6,0],[2,3],[-3,12],[-20,42],[-7,5],[-16,-3],[-19,5]],[[5540,3223],[-40,27]],[[5515,3289],[5,-3],[36,0],[37,-13],[25,7],[9,-1],[47,-17],[23,-24],[18,-6],[19,2],[16,12],[12,20],[-8,18],[12,26],[30,40],[8,9],[20,3],[7,8],[7,12],[7,7],[6,10],[5,16]],[[5856,3415],[-10,-8],[-12,-13],[-12,-10],[-10,4],[-58,-53],[-31,-6],[-29,25],[-6,17],[-3,2],[-5,-3],[-7,-13],[-4,-3],[-4,-1],[-9,-5],[-4,-1],[-10,-20],[-6,10],[-7,36],[-7,8],[-26,8],[-7,6],[-6,10],[-7,18],[-6,19],[-2,17],[-2,19]],[[5566,3478],[-2,9]],[[6321,1186],[-4,2]],[[6317,1188],[-32,25],[-6,9],[-2,18],[-3,10],[-13,27],[-5,7],[-8,-1],[-9,-4],[-9,-1],[-8,10],[-5,9],[-46,54],[-3,12],[-1,11],[0,1],[2,-3],[13,4],[4,3],[9,12],[4,2],[9,-1],[5,1],[3,3],[7,4],[21,1],[9,5],[-6,4],[-14,5],[-3,5],[-1,15],[4,12],[5,10],[4,11],[1,16],[0,10],[-5,21],[-2,27],[-3,15],[-3,12],[3,5],[1,3],[2,6],[3,20],[3,18],[6,12]],[[6248,1633],[5,3]],[[1682,628],[57,8],[34,5],[13,10]],[[1786,651],[15,5],[16,15],[39,9]],[[1856,680],[69,-6],[46,-43]],[[1971,631],[12,-3],[7,-2],[36,13],[9,-3],[25,-24],[150,-63],[4,-2],[76,7],[9,0],[8,4]],[[2307,558],[24,30],[15,8],[14,-2]],[[2360,594],[70,-44],[19,-12],[20,-5],[90,11]],[[2559,544],[51,-30]],[[2610,514],[56,-7],[17,-7]],[[2683,500],[14,-15],[2,-1]],[[2699,484],[14,-19],[16,-15],[19,-4]],[[2748,446],[10,4],[17,13]],[[2775,463],[7,2],[3,1],[19,-2]],[[2804,464],[10,2],[8,7],[8,3],[9,7]],[[2839,483],[10,9],[6,11]],[[2855,503],[8,9]],[[2863,512],[26,2],[3,0]],[[2892,514],[18,13]],[[2910,527],[10,27],[1,4]],[[2921,558],[14,25],[13,12],[20,43]],[[2968,638],[4,14],[4,12],[51,63]],[[3027,727],[3,15],[8,19],[16,30]],[[3054,791],[15,13],[34,15]],[[3103,819],[34,25]],[[3137,844],[10,2],[35,9],[86,21],[14,8],[9,2],[4,2],[8,9]],[[3303,897],[5,2],[19,0],[16,8],[40,40]],[[3383,947],[51,8],[11,12],[31,-32]],[[3476,935],[45,-15],[9,-8]],[[3530,912],[11,1],[1,-1],[7,-9],[-2,-22],[9,-17],[24,-19],[5,-8],[8,-24],[5,-6],[82,1],[25,13],[10,-5],[8,-30],[3,-7],[17,-38],[28,12],[30,28],[24,4],[10,-28],[19,-114],[15,-19],[88,-68],[92,-26],[61,6]],[[4110,536],[0,-14],[-2,-120],[1,-13],[5,-17],[4,-12],[3,-11],[0,-14],[-4,-26],[-6,-31],[-8,-27],[-7,-11],[-4,-4],[-20,-32],[-4,-9],[-2,-13],[-1,-17],[-6,14],[-19,18],[-4,6],[-5,9],[-11,8],[-20,6],[-9,-3],[-16,-14],[-8,-3],[-28,2],[-9,-2],[-17,-16],[-11,-28],[-2,-8],[-24,-106],[-6,-16],[-8,-9],[-29,-13],[-5,-6],[-3,-2],[-4,0],[0,-2],[-2114,0]],[[1707,0],[-6,4],[-21,8],[-7,8],[-6,10],[-12,26],[-10,18],[-3,7],[-1,7],[-1,18],[-2,8],[-5,14],[-31,52],[-4,4],[-2,3],[-7,5],[-4,1],[-8,-1],[-4,3],[-3,4],[-1,2],[-5,17],[-3,6],[-4,2],[-9,-1],[-5,2],[-4,5],[-6,14],[-3,5],[-14,11],[-6,10],[-4,18],[-8,47],[-5,19],[-1,5],[1,4],[1,5],[1,3],[0,2],[0,3],[-1,2],[-1,4],[-1,3],[1,4],[1,4],[0,1],[0,1],[-3,12],[-1,23],[-2,13],[-5,7],[-13,12],[-5,8],[-4,10],[-3,12],[-3,13],[-2,13],[0,8],[2,17],[-1,8],[-11,22],[-6,27],[3,21],[5,23],[4,31],[1,29],[1,5],[5,14],[1,4],[1,15],[0,29],[1,12],[5,14],[10,7],[13,3],[7,2],[10,1],[4,10],[4,14],[5,13],[8,5],[9,-1],[8,2],[5,16],[0,8],[-3,21],[0,10],[1,11],[4,29],[-1,0],[-1,4],[0,5],[1,6],[1,1],[7,14],[6,17],[4,7],[18,14]],[[1584,1018],[92,-104]],[[1676,914],[16,-12],[19,-4]],[[1711,898],[9,-7],[10,-7]],[[1730,884],[4,-30]],[[1734,854],[-8,-31],[-15,-14],[-9,-2],[-17,-9]],[[1685,798],[-9,-2]],[[1676,796],[-8,-9],[-5,-23],[-11,-74]],[[1652,690],[1,-22],[5,-19]],[[1658,649],[11,-16],[13,-5]],[[0,1647],[2,0]],[[2,1647],[5,2]],[[7,1649],[13,7]],[[20,1656],[9,2],[7,4],[39,46]],[[75,1708],[5,2],[3,-6],[1,-8]],[[84,1696],[3,-5],[4,0],[8,6],[4,1]],[[103,1698],[19,-7],[4,1],[3,3]],[[129,1695],[4,0]],[[133,1695],[9,-13],[4,-3],[4,1]],[[150,1680],[1,1],[1,1],[1,-3],[3,-5],[2,-4],[2,-5]],[[160,1665],[1,-9],[1,-10],[-2,-2]],[[160,1644],[-2,-1],[-2,-5],[-15,-119]],[[141,1519],[-5,-19],[-4,-10]],[[132,1490],[-8,-12],[-5,-8]],[[119,1470],[-3,-9]],[[116,1461],[-6,-30],[-20,-56],[-2,-4],[-5,-4]],[[83,1367],[-2,-5],[-1,-6]],[[80,1356],[0,-16]],[[80,1340],[0,-7],[-3,-8]],[[77,1325],[-3,-7]],[[74,1318],[-3,-5],[-15,-8]],[[56,1305],[-1,-15],[7,-44],[-1,-27],[-5,-15],[-6,-12],[-4,-21]],[[46,1171],[1,-19]],[[47,1152],[3,-20],[10,-34],[7,-15]],[[67,1083],[9,-7]],[[76,1076],[18,-7],[9,-7]],[[103,1062],[4,-2]],[[107,1060],[6,-1],[14,6]],[[127,1065],[5,-2],[7,-10],[8,-18],[5,-21]],[[152,1014],[1,-20]],[[153,994],[3,-13],[8,-14],[18,-23]],[[182,944],[5,-7],[3,-3],[2,1],[5,8]],[[197,943],[3,0],[3,-8],[1,-17]],[[204,918],[3,-7],[7,-10]],[[214,901],[8,-19],[2,-6]],[[224,876],[14,-13]],[[238,863],[7,-15],[4,-5]],[[249,843],[2,3],[2,6]],[[253,852],[4,2],[5,-8]],[[262,846],[4,-19],[-4,-16]],[[262,811],[-7,-13],[-18,-22]],[[237,776],[-10,-7],[-11,-1]],[[216,768],[-24,4]],[[192,772],[-23,-3],[-6,-3],[-7,0]],[[156,766],[-5,5],[-11,18]],[[140,789],[-11,12],[-6,4]],[[123,805],[-6,-1],[-9,-5],[-4,-5]],[[104,794],[-2,-9],[0,-7],[2,-13],[-1,-7],[-5,-8]],[[98,750],[5,-5],[15,-19],[13,-28],[23,-62],[44,-79],[9,-33],[10,-55],[1,-26],[-11,-18],[-2,-12],[-1,-14],[1,-14],[2,-11],[3,-5],[1,-4],[-1,-4],[-3,-4],[-17,11],[-5,-1],[-5,-21],[-4,-9],[-3,9],[-4,17],[-6,19],[-7,16],[-7,7],[-5,-3],[-10,-13],[-5,-5],[-5,0],[-11,3],[-5,-2],[-5,-17],[-5,-22],[-5,-17],[-9,0]],[[84,329],[-21,6],[-10,-2],[-12,-23],[-8,-6],[-9,0],[-8,4],[-5,12],[-5,14],[-6,10]],[[0,344],[0,1303]],[[0,218],[4,-9],[13,-60],[13,-41],[-3,-5],[-11,-1],[-5,-4],[-1,-2],[-3,-6],[-2,-9],[-4,-8],[-1,-2]],[[0,71],[0,147]],[[5825,9999],[-2,-1],[-14,-4],[-13,2],[-4,3]],[[5792,9999],[33,0]],[[5774,9999],[-3,-11],[4,-11],[9,-3],[-4,-19],[-6,-19],[-13,-32],[-8,-11],[-7,-5],[-16,-7],[-14,-18],[-10,-22],[-12,-15],[-23,0],[-2,-3],[0,-6],[-1,-4],[-1,-2],[1,-5],[-1,-5],[-2,-2],[-1,0],[-4,1],[-16,-3],[-11,-12],[-4,-3],[-15,1],[-31,18],[-13,-2],[-11,-8],[-10,-2],[-10,4],[-22,18],[-6,2],[-15,-2],[-5,2],[-6,16],[-5,41],[-6,17],[-7,6],[-19,0],[-9,2],[-26,15],[-9,1],[-8,-4],[-16,-12],[-11,-1],[-20,6],[-21,0],[-16,-18],[-8,-48],[1,-12],[0,-1],[1,-10],[1,-11],[-1,-10],[-4,-7],[-11,-2],[-4,-3],[-22,-48],[-9,-14],[32,-37],[7,-19],[12,-49],[9,-20],[13,-17],[14,-13],[13,-7],[10,-2],[4,-7],[1,-13],[4,-16],[6,-12],[5,-5],[4,-8],[4,-19],[0,-42],[-9,-19],[-29,-23],[5,-16],[19,-36],[13,-40],[5,-12],[16,-19],[5,-10],[-1,-10],[-6,-2],[-16,5],[-6,-1],[2,-3],[5,-13],[-8,-4],[-3,-8],[1,-10],[5,-9],[10,-10],[1,-25],[-3,-29],[0,-25],[3,-11],[4,-8],[4,-11],[0,-18],[-3,-13],[-4,-13],[-6,-10],[-5,-7],[13,-27],[7,-11],[8,-8],[7,-4],[15,-3],[7,-6],[-5,-8],[-3,-13],[-1,-14],[2,-14],[3,-10],[4,-6],[21,-22],[6,-14],[2,-19],[-1,-29]],[[1977,8234],[-2,13],[-6,6]],[[1969,8253],[-7,3],[-5,16]],[[1957,8272],[3,-1],[3,1]],[[1963,8272],[-10,23]],[[1953,8295],[-3,14],[-2,14]],[[1948,8323],[3,27],[-1,9],[-5,8]],[[1945,8367],[0,7],[4,1]],[[1949,8375],[3,2],[5,10],[-2,5]],[[1955,8392],[-3,6],[-1,7]],[[1951,8405],[2,3],[4,2],[-1,6],[-3,7],[-2,5],[3,23],[1,11]],[[1955,8462],[2,7],[7,12],[9,8]],[[1973,8489],[9,12],[4,23]],[[1986,8524],[-8,15]],[[1978,8539],[-6,18],[5,8],[1,22]],[[1978,8587],[5,4],[0,4]],[[1983,8595],[0,1],[-1,0],[-2,1],[3,12]],[[1983,8609],[1,32],[2,18]],[[1986,8659],[8,27],[6,13]],[[2000,8699],[7,7],[-5,17]],[[2002,8723],[-6,37],[-4,13]],[[1992,8773],[0,11],[-2,12],[-5,5]],[[1985,8801],[-4,2],[-3,7]],[[1978,8810],[-2,8]],[[1976,8818],[-3,7],[-8,7],[-20,-1],[-8,4],[-12,34],[1,4]],[[1926,8873],[1,11],[-1,8]],[[1926,8892],[-7,-10],[-3,5]],[[1916,8887],[-4,5],[-2,4]],[[1910,8896],[-6,-10],[-4,1],[-4,6]],[[1896,8893],[-5,3],[-6,-3],[-2,1],[3,9],[0,7]],[[1886,8910],[-9,1],[-26,14],[-6,8]],[[1845,8933],[-6,-3],[-31,11],[-10,9]],[[1798,8950],[3,18],[-1,13]],[[1800,8981],[-5,9],[-3,4],[-3,4]],[[1789,8998],[-1,0],[20,58],[7,17],[18,30],[52,114],[38,44],[38,31],[71,29],[57,54],[18,30],[5,42],[0,30],[-4,120],[-1,7],[-2,5],[-1,6],[-1,11],[1,8],[5,13],[1,6],[0,8],[-3,28],[0,6],[1,12],[-1,8],[-5,14],[-13,24],[-4,16],[1,20],[4,13],[5,12],[4,14],[1,24],[-4,12],[-8,8],[-7,12],[-6,15],[-3,15],[-4,14],[-8,14],[-7,28],[-6,29]],[[2047,9999],[3727,0]],[[9848,0],[-713,0],[-4,5],[-4,11],[2,32],[-7,29],[-9,26],[-7,15],[-13,10],[-24,12],[-14,24],[-6,5],[-20,5],[-13,9],[-10,4]],[[9006,187],[2,17],[29,128],[6,16],[10,11],[29,13],[30,0],[106,-66],[17,-4],[13,6],[28,24],[16,4],[12,-11],[4,-5],[22,-28],[44,-25],[13,-14],[59,-79],[13,-6],[45,10],[15,-5],[14,-12],[13,-18],[15,-11],[30,10],[13,-9],[4,-9],[6,-23],[4,-11],[7,-8],[22,-11],[11,-12],[19,-33],[12,-11],[16,-2],[31,7],[16,-3],[28,-13],[13,-3],[30,6],[13,-1],[12,-6]],[[9918,0],[18,17],[3,3],[11,5],[49,7]],[[9999,32],[0,-32],[-81,0]],[[0,2337],[0,1]],[[0,2338],[4,4],[4,2]],[[8,2344],[4,-5],[2,-8]],[[14,2331],[2,-5],[2,-4],[4,-6]],[[22,2316],[7,-6],[6,-2],[6,-5]],[[41,2303],[5,-14],[-13,-20]],[[33,2269],[-25,6],[-4,1]],[[4,2276],[-4,-18]],[[0,2258],[0,79]],[[0,2241],[1,-8]],[[1,2233],[4,-7],[9,-14],[2,-12]],[[16,2200],[-4,-10],[-12,-9]],[[0,2181],[0,60]],[[0,2148],[2,-4],[7,-8]],[[9,2136],[9,-4],[17,0],[4,-4],[2,-9]],[[41,2119],[0,-11],[1,-9]],[[42,2099],[12,-22],[16,-13],[86,-36]],[[156,2028],[6,-19],[8,-6],[5,-20],[-1,-23],[-5,-8],[-1,-2],[-37,-3],[-3,2],[-3,9],[-2,2],[-3,-3],[-2,-4],[-1,-4],[-2,-3],[-18,-4],[-9,1],[-8,5],[-5,8],[-8,19],[-5,5],[-10,-4],[3,-15],[6,-18],[-2,-16],[-9,-4],[-24,4],[-7,-9],[1,-9],[3,-8],[5,-7],[3,-6],[3,-12],[1,-10],[2,-24],[3,-29],[1,-10],[-1,-10],[-2,-12],[-1,-12],[0,-10],[5,-7],[9,6],[4,-7],[2,-15],[-4,-8],[-4,-3],[-5,-4],[-6,-19],[-4,-8],[-5,-5],[-7,1],[-8,15],[-6,3],[-8,-7]],[[0,1701],[0,447]],[[0,1670],[7,-21]],[[0,1647],[0,23]],[[1664,4699],[-7,-13],[-11,-31],[-7,-10],[-17,-10],[-7,-7],[-4,-13],[0,-9],[2,-6],[1,-7],[-4,-12],[-3,-2],[-9,-2],[-9,-6],[-5,-6],[-10,-22],[-13,-17],[-16,-11],[-16,-3],[-15,3],[-32,27],[-13,-5],[-7,-39],[-5,-8],[-5,-3],[-7,-1],[-19,5],[-6,-1],[-7,-5],[-8,-6],[-5,-8],[-10,-22],[-3,-6],[-7,-8],[-3,-6],[-2,-7],[-1,-19],[-2,-8],[-10,-24],[-2,-6],[0,-8],[-1,-6],[0,-1],[-2,-8],[-3,-4],[-3,-2],[-21,-9],[-27,-31],[-12,-22],[-8,-24],[1,-31],[4,-34],[0,-33],[-9,-28],[-19,-8],[-7,-8],[-8,-14],[-17,-38],[-2,-11],[-5,-36],[-3,-9],[-4,-14],[-2,-11],[0,-12],[1,-9],[0,-9],[-3,-12],[-3,-8],[-10,-14],[-4,-10],[-2,-9],[-2,-17],[-3,-9],[-9,-13],[-21,-23],[-9,-14],[-17,-32],[0,-3],[1,-5],[4,-3],[4,-1],[3,-4],[4,-12],[0,-1],[-1,-1],[-8,-48],[-4,-8],[-20,-25],[-2,-1],[0,-3],[-1,-12],[1,-12],[1,-10],[0,-11],[-3,-13],[-5,-6],[-15,-6],[-9,-14],[-6,-16],[-9,-40],[-2,-4],[-1,-6],[-1,-5],[-1,-6],[1,-3],[1,-3],[1,-1],[12,-13],[-1,-20],[-8,-18],[-9,-8],[-12,-3],[-4,-12],[-1,-3],[-3,-13],[-9,-19],[-9,-8],[-16,2],[-9,-4],[-7,-12],[-2,-19],[-2,-38],[-5,-18],[-7,-15],[-6,-16],[-2,-20],[13,-38],[3,-22],[-10,-12],[-18,-1],[-9,-5],[-7,-13],[-4,-22],[-2,-44],[-4,-19],[-5,-15],[-4,-5],[-12,0],[-3,-2],[-21,-40],[-7,-5],[-9,12],[-3,5],[-3,3],[-4,0],[-4,-3],[-8,0],[-16,11],[-8,3],[-3,-2],[-6,-6],[-4,0],[-4,3],[-8,10],[-4,3],[-8,1],[-9,-4],[-5,-4],[-4,-4],[-17,-22],[-1,-5],[0,-10],[4,-22],[0,-8],[-4,-5],[-4,1],[-4,2],[-3,-2],[-2,-7],[-1,-12],[0,-2],[-2,-10],[-7,-12],[-8,-7],[-24,-8],[-3,0],[-6,4],[-4,4],[-12,19],[-17,11],[-18,6],[-10,-27],[-69,-3],[-18,-35]],[[533,2879],[-23,32],[-8,5],[-10,-8],[-4,-1],[-3,3],[-4,10],[-3,3],[-7,2],[-4,0],[-11,-9],[-12,-2],[-18,16],[-27,4],[-18,-6],[-6,-5],[-36,-23],[-7,2],[-26,27],[-10,10],[-9,4],[-9,1],[-25,-8],[-9,1],[-8,-2],[-11,-8],[-10,-11],[-6,-11],[1,-8],[3,-9],[1,-8],[-11,-10],[-3,-7],[-2,-7],[-3,-7],[-8,-10],[-3,-2],[-5,-1],[-5,-4],[-4,-9],[-3,-10],[-4,-8],[-8,-4],[-15,0],[-8,-3],[-4,-4],[-5,-6],[-3,-12],[-2,-12],[-5,-10],[-12,-4],[-37,6],[-10,9],[-6,20],[-10,6],[-10,-7],[-7,-19],[0,-29],[-8,-4],[-11,3],[-2,-3]],[[0,2732],[0,2085]],[[0,4817],[8,0],[9,-1],[25,6],[53,-10],[5,1],[26,26],[58,-2],[23,25],[0,5],[1,6],[-1,5],[0,5],[0,1],[0,1],[0,1],[5,15],[4,39],[5,14],[7,7],[39,16],[5,0],[4,-2],[5,-7],[10,-18],[4,-3],[20,6],[10,-3],[7,-14],[1,-10],[-3,-8],[-1,-9],[4,-9],[4,-1],[16,9],[10,-5],[16,-23],[9,-5],[11,6],[19,28],[10,9],[16,8],[2,1],[17,17],[8,4],[3,5],[3,9],[3,17],[1,7],[6,10],[4,1],[4,-2],[7,-1],[8,5],[13,18],[4,3],[9,-6],[5,-9],[5,-3],[10,8],[12,19],[11,25],[9,29],[17,79],[5,15],[6,13],[13,21],[1,2],[6,13],[0,3],[0,4],[0,3],[0,4],[-1,17],[0,8],[1,8],[12,7],[27,3],[91,32],[7,1],[6,-6],[13,-18],[6,-2],[14,-2],[23,-22],[15,-2],[11,1],[13,-4],[12,-8],[8,-13],[11,-4],[33,25],[15,5],[7,-6],[6,-7],[5,-3],[6,6],[5,11],[2,10],[4,10],[8,7],[8,2],[14,1],[22,11],[7,-3],[14,-13],[8,-5],[4,-5],[2,-9],[4,-19],[3,-7],[7,-5],[16,1],[7,-3],[4,-11],[6,-41],[3,-11],[24,-56],[10,-19],[12,-13],[13,-7],[13,2],[22,18],[19,4],[13,11],[6,4],[22,2],[8,4],[8,1],[26,-4],[8,4],[7,9],[8,16]],[[790,0],[-100,0]],[[690,0],[2,2],[14,1],[9,7],[34,42],[10,8],[11,2],[7,-3],[4,-2],[8,-12],[4,-7],[3,-7],[4,-14],[-1,0],[-4,3],[-5,-8],[0,-5],[0,-7]],[[3948,2239],[-12,23]],[[3933,2305],[0,-33],[3,-10]],[[3933,2305],[0,2],[-1,2],[-2,7]],[[3901,2392],[-7,-11],[-5,-11],[24,-21],[10,-12],[7,-21]],[[3901,2392],[8,8],[5,3],[14,0]],[[3934,2408],[-6,-5]],[[3934,2408],[-2,13],[1,16],[-4,99]],[[3929,2536],[-4,9],[-7,24],[-7,30]],[[3911,2599],[-1,29],[2,5],[5,7]],[[3917,2640],[2,5],[-1,3],[-4,13]],[[3914,2661],[-1,7],[0,8]],[[3914,2699],[2,-8],[-1,-7],[-2,-8]],[[3914,2699],[-2,7],[-2,6]],[[3910,2712],[0,11],[-11,50]],[[3898,2787],[1,-14]],[[3898,2787],[1,9],[5,35]],[[3904,2831],[0,5],[-3,3],[0,6]],[[3902,2850],[-1,-5]],[[3902,2850],[4,3],[3,14],[1,5],[7,34]],[[3917,2906],[2,24],[5,23],[-1,9]],[[3918,2975],[2,-6],[3,-7]],[[3918,2975],[-8,20],[-1,9]],[[3909,3004],[5,3],[5,3]],[[3920,3015],[-1,-5]],[[3920,3015],[-1,17],[1,7]],[[3933,3048],[-4,-3],[-5,-3],[-4,-3]],[[3933,3048],[6,8],[5,21]],[[3945,3080],[-1,-3]],[[3945,3080],[0,12],[-2,20],[1,8]],[[3944,3120],[5,2],[2,5]],[[3951,3127],[3,30],[2,4],[4,3]],[[3964,3243],[2,1],[2,-1],[0,-8],[0,-31],[0,-8],[-3,-8],[-6,-5],[3,-13],[-2,-6]],[[3964,3243],[-1,2],[-6,18]],[[3957,3308],[-1,-37],[1,-8]],[[3957,3308],[2,7],[4,5],[-4,16]],[[3961,3350],[-2,-14]],[[3961,3350],[4,12],[3,11]],[[3968,3387],[0,-14]],[[3968,3387],[-1,10],[0,4]],[[3967,3401],[-4,27],[-24,76],[0,19]],[[3914,3598],[7,-28],[18,-47]],[[3914,3598],[1,8],[1,12],[0,7],[-5,10]],[[3904,3666],[7,-8],[0,-11],[0,-12]],[[3904,3666],[4,15],[-1,2],[-1,15]],[[3892,3751],[6,-17],[8,-36]],[[3892,3751],[-13,26],[-1,1],[-4,17]],[[3866,3788],[8,7]],[[3866,3788],[-9,7],[-11,10]],[[3836,3808],[10,-3]],[[3836,3808],[0,14],[-6,8]],[[3801,3870],[4,-4],[13,-23],[12,-13]],[[3801,3870],[-4,2],[-2,3]],[[3779,3905],[19,-16],[0,-6],[-3,-8]],[[3779,3905],[-5,11],[5,3]],[[3780,3923],[-1,-4]],[[3780,3923],[-1,6],[-2,8]],[[3777,3937],[-6,27]],[[3771,3964],[-10,22],[-5,13]],[[3756,3999],[1,12],[-9,24]],[[3748,4035],[-5,7],[-10,5],[-4,3]],[[3729,4050],[-3,4],[-5,5]],[[3706,4066],[4,-3],[11,-4]],[[3706,4066],[-5,14],[-10,39],[-5,7],[-1,1]],[[3685,4127],[-6,6],[3,31]],[[3682,4164],[-7,10],[1,12]],[[3668,4232],[7,-6],[5,-8],[3,-10],[-3,-4],[-3,-8],[-1,-10]],[[3668,4232],[-5,3],[-1,0]],[[3648,4237],[3,-2],[11,0]],[[3648,4237],[-1,3],[-2,2],[-4,1],[-5,6]],[[3636,4249],[-3,14],[-3,27]],[[3629,4291],[1,-1]],[[3629,4291],[-4,1],[-2,1],[-1,5]],[[3622,4307],[0,-9]],[[3622,4307],[0,3],[-2,6],[-2,13],[-1,5],[0,3]],[[3617,4337],[-13,8],[-12,19],[-28,58],[-10,26]],[[3550,4470],[4,-22]],[[3550,4470],[10,3],[0,6],[-3,7],[1,11]],[[3558,4497],[-1,8],[0,2],[-3,3]],[[3554,4510],[-7,9],[-2,4],[-2,9]],[[3542,4582],[-15,-14],[5,-7],[6,-14],[5,-15]],[[3542,4582],[-3,8],[-5,4]],[[3529,4596],[5,-2]],[[3529,4596],[-5,5],[1,7],[-1,30]],[[3502,4675],[5,-9],[9,-9],[8,-14],[0,-5]],[[3502,4675],[8,16],[0,4],[0,2],[-3,2]],[[3498,4710],[9,-11]],[[3498,4710],[5,7],[3,9]],[[3506,4726],[0,9],[-5,9],[-6,-5]],[[3495,4739],[-4,13],[-6,13]],[[3474,4758],[11,7]],[[3474,4758],[-1,2],[-1,4]],[[3472,4764],[0,3],[-1,5]],[[3480,4785],[0,-7],[-9,-6]],[[3480,4785],[-11,10],[-10,14],[-8,20]],[[3448,4853],[3,-24]],[[3448,4853],[1,5],[4,9],[1,5],[0,1],[-3,5]],[[3451,4878],[-3,5],[-4,3]],[[3444,4886],[-5,-7],[-8,4],[-12,11]],[[3427,4901],[-8,-1],[0,-6]],[[3427,4901],[5,7],[0,9]],[[3412,4948],[2,-12],[3,-10],[15,-9]],[[3412,4948],[-5,7],[-4,-6],[-5,-11]],[[3398,4938],[-4,-3],[-2,16],[-3,8]],[[3389,4959],[-18,28],[-4,-4],[-10,19],[-8,6]],[[3323,5005],[9,-3],[17,6]],[[3323,5005],[-4,15],[-5,-11]],[[3299,5024],[10,-13],[5,-2]],[[3299,5024],[-9,-1],[-21,-15]],[[84,329],[-9,-22],[0,-29],[7,-26],[12,-16],[59,-45],[7,-9],[18,-45],[25,-45],[5,-13],[8,-28],[4,-11],[15,-21],[1,-2],[8,-17]],[[244,0],[-244,0],[0,71]],[[0,218],[0,126]],[[1519,5813],[-15,12],[-33,2],[-16,7],[-22,33],[-9,6],[-24,-2],[-20,10],[-3,4],[-1,6],[1,6],[0,7],[-5,8],[-3,1],[-10,-2],[-5,1],[-5,3],[-14,14],[-30,8],[-12,14],[-3,31],[-5,35],[-13,30],[-15,22],[-23,18],[-16,22],[-8,6],[-9,-2],[-7,-10],[-6,-11],[-5,-5],[-6,9],[-15,33],[-7,11],[-4,2],[-7,-2],[-3,0],[-4,5],[-8,12],[-5,4],[-8,3],[-30,-5],[-7,-4],[-8,-5],[-6,3],[-16,-5],[-7,0],[-42,18],[-24,19],[-6,2],[-8,-8],[-13,-30],[-7,-10],[-10,-3],[-6,7],[-6,10],[-8,8],[-7,1],[-17,-5],[-7,-5],[-8,-14],[5,-9],[10,-9],[5,-15],[-4,-9],[-8,-3],[-9,0],[-6,-2],[-9,-13],[-14,-31],[-9,-12],[-10,-6],[-8,3],[-7,7],[-7,11],[-8,9],[-7,2],[-7,-1],[-10,2],[-7,8],[-38,68],[-7,2],[-16,-4],[-9,2],[-4,0],[-4,-4],[-7,-12],[-5,-7],[-10,-6],[-10,4],[-36,27],[-7,-2],[0,-17],[-22,-1],[-17,10],[-6,0],[-4,-5],[-2,-6],[0,-10],[-3,-14],[-3,-13],[-2,-5],[-33,-4],[-6,-6],[-10,-16],[-4,-6],[-9,1],[-2,2],[-2,-5],[-8,-28],[-3,-12],[-3,-11],[-5,-9],[-2,-35],[-5,-25],[-8,-10],[-14,11],[-23,31],[-11,10],[-14,-2],[-8,-9],[-8,-13],[-6,-10],[-10,-5],[-20,2],[-11,6],[-5,12],[2,13],[16,40],[2,2],[3,1],[2,3],[1,5],[-1,4],[0,1],[-3,5],[-1,3],[-6,6],[-1,3],[0,1],[0,4],[3,7],[1,4],[-3,48],[-2,16],[-4,19],[-4,5],[-14,-9],[-9,-1],[-9,1],[-25,13],[1,12],[0,15],[0,6],[2,6],[-17,0],[-9,4],[-7,8],[-2,7],[-7,32],[-8,50],[-5,20],[-10,10],[-4,5],[-7,19],[-3,2],[-3,2],[-2,-2],[-2,-5],[-37,-61],[-3,-5],[-6,-3],[-5,-1],[-13,0],[-8,-3],[-7,-5],[-7,-9],[-5,-14],[-7,-32],[0,-1],[2,-3],[1,-5],[-1,-6],[-2,-3],[-6,0],[-1,0],[-3,-20],[-1,-12],[-3,-8],[-13,-8],[-11,-3],[-4,0],[-5,4],[-8,9],[-4,2],[-9,-3],[-17,-15],[-3,0]],[[0,6126],[0,3873],[2047,0]],[[4574,1996],[-4,1],[-11,-1],[0,-6],[7,-14],[4,-18],[8,-13],[14,-3],[-10,-17],[-5,-27],[-4,-87],[-2,-17],[-6,-28],[-1,-14],[-1,-16],[-1,-15],[-3,-9],[3,-21],[-11,-28],[6,-18],[-3,-12],[-4,-4],[-4,-1],[-4,-4],[-6,-15],[-4,-5],[-8,8],[-5,-2],[-4,-4],[-4,-2],[-84,-21],[-53,-6],[-16,-8],[-43,-49],[-12,-20],[-11,-26],[-3,7],[0,15],[-6,18],[-2,15],[9,7],[11,3],[15,14],[18,7],[9,11],[8,17],[3,22],[-3,13],[-6,13],[-12,22],[2,-15],[1,-8],[0,-11],[-7,2],[-6,-7],[-6,-3],[-5,15],[-2,18],[-1,59],[5,19],[20,12],[5,13],[-4,10],[-19,21],[-5,4],[-13,0],[-14,7],[-4,-1],[-2,-5],[-1,-9],[-3,-9],[-4,-4],[-10,-1],[-4,-3],[-16,-25],[-5,-11],[-2,-21],[1,-6],[3,-5],[1,-6],[0,-6],[-2,-3],[-2,-1],[-1,-3],[1,-9],[3,-8],[4,-5],[9,-7],[21,-36],[-5,-9],[-3,-3],[-4,-1],[4,-6],[2,-1],[0,-7],[-5,-6],[-1,-9],[4,-10],[5,-8],[-4,-6],[-5,-2],[-19,-1],[-5,-3],[-26,-26],[-4,-7],[-4,-14],[-1,-13],[3,-5],[6,8],[-2,-12],[-8,-4],[-2,-14],[2,-16],[3,-5],[23,7],[10,10],[10,15],[9,19],[-6,21],[29,-16],[7,-8],[2,-17],[-3,-20],[-8,-16],[-10,-5],[8,17],[7,19],[1,16],[-10,9],[0,-7],[3,-7],[-1,-3],[-8,-4],[-6,7],[-3,1],[-2,-3],[-1,-5],[-3,-6],[-8,-10],[-13,-24],[-8,-7],[-21,-17],[-5,-9],[7,23],[1,10],[-6,1],[-6,-2],[-4,-6],[-1,-13],[5,0],[-2,-10],[1,-8],[5,-6],[5,-3],[-17,-9],[-6,-10],[0,-15],[2,5],[3,4],[1,4],[6,-5],[6,-8],[-4,-14],[-5,-25],[-4,-27],[2,-19],[4,-1],[3,7],[3,11],[2,23],[4,8],[9,10],[13,28],[7,14],[8,6],[8,3],[6,11],[4,13],[4,19],[-3,-19],[-3,-17],[-29,-89],[-20,-26],[-39,-86],[-4,-22],[-1,-12],[-6,7],[-7,-5],[-5,-8],[-5,-12],[-2,-12],[-1,-14],[-1,-37],[2,-12],[7,-22],[6,-31],[1,-15],[-1,-8],[3,-7],[-6,6],[-6,-3],[-4,-7],[-2,-10],[3,-18],[7,-81],[7,-51],[1,-6],[-2,-8],[-3,-9],[-3,-18],[-6,-29],[-1,-14],[-10,-34],[-2,-9],[-7,-55],[-3,-9],[-1,-9],[2,-10],[-2,-8],[-1,-10],[0,-11],[0,-10],[-2,-10]],[[1584,1018],[0,1]],[[1584,1019],[-2,14],[1,48]],[[1554,1105],[18,-4],[8,-7],[3,-13]],[[1554,1105],[-16,12],[-15,20],[-11,26],[-8,29]],[[1504,1192],[0,8],[1,15],[-1,8]],[[1502,1230],[2,-7]],[[1502,1230],[-9,13],[-1,8],[0,13]],[[1498,1291],[-3,-4],[-2,-9],[-1,-14]],[[1498,1291],[4,2],[15,1],[6,5]],[[1526,1308],[-3,-9]],[[1526,1308],[2,17],[2,17]],[[1530,1342],[7,10],[8,4]],[[1554,1356],[-9,0]],[[1554,1356],[9,-7],[16,-17],[9,-4],[8,3]],[[1596,1331],[10,7],[7,13]],[[1594,1409],[22,-40],[-3,-18]],[[1594,1409],[-6,7],[-34,7]],[[1554,1423],[-14,12],[-15,19],[-30,55]],[[1495,1509],[-6,6],[-8,3]],[[1481,1518],[-11,0],[-4,-5]],[[1442,1477],[9,9],[15,27]],[[1442,1477],[-17,-7],[-7,-7]],[[1367,1302],[49,145],[2,16]],[[1367,1302],[-6,-10],[-10,-4]],[[1307,1356],[4,-7],[5,-5],[4,-7],[5,-28],[7,-12],[10,-7],[9,-2]],[[1307,1356],[-2,7],[-2,13],[-1,6],[-1,7],[-12,48]],[[1232,1481],[39,-33],[14,-4],[4,-7]],[[1232,1481],[-7,2],[-7,-3]],[[1183,1463],[19,6],[16,11]],[[1183,1463],[-22,-1],[-21,11]],[[1120,1517],[4,-18],[16,-26]],[[1120,1517],[-2,17],[-4,16],[-8,12]],[[1098,1566],[8,-4]],[[1098,1566],[-26,-4],[-37,7]],[[1035,1569],[-7,5],[-7,26],[-8,10]],[[1013,1610],[-8,6],[2,13],[4,11],[5,8],[12,7],[25,-2],[12,3],[17,8],[6,8],[2,19],[-4,16],[-6,10],[-15,9],[-11,9],[-20,6],[-10,11],[-1,5],[1,7],[-1,5],[-7,0],[-6,3],[-1,8],[2,10],[3,8],[4,4],[11,1],[5,3],[5,7],[2,5],[0,7],[2,14],[1,4],[4,7],[1,4],[0,5],[0,7],[0,7],[-1,1],[3,8],[4,6],[5,4],[5,0],[5,8],[2,13],[-2,13],[-4,7],[-11,21],[-11,15],[-12,11],[-45,23],[-18,1],[-8,5],[-14,16],[-7,14],[-15,35],[-7,9],[-4,-2],[-7,-13],[-4,-3],[-5,2],[-4,6],[-4,7],[-4,5],[-21,15],[-15,11],[-6,9],[-17,36],[-27,41],[-15,33],[-6,10],[-7,6],[-7,4],[-7,7],[-2,13],[9,13],[6,10],[2,14],[-6,23],[-13,35],[-1,17],[3,24],[5,18],[2,9],[1,14],[-1,51],[2,11],[1,9],[0,9],[-3,10],[-5,4],[-5,-3],[-4,-9],[-3,-11],[-5,-7],[-6,-3],[-5,2],[-6,8],[-4,13],[-10,21],[-4,11],[-1,6],[0,3],[-1,21],[-2,8],[-3,6],[-7,8],[-3,5],[-14,41],[-7,10],[-8,6],[-16,3],[-8,6],[-23,33],[-8,9],[-17,12],[-7,9],[-7,16],[-9,45],[-5,15],[-27,54]],[[9918,0],[-70,0]],[[9006,187],[-10,4],[-13,14],[-10,19],[-6,22],[-5,28],[-7,19],[-9,14],[-39,35],[-9,15],[-7,7],[-3,5],[-2,10],[-4,21],[-3,10],[-7,9],[-17,12],[-7,9],[-19,44],[-50,81],[-28,74],[-27,50],[-91,126],[-12,22],[-12,30],[-7,12],[-9,5],[-5,7],[-10,35],[-4,13],[-8,9],[-10,6],[-19,5],[-8,5],[-8,11],[-34,76],[-8,12],[-8,8],[-18,10],[-44,40],[-122,33],[-5,12],[-5,7],[-30,2],[-17,19],[-11,30],[-8,33],[-11,27],[-16,19],[-3,8],[-3,34],[-5,3],[-14,-9],[-5,3],[-7,9],[-17,32],[-7,9],[-3,8],[1,3],[3,5],[2,5],[0,7],[-1,4],[-25,51],[-4,6],[-9,5],[-19,21],[-9,8],[5,-24],[8,-19],[5,-19],[0,-20],[-9,-12],[-13,-3],[-14,3],[-12,6],[-21,20],[-12,7],[-14,0],[-7,-11],[-3,-2],[-3,1],[-15,9],[-6,7],[-5,3],[-4,-7],[-9,8],[-6,13],[-6,14],[-6,13],[-22,19],[-6,11],[-9,31],[-14,67],[-11,21],[0,7],[8,16],[-2,19],[-8,18],[-41,62],[-11,7],[-6,2],[-8,4],[-6,5],[-6,11],[-16,10],[-15,17],[-36,18],[-47,43],[-18,6],[-9,-3],[-15,-9],[-10,-2],[-7,3],[-26,24],[-21,36],[-3,8],[-1,7],[-2,7],[-1,7],[4,9],[4,2],[48,-2],[10,3],[15,18],[8,6],[5,2],[15,-2],[4,3],[6,9],[9,3],[26,22],[7,9],[4,6],[3,8],[1,12],[-2,8],[-4,7],[-4,2],[-2,-4],[-66,-24],[-5,9],[-5,19],[-3,20],[0,14],[7,10],[5,-16],[3,-23],[4,-12],[4,3],[0,9],[-1,12],[1,10],[3,5],[4,4],[8,4],[0,7],[-13,0],[-5,3],[-10,17],[-5,0],[-5,-4],[-5,-2],[-8,-10],[-17,-40],[-9,-5],[-1,14],[7,26],[10,24],[55,52],[6,-9],[7,-2],[6,0],[8,-2],[73,-76],[18,-11],[10,-2],[3,-5],[-3,-10],[-5,-10],[-3,-2],[-1,-10],[-2,-26],[0,-5],[-4,-3],[-11,-3],[-2,-4],[0,-11],[2,-7],[3,-4],[5,-2],[10,2],[24,12],[20,0],[9,4],[4,13],[4,8],[28,-5],[-8,14],[-12,8],[-24,6],[-13,-1],[-6,1],[-5,6],[-4,14],[3,6],[81,1],[10,-5],[4,-16],[6,11],[16,5],[6,8],[6,10],[19,20],[6,9],[0,-9],[-6,-27],[5,3],[9,9],[2,2],[5,-1],[9,-5],[4,-1],[3,-2],[4,-7],[3,-9],[0,-9],[-3,-6],[-5,-4],[-9,-3],[10,-11],[8,8],[6,17],[5,19],[1,-5],[2,-7],[2,-6],[2,-2],[5,-1],[1,-1],[3,-2],[16,-9],[5,0],[4,2],[2,4],[1,5],[-3,4],[-7,13],[-2,5],[-1,4],[-2,0],[-1,2],[1,8],[2,4],[4,3],[0,3],[2,-1],[7,18],[2,8],[1,7],[1,4],[5,1],[0,7],[-5,-3],[-7,-8],[-6,-2],[3,25],[-3,12],[-4,11],[-2,20],[5,-3],[8,-8],[5,-3],[0,7],[-7,7],[-12,22],[-6,4],[0,10],[7,49],[-1,19],[-3,6],[-5,5],[-6,5],[-4,2],[-4,4],[-3,18],[-3,5],[-5,-7],[0,-15],[6,-15],[11,-4],[0,-8],[-9,-5],[-3,-1],[0,-7],[2,-5],[2,-6],[1,-7],[1,-9],[1,-2],[1,-3],[1,-5],[-1,-4],[-2,0],[-2,1],[-1,-1],[0,-48],[-6,-27],[-4,-10],[-4,-2],[-6,6],[-4,10],[0,11],[4,33],[-1,32],[-3,58],[1,33],[3,34],[3,17],[2,10],[8,6],[4,-8],[-2,-11],[-7,-7],[12,-7],[5,-11],[7,-14],[4,1],[1,17],[7,-4],[2,-2],[-1,12],[-3,5],[-4,2],[-3,8],[-4,14],[0,5],[3,3],[38,53],[16,16],[7,3],[5,9],[6,19],[8,33],[6,35],[12,108],[7,40],[9,29],[14,20],[28,16],[23,3],[3,-2],[-5,-5],[-17,-14],[-3,-4],[-3,-9],[9,7],[5,0],[3,-7],[0,-11],[-9,-21],[-3,-11],[-1,-21],[1,-7],[8,-3],[6,2],[1,-6],[0,-17],[-3,-20],[-8,-20],[-17,-31],[-6,-25],[6,-14],[11,-2],[9,10],[-6,14],[1,14],[10,27],[10,58],[1,10],[4,6],[6,15],[4,18],[3,40],[4,10],[4,7],[3,12],[-1,42],[3,18],[8,8],[9,3],[8,7],[9,3],[10,-6],[21,-41],[15,-11],[23,-36],[8,-8],[8,-4],[15,-2],[5,1],[9,5],[5,0],[6,-5],[5,-2],[4,1],[3,11],[3,21],[1,22],[-2,18],[-6,10],[-111,102],[-6,14],[-2,23],[-4,18],[-8,14],[-15,18],[-41,71],[-15,18],[-8,5],[-33,1],[-5,-2],[-2,-6],[1,-12],[14,-9],[4,-4],[-10,-14],[-11,7],[-28,49],[-18,43],[-5,9],[-10,13],[-7,29],[-4,32],[-11,48],[-4,30],[-5,28],[-11,17],[0,7],[2,0],[1,1],[0,3],[0,3],[13,-13],[18,-24],[18,-17],[13,7],[18,-14],[25,2],[23,12],[15,16],[14,30],[9,11],[9,4],[21,1],[8,4],[8,8],[13,24],[4,4],[4,-6],[4,-15],[0,-5],[7,-23],[3,-6],[64,-30],[49,7],[7,6],[2,18],[-5,18],[-8,14],[-6,7],[-17,15],[-18,11],[-19,1],[-16,-13],[-1,-5],[-2,-12],[-2,-6],[-2,21],[-2,15],[0,11],[2,7],[10,12],[3,5],[0,10],[-1,21],[1,10],[5,12],[9,13],[9,11],[7,4],[34,-13],[9,2],[15,9],[35,4],[9,4],[24,19],[16,7],[7,10],[11,27],[8,12],[7,3],[16,-3],[8,4],[9,9],[14,21],[19,36],[11,7],[3,6],[3,5],[6,1],[4,-4],[3,-12],[4,-4],[5,1],[5,4],[4,6],[3,2],[46,-17],[8,4],[4,14],[3,41],[3,16],[9,14],[19,7],[9,9],[-15,16],[-11,-3],[-10,-16],[-11,-24],[-6,9],[-2,11],[5,27],[-8,5],[-2,8],[1,32],[2,9],[3,2],[4,0],[3,5],[1,8],[-1,30],[-7,25],[-16,7],[-17,1],[-13,11],[-8,-6],[-8,3],[-7,7],[-6,3],[-7,-5],[-11,-15],[-3,-1],[-11,-11],[-16,2],[-14,-4],[-6,-31],[1,-20],[2,-11],[-2,-5],[-20,-3],[-6,-6],[-5,-7],[-6,-5],[-8,-2],[-24,2],[-23,-12],[-15,-4],[-16,-10],[-9,-2],[-31,0],[2,-4],[0,-3],[2,-3],[2,-3],[0,-7],[-10,0],[-11,4],[-11,9],[-6,14],[7,7],[6,22],[6,5],[4,5],[8,27],[4,9],[14,11],[79,16],[6,5],[7,12],[6,14],[0,10],[-5,1],[-3,-7],[-5,-18],[-3,-3],[-4,-1],[-8,1],[-69,-18],[-18,-11],[-15,-19],[-8,-29],[-2,-5],[-4,-2],[-5,-5],[-5,-8],[-2,-9],[-4,-12],[-9,-7],[-69,-14],[-18,-11],[-3,-5]],[[5774,9999],[18,0]],[[5825,9999],[4174,0],[0,-9967]],[[1707,0],[-917,0]],[[690,0],[-446,0]],[[0,1670],[0,31]],[[0,2148],[0,33]],[[0,2241],[0,17]],[[0,2337],[0,395]],[[0,4817],[0,1309]],[[7745,3641],[-8,-2]],[[6979,3027],[12,35]],[[6848,2564],[37,-119]],[[6326,1184],[-9,4]],[[6248,1633],[17,10]],[[6284,2876],[-13,40]],[[5540,3223],[-59,40]],[[5566,3478],[-4,14]],[[4927,2927],[4,-7],[3,-3],[2,-3],[0,-8],[-2,-10],[-3,-8],[-3,-7],[-1,-5],[-2,-5],[-11,-16],[-3,-3],[-5,3],[-4,7],[-24,83],[-11,27],[-16,22],[-31,19],[-9,2],[-8,7],[-29,52],[-4,15],[-2,7],[-1,11],[1,6],[2,6],[1,7],[5,16],[33,22],[5,0],[4,-3],[4,-5],[2,-6],[-3,-19],[4,-21],[7,-17],[7,-11],[8,-3],[3,16],[1,24],[2,24],[5,-13],[3,-18],[1,-21],[0,-19],[4,-13],[26,-24],[4,-6],[2,-5],[1,-6],[1,-10],[0,-9],[-1,-7],[-1,-7],[0,-7],[3,-13],[26,-38]],[[5333,6505],[2,25],[5,47],[-1,26],[-7,55],[1,23],[6,31],[0,34],[11,-10],[7,-3],[2,3],[3,10],[6,7],[6,0],[6,-7],[-4,-16],[6,-14],[10,-17],[5,-22],[2,-89],[4,-25],[-4,-5],[-5,2],[-4,4],[-5,-1],[-3,-9],[-6,-26],[-4,-6],[-19,-27],[-14,-8],[-6,18]],[[3636,6155],[57,0],[6,6],[2,13],[0,16],[2,13],[7,10],[9,5],[9,-2],[5,-13],[-15,0],[-3,-4],[-1,1],[-5,-17],[-5,-31],[-4,-17],[-4,-7],[-29,9],[-31,18]],[[6238,5744],[21,6],[14,-11],[20,-16],[24,-22],[15,-9],[8,-3],[9,-9],[14,-2],[14,-6],[14,-16],[20,-18],[16,-17],[8,-12],[25,11],[19,5],[5,7],[1,23],[5,18],[7,-14],[-3,-34],[-10,-28],[2,-16],[10,6],[8,12],[9,8],[10,5],[8,-7],[-7,-6],[-9,-10],[9,-12],[10,2],[8,-2],[5,-20],[0,-21],[2,-22],[3,-13],[16,-14],[11,-20],[11,-15],[27,-27],[21,-19],[18,-35],[22,-31],[4,-31]],[[6682,5309],[-21,-37],[-13,7],[-10,16],[4,20],[-1,12],[-8,7],[-8,10],[-12,0],[-12,-1],[-7,15],[2,25],[-2,18],[-16,3],[-13,7],[-2,24],[-6,12],[-16,4],[-11,26],[-10,17],[-15,-1],[-10,11],[-15,7],[-14,6],[-10,11],[-7,9],[-6,7],[-8,-10],[-10,-4],[-4,17],[-6,25],[-10,16],[-16,17],[-15,2],[-4,11],[-15,14],[-13,8],[-9,10],[-12,8],[-9,-8],[-2,-9],[-4,13],[-12,19],[-15,7],[-15,16],[-12,17],[-14,31]],[[4941,7940],[7,0],[3,-7],[2,-9],[3,-5],[5,2],[13,19],[-1,-19],[-3,-16],[-3,-12],[-2,-11],[-1,-51],[-2,-13],[4,5],[4,0],[4,-7],[3,-12],[-1,-10],[-2,-11],[-11,-39],[-3,-21],[1,-23],[4,-24],[-4,-15],[-1,-25],[1,-27],[4,-22],[-4,-21],[-7,-79],[-4,-29],[-5,-19],[-6,-29],[-1,-31],[7,-23],[0,-8],[2,-9],[0,-10],[-6,-6]],[[4941,7323],[-2,4],[-17,23],[-7,6],[-10,15],[-8,18],[-5,15],[-1,6],[1,18],[-9,24],[0,13],[2,40],[2,11],[4,12],[6,35],[8,24],[3,13],[0,14],[-2,14],[6,5],[0,17],[-2,20],[2,19],[-7,7],[-8,38],[-10,9],[-50,8],[-7,5],[1,5],[12,2],[4,2],[6,10],[5,2],[6,-2],[5,-4],[6,0],[5,6],[-2,2],[-1,3],[-1,3],[-2,5],[6,8],[2,-5],[4,-4],[4,-1],[4,2],[3,5],[0,6],[0,7],[1,10],[6,17],[7,1],[9,-3],[8,8],[3,10],[-1,10],[-3,8],[-5,3],[-6,3],[-1,7],[3,14],[1,2],[3,2],[3,5],[2,11],[1,8],[5,7],[8,9]],[[6240,3595],[8,5],[3,12],[2,13],[3,14],[8,13],[1,0],[3,15],[3,41],[3,12],[8,20],[3,10],[-2,11],[-7,-4],[-8,0],[-8,5],[-4,9],[3,8],[17,-1],[7,10],[-3,7],[3,13],[6,17],[2,10],[3,-11],[0,-11],[-2,-11],[-1,-14],[12,15],[38,78],[4,14],[2,15],[-1,16],[-4,8],[-13,10],[5,4],[3,-1],[3,-3],[4,0],[27,18],[34,60],[14,34],[6,36],[-10,28],[5,5],[6,1],[5,3],[1,9],[-1,13],[-4,11],[-4,9],[-2,7],[-14,29],[-3,15],[14,0],[-3,10],[-6,9],[-3,8],[-2,12],[-1,29],[1,9],[0,12],[2,6],[3,0],[6,-16],[7,-4],[8,4],[11,10],[18,20],[12,6],[10,-10],[13,-30],[6,-10],[8,-4],[23,0],[17,34],[0,7],[-12,21],[-2,11],[5,9],[10,3],[2,-11],[1,-17],[4,-16],[6,11],[5,1],[12,-12],[12,-7],[3,-4],[5,-13],[1,-3],[4,0],[3,2],[27,27],[2,4],[-6,22],[7,4],[26,2],[28,9],[9,-2],[8,-8],[16,-22],[98,-32],[19,0],[19,10],[15,20],[25,52],[9,24],[8,36],[6,40],[-2,35],[-16,43],[-2,15],[12,24],[1,-11],[6,-20],[2,-6],[2,-8],[10,-13],[2,-6],[1,-12],[3,-10],[5,-15],[3,-17],[3,-29],[3,-16],[4,-11],[11,-18],[6,-12],[2,-13],[5,-34],[4,-14],[4,-5],[8,-8],[3,-7],[2,-9],[-1,-17],[2,-8],[-3,-6],[2,-14],[-6,-9],[-9,-9],[-4,-13],[1,-23],[2,-14],[-2,-2],[-10,9],[-6,9],[-4,3],[-5,1],[-5,-2],[-9,-9],[-5,-2],[-34,7],[-9,-7],[-9,-22],[-7,-5],[-9,-3],[-22,-18],[-19,0],[-14,13],[-25,42],[-18,16],[-5,7],[-8,27],[-3,4],[-12,3],[-34,24],[-14,8],[-16,-7],[-29,-28],[-18,-10],[-36,-5],[-14,-13],[-5,-15],[-5,-18],[-6,-14],[-9,-7],[-30,-6],[-57,6],[-17,-6],[-7,-10],[-2,-15],[0,-43],[15,9],[31,-1],[20,23],[3,-2],[0,-6],[0,-3],[-1,-2],[-8,-13],[-1,-5],[3,-11],[13,-17],[5,-13],[-18,5],[-35,24],[-18,-8],[-6,-10],[-6,-13],[-4,-16],[-3,-38],[-3,-12],[-34,-62],[-3,-9],[-4,-18],[-8,-11],[-9,-9],[-8,-13],[-3,-15],[-3,-20],[-4,-18],[-6,-8],[-9,-5],[-35,-63],[-3,-7],[-2,-16],[-2,-18],[1,-10],[8,-8],[11,-3],[23,1],[0,-7],[-9,2],[-36,-13],[-8,-7],[-6,-12],[-5,-18],[19,0],[9,-4],[0,-12],[-5,-4],[-9,7],[-4,-3],[-2,-3],[-2,0],[-5,0],[-1,-2],[-3,-12],[-40,-3]],[[5900,6277],[-2,-14],[-18,-46],[20,-4],[50,-37],[-4,-16],[-6,-14],[-1,-8],[10,-3],[11,0],[5,-4],[4,-12],[8,-39],[6,-13],[7,-10],[9,-3],[9,-7],[5,-17],[8,-37],[7,-11],[21,-25],[4,-8],[18,-58],[3,-3],[8,-6],[4,-5],[10,-28],[0,-5],[-9,-34],[-4,-5],[-9,-36],[0,-7],[11,-34],[3,-13],[-7,0],[-3,7],[-3,10],[-4,10],[-6,8],[-5,1],[-23,-7],[-23,-18],[-14,-5],[43,35],[4,5],[3,8],[0,11],[-1,8],[-1,9],[2,13],[-4,9],[-4,4],[-11,0],[-5,2],[-13,12],[-31,-25],[-5,1],[-4,10],[-9,8],[-11,5],[-9,1],[-18,-12],[-9,-3],[-8,7],[-3,21],[-12,30],[-29,52],[-62,68],[-30,14],[-5,9],[-3,11],[-8,11],[-16,16],[-56,31],[-17,16],[-37,57],[-13,11],[-15,4],[-5,7],[-17,45],[-7,10],[-9,2],[-35,48],[16,5],[9,7],[4,11],[3,20],[8,3],[9,-5],[7,-8],[12,-18],[15,-36],[14,-13],[30,-15],[16,1],[16,14],[22,-24],[5,-3],[6,-6],[13,-23],[5,-6],[6,-4],[16,-30],[8,-7],[24,-13],[18,-18],[7,-2],[11,2],[3,-2],[1,-4],[2,-7],[3,-7],[4,-3],[6,-2],[14,-9],[8,-2],[9,-1],[8,2],[6,4],[6,8],[0,7],[-26,30],[-6,11],[-1,5],[1,6],[0,6],[-2,3],[0,1],[-7,6],[-18,27],[5,8],[6,16],[7,31],[5,34],[5,8],[18,6],[4,-8],[8,-19],[1,-2]],[[9917,4358],[3,13],[0,17],[0,34],[4,12],[8,12],[9,9],[13,8],[9,9],[8,13],[2,16],[-2,4],[-5,3],[-5,5],[-2,11],[-2,5],[-4,4],[-5,2],[-4,-1],[1,8],[2,3],[6,3],[5,0],[3,-2],[2,-3],[7,-4],[3,-4],[4,-1],[4,4],[3,6],[3,5],[3,4],[4,2],[-7,19],[-7,12],[-21,16],[12,4],[28,-17],[0,-244],[-15,0],[-11,-8],[-6,-13],[-4,-16],[-6,-13],[-12,-5],[-4,11],[-4,24],[-8,24],[-12,9]],[[9999,4706],[-7,5],[-2,4],[-9,26],[-5,8],[-15,16],[20,-13],[9,-10],[9,-29],[0,-7]],[[7033,2086],[8,-7],[7,-3],[8,-5],[6,-13],[-10,-17],[-5,-7],[-7,-3],[-8,5],[-6,12],[-6,11],[-4,6],[-49,28],[-8,9],[-3,7],[-7,6],[-8,4],[-5,0],[-8,-4],[-4,-4],[-5,0],[-25,32],[-5,10],[-12,38],[-6,9],[0,8],[5,4],[14,5],[6,7],[2,4],[6,7],[2,6],[1,11],[-1,3],[-1,3],[-8,68],[-2,12],[-10,16],[-3,12],[-1,15],[-4,6],[-5,5],[-4,6],[-12,40],[-4,6],[-22,-3],[-7,3],[-3,6],[-5,15],[-4,7],[-3,3],[-11,4],[4,9],[7,12],[3,6],[0,6],[-9,-2],[-16,-16],[-9,-2],[-16,9],[-8,2],[-9,-4],[7,18],[9,19],[5,22],[-6,22],[-11,7],[-11,-8],[-11,-12],[-11,-7],[2,12],[6,18],[1,14],[1,10],[4,8],[5,4],[6,2],[1,1],[14,4],[3,-1],[3,8],[1,11],[-1,12],[-2,12],[-12,-22],[-6,-8],[-19,-6],[-7,-7],[-43,-65],[-18,-15],[-19,-6],[0,7],[13,14],[5,7],[2,8],[2,11],[4,10],[5,5],[3,5],[2,23],[4,6],[6,1],[5,3],[5,4],[4,5],[3,6],[6,16],[2,6],[3,15],[-1,7],[-1,5],[-1,10],[-5,5],[-30,18],[0,-6],[8,-15],[5,-10],[2,-10],[-5,-11],[-7,1],[-6,4],[-3,-3],[-2,-9],[-3,-12],[-8,-20],[-5,-3],[-5,9],[-7,25],[6,15],[3,4],[-7,7],[-9,-4],[-7,-13],[-3,-20],[-2,-25],[-2,-9],[-2,6],[0,25],[-3,0],[-1,-7],[-2,-4],[-2,-2],[-4,-1],[2,3],[1,4],[0,5],[0,8],[-12,-20],[2,10],[3,16],[1,12],[2,4],[10,8],[3,4],[1,20],[-6,10],[-9,8],[-7,10],[4,1],[8,6],[-10,25],[-6,9],[-8,-1],[-1,-5],[-2,-17],[-2,-5],[-5,-1],[-4,2],[-4,4],[-3,6],[-2,14],[1,16],[-1,7],[-16,-39],[-6,-3],[-4,14],[5,11],[-7,7],[-19,10],[-3,-8],[-2,5],[-2,4],[-4,4],[-4,2],[-1,1],[-4,4],[-2,1],[-1,-2],[-1,-4],[1,-5],[1,-2],[5,-4],[24,-33],[5,-9],[2,-11],[1,-21],[-3,-17],[-6,-5],[-7,-1],[-5,-8],[-11,18],[-5,14],[-1,16],[7,-6],[6,0],[6,4],[4,9],[0,6],[-24,35],[-14,12],[-18,41],[-8,9],[-8,5],[-21,1],[-5,-3],[2,-7],[8,-11],[5,-3],[4,1],[3,-2],[2,-10],[-8,-6],[0,-8],[3,-11],[2,-12],[-3,-12],[-7,3],[-6,8],[-3,4],[-3,5],[-2,9],[-2,9],[-6,4],[-4,-4],[-4,-9],[-5,-7],[-8,-1],[4,8],[-3,6],[0,3],[-1,4],[9,6],[-4,16],[-16,33],[4,7],[2,10],[0,27],[-3,5],[-18,12],[0,-33],[-2,-15],[-5,-7],[-20,18],[-4,6],[-19,57],[-3,7],[-5,7],[0,7],[11,0],[8,-5],[6,6],[6,11],[6,9],[7,2],[9,-3],[8,-6],[3,-11],[2,-3],[5,-1],[9,1],[4,1],[7,6],[6,0],[25,-17],[8,-3],[4,-10],[11,-42],[6,-9],[2,-2],[1,-5],[1,-5],[2,-2],[2,1],[1,2],[1,2],[5,4],[2,4],[3,2],[5,-1],[0,-3],[0,-6],[2,-7],[1,-5],[2,-1],[4,1],[3,0],[8,-4],[5,0],[0,8],[-2,9],[-4,24],[-3,4],[-5,2],[-4,3],[-7,9],[0,6],[11,-4],[5,3],[1,12],[2,9],[5,-2],[5,-8],[3,-10],[0,-7],[-3,-20],[3,-12],[2,-3],[1,5],[18,31],[-15,23],[-6,13],[-3,14],[1,25],[2,16],[4,7],[8,-4],[14,-18],[10,-26],[22,-72],[2,-7],[2,-12],[-1,-25],[1,-11],[4,-4],[5,10],[3,25],[2,25],[0,14],[-4,5],[-10,2],[-3,6],[0,7],[4,6],[3,6],[2,5],[4,-1],[25,-23],[30,-37],[15,-7],[14,17],[3,15],[1,9],[3,3],[5,-3],[5,-7],[5,-10],[2,-10],[0,-27],[-1,-11],[-4,-13],[-1,-10],[-3,-13],[-6,13],[-5,20],[-1,10],[-5,-7],[-5,-17],[-3,-9],[-2,17],[1,5],[2,5],[-1,5],[-5,1],[-14,-20],[-4,-17],[0,-18],[4,-15],[8,-11],[-3,-12],[-4,2],[-4,8],[-6,2],[-5,-7],[-5,-14],[-2,-14],[4,-6],[12,1],[10,-3],[5,-10],[-5,-22],[9,-4],[14,28],[17,-12],[9,14],[23,74],[2,12],[-2,18],[-3,19],[-2,20],[1,21],[14,22],[20,-4],[19,-18],[12,-20],[3,-13],[4,-18],[0,-16],[-6,-8],[-3,4],[-6,14],[-2,3],[-11,2],[-17,-8],[-5,-6],[-4,-9],[8,-7],[8,-14],[5,-15],[2,-15],[13,-20],[4,-4],[4,5],[1,10],[2,10],[6,2],[4,-9],[4,-21],[3,-23],[1,-17],[0,-22],[1,-10],[3,-9],[2,-2],[5,-7],[2,-1],[2,-3],[-1,-6],[-2,-5],[-1,0],[-1,0],[-4,-6],[-1,0],[0,-6],[1,-6],[2,-3],[1,1],[-9,-53],[-1,-10],[2,-5],[5,2],[4,2],[4,4],[3,5],[3,9],[1,8],[1,6],[3,5],[5,-1],[5,-7],[4,-9],[3,-7],[4,-16],[5,-37],[4,-18],[15,-40],[1,-8],[1,-4],[7,-19],[1,-12],[3,-5],[4,-3],[4,-4],[3,-11],[9,-29],[11,-25],[3,-10],[18,-34],[90,-210],[3,-5],[5,-1],[5,-4],[2,-7],[3,-9],[4,-7]],[[9752,8904],[-7,-18],[-13,-10],[-12,-1],[-10,11],[-2,11],[2,9],[3,8],[1,6],[0,11],[-3,18],[0,9],[4,24],[5,17],[1,16],[-5,20],[-10,13],[-23,9],[-9,10],[-13,33],[-7,14],[-10,6],[-7,1],[-4,5],[-5,18],[-7,12],[-3,7],[0,12],[14,34],[7,19],[2,10],[0,14],[1,7],[4,18],[1,10],[-1,6],[-6,17],[-2,7],[-1,19],[2,9],[4,7],[4,13],[2,16],[0,9],[-7,21],[-2,3],[-2,3],[0,9],[2,7],[10,13],[2,12],[1,13],[-3,114],[3,24],[5,9],[7,8],[6,9],[3,14],[-3,9],[-11,11],[-4,8],[3,10],[1,9],[0,10],[2,11],[7,28],[1,10],[1,22],[1,11],[7,9],[1,12],[1,14],[1,10],[3,10],[8,15],[4,9],[2,11],[1,12],[2,8],[17,7],[31,30],[20,11],[11,11],[10,40],[1,2]],[[2759,2116],[-8,-42],[-2,-15],[2,-15],[14,-51],[3,-27],[0,-20],[-3,-18],[-6,-22],[-1,-14],[3,-32],[0,-15],[-2,-13],[-8,-15],[-3,-12],[-1,-38],[13,-30],[18,-21],[34,-27],[29,-36],[14,-23],[8,-16],[10,-14],[9,-6],[31,-6],[9,-8],[7,-14],[3,-20],[11,-10],[105,2],[26,14],[10,0],[19,-13],[35,-42],[18,-9],[27,0],[9,5],[12,13],[6,1],[2,-1],[6,-6],[2,-2],[2,1],[6,6],[3,1],[5,-2],[14,-12],[2,-1],[8,1],[3,-5],[5,-19],[3,-5],[4,1],[9,10],[4,2],[1,-2],[5,-8],[2,-2],[3,1],[6,8],[3,1],[3,-4],[6,-16],[5,-5],[6,-2],[9,6],[6,1],[8,-3],[3,-7],[2,-8],[2,-10],[4,-10],[1,-4],[2,-2],[47,-8],[11,1],[19,9],[10,-2],[10,-11],[20,-29],[10,-8],[78,-18],[10,6],[19,18],[20,1],[23,13],[9,8],[2,4],[1,5],[3,6],[4,6],[4,1],[11,-8],[5,0],[76,38],[7,1],[15,-3],[8,3],[8,9],[3,10],[2,13],[7,18],[-2,-5]],[[7809,7878],[6,-1],[8,3],[8,9],[9,15],[8,17],[5,21],[0,23],[-5,28],[-12,23],[-6,15],[-7,10],[-26,16],[-24,22],[-9,5],[-19,-1],[-38,-13],[-19,-1],[-36,14],[-11,11],[-15,35],[-14,26],[-16,42],[-25,36],[-9,17],[-16,37],[-10,14],[-15,16],[-48,50],[-22,32],[-10,6],[-10,3],[-18,0],[-24,11],[-10,0],[-21,-7],[-23,0],[-10,-2],[-21,-13],[-9,-2],[-28,4],[-36,-8],[-13,3],[-20,18],[-11,6],[-6,-2],[-4,-8],[-5,-9],[-4,-6],[-8,-3],[-7,3],[-15,13],[-10,2],[-42,-28],[-8,-11],[-16,-30],[-10,-9],[-12,-3],[-11,3],[-10,8],[-7,17],[-2,20],[-2,16],[-9,7],[-32,-2],[-12,6],[-6,6],[-10,15],[-5,6],[-6,1],[-5,-3],[-4,-6],[-6,-4],[-12,1],[-20,25],[-12,9],[-14,-1],[-9,-9],[-20,-28],[-33,-23],[-9,-15],[-2,-10],[-3,-24],[-3,-12],[-4,-11],[-5,-9],[-5,-7],[-5,-7],[-8,-13],[-1,-15],[4,-14],[9,-9],[6,-4],[3,-3],[3,-4],[1,-6],[3,-12],[2,-5],[5,-6],[6,-2],[5,-3],[4,-13],[1,-14],[0,-17],[-1,-17],[-1,-14],[-2,-7],[-7,-21],[-3,-14],[-1,-6],[-3,-4],[-7,-6],[-16,-3],[-8,-4],[-4,-6],[-2,-7],[-4,-5],[-5,0],[-4,4],[-8,11],[-11,10],[-11,17],[-7,8],[-11,6],[-43,7],[-19,-8],[-10,0],[-27,17],[-12,-2],[-7,-25]],[[6566,8087],[3,-34],[-10,-32],[-17,-27],[-34,-34],[-86,-41],[-10,3],[-8,7],[-4,8],[-1,9],[-4,11],[-4,5],[-2,1],[-3,1],[-2,7],[-1,20],[2,22],[-3,20],[-10,10],[-10,0],[-42,-13],[-7,0],[-5,5],[-16,24],[-28,27],[-1,4],[-2,13],[-2,5],[-4,3],[-60,17],[-25,-4],[-12,-6],[-9,-6],[-8,-8],[-29,-43],[-13,-10],[-107,-16],[-20,10],[-52,65],[-35,31],[-72,34]],[[4938,7937],[0,-9],[4,-10],[6,-10]],[[4948,7892],[-7,-55],[-1,-8]],[[4940,7829],[-2,-58],[0,-25],[2,-45],[-2,-39],[-9,-83],[-8,-55],[2,-61],[3,-52],[2,-29],[14,-53],[-1,-6]],[[5338,6732],[13,-20],[5,-29],[5,-40],[-4,-43],[-11,-56],[-3,-35],[7,-20]],[[6091,5835],[-13,20],[-9,16]],[[5917,6001],[-25,14],[-29,18],[-27,16],[-41,27],[-31,32],[-22,24],[-108,80],[-30,25],[-29,32],[-28,19],[-16,3]],[[5531,6291],[-1,0]],[[6682,5309],[-13,24],[-5,7],[-17,19],[-5,7],[-2,5],[-2,5],[-3,13],[-2,5],[-8,7],[-16,3],[-7,5],[-23,33],[-6,7],[-20,12],[-12,16],[-21,41]],[[6520,5518],[-13,10],[-23,6]],[[6406,5603],[-4,6],[-8,20]],[[6354,5646],[-17,27],[-8,6],[-16,4],[-23,11],[-52,50]],[[6240,3595],[12,4],[15,18],[5,22],[7,22],[5,23],[4,27],[10,45],[13,34],[40,74],[12,32],[17,37],[20,32],[13,24],[9,26],[9,32],[5,29],[3,29],[1,26],[-1,27],[-1,32],[3,31],[21,17]],[[6505,4231],[19,5],[50,26]],[[6628,4280],[60,43],[4,2]],[[6750,4296],[44,-14],[29,-2]],[[6823,4280],[42,-20],[28,2],[22,19],[15,30],[6,41],[1,51],[-1,44],[-2,37],[-4,34],[-10,33],[-8,30],[-1,13]],[[6911,4594],[1,0],[0,1]],[[4878,9999],[2,-3],[1,-19],[0,-8],[2,-8],[-8,0],[-22,-13],[-16,-1],[-6,-3],[-4,-9],[-4,-31],[11,-52],[-1,-26],[4,0],[4,-1],[7,-6],[-4,-1],[-8,-6],[3,-6],[-15,-20],[-18,2],[-18,17],[-17,21],[-4,-11],[-14,-5],[-5,-27],[-20,-35],[-3,-20],[5,-12],[8,-7],[4,-6],[-2,-2],[-3,-5],[-3,-8],[-1,-8],[1,-6],[4,-5],[7,-6],[0,-7],[-2,-3],[-2,-6],[-2,-7],[0,-7],[1,-9],[6,-10],[1,-9],[1,-28],[2,-12],[3,-11],[-8,0],[0,-6],[9,-10],[5,-16],[3,-16],[6,-12],[-1,-4],[0,-1],[-2,-2],[7,-14],[3,-9],[2,-11],[-1,-11],[-3,-2],[-3,6],[-2,7],[-3,0],[0,-12],[2,-9],[7,-13],[3,7],[0,-5],[1,-3],[0,-2],[2,-4],[9,9],[8,-18],[7,-25],[7,-13],[5,-4],[14,-18],[3,-5],[-1,-6],[-2,-5],[-1,-6],[1,-11],[2,0],[10,-6],[-4,-13],[-2,-4],[-3,-4],[5,-13],[4,-14],[-15,6],[-3,-6],[3,-20],[3,-8],[3,-3],[2,-5],[1,-15],[15,-10],[-1,-8],[2,-7],[4,-4],[5,-1],[5,-3],[2,-7],[2,-7],[3,-4],[7,-6],[-2,-15],[-10,-26],[26,-21],[3,-1],[11,1],[1,-3],[0,-18],[0,-6],[10,-13],[13,-9],[27,-6],[0,-6],[-8,-14],[-1,-36],[-9,-4],[0,-6],[5,-7],[8,-16],[5,-5],[5,15],[4,-9],[2,-17],[-1,-9],[7,-6],[5,-13],[8,-29],[4,-5],[13,-13],[5,-2],[10,-1],[1,-5],[-3,-8],[-1,-12],[4,-10],[7,-13],[5,-14],[-3,-15],[1,-6],[6,-15],[-1,-3],[-2,-2],[2,-4],[4,-5],[4,-3],[3,2],[8,7],[3,-2],[1,-7],[-6,-13],[1,-10],[3,-11],[3,-21],[4,-12],[0,-10],[0,-8]],[[5068,8631],[-6,-11],[-3,-6]],[[5037,8605],[0,-9],[-1,-9]],[[5036,8587],[-9,-6],[-3,-7]],[[5024,8574],[-2,-6],[-2,-3],[-2,-4],[-9,-17],[-3,-8],[-2,-3],[1,-3],[3,-10]],[[5008,8505],[-8,-11],[-9,-9],[-5,-9]],[[4998,8462],[-5,-7],[-1,-12]],[[4992,8443],[-1,-12],[-2,-10]],[[4984,8418],[-14,0],[-5,-3]],[[4962,8363],[-3,-7],[-3,-3],[2,-4]],[[4958,8349],[1,-9],[-5,-4]],[[4954,8336],[-13,-16],[0,-7],[9,-11]],[[4950,8302],[3,-3],[0,-6],[-3,-1],[-2,-2]],[[4947,8288],[-2,-2],[0,-7]],[[4967,8233],[5,-6],[1,-8],[-2,-8]],[[4981,8187],[5,-2],[0,-8]],[[4980,8179],[-5,-2],[-3,-7],[-1,-13]],[[4976,8143],[4,0],[6,-6]],[[4997,8091],[0,-5],[-5,-3],[2,-28]],[[4994,8055],[-12,-18],[-13,-14]],[[4968,8008],[-8,-19],[-1,-2]],[[4959,7963],[-2,-6],[-7,-2],[-5,0],[-2,-1],[-3,-5],[-1,-5],[-1,-7]],[[5338,6732],[-14,9],[-18,3],[-17,-6],[-38,-34],[-12,-3],[-12,3],[-6,5],[-15,18],[-7,5],[-20,3],[-12,6],[-11,11],[-20,33],[-23,55],[-9,13],[-28,18],[-35,36],[-8,18],[-15,45],[-9,13],[-5,25],[-7,29],[-9,24],[-10,10],[-7,14],[-1,61],[-3,14],[-17,34],[-2,9],[-2,12],[-1,26],[0,1],[2,16],[0,7],[-2,5],[-3,2],[-4,1],[-2,2],[-1,9],[1,7],[4,12],[1,12],[0,8]],[[5531,6291],[-28,8],[-10,13],[-11,28],[-7,14],[-9,12],[-6,6],[-6,3],[-17,3],[-5,1],[-4,4],[-17,25],[-21,18],[-4,7],[-14,31],[-6,9],[-2,2],[-8,5],[-2,2],[-4,7]],[[5350,6489],[-2,2]],[[6238,5744],[-73,71],[-15,6],[-48,6],[-2,1],[-9,7]],[[6911,4594],[5,45],[1,15],[0,14],[-3,28],[-1,10],[3,16],[5,13],[5,15],[0,18],[-4,12],[-22,36],[-2,4],[-7,27],[-1,7],[3,15],[8,7],[9,3]],[[6917,4880],[4,-1],[12,-8]],[[6941,4872],[3,5],[1,8],[-1,5],[-5,11],[-1,5],[-1,9],[0,8],[1,8],[3,8],[8,16],[1,8],[1,10],[0,10],[-1,10],[-2,9],[-7,21],[-7,17],[-5,19],[-2,27],[1,23],[0,11],[-2,9],[-3,3],[-6,5],[-3,3],[-3,5],[-2,5],[-1,7],[-2,7],[-2,25],[-2,9],[-5,7],[-10,7],[-10,13],[-4,2],[-10,-4],[-4,1],[-12,7],[-35,8],[-3,0],[-17,-9],[-13,2],[-12,11],[-22,27],[-58,33],[-5,6]],[[5856,3415],[17,16],[23,13],[24,6],[88,72],[3,1],[2,-1],[8,-6],[11,-3],[11,6],[32,32],[6,3],[7,1],[6,-1],[5,-2],[11,-10],[11,-10],[11,-3],[12,1],[11,6],[12,11],[11,16],[5,9],[3,10],[4,8],[6,7],[12,6],[6,0],[21,-7],[5,-1]],[[0,6669],[6,6],[14,7],[17,3],[8,4],[3,3],[4,5],[1,2],[-1,2],[-1,8],[1,15],[2,11],[9,24],[-1,2],[-1,1],[-1,4],[3,1],[2,2],[1,2],[3,2],[-3,7],[2,5],[3,5],[4,3],[4,1],[9,-1],[6,2],[4,5],[8,-11],[9,-7],[10,-3],[26,5],[8,-4],[4,-14],[3,0],[3,5],[3,0],[3,-4],[3,-8],[2,0],[11,11],[14,-1],[15,-7],[11,-9],[10,-13],[4,-7],[5,-11],[6,-8],[8,-3],[8,2],[6,6],[2,0],[10,-9],[13,-2],[26,4],[6,4],[5,9],[4,12],[1,13],[4,6],[17,14],[7,3],[8,1],[17,12],[13,0],[5,1],[6,6],[2,1],[6,-9],[4,-4],[2,2],[2,-1],[13,4],[24,-10],[6,4],[18,-7],[25,10],[21,21],[9,23],[6,-3],[5,-2],[5,1],[5,4],[1,5],[0,7],[1,6],[5,3],[3,1],[10,5],[13,12],[59,3],[10,4],[9,8],[28,44],[2,11],[5,12],[14,10],[6,8],[1,5],[0,11],[2,5],[2,2],[4,0],[1,1],[9,14],[3,17],[3,6],[16,-23],[7,5],[6,9],[6,5],[6,-6],[6,5],[12,2],[4,3],[4,9],[4,4],[4,3],[32,1],[6,3],[5,6],[4,7],[4,5],[18,12],[4,2],[6,-4],[4,-7],[4,-6],[8,3],[0,1],[8,16],[3,3],[2,0],[1,2],[1,9],[2,5],[5,4],[5,6],[3,14],[4,-5],[3,0],[4,5],[1,3],[-1,5],[0,5],[2,1],[6,0],[1,0],[27,34],[8,-5],[11,3],[11,10],[8,13],[-4,15],[-2,5],[41,27],[28,10],[7,10],[14,23],[5,16],[2,19],[3,15],[21,36],[12,30],[7,8],[12,2],[7,7],[7,14],[5,18],[3,16],[3,38],[0,37],[-4,35],[-11,60],[0,10],[-1,3],[-2,2],[-2,2],[-1,6],[0,6],[1,3],[2,2],[0,3],[3,43],[-1,19],[-8,9],[0,7],[3,1],[4,2],[3,4],[2,6],[-2,14],[-10,38],[-4,32],[-4,17],[-1,8],[1,11],[2,9],[3,14],[8,62],[5,16],[4,5],[8,1],[5,4],[2,6],[4,14],[2,7],[6,9],[20,21],[18,10],[0,16],[-11,32],[-3,17],[-5,43],[-5,19],[-7,5],[-30,5],[0,6],[6,11],[-1,13],[-8,17],[-1,14],[0,11],[-1,9],[-7,7],[-4,0],[-11,-7],[-7,-1],[-22,7],[-12,8],[-6,11],[-6,13],[-6,11],[-10,5],[-5,1],[-5,2],[-5,5],[-4,6],[-2,6],[-2,16],[-2,6],[-9,4],[-24,3],[-5,9],[-3,17],[-7,16],[-8,13],[-5,11],[-2,20],[9,22],[-3,16],[-18,36],[-7,8],[-7,5],[-15,4],[-8,9],[-4,3],[-7,27],[-3,5],[-8,9],[-4,7],[18,37],[2,13],[-2,14],[-6,7],[-7,4],[-5,6],[-6,11],[0,6],[2,7],[1,13],[-1,15],[-3,10],[-4,7],[-4,5],[0,7],[3,8],[1,8],[1,8],[-2,10],[-4,12],[-16,29],[-12,15],[-14,38],[-7,14],[-10,5],[-5,4],[-11,34],[-15,39],[-4,4],[-10,6],[-4,4],[-7,12],[-6,29],[-6,16],[-7,8],[-18,0],[-8,2],[-24,25],[-18,5],[-9,6],[-7,9],[-4,9],[-10,-10],[-49,4],[-24,-7],[-12,-7],[-31,-30],[-11,-4],[-36,10],[-49,-13],[-37,3],[-19,11],[-65,74],[-9,4],[-3,1],[-9,9],[-4,3],[-17,0],[-8,4],[-2,3],[0,6],[-4,11],[-4,7],[-7,8],[-9,15],[-8,6],[-18,8],[-6,7],[-8,4],[-19,2],[-6,3],[-25,25],[-24,14],[-14,22],[-8,5],[-35,2],[-105,41],[-14,17],[-6,14],[-4,12]],[[4926,2872],[-7,17],[-6,9],[-9,22],[-9,23],[-6,23],[-12,27],[-10,19],[-14,12],[-12,6],[-11,17],[-2,15],[2,14],[6,13]],[[1675,5959],[-12,14],[-12,19],[0,14],[1,12],[4,9],[9,14],[10,6],[14,5],[12,9],[6,17],[2,3],[10,8],[3,5],[-2,13],[-4,10],[-5,8],[-4,10],[6,9],[6,11],[2,10],[2,11],[3,10],[6,3],[9,3],[11,6],[17,12],[22,24],[15,5],[31,23],[16,8],[19,4],[7,7],[16,23],[16,15],[16,2],[17,-6],[50,-39],[25,-8],[9,-7],[17,-24],[27,-6],[5,3],[5,9],[10,2],[36,-4],[6,-9],[2,-18],[4,-8],[22,-17],[1,-1],[0,-4],[1,-5],[2,-3],[2,-1],[4,2],[2,-1],[12,-12],[5,-1],[4,2],[8,9],[5,2],[5,-1],[4,-4],[14,-20],[18,-47],[4,-17],[2,-9],[2,-11],[-1,-9],[-2,-8],[0,-9],[9,-12],[1,-2],[3,-4],[3,-19],[3,-8],[5,-7],[6,-5],[28,-13],[8,-1]],[[2320,5970],[12,11],[12,-11],[7,3],[4,-6],[5,-2],[4,2],[4,6],[7,-11],[4,-11],[4,-9],[7,-4],[8,-1],[4,-4],[2,-5],[1,-9],[2,-5],[4,-2],[3,-4],[6,-11],[33,-21],[5,-5],[5,-7],[3,-11],[3,-16],[2,-15],[-1,-6],[7,-3],[7,-6],[6,-10],[2,-11],[6,-16],[14,-5],[15,2],[9,8]],[[2550,5767],[3,-5],[3,-6]],[[2579,5711],[18,5],[7,-1]],[[2630,5677],[-3,-17],[0,-10],[3,-9]],[[2652,5638],[1,8],[3,8]],[[2656,5654],[3,6],[10,12]],[[2670,5603],[1,-18],[11,18]],[[2692,5602],[23,-17],[-9,-13]],[[2706,5572],[-24,-11],[-5,-16]],[[2677,5545],[5,-26],[12,7]],[[2694,5526],[21,32],[7,2]],[[2810,5543],[7,-6],[13,-19],[12,-10]],[[2845,5504],[4,-15],[0,-5]],[[2845,5474],[-1,-9],[0,-2]],[[2844,5463],[1,-2],[4,-8]],[[2935,5382],[9,-18],[1,-6],[0,-9],[0,-2]],[[3026,5329],[0,-11],[5,-14],[7,-10]],[[3038,5294],[8,-7],[8,1],[6,13]],[[3048,5338],[0,14],[1,5]],[[3061,5355],[5,-13],[0,-28]],[[3082,5273],[24,8],[8,-1]],[[3276,5250],[2,-7],[2,-3]],[[3267,5297],[8,12],[10,-4]],[[3311,5324],[-2,7],[3,10]],[[3343,5325],[-3,14],[2,9]],[[3351,5355],[4,-3],[5,-4]],[[3435,5321],[5,-10],[3,-4]],[[3449,5315],[5,-1],[9,-5]],[[3511,5328],[4,-2],[10,-10]],[[3542,5367],[17,-5],[5,-5]],[[3577,5348],[4,5],[6,17]],[[3592,5375],[17,-9],[12,-18],[9,-25],[6,-29]],[[3683,5233],[9,-1],[1,-27],[9,-6]],[[3702,5199],[54,1],[14,-11]],[[3804,5147],[14,-31]],[[3821,5111],[9,-23],[18,-10]],[[3848,5078],[38,-7],[9,-7]],[[3902,5051],[2,-17],[-8,-39],[6,-8]],[[3902,4987],[10,0],[6,2],[14,18]],[[3932,5007],[7,2],[3,-17]],[[3942,4992],[1,-19],[5,-11]],[[3965,4962],[9,8],[7,9]],[[3981,4979],[7,7],[20,4]],[[4016,4988],[4,-7],[1,-19]],[[4007,4926],[-7,-12],[-3,-14],[1,-14]],[[4003,4878],[9,3],[7,11]],[[4039,4921],[6,-7],[5,-13],[-1,-15],[-7,-13]],[[4059,4826],[9,-9],[4,0],[2,9]],[[4074,4843],[3,21]],[[4077,4864],[7,8],[9,-1],[7,-4],[12,-14],[11,-6],[5,-1],[4,-3],[2,-7],[-1,-14],[-2,-7],[-4,0],[-4,4],[-5,0],[-3,-5],[-11,-22],[-9,-11],[-4,-9],[-2,-11],[4,-15],[9,4],[22,31],[4,3],[5,1],[2,-3],[3,-7],[4,-4],[13,12],[7,-9],[9,-23],[15,-20],[13,4],[12,-17],[8,-24],[-1,-24],[14,-17],[51,-24],[16,-22],[0,-26],[-16,-61],[-2,-22],[2,-55],[3,-27],[1,-4],[2,-6],[0,-11],[-2,-12],[-1,-5],[2,-17],[10,-23],[2,-11],[1,-20],[1,-17],[4,-15],[6,-12],[19,-19],[5,-9],[3,-14],[-2,-9],[-7,-17],[-3,-31],[10,-15],[14,-15],[11,-28],[-5,-11],[-6,-7],[-7,0],[-15,22],[-4,-4],[1,-15],[5,-21],[30,-80],[7,-33],[-7,-5],[-8,-29],[-14,-13],[-7,-14],[-7,-18],[-4,-16],[7,-2],[6,-7],[11,-18],[2,8],[8,15],[3,16],[5,0],[5,-4],[5,3],[2,12],[-3,10],[-3,11],[-1,11],[4,6],[5,1],[6,-5],[3,-9],[3,0],[4,13],[5,-4],[7,-10],[6,-6],[5,-2],[1,-5],[-1,-7],[2,-6],[4,-6],[11,-8],[18,-29],[2,-8],[2,-29],[0,-12],[-5,4],[-2,0],[2,-15],[2,-7],[1,2],[-2,-9],[-1,-1],[-1,0],[-11,-11],[-7,-4],[-7,0],[-6,4],[3,-17],[6,-16],[7,-13],[7,-8],[12,-2],[9,7],[8,10],[8,5],[11,-4],[4,-12],[2,-18],[0,-24],[1,-9],[5,-17],[2,-11],[1,-12],[-1,-11],[1,-10],[2,-7],[-1,-19],[6,-15],[8,-4],[5,11],[3,0],[6,-7],[6,16],[6,21],[4,10],[1,1],[1,2],[2,2],[2,1],[2,-2],[0,-6],[-1,-5],[-2,0],[1,-4],[1,-4],[1,-4],[4,-2],[8,1],[2,-1],[6,-12],[6,-36],[4,-16],[4,-20],[-4,-21],[-10,-30],[9,0],[4,-1],[2,-3],[1,-8],[4,0],[4,4],[3,1],[9,-4],[4,-7],[7,-29],[-6,-5],[-6,-7],[-5,-9],[-3,-14],[6,-1],[14,-12],[5,2],[16,18],[3,-12],[4,-6],[5,-2],[7,0],[1,-4],[8,-18],[4,-5]],[[4678,3298],[6,-12],[19,-13]],[[4703,3273],[1,-2],[2,-10]],[[4708,3259],[2,2],[6,5]],[[4718,3266],[4,-4],[2,-7],[6,-17]],[[4730,3238],[-4,-8],[20,-25],[7,-14],[5,6]],[[4758,3197],[6,2],[7,-2],[6,-6]],[[4777,3191],[3,-5],[3,0],[3,4],[3,8],[3,-5],[5,5],[5,9],[6,4],[7,-1],[7,-5],[6,-10],[2,-15],[1,-18],[3,-8],[4,-6],[4,-11],[2,-16],[1,-16],[-3,-12],[-6,-4]],[[4926,2872],[8,-17]],[[0,4577],[6,6],[11,1],[10,-4],[10,-9],[9,-14],[7,-27],[2,-39],[-2,-43],[-5,-38],[-25,-113],[-1,-34],[1,-9],[4,-11],[1,-8],[-1,-9],[-4,-14],[-1,-7],[-2,-22],[-4,-13],[-15,-16],[-1,-1]],[[0,3482],[1,-9],[-1,-4]],[[8,2344],[3,-5],[3,-8]],[[14,2331],[1,-5],[2,-4],[5,-6]],[[41,2303],[4,-14],[-12,-20]],[[33,2269],[-29,7]],[[4,2276],[-4,-17]],[[0,2240],[1,-7]],[[1,2233],[12,-21],[3,-12]],[[0,2148],[1,-3],[8,-9]],[[9,2136],[8,-3],[18,0],[4,-4],[2,-10]],[[42,2099],[11,-22],[16,-13],[87,-36]],[[156,2028],[19,0],[36,16],[16,2],[12,-11],[6,-19],[4,-6],[8,-2],[25,6],[18,12],[18,-1],[19,-8],[11,-9],[3,3],[6,7],[3,4],[3,8],[4,14],[3,8],[8,9],[8,-2],[6,-11],[6,-13],[9,-36],[7,-20],[9,-9],[24,-12],[10,-2],[52,9],[16,-9],[14,-19],[14,-24],[25,-59],[4,-38],[-10,-24],[-12,-16],[-3,-16],[-3,0],[5,-23],[7,-20],[33,-69],[5,-8],[20,-16]],[[624,1624],[26,-4],[13,3],[15,18],[6,0],[13,-3],[5,-5],[1,-12],[-4,-48],[0,-12],[2,-11],[5,-10],[11,-11],[6,-11],[15,-37],[10,-17],[9,-10],[27,-8],[24,12],[46,44],[38,9],[10,14],[4,4],[6,1],[11,-1],[6,3],[3,9],[3,11],[4,10],[15,19],[20,17],[21,11],[18,1]],[[1013,1610],[7,-9],[8,-26],[7,-6]],[[1035,1569],[36,-7],[27,4]],[[1106,1562],[8,-11],[3,-16],[3,-18]],[[1140,1473],[21,-10],[22,0]],[[1218,1480],[7,4],[7,-3]],[[1289,1437],[12,-47],[3,-27],[3,-7]],[[1351,1288],[10,5],[6,9]],[[1418,1463],[6,8],[18,6]],[[1466,1513],[4,6],[11,-1]],[[1481,1518],[7,-3],[7,-6]],[[1495,1509],[30,-54],[14,-20],[15,-12]],[[1554,1423],[34,-6],[6,-8]],[[1613,1351],[-8,-12],[-9,-8]],[[1596,1331],[-8,-2],[-10,3],[-15,18],[-9,6]],[[1545,1356],[-9,-4],[-6,-10]],[[1530,1342],[-3,-16],[-1,-18]],[[1523,1299],[-6,-4],[-15,-1],[-4,-3]],[[1492,1264],[0,-12],[1,-8],[9,-14]],[[1504,1223],[1,-7],[-2,-16],[1,-8]],[[1504,1192],[8,-28],[11,-26],[14,-21],[17,-12]],[[1583,1081],[-2,-48],[3,-14]],[[1584,1019],[92,-105]],[[1676,914],[16,-11],[19,-5]],[[1711,898],[19,-14]],[[1734,854],[-8,-30],[-15,-14],[-9,-2],[-17,-10]],[[1676,796],[-9,-9],[-4,-22],[-11,-75]],[[1652,690],[0,-22],[6,-19]],[[1682,628],[91,14],[13,9]],[[1856,680],[1,0],[-3,0],[2,0]],[[1856,680],[68,-6],[47,-43]],[[1971,631],[18,-5],[37,14],[9,-3],[25,-24],[154,-65],[85,7],[8,3]],[[2307,558],[23,30],[16,9],[14,-3]],[[2360,594],[88,-55],[20,-5],[91,10]],[[2610,514],[55,-7],[18,-7]],[[2683,500],[16,-16]],[[2748,446],[9,4],[18,13]],[[2775,463],[9,3],[20,-2]],[[2804,464],[9,2],[8,7],[8,3],[10,7]],[[2839,483],[9,10],[7,10]],[[2863,512],[29,2]],[[2910,527],[10,28],[1,3]],[[2968,638],[3,14],[4,12],[52,63]],[[3027,727],[3,16],[8,19],[16,29]],[[3054,791],[14,14],[35,14]],[[3137,844],[130,32],[15,9],[8,1],[4,2],[9,9]],[[3383,947],[51,9],[11,12],[31,-33]],[[3530,912],[18,16],[11,14]],[[3559,942],[65,-17],[7,3],[9,8],[7,10],[4,10],[4,7],[22,22],[17,10],[36,-1],[18,6],[8,9],[16,20],[62,26],[14,15],[11,23],[24,93],[4,8],[18,24],[4,12],[0,15],[-3,21],[-4,18],[-3,7],[-8,3],[-10,6],[-10,9],[-6,10],[-1,7],[5,4],[2,9],[0,35],[3,10],[3,23],[0,9],[-2,7],[-22,41],[-8,7],[-11,3],[-8,5],[-7,14],[-6,18],[-4,18]],[[3809,1529],[3,12],[-2,9],[-6,4],[-8,2],[-7,7],[-5,17],[-1,17],[2,7],[6,11],[11,23],[8,27],[-1,19],[6,25],[2,30],[-2,29],[-6,19],[13,48],[2,16],[3,12],[12,31],[3,15],[-1,9],[-4,16],[-1,8],[0,45],[1,17],[28,100],[2,8],[3,10],[5,44],[2,14],[6,12],[8,8],[9,6],[8,2],[9,-3],[18,-12],[7,0],[3,8],[4,20],[4,7]],[[3953,2228],[11,2]],[[3983,2180],[12,-53],[9,-25]],[[4004,2102],[10,-10],[7,-4]],[[9917,4358],[14,12],[27,16],[16,13],[25,18]],[[8626,8727],[-1,24],[5,20],[9,9],[14,-12],[2,7],[1,12],[0,8],[-2,6],[-7,11],[-3,11],[-1,9],[0,9],[1,9],[3,6],[-5,14],[-6,6],[-15,6],[-8,7],[-6,9],[-51,93],[4,11],[8,4],[19,-1],[7,5],[-2,11],[-8,12],[-8,6],[-55,-2],[-18,9],[-8,8],[-7,14],[-3,13],[8,5],[8,-4],[9,-10],[9,-7],[10,2],[7,10],[4,16],[1,21],[0,23],[3,16],[6,8],[4,9],[-1,18],[-4,11],[-11,19],[-3,11],[0,16],[2,17],[7,35],[12,41],[3,13],[-3,10],[-5,6],[-6,4],[-4,7],[-3,17],[0,17],[2,15],[4,12],[3,5],[8,5],[4,4],[2,7],[4,20],[3,7],[19,12],[4,8],[-2,14],[-6,12],[-13,15],[0,6],[7,3],[13,-3],[4,7],[0,6],[-2,4],[-5,7],[-3,9],[3,4],[7,5],[10,16],[24,22],[10,15],[-17,21],[3,11],[6,7],[14,9],[0,-7],[6,22],[4,40],[5,19],[-3,8],[0,8],[2,8],[4,3],[0,8],[-4,11],[-3,5],[-17,18],[-1,3],[0,8],[1,19],[-2,13],[-3,12],[1,9],[17,7],[2,11],[-2,13],[-4,13],[-5,22],[-2,22],[0,7]],[[9999,6335],[-14,6],[-70,-9],[-25,7],[-5,3],[-9,14],[-4,3],[-10,-6],[-16,-27],[-8,-8],[-5,3],[-6,8],[-5,5],[-6,-5],[-4,-6],[-5,-3],[-10,-2],[-24,5],[-11,6],[-10,10],[-2,7],[-2,6],[-2,5],[-7,2],[-4,-2],[-8,-9],[-5,-2],[-62,15],[-7,-1],[-5,-4],[-3,-7],[-10,-14],[-4,-3],[-11,-3],[-24,-14],[-11,-3],[-11,6],[-15,28],[-12,10],[-2,9],[-1,11],[3,10],[4,3],[14,1],[6,3],[-6,24],[-7,13],[-8,9],[-9,15],[-3,10],[-2,22],[-4,8],[-6,4],[-21,4],[-33,30],[-14,4],[-26,-10],[-13,-1],[-10,11],[6,10],[1,11],[-3,11],[-11,70],[-4,8],[-7,9],[-8,6],[-16,7],[-1,10],[2,13],[0,15],[-11,8],[-14,-17],[-15,-24],[-13,-15],[-8,-2],[-10,0],[-10,4],[-6,8],[-3,13],[2,9],[4,9],[4,13],[-8,10],[-11,36],[-8,15],[-10,10],[-4,6],[-1,11],[1,24],[-3,10],[-12,1],[-3,10],[-1,5],[-8,25],[-5,10],[-8,13],[-9,7],[-8,-6],[-13,-30],[1,-15],[12,-31],[1,-6],[-1,-6],[-3,-8],[-19,-17],[-10,4],[-12,25],[-14,8],[-9,9],[-5,2],[-6,-1],[-9,-6],[-6,0],[-28,-18],[-9,-3],[-42,9],[-3,2],[-3,4],[-3,6],[-3,10],[0,8],[4,3],[6,8],[4,17],[10,54],[1,16],[-1,15],[-5,15],[-21,31],[-4,13],[0,26],[7,13],[9,10],[4,16],[3,18],[11,42],[4,11],[10,8],[5,6],[-2,10],[-3,4],[-16,6],[-8,9],[-4,9],[2,12],[7,17],[-30,36],[-10,5],[-11,2],[-10,6],[-8,11],[-7,15],[6,12],[16,5],[4,17],[-1,12],[-2,1],[-6,-6],[-5,0],[-4,-1],[-3,1],[-5,6],[-11,21],[-32,46],[-5,15],[-2,20],[1,17],[3,19],[4,16],[4,9],[8,2],[20,-4],[7,9],[-4,19],[-34,76],[5,15],[3,5],[-11,15],[2,11],[8,13],[7,22],[-6,7],[-10,-19],[-18,-14],[-19,-7],[-17,0],[-104,30],[-13,12],[-30,12],[-5,-6],[-3,-8],[-2,-9],[-2,-5],[-5,-1],[-9,6],[-24,7],[-9,6],[-6,10],[-1,7],[1,6],[2,4],[1,3],[-5,15],[-4,8],[-1,9],[6,19],[1,8],[0,8],[1,6],[4,2],[2,1],[3,2],[4,3],[2,4],[12,13],[28,18],[9,20],[-7,18],[-10,15],[-12,11],[-14,4],[-11,11],[0,25],[7,28],[9,17],[0,7],[-6,4],[-5,-3],[-10,-15],[-2,12],[3,9],[5,8],[3,8],[-3,12],[-6,3],[-7,0],[-6,5],[-2,3],[-8,6],[-6,3],[-1,5],[-1,7],[-2,7],[-7,22],[-5,7],[-8,5],[2,9],[0,8],[-2,17],[-1,4],[-6,13],[-2,6],[1,3],[2,2],[2,8],[10,32],[3,4],[4,1],[4,2],[1,7],[-2,8],[-3,5],[-7,7],[-7,10],[-5,8],[-9,22],[3,15],[4,7],[3,5],[5,7],[5,12],[3,11],[1,10],[0,12],[-11,37],[1,6],[4,4],[6,11],[5,13],[4,13],[-5,13],[1,15],[22,88],[14,32],[1,12],[-4,12],[-15,31],[-2,7],[-1,14],[3,16],[1,10],[-4,8]],[[9917,4358],[-10,-9],[-18,-26],[-16,-8],[-8,-10],[-2,-2],[-5,1],[-11,6],[-24,3],[-12,5],[-5,16],[-2,8],[-6,1],[-9,-6],[-7,2],[-4,3],[-3,5],[-5,5],[-19,7],[-89,-1],[-6,3],[-11,9],[-5,2],[-13,-4],[-7,-11],[-6,-16],[-8,-17],[-10,-10],[-10,-1],[-23,4],[-5,-2],[-10,-9],[-4,-3],[-8,2],[-4,7],[-2,9],[-4,10],[-10,8],[-8,-6],[-8,-10],[-11,-6],[-19,2],[-6,-2],[-11,-10],[-5,-1],[-4,11],[5,33],[-4,20],[-10,4],[-14,-16],[-3,-4],[-9,-12],[-11,-13],[-5,-4],[-15,-5],[-31,-30],[-62,-8],[-21,-13],[-27,-41],[-21,-11],[-4,-13],[-3,-43],[-6,-16],[-20,-23],[-4,-12],[-3,-18],[-8,-14],[-24,-26],[-8,-13],[-10,-11],[-5,-6],[-2,-3],[-1,-4],[-2,-12],[-3,-8],[-3,-6],[-4,-3],[-8,-5],[-4,0],[-3,2],[-3,4],[-7,5],[-7,0],[-28,-17],[-7,-2],[-7,4],[-6,8],[-6,5],[-6,3],[-6,-3],[-13,-10],[-10,-6],[-5,-2],[-5,0],[-16,10],[-5,0],[-31,-10],[-13,-12],[-5,-2],[-14,0],[-3,-1],[-9,-7],[-47,-20],[-4,-3],[-3,-5],[-6,-13],[-4,-7],[-5,-6],[-5,-3],[-5,-2],[-10,0],[-2,-1],[-6,-4],[-2,-8],[-5,-5],[-16,-10],[-5,1],[-4,3],[-5,5]],[[2255,5071],[4,-3],[9,-9],[5,-3],[14,3],[5,-3],[10,-22],[-7,-33],[-24,-60],[-13,-52],[-1,-12],[-1,-14],[-2,-11],[-4,-10],[-4,-8],[-13,-22],[-6,-12],[-3,-14],[-2,-16],[0,-22],[1,-6],[2,-4],[1,-7],[1,-10],[-1,-10],[-5,-11],[-3,-9],[0,-3],[0,-11],[-9,-12]],[[1007,4778],[-21,-2],[-6,2],[-5,7],[-4,8],[-4,6],[-7,-1],[-3,-4],[-1,-7],[-2,-6],[-4,-3],[-11,1],[-3,-1],[-19,-19],[-4,-8],[-3,-12],[-4,-35],[-2,-13],[-4,-9],[-14,-26],[-4,-12],[0,-8],[1,-9],[0,-19],[-1,-15],[-3,-8],[-8,-8]],[[2209,4665],[-7,3],[-16,23]],[[2178,4697],[-22,9],[-7,8]],[[2093,4687],[-10,0],[-3,15],[-22,32]],[[2051,4740],[-30,-2],[-10,2],[-17,9]],[[1958,4758],[-131,163],[-15,8],[-19,-1],[-19,-10],[-28,-38],[-57,-44],[-7,-3],[-8,0],[-6,4],[-5,6],[-6,2],[-9,-5],[-17,27],[-9,5],[-6,-13],[-9,8]],[[1548,4848],[-8,2],[-4,-4],[-5,-9],[-3,-9],[-3,-7],[-28,-8],[-9,2],[-8,11],[-6,-4],[-6,4],[-11,14],[-3,6],[-2,7],[-2,4],[-6,4],[-11,12],[-6,11],[-1,11],[2,11],[-1,8],[-4,8],[-12,10],[-4,9],[-1,9],[3,24],[1,8],[-3,12],[-5,10],[-5,7],[-5,5],[5,22],[1,84],[6,30],[-15,11]],[[1374,5166],[-14,-8],[-14,-23],[-16,-52],[-9,-23],[-11,-11],[-4,1],[-9,7],[-5,-1],[-2,-4],[-15,-33],[-12,-22],[-6,-8],[-9,-4],[-27,-3],[-6,-8],[-8,-12],[-8,-10],[-7,0],[-5,-3],[-33,-31],[-8,-2],[-8,2],[-17,13],[-7,0],[-16,-4],[-27,2],[-8,-2],[-7,-7],[-6,-12],[-5,-14],[-3,-13],[-1,-18],[3,-9],[3,-7],[1,-14],[-4,-31],[-11,-17],[-15,-6],[-14,-1]],[[871,4577],[-2,-2],[2,7],[0,-5]],[[871,4577],[0,-7],[2,-30],[0,-6],[-24,-7],[0,-7],[-10,-32],[-3,-5],[-3,-10],[-21,-33],[-43,-7],[-8,-5],[-2,-8],[-2,-9],[-6,-13],[-13,-8],[-4,-6],[2,-12],[-1,-6],[-1,-5],[-3,-2],[-3,-1],[0,-6],[-3,-18],[-76,-80],[-4,-8],[-2,-21],[-6,-8],[-15,-9],[-3,-3],[-5,-12],[-4,-5],[-13,-6],[-3,-4],[-4,-18],[7,-6],[10,-3],[9,-10],[3,-35],[0,-4],[-1,-11],[1,-4],[1,-3],[6,-4],[2,-4],[0,-19],[-1,-16],[-4,-13],[-10,-9],[-9,-4],[-9,0],[-7,5],[-8,13],[-3,-8],[-3,-14],[-2,-6],[-4,-4],[-8,-7],[-5,-6],[-3,-9],[-1,-8],[-2,-5],[-11,-4],[-1,-5],[-1,-6],[-3,-7],[-28,-24],[-4,-14],[-2,-19],[1,-8],[6,-3],[5,-2],[1,-4],[-1,-6],[-1,-8],[0,-37],[3,-18],[7,4],[8,8],[11,0],[9,-6],[3,-12],[-5,-6],[-20,-3],[-8,-14],[-41,-48],[-2,-8],[2,-8],[6,-3],[7,-2],[5,-3],[0,-7],[-19,-41],[-6,-6],[-8,0],[-7,-3],[-7,-8],[-3,-17],[0,-19],[7,-25],[2,-20],[2,-4],[4,-3],[4,-4],[2,-10],[1,-11],[3,-6],[4,-2],[5,-6],[5,-3],[2,-1],[1,-4],[-1,-14],[0,-4],[5,-2],[15,2],[4,-5],[2,-11],[1,-12],[1,-5],[5,-3],[-1,-8],[-4,-7],[-1,-3],[-15,-47],[-4,-25],[-2,-4],[-2,-4],[-1,-12],[1,-8],[2,-7],[3,-7],[3,-8],[6,-40],[2,-7],[8,-7],[0,-17],[-4,-34],[0,-23],[3,-21],[1,-23],[2,-10],[6,-8],[-2,-16],[2,-14],[4,-14],[2,-13],[-4,-14],[-8,-10],[-10,-5]],[[2517,4493],[-7,6],[-23,12],[-19,23],[-15,16],[-20,8],[-21,-7],[-17,-16],[-8,-12],[-10,-14],[-14,-7],[-15,-16],[-10,-6],[-9,-2],[-16,9],[-16,6],[-16,10],[-9,14],[-5,16],[-14,23],[-6,24],[-11,22],[-5,26],[-7,17],[-15,20]],[[27,4230],[5,-6],[5,-8],[3,-13],[4,-29],[1,-11],[-2,-9],[-43,-106]],[[0,3864],[1,-2],[-1,0]],[[506,3030],[-9,-1],[-6,-7],[-6,-16],[-8,-31],[-14,-28],[-7,-17],[-2,-24],[2,-12],[-2,-11],[-4,-10],[-5,-7],[18,-28],[3,-10],[-2,-16],[-5,-10],[-7,-6],[-7,1],[3,-13],[5,-8],[7,-5],[7,-1],[3,-5],[1,-13],[1,-32],[2,-12],[10,-23],[2,-13],[-3,-12],[-14,-13],[-3,-9],[3,-13],[7,-9],[8,-8],[5,-8],[4,-15],[0,-13],[-2,-13],[1,-19],[3,-10],[4,-6],[0,-7],[-7,-11],[-5,-3],[-14,-6],[-4,-5],[3,-22],[2,-20],[-1,-21],[-7,-25],[-9,-18],[-1,-7],[8,-2],[13,1],[4,-4],[2,-11],[-2,-5],[-4,-7],[-4,-11],[-1,-14],[1,-12],[5,-10],[40,-61],[10,-22],[-12,-48],[5,-15],[15,-24],[6,-15],[-4,-6],[-3,-10],[-2,-10],[-3,-8],[7,-19],[22,-28],[4,-24],[3,-25],[-1,-13],[-12,-12],[-2,-14],[-1,-16],[-2,-11]],[[4942,7858],[-14,22],[-10,19]],[[2809,8740],[20,6],[30,26],[18,9],[80,0],[9,2],[37,28],[12,4],[5,-1],[8,-5],[5,-1],[12,12],[29,9],[9,0],[17,-8],[12,-1],[14,9],[25,-21],[8,-1],[9,2],[9,5],[8,12],[7,7],[8,1],[15,-5],[72,7],[30,-7],[8,4],[14,17],[9,6],[9,-1],[18,-11],[9,-2],[7,3],[16,18],[8,6],[9,2],[28,-2],[4,-2],[5,-9],[3,-2],[19,7],[28,-2],[4,5],[5,10],[10,-5],[18,-15],[4,1],[7,4],[3,2],[16,0],[8,3],[2,-2],[1,-12],[2,-2],[16,6],[10,-11],[4,-3],[36,-1],[17,-6],[20,-17],[8,-3],[18,0],[7,-4],[17,-18],[7,-1],[19,3],[4,-1],[8,-5],[11,-3],[3,-4],[2,-5],[3,-3],[4,-3],[3,0],[7,3],[4,4],[10,10],[33,0],[4,-2],[3,-4],[4,0],[4,6],[7,-11],[11,4],[33,21],[9,15],[9,8],[10,-10],[6,5],[25,-5],[8,-6],[11,-24],[9,-4],[8,5],[13,18],[19,6],[19,13],[16,0],[5,3],[6,13],[4,3],[47,7],[2,3],[0,4],[3,1],[2,-1],[1,-4],[-1,-6],[-1,-3],[-1,-2],[-1,-2],[4,-12],[9,-4],[9,-2],[8,-6],[8,9],[10,8],[9,3],[8,-6],[5,14],[6,3],[17,-4],[3,-2],[3,-9],[3,-2],[1,1],[1,2],[1,2],[3,1],[16,0],[30,-13],[12,5],[22,-2],[7,-2],[3,-6],[2,-5],[1,-6],[2,-5],[5,-1],[6,0],[5,-2],[2,-6],[57,-67],[9,-26],[22,-27],[22,-11],[11,-10],[5,-16],[-1,-13],[-4,-26],[-1,-16],[4,-8],[6,-7],[2,-7],[-6,-8],[0,-6],[6,-11],[3,-16],[4,-14],[8,-7],[4,2],[5,10],[4,2],[3,-4],[1,-10],[-1,-9],[-4,-6],[3,-5],[4,-5],[5,-2],[4,2],[7,10],[5,2],[8,-5],[6,-10],[4,-11],[7,-9],[-8,-11],[-3,-6],[-1,-10],[1,-6],[2,0],[2,2],[1,-2],[3,-12],[0,-2],[9,-27],[7,-10],[9,-3],[6,-7],[2,-14],[3,-14],[15,-10],[8,-9],[4,-12],[-4,-9],[0,-7],[3,-9],[5,-8],[6,-7],[6,-3],[5,1],[12,8],[4,-2],[0,-7],[-3,-14],[-1,-7],[1,0],[0,-3],[1,-5],[2,-5],[4,-4],[6,-1],[2,-5],[-3,-17],[5,-5],[4,1],[3,4],[5,0],[4,-6],[6,-19],[5,-9],[9,-6],[10,0],[11,4],[8,8],[3,-6],[-8,-12],[-4,-2],[8,-10],[10,-9],[8,-10],[4,-15],[-1,-12],[2,-3],[6,-1],[2,-5],[-1,-11],[-3,-12],[-2,-7],[3,-4],[10,-3],[4,-6],[9,-30],[4,-11],[20,-22],[7,-5],[5,0],[5,-2],[2,-5],[1,-10],[2,-8],[4,-2],[9,0],[24,-13],[12,-12],[8,-16]],[[1230,0],[-7,16],[-4,13],[-5,37],[-4,11],[2,2],[0,1],[1,3],[-12,21],[-3,7],[-1,6],[0,8],[-1,7],[-4,6],[0,7],[1,9],[-1,13],[-6,25],[0,8],[6,8],[-2,9],[-6,16],[-1,11],[-1,21],[-2,9],[4,14],[-3,16],[-8,15],[-7,9],[-9,4],[-18,4],[-6,5],[1,13],[-3,14],[2,7],[-7,8],[-16,7],[-6,12],[-5,0],[-3,7],[-4,5],[-6,-4],[-4,5],[-4,0],[-4,-3],[-6,-2],[1,5],[1,4],[2,2],[2,2],[-2,2],[-2,2],[-1,2],[-4,0],[2,11],[0,9],[-2,8],[-2,7],[-3,0],[-3,-14],[-3,-4],[-10,4],[-6,5],[-2,10],[-4,41],[0,8],[-2,3],[-7,1],[-3,5],[-4,36],[3,6],[-3,14],[1,5],[2,8],[-4,0],[-4,1],[-4,3],[-3,4],[6,25],[3,8],[-5,8],[-1,14],[-1,17],[-2,15],[5,3],[0,8],[-2,11],[0,13],[2,9],[3,5],[7,6],[0,7],[-5,-1],[-3,3],[-1,7],[3,11],[-7,1],[-3,11],[-1,15],[2,14],[-4,6],[-4,-3],[-3,-4],[-4,1],[-3,6],[-6,21],[-3,7],[-28,15],[-7,12],[-1,9],[-2,38],[-2,13],[-2,6],[-3,4],[-5,4],[-3,1],[-3,-3],[-1,1],[-1,8],[-1,13],[0,11],[2,7],[5,2],[-9,15],[9,0],[-1,3],[-1,1],[0,1],[-2,2],[2,8],[1,4],[-1,3],[-2,5],[0,6],[9,7],[0,8],[-6,4],[-8,24],[-6,5],[0,7],[3,0],[0,6],[-3,0],[0,8],[7,-1],[4,5],[-2,8],[-6,7],[2,13],[-2,6],[-4,3],[-2,6],[-1,10],[0,6],[2,6],[2,12],[2,16],[3,15],[6,9],[12,0],[-1,8],[-3,5],[-3,4],[-5,4],[4,20],[3,-4],[1,0],[1,2],[3,2],[-2,2],[-1,2],[-2,2],[-3,1],[1,16],[1,4],[-2,0],[-4,-3],[-2,9],[-3,12],[-6,3],[0,7],[6,9],[3,10],[0,12],[-3,16],[-4,13],[-3,6],[-5,2],[-9,0],[1,19],[-9,24],[5,11],[-2,5],[-6,10],[-4,4],[1,5],[1,12],[1,4],[-4,1],[-3,6],[-2,8],[0,11]],[[7703,7702],[-9,-7],[-18,-7],[-7,-9],[-4,-16],[-9,-46],[-4,-9],[-4,-6],[-39,-74],[-6,-9],[2,-20],[-6,-15],[-9,-11],[-5,-11],[-2,-19],[-16,-53],[-7,-53],[-6,-18],[-1,-17],[3,-21],[9,-34],[15,-39],[2,-18],[4,-10],[23,-20],[21,-47],[7,-8],[1,-3],[2,-9],[1,-10],[1,-23],[1,-8],[16,-35],[2,-9],[1,-14],[-2,-6],[-3,-5],[-3,-6],[-1,-11],[0,-37],[-3,-37],[-6,-40],[-4,-40],[4,-39],[6,-17],[15,-21],[5,-27],[6,-12],[26,-43],[7,-15],[1,-11],[-5,-15],[-8,-34],[-6,-15],[-26,-16],[-50,46],[-21,-10],[1,-17],[-6,-16],[-10,-13],[-8,-8],[-5,-2],[-11,3],[-5,-1],[-5,-6],[-13,-29],[-6,-18],[-4,-17],[-4,-15],[-9,-11],[-5,-2],[-9,-2],[-4,-2],[-3,-6],[-7,-15],[-4,-6],[-7,6],[-11,5],[-10,-2],[-5,-13],[-1,-17],[-5,-39],[0,-15],[5,-12],[8,-13],[9,-11],[6,-4],[9,-2],[20,-12],[8,-7],[13,-19],[9,-6],[17,15],[9,-12],[16,-32],[5,-4],[16,-3],[5,-4],[9,-14],[14,-8],[10,-26],[9,-9],[9,5],[7,13],[7,9],[8,-10],[8,-12],[7,-3],[8,1],[8,-3],[15,-14],[8,-4],[21,-4],[9,-5],[7,-9],[8,-12],[6,-15],[2,-5],[5,-3],[5,-2],[4,-3],[1,-9],[-1,-12],[-3,-7],[-4,-4],[-5,-1],[-4,-2],[-5,-13],[-4,-5],[-37,25],[-19,5],[-3,-24],[-10,-4],[-4,-14],[1,-15],[10,-15],[-4,-16],[-7,-16],[-4,-7],[4,-15],[8,-6],[24,-1],[13,-6],[5,3],[7,11],[4,1],[10,-22],[5,-6],[19,7],[14,-17],[3,-2],[14,12],[16,8],[3,11],[1,25],[3,20],[5,-2],[6,-13],[4,-15],[1,-35],[2,-18],[7,-8],[18,0],[11,-8],[5,1],[4,-10],[4,-6],[19,-20],[3,-5],[1,-7],[0,-14],[1,-6],[9,-17],[12,-8],[11,3],[7,8],[5,9],[9,5],[9,-1],[8,-9],[5,-17],[-2,-5],[-7,-1],[-7,-8],[0,-6],[2,-3],[2,-7],[2,-4],[-6,-11],[-3,-2],[0,-7],[23,-6],[23,0],[16,-28],[2,-10],[1,-12],[1,-11],[5,-8],[13,11],[35,-14],[16,3],[3,6],[5,15],[4,6],[5,1],[5,-5],[4,-6],[4,-3],[8,2],[6,8],[9,23],[54,-5]],[[8244,5667],[3,5],[3,8],[3,14],[2,2],[2,-1],[3,1],[2,6],[0,7],[-1,3],[-2,3],[-1,3],[-1,35],[4,11],[9,5],[16,-7],[15,-21],[73,-135],[24,-32],[7,-12],[17,-41],[7,-9],[17,-7],[11,-2],[10,12],[12,-5],[18,-12],[9,-2],[28,2],[5,-2],[8,-10],[4,-2],[15,8],[4,-1],[6,-13],[2,-19],[4,-16],[8,-7],[4,-30],[2,-9],[5,-5],[6,-2],[5,-1],[17,7],[4,5],[7,18],[3,4],[9,4],[13,17],[8,6],[9,-5],[4,0],[2,8],[1,10],[4,18],[1,7],[4,8],[8,8],[10,5],[6,3],[5,-7],[11,-30],[3,-11],[0,-7],[0,-9],[1,-9],[2,-9],[3,-3],[12,-11],[25,-12],[20,-22],[3,-5],[2,-24],[1,-5],[1,-2],[2,-8],[2,-3],[2,-1],[4,7],[2,1],[24,-9],[23,2]],[[8953,5277],[0,-7],[1,-6],[1,-4],[1,-3]],[[8956,5257],[-2,-8],[-4,-2],[-4,0]],[[8967,5172],[5,-25],[3,-14]],[[8975,5133],[4,-8]],[[8979,5117],[72,0],[5,-3],[11,-14],[6,-3],[6,1],[12,6],[6,0],[5,-3],[7,-9],[13,-6],[19,-22],[9,-8],[19,3],[5,-3],[2,-11],[-2,-9],[-3,-8],[1,-9],[4,-4],[6,0],[11,1],[4,-2],[4,-5],[8,-14],[5,-9],[8,-7],[7,3],[3,23],[0,14],[2,7],[5,14],[5,4],[4,-8],[2,-12],[3,-8],[3,-7],[10,8],[9,-53],[9,1],[4,4],[9,5],[23,28],[11,0],[4,-12],[0,-38],[-1,-12],[-5,-22],[-1,-12],[-4,-5],[-3,-3],[-4,-4],[-5,-24],[5,-8],[10,-3],[10,-9],[4,-3],[6,-1],[6,-3],[3,-7],[6,-30],[6,-20],[7,-10],[9,-4],[13,0],[8,-8],[22,-54],[8,-15],[5,-15],[7,-37],[2,-8],[2,-3],[1,-5],[1,-11],[-1,-12],[-2,-6],[0,-6],[3,-10],[14,-11],[3,-3],[0,-12],[-3,-11],[-9,-18],[-4,-19],[3,-5],[19,4],[-8,-36],[-6,-17],[-5,-8],[-8,4],[-7,6],[-6,1],[-7,-11],[-2,18],[-5,0],[-7,-9],[-4,-9],[5,-18],[0,-16],[-5,-13],[-9,-7],[-5,-6],[-3,-9],[0,-12],[2,-6],[9,-9],[4,-6]],[[7402,9100],[-9,8],[-9,3],[-24,-1],[-13,3],[-10,6],[-10,3],[-8,9],[-5,16],[-1,16],[-1,39],[-2,16],[-3,16],[-4,11],[-7,4],[-14,-4],[-6,-2],[-5,0],[-5,4],[-4,9],[0,41],[-3,44],[-3,11],[-30,80],[-2,19],[6,27],[3,24],[1,5],[17,14],[4,8],[5,18],[2,7],[3,5],[7,7],[3,6],[15,16],[5,4],[3,10],[2,12],[3,8],[11,14],[4,7],[4,41],[0,10],[5,46],[2,12],[4,3],[10,1],[4,2],[5,4],[2,4],[6,15],[7,6],[27,5],[13,20],[16,32],[3,11],[1,11],[-4,22],[3,9],[6,10],[3,20],[2,22],[-1,20],[-4,13],[18,11],[5,6]],[[6584,9999],[7,-13],[8,-24],[-1,-24],[-15,-23],[-28,-25],[-5,-7],[1,-11],[1,-7],[0,-6],[-3,-10],[-4,-5],[-49,-18],[-5,-4],[-2,-10],[-1,-12],[0,-11],[-1,-11],[-2,-4],[-4,-3],[-4,-6],[-5,-14],[-6,-34],[-6,-17],[-11,-16],[1,-5],[1,-12],[0,-14],[-1,-10],[-1,-1],[-8,-20],[-1,-6],[-3,-13],[-2,-7],[-7,-23],[-1,-12],[3,-20],[2,-11],[9,-31],[2,-11],[0,-11],[-2,-12],[-6,-12],[9,-27],[2,-14],[1,-23],[-2,-22],[-5,-11],[-16,-11],[-8,-9],[-19,-27],[-7,-5],[-51,-19],[-5,-8],[-6,-17],[-6,-9],[-29,-17],[-7,-2],[-3,-3],[-7,-18],[-3,-11],[-1,-5],[-5,-4],[-28,-27],[-11,-8],[-12,-4],[-2,-8],[-1,-11],[-1,-13],[-4,-17],[-6,-12],[-16,-18]],[[6189,9073],[-6,-10],[-5,-15]],[[6178,9048],[-3,-17],[-1,-15]],[[6144,8920],[3,-57],[-3,-4],[-3,-4],[-6,-13],[7,-20],[-3,-26],[-9,-26],[-9,-23],[9,-15],[29,-26],[10,-25]],[[6165,8659],[-24,-12],[-10,-1]],[[6125,8641],[-16,-18],[-5,-4],[-19,2]],[[6069,8594],[-5,-15],[-4,-15]],[[6037,8486],[2,-7],[5,-23]],[[6074,8408],[-1,-11],[-8,-16],[-29,-30],[-11,-4],[-4,-3],[-6,-13],[-3,-4],[-5,-4],[-5,-2],[-5,-1],[-27,6],[-11,-1],[-6,-9],[-3,-21],[-7,-11],[-10,-1],[-9,10],[-3,-7],[-3,7],[-16,-14],[-5,-7],[-2,14],[-3,4],[-12,-8],[-3,-3],[-4,-7],[-1,2],[-2,4],[-2,1],[-5,6],[-3,-1],[-1,-8],[-1,-3],[-1,-3],[-4,-4],[-5,-3],[-10,0],[-5,-4],[1,-13],[-4,-8],[-12,-13],[3,-18],[-2,-17],[-5,-12],[-5,-7],[-8,-6],[-8,-2],[-5,4],[-2,7],[-1,7],[-4,4],[-16,-5],[-34,-19],[-14,-4],[-4,2],[-5,10],[-5,2],[-4,-3],[-5,-9],[-57,-28],[-9,-1],[-10,-5],[-15,-22],[-8,-7],[1,-5],[1,-11],[1,-4],[-7,0],[-19,7],[-7,-2],[-15,-10],[-7,-2],[-7,4],[-5,9],[-5,11],[-5,9],[-20,19],[-11,14],[-2,1],[-4,1],[-1,3],[-3,14],[-2,3],[-4,1],[-6,4],[-4,1],[-4,4],[-1,7],[0,7],[-4,9],[-8,26],[-5,9],[-8,4],[-16,-1],[-6,3],[-27,8],[-22,-12],[-16,-4],[-17,-10],[-17,-2],[-5,0],[-2,4],[-1,4],[-4,-4],[-4,-7],[-1,-4],[-8,-5],[-4,-12],[-3,-11],[-10,-9],[0,-8],[2,-9],[1,-7],[-4,-8],[-3,-1],[-3,2],[-2,1],[-4,-1],[-4,1],[-3,-2],[-2,-16],[-2,-11],[-2,-9],[-2,-3],[-7,-3],[-18,-24],[0,-10],[-2,-7],[-4,-3],[-6,-1],[0,-6],[4,-15],[-8,-9],[-10,-6],[-8,-7],[-13,-21],[-3,-13],[3,-18],[-8,-5],[-23,-29],[-6,-3],[-7,-1],[-16,-34],[-8,-9],[2,-8],[3,-4],[3,-2],[4,0],[-3,-10],[-3,-8],[-2,-8],[0,-14],[-7,5],[-5,-3],[0,-7],[6,-9],[-7,-13],[-7,-16],[0,-14],[11,-11],[0,-7],[-4,0],[-11,-6],[5,-10],[5,-15],[3,-15],[2,-12],[-3,-3],[-18,-28],[2,-4],[4,-15],[-6,1],[-5,-1],[-4,-5],[-3,-9],[5,-14],[-1,-10],[-10,-17],[-9,-23],[-4,-8],[-6,-3],[-6,-5],[-11,-23],[-6,-5],[2,-6],[5,-35],[-4,-3],[-3,-5],[-3,-5],[-2,-7],[5,-7],[10,-5],[4,-5],[1,-10],[-4,-12],[-4,-12],[-3,-11],[0,-7],[2,-6],[1,-8],[-2,-8],[-4,-5],[0,-6],[3,-3],[1,-3],[0,-4],[2,-4],[-7,-5],[-8,-2],[-16,0],[-2,-2],[-2,-5],[-4,-5],[-4,-2],[-4,0],[-4,-1],[-3,-3],[-2,-9],[-2,-11],[-5,-19],[-2,-20],[6,-11],[0,-7],[-6,-9],[-1,-14],[5,-45]],[[9999,8000],[-2,1],[-6,-4],[-4,-9],[-8,-21],[-7,-13],[-4,-1],[-13,14],[-22,13],[-7,7],[-33,62],[-17,6],[-32,-17],[-12,-3],[-11,-6],[-8,-14],[-7,-16],[-9,-12],[-5,-2],[-17,2],[-3,1],[-7,6],[-3,0],[-3,-3],[-5,-8],[-3,-2],[-5,-9],[-8,-19],[-5,-18],[8,-8],[0,-8],[-13,-9],[-11,-16],[-9,-23],[-5,-27],[11,-13],[3,-6],[1,-10],[-1,-6],[-2,-6],[-1,-5],[4,-24],[8,-7],[10,-2],[9,-12],[8,-12],[9,-10],[11,-6],[11,-2],[7,-7],[21,-47],[10,6],[11,-12],[5,-23],[-6,-26],[-5,-6],[-5,-3],[-3,-6],[-3,-27],[-3,-12],[-7,-20],[16,-7],[9,0],[4,10],[4,4],[9,-3],[6,-10],[-3,-18],[-6,-10],[-14,-15],[-6,-9],[-3,-8],[-3,-15],[-2,-7],[-7,-17],[-5,-29],[9,-20],[12,-15],[6,-15],[-2,-13],[-5,-6],[-4,-9],[-1,-19],[4,-21],[5,-2],[6,1],[6,-12],[-9,-15],[-3,-11],[0,-15],[10,-4],[2,-2],[0,-9],[-1,-8],[-1,-7],[-1,-7],[2,-23],[-1,-4],[-2,-4],[-4,-4],[-3,-5],[-1,-7],[2,-16],[5,-6],[6,-5],[5,-11],[-7,-2],[-1,-6],[2,-6],[6,-6],[6,-1],[20,8],[4,-4],[-3,-10],[-6,-9],[-11,-9],[-3,-10],[-1,-13],[3,-13],[-3,-7],[37,-74],[10,-8],[78,-23],[10,-8],[10,-11],[1,-1]],[[9999,6381],[-4,-2],[-4,-13],[1,-9],[5,-10],[2,-4]],[[4576,2003],[1,8],[0,7],[-3,6]],[[4580,2052],[-3,39],[-7,34]],[[4434,2220],[-5,2],[-4,-5],[-2,-5]],[[4420,2207],[-4,-4],[-4,-3]],[[4380,2193],[-7,-9],[-3,-7]],[[4346,2153],[-7,-5],[-18,-9]],[[4284,2104],[-4,-1],[-3,-4]],[[4271,2064],[-10,-5],[-8,8],[-7,12]],[[4240,2085],[-10,3],[-11,13]],[[4219,2101],[-7,4],[-11,-5]],[[4201,2100],[-1,-14],[1,-15]],[[4189,2061],[-1,-7],[1,-9],[2,-7],[3,-5],[13,-9]],[[4183,2010],[3,-8],[17,-19],[1,-6],[0,-7],[0,-5],[4,-3],[1,3],[6,9],[3,3],[8,0],[6,-5],[9,-12]],[[2,1647],[18,9]],[[75,1708],[5,3],[3,-6],[1,-9]],[[84,1696],[2,-4],[5,0],[7,5],[5,1]],[[103,1698],[19,-6],[4,1],[3,2]],[[133,1695],[8,-13],[5,-2],[4,0]],[[150,1680],[4,4]],[[154,1684],[-8,9],[-7,12],[7,-1],[13,-7],[7,1],[5,8],[-1,9],[-4,7],[-6,4],[7,10],[9,7],[9,1],[7,-5],[1,15],[6,9],[9,3],[12,-1],[46,-19],[11,0],[5,-4],[2,-13],[2,-10],[7,-4],[7,-3],[10,-8],[11,-3],[4,-3],[1,-10],[-3,-13],[-18,-61],[-4,-22],[2,-19],[2,-9],[2,-8],[2,-7],[4,-7],[7,-5],[22,-1],[21,-18],[12,-13],[7,-13],[10,-12],[30,1],[11,-7],[-8,-10],[-26,-19],[-4,-12],[9,-16],[14,10],[14,20],[9,17],[8,11],[26,22],[8,5],[4,0],[3,-1],[2,-2],[3,-3],[2,-5],[0,-13],[1,-4],[4,-4],[7,-2],[7,3],[5,26],[5,9],[5,3],[2,-10],[-1,-14],[-2,-5],[0,-5],[5,-11],[12,-14],[8,14],[8,51],[4,13],[17,40],[7,9],[6,2],[11,9],[6,2],[4,4],[3,21],[3,9]],[[4241,1960],[4,-4],[17,-16],[13,-19],[28,-22],[11,-3],[24,-30],[13,-11],[8,13],[-3,1],[-6,4],[-3,2],[0,7],[10,12],[7,4],[6,-6],[9,-19],[1,-8],[0,-18],[-5,-2],[-2,-5],[3,-9],[2,-4],[4,-3],[3,-3],[22,-4],[5,4],[-1,-3],[-1,-2],[-1,-2],[3,-6],[1,-4],[1,-2],[4,-2],[-2,-9],[-1,-4],[3,-3],[3,-5],[2,-7],[3,-19],[3,2],[4,7],[2,4],[4,-3],[3,-9],[4,-2],[2,3],[3,5],[3,5],[6,1],[-4,-10],[-2,-11],[1,-9],[6,-4],[2,3],[11,17],[7,3],[6,-2],[29,-26],[38,-56]],[[4241,1960],[4,2],[23,13],[10,2],[5,-4],[8,-14],[5,-3],[203,-6],[3,2],[6,8],[3,2],[2,2],[4,5],[3,1],[3,-2],[2,-4],[1,-5],[1,-3],[13,-7],[33,-8],[11,-12]],[[3559,942],[15,34],[9,9],[5,1],[8,-2],[5,1],[2,4],[3,4],[3,5],[22,6],[77,55],[4,5],[2,1],[13,39],[2,6],[4,5],[15,9],[31,7],[13,18],[8,31],[6,16],[8,7],[9,5],[8,13],[5,19],[0,24],[-2,9],[-3,6],[-3,4],[-5,1],[-5,5],[1,12],[3,10],[2,4],[1,3],[4,9],[1,5],[0,6],[-1,7],[-2,7],[1,10],[1,6],[3,6],[4,5],[-4,11],[-1,8],[-1,8],[0,10],[4,9],[1,6],[-3,2],[-1,2],[-8,9],[-2,6],[-2,13],[-1,5],[-14,34],[0,12],[5,15]],[[2396,5041],[0,44],[-1,14],[-2,6],[-2,4],[-1,5],[1,9],[3,6],[8,8],[4,5],[4,21],[-7,6],[-11,0],[-8,3],[-1,20],[8,23],[17,37],[1,7],[2,14],[2,6],[8,10],[27,8],[53,30],[19,2],[12,-1],[12,-4],[12,-9],[11,-14],[14,-26],[1,-3],[2,-1],[1,0],[1,-5],[0,-4],[1,-8],[1,-4],[8,-9],[11,0],[20,5],[31,-16],[14,-15],[13,-5],[13,-2],[9,5],[15,-12],[52,12],[15,-7],[8,-6],[2,-1],[6,0],[6,-2],[6,-6],[11,-17],[23,-49],[13,-12],[18,2],[15,12],[6,2],[6,-1],[5,-3],[10,-12],[5,-4],[14,-4],[5,-2],[4,-5],[8,-13],[5,-6],[15,-8],[15,-14],[41,-57],[10,-5],[20,3],[10,-4],[19,-17],[9,-6],[18,-1],[16,-10]],[[3138,4960],[8,-1],[7,3]],[[3167,4973],[7,3],[21,2],[7,2]],[[3256,4999],[33,25],[10,0]],[[3314,5009],[4,11],[5,-15]],[[3349,5008],[7,-6],[10,-19],[5,5],[18,-29]],[[3389,4959],[3,-7],[1,-17],[5,3]],[[3398,4938],[4,11],[4,6],[6,-7]],[[3432,4917],[0,-8],[-5,-8]],[[3419,4894],[11,-11],[8,-4],[6,7]],[[3444,4886],[3,-3],[4,-5]],[[3451,4878],[2,-5],[0,-5],[-4,-9],[-1,-6]],[[3451,4829],[7,-19],[11,-14],[11,-11]],[[3471,4772],[1,-4],[0,-4]],[[3472,4764],[1,-3],[1,-3]],[[3485,4765],[6,-12],[4,-14]],[[3495,4739],[5,5],[5,-9],[1,-9]],[[3506,4726],[-3,-8],[-5,-8]],[[3507,4699],[2,-2],[0,-6],[-7,-16]],[[3524,4638],[0,-30],[0,-6],[5,-6]],[[3534,4594],[4,-4],[4,-8]],[[3543,4532],[2,-8],[1,-5],[8,-9]],[[3554,4510],[2,-3],[2,-10]],[[3558,4497],[-1,-10],[2,-8],[0,-6],[-9,-3]],[[3554,4448],[9,-26],[28,-58],[12,-19],[14,-8]],[[3617,4337],[3,-20],[1,-7],[1,-3]],[[3622,4298],[1,-4],[1,-2],[5,-1]],[[3630,4290],[3,-26],[3,-15]],[[3636,4249],[4,-6],[4,-1],[2,-2],[2,-3]],[[3662,4235],[6,-3]],[[3676,4186],[-2,-11],[8,-11]],[[3682,4164],[-3,-30],[6,-7]],[[3685,4127],[5,-8],[11,-38],[5,-15]],[[3721,4059],[5,-4],[3,-5]],[[3729,4050],[3,-3],[11,-4],[5,-8]],[[3748,4035],[8,-24],[0,-12]],[[3756,3999],[4,-13],[11,-22]],[[3771,3964],[5,-27],[1,0]],[[3777,3937],[1,-8],[2,-6]],[[3779,3919],[-5,-2],[5,-12]],[[3795,3875],[2,-2],[4,-3]],[[3830,3830],[6,-7],[0,-15]],[[3846,3805],[10,-10],[10,-7]],[[3874,3795],[4,-16],[14,-28]],[[3906,3698],[1,-17],[-3,-15]],[[3911,3635],[4,-10],[0,-7],[-1,-20]],[[3939,3523],[-1,-18],[24,-77],[5,-27]],[[3967,3401],[1,-14]],[[3968,3373],[-3,-10],[-4,-13]],[[3959,3336],[3,-16],[-4,-5],[-1,-7]],[[3957,3263],[5,-17],[2,-3]],[[3960,3164],[-4,-2],[-3,-5],[-2,-30]],[[3951,3127],[-2,-4],[-5,-3]],[[3944,3120],[-1,-7],[1,-20],[1,-13]],[[3944,3077],[-6,-21],[-5,-8]],[[3920,3039],[-2,-7],[2,-17]],[[3919,3010],[-5,-2],[-5,-4]],[[3909,3004],[1,-8],[8,-21]],[[3923,2962],[1,-8],[-5,-23],[-2,-25]],[[3917,2906],[-12,-53],[-3,-3]],[[3901,2845],[0,-5],[2,-3],[1,-6]],[[3904,2831],[-6,-34],[0,-10]],[[3899,2773],[10,-50],[1,-11]],[[3910,2712],[1,-6],[3,-7]],[[3913,2676],[-1,-7],[2,-8]],[[3914,2661],[3,-12],[1,-4],[-1,-5]],[[3917,2640],[-6,-7],[-2,-5],[2,-29]],[[3911,2599],[6,-30],[8,-23],[4,-10]],[[3929,2536],[3,-99],[-1,-16],[3,-13]],[[3928,2403],[-14,1],[-6,-4],[-7,-8]],[[3930,2316],[1,-6],[1,-2],[1,-3]],[[3936,2262],[17,-34]],[[9901,42],[-14,14],[-9,12],[-4,10],[0,22],[-5,81],[0,27],[8,17],[14,18],[8,15],[8,14],[6,19],[1,11],[0,16],[2,15],[11,45],[2,14],[-2,18],[-6,19],[-8,13],[-9,6],[-41,10],[-16,11],[-5,6],[-4,7],[-3,9],[0,13],[-1,18],[-1,16],[-5,13],[4,12],[6,11],[3,5],[0,9],[-2,6],[-2,5],[-2,7],[0,9],[0,22],[-2,35],[-4,34],[-3,34],[4,36],[60,245],[1,6],[-1,16],[-8,45],[11,12],[3,16],[-3,18],[-6,18],[-9,12],[-20,9],[-8,10],[-4,8],[0,6],[-1,8],[-1,11],[-8,34],[-1,10],[2,13],[6,19],[1,10],[-1,87],[-4,22],[-17,17],[-25,53],[-5,15],[-4,17],[-2,20],[-1,20],[1,9],[3,7],[0,7],[-10,34],[-3,7],[-19,19],[-19,0],[-41,-12],[-75,2],[-10,5],[-24,35],[-21,11],[-6,14],[-5,18],[-6,17],[-39,49],[-6,21],[-14,69],[-4,12],[-3,5],[-4,1],[-5,5],[-3,1],[-3,3],[0,8],[1,9],[0,6],[-17,39],[-5,24],[7,35],[0,16],[-2,35],[0,5],[2,3],[1,4],[-2,6],[-6,9],[-1,1],[-2,5],[-2,6],[-1,7],[-1,9],[1,18],[3,13],[0,13],[-7,17],[-6,8],[-23,20],[-9,3],[-29,-11],[-7,1],[-17,7],[-6,-3],[-4,-4],[-5,0],[-6,7],[-9,-7],[-20,8],[-8,-5],[-3,-5],[-3,-3],[-4,-2],[-14,1],[-2,-2],[-4,-6],[-2,-6],[0,-8],[-1,-8],[-3,-5],[-5,0],[-4,4],[-3,6],[-4,3],[-8,-4],[-8,-9],[-7,-5],[-15,19],[-9,-2],[-9,-9],[-7,-10],[-5,-12],[-4,-6],[-3,-2],[-3,5],[-1,18],[-4,4],[-8,-4],[-6,-10],[-5,-12],[-6,-8],[-9,-3],[-35,3],[-13,-11],[-30,-2],[-13,-8],[-5,-9],[-5,-11],[-6,-10],[-9,-4],[-9,-2],[-6,-5],[-5,-9],[-6,-14],[-4,-25],[-1,-2],[-1,-3],[-14,6],[-5,-5],[-9,-18],[-7,-4],[-17,-3],[-30,-23],[-8,-1],[-9,7],[-18,4],[-10,-1],[-6,-10],[-14,-1],[-3,-3],[-7,-23],[-21,-30],[-14,-27],[-13,-15],[-18,-32],[-8,-8],[-7,-3],[-3,-4],[-4,-9],[-2,-10],[-2,-8],[-1,-7],[-4,-2],[-39,-11],[-14,-14],[-10,3],[-9,5],[-8,2],[-5,-5],[-10,-12],[-7,-3],[-15,2],[-6,5],[-5,10],[-3,3],[-7,-1],[-4,1],[-2,5],[-2,12],[-2,4],[-7,4],[-9,2],[-5,5],[1,16],[-7,7],[-6,-5],[-7,-10],[-5,-6],[-2,-4],[0,-9],[-2,-10],[-5,-4],[-5,-1],[-7,-6],[-4,0],[-16,14],[-20,49],[-17,12],[-19,-7],[-11,0],[-9,19],[-35,22],[-4,1],[-4,-1],[-8,-12],[-5,-4],[-2,6],[-4,16],[-9,8],[-19,7],[-11,10],[-28,44],[-7,-11],[-4,2],[-4,8],[-6,7],[-8,-1],[-11,-21],[-10,-7],[-6,-9],[-2,-3],[-6,1],[-3,5],[-1,5],[-2,3],[-7,4],[-30,-7],[-10,-14],[-8,-3],[-8,2],[-15,10],[-7,2],[-25,-12],[-9,-2],[-7,-5],[-6,-9],[-6,-6],[-7,7],[1,22],[-12,10],[-31,1],[-47,-16],[-16,10],[-18,27],[-9,6],[-27,10],[-6,7],[-11,19],[-2,8],[-1,14],[1,40],[3,33]],[[3856,2071],[24,-33],[15,-10],[14,10],[3,-5],[3,-4],[2,-5],[1,-7],[-5,-13],[-7,-21],[-2,-19],[7,-8],[8,-4],[9,-10],[7,-14],[4,-13],[-2,-13],[-5,-13],[-6,-10],[-6,-4],[-1,-5],[2,-32],[1,-3],[1,-2],[1,-3],[0,-6],[-1,-6],[-4,-11],[-1,-7],[5,-36],[0,-22],[-6,-10],[-2,-5],[1,-44],[1,-4],[-1,-4],[-4,-11],[-11,-25],[-4,-15],[-2,-23],[-3,-21],[-6,-19],[-9,-14],[-9,-5],[-8,3],[-13,14],[-8,3],[-8,0],[-8,-3],[-6,-6],[-5,-11]],[[3729,6212],[-4,1],[-4,-2],[-9,-5],[-5,-12],[-3,-20],[-3,-15],[-4,-12],[-10,-6],[-51,14]],[[3219,6357],[38,-37],[31,-24],[10,-15],[10,-7],[9,-11],[4,-16],[2,-5],[5,-4],[15,-4],[14,-3],[96,-83],[55,-26],[62,-7],[3,3],[7,24],[15,21],[10,7],[11,3],[11,-4],[9,-14]],[[3729,6212],[4,-2],[4,11],[5,17],[4,16],[2,14],[2,4],[5,-2],[9,-6],[4,2],[12,19],[8,8],[9,1],[37,-3],[7,-2],[2,-7],[1,-9],[4,-9],[7,-3],[20,-1],[7,-6],[6,-9],[8,-2],[19,1],[9,-5],[16,-13],[66,-15],[4,-5],[2,-13],[4,-20],[6,-17],[6,-7],[2,-4],[2,-19],[2,-4],[4,-2],[33,-46],[0,-6],[-7,-13],[-4,-17],[-1,-20],[1,-46],[-1,-7],[-8,-40],[-32,-41],[-6,-5],[-24,-35],[3,-13],[5,-30],[3,-12],[5,-4],[22,-10],[39,-1],[11,-12],[7,10],[7,-7],[7,-14],[6,-9],[7,2],[19,15],[10,3],[5,-8],[-4,-38],[5,-8],[2,-11],[-7,-24],[-11,-33],[17,-21],[7,-6],[10,0],[1,-1],[3,-3],[2,-3],[4,0],[8,11],[7,17],[8,10],[10,-11],[4,-12],[6,-21],[4,-7],[6,-3],[46,-12],[14,2],[-1,13],[0,7],[6,0],[9,-2],[5,2],[5,6],[4,8],[3,5],[6,1],[12,-20],[10,-22],[5,-6],[0,-7],[-9,-2],[-7,-10],[-2,-10],[4,-5],[2,-3],[0,-7],[-1,-6],[-4,-4],[-4,0],[-12,-6],[4,-14],[5,-11],[7,-7],[13,-4],[5,-4],[3,-6],[1,-6],[2,-10],[4,2],[5,8],[1,4],[8,-3],[8,-7],[8,-10],[3,-11],[21,-32],[5,-12],[1,-9],[-1,-13],[0,-12],[-1,-4],[-1,-5],[-1,-5],[0,-6],[5,-7],[1,-3],[3,-13],[21,-31],[2,-8],[3,-13],[3,-6],[4,-4],[40,-12],[22,4],[52,-11],[6,-3],[5,-6],[24,-39],[3,-11],[-2,-3],[-2,-3],[-2,-4],[-2,-4],[4,-26],[3,-10],[6,-5],[7,-1],[9,-4],[6,-8],[0,-14],[18,-14],[5,-5],[5,-9],[3,-7],[4,-6],[6,-6],[7,-3],[6,-1],[6,-2],[4,-7],[4,-13],[7,-29],[12,-39]],[[4756,4894],[103,-9]],[[4936,4914],[25,-55],[10,-5],[4,-1],[2,4],[-2,9],[-3,9],[-1,6],[8,9],[8,-11],[6,-17],[6,-9],[5,-3],[18,-16],[5,-8],[1,-7],[1,-20],[1,-7],[19,-7],[2,-3],[9,-14],[4,-3],[4,1],[3,3],[10,16],[2,4],[1,2],[5,1],[38,-13],[14,-14],[12,-18],[8,-18],[23,-83],[5,-10],[11,-13],[2,-10],[0,-7],[-2,-6],[0,-4],[4,-19],[4,-6],[5,-2],[8,-8],[5,-12],[3,-14],[2,-65],[3,-6],[21,-12],[4,-4],[6,-9],[-2,-7],[-6,-13],[-8,-7],[-1,-2],[-1,-10],[-1,-5],[-15,-31],[-4,-12],[9,-18],[38,-17],[17,-21],[7,-6],[17,-8],[6,-5],[4,-6],[11,-25],[11,-27],[31,-60],[10,-12],[15,-6],[-3,0],[7,-3],[6,-7],[9,-21],[6,-8],[22,-15],[17,-19],[5,-2],[5,-7],[2,-15],[-1,-16],[-7,-9]],[[2911,3449],[5,-9],[2,-19],[0,-34],[-2,-19],[-8,-32],[-1,-13],[-2,-4],[-3,-5],[-3,-7],[-1,-11],[1,-20],[2,-17],[0,-23],[0,-28],[0,-56],[3,-24],[6,-18],[28,-28],[4,-10],[1,-16],[3,-19],[8,-29],[6,-18],[1,-8],[-1,-7],[2,-20],[-5,-18],[-6,-19],[-6,-46],[-10,-43],[1,-19],[-7,-16],[4,-21],[12,-30],[1,-10],[-1,-13],[-3,-24],[-10,-31],[-2,-7],[-1,-3],[-6,-6],[-2,-4],[0,-27],[-1,-12],[-3,-11],[-6,-18],[-6,-38],[-3,-6],[-7,-2],[-6,-4],[-6,-1],[-6,7],[-3,-5],[-4,-2],[-7,0],[-1,33],[-14,23],[-30,32],[-4,14],[-1,15],[-1,64],[1,22],[3,14],[0,7],[-2,10],[6,33],[-2,17],[-5,7],[-9,4],[-8,-1],[-4,-6],[-8,-22],[-18,-3],[-20,2],[-16,-8],[6,-17],[-3,-9],[-6,-2],[-3,5],[-2,16],[-5,0],[-10,-12],[-21,-16],[-7,-12],[-8,-20],[2,-4],[1,-1],[-3,-9],[-5,5],[-3,-6],[0,-12],[3,-14],[-6,-1],[-3,-3],[0,-7],[2,-9],[-7,-8],[-6,-9],[-7,-7],[-10,-3],[-31,0],[-2,-2],[-4,-9],[-3,-3],[-2,1],[-4,5],[-3,1],[-19,0],[-10,-3],[-45,-25],[-131,-31],[-25,-13],[-15,-3],[-11,-7],[-15,-17],[-11,-20],[0,-17],[-24,-54],[-9,-27],[-2,-3],[-5,-3],[-1,-4],[0,-7],[2,-7],[1,-7],[-2,-7],[-4,-9],[-2,-9],[0,-9],[8,-14],[2,-7],[1,-12],[3,-17],[7,-15],[5,-16],[-4,-17],[0,-6],[6,-14],[-1,-18],[-3,-21],[3,-19],[0,-7],[-2,-10],[-2,-9],[-2,-4],[-6,-1],[-2,-4],[0,-4],[2,-24],[8,-32],[2,-13],[2,-6],[6,-9],[1,-6],[6,-30],[2,-6],[2,-5],[3,-6],[2,-10],[0,-7],[-1,-6],[-2,-5],[0,-3],[1,-5],[4,-9],[1,-3],[0,-4],[3,-10],[1,-2],[2,-3],[-1,-5],[-2,-5],[0,-5],[0,-11],[1,-7],[0,-5],[-1,-7],[-3,-5],[-6,-5],[-3,-4],[-2,-10],[0,-11],[-1,-8],[-4,-4],[-4,-1],[-3,-4],[-3,-5],[-1,-8],[-1,-15],[-2,-5],[-2,-2],[-4,-8],[-3,-18],[-4,-35],[-4,-15],[-6,-14],[7,-21],[0,-10],[-3,-12],[0,-11],[3,-10],[5,-7],[5,-3],[0,-5],[0,-2],[-3,-7],[3,-19],[1,-21],[-1,-48],[2,-21],[6,-43],[-2,-17],[6,-12],[4,-19],[4,-23],[1,-24],[0,-14],[-1,-13],[-2,-13],[-3,-11],[-3,-6],[-3,-4],[-3,-8],[0,-16],[3,-12],[7,-14],[4,-25],[10,-16],[3,-11],[-2,-20],[0,-11],[2,-13],[2,-7],[5,-8],[1,-6],[1,-8],[0,-5],[2,-3],[4,-4],[-4,-7],[4,-6],[-4,-19],[7,-22],[9,-22],[11,-38],[11,-13],[7,-17],[-6,-32],[7,-7],[9,-16],[7,-19],[4,-17],[3,-7],[17,-50],[-3,-6],[3,-5],[1,-7],[-1,-7],[-3,-9],[18,-52],[2,-19],[2,-20],[3,-14],[10,-30],[4,-21],[3,-10],[4,-4],[3,-1],[4,-2],[11,-12],[2,-3],[1,-4],[3,-13],[4,-13],[1,-4],[3,-13],[5,-19]],[[210,7214],[-10,-5],[-7,3],[-13,16],[-9,9],[-2,4],[-3,6],[-3,14],[-3,8],[-7,10],[-13,14],[-7,9],[-23,41],[-7,11],[-3,8],[-5,21],[-4,11],[-15,20],[-4,10],[-2,14],[4,27],[1,14],[-4,20],[-4,11],[-13,16],[6,17],[7,5],[15,-2],[37,7],[4,-1],[3,-1],[2,0],[5,2],[4,4],[2,5],[3,4],[5,1],[4,3],[3,7],[2,7],[2,3],[5,1],[10,8],[5,4],[8,11],[3,10],[1,12],[-1,18],[4,45],[0,21],[-4,20],[-13,13],[-54,7],[-16,8],[-8,1],[-5,-3],[-4,3],[-6,-1],[-7,-3],[-4,-5],[-8,15],[-28,2],[-8,10],[-3,0],[-11,-3],[-14,13]],[[1789,8991],[-8,0],[-13,11],[-8,3],[-6,-3],[-7,-7],[-7,-3],[-7,6],[2,5],[2,10],[2,6],[-12,20],[-8,7],[-9,-7],[-4,22],[-10,14],[-13,6],[-33,-7],[-67,20],[-23,-2],[-10,3],[-5,12],[-7,-4],[-9,9],[-7,15],[-3,10],[2,33],[-1,5],[-6,1],[-4,5],[-2,8],[-1,13],[0,8],[2,8],[2,8],[-1,10],[-3,6],[-10,11],[-9,18],[-61,91],[-45,34],[-6,2],[-6,7],[-5,2],[-8,-10],[-3,4],[-3,7],[-3,4],[-5,-2],[-11,-10],[-11,-4],[-8,-9],[-5,-2],[-88,21],[-9,-8],[-11,-16],[-11,-12],[-12,1],[-8,-21],[-3,-5],[-5,-2],[-5,1],[-4,-2],[-1,-8],[-2,-5],[-9,-16],[-2,-3],[-2,1],[-6,7],[-1,2],[-4,4],[-1,-5],[0,-7],[-3,-2],[-4,5],[-6,13],[-4,3],[-5,-3],[-3,-7],[-3,-8],[-3,-3],[-17,-3],[-19,-10],[-15,-15],[-7,-10],[-6,-12],[-7,-10],[-8,-4],[-56,-3],[-9,-3],[-24,-18],[-29,-2],[-11,-11],[-5,-31],[-8,-11],[-19,10],[-30,25],[-7,-2],[-14,-10],[-7,-2],[-19,2],[-7,-2],[-9,-6],[-4,-8],[-3,-9],[-5,-11],[-5,-6],[-21,-14]],[[2553,6617],[-16,7],[-54,7],[-9,5],[-18,18],[-7,4],[-8,2],[-19,11],[-7,6],[-1,6],[-5,17],[-2,6],[-4,2],[-9,3],[-7,8],[-4,3],[-4,5],[-3,22],[-4,4],[-5,2],[-5,4],[-8,21],[-3,6],[-8,3],[-5,5],[-4,18],[-5,-1],[-5,-3],[-4,2],[-6,11],[-19,20],[3,12],[5,6],[13,9],[-4,10],[1,13],[3,12],[5,6],[-9,17],[-15,54],[-8,24],[-22,34],[-9,3],[-5,8],[-8,22],[2,15],[2,41],[2,6],[1,1],[1,0],[0,2],[-2,3],[7,28],[3,13],[2,14],[-5,26],[-1,15],[4,6],[6,4],[3,10],[3,13],[3,10],[1,12],[-6,8],[-14,11]],[[2252,7308],[-8,3],[-5,4]],[[2235,7323],[-3,9],[-3,8]],[[2192,7356],[-11,39],[-3,21],[2,22]],[[2157,7485],[0,7],[-12,2]],[[2145,7494],[-11,7],[-6,12]],[[2128,7513],[-1,19],[6,17]],[[2133,7549],[9,11],[12,2]],[[2166,7553],[8,6],[15,0]],[[2207,7580],[-6,13],[-35,28]],[[2128,7689],[-1,9],[-1,8]],[[2126,7706],[-5,11],[-5,5],[-5,3]],[[2108,7729],[1,8],[0,6],[-5,41],[-3,14],[-12,25],[-6,20],[2,9],[7,5]],[[2035,7936],[-24,76],[-7,7],[-8,0]],[[1986,8045],[2,13],[6,15],[8,11]],[[2011,8119],[5,4],[-4,12],[-17,37],[-1,6]],[[1994,8178],[7,20],[-6,6],[-8,4]],[[1987,8208],[-7,7],[-3,13],[-2,20],[-6,5]],[[1969,8253],[-7,4],[-5,15]],[[1957,8272],[3,0],[3,0]],[[1953,8295],[-4,14],[-1,14]],[[1948,8323],[2,27],[0,10],[-5,7]],[[1945,8367],[0,8],[4,0]],[[1949,8375],[2,3],[6,10],[-2,4]],[[1955,8392],[-3,7],[-1,6]],[[1951,8405],[1,3],[4,2],[-1,7],[-3,7],[-1,5],[2,23],[2,10]],[[1973,8489],[8,12],[5,23]],[[1978,8539],[-7,18],[5,8],[2,22]],[[1983,8595],[0,2],[-1,0],[-2,1],[3,11]],[[1983,8609],[0,32],[3,18]],[[1986,8659],[8,28],[6,12]],[[2002,8723],[-6,38],[-4,12]],[[1985,8801],[-4,3],[-3,6]],[[1976,8818],[-3,8],[-8,7],[-20,-1],[-9,3],[-12,34],[2,4]],[[1926,8873],[1,12],[-1,7]],[[1926,8892],[-8,-10],[-2,5]],[[1916,8887],[-5,5],[-1,4]],[[1896,8893],[-6,3],[-6,-3],[-1,2],[3,9],[0,6]],[[1845,8933],[-7,-3],[-31,12],[-9,8]],[[1800,8981],[-5,10],[-6,7]],[[2038,8202],[2,13],[0,11],[-3,16],[3,7],[8,7],[12,5],[12,13],[8,25],[8,29],[11,22],[27,31],[10,12],[8,17],[7,5],[9,2],[16,-1],[13,5],[13,11],[32,43],[0,13],[0,16],[4,33],[-5,29],[0,12],[7,12],[12,14],[16,12],[26,14],[8,9],[7,4],[8,-4],[10,2],[9,18],[7,25],[5,20],[-1,18],[-4,20],[-7,17],[-11,21],[1,8],[-1,10],[-17,24],[-3,11],[3,10],[7,10],[4,10],[-4,13],[-9,7],[-9,-5],[-11,-9],[-30,-10],[-15,-11],[-9,0],[-9,3],[-4,5],[-4,2],[-5,-6],[-10,-3],[-31,14],[-20,2],[-7,4],[-7,-6],[-8,-7],[-11,-24],[-5,-3],[-2,-3],[-3,-7],[-5,-7],[-5,-4],[-107,-13]],[[2864,3401],[-13,1],[-12,3],[-16,13],[-26,17],[-10,11],[-9,12],[-7,16],[-4,21],[0,20],[6,38],[2,20],[-2,44],[-9,31],[-14,21],[-17,13],[-82,48],[-10,1],[-27,-6],[-11,2],[-28,20],[-18,0],[-18,-13],[-33,-44],[-9,-15],[-7,-17],[-18,-59],[-23,-49],[-41,-150],[-29,-73],[-38,-54],[-43,-32],[-41,-11],[-9,4],[-17,16],[-17,5],[-3,-1],[-4,-5],[-3,-7],[-2,-15],[-2,-4],[-7,-2],[0,6],[1,9],[-2,8],[-7,4],[-4,-3],[-3,-6],[-5,-6],[-5,-14],[-1,-3],[-2,1],[-4,9],[-2,1],[-4,-5],[-9,-16],[-4,-7],[-108,-68],[-4,-8],[3,-8],[4,-9],[3,-9],[-2,-20],[-12,-33],[-3,-20],[1,-6],[2,-4],[4,-4],[-3,-22],[-10,-62],[-1,-8],[-1,-8],[-3,-10],[-4,-7],[-8,-4],[-5,-5],[-7,-15],[-12,-41],[-8,-17],[-6,-7],[-14,-7],[-6,-5],[-4,-1],[-6,5],[-4,-2],[-7,-8],[-16,-11],[-8,-7],[-13,-26],[-6,-7],[0,1],[-10,5],[-14,-6],[-27,-21],[-5,-7],[-4,-5],[-7,-17],[-5,-7],[-21,-9],[-20,-20],[-9,-7],[-12,2],[-9,8],[-17,22],[-8,9],[-49,34],[-11,2],[-23,-6],[-12,0],[-49,14],[-45,-4],[-10,3],[-12,8],[-11,12],[-9,14],[-13,29],[-9,5],[-37,-5],[-18,9],[-10,0],[-18,-9],[-28,0],[-7,3],[-3,4],[-6,12],[-14,15],[-13,35],[-9,15],[-13,9],[-86,-3],[-5,2],[-9,8],[-5,1],[-6,-1],[-16,-13],[-5,0],[-5,1],[-68,42],[-36,2],[-11,3],[-9,11],[-16,29],[-9,3],[-65,-32],[-23,-2],[-28,9],[-9,0],[-6,-2],[-6,-3],[-2,-3],[-3,-8],[-2,-3],[-2,-4],[-4,-16],[-2,-5],[-5,-7],[-10,-23],[-11,-13],[-13,-3],[-12,5],[-12,11],[-5,8],[-10,23],[-4,8],[-9,5],[-38,4],[-17,-6],[-9,2],[-50,39],[-36,33],[-38,21],[-31,-1],[-14,4],[-12,21]],[[154,1684],[1,-10],[3,-3],[2,-6]],[[160,1665],[1,-8],[0,-10],[-1,-3]],[[141,1519],[-5,-18],[-4,-11]],[[132,1490],[-9,-12],[-4,-8]],[[116,1461],[-7,-30],[-20,-56],[-2,-3],[-4,-5]],[[83,1367],[-2,-4],[-1,-7]],[[80,1340],[-1,-7],[-2,-8]],[[74,1318],[-3,-4],[-15,-9]],[[56,1305],[-2,-15],[7,-44],[-1,-27],[-5,-15],[-6,-12],[-3,-21]],[[47,1152],[3,-19],[9,-35],[8,-15]],[[76,1076],[18,-6],[9,-8]],[[107,1060],[6,0],[14,5]],[[127,1065],[5,-1],[7,-10],[7,-18],[6,-22]],[[153,994],[2,-12],[8,-14],[19,-24]],[[197,943],[3,1],[3,-8],[1,-18]],[[204,918],[3,-6],[7,-11]],[[214,901],[10,-25]],[[238,863],[7,-14],[4,-6]],[[249,843],[1,3],[3,6]],[[262,846],[3,-18],[-3,-17]],[[262,811],[-8,-13],[-17,-22]],[[237,776],[-10,-6],[-11,-2]],[[192,772],[-23,-2],[-7,-4],[-6,0]],[[156,766],[-5,6],[-11,17]],[[140,789],[-11,13],[-6,3]],[[123,805],[-6,0],[-9,-5],[-4,-6]],[[98,750],[-6,-5],[-5,-6],[0,-13],[1,-6],[4,-12],[1,-8],[0,-11],[-1,-22],[0,-11],[4,-16],[20,-36],[5,-16],[0,-15],[-3,-12],[-8,-6],[-15,-6],[-8,-6],[-6,-10],[-4,-10],[-5,-22],[-4,-10],[-3,-6],[-3,-4],[-3,-1],[-15,0],[-21,-9],[-20,3],[-3,-2]],[[0,57],[8,-16],[11,-12],[13,-6],[38,-7],[12,-7],[7,-9]]],"transform":{"scale":[0.00233023302330233,0.0010101010101010094],"translate":[19,43.2]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment