Skip to content

Instantly share code, notes, and snippets.

@ThomasThoren
Last active January 19, 2018 16:52
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 1 You must be signed in to fork a gist
  • Save ThomasThoren/efc950f1d26356afc842 to your computer and use it in GitHub Desktop.
Save ThomasThoren/efc950f1d26356afc842 to your computer and use it in GitHub Desktop.
Texas map
height: 725

Some fun with Texas cities, counties and terrain.

It combines vector data and raster data to display the state's counties and terrain (shaded relief). The vector data comes from the U.S. Census. The raster imagery used for shaded relief is from NASA's Shuttle Radar Topography Mission. Use Derek Watkins' tool for selecting topographic map tiles to select the tiles you'll need.

Geographic data conversion is documented in the Makefile. It uses the GDAL library to convert the shapfiles to TopoJSON and reproject the raster images into the Mercator projection. You can run the entire processing script to see the intermediate files, or use the supplied JSON and PNG files for the final product.

TODO

  • Remove coastline.

Sources

<!DOCTYPE html>
<html>
<head>
<title>Texas terrain</title>
<meta charset="utf-8">
<style>
body {
padding: 0;
margin: 0;
font-family: helvetica, arial, sans-serif;
}
.bold {
font-weight: bold;
}
.raster {
fill: none;
opacity: 1;
}
.neutral-county {
fill: #FFF;
opacity: 0.4;
}
.highlighted-county {
fill: #C00;
opacity: 0.6;
}
.neutral-county,
.highlighted-county {
stroke: #6E6E6E;
stroke-opacity: 0.6;
stroke-width: 0.7px;
}
.counties {
fill: none;
stroke: #6E6E6E;
stroke-opacity: 0.4;
stroke-width: 0.5px;
}
.state-border {
fill: none;
stroke: #6E6E6E;
stroke-opacity: 0.7;
stroke-width: 1px;
}
.city-marker {
fill: none;
opacity: 0.6;
stroke-width: 2px;
stroke: #000;
}
.capital-marker {
fill: goldenrod;
opacity: 1;
stroke-width: 3px;
stroke: #000;
stroke-opacity: 0.6;
}
.text-note {
font-size: 15px;
font-weight: 500;
color: #000;
opacity: 0.6;
line-height: 18px;
margin: 0;
text-shadow: 1px 1px 0 white,
1px -1px 0 white,
-1px 1px 0 white,
-1px -1px 0 white;
}
.city-label {
text-anchor: middle;
margin: 0;
font-size: 15px;
line-height: 14px;
font-weight: 500;
text-align: right;
opacity: 0.6;
color: #000;
text-shadow: 1px 1px 0 white,
1px -1px 0 white,
-1px 1px 0 white,
-1px -1px 0 white;
}
.legend {
font-size: 15px;
line-height: 24px;
font-weight: 500;
color: #333;
}
.label-line {
stroke: #000;
stroke-width: 1.5px;
stroke-opacity: 1;
opacity: 0.8;
fill: none;
}
.state-label {
font-weight: 500;
text-transform: uppercase;
text-anchor: middle;
opacity: 0.3;
color: #000;
font-size: 24px;
line-height: 28px;
letter-spacing: 0.6em;
}
.distance-scale {
font-size: 11px;
line-height: 11px;
position: absolute;
font-weight: 500;
text-transform: uppercase;
color: #000;
}
.distance-scale-line {
stroke: #000;
stroke-width: 1;
stroke-opacity: 1;
opacity: 1;
fill: #000;
shape-rendering: crispEdges;
}
</style>
</head>
<body>
<svg id="map"></svg>
<script src="//d3js.org/d3.v3.min.js"></script>
<script src="//d3js.org/queue.v1.min.js"></script>
<script src="//d3js.org/topojson.v1.min.js"></script>
<script>
var keeper_cities = [
'Abilene',
'Amarillo',
'Austin',
'Beaumont',
'Brownsville',
'Corpus Christi',
'Dallas',
'El Paso',
'Freeport',
'Ft. Worth',
'Galveston',
'Houston',
'Killeen',
'Laredo',
'Lubbock',
'Odessa',
'San Antonio',
'Tyler',
'Victoria',
'Waco',
'Wichita Falls'
];
var keeper_counties = [
'Lubbock'
];
// Make sure at least one dimension is smaller than raster image (705 x 670).
var map_width = 700,
map_height = 700;
var svg = d3.selectAll("#map")
.attr("width", map_width)
.attr("height", map_height);
// Create a unit projection
var map_projection = d3.geo.mercator()
.scale(1)
.translate([0, 0]);
var map_path = d3.geo.path()
.projection(map_projection);
queue()
.defer(d3.json, "texas-counties.json")
.defer(d3.json, "texas-cities.json")
.await(ready);
function ready(error, counties, cities) {
if (error) throw error;
// Scale and center the map to fit into the given dimensions.
var b = map_path.bounds(topojson.feature(counties, counties.objects['texas-counties']));
// Pixels per map-path-degree, for both directions.
// 0.95 is for padding. 1.0 would fill entire bounding box.
var s = 0.95 / Math.max((b[1][0] - b[0][0]) / map_width, (b[1][1] - b[0][1]) / map_height);
var t = [(map_width - s * (b[1][0] + b[0][0])) / 2.0, (map_height - s * (b[1][1] + b[0][1])) / 2.0];
// Scale and center vector
map_projection
.scale(s)
.translate(t);
// Scale and position shaded relief raster image. Assumes already cropped.
var raster_width = (b[1][0] - b[0][0]) * s;
var raster_height = (b[1][1] - b[0][1]) * s;
var rtranslate_x = (map_width - raster_width) / 2.0;
var rtranslate_y = (map_height - raster_height) / 2.0;
// Shaded relief
svg.append("image")
.attr('id', 'Raster')
.attr("clip-path", "url(#texas_clip)")
.attr("xlink:href", "texas-raster.png")
.attr("class", "raster")
.attr("width", raster_width)
.attr("height", raster_height)
.attr("transform", "translate(" + rtranslate_x + ", " + rtranslate_y + ")");
// Draw counties
svg.append("g")
.attr('id', 'Counties')
.selectAll("path")
.data(topojson.feature(counties, counties.objects['texas-counties']).features)
.enter().append("path")
.attr("class", function(d) {
if (keeper_counties.indexOf(d.properties.NAME) > -1) {
return 'highlighted-county';
} else {
return "neutral-county";
}
})
.attr("d", map_path);
// Draw state border
svg.append("g")
.attr('id', 'StateBorder')
.datum(topojson.mesh(counties, counties.objects['texas-counties'], function(a, b) { return a === b; }))
.append("path")
.attr("class", "state-border")
.attr("id", "texas_border") // For shaded relief
.attr("d", map_path);
// Draw city markers
svg.append('g')
.attr('id', 'CityMarkers')
.selectAll("circle")
.data(cities.features)
.enter().append("circle")
.attr('r', '4px')
.attr("class", function(d) {
if (d.properties.NAME === 'Austin') {
return 'capital-marker';
} else {
return "city-marker";
}
})
.attr("transform", function(d) { return "translate(" + map_projection(d.geometry.coordinates) + ")"; })
.filter(function(d) {
return keeper_cities.indexOf(d.properties.NAME) === -1;
}).remove();
// Write city label text
svg.append('g').attr('id', 'CityLabels').selectAll('.city-label')
.data(cities.features)
.enter().append('text')
.attr("class", "city-label")
.each(function(d) {
d3.select(this)
.attr("transform", function(d) {
var t = "translate(" + map_projection(d.geometry.coordinates) + ")";
if (d.properties.NAME === 'Dallas') {
t += "translate(0, -20)";
} else if (d.properties.NAME === 'Beaumont') {
t += "translate(-10, -20)";
} else if (d.properties.NAME === 'Ft. Worth' || d.properties.NAME === 'Killeen') {
t += "translate(-10, 0)";
}
return t;
})
.attr("dx", "5")
.attr("dy", "15")
.style("text-anchor", function(d) {
if (d.properties.NAME === 'Ft. Worth' || d.properties.NAME === 'Killeen' || d.properties.NAME === 'Beaumont') {
return "end";
} else {
return "start";
}
})
.text(function(d) { return d.properties.NAME; });
})
.filter(function(d) {
return keeper_cities.indexOf(d.properties.NAME) === -1;
}).remove();
// State label
svg.append("text")
.attr("class", "state-label")
.attr("x", map_width * 0.55)
.attr("y", map_height * 0.5)
.text('Texas');
// Line path generator
var line = d3.svg.line()
.x(function(d) { return d.x; })
.y(function(d) { return d.y; })
.interpolate("basis");
// Draw curve between county and text
svg.selectAll(".label-line")
.data(topojson.feature(counties, counties.objects['texas-counties']).features)
.enter().append('path')
.attr("class", "label-line")
.attr("d", function(d) {
var centroid = map_path.centroid(d);
if (d.properties.NAME === 'Lubbock') {
var lineData = [
{"x": centroid[0] - 50, "y": centroid[1] - 59},
{"x": centroid[0] - 2, "y": centroid[1] - 7}
];
} else {
return;
}
var x_diff = lineData[1].x - lineData[0].x;
var y_diff = lineData[1].y - lineData[0].y;
return line([
{"x": lineData[0].x, "y": lineData[0].y},
{"x": lineData[0].x + x_diff * 0.5, "y": lineData[0].y},
{"x": lineData[1].x, "y": lineData[0].y + y_diff * 0.5},
{"x": lineData[1].x, "y": lineData[1].y}
]);
})
.filter(function(d) {
return d.properties.NAME !== 'Lubbock';
}).remove();
// Draw line between city and text
svg.selectAll(".label-line")
.data(cities.features)
.enter().append('path')
.attr("class", "label-line")
.attr("d", function(d) {
var centroid = map_projection(d.geometry.coordinates);
if (d.properties.NAME === 'Austin') {
var lineData = [
{"x": centroid[0] + 3, "y": centroid[1] - 3},
{"x": centroid[0] + 30, "y": centroid[1] - 30}
];
} else {
return;
}
return line(lineData);
})
.filter(function(d) {
return d.properties.NAME !== 'Austin';
}).remove();
// Write counties text note
svg.selectAll('.text-note')
.data(topojson.feature(counties, counties.objects['texas-counties']).features)
.enter().append('text')
.attr("class", "text-note")
.each(function(d) {
if (d.properties.NAME === 'Lubbock') {
d3.select(this)
.attr("transform", function(d) { return "translate(" + map_path.centroid(d) + ")"; })
.append("tspan")
.attr("dx", "-55")
.attr("dy", "-55")
.style("text-anchor", "end")
.text("This is ");
d3.select(this)
.append("tspan")
.attr("class", "bold")
.text("Lubbock County.");
} else {
return;
}
})
.filter(function(d) {
return d.properties.NAME !== 'Lubbock';
}).remove();
// Write text for cities
svg.selectAll('.text-note')
.data(cities.features)
.enter().append('text')
.attr("class", "text-note")
.each(function(d) {
if (d.properties.NAME === 'Austin') {
d3.select(this)
.attr("transform", function(d) { return "translate(" + map_path.centroid(d) + ")"; })
.append("tspan")
.attr("dx", "32")
.attr("dy", "-32")
.style("text-anchor", "start")
.text("This is the ");
d3.select(this)
.append("tspan")
.attr("class", "bold")
.text("capital.");
} else {
return;
}
})
.filter(function(d) {
return d.properties.NAME !== 'Austin';
}).remove();
// Distance scale
function pixelLength(topojson, miles) {
// Calculates the window pixel length for a given map distance.
var actual_map_bounds = d3.geo.bounds(topojson);
var radians = d3.geo.distance(actual_map_bounds[0], actual_map_bounds[1]);
var earth_radius = 3959; // miles
var arc_length = radians * earth_radius; // s = r * theta
var projected_map_bounds = [
map_projection(actual_map_bounds[0]),
map_projection(actual_map_bounds[1])
];
var projected_width = projected_map_bounds[1][0] - projected_map_bounds[0][0];
var projected_height = projected_map_bounds[0][1] - projected_map_bounds[1][1];
var projected_map_hypotenuse = Math.sqrt(
(Math.pow(projected_width, 2)) + (Math.pow(projected_height, 2))
);
var pixels_per_mile = projected_map_hypotenuse / arc_length;
var pixel_distance = pixels_per_mile * miles;
return pixel_distance;
}
var pixels_for_hundred_miles = pixelLength(topojson.feature(counties, counties.objects['texas-counties']), 100);
var distance_scale = svg.selectAll("#distance-scale")
.data([pixels_for_hundred_miles])
.enter().append("g")
.attr("class", "distance-scale")
.attr("width", function(d) { return d; });
distance_scale.append('text')
.attr("x", function(d, i) { return map_width * 0.15; })
.attr("y", function(d, i) { return (map_height * 0.85) + (i * 20); })
.text("100 miles");
distance_scale.append('path')
.attr("class", "distance-scale-line")
.attr("d", function(d, i) {
var lineData = [
{"x": map_width * 0.15, "y": (map_height * 0.85) + (i * 20) + 3},
{"x": map_width * 0.15 + d, "y": (map_height * 0.85) + (i * 20) + 3}
];
return line(lineData);
});
}
</script>
</body>
</html>
# Requirements: gdal, topojson, imagemagick.
.PHONY: all clean
# Eventually, you will want to disable this so intermediate files are removed.
# Many of them are larger than 1 GB.
.SECONDARY:
# Download .zip files.
zip/tl_2015_us_county.zip:
@mkdir -p $(dir $@)
@curl -sS -o $@.download 'ftp://ftp2.census.gov/geo/tiger/TIGER2015/COUNTY/$(notdir $@)'
@mv $@.download $@
zip/ne_10m_populated_places.zip:
@mkdir -p $(dir $@)
@curl -sS -o $@.download 'http://naciscdn.org/naturalearth/10m/cultural/ne_10m_populated_places.zip'
@mv $@.download $@
zip/srtm_%.zip:
@# 90-meter SRTM tiles
@mkdir -p $(dir $@)
@curl -sS -o $@.download 'http://srtm.csi.cgiar.org/SRT-ZIP/SRTM_V41/SRTM_Data_GeoTiff/$(notdir $@)'
@mv $@.download $@
# Unzip
shp/tl_2015_us_county.shp: zip/tl_2015_us_county.zip
@mkdir -p $(dir $@)
@rm -rf tmp && mkdir tmp
@unzip -q -o -d tmp $<
@cp tmp/* $(dir $@)
@rm -rf tmp
shp/ne_10m_populated_places.shp: zip/ne_10m_populated_places.zip
@mkdir -p $(dir $@)
@rm -rf tmp && mkdir tmp
@unzip -q -o -d tmp $<
@cp tmp/* $(dir $@)
@rm -rf tmp
tif/srtm_%.tif: zip/srtm_%.zip
@mkdir -p $(dir $@)
@rm -rf tmp && mkdir tmp
@unzip -q -o -d tmp $<
@cp tmp/* $(dir $@)
@rm -rf tmp
# Extract Texas from U.S.
shp/texas-counties.shp: shp/tl_2015_us_county.shp
@mkdir -p $(dir $@)
@ogr2ogr \
-f 'ESRI Shapefile' \
-t_srs "EPSG:4326" \
$@ $< \
-dialect sqlite \
-sql "SELECT Geometry, STATEFP, COUNTYFP, NAME \
FROM tl_2015_us_county \
WHERE STATEFP = '48'"
# Reduce international cities to only include Texas.
shp/texas-cities.shp: shp/ne_10m_populated_places.shp
@mkdir -p $(dir $@)
@ogr2ogr \
-f 'ESRI Shapefile' \
$@ $< \
-dialect sqlite \
-sql "SELECT Geometry, ADM0NAME, ADM1NAME, NAME, SCALERANK, LABELRANK, NATSCALE \
FROM 'ne_10m_populated_places' \
WHERE ADM1NAME = 'Texas' AND \
SCALERANK <= 7"
# Convert SHP to GeoJSON.
geojson/texas-counties.json: shp/texas-counties.shp
@mkdir -p $(dir $@)
@ogr2ogr \
-f 'GeoJSON' \
$@ $<
texas-cities.json: shp/texas-cities.shp
@mkdir -p $(dir $@)
@ogr2ogr \
-f 'GeoJSON' \
$@ $<
# Convert GeoJSON to TopoJSON.
topojson/texas-counties.json: geojson/texas-counties.json
@mkdir -p $(dir $@)
@topojson \
--no-quantization \
--properties \
-o $@ \
-- $<
# Simplify TopoJSON.
texas-counties.json: topojson/texas-counties.json
@mkdir -p $(dir $@)
@topojson \
--properties \
--spherical \
-q 1e8 \
-s 1e-10 \
-o $@ \
-- $<
# Merge topographic tiles.
# Use http://dwtkns.com/srtm/ to find which tiles are needed.
tif/texas-merged-90m.tif: \
tif/srtm_15_05.tif \
tif/srtm_16_05.tif \
tif/srtm_17_05.tif \
tif/srtm_18_05.tif \
tif/srtm_15_06.tif \
tif/srtm_16_06.tif \
tif/srtm_17_06.tif \
tif/srtm_18_06.tif \
tif/srtm_15_07.tif \
tif/srtm_16_07.tif \
tif/srtm_17_07.tif \
tif/srtm_18_07.tif
@mkdir -p $(dir $@)
@gdal_merge.py \
-o $@ \
-init "255" \
tif/srtm_*.tif
# Convert to Mercator.
tif/texas-reprojected.tif: tif/texas-merged-90m.tif
@# Comes as WGS 84 (EPSG:4326). Want Mercator (EPSG:3857) for D3 projection.
@mkdir -p $(dir $@)
@gdalwarp \
-co "TFW=YES" \
-s_srs "EPSG:4326" \
-t_srs "EPSG:3857" \
$< \
$@
# Crop raster to shape of Texas.
tif/texas-cropped.tif: tif/texas-reprojected.tif shp/texas-counties.shp
@mkdir -p $(dir $@)
@gdalwarp \
-cutline shp/texas-counties.shp \
-crop_to_cutline \
-dstalpha \
tif/texas-reprojected.tif \
$@
# Shade and color.
tif/texas-color-crop.tif: tif/texas-cropped.tif
@rm -rf tmp && mkdir -p tmp
@gdaldem \
hillshade \
$< tmp/hillshade.tmp.tif \
-z 5 \
-az 315 \
-alt 60 \
-compute_edges
@gdal_calc.py \
-A tmp/hillshade.tmp.tif \
--outfile=$@ \
--calc="255*(A>220) + A*(A<=220)"
@gdal_calc.py \
-A tmp/hillshade.tmp.tif \
--outfile=tmp/opacity_crop.tmp.tif \
--calc="1*(A>220) + (256-A)*(A<=220)"
@rm -rf tmp
# Convert to .png.
texas-raster.png: tif/texas-color-crop.tif
@convert \
-resize x670 \
$< $@
all: texas-counties.json \
texas-cities.json \
texas-raster.png
clean:
@rm -rf geojson
@rm -rf hgt
@rm -rf shp
@rm -rf tif
@rm -rf topojson
Display the source blob
Display the rendered blob
Raw
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"texas-counties":{"type":"GeometryCollection","geometries":[{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"327","NAME":"Menard"},"arcs":[[0,1,2,3,4]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"189","NAME":"Hale"},"arcs":[[5,6,7,8,9]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"011","NAME":"Armstrong"},"arcs":[[10,11,12,13,14]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"057","NAME":"Calhoun"},"arcs":[[15,16,17,18,19,20]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"077","NAME":"Clay"},"arcs":[[21,22,23,24,25]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"361","NAME":"Orange"},"arcs":[[26,27,28,29,30]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"177","NAME":"Gonzales"},"arcs":[[31,32,33,34,35,36,37]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"147","NAME":"Fannin"},"arcs":[[38,39,40,41,42,43]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"265","NAME":"Kerr"},"arcs":[[44,45,46,47,48,49]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"391","NAME":"Refugio"},"arcs":[[50,51,-20,52,53,54]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"247","NAME":"Jim Hogg"},"arcs":[[55,56,57,58,59]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"127","NAME":"Dimmit"},"arcs":[[60,61,62,63,64]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"353","NAME":"Nolan"},"arcs":[[65,66,67,68,69]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"041","NAME":"Brazos"},"arcs":[[70,71,72,73,74]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"245","NAME":"Jefferson"},"arcs":[[-31,75,76,77,78]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"027","NAME":"Bell"},"arcs":[[79,80,81,82,83,84,85]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"019","NAME":"Bandera"},"arcs":[[86,87,-50,88,89,90]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"215","NAME":"Hidalgo"},"arcs":[[91,92,93,94,95,96]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"413","NAME":"Schleicher"},"arcs":[[-4,97,98,99,100]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"181","NAME":"Grayson"},"arcs":[[101,-44,102,103,104]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"107","NAME":"Crosby"},"arcs":[[105,106,107,108]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"119","NAME":"Delta"},"arcs":[[109,110,111,112,-41,113]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"507","NAME":"Zavala"},"arcs":[[114,115,-65,116]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"397","NAME":"Rockwall"},"arcs":[[117,118,119,120]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"133","NAME":"Eastland"},"arcs":[[121,122,123,124,125,126,127]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"123","NAME":"DeWitt"},"arcs":[[128,129,-35,130,131]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"005","NAME":"Angelina"},"arcs":[[132,133,134,135,136,137,138,139]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"309","NAME":"McLennan"},"arcs":[[140,141,142,-80,143,144]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"277","NAME":"Lamar"},"arcs":[[145,146,-114,-40]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"289","NAME":"Leon"},"arcs":[[147,148,149,150,151,152]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"433","NAME":"Stonewall"},"arcs":[[153,154,155,156,157]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"311","NAME":"McMullen"},"arcs":[[158,159,160,161]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"435","NAME":"Sutton"},"arcs":[[162,163,164,165,-98]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"157","NAME":"Fort Bend"},"arcs":[[166,167,168,169,170]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"367","NAME":"Parker"},"arcs":[[171,172,173,174,175,176]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"271","NAME":"Kinney"},"arcs":[[177,178,179,180,181]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"149","NAME":"Fayette"},"arcs":[[182,183,184,185,186,-33,187,188]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"045","NAME":"Briscoe"},"arcs":[[189,190,191,192,193,-13]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"203","NAME":"Harrison"},"arcs":[[194,195,196,197,198,199]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"383","NAME":"Reagan"},"arcs":[[200,201,202,203,204,205]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"083","NAME":"Coleman"},"arcs":[[206,207,208,209,210,211]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"357","NAME":"Ochiltree"},"arcs":[[212,213,214,215]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"103","NAME":"Crane"},"arcs":[[216,217,218,219,220]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"477","NAME":"Washington"},"arcs":[[-74,221,222,223,-184,224,225]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"305","NAME":"Lynn"},"arcs":[[226,227,228,229,230]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"333","NAME":"Mills"},"arcs":[[231,232,233,234,235]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"359","NAME":"Oldham"},"arcs":[[236,237,238,239,240]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"403","NAME":"Sabine"},"arcs":[[241,242,243,244,245]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"223","NAME":"Hopkins"},"arcs":[[246,247,248,249,-112]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"225","NAME":"Houston"},"arcs":[[250,251,-133,252,253,254,-149]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"029","NAME":"Bexar"},"arcs":[[-90,255,256,257,258,259,260]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"461","NAME":"Upton"},"arcs":[[-218,261,262,-206,263]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"143","NAME":"Erath"},"arcs":[[264,265,266,267,268,269,-123]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"381","NAME":"Randall"},"arcs":[[270,-15,271,272,273]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"401","NAME":"Rusk"},"arcs":[[274,-199,275,276,277,278,279]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"099","NAME":"Coryell"},"arcs":[[280,-144,-86,281,282]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"091","NAME":"Comal"},"arcs":[[283,284,285,286,-257]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"007","NAME":"Aransas"},"arcs":[[287,-53,-19,288,289]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"237","NAME":"Jack"},"arcs":[[290,-24,291,292,-172,293,294]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"211","NAME":"Hemphill"},"arcs":[[295,296,297,298]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"417","NAME":"Shackelford"},"arcs":[[-127,299,300,301,302,303]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"407","NAME":"San Jacinto"},"arcs":[[304,305,306,307,308]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"259","NAME":"Kendall"},"arcs":[[309,310,-284,-256,-89,-49]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"481","NAME":"Wharton"},"arcs":[[311,-170,312,313,314,315]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"153","NAME":"Floyd"},"arcs":[[316,-193,317,-109,-8]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"255","NAME":"Karnes"},"arcs":[[-36,-130,318,319,320,321,322]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"257","NAME":"Kaufman"},"arcs":[[-119,323,324,325,326,327]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"131","NAME":"Duval"},"arcs":[[-161,328,329,330,-57,331]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"251","NAME":"Johnson"},"arcs":[[332,333,334,335,336,-175,337]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"159","NAME":"Franklin"},"arcs":[[-111,338,339,340,341,-247]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"137","NAME":"Edwards"},"arcs":[[342,-46,343,344,-179,345,-164]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"473","NAME":"Waller"},"arcs":[[346,347,-167,348,-223,349]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"323","NAME":"Maverick"},"arcs":[[-181,-117,-64,350,351]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"273","NAME":"Kleberg"},"arcs":[[352,353,354,355,356]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"165","NAME":"Gaines"},"arcs":[[357,358,359,360,361,362]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"317","NAME":"Martin"},"arcs":[[363,364,365,-360,366,367]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"037","NAME":"Bowie"},"arcs":[[368,369,370,371]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"003","NAME":"Andrews"},"arcs":[[372,-361,-366,373,374,375]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"375","NAME":"Potter"},"arcs":[[-238,376,377,-271]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"169","NAME":"Garza"},"arcs":[[378,379,380,-227,-107]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"055","NAME":"Caldwell"},"arcs":[[381,382,-188,-32,383,384]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"369","NAME":"Parmer"},"arcs":[[385,386,387,388,389]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"449","NAME":"Titus"},"arcs":[[-340,390,391,392]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"445","NAME":"Terry"},"arcs":[[393,-230,394,-358,395]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"155","NAME":"Foard"},"arcs":[[396,397,398,399,400,401]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"385","NAME":"Real"},"arcs":[[-45,-88,402,-344]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"065","NAME":"Carson"},"arcs":[[-378,403,404,405,406,-11]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"275","NAME":"Knox"},"arcs":[[-402,407,408,409]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"209","NAME":"Hays"},"arcs":[[410,411,-385,412,-286]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"325","NAME":"Medina"},"arcs":[[413,-91,-261,414,415]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"345","NAME":"Motley"},"arcs":[[-192,416,417,418,-318]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"485","NAME":"Wichita"},"arcs":[[419,420,421,-26]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"329","NAME":"Midland"},"arcs":[[-374,-365,422,-263,423]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"469","NAME":"Victoria"},"arcs":[[424,425,-21,-52,426,-132]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"457","NAME":"Tyler"},"arcs":[[-138,427,428,429]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"145","NAME":"Falls"},"arcs":[[430,431,432,-81,-143]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"377","NAME":"Presidio"},"arcs":[[433,434,435]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"489","NAME":"Willacy"},"arcs":[[436,437,438,-95]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"303","NAME":"Lubbock"},"arcs":[[-9,-108,-231,439]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"213","NAME":"Henderson"},"arcs":[[440,441,442,443,444,445,-326,446]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"471","NAME":"Walker"},"arcs":[[-254,447,-309,448,449,450]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"167","NAME":"Galveston"},"arcs":[[451,452,453,454]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"201","NAME":"Harris"},"arcs":[[455,456,457,-452,458,-168,-348]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"115","NAME":"Dawson"},"arcs":[[459,-367,-359,-395,-229]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"371","NAME":"Pecos"},"arcs":[[460,-220,461,462,463,464,465]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"347","NAME":"Nacogdoches"},"arcs":[[-278,466,467,-135,468]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"187","NAME":"Guadalupe"},"arcs":[[-384,-38,469,-258,-287,-413]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"439","NAME":"Tarrant"},"arcs":[[470,471,-338,-174,472,473]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"239","NAME":"Jackson"},"arcs":[[474,-315,475,-16,-426,476]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"437","NAME":"Swisher"},"arcs":[[-272,-14,-194,-317,-7,477]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"431","NAME":"Sterling"},"arcs":[[478,479,480,481,482,-202]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"495","NAME":"Winkler"},"arcs":[[483,484,-376,485,486]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"163","NAME":"Frio"},"arcs":[[487,488,-61,-116,-416]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"295","NAME":"Lipscomb"},"arcs":[[-296,489,-215,490]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"087","NAME":"Collingsworth"},"arcs":[[491,492,493,494,495]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"089","NAME":"Colorado"},"arcs":[[-186,496,-316,-475,497]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"497","NAME":"Wise"},"arcs":[[498,499,-473,-173,-293,500]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"173","NAME":"Glasscock"},"arcs":[[-364,501,-479,-201,-423]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"419","NAME":"Shelby"},"arcs":[[502,-242,503,-467,-277,504]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"093","NAME":"Comanche"},"arcs":[[-270,505,-233,506,-124]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"053","NAME":"Burnet"},"arcs":[[507,508,-84,509,510,511,512]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"179","NAME":"Gray"},"arcs":[[513,-407,514,515]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"229","NAME":"Hudspeth"},"arcs":[[516,517,518,519,520]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"067","NAME":"Cass"},"arcs":[[-370,521,522,523]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"139","NAME":"Ellis"},"arcs":[[-327,-446,524,525,-333,-472,526]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"097","NAME":"Cooke"},"arcs":[[-105,527,-499,528,529]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"491","NAME":"Williamson"},"arcs":[[-83,530,531,532,533,-510]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"079","NAME":"Cochran"},"arcs":[[534,535,536,537]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"467","NAME":"Van Zandt"},"arcs":[[538,539,540,541,-447,-325]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"129","NAME":"Donley"},"arcs":[[-190,-12,-514,-496,542]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"253","NAME":"Jones"},"arcs":[[-301,543,544,545,-156,546]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"185","NAME":"Grimes"},"arcs":[[547,-450,548,-350,-222,-73]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"235","NAME":"Irion"},"arcs":[[549,-100,550,-204]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"349","NAME":"Navarro"},"arcs":[[-445,551,552,553,-525]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"047","NAME":"Brooks"},"arcs":[[-331,554,-356,555,-93,556,-58]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"111","NAME":"Dallam"},"arcs":[[557,558,559]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"231","NAME":"Hunt"},"arcs":[[-42,-113,-250,560,-539,-324,-118,561]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"335","NAME":"Mitchell"},"arcs":[[-69,562,-481,563,564,565]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"499","NAME":"Wood"},"arcs":[[-342,566,567,568,-541,569,-248]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"075","NAME":"Childress"},"arcs":[[-494,570,571,572,573]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"243","NAME":"Jeff Davis"},"arcs":[[-519,574,575,-465,576,-434]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"337","NAME":"Montague"},"arcs":[[577,-529,-501,-292,-23]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"049","NAME":"Brown"},"arcs":[[578,-125,-507,-232,579,580,-209]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"207","NAME":"Haskell"},"arcs":[[-409,581,-302,-547,-155]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"151","NAME":"Fisher"},"arcs":[[-546,-70,582,583,-157]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"095","NAME":"Concho"},"arcs":[[584,-211,585,-5,586]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"081","NAME":"Coke"},"arcs":[[-482,-563,-68,587,588]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"373","NAME":"Polk"},"arcs":[[-139,-430,589,590,-306,591]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"101","NAME":"Cottle"},"arcs":[[592,-573,593,-398,594,-418]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"503","NAME":"Young"},"arcs":[[595,-295,596,597,598]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"287","NAME":"Lee"},"arcs":[[-532,599,600,-225,-183,601]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"073","NAME":"Cherokee"},"arcs":[[-442,602,-279,-469,-134,-252,603]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"191","NAME":"Hall"},"arcs":[[-543,-495,-574,-593,-417,-191]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"221","NAME":"Hood"},"arcs":[[-337,604,-266,605,-176]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"009","NAME":"Archer"},"arcs":[[606,-420,-25,-291,-596]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"023","NAME":"Baylor"},"arcs":[[607,-607,608,-408,-401]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"405","NAME":"San Augustine"},"arcs":[[-504,-246,609,-136,-468]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"313","NAME":"Madison"},"arcs":[[-255,-451,-548,-72,-150]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"331","NAME":"Milam"},"arcs":[[-433,610,611,-600,-531,-82]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"389","NAME":"Reeves"},"arcs":[[612,613,614,615,-466,-576]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"355","NAME":"Nueces"},"arcs":[[616,-290,617,-353,618]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"063","NAME":"Camp"},"arcs":[[619,620,-567,-341,-393]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"161","NAME":"Freestone"},"arcs":[[-552,-444,621,-153,622]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"399","NAME":"Runnels"},"arcs":[[623,-588,-67,624,-212,-585]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"443","NAME":"Terrell"},"arcs":[[625,-463,626,627,628]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"117","NAME":"Deaf Smith"},"arcs":[[-386,629,-239,-274,630]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"315","NAME":"Marion"},"arcs":[[631,632,-523,633,-196]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"291","NAME":"Liberty"},"arcs":[[634,-307,-591,635,-78,636,-457]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"241","NAME":"Jasper"},"arcs":[[-137,-610,-245,637,-28,638,-428]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"195","NAME":"Hansford"},"arcs":[[639,-213,640,641,642]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"071","NAME":"Chambers"},"arcs":[[-637,-77,643,-453,-458]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"199","NAME":"Hardin"},"arcs":[[-639,-27,-79,-636,-590,-429]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"085","NAME":"Collin"},"arcs":[[-103,-43,-562,-121,644,645]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"039","NAME":"Brazoria"},"arcs":[[-459,-455,646,647,-313,-169]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"447","NAME":"Throckmorton"},"arcs":[[-582,-609,-599,648,-303]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"021","NAME":"Bastrop"},"arcs":[[-533,-602,-189,-383,649]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"415","NAME":"Scurry"},"arcs":[[650,-583,-566,651,-380]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"135","NAME":"Ector"},"arcs":[[-424,-262,-217,652,-486,-375]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"293","NAME":"Limestone"},"arcs":[[653,-553,-623,-152,654,-431,-142]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"121","NAME":"Denton"},"arcs":[[-528,-104,-646,655,-474,-500]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"387","NAME":"Red River"},"arcs":[[656,-372,657,-391,-339,-110,-147]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"321","NAME":"Matagorda"},"arcs":[[-314,-648,658,-17,-476]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"197","NAME":"Hardeman"},"arcs":[[-594,-572,659,660,-399]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"363","NAME":"Palo Pinto"},"arcs":[[-597,-294,-177,-606,-265,-122,661]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"297","NAME":"Live Oak"},"arcs":[[662,-321,663,664,665,-329,-160]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"421","NAME":"Sherman"},"arcs":[[-643,666,-558,667]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"463","NAME":"Uvalde"},"arcs":[[-87,-414,-115,-180,-345,-403]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"017","NAME":"Bailey"},"arcs":[[-389,668,-536,669]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"109","NAME":"Culberson"},"arcs":[[670,-613,-575,-518]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"013","NAME":"Atascosa"},"arcs":[[-415,-260,671,-322,-663,-159,672,-488]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"493","NAME":"Wilson"},"arcs":[[-470,-37,-323,-672,-259]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"427","NAME":"Starr"},"arcs":[[673,-59,-557,-92,674]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"113","NAME":"Dallas"},"arcs":[[-527,-471,-656,-645,-120,-328]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"267","NAME":"Kimble"},"arcs":[[-163,-3,675,676,-47,-343]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"307","NAME":"McCulloch"},"arcs":[[-581,677,678,-1,-586,-210]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"105","NAME":"Crockett"},"arcs":[[-627,-462,-219,-264,-205,-551,-99,-166,679]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"217","NAME":"Hill"},"arcs":[[-334,-526,-554,-654,-141,680]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"263","NAME":"Kent"},"arcs":[[681,-158,-584,-651,-379]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"141","NAME":"El Paso"},"arcs":[[-521,682]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"301","NAME":"Loving"},"arcs":[[683,-484,684,-615]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"125","NAME":"Dickens"},"arcs":[[-419,685,-682,-106]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"283","NAME":"La Salle"},"arcs":[[-62,-489,-673,-162,686]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"279","NAME":"Lamb"},"arcs":[[-388,687,-10,688,-669]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"015","NAME":"Austin"},"arcs":[[-185,-224,-349,-171,-312,-497]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"233","NAME":"Hutchinson"},"arcs":[[-642,689,-405,690]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"465","NAME":"Val Verde"},"arcs":[[-628,-680,-165,-346,-178,691]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"423","NAME":"Smith"},"arcs":[[-542,-569,692,693,-280,-603,-441]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"395","NAME":"Robertson"},"arcs":[[-432,-655,-151,-71,694,-611]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"171","NAME":"Gillespie"},"arcs":[[695,-310,-48,-677,696,697]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"269","NAME":"King"},"arcs":[[-595,-397,-410,-154,-686]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"451","NAME":"Tom Green"},"arcs":[[-624,-587,-101,-550,-203,-483,-589]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"501","NAME":"Yoakum"},"arcs":[[-538,-396,-363,698]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"425","NAME":"Somervell"},"arcs":[[-605,-336,699,-267]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"261","NAME":"Kenedy"},"arcs":[[-355,700,-437,-94,-556]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"033","NAME":"Borden"},"arcs":[[-228,-381,-652,-565,701,-460]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"411","NAME":"San Saba"},"arcs":[[-580,-236,702,-508,703,704,-678]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"051","NAME":"Burleson"},"arcs":[[-612,-695,-75,-226,-601]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"025","NAME":"Bee"},"arcs":[[-320,705,-55,706,-664]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"455","NAME":"Trinity"},"arcs":[[-448,-253,-140,-592,-305]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"069","NAME":"Castro"},"arcs":[[-631,-273,-478,-6,-688,-387]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"043","NAME":"Brewster"},"arcs":[[-626,707,-435,-577,-464]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"183","NAME":"Gregg"},"arcs":[[708,-200,-275,-694]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"475","NAME":"Ward"},"arcs":[[-685,-487,-653,-221,-461,-616]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"487","NAME":"Wilbarger"},"arcs":[[-661,709,-421,-608,-400]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"193","NAME":"Hamilton"},"arcs":[[-269,710,-283,711,-234,-506]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"429","NAME":"Stephens"},"arcs":[[-649,-598,-662,-128,-304]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"285","NAME":"Lavaca"},"arcs":[[-34,-187,-498,-477,-425,-131]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"035","NAME":"Bosque"},"arcs":[[-335,-681,-145,-281,-711,-268,-700]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"175","NAME":"Goliad"},"arcs":[[-427,-51,-706,-319,-129]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"393","NAME":"Roberts"},"arcs":[[-641,-216,-490,-299,-515,-406,-690]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"059","NAME":"Callahan"},"arcs":[[-126,-579,-208,712,-544,-300]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"379","NAME":"Rains"},"arcs":[[-561,-249,-570,-540]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"343","NAME":"Morris"},"arcs":[[-658,-371,-524,-633,713,-620,-392]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"281","NAME":"Lampasas"},"arcs":[[-712,-282,-85,-509,-703,-235]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"459","NAME":"Upshur"},"arcs":[[-621,-714,-632,-195,-709,-693,-568]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"483","NAME":"Wheeler"},"arcs":[[-298,714,-492,-516]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"409","NAME":"San Patricio"},"arcs":[[715,-665,-707,-54,-288,-617]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"341","NAME":"Moore"},"arcs":[[-691,-404,-377,-237,716,-667]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"479","NAME":"Webb"},"arcs":[[-351,-63,-687,-332,-56,717,718]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"031","NAME":"Blanco"},"arcs":[[719,-512,720,-411,-285,-311,-696]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"351","NAME":"Newton"},"arcs":[[-244,721,-29,-638]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"219","NAME":"Hockley"},"arcs":[[-689,-440,-394,-537]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"365","NAME":"Panola"},"arcs":[[-198,722,-505,-276]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"001","NAME":"Anderson"},"arcs":[[-604,-251,-148,-622,-443]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"061","NAME":"Cameron"},"arcs":[[723,-96,-439]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"339","NAME":"Montgomery"},"arcs":[[-549,-449,-308,-635,-456,-347]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"299","NAME":"Llano"},"arcs":[[-704,-513,-720,-698,724]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"319","NAME":"Mason"},"arcs":[[-676,-2,-679,-705,-725,-697]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"441","NAME":"Taylor"},"arcs":[[-713,-207,-625,-66,-545]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"205","NAME":"Hartley"},"arcs":[[-559,-717,-241,725]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"249","NAME":"Jim Wells"},"arcs":[[-666,-716,-619,-357,-555,-330]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"505","NAME":"Zapata"},"arcs":[[-718,-60,-674,726]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"453","NAME":"Travis"},"arcs":[[-534,-650,-382,-412,-721,-511]]},{"type":"Polygon","properties":{"STATEFP":"48","COUNTYFP":"227","NAME":"Howard"},"arcs":[[-702,-564,-480,-502,-368]]}]}},"arcs":[[[53605066,49234418],[-457,-295924],[-365,-13588],[-442,-507524],[-2444,-17198],[632,-540262],[180429,-553],[327686,-506],[278079,993],[118629,-1068]],[[54506813,47858788],[351,-119849],[190,-494358],[510,-57654],[1415,-308639],[3395,-805061],[1347,-87440],[-464,-282326]],[[54513557,45703461],[-125365,-319],[-367145,1033],[-527790,1613],[-56556,-4455],[-365895,703],[-10717,384],[-199694,253],[-83120,-271],[-181106,393],[-110958,1229],[-244016,-515],[-85184,-657],[-610918,-1004],[-11379,329],[-611123,450],[-28111,-440],[-160218,196],[-152046,554],[-48669,-2346],[-340344,-364],[-175488,-423],[-317553,-140]],[[49700162,45699664],[-252,307467],[-1835,65805],[930,107721],[-1911,288347],[274,37446],[-540,126910],[2115,189092],[-205,95991],[1347,219832],[-1317,117842],[2146,151825],[793,484812],[783,14085],[2428,454923],[449,56418],[2543,822784]],[[49707910,49240964],[543561,-3310],[330738,-1950],[459886,-1079],[491611,-1023],[25264,582],[239480,0],[141229,-600],[198841,-253],[346684,-1107],[54545,1051],[110470,-629],[492745,-853],[293731,-506],[118407,2784],[49964,347]],[[34673217,79485497],[433601,-262],[52385,-1107],[84315,1022],[132985,-525]],[[35376503,79484625],[219933,197],[713250,-477],[11441,947],[271496,-338],[155066,-450],[504316,-620],[83394,-1086],[326802,-94],[199837,-338],[350361,-244],[258267,-1613],[202967,-1003]],[[38673633,79479506],[548,-585435],[-1317,-71684],[-898,-160668],[-161,-250668],[1509,-287503],[129,-309436],[912,-160877],[586,-272085],[922,-136034],[450,-290963],[-38,-144004],[1034,-260281],[1378,-183035],[921,-251924],[1834,-374134],[1088,-363218],[-554,-107929],[578,-210249],[791,-100342]],[[38683345,74959037],[-470885,-5354],[-42519,1011],[-472133,-7520],[-319587,-5092],[-779227,-12322],[-258784,-4061],[-30729,1341],[-174690,-2907],[-226404,-3104],[-170357,-1679],[-184135,-2578],[-195897,-3827],[-210152,-2485],[-328590,-4614],[-110402,-975]],[[34708854,74904871],[-1226,228948],[-1901,222150],[-1783,72545],[-2565,318986],[-2031,343665],[-1484,167497],[-1097,192749],[-845,22647],[-183,183327],[-9020,976579],[-487,88066],[-8304,1136668],[-746,35524],[-3965,591275]],[[38231506,87643999],[89056,1078],[93601,-1556],[155714,28],[135862,-573],[119686,459],[14860,-1274],[54530,38],[220276,-2185],[136654,2297],[542510,-5167],[317965,-3001],[3160,947],[85670,-2251],[269043,770],[22151,1002],[204825,-655],[235559,-2185],[78378,-264],[201400,1248],[139096,-1031],[128121,-1407],[163942,768],[374839,-628],[132871,1192],[165144,3188]],[[42316419,87634837],[-4300,-535394],[1774,-85394],[-5436,-893887],[-5586,-192920],[-7719,-966395],[-1949,-205804],[717,-7587],[-3031,-264630],[-4506,-475462],[-75,-40766],[-2870,-266665],[-389,-117080],[-639,-16965]],[[42282410,83565888],[-122731,-141],[-139813,-4849],[-26846,272],[-184723,-683],[-54209,411],[-302742,-93],[-48974,-347],[-157959,310],[-177461,5308],[-219872,27],[-54987,-750],[-83379,694],[-47528,-609],[-193270,384],[-254253,-159],[-61092,665],[-37184,-740],[-77989,347],[-1379,1182],[-81498,-2111],[-291598,-6077],[-130,-787],[-279031,393]],[[39383762,83558535],[-170122,442],[-49683,1059],[-308784,-1323],[-115257,-178],[-262026,479],[-201369,572],[-93091,704]],[[38183430,83560290],[-1059,22572],[4361,301587],[6097,484877],[3920,300586],[-2694,85159],[7590,316480],[6005,320015],[1416,143442],[-860,114746],[1134,143695],[5275,74470],[1134,200337],[3456,432660],[2092,114991],[2672,276474],[1120,207099],[1750,129995],[2321,220620],[2346,193904]],[[76134138,26960474],[30522,4088],[37132,10495],[47534,21015],[23323,13598],[2771,-986],[56212,20078],[20605,1763],[17660,6144],[5647,8054],[17948,4905],[35182,4652],[16472,5157],[21274,3001],[26635,9135],[11964,9593],[2992,-3715],[57453,6660],[10779,-5206],[15003,-25413],[8837,-18775],[2512,2993],[10542,-9069],[-3227,-15530],[6462,-10877],[3281,-39604],[6309,-17216],[2566,-17996],[6699,-20472],[-2185,-29699],[-6357,-9444],[-9019,-40222],[4225,-8814],[10442,-1491],[10909,8656],[6919,-47],[-236,23613],[8068,49063],[84932,-2841],[4902,-2025],[261599,6170],[103832,1979],[299141,8413],[6631,-14284],[-11829,-14478],[-14379,-10767],[75829,854],[116794,4052],[185582,4361],[-1400,95624],[61723,-1031],[97658,153588],[800,2719],[60848,-441],[-4111,-378409],[-31962,-38],[-1262,-145036],[99257,1810],[11386,1294],[66992,1874],[44620,-299],[143017,1360],[250691,5102]],[[78569284,26618112],[6021,-306212],[-4619,-28593],[-27425,-154151],[-194183,-1075301],[-14874,-79850],[-63757,-351469],[-28520,-166409],[-31711,-175879],[-51022,-295783],[-16029,-86857],[-15499,-95784],[-4026,-63357],[-19006,-159929],[-18413,-159618],[-41354,-345420],[-21161,-167673]],[[78023706,22905827],[-3402,-1989],[-51440,-13767],[-178146,-87859],[-110948,-61293],[-111825,-64444],[-90222,-46834],[-44749,-24024],[-65430,-37277],[-64838,-34444],[-78674,-43072],[-74542,-45033],[-69617,-39630],[-89856,-49608],[-195325,-137703],[-111222,-82103],[-192075,-138105],[-104532,-78362],[-65042,-48013],[-49279,-39433],[-117905,-93093],[-92126,-78632],[-101121,-87411],[-68202,-61415],[-63330,-54812],[-240994,-215876],[-118797,-103175],[-118485,-109212],[-137938,-141117],[-149884,-150231],[-124375,-122174],[-117989,-119013]],[[74821396,20496673],[-279937,352726],[-7924,11900],[-1440,18587],[17850,15079],[14112,14985],[19669,34688],[1720,36958],[6539,14536],[3175,32823],[9216,30111],[2536,14489],[13747,33187],[16585,25507],[18664,38103],[-2855,21390],[2170,23791],[3775,8601],[10003,8607],[13275,18578],[25278,44009],[3257,15183],[20940,145675],[57484,368620],[21176,137441],[24121,150109],[3396,27223],[83454,532487],[23293,146557],[24052,159619],[13093,72948],[16136,113339],[8572,50415],[1005,15634],[5335,17958],[1812,27729]],[[75014680,23276265],[2656,27074],[-2459,3771],[-2831,40690],[-273,33468],[-5298,4801],[-3874,47349],[-6669,15887],[-3684,26454],[-4963,3666],[-4734,15370],[-609,13823],[4826,12989],[7665,3047],[-4445,14030],[-7003,4791],[2565,29963],[21214,59614],[-2976,23472],[-18452,24036],[-4826,21869],[37876,105086],[77002,231622],[752,16702],[6676,5148],[2276,12585],[11219,7370],[11365,12688],[19274,11075],[23581,16486],[22911,12624],[16548,12031],[4634,7418],[-3737,14179],[4264,6704],[-12255,18268],[1857,14329],[-7103,16150],[-8090,515],[-14593,-6536],[3555,7520],[-6105,10523],[-13304,-1436],[-4636,6144],[12315,15313],[16053,1331],[2841,-12068],[-11701,-7681],[7377,-12640],[15345,3450],[1043,8871],[10138,8760],[-3074,6451],[9666,24702],[-1226,6395],[-14674,12791],[-26421,-1022],[-12171,12229],[-11784,24354],[-5960,2109],[-13350,17594],[-3927,1134],[-19128,24250],[-9135,27900],[-6486,7793],[-11447,36056],[1043,5825],[-18611,20068],[-10094,4736],[-27934,-2345],[-31384,-27861],[-31961,-20182],[-5763,-7717],[-3555,-19637],[-9971,-4521],[-22614,-29962],[-6326,-955],[-24965,-30928],[-13656,-11320],[-17712,1126],[-15521,-6611],[-9963,4811],[-7102,10222],[-25835,46926],[-8975,39310],[-8128,20389],[-16046,22019],[-13930,9648],[-19272,3780],[-16313,12839],[-7467,10915],[-14203,31444],[-12286,15464],[-35683,28555],[-5914,12078],[1507,31115],[-4376,28377],[-10391,26240],[-10808,20340],[-10421,10137],[-27539,5805],[-5162,7708],[2597,31473],[-12742,8223],[-17165,-18951],[-11989,-5421],[-19013,-901],[-29945,10045],[-16914,20518],[-3806,15652],[3914,32249],[-5100,43626],[-3867,14441],[-8351,13345],[-18359,9536],[-20452,4972],[-25446,18173],[-27250,11169],[-17789,11123],[-10132,14329],[-366,17441],[4324,20745],[-5108,20406],[-18054,15258],[-60262,15735]],[[74250165,25038720],[-6866,16402],[3577,14600],[-8775,16591],[-4074,16672],[-14782,-5645],[-9392,7147],[-2610,12050],[-18078,21794],[-382,7952],[12704,8037],[2422,10738],[-3373,28769],[-4848,4361],[-15369,-4256],[-13434,1134],[-3197,4361],[3730,11656],[10664,9650],[-198,7079],[-17409,10541],[-8311,14855],[-15962,21972],[13525,11141],[3966,10840],[16670,19619],[-2466,17751],[6402,16730],[3980,19451],[22660,24127],[15886,28941],[1423,9546],[-13312,27270],[-30180,11066],[-7521,12642],[6934,19392],[10863,11301],[9803,20546],[-16494,3124],[-11380,-4887],[-9202,7372],[4506,9743],[10861,6489],[868,9557],[-9301,8684],[159,13231],[-12452,11169],[-24593,-6621],[-6897,3677],[-2473,10700],[11211,12594],[6165,16429],[-1483,8601],[-15795,9274],[-7383,-103],[-14325,-18202],[799,-14190],[-4575,-4886],[-20073,3405],[-20216,16365],[-7101,23951],[-21184,34902],[-14287,26709],[-22036,15792],[556,10709],[-4622,7747],[-19157,18999],[-14790,8843],[323277,251962],[96167,75124],[42817,34389],[120873,93074],[238005,76784],[491383,158701],[70484,24663],[196832,63947],[49354,37510],[100872,78736],[225223,174211],[59235,46635],[8722,-8908],[18489,-9312],[7902,-15081],[9361,-4528],[11920,6752],[9591,9996],[21558,12491],[81932,68608]],[[62584555,77325906],[16807,-5083],[19181,3319],[13123,6733],[20208,15952],[27191,36143],[1050,11881],[7558,21699],[966,14639],[-14576,42623],[1043,16026],[11036,8656],[24275,-1003],[22181,-17452],[12658,-5872],[12543,3648],[5580,8732],[10565,43071],[701,63459],[-2672,41216],[1043,32193],[2672,20960],[-17767,3582],[-3600,4296],[8130,23678],[4141,3113],[6956,31537],[14479,12455],[11531,14384],[17203,10308],[25583,7502],[12581,-1726],[18871,-12032],[11310,-17199],[15931,-646],[14691,12444],[-5016,29220],[-25157,18915],[-9430,3227],[-14464,20837],[-1666,19122],[13008,18042],[6935,22121],[-625,7522],[10079,16965],[11957,13091],[26633,7079],[9448,5580],[18647,1932],[30190,12913],[19698,34594],[8593,7737],[20972,4315],[49301,-9865],[19296,-5366],[28940,-4275],[17621,-4943],[15939,10],[27683,-3639],[13009,-9020],[38591,-6649],[37336,-9876],[23276,2364],[22653,-5795],[21808,-12238],[29152,-30938],[21396,-14601],[10276,-10963],[19296,-10521],[16982,-13964],[9020,-12464],[15095,-9020],[49065,-39518],[25575,-3657],[22440,-10964],[55983,-11824],[27250,-3658],[20133,-5804],[26207,2776],[29565,10942],[10907,649],[19707,-6246],[20971,4079],[34381,-4529],[28506,-16346],[11327,-3226],[24319,2354],[40480,9237],[14682,7314],[38150,15061],[14250,13541],[27889,2374],[22858,-1492],[10901,-5796],[26008,-26191],[15735,-18259],[2101,-19112],[12802,-20181],[18671,-10934],[12583,-4295],[18246,-13101],[14302,-4041],[31192,-3029],[23689,-7305],[15307,-15681],[17400,-11168],[27676,-8375],[65614,-9658],[65826,-7090],[59949,-3873],[31240,-3873],[15504,853],[28308,24917],[31879,19318],[26420,13954],[15094,12453],[25476,30928],[22538,35852],[12795,16542],[1264,11807],[10070,18689],[16366,13739],[16784,22976],[11546,29642],[13420,14171],[10086,21259],[11120,4079],[10070,21466],[25812,28339],[13419,1923],[11959,8158],[7140,10738],[24106,16767],[18664,-1706],[20134,3666],[28726,-206],[38393,-5777],[18246,-14816],[14066,-22114],[24967,-31349],[10489,-31360],[7,-12669],[-16548,-52638],[-4392,-22338],[7345,-20836],[19503,-5364],[40668,9687],[15727,-2148],[16357,-18465],[3569,-18473],[-6689,-29241],[639,-24467],[-14241,-52206],[-20529,-53705],[-38753,-76691],[-18008,-27937],[-27030,-33947],[-13831,-13541],[-15078,-19122],[-20743,-19347],[-14660,-20622],[-29738,-28591],[-19464,-40822],[3357,-18905],[868,-45539],[2100,-21259],[16579,-47470],[26207,-44874],[28294,-22544],[21586,-24907],[13206,-18680],[33538,-39940],[9637,-9236],[40852,-22113],[13199,-4070],[24928,-14180],[21152,-14816],[27654,-22329],[10474,-21484],[-6280,-21475],[-18002,-15474],[-25757,-15473],[-20940,-1726],[-16967,15464],[-12156,18681],[-14660,12032],[-31627,4492],[-14028,-4942],[-11320,-9237],[-8784,-24926],[-624,-11169],[10482,-17396],[9645,-24701],[33103,-35430],[6287,-14169],[22827,-20828],[31833,-17602],[12986,-5159],[18640,-26200],[11936,-4933],[11517,-14827],[12360,-42528],[-6698,-1931],[-10048,-11816],[-19051,-225],[-12978,-10954],[4612,-15895],[10467,-11600],[18214,-12669],[42505,-12669],[42504,-4933],[14021,-8629],[72447,-19927],[19464,-11168],[31611,-8807],[46256,-9892],[7628,-2926],[26078,-1802],[27212,-7745],[24699,215],[35167,3854],[35120,-2757],[7354,-2241],[19683,6884],[19296,-4492],[23338,1800],[16289,4679],[7664,-1921],[57987,10850],[23239,6649],[51219,9940],[43181,13541],[15803,3179],[28931,9528],[15391,10653],[19486,9284],[25104,26005],[20308,12462],[20301,6236],[19052,-12021],[17598,-30928],[12559,-14629],[-4811,-432],[31642,-47865],[17166,-20406],[27424,-22544],[18840,-6657],[24068,-207],[29732,7727],[15071,-422],[8159,-9883],[-1675,-13532],[-20505,-54344],[-9005,-32008],[-22173,-90222],[-10253,-20200],[-13381,-45754],[-8160,-37812],[-11708,-22336],[-3348,-15042],[-16313,-32007],[-35766,-34800],[-6691,214],[-17363,-14394],[-19455,-7315],[-12545,-8589],[-8159,-12679],[-411,-18690],[13191,-27496],[10039,-7295],[39750,-8797],[28444,1726],[27822,11824],[23214,5159],[7947,-3864],[8161,-12463],[3142,-19543],[2307,-45754],[-2930,-8600],[-4804,-39312],[-3972,-7727],[-9402,-41036],[-12961,-44254],[-8153,-14601],[-25926,-32664],[-21533,-18905],[-32625,-12895],[-13586,2571],[-19875,16101],[-12338,15895],[-8167,18044],[-8572,8590],[-14013,-10],[-8989,-10747],[-27150,-69396],[-7522,-30937],[1271,-25122],[18825,-25340],[23223,-41233],[7528,-10315]],[[65976900,75515832],[-503,-44977],[-1956,-55469],[1759,-31368],[541,-200835],[-85,-116790],[426,-241318],[-654,-103605],[-3067,-344538],[-502,-97650],[-1180,-73738],[-1965,-211712],[-388,-960487],[-1247,-50068],[-207,-135902],[838,-122737],[-395,-176967],[411,-252928],[-116,-278894],[632,-157622],[-403,-306332]],[[65968839,71551895],[-73431,-1464],[-88349,-140],[-407411,-2514],[-282897,-1696],[-270323,-2712],[-479638,611],[-193498,27],[-261076,779],[-75622,-760],[-496986,1144],[-278421,732],[-109700,2214],[-350841,665]],[[62600646,71548781],[-2642,312373],[-4780,480318],[-1598,197964],[-1218,64679],[-3790,370834],[1415,58396],[-296,582086],[-540,18277],[-724,528848],[-2283,42978],[-1591,151320],[-38,172026],[1127,198386],[531,284248]],[[62584219,75011514],[4370,86],[91,125614],[944,107056],[-974,37220],[-69,527340],[-586,210999],[830,250864],[-1666,191663],[-3252,314744],[656,282028],[-8,266778]],[[95372991,40541724],[11000,11085],[2588,17497],[5114,7204],[19609,5550],[5479,14855],[-729,12003],[-14616,15304],[245,12004],[-19990,19769],[2300,10878],[15741,13167],[7498,45116],[-1218,36582],[4422,26136],[6813,15399],[14843,2024],[10390,-11383],[7428,-1501],[5725,6799],[-2315,20209],[-15276,13119],[-898,9528],[7177,6667],[11920,-1105],[13153,-17106],[14996,-9856],[1536,-11787],[11243,-8056],[13184,3264],[7025,10108],[-18580,24233],[747,15726],[9308,9388],[1812,12265],[-2939,22319],[7559,7793],[10337,-2710],[5648,-18343],[11715,-3929],[13594,5982],[5632,10373],[-3775,7352],[-20027,11479],[2360,9828],[11457,10128],[8776,20086],[-3905,11244],[-7491,3113],[-4019,-5851],[306,-18484],[-11334,-5833],[-6699,6002],[-7673,16505],[-12057,11404],[-17544,24907],[-10961,7651],[-6699,14405],[-3547,16786],[-8509,2720],[1674,-9209],[9445,-8121],[-15991,-9229],[-10597,3452],[-33490,23557],[-18634,22657],[-15223,2551],[-13640,-8254],[-6943,12455],[12545,19055],[4871,17855],[-243,16206],[-11815,16354],[-1583,8403],[7916,14104],[1188,16664],[-3029,26539],[-9240,26858],[2192,13503],[8281,17556],[1096,16955],[-9500,22657]],[[95360150,41304304],[52247,749],[223458,423],[59919,777],[179539,1211],[76010,122],[120380,919],[191785,-151],[320067,2241],[205143,1838],[216745,1314]],[[97005443,41313747],[200105,2090],[199343,3302],[202861,1650],[239892,2401],[151366,151],[121407,1499],[35699,-281],[259249,4624],[70248,-5459]],[[98485613,41323724],[15156,-12987],[13578,-24308],[906,-12191],[-10115,-3123],[-19981,13513],[-7369,225],[-10877,-10100],[-906,-7952],[10733,-16036],[16722,1745],[9904,-14789],[-4773,-11309],[-19479,4014],[-12680,-2241],[-4697,3751],[3837,12387],[-3501,4360],[-8222,-5728],[2504,-12060],[-5845,-24879],[-11189,-11949],[-3204,-9470],[9781,1988],[16600,-7493],[1242,-7737],[-16107,-4370],[-8601,-9574],[-2718,-17472],[17628,-10896],[-6903,-14957],[-693,-14686],[-8890,-11376],[-17340,20125],[-6294,1744],[-15513,-8777],[-9035,-16683],[-237,-13213],[-7672,-12463],[11348,-1848],[-860,-8946],[9431,-5458],[7255,-10522],[-4369,-15398],[-18260,-770],[-6761,-4482],[373,-18409],[20644,-18942],[7498,-2185],[13351,25160],[9803,-2175],[-6172,-39115],[2937,-19741],[-13350,1942],[-11844,-19234],[6280,-10624],[17065,-15502],[-9697,-8018],[-11525,-18849],[951,-16908],[8678,-704],[27234,4726],[11404,21326],[9507,11093],[11942,-1988],[1971,-16665],[6554,-8177],[10086,-1237],[4528,-17040],[-4818,-5823],[-22149,-5448],[-18032,6995],[-9066,7043],[-1965,-34032],[6661,-21606],[8434,-2580],[11135,5833],[4241,-7426],[-5253,-7850],[-4377,-35747],[-3569,-15943],[12971,-3966],[11272,1340],[9012,12847],[5207,-6132],[-8380,-23838],[1346,-9960],[9257,-15885],[7276,-6397],[14652,3723],[6266,10419],[11713,-1537],[-2290,-9191],[-14006,-14901],[-6896,-11863],[-350,-18212],[2954,-18090],[5579,-10437],[8434,-4548],[-10238,-10521],[-4218,-31472],[-2542,-4849],[-21222,-18408],[-8813,-16909],[-458,-30373],[5503,-16975],[1363,-17067],[-7953,-14939],[-16359,-12856],[731,-10804],[20704,8853],[26429,22994],[11774,20171],[10146,6500],[18597,2119],[11478,-14291],[2078,-19037],[8282,-25470],[6454,-30497],[5457,-14302],[10505,-7604],[18238,6217],[10063,-3695],[-4789,-13241],[-11532,-15380],[-8980,-16796],[-10049,-12199],[-16006,-301],[-19981,27412],[-13785,5842],[-14211,-12651],[-4643,-43082],[-548,-32493],[9476,-39518],[-1370,-18671],[-13054,-11938],[-29503,-1529],[-9819,-6892],[-1531,-8694],[34573,-26547],[7916,-22807],[-487,-19056],[-13884,-19355],[-18268,-5103],[-30820,-3301],[-11814,-6752],[-5602,-11102],[-5845,-33161],[-6334,-23407],[-6819,-12153],[-23383,-26108],[-34589,-26997],[-7551,-17405],[7308,-40212],[486,-39162],[-7063,-18006],[-6090,-4951],[-15634,1595],[-4254,5655],[-16183,46851],[-11685,15482],[-15587,-10728],[-7293,-21044],[2587,-14441],[7438,-16195],[52201,-41206],[53373,-68402],[14386,-14929],[11769,-6246],[54987,-12904],[15732,-2156],[23338,-9847],[19221,-24176],[8821,-31510],[-723,-16363],[-5122,-14799],[-12089,-13972],[-18070,-12210],[-14811,-4240],[-14829,414],[-23055,5542],[-6067,15924],[-1834,29370],[-6713,26915],[-5922,33721],[-12857,8365],[-18443,-9611],[-11943,-16373],[-1986,-17490],[708,-48961],[-9014,-34501],[-11447,-18605],[-37131,-42755],[-38743,-35419],[-16814,-18005],[-16928,-22656],[-9378,-20407],[-9257,-33609],[-4384,-81025],[-10229,-22656],[-15224,-14254],[-43478,-24008],[-47376,-19955],[-26794,-26858],[-50428,-63008],[-24601,-37211],[-7551,-38562],[-16684,-16656],[-10352,-3150],[-29472,-1801],[-30570,-10502],[-17902,-9903],[-28621,-24758],[-18998,-25958],[-4994,-11703],[-17780,-69920],[-15345,-40652],[-13033,-25658],[-41528,-65119],[-15102,-26108],[-22531,-45613],[-9621,-27158],[-19486,-67520],[-25575,-114624],[-9493,-67971],[-8768,-51464],[-8769,-37211],[-13031,-33760],[-18877,-43513],[-28011,-60317],[-39703,-88077],[-60894,-107890],[-34588,-52216],[-57544,-78322],[-29945,-36386]],[[97363499,37772531],[19425,80151],[4659,15146],[34655,147267],[16320,74262],[26307,131589],[11935,85375],[4262,41863],[1462,28958],[-373,69470],[-2193,26858],[-5237,38102],[-12300,51016],[-18878,51614],[-26914,49065],[-25583,36160],[-36780,36912],[-17903,67819],[-7916,13955],[-8770,7952],[-38019,15145],[-53823,19703],[-13633,-104],[-77312,10699],[-26527,8254],[-68529,14901],[-51760,7512],[-31207,31883],[-15986,37512],[-31284,28836],[-32265,235],[-13170,-4895],[-38986,-23238],[-47193,-17818],[-70028,31883],[-59379,25320],[-47954,36574],[-23597,100333],[-23869,15154],[-56054,-2964],[-59378,-31875],[-45671,-7501],[-10656,17817],[5327,42191],[14462,44076],[-19029,16879],[-23595,-1875],[-44149,-48755],[-36537,-30947],[-22842,15005],[-7612,33760],[6851,55318],[9043,23857],[851,22507],[-18755,16955],[-30721,1388],[-21312,-14066],[-23596,-7502],[-12941,0],[-19029,6564],[-25118,5626],[-27411,-6565],[-22073,-20620],[-18269,-14068],[-15984,-1874],[-10656,8439],[-8373,15005],[-6852,55318],[-6088,21570],[-9134,21569],[-7612,27195],[4566,25320],[18268,23445],[19791,14065],[12141,34699],[-8334,35635],[-15225,30009],[1523,17817],[33492,28133],[-2284,21570],[-18268,11252],[-23596,-3751],[-19790,-19692],[-21313,-14067],[-35023,4688],[-25879,23445],[-12941,40325],[9134,18754],[762,15006],[-19791,20630],[-6850,14068],[-12179,8438],[-29685,-10314],[-4567,-18757],[-10658,-7501],[-14461,3750],[-35775,18757],[-45983,7652],[-51980,-16758],[-36011,-273],[-12180,6566],[-10655,14065],[-7612,15942],[-41111,17819],[-16443,15680],[-4110,12452],[2284,15006],[16745,4689],[28172,2812],[11418,15004],[-6850,20631],[-15224,3751],[-25499,-15398],[-11875,10016],[23977,34679],[8821,26971],[19800,48764],[0,19694],[7611,936],[15985,-8440],[22834,1876],[19029,16880],[12941,32814],[19791,23444],[5327,18755],[-4567,22507],[-19790,28132],[-11417,25321],[-3045,21569],[-6089,24382],[-57857,34698],[-41865,5625],[-20551,18757],[-24358,26444],[-20559,2927],[-28477,-11216],[-4292,-4174],[-19097,4990],[-8008,12182],[5434,11338],[14204,5541],[29601,5599],[12141,14985],[1478,21550],[-19868,19676],[-25102,5223],[-23095,1116],[-11798,7596],[-15984,15950],[-3807,28135],[3023,35935],[-14059,26510],[-3708,22292]],[[68600544,35754533],[1605,-9181],[-8593,-7520],[1636,-5393],[16534,-8374],[10183,1932],[-5799,-11385],[8981,-11187],[-1803,-11385],[4385,-29879],[14736,1989],[-3746,19497],[26459,6461],[11783,-3649],[8783,3226],[5794,10110],[17568,8392],[15314,-1303],[-1918,-15023],[6995,-19346],[-3791,-15905],[-10176,-13972],[1392,-9857],[-7169,-12501],[2891,-16297],[7301,-2401],[11629,12613],[31087,18577],[21168,1078],[12271,-14938],[12498,-2889],[9180,13008],[-13122,37079],[8311,9021],[11761,3658],[11105,-21062],[17066,-18072],[-2573,-17817],[13237,-5233],[350,-14104],[-10382,-12042],[2397,-11168],[14379,-4296],[105232,73270],[368049,249213],[492321,333389],[465146,315100],[194525,131918],[68133,44779],[178836,121478],[107600,72397],[150302,102067]],[[71000395,37018606],[217132,-204068],[126971,-118798],[17089,-11853],[187615,-175205],[79908,-73427],[16639,-14217],[72858,-68037],[160052,-148073],[7948,-6386],[47649,-46093],[77176,-72368],[27424,-27260],[165829,-152709],[107540,-101025],[70788,-65166],[21358,-17433],[22281,-23538],[-97012,-142609],[4711,114]],[[72334351,35550455],[-43836,-37165],[-423858,-408167],[2610,-199717],[7078,-309382],[3677,-176283],[-18748,-68354],[-21709,-96432],[-21464,-85281],[-72068,-291282],[-25986,-102959],[-44422,-183605],[-13260,-46102],[-38478,-153392],[-19029,-84727],[-12385,-41694]],[[71592473,33265913],[-103778,-92147],[-359107,-324076],[-46765,-41731],[-481199,-434057],[-224013,-201951],[-183170,-164926],[-313421,-280067],[-223488,-199557],[-359600,-333304],[-387895,-359271],[-64487,-59174],[-17833,-14610],[-74603,-71413]],[[68753114,30689629],[-63223,75941],[-29382,32589],[-29092,36853],[-228633,273363],[-527388,631403]],[[67875396,31739778],[-166095,198386],[-56609,68748],[-84718,109138],[-17135,18457],[-1918,5354],[-167481,214657],[-119573,147699],[-133921,166221],[-43737,53096],[-200919,248061],[98306,157978],[41742,66160]],[[67023338,33193733],[57569,91254],[5328,9659],[78782,124011],[21646,35223],[71299,113114],[43144,69490],[91911,145898],[42452,68177],[48365,75144],[38903,61884],[141647,227345],[17552,27148],[27265,52160],[28104,58056],[82000,132012],[21550,38298],[20179,28470],[96166,155456],[303397,494029],[60893,98308],[121545,198245],[23817,39537],[133692,217882]],[[78143561,73977309],[7717,-16778],[22478,-29061],[35304,-27007],[9575,-11133],[8693,-17658],[11439,-34726],[5406,-47451],[4224,-12950],[17087,-30150],[2361,-30731],[-85,-38215],[7141,-22478],[21487,-22375],[19768,-14113],[20461,-8853],[16410,422],[10406,-4276],[28217,-3338],[32661,5054],[29017,14638],[22706,25302],[6400,9996],[15338,10109],[13131,4511],[68809,9996],[8024,3724],[17804,15483],[11416,16992],[18063,38740],[20217,33834],[17248,39266],[9759,32793],[3913,43907],[6621,8158],[7109,33029],[-1149,21485],[1560,37454],[-11759,48840],[1758,28077],[5754,15613],[2009,26840],[4004,20921],[18429,37707],[10322,29129],[20483,51483],[11418,20640],[2450,18859],[-6607,-18295],[-799,16129],[13169,21840],[8623,41526],[16670,16382],[11775,3761],[13717,9574],[24935,3864],[66847,-6049],[27441,-11197],[27881,-6554],[16022,-7005],[39056,-4090],[12667,-5626],[41186,-31350],[14813,-19638],[17568,-6339],[32243,-17085],[72373,-49647],[13686,-4069],[50040,-44405],[12436,-4641],[31354,2795],[31033,-8787],[22820,11618],[19401,6940],[9995,-10],[35531,6828],[73735,21757],[10063,1294],[24876,13551],[34641,14732],[11713,2062],[17775,8187],[49065,27712],[9460,7577],[38654,39143],[28398,42706],[9112,22310],[3692,27589],[4369,94],[7177,29962],[10627,22976],[-586,7952],[8950,30787],[9166,15342],[-6220,17171],[7277,9761],[2086,10645],[-3189,19411],[16335,36911],[-9120,35664],[6342,27935],[-2010,4334],[2063,24504],[9834,54230],[4179,7297],[19462,9293],[8381,7146],[-24029,-1313],[-38014,-8346],[-14752,-26680],[-9072,-5663],[-8717,-12313],[-8471,-21325],[-6059,-8291],[-1858,-16945],[5991,6039],[-1408,-28358],[-24853,1481],[-21838,11432],[-12276,26192],[-13572,47920],[16836,34801],[11882,7512],[22401,-2421],[14532,6135],[495,6648],[29906,19000],[38424,-2129],[16442,8993],[64927,-15117],[15018,20724],[-18952,101195],[-2649,18363],[11288,36658],[7003,11589],[20490,11366],[58078,8029],[34192,-7035],[25537,-9105],[9523,13448],[15138,9602],[37063,639],[36398,-19515],[24283,-23098],[37929,-28358],[33986,-10391],[11044,-5232],[35912,-2439],[14547,21185],[-1439,48830],[-11531,41946],[-12423,17067],[-5237,23267],[10488,11825],[7484,-3611],[48334,-3666],[26892,-4736],[35037,-318],[54682,-15784],[36415,-19093],[33249,-2315],[33156,-10897],[28543,-11836],[36735,-18793],[13687,-552],[14857,-8610],[7505,-46],[13610,-7615],[42344,23707],[38037,15022],[25012,19207],[15435,19421],[16450,36517],[2368,22966],[-2445,29727],[10436,19862],[18801,10560],[13261,130],[21449,-4182],[17698,-18717],[4117,-14527],[-5968,-36741],[-16609,-32345],[-5578,-34237],[3843,-13008],[16076,-4360],[27166,7756],[26345,13119],[20452,13531],[39604,10682],[12591,-1856],[3463,7417],[-10680,-384],[11022,17826],[18336,13083],[6729,1125],[14509,15445],[11555,26707],[9460,37597],[5489,36732],[-36728,6826],[-24213,38619],[-8426,16270],[-4498,21635],[12545,26988],[8007,1445],[12315,-11291],[12468,-2907],[17052,-9368],[22864,-17228],[15627,-6948],[16205,-591],[10315,-6011],[22142,-20106],[6608,-53332],[-15080,-29887],[9012,-41627],[31992,10540],[33623,14545],[79877,15276],[26161,2842],[34831,10007],[43898,6244],[34785,1089],[-21548,-11282],[11774,2776],[34528,18353],[12528,9067],[9120,14161],[-305,12726],[16692,24578],[20849,46617],[5860,33536],[16442,33890],[8829,48324],[6318,7259],[23057,6283],[27972,-3451],[28477,-21026],[18694,-16532],[38446,-20312],[27616,-19066],[74428,-59342],[9971,-4792],[28164,-21232],[39740,-19326],[14790,-629],[9218,-4952],[23595,-19636],[4713,-7213],[-15187,9435],[29412,-23145],[13078,-14948],[16235,-10203],[37618,-32859],[39361,-28875],[44559,-13625],[21693,7953],[22561,-13382],[50237,-70090],[18154,-18090]],[[82199976,75047225],[-10435,-6733],[-19046,-17856],[-13761,-26031],[-2459,-20867],[-5488,-21708],[-11554,-14218],[-1249,-20386],[6311,-5758],[-2786,-14330],[91,-35598],[-1514,-137197],[-3366,-388511],[396,-142119],[-882,-69461],[365,-44525],[-1400,-65166],[434,-187968],[-831,-15689],[-1346,-231395],[-289,-110227],[-2270,-438147],[-7748,0],[3859,-453218],[-6751,-719300],[1127,-39115],[-4674,-320513]],[[82114710,71501189],[-7499,-489443]],[[82107211,71011746],[-154480,-24579],[-347497,-56296],[-575265,-93112],[-75379,-10953],[-841083,-137842],[-121962,-20547],[-76490,-12088],[-299887,-48708],[-422969,-68645],[-65232,-12566],[-214508,-33648],[-129216,-21119]],[[78783243,70471643],[-75623,-9780],[-29929,-5628],[-76931,-11141],[-63917,-11478],[-31443,-4453],[-329931,-49721],[-70294,-9237],[616,72921],[-709,42143],[-281,159084],[-433,44611],[517,80855],[-525,132169]],[[78104360,70901988],[92,70605],[1947,148807],[-151,46710],[1865,41496],[280,95101],[2459,203721],[2399,97191],[1598,140611],[2946,114934],[-2566,70960],[2086,54569],[791,102791],[-1498,89501],[1772,100839],[-988,21033],[1552,30038],[974,149903],[1461,284165],[868,46964],[7810,322866],[4475,149707],[3716,224877],[-739,104844],[6052,363088]],[[53608469,38172267],[-168655,1021],[-254581,2842],[-249939,4604],[471,185212],[2132,276850],[571,132835],[3219,410557],[1629,272368],[1332,136897],[815,136043],[-151610,985],[-236930,2072],[-127094,-1333]],[[52429829,39733220],[7756,831761],[18725,1199141]],[[52456310,41764122],[128578,-2381],[129094,-1078],[406841,-4417],[650301,-7043],[356540,-3854],[547749,-5927],[408271,-4445],[427626,-4623],[388732,-4164]],[[55900042,41726190],[-1780,-52356],[1773,-58236],[7,-339287],[3944,-842469],[1613,-136399],[486877,4858],[455137,6235],[394172,5440],[643832,8861],[660683,9538],[258161,2504]],[[58804461,40334879],[-435,-53191],[-4528,-950406],[303,-134008],[1569,-351273],[1445,-34519],[-1163,-27524],[3424,-768478],[755,-73784],[8478,-482570],[8587,-471091]],[[58822896,36988035],[-320827,176377],[-342886,188484],[-325424,178889],[-109763,60561],[-97543,53145],[-242030,132544],[-146459,77789],[-137551,70624],[-234746,121423],[-16213,6086],[-775711,85675],[-247208,6039],[-309911,4211],[-624847,7324],[-464620,5458],[-294285,3461],[-524403,6142]],[[70561305,23927513],[3547,4576],[377967,355651],[272112,257419],[300200,284127],[107653,102574],[168394,157931],[90519,85534],[308640,290467],[6181,7090]],[[72196518,25472882],[-1339,-22039],[5785,-8673],[19767,12313],[10519,-8562],[-3813,-19815],[12583,-3498],[24091,23059],[13366,20697],[10138,4670],[5633,-12491],[0,-13785],[-4461,-8543],[-18382,8506],[-5557,-7793],[10315,-8581],[4566,-11564],[15240,-10530],[6431,4989],[1507,23069],[5199,4369],[16534,-13785],[6272,-27],[8097,25189],[8496,12350],[4962,13785],[6098,3169],[11768,-11815],[4521,-15662],[17469,-16795],[9842,15426],[11425,2063],[10908,-9648],[-3578,-20032],[28088,-25760],[4832,7745],[3654,22947],[9454,-1331],[2230,-9115],[-5061,-11375],[4155,-9724],[12766,-517],[7489,11347],[-8060,8863],[-1187,8223],[5753,8646],[20332,-8260],[3295,-18954],[6873,2654],[3427,18502],[4407,3209],[20140,355],[8395,18877],[29238,25752],[38470,10391],[9764,-1998],[6280,-14864],[-7991,-16682],[10481,-11920],[15535,-299],[10231,3975],[3311,-4472],[-8389,-8451],[-10420,188],[-11631,-6291],[2086,-8123],[9757,-4537],[25425,3132],[8585,5850],[3753,-9274],[-15179,-19814],[8078,-10878],[18291,10503],[6400,-4343],[-15338,-15229],[7741,-28697],[1188,-11346],[7757,-7409],[14295,6331],[-4400,10268],[4422,6565],[7042,-1932],[4246,-21138],[-5175,-13504],[2931,-15342],[13669,-8571],[1935,6846],[-5283,14000],[9203,8965],[13624,-10483],[1461,-7025],[-6698,-12004],[1447,-10793],[6805,179],[8388,13053],[9743,8572],[6218,-3049],[168,-15772],[10231,-1960],[9743,26614],[4063,-2551],[2238,-14554],[5383,-3837],[10404,8309],[1577,33948],[-18847,-8356],[-3168,4690],[1926,17217],[-11988,10232],[-10969,21539],[15917,6753],[7801,20236],[8883,-843],[19654,-16364],[-14234,-13936],[-2991,-10831],[5785,-6752],[20863,6190],[6021,15886],[-13084,5523],[99,11656],[27318,24748],[15840,-18849],[343,-9893],[-15330,-11300],[16244,-1191],[12711,15547],[13617,-6574],[2300,-9630],[8760,-1303],[6219,10128],[16526,2504],[-9181,-11976],[-3569,-11207],[9894,-5598],[25607,17387],[-9447,8092],[7224,15820],[-15765,4098],[-11591,12932],[13593,5046],[16929,-5364],[11038,3731],[10915,26437],[13639,-14554],[11372,3075],[5992,-7062],[-4263,-19429],[12004,-4136],[6241,4417],[960,9978],[7024,11843],[-3896,11338],[6782,2644],[13266,-10353],[6951,7990],[8455,958],[-1431,-8459],[-21350,-9612],[-3341,-4953],[3257,-11834],[7392,-9630],[14088,-6133],[6752,-15925],[-2200,-9142],[-11775,-122],[-4681,-5617],[-374,-12286],[-7313,-1547],[-3327,6837],[-6577,-3189],[1485,-8384],[10420,-11432],[-60,-6977],[-11153,-6329],[-20224,4763],[-1355,-15331],[4910,-5674],[13458,3751],[23550,2185],[6676,-8544],[-305,-17011],[4210,-8073],[24029,-3114],[12530,5307],[5222,13505],[14706,14704],[15740,27393],[19296,7060],[7635,5721],[-2976,16815],[10763,3451],[30735,-13524],[13444,-9500],[8859,-15106],[-334,-10579],[-9957,-3039],[-9020,5356],[-9416,-4323],[2216,-34763],[11805,-13626],[7246,-12896],[5352,-18004],[9841,-21917],[-11805,-11750],[7482,-26005],[2269,-35118],[10762,-7699],[8480,13672],[-1751,11909],[6592,7484],[15307,-16364],[17865,-12792],[19715,1586],[13312,-16561],[12986,-6611],[10222,-22695],[10163,-15829],[15391,-17191],[28787,-3066],[22021,2907],[25521,-1735],[-6591,-13663],[5358,-6255],[-221,-12603],[15559,-20368],[11927,-1576],[6974,-7119],[35918,-20546],[14775,2129],[11144,-5035],[20925,20423],[91,10373],[15932,1153],[13663,7417],[48767,12839],[10635,-3433],[26770,-3291],[10611,-15108],[24715,8356],[19729,384],[10634,5139],[8487,-10042],[9721,4744],[6294,-12387],[7863,1124],[5633,-15106],[26420,1565],[22372,-17376],[15740,3563],[22174,-14658],[14530,-2409],[14851,-8066],[5693,-12566],[13603,-14976],[12277,-2504],[3394,-9874],[12096,-4868],[2108,-8562],[28164,-27720],[26838,282],[12888,-10888],[17597,-1286],[6996,7541],[495,-10550],[10238,-9041],[1985,8094],[20035,11685],[1378,12931],[12186,-6273],[5176,17761],[-11303,15744],[-891,18465],[-10397,1961],[-11463,14939],[-13101,11590],[4675,18550],[13876,7230],[20817,25947],[7657,4531],[25660,25132],[9880,5524],[12072,-1482],[14287,17790],[-7741,7643],[8441,5822],[4986,-4042],[20864,-4397],[9995,1669],[11151,-7906],[8084,-11824],[12978,-8703],[8684,-478],[5245,12603]],[[75014680,23276265],[-7270,-1977],[-300175,-50988],[-159345,-30467],[-116512,-19075],[-11380,-525],[-390110,-69424],[-16571,-3685],[-184332,-31847],[-153530,-26080],[-64333,-11544],[-62486,-9284],[-42937,-8505],[-87626,-14911],[-559980,-94284],[-286621,-48849],[-88151,-13878],[-8982,-12961],[12255,-10663],[13145,-3920],[-4247,-21203],[4742,-32127],[14196,-10523],[11502,-28413],[-656,-8563],[-13654,-26313],[-10542,-4548],[-23315,3703],[-9120,-9217],[-4735,-11966],[2171,-6659],[29243,-9340],[22692,-22741],[2610,-25893],[5108,-4435],[35127,-2353],[6150,-10880],[-4764,-17386],[4065,-11036],[24638,-14742],[3692,-8826],[-1081,-22487],[6433,-7428],[11296,930],[14234,-4324],[3120,-19244],[6059,-9903],[6897,9500],[6476,160],[27114,-18549],[-959,-12960],[-10307,-12763],[-23778,-15643],[3934,-11712],[29740,-6809],[41597,-17348],[35183,-29258],[27576,2202],[39414,-10456],[23634,-261],[16883,-11113],[5207,-16740],[9674,-2335],[7993,-19356],[7314,-3572],[36789,4013],[3584,-16749],[-4444,-15894],[6705,-12595],[3639,-16655],[7885,-4577],[3593,-9181],[18724,-7548],[7696,1445],[19098,-5450],[5352,-8533],[9765,-5111],[4849,10240],[13632,6134],[6296,-1276],[13153,13419],[13937,-7765],[4240,8937],[-8633,6340],[16982,4014],[12179,-5954],[2017,13063],[5953,1696],[30849,-16176],[4393,-9537],[-4187,-19966],[12926,-26566],[67858,18090],[83486,-3273],[-46028,-142721],[-455243,-392562],[-222552,-192299],[-96183,-84325],[-31063,-25771],[-53389,-46672],[-65103,-55807],[-30880,-13674],[-169766,-77290],[-145094,-66929],[-104061,-46637],[-130891,-60241],[-70964,-80105],[-29671,-31773],[-25895,-8842],[-18200,216],[-76497,65408],[-52788,36367],[-2442,8328],[-25066,23257]],[[71434835,20992981],[-6713,14460],[-11235,40607],[13967,11394],[5678,9312],[-1789,20564],[-5259,11141],[-9690,967],[-2862,9724],[-8389,4914],[-41210,6395],[-30423,7306],[-33934,760],[-22781,-4024],[-9743,1239],[-11951,11272],[-2185,14319],[-1491,67549],[-6600,14741],[-10756,56492],[-3896,28855],[-12210,27580],[-10830,10513],[-15422,7014],[-11860,-2008],[-7930,-7398],[-5298,-15643],[5807,-36319],[-928,-16148],[-5436,-11292],[-24266,-15689],[-18808,-5364],[-18846,1651],[-26475,16495],[-21517,19477],[-19952,10373],[-14453,-375],[-10681,4172],[-14141,21758],[-1911,11600],[9126,26641],[10642,5617],[28787,-9715],[11411,6724],[8144,14320],[1279,23070],[-16374,36966],[-6652,22433],[-7643,36704],[-8729,25029],[-12225,26942],[-15102,15830],[-13031,-1519],[-37967,-16252],[-17903,-13129],[-4209,-14799],[5334,-6902],[15742,-1237],[30904,17406],[13321,-1201],[8866,-15099],[678,-26070],[-12361,-29390],[-18565,-26679],[-27676,-33703],[-14531,-7305],[-19304,1078],[-7322,9781],[6881,15089],[14173,11346],[14463,5787],[8349,7942],[3357,12426],[-6371,10109],[-22096,9124],[-39429,9810],[-30783,10924],[-20300,20678],[-10732,1857],[-10641,-9246],[-2620,-9330],[-509,-30526],[-3524,-35063],[-852,-24034],[-6737,-17322],[-12521,-74],[-17181,26454],[-11531,13654],[-12338,4191],[-30911,-3375],[-14577,6236],[-29336,24082],[-14957,5748],[-26558,15089],[-19089,15567],[-38905,37821],[-6842,12481],[-10253,26736],[-12484,4971],[-9049,-15154],[-6447,-60366],[-9356,-42077],[-6836,-12163],[-15648,-11384],[-6767,-245],[-9203,9201],[-4887,31170],[-3432,6377],[-15179,8431],[-26884,4323],[-17729,-2495],[-23162,2665],[-15300,6133],[-18054,-2167],[-5960,-11901],[-1706,-23593],[-10001,-21682],[1354,-10606],[12431,-13945],[13930,-9255],[11471,-142],[18236,-6610],[12546,-9267],[921,-9274],[-7376,-1462],[-10406,12585],[-8761,4267],[-8526,-4193],[-1971,-13362],[5344,-34990],[-1295,-17113],[-9178,-17125],[-12339,-14048],[-10413,-694],[-5610,8882],[3159,28357],[-617,29204],[3417,16514],[-7969,14853],[-11738,-1641],[-27287,11508],[-32509,7474],[-8967,5804],[-13124,1040],[-15177,-5317],[-8669,-10250],[-9248,-23949],[-18171,-2045],[-8501,-4746],[-8959,4409],[1697,30130],[-1028,32371],[-6964,35430],[-6401,3658],[-26285,-722],[-18359,6291],[-3333,10401],[5503,3497],[35829,7306],[13677,18578],[12879,8157],[20362,7531],[-1934,30244],[12644,32953],[-2656,9434],[-13017,-1529],[-6546,-10860],[-20391,-17948],[-22409,-2748],[-26087,-11779],[-6340,-215],[-17561,8468],[-12156,1115],[-8265,-10427],[-5229,-13439],[973,-27663],[-3257,-12745],[-14273,-1960],[-14073,8459],[-13747,-150],[-9119,7118],[-45,14029],[4771,19918],[19221,32549],[18282,19038],[-805,27243],[-4583,12125],[1279,11966],[12893,27449],[-7412,22956],[-9075,8919],[-17195,-15475],[-3211,-26726],[-16350,-17490],[-21632,-1809],[-8274,10324],[-4818,25687],[-5391,7943],[-2122,13729],[-8085,4435],[-21214,3086],[-6613,9031],[17430,36525],[-3076,7793],[-10017,1032],[-14546,-5833],[-11957,-10840],[-18330,-12070],[-21730,-8317],[-13185,-8206],[-5289,-10270],[-9638,-3356],[-13746,5777],[-12719,15370],[-5099,15529],[-8907,58349],[3396,36572],[9157,42828],[1970,42717],[-4963,11403],[-16965,6593],[-8031,-6397],[-8739,-15482],[-5708,-32859],[-14121,-35607],[-9210,-11357],[-20223,-5318],[-10772,1951],[-19661,-2795],[-46066,-19308],[-36132,-28350],[-15041,-9048],[-50619,-26437],[-9591,-8608],[-17309,-26408],[-22256,-19394],[-22682,-6433],[-25189,-11853],[-10390,3255],[-9918,13512],[-5989,28744],[-13557,31368],[-7369,9650],[-25742,15848],[-19235,1088],[-36757,8478],[-11487,4275],[-10725,8769]],[[69301622,21826757],[74056,123795],[170259,286649],[66244,109176],[15788,17688],[42944,77215],[48784,83321],[42863,68777],[18457,36263],[309630,516077],[108665,177184],[266099,445667],[21017,33255],[74877,125689]],[[58541688,13431120],[350620,-3647],[23192,149],[230278,-2737],[138960,-2738],[448810,-4014],[-997,404236],[76,233403],[-874,169006]],[[59731753,14224778],[362927,3311],[8952,834],[685,20623],[59767,853],[55923,-441],[184988,2916],[155752,1473],[34838,-169],[455250,5280],[747,-184368],[269844,1586],[-449,191858],[281024,3808],[1287,-143827],[229531,-4501],[-5380,-235446],[2900,-138576],[-2110,-83180],[-2952,-275519]],[[61825277,13391293],[-78714,929],[-22995,-498],[19303,-31049],[3418,-10897],[373,-24870],[15505,-30711],[11623,-8881],[21093,-7963],[8768,779],[20529,8562],[8769,873],[10352,-9913],[11943,-26277],[5624,-468],[33242,12425],[17011,-5168],[8443,-8974],[4445,-20180],[3920,-38402],[27630,-47087],[11950,-6507],[14151,-262],[47709,-10260],[26855,-17827],[-7,-350897],[266,-214301],[-7,-306463],[195058,-526],[1126,-156458],[366,-110282],[4156,-551890],[370379,5382],[-1926,-148421],[-1887,-105650],[31,-59417],[-5412,-201912],[-8534,-627831],[-7299,-528390],[-1865,-23547],[-3106,-154649],[-678,-181338],[-3074,-367757],[7,-38740],[-2283,-110752]],[[62591535,8874828],[-232768,535],[-245470,1491],[-63026,-281],[-64934,1041],[-47391,-3639],[-2991,2355],[-101710,-975],[-132816,1106],[-508465,2062],[-143191,1192],[-682110,3282],[-134988,2503],[-435603,2551],[-144638,1886],[-5147,-2157],[-33903,365],[-1353,-1726],[-76986,4090],[-114061,993],[-105904,236],[-163827,1461],[-4429,-936],[-64952,711],[-203287,527],[-332556,1575]],[[58545029,8895076],[-806,675714],[1217,164803],[-4528,560115],[2633,612058],[906,22732],[-655,802509],[-433,298747],[516,48212],[-1172,1059732],[420,112449],[-1439,178973]],[[55083281,26289599],[101122,2045]],[[55184403,26291644],[219,-145599],[-2754,-96459],[-229,-349303],[-1531,-245979],[198,-160013],[-296,-137308],[2809,-183111],[-5611,48],[1911,-205655],[3989,-507907],[168,-40559],[3288,-418089],[1644,-103240],[4612,-135433],[1644,-243],[-4848,-468465],[-4727,-445998],[4460,-151224],[6919,-295635]],[[55196268,22201472],[-659899,-7398],[-144896,-5645],[-248691,-3115],[-530227,-6339],[-93365,-1312],[-81789,-450],[-324807,-3901],[-484952,-5290],[-142294,-581],[-551006,-6480],[-395961,-4586],[-4514,2345],[-203926,-3001],[-73271,-676],[-213630,-2870],[-459947,-6047],[-161734,-338],[-249233,-3114],[-167076,-1303],[-75075,-1247],[-210671,-2496]],[[49719304,22137628],[-236,211095],[62,378242],[-526,168845],[-951,593499],[769,14621],[-1575,56951],[1416,240801],[152,252478],[-784,403064],[-291,279721],[-440,236918],[289,97913],[-716,1010885],[-1293,63384],[-572,214412]],[[49714608,26360457],[375138,-3394],[491672,-4371],[5770,1314],[243994,-4090],[241307,-5054],[174248,2785],[174750,-17199],[-152,-1068],[53412,-4820],[59089,-3376],[206697,244],[239099,-207],[47087,-487],[309599,-742],[155546,517],[476602,-4203],[49903,-242],[190544,1499],[62257,-2616],[215899,-4164],[212298,-788],[176204,-2418],[311504,843],[102735,-7587],[71292,-4528],[78780,-19],[4424,1152],[254833,-4566],[358809,-3780],[25333,507]],[[49469458,62696149],[-938,-210999],[-1460,-1829],[-1363,-98701],[-7885,-394185],[-2428,-200317],[-2506,-300717],[-1560,-145917],[-1331,-333615],[-3418,-584449],[-2163,-286245],[-1848,-207408],[-366,-84926],[-4119,-501634],[-2009,-285084],[-951,-79400],[-4590,-84550],[-722,-112544],[-351,-157021],[-853,-58122]],[[49428597,58568486],[-210838,-872],[-7383,-479],[-151358,-225],[-263915,-919]],[[48795103,58565991],[-78720,-5448],[-37253,-1866],[-54331,186],[-107814,-1687],[-73735,-554],[-173607,-402],[-159177,788],[-291766,2841],[-91546,2166],[-190119,2728],[-73962,442],[-352500,4266],[-214613,1792],[-179973,2832],[-95040,1979],[-34990,111],[-461698,7653],[-86256,2008],[-161575,2821],[-51767,5628],[-304249,178]],[[45520412,58594453],[3920,360715],[5427,11797],[1386,281811],[-1271,30618],[122,466056],[-411,75988],[1065,130885],[-267,121892],[1166,148243],[2101,179350],[5419,514303],[3722,308546],[433,86595],[1644,74319],[6015,596706],[5456,501222],[53,236272]],[[45556392,62719771],[268230,393],[109115,-2634],[626789,-4445],[31009,-685],[184571,-1407],[154205,-824],[438041,-3076],[119343,-254],[239901,-1435],[193025,985],[418561,-159],[142652,-469],[226853,281],[441824,-5824],[10154,-319],[308793,-3750]],[[76716124,45561849],[277418,152547],[30659,16457],[149297,82310],[122190,67838],[96061,48511],[120836,66160],[35905,23848],[36240,80602],[5799,10756],[56054,90129],[45366,95728],[61914,100211],[55215,74919],[11402,27740],[19152,85122],[22020,65719],[48297,132142],[5540,11544],[40738,68504],[39657,52422],[2908,5353],[56549,131261],[27660,88845],[37640,61097],[63406,59952],[50862,54980],[13770,16544],[10975,25826],[11457,71954],[6659,17819],[66321,86199],[24975,45502],[5640,7259],[84368,82890],[93731,74683],[79938,54860],[70287,54813],[39276,26277],[39825,24072],[107211,66469],[101298,74769],[37624,32851],[37443,22910],[71024,40783],[60537,26464]],[[79197268,48169490],[12665,-26285],[11389,-8965],[-55,-15727],[-3805,-9433],[-13731,-15221],[1658,-13579],[16883,-10654],[-2877,-18793],[5884,-6808],[20636,-9846],[13716,-29709],[8358,-12547],[19835,-14104],[11845,-13363],[16312,-4962],[16845,930],[21792,5176],[8328,-1257],[4871,-11328],[40190,-10484],[10824,-5392],[15117,-16684],[14788,3273],[10041,-17509],[-3981,-14619],[14295,-38346],[21092,-11843],[6066,-10026],[5398,-28920],[5107,-12510],[8380,-2758],[8060,-9302],[-13547,-11835],[-17546,20547],[-4802,2035],[-435,-19751],[-4864,-22759],[-7032,-3385],[11737,-7840],[11121,-16467],[-7164,-1519],[-15497,-14189],[-16023,-112],[-2535,-12182],[6121,-12838],[-18224,-6959],[13626,-10672],[2245,-5926],[-12307,-15361],[-16396,-2691],[-442,-18316],[-14477,-15632],[-8267,-15736],[10094,-12359],[-3380,-9190],[4735,-17519],[-7178,-17385],[989,-5646],[15741,-5665],[3601,-11534],[7854,-4586],[17721,-3039],[1005,-15182],[14219,-253],[10359,4069],[678,-15191],[-4827,-2775],[-1918,-17021],[9089,740],[-9895,-7061],[9080,-19233],[4453,-22817],[12156,4286],[-4300,-16092],[14797,2766],[-7361,-17471],[17477,-4050],[2421,-4989],[-12286,-2654],[-6614,3234],[-4453,-12782],[7901,-16936],[11135,12286],[4263,-7484],[9171,-2400],[7819,-10438],[-1272,-9932],[16206,-9031],[4849,-10953],[-329,-20124],[-9149,-18540],[-14408,-4801],[-3540,-17536],[5352,-10832],[1391,-24091],[7362,-8993],[13054,9200],[-100,-10073],[7925,-18661],[11447,11694],[7924,-3761],[-7376,-6611],[2620,-13214],[10815,-6169],[586,5270],[12947,8327],[8306,-2945],[-2947,-11207],[11731,-8243],[-6348,-8373],[2458,-6294],[11561,1914],[6281,-7858],[-11076,-11600],[14319,-5674],[4444,-6977],[8861,-1408],[15854,-9198],[6205,-9631],[6804,-1305],[1949,-11946],[-10048,-2626],[9241,-14601],[-3021,-11573],[14165,582],[8425,-6236],[1469,-7794],[-14545,-9527],[2276,-6705],[-6851,-7867],[3189,-10025],[11480,-5186],[12475,-301],[-441,-18539],[-12378,3639],[-1636,-11760],[10473,-4905],[-12124,-11966],[45,-16523],[-8404,-5890],[4833,-14076],[-2138,-8319],[2124,-34706],[15443,-23697],[-1110,-15755],[-8974,8674],[-4667,-2513],[5595,-14124],[10664,2768],[13145,-3471],[1744,-4903],[-15421,-6527],[-10034,-9509],[6205,-8150],[8053,10897],[8372,4136],[6517,-5364],[5145,-12754],[-7733,-10597],[9103,-2767],[-403,-13597],[9781,3207],[2488,-7521]],[[79750260,46755889],[-1971,-9002],[-11730,-25114],[-21198,-18334],[-8373,-13916],[1089,-7015],[8868,2475],[-3069,-17901],[-8647,-5928],[3076,-12199],[-12232,-4633],[-1370,-13616],[24898,-9978],[-3730,-10457],[12110,-4848],[587,-7624],[-15461,-3038],[-2427,-18607],[9111,-730],[-3639,-10560],[-5282,357],[-2329,-14479],[-19531,-1127],[1164,-16241],[-5428,-611],[-5381,17574],[-13267,-13757],[-336,-17396],[-10375,2908],[-19188,-7436],[3197,-12061],[-5374,-7979],[4636,-11283],[9888,-7679],[-9539,-5131],[21375,-7333],[6073,-24260],[18056,-25386],[10596,-2390],[-306,-8224],[18513,-11563],[6530,11281],[4766,-3236],[-2231,-13437],[6972,-2682],[-2817,-14583],[7193,-20659],[9842,6516],[4446,-14572],[9849,-16017],[8983,-4145],[-1302,-11975],[-8244,1912],[-6195,-13025],[6417,-4539],[1758,-9781],[8775,-3742],[5960,6274],[-8394,5242],[1903,11563],[13427,-11440],[-1394,-10373],[14288,-25657],[-7444,-272],[4497,-9735],[-5038,-5729],[975,-13194],[-9729,-14856],[15909,-12022],[-13975,-17001],[2154,-10446],[-5016,-6752],[-11836,3826],[2367,-10081],[-4042,-6378],[-15581,-937],[-5085,-4417],[-936,-12472],[8129,4735],[228,-7184],[-10329,-9480],[13314,-9790],[-4789,-11826],[-13358,-2045],[-632,-24776],[3121,-12856],[12505,-18971],[6296,-3733],[19273,-20349],[-10878,-7813],[6951,-8954],[4681,-16516],[18702,-8608],[3836,-10184],[-4148,-11394],[8662,-2625],[-4430,-12998],[12849,-8206],[-13527,-7681],[5137,-16674],[-6415,-3046],[-1858,-11329],[4720,-9021],[-845,-19009],[-9614,-29043],[-10420,-8524],[1324,-16384],[-7429,-7258],[-17438,-5138],[-2307,-10241],[-8297,-12117],[3875,-10128],[-12355,6687],[-8518,-9762],[4667,-9172],[-9659,-8740],[2657,-9097],[-3267,-17854],[-9370,-6697],[-9460,3499],[-3571,-9415],[8092,-9124],[-10938,-5853],[-13359,6828],[-5237,-2654],[11867,-33020],[-11204,-243],[5304,-10700],[-2929,-7315],[4140,-10681],[11174,3517],[2946,-13345],[-11236,-751],[-303,-14919],[12673,-10944],[-14705,-22103],[11554,-7343],[9713,-19478],[14811,-3376],[-6919,-14197],[9370,-7851],[3799,-12096],[7247,-4061],[-4203,-9556],[8070,-2447],[-7232,-12707],[2543,-14743],[-5405,-11402],[-2161,-18869],[11310,-7042],[-3074,-8825],[-11144,-93],[-6616,-5289],[6174,-15493],[-228,-14994],[3569,-11733],[10230,-15575],[-9233,-14443],[14372,5168],[7825,-14733],[-4110,-12031],[6553,-5186],[-4659,-11854],[-320,-15604],[9760,-10184],[-13756,-15136],[16595,-8938],[13251,4324],[6424,-5168],[564,-13419],[-7620,-4622],[10353,-17594],[-9949,-11366],[-3257,-27363],[-4963,-4164],[-5230,7043],[-549,-25405],[-8082,-11948],[-6531,2167],[-2071,-11545],[12605,-195],[4795,-7897],[-4103,-13242],[5817,-6638],[8889,364],[-3912,-24841],[5549,-10916],[-11493,5468],[-15665,-21513],[1666,-12173],[-5679,-4753],[7476,-10672],[-24777,-3723],[-8227,-22995],[7200,-5813],[10116,4763],[-7208,-13805],[13260,-17563],[-3205,-14751],[7641,-6800],[-21305,-3141],[-13305,-19084],[-3021,-15999],[4718,-7107],[-3273,-15681],[3905,-6001],[-29982,3367],[-4111,-11845],[-16023,-2222],[-1118,-29146],[9256,-4088],[-4355,-6546],[-7001,4998],[-13138,-3385],[189,-16149],[7453,-1547],[-2588,-23473],[-7208,-5139],[10382,-13278],[-3069,-17640],[1051,-11948],[-7239,-12453],[-20025,-1650],[-12948,-7005],[5092,-23277],[-13138,-3169],[-2596,-8374],[6220,-4998],[-7254,-18897],[4178,-8224],[17484,1885],[4035,-16646],[6219,-10305],[10868,-6912],[1927,-20369],[-8625,-24672],[-68,-15623],[-9211,-4971],[8693,-12614],[10382,-6863],[7993,2007],[18071,-11226],[12605,-1922],[15489,-15803],[-1911,-19870],[17600,-8928],[7709,1809],[3564,-6798],[-4157,-13194],[13213,-7193],[9942,-9725],[3228,-9058],[6873,-413],[4552,-11282],[4566,3544],[8304,-13718],[-3600,-6209],[-13494,-2495],[1239,-7821],[19486,-10024],[7102,5214],[16662,-4052],[1386,-8064],[-4818,-11806],[11821,-2504],[8008,-8168],[-11708,-7990],[-1712,-13458],[3273,-10521],[-2558,-13823],[8738,-24785],[12796,-10654],[-1217,-6104],[-12210,-12202],[-1241,-10259],[6827,-33084],[-9202,-37876],[-7642,-6433],[6736,-17285],[-5670,-6855],[4613,-8307],[-3312,-19197],[9432,-14086],[-2338,-17601],[762,-18821],[-5535,-23718],[11555,-3376],[11906,14921],[10930,-5637],[6607,-12602],[-1766,-10213],[-8602,-11506],[3586,-7156],[9567,131],[3404,10466],[10997,9106],[10194,-2026],[6590,-18296],[17439,-7689],[6311,-10259],[-9796,-9173],[2055,-6696],[-7665,-13868],[8737,-3939],[-1217,-7409],[-16418,526],[-1272,-12295],[-7772,-15521],[9675,-8757],[10360,8693],[7444,-8168],[-9758,-9107],[22995,-32896],[7566,1274],[1956,-7717],[18549,-12576],[-7451,-13382],[106,-13241],[8359,4566],[14378,-18221],[11806,-5250],[-7429,-7174],[-396,-13702],[-11632,-5457],[2597,-17622],[-12407,4417],[-6166,-4744],[4271,-11703],[9239,-1904],[5542,-19337],[14463,3863],[8959,-3226],[5830,9087],[13123,-16777],[-6607,-15877],[-3944,-17788],[2163,-5721],[12848,-4248],[-2694,-18203],[10731,2588],[1143,-11636],[12132,3056],[5543,-4594],[3075,-12801],[-7149,-43138],[199,-15820],[-6806,-8525],[-12916,-253],[-10261,-20996],[11471,-6706],[-822,-8375],[-10832,-9104],[6768,-10026],[-6242,-9161],[-6608,9471],[389,15913],[-14097,-2007],[3441,-12191],[-2855,-15304],[-10298,-9791],[12232,-3618],[3538,-6219],[-8547,-13493],[3593,-10307],[11022,-3244],[16525,-19759],[-4909,-17312],[6279,-9377],[10541,12341],[6380,1228],[30280,-15962],[-5785,-20564],[10527,-17733],[-6859,-15286],[11333,-15998],[15566,-8328],[-3378,-9650],[-16137,-4388],[-5055,-6659],[-5062,-21616],[8754,-4417],[6005,8469],[23133,3910],[3060,14301],[4628,2373],[9864,-10992],[-5679,-11046],[-2853,-16092],[-11365,-853],[-8457,-18484],[26589,-23163],[-1127,-8627],[10383,-12042],[-1812,-9865],[12064,-17452],[6828,7249],[2893,-8974],[24867,-12285],[12841,7952],[8745,-6265],[6684,7033],[2344,12529],[17377,9210],[23872,750],[8585,6124],[5078,-3762],[-2437,-32436],[-10990,-3470],[-24,-8112],[9469,-21475],[10565,4538],[24199,29878],[11973,-5956],[14340,-24325],[4986,-393],[6204,12443],[10276,1294],[3562,8535],[8091,2851],[17020,-19478],[16091,-11675],[11464,-4773],[8623,-9875],[-380,-12680],[-11007,-23032],[4088,-14243],[10716,1274],[29587,11329],[10428,-4220],[1196,-7071],[-6150,-10249],[-13299,-6397],[-6263,-30664],[3143,-19093],[-28308,-43608],[-9690,-9434],[-34367,-8008],[-21830,4566],[-4887,9623],[4666,8112],[-3097,9331],[-19137,271],[-20833,-23434],[-13838,8889],[-5344,9894],[3533,10072],[-3541,7426],[-15862,8572],[-5632,-1800],[-2147,-12116],[2291,-15924],[-7902,-12764],[-34754,-15839],[-12750,-25384],[1971,-16965],[7376,-14330],[3761,-18887],[6994,-7332],[17812,5336],[3250,-13260],[-13839,-19141],[-17027,-14066],[-9909,-13916],[2404,-12154],[14494,-24224],[-877,-19627],[-12346,-10399],[-7679,6966],[227,19385],[-22796,26586],[-9295,-4005],[-1171,-8177],[5799,-33451],[6843,-19495],[-6393,-14292],[-13123,7848],[-12460,1295],[-5535,-13307],[10909,-16177],[4421,-15379],[-10944,-18081],[-4819,-15454],[-6941,5036],[-23042,29437],[-6189,3976],[-22211,3104],[-21593,-3957],[-11060,-15295],[-3754,-15830],[-17772,-9022],[-22310,-3779],[-45252,14629],[-14090,-18174],[-1194,-13944],[8897,-21983],[16053,-19026],[-874,-23323],[-10101,-30965],[6995,-17124],[19083,-14535],[4117,-21617],[-1652,-26923],[-5213,-14142],[-259,-33807],[6941,-15641],[-6013,-27693],[-6287,-6423],[-16069,-516],[-17202,10436],[-12971,-3253],[-3302,-6621],[495,-21879],[8760,-31209],[587,-14667],[19721,-16645],[31680,-2551],[8846,-4753],[5617,-14170],[-5223,-13354],[-6666,-3057],[-16152,-17808],[-16800,-10119],[-20117,-7596],[-18780,-2898],[-24357,-10184],[-3281,-11582],[2109,-19580],[-3524,-3668]],[[79854846,42135387],[-31216,60019],[-11205,16869],[-1841,8225],[2169,22273],[35174,54222],[11531,10249],[10612,15915],[2025,24082],[-8313,43015],[-10625,25949],[-4461,27270],[29229,21699],[9118,11619],[4020,19657],[-11989,25273],[-14218,8609],[-14425,13316],[-15102,17986],[-9469,24636],[-15870,3197],[-27882,-11337],[-23086,-21138],[-32913,-13653],[-24502,6892],[-13747,14799],[859,21024],[11456,34059],[6083,29137],[6705,12810],[-1500,25987],[-12322,22422],[-15293,18521],[-11919,10606],[-14167,3573],[-25056,-7671],[-7080,2898],[-22584,22722],[-17203,7765],[-6119,8112],[-18839,8806],[-17477,412],[-7383,-9003],[-13031,-33863],[-7483,-72536],[-2534,-41947],[-12903,-16552],[-28102,-9725],[-11997,-10390],[-20627,-29615],[-2915,-15652],[-19570,-4632],[-19493,20650],[-10839,5691],[-14310,1922],[-26764,-4237],[-18717,-8104],[-50001,-29736],[-34299,-23313],[-27432,-6696],[-25621,6921],[-8746,-235],[-25888,-11299],[-22454,-20978],[-16700,-8375],[-20544,3132],[-21108,6424],[-13107,8880],[-4530,12876],[-14606,11695],[-15094,-2918],[-755,-13757],[9424,-33140],[-1065,-7943],[-9181,-13767],[-38263,-34397],[-28772,-1942],[-24518,11264],[-6873,5598],[-9234,24109],[-12521,15296],[-17255,1331],[-12606,-2662],[-18214,3404],[-14470,15425],[-11699,48306],[-10535,17902],[-30226,26483],[-31103,7540],[-8631,8993],[4514,10981]],[[78754623,42593622],[21678,-844],[17180,10999],[4543,11395],[-1110,19919],[-9469,12209],[-594,7006],[-23406,12510],[-33545,25676],[-21221,7473],[-8731,11469],[-4377,26925],[13229,24663],[20514,20509],[8274,4164],[29016,5382],[-260,13186],[-15740,30290],[-4202,20743],[10557,30318],[10474,12050],[17424,5440],[29510,-3742],[14950,4061],[21085,-6939],[28719,-17265],[29068,-22488],[15849,-3667],[19775,9678],[11273,9181],[3912,10878],[-45,16102],[-4332,18454],[2268,13889],[5969,9565],[-5298,13251],[-7878,4915],[-28439,-26118],[-14728,-6002],[-14394,-646],[-18482,7099],[-7878,8862],[-10161,3648],[-5442,9087],[-10398,31847],[23588,22768],[9440,18006],[8258,9181],[-21488,45867],[-8084,21109],[-3303,45021],[6326,40354],[13701,36056],[-2475,11685],[-7146,4146],[-16496,-13879],[-9750,-15323],[-14698,-12005],[-14995,2599],[-38988,20255],[-28811,13270],[-13480,10991],[-15741,24569],[-6446,13561],[-18748,19787],[-19943,3348],[-10946,-9895],[-7650,-15950],[-14994,-18352],[-16198,-9736],[-21702,-2230],[-7239,21062],[3151,28236],[-1354,19946],[-6226,16871],[-18368,15201],[-27593,16918],[-17688,15155],[-36597,41486],[-12842,10663],[-20429,30741],[-6607,17938],[8326,8029],[30204,-11207],[19943,-478],[12148,3667],[11995,16438],[656,14863],[-6220,13337],[-23968,38935],[-18626,47134],[-26124,54136],[-25309,41273],[-13618,10680],[-15101,1155],[-10802,6208],[-27926,6414],[-7034,5692],[-13031,20481],[-7809,22085],[563,15491],[5890,31368],[-1682,12868],[-7962,10145],[-7032,2045],[-17691,-7165],[-30750,-26116],[-10764,-2372],[-17788,3140],[-13632,7091],[-16876,19159],[-1553,14863],[6585,16241],[9300,9969],[11084,3621],[17316,-4042],[34665,3703],[27660,13073],[11783,14864],[6395,19224],[2396,17358],[-608,19835],[-4239,26258],[-10726,33525],[-5838,31133],[-10771,46159],[-12954,10868],[-36826,-57],[-29259,9735],[-21505,18858],[-21259,9509],[-11181,-937],[-7094,-9274],[1865,-17105],[14256,-22695],[4225,-11610],[1005,-25555],[-8875,-14956],[-16114,197],[-11602,14798],[-7519,47001],[-15186,11929],[-22950,1519],[-5556,-3095],[-8616,-16121],[4840,-23576],[21017,-14684],[6090,-11451],[60,-12791],[-6188,-17753],[-12324,-7398],[-20140,-2663],[-23353,4651],[-28971,10643],[-17407,3874],[-24228,10108],[-13663,11525],[-13383,26136],[-17962,8479],[-29039,-9547],[-17621,-1153],[-9713,4754],[-20841,19375],[-22112,37736],[-16777,43380],[-9462,38243],[-7313,54785],[1079,20462],[6645,36067],[3663,33094],[-2483,23717],[-9399,28892],[-2687,22423],[9346,14704],[17972,15811],[5244,14066],[-1949,14161],[-13252,18878],[-34961,43249],[-19394,3424],[-10983,-4090],[-7003,-8655],[-411,-20987],[5366,-17322],[19464,-38457],[10366,-26746],[305,-16776],[-6150,-19310],[-13915,-15614],[-20750,-6432],[-25941,4538],[-13031,7691],[-8714,10652],[-11997,39630],[-23504,38834],[-50498,51277],[-6386,14076],[108,12472],[6081,21195],[-5206,16664],[-13823,10832],[-25523,5954],[-24661,-385],[-20468,5759],[-19616,16072],[-3677,15568],[-9361,19280],[-27518,30404],[-15504,3197],[-16342,-5421],[-35212,-18754],[-29611,-2692],[-22925,-4812],[-19608,9725],[-10847,13214],[-3456,12884],[3334,16477],[17712,51296],[3175,23868],[-8190,28526],[-13923,12126],[-16677,-243],[-7916,-10710],[-403,-15454],[-5876,-17396],[-19304,-23191],[-15917,-12285],[-15405,-4576],[-20553,5034],[-31726,18204],[-8980,15773],[-1996,33666],[6045,22749],[-4713,20848],[-18450,24381],[-27448,-10652],[-32296,-4389],[-54965,13045],[-26176,4286],[-32875,2297],[-43304,666],[-61479,-6086],[-8571,1350],[-18154,27374],[-29733,13709],[-11325,967],[-30500,-4351],[-17135,-6921],[-24715,-15877],[-8631,-797],[-8647,19262],[-1759,20416],[-5670,18398],[-11487,10343],[-34322,5243],[-32394,-3001],[-35448,3976],[-20704,8731],[-20308,13336],[-16275,2840],[-58671,-7004],[-16273,5186],[-5146,7089],[-822,12773],[14653,18558],[25043,22282],[10610,26004],[-2086,11535],[9043,21615],[25187,9397],[14646,10288],[22112,20246],[13175,19786],[9957,28360],[2489,16983],[-4020,62990],[-1430,41637],[-5998,57777],[1043,19515],[11379,37379],[8806,16064],[7628,5740],[11600,665],[24600,-11900],[20979,1809],[7162,3302],[29375,23126],[6636,12677],[2665,28163]],[[97363499,37772531],[-5542,-8946],[-36201,-39182],[-49575,-43689],[-45953,-33873],[-65102,-32213],[-39703,-23406],[-71246,-51315],[-39223,-30760],[-21678,-18445],[-58551,-55179],[-38758,-38899],[-48593,-57767],[-22653,-38112],[-17293,-47863],[-9256,-62719],[3044,-55066],[17538,-70520],[31185,-42313],[52978,-38112],[129224,-88215],[27523,-30609],[19852,-28809],[10847,-33460],[244,-7503],[-15103,-36010],[-8037,-37510],[7795,-55367],[8889,-23548],[21435,-22357],[113262,-41861],[15475,-7952],[14372,-13504],[9012,-15755],[4627,-15455],[38243,-75912],[48957,-76673],[12302,-21456],[37389,-59709],[28985,-48914],[14736,-22206],[53953,-91518],[9743,-25207],[14735,-57467],[11326,-63318],[8647,-41403],[3776,-28349],[18025,-68870],[3059,-18381],[57165,-303380],[49058,-268654],[-87102,-7013],[-81422,9536],[-92079,32026],[-71512,45266],[-65067,63272],[-64509,89951],[-236245,33526],[-715259,-28],[-255405,36],[-697350,-276109],[-951497,-457587],[0,7841],[-796917,-387039]],[[93554069,34408498],[5237,513357],[6157,129168],[-1050,105060],[-4308,321675],[821,45736],[-1879,87512],[-1029,111212],[-6309,510589],[-1439,151733],[-541,3328],[-98,111240],[-2550,183579],[-1264,59951],[-2680,240512],[-358,57240],[-1225,35036],[-2101,188042],[-221,67465],[-2793,149752],[-2054,224739],[-2939,163107],[-943,114165],[-131013,243],[-127413,-440],[-250335,-3526],[-120403,-722],[-11959,591],[-235,23303]],[[92889145,38002145],[-807,77376],[-3060,226210],[-3052,198639],[-3189,246682],[-2254,140937],[-1149,116201],[-944,31855],[-876,158344],[-1216,149866],[-2194,329778],[-3112,410482],[1492,9340]],[[92868784,40097855],[2603,6715],[9964,57],[3036,-10728],[6791,3657],[91,15052],[10512,11112],[10245,1434],[19700,-16402],[12276,6969],[17431,-11967],[12757,-365],[-813,-13410],[-9005,-7633],[-9918,-2008],[1873,-8721],[16662,-15680],[14736,-6395],[-3996,-9641],[10495,-4286],[2886,-9181],[14637,4643],[1112,9800],[18678,-15118],[22052,-2474],[914,-8920],[10161,-1191],[-3326,-17694],[8190,1912],[13283,-14648],[-12568,-1809],[4964,-4792],[12666,2569],[14004,-12013],[13680,5767],[425,-13972],[9774,8768],[3760,-9490],[6546,9640],[10740,6188],[15940,-11806],[753,11470],[7786,122],[7864,-10035],[10360,-1473],[6545,-10475],[20415,48],[9873,14751],[-1492,7784],[21822,27129],[13100,253],[7794,-6096],[2939,8104],[-6927,10211],[7893,5825],[3525,12377],[6735,-8148],[11845,-2945],[7992,-7380],[9781,14535],[-6842,1914],[4337,6967],[8093,-4548],[15741,2522],[5586,-5982],[7125,4012],[1644,10110],[10306,-1190],[-6309,10268],[16227,3703],[13725,-6141],[14400,12734],[24207,-18220],[-5002,-12125],[19257,7998],[9729,-12162],[20322,-4530],[2704,-4792],[-3708,-14752],[8625,-2418],[2891,-8046],[9775,-2523],[4620,13775],[8715,-3450],[10207,2532],[281,11291],[8763,15172],[10108,-1181],[-6448,-11562],[1302,-7324],[13046,8157],[8814,-5307],[11745,8467],[-4963,12164],[17043,10175],[7750,-976],[9628,18465],[11274,-15519],[1689,-11094],[-3997,-15624],[-8273,-7333],[11600,-1436],[4955,9904],[12521,-301],[5054,11291],[14927,-8862],[-5922,-10108],[2512,-6866],[20019,0],[8479,6977],[-2557,15830],[-8616,2372],[1492,9079],[18564,-4727],[312,-11881],[10695,-5927],[4659,27243],[8912,-8047],[8328,412],[-3272,17330],[-10360,11348],[20658,207],[8623,-12886],[4331,15990],[8282,4173],[-5205,18004],[13578,-927],[2262,6142],[-9249,11188],[10642,8102],[12231,-825],[3860,-13871],[15359,-7793],[-3562,-7060],[8381,-2946],[15794,17284],[381,7793],[7078,1960],[6357,-7944],[18443,1033],[2939,8824],[8044,0],[4621,12323],[-8380,7380],[20803,10727],[12764,-6188],[2117,-7324],[12521,-517],[7900,-9639],[12468,46],[3038,19599],[20178,-6236],[5967,3508],[14158,-9903],[4240,-9856],[8282,6085],[5686,-13766],[21283,12473],[-5922,7896],[11219,2213],[15650,9763],[13487,-2646],[8816,4024],[12476,37755],[-5055,6705],[2983,15633],[12415,-9978],[5474,9922],[1407,26379],[14387,21474],[31467,5000],[4377,14648],[-2565,8392],[9871,3282],[5694,-11056],[9348,8637],[-6508,11348],[4650,13221],[6136,4961],[1918,15437],[-6348,2944],[-343,13747],[20459,10617],[-6354,16411],[-12666,1969],[250,14883],[11166,890],[2292,21381],[6364,8056],[-14181,22976],[-5908,-1267],[2002,13786],[-8570,8336],[8532,11394],[-3509,8308],[5938,21720],[-4902,22468],[6942,4220],[-8761,12736],[11372,5214],[1188,9791],[-8854,10053],[6791,6713],[4605,14986],[-3600,5589],[2694,17284],[11456,13175],[4223,13074],[9714,2635],[19653,-5769],[3745,10411],[6645,-12905],[20339,-15322],[9415,10709],[7803,-1238],[-8625,-8975],[4955,-5149],[14203,10186],[-67,-8226],[10351,6491],[11510,-9435],[6339,1004],[2330,12594],[10778,10260],[2338,15444],[23557,9294],[5967,-10054],[-4962,-8008],[7544,-4717],[13617,394],[-12971,-8824],[3661,-10410],[12780,-441],[6441,-7876],[10618,8861],[-2070,-13045],[7741,-2840],[16616,13429],[7482,-2224],[-2954,9697],[14327,0],[432,-7933],[9378,-1436],[12841,-21296],[23270,7418],[1089,-13204],[5578,-2100],[17013,12030],[-4932,9070],[3942,12143],[-3288,4812],[5069,9415],[24069,-7907],[6796,4400],[-3699,11092],[11258,-55],[-3409,5673],[-14272,3208],[7147,10484],[15086,-2458],[12583,3564],[7452,8253],[11311,-6612],[10192,7549],[7505,-19336],[12757,-9510],[14622,26736],[7657,3893],[-18275,25863],[699,5401],[12386,1380],[-3806,-15755],[8632,5486],[5792,19956],[-9226,1302],[1173,14358],[18611,2889],[-937,10465],[5061,4183],[7916,-5984],[13238,8900],[4636,-5410],[14,-11919],[6813,796],[-4020,22357],[7392,84],[2215,-8112],[3753,15315],[6455,10606],[5357,-10701],[6097,9988],[-9149,9321],[-6636,-2700],[-6585,7671],[7544,14142],[44665,10267],[8715,-1696],[16692,-13486],[1592,-19055],[3996,-6564],[20849,6095],[10428,9875],[-5785,17358],[8883,10166],[10564,-6968],[9272,-20640],[21091,-14162],[8405,-11787],[-5847,-26342],[5291,-12998],[13557,-2363],[14622,10728],[8486,31322],[8709,7962],[6781,-779],[13534,-14338],[14577,4941],[3547,13608],[-3836,9444],[-16114,12227],[2329,4924],[27227,4286],[11555,-2794],[10390,-8328],[7596,-16965],[-1789,-34753],[-2977,-21466],[14478,-7465],[43852,-18023],[-1881,-10091],[-22058,-8028],[-2658,-7990],[22867,-12079],[14598,-4875],[21291,6536],[24929,-16683],[26093,-1839],[8524,-3151],[5115,6491],[16907,-8459],[35660,2306],[1781,-4698],[-14598,-2467],[-8921,-10315],[4474,-15267],[11037,-3104],[14600,12895],[20286,-4548],[2459,9339],[9879,-422],[-6272,-14901],[3326,-11918],[7993,-779],[1697,14395],[9690,19646],[12141,-3769],[12764,-12595],[12766,-2016],[5115,7371],[11562,-7231],[1963,-18409],[5253,-1041],[6029,9389],[7854,356],[4621,-7587],[-4484,-9021],[7750,-5318],[7330,9696],[11562,4098],[4377,12643],[6164,-3556],[10072,3405],[13783,-5401],[18801,-15211],[12872,-16861],[2466,-17902]],[[70233794,51418553],[82984,-105060],[187879,-232127],[77078,-96590],[70940,-86802],[33834,-43061],[31841,-37830],[34032,-42453],[53663,-68664],[81939,55872],[23415,15267],[177574,118132],[214217,144426]],[[71303190,51039663],[2519,-2681],[67601,-118601],[51104,-90973],[111406,-190978],[76154,-137891],[7301,-14770],[35295,-52535],[27890,-53396],[34054,-59530],[10352,-15679],[188429,-325849],[186252,-322032],[48974,-85957],[351784,-608240],[305809,-535601],[77746,-138397]],[[72885860,48286553],[-379133,-236844],[-40243,-26192],[-231809,-144118],[-308982,-192018],[-410601,-254981],[-67044,-51962],[-46203,-138688],[-31839,-98466],[-2413,-3245],[-60058,-178074],[-27264,-78323],[-2344,-9996],[-92955,-265212],[-41286,-130229],[-45853,-139870],[-59166,-183410],[-15079,-42171],[-5031,-19178]],[[71018557,46093576],[-7330,3883],[-95276,42781],[-15353,8318],[-196704,89773],[-16402,8656],[-112958,52055],[-11600,9621],[-98763,46421],[-84368,38871],[-167581,79372],[-140405,65946],[-38303,17385],[-291865,137168],[-129559,60121],[-79078,37661],[-186548,87561],[-117944,55770],[-146617,68579],[-323362,151647],[-97955,45539],[-104647,25788],[-81515,18794],[-167564,41964],[-259156,62898],[-304629,76587],[-33994,10138],[-106747,25254],[-195844,29719],[-43562,5364],[-249231,38824]],[[67113697,47536034],[-10428,31256],[-79794,185651],[-91690,182088],[-15171,30730],[-87793,163333],[-3715,-85],[-60323,114465],[-9080,20078],[-35662,70651],[-41795,85273],[-93822,155005],[-21031,33561],[-82779,135201]],[[66480614,48743241],[-8075,163894],[-8388,126469],[51356,32746]],[[66515507,49066350],[71801,44694],[-479,975],[129011,81812],[45533,27617],[270041,172355],[105119,64968],[106853,67971],[50878,31237],[75621,50218],[20203,14554],[109061,69677],[47870,29061],[60025,38525],[54242,33337],[123265,77264],[248142,156674],[233962,148439],[122876,79018],[174454,113423],[96555,56802],[48799,30065],[534991,337992],[204017,129310],[163750,103062],[124993,77226],[36225,23688],[68734,43213],[132801,84849],[60863,37633],[198081,126544]],[[55061997,35544950],[-57134,-10],[-541506,1669],[-425473,-2372],[-432111,-2410]],[[53605773,35541827],[389,67736],[-572,84709],[-1286,932636],[2139,68776],[3067,1149383],[-700,22780],[-547,225319],[206,79101]],[[58822896,36988035],[85168,-44789],[237714,-130069],[41127,-21915],[264485,-144783],[30438,-17077],[381653,-208796],[17013,-6779]],[[59880494,36413827],[-92628,-120936],[-71932,-92344],[-46818,-62970]],[[59669116,36137577],[-105301,-141174],[-12780,-15228],[-23377,-32663],[-273033,-359103],[-12970,-14414],[-64783,-83968],[-31094,-42743],[-161239,-211252],[-233467,-304112],[-20955,11038],[-13321,1126],[-15696,-3723],[-13305,-7043],[-22127,-22113],[-20514,-14470],[-18916,-4857],[-29296,-254],[-16542,3320],[-62948,18109],[-21093,-19],[-14287,-3348],[-16950,-9172],[-11760,-11366],[-11471,-17799],[-5794,-18090],[-10709,-12651],[-10923,-6291],[-14995,-1380],[-13664,5055],[-14590,9819],[-17333,19891],[-15177,30476],[-16015,25180],[-13413,25715],[-5648,27842],[1363,28677],[10779,14919],[23946,14864],[14691,20379],[3060,20208],[-7239,14751],[-9820,7625],[-14088,3010],[-21397,15116],[-7520,13532],[-2330,12108],[2703,21269],[5374,18923],[8738,18635],[27714,35747],[19508,38158],[9987,29296],[6204,27703],[6326,45791],[-3266,32691],[-10755,22169],[-14752,21166],[-12658,31696],[-20148,20490],[-75457,675],[-50305,-2794],[-135899,1632],[-169949,1304],[-239237,2672],[-66662,1079],[-339751,3601],[-64943,1593],[-245120,3911],[-51257,451],[-134949,2532],[-24007,2400],[-58519,-1144],[-186541,3207],[-186161,-1351],[-179324,2627],[-301632,8758],[-140489,919],[-19875,-347],[-190353,4764],[-345330,1848],[-52293,-225]],[[61342457,3942198],[55269,133464],[100102,240175],[40357,98729],[79641,190631],[95437,232746],[44877,112307],[33813,82216],[4194,14459],[204092,501392],[36073,86903],[13358,29156],[20294,56707],[40449,99451],[57514,112288],[91325,231107],[22759,55178],[171012,397916],[144495,334805],[101456,235493],[89378,203967],[163409,418631],[21464,50932],[36285,97172],[151231,386784],[86560,218653],[120219,307111]],[[63367520,8870571],[418410,-2887],[155546,-629],[629125,-4417],[118439,-1595],[165723,-947],[190201,-94],[171576,-1463],[3867,-458],[583638,-6246],[114748,-1557]],[[65918793,8850278],[-335,-286781],[1134,-58123],[-84,-1114724],[738,-88713],[212353,-37887]],[[66132599,7264050],[-39163,-287924],[-6608,-61415],[-7649,-54072],[-27889,1576],[-4340,-63011],[3144,-18988],[-3928,-58096],[-9947,-16195],[9339,-8422],[37511,-167439],[-155699,28864],[-48890,-339803],[-11380,-84727],[-32190,5645],[-28673,-200750],[-10549,-68410],[-19197,-135265],[229707,-40483],[106922,-19732],[75516,-12921],[115752,-21316],[92649,-15614],[109366,-20060],[-1614,-15595],[71300,704],[67242,-112],[1110,1200],[214964,1340],[753,-446071],[-411,-124396],[0,-230607]],[[66859747,4791955],[-578,-155512],[-876,-37061],[1362,-49618],[-281,-56359],[1135,-31613],[0,-164945],[745,-103456],[-693,-120954],[-52,-183607],[769,-34473],[-769,-169962],[-8,-409573],[-2444,-136343],[3144,-188503],[-1462,-21108],[8,-737374],[403,-8757]],[[66860150,2182737],[-7656,-2936],[-9501,-14854],[-8685,-29100],[-16403,-45163],[-6820,-13317],[-2572,-14337],[-16275,4144],[-25316,45398],[-21807,20096],[-13853,6442],[-40815,5534],[-16830,5917],[-10046,-497],[-5953,-9893],[282,-27703],[-3183,-6038],[-14203,-10428],[-22644,-4698],[-24396,7005],[-23194,2813],[-27745,-7334],[-48052,-33498],[-17378,-5194],[-13221,2148],[-35097,13756],[-22036,-2231],[-32504,-20820],[-11661,-2175],[-11288,18165],[-16136,49195],[-11365,20284],[-12468,1613],[-12680,-4810],[-9996,-15651],[390,-12399],[5739,-12565],[24586,-25152],[7513,-10372],[-763,-12697],[-6385,-11038],[-10863,-7924],[-17962,-496],[-10026,7043],[-41689,50593],[-14150,11900],[-21206,11384],[-23817,5215],[-25698,-7278],[-18649,-11431],[-15125,-25217],[-25293,-21870],[-15459,-17113],[-13146,-11067],[-9637,-1444],[-15869,8619],[-18253,19964],[-19000,25940],[-9758,8543],[-16016,6114],[-12071,12932],[-4148,17922],[-2528,38072],[-13435,5890],[-40904,-13279],[-6234,-10146],[-10216,-39810],[-7718,-13100],[-15330,-3873],[-8084,5739],[-16898,29878],[-11265,16485],[-23079,8451],[-15300,-2251],[-19660,-8449],[-19092,-16327],[-10915,-16300],[-8592,-21747],[-9486,-14243],[-11005,2821],[1621,13421],[10771,24438],[319,27580],[-7315,18718],[-13093,5195],[-7794,-9996],[-7125,-31726],[-8090,-12209],[-26002,-17650],[-9903,1660],[-9978,13721],[-11419,34546],[-10153,17452],[-17234,8291],[-17742,-11029],[-10314,-13653],[-9363,-19628],[-6059,-20246],[-6196,-37361],[-579,-43195],[-7977,-27055],[-15642,-27045],[-6553,-32812],[-6637,-7803],[-14593,5374],[-25583,17799],[-21639,6498],[-55879,1416],[-16760,4614],[-22005,9313],[-10467,1528],[-14332,-3226],[-15545,-9968],[-14561,-22291],[-12010,-23604],[-19890,-26840],[-14128,-5382],[-27142,-807],[-7278,3827],[-17736,41703],[-738,6470],[14456,4474],[23237,1912],[20445,11657],[11480,19346],[6302,19186],[31,32569],[-3418,16516],[-11691,24990],[-15673,20791],[-7642,16524],[-4621,21540],[-2291,42885],[-4285,12200],[-9104,13635],[-10254,9538],[-10716,3929],[-19928,1951],[-11996,-2626],[-8829,-15492],[4909,-11150],[22484,-8844],[6471,-8149],[2269,-12520],[-15118,-18679],[-36726,-22208],[-23787,-12593],[-25835,-5102],[-13236,4464],[-17629,17509],[-15117,23678],[-25408,33770],[-12893,4153],[-10786,-1753],[-23248,-11385],[-16546,-4567],[-40685,-6405],[-17227,-4867],[-22575,-9725],[-9682,-9705],[-21891,-4905],[-26620,12201],[-5989,11890],[1080,22713],[15604,31838],[4271,12069],[-1432,14770],[-12056,11413],[-12590,-1379],[-12606,-6302],[-13213,-12660],[-10223,-23257],[-1827,-16935],[1949,-30994],[-1888,-20987],[-3851,-13823],[-15612,-30684],[-9918,-24449],[-10397,-15332],[-9173,-21108],[-11875,-13814],[-13083,-2851],[-9676,3141],[-12208,17517],[68,40240],[-4149,8854],[-13305,13756],[-18337,-2887],[-11683,-11741],[-8168,-15653],[-19638,-11590],[-19927,7464],[-4636,14602],[2992,9312],[28635,32737],[-671,19881],[-9567,12389],[-15261,2043],[-27806,-15997],[-9233,-1660],[-17347,5916],[-8609,22921],[-9789,39854],[-6698,13655],[-28743,35428],[-9416,1923],[-15991,-10006],[-7460,-22854],[1226,-32231],[-3167,-14179],[4864,-18193],[20781,-12453],[4308,-16684],[-10163,-15032],[-14050,759],[-16998,22714],[-12574,10672],[-13694,5683],[-18496,-2429],[-12734,-15061],[-3791,-40381],[-17500,-43512],[-12788,-1211],[-19690,7634],[-14418,11806],[-18305,35299],[-11151,33103],[-16929,31510],[-17645,16223],[-34382,6864],[-10625,6012],[-12264,14620],[-6180,15970],[-12315,18952],[-15499,11967],[-17879,8420],[-27524,4951],[-40068,151],[-39375,-11610],[-36583,-8411],[-27448,-11957],[-17621,-12979],[-20856,-2991],[-9264,6339],[-7634,12856],[-4491,46307],[-70690,40363],[-17782,10907],[-10229,9499],[-6699,14103],[-6211,32410],[-4141,10194],[-12423,14855],[-18298,16214],[-17872,10794],[-13883,13954],[-17174,12153],[-19120,8852],[-34716,12605],[-14616,12302],[-17689,27291],[15132,15023],[40800,7651],[17780,-1200],[33256,-11554],[24235,-299],[10307,10860],[-9058,17966],[-5823,22048],[532,11562],[7293,16233],[13146,11610],[14339,2588],[9789,8413],[5145,21755],[-3043,8553],[-9134,4651],[-12500,-2372],[-12901,-11798],[-12034,-21549],[-14669,-9237],[-10793,-1445],[-15177,3939],[-89150,33910],[-10351,5693],[-14492,1950],[-23263,-1200],[-21205,-12923],[-10444,-11018],[-15117,-44471],[-12543,-30908],[1461,-15005],[11570,-21156],[9620,-7051],[13884,-4053],[1219,-16053],[-11815,-10804],[-25209,2101],[-16320,6752],[-11327,11253],[-6940,17556],[-4629,22805],[-10747,41329],[-6790,13081],[-25492,16693],[-19692,196],[-13533,4306],[-21504,14835],[-30371,38140],[-10868,26181],[-31026,51690],[-11570,13504],[-25210,52216],[-610,26559],[8282,8102],[11205,2550],[36659,2101],[7550,9002],[-1096,9753],[-10473,9603],[-35563,6151],[-14736,5253],[-18147,19056],[-6210,17395],[-1341,13204],[6943,25658],[22651,25356],[9257,18906],[2800,23256],[-3775,20407],[-8524,15755],[-17302,12154],[-19608,4351],[-26718,0],[-21754,-8254],[-13274,-18905],[-9257,-37960],[-1583,-26258],[1462,-30760],[-7550,-17554],[-10353,-6303],[-15223,600],[-11692,15456],[-16441,31958],[-9256,26109],[-3897,25206],[8265,43363],[-4734,33460],[-8282,16129],[-11325,6678],[-17416,-6602],[-14980,-18305],[-12932,-10373],[-3997,-17236],[2033,-10287],[11029,-15248],[5153,-19262],[-2260,-28237],[-27159,-19392],[-46280,4500],[-44215,-7051],[-25333,1351],[-21921,8552],[-16321,24307],[-6088,18155],[-13763,32410],[-15953,20256],[-11449,10353],[-27402,16654],[-22043,7053],[-9157,15106],[-754,15156],[4529,43588],[-3021,11608],[-13604,16908],[-13617,6238],[-20392,3535],[-43812,1763],[-26359,8008],[-17653,19571],[-16320,23857],[-19729,21156],[-23992,18306],[-24600,14854],[-61147,24758],[-20459,11252],[-13641,18607],[-4628,17705],[2924,17704],[10450,20614],[16669,17413],[11646,20603],[2901,10307],[0,20612],[-10878,48970],[-12391,23183],[-11624,16307],[-13822,8609],[-10930,-1707],[-25516,-12847],[-16744,-19740],[-17096,-36124],[-12301,5026],[-2246,7756],[-197,27384],[-2521,14423],[-12771,22825],[-10003,6039],[-22819,-1490],[-17318,-13926],[-24570,-25584],[-27135,-13147],[-17310,1162],[-44262,-1949],[-13023,-6791],[-11418,-17188],[-359,-20979],[4774,-16861],[24037,-33479],[6462,-15464],[2992,-19777],[1073,-26482],[-3166,-9903],[-11691,-8854],[-20462,1201],[-4452,17452],[10032,19956],[1911,9313],[-6515,29643],[-14007,19505],[-20360,11374],[-23978,2383],[-17431,-2400],[-20589,-7438],[-39582,-22299],[-26131,-8910],[-9712,-66],[-13146,5731],[-4285,7193],[1728,14103],[13632,32017],[11076,22150],[21144,36535],[1257,8103],[-8442,10625],[-32868,7418],[-21312,15914],[-18878,10905],[-24540,2092],[-12963,-4783],[-19090,-16589],[-16448,-17837],[-10055,-19139],[-13230,2335],[-8303,13185],[-10308,26182],[2192,21382],[3647,8806],[31726,36273],[1993,17751],[-2192,11433],[-9431,2737],[-18084,-10587],[-11228,-18456],[-5564,-14966],[-16792,-30993],[-13328,-13055],[-18938,-8815],[-8837,685],[-14218,19167],[-3905,16975],[-14235,44009],[-30880,77010],[-13542,19693],[-53966,18399],[-16434,8272],[-21101,956],[-13304,-18408],[4087,-11863],[20948,-16120],[26435,-12594],[36050,-534],[11995,-18146],[769,-19722],[-4780,-14864],[-16502,-16861],[-40814,-8074],[-14631,-7015],[-15299,-19590],[-8897,-35092],[-9599,-9725],[-19160,-3085],[-12102,18493],[-221,35860],[2604,16459],[-2749,42302],[-5898,25621],[-15375,18024],[-27510,-10813],[-23597,-17686],[-19310,-44554],[-13297,56],[-11075,8777],[-14272,37353],[-22844,44094],[-1986,7876],[6370,17603],[31870,30496],[3357,26399],[-9894,23406],[-23331,21261],[-21563,5006]],[[49700162,45699664],[-69451,-234],[-345655,-2561],[-455152,-3357],[-150704,-2298],[-402381,-1415],[-402370,-2983],[-59114,-140],[-86423,-1305],[-455973,-2596],[-182173,-469],[-209574,-2373],[-104973,-1763],[-335662,-2973],[-207801,-1416],[-25156,-516],[-350543,-2851],[-40182,-1715],[-314281,-2242],[-305689,-1988],[-322706,-1886],[-409482,-739],[-91432,-544],[-252488,-497],[-120851,17],[-397478,-844],[-329300,-589]],[[43273168,45659387],[382,308509],[-365,105095],[341,295493],[-221,90328],[321,286357],[198,355512],[-639,2579],[-6752,141922],[-3525,92830],[365,484934],[-1148,289866],[-2483,222993],[1509,81567],[-77,771976]],[[43261074,49189348],[380367,7625],[99332,2316],[180946,3339],[66208,327],[280331,4597],[442472,7276],[171552,3085],[148847,1894],[311084,7859]],[[45342213,49227666],[51022,-3348],[37693,-910],[372558,5927],[21221,658],[116405,542],[312600,2487],[522493,4247],[68344,1557],[361786,1462],[521374,2157],[54189,-628],[628828,3199],[268488,543],[14888,2335],[689008,-4426],[247488,-1595],[77312,-909]],[[73841719,76072795],[41674,25413],[32701,23688],[80470,44133],[26908,3412],[23452,-8842],[19258,-14968],[38881,-39395],[19995,-25865],[16244,-26314],[21457,-48773],[10946,-30327],[11829,-47414],[8890,-74347],[3091,-46729],[6971,-37577],[3678,-32748],[-154,-27757],[-3964,-27983],[-1622,-26249],[1469,-27749],[7566,-28134],[2345,-20648],[12780,-23445],[9614,-37287],[14028,-29792],[13944,-56192],[11822,-21400],[11745,-31744],[2496,-14619],[20376,-51802],[48351,-58669],[45502,-48895],[32290,-31884],[18861,-11620],[28263,-20827],[31642,-20622],[41841,-2617],[35753,16544],[16646,15004],[16114,21747],[846,40746],[5039,60074],[7945,44572],[17979,27673],[34512,25095],[5496,7597],[30402,-2175],[30447,-6180],[86659,-12174],[140832,-35259],[82139,-50190],[22196,-32223],[7467,-20246],[18162,-91685],[746,-40982],[2571,-17030],[17013,-36263],[29351,-79598],[9880,-20098],[23924,-18932],[35372,-9866],[57446,2354],[78104,13194],[61784,14311],[43211,11937],[37169,13588],[47040,2580],[39489,6940],[42627,16242],[27988,18389],[37167,37773],[33105,48081],[34382,54231],[19159,43644],[10337,27693],[16029,50067],[17188,83068],[2786,45783],[-10360,71007],[14996,98073],[4162,14339],[18078,43635],[14706,42040],[10154,35392],[14136,29671],[21548,24719],[26116,19000],[21138,3067],[34359,-5637],[12857,-7736],[24533,-19243],[21092,-23097],[34085,-31445],[28049,-18859],[77564,-70173],[28491,-28667],[13876,-8863],[14386,-796],[17590,7024],[70402,-5581],[80767,2505],[33485,4679],[58335,1885],[32245,-6836],[11828,-17555],[7064,-15296],[700,-21879],[-16244,-44046],[-19928,-33629],[-12932,-13775],[-42146,-38403],[-33019,-21362],[-27638,-13308],[-48083,-20171],[-10117,-15024],[-90709,-101456],[-3950,-2721],[-26633,-38008],[-6494,-15247],[-2048,-21795],[1318,-18549],[4362,-9949],[46636,-37550],[39010,-17910],[43319,-13410],[84300,-35890],[31694,-14900],[31712,-17114],[44597,-27262],[105925,-82768],[40539,-3929],[8823,-2363],[23345,6133],[21747,-2683],[34474,2466],[42290,413],[14485,7109],[25400,1688],[18245,6545],[10224,-159],[30317,10447],[39588,10400],[29458,-12792],[24349,-15932],[7065,-9528],[2298,-11131],[20933,-35720],[13062,-28143],[17560,-47873],[6554,-33750],[6629,-66424],[-426,-35137],[-6364,-29437],[5107,-4567],[25119,-47986],[31384,-40831],[23178,-19899],[14211,-15474],[19721,-16392],[31110,-1716],[26809,3957],[36970,-1978],[22356,2146],[22424,4717],[45221,12839],[34436,5232],[7732,-2653],[21915,5823],[60695,-5663],[19731,2532],[11075,5091],[26693,23970],[10794,14553],[12766,6378],[26763,2007],[54469,-10062],[17247,-5955],[49462,-6331],[22401,-10596],[28476,-10240],[13541,-11376],[21122,-33591],[21558,-51935],[11949,-45950],[7186,-18108],[5412,-22104],[33576,-52824],[2206,-6902],[14310,-15718],[17067,-14489],[32577,-36798],[22562,-31387],[23565,-25367],[36323,-35260],[46873,-40474],[25699,-32869]],[[78104360,70901988],[-14249,2336],[-52437,3001],[-68635,-2964],[-21678,2167],[-28118,-1182],[-56396,825],[-63749,-348],[-43903,2111],[-138572,3741],[-86355,404],[-94591,-1988],[-115524,2034],[-110363,1183],[-141075,2859],[-154671,2130],[-80822,1941],[-9133,-1295],[-51822,1970],[-140124,2353],[-33978,1754],[-56951,-403],[-153408,2315],[-80753,1688],[-34548,-252],[-382788,10513],[-321581,8852],[-11029,665],[-169826,3743],[-151717,4585],[-59515,1182],[-21649,1640],[-170547,5787],[-209384,6143],[-50147,384],[-41498,2073]],[[74682824,70973935],[-53747,853],[556,73034],[-183923,4323],[-78538,2448],[-2672,-5430],[-68999,3348],[-142318,5963],[-119154,4193],[-145421,11985],[-41173,1613]],[[73847435,71076265],[2192,400907],[91,72125],[1478,310563],[-198,31856],[342,847055],[39,272376],[-381,22245],[-1492,305780],[-1759,295154],[-342,118019],[-1196,171867],[-738,190442],[-882,90909],[-1271,58582],[166,47527],[-1651,162854],[-1605,352247],[-503,214151],[-1927,73240],[754,211495],[1067,52103],[1568,331045],[-70,242255],[602,121733]],[[42659884,74988802],[3858,-744227],[245,-135987],[1994,-339784],[-556,-135660],[3455,-469646],[-631,-31781],[1698,-98552],[1217,-159251],[-83,-45746],[1483,-208044],[2087,-350757],[791,-263814],[1972,-144577],[495,-546001],[15,-418725]],[[42677924,70896250],[-238271,-723],[-170822,215],[-27098,-365],[-250130,-19],[-608657,-2307],[-333180,-938],[-78210,170],[-50536,-854],[-224530,-704],[-523681,-1491],[-57277,-4670],[-212848,-1471],[-189021,-1820],[-197601,-1200],[-254926,-1135],[-96797,-4726],[-430025,-975]],[[38734314,70873237],[-9401,974919],[-1500,12810],[-4345,327575],[-4173,271954],[-6995,562514],[-2305,136166],[-5686,407931],[-1507,136645],[-6349,475657],[328,46776],[-3061,203704],[-1408,177652],[-4567,351497]],[[38683345,74959037],[477318,5467],[133059,806],[512735,6105],[246659,2944],[101822,-1490],[502032,5645],[65187,562],[143092,2111],[191968,1857],[9507,-1772],[151032,-882],[1099927,6584],[342201,1828]],[[86294322,70741028],[8311,132],[4492,-7952],[2398,-16889]],[[86309523,70716319],[-14866,-7850]],[[86294657,70708469],[-4766,-13064],[3068,-7482],[-16053,-12473],[-36787,-5326],[22401,-19085],[-5177,-13859],[1805,-13467],[-6905,-8627],[-12300,5870],[-8943,-2270],[-8610,6903],[-17925,853],[8921,-21062],[-3061,-6630],[-9962,6414],[-723,8495],[-7475,5196],[-10795,-6198],[-20687,-581],[-298,-23201],[-7162,-4221],[-716,11779],[-16037,-1434],[-4165,-12923],[-15633,357],[-9606,-5768],[-10695,10128],[-10459,-4661],[5594,-10784],[-4375,-10728],[-10756,1706],[-5481,9857],[4376,10023],[-9065,-402],[-6758,-10578],[-15338,-7053],[-17674,16187],[-6813,-2382],[9346,-7118],[-411,-10981],[-12847,-7756],[2571,12116],[-9332,10926],[-6888,-5674],[-16015,10738],[-4605,-11283],[-13906,-3656],[-5496,8233],[4826,9557],[-18650,6489],[-8668,-8834],[-3882,4125],[2283,19853],[-2542,8919],[-10109,4624],[5382,-8582],[-11083,-13898],[-13594,-27],[-5800,21588],[-4751,2109],[-4826,-10821],[-15931,-10748],[-7772,6630],[-5677,15408],[-10171,3647],[-1201,6603],[-20096,10869],[-693,-18822],[-12727,-6376],[-2915,5101],[4719,11515],[-7131,1089],[-23010,-11695],[-10520,2739],[-11776,-7727],[-6691,-18446],[-4604,5702],[555,16175],[-15862,-356],[2260,-9209],[-11950,-8589],[-17005,-2654],[-3303,15033],[-12180,-85],[-8654,10916],[-11310,3197],[-9858,8788],[2062,-15033],[-15093,-3958],[-12201,5515],[-26285,-9134],[-5001,6227],[7643,8149],[663,16177],[-13031,-497],[-9325,12191],[-18003,-6641],[-6835,-6779],[-10998,-1670],[-7810,10401],[-7916,-16120],[-15148,5411],[-10617,-4267],[-12347,-18643],[-6683,394],[-4468,10887],[7542,10569],[-17491,11216],[-7489,-2495],[-9652,-22367],[-4636,1999],[-3836,21859],[-11220,-20491],[-7421,12070],[-17583,-2035],[-4667,-26606],[-10389,-5804],[-6211,3160],[-1941,14704],[-10809,-1837],[-13724,-11188],[-7604,-1004],[-14235,11094],[-5563,-2390],[8745,-15540],[-12612,-6283],[-10604,7700],[-670,-17443],[-7155,-2964],[-205,13120],[-6104,2457],[29,-13749],[-5890,-1237],[-13048,16261],[-14004,7128],[-305,-12595],[12522,-9894],[-14927,-14704],[-1279,14574],[-4811,-9689],[-9226,10926],[633,11901],[-5412,3609],[-5421,-16485],[-12185,8731],[-17044,-9154],[154,7175],[-10292,3067],[-617,11319],[-13321,-11479],[-14386,19964],[-20337,9369],[-9188,-1913],[4384,-16955],[-10443,-3404],[-10725,-13456],[15003,-11639],[2223,-6958],[-14424,-7184],[6751,-8243],[-3547,-5635],[-7886,7549],[-11487,-7906],[-1224,-17565],[-27669,-5485],[1072,-10410],[-16273,6330],[-8060,-2720],[-10041,7325],[-25910,-16262],[3889,-13194],[-15146,-4247],[-11427,12668],[-12733,7258],[-5960,-3309],[-7263,-18531],[5131,-9536],[-12651,-13740],[-38568,-16851],[-7217,16271],[-7801,-8010],[-8373,11414],[4735,13343],[-21459,1446],[-6934,5973],[-17484,-12726],[-8029,2851],[-13398,-8815],[-5062,-8291],[7354,-5645],[14120,1867],[2518,-7353],[-7991,-7586],[-15361,-3976],[-9705,9893],[-12110,1717],[-12848,-21372],[-7210,-2486],[-3934,8150],[5732,9631],[-3937,7549],[-14698,-3976],[-1918,-14198],[-7679,-1782],[-4491,9772],[-22683,-366],[-5191,3507],[-14456,-13729],[-8053,234],[-3631,-17085],[-23390,-1032],[-19143,7248],[-5245,11329],[-11052,4596],[-10109,-4596],[-7803,11825],[-18472,-2035],[-10346,24205],[-13418,5486],[2793,9162],[-14501,7510],[-1301,4737],[10351,6621],[-3448,11796],[-16638,15737],[-11341,4585],[-4507,7070],[-9659,-9020],[-16281,1332],[-8542,15792],[-22348,-10223],[11959,-14938],[-8541,-2278],[-9727,4585],[-5763,-6836],[-10969,2869],[-4323,-12538],[-13465,-4182],[-13403,9330],[2230,10428],[-6136,4652],[-19729,-6949],[3988,-14601],[-12642,188],[1202,-16430],[9072,-1754],[-5746,-18239],[-6393,-170],[-2833,10288],[-11279,-2485],[2724,-6536],[-12080,-12201],[-2184,14123],[-9089,-1613],[3044,8346],[-10115,5860],[-13815,-7660],[-5313,2193],[3074,15324],[-17140,9490],[-5078,-9594],[-21875,4156],[1362,19365],[-6524,-404],[-8205,-12548],[-15239,1305],[-11493,-20041],[-12666,-2616],[-15392,12210],[-16821,2756],[-10810,-8553],[-9133,10081],[4703,6857],[-8060,3140],[1195,22480],[-8631,3863],[183,-6940],[-9020,-4013],[-884,9048],[-7330,1483],[-1887,-11564],[-6820,-3290],[-8822,8918],[-7088,-7615],[-10565,-1200],[-3432,-7925],[-18268,-4613],[-30127,-10794],[3646,-7821],[-7224,-7990],[-5016,3638],[-19380,-16485],[-12278,-4277],[-6927,4145],[-5906,-5833],[2671,-13447],[-10564,-9791],[-6668,14919],[-40031,-7051],[-441,-11864],[-7535,-5682],[-13031,2007],[723,-13663],[-16389,-14677],[7704,-13916],[-7263,-9153],[1957,-7305],[-9462,-34801],[-13190,-7803],[-10656,-11750],[-2840,-9650],[-13853,5618],[1355,-14892],[-16137,-14348],[-15840,7456],[-3038,-7353],[9021,-15472],[-4774,-4924],[-12574,6264],[-5084,-6134],[4269,-7417],[-4276,-8524],[-8000,5242],[-7780,-2683],[-389,-14169],[-10503,-1012],[-14996,-16197],[-11082,760],[3730,-13729],[-13907,6021],[-5191,9660],[-5602,-6649],[8921,-11385],[-5610,-11601],[-14736,3883],[-9349,-16102],[-17849,-1500],[-2077,-8580],[3934,-13543],[-6234,-13512],[831,-12033],[-6227,-4069],[-5823,-13091],[4362,-7512],[-2292,-10953],[-23665,-12669],[-15771,-1060],[-7474,-9865],[-12240,8589],[-6013,9228],[-9553,-11591],[-16396,11816],[-4765,10090],[-5816,423],[2490,-17602],[-2498,-9651],[-12239,9435],[-14112,-6855],[-7261,9022],[-10793,-10092],[-7270,-440],[-8092,-15229],[-8099,4511],[-7885,-3001],[6020,-6227],[-6645,-15473],[-6225,440],[-13078,-13092],[-2283,-7727],[-27189,-20828],[-5191,5579],[-10170,-5147],[-19715,14170],[-8295,-15249],[-17431,-3207],[-3113,-11178],[-7263,-6442],[-4147,6442],[-22829,5589],[8502,9237],[-2899,12885],[-12659,-2794],[-7679,-10953],[-10582,9865],[1454,-12651],[-4772,-5373],[-14942,16524],[10786,14169],[-1659,12895],[-12247,13737],[-7887,1286],[-14514,-6115],[-3167,8140],[-12507,7006],[-8015,-6574],[92,-17716],[-9210,-4220],[-2383,10036],[-16076,-1088],[-5815,9218],[-8502,-1275],[-2489,-11169],[11410,-7727],[-831,-7306],[-13488,638],[-2701,6883],[-13908,4717],[-2900,-15032],[10582,-7719],[-1652,-8167],[-8724,6226],[-14105,648],[-7260,-13532],[-10375,2577],[-8724,8582],[-2070,-8590],[-7673,-4304],[-13076,5157],[-10375,-1500],[-1036,-12669],[-10168,-2148],[-8085,-7531],[-8099,6236],[10581,12661],[-11213,9020],[-829,17162],[-10169,1511],[-624,-9228],[-12241,3629],[-13273,-15445],[-12042,7080],[12650,11581],[-5397,6884],[-13487,-3873],[-6852,9002],[-12863,-215],[-2071,-4718],[12248,-9011],[-14317,-3012],[6438,-14609],[-14112,-3011],[-13077,13533],[-3523,-6227],[3942,-10317],[-25309,208],[-15992,5786],[-3105,-10728],[-13481,-12895],[10383,-10513],[-13908,-1941],[-11828,4717],[213,-5795],[12247,-9875],[-13068,-3433],[-6021,2786],[-7467,-6012],[-14737,2776],[1446,14807],[-25895,-178],[-26299,-16513],[-20954,872],[-8297,4079],[2070,-8159],[-9964,-421],[-4155,-11160],[10656,-5936],[7916,-13729],[3007,-16261],[-11046,-6996],[3267,-12163],[8357,-2175],[-7255,-15792],[-9697,-11620],[-6576,3676],[-4940,11517],[-12437,-4267],[-11661,1237],[5220,-7830],[1257,-15257],[-4271,-11920],[-10359,-4182],[-11379,10878],[-12590,-2720],[807,-9415],[9955,-20912],[-570,-11845],[-11646,3461],[487,-10878],[-14934,-2054],[-9706,12839],[-9308,-6799],[6813,-6238],[-2194,-13297],[-19318,789],[4530,-13355],[13091,-7933],[-4581,-9687],[-14890,-5092],[-18671,674],[3280,-11899],[10209,-4802],[-10512,-10297],[2336,-12528],[-11403,-7418],[-4893,-56979],[-4689,-18184],[-36392,-23895],[-845,-12003],[-5929,-7053],[-10550,-1181],[-7619,-6283],[2786,-7325],[-13094,-712],[-1384,10251],[-25986,262],[8760,-7165],[-11851,-12360],[-3235,7052],[-10253,-5616],[-1986,14169],[-8663,4905],[1940,-12773],[-8959,1238],[-2786,-11234],[-14583,-3565],[-7969,-13279],[-11594,15408],[99,-6807],[-9507,2887],[-11197,-3292],[1545,-7623],[-22004,-15876],[-3730,-15971],[-9606,-19637],[2336,-8187],[-14980,-12575],[-791,-12060],[-15429,5102],[1348,-9631],[-7216,-2945],[-11349,11797],[1492,-18700],[-9454,8346],[548,-15914],[-6516,5205],[-8312,-7737],[-8815,15203],[-11143,2879],[-21845,-9182],[1293,-10344],[-13137,3189],[10998,-13353],[-10101,-554],[-5968,-20349],[-8959,-2063],[-4331,10803],[-16563,-7924],[-11051,5148],[1644,-11488],[-12941,5768],[1196,-12014],[6576,-1584],[-899,-9078],[-10199,2617],[-548,11186],[-7468,-2466],[4089,-11956],[-10947,-11900],[-10207,3956],[6722,12371],[-1752,11234],[-9947,-1501],[-3981,-10212],[-19555,5823],[-3729,-6076],[-8960,8084],[-11044,-9181],[-12042,1088],[-6417,-5730],[3586,-8553],[8106,-103],[2146,-10401],[-10596,-5728],[-16373,1396],[6327,-8805],[-4530,-11403],[7467,-8740],[-5716,-5881],[-6173,5870],[-3973,-8654],[2587,-8807],[-8357,-7634],[-8906,11742],[-8061,-12736],[-13877,-3300],[-4573,-12322],[-11449,4952],[-8205,-7887],[-7018,4219],[-3684,-9096],[-15415,-1163],[6729,-14423],[-15611,-22947],[-4050,10296],[-7596,-346]],[[82083958,69228098],[990,94743],[1278,193922],[921,280030],[1636,55168],[3692,80059],[1242,51925],[-875,14844],[822,102395],[3043,146875],[-464,49120],[3684,186477],[3038,49645],[777,95664],[-428,47939],[1911,62071],[-30,34670],[2024,109485],[586,93581],[-594,35035]],[[82114710,71501189],[16655,-8233],[15960,4331],[-1019,-20068],[13442,6180],[3958,-7099],[17919,-12265],[20413,3431],[-5411,9679],[23133,3441],[-9,-9462],[36438,8590],[4239,7681],[14067,2213],[14425,-1896],[12970,4118],[7984,-7981],[12667,2832],[-146,-7417],[18262,4951],[6583,-9012],[10079,3714],[-1903,15811],[14569,2532],[-8633,9894],[-8830,-3001],[1197,7417],[15420,5111],[5633,9537],[11274,-3142],[3143,7624],[4490,-7886],[9880,47],[5291,6602],[-3799,17574],[11677,-3668],[12971,9594],[-7537,18905],[14721,1698],[396,6593],[12226,-9894],[-2795,11957],[4141,4024],[14470,-104],[2047,-6031],[12127,1080],[-1653,12407],[6957,393],[-2177,15708],[12697,8871],[-632,7747],[35738,5626],[9141,7727],[30554,14619],[-5192,7738],[25339,13776],[10284,-5383],[-3143,20153],[14280,4154],[-2550,6349],[12529,7981],[9529,-874],[12696,22799],[28294,5514],[6850,-10081],[14958,5353],[-3730,14152],[17020,1500],[-2490,14582],[3114,8140],[-8519,-2128],[14919,15632],[8085,-9123],[7787,13344],[12574,-5927],[10132,1904],[13372,-3160],[5595,5213],[-1841,16073],[31694,8956],[33790,-4510],[2649,7577],[10678,-5196],[-692,8704],[16274,-19412],[5793,3470],[349,12622],[8548,-10850],[6859,-1650],[540,-11554],[8556,5936],[433,-6902],[-9515,-11245],[9592,-4350],[3121,6649],[15178,10736],[6241,-2784],[4110,8580],[48250,-20677],[9690,13551],[22531,-21842],[14927,-6648],[7079,5936],[9332,-3460],[-7885,-14733],[17674,-5318],[3745,-7680],[9781,-1032],[3007,-17864],[5890,-1351],[11320,23717],[15268,-966],[3206,-13756],[8029,-1801],[-2641,-8815],[16868,2325],[23154,11507],[12576,-5214],[8684,7539],[30393,-2926],[-1545,-12321],[8335,1452],[2795,9210],[4095,-12200],[10831,-6996],[4643,8908],[11676,207],[2848,-11994],[6089,-161],[3089,11386],[8039,6180],[-6044,5411],[12727,4960],[-9834,2927],[3273,11159],[25811,-10354],[2010,-9433],[-4521,-9528],[8912,1632],[4552,-11273],[8168,-2954],[4947,8018],[3068,-10624],[-10976,-18024],[12072,-13063],[7049,656],[1225,-7858],[15726,-3706],[-2748,-11496],[4994,-5102],[12772,6808],[-1896,-7942],[16472,4594],[-4644,10767],[9332,-8084],[2147,-13448],[7438,3189],[11775,-6791],[-1994,15503],[22158,816],[181,7295],[20925,2805],[-2405,-18250],[11228,-6226],[-1036,-6237],[-12269,-3855],[8525,-11591],[6241,8590],[12057,-9883],[-7277,-6217],[14759,-5374],[-11851,-7297],[-2041,-8307],[15012,309],[997,7990],[9979,2476],[7983,-12370],[3792,21438],[17734,-12530],[4956,16272],[23841,-3171],[189,12829],[4552,3649],[10793,-5758],[14913,12003],[-1432,4614],[23482,10569],[8121,-159],[18459,-7990],[7087,46],[-5282,16232],[16768,1793],[-6987,7642],[20414,4052],[700,12791],[9781,-5983],[6637,11637],[17318,-975],[3707,11310],[10161,1529],[3753,-8779],[2878,14789],[14309,4755],[17613,14394],[3723,6444],[8510,-7268],[-1485,12144],[9598,5486],[7849,-9416],[33378,-14667],[1254,-10868],[8000,-8121],[15300,5795],[9096,8365],[20575,2400],[3684,12341],[10930,3912],[25508,2156],[11143,10109],[20209,1464],[17880,-12407],[13077,-4164],[5549,-13252],[30142,7494],[20964,-2045],[708,-16852],[-10483,1183],[-1552,-8685],[11365,-5457],[175,4877],[26944,3412],[3244,7578],[13076,-3245],[-1355,19628],[27008,-10701],[-1196,-11440],[6699,-18447],[14021,4633],[10236,-8018],[19114,6547],[8084,-5665],[555,-11591],[-9483,-825],[-11471,-13927],[10579,-8129],[5648,-17771],[10079,4942],[-3494,-11188],[-6311,-2607],[2771,-12436],[17272,1745],[3250,-10034],[-11426,-8759],[9880,-13963],[4294,7736],[22454,7784],[5093,-4885],[7878,9527],[18618,-17311],[7086,-1031],[17613,12791],[10231,12988],[3790,-10457],[9432,-1041],[4194,16195],[6333,3705],[11981,-4060],[13768,4267],[1447,8187],[19654,103],[4696,19515],[13040,-244],[6948,12021],[13511,-9133],[13899,-2025],[4727,-14995],[9774,2784],[1050,-8336],[-15429,-12810],[4513,-5101],[18688,5775],[18664,-9067],[6645,8842],[6280,-3384],[-12826,-17781],[21108,-6742],[2800,-9275],[33485,-4943],[8791,-17816],[-15482,-4662],[-252,-8609],[11281,1764],[5534,-12116],[2641,-16383],[-4734,-10926],[9979,-824],[1492,-12624],[10976,-7688],[5739,5063],[4391,-8402],[-3896,-9124],[11326,-526],[4041,4858],[9834,-7372],[-2800,-8712],[17263,-2943],[13923,-15258],[1446,9743],[5693,-1087],[2884,-12305],[16267,817],[18108,-11498],[8031,-13756],[-800,-12979],[8282,-12172],[15414,-11958],[3684,-8308],[25043,-2879],[31877,-14338],[9036,4370],[6828,-3087],[32531,8590],[19159,-2588],[31072,-27683],[13115,142],[6044,5467],[13966,1471],[-3935,8469],[13572,-1556],[6395,14272],[-3792,6649],[9819,11347],[1988,12932],[15862,1304],[5580,12669],[-8534,7473],[6181,5159],[16883,-8365],[9073,2635],[5823,11263],[-7832,1632],[-4300,13822],[12170,5918],[-12331,13962],[15566,-768],[13238,-15698],[14073,-5308],[6333,3470],[2946,-7624],[11632,-2073],[8875,3827],[-4529,-17771],[10122,1134],[6783,8187],[8015,-8047],[-3128,12539],[6592,-1697],[4992,-18494],[18368,-7981],[-396,-7361],[15863,4482],[18413,-9883],[-5876,-14283],[29389,-22243],[-639,-5628],[-14021,-9631],[8982,-6911],[8356,-22121],[12057,-4137],[2026,-9030],[11844,1528],[1247,-11159],[16419,2813],[1043,-9227],[-10808,-6865],[9568,-15885],[6849,-1051],[8938,10963],[7071,-12876],[20156,1960],[9757,9883],[24115,-5345],[7085,8150],[19122,-6302],[11852,2964],[22240,-13524],[14494,-2747],[16563,-14461],[6751,-20949],[12391,-95],[34406,-19289],[19980,-93],[11928,-29691],[10764,1060],[-6272,-10718],[-13214,2006],[-4415,-8403],[8023,-9912],[4635,7934],[13015,1369],[20180,-33807],[11296,7850],[2481,-14949],[-5024,-11337],[7155,713],[12475,13982],[9104,-28],[4970,-8366],[-13404,-3610],[-221,-10887],[9531,-6940],[4339,15210],[18488,-5252],[19114,1210],[-1979,-9658],[-10459,-1894],[5641,-9772],[7794,4014],[1963,-10578],[-6583,-10242],[19547,-12678],[11372,9772],[12612,-8956],[7087,7520],[9971,-18407],[8525,-103],[22295,-8000],[6782,6509],[13815,1330],[1598,7681],[7977,-6911],[8930,-413],[13609,-21606],[-2596,-10053],[-6889,-1425],[-3394,-19581],[10169,1903],[12810,-23623],[1798,-9424],[-5939,-10869],[4287,-7268],[15108,11488],[5938,8450],[6683,-1594],[5641,10353],[16806,1529],[7917,-11319],[8098,9208],[1019,-10718],[16769,-25339],[11007,5542],[10367,-7746],[8936,4061],[5169,-6874],[2922,12218],[7499,8131],[5381,-10953],[-3341,-7070],[11180,-21476],[13100,-7446],[11183,-14301],[10755,-6940],[1850,-13915],[7962,242],[5100,14012],[10724,13371],[8039,3939],[8456,-12876],[15413,3631],[1341,-10203],[8411,12116],[6850,1875],[11692,-17030],[-1446,-15071],[4765,-1659],[11646,13775],[14127,-8111],[7817,-10972],[494,14405],[12240,-9698],[12650,-29690],[10109,5562],[12408,-4482],[-108,7266],[13184,639],[3836,9819],[8282,-4136],[10474,6957],[3409,-12734],[23819,7756],[19363,-6715],[-8145,-10653],[921,-8074],[11046,-9181],[8425,16016],[11411,-4106],[844,15154],[5390,-281],[7155,-13054],[-2207,-11825],[10131,-6266],[5267,5947],[-3037,10746],[14720,-6077],[14951,-2118],[478,-10241],[9356,-20368],[13266,7333],[2999,-5139],[-7610,-15530],[12946,-3377],[5124,9782],[9789,-3957],[-2505,-15004],[9347,11346],[6699,-14047],[8982,4632],[2442,12979],[17325,8225],[3586,-10992],[-6874,-9189],[22187,9734],[14516,374],[6083,-11769],[16859,-562],[6136,5158],[6097,-18738],[8844,4005],[-4300,20743]],[[49736910,30469750],[214811,1715],[222660,2205],[402402,2616],[10268,1322],[102217,4435],[94447,114],[191739,2765],[77289,506],[135224,-2935],[8510,2496],[50884,319],[195408,4360],[29587,1059],[107988,216],[52277,2542],[57789,-628],[103640,-94],[157328,1331],[81613,301],[58016,899],[66131,-365],[84087,2373],[97537,-179],[25187,816],[73682,-281],[53084,-1539],[46119,2383],[25766,-1332],[65606,93],[286300,4005],[71154,-3863],[101084,375],[67715,853],[46036,-657],[11189,1453],[79116,620],[146344,-122],[36688,2711],[145467,1462],[191246,1106],[26527,2833],[117608,-609],[138564,1133],[194336,1136],[100725,1172],[4081,2223],[201810,890],[452098,2813]],[[55046294,30516797],[122,-51933],[1440,-146097],[-685,-96422],[1384,-51915],[2208,-298718],[282,-67024],[1781,-121676],[-228,-20425],[3905,-524019],[2297,-330612],[-776,-22010],[2064,-106859],[1103,-188681],[-494,-30899],[4611,-757873],[580,-57334],[1658,-326074],[10718,-318722],[-2931,-2550],[2961,-37784],[-631,-40548],[2991,-38637],[1788,-145186],[2033,-195864],[762,-135968],[-1956,-113368]],[[49714608,26360457],[144,59203],[2581,154939],[3364,673921],[443,69706],[2617,242396],[-1163,21588],[4025,743833],[1387,164363],[449,201453],[486,38833],[3684,931887],[1872,333763],[541,145655],[1507,202382],[365,125371]],[[78769435,67000150],[-274,-201640],[161,-244505],[-207,-227589],[1120,-233834],[-1440,-71572],[-250,-96458],[822,-91603],[-655,-145956]],[[78768712,65686993],[-411,-258244],[-231274,-543],[-348808,-2223],[-55170,-1369],[-32365,4116],[-108840,-1584],[-197617,-2138],[-132460,-1163],[-44072,-1115],[-114601,-1314],[-134142,-826],[-56518,-805],[-127260,3517],[-103588,112]],[[77081586,65423414],[769,179228],[2291,317886],[-137,63421],[1978,32073],[404,135189],[2627,222225],[2016,125277],[1560,7764],[3366,236751],[631,81841],[-1172,67707],[1683,112589]],[[77097602,67005365],[63990,-1792],[40389,-2578],[66404,496],[104076,-469],[129665,1473],[84,4099],[195798,-892],[-9,-2251],[74884,208],[68544,-1239],[236,2419],[43936,-430],[8,-2354],[124519,-366],[0,2766],[451498,-2541],[26313,-1126],[91799,-1435],[144121,-1078],[14416,2063],[31162,-188]],[[61422068,62624596],[27424,976],[162268,-6753],[346249,-10447],[41386,-422],[35273,-3393],[156787,121]],[[62191455,62604678],[1134,-236048],[-853,-221380],[115,-38393],[-1387,-25760],[-1437,-141098],[440,-34528],[-1026,-53247],[2823,-376807],[-1028,-20322],[-1675,-145665],[2475,-16449],[2534,-378391],[1629,-318328],[-3410,-1575],[-139508,-85039],[-56807,-33206],[-156077,-95756],[-226291,-137478]],[[61613106,60245208],[-28969,-17601],[-131287,-88143],[-101289,-64078],[-25264,-14750],[-146617,-92859],[-106033,-68204],[-25126,-13927],[-269615,-177417],[-350208,-205776],[-288644,-169399],[-43014,-24946],[-45436,-30693],[-309880,-186532],[-112448,-63095],[-97309,-60738],[-274349,-149914],[-112061,-70266],[-373478,-221709]],[[58772079,58525161],[-550586,12116],[-27837,-1200],[0,-4709],[-523900,4905],[-376362,3582]],[[57293394,58539855],[1987,423444],[-1591,6742],[1880,40127],[2244,204163],[1851,207746],[1636,126289],[624,235157],[754,114625],[853,232755],[-1766,8309],[1956,181591],[874,122398],[1531,138021],[0,246091],[2588,166634],[-328,2935],[1797,219721],[2070,91010],[-1561,3780],[2779,69283],[3753,218313],[3380,303277],[365,132142],[-274,93908],[562,80284],[2582,230224],[4590,44760],[-1858,137711]],[[57326672,62621295],[138860,-403]],[[57465532,62620892],[377475,-646],[147408,196],[196558,-281],[7034,2991],[456756,159],[251516,-308],[91979,-1718],[79506,2637],[195932,740],[65112,741],[152204,-1173],[32061,-1163],[87961,1727],[332862,619],[157106,3450],[46400,-3067],[213609,-599],[680938,-56],[58626,-676],[325493,131]],[[71091561,28385255],[-11372,15097],[-32617,37146],[-7489,19656],[403,6197],[13815,27393],[3083,18925],[-15025,11065],[-32305,-19777],[-6538,-6425],[-44879,-4012],[-16138,-3986],[-5974,15707],[1583,12042],[14271,31161],[-1787,12473],[-21412,30937],[-32708,25358],[-9119,9237],[-37070,30515],[-18046,27721],[-9912,1932],[-24578,-3010],[-21015,-5383],[-21405,-9],[-12285,-24506],[-10306,-6667],[-17522,17031],[3835,30167],[-2891,9059],[-28445,-8767],[-21603,-1530],[-11106,3217],[-16061,18269],[-6354,16541],[-6547,5589],[-9111,-1940],[-24381,-16130],[-5747,854],[-9925,20199],[586,24504],[-8731,5796],[-25818,1058],[-45792,24102],[-587,7953],[10322,32662],[4170,25994],[-1772,10748],[-16457,10971],[-11099,3873],[-12292,-2784],[-22014,1510],[-27751,19148],[-22402,864],[-8928,-21279],[-7140,-8805],[-10908,-4726],[-18641,10972],[-18786,34462],[-10565,10279],[-17012,22009],[-14584,13551],[-45892,-1856],[-1354,1481],[-110758,-96431],[-175093,-151320],[-246667,-213738],[-74694,-63955],[-77883,-68974],[-228467,-203909],[-21228,-18457],[-132255,-118356],[-130273,-114492]],[[69046113,27909456],[-56655,75977],[-113286,150494],[-35576,46346],[-49668,66957],[-91325,121039],[-114396,149452],[-163790,216543],[-294703,390508],[-161789,213483],[-219978,290485],[-24457,31895],[-43767,59707],[-4309,4642],[23847,21119],[48624,39209],[318705,290373],[214887,194090],[107918,94520],[42686,39685],[146092,133924],[47962,42801],[39969,22863],[90010,84061]],[[71592473,33265913],[111862,-143704],[172909,-221100],[356900,-456330],[50359,-64211],[19098,-25600],[163042,-208795],[7925,-10700],[101448,-128429],[39087,-53501],[101989,-136418],[42764,-57795],[181760,-243192],[107089,-144259],[365121,-488750],[34761,-48257],[6342,-6011],[144988,-192863]],[[73599917,30635998],[-23208,-20294],[-99135,-90139],[-59463,-52655],[-28323,-26417],[-100742,-89764],[-9179,-10822],[-55018,-48352],[-10344,5768],[-47010,-39743],[-276953,-250302],[-104639,-94030],[-115911,-105669],[-68689,-61743],[-59797,-52563],[-40198,-36572],[-34687,-33610],[-188292,-169297],[-314356,-282579],[-448835,-404867],[-212398,-195347],[-94514,-86481],[-10824,-8881],[-105841,-96384]],[[88962440,52044310],[-10276,5759],[7240,4361],[-6896,8205],[-52058,21765],[1744,25151],[10794,8497],[653,7174],[-9423,9810],[-14271,7577],[-13206,-4351],[-13170,12668],[-18892,13692],[-14386,-759],[-7285,-5289],[-10290,2504],[-2223,13194],[15253,11366],[1014,19824],[-2710,10653],[-20506,-1642],[-2886,8441],[20126,9284],[5229,7306],[-5213,13138],[-9515,-4004],[-10254,8243],[-13647,4706],[-14805,14011],[2528,8900],[-15468,12266],[-25179,5316],[-15088,-9948],[-28839,8102],[-2894,11703],[5131,18812],[-4338,3386],[-23018,-9895],[-8487,30572],[-14037,6705],[-1308,-7398],[5739,-12070],[-6364,-10232],[-6950,3387],[-32791,31884],[5199,24484],[11706,16412]],[[88618123,52407980],[2361,4802],[21488,18510],[104165,95242],[173190,155332],[88115,79542],[99005,90130],[53327,47948],[228985,206846],[56342,51999],[55863,50368],[92481,85497],[71202,62869]],[[89664647,53357065],[14629,-12361],[-1956,-27449],[-6127,-19345],[5648,-1173],[10808,7605],[7467,-2146],[13283,-15830],[-16465,-13055],[-4682,-7099],[15665,-10569],[-1589,-14244],[21175,-15885],[14661,3328],[-6311,-7512],[860,-10549],[13678,-11535],[6151,10522],[7460,3395],[4916,-5852],[8639,1914],[-10550,-25123],[10634,1311],[-6493,-19392],[11023,-12857],[5830,4492],[5259,20049],[10657,1511],[21511,-13982],[13275,-2542],[15238,14976],[12209,-609],[-3737,-17011],[2437,-9792],[7390,-3573],[-11464,-20359],[14707,555],[678,-9191],[15511,7530],[15895,2767],[5564,-7747],[3554,-20367],[-3006,-19290],[-8921,-1502],[-10641,-11843],[10656,-12688],[12598,-6377],[8546,581],[-4384,-10540],[16837,7407],[3791,-1752],[12887,-26127],[8648,234],[4999,9097],[6280,-16487],[-2336,-9246],[8974,-15004],[8229,-2307],[236,-21137],[6774,-8487],[20757,-2954],[-526,27646],[9515,5260],[13763,-4229],[9842,1049],[3896,-11908],[22623,-14770],[18687,7511],[-13701,13672],[-1904,9087],[28727,14921],[-2177,7906],[18375,-3986],[5039,-8721],[8503,19777],[6066,-2541],[3509,-11320],[11493,2889],[-1637,-9781],[-16569,-5467],[4925,-4971],[23778,-7014],[5626,-10653],[7756,7567],[5952,-7127],[-11776,-8026],[-8221,-263],[2064,-8656],[14516,-5242],[-8861,-6545],[15573,-7597],[435,15061],[8282,-5271],[-815,-21344],[9956,9576],[10732,-882],[8594,-17076],[9774,11469],[16220,0],[1233,-9426],[15179,2044],[10009,10842],[7535,-7109],[11038,9874],[15954,2401],[11302,-11263],[16061,3162],[17614,-15220],[8022,-11957],[23773,-1998],[-10163,-10888],[9599,-1172],[1872,7381],[8594,-10288],[-12916,-4408],[-7415,-8458],[10732,-9181],[3655,8036],[8730,2758],[1165,-7483],[15254,-21391],[11441,5485],[5693,-10175],[-5024,-10277],[8753,-7550],[12871,3931],[7590,18416],[12879,-15228],[5518,9930],[9613,-5092],[11152,1098],[7940,9340],[-670,-9968],[18413,-1699],[8958,-9770],[13177,-2617],[9186,-13982],[19586,3920],[8190,-13186],[17559,-10399],[5861,5823],[7696,-9941],[5527,14734],[8053,-16046],[-8944,-5579],[14607,2119],[-5215,-6650],[7323,-5691],[13984,7099],[5905,-12746],[6905,4577],[-4172,15071],[11951,6995],[7467,-13832],[9621,-3339],[3471,-9536],[9926,2269],[-799,-7916],[10603,-9826],[-6181,-10626],[4924,-23314],[15491,67],[17317,-3845],[21305,1537],[1172,-9470],[6249,9742],[-8624,15117],[9271,6050],[13198,-9781],[15605,-3958],[-2983,-13522],[17886,10399],[12720,-4521],[20210,1698],[11173,3996],[3015,-5290],[34358,-3048],[-3302,-6349],[15056,-3695],[1491,-11009],[13268,-11693],[14119,-1699],[4811,-6048],[20186,-93],[2785,-5767],[8527,15173],[14415,-13129],[20247,-5036],[4865,5027],[18375,-10955],[25636,14227],[10002,1041],[21738,-3489],[16877,27683],[14666,-10465],[3959,-13644],[6058,16636],[-3751,14948],[9590,3160],[7947,-13101],[2298,15990],[35638,8851],[16244,20595],[12011,-7587],[8039,-15127],[7368,-25647],[12498,-2571],[-8282,-17085],[22007,-7962],[41461,-24588],[20666,-6584],[31931,-19889],[29106,-20951],[20028,-1659],[19554,5054],[9134,-6902],[-8053,-11244],[303,-12445],[8930,-1593],[12322,4650],[2704,31201],[18054,-4323],[6835,-7475],[18938,-6686],[-4826,-15624],[-11060,-6413],[8099,-13186],[10300,3320],[6234,9377],[13617,-7529],[9964,1180],[-2078,6621],[4193,17780],[6349,-2493],[2002,-14667],[12010,-9378],[8877,-1003],[2984,11872],[-4721,7717],[10414,2467],[7460,-13054],[9453,7034],[5533,-5599],[5641,12229],[21632,6282],[10399,-19448],[14013,3788],[2906,18248],[7332,-5307],[-7422,-17818],[27447,7661],[-928,11113],[-12233,11789],[17104,-1857],[7628,-10400],[3113,20105],[-3433,11151],[26572,20415],[18589,-4145],[6972,15933],[11798,4727],[20247,-13983],[-6378,-9912],[-13336,5982],[-10718,-17629],[-1248,-9847],[17576,2307],[20894,-9556],[7070,5083],[625,31847],[8008,-1144],[129,-8581],[10306,-1248],[-11622,-7990],[4864,-7483],[11364,-2710],[-9531,-7023],[1324,-10401],[12820,-524],[9689,15294],[11265,-4979],[1576,-7305],[-6661,-13505],[2405,-9659],[8115,-4941],[-9271,-2776],[10527,-6715],[-6775,-11234],[-5876,449],[1469,-17386],[-9468,-8092],[24668,-17556],[32191,2148],[38728,-9079],[26870,6227],[19547,-674],[25179,9724],[7354,10691],[18693,-131],[9630,-3901],[14417,-12004],[-374,12220],[10345,2915],[15490,-11778],[4155,-6798],[12841,1519],[-113,-10307],[-7263,-9097],[21884,-10492],[15110,13100],[13633,1895],[-1134,-5825],[-13573,-15623],[-1537,-23500],[12529,-6893],[-3662,-7390],[8762,-11252],[-12766,-14650],[815,-14591],[4407,-5720],[18063,-5290],[7902,-11158],[-10094,-19076],[12254,-26004],[5162,-6357],[-4049,-23164],[11005,-2025],[-6408,-36029],[-8403,-8853],[-366,-7437],[7200,-29502],[10025,-13242],[15506,-3282],[973,-8655],[6965,-4943],[11836,8365],[16679,5645],[9262,-4500],[488,-7446],[10656,-1641],[-122,8570],[12651,-9545],[15253,13174],[648,7044],[18184,-667],[24191,17922],[4483,-15146],[11471,704],[17728,10335],[1568,24635],[-19244,-4023],[-5669,5073],[11189,14732],[18785,1679],[4323,8824],[-10541,8656],[8434,8281],[35150,4980],[-4155,12330],[2990,5356],[29283,-8084],[2094,-23763],[14561,-16937],[10017,-1107],[3562,11114],[-13990,16617],[4278,10841],[19402,-272],[10245,-18700],[6196,-4773],[12665,-29455],[3913,-2916],[6661,14235],[8381,-3377],[14020,-33394],[12347,2664],[5669,-20134],[-16129,-8524],[3320,-4662],[27652,967],[-4444,-15089],[-14523,1679],[-7703,-4221],[3812,-19205],[11670,-141],[17925,-12172],[5214,12959],[10596,-730],[2718,-7071],[-5703,-33029],[7840,-10465],[5672,8712],[13427,-10681],[-754,-10523],[10117,-6021],[13122,2196],[19974,-14780],[7733,-20696],[7285,4989],[-5627,17030],[9630,3216],[6896,-11891],[3554,4275],[-1728,13420],[20073,-19017],[655,-6067],[-19920,-15287],[5778,-16196],[11470,1905],[3098,15483],[13815,6499],[9447,-21542],[-5899,-16588],[9986,3741],[13533,-14020],[-3371,-7530],[-21565,5710],[-3851,-12302],[6074,-8479],[17940,-2484],[2649,-8927],[-13243,-6246],[-15208,4332],[-9196,-12162],[5100,-12754],[15079,-1520],[-997,-16130],[-4323,-11704],[7938,-609],[-2451,-13653],[4635,-15023],[15918,-15080],[15116,-37268],[19638,-571],[161,-34004],[-4127,-17687],[9751,-3160],[9447,-18390],[11828,-5804],[13839,2175],[-481,-10832],[-10474,-10475],[4310,-10709],[-4454,-13372],[5085,-25704],[-12985,-8300],[3355,-24194],[5535,-12829],[13259,-5862],[10459,4118],[5975,10502],[9385,-3094],[2047,-21569],[-19387,-4266],[-5312,-12014],[4163,-18820],[19296,-27159],[-1721,-14628],[11450,4547],[9286,-8450],[2085,-10127],[-12361,-6321],[14645,-25695],[1149,-25123],[-3129,-9340],[11845,-15951],[1217,-17256],[7299,-1593],[11449,21456],[7171,-4098],[13389,-20856],[9536,-5214],[-3021,18980],[13952,-3966],[7978,-30141],[-1188,-19018],[6889,-4183],[31192,7858],[7407,-14253],[2199,25769],[7217,-843],[3523,-11478],[14737,-11911],[8669,12802],[6508,-9941],[9332,1753],[9842,-15894],[8130,1209],[16838,-7353],[-7209,-16569],[8487,-8027],[22029,20114],[14362,-2148],[7049,-6451],[33926,5214],[3380,-2992],[3104,-21333],[13002,7004],[18474,1453],[-7193,-9836],[2329,-5731],[13077,-1555],[-7467,-11733],[10283,-9827],[4879,5569],[10161,-2033],[16214,-18559],[-6348,-8844],[5450,-3741],[22089,4736],[14318,11412],[6316,-4641],[-4215,-16703],[17102,-5232],[4537,-5027],[-3189,-11085],[8092,-3188],[19927,-36488],[9506,-10522],[15026,-5552],[-5084,-15108],[12863,-2242],[-10611,-36507],[1029,-12640],[-5862,-15727],[6340,-16683],[22783,6705],[7277,-8871],[2808,-20651],[-7816,-20592],[2047,-24139],[10808,4483],[5991,9143],[21755,-25265],[12824,10485],[4902,-23895],[8488,-23735],[2534,-25741],[11305,-11262],[-891,-7934],[9043,-5195],[5191,12688],[9484,-2927],[9766,-19261],[10443,-12998],[18383,-7736],[14150,5532],[28171,-6349],[12521,-8234],[-12484,-15154],[-2276,-31997],[4126,-4483],[15011,6050],[6111,-6536],[2802,-12352],[-6395,-9724],[14341,-1434],[-7246,-8590],[-3768,-14967],[-7794,-9594],[-654,-7942],[7345,-85],[11295,12913],[9135,2559],[14249,-9105],[7201,-469],[-4226,-8542],[-9560,543],[906,-10137],[9332,-4183],[7673,-13259],[13991,4895],[2693,-9012],[6554,-1145],[-1377,-9913],[-14424,-8299],[-2452,-10211],[5953,-17415],[8244,-12651],[12826,-5936],[12932,5654],[4415,-2887],[3150,-18138],[12545,-7388],[-951,-11358],[4886,-13175],[19851,-18727],[-3166,15819],[11837,-928],[15374,-12218],[-8227,-10278],[1058,-5375],[19014,-10933],[-11151,-11029],[-2877,-8467],[5175,-13252],[8046,-4332],[16708,7079],[25446,-4295],[-488,6585],[-12322,3206],[3509,7033],[15420,6397],[7202,-7457]],[[93769207,50523464],[13160,-8889],[11334,685],[10573,7698],[9233,-14245],[-2816,-12181],[8921,666],[3227,7483],[12209,5796],[35806,4622],[11181,-6545],[122,-8928],[-10435,-6638],[16364,-14105],[-296,-6274],[-11288,-6329],[1262,-7427],[16335,1331],[12956,-7522],[-670,-12265],[9173,-11592],[30666,2721],[2048,-7269],[-9210,-5738],[-15405,47],[1415,-6283],[23155,-4595],[4468,-8863],[25629,10832],[19669,-5420],[16052,5711],[2489,-29671],[5739,-12351],[10680,-5853],[10770,2467],[-5968,-17161],[10901,-27795],[15360,-15783],[16837,5785],[26246,2130],[10436,-15239],[11211,6246],[14752,-1399],[6174,-10615],[-13413,-3366],[6097,-12425],[19274,8420],[10618,-1912],[8449,-11075],[20499,-14283],[33079,-45791],[8397,-5093],[-313,-8778],[-9719,-9133],[-4599,-10053],[6683,-30966],[15050,-18661],[2960,-12951],[6744,-7736],[10543,-1538],[2381,8768],[-6027,8946],[3805,9602],[22584,-3319],[13100,-5861],[3883,9902],[1842,19366],[11737,14949],[24708,13700],[6150,-12951],[-15590,-19272],[6342,-11139],[17795,9190],[11342,-1294],[5062,-12727],[-2641,-9930],[7124,-18558],[-6569,-8863],[-17332,-4539],[776,-14094],[30387,-4257],[31178,21962],[12346,11356],[5205,-2504],[1075,-15530],[12338,-5757],[30096,-1378],[-5426,-14470],[1492,-8713],[16768,7568],[17553,3480],[13930,-11967],[14523,9143],[6986,-2887],[1920,-15305],[4779,-3263],[32731,-4108],[-578,-11891],[-10695,-3028],[-1591,-5608],[7285,-8862],[-2795,-19318],[4119,-34248],[21815,-12369],[6128,-7888],[-3791,-14619],[3563,-6658],[35592,1041],[-214,-8797],[-8067,-5598],[3988,-12501],[15612,-6151],[15117,1124],[11623,-5158],[13107,-15389],[12194,-5006],[-4941,-29400],[-6424,-66],[-17674,13344],[-6135,-9011],[8113,-13944],[18246,-14714],[15475,-5927],[21442,-18352],[3060,-11967],[-18398,-1351],[6768,-11150],[10550,-5306],[4627,-7737],[28719,-19412],[13625,8467],[13328,-2662],[12255,-7887],[-2147,-8863],[-10914,-6818],[-13131,-14225],[5480,-10315],[17918,21053],[9842,2109],[922,-7952],[-11562,-14086],[2413,-10989],[25081,-23051],[34632,-16786],[8899,-16824],[15064,-37595],[11387,-1202],[5762,8423],[18314,13888],[5845,450],[6981,-19309],[11363,-11590],[15871,-4952],[13047,14825],[11113,-590],[12849,-9050],[17216,-5598],[7513,-8533],[10101,-20125],[14295,-5224],[2071,-12256],[-5763,-11525],[1781,-15586],[11745,4772],[9912,9144],[23467,-12735],[16638,3816],[22820,-3779],[14523,4934],[5390,-4539],[-944,-10214],[-6645,-9451],[10344,-15512],[12278,217],[4696,-15747],[-9500,-19008],[6806,-4951],[14660,10540],[4705,-12556],[-10064,-12473],[1629,-6564],[19335,6245],[10001,15117],[18230,8103],[5953,-1594],[13412,-15437],[5252,-1200],[3790,-14808],[-13154,-22702],[-365,-6433],[18018,-16702]],[[95268597,49346802],[-344204,-83368],[-137833,-33160],[-356107,-87495],[-105909,-25517],[-229563,-57204],[-56715,-13672],[-570225,-142421],[-68635,-19242],[-139873,-35467],[-265826,-65213],[-37770,-8055],[-107249,-26886],[-78141,-20811]],[[92770547,48728291],[-17500,-3834],[-11067,2110],[-18717,-4258],[-20620,-14152],[-7720,-7989],[-13806,-25244],[-14889,-11282],[-11144,-2879],[-10755,12773],[-29594,4689],[-7750,13803],[-15420,-909],[-11966,3770],[-19448,14976],[-1317,4905],[8647,13746],[700,9810],[-9020,19591],[2094,17938],[-6395,8779],[-35576,-6471],[-2666,26689],[4401,17284],[-9423,14816],[-7795,356],[-7757,-8627],[-1559,-12604],[-11998,-6845],[-16395,8290],[-17599,-5178],[-10061,18850],[-8671,-666],[274,-9893],[-10832,3094],[-3058,11639],[-11936,9490],[-16579,-23435],[-6126,139],[-6691,15915],[-1743,16599],[-5671,4173],[-10154,-9809],[-8503,18436],[-21335,6030],[-7658,22704],[-8008,4445],[-12194,-6827],[-10580,469],[2512,-13655],[-4050,-8101],[-14225,177],[1711,17350],[-7572,10642],[7983,8160],[-3439,6676],[-9005,-5466],[-7140,-11788],[-8647,3431],[3433,16139],[-4514,22366],[-4521,86],[-8304,-20763],[-18390,7765],[-1462,10728],[-20597,11225],[-4742,-5562],[6439,-24193],[-14089,-15362],[-11144,-1171],[-625,14684],[-10000,9295],[-7863,-6461],[-24054,-3528],[-10238,8132],[-10648,16935],[-5664,14761],[-12148,14048],[-13624,-11488],[6476,-10578],[-1970,-10785],[11273,-8954],[-2101,-9388],[-7514,-2589],[-7999,15427],[-10519,1398],[-12560,-6847],[-16762,4548],[-2990,11254],[6393,12773],[-28628,-4829],[701,18726],[-11753,825],[-5754,-11224],[-12673,10100]],[[91977960,48968616],[8676,18999],[-2572,12416],[-8334,12791],[-5176,-160],[1285,-14517],[-14439,2879],[-7528,17904],[-16030,-938],[-2124,-21298],[-4551,-3234],[-6638,14047],[4391,9660],[-9743,3103],[-5237,-11610],[-5723,2551],[-937,10194],[-13732,9687],[-4369,13214],[7140,10652],[-9909,3846],[-6775,-12295],[-28300,14189],[-23575,-6855],[-2282,-9387],[5404,-10982],[-3297,-9950],[-15672,13073],[-12292,2982],[-27327,-4052],[-19113,16721],[8061,26576],[-2764,5214],[-23679,14640],[-8784,-2993],[2100,-18145],[-12506,-2588],[-15093,-16234],[-19868,21429],[-9270,5730],[5845,17799],[-829,7643],[-15109,16710],[-3699,15023],[-4835,1089],[-3721,-10503],[8768,-6283],[-1628,-8919],[-10177,-2710],[-5024,7502],[-4614,22517],[-16851,825],[-12673,-3910],[-8602,4820],[387,8815],[16549,11234],[4886,15933],[-12634,6536],[-7103,-13719],[-6005,-3423],[-13328,3976],[13305,8093],[-11829,6545],[161,23342],[-11122,-1727],[-7459,-13025],[-9918,4699],[167,11722],[-10846,8261],[-12704,-9125],[-5435,2759],[-2573,16119],[-10938,-5616],[2351,-10822],[-8508,-38],[-1043,9922],[-6662,580],[-20353,-27194],[-15681,-882],[-15428,14780],[-3784,8074],[4689,8786],[-17362,9482],[6714,7539],[-11227,10775],[-2694,-9360],[-10337,-6704],[-9950,-159],[-14179,-12951],[-7339,-300],[-17027,11412],[-18367,31857],[-7094,7127],[-5907,16158],[-5412,44150],[-7970,3039],[-9872,-4371],[-16442,-18118],[-19623,-26594],[-425,-6743],[7862,-10729],[-1507,-12893],[-9643,909],[5442,-16543],[-26520,-38243],[-2367,8394],[-12467,5243],[-11442,-4849],[-14309,7370],[3037,15343],[-26140,5448],[-8327,5683],[-7794,-12491],[-5420,7428],[-9096,-3996],[-13511,20762],[-1399,18063],[13670,1133],[6303,9444],[-6714,18118],[-15992,2542],[-5381,-7466],[-26505,-14845],[-11974,-2249],[-4513,9264],[3951,11478],[-3235,5740],[-36484,-347],[-19395,1753],[-12680,6246],[-3691,7502],[-12872,2767],[2161,-13663],[-13502,-7184],[-11106,2167],[-3509,15370],[-11715,-6593],[-6729,5430],[-3144,11347],[-9591,-5787],[8390,-15979],[-11342,-1059],[-11014,13429],[4734,14770],[-10041,1031],[-4794,10447],[-11769,13597],[-9560,-6798],[3775,-11480],[-5419,-10820],[-17415,8252],[6127,25657],[-2930,2513],[-21229,-14722],[-2970,18313],[-4696,8479],[11875,1453],[2314,5974],[-18534,7662],[-8663,-48],[-7908,-17254],[-6356,169],[-3973,8861],[-9728,-2175],[-4256,-7306],[-5320,7934],[4370,8131],[-20887,14723],[-5946,628],[-18481,-7671],[-13321,21391],[-12969,-21138],[-9446,-3958],[-13366,432],[-12141,-8131],[-16708,-310],[-15825,-6217],[-11927,4577],[-21923,-10588],[-10138,8308],[-16068,-674],[-8062,9828],[-17720,10071],[-9811,-4173],[-9173,4089],[-2024,-10147],[-20490,3601],[-3547,-4285],[-12773,11599],[-12118,22986],[-46646,17884],[-34001,35288],[-24783,1743],[-7765,20200],[-22942,1726],[-2710,-6161],[-27477,17921],[-5321,13504],[-7719,1238],[-18457,15848],[2184,6648],[-5807,9482],[-11564,-12933],[-19827,11067],[-12293,-4820],[-1043,8654],[-14775,8056],[-9606,-4773],[-5222,9003],[-12301,10653],[-10108,1107],[-12194,11618],[14410,4371],[-10382,9462],[-9523,15858],[-13686,6067],[-16472,-4342],[-15239,9922],[-8943,-2757],[4590,-15333],[-27494,9238],[-35015,20348],[-14386,1585],[-3478,-14731],[1850,-8084],[-6789,-4174],[-19632,12688],[-15429,2870],[-5549,9210],[-5624,25891],[-20841,23276],[6736,7914],[-11783,8310],[-11524,-17557],[-13617,1202],[-5398,13138],[-15557,-10626],[-12926,14377],[-1537,11366],[-9636,3891],[-26923,-3086],[-5801,3302],[-898,14057],[-16494,1350],[-19181,-2298],[723,11010],[-6501,1061],[-4058,19262]],[[89839030,49790351],[-2466,19983],[-4590,5027],[-10861,-778],[-4506,-12005],[-13998,13636],[-16983,-2786],[-11500,-11206],[-5587,1670],[-4857,17855],[-8364,3189],[-19868,-1791],[3388,8111],[457,20378],[5365,12012],[9714,1547],[6378,-4931],[24905,7970],[-5700,12932],[-7384,1509],[7132,8507],[6789,21793],[-7687,13683],[-708,19177],[-11311,3986],[-11083,28620],[2322,27017],[-11959,27356],[7779,11985],[7156,1312],[3822,-7896],[-3647,-9799],[6911,1500],[8077,-7989],[9203,-769],[-11152,17170],[1736,14264],[-6660,14423],[-146,19054],[13078,-1996],[2558,6132],[-10428,22938],[-2658,18869],[-17186,10615],[677,11854],[7710,-3433],[-9986,42970],[-26155,5888],[-7695,19441],[-14850,25929],[2032,8094],[14142,-6435],[1341,5140],[-9257,26155],[-25218,22402],[9120,17847],[-2184,4932],[-10817,-2090],[-8130,21203],[-2101,17508],[-11272,9096],[-624,13486],[8038,7867],[13693,-1594],[5998,4764],[-23466,10841],[33034,6743],[-130,4256],[-13480,7813],[-5869,11618],[3357,12239],[13504,2662],[18184,-7924],[2946,23228],[-3113,4858],[-12674,-8017],[-14134,15660],[34487,5721],[-5928,10371],[-8898,5543],[-11639,573],[-10901,8777],[5573,13260],[-15992,9997],[12102,9190],[-2565,29090],[-8060,22580],[25018,5683],[5085,20716],[-11433,3142],[-10732,-2025],[-13944,22927],[-12993,11949],[-6501,14187],[-6964,40823],[-9356,2110],[-8068,-11329],[-18330,24297],[-6455,16730],[-2130,14968],[-8928,7624],[-976,-15212],[-5853,-2634],[-18100,1940],[-8472,-11674],[-11449,4069],[-8609,8140],[-2244,9631],[6210,3432],[-13997,47706],[-10863,4087],[-2161,-8129],[-21953,5794],[-8890,-1762],[-8288,-13616],[-13245,5317],[678,7099],[-14997,8045],[-181,8160],[-23757,10418],[2733,19139],[-6806,14274],[15681,9828],[-10245,15623],[2222,6648],[10062,5178],[26535,23894],[10459,14658],[4513,20293],[18551,43860],[32738,10839],[7284,5019],[20901,30054],[11731,1595],[11264,9378],[1957,7756],[-5959,15772],[-2573,22705],[-6890,10953],[-10868,7745],[-8290,-2691],[-6957,-13251],[-12636,-2832],[-1605,29428],[-16191,47206],[-10474,-6039],[-6592,-13851],[3388,-11234],[-5085,-1622],[-9827,13767],[3396,9977],[-7613,12811],[-5997,-6189],[1507,-20070],[-12081,-13897],[-15420,-722],[373,22254],[-14386,18688],[11098,6013],[3554,24043],[-16061,15408],[5504,6659],[-13153,9790],[-4271,18943],[6174,16890],[-16184,28424],[-6621,6216],[-3783,14545],[4651,7878],[-9150,6320],[7110,7109],[4765,16046],[16775,17452],[9065,14113],[-11074,6471],[-3060,11769],[10794,22384],[-11190,6059],[1278,8185],[-5213,19037],[-18314,12755],[-15101,6255],[-382,9386],[12454,14321],[-9644,-3274],[-15963,15521],[-13328,-7475],[-10678,11733],[-5009,14263],[890,10128],[-4735,10982],[-10435,-9660],[-8068,12717],[-9272,-1586],[-19204,4680],[-14927,16879],[-2230,-7483],[12011,-20236],[-11745,-4606],[-8007,14133],[-18054,-2016],[-34185,21502],[-32037,7851],[5532,-16309],[-2375,-5149],[-20147,1511],[830,12369],[-8282,4286],[-16890,15604],[-13899,-2381],[-19259,12763],[-4240,-2833],[199,-20058],[-5847,177],[-11325,11948],[-6074,-9378],[-8321,-23791],[-5107,3807],[-206,18184],[-14447,1228],[-3881,-19807],[-12689,12305],[-26573,10841],[-3745,8280],[-10413,3516],[7613,12830],[-6592,3834],[-25492,-11675],[-1377,12858],[23375,14187],[-11129,20050],[8488,16131],[-10695,6405],[-16518,-13242],[-19524,2814],[411,31424],[9866,12078],[8334,-9659],[12711,1238],[-425,11470],[-9804,12696],[6463,12999],[6986,-3770],[-7580,-7709],[14942,-6949],[1370,11740],[22994,18972],[8496,-4914],[7550,4465],[6097,15904],[-6166,6874],[-8952,-12304],[-6751,-873],[-6157,20575],[-19183,544],[9789,17649],[-7588,7258],[-10649,-12003],[-8206,1669],[-6172,18757],[1559,10334],[15658,8524],[-5944,19253],[11387,15014],[-2778,17648],[7383,7550],[-3562,8560],[-8693,2410],[-3799,13149],[2543,31386],[6348,-3459],[9523,17967],[10214,-1632],[12810,-8402],[17971,6265],[-3996,17274],[-15406,1547],[-9766,21766],[-15846,-770],[-14015,8216],[3540,9958],[-8335,3507]],[[71309645,55406816],[22257,12491],[60603,36807],[6432,2222],[111399,69171],[103246,63431],[72569,45528],[142895,86952],[22987,14704],[141785,87447],[147119,89857],[205822,123197],[58709,34060],[41667,25526],[149067,88797],[96457,58893],[32563,20499],[19798,7962],[13449,10672],[130162,77451],[53411,32549],[119749,71291],[2275,-28],[72387,43222],[8130,-15445],[118957,-215585],[82389,-152089],[4780,-7127],[44514,-85076],[89094,-160761],[58170,-106860],[56357,-101645],[115850,-213025],[96014,-166916],[105523,-186991],[19844,-34454]],[[73936075,55063543],[25894,-47161],[57195,-97698],[103481,-180569],[67837,-120071],[42967,-73353],[61694,-109027],[18731,-30693],[48701,-88245],[17363,-26004],[133441,-240463],[113613,-199540],[55170,-95673],[43600,-77301],[55610,-96486],[50572,-86745],[65263,-117870],[36704,-63158]],[[74933911,53313486],[-176219,-111352],[-63216,-40709],[-147081,-91385],[-45814,-31398],[-17088,-9264],[-75837,-48624],[-78050,-52337],[-52156,-34201],[-167625,-106409],[-55316,-36076],[-124428,-79223],[-243066,-152765],[-106230,-67172],[-99751,-62015],[-156954,-97040],[-112654,-68196],[-372,-778],[-118660,-72743],[-93160,-59183],[-14585,-10447],[-44734,-25029],[-60467,-38130],[-23018,-12136],[-167762,-104035],[-103406,-64886],[-167603,-106849],[-60558,-37014],[-207969,-128616],[-61106,-37277],[-75387,-48511],[-98139,-59990],[-105140,-67969],[-33348,-20331],[-88768,-57609],[-93860,-52927],[-112348,-69198],[-178846,-111999]],[[70233794,51418553],[-49515,86555],[-186973,333090],[-91700,161108],[-16715,19947],[-91577,171482],[-96790,170235],[-32260,57738],[-55328,94481],[-57857,103559],[-78760,143733],[-44862,78341],[-141206,251183],[-24860,43671],[-195636,347343],[-82793,147372],[-86599,155005],[-87101,144266]],[[68813262,53927662],[190277,103475],[261502,160247],[152051,89483],[78417,45763],[228961,136465],[36970,22309],[38469,29147],[98862,57550],[81445,48869],[137134,80667],[95017,53959],[81377,48576],[170031,100071],[14294,6443],[63027,38963],[157463,92062],[159946,97444],[228809,135433],[222331,132228]],[[82199976,75047225],[17340,-13842],[47208,-23313],[26960,-7212],[31269,-3179],[40632,18963],[22995,16383],[16183,19740],[7064,16223],[-1257,24317],[2108,15763],[-2009,13758],[-15040,46308],[5960,39048],[12925,6087],[22202,18135],[31833,2683],[38888,6855],[15042,5562],[18945,1341],[15886,-2787],[38097,-15556],[34131,-20050],[20642,-16327],[21046,-22319],[7423,-2270],[11972,-19055],[9317,-1961],[9576,4325],[30309,-37700],[29945,-16008],[13160,-3769],[50642,15210],[38674,22526],[28073,25948],[18808,24204],[5770,12360],[2466,24372],[-1187,20556],[-20635,42820],[-9164,9330],[-11122,18605],[-8320,8301],[-14173,33797],[-2321,10315],[-11144,-6554],[-4132,18652],[-3373,41853],[298,14760],[5616,29755],[8846,17228],[6150,18436],[13838,24682],[10116,11967],[33941,23903],[25096,14105],[28354,5711],[14508,-919],[52589,2569],[23848,-3930],[11043,-8758],[18445,-8346],[8753,93],[11387,-10569],[50870,-24025],[15078,-11976],[12216,-17188],[14219,-11527],[17834,-10183],[48419,-66],[18253,2953],[21230,170],[6720,3478],[37023,5356],[45763,15933],[13875,13165],[16762,5422],[6866,10343],[8434,4389],[27104,21803],[10337,24494],[28894,34520],[15415,15220],[10002,19938],[11767,13522],[4636,10757],[30743,19074],[31459,10625],[16061,900],[17758,-8187],[5976,4961],[31239,-12031],[22896,-4718],[27660,-12876],[49409,-17601],[20232,3610],[7383,-5027],[12126,826],[7558,6742],[19219,3385],[14751,17922],[9851,44029],[9332,29660],[14461,24467],[9577,21007],[13602,14675],[11363,19975],[24,6011],[15147,26043],[9561,7690],[45951,7071],[15771,-3255],[20172,-423],[17423,11395],[22493,28583],[8783,24860],[-37,34127],[3327,27954],[28125,6461],[30347,-9245],[14996,-11573],[9681,-11488],[15650,-27233],[20461,-23725],[18969,-7991],[19090,-3132],[5023,2561],[31216,4210],[35776,-674],[37205,-9631],[36491,-20989],[18763,-20255],[12925,-20996],[5700,-15389],[6729,-54561],[4591,-21315],[16731,-43945],[6698,-46119],[2428,-60711],[-4994,-26689],[-13259,-31454],[-6828,-26613],[-45,-13045],[14409,-37979],[12824,-20200],[19890,-22450],[12613,-5740],[20004,2710],[16472,-1134],[21731,4435],[14638,85],[14340,6752],[16007,15397],[13732,3461],[11295,7503],[20818,24738],[40031,23959],[8381,21007],[11028,17528],[24511,16936],[10047,14104],[26543,1284],[10145,-6723],[9706,-20087],[3851,-45576],[-6227,-36415],[2215,-31893],[-6431,-43335],[3303,-13297],[27974,-12285],[37061,1097],[2869,-2120],[36651,-280],[16594,3207],[48174,14450],[45725,20481],[32182,11141],[25675,16393],[8318,10980],[5359,17827],[22310,16441],[12187,4492],[29426,-5599],[-2762,-23005],[-20544,-48276],[-434,-20584],[-7140,-7671],[-3349,-24916],[6766,-9238],[61260,-10840],[39710,-15296],[35052,-22253],[20704,-6845],[31185,-2055],[36499,14687],[11281,8551],[35684,15887],[23429,-5196],[25574,-12228],[19303,-1107],[21999,-14695],[38857,-14161],[28781,-6236],[22705,-1865],[26322,2006],[18657,4267],[63534,25949],[44674,6264],[21609,-1556],[14090,2316],[25826,-3057],[36285,-14555],[23931,-3536],[16792,5552],[18397,-2363],[16953,5093],[19851,10090],[7542,7539],[38243,3396],[15504,9451],[19746,-955],[8685,9883],[41659,16562],[9399,-2870],[6205,9885],[10336,5513],[15300,-3816],[9492,18596],[9073,11282],[9027,17470],[12879,31902],[3372,34051],[33500,-5626],[34458,-14648],[55900,-29278],[5016,-14272],[19091,-21794]],[[86280164,75397475],[464,-19647],[-997,-115758],[-838,-250564],[-395,-19947],[-305,-160641],[-1096,-383259],[-928,-242134],[2702,-64406],[-1058,-38870],[990,-183514],[1361,-327434],[-1241,-201133],[70,-57299],[1849,-58985],[-556,-57279],[830,-70785],[-1408,-112438],[38,-156478],[2877,-354647],[-2740,-376197],[1668,-62504],[3424,-222411],[4514,-46834],[4933,-1073283]],[[82650864,54214838],[7575,-11788],[8753,-53323],[19623,-37275],[19784,-29353],[18207,-19505],[42670,-34098],[22250,-10279],[13877,526],[20939,17479],[11471,3902],[10907,-2728],[4431,4781],[-2383,22846],[3974,14028],[20635,6367],[26109,13561],[10625,8422],[5008,28274],[-6714,23030],[725,11667],[7686,13092],[27897,24034],[-1483,29043],[-14607,27984],[-5207,21727],[-12992,29221],[-1166,11338],[4141,30899],[-699,14733],[-9941,38628],[-23499,38739],[3312,17386],[5297,10279],[15467,19551],[14470,8526],[24091,3770],[33180,18183],[22455,2579],[17941,16120],[20164,2495],[7938,-2542],[9051,-14582],[13191,-32297],[15627,-19787],[15991,-13513],[14129,-19938],[23603,-48520],[13648,-20640],[25781,-31594],[7673,-22028],[798,-26699],[9714,-18943],[20194,-33029],[4718,-13428],[20507,-43560],[585,-8374],[-7169,-23708],[-7429,-16363],[-3122,-26286],[8412,-24824],[-3288,-16963],[-17606,-13007],[-15840,-28030],[-4141,-12351],[358,-15409],[5412,-16494],[-5557,-4267],[-18452,-1830],[-9385,-13493],[-3287,-33705],[-8876,-19721],[-25112,-14263],[-29563,-4904],[-2024,-12501],[19013,-12951],[16076,-16411],[15018,-8308],[10649,-9753],[13922,-31087],[11783,-19018],[-3631,-11508],[-8250,-4961],[-17036,-3282],[-1744,-10146],[13435,-5937],[10756,272],[11974,-5861],[2740,-12293],[-3799,-44826],[1112,-31426],[13328,-34181],[-3128,-11028],[-20073,-1547],[-29236,17621],[-15126,1866],[-12254,-6565],[-10550,-11750],[-13709,-20688],[-19143,-4435],[-23581,806],[-27784,15585],[-26076,11227],[-7955,993],[-27356,-6808],[-13596,-8299],[-21473,-5448],[-10610,-11488],[-12680,-43992],[2785,-11957],[18330,-18876],[3675,-19000],[-13968,-18775],[-14879,-6995],[-15727,-13269],[-14454,-23191],[-617,-8262],[16868,-20303],[36254,-15512],[26511,-6470],[8640,-10325],[502,-30356],[4401,-4819],[17863,-2842],[22714,-10118],[13078,-21017],[18169,-15933],[6987,-22515],[2330,-18652],[15079,-46729],[-2596,-12904],[-23186,-23107],[-15702,-11863]],[[83016389,53142689],[-19975,-18156],[-9856,-14085],[-2291,-13456],[11479,-18099],[10778,-8825],[-1682,-10185],[-23658,-13240],[-8510,-13598],[2976,-22264],[21138,-32268],[23459,-13758],[13062,-290],[12620,7062],[13252,15192],[12294,19308],[11973,4727],[7367,-7530],[14242,-42970],[5344,-23265],[16281,-20614],[15330,-24644],[7102,-42585],[-1469,-12369],[-5862,-7455],[-14035,-4342],[-16608,-393],[-12240,9068],[-17059,20067],[-21654,10279],[-22889,-5645],[-20384,-14582],[-6204,-8994],[-8884,-25132],[-10808,-11366],[-21701,-8694],[-5525,-6301],[-5344,-18250],[-1516,-40033],[1927,-12622],[14120,-5234],[24769,22105],[13023,422],[15809,-9087],[14059,1106],[32517,16298],[47673,13139],[16182,2672],[20180,-1003],[12238,-5065],[23582,-17292],[30128,-40446],[7802,-15474],[1612,-23734],[-2244,-45970],[-12925,-53998],[5724,-26904],[10321,-31444],[-289,-34144],[-5670,-28509],[-982,-41683],[2580,-19299],[7376,-24684],[16227,-29773],[15970,-35448],[9157,-9434],[41994,-24327],[8350,-18886],[-17179,-16993],[-10596,-20874],[7832,-75266],[7102,-13616],[9666,-4653],[35487,-9],[9491,-7765],[175,-12640],[-7314,-28349],[5944,-9331],[16289,-11038],[1469,-8872],[-7155,-29239],[13260,-21362],[-3957,-11039],[-10718,-8851],[334,-14573],[10087,-8826],[19204,-9330],[9858,-956],[16980,-7812],[9151,-19074],[9178,-10682],[12248,-4980],[30204,4418],[8746,-6705],[2299,-22066],[8638,-1951],[12072,4286],[45999,6143],[9834,-10476],[4963,-11665],[1194,-33133],[7521,-12696],[12667,-10279],[-5063,-12304],[-31224,1613],[-14576,-3928],[-26511,-2560],[-7984,-3621],[-5633,-13747],[-4377,-34952],[-9750,-16213],[-14532,-11939],[-152,-14807],[22128,-14122],[16190,-2401],[22310,591],[34458,5598],[36872,1406],[17491,-17798],[1393,-20519],[-1941,-23209],[14189,-67502],[1346,-18559],[-4415,-69929],[-8198,-39237],[-16851,-19599],[-10436,356],[-3539,9932],[1475,23480],[-12285,13973],[-18290,-6114],[-11997,-9077],[-21488,-3432],[-8084,-4089],[-8708,-12886],[-814,-11047],[6707,-15744],[9772,-13157],[7948,-41534],[-5739,-13430],[-15756,-25845],[-13915,-18277],[-16381,-3928],[-16061,8355],[-10192,-10],[-996,-13184],[13016,-14827],[13975,-18],[16685,-9350],[9956,-10645],[6720,-13991],[-10488,-12678],[-26131,-12577],[-24898,-19693],[-6934,-7690],[-8221,-18510],[-14273,2513],[-38751,41992],[-10161,24552],[-10245,12895],[-15924,2091],[-17051,-5458],[-22918,-18408],[-17866,-10034],[-18914,-14395],[-14843,-17753],[-20635,-39678],[2588,-11815],[6401,-7886],[17125,-10157],[4972,-6254],[-4842,-19375],[-5571,-3676],[-27190,-122],[-14851,-10006],[-12612,-20359],[-16304,-16917],[-39216,-13692],[-13990,-8815],[-30760,-13964],[-15155,-54400],[-6948,-52029],[8136,-14403],[35121,-21587],[2307,-11480],[-8731,-11186],[-26391,-7907],[-7344,-6394],[1949,-13654],[15535,-26916],[12826,-14497],[-1309,-13822],[-11570,-11554],[-8457,-14517],[-3844,-23706],[5656,-40954],[9628,-45350],[-4087,-13438],[-17858,-37558],[-11341,-14264],[-17986,-15726],[-14730,-8890],[-27539,-9079],[-14074,-7915],[-27707,-30758],[-5411,-21653],[-6104,-11244],[-11821,-9940],[-15665,-23857],[-610,-32288],[1949,-37689],[18534,-82206],[3684,-50480],[-4475,-45080],[1408,-8468],[14173,-38644],[11257,-21223],[35799,-36798],[21860,-27524],[42870,-34528],[5153,-19778],[-14934,-19178],[-9080,-6977],[-17767,-5120],[-7818,10232],[-13975,1396],[-9294,-4577],[-12841,-14468],[-7207,-12549],[-12788,-30206],[-15124,-9142],[-8274,1332],[-24024,25948],[-9636,338],[-12171,-25865],[-27554,-25029],[-8053,-28490],[-2155,-35110],[-10907,-13672],[-12985,4689],[-24146,19037],[-15260,-6453],[-3502,-15004],[-10877,-12736],[-9355,-3722],[-34595,-3779],[-17522,-12511],[-10109,-20893],[1515,-23237],[21260,-43532],[-397,-15942],[-13442,-21354],[-7224,-27635],[-12543,-13598],[13069,-9454],[19539,-24897],[-2001,-32616],[17423,-19693],[17804,-50321],[5054,-21757],[8387,-9621],[2543,-15981],[-3425,-19926],[12559,-20172],[4887,-23041]],[[82825098,49299266],[-444145,-5384],[-396427,-4106],[-2960,-1858],[-228445,-1669],[-66799,1154],[-119795,-4135],[-112592,-245],[-57666,-1500],[-21908,3300],[-60489,-3282],[-82908,-1604],[-10481,-1715],[-24190,-9641],[-74595,-43005],[-15939,-10335],[-106321,-91509],[-29000,-22327],[-71573,-29043],[-28454,159],[-30842,17771],[-12194,-545],[-37854,-21117],[-10328,-2937],[-83038,4493],[-8212,-984],[-28400,-14462],[-99347,-94527],[-117975,-94969],[-43311,-31087],[-41880,-27664],[-65810,-37717],[-43882,-30759],[-47688,-36837],[-26649,-26698],[-44125,-35410],[-32699,-23697],[-107113,-74075],[-73446,-43531],[-27638,-20867],[-51668,-36882],[-43046,-33376],[-2442,442],[-59959,-43823],[-13053,-4116],[-35683,-1473],[-35023,-7400],[-26679,-8683],[-19006,-3450],[-31658,-2823],[-7535,-2457],[-46698,-26005],[-34900,-24570],[-28666,-18408],[-17415,-8599],[-39361,-14236],[-63079,-6518],[-41399,-928],[-12118,-9350],[-31862,-33412],[-49462,-21345]],[[79197268,48169490],[-11843,34980],[10100,-4201],[9195,4951],[-1881,13053],[-10229,104],[10733,27440],[-5421,9742],[10139,1791],[-5205,14301],[10778,7991],[9507,281],[-12796,13936],[-2108,24475],[11920,591],[-4446,24045],[1560,17574],[5017,4886],[11258,-6752],[7702,15922],[-23170,19816],[-14850,3919],[-12726,-1988],[-7368,3311],[-10567,13720],[-10579,-15979],[-7491,7933],[4751,19337],[-5672,13485],[-449,13129],[7521,11863],[-11273,11075],[-4285,-15736],[-5549,8243],[-22120,-2008],[-19851,11339],[-22425,-375],[-9499,8852],[-9340,-12097],[-5853,1219],[-3585,21316],[5518,65212],[14926,2851],[-2230,9191],[3137,33010],[7490,5523],[381,10559],[-9576,6687],[17788,14084],[2496,37146],[11998,-3113],[-55,7043],[10391,10109],[-3151,13672],[11920,15501],[14286,-1641],[6097,8910],[-1430,12077],[11639,20012],[-5429,5394],[-11218,-780],[3653,10176],[6036,1266],[-4780,9986],[2832,13974],[10694,516],[-1340,19046],[11882,4736],[12590,10277],[8121,-7952],[10771,6246],[-1925,8937],[2466,19552],[9401,-3066],[2906,8300],[-25917,12133],[-3487,5055],[-20620,14171],[10208,11271],[-2551,8037],[12294,3910],[5747,9463],[-8397,14066],[18565,1708],[-9971,20518],[-8647,9406],[5976,6732],[-100,10325],[-26929,5159],[7078,-9087],[-12185,-7802],[-5047,2635],[-8351,25094],[-9666,-2551],[-3836,15005],[-7217,2598],[-7984,-7268],[-115,19318],[-16693,-8094],[640,19554],[-9256,5899],[-3105,12144],[17453,24794],[15064,-3741],[1141,9349],[-12848,10372],[-15443,1754],[-14760,19477],[-8098,-1341],[-6684,8000],[-6736,-4492],[4369,-17162],[-9986,11056],[1575,12810],[-12964,-4445],[-11957,8393],[-2854,10560],[-10565,2363],[-4210,-10878],[-13305,-431],[-14158,26538],[-9430,4829],[5868,10898],[-6387,19186],[-13997,9565],[-3638,10513],[-7201,-2279],[-15893,14312],[-4333,27475],[5146,9257],[-2375,8684],[-19349,16345],[-4201,17095],[11045,20163],[-3052,26079],[10123,22592],[-8320,-1116],[2154,12435],[9903,9837],[-2618,22835],[-7627,3197],[8959,15221],[7506,-263],[2038,18034],[-12764,13531],[4026,10719],[7575,1041],[-313,15249],[-20307,18249],[-8335,-2223],[-7140,12163],[-6730,-572],[-5023,17396],[4788,12650],[-10428,15173],[243,13533],[-10854,-3170],[-5801,11337],[3624,10071],[-16320,14377],[-12741,25733],[-10048,-3048],[-5709,5992],[1408,9519],[-9195,-582],[-4087,19411],[10352,5702],[-7292,15578],[-13031,13991],[8235,15211],[-10207,6217],[-9088,-10990],[-3022,21146],[-9438,21185],[-2490,18483],[-10314,15079],[6363,13683],[-5122,9912],[5770,19440],[-4789,8618],[6479,3460],[3600,20613],[-10999,271],[-12034,26840],[7604,2766],[-8533,14442],[3943,14480],[-10983,11281],[6333,9631],[8471,-6855],[533,13447],[5305,7165],[-7832,7887],[7664,6574],[-1300,25620],[2953,24841],[14994,17695],[-10473,6649],[-10375,-2991],[3943,15848],[-14181,11225],[-4110,9276],[18878,16288],[13220,1078],[-16647,30243],[-14622,7690],[-9788,13485],[3775,9895],[-7505,28724],[-16684,15136],[5129,9620],[-4963,3320],[-1827,17650],[-18077,9378],[2511,7014],[-10259,4435],[-8640,-4444],[-13321,8542],[-22,12210],[13062,12051],[-1949,18623],[8601,9904],[791,8234],[-16494,3609],[4583,9426],[-4643,4407],[4597,15099],[-7719,2568],[61,13664],[7848,8149],[-1949,27655],[3235,33328],[-4391,7119],[-16571,13512],[-9370,2139],[-618,-13607],[-12817,5243],[-5108,11103],[-11753,1331],[5527,15885],[-12849,1886],[1013,6920],[15810,10842],[326,21446],[22500,21625],[-7801,21898],[-16609,13147],[10800,8018],[-7390,6030],[-10032,22056],[-6250,-468],[-7056,8740],[4864,6048],[-2139,14086],[-4818,5166],[1196,17114],[-6904,2898],[-709,10259],[-6910,-2841],[-51532,35543],[-1379,13260],[6083,4135],[-5366,8215],[-8190,253],[6538,14910],[-6188,15915],[-9150,-1333],[3349,23024],[12370,18267],[-2635,6856],[8617,4950],[3943,10222],[10908,5833],[2139,7785],[10853,12594],[5648,-12219],[-12223,-6857],[11889,-16486],[14120,-10305],[12855,14686],[-875,13709],[4186,6237],[9789,-48],[5503,17060],[7940,7314],[-5556,9022],[2390,7117],[18990,8140],[-7695,8450],[10375,7941],[2093,22574],[-5313,4689],[7063,7164],[-28832,14583],[3410,3713],[-1219,17527],[9058,21485],[-17484,18089],[-8380,12473],[-20947,21700],[-6037,-8404],[-13929,4539],[-6333,7418],[-6287,17677],[-7407,-2372],[-2725,14949],[7642,30459],[-6575,16803],[7207,2834],[3555,12161],[-4338,4174],[-1120,19843],[-8867,-253],[2048,18297],[-4148,9790],[10427,6489],[7596,12632],[13739,-1388],[10574,-12679],[10474,976],[2632,-13241],[4972,2165],[-1706,14639],[9356,1491],[4871,14845],[13008,4482],[-13495,20407],[-13740,3451],[-1560,7268],[-12376,9696],[-4629,17518],[-12132,9330],[-7895,14686],[-516,12237],[4794,11104],[4309,-7905],[13283,5177],[5434,22927],[12004,7634],[-10908,8496],[5328,17668],[16761,10373],[7094,8927],[9111,21663],[-137,20836],[-19302,592],[-2443,12002],[14499,8394],[-5122,20012],[-5352,-206],[-5594,10175],[2398,11121],[10695,12369],[-6691,23427],[3972,9819],[14365,5457],[9613,12379],[-3531,7662],[9255,11619],[433,17939],[-9277,-262],[44,10371],[-5677,6237],[7771,15182],[-7451,9125],[-10649,-4193],[45,10606],[-12316,24515],[53,27635],[6919,-1096],[1204,13926],[-5389,8946],[2610,12857]],[[78602449,51764845],[7795,33055],[7695,12689],[-5526,25686],[-6577,-2008],[-3509,13496],[1493,14826],[-12796,11946],[-3662,12060],[-10664,10345],[-2321,26744],[20385,10401],[201878,113555],[305458,171379],[24944,13653],[103649,59793]],[[79230691,52292465],[263282,147924],[122724,71008],[115951,65213],[39739,25695],[3107,-1593],[292747,164879],[27645,14602],[82322,47104],[485171,274945],[92423,51447],[275134,156833],[393442,220500],[435423,244056],[121711,68298],[84346,44385],[144196,80207],[440810,246870]],[[46646218,70902364],[129834,-1801],[226686,-919],[191282,159],[94575,-271],[438955,777],[22606,367],[169155,-2241],[62517,1078],[49887,-301],[302041,-4998],[264919,5533],[28757,-225],[51614,4426],[46287,159],[309822,-2138],[16326,-299],[579064,-3817],[94628,4238],[830912,-1782],[25965,-2409],[71512,131]],[[50653562,70898031],[2055,-209228],[-4696,-109559],[14492,-1062621],[-426,-3902],[868,-348927],[-199,-312419],[541,-105378],[53,-359187],[-250,-42378],[-2620,-108529],[4485,-1063652],[319,-5955],[1766,-368995]],[[50669950,66797301],[-238218,1219],[-801180,-4220],[-143444,1659]],[[49487108,66795959],[-80578,394],[-725946,8225],[-471691,4577],[-254818,2850],[-226503,1820],[-203126,2344],[-10565,591],[-266435,2869],[-459542,5035],[-11822,-543],[-143253,-516]],[[46632829,66823605],[1774,287860],[6241,60749],[-798,239583],[836,188549],[4127,368273],[387,108398],[62,267378],[-382,167112],[846,90589],[53,270894],[-267,0],[3106,345018],[456,298567],[-875,223811],[442,20386],[-845,452065],[-388,399772],[-1165,76130],[-221,213625]],[[59712533,26352806],[61334,1302],[126728,1773],[135901,2560],[156231,2476],[163667,487],[82185,-150],[42420,788],[181874,892],[228466,-489],[39193,367],[641502,-985],[533438,-901],[451628,-46],[574860,37],[126126,976],[-471,-215792],[594,-118217]],[[63258209,26027884],[738,-115899],[1271,-116875],[274,-293279],[1560,-250864],[997,-277038],[709,-643247],[-38,-308764],[678,-226181],[166,-148741],[-875,-63291],[153,-77778],[-769,-162666],[60,-139794],[-593,-150955],[1530,-993],[-312,-98082],[395,-91001],[-738,-84044],[913,-27458],[129,-83697],[-1552,-130800],[776,-15220],[161,-581872],[-656,-481902],[306,-176940],[-77,-215322],[389,-83762],[-207,-156854]],[[63263597,20824565],[-311807,-1003],[-75554,104],[-374618,-1200],[-163599,141],[-329171,-479],[-8548,-600],[-143046,-235],[-357927,-3039],[-194289,1127],[-211713,318],[-220581,900],[-480681,770],[-172619,-497],[-254049,187],[-200600,731],[-71117,-224]],[[59693678,20821566],[891,50339],[7116,499047],[3419,86716],[9422,503837],[3975,204744],[-3396,350485],[-5321,112777],[-296,1168590],[890,3740],[1379,475153],[411,64743],[-253,107188],[1075,137646],[601,148206],[-883,126065],[-1660,79703],[-235,52440],[-2969,377144],[3334,351882],[-1104,181768],[-3609,242576],[6068,206451]],[[49700162,45699664],[449,-326074],[105,-472761],[-1073,-488046],[-1757,-680984],[624,-3141],[-814,-152848],[327,-46935],[-1500,-156806],[495,-235617],[-243,-192139],[-1478,-226586],[815,-97107],[-426,-64143],[974,-21653],[-243,-158148],[341,-277195],[503,-28162],[1173,-310966]],[[49698434,41760353],[-56357,910],[-239428,-2045],[-94569,-591],[-243559,-694],[-39604,469],[-176303,-1856],[-127131,-497],[-42262,-1285],[-80767,-1163],[-139256,19],[-98124,-1229],[-357874,-1735],[-250761,-1998],[-24699,29],[-164193,-2297],[-11494,-685],[-94324,-113],[-105233,-2026],[-102880,-262],[-179348,-2738],[-65903,-103],[-228108,-2917],[-32159,572],[-237045,1509],[-26253,-347],[-153734,423],[-31985,-835],[-220268,1023],[-250060,28],[-325966,1124],[-245089,367]],[[45253698,41741410],[-161331,46],[-126744,-674],[-92375,-1013],[-233878,600],[-221884,-1510],[-114229,1275],[-29601,-704],[-127840,-955],[-54576,740],[-81392,-890],[-198728,-441],[-184554,-3967],[-180885,3132],[-172939,-329]],[[43272742,41736720],[473,239293],[-761,153326],[616,57477],[-487,80489],[914,46129],[-1432,17968],[1394,38673],[-1043,10569],[418,115777],[-1218,48774],[967,11225],[311,159816],[-440,87203],[533,319257],[-54,91639],[670,108763],[-670,405504],[-998,20321],[-569,282289],[137,229632],[371,15128],[-105,521111],[1005,275050],[-253,54943],[647,532311]],[[80782861,36486756],[184265,1305],[273566,5242],[12353,-825],[-1133,69432],[-1508,42162],[154944,2955],[22219,11065],[307059,146855],[47733,21775],[126255,55761],[207131,96909],[23125,11394],[96311,44714],[25515,12848],[93920,44224]],[[82354616,37052572],[27753,-19673],[159040,-108746],[157723,-109353],[32935,-19599],[32114,-20988],[29251,-24494],[34247,-22780],[46987,-32868],[42823,-28414],[18215,-14874],[55869,-39893],[29450,-17564],[62981,-47001],[18602,-12304],[148573,-103259],[248250,-170505],[164063,-113810],[16145,-6649],[76293,-55488],[14188,-8889],[64365,-46102],[63771,-44384],[55930,-37709],[46828,-32625],[97446,-57195],[65636,-36582],[40890,-26304],[37342,-19675],[98939,-58123],[42624,-22498],[14417,-9358],[74649,-41281],[9134,-6564],[69540,-39584],[123036,-68252],[43396,-26258],[117221,-66581],[41103,-24383],[15985,-6564],[35775,-19694],[26640,-17816],[117989,-68458],[28926,-15005],[38636,-23247],[74581,-42256],[23793,-15145],[54888,-30056],[34177,-21521],[87535,-50640]],[[85415310,35101561],[-71505,-332105],[-5815,-29454],[-15816,-63498],[-11997,-54212],[-9171,-46280],[-13558,-50903],[-50640,-228104],[-4993,-26416],[-15749,-70089],[-63087,-290401],[-29844,-130735],[-112921,-2102],[-196824,-2381],[-247435,-2204],[-24708,-7174],[-15550,6827],[-68522,-478],[-4780,-1248],[5451,-10455],[-1385,-18568],[-9233,-30769],[-3608,-29193],[-7673,-14432],[-24000,-18136],[-3539,-6856],[3357,-17198],[18061,-15380],[12652,-14021],[17696,-39685],[4956,-18127],[14950,-26577],[8830,-27289],[-1858,-14123],[-6500,-10212],[-16732,-12510],[-5648,-11132],[906,-11422],[6782,-18653],[12202,-21391],[-2489,-18135],[-16410,-7560],[-25127,-7942],[-24129,-19271],[-20195,-9387],[-30651,5720],[-20431,-2869],[-13107,-10288],[-11546,-18633],[-26901,-36406],[-5976,-24165],[-11089,-33967],[-8808,-15915],[137,-30401],[-16882,-71140],[-15269,-15099],[-6782,-13204],[2695,-11450],[16342,-10634],[9293,-10127],[12423,-7082],[11531,-14065],[-706,-16234],[-5960,-11328],[-9568,-5627],[-31704,-2972],[-13975,-9304],[-4178,-10999],[311,-16908],[9644,-22404],[16237,-23012],[3402,-15098],[-6356,-18643],[-12058,-9472],[-45707,-20772],[-14608,-21419],[-2177,-38926],[-2838,-13205],[-7825,-14780],[-27189,2224],[-7164,5308],[-8068,-6144],[-7976,2271],[-16617,-2636],[-27128,6640],[-5930,19590],[-7878,3244],[-2048,-12116],[-13663,-2438],[-7011,-17217],[-15610,-7438],[-3290,-7988],[-21860,-19967],[-9317,-2016],[-2185,-16438],[-7207,-7380],[-2620,-13664],[-30599,-27703],[-7161,1436],[-9066,-13973],[-26702,-19608],[-10376,-21747],[-8022,-10879],[1911,-4127],[33879,-24016],[11175,-13195],[2154,-9790],[540,-27588],[6112,-9481],[-2093,-7119],[-12026,-6442],[-9873,-28058],[-8829,-5168],[-5207,-16494],[-11410,4285],[-13276,-8910],[-9834,3612],[-7116,-5355],[-10397,9133],[-7597,-1135],[-9067,6294],[-6583,12893],[-3487,-5308],[-10831,6753],[2770,10466],[-13648,1762],[-2009,-6338],[-10069,2682],[-7362,-10100],[-1050,-11554],[-8068,2016],[-7878,-6752],[-22432,4342],[-12894,-5871],[-19090,10054],[-13176,-3142],[-6973,-12575],[-5397,-19798],[-8503,2017],[-4194,9538],[-29495,21972],[-11409,-2269],[-8305,4285],[-14706,17687],[-5100,21286],[-19433,-1124],[-8494,4895],[-9453,-3715],[-13176,6556],[-8017,-648],[-100725,39050],[-214925,82421],[-19837,7089],[-231038,88855],[-23049,7727],[-19981,9077],[-26222,-30055],[-82215,-91723],[-55520,-60966],[-31047,-35803],[-42078,-46412],[-105096,109926],[-162083,-181149],[-217254,-244422]],[[82191452,32122784],[-15924,15323],[-2726,12989],[-8205,7164],[-17849,-4595],[-9447,4483],[-16472,15097],[-6919,1697],[-16031,-4181],[-10115,871],[-14646,-4491],[-14462,-422],[-19234,17001],[-9880,1436],[-10733,-12116],[-15025,-11348],[-11882,-1351],[-24137,-7990],[-10831,1868],[-8633,7680],[868,21906],[-5335,15680],[-19988,9133],[-16213,23923],[-137,22984],[2206,23146],[-9735,16758],[-13298,31808],[-15641,29241],[-8913,43400],[-14365,17949],[-951,10147],[-19561,16869],[-15499,22039],[7780,16102],[6402,27420],[-3624,26295],[25888,39470],[-761,13459],[-12293,24457],[-8633,2352],[-20269,-7960],[-16967,12190],[-10869,2935],[-14349,9510],[-21161,-872],[-18253,7904],[-28619,7935],[-14165,421],[-15224,6733],[-9073,23464],[-8572,16027],[-15,17216],[-3547,8038],[-27500,28142],[-18664,3921],[-20582,-6593],[-26124,-4783],[-10215,1387],[-23398,16028],[-11122,-1858],[-21966,14901],[-10596,-1856],[-22675,7408],[-15857,10456],[-11029,12989],[-9163,4688],[-8983,11808],[8738,17836],[-623,23764],[-20110,14169],[-8838,23961],[9027,10156],[-2968,17630],[17719,-47],[3913,8608],[-189,18456],[5106,5102],[13230,-16337],[4581,665],[5869,29026],[11608,-11394],[9409,103],[9788,7838],[12993,-7520],[5488,7625],[-288,25470],[8114,9892],[-2147,13138],[6874,5833],[7405,-3919],[1866,8197],[-6212,1593],[-20680,19122],[-5778,-11854],[-9173,3452],[-3866,12011],[-12423,563],[-5115,47058],[-11227,16393],[-13853,33187],[7253,7268],[-17818,16026],[-190,7230],[-14470,10776],[-6547,10260],[-8548,-4081],[-6828,4070],[-1437,20359],[-9889,5618],[-8883,-5982],[-6835,15978],[-17818,3246],[-8114,-9537],[-12423,5148],[-6113,-9068],[-10556,10718],[-16488,7878],[1295,8356],[-9082,5513],[6684,7990],[-5351,5252],[4156,17939],[4871,3302],[-7649,35147],[-11182,10719],[1850,26491],[-6021,6800],[7261,5317],[-4355,28968],[-11180,14788],[-6837,14274],[-3401,18709],[5967,23294],[5352,2429],[1955,12837],[-11425,9426],[-1104,11908],[-7786,6949],[-17301,-1752],[-24175,-7438],[-24221,2824],[-4780,8974],[-1204,14685],[-7222,15146],[-12857,7005],[1287,12266],[-6310,8965],[-11707,-2166],[-4110,9696],[6149,27054],[9028,9903],[-15155,30553],[1522,20529],[-10717,8645],[-12963,29119],[-13723,14019],[-15871,864],[670,-7024],[-18481,-12436],[-15438,-722],[-14058,-4952],[-19897,-20396],[-8259,4024],[-15094,-2721],[-11030,4456],[-11478,19335],[-18001,20463],[-1583,11835],[-8602,6827],[-13230,1960],[-3638,-6339],[-4012,17058],[-19927,2635],[-4384,17068],[3775,8758],[-10930,10475],[-14538,2476],[-31117,-2260],[-7597,1969],[-15581,-3920],[-8130,4539],[-9224,-1698],[-4203,8254],[-12278,8299],[-10275,-872],[-8845,11863],[-1042,13296],[38241,20914],[15108,14628],[824,24119],[-25090,19545],[-6552,-11075],[-35091,2221],[-4871,6866],[3014,13447],[7460,12931],[-3243,10833],[-7696,6338],[-4019,-11543],[-16395,-2054],[-15345,7934],[4254,22581],[-4057,10513],[-12430,2944],[-20796,310],[-5876,6855],[2101,11291],[-6736,25414],[3547,25609],[-8366,27786],[-16494,-3291],[-12050,8760],[-18883,-5253],[-6356,13046],[-21565,-826],[8084,10456],[-14059,17376],[8898,31548],[13580,14114],[99,6705],[-11669,5260],[-5496,14124],[9035,6855],[959,11591],[-12673,11908],[5503,23604],[-663,18663],[6121,-366],[3867,-14480],[4978,-2269],[9894,6695],[25592,32936],[14538,-13354],[29974,-14901],[12103,12003],[21473,-9893],[15064,10456],[7460,-3461],[18504,2570],[14348,-2007],[14394,7981],[10572,16851],[8373,6593],[12673,-7016],[25873,4164],[-2816,12989],[9233,22779],[8281,7268],[13723,19890],[-4780,11291],[-14964,1547],[100,14947],[5121,17885],[-22477,18098],[-13009,56],[-5693,-11131],[-7604,1960],[-8273,10212],[-14485,9790],[-21855,7737],[-17941,-5504],[-8373,-5675],[-18892,4081],[-8083,-1857],[-16213,3300],[-12431,-5251],[-14590,7634],[-9227,9434],[-26685,4895],[1239,13456],[-7269,11029],[3015,11188],[9279,3703],[-7605,13149],[-12719,6489],[8845,15052],[6508,3197],[22386,33554],[-12240,15361],[-12057,2785],[-9378,-3302],[-3060,7165],[7225,18146],[-6265,18709],[6508,9480],[-5883,8712],[-282,14639],[6028,27834],[-6653,3037],[-6645,19488],[9667,8346],[18223,-10203],[3204,-6237],[7513,3396],[2732,17836],[6837,3863],[10572,-5982],[-3828,-9631],[9140,-7991],[9089,9379],[-2245,7108],[26504,5149],[14836,-2890],[5214,3817],[-427,13092],[-16936,13251],[1720,17161],[12971,13345],[-1096,27317],[-10908,10006],[7947,15098],[-46,9585],[-17127,27739],[2878,3291],[-8853,11657],[2398,40662],[-21046,14236],[-25462,7623],[-11341,5984],[-9423,56],[-10056,5822],[-16357,14846],[-7856,-1342],[-15696,12999],[-1240,12472],[-8229,25507],[-14744,31548],[9287,16335],[-4735,11188],[5170,15774],[-6744,13457],[190,14938],[11341,9537],[1629,13767],[9620,6855],[1774,14844],[-22348,29015],[-21875,676],[-12879,-6134],[-32648,13449],[-11486,16241],[-11874,9998],[-10671,13860],[-38059,25358],[-27143,15098],[-11305,0],[-23116,5663]],[[80355074,35302478],[96936,3348],[49003,750],[115980,3424],[225705,3909],[685,141033],[9901,21944],[-5395,16336],[11022,22928],[21297,4915],[7962,-3536],[9263,15885],[9293,7691],[-7543,17921],[-4589,34313],[-9728,26886],[4064,17826],[28126,17827],[3251,15474],[-4302,15801],[-17635,26090],[-31750,20471],[-24799,22187],[-33834,40035],[-18573,12078],[-9247,17517],[404,12904],[10084,12125],[9241,2870],[25583,-12171],[24083,-7241],[23514,3808],[20406,14977],[10315,15257],[5967,16383],[-1858,23632],[-3698,11768],[-13161,21786],[-17546,12622],[-22165,5195],[-10123,6415],[-11228,15417],[-23930,11075],[-9454,-339],[-21200,-9209],[-18830,-15220],[-20781,-26894],[-37640,-36770],[-17080,-2626],[-19647,9799],[-19097,19769],[-9728,17789],[-11539,12810],[-16289,2448],[-10885,5017],[-14669,18736],[-4079,11630],[3319,31555],[17833,24523],[26352,12969],[12073,1191],[32822,10626],[36437,19364],[18916,8291],[35660,7699],[28530,1575],[17597,-3291],[11578,-5253],[17780,-13362],[15056,-16730],[9660,-39312],[9865,-12332],[19730,0],[16867,10916],[12224,24485],[2193,30534],[5093,26399],[570,22196],[-3997,23249],[-12862,28564],[-15331,20922],[-23170,19495],[-8282,10663],[-3919,14582],[1795,12876],[8123,5777],[13107,-3169],[43060,-22038],[19104,-3358],[31240,3358],[12125,8600],[9940,27298],[1180,13710],[-9909,34079],[-5108,28161],[-8846,26389],[-15748,13888],[-14279,6405],[-33196,-2175],[-68779,-23341],[-20712,-2158],[-27523,1857],[-7986,3640],[-7945,20021],[1354,18098],[7079,43579],[-2946,16448]],[[65381403,67202522],[424293,-6395],[55939,-1706],[150629,-2730],[151611,-3563],[109624,-2101],[101959,-2598],[29358,-112]],[[66404816,67183317],[94668,-2344],[218039,-4426],[100519,-3959],[82779,-178],[568079,-15416],[101684,-3142],[138360,-3414],[38317,-233],[140018,-4061],[50397,122],[168144,-4924],[60361,-684],[80637,-3385],[170161,-2026],[139568,-4005],[103923,-1490],[192996,-1445],[100042,-2456],[161513,-1745],[125031,-1013],[37967,-1978],[-68,-4445]],[[69277951,67116670],[-1812,-181525],[-281,-107122],[-3182,-165630],[-3160,-210212],[-3478,-155183],[-1864,-117203],[-1500,-60167],[-3533,-198210],[-2427,-28197],[-4019,-218371],[-776,-129414],[-747,-44291],[-2185,-224109],[-1658,-221868],[-3022,-279738],[-3052,-212753],[-762,-19694],[198,-159580],[-3334,-135105],[-153,-81475],[-1553,-109898],[-2335,-317746],[-1257,-109972],[1492,-111961],[-1355,-6143],[-998,-116237],[-555,-216514],[-1416,-176508]],[[69229227,63001844],[-200172,-374],[-61161,-508],[-157289,808],[-87436,946]],[[68723169,63002716],[-62690,582],[-134934,2456],[-254407,3104],[-127618,2411],[-46554,1716],[-45730,-1388],[-85504,1491],[-178410,1295],[-78340,2157],[-253982,497],[-163089,-179],[-27797,-599],[-209529,2765],[-297117,1238],[-5845,-760],[-191025,-647],[-138153,-975],[-408727,2888],[-79946,-843],[-108581,5327],[-19228,3131],[-262817,3470],[-243508,2167]],[[65299638,63034020],[7323,262876],[7955,294931],[10976,555163],[7763,378608],[5739,134101],[685,32784],[-387,127201],[-1897,18287],[7080,342128],[3706,152342],[-387,18088],[3386,149379],[1135,78230],[1660,49457],[4033,230168],[2139,154733],[4499,220077],[1530,96431],[2193,95485],[601,53002],[2854,139944],[8480,508387],[699,76700]],[[44536412,31926058],[25622,23781],[13312,10259],[2763,-3001],[24731,12538],[34611,-1555],[18474,4997],[22294,-9705],[10261,3197],[9636,-11450],[18536,-9603],[15337,-19955],[19532,-20857],[26823,-14704],[14074,-1763],[14958,2073],[9187,4923],[3211,9293],[-129,22385],[-4910,14489],[-10116,17282],[-20094,17546],[-8007,15792],[5770,24908],[11029,15988],[22477,19506],[21411,9201],[14843,-10166],[22052,-7858],[19486,-1360],[16281,7577],[1948,94611],[21755,43130],[-1149,10680],[-7125,18305],[6013,12379],[1470,27440],[-3821,6451],[2762,15792],[6539,-675],[16373,9443],[12743,20584],[-4781,19909],[1188,12023],[-4461,43681],[-10846,7269],[-5208,11449],[-28765,23548],[1432,14141],[-4308,18718],[-12902,14696],[-10139,27842],[-1781,19235],[9393,33946],[17614,29109],[10305,25424],[1615,21043],[-6234,7698],[-945,12671],[-14675,24184],[-2831,27281],[1286,12791],[11113,22038],[23596,16926],[3396,-5879],[25917,2784],[18892,-1575],[37123,12192],[3242,7070],[19875,2786],[16052,7183],[1812,4538],[19106,14349],[11327,-48],[12019,5955],[14302,-4969],[20642,12077],[24693,20012],[-769,8046],[7969,46890],[7362,26670],[-4979,10625],[-959,16637],[1766,26013],[16381,20641],[913,6855],[-6410,20274],[3533,15577],[7931,8825],[10505,35850],[-5831,4427],[-13002,20058],[-1728,9397],[-12429,21137],[1332,31004],[16251,1238],[7932,12894],[-4369,7587],[615,22281],[4591,16036],[853,26155],[3203,12435],[-2009,18718],[-8373,13822],[7590,52440],[761,43579],[6485,39114],[18481,18877],[16160,21139],[-1500,38682],[4119,30637],[-1317,10634],[9202,13693],[2360,26435],[5167,11188],[-2458,135246],[-570,56688],[-3099,401789],[-335,194392],[99,234426],[1218,92970],[-334,314586],[-320,59690],[-220,424681]],[[45257207,35511031],[567576,-2495],[166361,-301],[112541,-2156],[110285,1257],[80510,-339],[46606,694],[377757,1755],[157456,-423],[169482,554],[547574,449],[134423,385],[9491,-2156],[418562,140],[523482,-806],[18024,-1679],[495533,507],[229356,253],[25112,356],[183351,328],[100955,-2270]],[[49731644,35505084],[145,-657042],[-77,-496655],[-791,-16551],[-884,-118039],[639,-96169],[-341,-331314],[478,-469207],[678,-96994],[-387,-135575],[464,-166482],[1233,-263019],[723,-245369],[84,-138161],[944,-221606],[-641,-55703],[2711,-771030],[1613,-388717],[7,-92136],[-1332,-275565]],[[49736910,30469750],[-106091,-1492],[-330738,-2345],[-32091,216],[-199992,-1153],[-12763,806],[-127725,-1621],[-229509,-1314],[-18680,-3404],[-391730,2129],[-383115,2120],[-71001,205],[-105643,1117],[-329840,-2560],[-397219,-3020],[-224454,-4877],[-397220,-1707],[-537524,-2307],[-16755,1491],[-314538,-899],[-6578,-384]],[[45503704,30450751],[-23208,72704],[-15131,37353],[-19906,44196],[-40539,58753],[-30037,34237],[-30697,18137],[-25006,21221],[-9041,4972],[-81979,24335],[-47330,15988],[-22105,12866],[-24274,19543],[-28947,19676],[-24791,12997],[-33059,23435],[-12078,21971],[-66574,71393],[-10054,24186],[1948,15127],[10595,28648],[-4224,23342],[-12620,15669],[-26062,20632],[-23102,13720],[-32159,10239],[-25592,5412],[-33072,4717],[-12591,7774],[-27585,27514],[-2107,11019],[168,32532],[-14030,14986],[-26732,-2636],[-27737,21795],[-9522,23134],[-15604,23520],[5450,15492],[19052,21577],[31915,42529],[18946,37652],[884,25047],[-1774,26052],[-7140,37427],[-8000,19477],[-9369,14507],[-35099,8768],[-12406,-196],[-10947,42236],[10322,30985],[8981,21551],[-4247,15998],[-15573,17527],[-15909,40437],[-6553,12210],[-8807,5617],[411,7426],[-9652,18756],[-10421,32690],[-13258,20070],[-12255,1960],[-22379,-18335],[-9904,-4181],[-17544,4885],[-15254,11854],[-8974,34284],[-1416,39387],[17492,40849],[920,15662]],[[73233921,39520375],[40327,-182258],[61282,39088],[84148,49916],[98329,59024],[20985,9857],[9073,7163],[56724,34821],[287290,172343],[26123,15137],[451414,270284],[89871,54195],[133921,76156],[79871,86183],[310649,331297]],[[74983928,40543581],[105050,-78970],[58876,-24926],[46273,-100540],[126987,43588],[48387,15379],[64334,22133],[155707,-22601],[98852,120561],[113118,61058],[28522,-124836],[163820,-17865],[111503,-37128],[-44824,-142390],[47275,-44760],[47590,-43494],[53098,-135388],[3053,-72583],[655,-51118],[3569,-41779],[1820,-41787],[-13785,-78200],[26200,-50771],[53161,-33517],[14333,-210342]],[[76297502,39453305],[200218,-389073],[14280,-29222],[108817,-213043],[22660,-45379],[50870,-99451]],[[76694347,38677137],[-134903,-189506],[-251606,-353213],[-35234,-46852],[-70333,-101841],[-82191,-117776],[-6021,-13747],[-38890,-46992],[-165456,-240567],[-99006,-142140],[-48943,-66459],[-91181,-130961],[-34473,-45642],[-31764,-43963],[-16061,-20303],[-14379,-23097],[-59318,-74243],[-193474,-243774],[-31148,-30873],[-38873,-49430],[-3023,-5514],[-334451,-421379],[-371697,-468156],[-164420,-207071]],[[74377502,35593638],[-97538,-3243],[-109715,-414],[-194380,-5964],[-1752,2869],[-169019,-3703],[-32021,-1650],[-76156,853],[-43212,-1183],[-182172,-3337],[-23420,225],[-45800,-3067],[-141534,-5317],[-95550,-1200],[-45593,0],[-75707,-4417],[-243606,-3414],[-132695,-3497],[-176836,-4042],[-24161,347],[-132284,-3029]],[[71000395,37018606],[15756,17659]],[[71016151,37036265],[101359,113715],[21776,23829],[113781,127143],[262079,291778],[84240,95353],[132161,148067],[132368,146471],[42635,48248],[110361,123093],[103041,115429],[210395,234322],[93298,103503],[18352,22629],[30096,29680],[25980,27637],[122625,136915],[143587,163051],[74610,85450],[175633,199905],[110233,124311],[109160,123581]],[[42282410,83565888],[675641,863],[11326,-938],[105073,637],[195529,-1143],[122298,909]],[[43392277,83566216],[252,-92399],[-396,-191072],[-632,-147906],[608,-105208],[-730,-71655],[-457,-378759],[-784,-122530],[1104,-74703],[-1491,-79204],[539,-117409],[-29,-197533],[-1204,-55254],[168,-97809],[-433,-449157],[-548,-145187],[395,-63665],[-3060,-56624],[2718,-27627],[-62,-104195],[-2130,-419588],[-495,-19544],[282,-168752],[-1037,-62129],[656,-149958],[-1059,-60047],[-3082,-89248],[2070,-382986],[-243,-154068]],[[43383197,79482000],[-132863,-47],[-25744,-1068],[-255342,-460],[-311846,-1378]],[[42657402,79479047],[-134788,-366],[-111162,-750],[-229570,-732],[-241323,55],[-113718,855],[-63513,-713],[-154557,234],[-54112,-337],[-367783,422],[-53930,-564],[-130616,-64],[-69474,2821],[-51584,-2776],[-137468,58],[-276162,3085],[-114000,-1594],[-55110,411],[-165067,-1547],[-401854,-55],[-347986,111]],[[39383625,79477601],[-670,189779],[-791,374697],[-1226,24728],[-320,357631],[-769,332722],[762,162123],[-555,250630],[540,111951],[2907,236797],[-2435,92418],[540,81390],[844,285534],[625,404986],[2079,29315],[-671,317297],[229,151188],[-282,137356],[-670,540392]],[[90913481,63909779],[-1980,181048],[-60,160415],[-905,238785],[319,93732],[-380,191098],[250,53266],[91,402784]],[[90910816,65230907],[493767,-308819],[91850,-57109],[119345,-75352],[72920,-46776],[198795,-125108],[60340,-38504],[38217,-22451],[30067,-21156],[78279,-49224],[299316,-187180],[544741,4061],[41332,-713],[246157,1950],[54843,694],[28323,-9780],[24410,56],[14028,11572],[30517,9819],[13821,18670],[16282,5758],[11129,19318],[6804,22966],[-8860,6669],[2688,6647],[17925,-861],[13609,3422],[6379,-8375],[1454,-20190],[6791,-6010],[14636,-2167],[11137,3226],[10116,25114],[22675,10081],[16145,11056],[13076,779],[10992,-6921],[13145,5795],[708,5937],[27562,24409],[6676,12444],[-1469,7250],[11896,18446],[15636,6058],[15436,12585],[12872,3676],[5884,10437],[32547,-4408],[18648,-11909],[21542,6742],[6408,5543],[8070,21793],[-1189,41854],[10665,2540],[2238,-7041],[11266,-3424],[3904,10860],[10062,11965],[17028,2318],[2063,11112],[5944,1893],[2475,13889],[13747,5101],[8410,11957],[1028,8966],[15390,-3001],[6540,-16243],[27256,-16261],[13748,5947],[13519,-10466],[11897,-3423],[8814,-7503],[25833,5946],[10445,-6002],[7169,-13231],[15605,3590],[-1834,22864],[10267,8309],[20918,1041],[25035,15547],[12916,4034],[3501,15145],[-9613,17957],[-2550,31341],[13990,-2166],[3396,5467],[-776,21307],[3835,15772],[4850,2823],[4064,27167],[12977,8497],[1562,6180],[-5832,12670],[7674,7567],[-306,10418],[11555,8751],[22668,-789],[13824,9219],[10221,-3171],[10916,-9949],[1682,-16026],[8191,-4314],[8204,3573],[18186,-13758],[10877,2074],[16038,13334],[9636,1435],[21907,-21063],[8334,1782],[2033,10541],[-5831,12698],[-564,13297],[11928,-1537],[10375,12143],[7673,-1171],[-183,12424],[16357,-8748],[12392,422],[7087,-6219],[13862,-1650],[7275,-7521],[3365,-28123],[-5312,-3236],[-10093,5899],[-2520,-11544],[17233,-10082],[8380,-8420],[8937,8036],[-6936,15915],[-1627,18370],[4276,16401],[7583,8741],[20841,1801],[10214,-24983],[13571,-18550],[15026,-11769],[20156,-7913],[9431,-13035],[10444,-30488],[-252,-26567],[-6600,-22169],[2223,-18428],[12538,-14695],[23290,-19045],[24184,-9378],[-6418,-20144],[-12923,-9078],[-1485,-11638],[4833,-9902],[-13579,-10137],[-20880,5785],[-10305,-1838],[-2840,-8749],[17849,-4230],[7248,-15679],[-3191,-14948],[-9217,-1931],[-7734,16823],[-9454,4426],[-14987,-14272],[2802,-17602],[21176,-20538],[22773,-12153],[26566,-9941],[16441,-15342],[3653,-11018],[2696,-27966],[6362,-17039],[10437,-5963],[24470,-1810],[30417,-8619],[25866,14367],[36551,4014],[25583,-11338],[77867,-41449],[34055,-9895],[40769,-5730],[45853,-14939],[23391,5731],[9074,14958],[11226,53594],[17638,48454],[11486,23857],[23383,24344],[10519,27955],[-983,29982],[6691,22018],[31057,29474],[20278,12108],[16616,1641],[15482,-3123],[7871,4154],[2124,8983],[-3701,19479],[7590,11186],[19517,13936],[10206,2505],[5268,7613],[-312,17782],[-14600,36854],[5381,14920],[15780,10344],[16578,-1539],[11023,-12913],[18061,938],[23680,-2091],[8892,-10025],[11995,-2766],[27510,12360],[21198,1594],[18467,-4895],[24006,-17302],[24328,-1772],[14576,7820],[19144,-1603],[10421,-22103],[18176,-15342],[11455,327],[4165,19047],[23999,18389],[15034,582],[4505,-26379],[13922,-19300],[14751,-5889],[17729,2260],[-921,12040],[13144,939],[1600,-17209],[11707,-24419],[-9736,-10898],[-8426,-1134],[-12218,6021],[-50755,-31116],[-5799,-9340],[4566,-8900],[23125,-3319],[19372,18221],[14964,2287],[22448,-6029],[5586,-17780],[16076,-3789],[5185,-14207],[-12286,-11479],[-19387,-10887],[-5214,-7605],[4111,-12763],[-5960,-9941],[-24138,2194],[-3045,-8609],[5573,-10653],[-420,-15669],[-48737,-7202],[-14211,2016],[-5976,23387],[-9118,2813],[-8328,-6967],[-18740,-2326],[-3966,12228],[-6477,5816],[-15696,-2964],[-15969,-9771],[-9469,-14012],[-12346,-29867],[5869,-19524],[25850,-24327],[12772,-8900],[16639,-5907],[17751,-2128],[14104,3121],[19205,16111],[15787,5533],[13723,779],[8495,-8328],[7924,-15904],[7345,-6359],[12939,-23303],[11259,-34267],[1209,-39395],[4302,-14966],[12680,-10711],[21382,-1940],[13549,6986],[22501,2139],[20384,-7906],[41620,-19337],[26056,2400],[21243,8130],[11685,9584],[54857,10308],[32152,2719],[33362,7784],[26580,4050],[26261,9444],[10094,1257]],[[95926898,64292589],[685,-42360],[906,-269957],[-1690,-168340],[1743,-209433],[-1432,-36040],[-128,-50901],[1886,-53426],[527,-124714],[-2139,-23961],[1932,-39433],[221,-92662],[-2177,-9303],[671,-130191],[-892,-16899],[1271,-63364],[-1757,-29118],[221,-78258],[-1408,-164466],[502,-50143],[2815,-29635],[-1909,-27194],[1423,-52169],[411,-104046],[-837,-114418],[1058,-86126],[228,-152143],[-312,-155174],[-518,-41113],[16,-133388],[555,-271956]],[[95928770,61472258],[-52300,-13335],[-369641,-91827],[-255337,-63936],[-175373,-44452],[-15825,-3534],[-239930,-59681],[-433625,-108913],[-35814,-7915],[-143512,-34951],[-597649,-149135],[2230,9594],[-10831,5796],[-8999,-14985],[-1872,-10832],[6607,-8966],[793,-10164],[-11351,-8881],[-11889,7043],[-15924,17583],[-16996,880],[5434,9567],[602,12959],[-10649,28800],[-5580,5166],[-14157,1698],[-8914,13448],[411,22806],[-6736,10953],[-20239,5928],[-14547,9658],[260,16383],[-7309,18699],[-17202,5533],[-18481,-5027],[-6158,-9817],[6934,-20866],[1127,-13617],[-6052,-1791],[-19387,9030],[-18352,-974],[-10778,4050],[-9902,21561],[-15513,2194],[-9933,16504],[2367,11573],[7489,3958],[11632,-5214],[7352,2194],[602,10521],[-8601,10268],[-1386,20792],[-13298,22871],[-2922,12961],[1720,26491],[-4027,16280],[-1666,25743],[6583,21419],[-23839,12688],[-20156,-20801],[-7338,892],[-4072,12754],[4330,12546],[-6241,4465],[-13504,-2860],[-19486,7596],[-8007,-2674],[-12642,-18342],[-14083,-2588],[-6417,3675],[-7840,18155],[-9423,7241],[-23778,4491],[-21641,-4350],[-7619,17001],[-7087,4482],[-9363,-3563],[-2419,-13870],[19439,-9443],[100,-13119],[-16784,4333],[-20909,758],[-19098,6256],[-4689,-5955],[6606,-17170],[-7611,-13243],[-16403,948],[-9889,6274],[-7816,15605],[3752,13878],[-5107,8590],[-40442,-18089],[-5648,-5899],[-586,-28640],[-9560,-12097],[-12132,-3311],[-10101,3096],[-35380,-10306],[-27364,5457],[-4568,22263],[-5669,6124],[-34786,17274],[-4324,12462],[8739,12228],[-2489,19347],[-13420,6528],[-36446,-22405],[-25050,-6752],[-11326,3340],[-14408,17677],[-25994,6788],[-3168,18568],[-5380,10945],[-763,13945],[-20512,3235],[-30295,11562],[-16997,-2344],[-14022,4098],[-11599,-1070],[-10070,7202],[7869,20192],[10901,-14809],[7787,179],[906,9716],[-9751,10709],[-2071,21671],[-18740,9528],[-5283,15127],[2764,17901],[-3731,10813],[-7489,5205],[-11578,-8824],[-18070,-853],[-25019,18379],[-19731,9059],[-16493,15426]],[[92511733,61489644],[-26002,9904],[-11912,-7859],[-12750,2908],[-145,19290],[-10528,10155],[-15710,-252],[-10687,-17612],[-15749,-8881],[-13243,-3751],[-754,-24447],[7193,-11151],[-7102,-19074],[-11966,3647],[1759,18296],[-12355,742],[-21168,-8365],[-6499,-11920],[-2436,-13795],[-9287,-3404],[-20240,9181],[-402,9321],[6324,4100],[-4635,8458],[-16959,-254],[-9058,17011],[3814,18672],[-15574,10147],[-8480,-4182],[1013,-14349],[-13191,-7896],[-12628,7708],[-5063,26774],[6936,10991],[12300,-2814],[6181,4924],[-3136,8289],[-18056,8357],[-1675,11374],[13170,3714],[2238,8572],[-12385,7127],[-15688,919],[-15314,6488],[-11197,-899],[-28978,-22994],[-31193,-13927],[-11867,545],[-8342,17798],[-10483,10823],[-13517,5626],[-20887,-2813],[-14501,8524],[6859,18250],[-3083,11065],[-10733,5326],[-28681,928],[-26405,-22656],[-25917,-38392],[-18542,-16187],[-35951,-8440],[-31687,-12574],[-40320,-19760]],[[91846459,61496950],[-54218,-27805],[-17592,-5345],[-18769,7821],[-13185,14019],[-22956,36151],[-11250,12839],[-10976,6667],[-19067,1716],[-21709,-4098],[-31301,-14489],[-68969,-2718],[-26840,9181],[-32348,-1351],[-32594,3479],[-21519,-1107],[-33871,-7587],[-21231,620],[-22721,3883],[-26176,11168],[-21344,15596],[-18770,8898],[-18649,5467],[-4285,27844],[-17872,4426],[-11258,12088],[-2724,14207],[-19853,14948],[-28453,2260],[-10017,-2720],[-11006,-13232],[-7086,-2738],[-6835,7381],[10253,29689],[-9029,3105],[-12254,-11807],[-8328,1659],[-16205,14245],[1166,26240],[12527,14704],[-387,8075],[-9980,-12915],[-9232,-514],[-9531,13279],[23444,12555],[7392,7653],[-7,8863],[-19212,10717],[-16327,13289],[-9911,3516],[-19729,423],[-7323,8000],[-21694,14141],[-17523,-1811],[-23960,-11411],[-11235,4698],[-3449,9293],[-10724,1369],[-41295,-28030],[-15656,-8674],[-10817,-15877],[-351,118684],[351,65326],[-1636,107900],[1751,138641],[-999,39443],[1036,66609],[182,233648],[-463,129956],[-15,132837],[875,80957],[761,1046885]],[[37067968,54523685],[119215,-67],[13228,-486],[141777,243],[14401,-572],[247122,525],[492982,1078],[116103,441],[69647,787],[399967,-309],[220923,-18],[260953,-385],[15436,-1078],[373866,-928],[562179,-1369],[47794,1630],[202489,-1040],[573855,-2814]],[[40939905,54519323],[1074,-62473],[-1721,-62382],[-266,-114877],[1036,-56380],[-4043,-537729],[53,-51343]],[[40936038,53634139],[-2413,-260458]],[[40933625,53373681],[-2526,-267659],[-1317,-170918],[-161,-69837],[-1795,-170318],[-1067,-36968],[709,-37867],[-4667,-198312],[-2276,-215041],[-2572,-179246],[-1271,-43072],[-4209,-309025],[-1850,-40184],[-3782,-319396],[-3274,-145206],[-3319,-408973],[-1506,-71570],[-4240,-390321],[-3297,-319819],[-1940,-152951],[-4066,-288515],[-3728,-378308]],[[40881471,49160175],[-423206,-656],[-294141,-433],[-48349,2082],[-292748,-862],[-322311,-862],[-38835,290],[-297580,-648],[-513503,535],[-420016,469],[-17978,873],[-209087,375],[-288851,825],[-407662,1209],[-45997,788],[-196200,-188]],[[37065007,49163972],[2915,404323],[2010,21146],[2557,371219],[914,158662],[745,198254],[-411,147990],[-1964,81522],[312,168284],[693,46241],[182,332657],[625,63055],[-450,134563],[-387,278583],[-1242,107667],[-334,119632],[-2079,25686],[968,110338],[167,453348],[586,297340],[-815,33639],[-266,373253],[-1034,14591],[-221,197656],[183,126928],[-84,821293],[-808,93872],[199,177971]],[[52762082,58563337],[365119,-3695],[263290,-3947]],[[53390491,58555695],[46455,272],[378622,-5364],[572556,-8038],[6819,1510],[580845,1117],[363824,-564],[237898,-8],[49370,-244],[458158,506],[206065,-526],[26717,-6649],[275751,-2185],[112151,1051]],[[56705722,58536573],[-13244,-627006],[-2559,-114764],[-837,-61753],[-5991,-286058],[-1163,-83669],[-4636,-210933],[-3220,-182594],[-6691,-347118],[-4665,-154293],[-8289,-562664],[-1425,-76766],[-6119,-392563],[587,-101673],[2420,-956896],[1552,-441270],[564,-70323],[2168,-751422],[-1787,-8664],[769,-149472],[67,-159291]],[[56653223,52797381],[-22827,-12706],[-25919,-5693],[-8585,5336],[-9415,13176],[-35723,39087],[-2550,17199],[-16859,16880],[-22021,12566],[-53031,11619],[-14356,-1670],[-15133,2701],[-15421,10868],[-4514,7202],[473,19751],[-16007,10905],[-9691,1820],[-20170,-5982],[-20628,-13590],[-25706,-12453],[-35044,-28912],[-11135,-15070],[-11524,-44168],[-9021,-9866],[-7475,-15829],[-12086,-9960],[-29185,-33928],[-9453,-13946],[-40563,-31039],[-17149,-16993],[-9157,-16187],[433,-12603],[7787,-8055],[5032,-29709],[-814,-14507],[-4704,-7108],[-21002,-9031],[-14667,-3639],[-15316,2664],[-29746,15162],[-19692,-11647],[-18975,-6685],[-18726,-19750],[-3372,-18034],[5527,-21352],[10222,-18353],[11532,-41177],[-693,-10364],[-7200,-19665],[-13122,-10503],[-31248,5497],[-36361,26839],[-12277,5036],[-22675,177],[-19296,-21943],[-12605,-25021],[1036,-15407],[7642,-7624],[12315,-27562],[937,-7454],[-10230,-19206],[-13618,-17217],[-9956,-7897],[951,-12886],[-7208,-8392],[-17202,-28949],[-14441,-11779],[-11721,-871],[-15809,16129],[-15309,25639],[-14302,10316],[-22196,-488],[-44209,-5298],[-17635,9734],[-18977,6236],[-27051,3132],[-31460,18624],[-31871,28808],[-7900,23754],[1011,5176],[30715,33527],[14126,28883],[1440,34979],[-2512,20978],[-7513,34126],[-11213,19026],[-10611,4389],[-8851,-6011],[-16138,-31387],[-12057,-7192],[-897,-11780],[-21153,-31575],[-10893,-20536],[-21009,-12463],[-11425,4642],[-19851,16374],[-8594,13971],[-26345,26962],[-8493,3873],[-45237,10447],[-31315,5796],[-16304,740],[-11022,5824],[-10276,11346],[-10969,18457],[-16342,2429],[-25340,-7279],[-20452,11545],[-27159,6123],[-17896,6237],[-13898,-2297],[-22142,8712],[-13306,9254],[-11517,12577],[-738,8383],[6797,13804],[17621,21223],[3830,13475],[13077,1340],[6051,7034],[7481,26098],[-2725,17021],[-13266,2073],[-32730,-6847],[-33120,24796],[-17385,-14648],[-7436,4660],[-14127,-2353],[-19661,4586],[-54394,23444],[-24876,13015],[-16799,23783],[-10404,2982],[-15688,12839],[-14814,5007],[-13442,18736],[-403,7597],[-16585,13559],[-14797,6743],[-17790,2064],[-11021,-4220],[-26216,-23960],[-10961,-21514],[-3112,-41712],[-1797,-44946],[2551,-28406],[13510,-37905],[10344,-14197],[2489,-15108],[15537,-7418],[18244,-94],[8541,3347],[39474,-3928],[5040,-12707],[-14935,-21035],[-10641,-7417],[-21923,-8609],[-22780,-3188],[-48525,-24485],[-21313,-8093],[-8214,-10907],[-15131,-9912],[-9318,-18971],[-22583,-16497],[-15521,-18914],[-21305,2486],[-30440,-24608],[-2786,-16054],[9371,-19469],[2054,-10531],[-12871,-17828],[-4225,-12509],[-14629,-2654],[-9371,8505],[-9620,2241],[-12012,8760],[-14143,22797],[-1156,25020],[-3965,33732],[-6174,15941],[-6698,-731],[-25812,17678],[-8952,9602],[-20582,36011],[-18602,14413],[-19182,19946],[-20255,4333],[-14682,-6432],[-10459,-9332],[-45869,-47226],[-6751,-13495],[-6249,-47235],[-9653,-24898],[-2221,-25451],[-3768,-9303],[-20735,-9565],[-16754,10259],[-6355,12453],[-16669,51259],[-7102,67004],[-15520,65298],[-5520,9968],[-18710,22122],[-18176,29597],[-4117,23602],[-11555,13289],[-18353,34369],[-13762,40794],[-6135,13326],[-4498,26783],[-6766,11957],[-2527,20537],[1377,21530],[-5001,45305],[-9202,24897],[-10565,10953],[-12156,-3226],[-27798,4070],[-14410,-55],[-5100,7277],[-18283,6198],[-22698,4548],[-12735,6322],[-19707,19065],[-10039,6330],[-25903,3329],[-17180,7707],[-17735,3226],[-11213,14958],[-24958,4689],[-29116,9660],[-25499,-3171],[-34990,-16082],[-80267,-27693],[-6325,8853],[-48821,10108],[-20682,7147],[-6371,4895]],[[53615516,53029162],[-23207,27402],[-46486,42444],[-24997,20311],[-13648,6697],[-13190,1660],[-16808,-3462],[-21197,-14309],[-4941,-11161],[2573,-5635],[-8153,-26201],[-3759,-23191],[5434,-13729],[37572,-35280],[42611,-15323],[20421,-21916],[15362,-22356],[4171,-10428],[1674,-25339],[-4224,-18652],[-17584,-45117],[-8868,-11909],[-30995,-17734],[-34572,-2082],[-32791,-4519],[-9872,777],[-10353,9416],[-14067,24156],[-23511,9904],[-18383,18877],[-12353,24073],[-5237,32080],[-12439,18662],[-13685,27497],[-23345,33985],[-21808,27974],[-14606,15623],[-31414,29239],[-7027,4042],[-41385,12642],[-22598,2747],[-14280,-5862],[-43281,-13428],[-27219,2578],[-24670,4670],[-13716,12005],[4985,27607],[20226,37803],[18938,25356],[14256,25359],[31771,16747],[33804,22338],[17918,15259],[22409,25132],[18740,31800],[11411,32231],[411,11610],[-10780,34604],[-8349,15472],[-28308,18494],[-52545,-4933],[-48768,-8441],[-33096,-355],[-55611,-4820],[-22964,-6566],[-26512,-646],[-13647,7953],[-8351,11383],[-5093,13758],[0,11178],[6312,13964],[23261,12932],[45785,6405],[18731,9452],[21671,15193],[26048,22684],[15208,16440],[13053,29492],[-1423,27073],[-13441,20209],[-26071,11610],[-6722,-1293],[-24242,-15906],[-11402,-1932],[-29740,-11384],[-16921,431],[-18328,6875],[-11815,11599],[-8555,21279],[-7946,7737],[-5907,21278],[-1432,16758],[8762,18052],[-8762,29859],[-10594,15905],[-23437,14610],[-17933,29447],[-12637,16973],[-12223,10738],[-24655,215],[-10185,-8816],[-5502,-10961],[-3867,-18052],[-7315,-67474],[14881,-36742],[-1629,-4952],[-30356,-8814],[-20164,1500],[-19966,10307],[-15566,11206],[1987,92981],[-4574,31968],[5367,6320]],[[52703266,53824479],[2031,135744],[3410,190020],[1271,128054],[5763,417076],[921,50752],[9263,651303],[2437,102237],[790,78190],[-632,83632],[2239,140187],[9415,742774],[2177,78230],[4643,369530],[784,28864],[-68,78165],[2466,156074],[1615,70258],[60,44703],[5352,424606],[-466,25433],[2011,180398],[2183,418615],[1151,144013]],[[42320721,95844418],[798,216822],[-981,326610],[-38,89210],[889,1106828],[396,314520],[739,221239],[198,221399],[1080,465175],[3944,15238],[-1553,512607],[-38,167889],[-1173,484352]],[[42324982,99986307],[237404,2700],[95907,-702],[311198,533],[176684,741],[1781,3123],[24372,-262],[300421,394],[135809,-704],[39398,611],[464689,-563],[34063,-1942],[165326,-413],[136426,517],[24912,-497],[314052,-29],[-1224,-357],[285903,0],[131219,-553],[238279,-75],[231898,-487],[386372,66],[344362,-853],[23560,-320]],[[46427793,99987235],[935,-1079247],[-395,-1002322],[-1012,-26323],[866,-230046],[428,-325501],[-1089,-846699],[-647,-63338],[-3494,-579057]],[[46423385,95834702],[-212109,1051],[-334856,1969],[-52040,-2869],[-133176,1753],[-280423,2935],[-269259,-2466],[-195765,1642],[-103870,1368],[-464750,1716],[-270498,1173],[-185247,1556],[-110059,159],[-198141,1041],[-196343,76],[-394183,760],[-127877,-85],[-285318,1116],[-82632,741],[-206118,-3920]],[[29521358,54527389],[161558,-1819],[340565,-470],[514409,-2456],[274114,-1154],[247739,1585],[241071,497],[392370,-562],[393777,-572],[416872,-29],[90109,-290],[346577,1641]],[[32940519,54523760],[0,-89567],[1377,-160482],[8412,-835173],[-2048,-16776],[2930,-70127],[426,-43073],[4407,-202625],[8169,-468840],[4924,-246204],[488,-42058],[3127,-141013],[5039,-274075],[-274,-4980],[12445,-470152],[1661,-73428],[7649,-295794],[9226,-327845],[2375,-49919],[11288,-438269],[1218,-9236],[39695,-520081],[7542,-128982],[-1201,-50508],[-709,-340300]],[[33068685,49224253],[-359069,4689],[-194738,2851],[-112921,1312]],[[32401957,49233105],[-13213,844],[-3624,5842],[-15261,2937],[-7688,-10335],[-11272,-3264],[-25234,13795],[-4567,-18202],[-7877,6124],[-9515,-1004],[-6751,9884],[-9158,-2560],[-17896,2636],[8077,7699],[6912,14873],[-4712,2457],[-7535,-9097],[-4804,3414],[4537,16223],[-11045,553],[4102,6311],[-1978,14048],[3426,9547],[-23909,1847],[-9157,7887],[5975,8055],[-11805,11311],[7489,8880],[-1750,15877],[-8694,5711],[-4848,12519],[-10223,4773],[6654,10427],[-11168,8854],[-6979,13109],[-2961,13665],[13632,112],[4073,8309],[-17371,14263],[594,12838],[-11699,-4108],[-250,17987],[-19357,27936],[-1713,18222],[-11228,-10381],[236,13775],[-11106,10099],[-15968,-1696],[-4302,7886],[411,15267],[-11903,4107],[-8198,17322],[29,15041],[10848,3724],[-1994,13024],[-8016,8657],[-14805,4922],[20461,20350],[-2603,8826],[5929,9995],[11288,9510],[-8844,11929],[10557,13615],[-5815,13655],[-4934,-13336],[-20224,9173],[-6044,6291],[6494,6068],[12735,-2288],[1019,8880],[-8068,14779],[9887,8572],[-15619,10382],[-5556,18333],[2199,9941],[10223,2099],[9835,-6394],[6858,1978],[2238,15642],[13129,-4033],[10079,15370],[-7323,5242],[-4393,17987],[-9270,4436],[7778,14882],[-432,11545],[9316,7548],[1195,21457],[-4293,20265],[-9172,-10165],[-6730,5438],[1676,20979],[17241,12312],[-13870,2805],[-4049,26988],[-3586,3883],[-12072,-3817],[930,14967],[14370,29990],[-2755,13241],[-4446,-11974],[-4969,2672],[-9128,19562],[-11043,4211],[-884,10559],[11213,-6883],[7679,3489],[-2382,10530],[11418,14780],[10969,4202],[-5823,6789],[1537,8317],[-11684,2346],[-2824,13221],[-10352,4577],[-3867,12473],[9576,26463],[-2733,30516],[-7270,17443],[-12932,9648],[12591,12595],[-28842,6537],[11144,13392],[-1987,9733],[-12962,-10757],[-4354,8038],[-12949,8683],[-14766,-140],[-4643,9902],[6439,10711],[-1590,11730],[6583,14499],[-6690,14432],[91,8740],[-13122,7239],[-5556,15473],[10313,7522],[-2131,8477],[-9074,-3320],[3677,15145],[-13251,-4726],[-3197,10765],[670,18137],[-11098,-2400],[-16799,18746],[-15414,1604],[9879,-7643],[-2915,-9669],[-8692,-4191],[1780,10887],[-11608,1717],[-9163,-3845],[-8008,18473],[1309,10728],[-10915,-2082],[3348,13570],[-14805,13767],[11221,8281],[-11555,14113],[-9675,5467],[-4612,13832],[-6843,-9350],[-6265,9238],[-8121,-14329],[-8045,5870],[-9028,-9866],[-12035,3968],[3297,-11075],[-291,-18335],[-9012,-486],[-4756,-9125],[-7849,9500],[-13586,-3217],[-15832,10831],[5693,8234],[19433,-10100],[3943,10877],[-11600,5197],[4307,9152],[-17484,11601],[22958,21136],[-3540,10616],[-10846,1003],[-10483,13243],[-7650,-4634],[-14583,7353],[-3905,-1914],[-769,-15811],[-6874,4184],[-4787,21277],[-5412,2580],[-13389,-4483],[-8570,24597],[-10367,4812],[-2163,9068],[-18078,4904],[1774,13757],[-5663,5270],[-12803,-4528],[-1561,19768],[-15391,4482],[2147,-22881],[-12825,4106],[-1774,-11037],[-8214,-4558],[1524,13599],[-11700,-6162],[-7620,4726],[11014,22207],[-10298,25358],[-21557,-3096],[-1529,10739],[-11151,6386],[-2504,12491],[-10345,6368],[8343,6283],[-2901,6151],[-12788,-9077],[3471,6995],[-4278,8580],[-16220,-327],[281,-10026],[-6698,-1172],[-5047,7559],[22257,16383],[1774,12050],[-8328,-12285],[-8889,10654],[-9309,2287],[2519,16505],[-10140,5711],[7095,15859],[-11548,3985],[-2800,-4915],[-18991,10336],[-3936,14122],[1759,10700],[-14653,5233],[-2611,12238],[-14904,-207],[267,9697],[-30462,-5843],[-53,14958],[-30249,5327],[-9332,14301],[-8511,216],[-8274,-18652],[-5030,1163],[1278,18520],[-10223,-7727],[-6903,5393],[-10641,-5496],[-7895,5242],[-6325,-6076],[-10633,3131],[-10382,-10802],[-13862,-2148],[-4042,13747],[-9423,28],[-9400,11544],[-365,17968],[-14379,-13634],[-1028,14862],[-21046,2242],[3266,14038],[-8892,554],[-3264,-12463],[-10147,-7989],[-6112,20845],[-10025,-9067],[-11782,834],[-4050,8544],[-12126,-15005],[-8083,440],[-6599,16459],[13639,3544],[-1583,9979],[-10686,-4220],[-16915,-864],[-9834,3282],[-10762,-6216],[-5710,4773],[-9217,-8055],[-20286,-1970],[-13890,13456],[-15780,2429],[3372,14987],[-14545,2766],[-6638,13889],[-6813,-7606],[11114,-12014],[-7887,-7313],[-15869,9668],[-11617,-7661],[-16181,13643],[-3342,7268],[-11182,3883],[-2398,-9649],[-9789,-7418],[3197,-13055],[9165,-4050],[1226,-8197],[-12377,-1416],[-12910,15577],[5671,13175],[-7993,7175],[-5106,-2477],[-5915,-35532],[-13321,-4108],[-3531,-16110],[14187,-16157],[-1985,-7532],[-7362,-187],[-7406,18024],[-12575,-2560],[1188,-16909],[-17249,3828],[-5328,-5308],[-2907,-17660],[-11159,-5156],[-4429,16598],[3121,13767],[-20911,5729],[-1081,10728],[-17583,19394],[-9241,-9443],[-2359,-18438],[-6782,-3422],[-3112,7831],[2306,16138],[-17462,-7287],[-13595,12248],[3646,10588],[11038,3517],[1050,10493],[-5427,6630],[-7262,-5393],[-10291,1894],[2634,18446],[-4720,320],[-9445,-13795],[-7429,4718],[-1819,21840],[7642,6143],[4771,18604],[-13418,3555],[-4073,8150],[2961,11206],[-3394,6846],[-8351,-2119],[-19090,13297],[12894,5148],[-1127,6715],[-14485,-1575],[-6301,4604],[-3083,13484],[16669,4437],[-5945,20228],[-28033,-14152],[-7034,7597],[-8479,-2626],[-16852,6779],[-2057,17761],[5307,15681],[-9013,-1622],[-11668,4350],[-10550,-5297],[-11471,6536],[-991,12209],[-11273,11338],[-18183,-6630],[-9013,234],[-13579,-5739],[-7779,3057],[-1370,10663],[-7292,-685],[-7019,13916],[-9666,1229],[-6189,-5663],[-12117,4594],[-3906,13729],[-12802,9340],[17780,16234],[-9690,10314],[-1240,19534],[11691,38946],[-19363,-5354],[-14302,15238],[-2391,15174],[-11379,-7381],[-3288,10259],[8577,11807],[-2077,6911],[-7803,-1696],[-9841,14638],[-20460,16712],[-8906,-6715],[-5876,6039],[6546,14142],[-5412,5354],[-7483,-3939],[297,-10418],[-8053,262],[-7361,-17282],[-12780,4997],[-852,12952],[-5907,-1173],[-11707,15426],[-5709,-15510],[-5975,-4586],[-13617,10184],[-9553,1792],[-7909,-4454],[-9195,14694],[-14233,-5017],[-7368,-14001],[-5641,6836],[4331,17303],[4590,4566],[-7,41272],[-13975,35636],[-12826,15782],[-8397,3919],[-9712,-2297],[-9392,11404],[-13108,-967],[-21769,18559],[-8702,-7614],[-99,-11056],[5809,-11911],[-18215,-3498],[-7795,-10325],[-13419,-1753],[-3076,-9444],[-9179,-8073],[-18482,-5280],[-6158,-5298],[-16707,-751],[-1514,-10119],[-12819,-9472],[-13153,-2409],[-26817,-9257],[-8509,-5288],[-15170,-19497],[-18215,-14291],[-15947,684],[-22971,-24513],[-14174,-8580],[-9499,5280],[-3152,7904],[-12277,-2287],[-1370,-18146],[-23727,-3171],[-21625,7260],[-2396,-10889],[-7354,-5627],[-8426,6303],[-13488,-273],[-8754,-23903],[-13853,12116],[-2368,-15520],[-6788,-11253],[14,-8853],[-25643,-14620],[5061,-14122],[11714,-6087],[2917,-10579],[-15811,1877],[-6462,12782],[-6790,-6537],[-906,-10259],[11159,-8365],[-4893,-8130],[-16518,5739],[670,-26117],[4490,-4643],[17347,1332],[31,-10850],[-10368,-8674],[-12307,-1942],[-3312,-7933],[9073,-26089],[10862,-15417],[-11531,-11357],[-26587,-8448],[-14516,440],[-5078,-17724],[-12833,-10804],[-21602,5468],[-1781,15296],[-10680,-7315],[-5883,-10523],[6364,-2494],[3280,-10109],[-8418,-1931],[-16160,11214],[-23163,-7295],[-7878,-13166],[-11852,-3771],[-12406,-8590],[-8198,10738],[-8746,20397],[-7224,8252],[-1211,16337],[5374,4181],[9082,-5898],[5731,8055],[-12096,9866],[-3782,14386],[10314,20293],[-19059,-4707],[3136,8758],[9361,1491],[-31618,19863],[783,3920],[-12963,8871],[-6088,-13813],[-15544,11139],[-21122,-3815]],[[29520452,51170990],[151,299402],[-303,180934],[-1462,171211],[-312,111201],[897,549798],[990,99488],[-418,148770],[1111,374612],[-974,71787],[541,211233],[-724,46140],[-343,590245],[374,246241],[-807,6498],[-1180,143639],[3365,105200]],[[79854846,42135387],[14014,-21361],[25902,-26474],[14645,-9556],[16882,-5401],[48548,-10682],[11935,-13082],[1675,-41159],[4042,-17978],[11342,-11665],[26046,-10071],[48426,-8168],[19563,-20584],[16944,-34502],[7391,-8139],[16243,-5871],[17629,16936],[20939,5627],[62608,20810],[31473,16786],[20949,4707],[12026,-5805],[9203,-10521],[6782,-26624],[-945,-12538],[-12978,-22235],[-17294,-17255],[-8784,-13400],[-9727,-26868],[-4065,-36432],[4986,-17022],[11426,-13174],[11348,-5486],[22858,730],[31368,5534],[16121,-422],[13686,-6002],[11503,-12407],[2533,-24335],[-7915,-23050],[-12544,-11610],[-29419,-21550],[-8640,-9923],[-15688,-34668],[-6737,-29175],[-1338,-27158],[-4987,-25432],[-19220,-36789],[-9240,-33994],[1012,-26962],[7765,-12257],[24563,-13831],[41369,6086],[25789,-4690],[11204,-12077],[11707,-23445],[5785,-18361],[10968,-23352],[-6866,-32100],[-12072,-24101],[-33064,-5083],[-20743,10438],[-30652,32851],[-19128,5823],[-12446,-2541],[-21123,-17405],[-13693,-20622],[-9888,-35016],[-7116,-19478],[7703,-13101],[21997,-6686],[24578,-3011],[20386,-15745],[11081,-16429],[7224,-17077]],[[80322701,41149777],[3829,-14508],[-3502,-29942],[-27280,-52281],[-16974,-3254],[-15841,10774],[-18017,8421],[-45837,31340],[-11996,22517],[-20719,45839],[-8175,6516],[-18123,-5842],[-6540,-28724],[-54941,-84652],[-6294,-11948],[-16480,-21625],[-14302,-7970],[-29503,-1857],[-17751,2335],[-29495,13296],[-12865,15522],[-12566,27476],[-11752,16476],[-10710,-1321],[-10405,-7887],[-12286,-28509],[-3212,-14253],[-12681,-14058],[-41651,-33976],[-1842,-6038],[-13283,-6050],[-2437,-30111],[1972,-19740],[6005,-19488],[-6179,-31508],[266,-14293],[4392,-15961],[10579,-20020],[-1308,-22441],[-19113,-46186],[-1424,-10044],[5565,-15904],[19813,-14377],[15725,-16466],[-4855,-37165],[-12492,-17461],[-30986,-25695],[-8328,-34172],[4856,-13974],[10177,-14966],[20582,-11226],[29830,-10727],[14112,-19206],[10870,-18710],[-2086,-31687],[-5549,-20200],[358,-28704],[-10998,-34914],[-7628,-10971],[-10176,-5486],[-15727,243],[-28216,16214],[-16655,16224],[-12750,16074],[-30036,24335],[-31671,22834],[-28012,30188],[-18573,9218],[-14713,-1126],[-14340,-15960],[-5085,-14470],[465,-16215],[9712,-24204],[11829,-14967],[15924,-14460],[27751,-12481],[20118,-23445],[1386,-12472],[-6471,-11225],[-13646,-8235],[-11563,-252],[-23825,10230],[-21123,19544],[-32760,9640],[-12720,-2241],[-18039,-13974],[-12255,-16710],[-3243,-16467],[6014,-18710],[10177,-7980],[13648,-16946],[9574,-27860],[18650,-23201],[16243,-12650],[19592,-20866],[7400,-19215],[236,-23445],[-7172,-10230],[-24288,-2495],[-33614,14142],[-17833,-1060],[-11220,-8477],[-3601,-21963],[4636,-12782],[18618,-31970],[19424,-11224],[19433,-506],[64715,30224],[18542,-15754],[8784,-13223],[237,-11723],[-6942,-16963],[-17682,-33611],[7741,-25010],[6242,-6490],[21975,-5233],[13639,1999],[15727,8223],[13647,11976],[14570,21710],[9948,31424],[6037,11704],[19865,4511],[20346,-245],[12492,-12228],[6478,-28189],[-464,-15718],[-6479,-10971],[-21046,-23699],[-11327,-4988],[-10176,-11975],[-3006,-12220],[1157,-15221],[6240,-22449],[30989,-48642],[17347,-13973],[12261,-2993],[39080,4989],[13884,-2494],[9248,-6986],[4856,-9724],[3471,-18962],[-928,-22208],[3006,-18454],[9485,-11976],[20117,-11722],[12574,-10034],[12171,-21400],[1621,-18709],[-8327,-13466],[-17804,-4990],[-27394,21175],[-17194,15821],[-26154,37548],[-21579,15811],[-16122,-2213],[-4804,-11582],[4362,-16092],[9895,-16119],[15856,-5375],[14234,-8712]],[[79920140,39696572],[-19106,-9836],[-5678,-11086],[-9280,1708],[-18618,-9171],[-15924,-142],[5390,-12481],[-12612,-29268],[-9096,-7830],[-1637,-12060],[8563,-4389],[4513,-12678],[-14674,-35149],[-21603,-15305],[-13367,7427],[-4475,-12368],[-6105,4435],[-13564,-1285],[-11014,7372],[-15148,3817],[2940,15979],[-5237,3563],[-11738,-6911],[-23185,10213],[-526,10203],[-12932,9903],[-6782,-1755],[-11639,7119],[1637,9170],[-14043,3151],[-1735,10973],[-12019,7062],[-11593,-4220],[-5823,6236],[-16731,-6236],[-24678,19121],[-9087,4745],[-16784,2682],[-34589,-4482],[-11257,8139],[-8122,826],[-7605,8712],[-13754,-3667],[-15055,5101],[-18519,2064],[-13132,-16290],[534,-15107],[-7217,-13401],[-9332,14536],[-10968,10409],[-5047,9742],[-10198,4736],[1819,24383],[-17752,6490],[-5814,7885],[-13473,2215],[2069,9639],[-10831,7830],[-12742,-2474],[-17369,2672],[-9324,-2522],[-2795,13399],[-11402,4839],[-12993,11957],[-40654,6584],[-19860,-7737],[-22994,965],[-4667,-4482],[-5906,-19853],[-21548,-5316],[-8716,14788],[-18962,11901],[-12795,-2946],[-3021,-6648],[-10551,-1594],[-11584,8046],[-2064,7680],[-9096,779],[-1354,-11441],[-5960,10110],[-18421,1349],[-5243,3668],[-10635,-4428],[-3692,14377],[-8570,7878],[-15818,177],[-10054,5467],[830,19648],[-10337,14179],[-11836,1086],[-6059,7682],[3272,5927],[-9948,22740],[488,12782],[-9568,22216],[5297,8918],[-10002,13870],[-3554,14282],[-10490,4024],[-10580,-4278],[-17523,-14984],[-15155,10615],[-14667,5833],[-13237,-7878],[-15924,9181],[-4179,11806],[-9719,8038],[-23962,4182],[-8663,-5663],[-6811,2841],[-14631,-3583],[-313694,-51615],[-152303,-31659],[-24129,-6283],[-97819,-11414],[-33332,-2532],[-5830,-3057],[-75143,-12162],[-68004,-12556],[-187615,-29925],[-132435,-23061],[-199968,-32925],[-114558,-19599],[-156314,-24513],[-158841,-28958],[-169247,-1858],[-341386,-3113],[-9859,6293],[-7359,15725],[-13672,11133],[-577,6544],[-12218,4642],[-7893,13562],[-11158,1687],[-50512,-60561],[-152775,-181563],[-8616,-8627]],[[74983928,40543581],[337186,288900],[47405,43034],[19502,15248],[-2559,20885],[9387,12688],[-146,14226],[5154,4539],[-1074,18409],[-4917,7886],[6455,7324],[-9683,8965],[3221,8721],[-5739,17218],[6500,15933],[-10992,-423],[-144,12379],[-8190,-2279],[3852,8047],[-5162,4172],[-5168,26456],[2793,7735],[24473,22742],[10404,14394],[-5549,15717],[-8958,-4641],[-5595,7989],[2397,20988],[-7854,3395],[3607,12023],[13009,9227],[13298,19347],[-2702,11290],[14074,-3554],[-298,16701],[4963,3254],[860,15211],[-6020,5617],[9005,7324],[2267,-5260],[11273,24804],[-8776,3864],[8822,6554],[-3379,10306],[9880,5158],[2739,9857],[9210,9181],[17690,-5159],[3807,7588],[7475,-6340],[10115,3039],[12096,28827],[11805,-9276],[10314,8816],[145,12584],[7618,564],[19471,21194],[25881,-6949],[-1682,8805],[8198,56],[2504,-22985],[-3227,-9696],[13686,4126],[2557,-12267],[9590,-8251],[25500,-1032],[6895,-6695],[6646,11600],[31817,13720],[1149,11703],[6897,9125],[4627,-5262],[14075,4482],[9736,-2682],[1644,8365],[9781,-6863],[4202,9340],[9103,-3310],[4095,-9745],[15763,-6704],[10315,3769],[18748,-5261],[11478,7991],[11190,14956],[-8443,6960],[5208,4904],[-8815,8608],[8723,2420],[1880,14591],[-7276,14076],[7900,18147],[9211,7530],[12437,3864],[11615,-872],[-1347,9536],[7954,12783],[869,16654],[7474,4690],[8967,27017],[23726,-2064],[4140,10156],[7285,-1031],[7863,22985],[10457,16401],[-2214,21082],[9888,17837],[7863,2935],[5785,9846],[11334,6706],[3706,-3977],[26039,12942],[-2160,11599],[9545,10307],[-3465,8814],[7566,-3244],[-4238,9584],[7794,-1050],[556,10174],[-4704,16365],[14302,14048],[2238,8102],[27988,-2570],[8054,21588],[21137,8956],[-433,8928],[15557,4407],[5017,-6124],[7711,4249],[7916,-5140],[11235,17181],[15063,2663],[1408,18174],[11030,6901],[-2192,5271]],[[76153617,41821214],[8684,5468],[6517,-4623],[7969,6133],[6446,-4145],[2125,11141],[17743,4341],[8700,7502],[14561,-3020],[10039,4633],[-3182,6734],[7210,6817],[6866,-14301],[18169,-3460],[2199,-9998],[22067,282],[2268,6508],[12094,-834],[8991,9161],[7496,-1368],[19541,13542],[8904,-2804],[15932,6957],[17120,-2053],[19386,8853],[17750,-1454],[8443,18698],[-130,8863],[11692,20528],[14021,12032],[11463,2945],[3106,-6818],[7147,3095],[16402,-4250],[6083,-5006],[8137,4989],[10329,-1980],[4437,-12575],[16427,12032],[16630,5063],[78,6894],[13868,214],[7779,-7361],[7999,5684],[13581,-929],[-1827,8262],[13724,3320],[26207,21793],[6508,-1443],[-1150,-9847],[13023,6724],[13146,-10467],[28256,19216],[14431,4605],[-11373,10231],[11608,2259],[-11372,12360],[7217,2344],[-274,7494],[22370,9218],[6592,6733],[16068,6950],[11745,290],[2276,7643],[-6575,3948],[-5984,16974],[20187,11187],[19669,665],[6126,-17432],[7148,3928],[18185,1267],[-4477,-10447],[11190,3770],[411,-7952],[19304,-4642],[1993,8477],[9897,-6676],[9620,289],[5215,-13944],[11592,-5007],[27228,-5420],[-8892,15312],[12666,1876],[6105,11967],[20513,-1547],[5146,-8413],[7924,-1303],[25843,9059],[14849,-5936],[14516,7709],[5032,6433],[12925,-4042],[-1097,9170],[13328,11564],[7140,-2279],[4720,-9791],[19151,10456],[4589,11592],[9120,515],[22721,13391],[8152,-3920],[9499,3246],[8677,-13720],[5154,-22272],[5274,-4932],[21641,1753],[35934,16749],[20751,6010],[30127,1116],[4468,15426],[9362,18551],[20239,32212],[-935,13147],[10656,13664],[-1644,12585],[5442,9170],[13023,9031],[16595,5421],[11242,-4276],[-4338,-9593],[8539,-18756],[-1445,-5317],[10717,-9378],[55162,4633],[9210,17921],[13367,1762],[8844,12314],[21534,9152],[16616,-8487],[7171,-7859],[24434,1163],[7939,14846],[17414,12387],[17280,-6132],[-770,18952],[-5549,11581],[-8669,7625],[1584,7277],[10062,-1117],[13793,11300],[19066,-5420],[15155,-12612],[1675,-9997],[6249,-4454],[29748,3151],[1362,10447],[23771,-10203],[14509,75],[18192,13935],[18176,-1586],[13557,4699],[18078,-4585],[23367,7080],[2908,5355],[11274,833],[21130,-3544],[8349,-4070],[9021,6480],[22637,27280],[-5587,12135],[3532,10166],[-10254,10915],[12643,21568],[17287,14274],[14341,-2072],[14590,3723],[-8493,10287],[1918,8786],[9293,6462],[1706,9472],[19532,1360],[403,-15502],[12284,-27703],[8358,-24372],[10063,-432],[7337,16627],[10635,-4923],[16007,14452],[8448,2325],[16686,-3910],[13702,14132],[30454,3545],[19166,6451],[31003,7559],[10861,10624],[15529,-8861],[3593,-12576],[8061,7671],[8281,-1678],[7809,-9369],[5367,3939],[-3844,18709],[7093,4951],[11761,-4726],[2983,8524],[1127,22179],[-7116,12837],[6042,8113],[9569,-1295],[13860,-7605],[19174,-1708],[7575,5327],[-12583,7447],[5793,11910],[11919,4342],[16921,15350],[28743,1520],[8480,4783],[10792,27486],[-3706,7492],[4598,9969],[11942,6386],[18961,3123],[12825,-10860],[1173,-12790],[9483,-6941],[12119,2664],[10261,-13907],[18207,-1397],[13016,-9670],[18306,4972],[11204,-6809],[18390,17273],[5458,20603],[27318,19140],[24975,-9302],[8349,862],[15056,11611],[4050,22816],[13831,17189],[7635,5364],[40799,431],[11410,2608],[18976,16580],[8691,11815],[1828,11563],[7254,6049],[19363,-7803],[18452,-16260],[13358,-1249],[6128,5702],[152,9426],[8921,233],[23170,-16813],[14143,-21513]],[[38734314,70873237],[1774,-184461],[-1036,-16448],[-807,-535724],[-815,-271833],[-358,-255206],[-1103,-176723],[-777,-198912],[-1507,-575680],[-221,-314417],[320,-34202],[-723,-570964],[-320,-69011],[175,-317014],[1113,-180437],[99,-366427]],[[38730128,66805778],[-237669,2336],[-197905,2175],[-29565,-469],[-103534,1547],[-133724,132],[-64502,591],[-251932,1313]],[[37711297,66813403],[-209081,1087],[-64348,-3020],[-143025,-919],[-33720,-1950],[-231146,-1481],[-136744,1988],[-143763,-1511],[-384074,-2662],[-55855,-1342],[-542008,-2495],[-409465,-1865],[-353704,-3338],[-223054,-2524]],[[34781310,66793371],[906,41009],[464,133934],[-822,1069],[1682,136520],[4103,66245],[-860,477891],[62,136379],[-586,350082],[-1128,190031],[854,140610],[-2483,131916],[846,150945],[-846,115654],[457,221700],[-517,83144],[0,338537],[555,7520],[-533,257635],[206,51728],[-769,272291],[632,143162],[144,145486],[-449,69940],[435,156983],[-389,67078],[-1301,40334],[1507,103522]],[[34783480,70824716],[574571,2681],[13634,4099],[131484,2813],[393497,6040],[412883,4023],[53259,2710],[430025,6199],[468206,6789],[99532,2747],[506659,5581],[345306,3835],[51023,-47],[470755,1051]],[[58260517,52955275],[-129,6179],[105819,81653],[52908,31631],[54920,31425],[172665,122426],[144272,107929],[297101,222749],[57628,42473],[8397,7399],[148398,111079],[156680,115890],[412419,306990],[27227,135245],[70074,329525],[54127,258826],[233002,39715],[464355,78613]],[[60720380,54985022],[328211,55611],[51781,12387],[172962,29690],[282716,42960],[284609,43991],[159429,28405],[57210,3527],[26146,-44742],[195096,-326796]],[[62278540,54830055],[329414,-551730],[37251,-63252],[306373,-533941],[30720,-51278],[76597,-131354],[116323,-201997],[5702,-12464],[54194,-90879],[50276,-87006],[90169,-153645],[52041,-89764],[235965,-404059],[81497,-138031]],[[63745062,52320655],[32548,-55114],[-438244,-331578],[-139540,-101402],[-158924,-119023],[-89316,-65437],[-414277,-311425],[-327556,-246391],[-207146,-155447],[-2505,301],[-227286,-173366],[-5595,-3274],[-176896,-132085],[-65369,-48296]],[[61524956,50578118],[-1705,48756],[-4469,19402],[-16076,48661],[-21069,16590],[-22531,35419],[-28513,52216],[-7902,35898],[-15542,28246],[-24,19007],[-4307,14162],[-7803,8026],[-30371,7324],[-13441,6658],[-22661,6705],[-32350,-14301],[-12262,-28460],[-1812,-17696],[6897,-24458],[-1386,-33872],[-3562,-10681],[-9630,-6818],[-17035,7793],[-27340,32250],[-33660,30056],[-11783,7258],[-31200,10034],[-12050,5833],[-26717,21437],[-13989,16197],[-8731,1209],[-35920,22112],[-9751,2796],[-20864,41758],[10984,64997],[22652,24926],[13816,11705],[20255,-4381],[43074,-28377],[13732,5740],[57666,17443],[16183,7887],[31361,19599],[2634,16982],[-4127,28603],[3273,35195],[4530,13747],[837,36263],[7375,45840],[11760,46944],[2771,6068],[28140,31977],[1684,22441],[21320,12529],[7589,7541],[5091,19956],[-9750,36628],[-9926,5450],[-28421,8449],[-16023,-5542],[-8693,-14358],[-2504,-10466],[4971,-8411],[-4043,-19113],[-11729,-19242],[-16115,-19647],[-27813,-27504],[-14226,-10307],[-14523,-4164],[-103543,-19833],[-26199,-6189],[-26885,1069],[-25461,6329],[-4575,16299],[3395,32297],[8434,10202],[27828,10128],[9196,1200],[13313,9651],[4482,17602],[10132,8675],[15148,262],[7155,3900],[1102,12230],[-7056,10672],[-28079,10597],[-26908,-1032],[-27287,6030],[-14713,-3639],[-15140,-19505],[-17645,-28462],[-26124,-31415],[-32752,-29054],[-20819,3527],[-14379,13448],[-4185,15988],[448,23183],[3845,31997],[3357,4839],[29068,18060],[9012,13983],[10414,8975],[15201,32925],[-107,10399],[-6774,5956],[-21519,8627],[-11022,8506],[-4933,11291],[-10808,37886],[24023,33329],[14889,16195],[26488,5494],[12111,39875],[3128,19769],[-14957,14244],[-34108,19900],[-7330,9059],[-4050,12604],[-22119,10034],[-10894,-2580],[-5989,-12144],[-13915,-12781],[-13358,2803],[-12110,11198],[1141,17537],[17674,21212],[13595,23913],[1803,15941],[-9399,17988],[-14333,11074],[-10070,451],[-19366,-12181],[-30317,-28996],[-3493,-7654],[-13770,-8215],[-7885,4520],[-8967,-2033],[-16030,-10513],[-17294,-17827],[-3061,-9341],[3145,-23576],[-1759,-24016],[-5314,-11488],[-13206,-8917],[-20377,-1191],[-14119,-8535],[-974,-8975],[-19478,-22890],[-22485,-21972],[-58444,-21157],[-2900,-8983],[-34397,-27947],[-25864,-11422],[-24222,105],[-5814,3675],[-17393,33535],[-6791,17415],[-3805,20781],[-14539,6601],[-23603,-6874],[-7376,3649],[-5929,15689],[4482,63130],[18924,7888],[17537,-7972],[12110,3366],[11607,15859],[12043,31697],[3464,30280],[-1500,11515],[-17546,35805],[2048,25019],[5352,36105],[-4293,15802],[2625,25555],[4102,6770],[32678,36424],[15154,11177],[34230,13561],[-7,23866],[-13571,18081],[-8222,22074],[4910,43035],[-206,50331],[-1514,12621],[-8837,16206],[-15429,2953],[-22219,-4791],[-36893,4389],[-19167,-5271],[-23193,-14564],[-46682,-13259],[-8192,3563],[-21868,22601],[-13434,4220],[-24944,23425],[-13168,19712],[-2139,12604],[2961,11225],[16160,3947],[7900,9135],[2870,34003],[6844,30656],[2055,22629],[-3517,21737],[-12186,7933],[-30767,11123],[-30349,5768],[-30377,2654],[-33478,-18146],[-2024,-9867],[24098,-28724],[18748,-34518],[3174,-31238],[-14005,-33123],[-1470,-22534],[-11454,-35307],[-17279,-23950],[-21769,-10579],[-15566,1098],[-27830,-4023],[-18191,-10794],[-16601,-18860],[-1820,-13568],[4026,-28743],[11243,-20613],[16663,-43559],[2359,-13917],[-12012,-22516],[-30241,-27852],[-11204,-17293],[-10627,-22976],[-13663,-18632],[-16014,-6912],[-28848,7287],[-7140,8974],[-16304,28527],[-8390,7520],[-10488,-4829],[-26025,-28132],[-10664,-1426],[-6743,5110],[-5314,14001],[20187,42914],[9141,36094],[-1736,39593],[6737,18146],[3837,18699],[-1492,67539],[3744,17929],[7155,19029],[2932,18192],[-1196,19713],[-7588,14132],[-24708,14807],[-12529,-4604],[-26161,-23360],[-39056,-29202],[-12918,-4118],[-17652,3836],[-21746,12669],[-38629,12791],[-15985,-5963],[-4667,-11601],[-21884,-16777],[-28414,-13767],[-36788,-7071],[-21305,15605],[-4354,18184],[4150,4577],[13905,31790],[2612,13701],[-5952,24972],[-7796,7062],[-22546,-5870],[-36984,-23144],[-23910,-22319],[-22469,-11911],[-16084,-2381],[-19234,3459],[-23468,1201],[-43440,-1528],[-22949,684],[-11158,6593],[-11524,13232],[-17256,-984],[-20286,8739],[-5070,13017],[18375,37163],[-959,21466],[-17020,31857],[-12216,34276],[-2223,11346],[-12903,40587],[-6057,12219],[-50565,52197],[-28873,22853],[-21084,12548],[-23338,2785],[-31222,-7878],[-15863,310],[-28172,-8206],[-15421,-28621],[-45913,-48847],[-17775,-10185],[-12475,2242],[-4172,6639],[-29707,14131],[-11715,3208],[-10603,-1828],[-27639,-16346],[-15117,-2664],[-21815,1614],[-8228,7137],[-19501,7182],[-14143,-66],[-22111,-14207],[-26147,-3094],[-11981,7690],[-17743,2851],[-31139,17030],[-4819,15145],[-13093,74647],[-1803,29942],[3860,11994],[752,18044],[-4703,26679],[-4850,6143],[-25878,17330],[-8816,2887],[-24958,527],[-15194,-2740],[-30135,-12621],[-9064,-12416],[-14843,-9013],[-15727,-21540],[-2329,-13017],[3646,-6987],[14494,-9920],[2770,-17734],[-10770,-13945],[-17973,-17293],[-26724,-36975],[-9621,-24852],[-16243,-23360],[-18086,2335],[-10292,11788],[-1552,13944],[8571,35984],[-4917,11215],[2017,13138],[15521,5918],[9324,12182],[-4621,21306],[-921,34998],[-8738,12791],[-18147,5364],[-32365,4716],[-32128,7785],[-14479,6836],[-22012,15997],[-18755,16730],[-13733,19329],[-15801,8112],[-24427,18726],[-6843,-816],[-22439,13336],[-4345,12998],[5266,45557],[9485,17236],[10572,2119],[23870,30121],[12842,13205],[859,10333],[-4566,19179],[-21008,17198],[-10810,1510]],[[34122173,91811452],[434,-70146]],[[34122607,91741306],[-7041,-944799],[-1166,-180410],[-4993,-23968],[-1750,-176997],[-1416,-177746],[-4530,-504343],[161,-289144],[1918,-22319],[-10215,-1149881],[-982,-28237],[-2291,-239893],[121,-28123],[-3341,-275208],[-396,-55151]],[[34086686,87645087],[-573179,-1894],[-58466,6816],[-165295,291],[-165190,9482],[-537207,3526],[-84247,1500],[-92238,665],[-632308,5515],[-227560,3967],[-576657,2832],[-270559,1332],[-104517,3637],[-503463,-12509],[-402394,-9968],[-45183,1424],[-248487,-4285],[-415295,-7070],[-287055,572],[-337991,-686],[-455464,-880],[-158041,-6208],[-58611,956],[-180405,-347],[-80762,619]],[[27426112,87644374],[199,269328],[-526,107723],[-1666,168133],[3120,81812],[-167,147906],[494,206808],[571,425814],[-106,309944],[-350,71168],[358,191926],[882,235427],[2338,755726],[472,108491],[2078,922535],[-411,117185]],[[27433398,91764300],[140816,506],[171713,3255],[591348,946],[360149,620],[57607,6105],[513989,834],[223870,515],[19410,-599],[136622,985],[2968,750],[200083,130],[111618,-300],[636828,845],[87939,5740],[290396,2850],[25081,798],[101349,0],[62873,1312],[383852,4605],[104152,234],[359974,1951],[487379,2710],[102561,1256],[78272,56],[449488,2363],[321177,1801],[139941,4680],[527320,2204]],[[96373599,53755646],[37184,5055],[18551,-1781],[7527,9059],[38203,9921],[11259,5430],[70385,67651],[3045,5382],[52916,37905],[24586,8993],[33241,8516],[28240,19975],[9545,19337],[23528,6938],[17727,-3675],[26427,-1735],[16000,7277],[14060,1295],[11485,-6294],[8306,8365],[5723,25518],[8716,12904],[1872,11730],[8541,5721],[7345,15315],[43927,29662],[9645,16156],[31291,12352],[16800,11505],[19630,17350],[20604,7145],[12530,8309],[10010,15315],[20407,1180],[-5116,-18314],[14964,-20378],[19563,-4538],[11204,815],[11830,-12791],[-2498,-11863],[13351,1641],[11197,-11965],[8122,664],[3220,-20893],[18831,5870],[-1666,-8251],[5617,-8919],[17560,-8627],[9736,7473],[-199,-6751],[17111,-6509],[4248,-11093],[10968,-12239],[16184,3574],[-7096,15670],[3418,7586],[18003,-2156],[9803,3160],[274,-7399],[10443,-2223],[2650,-12595],[11082,9426],[4460,-5356],[17895,-6957],[-10206,-18558],[25323,-19244],[39733,4661],[16405,-5384],[15283,16355],[9249,-4107],[-61,-17321],[17599,-8533],[-937,-12275],[8632,-9453],[12560,-338],[13107,-8524],[6006,10062],[14607,-11356],[6278,1566],[-555,11647],[21168,-12952],[-6888,-5653],[15795,-11986],[10770,5037]],[[97511882,53913128],[34671,-64303],[24456,-8235],[28553,-32793],[23824,-19881],[13968,-17977],[259,-12594],[-5701,-6284],[-23300,-900],[-5693,-6603],[524,-20780],[10086,-20800],[31361,3714],[4444,-9453],[-943,-13223],[-10496,-14161],[-20888,2880],[2612,-21101],[16608,-31837],[17241,-21446],[17842,-18596],[28339,-6359],[5898,-18896],[8906,-13879],[37816,-25893],[21479,-1621],[7452,-4426],[-2725,-10381],[-18549,-10664],[-7825,-18248],[31611,-6678],[2878,-30553],[8921,-7567],[56007,-30355],[19873,-32157],[20240,-12961],[31916,-5419],[33424,-76],[21464,-5091],[48023,-7043],[55208,-1398],[39422,8094],[7786,5017],[-2055,10080],[-26511,10767],[-3792,21737],[12263,6264],[13702,-6329],[9788,-14827],[11608,-7586],[12986,18840],[14188,10090],[8282,544],[-990,-20660],[10138,-9199],[19989,-1631],[6218,-9669],[2079,-31312],[10861,-30684],[2717,-13842],[-12482,-8347],[-12993,7616],[-5351,-4473],[5289,-10428],[12849,-9434],[11494,-2926],[25194,-12126],[34056,-3873],[21047,4886],[25270,807],[41538,-1970],[41895,3555],[25621,-8123],[10990,-11252],[-2709,-14152],[-24975,-23340],[-19836,-648],[-13631,-4708],[-4781,-16429],[15209,-17517],[4498,-19281],[-13847,-9031],[-15124,8525],[-14485,-1998],[-7352,-13795],[-2185,-35420],[14029,-13448],[2009,-12321],[-4734,-8290],[-19518,-12868],[-15123,-16167],[-18771,-16419],[-13191,-6077],[-20034,12641],[-13162,1266],[-5677,-28894],[-5444,-9883],[-35972,-10175],[-7597,2270],[-17203,17432],[-25422,-4886],[-29649,-22291],[-4573,-9659],[6013,-20245],[15338,-2224],[16592,21889],[11571,1687],[7163,-13428],[1073,-21344],[-23391,-31060],[-9903,-38082],[2275,-19290],[57942,-26427],[28923,-27945],[49866,-50810],[37328,-24475],[35607,-13288],[7133,2859],[24814,31454],[7490,4144],[8609,-4633],[15086,-24193],[15025,-13363],[12886,-2712],[7179,6041],[-2581,23829],[1812,7511],[19015,441],[20521,-12191],[1241,-15586],[-42969,-101618],[-730,-9096],[9963,-4389],[113650,-13870],[4667,-4510],[213,-22553],[-64090,-117814],[-14478,-39930],[-13131,-13795],[-1012,-20603],[2672,-16410],[-3380,-19029],[191,-19157],[24875,-14508],[28284,3235],[15445,-2692],[20811,-14920],[21358,-11346],[16685,-17153],[21686,-30581],[29913,-32417],[36538,6460],[18556,-9866],[18825,-40596],[11128,-57841],[5618,-93308],[3477,-42951],[-1134,-16964],[-6530,-3433],[-18467,6640],[-9240,-2091],[-1522,-10073],[3896,-11327],[17683,-23080],[14691,-7417],[13671,-160],[27645,6949],[40327,6480],[48092,20284],[28681,17322],[7961,2381],[18025,-4529],[11729,3160],[14599,13991],[13946,1277],[2245,-9904],[-14455,-31556],[-9758,-13813],[-12833,-10963],[-6516,-24025],[678,-26183],[-7422,-10934],[-13489,-8543],[-40090,-9200],[-37519,-14030],[-47337,-12040],[-33384,-12417],[-8434,-22900],[4643,-36151],[1750,-26033],[-738,-41553],[-5352,-12745],[-25369,-36301],[-13023,-15350],[-15103,-11133],[-5648,-9105],[2315,-8168],[19036,-25339],[7475,-16992],[-2649,-11657],[-18458,-23482],[-33462,-9472],[-11424,-6724],[-10033,-14207],[-3829,-32708],[-19599,-23343],[-7270,-12369],[-2953,-21286],[4727,-23210],[8053,-19488],[20239,-23285],[23749,798],[38066,-5177],[14539,-6058],[28307,-15980],[6721,-6704],[9722,-28031],[15672,-21419],[11357,-27862],[16845,-29745],[19805,-41759],[4567,-4520],[12795,1050],[14531,10512],[22554,12444],[15908,4624],[10610,-4192],[12141,-28781],[13832,-22037],[7618,-20621],[2353,-50472],[10733,-16148],[21480,-3236],[34451,7653],[17551,460],[58496,7989],[17958,4294],[15138,-364],[6052,-8253],[-952,-38318],[1790,-10831],[14651,-16945],[20195,-14152],[7186,-9311],[3501,-14012],[-11341,-30523],[228,-18325],[11097,-12265],[-2618,-11508],[-40068,-13559],[-16784,-9923],[12408,-20386],[27439,-19535],[2040,-7427],[-6340,-21024],[-45,-15286],[6759,-24926],[-2186,-13391],[-13418,-28274],[2899,-7193],[10680,-3367],[30294,6658],[13594,-5035],[7102,-28715],[7802,-10091],[13033,-862],[40942,15013],[24852,14760],[11457,-4416],[4666,-10465],[-3897,-14292],[-19548,-28480],[1972,-7193],[26573,-19533],[4817,-7362],[-5388,-14217],[-56792,-25714],[-4300,-6349],[-853,-20800],[3326,-26426],[-3402,-13232],[-8883,-17620],[-17468,-24851],[2108,-10607],[25758,-29062],[12490,-11843],[1394,-11517],[-1050,-54344],[2678,-50414],[-5016,-30337],[-510,-23763],[5922,-15839],[9356,-36527]],[[99297672,50067744],[-99128,-7090],[-90162,-5813],[-154412,-11507],[-180541,-12501],[-186611,-14038],[-169459,-12078],[-133617,-10513],[-69768,-4032],[-57088,-2382],[-155136,-12248],[-216165,-16176],[-207108,-14227],[-188626,-14619],[-115219,-7240],[-69245,-5731],[-273581,-19420]],[[96931806,49898129],[-247182,-56463],[-154657,-35928],[-153414,-35297],[-109456,-25798],[-44224,-9481],[-165541,-38111],[-99127,-22113]],[[95958205,49674938],[-9050,-234],[-13404,11282],[-5489,13335],[-4917,23490],[-22530,28556],[-12622,20003],[-3279,9771],[-4004,30308],[1842,24767],[11905,21757],[2283,10241],[-3068,11900],[502,16458],[12728,15192],[2892,14958],[17339,54888],[6736,25075],[2422,23041],[21320,33451],[997,4249],[-6066,36366],[10116,26765],[1057,234593],[1781,17199],[-5998,75116],[37161,151018],[29487,58892],[4614,30132],[-3670,43719],[5489,21005],[-4415,43786],[-4521,19084],[-35440,56304],[836,27636],[-14668,37267],[-8844,35420],[-1050,31059],[6225,34031],[-10084,59680],[-5374,12642],[-19289,12303],[-8433,8469],[-32983,50846],[-1187,24692],[8039,13193],[16539,12313],[769,5862],[-9195,36545],[-517,10982],[8867,30927],[17705,40728],[-1400,26136],[-9293,11336],[-5679,24308],[4163,28348],[28484,41123],[17012,28658],[1766,11526],[-14614,31714],[-11738,15502],[-8038,23923],[35196,46672],[11951,26840],[2596,27129],[17316,21016],[1751,21222],[19798,34960],[6417,7062],[33750,20208],[15833,14124],[5761,11824],[1043,17734],[-5632,40746],[-5960,21204],[-17309,43926],[-4979,30365],[-17933,27683],[-10360,12359],[-7770,15154],[-5161,27122],[-14395,39189],[-18267,29306],[-13853,28742],[-18582,28228],[-30401,59069],[334674,359899],[9087,15446],[72358,90157],[47551,60918],[22,128851],[-2588,190621],[31,139344],[-2512,67445],[-1211,139109],[-1218,85170],[-996,116892],[-107,81680],[-724,19656]],[[86294657,70708469],[2436,-482138],[2649,-222684],[1590,-15914],[655,-84718],[-1705,-182604],[-519,-203348],[39,-213672],[319,-133735],[-624,-195874],[-981,-5298],[1469,-434753],[1081,-59108],[46,-130032],[-1721,-152219],[-1401,-25066],[610,-38833],[-9,-285881],[-745,-5261],[-1294,-194391],[-845,-241450],[-1248,-229107],[-1362,-91819],[-1212,-260278]],[[86291885,66820286],[-180116,-1791],[-212885,-686],[-63078,-787],[-153026,-1041],[-164856,-516],[-52817,-1801],[-131494,555],[-321641,-2833],[-514287,-4005],[-179956,-1012],[-416203,-4313],[-115279,-423],[-207428,-1397]],[[83578819,66800236],[-17621,167852],[-182,11451],[-243478,1471],[-61822,-308],[-34617,-1332],[-69070,2231],[-203332,2796],[-15733,1452],[-88715,-1978],[-189874,-2907],[-399207,-1989],[-97353,-233],[-79512,956]],[[82078303,66979698],[-4629,188878],[-1270,3797],[-274,524808],[2085,2503],[1766,518027],[31,126853],[6455,767109],[1491,116425]],[[83016389,53142689],[267864,82571],[433236,132724],[-34959,138574],[281314,50509],[19760,4605],[107957,18849],[167610,27167],[79704,14535],[10983,657],[338616,60881],[106716,20208],[40791,6303],[53716,13044],[203364,32681],[57102,8787],[386417,58152],[250899,37820],[73012,15258],[147736,23021],[59280,8834],[496529,77846]],[[86564036,53975715],[-6051,-13542],[14027,-10268],[12683,11600],[3927,-1228],[7695,-28659],[-2581,-8066],[9005,-8326],[10870,-24523],[13770,-1191],[8920,-22103],[11775,-3123],[10847,-16749],[3655,-21822],[29243,-8862],[6814,-10794],[7155,-1914],[14294,12810],[11403,891],[9157,-8532],[25735,187],[26945,-6021],[15756,-684],[1606,16645],[7498,2532],[28368,-12941],[22418,-4605],[13145,-10896],[9348,-1661],[15359,11507],[-1247,6414],[-12233,1098],[-12697,8533],[55,5768],[11516,2616],[12863,-9040],[8023,675],[6089,9116],[10894,-6715],[10938,-779],[15557,-6957],[9545,-15887],[7004,3198],[8387,-10156],[16732,-1172],[16813,-5401],[17568,5120],[2793,-11630],[10901,1249],[8114,8307],[3753,-11272],[-9447,-10034],[13877,-3262],[26078,22580],[11867,5168],[15657,-12378],[23702,-4745],[2322,13090],[-10344,3348],[-587,5571],[30387,7259],[9972,-13177],[6097,131],[-3951,13636],[2816,12265],[7847,9819],[12697,8402],[31322,8797],[7847,-7117],[32906,22721],[8548,-1855],[23384,41449],[21502,2719],[12340,-2231],[12620,-16730],[8121,6057],[5648,-3131],[-4187,-9978],[-15505,-7503],[6167,-8103],[16464,-4323],[7688,-6057],[17148,-4520],[7301,-8675],[12338,-4577],[4437,-26003],[-935,-13532],[11471,-3883],[15283,-13898],[5900,7231],[8769,-3518],[-5138,-10325],[17217,2430],[13641,-8618],[24350,-5919],[4103,-7136],[-10399,-16983],[-2649,-12453],[9149,-5401],[17386,-17987],[9118,7484],[7941,-7981],[12247,-2054],[-251,13476],[5357,3273],[14821,-7109],[10313,-10399],[1531,-13176],[-14867,-21447],[-3576,-11986],[-32449,-20723],[-9294,-17696],[-913,-19093],[2899,-13440],[20848,-33835],[8822,-25338],[-8288,-19131],[-11471,9847],[730,-8242],[16785,-23116],[17172,-254],[19242,5749],[27897,1547],[43661,-19158],[6737,-5816],[13160,5947],[9957,-10456],[-7018,-19469],[6333,-21868],[8197,-4024],[4956,-11901],[6134,5572],[-4719,17123],[6021,9950],[14256,1659],[6494,-6124],[-2969,-13465],[39528,-20641],[7755,-10560],[8846,-534],[7893,-8478],[16960,-6151],[12704,-15586],[-15545,-12707],[-59,-4332],[17901,-12941],[15141,11741],[10496,-11994],[7019,5260],[2214,-14666],[16441,-22544],[8145,-5674],[-159,-12998],[5715,-8402],[2170,-24796],[-7763,-15173],[7694,-10624],[13838,-432],[3395,-17630],[-10519,-2064],[-12742,14995],[-5443,-403],[-752,-20508],[22590,-21354],[-6408,-12040],[13008,-10756],[16503,3543],[5777,-10783],[-14021,-14049],[4149,-12781],[-6083,-8412],[11242,-4192],[-13016,-8966],[-12581,6312],[-1980,-46438],[-6820,-66],[-2397,12820],[-16335,9265],[-1370,-13654],[-10855,-6067],[-2534,11187],[-16981,-2486],[6948,-14517],[-7231,-17517],[-15458,-14760],[-12567,-2532],[-3418,-5205],[4826,-29511],[-8145,-4689],[-4674,-15970],[11021,-3911],[23887,-1876],[-5983,-18165],[3601,-5299],[14431,-3657],[11555,-12415],[-1706,-26474],[5869,-6095],[-7436,-7174],[13868,-5402],[25035,8383],[-3067,18391],[8022,-2635],[3951,-8873],[-6934,-19045],[-17950,-13232],[-6545,-20210],[9622,-7979],[-1561,-7878],[11767,4838],[31505,-5250],[14494,11713],[3942,-1135],[6996,-20978],[12612,-8019],[11190,-1668],[51264,20181],[5093,16157],[6621,-3863],[10832,-19046],[33042,-6078],[3738,-10728],[579,-17329],[12559,-1885],[15406,16926],[17712,4886],[3227,6443],[4196,34829],[-6729,178],[-7263,-9237],[-3372,10137],[10779,1388],[9599,7539],[11355,-740],[19167,-18803],[-1226,-15576],[15193,2438],[25303,-30740],[-10307,-6303],[1705,-6817],[21137,-8918],[4150,-7380],[-8000,-8928],[19553,-12529],[6806,-609],[9294,-21607],[-190,-16918],[-3456,-18538],[24205,-19498],[-4445,-7539],[4239,-10437],[28834,-25471],[-4926,-8195],[9067,-4745],[34474,15914],[39435,-17171],[-4963,-13260],[24138,-1754],[7467,4539],[-11160,10391],[4453,7454],[23444,-15773],[32800,-11647],[12963,676],[10900,9837],[32684,8636],[3906,9246],[31694,-15839],[17888,5655],[19173,386],[-1833,-13937],[11189,-3788],[243,-8917],[10414,-2252],[-4629,-5382],[754,-12172],[-24982,-5965],[-19913,-12370],[-6241,-18567],[1873,-8009],[14995,-10607],[21312,-8260],[-4453,-15756],[7537,-13681],[20459,-11273],[5587,-11488],[-685,-15435]],[[88962440,52044310],[-124178,-110179],[-129628,-112307],[-66662,-58293],[-258275,-219345],[-456749,-387572],[-236460,-200629],[0,-1462],[-52466,-45286],[-63604,-53463],[-16464,-11994],[-74983,-68644],[-21314,-13213],[-437492,-369090],[-232492,-196060],[-52658,-43972],[-476260,-404295],[-187978,-158774],[-87946,-73971],[-194906,-165180],[-18398,-17612],[-385299,-327059],[-54081,-45303]],[[85334147,48960607],[-34793,-29147],[-269920,-233430],[-7780,-7089],[-156824,-134797],[-28787,-23115],[-189374,-162882],[-117813,-100006],[-588349,-506885]],[[83940507,47763256],[-31301,-14366],[-17049,-15455],[-28628,-9585],[-22729,-3159],[-31224,5270],[-17886,-1275],[-9591,4042],[-16860,17469],[-10268,41648],[-8754,15314],[-32244,4435],[-16197,7549],[-1522,86613],[-4461,19609],[-6371,8722],[-19373,13991],[-8152,9330],[-2740,23464],[-36573,37202],[-9257,30824],[-9453,21212],[-1607,21494],[-16136,55122],[-9477,13805],[-22958,11656],[-17811,14667],[-7931,10465],[-6378,24158],[-1728,27458],[-3699,17490],[-9180,17283],[-22401,8551],[-21779,5215],[5641,18820],[11296,13562],[13746,9471],[33927,13775],[12262,3339],[8068,9059],[-777,24289],[27419,40380],[17842,30411],[8547,36124],[13419,32598],[11334,18943],[10368,24485],[-1781,9236],[-10344,6527],[-49485,17705],[-6653,5281],[-10168,17292],[-5960,21709],[5008,21195],[27112,33150],[16023,26445],[19524,10091],[55788,2569],[45777,14900],[12810,8348],[11783,12585],[16297,32633],[5380,4409],[14677,993],[10512,-3733],[6035,-10558],[5252,-19412],[12917,-14329],[16549,-5225],[8623,677],[1934,8946],[-3441,22750],[22608,20368],[3136,8468],[-7986,29175],[-5487,50152],[-10017,11057],[-19075,9115],[-21771,2784],[-63930,4717],[-18892,6387],[-1067,25630],[-4497,8720],[-18786,20126],[-11045,16383],[-20681,41008],[5192,8422],[38370,4848],[5792,10822],[-3951,5561],[-29486,17470],[-12423,16084],[-6889,27364],[-8585,22225],[-4812,4220],[-31732,5288],[-8953,30094],[-8236,3019],[-12757,-7811],[-25979,-23032],[-12894,-8636],[-32456,-31744],[-14280,-3573],[-8289,5974],[-11120,16804],[-6037,2850],[-21411,-13474],[-22380,-1154],[-17438,28959],[-14021,11543],[-20474,5252],[-16107,-9229],[-11076,-31565],[-19150,-7915],[-9286,6283],[-9387,20725],[-20101,26634],[-5732,-1876],[-5374,-32916],[-14805,-8355],[-25401,32577],[-10801,3574],[-27028,-12829],[-38235,-5486],[-23443,441],[-19228,20424],[-5230,15165],[-1437,16410],[-12369,23398],[-11411,-1341],[-12627,-11825],[-15429,-24279],[-21017,-1023],[-13350,6659],[-10041,13185],[-2587,23312],[-7992,17678],[-13572,5777],[-21466,-2693],[-10389,2148],[-26177,12923],[-17652,-5167],[-13952,-9603],[-11182,-15567],[-6364,-3441],[-30012,3141],[-7924,6893],[-17651,30440],[-3228,12210]],[[59880494,36413827],[14195,853],[13647,-5336],[9835,5148],[17613,2063],[5138,8505],[13717,-675],[9788,-5111],[8298,-11196],[13244,12425],[20347,10615],[10548,-1499],[6196,4388],[6950,-7173],[15886,4426],[31468,-8740],[10465,-7850],[9012,7118],[17568,-4323],[25820,-19956],[4887,-18305],[22552,5373],[19053,-4585],[5944,1762],[15734,17237],[3350,15997],[7717,10063],[29077,4755],[11228,4079],[-54,9088],[-11957,22431],[-11281,12585],[-12902,8355],[-3174,14546],[12187,778],[49186,-16749],[21533,17498],[10818,-6733],[16152,-20012],[15383,-13653],[15817,4819],[20855,22404],[16443,24776],[22097,14264],[14424,6377],[14324,628],[16138,-6855],[15253,2981],[-9491,28255],[1149,10786],[7535,5364],[26847,-8994],[28484,-11947],[9255,2738],[15742,20893],[7680,6706],[20284,7990],[21558,524],[11608,-9808],[36801,-9696],[6189,1341],[9598,13043],[245,16261],[4847,14798],[22508,10832],[18238,1913],[15208,-5936],[24662,-17030],[22745,5101],[3934,4332],[-6325,15839],[-21495,13215],[-2641,10728],[4948,11863],[15071,16505],[22516,-2477],[1332,-7483],[15039,-4352],[22440,9912],[3799,9697],[-6051,13927],[6439,20536],[9309,4539],[11417,-4914],[9173,-16147],[6189,-18465],[17461,-18325],[-5914,-16045],[904,-9030]],[[60890250,36648402],[-813,-14808],[6309,-16026],[14136,-14406],[25795,-280],[28751,6124],[26633,8965],[31391,20724],[29837,1481],[27691,-5711],[14965,4193],[10702,-2729],[6866,-8768],[-1279,-35805],[22029,-14132],[11228,6048],[2969,15062],[36993,5748],[7732,-3873],[23415,-1022],[13814,4389],[9934,11000],[2010,13663],[-9843,17284],[-26252,22328],[6280,17498],[15831,8253],[10870,-197],[26139,-24551],[29374,-15782],[12947,14404],[14349,4848],[7869,-1285],[7589,-11038],[6196,-37201],[14540,-9285],[18572,-2109],[6523,14498],[19388,7643],[1819,8148],[-4605,9492],[21974,15276],[9065,27139],[4941,3920],[18724,-6602],[17804,-12378],[9112,-619],[1013,8412],[12177,25282],[9843,6911],[19623,-4746],[2687,-6348],[25194,57],[13345,10259],[18527,25123],[-2544,17443],[3456,14235],[12864,13316],[21450,6190],[18435,-6715],[6814,-11403],[2207,-13879],[-7497,-27290],[4270,-7276],[27311,-14659],[23756,-3047],[12185,1651],[18429,8814],[11661,1294],[7825,-5888],[2968,-17330],[-2542,-34839],[30417,-18991],[12764,-10371],[2490,-19450],[5662,-8101],[13961,609],[-5366,24663],[20643,17125],[23847,-3161],[17508,-7174],[13054,-9913],[20247,-3103],[29213,-14002],[19334,-13729],[24465,-10794],[21495,-3778],[11425,2532],[20491,-197],[29945,-13655],[5092,-10315],[19821,-5570],[13814,5223],[19815,-609],[42274,-7052],[21215,-15417],[22979,8720],[17697,18119],[24175,14657],[16655,6198],[13588,-8664],[18046,-38383],[16458,-9021],[3119,-6602],[15689,-2579],[37290,11609],[10596,15013],[23984,13261],[15787,628],[19912,-14863],[5184,-18878],[-1805,-17021],[-12848,-40530],[-746,-34538],[5473,-24870],[21069,-29887],[17218,-8083],[12901,-826],[16167,3300],[32046,-2578],[22501,8711],[8585,9445],[-959,10783],[-15208,24355],[-7908,17330],[2154,6499],[29030,28479],[36993,17481],[18429,5720],[10459,9604],[2785,11084],[-7337,15220],[-10459,-356],[-9553,5007],[-10070,47151],[289,14395],[8313,29560],[12855,13202],[19632,10729],[2595,4388],[21015,6238],[9265,-2739],[32730,15726],[29799,3761],[11471,-9396],[2110,-10683],[26092,-31528],[4026,-11712],[-12346,-27851],[10756,-15595],[25180,-4802],[10649,-5833],[20246,-10],[20629,-23791],[9979,-10],[19774,11245],[9021,-366],[13236,-8880],[33963,-14414],[14997,-8769],[10754,-12023],[3274,-19495],[-2635,-21570],[-11410,-13157],[-4908,-18426],[1620,-21157],[5229,-4679],[37420,7446],[41576,34125],[37937,44123],[8053,18473],[19082,28744],[17035,3825],[10459,-3094],[-1531,-21249],[24343,-41009],[27585,-9903],[31048,-29240],[21975,-14545],[4134,-12688],[-382,-20378],[-4559,-11347],[-12459,-11544],[-46,-37737],[-7483,-20114],[-25415,-22610],[-19669,-4333],[-10216,-7896],[-20284,-10015],[-24944,-9406],[-20271,450],[-20596,7943],[-18276,11356],[-43844,-3028],[-14577,-6968],[-9682,899],[-28878,12839],[-15544,-6592],[-23223,-16289],[-6119,-22920],[3364,-18249],[-2314,-30535],[8000,-21775],[11599,-17657],[11730,-28481],[3014,-18624],[-4185,-28687],[-5138,-12893],[-32282,-20314],[-19775,-22646],[1149,-18249],[8769,-13683],[10885,-5157],[6028,-20435],[2383,-32559],[4406,-13569],[5641,-32561],[8776,-8458],[7239,1078],[46606,14770],[23300,11161],[31733,11619],[22547,-14123],[7771,-20998],[23992,-40690],[87696,-33665],[10694,-6697],[8297,-10888],[-5990,-20536],[-32108,-56033],[2459,-24606],[9401,-29147],[36590,-68298],[4940,-16560],[-1956,-25283],[-10734,-18577],[1500,-15587],[-4878,-18268],[-15528,-8411],[-6989,-12295],[4309,-15613],[21062,-8290],[9856,-18203],[14144,-20180],[9012,-7841],[20360,-9030],[50178,-7165],[2450,-24447],[6280,-22853],[10315,-13261],[25628,-15061],[18351,-5007],[27266,2737],[15742,5750],[21107,-12201],[9104,-30111],[-694,-36189]],[[63441674,35235100],[-1180,-14386],[-7420,-19553],[10822,-15680],[9302,-5936],[26246,-22796],[8099,-1914],[7087,-12950],[334,-19759],[-9172,-13832],[-7163,-17227],[1781,-15709],[5885,-10652],[14439,-11854],[4133,-19412],[-2345,-9397],[3213,-20012],[7405,-13981],[18565,-24149],[5877,-23884],[-1491,-19496],[14896,-3817],[14713,7727],[13816,-2335],[38340,-18155],[15756,-19253],[1385,-23979],[10291,-14141],[38889,-19825],[40418,1172],[15512,-11817],[6707,-11102],[3432,-28996],[11677,-9810],[21709,-8393],[9020,1501],[31664,-15005],[6943,-10165],[34671,-8018],[9964,5364],[6811,20472],[-6803,9809],[-17188,10690],[-12689,3404],[-11904,16628],[-5367,25075],[7489,37446],[11975,10260],[16768,-4287],[5168,-7332],[473,-11095],[-5992,-4632],[2627,-10062],[9287,-8890],[17909,-4492],[9728,4173],[9743,11666],[-350,28835],[3883,7324],[26138,11470],[15185,4295],[13793,-5412],[15041,882],[40380,-15773],[22143,-30216],[3052,-33412],[7795,-13298],[12338,1379],[8053,6283],[4065,20021],[10961,367],[17195,-6086],[8098,-10317],[4652,-26098],[-6700,-12078],[-20209,-3930],[-11166,4465],[-16784,-798],[-9667,-4051],[123,-13607],[9339,-7014],[29024,-8347],[12551,-12219],[4597,-9593],[-3204,-11647],[4125,-28931],[11045,-33216],[4659,-3180],[10124,-28938],[-4401,-24459],[5657,-6704],[16083,9190],[15848,-12997],[12018,-722],[20688,4492],[11966,-7841],[27585,-3553],[14456,-16403],[9819,-5157],[1964,-7531],[-9142,-12594],[4931,-7839],[13360,-356],[11866,4642],[13793,-18671],[-1910,-5422],[-20401,-10887],[-4162,-20172],[8714,-18501],[24366,5916],[3211,9078],[13214,-8505],[22372,-6152],[678,-18447],[6126,-17085],[16015,-19759],[10483,-16664],[334,-10016],[-14539,-12706],[-11150,-25903],[-3448,-18726],[1819,-16975],[9666,-13878],[290,-10887],[8098,-18663],[19084,-19909],[16852,-11674],[36946,-3771],[8329,8974],[-5214,16666],[-8282,6244],[-7270,16195],[4256,12585],[-10383,17547],[-29435,-619],[-4499,6349],[8373,24813],[17287,12689],[5069,-3302],[17142,5834],[17424,-9134],[19577,-573],[4300,-19862],[7611,1134],[5268,19853],[9721,10476],[7467,-3976],[6888,-12069],[1767,-25536],[-1341,-21203],[10238,-14509],[-9241,-19749],[-4643,-3976],[4734,-22028],[4735,-6555],[5261,-18831],[91,-19918],[5602,-9331],[11007,-7746],[25842,-3516],[13396,3254],[2733,5513],[25650,-7896],[12111,507],[13352,7061],[9385,18212],[7763,-7558],[-6340,-32579],[11151,-4802],[25896,16656],[14408,5514],[9668,15107],[3744,17537],[-7414,10278],[-4117,-2016],[-3684,16307],[12734,-1912],[198,11966],[-6508,4126],[5313,6293],[12490,-160],[13641,-7952],[-1636,-11347],[-6653,-1754],[8609,-15633],[17332,16401],[11584,-168],[1286,-10569],[-10055,-5570],[-2206,-12229],[6263,-18061],[15270,-3920],[1149,5570],[17135,6434],[5746,11759],[16136,10052],[16891,-1922],[6699,-5260],[5686,-13982],[8419,-6125],[13031,-17788],[-5595,-11873],[-10870,826],[-2817,-8206],[5847,-14911],[13784,-9228],[8663,4905],[4270,-25329],[14120,-14799],[8814,-25845],[5039,-24597],[-1233,-20078],[-5405,-14189],[-12718,-14244],[-6075,-11657],[-25363,1941],[-15367,5299],[-9333,-8610],[374,-24250],[18893,-15671],[13167,-20377],[13206,-5355],[2018,-8664],[-7269,-15839],[6561,-9341],[-19752,-6883],[-14257,4004],[-27106,-9771],[-3402,-10269],[-16799,-12219],[-11912,-3349],[-9675,-8036]],[[64787102,33802911],[-22957,-12406],[-34245,-51870],[-37298,-54043],[-53616,-80592],[-52187,-75078],[-43386,-67520],[-11601,-16411],[-95793,-142270],[-48654,-74816],[-29778,-48633],[-53191,-78896],[-53283,-80647],[-53281,-78775],[-139302,-209113],[-61968,-92371],[-41834,-63759],[-43866,-65175],[-39582,-60956],[-94384,-140658],[-6455,-10597],[-93267,-140384],[-55078,-84015],[-46295,-66958],[-20157,-27392],[-319845,-472375],[-36870,-53679],[-214719,-316480],[-202145,-302255],[-74223,-101363]],[[62707842,30733424],[-83272,34190],[-95703,39959],[-36155,16345],[-492456,208581],[-636282,268410],[-286871,121226],[-28482,13101],[-328721,138237],[-595176,250414],[-27434,10522],[-394363,166615],[-20194,10193]],[[59682733,32011217],[-137,121723],[380,105810],[-594,67500],[-365,180522],[-525,108022],[2543,98335],[-1218,396567],[-983,87850],[-921,510562],[-1293,313629],[-2384,349893],[-2100,610257],[-1522,483171],[441,246541],[-3182,228301],[-1757,217677]],[[32940519,54523760],[135085,-20],[87695,422],[10938,-880]],[[33174237,54523282],[367890,2710],[408196,186],[408422,461],[133334,-554],[401909,169],[413789,299],[130022,-449],[413599,-554],[273872,-1116],[139782,-375],[132870,169],[289139,-440],[380907,-103]],[[37065007,49163972],[-395689,-309],[-19075,263],[-241232,-84],[-302550,13785],[-135399,2326],[-10175,863],[-241521,3807],[-32175,1275],[-216828,-676],[-112045,3030],[0,1518],[-154205,2824],[-306960,4445],[-451984,6864],[-38341,1370],[-572341,8439],[-379140,4943],[-386662,5598]],[[62191455,62604678],[36460,-159],[323566,159],[88845,-873],[161217,-56],[29746,-824],[448742,609],[214529,-628],[134036,-844],[91881,638],[504536,-2879],[266517,-2082],[134645,-1642],[15186,601],[111892,-1050],[63817,131],[36924,-1163],[92551,188],[73827,-1210],[159854,-1717],[106403,-450]],[[65286629,62591427],[38249,-107759],[274,-5101],[164666,-460157],[161856,-452355],[93586,-254578],[12529,-29333],[41171,-90786],[31437,-91171],[256546,-738872],[7049,-17124],[39846,-116415],[53885,-146012],[34542,-98833]],[[66222265,59982931],[39207,-110000],[65759,-145000],[270139,-591829],[48678,-105781],[12909,-31379],[36917,-76633],[61769,-136766],[79352,-173076]],[[66836995,58612467],[-144416,-87729],[-490189,-297564],[-281291,-170808],[-154298,-95006]],[[65766801,57961360],[-103452,-63589],[-49750,-31359],[-120448,-71506],[-4292,-966],[-264821,-161317],[-311396,-189655],[-157022,-96431],[-450698,-276137],[-82725,-50434]],[[64222197,57019966],[-238285,429136],[-87688,158062],[-385679,-242125],[-195005,-122351],[-285257,514697],[-17895,37145],[-60810,107273],[-151633,265614],[-17440,22685],[-12041,24626],[-12217,12802],[-5062,13635],[-12589,17123],[-181441,313143],[-209590,362880],[-28612,52018],[-292374,520212],[-28469,47650],[-62103,109954],[-201970,358277],[-48532,86725],[-14630,30270],[-59769,105791]],[[34086686,87645087],[319671,1227],[16205,-1275],[682461,-533],[245532,-123],[7299,338],[198956,347],[137384,-731],[120349,-1877],[68627,0],[51860,948],[20368,-948],[123188,0],[10786,939],[66984,-1877],[112904,39],[43144,-975],[102651,0],[16852,936],[180826,66],[40394,1632],[45206,-760],[153126,0],[17172,873],[248410,-206],[69981,3075],[136091,-1791],[134020,432],[268824,-2007],[270741,779],[134872,-488],[99936,872]],[[38183430,83560290],[-246317,-330],[-602058,-797],[-74175,3470],[-341357,929],[-192036,723],[-265703,543],[-151306,665],[-114489,-233],[-161862,581],[-295419,10],[-365805,-488]],[[35372903,83565363],[-75737,-1285],[-137514,244],[-130381,-1510],[-69245,-206],[-108254,-1622],[-445447,-601],[-330051,-2269]],[[34076274,83558114],[-69,24803],[2968,855149],[161,113029],[6355,204014],[814,535797],[-14,228564],[403,407829],[-2383,142092],[1446,744817],[404,285291],[-966,324817],[-373,7962],[1666,212809]],[[88754633,61270984],[387498,-5035],[152645,-3658],[140217,-2664],[185917,10062],[159898,414],[-37,1987],[84916,-909],[372214,-2260],[54836,-863],[426218,-2016],[303427,1735],[117410,-206],[70745,1265],[13389,-2616],[49659,-14977],[23519,-2718],[17036,2607],[47831,16036],[13937,3404],[20485,-2223],[53471,-32165],[31688,-13279],[84619,-20997],[18078,-2954],[56968,-27422],[8783,-2502],[10596,7717],[21777,-6818],[9583,9678],[-631,7353],[9087,-386],[19341,19300],[11563,22112],[3006,-4575],[19479,-873],[137,3874],[16138,44290],[76383,226248]],[[92511733,61489644],[783,-130013],[-418,-67912],[-6790,-14902],[1447,-16759],[-4088,-9978],[541,-91263],[-3220,-22197],[-27936,-63581],[-24129,-51587],[-6530,-20782],[-9486,-43963],[-4193,-8795],[-36848,-49291],[-16138,-46935],[-6849,-7145],[-5960,-28575],[1795,-63525],[-25369,-33103],[-17423,-31124],[-20575,-29240],[-8450,-18128],[-10008,-36086],[-13885,-33460],[-14606,-46381],[-3837,-16028],[3852,-21925],[2656,-34800],[-5480,-41066],[-8861,-22862],[-19865,-30628],[-6196,-14816],[-14578,-17397],[-8905,-6207],[-34861,-38956],[-119117,-121545],[-16708,-19242],[-5929,-10364],[-13571,-41187],[-20416,-48191],[-19143,-63545],[-67836,-152256],[-30729,-55536],[-4026,-21943],[-7337,-23155],[-11966,-23538],[-3836,-17874],[-640,-44441],[-2626,-26894],[6463,-58547],[-2360,-27288],[2459,-33328],[-1630,-88283],[-4446,-23848],[-2968,-30506],[3867,-61612],[-11243,-55449],[-2625,-36077],[-17729,-37802],[-27440,-74094],[-1636,-10934],[-1172,-58733],[-4308,-12454],[2687,-17827],[-3836,-16879],[4261,-2861],[-17833,-38646],[-15080,-42697],[-12581,-44525],[-10443,-60290],[-3777,-62267],[-10808,-72885],[-13807,-64227],[-11052,-34988],[-2231,-92503],[175,-122774],[2413,-16449],[3281,-293935],[3165,-131945],[-980,-33741],[639,-56942],[3211,-106888],[458,-79832],[1909,-66329],[197403,3067],[327785,2747],[148809,1603]],[[92362443,57549555],[312,-298240],[-616,-149444],[1188,-19843],[3638,-8702],[6463,-103],[5502,-9388],[8610,2944],[12247,-5353],[-5184,-9510],[11995,4521],[1325,-9463],[7537,421],[-123,-16419],[9226,-15154],[-5040,-10138],[2139,-10465],[7893,-4700],[5604,14387],[3181,-12427],[19235,1416],[-4757,-8871],[9133,-10615],[7849,1398],[3691,-13204],[4019,3403],[18162,-8233],[2999,-10776],[3622,9388],[17918,-12107],[-1612,-9855],[-7361,-985],[2557,-9951],[12468,-15350],[9317,4641],[6530,-18306],[6532,-6592],[10351,-413],[2154,7324],[10010,-3657],[6690,-13767],[18444,-1800],[-11722,-11450],[6340,-15360],[-1514,-10682],[15352,2636],[4910,-7785],[-1363,-20105],[-5647,7475],[-3828,-8254],[1871,-16551],[8289,-2213],[-1072,-13513],[7703,-9631],[5198,7990],[14380,-19947],[-7598,-9491],[2702,-5213],[-10207,-7577],[22965,-21345],[2063,-13597],[9072,2419],[-7945,-11647],[15208,-826],[16289,-7417],[2999,-21915],[9263,1500],[12316,-4333],[5793,-8814],[3828,-20210],[14646,-17545],[836,-9331],[11478,-15418],[-4946,-18361],[14278,-22995],[-7505,-8664],[12605,-10617],[-7595,-4951],[1080,-10259],[10245,4538],[-6172,-10981],[-6767,611],[10937,-17162],[-18337,-9547],[-4124,-13663],[-11091,-647],[-258,-10532],[12620,-14290],[288,-11676],[7650,3328],[-98,-12903],[7702,3376],[2680,-12809],[11615,7530],[12035,-9453],[-3912,-4389],[3143,-12032],[5473,5495],[-601,-12116],[20072,-11853],[5441,-10400],[6295,-28762]],[[92811649,56333233],[-331757,-975],[-32000,1492],[-143991,-789],[-128478,29],[-308343,-844],[-370684,-984],[-139753,-188],[-688244,-2194],[-123493,-826],[-257224,2954],[-67287,-1116],[-208737,1903],[-414666,4437],[-3562,3168],[-178624,2532],[-153231,1361],[-142501,1988]],[[89119074,56345181],[-361594,5982],[-473,179866],[-1194,91883],[1011,53631],[-1262,96450],[-175,115694],[-1333,67736],[-15,171303],[1194,47489],[-593,285148],[168,232476],[-472,102245],[-1059,471484],[-1247,55573],[1423,67238],[250,214189],[3784,93393],[-1598,142195],[1978,67238],[-1613,60852],[-564,120308]],[[88755690,59087554],[53,151994],[-951,301589],[-1164,572108],[1310,26163],[-769,222019],[-1043,65457],[-236,300068],[-2413,480235],[4156,63797]],[[67586241,54721949],[122778,76710],[313201,193312],[147059,91564],[263792,-473415],[184835,-331748],[42610,-75998],[0,-1538],[53396,-98643],[72091,-127397],[27259,-47134]],[[66515507,49066350],[-63156,116238],[-42396,76484],[-40465,75397],[-41004,70025],[-39376,71185],[-27409,53153],[-89439,155963],[-120402,210755],[-113178,204528],[-61092,108492],[-71558,129188],[-38387,68410],[-203659,355613],[-301844,540440],[-216986,388362],[-2847,5739],[-88069,157048],[-45982,80573],[-53694,96527],[-172016,303172],[-244329,430757]],[[64438219,52764399],[416330,262230],[38919,22751],[325540,200666],[432993,267069],[179843,112823],[255441,159065],[37221,22853],[499909,311605],[133115,83030],[10923,5027],[59020,36255],[47239,30581],[306311,190246],[46410,28527],[101053,63853],[257755,160969]],[[60890250,36648402],[44910,47262],[113568,112094],[39085,39348],[123485,122745],[38889,39472],[61891,60729],[150849,151452],[54836,53837],[29829,31416],[181655,183213],[271000,275453],[0,-3029],[102195,105453],[132863,139511],[57362,60966],[120570,126290],[109503,115336],[134241,142505]],[[62656981,38452455],[294756,311051],[237419,253490],[37046,37941],[108869,116201],[208053,223189]],[[63543124,39394327],[276618,-239986],[130837,-114463],[258488,-227431],[139401,-121920],[506317,-444402],[54478,-46542],[381735,-331728],[6981,-5767],[216759,-190266],[61305,-54156],[218639,-825494],[19243,-75660]],[[65813925,36716512],[-24151,-20828],[-51204,-48295],[-21193,-16730],[-70346,-63329],[-273924,-259876],[-157570,-150972],[-7627,-6564],[-79086,-75905],[-48015,-26313],[-78851,-41731],[-40600,-22882],[-61625,-33093],[-220847,-114110],[-175823,-90139],[-98276,-49749],[-67272,-34799],[-66619,-33610],[-200515,-91096],[-108071,-48456],[-194556,-93008],[-78979,-42133],[-86965,-43204],[-53397,-24476],[-35934,-17498],[-70805,-32616]],[[72382542,19385926],[-5809,12978],[-27287,43063],[-3563,10991],[-7771,9003],[-47664,81417],[-43966,73249],[-48084,82599],[-203408,343790],[-143086,242291],[-51981,86802],[-92748,156486],[-62378,106259],[-8639,17423],[-16654,25237],[-104373,174922],[-44095,73100],[-25415,43409],[-10786,24036]],[[74821396,20496673],[-215344,-211366],[-117869,-141256],[-118612,-143602],[-254834,-335994],[-226852,-308453],[-159459,-242857],[-188665,-670686]],[[73539761,18442459],[-121666,86266],[-277926,186316],[-136601,89736],[-80151,88469],[61524,127163],[-32015,92736],[-112424,331992],[-18786,56782],[-130145,385200],[-171683,-301232],[-53274,-113301],[-58772,-127717],[-25300,41057]],[[62606377,70886693],[-3150,349425],[-2581,312663]],[[65968839,71551895],[-578,-190388],[212,-122652],[367845,1089],[94783,84]],[[66431101,71240028],[-413,-98560],[877,-5955],[-1166,-69320],[-1521,-377229],[-77,-143349],[-1468,-226116],[-1271,-118957],[411,-10757],[-2406,-135452],[1112,-117174],[-1119,-11067],[471,-114820],[2672,-198836],[-548,-103588],[-1987,-221529],[-1683,-227289],[-3364,-375420],[-2206,-150026],[30,-103801],[-2421,-291386],[-1013,-69433],[-3090,-297246],[-457,-84615],[-4764,-439367],[-884,-65419]],[[65381403,67202522],[-75903,498],[-359047,6010],[-92132,3340],[-251576,1574],[-54759,1080],[-486959,4284],[-124971,1454],[-501583,8882],[-6842,-180],[-367525,6725],[-120753,5157],[-283979,3330],[-93806,807]],[[62561568,67245483],[1932,145748],[-175,17114],[10802,936275],[2147,234266],[1827,53152],[4124,206649],[6669,252224],[4109,171510],[6837,254342],[2336,48323],[2497,136747],[-290,445350],[838,485841],[2908,55883],[-404,91931],[-1348,105855]],[[46472885,95834281],[163126,-1370],[111984,-66],[28262,-861],[51707,2006],[241436,-1473],[235659,882],[77268,-2148],[345017,-1846],[63002,-2787],[345741,0],[51531,469],[295639,-271],[195690,488],[212772,-591],[339650,-1369],[175558,-1031],[223434,-985],[23977,1134],[443330,1134],[160373,2251],[323826,-1200]],[[50581867,95826647],[54,-4093969]],[[50581921,91732678],[-68004,929],[-39445,-656],[-147156,-188],[-225202,1022],[-358208,713],[-83546,469],[-184341,140],[-281589,892],[-313246,-85],[-269006,469],[-185932,38],[-730255,-985],[-15276,1613],[-286080,2963],[-227500,-3011],[-145795,178],[-40967,564],[-162000,-1952],[-4719,1286],[-63741,38],[-5624,-1688],[-114488,93],[-5785,-826],[-150652,-318]],[[46473364,91734376],[1393,18698],[-1675,253415],[479,6444],[-4293,358924],[-1331,60673],[1027,35496],[-2101,5317],[867,80554],[-1262,193932],[837,74994],[-488,125334],[-1994,12332],[846,213662],[494,224419],[647,100530],[84,317080],[3996,310009],[465,6508],[4962,420348],[1743,114859],[221,140479],[-4376,585707],[-633,184010],[-387,256181]],[[57326672,62621295],[-71498,225],[-12619,1483],[-259812,271],[-173982,-403],[-133334,787],[-311274,395],[-52514,346],[-20620,1201],[-145368,-226],[-83151,-636],[-460283,-1689],[-7649,225],[-255047,-713],[-165531,1539],[-42482,-1398],[-229974,188],[-120097,-666],[-149480,-28],[-35607,365],[-184440,19],[-62630,-1537],[-553099,-760],[-22835,-423],[-235286,-36]],[[53538060,62619824],[-473,218838],[952,71468],[-503,88480],[-45,269843],[-342,78437],[-442,274093],[1119,34763],[153,135414],[-481,219356],[207,71364],[-808,370692],[762,247554],[-351,127809],[1851,39],[-2909,1129980],[-502,310394],[144,106279],[884,147147],[974,245903]],[[53538250,66767677],[371505,93],[250245,1191],[449549,-694]],[[54609549,66768267],[156033,-113],[92642,-740],[150347,271],[330943,47],[49522,573],[309356,1078],[49636,-618],[184295,-442],[358681,554],[147766,-479],[443902,-3319],[359830,-2533],[40120,6434],[183169,-601]],[[57465791,66768379],[-228,-257577],[389,-34051],[-84,-333436],[548,-125325],[-473,-145448],[350,-38579],[130,-226661],[342,-4773],[1059,-774575],[-1453,-75228],[-291,-733584],[-137,-16569],[-478,-691084],[235,-29418],[-168,-661179]],[[86150894,47098646],[16539,10653],[9157,11346],[6729,33273],[13771,22123],[31733,15612],[16730,15794],[8685,18305],[-60,8468],[-6799,18137],[-9377,12575],[-5656,24110],[3655,8411],[29785,29596],[8517,17979],[4079,24007],[-959,21784],[-6675,13504],[-11288,10297],[-8411,19776],[4970,16141],[5868,7521],[41979,24522],[49911,17068],[18124,2748],[46027,430],[24024,1857],[27774,-9696],[41195,-4849],[27540,13382],[32456,10692],[55276,12387],[8884,657],[65879,11834],[21541,1922],[21115,-6385],[25355,-18991],[34542,-52422],[7696,-15735],[20582,-26632],[31473,-34202],[23711,-30486],[144,-6884],[-8966,-17179],[-32303,-71206],[-11868,-30450],[-13449,-25732],[-14211,-16570],[-13124,-20951],[7582,-21924],[22935,-21692],[23307,-38429],[875,-32017],[19692,-84248],[9376,-27130],[8397,-15634],[61579,-45285],[48258,-24381],[21640,-4802],[33713,-3742],[12528,-4033],[23346,-20714],[8943,-11929],[17286,-33010],[7217,-7614]],[[87119868,46770603],[11173,-3049],[43456,-3760],[15155,-19233],[13495,-27956],[14182,-7211],[43965,8281],[9332,-4651],[8700,-41881],[21426,-34614],[18087,-25188],[30111,-22985],[18976,-19582],[49842,-16560],[31947,-7981],[22043,-19449],[18726,-24607],[19813,-30056],[10732,-7081],[49888,-26455],[22431,-44590],[10100,-3067],[27510,-1031],[8335,-5570],[5595,-13684],[-22418,-24916],[-13251,-9668],[-17729,-8393],[-8845,-8655],[2087,-23305],[19471,-34913],[11858,-15848],[24540,-58818],[3518,-24439],[-1918,-17723],[-6844,-28874],[-12414,-39958],[-11692,-19104],[-9682,-10436],[-18277,-11789],[-41666,-16391],[-9613,-15652],[53,-16936],[9500,-33076],[16076,-46842],[3531,-21268],[-3577,-25188],[-5991,-17022],[-20491,-26772],[-6987,-24515],[-23,-22609],[4811,-19899],[7726,-13776],[37814,-43691],[14266,-18015],[9210,-20743],[15916,-54261],[1757,-18304],[-2641,-11724],[115,-20658],[8943,-6134],[11723,2261],[27859,12313],[28878,9959],[45093,7493],[25530,-3649],[39786,-11627],[10162,-15334],[-1332,-5298],[-26900,-21831],[-14782,-20068],[-7407,-20660],[-4490,-25413],[-20401,-47976],[-1529,-17313],[4194,-7248],[18085,-9715],[35455,-7484],[9097,-16992],[-5002,-18691],[-24114,-29005],[-13206,-24756],[3860,-19731],[14484,-18943],[21002,-12660],[15741,-6396],[31756,-2119],[23939,7304],[21602,11010],[25286,7989],[21723,18110],[8131,14759],[2177,12707],[2968,48850],[7216,10146],[12467,2139],[34322,-8169],[25607,-16064],[9141,-590],[40571,30093],[25431,8964],[23884,-637],[16929,8121],[15787,13561],[5443,10746],[14021,13100],[27128,15925],[18633,1013],[8022,-10345],[1440,-15350],[-13344,-40625],[4339,-15643],[6880,-1800],[41318,890],[11912,1915],[22240,9555],[11608,14836],[15088,11291],[12255,3948],[22971,-6771],[10360,-7849],[11432,-22591],[-10824,-17705],[-34213,-16233],[-20529,-25742],[2290,-15643],[15665,-8289],[29419,-3668],[30980,-11374],[20271,-4662],[29982,-2606],[12766,-6790],[7100,-16241],[1447,-29494],[13397,-3910],[51623,34612],[10847,-364],[10641,-13749],[8875,-19796],[-1896,-20876],[-14371,-22319],[-14720,-13250],[-9782,-3414],[-14309,2402],[-20918,9350],[-17088,13363],[-19836,-2139],[-5451,-7953],[-623,-12247],[3348,-23584],[13923,-32185],[5138,-39545],[5890,-17227],[16381,-12914],[19921,-7464],[7102,-20857],[-7985,-29278],[3805,-17592],[15696,0],[24547,10175],[12461,-4341],[829,-14893],[-2115,-57533],[3159,-63187],[3112,-19073],[10840,-20192],[-2123,-18763],[-10498,-8854],[-32365,-7352],[-11409,-10072],[-7087,-22403],[-5808,-8178],[-16213,-5683],[-20339,2786],[-13168,-3414],[-7931,-8251],[-10908,-20209],[-7124,-4755],[-11791,1341],[-15786,9293],[-12180,1735],[-5191,-7025],[5542,-21342],[16008,-32147],[-3045,-9163],[-45367,-22131],[-3470,-6039],[2405,-18849],[35029,-50528],[17210,-16636],[19548,-6874],[26412,-4371],[66763,2918],[11014,3357],[28285,14067],[18762,5682],[20682,844],[49057,-5054],[19944,-4820],[47427,-22713],[21214,-4989],[114718,6985],[34944,-2841],[32579,-16082],[27182,-24326],[57705,-11844],[7138,-4792],[31300,-42979],[19007,-38532],[18907,-21954],[22745,-13936],[22697,-3713],[52932,3741],[54653,16084],[26261,4829],[23581,7859],[24068,4303],[28559,-7446],[22819,-12734],[20606,-17799],[16609,-5673],[27296,-4193],[27958,4277],[15124,-4754],[8541,-6847],[21990,-24850],[23238,-12594],[25645,-10785],[8532,-7830],[14637,-26333],[6707,-7296],[82457,3583],[33211,3873],[20072,-2617],[41331,-20997],[23475,319],[14507,6790],[31056,9846],[22905,-5730],[43295,-23360],[28544,-13476],[5403,-19702],[-27820,-84306],[-10969,-8159],[-23139,-9791],[-63680,-23106],[-29359,-8046],[-19051,-8741],[-15787,-13803],[-14835,-44750],[-14173,-17847],[-11113,-7925],[-29427,-12893],[-16639,-13524],[-10771,-16785],[-1942,-18024],[3829,-33113],[5823,-23267],[3525,-63983],[3105,-9145],[8685,-4989],[27684,-3993],[54743,8374],[23025,-7100],[8373,-6076]],[[89789805,43666446],[12879,-9340],[18780,-20173],[20048,-27644],[-232439,-131317],[-15292,-7119],[-341966,-191126],[-96888,-53632],[-57773,-31115],[-53214,-26784],[-88296,-50752],[-122565,-64968],[-191093,-104834],[-49879,-26268],[897,-976],[-136675,-65897],[-59822,-27007],[-13449,-7147],[-205440,-118215],[-91570,-53801],[-63108,-34284],[-126836,-62821],[-91911,-51082],[-53952,-28405],[-117693,-64096],[-42191,-25611],[-209537,-108905]],[[87380820,42273127],[-23801,-15022],[-107585,-54560],[-76544,-44928],[-40310,-21148],[-87809,-42152],[-74223,-37221],[-45480,-24345],[-5495,6311],[9210,10578],[-2276,16394],[-6851,5204],[-1453,12632],[-6036,12987],[15237,20782],[5977,13156],[13311,9848],[769,10569],[6516,2325],[-2519,19075],[12399,12584],[473,15830],[16845,-2672],[18373,9133],[13269,56],[21617,5009],[9842,12321],[1004,20060],[8054,13869],[8882,-3919],[10992,30017],[8061,6911],[9842,564],[6462,7895],[1538,23923],[-6897,14696],[-9316,815],[-11052,8712],[-35037,11543],[-12788,-10831],[-11144,3246],[1446,7221],[-15778,1997],[-14196,16186],[-2954,25320],[-17865,24945],[-8061,4125],[-31656,8028],[-8017,7784],[329,27374],[-8405,9227],[-3667,15567],[-7484,4585],[-11302,15924],[-17957,5871],[1439,14235],[-6273,6902],[-11805,40042],[-9514,8966],[-23452,2204],[-18976,6536],[-24138,15202],[-13716,3601],[-16845,-10],[-5244,10551],[-17964,-6846],[-19500,525],[-30022,8365],[-12164,-3911],[-29343,10531],[-10275,8768],[-20658,8722],[-3662,11347],[-15733,17227],[-6515,619],[-22106,12285],[-15924,25112],[-16508,4952],[-20803,10935],[-43206,684],[-18678,9847],[-9219,9340],[-33598,20209],[-5936,9078],[-25348,17836],[-26739,-46],[-14919,16241],[-23803,15475],[-3326,15876],[-15306,27635],[-24815,18559],[-99,15211],[-16663,32842],[-4970,17836],[-14538,17368],[-1447,5625],[-28156,33245],[-27143,43973],[-24396,29182],[-7344,20717],[-3723,23715],[5884,45679],[-15795,30057],[-15656,12425],[-12460,19994],[-14699,36451],[-4544,18192],[-11791,33714],[-3730,18765],[678,13100],[-7155,20922],[-28856,34641],[-13679,19890],[-6280,13250],[-2230,19638],[-6379,9641],[-8411,2682],[-5023,8495],[3951,32279],[-7400,15567],[-10207,29024],[-6583,30927],[-1508,26709],[5154,29745],[-3623,14742],[-10308,21081],[-1498,8610],[-14455,15819],[273,13177],[-18122,27823]],[[85909785,43767875],[2282,17115],[17501,213278],[44536,521225],[9445,114258],[14045,179828],[8752,87391],[13290,259455],[9462,178168],[9020,153081],[7200,129367],[15803,259060],[10313,160679],[4468,32305],[37381,510666],[37611,514895]],[[58804461,40334879],[147293,56],[85556,844],[108407,160],[18931,627],[150788,-2231],[415411,-2429],[152836,-526],[193223,2654],[20309,-112],[4764,3141],[624360,2588],[322372,1370],[5367,-554],[279382,638]],[[61333460,40341105],[88455,-128747],[45138,-63778],[171583,-246129],[21786,-29793],[95838,-142437],[20560,-23745],[224021,-320081],[91935,-129011],[155843,-217367],[221364,-318562],[186998,-269000]],[[79696582,35603955],[14464,-10100],[24707,-32738],[17285,-6650],[19822,-15266],[14941,-516],[9630,9124],[29214,15811],[23656,-2738],[16518,-13504],[35768,-21822],[32928,-42256],[16707,-12228],[12111,-722],[33331,3592],[13223,6273],[16525,16233],[8524,4782],[17522,-2325],[9287,-9444],[4780,-15519],[10772,-8197],[15222,-5823],[12545,-1125],[19342,8665],[2968,12322],[18611,25985],[20110,4024],[30126,-11638],[10779,-10251],[13845,-27729],[28332,-25404],[6340,0],[26001,-24064],[25569,-5917],[7664,-12736],[5847,-34584],[-4119,-23913],[1492,-8712],[24989,-18906],[11114,-3461]],[[82191452,32122784],[13670,-14405],[18276,-5776],[8205,-5871],[3295,-10361],[-69365,-78521],[-67341,-72556],[-106177,-118093],[-1300,-2832]],[[81990715,31814369],[-9149,-11206],[-67410,-73945],[-4545,-6948],[-83836,-92933],[-26915,-31060],[-99431,-111304],[-402661,-449430],[-251903,-173234],[-14797,-8797],[-77533,-52797],[-152448,-102320],[-326551,-213907],[-145423,-95933],[-203196,-130979],[-46438,-31500],[-169125,-109176],[-44452,-30057],[-29474,-18454],[-110987,-73232],[-158247,-102845],[-44773,-29756],[-227819,-148411],[-11143,-8104],[-69305,-45351],[-86081,-58338],[-77944,-50837],[-40959,-22938],[-241247,-156758],[-3364,-4727],[-85091,-53059]],[[78678468,29316033],[-162381,173816],[-7643,9304],[-54835,56144],[-84247,90701],[-155484,164421],[-38219,39845],[-416384,441637],[-13292,15117],[-332928,351815],[-104351,109578],[-60337,66480],[-24275,24034],[-212344,226784],[-307612,327329],[-256371,273014],[-84940,89792],[-90221,82319],[-114665,125961]],[[76157939,31984124],[114665,76402],[61563,37763],[97597,54409],[254955,174868],[537191,368592],[27753,20388],[50305,34079],[178778,122350],[252670,173668],[171524,118186],[56921,39904],[148405,102891],[60986,40653],[101685,60197],[70493,47320],[30272,12341],[4535,6940],[8953,42706],[114182,362047],[40861,132863],[104759,338734],[853,0],[42086,133924],[85526,95372],[49688,54428],[41058,46514],[194732,215940],[109776,123009],[34337,36226],[83172,92623],[25127,30038],[152173,168575],[6852,10596],[100658,109006],[45335,49985],[73437,82204],[4780,4090]],[[38673633,79479506],[259438,-1595],[231374,-1115],[4278,825],[214902,-20]],[[42657402,79479047],[-144,-584929],[935,-100275],[-67,-138791],[502,-326722],[-214,-265137],[-464,-50508],[-31,-159751],[-486,-179499],[-62,-541761],[154,-284155],[-693,-278680],[501,-19101],[632,-212951],[-2687,-135724],[2086,-45725],[663,-141792],[60,-274421],[-228,-361568],[2025,-388755]],[[69046113,27909456],[-119864,-104731],[-198946,-174952],[-40221,-34782],[-292922,-257466],[-53283,-45519],[-47444,-41984],[-254163,-222103],[-32677,-29363],[-344059,-302488],[-38782,-34698],[-108383,-94968],[-21222,-19281]],[[67494147,26547121],[-13944,16843],[-29533,7173],[-7643,15794],[2094,5054],[-15247,10888],[-1560,12744],[-6265,4697],[-14439,-2213],[-15148,12699],[-13434,-9594],[-12005,-23717],[-116345,-14975],[-112623,-13692],[-4050,4511],[-4223,18521],[6362,6405],[-5176,13568],[-17095,21561],[-12346,7999],[-5938,-4492],[-3326,-14760],[-11440,-5262],[-10634,2889],[2275,13513],[-9925,9386],[-1385,18166],[-15376,3985],[-1050,-8561],[-8693,-179],[-906,11197],[-6979,4079],[-8169,-7173],[-11820,10521],[-8928,-1144],[-19098,14443],[-36612,7164],[-12545,10934],[-16997,3086],[-16243,-9856],[-11296,816],[-16678,11347],[-12301,4070],[-14727,11394],[-12780,15370],[-15292,7474],[-21892,-1144],[-16388,7108],[-5655,8928],[-16915,1884],[-12246,16411],[-15148,5065],[2907,17441],[-8973,208],[-3951,-9594],[-844,13260],[-7887,5167],[-13875,-10213],[-4415,2636],[2474,10832],[-5504,15378],[-10634,-4744],[-2755,8205],[-20277,9452],[-5412,-4792],[-13732,3049],[-3898,-5214],[-9399,7540],[3151,18305],[8738,6911],[-9630,18417],[-11303,1294],[-4278,-7266],[-11973,6254],[-8449,9500],[-2702,22956],[-9728,20079],[-11258,5044],[4324,3470],[-14302,17340],[-15057,-1547],[-5085,5832],[-17239,-1537],[-17431,11300],[-11159,17751],[-11638,12022],[-12445,8104],[-8214,10325],[-14203,-12435],[-8883,7821],[-58573,-25592],[-58710,-23567],[-100246,-41591],[-93038,-36919],[-37518,-15868],[-79558,-31546],[-92025,-37304],[-94204,-40175],[-49209,-18614]],[[65768400,26755421],[-43601,54868],[-352658,447797],[-46715,60186],[-231838,302640],[-33560,41430]],[[65060028,27662342],[-45343,55976],[-159938,199924],[-110110,147896],[-97484,132189],[-6340,10748],[-18702,20537],[-94098,129760],[-12765,15811],[-48798,54072],[-17020,15529],[-44452,45708],[-50375,66338]],[[64354603,28556830],[66473,57935],[252749,221043],[62355,55038],[118567,103212],[72472,72770],[225331,210962],[85478,75980],[14683,14412],[134736,121237],[55894,51287],[94172,85159],[265002,241720],[76604,68654],[265034,239686],[84704,77311],[35782,30891],[157121,142795],[169309,152219],[278832,252805],[3845,2861],[317577,287231],[32310,28630],[125527,113864],[87489,78230],[98618,89829],[173951,157556],[14409,11665],[133121,120598],[18648,17368]],[[78768712,65686993],[139714,-2503],[215891,-5298],[2657,2137],[118568,263],[66702,-1134],[42329,-1941],[108886,-947],[144394,-3077],[228992,-4061],[241732,-5814],[63962,-2410],[24472,460],[99059,-1848],[40952,-1359],[48097,722],[92140,-3517]],[[80447259,65656666],[1387,-129319],[-39,-120973],[822,-39611],[-555,-49994],[844,-97677],[838,-380485],[1872,-451398],[-214,-133520],[1882,-395028],[-990,-30496],[1019,-84972],[-906,-176620],[800,-250480],[2862,-769106],[-2922,-63291],[15,-333257],[639,-421689],[319,-417320],[-807,-165310]],[[80454125,61146120],[-126993,496],[-66688,-206],[-149478,497],[-181739,2231],[-386355,3470],[-38,-20593],[-4187,-11723],[-85852,3076],[-57576,-459],[-125556,-3009],[-59105,1303],[-67684,328],[-11973,1031],[289,34914],[-86735,-244],[-38805,-1276],[-37411,985],[-248463,2495],[-192751,-723],[-184799,234],[-166749,-5007],[-47323,1603],[-110537,432],[-98557,-657],[-328767,1361]],[[77590293,61156679],[-1103,7512],[-13884,11056],[-3631,8468],[11860,11431],[13319,3311],[9577,13344],[-11540,17798],[-14987,4015],[-1286,13203],[8966,13111],[1971,10672],[8922,1388],[5099,-9040],[-7947,-13832],[14523,-17218],[13809,356],[6059,12491],[-8480,13541],[-1576,9904],[14105,-13832],[8677,-1473],[10672,6040],[-99,11271],[-27159,18747],[-7741,29951],[3319,2082],[14614,-10614],[10618,10559],[-2786,15238],[5153,5449],[23315,4707],[16647,-7165],[12050,2861],[-137,18653],[-10024,20274],[6499,17846],[13290,9885],[4963,11225],[-7155,8909],[-15345,8092],[4780,9115],[19212,-11290],[7293,8665],[-7293,24888],[-14249,14039],[-6196,37416],[-11995,24260],[6926,17209],[15444,17846],[2269,16777],[-10277,11929],[678,7088],[18938,14059],[7140,12556],[-1706,10427],[-10839,6303],[-11159,-2447],[-17529,16467],[-6842,20640],[-66254,59052],[-3790,17929],[-7049,7746],[-11120,-7398],[-11128,-1913],[-24023,4155],[-22980,13541],[-22074,8083],[-62728,48961],[-45100,22358],[-21548,27475],[-6463,21158],[-9910,18727],[-15917,22871],[8685,23463],[-5663,39060],[-10771,13157],[-13183,-1510],[-8586,-6068],[-13122,8206],[-12476,1875],[-14539,8731],[-16365,2644],[-15824,-2776],[-4986,3583],[6142,13523],[26435,12857],[4247,16466],[-9332,17566],[839,30899],[12026,18034],[-899,10447],[-11805,13353],[-22608,12051],[-20582,3545],[-12734,12180],[-15528,38084],[-3356,23173],[-17743,23725],[-18390,8993],[-9606,12060],[1743,15155],[28505,26894],[30250,9003],[3173,14068],[-5883,9087],[-22113,478],[-15405,7793],[-9104,11347],[221,25498],[15360,27261],[9348,4689],[7391,-5824],[-3312,-9088],[8738,-20865],[10284,-6160],[11783,6058],[3105,11966],[-2511,12838],[-19676,24879],[-3533,13307],[-11637,11403],[-8168,479],[-7765,-8272],[-11029,2888],[-4338,25349],[-10223,26192],[-2010,15379],[-6073,13917],[-8351,8683],[-2115,13795],[6325,6331],[16190,-17209],[7101,-2861],[14136,17649],[8197,1380],[8374,-8619],[17735,-7859],[11852,11451],[-14425,24954],[-28217,9875],[-3805,12368],[18777,2890],[359,16897],[6599,20642],[-183,15003],[7840,15567],[-4598,15559],[-10351,-1164],[-8144,-15933],[-13771,10785],[-10488,1886],[-5343,12302],[-1941,23868],[5114,6891],[15376,2354],[1941,13477],[-20233,15885],[-7534,10373],[-17979,8974],[-7840,-5093],[-959,-16177],[-5443,-19045],[-6097,-3451],[-23232,-3001],[-6614,1660],[-5374,12143],[1995,22338],[-15946,1613],[-11365,5825],[-5268,15885],[6707,19985],[-7688,14937],[-8716,-5955],[-5488,-11975],[-8235,-2991],[-12507,7062],[3350,18971],[-7338,29493]],[[76997728,62907045],[52284,-637],[176,94837],[2314,148927],[2397,121377],[-99,45547],[2947,153364],[-116,42857],[1775,179039],[251,70081],[1393,63309],[3022,224128],[1917,8364],[830,99189],[-1195,92268],[6189,402456],[2185,194447],[1393,33196],[2853,204249],[-288,6244],[1362,165368],[1530,83650],[738,84109]],[[63263597,20824565],[433604,1116],[3783,-253],[202289,714],[112563,-20]],[[64015836,20826122],[533,-304608],[1065,-236244],[-1020,-41975],[602,-177914],[1773,-349733],[320,-209144],[943,-164542],[830,-228854],[-62,-54663],[664,-284520],[1035,-260448],[632,-61060],[137,-252073],[1224,-169043],[-61,-71993],[1767,-49908],[-1310,-157575],[-1050,-19535],[1310,-32625],[1050,-124188],[3174,-60149],[250,-170939],[-280,-272957],[-15,-207717],[-495,-110265],[1925,-679399],[548,-88816],[1233,-321225],[1211,-189291],[875,-391210],[1538,-763161],[2740,-954028]],[[64038922,13366320],[-135634,1380],[-630808,7613],[-230893,2842],[-89781,-85],[-616185,6172],[-335321,5261],[-175023,1790]],[[59731753,14224778],[-625,199597],[-4636,953267],[-1255,218866],[-12507,1093625],[563,78594],[-2526,277656],[-1560,119886],[-7993,771958],[2954,2682],[-1942,177886],[-2733,969941],[-449,24382],[-1262,374435],[426,8064],[-1074,276099],[2443,80978],[-3386,432314],[-2513,536558]],[[72759154,62945924],[762,-95896],[625,-224672],[-837,-160745],[-100,-225515],[1218,-48371],[-1363,-345955],[-1186,-109784],[-892,-157424],[-2770,-107816],[297,-113996],[2938,-99723],[2878,-76157],[-236,-15483],[1233,-220134],[-236,-39207],[1750,-50884],[488,-105529],[-70,-125905],[397,-339869]],[[72764050,60282859],[-146108,-40811],[-213289,-60017],[-106762,-22902],[-30454,-3507],[-79566,-15286],[-9217,-2832],[-249163,-66309],[-414512,-110264],[-615272,-163210],[-336225,-89174],[-264006,-72582],[-402235,-110527],[-100201,-28171],[31771,-57758],[-32540,-19318]],[[69796271,59420191],[-55573,-9639],[-24699,-8337],[-18086,-15005],[-15140,-18802],[-17902,-26287],[-22394,-10296],[-43615,-11742],[-12324,-721],[-35982,5232],[-14674,-5485],[-9621,-7897],[-6113,-11684],[-5396,-24682],[-2338,-22226],[1698,-28499],[7879,-55488],[8212,-27101],[19928,-32400],[471,-20772],[-11348,-20818],[-22850,-17715],[-24868,-3320],[-46539,11235],[-95954,41853],[-24425,12209],[-28940,18972],[-63665,45576],[-17888,10868],[-20133,7475],[-29769,-3142],[-67676,10071],[-14766,15005],[-4857,25019],[9591,16234],[36300,44600],[-2284,19477],[-20634,23539],[-5299,23228],[4690,46101],[-297,13560],[-5961,20032],[-16044,20696],[-30318,20275],[-10512,1734],[-20408,-2371],[-26564,-11508],[-25652,-13616],[-43363,-28133],[-13290,-6733],[-22136,-2148],[-27715,5393],[-15816,8439],[-7772,17612],[5198,20349],[14912,14377],[26215,12715],[31079,20867],[12111,15220],[5030,14142],[3874,27851],[-836,21363],[-5230,24110],[-14819,36386],[-14410,18849],[-25133,19722],[-16922,5025],[-62195,450],[-53838,-6826]],[[68738476,59702659],[-1074,257954],[4340,170515],[2617,64894],[-2587,231621],[-624,31593],[-4431,322210]],[[68736717,60781446],[-426,78090],[518,83789],[-1446,216599],[-1028,236038],[-2610,211636],[-3160,178984],[1819,53904],[-3547,88637],[-2130,205158],[-2055,82665],[6645,71505],[775,46964],[3684,103774],[-6021,162563],[-4604,216861],[624,96590],[-586,87513]],[[69229227,63001844],[129264,244],[103420,816],[196070,-1012],[111618,-1923],[96951,-2729],[90260,-3891],[116750,-2373],[297885,-5205],[64662,-132],[43082,-975],[165784,-1847],[87611,-450],[47467,-2429],[74260,-675],[113132,-2448],[341128,-5120],[49812,-291],[138875,-3675],[100202,-1163],[100056,-2513],[206780,-4156],[192645,-2943],[252032,-4971],[79787,-2392],[170068,-2400],[63171,1763],[97155,-3030]],[[86309523,70716319],[17186,11364],[8587,-18],[13107,-8487],[5906,5252],[-472,12932],[5482,20208],[7474,2927],[7825,-6386],[3814,-11742],[15276,3507],[-3113,-12246],[14379,-5298],[12445,7163],[5289,-13081],[20255,-7859],[-9392,-12322],[3995,-8797],[34117,18475],[4345,-2889],[-1507,-12434],[-7368,-5411],[7651,-6790],[12613,1988],[8090,17283],[10680,3394],[12552,-4340],[5350,-27028],[20567,6650],[11836,-9453],[12255,0],[2283,7502],[-3896,14798],[8311,-1501],[2497,9660],[7476,-4511],[1445,-9865],[10810,-8459],[3273,-13655],[11005,3001],[1660,-10315],[-6652,-8788],[8577,-2221],[6540,15464],[6705,2419],[19723,-19760],[-2917,-12668],[4354,-17837],[7271,-3854],[14957,-10],[1666,12886],[-11212,7737],[624,5364],[22235,7717],[7474,-9022],[-3533,-12238],[4568,-5382],[14956,5157],[17652,-2794],[-822,14386],[7749,11355],[34694,-8579],[8639,3395],[5535,-9538],[17248,-11038],[12224,2747],[846,17180],[8449,6350],[8592,-13711],[10955,-56],[1612,14996],[10026,3273],[7809,-4792],[3319,7998],[-8624,15521],[9804,3863],[17308,-10926],[4934,-7558],[-7666,-14873],[7848,1097],[11616,10325],[8083,-5833],[3304,11461],[-8236,4032],[-1751,10259],[9408,5449],[-10147,4979],[-3812,9688],[24365,-6940],[33857,2748],[13319,4697],[-5412,7306],[-14126,5992],[-1461,10531],[27014,657],[9971,6227],[8319,-27918],[6851,1942],[4362,18043],[10382,9020],[13502,-3431],[7484,11816],[18070,-8590],[20772,4509],[-206,10955],[12674,-1718],[8722,3658],[19113,1070],[21817,-12445],[11014,1275],[17446,-15444],[1667,-6246],[-8731,-2139],[-17651,7305],[-7902,-3862],[14547,-16327],[-15163,-3565],[-38,-7341],[14956,-7906],[26801,4294],[6441,-5364],[13708,2786],[11668,12792],[8998,-4268],[15314,8150],[214,6236],[-11433,3216],[-7482,9875],[-420,10306],[16420,4511],[13922,-11160],[-3944,-9236],[14744,-422],[6448,19523],[0,10513],[16616,12042],[6439,-10953],[8106,-3433],[2490,-21485],[15787,5599],[-3737,17809],[12261,440],[2490,6659],[-6226,9218],[13914,7305],[-624,-10728],[6645,-18475],[12674,0],[2495,20623],[4576,7510],[15787,2148],[13091,-2579],[-4566,18446],[3950,7316],[11837,-7297],[18282,1697],[10802,-6648],[-1035,-11375],[7892,-2804],[7688,8383],[6021,-4089],[-16624,-17170],[-11843,-3010],[-3326,-8160],[13297,-2146],[20779,4922],[8930,-3216],[11844,9238],[12468,-2588],[-4567,12893],[19523,-225],[10603,-4088],[8731,10090],[17873,1931],[7475,-8598],[20360,11591],[8,7305],[-11638,3648],[-3729,19120],[-9767,4728],[1872,9874],[11434,1285],[8929,-15904],[24715,-10955],[11637,4718],[6448,11384],[13297,-1950],[15369,-6873],[20993,7717],[8936,11376],[14547,-1079],[19981,13504]],[[87688686,70823478],[1971,-135228],[578,-134148],[1774,-303248],[121,-126440],[-510,-17453],[1240,-138922],[2132,-451247],[-1126,-163754],[-2504,-736107],[-1895,-113367],[0,-42228],[-1591,-118751],[-906,-11319],[-2764,-539596],[-221,-141144],[-1469,-154959]],[[87683516,67495567],[-21343,-7585],[-10671,-15098],[8996,-7504],[-8813,-2549],[-11966,-12014],[-15672,14179],[-24891,-3591],[-1082,-17367],[-8699,-14123],[-1644,-12698],[-8289,1904],[-9988,-5571],[466,-14301],[-11944,-4201],[-23421,-22563],[-13335,-5486],[-4766,-12089],[5427,-8260],[-12087,-26503],[-7786,-2024],[-16974,-20717]],[[87485034,67297406],[-10993,-9395],[-5792,-42970],[9538,4174],[15756,-19253],[-4621,-1913],[-3372,-31124],[-15201,1443],[-4323,-8534],[-11874,-5345],[1218,-6058],[-10839,-28255],[-8441,-4530],[3867,-12116],[5709,-1181],[-1789,-10823],[-9577,7419],[-5960,-7372],[-13555,161],[-9485,-18915],[6303,-5975],[349,-18399],[3319,-4800],[-11615,-7729],[548,-14590],[8289,-6331],[-6463,-14601],[-10519,-2053],[7049,-11855],[7885,-5044],[793,-9706],[-4864,-16234],[-7498,-1322],[1141,-7784],[-8091,-6752],[3821,-13512],[-7299,-1950],[-1089,-14330],[-17773,-5046],[-2778,-10408],[-13153,-9848],[-17370,-1041],[-6852,-28846],[-9780,-2371],[-1987,-9689],[4819,-6807],[-12309,-7577],[-5610,-17791],[12704,-9883],[12605,-3508],[-2717,-13720],[-5656,797],[-78850,161],[-358847,2485],[-144829,262],[-289611,2138],[-53449,1107],[-104031,19]],[[49698434,41760353],[19935,-329],[119138,1623],[148939,-797],[219394,271],[376393,-177],[147545,-1661],[161362,-46],[10305,-1735],[118477,740],[46539,3376],[115157,197],[51067,-1499],[29299,1069],[92132,-507],[107134,1079],[72488,-2242],[136812,2888],[90878,-375],[13655,-862],[82169,224],[96028,-413],[424379,2213],[78651,732]],[[52429829,39733220],[-344667,-1397],[-498425,-2090],[-52992,-1088],[-178274,-385],[-26078,440],[-120548,-121],[4165,46513],[-381683,35252],[-41256,-541706],[-126554,10840],[-14461,-205015],[-1956,-34455],[-64853,-755067],[0,-40222],[-14866,-174210],[-51096,2748],[-4415,-14987],[1393,-9545],[-18748,-11752],[-37397,-19739],[-13411,-20219],[-7834,-6648],[-8128,-29813],[-21055,-18465],[-2564,-8421],[5921,-6227],[593,-29970],[-7671,-23060],[236,-14010],[7907,-12652],[8449,-1490],[4035,-10842],[9751,-11403],[2701,-8945],[-1940,-21073],[3166,-14085],[-7025,-23473],[-14410,-11037],[952,-21456],[-3905,-32654],[3304,-21718],[-9606,-22076],[-4605,-23594],[-16251,-7193],[-17820,-2372],[-18054,833],[-18406,-17066],[-7155,-1913],[-5054,-27675],[5092,-10239],[5336,2944],[16213,-14216],[-4149,-16758],[3723,-20933],[10033,-11966],[12582,-2428],[5525,-12126],[-1110,-13101],[8738,-21306],[9262,-13362],[-1064,-21203],[-6097,-2016],[-5961,-20886],[11426,-16925],[1339,-15474],[14440,-33948],[-2832,-5879],[11463,-14236],[13023,1013],[4271,4491],[9651,-3872],[3456,-11197],[11334,-19815],[2185,-23932],[-3798,-18877],[6189,-14602],[2297,-28170],[4888,-15586],[-3166,-7474],[18853,-38647],[1356,-18399],[-9515,-10783],[-6835,-422],[-22082,-13196],[-18870,3049],[-11045,-11348],[-19349,-8036],[-15985,421],[-15710,-9819],[-3158,-19430],[6811,-17386],[-4391,-16365],[-18945,-20921],[-33461,-16139],[-3509,-21044],[1050,-11149],[8700,-22760],[16859,-18315],[10193,-5673],[7193,-30516],[-1257,-8993],[10604,-28480],[685,-13626],[-4437,-7371],[3021,-12894],[9021,-15539],[19044,-4126],[5038,-21822],[7140,-12952],[913,-9500],[-9073,-19440],[-487,-10108],[6121,-16327],[19447,-24494],[-2093,-17443],[-15405,-13513],[-9500,-563],[-18763,-8253],[-9743,-29089],[-2405,-18315],[3448,-27093],[9347,-22731],[22735,-13073],[1675,-13410],[-12756,-12791],[4787,-24402],[-4612,-11093],[-18787,-10325],[-12011,-9679],[-23459,2017],[-32540,-1829],[-13367,-22074],[-184294,-71806],[13518,-4960],[12377,-9181],[22637,3817],[15734,-10475],[13625,617],[10740,6912],[16265,-13719],[28104,-15895],[-3357,-18052],[-5138,-2223],[-1440,-18361],[7385,-24401],[5129,-4539],[1918,-13673],[-868,-27187],[13526,-15220],[24648,-3413],[13519,-28320],[24700,-6818],[26800,-1707],[13907,-3976],[-2367,-21484],[19760,-29174],[22348,2306],[334,-19336],[28667,-29006],[15962,-5936],[11075,1181],[6621,-8844],[-4307,-13971],[-11495,-17969],[-7573,-21456],[-9317,-13503],[-25211,-11367],[-25986,-9077],[-16501,-15154],[-1219,-24730],[14311,-25610],[13000,-16467],[3662,-15334],[11570,-12012],[8654,-14611],[17681,-14713],[8725,-22751],[13357,-18943],[7346,-19468],[11082,-15577],[10277,-6190],[7245,-14647],[108,-11347],[12034,-11714],[13427,-6300],[8859,-8647],[5109,-11328],[-5831,-17247],[5876,-20621],[8792,-9415],[-13139,-26061],[-8152,-11525],[-24038,-13777],[-7741,-12330],[450,-16233]],[[50476909,35507261],[-120220,-750],[-203880,-39],[-421165,-1388]],[[45257207,35511031],[-900,12547],[815,548280],[1005,227259],[838,356421],[-533,46597],[243,137160],[-411,373881],[373,49186],[-54,138087],[-1064,62850],[-702,438064],[-2314,1138599],[-4247,146668],[5230,958922],[-503,66590],[1644,734925],[289,18728],[1006,396950],[-259,99517],[-3965,279148]],[[82521420,41340924],[1743,-177494],[-351,-4913],[1325,-307206],[-404,-33770],[915,-107093],[767,-430064],[862,-105911],[-115,-69246],[2687,-222299]],[[82528849,39882928],[-17561,-2785],[-26655,-12727],[388,-13766],[-3898,-15567],[-14599,-3338],[-5839,-5955],[-16059,3414],[-10536,5953],[-3578,-3844],[-1681,-21493],[-4378,-7888],[-16936,12266],[-20923,-8195],[-17751,2165],[-27897,-4032],[-3608,-2626],[-11790,12164],[-435,8551],[-28429,9070],[-6258,-6855],[-30202,-10222],[-3913,13334],[-24100,15165],[-12170,9996],[-6402,16129],[13314,34745],[1865,20772],[-8854,16279],[-16654,8451],[-4194,28396],[-15489,-3301],[-10688,6902],[-3660,11337],[-29542,-3826],[-18664,1069],[-2162,22751],[-3927,3544],[-32161,9433],[-9041,12793],[-2314,30561],[7322,4371],[-7406,17227],[-15124,16495],[-11853,3911],[-11691,9012],[1720,16335],[-14440,5299],[-16311,-217],[-3516,5561],[4749,19179],[-14393,15304],[-12675,-12481],[-22910,-5046],[-14958,26455],[-5778,-676],[-2404,-11281],[-10262,-19946],[-15496,8],[-10726,10672],[-9339,-9423],[-15444,3150],[3410,-10110],[-10923,-1388],[-11114,10729],[-11591,572],[-8328,5824],[-5046,13251],[-11121,4069],[-11067,-16588],[-7262,2775],[624,12313],[-22668,6396],[-1249,13812],[-17651,13092],[-4332,13354],[-13526,-6396],[-30019,12023],[197,13344],[-12749,15108],[-21184,-2006],[-14340,17123],[868,7784],[-11738,5672],[-1348,11283],[-8906,-1229],[-13762,13241],[1637,19432],[-13617,-976],[-7558,9480],[4042,14124],[-3076,11807],[-16555,-8047],[-18726,24542],[-18435,2626],[-6157,-11133],[-17956,13918],[-7370,-6133],[-16076,11178],[-15253,-12622],[-8570,3657],[2260,12837],[-30035,23117],[-7460,9659],[2261,12106],[-4864,13814],[-9721,11029],[3030,5926],[-11989,13504],[-10732,2522],[-1401,5928],[-14972,2579],[-7749,10305],[517,7062],[-12216,2878],[-1348,10363],[-9476,15146],[-16381,8037],[-8669,10512],[-12355,1612],[25492,-90927],[78294,-269712],[80205,-273278],[76103,-254456],[10185,310],[1072,-45116],[27265,1153],[1043,-78801],[1531,-16862],[142865,-482268],[22217,-73119],[40298,-127453],[14972,-50453],[22370,-98990],[10688,-38468],[113468,-385839],[44634,-151000],[38760,-137610],[36514,-124349],[3494,-14488],[40767,-135434],[38897,-135826],[40251,-135461],[7954,-23829],[50290,-188868],[27875,-97379],[10459,-30656],[3836,-17920],[12079,-40823]],[[80782861,36486756],[-4292,20182],[-8496,16580],[-20954,16645],[-4956,18503],[-15597,17254],[1158,21288],[18496,12426],[39589,36845],[7962,9912],[8160,21110],[5205,40333],[-2564,19516],[-37275,113123],[-14492,50209],[-7438,15322],[-24608,20387],[-10930,12521],[-7354,17844],[1120,29259],[7816,33797],[3319,32214],[259,29586],[-6676,26923],[-35812,53229],[-17409,20603],[-33483,-7456],[-19988,-25620],[-15323,881],[-5489,5683],[-13937,39472],[-9750,12922],[-18991,9303],[-19320,1782],[-20702,-1631],[-14615,-9079],[-19204,-7914],[-21214,-5364],[-18711,-1416],[-20772,2935],[-37511,15538],[-42953,20716],[-40167,7043],[-33285,2953],[-4705,9801],[-1476,16139],[14263,34876],[20613,38607],[6722,52206],[-8716,14517],[-28643,-17930],[-10846,-9921],[-9402,-13871],[-9643,-6497],[-9491,374],[-9950,8600],[-36528,47985],[-36819,40016],[-7740,11524],[-11570,26653],[-5268,25806],[5968,23998],[19144,32119],[19433,19862],[44086,23575],[22745,-1246],[22454,5373],[14294,7193],[12925,12069],[-5465,13589],[-43927,24653],[-21115,19506],[-14446,65747],[-4317,42894],[3350,21570],[14819,11806],[15590,3328],[19996,-112],[28231,5224],[46340,18380],[21853,25349],[3509,22899],[-2002,8854],[-14926,12322],[-25932,-3770],[-22904,-8487],[-24540,-1228],[-10238,9818],[-27608,48708],[-31688,7503],[-29472,11346],[-39704,28405],[-12079,10551],[-13694,24973],[-2420,10700],[1012,41065],[17537,36760],[23170,16092],[42992,23763],[9644,13543],[5336,14188],[-1423,11337],[-22531,52900],[-20324,58912],[-5244,9059],[-22599,7099],[-19815,11674],[-25172,9406],[-11401,9181],[-8671,12153],[-2968,11516],[-517,23839],[8183,19328],[23032,27383],[15582,23031],[9370,28274],[10397,10035],[10793,1528],[44903,-25386],[11005,-14329],[8191,-17048],[35242,-23502],[13838,-3404],[26656,1547],[13269,9163],[4391,19853],[-20642,28733],[-1135,14835],[4483,14208],[-5198,25460],[-19798,29053],[-22774,3676],[-36468,-3188],[-29435,-5993],[-11099,976],[-17613,14076],[-17941,22918],[-2718,13468],[-11158,32128],[2908,23565],[10123,16655],[11326,4051],[19860,-13559],[21830,-23548],[21793,-19637],[25789,-7099],[13959,-14630],[11418,-7989],[18527,-1435],[10055,7755],[3341,12708],[33925,-2345],[16245,-11854],[14925,-188],[16580,15643],[-2002,16429],[-12423,9988],[-25683,7606],[-23672,10371],[-13327,8966],[113,5467],[18886,36385],[33659,47432],[2108,13505],[-34999,53181],[-12819,25732],[-7428,29025],[-3296,38485],[-8540,24617],[13852,36049],[8731,32925],[14158,5280],[9515,-2335],[15977,-21334],[20757,-22236],[15573,-11093],[17842,3601],[22356,12594],[11197,17987],[2085,30703],[-45486,83471],[-12553,36291],[-19363,70108],[-8609,14639],[-12666,9659],[-18360,1661],[-23269,-23051],[-13031,-5215],[-27837,-2700],[-28406,11693],[-8723,8441],[-518,19045],[3425,4736],[31733,23144],[7300,11732],[4978,27168],[-3105,23154],[-16237,36544],[-18664,35102],[-19949,23912],[-19357,12361],[-35159,7033],[-37412,22732],[-24129,9125],[-36316,10156],[-32426,14844],[-12788,12060],[-22050,27665],[-22189,31050],[1362,12322],[16123,10212],[-441,8796],[-7977,16701],[-6105,5777]],[[80322701,41149777],[13031,7568],[19121,25545],[70029,4661],[52459,2588],[26870,4435],[94500,7212],[78872,5007],[267925,19102],[135528,10447],[302681,23877],[36649,-769],[78920,6349],[73521,608],[19152,-3113],[23840,-75],[33582,3883],[218572,18653],[173896,16570],[115776,9397],[75827,9274],[104396,7390],[54987,4848],[50984,843],[71908,7427],[5693,-580]],[[49719304,22137628],[-88448,-318],[-331513,-4483],[-329565,-4406]],[[48969778,22128421],[-4066,19392],[-6744,54373],[-3828,9292],[3852,7654],[1171,36628],[-6059,12688],[-9255,66611],[-8130,27655],[-113,15774],[-7749,32174],[-9074,25527],[-11654,23951],[-25431,28255],[-30020,5955],[-35432,1875],[-20841,-8234],[-28827,-2870],[-20125,600],[-21890,-7577],[-14707,-366],[-13968,4934],[-27372,14656],[-32372,25226],[-14463,13786],[-23756,42126],[-28924,28236],[-9803,14009],[-12218,8740],[-19226,32373],[-19037,20208],[-17599,30525],[-20460,31154],[-16404,35579],[-5586,16138],[-20232,25001],[-14654,11011],[-32639,15773],[-15277,17882],[-15809,28857],[-6218,23679],[-38,31705],[6301,15005],[1462,13016],[7977,11994],[586,11741],[13054,48670],[4857,6425],[17088,49899],[4734,34679],[7193,40389],[-951,19787],[-19242,54072],[-6957,5665],[-15864,26830],[-24364,25994],[-35668,54176],[-10375,11741],[-22547,37004],[-12019,9453],[-28125,32615],[-5154,25817],[-7094,16881],[-18320,14639],[-8070,10043],[-11515,35664],[-11670,72386],[-23953,44414],[-19198,24026],[-37015,52889],[-13800,21879],[-13785,12069],[-6143,12435],[-57119,67763],[-16434,23089],[-19264,44160],[-18246,57109],[-10070,21570],[-9012,31378],[-1096,21719],[18740,32990],[13245,6161],[9902,20914],[15468,42086],[36931,117645],[6669,28405],[-10878,70727],[1392,32766],[-2778,16345],[-12497,32596],[-15939,29401],[-52454,60730],[-17970,29999],[-51091,41225],[-27006,34604],[-7719,18483],[-43425,53603],[-3980,20416],[692,16073],[16861,20688],[31147,11112],[51836,-1839],[21654,5000],[12065,9292],[49241,24571],[53594,51390],[17325,31715],[8997,25948],[-1006,12885],[-7047,9463],[-28757,14741],[-37709,12370],[-24936,6460],[-19997,2720],[-28672,1087],[-22037,5853],[-14805,6835],[-18070,20351],[-13640,5899],[-19715,2082],[-13061,5589],[-79961,26314],[-16138,-3601],[-60011,22356],[-14438,16176],[-39779,103615],[-15917,26465],[-11866,7549],[-18825,6291],[-15261,14648],[-21648,29287],[-36756,92136],[-7924,29381],[-3502,30216],[19030,49899],[28292,32175],[7010,33018],[10536,15512],[24912,50517],[17446,40362],[3813,45229],[-3128,15642],[-6736,13494],[-2786,15577],[-13731,12764],[-45274,20030],[-20964,2419],[-13990,8149],[-65331,34099],[-54911,16092],[-24761,12153],[-15338,13129],[-13336,77611],[-13023,8149],[-32358,4528],[-41028,3161],[-12817,8000],[-7148,13194],[-7719,61190],[8032,42874],[3912,45679],[753,48803],[3441,27552],[6439,18745],[913,14912],[-4848,7810],[3152,19019],[-10215,14733],[-18482,7173],[-39437,-7277],[-7755,835],[-34771,-11760],[-13564,815],[-94577,55921],[-12764,20142],[-20606,48736],[-11706,10100],[-26869,2983],[-15886,10663],[-24564,9884],[-15070,-1970],[-18032,2092],[-27905,9856],[-6395,5055],[-17042,22084],[-10992,50827],[-16775,53810],[-5336,22168],[-22745,69331],[-10001,47817],[-11638,44028],[15,49731],[-2968,33449],[-8190,35757],[4407,25058],[17453,25621],[10473,24044],[7986,32118],[-906,11554],[-6128,16186],[-1918,17517],[1302,58124],[4514,10700],[2451,29118],[-4088,66994],[-2170,13505],[-11699,7839],[-33233,2730],[-7801,4989],[-7794,15801],[2237,19524],[5839,20302],[798,19338],[-8167,20894],[-11098,15295],[-17477,19224],[-17842,13869],[-17445,-1649],[-22082,-10814],[-13031,-1922],[-23535,10082],[-9858,8786],[-4156,10213],[-1088,17546],[4064,20650],[6136,13906],[14690,21467],[1789,31611],[-3182,11798],[-11236,19600],[-23466,19684],[-10823,16428],[-10102,29578],[298,17930],[6004,15043],[13503,13747],[13094,19347],[7755,30403],[-7390,77075],[-6424,30702],[-12057,31248],[-22721,7361],[-25561,16815],[-23040,33910],[-4713,11496],[-3021,24963],[5609,37362],[-8349,46597],[-5694,8385],[-11958,3723],[-32235,19084],[-18087,1528],[-31010,5851],[-24334,1379],[-23239,-7924],[-20484,-14048],[-14873,-7539],[-20421,11946],[-11952,13861],[-8851,39021],[-7421,20706],[4352,35570],[14441,39367],[10428,39836],[266,10017],[-16457,23229],[-40707,47516],[-58534,39668],[-12651,12942],[-9027,13466],[-3259,11422],[5381,29043],[-53,49965],[-9628,5017],[-22052,2804],[-14263,-1211],[-9873,8553],[-5907,11976],[1112,23491],[6013,19224],[23543,19403],[28977,7436],[10170,18569],[1567,12847],[-15359,27458],[-7513,1519],[-13572,-5786],[-4887,-6236],[-17972,-3329],[-19638,-12585],[-17522,1388],[-12704,16636],[2079,22196],[9697,31847],[-2040,10888],[1841,25695],[11959,18953],[-2596,11366],[-11456,8684],[-39337,1021],[-14987,-2700],[-18633,-6967],[-19092,6714],[-8402,9762],[-9317,37726],[-9135,13598],[-20748,9602],[-19334,517],[-10786,-12483],[1468,-15660],[-5335,-15961],[-17674,-14395],[-29550,-4913],[-12680,16355],[-10764,38682],[-14675,26258],[-19966,10269],[-10092,15089],[-793,9725],[11433,9753],[35936,2343],[11363,-2756],[14424,6283],[8131,12820],[3136,14985],[-8671,38693],[-12795,9621],[-24898,7755],[-24243,16533],[-14744,25424],[-13381,31330],[-9120,36142],[-15915,21934],[-10420,4005],[-28042,17198],[-4704,12230],[-228,20115],[20025,66160],[12506,26491],[952,26719],[-8693,22036],[-12536,4090],[-2946,11665],[6767,17031],[21268,26042],[2069,19899],[-1445,23538],[-4857,14019],[-7010,8890],[-4119,32055],[4188,60374],[6225,13485],[10596,10530],[-1111,14630],[-6570,35598],[-7024,10840],[-10186,31434],[4834,24907],[-1027,12210],[-17371,75125],[-21403,66602],[-17903,17518],[-6006,29230],[-25188,104617],[-1087,40812],[-11677,35692],[-10101,78651],[1165,50866],[4194,43522],[-891,24373],[-4278,28865],[-4254,56285],[-2093,41056],[-14098,24550],[-12750,70428]],[[66248746,16868394],[74359,-28],[6097,-31387],[12605,-12952],[10771,-2016],[3433,-7071],[26000,-27766],[-4635,-23041],[16030,-2374],[16366,-15482],[23132,-2073],[35364,8919],[22242,-13419],[3904,9387],[16555,10830],[5785,-2531],[4979,-15276],[27881,-6002],[12978,7942],[22805,-9762],[755,-4182],[15703,-6752],[16455,4586],[9926,-3976],[10345,5926],[19182,-10429],[-1272,-8157],[7330,-6349],[3189,-12230],[-4749,-5006],[3668,-7943],[10483,-8271],[30553,-12549],[8837,-14910],[11797,-3048],[-5130,-10325],[3897,-12387],[16785,-2645],[4179,-5674],[1827,-17396],[-6957,-4641],[-952,-22291],[7756,-6396],[4270,-12284],[5063,-27458],[-16274,-18926],[4179,-13729],[6340,-3515],[3143,-14142],[-1271,-15577],[9820,-11085],[4194,-24964],[7193,-8777],[8981,-3085],[12126,7643],[4567,-13833],[8510,-5307],[22851,-28573],[6111,4801],[16785,-16975],[14568,7128],[7573,-7944],[11281,-2165],[-4369,-6911],[6775,-5936],[-4513,-8665],[9781,-4025],[13069,-13925],[5967,3873],[14059,-8665],[2161,-13776],[8039,2992],[2687,-16618],[15224,-2879],[-6106,-14039],[5929,-11966],[11745,-3712],[-654,-10635],[15931,-3244],[-12398,-12745],[4794,-6303],[14052,9764],[-1317,-7588],[24487,-6911],[-1127,-10371],[13442,5270],[610,-9087],[7239,-5777],[-9866,-13260],[12034,-3713],[-10101,-11255],[8548,-8823],[-2343,-8413],[-11699,-2213],[305009,1886],[383136,2898],[18232,637],[171186,1388],[441376,2531],[190415,1144],[130259,4323],[139942,3855],[160919,-112],[259622,168],[248447,-3179],[138290,4154],[110210,-1931],[124216,2138],[68651,-2869],[53769,421],[125379,-1012],[353771,-939],[114367,2973],[386365,5327],[55953,18006],[375829,123298],[26900,7972],[173806,57297],[104069,-41947],[47138,-19562],[164513,-29699],[270574,-45933]],[[72163437,16234157],[-17385,-51426],[-246886,-586081],[-124437,-328250],[-259560,-684650],[-49188,-159301],[-240614,-916552]],[[71225367,13507897],[-469896,3732],[-10404,-535],[-142895,1604],[-136889,-1632],[-285669,318],[-632833,-106155],[-886957,127406],[-123227,20238],[-67897,10390],[-585388,-164092],[-23557,515],[-26665,20754],[-18694,20902],[-14134,28658],[-13185,44433],[-54545,-9519],[-10108,10813],[-31908,17640],[-14327,19215],[-24799,7257],[-11197,-956],[-19568,-8692],[-13626,-19947],[-11044,-7474],[-20827,5476],[-9819,9632],[-33978,16869],[-13550,2130],[-17111,9218],[-18404,1978],[-38143,-2692],[-28878,-16044],[-24792,-4146],[-13541,-10484],[676,-7193],[-8897,-19083],[-4513,-25338],[-11616,-31406],[-19944,84],[-12604,13062],[-10649,1595],[-6020,-4491],[-14470,-20510],[-9873,-4257],[-12277,4594],[-15689,10662],[-28186,2637],[-13343,-5458],[-10885,-19554],[419,-7427],[13199,-26314],[2854,-20387],[-2886,-26736],[959,-23744],[-1628,-21776],[-7314,-17938],[-11205,-4850],[-13321,1821],[-12749,-8029],[-8229,-15453],[-23931,-11994],[-16243,947],[-17995,-4830],[-28741,-23820],[-18597,-1368],[-17232,-4821],[-14059,-17836],[-5869,-2963],[-26747,7998],[-2292,18944],[-3759,7680],[-24023,18399],[-20902,-1041],[-20370,23209],[-8904,4230],[-10329,-24353],[17111,-18109],[-747,-16562],[-12224,-21624],[-14241,-4548],[-6052,2371],[2671,17444],[-13548,7727],[-11387,-4604],[-14128,-12838],[-16350,-22704],[-17660,-15727],[-19615,713],[1050,15388],[-38750,-131],[-15809,-2710],[-9751,-7717],[-9218,-20228],[-28073,-18605],[-6965,-9417],[-17917,12765],[-5238,10398],[-2656,19376],[-5275,4716],[-19212,-1519],[-4544,-6724],[-20636,-7643],[-6697,26728],[-13375,3788],[-16402,-20678],[-16503,-17406],[-29602,23567],[-31139,-928],[-17097,-20022],[-5792,-10390],[-7506,-1351],[-21526,4746],[-6150,12003],[1858,9546],[-5184,19665],[-9606,8740],[-17340,-16298],[-8303,-40652],[-8709,5626],[-29426,1192],[-14668,-1960],[-16167,9340],[-18740,-9340],[1172,-19563],[-25636,-9022],[-14059,6556],[-26664,-1032],[-10116,-16468],[-14951,-6658],[-24881,-2588],[-12324,9809],[-9560,-1903],[-5718,-34060],[610,-19769],[-8617,-11460],[-8342,-20490],[-14196,-2682],[-1827,-9649],[14204,-9547],[2718,-13203],[-8808,-15231],[-8479,5572],[-11060,-3921],[-8616,-20696],[12277,-20847],[-9652,-14452],[-11387,8206],[-4353,11095],[-12751,2887],[-7915,-13109],[-1872,-12333],[-10817,-3976],[-21603,9950],[-5944,-22760],[-20848,-6554],[-13025,10052],[-18883,-5683],[-20096,-2429],[-16114,3404],[-16311,12174],[-1774,-8618],[-14052,-15643],[-5420,-740]],[[65915800,12867622],[252,384608],[-639,0],[-1050,95401],[-108111,1706],[-73628,-1669],[-366322,4530]],[[65366302,13352198],[-4164,981737],[-38,90468],[-1089,208007],[-562,215632],[-2786,708189],[479,40530],[-777,160548],[-752,237314],[-641,96177],[-1248,446803],[-1529,330200],[6910,-684],[251028,9],[974,-637],[158720,225],[26695,-367],[222803,1744],[37229,-253],[86408,882],[104784,-328]],[[30832274,66785204],[49871,-1632],[189921,965],[124947,254],[57833,-834],[297162,-376],[247055,2034],[250685,-374],[23694,-1266],[205085,149],[109981,-271],[65142,-684],[49887,637],[212991,1191],[65415,-47],[66170,1295],[130616,-789],[158127,-74],[89583,-498],[210494,601],[19493,-1004],[47277,1669],[724,-3170],[59265,1295],[3927,-1500],[78888,3394],[127725,206]],[[33774232,66786375],[1149,-144595],[922,-57936],[1187,-194897],[2231,-89615],[2778,-180090],[2290,-119304],[3959,-145692],[3068,-154704],[327,-65429],[1483,-91311],[1478,-229586],[745,-237267],[1219,-248210],[-481,-53697],[12256,-1086065],[3113,-313424],[6227,-661563],[327,-12359]],[[33818510,62700631],[-63437,-254]],[[33755073,62700377],[-226601,-918],[-500754,1031],[-99355,-243],[-394951,1322],[-29731,-2457],[-336491,-1257],[-195037,10],[-213068,-498],[-23207,3809],[-78265,-2326],[-105430,-432],[-116969,412],[-330920,-46],[-356861,318],[-113985,479],[-32784,-853],[-501325,-404],[-358398,-215],[-91798,882],[-315156,111],[-547824,300],[-184859,760],[-317075,-496],[-506219,-132],[-31892,-2617],[-488871,-6395]],[[27257247,62690522],[-495,616962],[0,130164],[-618,162160],[823,49401],[1499,6442],[-731,199840],[-1453,198883],[-357,141332],[959,142402],[-411,5364],[-161,234576],[1135,32727],[-464,134290],[-1341,27748],[-457,97858],[618,177407],[1507,34821],[-1303,14169],[1234,44882],[-22,146884],[-1066,2297],[46,83433],[1034,179340],[-1233,7578],[-418,271205],[829,4098],[-418,99872],[380,103231],[1591,58377],[45,552696],[-456,136736]],[[27257543,66787697],[488384,3856],[26717,-3096],[491864,-2654],[120554,1473],[312432,-665],[30339,-1136],[213176,-1079],[108192,-1594],[38897,1239],[215351,-328],[15756,-1163],[194563,2288],[11372,-648],[123827,2477],[5314,-1135],[423425,-526],[522751,-599],[18398,450],[213419,347]],[[37682927,58614380],[-151405,-1340],[-251643,-1642],[-149997,-3047],[-64069,337]],[[37065813,58608688],[-508548,-469],[-404937,366],[-573186,-1248],[-102652,-149],[-400309,196],[-98222,554],[-132748,1388],[-191610,-1266],[-138116,93],[-133684,619],[-135946,-18],[-406391,-1258],[-86004,19]],[[33753460,58607515],[-161,68965],[457,247328],[685,43035],[495,190500],[-106,105658],[396,277601],[159,533059],[-312,65363],[-601,719546],[274,8768],[-98,202962],[372,198640],[-1264,42246],[2413,1157308],[382,14865],[-1661,123992],[183,93026]],[[33818510,62700631],[588159,2447],[40593,610],[209885,526],[282564,956],[152578,984],[265877,188],[673045,3424],[278475,1462],[127816,1031],[271245,1652],[121688,1256],[283523,2016],[200409,1679],[200401,-394],[41538,1379],[95650,-169],[78705,-750]],[[37730661,62718928],[639,-155108],[-1120,-136869],[-8364,-683404],[167,-11806],[-2808,-229586],[-2687,-190894],[-2391,-129759],[-8137,-656809],[-2854,-258000],[-617,-127613],[-791,-7923],[-5587,-418849],[-3807,-234144],[-1993,-210390],[-4727,-347876],[-2657,-305518]],[[90576236,73763984],[22872,-9640],[16510,-13439],[11486,-33432],[19784,-43681],[12917,-10062],[68460,-3376],[15581,-11554],[34595,-7597],[26504,53670],[-6273,54185],[-15215,28049],[-5792,5364],[-24266,8346],[-19738,4379],[-10679,-581],[-12688,5391],[-16800,14667],[-13953,17405],[-8517,19647],[-9880,36752],[4551,3834],[15324,151],[15604,3845],[37943,-13016],[28826,-14854],[55307,-30844],[11593,-7849],[50961,-25029],[26055,-21148],[11235,-18446],[2139,-13091],[-5328,-14319],[-9150,-10617],[-12590,-8204],[-14737,-3893],[-22721,4201],[-11570,-4042],[-17962,9350],[-12667,-11074],[-1879,-22985],[-24556,-51053],[16365,-7145],[31367,308],[29184,3236],[42968,-4765],[40663,-14712],[41788,-6838],[26916,-9696],[26061,-815],[56427,37407],[26260,32842],[16441,13719],[29846,12190],[22364,-3300],[24455,-10493],[23468,-12913],[8289,-14677],[20308,-15249],[26328,-25553],[20873,8354],[11927,33873],[-1127,21644],[-10504,40859],[1744,23248],[8486,15914],[10619,5542],[20080,-4370],[15382,-12773],[16899,-21278],[2717,-17602],[-8593,-17498],[-25553,-33901],[-14858,-36921],[-6013,-5804],[-34245,-12463],[17643,-27299],[18847,-56519],[1843,-17405],[-40709,-28509],[-14994,-422],[-10207,5513],[-29839,28499],[-12248,8844],[-23519,-1716],[-37488,-20124],[-20125,-23042],[-6578,-18333],[3684,-23013],[14601,-19581],[20961,-14038],[14744,-3329],[10329,-12304],[12439,-3376],[28506,2531],[12826,-5963],[16403,1697],[12521,5317],[19030,17818],[16555,-5731],[13625,469],[21449,17294],[24761,-1407],[9149,7886],[8921,28406],[14356,394],[30593,54324],[3569,34521],[4019,18482],[17019,23538],[6410,4042],[36544,4690],[26831,-7980],[8998,-5936],[15482,-22057],[9903,-20004],[9850,-26266],[6211,-34933],[21197,-25694],[10832,-16233],[14158,-12941],[16121,-9303],[19349,-4088],[16054,2493],[29564,11019],[14279,9904],[9469,16701],[4941,22262],[-4210,29335],[1394,6948],[11211,10532],[2063,13551],[-2344,17255],[-7977,21578],[-11006,21652],[-1531,16122],[11000,17330],[14666,4698],[13154,-1061],[12848,-10540],[3821,-11187],[10178,-14770],[30964,-32663],[6539,-18905],[-2283,-14086],[-11228,-16354],[13845,-19909],[426,-20520],[-10717,-27336],[22135,-6657],[28020,10906],[12384,8018],[16061,5673],[51683,9068],[18762,-7201],[6578,-17940],[-6097,-15755],[-16068,-20884],[-11806,-8253],[-27638,-8092],[-11875,-600],[-42450,-13768],[-9097,-6057],[-21335,-23772],[-28697,-26906],[-27767,-29811],[-29260,-43297],[16731,-12941],[40791,-3658],[24555,6630],[14477,8122],[19853,17554],[8379,16664],[11701,14235],[17758,15877],[41567,20256],[37350,24205],[80395,34782],[22105,-10410],[9858,-18108],[14537,-15286],[6852,-18878],[258,-24203],[-3348,-19591],[-18291,-29015],[-4339,-3001],[-30668,-6948],[-45367,-22094],[-23192,-7878],[-32670,-17874],[-23444,-14872],[-16327,-14620],[-13853,-59867],[3075,-19376],[7687,-9536],[37215,-11141],[29373,4511],[16784,-517],[35319,8375],[11439,5637],[16420,14206],[24927,16918],[13071,14311],[3965,10295],[17818,20361],[17874,6630],[10687,10118],[38782,16945],[37182,12717],[37092,-929],[10778,-3947],[14425,-13626],[10755,-15989],[-15413,-20811],[-30592,-25712],[-22881,-16796],[-21732,-20575],[-15961,-9228],[-17378,-19871],[-4848,-14246],[4848,-25000],[16844,-20725],[15201,-11291],[15004,-15266],[9568,-4323],[29517,618],[23893,14619],[5223,20192],[9377,16325],[3965,22339],[-5830,7727],[-11867,49205],[21139,30488],[11509,-18438],[15588,-39508],[13473,-28406],[9043,-11713],[19599,-12275],[20705,-5832],[14059,1687],[15558,8140],[8107,11798],[13610,8908],[44848,5814],[11539,5356],[23901,21484],[5723,10671],[488,12735],[-6751,23117],[-9082,17207],[-15550,21119],[65673,20012],[36926,3912],[26131,-4614],[8982,-6808],[14499,-3443],[19928,2598],[22684,-13456],[14377,13072],[14828,45444],[8990,14386],[9020,7623],[13190,4511],[25265,-4003],[47062,-20041],[13443,-24269],[-1058,-17180],[-8792,-33666],[-7018,-5111],[-29479,-8431],[-43387,-7869],[-31026,-14656],[10389,-10175],[3783,-15379],[-1940,-25977],[6508,-9379],[9880,-5184],[19357,7821],[14790,9809],[13540,-29269],[2939,-35672],[-2862,-13542],[-15742,-20800],[-57589,-43026],[-35579,-18155],[-18587,-12331],[-15581,-14526],[-7193,-21551],[13807,-21643],[24754,-19535],[23154,-2427],[15475,-4127],[22775,17180],[14242,1884],[-6304,-18595],[10909,-13297],[8212,-24870],[13389,-20041],[6083,-4144],[30447,-8160],[28452,-130],[24700,3563],[12239,8309],[12385,13673],[20566,-5496],[25790,-12013],[21677,-5899],[13771,-9827],[17126,-34238],[38400,-62363],[21284,-32429],[37882,-65249],[17035,-9518],[32100,-3096],[25629,3846],[45670,29858],[28986,28864],[20498,26155],[36544,40954],[23915,13456],[24540,-24814],[11937,-33909],[2663,-22554],[-6066,-30740],[-11623,-22367],[-18574,-17686],[-41962,-14469],[-32776,-2645],[-14280,11076],[-7955,-929],[-5184,-10232],[-13297,-3038],[-20933,-18455],[-6835,-20293],[-1209,-17790],[33613,-49289],[18762,-15446],[16944,-7276],[21754,-41788],[13199,-11975],[12636,-6114],[16617,225],[17423,-7494],[49201,2551],[24724,4071],[9606,8721],[36261,-6631],[20013,-74],[14811,-3218],[18125,-12969],[23024,-469],[17904,7738],[9576,8815],[25803,32006],[11844,25264],[730,10887],[-6652,15886],[-34070,63047],[1712,14657],[4751,7212],[47809,40801],[11341,4793],[17614,1219],[16342,-2683],[19068,-15172],[11668,-14686],[8928,-18353],[3997,-50385],[8928,-26681],[11045,-12734],[20186,-8028],[16320,-10812],[39124,-17930],[13504,-1558],[30644,5131],[44788,21212],[14691,18118],[9445,18690],[1492,19477],[-7361,19909],[18017,49936],[9431,29606],[19433,44459],[20142,29990],[25940,27253],[28598,22065],[15200,6125],[16487,2335],[26390,-4587],[12248,-18624],[8555,-25488],[1857,-21373],[-11927,-17996],[-60553,-45743],[-677,-20295],[-8563,-21239],[-159,-25114],[3538,-10298],[14159,-5025],[-3867,-10297],[12560,-13260],[14880,-5899],[23650,8186],[34809,4257],[19135,9164],[19395,17020],[22059,28818],[3190,30767],[32059,64586],[22181,35297],[45373,58630],[31498,23810],[18717,8553],[32464,19299],[24015,5579],[19792,-1593],[24403,-19993],[4612,-13252],[-3562,-47602],[-8647,-29538],[-6828,-9567],[-27059,-16645],[-14684,-13157],[-22903,-30862],[-21572,-26435],[-6896,-15089],[-5207,-20642],[-2855,-29576],[10384,-30253],[25004,-15473],[34572,-8590],[41043,-19084],[42663,-5467],[25341,3376],[18671,4970],[24852,10522],[28263,18737],[42511,65982],[42558,35456],[18024,2871],[15771,-6424],[5839,-18297],[9453,-47592],[4751,-14741],[8898,-15004],[19995,-12473],[13191,825],[25590,14433],[6403,7840],[9445,24438],[2497,16241],[-1750,15259],[-14645,28714],[-1858,25574],[-5495,21390],[-10254,18428],[-15612,17488],[-23153,13091],[-18017,5797],[-17797,-4727],[-26489,-23359],[-17202,-7906],[-12019,2138],[-37785,26549],[-9553,26342],[2656,15153],[13938,15286],[17324,8047],[17317,-4651],[47810,-28978],[20970,-441],[19104,4427],[20940,9115],[14242,14113],[10490,22112],[46302,58200],[21274,30158],[7931,188],[18163,-18624],[34656,-14395],[107028,-20359],[9020,-8751],[91,-16635],[-6340,-31463],[-791,-18380],[5586,-15041],[22074,-23632],[12156,-9359],[18298,-1380],[13284,2890],[13175,15379],[16464,24701],[20431,16674],[12672,1153],[16921,-6639],[2346,-16880],[-8921,-17490],[-20134,-19928],[-29206,-18736],[-13991,-20753],[-3699,-17827],[1949,-10147],[13586,-18652],[17972,-11572],[16823,-1913],[13905,4895],[49698,51548],[6227,3639],[11509,-9733],[6217,-41178],[11974,-51043],[-1788,-10738],[3326,-36488],[6234,-25030],[10389,-12744],[16321,-6836],[10404,936],[13443,10186],[13267,18313],[6493,19365],[8722,43476],[2908,46317],[-3843,14545],[61022,-562],[29832,11187],[20293,10841],[23482,9462],[11683,7473],[11639,13636],[20308,10728],[64731,14910],[50122,3621],[19928,-8132],[49842,-24287],[5222,3160],[4004,16965],[-259,17686],[-15665,28105],[-7621,18820],[-1103,17416],[3944,8412],[13357,6976],[12430,-10222],[9469,-22629],[-4581,-29427],[510,-13419],[15725,-52722],[12826,-20574],[59433,-3460],[14858,-5037],[3205,-5054],[-1211,-44011],[1858,-17244],[-24877,-15792],[-10122,-845],[-41911,16833],[-9895,66],[-22653,-7689],[-16974,-12632],[-5350,-12782],[456,-13355],[10998,-17273],[22699,-4071],[28505,-25909],[21512,2578],[10337,-11637],[17606,9],[24790,7887],[30364,16850],[13184,-14665],[31557,2297],[19715,8739],[3227,-631356],[-1141,-68514],[518,-57926],[114,-453124],[1576,-27243],[-1500,-70351],[-578,-224747],[882,-92034],[-464,-123205],[-791,-36751],[1620,-153325],[-1110,-12792],[1057,-129112],[-594,-36086],[1272,-367008],[-587,-44506],[24,-107170]],[[95928116,69714915],[-26969,13242],[-2435,14948],[-8015,8158],[-18466,10926],[-1972,9452],[11957,9238],[0,14948],[-8943,15369],[-4530,23755],[-5922,7379],[-22994,2570],[-7901,4013],[465,7729],[11965,6863],[21953,-1716],[464,9951],[-23346,30478],[-14059,3571],[-20445,12455],[-5458,11374],[8945,6725],[21609,-14958],[9872,7165],[-2557,11441],[-8487,11797],[-4880,14394],[-9522,2646],[-12430,-11816],[-11028,6808],[-8480,19534],[-6972,-3649],[-8008,-15313],[-12431,-151],[-13937,8235],[-6972,9790],[-18465,8871],[-8015,-2926],[-930,-12172],[32404,-25310],[4415,-8235],[-8479,-10296],[-7895,3067],[-13007,13024],[-18002,-2146],[4528,-25320],[-7436,-10813],[-6965,4642],[-12545,19187],[-8015,19965],[-7436,9941],[-22416,13954],[-6500,-10447],[8015,-12876],[-6973,-25686],[-5572,-7445],[-10923,-1500],[-9523,14516],[-22423,8233],[-8016,5795],[2559,11808],[13007,-572],[11381,4295],[8015,34623],[16958,11806],[-3486,17095],[-11493,-2212],[-4994,-21747],[-17423,3216],[-8016,21185],[-12430,7136],[-7551,-929],[-3942,-12791],[9986,-24973],[-4528,-15463],[-8480,-8290],[-15916,-1079],[-8007,10447],[-18474,42218],[-5922,17236],[-11493,-2794],[-5001,-20593],[5001,-13524],[13937,-13382],[-5466,-19674],[-14979,-6508],[-16373,38205],[-9531,15230],[3487,21306],[-9522,7230],[-11380,2157],[-18017,11647],[-12423,12378],[-8594,-2850],[-1399,-14592],[26960,-37567],[-6508,-12023],[-5457,-66],[-12553,19675],[-7436,4726],[-22995,4005],[-6500,-1434],[113,-18541],[9408,-32615],[17545,-11300],[-8479,-19665],[0,-17106],[-8015,-4802],[-13017,3798],[-9985,23257],[14050,26173],[-8479,6791],[-52962,-16449],[-6386,-4858],[2442,-13316],[16487,-13946],[22882,-1574],[6508,-9162],[-16960,-15596],[-34845,4164],[-20392,337],[-20743,-3159],[-30507,8599],[-36780,2326],[-6561,2588],[-11731,25339],[-15573,17002],[-8419,22468],[-8615,5402],[-20080,2044],[-18954,23839],[-23375,10681],[-8480,18089],[-29960,6809],[-16494,8806],[-12545,26323],[-9986,2072],[-14995,-7652],[-11494,-18605],[-9995,-26897],[-19508,-23893],[-6508,-19037],[-11379,-5298],[-8015,8880],[1978,19741],[-20445,7510],[-12544,-6002],[-11030,10222],[-13937,-3572],[-1050,-12378],[-6386,0],[-7087,11375],[-19394,4070],[463,-12369],[10452,-11441],[-464,-5008],[-17539,-8299],[-16957,13944],[-2437,7231],[-9522,572],[3487,-10016],[-5001,-7099],[-11959,-5711],[0,-8385],[18001,-17085],[1509,-6228],[-12546,-2999],[-26481,7867],[-21488,-1295],[-3942,6378],[5922,15594],[-3487,2937],[-28459,-3940],[-7088,-10943],[3602,-13035],[-11967,-11432],[-7550,0],[-5922,7925],[-14515,-5711],[-23925,-1716],[-15566,-8225],[-18465,7361],[-13474,2082],[-6972,-6227],[6044,-14460],[3479,-22817],[-8007,-6798],[5456,-14536],[-5456,-16016],[6499,-9651],[19981,-5738],[-3950,-16590],[-4993,-4717],[-11038,985],[-8943,9462],[-2557,15445],[-11495,1153],[2550,-16111],[-5571,-8871],[-10452,-4145],[-20445,-23181],[14523,-39921],[-9993,-3649],[-19046,-927],[-8942,4500],[-6508,16177],[-8938,2139],[-15566,-13514],[1043,-14039],[-8479,-3639],[-32403,1004],[-8016,-3076],[-13008,-18173],[2559,-6153],[21601,-2795],[16609,2363],[4643,-4284],[-4994,-11750],[4066,-7287],[10459,-1576],[3014,-7220],[-14516,-35776],[-15330,-23257],[-2557,-16524],[-15910,-21400],[-586,-12229],[13008,4154],[20446,-1659],[8944,-3995],[3021,-8300],[-7435,-5307],[-19510,11449],[-6972,-8654],[10451,-3218],[1628,-6151],[-9057,-8291],[1972,-8373],[11036,-8224],[7894,-583],[14059,11011],[6965,-8290],[-10451,-17022],[8942,-4228],[2605,-12473],[13913,-16026],[784,-8600],[-14370,-1642],[-7894,10203],[-4087,-14712],[-10603,74],[-3220,-17283],[18436,-769],[8921,-6574],[13206,-2429],[1949,-7023],[-14980,-18334],[-15095,-2016],[-8121,5289],[-15109,-8365],[-10818,1079],[-8327,15783],[-13053,6207],[-23299,-3375],[-23582,467],[-23017,-8495],[-5847,871],[-791,13457],[-25257,-3243],[-18938,-11872],[-8015,-16712],[-1689,-15726],[-5830,-9978],[-9972,5513],[6562,9819],[-11935,3649],[-2459,12397],[11288,16786],[-20819,-2561],[-14781,-14966],[-7863,-525],[-2756,10897],[13472,8917],[-860,21935],[-4444,4849],[-11646,-76],[-8602,-15276],[-6256,2419],[1324,17705],[-18039,13392],[-4811,-5674],[10329,-9453],[-3578,-11422],[-15787,1510],[-11654,-10278],[-16592,8629],[-283,13682],[9836,9462],[-5960,14751],[-15795,-1361],[-1895,-4614],[6248,-17104],[-8669,-14142],[-22485,10523],[5542,17395],[12445,4829],[3797,11507],[-9027,5674],[-32144,6648],[-9202,-10802],[-8366,2043],[-12125,14283],[-3730,-6734],[-22007,-14357],[-30758,22301],[2359,16860],[-3927,9745],[-22241,14375],[-10300,-4323],[351,-11187],[11668,-6799],[1889,-11347],[-13078,-11414],[-61450,-4257],[-16455,-4360],[-21839,-10437],[-15208,9526],[-24585,2954],[-13786,4699],[-12254,15652],[-9409,6508],[-15619,-1070],[-10421,10420],[5777,13091],[-7945,12481],[-10817,-16185],[-22629,-12116],[-7446,4689],[-4216,15117],[-6562,3245],[-3158,-18823],[-6128,-983],[-4879,11337],[-18838,-3639],[-21458,-11141],[-5550,1595],[-6842,16242],[-11828,-5814],[-4255,-20801],[-10391,-130],[-7527,8270],[-6836,18343],[-10595,3199],[-12522,-9688],[-13389,7381],[-6760,9293],[9676,14198],[-17758,13795],[524,15577],[-9209,3863],[-2392,-10887],[-25758,-15747],[-10572,10269],[4095,11498],[14965,9012],[-502,9443],[-28964,16542],[-18838,-8937],[-1179,-15125],[8456,-18748],[-13503,-5222],[441,11796],[-16844,16993],[-6356,-2869],[-11106,-21485],[-228,-21175],[-4895,-7942],[-8830,-1069],[-1811,25020],[-7733,6882],[-8099,-2579],[-9356,-13091],[-25035,-2794],[-13327,-8300],[-2634,-18258],[-126873,60271],[-2716,3929],[4818,17058],[-3381,4830],[-30553,4642],[-5518,10503],[9978,23735],[16213,-159],[3098,10690],[-12216,5091],[-27196,-12152],[-6996,13598],[-11120,3741],[-40449,-3817],[-9789,479],[-1120,5983],[10824,14132],[-2809,7483],[-23937,-4492],[-2293,6264],[7703,8741],[-8608,15107],[7687,14030],[-1978,17499],[-13222,34462],[-6081,4360],[-39171,2318],[-61122,11318],[-8273,-13138],[-14342,-11273],[-13137,-1950],[-2535,11581],[2649,10982],[9004,12089],[-4422,10267],[-22043,-4257],[-10116,-8834],[-4606,-15997],[11646,-23351],[-6530,-8496],[-10086,936],[-11570,21072],[-7291,-2006],[-2786,-14939],[-22120,-2297],[-30401,19178],[-10764,3282],[-17888,-1397],[-13723,12668],[-1485,21110],[-10008,263],[-17440,-19845],[-10404,5777],[-951,32775],[-12880,3798],[-9401,-20256],[-12048,-814],[-2550,13981],[8327,14667],[-21176,29728],[-21518,7615],[-9842,-4211],[-8914,-15652],[-3189,-20227],[-7018,-14039],[-9263,-2842],[-8549,15390],[-17369,-4548],[-23041,5035],[-1621,-12351],[9613,-8280],[699,-8318],[-26830,-25198],[-5914,-1237],[-6037,8749],[8351,10858],[250,8412],[-12094,8723],[-7019,-38],[-28087,-36329],[806,-15362],[19114,-10278],[-2726,-9706],[-39199,-4744],[-8304,9274],[-5770,14498],[-15528,22713],[-7392,2231],[1629,-32091],[-5525,-5550],[-8717,4641],[-4155,12698],[-10094,4838],[-28703,-5203],[-1569,10924],[-9125,4305],[-11836,-3432],[6013,-19966],[-6645,-5589],[-11624,14179],[-11623,-9865],[-25955,8599],[-11205,440],[-4780,-9237],[14317,-15042],[-6234,-10520],[-13488,10737],[-2070,11824],[-9956,6219],[-10390,-12876],[-420,-16102],[13283,-7324],[4355,-11376],[-11632,-25984],[-7064,-225],[-6637,10972],[8517,16738],[-7056,1295],[-19096,-6865],[-11426,-25554],[-9135,-9012],[-9964,-18043],[-17027,-17612],[-8303,-16317],[-10794,863],[-9964,-8383],[-11213,-3218],[-7260,5159],[-618,12678],[3739,14602],[-21588,-4502],[-14317,4079],[-10793,-2363],[-2696,-11601],[13275,-2138],[1865,-20621],[-9545,-10737],[-9340,5569],[-5808,13543],[-8509,-13523],[-11417,3648],[-4560,9658],[-1660,16759],[-21997,-7737],[-5191,-7512],[1454,-10953],[-14327,1070],[-15155,14179],[-5395,14179],[-8503,3854],[-14737,-17818],[8921,-10532],[-17224,-26192],[-2489,-17188],[-7886,-3865],[-24495,10298],[-18671,28368],[-10375,-18044],[-7476,206],[-12247,9875],[-15146,-32212],[-206,-7089],[8099,-10738],[-625,-12453],[-13487,206],[-12659,-9021],[13077,-6444],[14729,-13541],[-206,-10512],[-19714,-1294],[-4559,-11817],[7885,-13326],[-3760,-7754],[-17111,2766],[-8800,13373],[-8090,-5795],[-10384,5147],[-10161,-9171],[6614,-8918],[2696,-17180],[-42329,15238],[-15773,3565],[-3081,9574],[11409,12904],[-4781,12885],[-17423,-20200],[-6636,1716],[6424,15679],[-3114,10317],[-11630,9451],[-19296,-3666],[-6227,7522],[13900,5804],[12034,22553],[-5191,6444],[-58520,-9678],[-45228,-10972],[-7887,-5806],[-198,-25131],[-10367,-6677],[-11416,9030],[-11410,-5374],[5191,-16982],[13076,-11170],[12865,-1181],[3090,-12164],[-12240,-5176],[-10572,-10738],[-19920,5139],[-19518,11170],[-11820,-2588],[-18459,-17406],[-11204,-2373],[-2497,16759],[-10580,14076],[-21359,14966],[-15528,1163],[-11577,-11280],[-13283,-423],[-6227,12013],[-7671,3001],[-34581,-7905],[-8556,9846],[-43775,13795],[1455,26866],[-4141,10091],[-8715,2157],[-8504,-6657],[-8311,1069],[-28012,11844],[-4756,8383],[8707,6226],[-12026,24729],[4574,21045],[-14325,2156],[9964,20613],[-4354,10090],[-11828,1950]],[[91290491,69692586],[-3738,-5589],[-3525,16544],[-6218,11815],[3738,11601],[-8717,11374],[1249,9022],[15155,0],[625,9453],[-18262,5805],[-26564,646],[-8305,-9462],[-21587,21485],[418,6884],[8724,3656],[9546,16750],[-9340,-216],[4361,17610],[-12034,8807],[-12658,3873],[-22005,-5148],[-16602,8382],[-6645,9660],[-7887,-6021],[-12048,2588],[-21793,13533],[2908,10953],[12248,0],[5191,6237],[829,15464],[-19927,-5159],[-6844,14396],[9965,6874],[7056,10953],[-3944,6227],[-12041,1294],[-7885,13522],[-10171,-2138],[-4984,-9452],[7474,-18260],[-5816,-9875],[-15360,20828],[-11417,7944],[-18679,657],[-13701,-9237],[-6851,6442],[-5610,24044],[-19722,40166],[1034,24701],[-7056,17189],[207,28554],[9552,15690],[-3958,12669],[-9552,14611],[-14737,-10100],[410,-10307],[-8091,-7952],[1865,-14611],[-3523,-5579],[-10801,1717],[-11838,17395],[-5814,20828],[-5602,2373],[-19935,-3226],[-830,9020],[6645,7091],[2070,12452],[-3326,9454],[-9964,3422],[-9553,-8365],[8928,-8814],[-4771,-8149],[-14951,-4305],[-7885,-6227],[-17652,1285],[-13495,-3873],[-1242,-7099],[7681,-6442],[-7885,-16317],[-10382,13962],[-20142,17602],[-19729,-2156],[-4766,-13308],[9760,-16542],[-1447,-10737],[-5611,-1716],[-11630,7727],[-6013,-13533],[-7063,4718],[-2079,13964],[-14530,2784],[1667,-16327],[-25546,1923],[-1666,9668],[-10452,5317],[-19005,-692],[-13283,24954],[-860,27401],[6645,17884],[-6105,9893],[-9339,488],[-11403,-8421],[-20688,1828],[-1569,7146],[14081,2814],[6729,6254],[-13199,6874],[-2708,7070],[4970,11620],[-8746,12454],[7261,5589],[-1887,9677],[-14333,-4313],[-9568,5383],[5381,12669],[-1666,11600],[-17454,10738],[-5602,-10],[-14546,13954],[-8731,4493],[-9850,-9322]],[[90569925,70255974],[-1051,176855],[1698,178909],[191,77272],[-487,238589],[-115,260644],[2010,127267],[-1994,136577],[1050,2129],[3273,406985],[1035,82027],[-593,169015],[121,135499],[-928,313377],[1218,96225],[349,91732],[-783,30713],[137,218548],[1065,35064],[115,730583]],[[27258617,58609869],[350,130699],[-564,49288],[260,153383],[-428,46673],[1417,93431],[-1355,71139],[320,200280],[-2010,567308],[-61,126684],[617,90316],[14,830691],[488,341520],[-404,296918],[137,116687],[-457,673472],[457,85121],[-151,207043]],[[33753460,58607515],[-50063,-36],[-274167,1246],[-252732,582]],[[33176498,58609307],[-88501,1556],[-137173,498],[-206391,-151],[-240637,-1182],[-134873,-2034],[-158895,1567],[-282007,0],[-62720,-863],[-839879,1200],[-173184,-601],[-466560,-1256],[-405136,-1162],[-51219,2005],[-34999,0],[-615324,-10792]],[[29279000,58598092],[-18825,12734],[-409306,-1060],[-84901,985],[-68162,-487],[-168204,749],[-345847,263],[-437463,365],[-361214,-2137],[-126461,365]],[[34122607,91741306],[124878,441],[158924,-188],[102340,1153],[849158,-225],[3783,-572],[494618,-834],[453104,-366],[66946,-459],[356662,394],[527889,628],[186587,-731],[274981,356],[34208,535],[455714,187],[20179,1190]],[[38232578,91742815],[-60,-184365],[259,-186384],[-1425,-271607],[860,-484379],[-1612,-153309],[1879,-187030],[738,-343571],[-1209,-68017],[91,-78257],[-3927,-172635],[-495,-60234],[4254,-109148],[-243,-27954],[1545,-591643],[-1370,-64584],[1195,-90018],[-449,-254173],[-875,-141756],[-945,-83095],[510,-234904],[-594,-19975],[755,-180530],[-671,-96197],[717,-15051]],[[42677924,70896250],[334,-207474],[-829,-82619],[-176,-181205],[-45,-409565],[403,-91676],[-266,-407125],[792,-5139],[1666,-1167052],[-898,-134242],[283,-526571],[1765,-508442],[-960,-2945],[92,-241861],[-1188,-38281]],[[42678897,66892053],[-263556,-15839],[-396723,-23538],[-89186,-6048],[-275972,-16730]],[[41653460,66829898],[-69875,-694],[-381387,-1716],[-135071,-217],[-519895,-5007],[-72198,-1097],[-336858,-1828],[-22546,-592],[-312735,-2241],[-321262,-3722],[-52475,-39],[-107660,-1424],[-157365,-611],[-142864,-1791],[-64975,-121],[-167291,-2522],[-58875,-498]],[[68014144,39267775],[8160,7249],[76436,84868],[31346,33216],[33254,43064],[31543,34210],[30729,24429],[87893,100857],[12788,11554],[19753,22863],[48935,50798],[37489,40851],[31687,-31248],[12522,-16026]],[[68476679,39674460],[10702,-5665],[37608,-44657],[40388,-40379],[146,-2813],[53327,-55460],[53572,-53904],[67104,-68711],[88792,-93628],[29335,-29689],[389,-3133],[47710,-50423],[53336,-54101],[98578,-106587],[37527,-35458],[150400,-156861],[4445,-3235],[78462,-80921],[106,-2410],[283561,-295727],[32966,-32251],[186053,-193351],[59700,-61349],[28345,-30496],[189357,-197026],[20666,-20509],[84651,-87804],[46796,-49964],[120943,-125034],[79946,-83293],[165959,-171153],[21199,-20689],[55968,-58545],[38715,-38120],[53311,-57532],[219409,-227317]],[[68600544,35754533],[1096,11684],[9279,-5841],[5092,4294],[943,23707],[-25507,4530],[-6834,-2232],[-2726,14178],[-15207,-6245],[-2399,-11928],[-8046,-244],[-11378,-12960],[-8899,2372],[-4088,17275],[-5229,5917],[-36726,-3948],[-20096,10128],[-9925,-12219],[-1834,12003],[-12666,8797],[-5976,17367],[8563,7398],[-3105,10082],[10671,18015],[15864,-4661],[7877,-18943],[-4125,-17500],[7430,-4434],[5138,7248],[2716,15099],[-1103,26070],[-9118,882],[-4963,19355],[-10961,20200],[-16586,12762],[-13930,-18502],[-13434,-10831],[2945,-16964],[-16655,3619],[-5632,30854],[-12597,18510],[-4302,760],[-13365,-15107],[-12453,17049],[-2185,-14329],[-4727,-3452],[-24754,5861],[-12954,-4379],[-3966,-11873],[1637,-15763],[-17477,-8618],[-12705,27083],[7216,8702],[2353,11338],[-4583,3488],[-11060,-4313],[-12627,6011],[-2900,-6087],[10642,-9630],[-13648,-3169],[-883,-21494],[-15330,-7935],[-10474,5572],[-14835,486],[2259,9153],[11069,6321],[-11586,11731],[-2054,-10436],[-14836,-3658],[-10786,9433],[4895,5833],[9597,-9695],[1052,11111],[-7156,19290],[-16540,28940],[-11341,-7182],[-10253,-188],[-11692,14648],[-7277,-2785],[-7528,-12164],[-21800,-21203],[-6097,-2447],[4286,-19946],[-15681,4116],[-9141,10373],[-9834,-752],[-1667,17978],[-7003,3178],[-131,20828],[-4323,13430],[-12963,4838],[5931,9642],[-11221,11619],[6462,122],[6319,17939],[-3928,12294],[10489,7043],[-3098,10831],[-17508,3460],[-14377,8834],[-24770,-20940],[-18518,5074],[-23086,-1811],[-5923,19290],[-29708,-17039],[-6409,243],[266,14873],[8349,4971],[-5099,11909],[-27623,2176],[-10770,9443],[-2771,11405],[-33074,20367],[-30226,15071],[4165,17667],[-6272,11132],[-13389,13588],[-17866,4971],[-17955,-1070],[-7088,7747],[2147,12612],[10307,8544],[13944,4576],[24091,16073],[8024,34464],[-4910,33524],[29,14301],[-10374,10992],[-3219,9415],[-22797,-2972],[-22310,-6302],[-6470,9077],[-7301,-13972],[-6218,-2796],[-15155,3349],[4490,7577],[8229,-1745],[2117,15155],[-5763,6630],[-17232,2185],[-22502,18709],[-20666,10334],[-10564,-1632],[-11250,-16926],[-1279,-8066],[-21137,-10971],[-10110,-8168],[-7222,5326],[-14600,34811],[-21298,18520],[959,10915],[14211,13993],[22302,66],[25463,18323],[7397,1106],[4704,11339],[-16798,3357],[-2352,4744],[3242,17368],[-8997,5870],[-14204,-4594],[-30173,21419],[-24790,19900],[5693,26932],[-3708,24776],[5504,15839],[13260,14741],[-10428,7785],[-10184,-1454],[-14593,4539],[-5259,-5589],[-6196,4819],[2755,16702],[-8532,4334],[-19768,25432],[-31833,4801],[5900,9330],[6492,-8654],[6167,4809],[-4278,18653],[-6242,6959],[-2977,16589],[7680,19225],[-4141,8035],[2961,11058],[-10206,9714],[9293,3882],[-8471,13823],[-36263,11630],[-15490,-3546],[-19075,-9292],[-13412,-1849],[-4475,-14367],[2703,-34406],[-8031,-11712],[-14874,-5721],[-28566,-301],[-8906,5899],[-3906,11854],[-17018,-4343],[-2908,11095],[7300,13617],[-6091,9996],[6410,11432],[16030,4838],[8579,37970],[-4066,28050],[-7116,7671],[-6859,-4135],[-21182,6132],[-16427,16402],[-18238,32972],[-7573,3723],[-5511,15013],[9841,-1791],[14531,3113],[15811,-14778],[5008,3544],[-9348,17762],[6181,16130],[-19517,24204],[-24029,6152],[2923,-7352],[-8685,-12632],[-6112,1453],[-16525,22573],[9354,13354],[14614,12369],[-15862,8927],[-4141,6659],[-6180,28855],[-13284,20396],[-6035,731],[-12446,-9667],[-13799,-35243],[540,-15575],[-4027,-12098],[-16442,7653],[10224,10240],[-4720,8093],[-14721,-9266],[-7803,215],[-639,-10953],[16982,-15913],[-7734,-6143],[-26131,3930],[-2792,-8327],[8997,-5121],[510,-6987],[-12226,3282],[-23710,45943],[3037,5289],[1759,22243],[12947,23922],[4256,32888],[-3389,13421],[-6051,7811],[-27926,-10372],[-18780,4979],[-8654,7324],[-3859,15436],[-9926,1894],[-19356,13280],[-6318,18681],[7056,10267],[-745,18343],[2626,18521],[-3099,19328],[-18480,1426],[-4347,-10315],[-7506,14778],[5854,14827],[8472,11300],[17004,13533],[11670,24362],[586,11123],[7047,32427],[-18685,11761],[-3822,22122],[8791,8684],[13336,8],[11075,4455],[12194,-646],[228,16973],[-6881,12556],[-13091,2908],[-10733,11028],[-4172,18174],[-19836,8627],[-2701,33789],[-4468,25010],[-9622,7437],[-4118,16571],[-15148,15726],[-38561,-2147],[-13944,7445],[-5099,46617],[-16213,18858],[-19837,26483],[-2619,11131],[-9628,3021],[-6181,9059],[-9675,-770],[-19303,-14788],[-5093,-14301],[2612,-12069],[-10596,-3433],[-25203,10897],[-6455,32072],[-16860,21277]],[[66757871,37708339],[4841,15362],[-10587,6649],[-37823,2598],[-21062,13766],[-17270,-188],[-7902,-13766],[-2610,-20200],[-10817,-17620],[-10611,-4296],[-19813,1941],[-21213,7531],[-22721,-1970],[-4530,12116],[14227,47723],[2961,14434],[10284,86499],[1682,30975],[6272,37699],[4833,20125],[29518,25141],[70935,68730],[48205,43625],[165395,143958],[26328,21127],[95665,58912],[9370,7455],[61047,56341],[76123,52487],[105850,61510],[2459,-1473],[80196,37258],[17195,26145],[5062,28340],[7954,25413],[21421,33957],[65026,55207],[20004,32185],[-319,9837],[75302,115092],[745,5703],[25562,64444],[14614,17405],[18450,12238],[28796,33207],[30478,17901],[18176,-1237],[103878,92107],[151229,135303],[34314,31912],[-10846,9828]],[[27424148,83557589],[113409,141],[160676,1780],[66694,1183],[200645,-413],[731807,-600],[4971,-806],[80425,347],[117830,-329],[269082,75],[479182,150],[56343,-1041],[535363,-601],[359791,-365],[103186,-1182],[173615,-365],[44125,404],[346472,-2110],[96105,-302]],[[31363869,83553555],[199,-163500],[-199,-549884],[-404,-429426],[580,-14440],[-1096,-1157524],[-4019,-3424],[928,-240426],[-700,-79017],[282,-500556],[403,-90439],[-129,-259013],[-526,-58574],[610,-241551],[-123,-146351],[791,-134852]],[[31360466,79484578],[-80851,-196],[-63231,882],[-93312,-1275],[-444001,-752]],[[30679071,79483237],[-78674,1163],[-350742,-411],[-584475,-611],[-16311,-769],[-304470,29],[-610985,112],[-36035,366],[-576482,-3676],[-318566,-1961],[-376895,3753],[-8846,683]],[[27416590,79481915],[617,596219],[-677,59221],[1621,73764],[-631,83942],[752,447271],[175,210812],[991,402306],[52,315917],[289,263327],[640,184770],[-342,22891],[692,217066],[-670,51343],[62,262850],[3547,169644],[-2131,5870],[562,244656],[1043,170056],[-426,88761],[1392,204988]],[[87688686,70823478],[16645,205],[8320,-21689],[13306,-12661],[10177,3874],[1865,8580],[-4780,13111],[6226,3646],[25355,-6207],[9765,2148],[9545,17836],[5405,2794],[3958,-9668],[13511,-5579],[5610,2794],[-1675,13963],[4780,9660],[7689,1716],[2907,-7287],[8107,1079],[-632,13954],[22439,9883],[9134,11395],[3327,13101],[16828,-8590],[428,-21475],[16205,5383],[8525,-9894],[10177,-1914],[3113,10953],[-9355,10728],[3327,13749],[14127,10530],[9346,-11806],[15170,-3431],[12888,-10523],[15596,-21906],[13921,-2795],[17874,-24467],[20361,-12453],[16844,-7080],[7064,-12454],[16625,-2588],[3317,12463],[8313,3011],[7063,-7954],[10810,-853],[4771,6227],[-7893,20622],[15377,-3873],[-4156,7943],[2702,9677],[17864,2571],[10391,-16750],[8106,-1285],[14956,5571],[1865,12454],[16708,8403],[10877,421],[5237,-5364],[-1171,-11796],[-8252,-6444],[-5663,-23829],[7352,-10718],[11761,15041],[15490,7316],[3593,-7944],[-9691,-7520],[5489,-9865],[9210,4313],[9903,19328],[-3662,9677],[14219,-4716],[3601,-9866],[-9179,-22966],[20285,-1706],[-4698,-11808],[2543,-7080],[13808,-1500],[5245,-6433],[18611,225],[16729,-5158],[6760,9228],[6508,-18052],[14637,-4108],[2855,7944],[-25811,29399],[9673,5794],[16700,-5166],[4499,-10531],[21664,1274],[716,-15257],[11547,1481],[2572,19741],[4506,7520],[6592,-4734],[-1379,-18052],[14234,-1080],[13747,12829],[16321,-11356],[8448,1913],[944,14807],[8487,-1068],[2482,-13748],[17241,-16112],[11218,4934],[-3934,26200],[19325,1277],[4576,3657],[-9767,11815],[4165,13289],[17035,-6227],[-1659,7737],[-17241,9021],[-2079,5373],[7071,8796],[0,9031],[23689,-6029],[6027,2569],[0,11816],[8320,12670],[6653,-1735],[9339,-10953],[8945,2579],[21000,23387],[10399,7089],[12048,-5804],[10810,2786],[11492,-2796],[3609,-15491],[-24266,-12417],[-1462,-11815],[11433,-2786],[6653,10728],[16593,3199],[9149,-12014],[8106,5806],[4987,-4943],[4582,-16327],[16418,20],[-7078,18032],[1454,6227],[14127,7962],[7482,-5589],[2703,-12237],[11226,-4728],[8724,3451],[9355,-12668],[14964,4726],[6844,24495],[15588,-422],[5609,-8815],[-9971,-6228],[-6013,-21484],[8517,-7287],[19746,-1078],[12879,8394],[-837,16325],[13091,217],[11221,-7727],[2297,-13543],[7895,9678],[18282,-4500],[17873,2794],[15170,-3854],[13915,13963],[-1248,12669],[11842,-1068],[15590,-6444],[-837,21260],[4574,4079],[19113,10],[6859,9452],[12887,-3010],[10595,10532],[-14965,8270],[-3304,9989],[10353,1763],[13480,-4690],[10786,-8946],[-449,-8974],[-8633,-4727],[1462,-26839],[13093,-4511],[10800,10315],[19540,-853],[19943,4727],[5403,-5589],[4987,-18033],[11433,-3443],[17248,2580],[21403,-8374],[5192,10512],[7483,-3854],[-7269,-21692],[7063,-7942],[24936,25769],[9354,-12668],[-2077,-17190],[8311,-1284],[6022,-9022],[17659,-5590],[6234,9669],[17667,-6021],[11013,206],[14546,9660],[14966,21907],[13084,4951],[7695,-1725],[6638,-29643],[12468,-2138],[4164,16523],[9347,13963],[12262,-1931],[10391,-8178],[-7277,-18239],[3319,-9012],[12467,3431],[6029,9875],[-5816,15024],[3746,9236],[11433,2138],[9140,16759],[9980,-3011],[20986,2982],[10815,38665],[18498,-656],[5396,-13308],[19752,7503],[4576,5589],[15383,6432],[2291,4728],[-2482,29633],[10391,863],[14333,-11178],[15588,-1078],[9553,-7531],[11433,-853],[13496,-13326],[18085,1923],[14538,-6237],[-12270,-19534],[6021,-9678],[6439,-638],[13436,8993],[10397,-9658],[23276,-10728],[7072,-7296],[-6022,-10756],[-2899,-15464],[10595,-3629],[14136,3441],[8730,-11170],[-11639,-5166],[-14751,6443],[-3319,-9669],[6439,-7305],[24732,-6847],[11843,855],[5199,-7287],[-11417,-14404],[3737,-4726],[24113,-5994],[26193,-23829],[7482,1717],[411,8168],[-8320,15239],[2696,20838],[8517,-3218],[12680,-14384],[4156,8167],[-1460,17396],[10390,-1717],[3326,-13962],[7064,-6219],[4566,11808],[9767,7952],[-6859,12454],[9553,2795],[5405,-5149],[7,-11170],[7277,-21906],[9354,-8805],[9971,12246],[11836,4511],[-3326,8815],[-12672,7080],[2069,10092],[9560,-1708],[7696,-15041],[10809,-6650],[6850,12464],[20156,-4079],[4987,4726],[-14761,10953],[-4156,15249],[4576,853],[19950,-12875],[3737,-9237],[-3112,-9669],[4573,-22347],[7484,-5140],[4780,5373],[-5832,37372],[12888,2146],[6439,-10530],[18291,2373],[6028,-24054],[7483,-10955],[14127,-2990],[17462,6010],[41140,-23199],[18490,-6649],[14545,-638],[13504,-5036],[5999,-9313],[3941,-19983],[-4566,-6433],[-10178,206],[-9764,6021],[-10185,-4080],[-1241,-10738],[6227,-10100],[17454,-1716],[7276,-4726],[-214,-17837],[-11630,-4069],[-10391,3010],[-3737,-7099],[11014,-20190],[-7063,-12228],[11425,-1726],[22440,22769],[5191,-9875],[7894,-3873]],[[90099079,70581363],[-3107,-179125],[-1247,-134439],[-5253,-285411],[-1719,-159403],[-1608,-86333],[-2055,-39095],[-3888,-203140],[-3091,-74666],[-6996,-260036],[-2458,-168697],[-1986,-53086],[-12285,-591830],[-3198,-28021],[-1704,-91433],[-6425,-172729],[-2869,-101233],[-7604,-366135],[29,-37145],[-3637,-129170],[-8603,-247797],[-4368,-161654]],[[90015007,67010785],[-10458,-4060],[-11076,12772],[-21549,17067],[-10077,-9020],[-245,-7944],[-11865,-5204],[-5458,11797],[8784,5054],[-298,6649],[-14554,8760],[944,20367],[-10579,-834],[3136,-7680],[-13900,-7419],[-6462,17678],[-12659,4276],[3571,11535],[-10079,422],[-2389,10868],[-15544,11292],[-18328,6686],[-6402,8656],[692,7952],[-9034,10513],[-8244,-10],[693,-7418],[-17073,-4042],[-17933,11395],[-8350,24119],[-11122,3761],[-15467,13062],[-9590,23595],[-13405,-1960],[-8981,-16234],[-9188,5093],[11913,12885],[-3083,3254],[-13252,-5213],[-8450,4642],[190,18351],[-10670,-3516],[-10482,4117],[3129,10474],[11371,-4585],[6844,13354],[7056,1903],[-5383,29381],[13162,2278],[943,4953],[-12574,14479],[-12362,3751],[-20460,-5224],[-4475,13870],[-6455,3864],[-5268,-5571],[-30637,-8927],[-2139,7680],[-15489,-5843],[-3480,8666],[-15398,1884],[-9736,5758],[1447,8863],[-8777,27336],[-13701,2016],[-6165,-6649],[-2374,9434],[-12522,169],[-11364,14741],[-29299,14348],[-10229,207],[-2626,11552],[-15246,7737],[-1332,10664],[10084,872],[8,27738],[5366,9332],[-24783,3253],[-5511,-5814],[-8045,4839],[5313,6339],[-6554,5572],[1993,12369],[-9490,-6949],[-9332,14384],[4429,16028],[-14158,-872],[-2680,9284],[-23641,8458],[2785,24738],[-4719,-4585],[-6706,8103],[755,8862],[-26977,8243],[305,16495],[-6806,-7202],[-5266,11337],[-5412,-6751],[-8892,4903],[2338,6847],[-16943,6704],[-11480,-13287],[-7147,3817],[-9142,-3920],[-18876,7999],[-7902,9020],[11029,17265],[-16342,-1904],[-11272,16862],[1096,7774],[-11228,1398],[2482,18868],[-6706,11028],[8799,9949],[-12871,3714],[2237,6180],[-16343,7371],[16047,5880],[-8792,11290],[-8000,-205],[6607,9790],[-8099,4594],[8351,3592],[6408,16552],[-6850,2578],[-6212,-6855],[-12026,4079],[2436,12727],[-4772,2373],[15900,21334],[2884,10980],[-9933,-299],[-4628,-6808],[-5564,25357],[-19128,12678],[-8594,-8392],[-2290,10503],[-25043,6864],[3829,9847],[-11029,104],[-8746,11899],[-16899,-2634],[-8054,8149],[-14211,-975],[-3926,-13814],[-13070,13814],[-15552,5514],[-3972,-14639],[-23756,9377],[-9195,-7886],[-3678,8450],[-13761,-5674],[-6660,4069],[-9789,-4220],[-1392,-8195],[-20027,6227],[-2482,-6283],[-13214,-6556],[-7063,6293],[-16297,3179],[-10435,-6649],[-7202,4538],[-19037,-3253],[-13213,3751],[-8496,-5721],[-1050,7268],[-14653,-12894],[-3477,7577],[-15810,816],[-5169,8196],[-12673,3441],[-1545,12013],[-7902,5054],[5960,8357],[-9841,-3882],[-3874,9237],[-11829,46],[-5511,-7174],[-9400,5823],[3189,-9846],[-7505,-2373],[-6219,10963],[-1286,-7774],[-9637,-1238],[-4026,-9490],[-9584,-1820],[4574,-5494],[-3774,-8873],[-9493,1698],[-3174,-6967],[-16403,10100],[-17637,-8103],[-12476,2617],[6707,5007],[-10238,5665],[442,8965],[-9088,-8712],[-13923,1377],[-7,17528],[-31353,-14254],[-8183,-13411],[5039,-10569],[-15597,-3422],[-4802,-8816],[-10481,461],[5297,15923],[-8760,-3264],[-18947,6143],[6166,6687],[-5229,10475],[-9500,-4146],[-920,11657],[-21238,2438],[1302,-10371],[-11082,-1801],[-21177,9331],[-2442,-5430],[-11708,1837],[-9582,-5757],[-6874,3958],[-14501,-10288],[-11342,2212],[-440,-10371],[-17120,-1594],[-20628,5533],[4910,-5411],[-3173,-15032],[-5351,14573],[-6273,-1163],[1386,-9096],[-11944,-1493],[-10906,-7324],[-12423,12052],[-5313,563],[2535,-11826],[-18909,-6808],[602,11430],[-12193,5094],[6919,-19122],[-9995,-2494],[-25506,4661],[7900,-4295],[-2824,-17021],[-9020,450],[-1369,-7165],[-13397,-582],[-6539,-8795],[4811,-8450],[6409,413],[731,-9312],[-10565,-760],[10245,-12032],[-15080,-11310],[-1598,9773],[-14645,-1848],[814,-8402],[-11667,-3086],[-5489,5335],[-13640,-4135],[-7459,-14619],[4847,-3367],[4538,-16082],[-11075,-2036],[-1317,-10428],[-16441,10110],[1932,-23623],[-3083,6996],[-9735,1425],[-10001,-13916],[-15308,-3432],[-11782,1143],[-10482,9472],[100,-6593],[-13900,-9350],[-8731,9978],[-8958,-74],[-21397,-10823],[-14181,873],[-16091,-10560],[-13930,-4511],[-5723,-6601],[-2230,-36470],[-6677,-7588],[-6164,2776],[-7056,-9415],[-14989,-338],[-9049,-9592],[-290,-10466],[-18542,-8637],[-9043,4671],[-11098,-5177],[-9727,-13298],[6484,-3255],[-4422,-9648],[-10899,-3040],[-13756,-20001],[-13160,7511],[-5108,-1819],[2947,-11375],[-17782,1622],[3927,-20200],[-6872,12388],[-328,-10137],[-6949,6471],[-244,-12707],[-9058,-150],[-221,9761],[-13000,-7549],[1408,-17040],[-7080,-2380],[-9627,6732],[2047,-8946],[-10269,-1811],[-9263,6874],[806,-9611],[-6857,-2974],[-7202,11319],[-2375,-16861],[-6217,6416],[-16816,-1773],[-3189,-8375],[-9880,1041],[-5160,10945],[13374,-1080],[1438,7475],[-12993,4717],[-2047,8797],[-12841,5006],[-9265,-3563],[-5426,4811],[-17347,-4726],[-1531,9621],[-8265,4604],[-22797,-3695],[-6951,-7324]],[[30833697,70814428],[332487,318],[385802,423],[20368,-2260],[232228,618],[266045,967],[432879,1640],[16769,-514],[340480,1677],[594272,2992],[149038,-609],[190018,328],[91638,788],[67813,1912],[453005,-4003],[53283,4538],[323658,1473]],[[34781310,66793371],[-367554,-3854],[-7210,1520],[-187019,-1407],[-147372,-403],[-176394,-2148],[-121529,-704]],[[30832274,66785204],[-632,115374],[586,68326],[342,272527],[2162,205410],[594,-10],[168,337571],[-450,137806],[700,156910],[-1050,115674],[-450,149613],[633,758527],[1841,434294],[-1789,854013],[3350,297602],[-4582,125587]],[[50612048,75010764],[-29366,-609],[-298267,1115],[-68528,-440]],[[50215887,75010830],[1195,330341],[267,262614],[1171,217873],[624,293262],[1219,434855],[-534,58066],[169,140733],[1102,201800],[1295,448049],[1226,165031],[-716,14413],[724,144079],[1514,398132],[-39,86023],[784,194119],[1242,161420],[-191,142203],[24137,-18698],[7978,1716],[12177,29858],[420,9875],[25201,58199],[3990,3432],[41141,3216],[21411,-4736],[38006,4934],[10497,-1501],[19318,6217],[6714,5374],[33385,7718],[25614,8581],[13435,-11],[16364,-16972],[8593,-30085],[-3782,-7727],[-2543,-48118],[3562,-16747],[7126,-12463],[-846,-20623],[24336,-13981],[39839,1669]],[[50603012,78652970],[374072,-267444],[3669,-3011],[152950,-109326],[394401,-281585],[106413,-75491],[270156,-194128],[39794,-29813],[333682,-238025],[9851,-10747],[32053,-19562],[22636,-6237],[27037,2569],[15931,7934],[46958,18456],[8806,6864],[43586,24354],[26991,18380],[16982,3011],[12574,-5787],[20764,-18248],[14470,-17612],[15735,-23623],[10062,-6216],[11942,-1717],[32899,12473],[34367,24504],[18436,7529],[22424,5159],[21799,440],[29343,-10944],[17607,-1285],[27873,9462],[16564,-853],[6501,-18042],[-3769,-16327],[5869,-13326],[8176,-2784],[32060,-1502],[65598,15475],[51348,-1726],[23680,-4511],[5869,-6012],[10687,-28142],[7544,-11169],[11524,-6236],[7543,863],[19912,11591],[26619,11169],[16767,17180],[27251,9021],[11738,7081],[32913,26417],[6500,7305],[15932,8374],[21587,1706],[50298,-4519],[33735,-8394],[18649,-9462],[28506,-23641],[10466,-10747],[21791,-9040],[10695,1501],[9432,6864],[2923,10100],[-207,21053],[12987,1285],[7124,-6874],[23711,-39724],[8183,-29859],[7139,-15032],[-1453,-25134],[2093,-6226],[19493,-6648],[35622,4734],[39817,-2127],[9219,2372],[24935,-4285],[31019,1949],[24730,-4069],[11738,-7090],[12155,-1715],[12574,-8375],[30173,-11376],[24944,-21043],[17393,-25996],[12788,-24915],[16761,-22338],[1888,-16327],[11531,-18690],[3350,-19543],[20955,-18690],[32266,-9884],[33735,2363],[23672,5804],[36872,-1068],[8168,-3226],[6074,-9875],[12148,-33084],[6705,-5806],[14660,1933],[18018,13963],[10899,14170],[4400,12246],[34154,21907],[6288,8375],[2724,24063],[-9423,6658],[12788,32006],[1470,16326],[14675,19113],[20954,8590],[13626,1069],[28703,-5167],[29549,5148],[40221,-9255],[28293,1706],[29342,22544],[15088,6002],[18862,-1941],[7534,-7091],[12773,-22571],[23057,-24926],[12156,-6227],[20748,-3855],[11114,-10953],[632,-17826],[6500,-7727],[14249,-7943],[14669,7736],[9210,18915],[20940,18267],[25765,18063],[21358,33299],[12346,38675],[-212,10962],[8784,31584],[7429,12031]],[[54578828,77351928],[-1219,-114032],[274,-72565],[397,-551000],[-519,-64566],[678,-46869],[0,-95692],[-822,-229764],[1211,-374069],[2550,-426480],[-2649,-119623],[-2612,-264903]],[[54576117,74992365],[329,-33619],[-122,-200224],[5678,-261311],[-266,-64190],[1454,-227589],[1300,-56810],[397,-95495]],[[54584887,74053127],[-6881,24804],[-8183,15990],[-12902,37802],[-1234,19814],[4095,19572],[7118,10596],[8769,27150],[830,17385],[-16289,12239],[-12637,-2860],[-4436,-6574],[1644,-14235],[-11054,-14892],[-19896,5636],[-10870,20349],[-2999,22984],[-11205,12980],[-882,9219],[-11394,18098],[-29329,77020],[-15170,10100],[-16304,-19187],[-7596,-13852],[-11243,-8214],[-10755,-2664],[-12523,6050],[-5639,9348],[3851,20115],[-10260,31426],[-16715,11271],[-22440,4868],[-25416,-1369],[-17103,-7690],[-24861,-28761],[-14713,-2477],[-9820,10916],[-11067,53989],[320,20546],[4667,37839],[-3707,8159],[-12240,10877],[-21709,8234],[-29389,-4725],[-28933,-13787],[-51378,-21175],[-29861,2918],[-7794,5026],[-4133,16777],[11964,41318],[23833,58038],[-4696,12577],[-14082,8524],[-14668,2148],[-27593,-2026],[-16373,-3985],[-14119,5870],[418,16252],[-7064,10456],[-17589,-5037],[-14851,-17668],[1895,-13268],[-4993,-14376],[-20689,-28331],[-17614,84],[-26107,18757],[-13086,2203],[-7817,-4033],[-12803,714],[-15306,14816],[6164,11544],[1805,14526],[53,32485],[-8380,14919],[-17712,11442],[-11258,-1772],[-7651,-12295],[5397,-18877],[7786,-11236],[686,-13371],[-5762,-24598],[16,-10054],[-11183,-41346],[-12065,-22160],[-3646,-12790],[-15412,-2955],[-19267,13438],[-17111,4221],[-23444,-1257],[-30462,12312],[-11843,-3685],[-19950,5223],[-5116,15596],[2665,22085],[20475,37501],[-3456,11395],[-8396,-319],[-26283,-8366],[-15140,-1501],[-15216,-6104],[-18678,591],[-8967,14113],[-13862,9163],[-9690,11355],[-35112,12886],[-19190,-5523],[-2283,20564],[-33110,19506],[-20301,2691],[-31521,-24062],[-9971,675],[-12659,12790],[-2389,21664],[7475,12407],[6621,19120],[1150,36368],[-2641,18370],[-5976,11131],[-11866,12211],[-26047,12172],[-17142,1697],[-20324,-2429],[-32478,-7615],[-25021,8188],[-9149,-2307],[-6523,-8413],[-9645,-26144],[-10990,-12492],[-17226,-24767],[-28217,-20518],[-11219,-2026],[-6523,3920],[-14174,28866],[-14569,17732],[-7253,15062],[-10192,33169],[-34154,32080],[-15087,21232],[-24045,15632],[-37153,12632],[-71923,-1332],[-15924,-8392],[-2405,-29652],[-10741,-16056],[-9118,-30112],[3722,-11111],[1354,-21588],[-890,-35523],[-6128,-18765],[-2694,-27017],[7664,-36526],[-798,-16300],[-9135,-3985],[-20262,5805],[-11959,225],[-22019,-14105],[-2597,-8186],[-11159,-7933],[-18245,5682],[206,28819],[7840,13399],[2124,11151],[13457,37407],[4308,25940],[-12939,4783],[-14098,-1472],[-28284,7202],[-4903,13710],[-7871,5982],[-30903,7241],[-12514,-3395],[-5229,-8929],[-2185,-15266],[7476,-4323],[7109,-12566],[8015,-23219],[1850,-46336],[-1828,-18877],[-20977,-9829],[-9538,-16261],[-8532,6012],[8015,15163],[-3425,7615],[-14782,7625],[-16304,14423],[-7414,-235],[-20666,22047],[-12156,17874],[-441,9255],[-16922,21757],[-18503,11600],[-17568,1276],[-17378,-6875],[-7939,-19795],[3401,-13260],[-3828,-22469],[-14774,-20838],[-8716,-1276],[-23588,3714],[-35554,-2991],[-10154,1049],[-8762,7503],[-890,19215],[4833,8655],[15186,-1087],[22165,4707],[8677,7203],[3312,17264],[-24723,17077],[-2703,13804],[3273,18325],[2802,55628],[-2976,9433],[-13778,14883],[-27395,4643],[-18937,-5861],[-14615,-8553],[-8130,-26258],[-16617,-15848],[-24799,-6265],[-8904,7803],[-2649,17751],[-14030,11358],[-11310,1688],[-12841,-4811],[-6943,-22761],[-14652,-6808],[-15329,357],[-22752,18662],[-22584,24091],[-16328,14741],[-11439,6359],[-26505,-5054],[-12825,-6603],[7421,-16046],[18016,-5701],[19555,4108],[12043,-8431],[-2331,-18230],[-23451,-18297],[-12346,-1256],[-16449,6659],[-20590,15886],[-1255,6105],[-20575,16298],[-12172,24823],[-14394,13043],[-30149,19140],[-29412,-11281],[-15018,-30899],[-19190,-11835],[-1362,-5907],[-11577,-8243],[-18512,11581],[-14172,-1913],[-29602,-18756],[-11098,-13936],[-15429,-5391],[-6532,2410],[-9469,13570],[62,12838],[7954,6010],[7391,16600],[-2322,21821],[-7140,-291],[-22918,31491],[-5923,16945],[14051,35064],[-891,18530],[-93798,-741],[-130862,264],[-71786,1500],[-392445,206],[-90786,1397],[-112219,-1490],[-121141,-10],[-78798,835],[-61822,-600],[-74046,205]],[[53605773,35541827],[-166726,-3179],[-393627,-6855],[-188024,-2692],[-288173,-5598],[-46318,0],[-48501,-4267],[-304593,-1886],[-442659,-2690],[-13002,-544],[-136417,-591],[-43950,2006],[-313163,-2325],[-306577,-2608],[-146822,-1575],[-290312,-1762]],[[38232578,91742815],[-236,36209]],[[38232342,91779024],[269875,1275],[264736,-442],[276686,564],[120417,-95],[600939,2055],[91525,900],[163339,674],[60941,-730],[79313,1547],[224858,1032],[44286,749],[112410,-674],[118568,-103],[169993,637],[152698,1857],[83973,0],[11449,749],[216477,0],[723579,2036],[48762,-1003],[250875,318]],[[42318041,91790370],[1012,-57814]],[[42319053,91732556],[373,-189130],[-1409,-346715],[861,-25975],[77,-116970],[-746,-331625],[-1112,-106071],[1173,0],[615,-108989],[-1195,-119856],[974,-156130],[267,-135002],[-541,-359159],[-67,-323008],[-3098,-1143587],[1613,-243897],[-236,-60495],[518,-194598],[-701,-136512]],[[54584887,74053127],[471,-29389],[46,-151432],[1050,-130342],[-631,-268691],[1666,-222768],[1295,-252618],[1781,-216175],[594,-159714],[844,-102564],[-616,-108097],[1226,-97172],[121,-110217],[1728,-146284],[213,-82261],[-928,-17649],[1712,-57251],[-510,-39500],[2139,-456190],[2298,-27476],[343,-29014],[791,-435109]],[[54600520,70913214],[-97627,365],[-114862,-1931],[-7376,-619],[-114471,394],[-608156,-1388],[-86257,328],[-135237,-863],[-295411,-882],[-605887,-1669],[-50191,262],[-449345,-4013],[-41781,647],[-130342,-882],[-25187,339],[-253746,-1502],[-51097,-1857],[-417739,29],[-98732,-834],[-180673,-281],[-19744,-479],[-163097,-347]],[[50653562,70898031],[-2458,168527],[524,8506],[-1873,180540],[-1256,75256],[-5258,474983],[-685,269143],[-1166,102967],[-928,161193],[-1934,121481],[382,57814],[-1142,69676],[-1873,231134],[-2405,176779],[-1934,37155],[-2663,322978],[-6364,615499],[-1827,162096],[197,71627],[-1437,94593],[137,48821],[-2559,184357],[38,43822],[-2085,42678],[723,59877],[-1781,207538],[-1887,123693]],[[63543124,39394327],[170693,539980],[69494,220744],[16755,56772],[21000,63339],[85959,264733],[85122,267904],[28111,89482],[98518,310234],[30500,105547],[23658,71299],[54416,167684],[28956,97022],[88631,271805],[20491,68720],[50534,159788],[22948,65559],[9698,33423],[43112,131073]],[[64491720,42379435],[362966,-318459],[242184,-198424],[21176,-18991],[28871,-29156],[16289,-23659],[39733,-24233],[120228,-108012],[33110,-29034],[11038,-18268],[14873,-4670],[23854,-21249],[-4185,-3180],[42503,-37080],[40312,-29521],[140002,-123138],[26337,-19460],[71710,-62755],[98976,-85469],[70287,-59848],[32927,-44827],[45207,-40989],[207754,-178065],[230819,-206873],[138526,-120233],[109685,-97321],[84178,-73184],[-3493,-7146],[34291,-19291],[46986,-40305],[149457,-132537],[19730,-18455],[90883,-79355],[65576,-59097],[23528,-24682],[4895,-8806],[58701,-50866],[40921,-37060],[199982,-178094],[137994,-121488],[130960,-114802],[123904,-109955],[148749,-133623]],[[66757871,37708339],[-116862,-108124],[-110835,-103287],[-22059,-19608],[-161331,-150485],[-108832,-99517],[-7672,-9801],[-109160,-130931],[-57902,-71233],[-113849,-136109],[-7909,-9968],[-127535,-152764]],[[55046294,30516797],[3328,274430],[2579,43533],[-183,112044],[336,127163],[-427,190884],[0,183119],[1173,342730],[853,85383],[1514,416081],[1820,263666],[-107,100961],[685,216315],[769,19770],[-610,221998],[-935,64248],[-457,317877],[-434,168377],[-77,171276],[709,28648],[-967,112196],[1606,30338],[259,42369],[-1242,40399],[1288,109607],[-4066,151104],[2422,30580],[464,112515],[1370,91564],[-62,116781],[1691,168734],[-769,55629],[678,28292],[-1295,244430],[4491,205449],[-701,139663]],[[59682733,32011217],[692,-88452],[-418,-186823],[-671,-901173],[-730,-247845],[83,-78575]],[[59681689,30508349],[-194387,-358],[-85740,-646],[-231229,-816],[-24548,3714],[-229281,-413],[-182094,1031],[-133411,1350],[-129567,555],[-77564,833],[-50543,1519],[-124877,629],[-24153,-947],[-488118,-1716],[-198475,140],[-100681,423],[-80509,-704],[-48593,798],[-35205,-3799],[-69502,1605],[-85496,-76],[-148519,2064],[-132156,-141],[-66214,703],[-9629,-1641],[-108978,-947],[-160592,1715],[-15451,-365],[-137194,1013],[-17683,4847],[-189418,-572],[-548913,-45],[-183868,-816],[-322807,-489]],[[43383197,79482000],[315209,1529],[223055,1491],[77273,-1153],[188505,872],[34466,-797],[34612,1134],[138183,1266],[71861,-1510],[51015,-10],[355605,3180],[163796,-881],[62052,169],[98024,-760],[107379,533],[159215,1642],[20163,-2157],[117646,835],[223237,619],[10399,7426],[425595,-542],[280089,-320],[76093,760],[30380,-731]],[[46647049,79494595],[-2177,-600496],[-1242,-29793],[-1005,-201247],[-2367,-268296],[678,-74000],[-1750,-213522],[692,-385314],[-130,-44909],[1379,-361119],[-350,-197691],[1521,-14508],[-943,-518965],[426,-34978],[-899,-199485],[-1209,-422213],[419,-93188],[-1782,-261179],[-304,-191653],[-1241,-374247]],[[46636765,75007792],[-206781,-132],[-58686,384],[-745988,-2568],[-152935,-404],[-141914,-853],[-390452,-1801],[-67013,-1134],[-216972,-1613],[-255221,-975],[-425680,-2307],[-53625,84],[-291490,-2055],[-131479,-562],[-423052,-3170],[-65888,-1219],[-39618,564],[-310087,-1229]],[[62584219,75011514],[-55199,301],[-251561,-562],[-282844,-995],[-138991,-2485],[-55497,-562],[-462846,-2926],[-144448,-1116],[-238050,-1125],[-232987,-1549],[-311154,-1762],[-252900,-1239],[-562064,-3543],[-86676,478],[-12027,-1023],[-68878,-384],[-418881,-337],[-455495,-367]],[[58553721,74992318],[31,772137],[152,1100572],[1797,42237],[692,105969],[-2443,14939],[228,519845],[-212,136540],[99,545710],[2283,102247],[3403,105611],[-755,103644]],[[58558996,78541769],[13132,-5947],[6362,-15670],[8747,-9031],[11752,-3440],[13221,-14818],[22463,-20838],[16996,-12885],[27068,-34379],[15110,-23415],[10495,-1932],[23498,-27495],[15741,-15905],[5244,-14385],[18466,-23633],[4194,-10306],[28736,-38458],[23079,-18484],[17621,-4725],[32098,-21279],[13632,-11178],[26436,-3010],[18253,-7530],[38804,-11826],[13427,-5805],[11319,-9246],[16571,-7738],[18870,-21492],[25583,-19994],[20133,-6021],[38820,-3245],[25172,4061],[23886,-10513],[10495,-14601],[2528,-18895],[-7748,-24064],[-20750,-32025],[631,-12885],[12186,-19327],[30638,-31781],[26633,-10081],[24336,-197],[18457,7521],[12987,26435],[1857,54137],[6492,24280],[21404,5805],[12165,-5148],[16364,-12023],[23072,216],[22865,-7718],[11752,-9669],[46561,-14591],[5876,1715],[22440,22780],[9219,25132],[7764,3441],[45944,-16533],[62925,-16749],[11745,-4726],[17621,3217],[40685,-19974],[24327,-22348],[38387,-62521],[3348,-12239],[20758,-29858],[25796,5580],[15939,11385],[12376,17827],[5245,1716],[41096,-40615],[37527,-26652],[13845,-1933],[50535,-14412],[22431,-8610],[17605,-11178],[19495,-17415],[9431,-13099],[8159,-32880],[-1271,-18473],[16769,-20622],[34800,-1078],[11540,-3592],[15764,215],[23048,12211],[32708,-95],[19068,17480],[16965,33741],[420,14611],[12986,24927],[9012,5158],[24746,2371],[19287,-6864],[17613,1942],[26422,-1923],[31039,11178],[19296,-4932],[8808,-10317],[6294,-25347],[12583,-9228],[13214,432],[12369,8589],[22637,26859],[23482,8599],[21808,863],[15102,-13964],[17194,-10307],[19288,3218],[19082,-6865],[6289,1285],[32303,27063],[9858,22348],[16982,14818],[27470,19983],[11745,3432],[26010,31575],[6081,15043],[10702,13315],[43417,25554],[20133,15897],[24968,26407],[32304,19975],[25179,25985],[13428,19544],[19104,12454],[36917,843],[27258,-10325],[15734,-10746],[31870,-13552],[32509,-9687],[56715,-24485],[17621,-4933],[47612,-3629],[32297,11620],[16145,14188],[27676,13757],[25171,657],[17409,-13533],[34617,-17170],[2939,-4070],[30842,-22338],[16152,-16534],[18878,-13316],[49918,-20611],[37336,-37597],[7551,-15031],[13206,-17837],[15102,-15249],[3363,-16110],[16776,-18259],[37322,-29005],[11950,-2147],[37328,6441],[21595,-10100],[5030,-22984],[-2937,-15464],[-9439,-12678],[-18870,-4934],[-24951,17180],[-14888,-6873],[-10794,-24494],[-7,-10972],[22454,-9997],[17354,-25526],[14288,-5552],[22478,-1952],[61068,-62362],[50519,-50048],[19632,-38243],[23344,-32128],[14402,-32624],[3950,-13157],[27295,-22188],[20446,-26184],[38462,-35813],[23314,-37257],[26177,-33554],[47376,-57637],[21115,-3432],[16266,-11666],[15010,-5306],[20195,-198],[21968,-21746],[18123,-11180],[8206,-10370],[3378,-15991],[11387,-10972],[32639,-3075],[22303,5721],[42511,17386],[15682,8730],[24973,31190],[16609,38356],[6614,6076],[24160,1004],[33332,-8233],[22189,-3573],[22644,355],[20216,7943],[20211,18457],[4529,13099],[1513,23174],[21138,36067],[20675,10943],[14636,4079],[45991,8216],[27760,-929],[24738,-6789],[12917,-18343]],[[37065813,58608688],[123,-290382],[1278,-464789],[53,-450883],[182,-225093],[-67,-284277],[-344,-276981],[291,-492454],[-176,-340151],[-876,-477392],[1226,-428357],[465,-354244]],[[33174237,54523282],[-236,392730],[-1156,427306],[471,139279],[974,407782],[-700,716957],[647,111210],[228,407632],[-1279,488122],[228,147306],[2642,141050],[929,104580],[-366,155596],[-631,51718],[700,76589],[-593,131166],[403,187002]],[[73599917,30635998],[287655,-382630]],[[73887572,30253368],[104943,-48708],[18062,-6874],[31003,-16590],[48632,-22365],[279389,-130520],[27143,-13785],[79268,-36958],[103406,-47311],[67744,-32466],[3906,-7700],[16075,-9451],[-197,-16769],[14286,-6010],[11905,5157],[4963,-3001],[7345,-29014],[15475,-20191],[11912,-39536],[12697,-10747],[1987,-7953],[-8929,-13316],[-593,-9452],[14485,-12895],[-1188,-16974],[21746,-37220],[4879,-15024],[199,-17836],[14090,-9237],[6348,-8815],[15467,-6658],[6347,-11610],[-11896,-18042],[7733,-18916],[11501,-12247],[-2375,-10943],[-9521,-10100],[5745,-7522],[16861,-4520],[11508,-12247],[7537,-19552],[-5161,-15474],[-1790,-16758],[9722,-11178],[3174,-19122],[16456,-11178],[15871,1069],[4162,-6874],[-21427,-36309],[-593,-26005],[-4956,-8806],[4354,-39096],[8921,-29231],[-2975,-13109],[2778,-6442],[13480,-10532],[9325,-13110],[-206,-17406],[5154,-24062],[-7339,-28800],[1790,-6658],[9316,-3442],[3167,-10746],[17248,-33095],[0,-8149],[-8534,-26005],[2978,-10530],[12293,-16112],[32913,-13334],[15854,-17838],[0,-11816],[-6546,-15256],[2376,-11817],[16251,-18698],[2579,-14395],[-5753,-18052],[0,-12248],[15063,-10315],[22789,1490],[13086,-7737],[4361,-12238],[7924,-6235],[12688,-864],[16252,6658],[30332,2571],[13868,-13541],[4758,-12896],[-1995,-24287],[11091,-24495],[-1195,-15259],[15064,-9892],[28734,-873],[15658,3217],[11105,-1510],[10695,-14188],[4551,-12033],[-1393,-9884],[-8525,-9667],[2375,-15474],[29123,-21925],[21998,-1951],[12688,-7512],[23909,-6245],[6887,460],[5482,11394],[7725,6226],[8716,-1500],[5953,-11591],[-4150,-24063],[7339,-16326],[15657,430],[13868,10541],[3563,9238],[9111,6451],[9910,-2569],[7536,-18906],[24579,-16326],[12689,-15033],[6940,-18905],[-980,-24711],[5951,-25995],[-7915,-35035],[4384,-16983],[14295,-9284],[3372,-12463],[-2772,-15689],[6341,-8168],[16450,225],[11889,-13749],[12286,-30289],[7,-12247],[10108,-13965],[2968,-10314],[11891,-7297],[19021,-6443],[11890,-13541],[10503,1511],[-3372,-33949],[9918,-15689],[13077,-10953],[7529,-11394],[7330,-1932],[6934,7307],[983,9884],[17239,5804],[27928,-13532],[6539,-11169],[-3167,-11610],[-8517,-7520],[-6340,-16112],[-15018,-13738],[-23925,-8365],[-22971,4079],[-4179,-9021],[2367,-15266],[-6554,-8817],[-15482,-29455],[-2968,-15257],[1195,-20199],[7527,-15259],[24761,-20837],[-396,-8158],[-11090,-4304],[-24563,1931],[-15247,-2157],[-3364,-5580],[2771,-13326],[601,-22347],[5352,-3647],[15840,-648],[8121,-9668],[-9309,-6442],[-11487,1069],[-11683,-5589],[-17423,-2374],[-9904,-11169],[18026,-18689],[8129,-18914],[19204,-9651],[15451,432],[17227,-6658],[23367,-2147],[19608,2155],[8715,-10315],[2184,-27721],[-9498,-49851],[1978,-18259],[10498,-15689],[25939,-26858],[2376,-13531],[-3364,-9453],[-6532,-217],[-12476,9876],[-5739,-422],[-9704,-10110],[3569,-12032],[13069,-5147],[11677,2579],[23757,12893],[16236,4511],[8912,-3442],[4157,-8806],[6333,-37389],[-6729,-18257],[-16821,-30291],[1385,-17837],[11675,-38252],[-1978,-11383],[-19791,-10100],[7,-7522],[12089,-32663],[7519,-10737],[10490,-6021],[19599,-2147],[38593,3011],[11478,-4295],[5938,-15473],[-8510,-9885],[-18216,-8383],[-2572,-12033],[2968,-10314],[10291,-15042],[15840,-10729],[25324,-4304],[46311,6218],[21967,-4727],[19090,-12623],[5975,-14469],[-1438,-11038],[-9735,-28977],[-4759,-34605],[1957,-11806],[9089,-12856],[28765,-15352],[13214,-14020],[9795,-19392],[3060,-20810],[-6227,-16777],[-10664,-11694],[-22401,-15230],[-2466,-12397],[5535,-6826],[34708,-22319],[6638,-9464],[11311,-43137],[11600,-21588],[3221,-11581],[-6449,-20030],[1851,-14274],[7125,-6227],[7512,4502],[20179,-2363],[601,11815],[-6722,14826],[1584,4728],[13458,1069],[17210,-8815],[23939,-6452],[16213,-15052],[4559,8590],[9492,-5157],[9294,-12258],[7308,-21483],[-10483,1294],[-21754,16120],[-15825,16552],[-11471,3873],[-5540,-8375],[981,-22563],[7308,-24288],[28483,-28800],[10048,-5578],[11120,6376]],[[72196518,25472882],[-17955,29578],[11159,16616],[-5657,7568],[-15475,2663],[831,14010],[23749,6097],[7535,9302],[-6905,11751],[-12718,-3668],[-9796,6613],[3812,13372],[22486,-2842],[12019,-10343],[7483,2822],[1924,10137],[-7101,19309],[2725,4212],[28385,-6593],[7991,12332],[-2862,13653],[-23869,12830],[-1051,19589],[-4270,9735],[-6165,-1820],[-16991,-28348],[-8531,-3462],[-5406,5083],[-4079,37061],[-9872,16664],[-14622,5890],[-6782,-14582],[-10985,1209],[-9126,5927],[-5572,14085],[2458,9932],[12879,7192],[20895,2288],[-2892,15296],[-11752,12369],[-12530,1613],[-13533,12537],[-1454,10512],[13480,4164],[30341,-14778],[4948,-12117],[16989,4605],[6492,6152],[-2420,7605],[-22942,12998],[-13861,10681],[-19607,10615],[-5298,8234],[-1523,15221],[-7246,15078],[-10070,3339],[-16662,-2025],[-7962,13438],[5670,22029],[190,15032],[-4834,9668],[-13213,13814],[-14485,20078],[-10047,23444],[-10794,40258],[4939,58461],[6494,61050],[22629,228281],[41858,407380],[18108,171940],[17317,172374],[-4894,23003],[-6205,15735],[-2511,22489],[-5443,18690],[-13442,9724],[-35258,-5429],[-10200,1021],[-2086,18100],[9432,20106],[9880,10333],[23346,12885],[21077,22272],[15504,19318],[8601,22029],[3746,18005],[-1432,17584],[-10846,29249],[-243,15924],[14629,31761],[13891,23257],[10406,32223],[3988,19261],[-1043,17500],[4643,12068],[14273,14011],[7154,11920],[-8532,22909],[-4530,37332],[-7505,8976],[-63086,19392],[-25218,19347],[-23511,28752],[-8845,31997],[-14729,36441],[-28818,46290],[-12690,30703],[-8548,25487],[-4992,8074],[-26854,24870],[-5184,22930],[1637,11525],[12413,25817],[3389,11759],[-5108,39744],[6470,27683],[10154,24231],[6248,28144],[-3249,10784],[-22980,27017],[-38584,14583],[-5160,4781],[-20902,43598],[-6143,20406],[-16845,32888],[-4361,28799],[-7528,13326],[-17044,11169],[-35348,1818],[-8060,4184],[-19358,19730],[-14713,18747],[-10649,8026],[-19668,6340],[-38021,7887],[-30737,10831],[-28756,18681],[-11022,580],[-21480,-4463],[-7924,-13541],[8,-8601],[7132,-11814],[18633,-19338],[5754,-11168],[-197,-13120],[-6927,-16552],[-6935,-6873],[-32296,-2814],[-26557,12462],[-57462,22413],[-15405,3330],[-16450,-5796],[-5358,-14611],[2558,-38477],[-3579,-22347],[-4955,-7520],[-32897,-11591],[-12278,5598],[-39428,8402],[-33089,-12021],[-43988,-2991],[-29329,3300],[-24227,-4182],[-19760,-17583],[-22394,6451],[-26155,15052],[-8121,-2571],[-13472,-12677],[-25370,-13757],[-8717,-1932],[-21989,11815],[-9309,18700],[-1980,31594],[5153,5804],[29527,3864],[12879,6236],[7132,11384],[-6142,12905],[-8123,5804],[-990,10532],[11098,13963],[5162,16767],[-7726,18052],[-6736,3657],[-40229,10325],[-8890,5478]],[[92770547,48728291],[-3381,-12143],[-14514,-10409],[10914,-6912],[27448,13616],[19274,-4408],[8905,2739],[14797,18944],[19121,-3554],[12049,12452],[8937,-3647],[1803,-15407],[12803,-22629],[-19395,-45877],[-11348,-23302],[-13268,-12351],[-16434,-23202],[-2945,-10155],[-1926,-27290],[5215,-23416],[-4675,-26989],[-18777,-30083],[4619,-7999],[13838,4819],[2634,-3900],[-4780,-19103],[6669,-3508],[13062,2064],[32820,18118],[43631,5401],[24160,6676],[9774,6303],[2192,12548],[-10611,8768],[-823,14900],[5284,3677],[14088,-2719],[3678,19412],[-13680,-1707],[-11303,-7522],[-5487,2513],[1781,11817],[6895,4211],[20195,281],[6393,5402],[31193,12941],[4302,31602],[10807,14892],[16563,6574],[26962,1904],[11304,21241],[18329,7793],[15840,12556],[11447,2383],[39810,2428],[21289,3029],[9971,-2786],[14251,-16091],[7292,-3498],[21069,4042],[9576,10419],[-6234,21689],[3835,3133],[19577,-1454],[11031,-3619],[12430,-13214],[11538,-5841],[23658,-4830],[2701,3460],[-1924,27064],[11447,2213],[6204,-5410],[890,-21073],[9240,-2794],[16443,17189],[7977,36967],[20566,24448],[11379,4867],[6371,-3206],[-5266,-21448],[1264,-14761],[33726,-4528],[13146,8223],[17043,6367],[19333,10644],[16717,-1537],[26206,12932],[12209,-5693],[4727,-15163],[9401,-1350],[12324,26810],[-17592,17771],[2367,9396],[9508,13589],[29032,-10297],[9955,-1481],[14806,8534],[19036,6826],[10945,-4099],[686,-11561],[-15224,-8534],[-1567,-7634],[6408,-5196],[13359,2514],[19600,11676],[7315,93],[13259,-13006],[4758,-18240],[-1317,-16712],[-6912,-12088],[906,-6873],[20179,-14968],[8555,-18042],[24617,-17546],[11471,-25620],[21298,-17011],[7277,-2691],[18260,7849],[28217,19092],[25559,2664],[32252,22075],[15223,20687],[11798,6734],[70843,57983],[5466,17039],[-10124,36039],[-420,13175],[29238,1528],[16456,9435],[8152,-488],[22028,-14076],[21899,-8516],[7117,-7379],[20096,-32551],[-4521,-15136],[-8306,-11375],[-12391,-34256],[-1812,-23305],[8031,-21417],[6256,-4465],[10543,-30758],[14005,-25451],[9865,-6471],[20719,-1801],[28377,-8289],[20871,22215],[6311,3001],[17057,-7990],[21489,10212],[30721,4323],[13548,-2176],[16890,-12237],[34315,4360],[17483,-16617],[10848,-15341],[13152,-32748],[11083,-7051],[17515,4698],[19273,13812],[12019,4184],[4948,-9256],[-14379,-24467],[-4544,-17772],[1545,-28610],[6332,-21316],[17225,-21766],[16914,-36882],[16631,-56389],[274,-40089],[-8829,-3996],[-11501,7446],[-24427,9303],[-17460,13147],[517,7127],[9538,8993],[4673,11030],[-4781,7389],[-12749,-6425],[397,-19693],[-7978,-10577],[-9576,-56126],[5999,-23061],[11850,-14957],[16114,-46513],[892,-9087],[-5374,-21812],[-6905,-6499],[-30317,-16064],[-952,-13260],[13663,-31716],[20150,-18999],[16402,-11789],[35318,-4642],[29763,-8570],[13206,-5947],[190,-12876],[-21198,-6311],[-9545,-11036],[-10702,-19000],[685,-13261],[7520,-1772],[32928,3105],[8792,-10259],[-5853,-10447],[-16511,-8740],[-9894,-9903],[-306,-8187],[7155,-11235],[16472,-8683],[2399,-9631],[-8015,-24767],[6659,-11610],[18056,3508],[6128,6572],[5091,20988],[-4757,36846],[12240,9134],[7642,-16008],[2854,-28133],[7841,-22150],[-3160,-16289],[-7976,-7475],[-229,-9172],[9842,-16401],[7308,-4868],[32182,-5325],[24440,5336],[6075,6929],[4658,17040],[8861,6264],[43821,-25977],[6301,-10015],[-6546,-5288],[-16638,-4192],[-7049,-6575],[-517,-9020],[11897,-15877],[12141,-4277],[29487,-1004],[6935,-11383],[-7757,-5514],[-22044,-7128],[-15832,-25422],[-19638,-12745],[-1004,-5834],[12588,-25272],[15583,-20434],[-3464,-23482],[-14690,-25123],[-830,-19019],[-5267,-5139],[-25903,13111],[-13230,-9585],[-8419,-16720],[-3394,-22272],[-11220,-30891],[5145,-17751],[23643,-5598],[25202,-9098],[12666,-19898],[18024,-9369],[26025,-21531],[9987,-12764],[-1607,-18492],[-7688,-6950],[-27926,-2184],[-4202,-5824],[3151,-18878],[16937,-19683],[20985,-15595],[32280,-15333],[11471,-13982],[4430,-18652],[-3995,-9013],[-14227,-8974],[-22309,-4502],[4467,-13334],[22874,-12220],[38272,1181],[655,-10981],[-20270,-8234],[-10620,-7904],[-5258,-15117],[2762,-16449],[12080,-11797],[1127,-11733],[-6479,-1780],[-28322,6939],[-21168,-1866],[-4500,-6114],[8244,-12914],[12256,-5665],[10496,-16935],[-8258,-33658],[-1242,-24147],[8593,-25714],[19806,-29924],[18140,-20303],[776,-15370],[-12612,-10465],[-1043,-11282],[16966,-13710],[1112,-18333],[10953,-12014],[46324,-3478],[18976,-8271],[8260,-9059],[-3951,-10428],[-19692,8580],[-7162,-122],[-8716,-11769],[-3843,-16712],[5777,-7679],[33970,-3798],[9751,-9369],[-6088,-11018],[-15247,-12276],[3980,-14020],[25774,-10653],[-39,-8413],[-12101,-7660],[-43205,16795],[-16243,1969],[-3928,-5129],[-1453,-22555],[-4835,-30046],[3144,-9556],[28210,-6573],[3927,-9782],[-1400,-24756],[7467,-11169],[21289,-13430],[18132,21485],[5031,-928],[-2245,-23388],[-23071,-17227],[-6919,-35092],[5739,-16618],[11394,-4904],[6835,-8740],[504,-14010],[-4506,-7325],[-15643,-8851],[9392,-20200],[6790,-6320],[25409,-10504],[14317,-2109],[20300,1040],[22479,-2767],[12718,-9378],[9660,-11553],[12803,-7107],[16456,-160],[22516,-8374],[11913,18],[35309,10259],[10224,1089],[8341,-5196],[49264,-47433],[16503,-22206],[12155,-32016],[2961,-17208],[-8678,-18352],[-12704,-14695],[-3379,-8468],[3913,-11075],[19029,-8581],[17652,-2522],[6554,-7746],[7414,-19506],[16775,-18569],[4194,-11609],[-5350,-18971],[-21923,-28208],[-22219,-17827],[-4345,-16786],[17788,-28724],[11152,-10513],[13510,-5139],[28758,6658],[7178,-9434],[10404,-40652],[-3812,-17621],[-30173,-33310],[-13177,-17002],[-8008,-38495],[-16609,-20923],[-4323,-9733],[1523,-14864],[35600,-30310],[16731,-20827],[1948,-26530],[10672,-24335],[-2542,-8693],[-45244,-18174],[-12887,-17087],[3403,-9649],[28186,-27065],[18831,-23256],[13091,-24055],[13444,-13532],[24021,-17358],[8854,-15144],[1430,-20228],[-11630,-50621],[5108,-22347],[-556,-14856],[-16945,-25376],[1387,-24485],[12346,-11515],[10184,459],[17104,14039],[24038,5851],[15429,-5063],[5937,2204],[33072,27298],[19304,7137],[28788,-4989],[23748,-441],[29899,12893],[11387,-299],[31186,-8853],[15063,-11281],[-206,-14545],[-9111,-12042],[-6075,-17048],[382,-15004],[16859,-69996],[7719,-16739],[12240,-15154],[23482,-10213],[7566,-10456],[289,-11056],[-6501,-17133],[-5571,-25686],[-19501,-28124],[990,-15379],[7215,-6818],[12019,3338],[10526,12436],[9965,6217],[12300,-300],[21069,-7493],[18816,-19384],[5870,-2279],[3173,9097],[-5304,11975],[4444,26671],[-7566,7577],[-11379,-5233],[-8830,-11525],[-10039,-2054],[-10048,11215],[2687,11741],[17659,38881],[10954,12510],[11813,683],[12939,-26510],[9834,-11516],[10748,-4623],[27852,-290],[8060,-7044],[6508,-18107],[25819,-31369],[6296,-5449],[23824,-10531],[8488,-13486],[9477,-31593],[8486,-19168],[-5304,-12725],[-6136,-1286],[-16061,17416],[-12864,-461],[-9544,-8712],[-1553,-8411],[5799,-26136],[7141,-8947],[14492,3265],[6851,23791],[4811,2879],[10039,-12801],[13869,-30610],[4583,-30234],[-3746,-16138],[-9820,-16139],[-23108,-17808],[0,-10156],[19159,-17574],[426,-10456],[-5937,-2964],[-26650,1745],[-5791,-3115],[-2687,-11815],[5396,-21194],[-9835,-5570],[-7123,3057],[-17614,-4417],[-4476,-27703],[-7010,-4284],[-29245,769],[-14492,-1923],[-21969,-18089],[-12999,-1932],[-11821,-6780],[-4667,-20585],[11547,-10485],[15391,-4584],[19959,-9763],[5266,-9021],[-829,-14461],[-8054,-19515],[-12399,-10934],[-14486,-2157],[-25620,7427],[-14690,497],[-12248,-7841],[-2093,-12941],[18130,-16832],[5573,-13907],[-4080,-15511],[-3197,-26642],[-3266,-4756],[-16320,808],[-11630,6921],[-15422,-7982],[-3235,-15435],[5054,-10691],[21267,-18764],[-9452,-17396],[-17751,-6302],[-7368,-6264],[-1584,-10672],[5344,-28715],[-2641,-6424],[-15118,-2531],[-19972,4903],[-12727,-4510],[-2070,-7109],[1743,-28246],[-2375,-12491],[-16222,-16082],[-266,-15370],[6060,-4183],[47664,-2034],[4682,-14321],[-3936,-16120],[3433,-7353],[15976,-14741],[-4208,-13232],[-9957,-196],[-14295,11243],[-11432,3142],[-6220,-3396],[-14545,-20171],[2078,-11666],[18938,-17320],[17225,-23378],[17386,-18597],[731,-13936],[-10558,-10953],[-1933,-7567],[3896,-16140],[17424,-25572],[396,-8337],[-6379,-27919],[9211,-12218],[20034,-2036],[19089,6837],[16654,-3610],[21017,-26417],[16486,-9894],[15254,-17620],[-1134,-21728],[-22173,-23098],[587,-13711],[15003,-8909],[22248,694],[12187,-6471],[944,-12190],[-6188,-13617],[-3951,-20275],[-13473,-15922],[-12156,-5543]],[[95709643,43971035],[-403825,2560],[-53358,901],[-140125,-113],[-271814,882],[-5192,516],[-465230,2043],[-20262,-477],[-104700,514],[-193839,-83],[-701239,1022],[-259112,1416],[-153832,487],[-59144,-385],[-354212,273],[-71125,-403],[-4680,-1810],[-346486,1509]],[[92101468,43979887],[-173914,909118],[1333,12021],[-101008,528858],[-13710,69818],[-104303,548513],[-5686,25002],[-26253,141576],[-4208,34623],[-11967,65522],[-59949,318206],[-7095,39743],[-95070,503265],[-12734,69237],[-80220,429088],[-13503,73802],[-95887,513883],[-31344,151066],[92,4351],[-19183,110798],[249574,149491],[23680,15211],[271991,163519],[8912,5824],[176944,106194]],[[74933911,53313486],[59555,-107647],[109648,-192817],[47299,-85646],[79770,-141716],[34283,-62091],[58977,-102536],[95595,-177990],[274396,-508967],[5686,-8731],[331293,-602793],[3776,-6255],[225611,-411138],[78135,-143256],[40577,-75593],[110181,-198987]],[[76488693,50487323],[-182537,-111098],[-35517,-25217],[-402623,-250302],[-119930,-70323],[-43021,-27908],[-33134,-23294],[-189449,-117513],[-22614,-13233],[-138778,-87119],[-289260,-171612],[-31605,-16008],[-135039,-80639],[-144387,-84447]],[[74720799,49408610],[-10474,-6104],[8183,31059],[-1516,18877],[-16929,-11750],[-218867,-138013],[-44627,-27298],[-29267,-19282],[-81400,-49130],[-124749,-80000],[-102895,-62691],[-4948,-1631],[-283712,-192601],[-297269,-190238],[-94248,-58825],[-24077,-14368],[-298113,-189073],[-210031,-130989]],[[12679973,44939053],[24090,-2925],[147264,-38009],[119383,-28620],[241634,-59933],[103072,-27552],[158292,-36648],[386031,-95428],[565727,-139749],[83348,-21033],[44788,-10297],[207533,-51465],[500617,-124930],[229432,-57214],[188757,-47479],[65482,-16093],[583569,-145871],[88922,-20340],[27798,-7539],[774753,-190960],[59827,-14630],[228711,-56959],[71275,-16908],[150948,-37484],[11091,-3197],[179615,-44114],[474149,-117952],[89636,-23229],[310901,-77807],[386319,-96647],[112403,-28312],[224607,-55750],[113986,-28049],[500958,-124509],[35828,-13026],[440446,-107019],[280280,-67932],[198772,3245],[28217,966],[536697,-1051]],[[21655131,42906604],[1985,-102142],[4218,-248295],[745,-75734],[2848,-177925],[4948,-266384],[2557,-151686],[647,-148111],[190,-173986],[692,-60457],[648,-279843],[-320,-38026],[68,-227391],[-221,-243606],[-91,-599773],[540,-1073630],[-274,-5412],[4546,-403814],[586,-303661],[120,-347558],[-335,-111736],[1409,-212303],[1819,-155990],[2139,-216719],[1637,-225854],[700,-35223],[1035,-155473],[990,-49749],[1202,-120871],[1416,-197879],[898,-41712],[5008,-496694],[580,-81782],[3713,-354104],[1021,-79692],[3440,-164271],[1629,-393547],[4552,-328670],[-212,-6480],[2961,-199502],[-199,-25387],[708,-1146794],[-701,-73907],[-311,-150625],[494,-218220],[228,-519987],[466,-94069]],[[21715850,32121930],[-5969,-2672],[-18086,-23407],[-26647,-12012],[-53321,24869],[-4385,7606],[1241,20095],[-18200,17782],[12667,37012],[-14364,26511],[-21176,3481],[-9096,8271],[-21077,-7849],[-35098,-24401],[-14316,-301],[-27198,-12117],[-11257,6388],[-3753,7099],[-11030,6301],[-20468,1097],[-11075,9613],[-13083,2176],[-10125,11816],[-3973,13493],[4819,15596],[-6441,10784],[-36110,2955],[-12079,9434],[-12956,3478],[-10625,-3310],[-17736,2954],[-18146,9031],[-19852,6152],[-23634,1772],[-14927,-11431],[-15306,-3911],[-14851,-7549],[-9218,19646],[-9263,7878],[-24220,-14132],[-8610,337],[-15521,19919],[-9490,6010],[-26779,6292],[-24662,9650],[-33240,-4229],[-8526,-10184],[1674,-18981],[-10237,-13851],[-20269,-12068],[-20340,14676],[-8349,14525],[-20986,19591],[-20391,28573],[-14257,4792],[-13237,-1547],[-26085,-9462],[-24571,-16289],[-24441,-8721],[-32717,4792],[-19113,5524],[-1742,6207],[10786,29738],[-11327,19477],[-27159,16120],[-5076,8393],[-17492,9416],[-33119,-7202],[-27463,-1108],[-16145,-5439],[-14736,-674],[-34252,16674],[-18710,5955],[-12475,-2607],[-22120,4837],[-6045,-1294],[-16448,21278],[-18010,-8468],[-11584,6977],[-15712,1089],[-22880,10419],[-17690,-3282],[-16891,3619],[-11158,10588],[-6813,1406],[-12467,-24401],[-18002,-12584],[-28537,1818],[-17400,10541],[-42322,18493],[-13982,17499],[-18102,5655],[-38043,22890],[-59455,10147],[-20385,15267],[-36696,10945],[-27888,18276],[-33470,19299],[-30294,-853],[-9712,7662],[-28865,13880],[-16547,11458],[-9668,2148],[-13685,12989],[-7940,-207],[-21077,14349],[-17193,6207],[-13002,8431],[-6720,14123],[-19312,10868],[-32205,25283],[-8456,2110],[-19814,14516],[-11227,3555],[-33423,28696],[-8792,26249],[4202,26454],[3600,9490],[-5884,3733],[-17666,1960],[-26094,11741],[-11623,11591],[-23055,4266],[-16191,12219],[-3273,9697],[-14608,12257],[-7032,11900],[-10550,5993],[-17104,-13326],[-23292,4847],[-11721,-2606],[-14288,6461],[-8510,9857],[-21298,31096],[-18465,11853],[-18344,18878],[11387,21475],[-4415,6770],[4506,11901],[-3996,11554],[-9006,6488],[-18747,4304],[-6119,7568],[-23490,3095],[-4240,7625],[2877,26849],[-3509,12771],[-20735,8610],[-15725,26698],[-29557,29333],[-20445,6050],[-34298,-6425],[-16267,-11872],[-12863,-12970],[-26071,6303],[-2961,11610],[1286,18464],[-1545,26398],[-4170,17884],[-7049,10615],[-21000,-9725],[-7224,-10211],[-19212,2165],[-15033,13035],[3904,12642],[-3608,9555],[-14333,12483],[-12581,5091],[-19258,-9742],[-3912,-9810],[4270,-13992],[-800,-12368],[-8952,-9632],[-18839,-4444],[-7612,7351],[-7945,35796],[6020,23668],[-98,10784],[-9150,21570],[-6311,-4146],[-9209,-17273],[-14067,-9434],[-13982,2531],[-11692,12492],[-8822,20641],[5061,21672],[-21274,25366],[-10718,7127],[-7992,-10034],[3432,-21249],[-5205,-8329],[-29496,-5503],[-12019,16467],[-20430,10221],[-18565,18961],[-7133,13055],[1218,7324],[11594,15980],[15268,9602],[1363,12285],[-12003,10156],[-18414,-4980],[-14126,10682],[-5855,10635],[6669,24447],[6478,13242],[-9128,10455],[-23992,11198],[-16600,-7765],[-10498,1913],[-18320,10493],[-5200,36264],[-14454,5956],[-12050,19645],[2702,20210],[8457,21813],[8176,450],[3410,7933],[829,30816],[-11524,15661],[-28058,6536],[-9955,13541],[-12035,22910],[-12666,10297],[-3569,7465],[-14539,11824],[-5167,7982],[5936,29323],[-3425,12548],[-10397,13195],[-26854,9995],[-21298,17819],[-20483,5392],[-4057,8328],[-17020,4753],[-10817,11244],[-16982,6706],[-8288,8553],[-4439,15125],[-8754,11386],[-20870,14056],[-13816,18981],[-6135,19412],[20408,16046],[15208,15398],[8753,31883],[-3661,24196],[12750,28227],[3759,17967],[-2488,31537],[4581,22648],[11777,23632],[-8533,14170],[-12530,5617],[-9209,11676],[-9493,5166],[-12360,779],[-29672,-14546],[-14234,-1163],[-14698,-7136],[-13473,-2335],[-11296,-8402],[-6066,-10484],[-24182,-12688],[-11509,24523],[-5838,20350],[-7056,41776],[5251,30479],[-4612,23397],[-9020,19910],[-18656,18183],[-19685,-3715],[-18998,12221],[-15871,13963],[-19448,25029],[-17712,15219],[-36460,21636],[-30524,-5693],[-14927,3714],[-8943,8524],[-6371,26211],[7878,12604],[-7094,18314],[-26831,6377],[-19669,-6434],[-16731,10054],[-235,5908],[-13176,10803],[-18581,694],[-17530,4445],[-38698,5580],[-20971,13129],[-13655,-3968],[-3630,3292],[-22059,1979],[-18573,6987],[-3494,23575],[-9894,8619],[-19746,8618],[-45761,1200],[-62918,-10400],[-4789,11966],[8418,24963],[-5785,23548],[-16974,22666],[-14432,6950],[-18640,-3734],[-20848,-23490],[-2475,-6030],[3647,-20087],[-1242,-32167],[-4818,-14881],[-6088,-2363],[-15141,10670],[-19051,3254],[-24982,-3637],[-9690,-4409],[-10505,-10361],[-1795,-8797],[-9332,-7549],[-16945,-2278],[-15071,7960],[-28977,22564],[-41082,34210],[-21601,13514],[-18580,18886],[-36902,25404],[-6142,6865],[-31659,25817],[-37319,39620],[-19396,25687],[-12262,6114],[-26520,2317],[-29594,-15428],[-16129,7887],[-18276,20556],[-20482,28499],[-20415,21550],[-27014,32682],[-14417,11460],[-4667,10333],[7392,20163],[-1309,16523],[-7772,13194],[-5754,22921],[-10733,22299],[-1302,9079],[3897,19776],[-4681,11714],[-10488,10766],[-44346,35448],[-35600,24475],[-50764,37483],[-21555,13823],[-21459,17574],[-65088,47058],[-68573,50807],[-26109,17660],[-38271,29193],[-38212,27729],[-15725,16758],[-8495,23922],[-11204,8010],[-25042,-2486],[-21344,11675],[-10178,-1059],[-2952,-8618],[-11396,2120],[-6317,17339],[1340,22674],[15489,19375],[-2153,26615],[-11296,4520],[-14553,-403],[-22783,-6762],[-5815,-5102],[-6782,4699],[-8024,50573],[-10647,13129],[-3098,13017],[4315,14677],[-10162,6001],[-20224,-2400],[-22014,-6940],[-9582,1510],[-15277,8195],[-8068,15970],[166,31229],[-7587,3516],[-14341,-1190],[-12454,3235],[-24646,-4295],[-4385,12162],[-9438,5797],[-15,19486],[3966,11535],[-13489,6058],[-30758,-13091],[-4583,-9640],[-7436,-2533],[-9615,4868],[-16806,-6041],[2276,-10389],[9165,-13974],[-8243,-15106],[-7498,-3648],[-10399,9414],[-9118,18203],[-19281,16946],[-9705,15003],[373,10617],[-12231,4875],[2048,12191],[10548,-6938],[10254,4913],[-1590,14892],[8623,5786],[11889,-2589],[2307,6724],[-7863,14584],[-7977,-282],[-6294,11543],[-7910,-2925],[-14051,7324],[-15269,1444],[-6203,18211],[9323,6453],[-493,15623],[5008,3891],[-3068,9013],[-15795,7051],[-6789,14424],[-14661,15219],[-7176,13598],[-9736,1464],[-6714,12885],[-1683,14048],[3404,28527],[-1615,13860],[-12171,18521],[-10733,-5852],[-6744,10204],[1988,12930],[-11433,7879],[-14546,-620],[-10344,-17751],[6188,-13149],[-10482,-8945],[-12368,2213],[-6409,13428],[9384,40034],[-2185,12866],[-20451,33789],[-16587,15848],[-5641,646],[-11615,13626],[-9712,-618],[-2420,8403],[8236,18849],[10831,10736],[9895,3959],[20315,-3310],[26070,12725],[24922,21738],[6896,17413],[-3843,9801],[-21123,12332],[-18680,5411],[-9133,-967],[-51601,32241],[1713,14376],[-11540,4296],[-6280,12406],[19152,38224],[-3021,13260],[-9486,11591],[-1894,11749],[-5976,7560],[2650,14056],[13228,3882],[-4080,22798],[-7437,10128],[-9012,-656],[-5989,6179],[20490,10514],[-5967,14168],[-14311,6030],[-15778,-13513],[-16123,1575],[-4696,8712],[5435,15297],[17043,8458],[1629,8421],[-23103,18577],[-502,18981],[5710,7717],[14629,9079],[4902,8354],[-115,11846],[-5624,21821],[-21222,7915],[-8776,-6658],[-13816,910],[-8813,11356],[6371,22806],[-5001,5290],[-14737,-6030],[-16030,3217],[1065,13354],[10360,13579],[28285,-1960],[9293,8026],[8123,-2991],[13519,4305],[8342,-5749],[-2466,12942],[4460,9631],[-4606,5184],[-7184,-5381],[-6965,17066],[-12309,5759],[-10450,-11525],[-5328,7708],[-10620,27749],[-15208,768],[-5275,14274],[-13312,2429],[-22296,20078],[-33484,19186],[-6302,8824],[-1834,15746],[6401,16073],[876,13475],[12111,-6339],[14826,21456],[-8493,10607],[8152,1032],[14073,9406],[-11531,2194],[-6455,12529],[670,21362],[-15597,5748],[2786,15427],[15825,15324],[-1271,22927],[-13923,14339],[-10130,23069],[-9447,14527],[-1089,12529],[-12369,3854],[-4665,11366],[-5900,2692],[-5768,-7100],[-1667,20125],[-32450,9190],[-2009,19722],[2946,5336],[-2641,14526],[5366,7360],[-12796,11761],[4909,9472],[-5624,9630],[-18596,14845],[8077,12229],[144,10934],[-13975,7268],[-16556,4632],[-30127,-3459],[-1782,9790],[-10115,11252],[2002,13149],[23969,6311],[9545,8712],[495,17273],[-23489,29963],[-6607,18305],[-15415,21549],[-12619,-7689],[-2231,-11328],[10185,4022],[8959,-4172],[-2186,-13814],[-16213,-15173],[-8197,1810],[-10709,28161],[-17919,22375],[-8342,20445],[-3699,19693],[-15071,17986],[-9332,1022],[-2398,-10288],[-9767,-8],[-13464,10746],[-283,17931],[-10731,-4164],[-9029,1640],[-5494,10288],[6172,23651],[206,12595],[5047,13401],[3584,23528],[-9971,5739],[1720,-10391],[-25621,798],[-6097,4192],[-4773,15829],[-6508,3470],[-16425,-3788],[-17918,7277],[-5381,24916],[1864,2964],[27105,938],[15436,3169],[30531,24823],[-1917,11131],[5815,6462],[-2939,8543],[6417,7493],[-10945,12575],[-54,12801],[-11051,141],[-12119,23491],[-1537,11056],[-13107,2204],[-14105,-16580],[-9036,-1069],[-4162,-7099],[1110,-19280],[-5922,11075],[-15862,-10364],[-18162,7512],[1019,19000],[6997,9406],[13845,9518],[3615,8346],[-4482,8975],[1871,10353],[-9803,9284],[-14037,5195],[-13983,-2794],[-18930,10211],[-8023,17988],[-3052,32175],[4499,34096],[-1668,33995],[-9552,10512],[-191,14002],[-14263,31556],[-4629,5663],[-23002,11564],[-2907,14489],[-23514,-3734],[-10801,8976],[-2016,12951],[-8419,9846],[-20271,12576],[-3120,6151],[4886,15679],[-6142,26053],[-5572,1471],[-18085,20331],[-8997,6546],[-1531,11412],[-10176,7278],[-351,10954],[9280,6686],[3760,9771],[-8000,9602],[-11783,-336],[-1651,-15474],[-17431,-13391],[-8123,957],[-11212,13371],[-2237,12952],[4848,20809],[62,13729],[-8344,30242],[5633,5769],[-5359,15359],[6753,7165],[14660,517],[7580,6086],[2285,19120],[-5138,9181],[-12370,1933],[-13716,-9556],[-25424,3517],[-2830,-7954],[7497,-13287],[-3715,-11694],[-12004,-6734],[-13990,5158],[-4628,14526],[2261,18456],[-1659,14122],[3896,20144],[-25088,23257],[-14417,4745],[-10031,-6217],[-20993,-2467],[-17469,19655],[-959,9829],[10192,15755],[-10406,13165],[-1019,14405],[-18772,23190],[1370,32852],[9440,18221],[-10277,2663],[-5205,12893],[-14418,648],[-6417,7099],[2611,25367],[12910,-14404],[5792,1200],[7650,12454],[1271,10755],[-4285,7568],[-14333,4849],[-7116,14057],[10701,21194],[-8145,11366],[8861,9716],[6264,-13223],[8899,-6039],[6972,6226],[3677,15116],[-5778,16675],[4399,13053],[-21404,19974],[1827,15652],[12583,6977],[1690,14668],[10694,4661],[-7330,8542],[6035,8271],[9637,-684],[6150,-9724],[8152,-882],[-3249,18257],[11684,17012],[-1942,13552],[-7801,6761],[-19060,-6246],[-14273,-75],[-13906,-5786],[3470,9949],[-9963,6303],[-15406,-10157],[-11463,2383],[-1173,8382],[11259,27506],[4855,34914],[-221,26688],[7467,8008],[2139,13898],[-9971,2326],[-6035,8413],[-11776,5916],[10214,8122],[6135,-3414],[7369,4736],[5115,16580],[12247,5683],[4203,8140],[-2574,14245],[-5869,5532],[-15124,-2091],[-20430,-21137],[-22096,-8065],[-26641,1143],[-2093,9717],[-8130,7801],[11814,8788],[8539,22618],[15627,7944],[-3028,25592],[6332,20969],[9978,64],[6638,19882],[1187,30234],[-14453,3666],[-21581,835],[-9423,4257],[-9400,11592],[-587,13729],[30554,205],[10026,15484],[-1401,18052],[-7018,19355],[-6616,1931],[-2206,11394],[7611,10748],[-9819,10963],[-15033,-11394],[5412,-12248],[-13716,1781],[-5991,6641],[-783,11619],[5176,12002],[1308,16309],[-5016,8917],[2375,8882],[14477,8290],[6196,-5702],[754,12791],[9325,10785],[-5922,13401],[-1416,12632],[7276,10737],[-2831,8112],[-19395,18192],[-5450,14827],[-8343,3864],[-25612,27],[-26443,16730],[-7522,28],[-14362,23613],[1218,21532],[12125,18034],[-2178,7061],[2848,21644],[13283,26989],[-2543,17957],[11623,2871],[5145,6002],[21488,8411],[-8167,12586],[-7101,20967],[-15621,12099],[-18777,23744],[-22158,33374],[-10185,1446],[-6088,12724],[15237,34202],[12317,11946],[-9263,28894],[7802,11394],[12239,7868],[-10199,26004],[190,13550],[15741,5308],[14956,-1884],[14874,4408],[15710,13437],[11890,19178],[-22,5843],[20269,9105],[-2153,5992],[-11616,4511],[-4020,19394],[5191,6002],[38380,-1989],[5107,26239],[-5830,-8047],[-12043,-2082],[-10161,14995],[6104,15765],[17698,13214],[14644,16176],[-6446,17695],[12658,14095],[-9782,6068],[-3813,12735],[-3814,-14488],[-13473,-5749],[-2428,7043],[3334,13465],[-6515,12904],[3813,13476],[11060,1004],[12491,13214],[5154,13063],[-2574,18305],[5588,19946],[1401,20707],[-3129,4669],[-9873,-6611],[671,-12594],[-11274,-10888],[1910,-8956],[-8723,-5354],[-13610,9677],[-10762,-1940],[-3814,36048],[-13146,18379],[7003,9951],[6167,16580],[1171,15398],[5321,7887],[427,14301],[13024,-7981],[-4667,-8291],[2969,-6394],[25180,-3695],[10130,19018],[336,23557],[-9805,5457],[-22652,4098],[-11570,-3179],[-3897,10523],[3540,8055],[-5458,14244],[4019,15596],[9620,-5223],[4324,3695],[-2716,10670],[-6616,5777],[-9034,-1388],[-8960,5506],[-1423,-11525],[-10161,3216],[-2323,11723],[8625,17039],[1072,10146],[-8388,31107],[-4901,4941],[3106,60037],[-10786,20921],[608,7539],[15787,-5542],[776,12641],[10414,-1659],[4855,15295],[-311,10672],[11166,7962],[8313,-11676],[6484,150],[-137,18943],[-5267,8018],[10747,10063],[14311,-4023],[-677,15117],[9286,16523],[-4704,9069],[-20172,-3573],[-7816,11740],[8387,2786],[-973,10578],[-9843,6995],[-996,9201],[19904,10830],[4353,14901],[-20087,13223],[8609,35908],[5792,13936],[1949,19984],[-3706,26792],[-5199,13935],[1180,10840],[12132,26220],[435,26118],[2990,8233],[-6217,21466],[-5855,5815],[6410,29558],[-24069,32128],[-14180,27121],[-7962,33759],[-21047,8430],[-9332,13215],[449,9695],[7277,22114],[-6987,26633],[-21488,10775],[-792,23865],[-3319,19665],[586,16056],[-12186,10128],[-16699,3966],[-6600,17583],[9621,22545],[9546,5299],[-1173,13391],[-20058,36151],[-20467,17517],[-12232,19628],[-5876,3732],[-7475,18691],[1659,9874],[24297,17753],[10123,57953],[2399,22517],[-15453,6377],[-38295,21691],[-4316,18736],[-9423,15276],[-8996,4314],[-8693,18990],[-9432,12726],[-2922,17836],[-16792,4642],[-24372,24505],[4559,15192],[-3166,11786],[-29214,19104],[-12247,30937],[-18094,12988],[-12216,14225],[-8114,2757],[-19038,-1443],[3501,-13842],[-5191,-15407],[7522,-4718],[3896,-12331],[-4826,-6536],[-9332,3188],[-13441,16804],[-8388,15765],[-10741,357],[-25537,6527],[-10405,7088],[-20880,985],[-8349,8591],[-7004,15228],[875,7466],[14744,21784],[7407,43963],[5701,14057],[-7976,11629],[1590,-11582],[-20187,-13560],[2711,19525],[-17020,-2298],[-6715,-16393],[-17042,8299],[829,8956],[-6013,6883],[-7041,-5739],[7575,-8580],[-8450,-13382],[-15946,2242],[-2208,10578],[5847,11412],[-6234,5523],[-15240,-3019],[-3585,9461],[15346,12614],[20467,42444],[2908,20743],[-1872,28528],[-8868,23988],[-2581,44788],[-9863,40962],[-3829,25339],[-24434,23576],[-11464,-2373],[-7101,5963],[2290,21550],[-15939,-14676],[-19927,-8140],[-7078,-7802],[-7871,376],[-12293,12912],[-9310,3040],[-16023,-10466],[-9315,3610],[14,18522],[14576,8814],[7688,9368],[382,22029],[-15864,15088],[-6431,15446],[-24655,26032],[-8349,3976],[-15895,-1790],[-17628,13710],[-7468,11562],[3838,26858],[-16563,582],[-3860,3573],[2314,26566],[-4955,6172],[-22569,11093],[-18741,31772],[-10831,3629],[-32769,3291],[-21015,15728],[-16511,5166],[-12559,535],[-13968,-6273],[-3066,11730],[6729,15117],[341,21457],[5938,15427],[1012,18212],[-25004,19655],[-19007,4746],[-24617,32953],[-6765,-6528],[-10147,19196],[-8298,7091],[-1065,16945],[7894,4651],[22781,-947],[20673,8308],[11829,8816],[61,44151],[3974,17535],[14812,9509],[5717,17707],[-2703,31395],[-12377,3621],[-19942,-10504],[-7247,1773],[-20535,16833],[-4187,10607],[3607,16476],[9347,14338],[10512,7212],[4270,10371],[-2754,10561],[-8974,5242],[-18688,-10353],[-42906,-6866],[-16938,-8073],[-11865,1997],[-12697,-3591],[-24145,6799],[-23748,2278],[-9195,18822],[-22501,13456],[-7825,7568],[-22705,10438],[-7392,18755],[-14622,22225],[-13258,7381],[-27152,8956],[-38119,41065],[-4377,13362],[15581,22480],[9925,20377],[13459,49187],[-7635,4125],[-5725,18183],[-3120,35487],[-5748,8402],[3830,17255],[12041,12604],[21253,8065],[8091,16749],[25035,-1849],[2565,3255],[-9409,40062],[7741,12894],[-3668,12997],[-6462,5131],[-5564,-4108],[1461,-10953],[-4140,-8057],[-12164,-4538],[-7094,7559],[-320,8401],[-22249,6144],[-8517,11806],[3242,12575],[-3296,8515],[-21359,14929],[-5038,-4407],[-7239,4914],[-1074,9397],[7316,20763],[15915,19429],[1728,16918],[-6309,13842],[6279,20208],[-3472,11910],[-12125,16871],[-18541,2777],[-14120,10006],[-24891,-2832],[-571,15528],[8389,15755],[8982,4183],[-2101,16308],[10702,38016],[-4689,14659],[-9294,9218],[-13518,4952],[-8092,26247],[-3753,21982],[1126,11290],[7696,2926],[1698,12848],[-2306,17153],[19584,11130],[617,20837],[-5587,25640],[-7847,12228],[-13672,32598],[2687,15548],[-495,25095],[-7239,7605],[-9810,1388],[-1774,9969],[15521,35437],[5121,4137],[11213,-2420],[2534,6884],[-2206,25009],[8212,42473],[-2999,18820],[-5686,1089],[-21770,-6443],[-22021,7258],[-5441,6659],[7741,20500],[5229,39273],[-9774,22479],[4278,28020],[5580,10785],[2329,20143],[-8959,12013],[-1925,15652],[-6881,-1125],[-3624,-11198],[-15506,-10962],[-9065,14639],[-9150,25328],[664,20745],[-6890,1696],[-6736,-7390],[-21542,-17],[-14660,10962],[-639,6263],[7506,13692],[17871,7258],[10147,-524],[-2945,8412],[-15437,10062],[-5024,9059],[-7825,262],[-5206,7916],[13898,12875],[8709,-17433],[8061,-3873],[5023,4528],[3600,51138],[-13023,22826],[-16532,9228],[-12774,2437],[-18313,10728],[-4994,6894],[-2504,26492],[-9027,26323],[11714,7765],[11889,21109],[-91,24739],[-11425,9],[-3243,-7043],[-6796,5589],[5945,20565],[-1622,4690],[-15186,9601],[-9483,-2380],[-7210,11946],[5695,4295],[5321,-6190],[3143,7034],[-8000,11817],[-11456,-2749],[-12012,2326],[-11683,13832],[981,16730],[6486,12698],[936,22376],[7642,20630],[-6089,22113],[-17689,36414],[-685,21156],[-18551,13448],[-4802,12144],[-15513,15436],[-10846,14967],[-9341,3263],[-5259,24186],[-2079,24756],[-14042,27234],[-23490,7867],[-22478,-2326],[-15109,-6648],[-8518,4210],[-19913,42107],[8930,4256],[6249,30385],[4985,12228],[-4399,12332],[4362,13100],[-8328,-3094],[-13359,7586],[-5100,44386],[-3227,6929],[-15429,13308],[-15763,-1012],[-11608,-18465],[-6737,-29409],[-5648,-6536],[-10078,-845],[-18451,4315],[-19044,17986],[-5648,11562],[-11388,8535],[-12688,-7869],[-7437,225],[-3272,10682],[-10574,-1013],[-9248,-8947],[-8594,1107],[-9652,14911],[-11127,1022],[-17363,-7117],[-10337,5317],[-17963,20208],[83,12426],[-6874,11656],[-13115,151],[-6272,5833],[-16980,6583],[-35145,-19919],[-24783,-4782],[-16648,11909],[-13167,5881],[-14158,17405],[-5701,12528],[-11600,13730],[9507,17855],[-4864,7774],[-20781,8393],[-8381,27570],[-11386,10325],[4658,16984],[-8244,15547],[10101,13805],[-3013,20124]],[[66132599,7264050],[274791,-48736],[350390,-62474],[103390,-17958],[298762,271],[441983,451],[113704,749],[359578,5017],[33704,-562],[96098,1501],[224630,2222],[231124,1932],[19349,3075],[382041,5430],[550115,7952],[197593,-11037],[159168,506],[310765,1285],[491536,2036],[302733,533],[137850,723],[59813,-291],[245448,-2156],[187462,1294]],[[71704626,7155813],[7193,-23755],[33857,-73474],[20094,-48661],[25004,-74122],[4058,-25141],[2367,-34577],[4079,-32990],[-1072,-26727],[2048,-22310],[11798,-39901],[29373,-114344],[40594,-151412],[37715,-152052],[31360,-117202],[1196,0],[60955,-229689],[130898,-588399]],[[72146143,5401057],[-427588,-15285],[-142065,262],[-202047,-694],[-287715,225],[-131806,-309],[-163712,206],[-153894,-310],[-73553,-853],[-117807,103],[-29526,-47113],[-3197,-11422],[206,-30121],[-10953,-17761],[-14759,-32523],[-13473,-66123],[-4765,-27617],[-5572,-8092],[-36178,-40082],[-26939,-38533],[-14699,-30908],[-6895,-7344],[-26763,-17171],[-24914,-26098],[-14195,-22910],[-22257,-11281],[-33606,65],[-10794,-5673],[-13708,-26022],[-3059,-14367],[973,-37586],[-7277,-33564],[-18594,-65578],[-2978,-39847],[-10351,-37211],[-7155,-12330],[-29884,-36770],[-15268,-27984],[-2101,-17996],[-7301,-11956],[-12209,-8178],[-19188,-5074],[-20964,666],[-23300,9284],[-7039,11723],[-2139,21324],[-19075,26220],[-6426,2495],[-35501,-2447],[-8883,5513],[-5686,14742],[1827,17847],[4500,8702],[8167,29727],[-3638,15193],[-12027,10652],[-9630,1811],[-34967,-2673],[-9758,-3714],[-8663,-8778],[1309,-14667],[30964,-25010],[18681,-41806],[289,-8693],[-12080,-16729],[-14950,4539],[-17987,22740],[-16335,14283],[-23778,14573],[-25210,7765],[-21450,3684],[-23901,-168],[-30661,-3433],[-21913,-6527],[-20819,-10305],[-15276,-12398],[-17020,-7915],[-9598,-122],[-29672,18663],[-10495,-10720],[4665,-12932],[20964,-26594],[9065,-42228],[5557,-11123],[18397,-14752],[4811,-12096],[-959,-18399],[-15323,-27328],[-21702,-25301],[-9498,-5044],[-14996,-1200],[-25758,3769],[-14029,7802],[-4246,14366],[4292,9500],[7383,3714],[27617,-1219],[12635,4183],[8852,9827],[3494,11178],[-2611,14190],[-7605,11834],[-19454,19299],[-24419,19666],[-12612,6498],[-21930,-2109],[-25994,-8122],[-20583,-21446],[-13625,-28790],[-9810,-36490],[2975,-29661],[435,-40766],[6005,-42864],[-670,-16665],[-12499,-32137],[-168995,30280],[-300557,52797],[-148726,25752],[-193756,34762],[-42801,6922],[-60407,11233],[-40783,6565],[-162246,28284],[-63206,13298],[-77413,14656],[-71101,11976],[-36216,7717],[-60026,9745],[-121164,22140],[-36506,5617],[-164428,30018],[-18261,2814],[-233590,43034],[-38902,6678],[-186526,34678],[-27912,6311],[-43516,7502],[-247512,45343]],[[34783480,70824716],[-17013,743852],[282,67614],[-760,39367],[-617,241497],[-5169,124751],[-3152,161344],[-1636,112758],[-6386,316734],[343,5149],[-6120,395403],[-1142,100352],[-692,11317],[-15126,805269],[-5160,255281],[-525,44365],[-11753,655102]],[[85224660,61124813],[8494,-21071],[-5122,-36949],[5968,-20153],[-23353,-9949],[-10847,46],[-3441,-28086],[1233,-8252],[-10291,-32111],[-4536,-7004],[8136,-5777],[-737,-19834],[2564,-10410],[-16852,-10784],[2223,-9170],[-7391,-1033],[-9553,-23087],[-6265,4725],[-2946,-13493],[6798,-3658],[16122,-27776],[-5223,-3968],[6798,-25564],[-16495,-25872],[8426,-9895],[5914,1089],[20150,-13345],[692,-5982],[18428,-22367],[-19478,-5758],[-9577,2400],[-7831,-16916],[7458,-11742],[1911,-20190],[3662,-4379],[-350,-17527],[15094,-17761],[-7,-12791],[7535,-8704],[19068,-12341],[1278,-13222],[9873,-9950],[-815,-18671],[-19052,-10728],[-13938,3075],[1980,-8805],[-6736,-14460],[-1629,-33039],[6736,-11806],[-9522,-24250],[-7201,-31773],[-4415,-3854],[4065,-11882],[-10337,-2578],[1971,-6153],[-7893,-22674],[-6858,-1295],[350,-11947],[-5914,-20669],[-10337,-16532],[-7558,-1228],[-4415,-11216],[-12658,3357],[-12081,-14020],[-5807,-15390],[-10451,-5288],[-3137,-9594],[-30081,-33121],[814,-46421],[6623,-4154],[-8252,-22825],[7787,-12163],[-4651,-15379],[5458,-3433],[-5107,-16889],[11037,-8797],[4293,-15239],[-17301,-10727],[-10687,-2440],[-13009,-12444],[-27874,-13597],[-23232,-2373],[-21252,-12866],[-5929,-23895],[11502,-12593],[-3250,-9078],[-13360,-1220],[-16844,10738],[-14165,-14030],[6272,-17741],[-11852,-10372],[16960,-13599],[-3601,-20817],[5458,-32476],[14523,-25049],[9873,-12810],[22416,-21024],[12194,-14235],[-9873,-7578],[-4765,-13738],[5116,-18605],[6271,-10090],[10679,928],[17660,-11666],[7428,8018],[17311,2935],[13821,-1501],[6616,-15595],[-6736,-5655],[15337,-24326],[1164,-12988],[-4301,-4257],[-15336,787],[349,-13157],[11038,281],[12201,5938],[19974,-9154],[3949,-17451],[13360,-1229],[-14980,-31322],[-3136,-12950],[9872,-10232],[3136,-14460],[-5116,-6358],[-13357,-5515],[-1623,-9303],[11380,-10727],[-9873,-8741],[-14515,10372],[-5115,-6564],[2793,-10381],[-1163,-16449],[6621,-1865],[4758,-11742],[15679,-7652],[-4292,-14302],[8243,-5363],[14867,5279],[3600,-8636],[-10337,-12529],[-1158,-16598],[-16493,6649],[-4995,-16441],[-22880,15239],[-15330,-21821],[9407,-2580],[-5114,-21689],[7087,-9144],[-16146,-20031],[14867,-14827],[-1507,-5786],[-12658,855],[-702,-15736],[-17308,3065],[-1980,-14225],[-9058,-13588],[2322,-11385],[-3950,-22319],[-8593,-4933],[-5573,-14235],[-13008,-15304],[9523,-9163],[1163,-7511],[-6393,-13804],[1629,-10953],[-11843,-21541],[341,-7361],[8724,-10383],[-1286,-21174],[6735,-14808],[18474,-14094],[11379,4370],[10483,-1501],[7832,-7756],[18206,-6630],[13444,-12959],[9461,-13710],[16585,-11967],[31193,-35625]],[[85142886,59064766],[-12658,-11085],[-3136,-9518],[7437,-8365],[3601,-17818],[-1979,-14386],[-11030,-572],[8243,-14450],[-2642,-35055],[16860,-17771],[-1925,-22901],[-3379,-7248],[13754,-10812],[5626,-14442],[1886,-16402],[-4102,-7475],[6775,-9753],[8419,4831],[6911,-4540],[6271,-13222],[-784,-13608],[13032,-159],[799,-16626],[12247,-5674],[1652,6349],[9004,-6190],[16701,1801],[-502,-7634],[15352,-27439],[14539,-5147],[5982,-11488],[-7260,-18662],[-503,-9453],[9142,3470],[6988,-4304],[2093,-16786],[5974,-10505],[14972,-2652],[11876,9133],[6195,-7718],[7695,1660],[6273,-10129],[19363,-8251],[12309,-18521],[-5465,-6349],[8996,-4238],[10308,-39529],[-7018,-10521],[4086,-8900]],[[85381864,58585712],[-69167,-11056],[-11562,-3442],[-371681,-65559],[-87597,-11442],[-283232,-45537],[-667321,-107076],[-6859,-366],[-100003,-16439],[-268130,-43071],[-163676,-23924],[-67401,-11393],[-159337,-25865],[-25439,-1894],[-28840,-4622],[-6630,-3865],[-76780,-12519],[-12307,-394],[-64875,-9902],[-50315,-9284],[-34542,-4783],[-166385,-25544],[-18115,-3959],[-35767,-4201],[-93374,-13044],[-107622,-16777],[-366011,-53237],[-113224,-17021],[-190232,-27477],[-104326,-15455],[-343450,-49860],[-52689,-11395],[-56951,-7184],[-86713,-11927],[-61312,-7447],[-399944,-59943]],[[80630055,57848808],[-714,21598],[-5101,20622],[-9362,19964]],[[80614878,57910992],[-6669,15202],[2156,8018],[9918,7634],[11873,-2954],[9394,3020],[3942,8974],[-15848,17115],[-26032,10822],[-10245,8120],[-8784,19037],[-21457,21954],[-8144,13559],[-6706,25789],[2283,10270],[7916,10409],[-1797,9762],[-7779,4519],[-3752,14592],[-11228,11573],[-7962,19196],[6654,43343],[7162,19366],[-2718,17798],[-8358,14545],[2681,15736],[13297,14161],[-2169,11938],[-12932,26182],[-6251,30890],[2003,15014],[8045,6630],[15407,3836],[8311,7117],[-586,9594],[-9453,17311],[-7338,5880],[-30043,9257],[-1629,9189],[15345,37905],[-18551,14310],[-7671,17031],[5412,16288],[9735,6256],[12293,1219],[12034,-7117],[12780,1237],[6516,10166],[-3783,29127],[-11433,15474],[-11319,30965],[-9127,1632],[-26139,-11122],[-23177,-13195],[-30842,-5196],[-33143,-13991],[-20985,140],[-8684,3507],[-46751,1491],[-24633,-11356],[-20042,8975],[-14013,-8262],[-3356,-28020],[-6142,-5739],[-32519,-17096],[-10815,535],[-14554,9152],[-3866,6948],[8692,38458],[449,22414],[-5731,17836],[-22668,47104],[-20149,4868],[-14151,23210],[-11303,10418],[-2755,16759],[936,16672],[4011,10288],[1843,44630],[8601,27289],[34526,82898],[-3987,10222],[-8070,5449],[-9346,24803],[1621,35890],[-4339,23829],[6950,21484],[16912,29990],[20964,17780],[15460,6489],[6104,6358],[14249,30337],[12818,35561],[-2214,26417],[1743,39152],[-3738,12126],[-11075,19711],[-22713,10992],[-23537,18905],[-16516,8815],[-2489,8553],[1102,24616],[-6111,5440],[-15475,131],[-15535,-9518],[-10391,-19093],[-11089,-10513],[-29823,-10587],[-11266,-8975],[-16419,-3104],[-21837,-12866],[-22684,-2776],[-14553,938],[-19295,-12576],[-6744,563],[-7392,14432],[-13290,2664],[-16175,-6828],[-9210,2270],[-9088,10015],[-22920,19056],[-8708,13720],[-11531,9743],[-11881,-2222],[-22349,-15503],[-8176,-10324],[-9332,-4905],[-15794,10662],[-15055,-533],[-27037,19327],[-2770,5898],[11935,36565],[-7977,33111],[-14958,3499],[-23360,19469],[-13161,37],[-9363,-5945],[-10595,3000],[3592,9631],[16366,7286],[373,14208],[-16350,16993],[-60,23565],[-11526,29184],[2757,22338],[36619,36686],[14760,-5045],[11645,-14771],[12941,-863],[2466,13448],[-15109,11498],[-717,10877],[7042,6349],[12613,-2363],[11439,4164],[-5852,9913],[3418,11159],[8471,4811],[23932,-4530],[17681,12023],[13716,28348],[1035,11581],[-9971,19357],[8678,11197],[3783,14948],[-5123,5514],[-27677,-4360],[-7474,11253],[1872,20828],[9394,11422],[11858,5157],[14341,-450],[28697,6714],[13123,-1574],[17286,4782],[6515,5364],[7292,23228],[1690,13448],[-4483,6452],[-28012,20537],[-10512,-3864],[-30401,12145],[-9765,-8946],[-13002,-5721],[-25362,-16514],[-14705,-2747],[-24533,-14555],[-27114,-26811],[-20217,-4943],[-7793,3968],[-5831,-4848],[2322,-16881],[-6189,-5824],[-26648,-3619],[-15688,9462],[-14904,-26266],[-21153,11261],[-25797,-6058],[-9142,2899],[-22439,14967],[-24965,25516],[-1805,21869],[6501,9247],[16243,8881],[-17013,16458],[2687,9490],[14776,14132],[1354,8702],[-8997,12192],[-7330,19440],[-9834,1894],[-2703,-22048],[3852,-15491],[-6789,-11085],[-19693,-4970],[-16768,956],[-6349,3818],[-2923,10859],[1736,14657],[-5480,6733],[-23687,4652],[-10139,-562],[-6021,14243],[13024,12042],[-3427,19243],[-18839,27448],[-7633,-122],[-4187,-10540],[-17027,-12153],[-10543,10249],[4369,18446],[-10991,58995],[-9363,4503],[-14775,-8243],[-12749,5194],[-4406,9229],[-12651,6320],[-27128,3817],[-11974,5711],[-6553,22338],[-15073,21813],[-6386,4370],[-21601,5156],[-1857,9734],[8647,4240],[13747,0],[-32,16954],[-10046,20604],[4186,24457],[-13063,9997],[-17932,-8741],[-16091,4840],[-22630,-3508],[-26566,1547],[-17589,5542],[-17729,-337],[-23923,-3966],[-6965,-12642],[24891,-6236],[7688,-13983],[-21444,-7979],[-20544,-10936],[-9195,6461],[2795,15550],[-16731,22900],[776,11610],[-7931,2109],[-259,-11282],[-12826,-3478],[-18482,23228],[-9445,16833],[-6066,17331],[-2513,26163],[-4742,5187],[-30775,-25255],[-7764,-15688],[3936,-18784],[-11074,-2026],[-8000,7184],[-14623,22544],[-5260,27111],[2276,11469],[-5343,6986],[-8861,-2729],[-24761,-19599],[-1096,-11442],[14660,-17957],[-1574,-9462],[-7392,-1989],[-22264,3236],[-10832,16186],[1896,34566],[7999,37294],[161,11077],[-7056,18577],[-7741,4304],[-15826,-384],[-9842,8617],[-1302,11236],[5345,10352],[13145,10606],[16007,-1378],[6075,4530],[6683,24081],[-1218,44508],[-8959,11036],[-14737,47649],[-8167,15210],[-20574,19357],[-18246,3357],[-2680,8270],[14235,8675],[16982,4465],[6500,7820],[-7002,8497],[-25271,1557],[-34405,-3977],[-17545,4754],[-5511,5374],[3326,9677],[18838,10306],[7620,15483],[-16046,28152],[-13213,1857],[-6395,-14450],[997,-9660],[-5967,-10185],[-13221,-3019],[-4933,5777],[-3974,17312],[5938,12172],[-6531,10325],[-19791,-16028],[2307,-16298],[-22204,-4594],[-9416,5251],[12819,10091],[-22637,29961],[-10886,-5504],[-8350,-21063],[-10694,-310],[-6592,6762],[12134,14572],[-5451,5506],[-11783,535],[-14790,7426],[-10784,12031],[-12583,8873],[-9803,-779],[8563,-17715],[-8518,-10325],[-29031,-1274],[-21130,4556],[-42961,20435],[-18147,2935],[-3721,6508],[4003,14077],[-4209,3760],[-9674,-6396],[-11829,-1857],[-23087,12661],[12544,13690],[-11988,21270],[-26725,5477],[-7749,-7410],[-24548,-8477],[-22569,31229],[-9560,8411],[-21123,9772],[-32745,-4773],[-23467,13635],[-21685,24344],[-33644,41422],[-50063,24653],[-13579,12548]],[[78115930,60877409],[-8206,19731],[-11508,11451],[-16542,3178],[-24258,12885],[-32425,-18352],[-9676,-10335],[-29289,-19007],[-19181,-394],[-16419,-8563],[-14158,301],[-8906,5833],[-21070,31969],[-9514,7727],[-26953,2953],[-5221,20801],[-4308,3956],[-22082,-769],[-5564,-4389],[525,-18595],[-9363,-4277],[-5564,3724],[-13396,26417],[-12005,4079],[-6873,-15032],[-13541,-18315],[-14212,-2402],[-1789,41910],[5557,9518],[-5184,12595],[-17856,-994],[-7323,13878],[-23490,5825],[-1438,9742],[6546,18054],[-342,10212],[-7893,4436],[-15049,-3827],[-11000,-15951],[-7748,5363],[7635,13523],[-14905,4951],[-3759,-5457],[-23041,3592],[-8692,-1492],[-18550,-10269],[-12553,6640],[-653,15859],[-13930,14318],[-5732,27094],[5078,7510],[8684,-1894],[13763,-12593],[9476,-2590],[137,22019],[5343,8985],[-928,9931],[-13588,-2280],[-24319,22499],[372,7858],[11243,5730]],[[80454125,61146120],[210603,-1295],[295029,-1173],[73111,-814],[555673,-929],[304295,-1192],[88622,56],[93138,741],[127579,-1650],[112412,-421],[137818,-1332],[140999,-2429],[117609,-469],[156246,-3433],[65705,-8],[50078,946],[153277,-610],[142363,-1621],[91493,1425],[87078,-179],[173181,-1163],[254506,-3834],[56884,46],[107972,-1219],[60657,440],[174933,-215],[105530,-900],[109936,675],[214818,-1557],[120265,-403],[264112,76],[124613,1134]],[[85334147,48960607],[1134,-227748],[-206,-85009],[655,-232306],[411,-47985],[1127,-473117],[274,-65663],[12651,-2448],[28710,4013],[30882,-2128],[28695,-8552],[46295,-26652],[14295,-11769],[17424,-18597],[5616,-10259],[77,-14666],[-23985,-59381],[-5967,-18652],[130,-12342],[7253,-15678],[16099,-24861],[-2588,-20649],[-29580,-18390],[-2670,-16036],[6561,-8074],[13199,-4877],[32654,3414],[18130,-5861],[-2351,-20275],[2313,-24860],[11449,-31369],[29068,-37192],[21389,-20228],[43442,-13993],[21898,-12058],[27540,1133],[14400,-5720],[21017,-15097],[2785,-7747],[671,-27204],[4316,-30534],[-8519,-7278],[-15254,-4191],[-23199,-1772],[-17265,3544],[-29092,9555],[-14362,11170],[-12841,14189],[-8435,4462],[-12086,-9218],[-6228,-15014],[7201,-7632],[24275,-7165],[24714,-15876],[4621,-20641],[-3913,-9818],[-16890,-16872],[-22736,-30411],[-8091,-17958],[-4636,-23754],[-236,-20106],[5055,-26783],[12590,-18240],[12665,-1454],[37800,-10728],[10954,-4688],[25004,-21081],[15710,-6546],[6424,7587],[22668,9658],[32266,8666],[29337,3704],[26831,-4417],[6630,-3818],[25338,-5335],[59137,10146],[28909,11225],[17689,32833],[-9993,49027],[6196,26913],[12475,13871],[9507,22018],[15406,27739],[10497,4371],[16364,-2477],[23209,-18670],[13990,-18052],[15117,-36958],[15300,-29906],[14242,-33103],[16745,-15464],[10444,2204]],[[85909785,43767875],[-9576,7475],[-11052,35166],[-102705,207],[-155988,-1388],[-56075,768],[-174811,-506],[-103908,703],[-328751,-225],[-326118,657],[-131143,-253],[-90823,-610],[-280180,1032],[-54280,422],[-47230,34097],[-44429,25245],[-108156,71112],[-146192,94761],[-64417,42162],[-284938,183308],[-291179,189064],[-132870,86866],[-31901,21879],[-86143,56248],[-446359,284915],[-1386,-10],[-75158,47705]],[[82324017,44948675],[-25270,215998],[-10893,98437],[-19228,162957],[-35494,311408],[-16570,136634],[-12293,105387],[-9324,93655],[-120738,1068426]],[[82074207,47141577],[8808,6593],[-2771,4998],[15033,-1847],[5184,6188],[25948,-5860],[19250,6451],[5329,11178],[20459,5167],[7719,-6798],[1896,-17471],[-7559,-11600],[6835,-7267],[17949,-4268],[3684,4793],[13091,-1332],[10574,-10100],[6592,2992],[822,10775],[12314,-1022],[14646,10408],[16730,-5298],[10375,12163],[13869,675],[9796,-4219],[-7999,-8254],[12171,-3037],[7178,-10617],[10138,-1022],[435,9323],[9408,-3293],[7177,8816],[-3105,9274],[-8633,2522],[8145,8459],[5481,-4483],[41407,24130],[-1750,9171],[8153,-5513],[11684,2109],[6354,6911],[8244,-1799],[1698,-9126],[8486,770],[5435,-8862],[13869,1913],[10665,9172],[44,15876],[8930,11590],[10229,6809],[18428,3095],[11250,9377],[7323,1134],[10574,15596],[22264,5355],[5145,5674],[19448,10100],[2421,5514],[27356,4482],[12079,-778],[1988,-5412],[12902,-413],[14065,13448],[4028,-6911],[18039,5973],[-7367,5674],[3882,9379],[11250,1547],[12955,12049],[5244,13093],[4651,-7990],[8540,412],[2085,10410],[13199,5767],[2665,9378],[12855,4528],[2528,7888],[9552,205],[33674,24880],[-1255,14535],[5778,13242],[11159,5607],[4460,-4895],[10291,6752],[-6988,6650],[10336,-1454],[2231,10259],[-7513,2785],[4993,8919],[11258,2213],[10915,-4905],[-2518,14169],[8585,619],[20429,15559],[17903,759],[12568,4689],[4605,-6498],[7672,13081],[9020,-4998],[11989,15398],[17142,-5242],[17271,11047],[12619,-14789],[6014,6396],[-8153,3966],[7126,5665],[16259,-11226],[18580,-4004],[-4651,-8608],[4711,-6236],[9942,8299],[8875,-2157],[9940,7783],[11988,-6021],[2124,15305],[9515,469],[-2968,12725],[11600,-7979],[14599,10418],[14789,16139],[7277,14227],[21002,6498],[-199,11759],[8685,-4847],[1067,8871],[14264,3817],[10002,-7372],[1743,9744],[14987,16654],[5335,-1593],[-4703,-10729],[13290,-768],[-2718,9124],[15095,-6649],[0,6856],[8585,-9837],[-5137,-8151],[10573,2588],[-9265,-14853],[8542,-4221],[3691,4793],[11935,-20923],[730,7831],[13336,1248],[12468,11440],[11404,929],[-1454,-8299],[10725,-2419],[12719,3600],[2763,6470],[7756,-8805],[20978,8131],[11805,-4792],[1226,-6640],[-11098,-8365],[-4673,-11366],[28460,-10109],[17241,-21175],[7338,2428],[1050,9454],[12788,-3489],[14926,-9565],[11525,7108],[-1782,16627],[21830,24645],[8563,-11376],[27798,11478],[29907,-7089],[11014,-7792],[7299,-11263],[8245,1257],[24213,12660],[8060,1621],[785,-15276],[7611,-3883],[10337,10814],[10733,-25432],[10565,-3612],[1393,-9677],[9993,-8881],[1523,-7033],[-9515,2879],[-7999,-4042],[1370,-11300],[10649,-2841],[18078,7192],[6712,-10915],[12309,3797],[4362,-7820],[-4515,-8685],[-8297,-2748],[1432,-10597],[12072,-2307],[12963,11432],[11721,-18],[14714,8186],[2756,17893],[12278,-2307],[13572,5176],[15330,24176],[26542,-1621],[6857,8487],[6927,-10503],[9477,-2796],[7687,17791],[5101,636],[16860,-19204],[10291,14291],[9865,-8824],[6621,1388],[4552,15557],[8168,4680],[-69,7071],[-12718,3947],[-1629,23436],[6036,6349],[-4415,18567],[12330,17481],[5055,2653],[7429,-11441],[8563,2439],[9881,19534],[17392,-2318],[3715,3321],[-2276,15679],[19196,910],[5816,-18127],[8159,-13749],[20279,20294],[4764,19516],[-15064,6273],[1188,14311],[4505,7023],[20278,-1754],[3380,8648],[-19075,20134],[-17735,14919],[-14926,5215],[-6843,16383],[-15209,5138],[-1522,12361],[19447,6957],[5870,8674],[4727,24383]],[[86996238,34875059],[6600,-12190],[6217,8196],[5557,-4737],[2079,10486],[4628,-4661],[2672,19701],[-6318,5458],[16653,7025],[5794,-7633],[14408,7324],[-190,6038],[13168,-6030],[-5076,-12893],[16373,-310],[-2155,13148],[11677,-2420],[1012,-7164],[13396,22591],[-3972,5458],[12605,1772],[798,15613],[8853,-3356],[-4636,-9228],[12012,-4379],[-7467,-5422],[7901,-9170],[-2155,-6246],[10245,-770],[1104,-6189],[13549,7016],[-7664,10465],[9340,1191],[4734,-7577],[9865,6133],[5503,-4998],[-3349,-17997],[-10003,-3460],[1964,-12426],[-9005,16965],[-8616,-8196],[-5458,4116],[-17081,-45941],[20058,-27796],[-768,-17293],[-13351,-13906],[-2338,-14639],[14942,-23951],[13975,3328],[-822,11395],[12636,-3713],[-4285,-9454],[2999,-11328],[9058,5486],[6318,-9566],[-5953,-10455],[6150,-6771],[-17522,-3685],[3989,-16074],[13716,-6161],[24076,-188],[5222,-15811],[7162,-4022],[-15079,-12810],[-258,-11516],[-8450,-8732],[6120,-7549],[15314,-9246],[-562,-5364],[-12591,-722],[-1673,-6911],[20840,3226],[1744,-13954],[-8586,-16074],[13844,-9265],[8724,-37],[-2451,-11385],[4872,-12773],[13358,-5355],[-2330,-9799],[23041,-6508],[-1104,13945],[7064,384],[2170,-16430],[7885,-10043],[16191,0],[6128,11797],[11037,-17133],[-5656,-12022],[6919,-6528],[12149,-2165],[9370,8440],[7025,-2421],[7931,-18323],[9455,-9773],[-6662,-9968],[-10503,-1228],[-12667,-11713],[2802,-17865],[7642,-7867],[18580,-7006],[-2016,-13279],[5564,-6855],[-1797,-9761],[6303,-6275],[20201,1023],[6523,-8196],[-3319,-15398],[-6058,-6799],[1720,-8646],[14728,-6649],[18939,7989],[24882,1670],[17957,15125],[18047,3780],[6577,-14188],[13365,-1614],[8397,15586],[2177,10887],[6903,6838],[12490,3563],[17097,30195],[12773,5937],[34899,-2541],[19403,1951],[23277,-13945],[12795,4238],[3585,26530],[9955,11394],[25583,9847],[19503,-2804],[15352,-26801],[10908,-1239],[19022,15230],[13343,16776],[9818,3077],[33151,-12069],[28740,10175],[2209,17141],[-15102,30187],[-404,10119],[18596,9696],[4735,8487],[-3365,12623],[8160,12707],[13898,-6686],[10041,-22310],[12339,1903],[4308,17875],[17210,19412],[8311,25854],[-1355,11085],[-9095,15323],[-2740,24176],[-11814,28133],[3997,11394],[14727,7380],[25492,-24082],[2208,-15164],[6401,-4005],[14090,7156],[9241,11470],[7969,16261],[21290,-8703],[23010,-2327],[9233,15015],[2276,18587],[-11531,20668],[-937,6395],[8092,20501],[-2406,9499],[7421,15820],[26855,23641],[19106,24927],[9072,35495],[8875,19720],[19905,14180],[33158,12032],[33461,882],[10687,-2336],[8402,3376],[46531,-5110],[25575,-11104],[12057,-13354],[25088,-12604],[27402,-5701],[6030,-4821],[43022,-12059],[14499,2898],[8829,-2185],[2559,-14198],[-2352,-24702],[5123,-6292],[15557,9256],[22783,9359],[10596,-8140],[18405,-4895],[12331,1312],[1582,14489],[-4802,6434],[-22135,18351],[486,6040],[9988,11254],[10351,3600]],[[88505013,34861152],[11935,-21005],[1583,-21907],[-3958,-18541],[2139,-19421],[8892,-49870],[6979,-16608],[23375,-20706],[9858,-16852],[6979,-3282],[12119,-28218],[13968,-22901],[21137,-28329],[10710,-6780],[17104,-18963],[24487,-22722],[28429,-24111],[21565,-11516],[26801,-19120],[25986,-14835],[26040,-10250],[9469,-6593],[44300,-14263],[37130,-15445],[18458,-864],[8541,-6395],[37806,-11806],[7986,1415],[20931,-9705],[36934,-5834],[40829,-15951],[12514,-1641],[29060,-10973],[24639,-1152],[12249,-8243],[84490,-23464],[15467,-6001],[53229,-11920],[22394,-2485],[12254,1884],[-479,5187],[10952,4802],[24214,19318],[29822,28030],[34475,27711],[36169,25057],[43967,24757],[33629,15587],[50959,20509],[55186,11609],[76194,8167],[72265,2898],[114678,-1715],[23232,2710],[16828,5430],[22021,12227],[17385,12389],[31986,31115],[28765,38336],[19774,33300],[17653,36387],[29380,68673],[14714,21512],[9590,8140],[31795,16130],[38006,32841],[16807,-4943],[12938,-34031],[9714,-8956],[4011,-11187],[11539,-16036],[-533,-15839],[13595,-11610],[8275,-25788],[-2589,-10626],[19144,-20790],[-290,-7474],[16030,-26511],[24122,-15896],[25660,-10325],[13830,-10164],[65613,-20969],[10299,4642],[10573,-3151],[30493,1688],[6803,9950],[7948,2362],[6979,-5260],[25622,15482],[22059,7952],[22933,-1940],[21108,-7727],[10193,8355],[16418,5430],[20292,11665],[19099,2016],[28810,13993],[30203,12237],[33698,16927],[12300,3095],[13358,-3348],[11920,11816],[24456,12491],[22021,7015],[21260,571],[29868,9088],[13268,-2327],[3441,-4744],[47732,4960],[43373,-1857],[20879,3715],[25035,14750],[16951,3564],[8761,5927],[36910,10466],[46925,11656],[15415,8197],[7231,10362],[21838,10465],[18002,2991],[7421,-2841],[28247,14488],[7086,-2429],[9774,6238],[7801,-4333],[11685,6339],[8806,-1548],[33379,9473],[13167,468],[52049,10391],[24472,12313],[17287,1284],[4217,5571],[34092,7924],[5549,-3695],[20682,5224],[15749,8159],[18335,580],[36439,12397],[46582,19470],[12644,2221],[25850,9548],[24516,16720],[5214,7998],[17766,-2671],[29450,9395],[28248,16619],[3112,-2121],[76096,37831],[34862,24344],[15421,7690],[1865,11553],[8090,-1490],[11723,4736],[6097,-2421],[20779,8562],[19594,3668],[28544,1752],[23132,-3300],[21411,-619],[16998,-7794],[30462,-7838],[8137,-7221],[24326,-29559],[5701,-12379],[6844,-26154],[9620,-16459],[9431,-6658],[5603,-11394],[23794,-18736],[13268,-3817],[6607,-8150],[17766,-13316],[13494,-23266],[13017,-9959],[8480,-1088],[9187,-19450],[5070,-28573],[-1158,-14292],[-7185,-20059],[-2260,-19956],[2344,-4491],[19249,-2017],[28203,4736],[22797,8186],[17232,3498],[20355,7372],[34184,4417],[16379,-114],[32831,9312],[2435,16975],[11623,24860],[5260,6142],[45526,22413],[579,4746],[22454,9499],[17279,1970],[5221,-2570],[18056,6452],[25035,19505],[9050,3621],[16662,13052],[16426,-10980],[20164,-357],[23428,18530],[27638,15418],[14075,1716],[15513,-2025],[8974,2391],[31063,16796],[19479,1866],[13328,7360],[14172,2899],[17309,-4801],[14965,-10945],[6873,197],[6433,11442],[19424,17048],[8784,-1078],[14189,-9388],[15360,9472],[14090,-5608],[20421,-179],[11867,4924],[8480,15389],[31597,-5748],[5776,11290],[3343,21101],[13967,-4736],[15300,702],[5114,5908],[9294,25931],[4902,2409],[12255,-5271],[9385,9389],[-13427,39827],[-12019,-3695],[-11835,8412],[6021,10372],[24867,8129],[4034,5140],[-5419,7998],[-15528,-478],[1515,9079],[8647,1087],[-8260,10551],[-12658,8504],[2581,5814],[17286,-646],[5084,5410],[-1134,11105],[-13419,-6782],[-24525,-1377],[-3608,3994],[556,25930],[6994,7717],[-1795,12688],[12795,10457],[19166,-21279],[5282,1024],[3197,19204],[8800,9951],[15513,8486],[4406,7784],[-3127,13973],[6294,7587],[7148,-8918],[11949,16392],[6592,-2148],[13588,-17621],[22416,-2747],[6349,-10822],[11766,-1013],[-4155,13767],[7527,6827],[28773,-4708],[5215,-11844],[10101,5541],[19257,-7782],[8212,11075],[1935,-13580],[10495,-1940],[3031,16532],[13936,-8899],[35296,1144],[10672,7418],[4742,-18419],[7231,-3459],[5230,11084],[7962,2279],[1050,15361],[18519,-9566],[-38,15229],[6857,-10513],[2795,9267],[1346,-97304],[2398,-120270],[1988,-175964],[11478,-512606]],[[93443843,34354970],[-23848,-8243],[-20498,3657],[-5169,-3320],[-330219,-153091],[-3579,-2776],[-606906,-289013],[-5617,-7006],[-490150,-260522],[-461333,-245201],[-191198,-139185],[25347,-16991],[26078,-23651],[20810,-30487],[36345,-43129],[56792,-115880],[25826,-82169],[0,-16494],[9851,-43280],[-495,-49683],[-1569,-24822],[-23877,-68449],[-13093,-58695],[-33994,-67435],[-34450,-60806],[-33516,-73419],[-60428,-77329],[-70668,-63252],[-50054,-38430],[-107136,-32297],[-91447,-5177],[-116094,35018],[-43769,16278],[-212024,-215106],[-52650,-87636],[-20225,-31040],[-167046,-142634],[-9332,-5093],[-498403,-306202],[-5792,-1661],[-471691,-315129],[-76506,-50865],[-391928,-319565],[-4408,0],[-273732,-194270],[0,-684],[-390750,-202250],[-265352,-137338],[-14911,-28508],[-24852,-23078]],[[87946183,30248632],[-112699,76268],[-143133,95531],[-35797,42754],[36292,69770],[159429,301280],[119725,226866],[83553,155736],[86218,165704],[73180,151939],[-8731,18052],[-61563,119791],[-6013,8404],[-38981,71580],[-35646,73464],[-51370,97005],[-74055,134476],[-50450,95007],[-29276,53247],[-124779,229089],[-64000,117944],[-22942,40285],[-5205,12182],[-100362,184742],[-13465,26240],[-142696,256200],[-28332,57738],[-48082,90383],[-59859,108181],[-1538,789],[-49781,95342],[-31017,54982],[-7833,11366],[-22074,44611],[-66763,124733],[-49460,89417],[-13915,26502],[-82305,151038],[-53024,98972],[9728,66029],[6287,26333],[9477,49692],[22569,137750],[12163,80855],[-769,30909],[20552,138200],[13868,99686],[7118,38158],[15627,108330],[8905,56362],[1279,16513]],[[82528849,39882928],[14819,11084],[8366,102],[5153,-10520],[30310,4848],[13276,8196],[20353,-470],[20544,6491],[-5579,22375],[6592,-5214],[19051,-206],[21024,-15568],[3076,-13250],[33050,-12014],[29594,14367],[15346,-9584],[10237,-24955],[15879,253],[4619,8910],[27280,-572],[6296,-11600],[18907,-7483],[8609,2625],[6022,11496],[1689,21907],[36963,18897],[9385,11337],[11935,2514],[11402,8140],[9720,11815],[27768,-7512],[8373,-299],[13031,15107],[13237,-4679],[21656,-13026],[30173,-11225],[7215,8505],[40937,14096],[12841,12424],[18717,13514],[6439,12275],[40517,-6227],[16495,27430],[16944,-5045],[8997,1295],[17035,9640],[19532,-403],[13715,-5206],[16076,-23500],[13139,-12473],[18192,-1386],[18763,9179],[19829,-4069],[22758,-515],[6349,7013],[18428,9792],[5823,7885],[723,14593],[-10633,5720],[18374,30824],[15596,3976],[15399,-10211],[15733,-3301],[12035,-15773],[14576,-11544],[26855,-13711],[11014,-2579],[15785,1904],[10156,6649],[-245,22168],[3228,10512],[16746,15052],[21175,8863],[7749,12266],[-4324,8149],[1828,9687],[10633,1651],[7558,6798],[7703,-10100],[-6545,-1903],[4567,-8103],[16121,-4539],[7072,-6339],[11554,2888],[2071,8243],[-5679,4539],[10344,7680],[3518,20613],[9537,11244],[10634,4014],[9918,19018],[19104,17837],[17530,10765],[5778,-3563],[13527,7210],[10731,13561],[12712,9884],[-2116,8871],[14067,20612],[13039,-7737],[7467,7935],[17613,3957],[14835,8908],[12369,358],[9287,-5469],[3175,-8196],[18731,3255],[4088,5468],[-4864,11075],[-14964,3967],[9659,13502],[-5702,5308],[1500,9538],[11501,16918],[-920,8243],[5633,11300],[9476,1397],[34762,-9162],[3609,6648],[6066,-7004],[19638,4135],[9918,-4999],[8281,1605],[42512,-13749],[18003,2280],[15359,-9837],[7217,5570],[21327,1960],[-52,6395],[18146,8103],[4095,-7324],[2550,11497],[16746,469],[7413,9434],[21754,11244],[9287,21399],[-92,7372],[10923,10464],[2064,26136],[7991,6397],[-723,10156],[27532,31350],[23733,1902],[11799,6763],[3997,7680],[26770,1191],[813,8712],[14927,8758],[-5107,18099],[9248,9022],[-4773,8196],[14349,10307],[15894,18718],[5731,1696],[19113,-3966],[4187,-13344],[11418,5411],[2937,-10157],[21861,25414],[-9203,5513],[2703,8404],[-7802,5467],[5732,7887],[3463,14798],[4674,-5984],[11310,23351],[4674,-620],[17963,14330],[191,9903],[11608,6649],[23017,-12323],[2026,7166],[7268,-9388],[11273,4483],[5679,-5046],[15314,13964],[7323,413],[18779,-10569],[6164,-8102],[12957,6499],[1103,-9125],[16228,-1763],[-2794,-5356],[25903,-22430],[16374,6695],[3174,-9284],[7999,1088],[13236,-13720],[10253,-1238],[7948,-18155],[-3235,-25105],[10108,-3403],[-4050,-4896],[9820,-13870],[387,-13146],[9630,-264],[1629,-8505],[8959,-4080],[-3327,-6546],[10877,-6752],[343,11394],[10116,7466],[15201,-28405],[16083,-7278],[4087,-7680],[21808,-10279],[5868,-10464],[15309,-10728],[1103,-5825],[14295,-4445],[10695,1023],[5960,-11338],[13235,-3105],[8503,-11384],[3479,-26398],[6309,-4782],[-425,-16092],[10404,-15765],[-5814,-4455],[10496,-13334],[-2838,-11189],[9346,-7980],[-5869,-16345],[3905,-3244],[-7702,-8413],[10358,-13193],[-1918,-13243],[-6698,5562],[-7017,-7071],[5260,-18606],[-5155,-1454],[4538,-18857],[5967,-264],[3280,-13503],[-3652,-2729],[11896,-13963],[11166,-7166],[12149,-25919],[-5291,-9903],[10171,-32784],[21480,-22874],[30751,-496],[30332,-20818],[5915,6808],[2991,-15464],[8321,3459],[4239,-6442],[12901,-3863],[6981,-7005],[7938,2165],[6158,10467],[8382,-11591],[19150,11806],[14485,-10972],[7459,1810],[572,12735],[12133,3038],[3942,-9996],[10543,9697],[16023,2944],[15451,-3301],[2406,-6339],[13434,6011],[10481,-8797],[14737,5298],[161,15305],[10221,6667],[815,8760],[35852,15191],[5001,-2972],[23062,2438],[10253,-5982],[20675,5503],[4278,8347],[11629,-5655],[9972,11713],[7094,16899],[17432,6095],[16890,2608],[5313,-3068],[24250,16806],[19175,1107],[4901,-9040],[5032,-22732],[-663,-11657],[5092,-10615],[11517,-8057],[15057,-1425],[-1652,-34415],[8129,-10523],[12187,-7362],[19303,-16832],[16075,-4651],[-3569,-13654],[12125,-1463],[572,-11066],[-16914,-20978],[3342,-8599],[10770,-2205],[7878,-18286],[19692,2606],[20704,-10746],[17681,-1754],[18018,-16523],[10505,-38206],[21853,-16898],[22698,-7503],[6851,-4670],[8288,2560],[8578,20734],[16152,-5091],[11692,3273],[7042,6901],[1393,18915],[8852,1623],[15398,-7455],[17812,3067],[16014,-12511],[16434,2186],[5657,-6977],[-1113,-19937],[4834,-30047],[8555,-10606],[23269,-11366],[15134,609],[15421,-13409],[25941,16889],[7870,-2232],[10549,-13691],[7940,-1501],[23992,6508],[14371,-8365],[25743,2973],[7025,-5270],[-1438,-20200],[9043,-9471],[17507,-3386],[10168,-7624],[5619,-10128],[6279,-22245],[15543,-12734],[22417,-8121],[6302,-25770],[7765,-4887],[26093,5703],[26983,-8732],[9392,-11141],[679,-14497],[7375,-16036],[20742,-13045],[6874,-7324],[8159,-21062],[8799,-7389],[10656,-1041],[17813,14366],[11288,-3911],[20657,-28714],[4948,-21137],[9103,-14479],[12462,-10195],[2610,-20911],[-15932,-16675],[-3950,-13513],[-5959,-41730],[4634,-15558],[9158,-13579],[11395,-3291],[16936,-10261],[12704,-15706],[9538,318],[10839,20791],[22797,1640],[20643,-7698],[26731,-17640],[6052,-16345],[44513,10774],[31300,15914],[21107,1342],[30463,7370],[17271,7212],[16494,2551],[26741,-5908],[32083,2654],[72455,72114],[36423,34811],[62424,61912],[14256,12415],[43959,45089],[7421,6105],[44468,46363],[63884,63929],[111513,107441],[44071,47780],[134599,132553],[59859,60065],[56738,55881],[224766,222422],[31277,29137],[8115,11188],[16638,14282],[32829,34313],[65158,66311],[142628,141857]],[[87907469,40606121],[9416,-32120],[18345,-53414],[64470,-211892],[86059,-298109],[5192,-6141],[62408,-203132],[14172,-44469],[43372,-146959],[53481,-177643],[27424,-83050],[8245,-37247],[3949,-10879],[37465,-117794],[64792,-207848],[15216,8983],[14957,22432],[18900,-890],[21495,3095],[24670,-4239],[12254,-6190],[131280,-40896],[153,-5037],[34435,-107393],[-1173,-15201],[9507,-4079],[48175,-26980],[18863,-20959],[685,-17874],[3897,-22019],[9681,-17799],[10620,-12877],[5403,-42236],[5344,-26192],[-3746,-17791],[-48243,-23593],[-3028,-6959],[-30904,-108256],[-21031,-32035],[-2877,-10372],[-7857,-57711],[7172,-9687],[11341,-5974],[7839,-10100],[-769,-10990],[-10519,-4079],[-9841,-15839],[-8023,-2532],[-9408,-16712],[-6912,-20780],[16823,-15615],[12749,-25217],[8130,-28254],[6348,-4998],[37693,-66911],[20543,-75641],[6501,-32129],[-13343,-19861],[8601,-13757],[26847,-50480]],[[88784707,37952800],[20741,-42228],[18307,-26136],[-2641,-13871],[5694,-23528],[-8488,-46307],[11021,-12707],[12089,-6949],[10276,-15182],[-473,-10645],[13754,-15144],[15285,-10898],[6897,-11994],[15610,-10052],[42740,-14068],[55133,-11994],[41872,-42077],[12924,-47339],[5428,-9847],[70728,-89727],[9797,-8046],[59866,-5626],[68171,-28677],[37335,-11020],[28307,-23866],[3806,-16252],[-10595,-44083],[-4810,-9698],[1812,-9705],[-5246,-2269],[8008,-16036],[-5001,-5693],[8663,-7755],[8000,985],[-5131,-14104],[-11463,3723],[2557,-17885],[-9599,873],[-783,17293],[-11373,-10644],[9698,-18390],[-12635,-4492],[8259,-17920],[-27562,-19825],[1491,-7747],[-9225,-6329],[2291,-15512],[-19212,-5035],[-23078,2316],[-3776,-13157],[6326,-10465],[-8900,-18934],[7400,-8552],[-1493,-8638],[-10002,-2213],[-182,-15763],[24914,-5083],[9940,2072],[-1392,-6958],[-12818,-16205],[11410,-4416],[13677,-22657],[-5936,-14048],[12103,-7277],[-8991,-10598],[-1331,-19561],[-16928,-7024],[-5892,-6827],[10191,-10044],[1994,-36104],[-2283,-16851],[21573,-4240],[7094,-11647],[-1629,-12914],[-8945,-3376],[-11089,9051],[-5663,-4164],[1985,-10897],[18285,-2053],[5366,-9764],[17301,-8243],[7672,-16353],[-4315,-10335],[-24525,5092],[-15080,-13635],[-1156,-7586],[9180,-21551],[1363,-11666],[-7635,-16974],[3182,-29220],[-9005,-7859],[-15939,2654],[-13374,-2758],[-6554,-6002],[-12773,-21099],[-21738,-9359],[-7833,-12894],[-983,-32270],[8099,-28339],[4523,-44863],[-5496,-15904],[-15535,-14762],[-9569,-14995],[-19105,-12190],[-10254,-14676],[-24083,-41216],[-16251,-18277],[-3980,-9622],[-2666,-25572],[-9117,-14142],[-12782,-10438],[-1338,-19355],[12194,-18325],[9705,-8880],[7825,-1013],[49468,18184],[7961,-357],[10528,-7380],[-2376,-14526],[-10084,-10888],[-2733,-11404],[6782,-37744],[5381,-11094],[15110,-7305],[27265,-1154],[16160,-5805],[480,-11019],[-9798,-14995],[-18435,-5270],[-10390,-10887],[2863,-17069],[22530,-6676],[12065,1369],[11448,22103],[15687,4727],[12408,-600],[12216,-8018],[11426,3657],[11288,-8947],[-5343,-19027],[-14295,-12164],[-20445,-7266],[-7666,-16562],[16610,-36207],[-5809,-24861],[-15093,-17845],[-36119,-25181],[-9635,-12941],[-1173,-16251],[-6744,-15266],[-571,-17546],[-5518,-8487],[-9219,3132],[-8493,10156],[-273879,69686],[-4239,-4445],[-72998,-49533],[-54713,-32944],[-33627,-14780],[-22394,-16485],[-27501,-24251],[-23720,-16675],[-12269,-11046],[-3076,-13148],[-26708,-32682],[-480,-6911],[-11563,-14948],[-4604,-13250],[-40624,-86727],[-8875,-38719],[-13915,-36508],[7643,-61424],[18770,-32288],[4362,-986],[26198,-44862],[47071,-43701],[7856,-2373],[8054,10766],[12354,8638],[-18870,-23585],[7421,-4801],[17446,21483],[-11106,-22703],[17066,-21906],[59715,-46739],[4741,-12266],[23110,-38045],[11928,-5825],[7961,-18361],[145,-11337],[-13206,-23323],[-13930,-16299],[-6226,975],[-9340,-12688],[7429,-14694],[-12209,4575],[-4643,-11346],[-6996,-356],[-16319,-22555],[-10482,-5420],[-2634,-11702],[5914,-8928],[-9452,618],[-8518,-13775],[-8663,-7531],[-997,-11187],[-9004,-836],[-14652,-16372],[-5703,-1023],[-8531,-17273],[91,-7840],[-14082,-10616],[-4316,-13203],[-9584,-4989],[-9437,-19957],[-32008,-61771],[-5267,-4688],[-17400,-50425],[-2923,-1445],[-11312,-31509],[-533,-13194],[-6660,-8422],[-6729,-19308]],[[86996238,34875059],[997,5440],[13183,3778],[-8448,3396],[-6036,10052],[-10816,8402],[-23362,-23013],[-8281,11863],[-11928,8712],[-35333,8441],[-22394,-21663],[-18861,-5430],[-21740,28556],[-11113,11600],[-27570,-16054],[-4773,-23464],[2155,-8712],[-5594,-10465],[-21686,-5224],[-13968,-14188],[-4262,8505],[3059,9021],[-4840,6911],[-12971,-5475],[-7087,3601],[-9575,-4070],[-11928,-12989],[-8654,12229],[-3107,17376],[3350,5412],[12735,-525],[4292,32100],[-19067,28987],[-5016,15172],[1584,15793],[-13443,24185],[-9850,12444],[1058,16701],[-9872,14611],[0,13364],[6782,9594],[-153,9415],[-17955,30055],[4673,8300],[2946,17676],[-6912,6414],[-403,9238],[-7763,15154],[6553,19252],[7559,7157],[-9455,28883],[-16426,7577],[-25636,5692],[-4209,-5795],[-12734,2634],[-5024,5422],[-16571,-2833],[-3303,5880],[-8190,-5514],[-8480,7117],[-13739,-3038],[-8571,11291],[-8099,-5617],[-10146,-48],[-19296,20529],[-19061,2523],[-5556,-3601],[-15756,4745],[-23992,-5824],[-10824,3094],[-8624,-11862],[-18048,-2983],[-24090,6547],[-4355,-7474],[-32707,-8254],[-40807,-1443],[-19919,11188],[-21115,17019],[-8724,2467],[-15847,-3554],[-12978,2833],[-18102,-14386],[-27919,13035],[-22797,722],[-10634,7990],[-11441,871],[-13890,-9076],[-12925,-19028],[-15369,-9546],[-1765,-12323],[-5222,-3152],[-18048,-469],[-2824,-9892],[-24944,-26568],[-3105,-11084],[2398,-9593],[-17332,-16403],[-13793,3085],[-5076,5627],[-11060,-2119],[-16229,-8411],[-19729,12979],[-8190,2315],[-19677,-14648],[-12825,-5063],[-29649,9884],[-29197,-11460],[-18535,11019],[-9675,8712],[-26535,13692],[-21974,-3649],[-19783,-8140],[-23459,-919],[-13177,-12782],[-18573,995],[-13936,-11291],[-8869,-14123],[-12643,-12116],[-24600,9809],[-22987,-6856],[-42466,-656],[-5459,4080],[-15032,572],[-7757,4332],[-11395,-1604],[-24662,5628],[-12879,-4840],[-17713,4662],[-53358,-28546]],[[37711297,66813403],[-350,-68233],[2100,-745166],[1256,-40398],[357,-277141],[1857,-433918],[2269,-307271],[1233,-113461],[-113,-62888],[1117,-120279],[390,-140797],[3379,-494948],[2108,-353279],[-167,-45163],[3942,-873867],[-14,-17666]],[[27665661,51897793],[12894,-19318],[11807,4220],[23146,-30993],[3708,-8103],[18581,-1556],[22203,-13018],[10832,-17986],[9270,-5870],[-2671,-13045],[-10877,1689],[-6243,-10672],[11221,-3554],[9317,2016],[4391,-6078],[-5898,-8515],[11067,-4219],[12726,9031],[24001,-15615],[10335,114],[11800,16448],[9163,-1238],[6494,-17940],[19166,-1847],[10724,5420],[9074,-5354],[1279,-24804],[13572,3900],[3302,13289],[10620,6536],[959,6359],[-12005,10352],[3404,7953],[8668,-1005],[15963,-18783],[5580,4437],[-6181,11280],[10428,11479],[6941,-6405],[-4307,-13944],[16380,-17527],[10801,-4146],[4727,-9003],[-2208,-10691],[8152,-7060],[13002,-3761],[24251,5730],[-3007,14189],[25172,13129],[8905,-5666],[7536,-15041],[-6782,-12106],[3144,-4079],[13739,13427],[7588,864],[13040,-9865],[2846,15107],[21831,-2044],[5808,-4895],[9993,9068],[18725,-4482],[2878,-11958],[10092,-21915],[15263,11863],[11120,-13617],[5945,6911],[7072,-6395],[16137,2213],[5509,7531],[17507,516],[-4049,-12585],[3662,-10775],[14819,-13664],[1408,-11442],[-5503,-10155],[14523,-24541],[-341,-10776],[12185,-7942],[12583,-13514],[7847,3667],[8289,-8000],[-197,10315],[6356,3723],[8677,-9461],[10473,10044],[16244,-572],[3547,-6444],[10406,14011],[3913,-421],[-183,-14817],[11630,8514],[6844,-4876],[6020,6902],[10154,-12539],[4233,-11843],[8837,-403],[19135,-8365],[21655,-14855],[5961,-13486],[14607,-7829],[14088,-16215],[7407,-12660],[1773,-39311],[26946,-15595],[4621,-6780],[48304,-17031],[16098,-890],[30113,-9265],[7702,1491],[12598,-7793],[12719,-2664],[26832,-18024],[714,-18745],[8983,-1791],[5633,-8712],[2603,-14142],[-6950,-6424],[-13245,2016],[-3631,6226],[-5814,-6058],[190,-22590],[-7231,1491],[-579,-18183],[4895,-16974],[14485,-7841],[6189,-10990],[14964,-6434],[-1210,-11139],[5998,-9744],[11737,6039],[9561,-8863],[14278,-7107],[9897,469],[8144,-15615],[-1165,-11083],[13206,2175],[33629,-9838],[9462,-24531],[11692,1913],[2588,-4803],[-4088,-16701],[22995,8205],[7460,-3966],[-1173,-10363],[29046,3976],[7505,-3806],[9263,-15361],[16183,-15098],[11548,-2579],[7650,-7475],[22706,-1181],[14179,-12622],[-1948,-13663],[9750,-12735],[3365,-13758],[23635,-20875],[6188,-12481],[13983,-9584],[3653,-12942],[-9932,-48],[-3997,-6085],[17835,-16345],[5989,-12932],[12476,3817],[1706,-5009],[-7597,-10202],[11980,-4380],[-11737,-8252],[2679,-9641],[12324,309],[12620,10936],[-4429,12274],[1598,10073],[11927,-8431],[6410,-17106],[7565,11686],[11760,5157],[-14507,2917],[16244,10982],[8373,1752],[5198,8600],[-8091,7053],[3326,10117],[7947,-11196],[11471,947],[5441,10691],[5771,-986],[5602,-12002],[4765,21362],[5519,976],[6104,-12014],[7856,2532],[-1317,7025],[4680,18296],[12538,9],[8593,5185],[-16,9847],[12454,7428],[19675,19046],[-2900,16345],[16464,-2063],[1173,-17528],[27820,7213],[5016,11036],[8092,1698],[4384,-7062],[10817,-2062],[4727,9790],[22021,11957],[16616,2523],[21107,15922],[12134,14639],[2922,8919],[21009,18755],[7703,3555],[243,13972],[4629,1126],[10283,-10982],[7064,103],[98,11442],[9462,23968],[6676,-927],[7071,-16196],[7253,-722],[9455,7990],[8425,-113],[2589,10935],[6965,-2016],[-1020,-11441],[6211,-1772]],[[32401957,49233105],[-14066,-12725],[4751,-4924],[8120,11808],[5992,393],[24060,-11291],[7459,957],[10870,12772],[7171,-1143],[9148,-10053],[-2404,-9800],[8258,3789],[-1019,11505],[12961,-524],[4324,-13092],[16061,7417],[1423,-11627],[6683,-10316],[4066,1951],[1536,20040],[20644,-4426],[1118,-7138],[15231,-13334],[10756,9125],[7284,-9304],[2626,-12406],[20118,12773],[7141,-9201],[15147,-2804],[-3456,-9545],[-13093,-4690],[1349,-7099],[12855,-337],[14768,-8881],[12969,-16992],[5762,-20078],[11822,12603],[997,-12716],[5199,-4660],[14965,9330],[3273,-14975],[21251,-6988],[5176,14076],[5427,-10043],[-4033,-9528],[-13177,-15463],[17887,-4680],[17683,3311],[7232,-6453],[14331,-2082],[4013,-7043],[15778,-8683],[12392,2786],[11753,-2101],[15451,-14742],[15841,9283],[11365,-4481],[2389,13859],[6128,1342],[6972,-12622],[-716,-7935],[12096,2073],[-2070,-16514],[10724,-1820],[1781,-13531],[6690,3123],[15674,-5205],[738,-10767],[14432,-16823],[4187,10560],[-2642,9406],[16990,-8046],[-10657,-12979],[10709,-15071],[-2024,-6920],[7140,-10945],[-7033,-8326],[10069,-3921],[-4711,-11627],[8655,-12042],[12932,7474],[7839,-8317],[8138,-1014],[3540,11911],[6013,3779],[5313,-10213],[12118,12998],[3144,-9593],[21593,-2608],[5884,-7315],[9606,1154],[4515,-6396],[-6645,-9631],[5220,-7221],[9318,1417],[1249,-22573],[8844,-7708],[-2778,-13411],[5266,-6788],[10870,-2373],[4157,-6724],[-3419,-12782],[7933,-3413],[9187,4059],[-7185,-10455],[6902,-6209],[13626,6819],[1156,-12755],[11304,-2690],[511,-12004],[7794,-2363],[959,-11254],[20962,-6790],[5025,-4528],[6881,12463],[13640,-6143],[10832,-10765],[1507,-9454],[15528,8684],[11173,-9528],[9431,4493],[9042,-13346],[19792,5928],[17460,12537],[5664,-4838],[10039,12491],[7118,-1745],[9248,6368],[6804,-2270],[7149,-11187],[16091,-4905],[7269,10859],[-7803,8319],[12165,-637],[3570,9190],[6560,955],[13975,12876],[18900,-4830],[7010,18494],[15117,6865],[16176,721],[3927,-5963],[25141,-1652],[6516,5262],[-996,12726],[20071,-236],[-1652,-10249],[16312,3602],[8435,-9003],[17133,-10316],[17568,2484],[-4499,-11317],[10870,-12041],[11433,3104],[17575,-1033],[7522,-6104],[10687,2569],[-747,-13439],[26079,-2616],[6332,-9059],[8731,4999],[7253,-17799],[16297,10128],[4355,-10813],[7298,13297],[8801,1857],[16662,-5944],[6203,-14283],[18702,10710],[7467,-14761],[12704,7793],[22736,6639],[24677,-12538],[7034,-8092],[27044,-1183],[3235,-11684],[-7946,-7887],[9012,-7042],[1956,-16195],[-10619,-2327],[1317,-9969],[15765,-4997],[7429,-9641],[395,-11637],[-20027,1350],[6326,-16037],[9925,-3272],[-1507,-11198],[14859,-19440],[13382,-628],[-5511,-14919],[3949,-11498],[11480,-965],[4672,-6743],[-3516,-10879],[12788,-19956],[-1675,-16832],[-7717,-7343],[601,-9238],[11706,-5251],[-524,-16673],[24639,-8421],[10442,10052],[534,13430],[17049,1257],[7277,11525],[-2276,14076],[5633,9386],[69,10062],[-7223,10570],[5708,2784],[-7710,27205],[18906,13260],[15240,1145],[35364,-21026],[-3160,-6835],[5306,-10616],[7628,-4857],[-5686,-9388],[-2528,-19159],[15383,-17395],[18200,-4005],[2755,6508],[-11462,2776],[5868,6837],[11767,-5637],[3380,-16598],[23703,113],[-670,10559],[8495,-2278],[3478,-11104],[17409,-3047],[10359,12283],[11388,3049],[5175,-11891],[10437,7708],[15877,1200],[1400,10776],[11030,-10531],[3829,9199],[10770,-7464],[7825,2916],[21039,-28236],[-46,-12238],[12567,477],[9120,-14948],[10313,-112],[3213,-7099],[-5588,-14301],[14722,-2691],[1460,-19506],[20697,-7418],[7902,-9996],[17796,6385],[14766,-487],[21002,10794],[4413,18118],[9865,-460],[9447,13898],[11318,10437],[15506,-2353],[21922,-13073],[144,-9171],[13664,-3226],[0,-7821],[11920,-9585],[10519,-441],[-5922,-17854],[7703,-4868],[12528,10184],[6744,-6760],[3609,-19235],[6249,-4014],[25811,8413],[-1118,-10128],[6636,-11928],[8671,1396],[4369,8844],[13290,4313],[3980,19497],[24046,7942],[15801,-16147],[8070,10915],[18748,12744],[10145,-6827],[15794,441],[13444,-15501],[8943,-5777],[1187,-11187],[10550,-9612],[6241,-16281],[16450,11798],[5579,-12791],[10702,7202],[6006,-14658],[12415,-10354],[19676,2270],[24304,12060],[5785,5392],[14211,2392],[46219,31706],[-3151,9697],[-14981,5617],[6464,8797],[22766,3479],[1438,-9510],[6722,-4660],[15117,18174],[31589,29043],[8639,1209],[1187,-13729],[5571,-1969],[7956,9733],[13540,9603],[4909,13879],[16343,4437],[-541,13465],[13999,7859],[11091,-6301],[1195,-10278],[-10399,-7558],[1180,-6416],[21101,-5927],[-92,15614],[9911,3227],[9369,-22573],[13397,-3976],[12605,6462],[8259,-6940],[17835,-4352],[10329,10551],[10070,-8824],[2343,-15342],[8008,-910],[3052,7596],[-2533,12463],[8159,103],[1348,-14554],[7238,-2363],[14812,9331],[6569,-10316],[8091,-4173],[2101,-15793],[-9149,-16505],[9019,-15284],[9500,-2702],[3388,-10896],[13389,750],[5814,-8572],[-966,-14864],[8555,-11103],[13916,254],[11706,-10682],[1058,-14601],[9005,-431],[7726,-8524],[11866,-535],[4323,-18774],[11343,-14179],[10611,3075],[-4675,13486],[11243,-8619],[23398,9932],[-7702,18558],[646,7099],[18330,14948],[13137,-1950],[11334,13860],[11098,-13186],[9896,-5336],[7999,4906],[3335,17507],[4322,5777],[13299,2935],[15619,10776],[31551,-9059],[8889,-11009],[13147,-1905],[9651,4174],[15299,-5918],[9029,-7567],[10092,-19882],[10192,-12462],[19318,-7005],[2437,-13749],[19181,282],[13328,-11684],[9401,-12351],[2260,-13833],[8656,-7248],[14370,-3498],[7628,-12050],[1749,-11901],[15590,-13964],[21068,-4060],[21368,-49214],[14811,-20350],[-2230,-23238],[13352,-1595],[6408,-17929],[12575,-25359],[4026,-3291],[8061,9013],[17904,5364],[25292,-5666],[37855,8769],[5099,3142],[25339,-1060],[8488,-14198],[2785,-15670],[-3463,-7184],[-18459,-15819],[-4285,-9332],[10124,-9142],[15620,4097],[11576,-9340],[16952,-1904],[9652,8844],[10458,-4061],[6599,-11779],[8335,-5616],[19586,-611],[21450,-14788],[11622,-18484],[13199,-34304],[-7954,-12679],[2032,-9076],[-6737,-31051],[15232,-11149],[15405,-2851],[11548,6799],[5511,-7952],[4141,-20342],[29678,-15276],[3913,-13934],[41589,-8525],[11449,2335],[20757,17339],[19106,-6132],[10663,4285],[9500,-3948],[9873,-15145],[6013,-2429],[21389,4502],[3029,-13917],[19913,-6302],[15184,3572],[24952,-32211],[5154,-910],[14004,-18934],[1865,-8515],[-2862,-17509],[15749,-20527],[-8,-15202],[10871,-11957],[-4454,-15003],[-7094,-9810],[-14249,5102],[-15086,-16121],[-11814,1266],[-1971,-9368],[14691,-11300],[-10420,-11788],[-17203,-13720],[2740,-7089],[-9926,-18916],[-16335,-22355],[-13146,-13627],[-6667,-22160],[-6349,-8336],[-3425,-14085],[-7962,-14246],[2612,-10456],[17842,-27129],[-1699,-8310],[15338,-6713],[9394,299],[7405,6650],[8678,-770],[-4917,-13541],[25203,-11187],[16280,2710],[9013,-17761],[9896,-7174],[22211,-4314],[2762,-14518],[32610,-6320],[1956,-16767],[15093,-1586],[12591,4277],[21959,-22544],[12704,-5467],[-2779,-14987],[3875,-6386],[14881,-10305],[-1293,-21532],[20171,-19205],[-3296,-12341],[9635,-13946],[-5457,-4237],[28613,-45492],[13694,-11217],[-11305,-7276],[-6599,-20782],[-3889,-21662],[8760,-8666],[906,-27326],[8656,-18409],[17042,-8157],[7468,-7700],[7056,-16889],[7726,-9041],[-1295,-10521],[-10794,-23923],[580,-12631],[-6775,-17837],[4482,-8140],[-4999,-18268],[2701,-27009],[8989,-8664],[-2915,-13514],[8808,-11656],[18618,1698],[6325,-7090],[-1850,-11488],[11006,-38],[6814,-12884],[456,-20143],[10733,-1529],[8251,-23444],[-4049,-12605],[2602,-10221],[18109,-5514],[-2451,-21476],[10314,-3188],[3699,-14225],[-11487,-7540],[6508,-10242],[6981,10842],[3295,-6311],[-2961,-21560],[6859,-4829],[-3129,-12491],[3281,-13167],[7003,-8955],[-1781,-9191],[2809,-20105],[-3251,-29794],[-14059,24270],[-7345,-21362],[2009,-13354],[12819,-11733],[-1218,-9161],[-14653,-25734],[-2261,-7716],[-5381,6797],[-8183,-3976],[1941,-15276],[-11028,-11807],[-14547,-6113],[-1613,-25339],[5648,-4304],[6621,7220],[19556,-11019],[7351,-16974],[-10777,-1078],[-4575,-6124],[16952,-47723],[-853,-25947],[-8762,-11066],[-2579,-20125],[-17356,-10869],[-2694,-26979],[1706,-5543],[14249,-10879],[5107,-17179],[12863,-22385],[13412,-8862],[7544,4520],[-8875,6001],[-24,10111],[12804,-13411],[12680,-19356],[8875,-2466],[26497,15313],[12970,2363],[18909,-16879],[11166,-15483],[13054,-2457],[13329,-15041],[-2984,-25190],[6484,-15576],[10208,-5466],[-1537,-22151],[3165,-14358],[-13685,-24166],[4598,-14347],[11226,-19845],[-3911,-9461],[4239,-15474],[12049,-15660],[16686,-32017],[-1843,-12593],[15255,-24542],[-5047,-15296],[-283,-18183],[7385,-5823],[1005,-15071],[-10909,-7699],[-4270,-19870],[3958,-6462],[-3189,-14442],[7171,-15408],[769,-14347],[-7796,-13149],[-334,-13231],[4544,-9480],[2702,-19750],[-1127,-12802],[-10984,-9180],[1827,-6509],[13663,3095],[5861,-13157],[-898,-14825],[44552,-26614],[22973,3170],[3203,-8470],[12613,-45],[15734,10839],[8404,-7802],[1887,-25404],[-11440,-17601],[6621,-8732],[14920,104],[9538,-5721],[11258,1670],[12696,-14976],[13418,-10747],[31757,-3358],[11966,-13017],[11060,-23537],[11379,-17311],[8121,-6969],[5284,-16917],[-6234,-10100],[2603,-14019],[9445,-20050],[8679,-9002],[-4880,-25217],[9826,-24843],[11814,-18857],[4704,-12220],[-1818,-17799],[4139,-34745],[8320,-12688],[-5047,-17574],[3182,-22206],[6181,-4624]],[[37124157,45162421],[-7101,2739],[-65704,-1059],[-569199,3441],[-185628,263],[-7291,355],[-569762,2476],[-151474,357],[-188404,891],[-21269,7943],[-69518,1210],[-112889,769],[-56638,3367],[-19578,-2205],[-23612,929],[-487144,4510],[-182126,-18],[-94119,1276],[-1529,-288958],[-2382,-98006],[-868,-161270],[-600262,4615],[-252313,1030],[-564350,4727],[-140284,1238],[14,-924599],[723,-44169],[108,-103465],[-495,-173686],[738,-60335],[-488,-88873],[-350,-185548],[213,-91096],[-411,-272161],[282,-152763],[-777,-203911],[214,-126299],[-351,-338331],[313,-77628],[-488,-107778],[-212008,628],[-87795,-920],[-117836,459],[-82283,-1086],[-303708,-1979],[-203494,-1060],[-179841,178],[-10658,1143],[-426653,-4181],[-79626,-1126],[70,-213906],[-245,-150101],[-221,-511265],[1014,-607209],[45,-585134],[-1516,-93590]],[[31045203,39533250],[-187728,164505],[-250045,219870],[-6583,3994],[-325883,285403],[-4665,4943],[-289375,251680],[-328402,285805],[-129292,110020],[-437690,382716],[-121171,106062],[-42276,35879],[-224227,195123],[-48083,42528],[-91707,79063],[-229691,198922],[-92635,79888],[-142515,123692],[-104235,89446],[-169368,146603],[-73256,64275],[-167214,144726],[-8625,7887],[-285546,246344],[-316259,273643],[-110082,94002],[-138435,119051],[-75561,65588],[-86827,74225],[-67243,58676],[-110104,94613],[-84870,73445],[-35280,29532],[-43464,43015],[-359380,306802],[-14134,10701],[-489215,420348],[-81605,68214],[-59144,52421],[-37707,30909],[-10133,12520],[-161208,134430],[-41127,36010],[-65651,55864],[-50565,43924],[-217930,185343],[-228353,197139]],[[24400714,45283039],[-189533,163942],[-213318,182856],[-57446,47152],[-339651,292162],[-119459,103456],[-185117,153186]],[[23296190,46225793],[210823,275322],[289139,377753],[144226,188513],[57165,69470],[83646,108097],[288263,373619],[223100,289182],[299606,388425],[57287,80378],[56287,76879],[324109,422072],[333112,433825],[180420,235034],[22866,31895],[222150,287268],[356731,462107],[349758,451792],[51974,66356],[166788,215736],[117800,151779],[91873,117821],[49034,63760],[84019,107329],[280180,361774],[29115,35814]],[[92811649,56333233],[5566,-2222],[0,-15885],[-10049,-6293],[5443,-2935],[3144,-14133],[9119,5523],[4064,-13156],[5443,3414],[15542,-18157],[3442,-13250],[6613,4080],[-5342,-16196],[9262,1238],[-4650,-9537],[11470,-56],[8093,-18409],[9163,1398],[640,-13767],[5686,5260],[8389,-3713],[2740,-19544],[8091,3554],[19167,-15566],[-1326,-13410],[7308,-5880],[-7399,-6959],[4606,-5879],[10633,5626],[-882,-12378],[11180,-3094],[4804,-6649],[46,-11601],[-6913,460],[1181,-11864],[15247,-26239],[-9660,-17432],[8967,-6030],[-7400,-13767],[19798,-10110],[-6712,-5832],[9947,-3705],[-8037,-3563],[10686,-15624],[9706,5055],[-12256,-27326],[-7306,-264],[3927,-11806],[4408,7427],[9507,-6292],[2891,-14901],[6417,2682],[-9407,-12735],[20582,-8411],[5343,-7428],[-3821,-11188],[9355,-7014],[-10680,366],[6561,-5571],[-6857,-16242],[-7399,-5055],[6318,-8608],[-7010,47],[-9652,-25320],[2937,-10203],[-6325,-7690],[6181,-32231],[-2252,-13739],[4710,1557],[-1026,-12857],[-9082,6649],[-3280,-19459],[5351,-13888],[-7118,-10475],[5794,-3105],[-6128,-10118],[13740,-18014],[-9462,-6405],[-3038,-12493],[-5989,10475],[-6721,-5063],[2945,-8721],[-9660,-4445],[-6424,3404],[5443,-11816],[9766,2222],[-1522,-12754],[-5740,-1903],[23795,-14817],[-1425,-5158],[12804,-3244],[5343,-17536],[16677,-11921],[2345,4531],[9431,-8168],[-2435,-7719],[9232,4267],[-6401,-12191],[7094,-6067],[46,8131],[8205,1041],[-473,-14517],[-13053,-8496],[5624,-6780],[-8502,-6284],[10901,-5186],[-2026,-4754],[13132,-10156],[2397,-13513],[14204,308],[5487,-15314],[-12103,-14590],[6417,-5364],[-7010,-6865],[6318,-4999],[3532,10157],[9157,-14339],[441,6293],[11653,-6602],[-2154,-9388],[-9499,1454],[-7156,-6086],[6905,-3817],[-6150,-10606],[12345,-11245],[-5145,-3920],[5480,-10408],[9454,-3301],[8184,4838],[-7353,-14076],[-8175,-6854],[8959,-5055],[-6318,-7680],[-2550,-12277],[7688,-2990],[-2795,-12116],[10923,5514],[-1224,-12895],[-11564,-4942],[9645,-30271],[-5290,-27383],[-5588,-2167],[443,-11909],[-5488,-8403],[5822,-16401],[10528,-263],[-8130,-5412],[1522,-7013],[-11022,-8347],[-4361,-14029],[13169,-10109],[-9347,-2522],[10085,-9903],[-1522,-6810],[10328,-1283],[-11310,-6499],[6462,-17688],[-6417,-21146],[10572,-9022],[-8174,-5364],[-9157,5420],[6896,-16035],[-4453,-9696],[-7200,3301],[8274,-22798],[-8518,-1744],[-884,-15268],[4211,-5156],[-9303,-4333],[-2260,-17687],[18359,-9744],[-2595,-16504],[10817,-56],[6409,-24645],[10770,11235],[-442,-13767],[4066,-5102],[-16595,2992],[2931,-19497],[7391,1089],[6705,-6602],[11015,197],[4849,-11658],[10762,-6498],[929,-10776],[-6218,-4537],[-8130,-15980],[-4742,4998],[-2603,-18765],[9347,2167],[-99,-12013],[10572,768],[-14294,-9696],[14493,-6133],[-7300,-8094],[3037,-5373],[9348,5776],[-1226,-19486],[6851,-11553],[8464,2362],[-738,-10259],[7246,-13147],[-8715,-3920],[190,-12941],[-5580,-6499],[7049,-5054],[-7445,-3301],[6357,-17171],[7245,-1397],[-13365,-17987],[7878,-2580],[-13268,-9798],[5876,-3404],[-3775,-7428],[13556,-2522],[-2153,-12332],[-8123,9340],[-4453,-14283],[9493,-9077],[-7004,-7943],[192,-18764],[-8716,-6500],[13305,-22590],[22119,-6658],[5086,-9745],[4794,7830],[7734,930],[-981,-10625],[14142,2935],[-8958,-10259],[-9980,5729],[-17126,-3348],[4795,-5513],[-11257,-2168],[8807,-4078],[-5093,-6958],[8023,-12277],[7833,-515],[-4310,-11037],[25737,-366],[6698,-2841],[-298,-9284],[-10824,-7915]],[[93217545,54545038],[-2069,-11488],[2884,-20285],[-4841,-9508],[12483,1454],[5580,-7174],[-1910,-13618],[10961,-2418],[6409,7164],[-1280,-26661],[-16836,-9790],[9003,-5890],[336,-8861],[9888,-320],[-3874,-11440],[9248,-1294],[2146,-23155],[5625,5103],[7924,-3049],[-2002,9332],[22652,-1192],[1218,-18361],[8555,1856],[7650,24130],[3509,-14189],[6508,-4539],[5535,13663],[13008,-11141],[-4507,-8299],[12720,-8778],[10375,1239],[6455,-6509],[13153,-3151],[12673,3040],[3434,10203],[7337,-1033],[-4400,9434],[8412,8797],[5046,-7164],[-3715,-10578],[8130,-14995],[13944,-9126],[14865,10485],[3876,-14339],[-2291,-14750],[11241,16204],[1233,-20679],[9836,5262],[-1478,9331],[9347,-8347],[-6203,-13157],[10223,-4323],[3334,-10052],[-14136,-4756],[-9484,-12022],[2009,-9742],[6607,1246],[14333,-12529],[-18685,1699],[-17,-17687],[23925,3883],[19812,-9163],[7042,-206],[14980,-15614],[9089,12791],[12040,-17526],[-17262,-12285],[10572,-11704],[16631,-9838],[-2632,-15520],[-9241,-422],[-2444,-6132],[18488,-2421],[7583,-7623],[7580,1285],[-6790,-23257],[11693,-3864],[-7141,-4539],[4605,-15416],[10428,-22788],[13062,-14592],[9827,13260],[-4840,4333],[16426,8046],[2497,-8872],[11690,1659],[-6256,-8823],[2642,-6086],[18778,1246],[15840,26099],[2351,-16139],[-4254,-516],[1423,-12792],[9728,367],[-578,-8357],[9583,57],[13944,-23406],[-7238,-3921],[7139,-12734],[15308,21662],[3623,-16815],[-9538,-927],[13153,-11761],[7194,6293],[-3137,7174],[11151,-1032],[-1759,-10624],[-6842,-7784],[14622,2992],[350,-22948],[17164,-1134],[-1811,-11966],[-6699,-3143],[-586,-12529],[16777,9389],[-3037,-6659],[5335,-7212],[-14324,-8101],[23079,-11030],[10313,10935],[7878,-365],[1956,-17791],[9781,-2935],[10656,3921],[-2001,-7793],[23177,5214],[5869,-17639],[4453,-769],[5717,13766],[12764,-5364],[-3083,-10775],[9440,7268],[11836,2785],[-1713,-6650],[5428,-17227],[-5527,-11234],[-9827,-1651],[4696,-18361],[-12124,1801],[3958,-7624],[-1370,-20012],[18191,-8815],[-12423,-1191],[-11827,-8299],[3326,-28724],[16525,1180],[-4355,6706],[8114,2325],[5184,-20987],[-6013,-7380],[22151,-6442],[-9340,-11554],[8259,-7015],[2694,10213],[8844,-367],[8116,-7107],[-12560,-1960],[-9294,-16861],[16282,-2073],[-13686,-14179],[13983,-6086],[-8655,-8402],[12415,1284],[5867,-25676],[-13738,-20472],[-6159,-22535],[5763,-7998],[-1461,-23464],[-11783,-4230],[-488,-10980],[13785,-10213],[-981,-7736],[-12804,421],[2146,-9903],[15354,3142],[-4354,-10831],[11875,365],[-5619,-13306],[17842,-18878],[-12757,1500],[-7041,7991],[-1902,-6603],[7717,-12370],[685,-16297],[-11196,-7691],[3767,-17170],[4933,-5054],[3426,-17790],[-17895,-5570],[13153,-6397],[1118,-10877],[12711,7370],[-7284,-25938],[14516,1397],[5032,-8308],[-21214,-6799],[6744,-10269],[-20279,-9378],[25705,-8458],[7621,1181],[9674,-25274],[9384,-1547],[-3273,-6957],[-13389,-1960],[-6941,3817],[-11920,-2420],[-13198,-12895],[-7475,1811],[7916,-11724],[-4696,-3094],[-16123,5890],[-3912,-16702],[12658,-1294],[10939,-14180],[-336,-9799],[-10748,5458],[-11341,-17574],[-3805,-13880],[9963,2374],[5960,10164],[10702,-5569],[-441,12069],[5572,-2064],[-6402,-20996],[-9187,6142],[-2391,-13147],[-14607,4539],[-1766,-5881],[10848,-9489],[24632,-3873],[10450,6760],[8214,-18567],[-2596,-7680],[10702,-2326],[-6698,-17434],[8798,-2888],[-10313,-11292],[3517,-11289],[-731,-13365],[6006,-7520],[-6592,-1857],[-10406,7887],[-784,-29344],[-3615,-5925],[4004,-16505],[-6227,-7221],[-2055,-11807],[-5861,-4080],[6347,-11187],[-15626,3047],[6249,-9649],[-18412,-3657],[-3716,7165],[-927,-14799],[-10947,-1032],[15832,-12275],[12354,2842],[-532,-11967],[-15923,4999],[-18710,2222],[2290,10054],[-9620,1078],[-6402,18934],[-16464,-6293],[11875,-15221],[4687,-13043],[-9764,-20885],[-99,-19909],[10062,-16598],[-4148,-7175],[-19928,-3919],[-2543,-24392],[-10891,-9799],[1423,-10831],[-2985,-19798],[4157,-8102],[3273,-21194],[5815,-2579],[7810,6499],[2931,-14122],[7915,-676],[5420,-9743],[-1849,-12847],[-17020,-5449],[13207,-16711],[9682,1304],[12855,-5609],[-1545,-4605],[-15011,-4445],[15484,-1762],[-21648,-33037],[10770,-8854],[-4887,-18079],[9272,-3171],[-20157,-30853],[11175,-1105],[-2011,-11817],[6311,-7287],[-10663,2814],[-9553,9621],[-7590,-11009],[5602,-4399],[2459,-17938],[-14286,-779],[10702,-10015],[9781,1021],[-7582,-7914],[4042,-11816],[-17332,3385],[3607,-11038],[15338,-10033],[-418,-6883],[-12856,-10794],[-4940,-13965],[-22637,358],[-245,-15146],[-6378,-1266],[906,-27561],[-25020,-384],[-198,-7512],[10207,1623],[11936,-5187],[8716,4784],[1643,-12060],[8716,8140],[5838,-2683],[-4003,-11947],[-54,-15052],[6113,-975],[8120,8928],[19952,-9875],[-2117,-9275],[-10260,-6508],[1538,-10034],[11714,-8477],[10908,2381],[-3684,-11562],[-15491,9631],[-4331,-16448],[18123,-10316],[4095,11010],[5199,-1201],[9149,-14423],[15309,-4763],[1072,-12549],[-5107,-15558],[5001,-6901],[6181,10006],[2002,-19130],[4514,4370],[10420,-8516],[-5366,-7679],[8433,-423],[274,-7717],[7916,3469],[-8875,-18418],[-4125,-18156],[-5618,217],[-16290,-16056],[10962,-3695],[-198,-12819],[-9492,5589],[4986,-8917],[-13131,-14207],[-10344,-4306],[-8952,-10315],[-6667,7727],[-3158,-5860],[7717,-13776],[-9582,5983],[-2833,-14189],[14083,-14188],[-3875,-5946],[9773,-10316],[-4148,-12443],[-18405,-5825],[5487,-9292],[-22439,-6143],[-10017,13944],[15566,13646],[-18739,6300],[-14501,-21530],[-10375,7230],[-9704,-12558],[9324,-6113],[-10664,-3976],[-4826,7802],[-18390,-24138],[-282,-15220],[10406,-11460],[9317,2495],[-8822,-10597],[-7604,-2505],[12680,-19964],[-3257,-5515],[7878,-12595],[6537,3012],[-2708,-14667],[-13298,580],[-1036,-19374],[16336,3779],[5267,-10042],[-12141,-14273],[10070,-8272],[-11289,-6714],[-11151,7530],[-13366,-14874],[564,-9320],[8616,-18943],[555,-8948],[11296,367],[8723,7258],[-1317,-10438],[-12749,-10325],[-3684,-19805],[11631,-1773],[722,-6977],[-14629,-5035],[8183,-12754],[-1865,-10484],[-16913,-1379],[17521,-7099],[-8236,-15268],[5823,-8701],[-13365,946],[-1021,-9939],[11175,-8179],[-17834,-1613],[-5953,7634],[-1849,-11918],[12558,-4747],[-7063,-23200],[-12132,5430],[-4689,-13325],[10877,-13026],[7977,1931],[-464,-8795],[-12461,-2523],[358,-5908],[13115,-3518],[18831,-15567],[1019,-18388],[3700,-4653],[-10116,-13476],[8800,-12369],[-1234,-9864],[6745,-2560],[1431,11309],[5472,-9471],[11723,-892],[4855,-11065],[-10611,-2580],[-4132,-6423],[20695,-10457],[-10899,-7202],[18686,-15641],[-7748,-8215],[8669,-2757],[7871,4735],[776,-16430],[4088,-1229],[4027,14602],[4278,-22365],[-12537,3610],[-4971,-8027],[5413,-4539],[22636,-6050],[-5083,-15753],[15497,-6369],[7825,-8664],[-15307,-3705],[-8024,-20415],[-7664,-3666],[898,-20369],[-7772,5120],[122,-9847],[12369,-7483],[-1484,-6451],[10870,-12961],[647,-17790],[-13389,-2390],[-4348,-6349],[4408,-21147],[-11502,12341],[-10237,-3330],[3144,-17301],[-9918,-675],[-9636,5616],[-2786,-16775],[3372,-12680],[19029,-8590],[4893,-9022],[-1209,-23200],[-13663,2458],[6972,-9828],[12673,-8299],[5283,5908],[6265,-15522],[-10839,-6817],[3083,-12228],[16730,-8253],[815,-7793],[-6699,-6451],[-16616,4303],[5229,-18482],[8859,-863],[5146,11216],[8906,-4502],[-4886,-9077],[1926,-11263],[-4613,-13101],[-8586,1322],[-8641,-5194],[-4307,-9153],[9698,355],[-5794,-10455],[-22568,-4333],[9355,-11310],[-4742,-3328],[-19289,-32617],[-31,-8778],[-7359,723],[-10932,-16440],[39879,12614],[1582,-6489],[-12999,-15943],[-14098,-8459],[-20635,836],[-3487,-12238],[18854,-947],[16869,-35974],[-419,-12276],[-19569,1689],[21,-19093],[6288,-5964],[-23216,-3968],[-433,-10691],[-10428,6294],[-8907,-12407],[-13518,-31247],[-8311,2456],[12848,-28076],[-10901,-12735],[-2039,-8431],[-20026,-7183],[-1386,-8655],[-16701,-16683],[3182,-8590],[-19683,-45277],[10185,-4407],[-2223,-16317],[-7467,-1772],[10214,-6669],[8799,3837],[22227,-25442],[-2337,-17913],[7680,-26482],[12255,-4661],[-9644,-4379],[4551,-10391],[11327,7362],[16183,-10681],[-3304,-3835],[-14653,7745],[-4535,-12791],[-5991,-65],[-2307,-10214],[-8282,-2484],[1051,-10672],[-6014,-7183],[6129,-5842],[-32609,-76],[4750,-15763],[6904,-7362],[-15773,-3902],[-7664,-15051],[2550,-8862],[17195,3216],[3904,-8035],[9576,8308],[7756,-10626],[-45,-20967],[-6593,-11799],[5703,-4031],[13427,8224],[10602,-11684],[8488,-1914],[-449,-7568],[19653,-17996],[243,-18698],[8845,2249],[-54,8553],[12827,-6621],[3112,-11741],[-8273,-1800],[1400,-8937],[-9659,-14441],[-570,-20642]],[[89664647,53357065],[-7863,3684],[-11989,-6611],[-12734,863],[4285,13532],[-2230,7521],[-20445,1079],[-267,-15540],[-3814,-6179],[-10786,760],[5390,10869],[-3830,3103],[-10435,-6846],[-5853,10007],[-32174,-1764],[6628,11339],[-13152,2850],[-11068,-5973],[-7527,3348],[-4506,16842],[4345,9369],[11479,-5261],[510,9995],[-23215,18550],[5381,9546],[13343,742],[-6028,9002],[-16380,1481],[13069,7887],[-6357,19282],[4864,8148],[-8784,1792],[-6614,11252],[-30843,-11608],[2458,11139],[-12749,-1480],[-13457,-8806],[-868,14797],[-18276,27805],[2223,9163],[8365,5917],[12164,16139],[-3319,8844],[-20971,-4756],[3198,9961],[-9752,21070],[-6309,2804],[-4621,-9678],[-10359,188],[-4758,8234],[14516,24879],[16357,-6283],[11699,36705],[5770,10428],[20628,22188],[15004,36583],[-1157,9864],[-7871,18063],[2123,34847],[-6408,37643],[-6904,10550],[-8609,-2130],[-10101,-11047],[-22463,-12706],[-34002,-9632],[-18527,-11806],[-20741,-22178],[-19927,-10617],[-18306,-4847],[-14881,2710],[-10832,6076],[-8671,12905],[-17650,12116],[-1143,7426],[-11417,9079],[570,16748],[-6097,13176],[-20567,17855],[5907,11093],[1112,11751],[-11350,3619],[229,6349],[18923,10767],[4179,7840],[17643,16738],[1271,5449],[-14523,11516],[-28323,16654],[2885,19619],[-11219,2495],[-3478,8421],[4506,25123],[-4910,18858],[-14402,787],[6570,6565],[5967,-3629],[-2580,16946],[-6379,5599],[2002,16279],[8989,-5618],[-1287,9434],[6783,-2671],[5061,9987],[-4864,4678],[3929,13993],[-11046,16111],[2993,21241],[-13451,2502],[-19607,17481],[9849,9116],[-8769,3779],[-10998,20490],[4681,9725],[-5618,20678],[-4963,-10203],[-11045,6732],[8663,10664],[-1470,18455],[-11462,-7362],[-9873,5627],[-4909,12669],[-17059,15493],[-12689,19834],[-6050,4323],[402,10831],[-5540,8927],[21959,9763],[-4475,7080],[-3982,-9190],[-10976,22066],[-250,10671],[5487,7417],[-5533,23727],[655,13719],[-8184,2064],[-24708,-10194],[-8821,6021],[-5175,-16092],[-14394,1752],[3043,8778],[-7549,5233],[623,12079],[-4826,7773],[-16250,-9611],[-9713,5964],[17164,15370],[-5138,9819],[10291,3047],[2405,28189],[-7284,-6423],[-1065,17743],[5465,4613],[5055,-7221],[6454,2561],[-1035,14461],[9841,-4895],[-3045,18211],[-18145,8073],[-6630,7869],[2922,5871],[7284,-5421],[15453,10157],[2724,17958],[-13206,4275],[16724,4409],[-3814,17320],[-12194,-1370],[4948,15080],[-12324,-3600],[1127,8233],[-8709,2335],[9493,22085],[1112,18634],[-5436,18277],[1767,11243],[-9013,7952],[6151,16393],[-5170,13345],[-15960,-11638],[1864,-9425],[-15657,2598],[-6303,12332],[11509,16317],[20750,6358],[-5458,22365],[-5883,12399],[9178,-5393],[3867,5148],[-6242,6425],[1623,8251],[18755,9529],[-3555,10999],[-10344,-1369],[8235,13129],[-5997,1492],[-16534,-8365],[-7878,6713],[-4841,25490],[-8357,24803],[-9888,-13776],[-8494,4756],[-14585,32831],[-10961,9331],[-3425,11610],[-13312,20518],[615,23162],[-5336,12773],[3252,6012],[8455,-5215],[1736,7980],[18634,-3103],[11813,2325],[-791,5233],[-22409,24336],[-7185,20940],[3713,9125],[16191,-7446],[-1872,7961],[15018,39461],[-8046,30094],[-15863,11694],[1294,20481],[12445,-3394],[4635,6019],[11076,1427],[2870,17029],[11219,17011],[14477,12697],[6494,14406],[-1843,7474],[-17439,6732],[-10793,-1865],[-24045,72452],[-6859,17743],[-10557,9978],[-9894,16092],[-6997,-15484],[-5989,583],[-4917,16608],[-12979,-2289],[-6850,3376],[-1545,8974],[-19075,-1144],[670,12802],[6309,9011],[13321,2767],[-2254,22526],[16525,55730],[11206,11274],[2313,17705],[-5540,19505],[8365,16036],[-1699,-15821],[9782,8862],[13747,-4678],[15345,-13440],[12384,12239],[6037,-8177],[23603,13362],[11571,-6319],[21077,-6744],[9445,3489],[14973,-11319],[22126,-3311],[12803,4455],[2970,18399],[7032,-11853],[23735,11807],[-3167,10559],[16905,8420],[7969,-14337],[14881,11533],[7392,-14009],[12947,-2223],[12201,6405],[12065,13700],[-3120,15877],[7071,7466],[7399,-3751],[6461,12744],[-5343,6124],[4369,10381],[-12057,6217],[-5731,24251],[-6180,13391],[-14234,3816],[-14090,-3834],[-2755,15134],[-11067,6388],[-3083,-4661],[-15840,11731],[-1454,16543],[-7597,8261],[-6972,-2185],[-20772,2092],[-3136,7587],[-11548,5597],[-20324,-17620],[-10253,-1547],[6189,9912],[-10907,16571],[-4515,-6771],[-16304,-10531],[1134,-16008],[5839,-13607],[-5344,-2448],[-29913,39452],[-14182,27046],[-3683,13945],[-11182,11852],[-22492,-7529],[-3053,5353],[9157,5075],[-10504,12866],[-8998,1482],[-7413,-6752],[-18132,9930],[-20255,5571],[-14021,-4511],[-1156,10569],[-21670,-4679],[4939,14976],[-6227,1763],[1432,19196],[-12658,7051],[-2627,9698],[5876,2372],[-6059,8262],[-5084,16176],[1362,12051],[-7260,17367],[7413,-1396],[13610,14995],[2161,-9811],[12034,16056],[9706,-8524],[-274,13166],[7345,-5880],[5016,10925],[5154,-10438],[9087,-4126],[3410,5392],[16944,9838],[11471,-4952],[20819,4905],[5388,5880],[6273,-4174],[-1219,-12576],[38509,7484],[11021,7680],[-7741,8553],[14501,11714],[-10930,1800],[-5093,10672],[24646,882],[-1172,6029],[-10200,4435],[7400,5103],[730,13765],[-9949,-56],[-4307,15287],[14203,11318],[8722,-9743],[-3775,10980],[3189,7943],[11319,-8195],[6075,7531],[11911,-5319],[6905,2326],[1613,13299],[-5930,19796],[8282,8252],[4218,12482],[-2261,10972],[10489,3816],[388,18305],[15489,9642],[-882,12480],[-9949,10363],[929,7362],[-13100,21185],[-9264,5073],[5344,11863],[-8928,5044],[-10101,-478],[1118,10532],[13093,2907],[8693,-14235],[3958,18060],[12406,882],[10002,15182],[2504,-14187],[8343,-2411],[1849,10213],[32793,30186],[9849,30629],[-17743,9583],[9605,572],[-15292,26343],[2399,4952],[7892,-11188],[8236,468],[-11173,24224],[10192,16861],[-12842,-9182],[-6271,1032],[9803,8309],[633,10924],[-11562,2935],[7543,5675],[-3617,9837]],[[67023338,33193733],[-142818,1902],[-122800,995],[-140270,2364],[-31397,-67],[-57059,1763],[-206315,5148],[-180003,3321],[-89346,2429],[-109344,177],[-29486,666],[-186587,1398],[-258556,-919],[-76452,2814],[-229120,4295],[-71094,-40869],[-47095,-31190],[-97878,-61706],[1011,10587],[-20514,23258],[4773,16925],[-34648,42558],[-579,12640],[-13579,4380],[-8806,13616],[15292,19769],[7787,25442],[-14021,22478],[-3585,20115],[-10681,2944],[-12626,17275],[-9820,5711],[1393,10118],[-4727,10682],[1438,16505],[-16060,18587],[-14683,12612],[5739,5551],[10855,-7661],[9681,31434],[-6545,7119],[822,14394],[-7460,14423],[-11167,2964],[15741,53142],[-4391,11507],[-8373,3152],[-15604,-4249],[-13846,22056],[2298,9088],[11221,2382],[12422,23651],[-6395,36844],[-10519,6658],[-8836,24824],[3112,8149],[-7268,14657],[-9805,2841],[-8030,14967],[5321,18569],[16456,8917],[14013,507],[1257,19244],[-7559,4641],[-7026,16159],[-12286,15736],[18901,12481],[296,6340],[-11006,9968]],[[73174353,67071160],[-1850,-154546],[-435,-138032],[24,-257277],[-784,-38252],[0,-72997],[-1523,-76907],[-1522,-235381],[-60,-84006],[-2384,-134844],[-2283,-224389],[-2694,-141923],[-175,-60646],[-6196,-307657],[761,-8956],[-2551,-84464],[-387,-155999],[-2017,-68027],[-1134,-66526],[-603,-87099],[-3180,-122136],[67,-39987],[-3569,-233676],[-1751,-281276],[-3927,-260842],[-1402,-155379],[-120,-108107],[-2916,-252936],[107,-46055],[-1630,-46776],[-761,-77826],[-1522,-42199],[0,-67296]],[[73127936,62938741],[-28467,985],[-198523,3160],[-141792,3038]],[[69277951,67116670],[42580,-958],[76140,564],[64319,-281],[254963,-6688],[127908,-2634],[59805,-3817],[121179,-4380],[110986,881],[85800,-1247],[40806,-1584],[124550,-11160]],[[70386987,67085366],[12240,-1096],[128883,-5422],[118454,582],[156124,254],[114435,-1097],[247106,1481],[139958,-1041],[152371,-3001],[158035,160],[210365,516],[276308,-1397],[355757,2465],[18062,-1818],[25788,750],[477622,-2861],[120395,-1284],[75463,-1397]],[[76019779,32134844],[115319,-127782],[22841,-22938]],[[78678468,29316033],[-2550,-110995],[-8450,-200149],[313,-48895],[-12613,-345778],[-4384,-104073],[-3722,-61819],[-11997,-307159],[-14089,-347952],[-17173,-360087],[-3790,-76183],[-13382,-324190],[-17347,-410641]],[[73887572,30253368],[187774,171528],[176783,160743],[48676,45239],[68804,61527],[85350,74179],[77853,68297],[211681,184291],[287847,250658],[190415,165500],[98351,85993],[66267,57139],[475627,416203],[14410,12397],[142369,127782]],[[35376503,79484625],[-602,541528],[693,40381],[-655,195798],[-320,220893],[-714,204715],[29,279186],[-418,109692],[168,161699],[-755,60544],[-487,171031],[511,37576],[-24,560049],[-1331,81184],[1339,56107],[-479,270511],[191,141134],[-115,274402],[244,37324],[-572,168311],[-303,468673]],[[40939905,54519323],[853,135200],[2793,619868],[868,152934],[1362,137589],[488,174173],[1804,415013],[570,48286],[2490,420179],[3783,846923],[1331,215164],[1706,157939],[-442,91134],[868,38898],[-990,68346],[1774,164786],[1333,204781],[-207,16017],[1736,184114]],[[40962025,58610667],[142447,477],[49642,1276],[164948,-225],[253568,-853]],[[41572630,58611342],[210329,-1425],[100916,150],[134835,-2158],[184204,-880],[364891,-105],[402395,-74],[45669,1276],[156673,-779],[13716,-853],[133289,-431],[22561,900],[146603,-750],[75798,759],[103632,1912],[253548,-83],[99684,-4015],[27881,1688],[281894,-740]],[[44331148,58605734],[-603,-754309],[-1445,-52749],[-2093,-22479],[-853,-167420],[-2535,-209960],[-1583,-237622],[-1583,-143630],[-1394,-181140],[-2123,-186542],[570,-27270],[-715,-97127],[-6097,-427297],[-236,-26932],[3060,-19974],[-1835,-20200],[-1163,-247798],[-2741,-278642],[-2322,-61049],[-3052,-499448]],[[44302405,54944146],[-271959,86865],[-13351,-519668],[-5488,-233074],[433,-591],[-13236,-588848],[-81591,-2184],[-517300,-8235],[-161461,-4989],[-267484,-1894],[-231686,-4107],[-6477,-2335],[-131471,507],[-101427,-1699],[-71336,-1837],[-93518,-1472],[-273079,-5355],[-43226,112],[-491004,-9819],[-457358,-9114],[-134348,-2270]],[[25256563,54524631],[2031,925660],[367,297977],[1346,874232],[1165,1172219],[2983,2269]],[[25264455,57796988],[365211,469],[82306,-892],[7932,2373],[123402,-1247],[264987,638],[123545,-1136],[24937,-740],[538044,318],[257185,620],[22545,384],[184783,601],[-480,189112],[654,36412],[-767,46346],[-122,539623]],[[29279000,58598092],[1865,-248334],[2223,-756024],[1065,-678115],[471,-130678],[-349,-148440],[236,-286060],[6013,-688222],[-45,-21785],[-10361,-1112399]],[[29280118,54528035],[-21723,-4472],[-384805,1041],[-179110,-188],[-240242,394],[-256371,-845],[-36468,263],[-387597,-235],[-159665,470],[-35318,-262],[-216873,347],[-529358,956],[-37710,-245],[-334687,-289],[-592033,-395],[-31269,-263],[-580326,319]],[[59681689,30508349],[907,-248624],[761,-345504],[-867,-23370],[1475,-152556],[-84,-64575],[1173,-11141],[1082,-83941],[-291,-60711],[2725,-290560],[1836,-247029],[730,-46438],[2634,-323739],[183,-60946],[1171,-76486],[10262,-1154476],[-678,-48361],[5009,-584551],[670,-116032],[2199,-214807]],[[59712586,26354502],[-200539,-1227],[-48859,-685],[-317395,-2449],[-550337,-5879],[-298829,-3142],[-101731,-3741],[-360438,-3920],[-24799,-572],[-592817,-6265],[-64341,-1143],[-42230,1041],[-938,-1277],[-275712,-2296],[-203963,-1970],[-16,1866],[-59493,-2091],[-6699,1660],[-282508,-7521],[-435902,-9059],[-503745,-11009],[-156892,-3179]],[[46472885,95834281],[-49500,421]],[[46427793,99987235],[182056,-488],[205692,-27],[45740,1754],[160402,364],[231191,-514],[289618,-85],[160350,629],[320,-676],[170510,18],[76946,479],[88435,-731],[78049,5158],[74946,-3179],[47521,-123],[116047,2419],[123014,48],[220329,-863],[389349,-1145],[148199,-300],[99,2130],[37655,-2551],[38349,281],[53,2625],[29473,-2728],[760,2635],[57371,-3038],[6797,2945],[18664,-2327],[37077,2251],[103359,-2175],[50298,2063],[86790,-1848],[22058,2222],[27440,-64],[0,-2383],[146937,-46],[216075,1069],[5002,1152],[435504,-205],[25545,-1380],[38,-1838787],[16,-2325167]],[[46482345,87644252],[53816,-1811],[158894,-140],[174409,272],[275073,-27],[54658,787],[96175,-751],[92414,-27],[339666,-1097],[242047,1274],[329039,-824],[136121,938],[66199,-704],[157168,159],[86704,-1153],[74307,1115],[185361,58],[46705,-845],[538187,-1210],[134485,-2373],[487950,1276],[370250,938]],[[50581973,87640107],[31,-4091924]],[[50582004,83548183],[-80014,1210],[-139653,711],[-135041,4672],[-149463,403],[-190987,-283],[-40882,264],[-160760,-442],[-66314,366],[-84459,-730],[-55147,777],[-70461,-582],[-140977,-9],[-125062,451],[-105971,-451],[-356335,386],[-66511,497],[-237440,346],[-163059,-431],[-296736,469],[-189258,-403],[-52202,3713],[-256052,9]],[[47419220,83559126],[-163468,-19],[-106231,985],[-38911,-1819],[-19744,1257],[-66756,1238],[-30887,-1491],[-160943,1040],[-186070,-834],[-79168,1322],[-97826,179]],[[46469216,83560984],[-2238,21840],[4353,335546],[389,149630],[-502,88695],[-32,132948],[1271,264378],[-958,128935],[-1050,17179],[1019,54899],[-1005,207360],[1127,15314],[1896,121751],[1134,229051],[236,136691],[875,134204],[-632,43372],[1081,89764],[1651,194701],[-1081,0],[4316,488431],[-2305,106568],[2267,467548],[694,109671],[182,471571],[441,73221]],[[76694347,38677137],[111299,-218118],[148557,-290063],[243484,-233900],[64564,-67116],[77213,-74009],[7619,-1698],[22706,13100],[19015,5169],[14256,-4278],[11243,-11130],[14736,-5308],[4278,-18100],[35630,-38401],[10566,-2983],[12384,2477],[4802,-17068],[12918,-6237],[13199,-26238],[7688,-8347],[15794,7841],[1628,-5262],[22996,-310],[-1059,7532],[10757,6132],[13153,-3245],[13053,3967],[24914,-10924],[3889,-9079],[9651,-46],[1295,9893],[9316,-6132],[-2975,-9745],[23665,-253],[-435,-6451],[7969,-22160],[14540,-12895],[7543,3039],[16456,-14694],[-3502,-12933],[5953,-10774],[-4513,-9284],[7292,-12632],[-5040,-11028],[8875,-6960],[12774,3349],[19005,-8975],[9310,3404],[24000,-24645],[-3320,-11553],[4605,-6443],[7681,2682],[-1348,-16494],[11380,-1351],[6188,-7417],[-4415,-11085],[618,-18146],[12476,-6142],[-1774,-8920],[12377,1857],[11569,-9949],[13816,-2739],[19386,-29136],[17082,-2785],[7056,7474],[8875,-3921],[5038,-11140],[6334,516],[17667,15098],[9308,-4595],[19723,-2223],[36170,-20996],[10755,4070],[3357,8345],[8641,1960],[-2209,-14742],[4073,-7529],[13153,4632],[21252,-7231],[2930,9491],[8160,-9],[30812,12717],[5337,9949],[18283,5711],[6668,-1809],[3692,-15052],[8829,-2120],[11707,6537],[11966,-4802],[24189,-2569],[10748,2682],[10711,-14423],[16030,-5205],[-46,-9893],[8152,-1031],[4088,-10203],[8829,-4380],[8206,10108],[6424,469],[8304,-10464],[23369,2643],[16738,27430],[4894,14743],[14484,6911],[5177,27739],[20635,10879],[20012,3517],[18138,11909],[13199,-10981],[-1728,-24796],[5282,-15922],[25919,-18607],[11226,-13559],[8930,-20772],[10275,-15821],[30471,-26754],[-2352,-14638],[-1051,-36031],[-5800,-22993],[3836,-24072],[-8388,-11141],[-28118,3141],[-7292,-4435],[2642,-16130],[15595,1649],[9257,-7266],[3555,-15212],[15018,-9997],[20238,8826],[8929,-10728],[19714,-13551],[19815,-32063],[6385,-5204],[12857,-620],[12613,-7267],[6523,-25621],[13814,-11449],[5611,-16647],[-7575,-12068],[-668,-9275],[6233,-19533],[-959,-15164],[-11996,-15409],[-8678,-2990],[-11987,-11442],[-290,-19281],[7483,-7370],[17361,-2326],[15155,-19383],[2497,-25359],[-5609,-23818],[4261,-29231],[6570,-17414],[6044,-6039],[4505,-13654],[-1529,-20369],[9058,-12116],[21694,-13917],[18335,-4773],[13283,-9406],[9188,-385],[19235,-6798],[21313,-18062],[4552,-14179],[-2451,-9490],[5077,-31594],[-4561,-20162],[-13091,-20968],[-1583,-13101],[3547,-7831],[20803,-12539],[17834,-1696],[14813,-6922],[9058,-15406],[1102,-11292],[-12231,-12322],[-3068,-16129],[4119,-10364],[10306,-5467],[27325,5870],[19654,-2841],[25689,-14084],[11936,-12839],[16624,-28827],[-625,-9332],[10635,-17788],[19166,-11911],[11219,-1453],[10253,-8092],[1478,-11704],[-5992,-15511],[-7292,-7633],[-1682,-19684],[12300,-29962],[-1437,-16289],[-25752,-19881],[-12893,-20096],[-8488,1649],[-8098,-12472],[4255,-14122],[30858,-20689],[7368,-30777],[-435,-15052],[8762,-17019],[25005,-21711],[11067,-6863],[9332,-36031],[13169,-13099],[1286,-11966],[9964,-14949],[851,-15932],[-6621,-24017],[5266,-15623],[10916,-16917],[860,-7990],[8853,-12679],[19258,-17358],[41240,-9173],[7330,-6450],[26961,-11085],[12985,-9959],[8959,-20163],[17592,-21869],[9323,-7953],[9630,198],[12004,14330],[21068,12922],[10612,-66],[15595,7475],[16342,16653],[19159,11610],[14905,3171],[18929,-7241],[11160,-12594],[16547,-2850],[-304,-5103],[28651,-6123],[11485,-4895],[10901,-13195],[4887,-12227],[17810,-15314],[14814,-4971],[15367,1942],[19647,9836],[23420,-6320],[20994,-19300],[10078,-14281],[10771,-27440],[20924,-13729],[8053,-8580],[3205,-27094],[13199,-19898],[15276,-4614],[22638,-1877],[12476,-5936],[12923,-18351],[3069,-16955],[11394,-19534],[16616,-14854]],[[76019779,32134844],[174043,156214],[78477,71328],[62089,53134],[430664,390424],[-244916,313048],[-86377,112335],[-32045,40147],[-100247,127603],[-28880,37567],[-126696,158230],[-40632,51381],[-210555,268429],[-96548,120280],[-72334,98119],[-49689,64200],[-24846,35269],[-93875,118854],[-236298,305424],[-326376,417956],[-62113,-947],[-92337,-2682],[-147585,-1200],[-3737,11882],[-11349,16918],[-13213,9124],[-16860,20058],[-4126,20623],[2588,8608],[16181,15117],[3882,7324],[4157,39546],[18291,23679],[525,4839],[-9865,14236],[-17384,11600],[-5275,16139],[-2780,32850],[-10351,11751],[-8092,1697],[-6903,22694],[-22751,12163],[5222,19806],[9332,16598],[-6037,18981],[92,16082],[-10489,3039],[-13124,-2626],[-8577,4230],[-12217,17424],[13024,11759],[-5991,7475],[-22516,5101],[-22416,9011],[-4941,5158],[-19448,1745],[-15284,10934],[526,22028],[-18688,7108],[-11646,7466],[1295,13720],[-20370,3854],[-3067,4435],[7407,19505],[-70226,0]],[[69712703,71238227],[115622,-1500],[42518,150],[376965,-3629],[76093,-375],[180803,-2063],[-610,-22883]],[[70504094,71207927],[-5700,-209264],[-5694,-113349],[-7255,-226106],[-1834,-66958],[913,-17826],[-9947,-274900],[-4035,-105827],[-1622,-80771],[-2649,-55629],[3000,-582],[-4574,-119153],[-1812,-4183],[-6653,-236404],[-10131,-180164],[-7643,-332910],[-9932,-396435],[-4925,-202353],[-8738,-381168],[-4286,-147334],[-2703,-118226],[-6629,-248979],[-2398,-106250],[-4895,-192375],[-1620,-43306],[-3038,-133981],[-2307,-128128]],[[66431101,71240028],[326359,1229],[97370,-1820],[263145,-338],[134697,919],[13634,-1396],[162693,1650],[301615,141],[569259,-600],[360477,-283],[42062,1857],[650947,-562],[192982,-516],[65598,403],[1163,1041],[99601,-3526]],[[37682927,58614380],[367335,-966],[193977,-1021],[236322,-741],[103315,-1107],[192203,74],[328789,450],[93016,-186],[172450,572],[173633,-714],[385877,807],[291680,-1115],[381875,731],[168463,853],[69693,-74],[67508,-1173],[52962,-103]],[[96136349,57604622],[20880,-13766],[38280,-35815],[8091,-10680],[27569,-70212],[22706,-50246],[12057,-16495],[22021,-43945],[9225,-13991],[36498,-36245],[13915,-41900],[17964,-22168],[24334,-20509],[4285,-10439],[7330,-32128],[8282,-18145],[11814,-51044],[12422,-26699],[29968,-37003],[13395,-10185],[18116,4193],[27136,25957],[14715,9125],[24204,-8723],[16152,-36141],[9332,-15230],[4347,-15650],[168,-23060],[4278,-14367],[13084,-14301],[28232,2831],[38256,-5655],[16479,1041],[38890,-10794],[19942,8581],[16129,3535],[13633,8441],[8404,12238],[11957,-3798],[5489,-15285],[20665,-18550],[7269,-15088],[13945,-16628],[990,-14469],[-18802,-6968],[-9918,-12763],[-12817,-31800],[-15886,-23566],[-19883,-19704],[1622,-13231],[7506,-7492],[22454,15538],[10413,11779],[8311,2250],[7072,-12182],[-1393,-5766],[-14973,-7738],[-3234,-9218],[7323,-20724],[15299,-16130],[16099,-8947],[16768,2092],[1165,8768],[-7474,24044],[7840,11553],[21252,-10465],[6028,7099],[-1538,16936],[9896,5046],[18763,-4492],[1994,-6584],[-5899,-10569],[3790,-4642],[16366,17603],[29380,4566],[3783,-6057],[-7330,-9669],[3061,-9153],[6096,2110],[20720,36021],[-6486,15286],[16366,13729],[8875,-2139],[16381,-25216],[9712,-28884],[5557,-44385],[-1598,-8993],[-15720,-12594],[-11942,-23416],[-12072,-13354],[-1377,-8994],[7824,-22244],[-6409,-14667],[9583,-12191],[13510,2625],[10741,15043],[19190,5111],[23070,-5364],[2391,-10709],[-12818,-11291],[-1386,-15455],[19044,-18419],[16724,-2896],[19806,-37128],[10146,-618],[2877,7839],[-4962,22253],[6454,9482],[19424,-10054],[2163,-23829],[-3807,-11300],[-55557,-75172],[2543,-16372],[37525,-657],[8000,-3105],[5792,-21933],[-4278,-7776],[-11105,-6994],[-4665,-12661],[4825,-16898],[18427,-8177],[20546,-14902],[-1378,-9556],[-15787,1154],[-9385,-6097],[4346,-12969],[10062,-6508],[10726,4285],[20574,-2596],[12621,-10231],[1088,-25237],[12870,-11477],[222,-6649],[-9652,-3864],[-15010,-12445],[-6524,-9789],[-1666,-12670],[20019,-18427],[950,-39668],[-2404,-31360],[6362,-11713],[20666,-8214],[2650,-7559],[152,-23875],[-15931,-5299],[-1851,-12998],[9942,-9059],[8434,-1285],[17926,13786],[8866,591],[45177,-28311],[6866,-7324],[8875,-22516],[18085,-9669],[18018,-13438],[9004,-11103],[-1059,-26820],[6654,-14058],[8936,-8983],[29298,-4830],[4353,2119],[6637,20256],[25088,-12614],[27015,-3243],[7078,-21832],[18809,-21681],[2504,-11263],[-14788,-44047],[-1067,-18137],[13869,-19946],[-3783,-11103],[-10710,-7868],[-2786,-15249],[3434,-11862],[11142,-3095],[25941,7774],[8289,-3770],[6722,-17067],[-18214,-8920],[927,-5822],[12218,-5739],[30933,7793],[13930,-7935],[16578,-16852],[6433,-14432],[-4073,-13823],[-10923,-15342],[-4141,-11177],[-1644,-19572],[-4780,-6198],[-21717,-8243],[-5921,-13373],[3715,-8535],[13785,7324],[8501,-16391],[503,-22817],[-9424,-4914],[-1507,14208],[-17354,-2495],[-1858,-25545],[-6423,-12088],[-5427,-18886],[-27494,-16402],[-12559,-25058],[12384,-27524],[27090,-16147],[36483,-74253],[17705,-30000],[18282,-16148],[32236,-15783],[18717,-11450],[4211,-10157],[4727,-63477],[13876,-57195],[-2086,-13177],[-31649,-52983],[4771,-11891],[31095,796],[8783,-13785],[-1598,-18784],[3426,-6741],[28657,-5412],[73377,26277],[17790,-6002],[4628,-15520],[-656,-11667],[-67348,-133764],[-11516,-6048],[-2437,-6967],[7703,-18794],[-16174,-13007],[-4088,-13710],[-31178,-16177],[-6811,-20743],[-4864,-5899],[-18938,-3845],[-9805,-11582],[4993,-12424],[23696,-20022],[631,-15520],[-25886,-20509],[-6220,-451],[-5487,10842],[3158,17488],[-3562,10457],[-20430,3807],[-12278,13194],[-11014,-9997],[-25065,-56021],[2459,-45070],[3637,-10232],[23977,-26904],[8678,-14469],[8358,-24627],[14050,-23491],[10643,-5168],[25925,-19],[14774,-15163],[1264,-17574],[-13077,-8852],[-21983,22591],[-14576,-9454],[-304,-15970],[5114,-24541],[-1439,-12725],[9324,-27730],[-13418,-22863],[532,-11742],[11189,-17808],[4850,-13036],[-4362,-4612],[-15216,-2945],[-11152,-7943],[-6516,-15061],[1127,-11590],[7917,-11291],[15566,-6912],[4780,-6264],[-2108,-13345],[3242,-11657],[-6599,-8167],[-23010,-1848],[-23034,-7511],[-15802,6957],[-10200,-10371],[9241,-6949],[28940,-9499],[25629,-17997],[533,-19196],[-6585,-4080],[-23292,3826],[-10162,-2821],[-23641,-12858],[-5952,5992],[11987,13196],[3319,9443],[-15208,6010],[-37525,-54399],[-2444,-16055],[-25127,-9715],[-12581,-11319],[-8168,-30526],[11600,-16072],[-12605,-17302],[-1172,-7324],[8776,-42117],[18710,-30570],[6752,-49111]],[[96373599,53755646],[-119731,71544],[-12454,4511],[-47018,27973],[-32204,17423],[-127177,76504],[-208661,125926],[-43106,24315],[-158621,94773],[-59820,37079],[-74099,8431],[-112685,15989],[-63147,8261],[-12506,451],[-62668,9714],[-130951,17011],[-199847,26343],[-142118,16730],[-139158,17593],[-80815,11168],[-29640,4839],[-100505,13064],[-57574,8036],[-8116,3274],[-461955,60402],[-186709,24841],[-115051,14611],[-110735,15144],[-123767,16383],[-135216,17059]],[[92362443,57549555],[142317,1023],[5213,-385],[417353,6818],[39277,403],[230978,3761],[201816,3582],[27145,-168],[191746,2962],[28376,-291],[111765,1314],[79519,3225],[178975,1089],[18412,-1294],[315552,8168],[120228,3507],[39398,-986],[474608,6369],[317264,4304],[39093,2823],[106330,1350],[48356,1725],[47284,414],[254538,280],[338363,5074]],[[64222197,57019966],[220246,-397261],[174178,-313554],[-96866,-61602],[-384918,-242743],[-40365,-24832],[-113400,-71872],[-77838,-47844],[-348259,-222057],[-212041,-135151],[-20978,-15530],[-21016,-10971],[-279897,-175280],[-69481,-43241],[-298318,-189141],[-182774,-116470],[-130922,-83135],[-61008,-39227]],[[60720380,54985022],[-209574,382323],[-44339,83161],[-222589,403149],[-144387,261987],[-2398,5805],[-251773,457081],[-20202,44160],[-274465,490962],[-101160,182940],[-59341,106345],[-143922,258862],[-70995,133081],[-29655,51417],[-213166,387695],[-20445,35701],[-139890,255470]],[[62415201,47679054],[9005,15660],[20560,25845],[12908,6142],[38669,5478],[45023,-6275],[30248,-13297],[22091,-7108],[20741,10249],[13975,23378],[4818,15952],[2367,22667],[11875,60355],[5770,34801],[-2711,12837],[-8897,12867],[-28962,18278],[-36917,14778],[-21808,2935],[-51014,2074],[-58778,6892],[-29670,9866],[-9310,9920],[-26153,64623],[-17219,53951],[-768,40587],[5283,14066],[11180,13138],[57127,76026],[8183,25892],[2131,17141],[-5344,17500],[-27470,62906],[-38568,46738],[-14417,15830],[-26451,37455],[-14652,24569],[-5245,14640],[-46,24690],[3776,10945],[13632,15117],[39801,21494],[26140,11758],[20452,12642],[24944,22742],[15482,25394],[5823,18203],[975,29221],[-2186,12153]],[[62461594,48692769],[121354,-1040],[368667,5054],[211592,2569],[16189,572],[419947,4754],[303762,3695],[190469,2796],[246939,2616],[514082,6124],[187918,1050],[172354,2232],[177155,2644],[27036,-56],[387028,6273],[0,2955],[382557,4539],[291971,3695]],[[67113697,47536034],[-39969,-40475],[-17827,-20885],[-206102,-231780],[-64806,-71159],[-26420,-31247],[-30272,-38467],[-175901,-190846],[-24266,-27102],[-140595,-152772],[-110394,-120786],[-14233,-14741],[-113529,-125325],[-58306,-64876],[-65728,-149133],[-82305,-183392],[-50673,-119791],[-78127,-183147],[-8784,-17950],[-48014,-112626],[-127505,-286726],[-85912,-198319],[-97622,-220678],[-17750,-42612]],[[65428657,44891199],[-126226,-289633],[-264835,-607537],[-41072,-95446],[-74048,-169859],[-3660,-13965],[-16213,-35720],[-33668,-78903],[2353,-16495],[20171,2672],[17477,-2016],[33811,7343],[24098,50011],[17302,25010],[18002,16542],[15795,10017],[22704,9892],[23468,5580],[305,-134879],[-807,-91218],[1028,-59287],[-21999,-42302],[-19524,-32072],[-21070,-40390],[-131895,-243324],[-17476,-30526]],[[64852678,43034694],[-401840,130652],[-120866,39499],[-420397,136540],[-6393,5288],[-132354,40315],[-267301,88085],[-14775,5083],[-352407,116360]],[[63136345,43596516],[-1340,163295],[418,84192],[-2702,44104],[-2314,106194],[-1233,280198],[-93661,123776],[-13466,12463],[-21655,11348],[-10726,2879],[-21983,609],[-20909,-5711],[-41080,-27363],[-37723,-20097],[-29678,-9809],[-34437,-22197],[-30720,-15850],[-19441,-1144],[-12118,3376],[-18678,20595],[-21421,32888],[-22651,46634],[-7674,29935],[-2078,20922],[-9713,34819],[46,20078],[14189,21203],[29617,21738],[41294,24344],[13876,14517],[4294,14386],[-373,21295],[-13406,32027],[-9894,17161],[-21009,30009],[-18938,33487],[-15687,30881],[-25683,61856],[-27934,64894],[-5672,24832],[-776,28912],[10238,53462],[625,20622],[-3136,23537],[-8883,23548],[-34169,38683],[-38287,36828],[-5634,7970],[-1081,13344],[6113,24890],[-1218,17113],[-8829,10092],[-28713,9405],[-17111,365],[-17133,-4435],[-9926,1266],[-15506,21644],[-4832,14386],[882,26304],[8990,24064],[11166,14648],[17416,6395],[26831,4408],[23345,6574],[14927,-1013],[25439,-7981],[23458,-1463],[13937,2345],[23117,10212],[26109,5166],[43051,-8373],[12584,2531],[16281,8562],[12255,21514],[1507,21540],[-20644,65888],[-4353,22563],[-17339,40670],[-18116,27871],[-24800,32278],[-8068,18587],[3607,13439],[26749,32813],[10466,23557],[3600,17752],[700,25104],[6090,14705],[27067,42592],[15565,7100],[35251,-5514],[36703,-178],[15208,15276],[34672,56669],[4415,13374],[34527,31743],[36050,31313],[16646,11627],[16419,20538],[3295,8374],[-1188,14480],[-18632,26380],[-8837,7868],[-19334,6225],[-13534,1277],[-39779,-11544],[-50444,-1022],[-21624,4266],[-15794,6884],[-22372,19608],[-6796,8496],[-11776,600],[-39200,11328],[-37419,38],[-20818,4323],[-24662,-5757],[-18726,-1894],[-16259,-6359],[-12985,413],[-19668,9566],[-17705,25740],[-7255,17303],[-2899,15623],[577,29794],[7491,26697],[17681,37709],[19425,23462],[11152,25527],[2732,18661],[-7726,23783],[-9924,12754],[-36993,40052],[-11388,14901],[-6789,14180],[-3388,21287],[4163,17404],[8457,12774],[18291,20086],[15444,11658],[10718,4454],[38850,-3358],[33074,-9658],[12833,336],[10337,6425],[10108,12941],[11440,25883],[5808,23340],[2322,53454],[3759,15830],[20742,46354],[3699,16823],[12271,20547],[18642,9050],[16030,-1183],[25903,-5617],[16958,-533],[23573,2972],[14228,5860],[19166,14246],[13449,13364],[29116,37445],[18868,32906],[5702,19937],[1972,20096],[-2209,10447],[-20558,21879],[-13648,9181],[-52202,22263],[-41233,22355],[-30371,8000],[-28528,1717],[-27348,-1623],[-6030,-7869],[-8632,-36881],[-14826,-23371],[-27532,-13550],[-24739,-3620],[-44719,2522],[-5047,14076],[344,25621],[9469,57860],[10161,51352],[2146,77321],[-10565,28996],[-22415,29924],[-24268,17715],[-35667,20059],[-19456,6518],[-27928,4126],[-61541,-2252],[-18716,2449],[-31719,16148],[-29373,38870],[-7840,22901],[1332,21099],[5868,18269],[17187,25723],[35662,33770],[5631,8401],[2148,23474],[-6737,35325],[-814,61489],[2206,36236],[8883,63469],[6334,35552],[10595,36142]],[[46482345,87644252],[-131842,-1059],[-1697,-638],[-101046,-9],[-59243,1715],[-356656,-1631],[-53601,675],[-230513,384],[-80823,-234],[-327563,572],[-62865,562],[-200585,806],[-2976,-1180],[-381659,-10],[-240425,1473],[-186495,289],[-66230,-1977],[-76703,1238],[0,-2082],[-231656,1106],[-14957,-2148],[-48282,2372],[-351889,395],[-91335,422],[-16265,-629],[-197121,-1837],[-7543,-1408],[-645956,-6582]],[[42319053,91732556],[241451,244],[74740,301],[69313,-751],[265482,1117],[78941,1716],[177499,-479],[208798,-1088],[329998,-835],[156140,244],[71557,5486],[104182,1229],[89765,2522],[39056,-196],[96625,1265],[172853,-1181],[102325,3375],[275135,-2990],[66579,-3564],[108208,-245],[244155,2187],[97559,1415],[52719,-1500],[382285,-4257],[208493,2016],[134940,-2260],[226648,-2139],[78865,188]],[[46473364,91734376],[434,-169362],[996,-38281],[648,-99751],[-1211,-190743],[-1302,-129900],[839,-75801],[4772,-116613],[-1865,-1181],[2855,-442488],[181,-100287],[-570,-8101],[959,-211065],[3737,-554170],[228,-78219],[1241,-74545],[-1469,-6366],[1142,-45971],[-84,-144004],[793,-207511],[1636,-129732],[1370,-227822],[-3136,-389777],[-152,-258338],[-519,-59456],[-570,-190367],[-655,-78033],[-1317,-62240]],[[4929688,57815358],[569379,-2315],[22661,-4183],[33050,290],[57073,-3563],[58092,6479],[193818,-271],[161590,3770],[205859,-1022],[582321,-329],[145826,-6010],[394486,-1904],[340397,-1314],[810878,-3272],[331049,-590],[60368,-573],[361338,-1613],[17766,572],[279411,-291],[112822,357],[244838,-807],[336066,-899],[370601,-1735],[20856,1500],[350291,-469],[70630,665],[148398,-506],[133457,1192],[185650,-366],[42261,-1144],[88523,1537],[268459,-19],[108468,525],[86393,-740],[399601,-845],[154138,1108],[471813,-395]],[[13148315,57798178],[-3189,-3592],[2130,-410603],[2002,-183702],[1013,-162722],[2695,-320672],[-6349,131],[1910,-143086],[-243,-531174],[7756,-467715],[739,-53950],[-2155,-18410],[2209,-11027],[67,-45238],[2634,-71890],[312,-66742],[2718,-68232],[7946,-77208],[18772,-884350],[-1546,-358435],[2771,-813764],[2755,-292943],[9248,-1079884],[11912,-778401],[443,-12069],[3081,-214085],[291,-490746],[-640,-277657],[22,-158597],[411,-67218],[123,-203630],[632,-66065],[-282,-65073],[586,-129834],[1005,-354489],[-175,-105115],[14,-323880],[-228,-69075],[6859,-143049],[1324,-56],[2846,-304337],[1218,-321056],[31,-64604],[1202,-102723],[-2922,-281],[-829,-368537],[175,-235326],[-67015,564],[-2755,-550315],[-1043,-248136],[1606,-13925],[-899,-142177],[276,-36787],[-2033,-332001],[-990,-292942]],[[13156756,45261348],[-197395,-133136],[-146587,-97970],[-132801,-91189]],[[12679973,44939053],[-14950,7334],[-6599,15576],[-1371,22065],[-7749,7043],[-524,23229],[-4674,38073],[4612,14855],[-4978,12369],[-754,21531],[-6910,39603],[2617,14452],[-3302,27785],[7169,3452],[-2739,10869],[-8373,12012],[6339,3348],[-9240,10447],[4766,17986],[-1363,12211],[-33704,6545],[-6737,15633],[-10208,-3114],[-5487,10879],[2694,9283],[-5984,15192],[-19249,5318],[-9987,-1342],[-10565,18344],[-18443,16955],[2276,22890],[-5343,31397],[-4316,14442],[3775,7417],[-19973,21082],[-7316,-469],[-3950,22507],[-12551,6986],[-19997,-15351],[-14257,-7053],[-4102,-10108],[-23413,815],[-5200,6264],[-1255,12811],[-9560,1490],[-16030,-13513],[-9637,-20077],[-23894,393],[-10481,-5017],[-10824,-19487],[-6104,10532],[-15764,1003],[-13427,8243],[-15155,21991],[-16259,31162],[-16966,13354],[-21466,8074],[-11957,-14911],[-14052,4286],[-4521,9799],[-13710,-4978],[-959,-8357],[17469,-23153],[2620,-17039],[-6691,-4493],[-2778,-25797],[-18186,1641],[3555,12509],[-10055,10315],[-23200,-8973],[-25933,6114],[7291,18370],[510,10195],[-9803,2598],[-3906,15585],[-5998,7006],[-15961,581],[-7087,-8553],[5191,-6104],[-14903,-6697],[-9432,7446],[-5389,14949],[-1194,13973],[12208,44563],[253,11122],[-7178,13700],[175,14696],[-18589,-1971],[-15254,10166],[-8655,25057],[-113,14762],[-13929,-17040],[-26953,-3048],[-13162,3123],[-9955,-6134],[-5794,-11505],[-25475,-2617],[7,15408],[-10032,-704],[-3410,9340],[6165,6789],[13641,4362],[4049,18286],[-7346,6883],[891,14574],[-4271,5992],[-11334,1820],[-9810,13654],[-27517,-2515],[-5412,15868],[6972,28265],[-6280,10915],[-10702,4032],[-14126,10617],[-30174,-657],[-7330,-11375],[-16662,5485],[-3790,12202],[2252,21240],[-10748,19375],[-8548,4059],[-20642,1980],[-13816,8655],[-212,8618],[13396,8450],[2687,14798],[-4042,7051],[4499,10673],[-18604,13006],[-2139,13768],[-10587,-855],[4391,-10877],[-3987,-5467],[-10993,938],[-8685,8852],[-3523,10174],[-9668,7053],[23,26708],[6052,16936],[-319,11131],[6887,3742],[-3189,11093],[-13769,3536],[9948,27045],[-21183,22114],[-6440,-957],[-11957,-10765],[1879,-8929],[-6979,-6085],[-22692,938],[-4970,6508],[-3105,19140],[10800,15239],[1166,9124],[8061,3835],[-572,7737],[-13183,2353],[-11136,-4106],[-21221,-2927],[-5564,-8308],[-16937,-5336],[-8335,3647],[-6341,18174],[-7992,4437],[-26961,2354],[-26359,8571],[-19014,11815],[-5329,-7137],[-6690,4128],[-5154,16936],[-14568,6620],[-23771,-13673],[-14424,-14347],[-23392,-6921],[-8327,2129],[-24638,19965],[-6935,685],[-9507,-10700],[-17971,-6387],[-5230,1266],[-3250,12248],[5199,11994],[-747,10915],[5253,14939],[14637,17329],[6851,17922],[3151,39452],[-1081,11272],[11052,26905],[-21990,13344],[-12369,-6142],[-16601,3451],[-7961,7465],[-14113,20434],[-6433,26633],[-15847,-4661],[-6919,-22356],[-8403,-17237],[-12811,-10025],[-860,-7595],[-14142,-24112],[-17447,5722],[-22339,31827],[-8366,24871],[-11411,21109],[-15840,1687],[-7070,11911],[-214,26923],[5946,8289],[-9135,9763],[-3874,20012],[-26482,5729],[-8822,4070],[-7071,13514],[-6782,25452],[-13815,11084],[-5054,11263],[-7346,-2401],[-10397,-16365],[-13191,-11421],[-2649,-9191],[-8053,-6218],[-12873,5919],[-19021,-4306],[-14105,-11243],[-5890,-22347],[-10041,-10063],[-17812,-5598],[-5358,-4943],[-18564,8112],[-9082,11235],[-9401,-5026],[-106,12360],[-15215,5936],[-8525,9546],[-2985,23707],[9462,15418],[3547,16785],[8967,11075],[15093,-5129],[14325,2353],[13406,11488],[6126,23248],[7467,3723],[488,8158],[-10992,14499],[-15269,9349],[-6455,17199],[983,12950],[-9310,19657],[-20361,112],[-16114,-14957],[-9911,-15080],[-15991,-17545],[-7042,-516],[-11714,-11695],[-15292,-3695],[-9690,10457],[4963,10849],[319,12492],[-12665,9819],[-17066,-8047],[-25186,-2082],[-15742,8440],[-9553,-9958],[-19348,-3059],[-11586,-7238],[-9249,-15708],[-11911,6386],[-20081,-5007],[-13982,-8732],[-20566,-30356],[-7575,788],[-13427,-7315],[-2588,-6497],[-14675,2868],[-6690,7325],[-8845,17882],[-30113,24768],[-11920,23556],[-2290,37006],[-7840,18624],[-16830,8120],[-24701,-2926],[-6903,-8786],[-9447,-853],[-7726,-9659],[-9491,14254],[-3845,24484],[-14103,14321],[-2056,27449],[-24243,25479],[-17767,3751],[-19349,-8985],[-8539,7456],[-7400,28771],[2034,19562],[-4447,9574],[-18449,15193],[-12392,1200],[-40709,-10212],[-7117,-5430],[-5616,-14152],[-868,-24822],[3569,-12087],[-15962,-28987],[-6766,-23342],[-15734,-22348],[-4734,-1189],[358,-13111],[-12454,2691],[-8212,9041],[624,24766],[6766,8768],[-11082,12333],[-2794,9414],[-6804,-9931],[-10231,-23762],[-15208,-7324],[-5869,-10111],[-17058,-5579],[-7778,9444],[-8449,2953],[12240,40456],[-510,6452],[12139,13653],[-4292,15915],[-10481,10907],[-6957,20321],[-846,12304],[7094,21447],[-8145,14619],[-5861,1211],[-1431,-12473],[-12893,-2476],[-18832,8402],[-5617,-1762],[-13953,-18081],[-2161,-14180],[-15628,1585],[-7595,7662],[1568,9847],[16181,33470],[-2069,9724],[-31887,9705],[-14552,11733],[-11616,-2580],[-12712,3761],[-852,20012],[-3837,19974],[-9279,22339],[-19104,609],[-7734,4951],[-23315,-3619],[-12309,-10278],[-3554,-14592],[-15588,-9575],[-11586,-12322],[-13274,2833],[-9454,15491],[6637,18662],[3288,20997],[-9385,13297],[-24174,19093],[-15018,4961],[-4036,6058],[-3081,20134],[-12431,18390],[-26625,-15098],[-15978,-11647],[-33757,-760],[-19616,10579],[-3699,11477],[-9676,-10933],[-9415,3713],[6789,11629],[-4841,7764],[-18099,-6180],[-30082,11403],[-2816,-10607],[-7628,742],[-16989,27823],[-14516,-13869],[-14364,-498],[-4742,-13035],[-17347,947],[-2579,-17310],[-11662,2137],[-17218,18587],[-17195,12022],[-9323,16008],[3949,15239],[14052,17312],[30858,14554],[5275,18747],[-3860,7727],[4620,8299],[-4444,9312],[-6494,-534],[2497,9668],[14401,18436],[-8965,23689],[3151,9753],[-4218,5476],[5459,8262],[21540,14713],[-22,7663],[-16852,19073],[-29565,-1424],[-22317,6038],[-16260,17986],[-13273,9885],[14857,17001],[17195,12024],[9462,23153],[-9621,13448],[5473,13710],[-11997,16035],[-8761,2486],[-9339,14329],[-5261,2128],[-32845,-26050],[-27135,-6838],[-2800,3695],[3128,18174],[8624,5319],[471,9770],[-11143,12885],[-5892,19403],[-6561,34275],[-12271,4559],[-51873,5645],[-19281,3198],[-9400,-4070],[-11814,17790],[-9712,20837],[-14821,10982],[-15071,2981],[-13754,14207],[-12278,-1922],[-28049,13100],[-5191,-4951],[-9880,4820],[-22348,41947],[-6157,24036],[9445,13343],[-19051,21391],[-4751,-1978],[-9111,-15651],[-11205,-7147],[-4741,-7979],[-10132,-4286],[-8075,5186],[-1889,12294],[-7574,17143],[15012,5017],[9711,20481],[-2085,24541],[-11799,3788],[-31641,-4932],[-18915,2279],[-8663,5560],[-15405,-4042],[-15619,8375],[-3684,-10701],[-11113,-4097],[-3959,9077],[-1530,40138],[-25492,18905],[-343,20819],[-22781,5541],[-15559,-5035],[-17484,41216],[-11639,12416],[-16508,11289],[-13855,1735],[-19943,15944],[-10358,-16065],[-10224,-93],[-20338,16626],[1682,9931],[13435,-3179],[7034,-7831],[4818,12463],[-14821,24196],[-29138,28442],[-17551,-2147],[-20613,14562],[19159,32814],[-2641,10268],[13579,7437],[5487,-8927],[3136,10906],[-3281,13437],[-10990,13570],[-9310,19665],[-14461,16505],[-7551,23988],[-18428,20370],[-10390,628],[-22875,-13607],[-11888,-1989],[-27418,1867],[-16214,-2635],[-12262,-12604],[-10177,24409],[213,18343],[-7428,15661],[-18832,17594],[-9986,28208],[-6934,7680],[-29176,8655],[-8618,8018],[-31360,43420],[-7840,13954],[-23694,3048],[-14158,6648],[-8875,-1032],[-19320,-9930],[-10382,206],[-30294,10728],[-64328,25714],[-15816,11282],[-41736,62437],[-9346,15322],[-13298,40991],[-33583,55019],[-793,11479],[10139,39085],[-60,14845],[-17279,32617],[-6318,2626],[-41195,6902],[-9141,10981],[-20811,58020],[10732,31509],[3548,39687],[-5982,37221],[-23430,108978],[-12810,63319],[-2801,6621],[-23255,26135],[-41384,26127],[-10901,10005],[-10549,24513],[-12903,69339],[-31192,66123],[-15239,22273],[-15002,14386],[-141799,110834],[-11662,9922],[-14615,4689],[-87754,-9528],[-7635,2054],[-12430,16177],[-28955,126571],[-6296,14574],[-11600,11655],[-82191,35430],[-18094,4267],[-11105,9406],[-37213,16645],[-82368,28592],[-222391,93712],[-16183,9801],[-43036,33685],[-8837,12529],[-3920,35165],[-6866,24682],[-8450,10439],[-163012,138847],[-12819,8054],[-20986,2815],[-128393,-12004],[-49645,6545],[-24480,13402],[-12916,21231],[-10124,57814],[-5845,17676],[-26679,49130],[-4735,29803],[5799,31856],[99,17723],[-4977,19676],[-15573,38241],[-8647,15962],[-10428,8196],[-58306,20838],[-14790,10165],[-100505,144060],[-14593,18297],[-68299,98907],[-29900,38224],[-94689,109606],[-22637,31997],[-13473,21570],[-80601,122051],[-5648,10860],[-18633,55525],[-9310,13504],[-21137,17162],[-13854,16954],[-77655,114043],[-10816,9227],[-28476,12848],[-14698,3367],[-12985,-1164],[-92202,-13090],[-17994,806],[-19334,10081],[-8448,9978],[-8359,17940],[-35470,85788],[-10231,31453],[-26251,31714],[-4698,19169],[-9445,4979],[-42398,2776],[-29694,-3891],[-32021,-6321],[-70623,7774],[-9423,5449],[-43288,53528],[-13853,38645],[-54766,148028],[-1180,28434],[15977,77169],[685,17301],[-3372,12182],[-19593,33733],[-38333,70567],[-15619,7512],[-104166,3675],[-18428,13860],[-65812,69294],[-51142,48642],[-76766,70146]],[[4936164,52047125],[190934,199341],[135031,140488],[-32121,-65],[-5435,515364],[-258745,-234],[4262,203656],[-5617,611241],[-3471,388286],[-2466,160744],[-2078,252881],[-7056,913129],[-2687,18157],[-4285,1019032],[-1629,187602],[-1310,187471],[-548,27833],[-2718,330659],[-3463,366277],[-1575,225515],[-1499,20856]],[[95928116,69714915],[-480,-96956],[351,-101055],[2085,-77882],[-1287,-248774],[1028,-79681],[-1949,-65288],[800,-140113],[-502,-21167],[236,-178382],[494,-21889],[-1720,-194493],[769,-66986],[-884,-77338],[-22,-73418],[783,-82525],[24,-122933],[1164,-25198],[-433,-97312],[-830,-26858],[121,-554245],[397,-12865],[-572,-257092],[-167,-182593],[-389,-87186],[1219,-68870],[-1043,-52027],[-260,-114549],[199,-259184],[578,-2371],[-404,-269526]],[[95927422,66056159],[-22705,-1313],[-215907,150],[-120273,-600],[-238834,140],[-27249,-713],[-427848,-1003],[-35098,-1529],[-30158,1004],[-218228,-675],[-217194,-366],[-22971,-572],[-208608,254],[-9546,-422],[-247875,-152],[-70935,-449],[-300365,-450],[-113964,-2280],[-422991,-384],[-519601,-421],[-9127,-1079],[-421552,-1481],[-452053,-1530],[-91212,-1041],[-61070,1277],[-144766,-1211]],[[91277292,66041313],[2443,701419],[-343,23191],[1721,405372],[-633,28461],[-1430,206883],[-754,237125],[-1050,102068],[1766,37754],[-1241,17191],[-244,55449],[2093,199643],[3540,282374],[5290,183401],[692,173545],[-2146,28338],[298,179745],[-1036,125399],[168,218125],[-1408,195462],[38,49992],[5937,24457],[-502,175879]],[[78115930,60877409],[-21238,-13936],[-70081,-34893],[-87131,-56633],[-165083,-105678],[-35364,-23612],[-72433,-45840],[-171911,-110741],[-60506,-37145],[-76254,-49740],[-59220,-35569],[-102598,-60102],[-19113,-9228],[-68704,-44536],[-120121,-75772],[-60368,-34642],[-227752,-143207],[-284306,-175730],[-113460,-71365],[-27798,-18230],[-499033,-296692],[-219781,-130595],[-67837,-39547],[-161771,-96655],[-326376,-200149],[-25492,-15324],[-496781,-302198],[-96561,-59793],[-168714,-102592]],[[74210143,58487265],[-338319,-205280],[-162024,290655],[-28240,51464],[-177596,319332],[-13975,23707],[-72000,127227],[-79885,146435],[-277684,507138],[-69449,127556],[-14942,24965],[-131051,238878],[-42055,73195],[-38873,70322]],[[73127936,62938741],[60263,-496],[82853,-2561],[253927,-2101],[36688,-731],[99289,975],[93996,-938],[213351,-956],[20551,-919],[130510,0],[64906,-938],[199458,-778],[98511,-2485],[28270,244],[134682,-1801],[256638,-1304],[33590,-609],[151619,-1041],[84702,132],[8380,-797],[131479,-178],[215434,-1989],[224479,-2953],[214719,-1576],[256767,-2644],[43874,289],[91424,-1528],[203202,-684],[156659,-1012],[103930,-1341],[175641,-976]],[[73847435,71076265],[-153969,6001],[-140506,5909],[-135010,4978],[-398010,16721],[-45442,2241],[-538917,22939],[-169384,4922],[-80922,3160],[-541787,18213],[-127550,6058],[-340039,13316],[-74732,2578],[-230720,9191],[-170441,7324],[-105142,3827],[-90770,4284]],[[69712703,71238227],[3173,614927],[-121,210925],[5480,598376],[-327,15886],[3608,355032],[860,223527],[1803,194824],[1134,243483],[-1963,219626],[2785,317607],[3540,958255],[1834,338209],[283,227794]],[[69734792,75756698],[26717,-16608],[76961,-44591],[10878,-3431],[31992,-27487],[10245,-6865],[16321,2580],[8776,-8159],[3767,-16542],[10877,-6649],[12339,-19328],[3342,-11815],[12132,-16327],[27638,-48286],[-1841,-11413],[3333,-38692],[-4847,-10494],[-2110,-33938],[4393,-31997],[-2893,-57496],[838,-10521],[-5427,-18474],[-8365,-8590],[-5230,-12669],[-15657,-68092],[2298,-12455],[-9195,-9668],[-5221,-18259],[-14835,-16973],[-7933,-15033],[-6682,-20189],[-13061,-60674],[10572,-32120],[20894,-47676],[13374,-10737],[17133,-22761],[3547,-9443],[11700,-13748],[20262,-10521],[17340,-13954],[21937,-12032],[2710,-5580],[57202,-20987],[31209,-5168],[22583,-7886],[11502,-9406],[15125,-7258],[29480,-1219],[36040,1837],[29534,-5711],[4218,11085],[25650,-4079],[30082,-225],[28582,7107],[19768,-899],[11807,3226],[25902,1275],[26732,-5814],[7931,-4726],[33264,6320],[45039,-9255],[34351,2869],[8260,-2627],[45358,27111],[24616,21579],[53161,58837],[8974,12669],[10221,34144],[12735,27712],[10444,8168],[13153,19984],[11479,22553],[10442,4727],[8563,11600],[3547,17180],[17957,42753],[624,11374],[11487,19768],[5016,22123],[15878,24917],[6470,20837],[6263,39733],[2079,39950],[6561,42584],[10116,38139],[8144,24702],[9402,16541],[13167,8601],[24663,3226],[10870,-1511],[10656,-7295],[18611,-27703],[-632,-23199],[-5847,-17180],[-29220,-59690],[-19433,-29212],[-21100,-28133],[-9606,-25349],[213,-39518],[8982,-15678],[10451,-4718],[25377,3546],[20027,15462],[43783,48916],[17164,11543],[9195,17827],[10442,6874],[9546,-10081],[22,17781],[26847,51492],[5946,18502],[3958,31136],[-123,22299],[-3074,26784],[-10245,38317],[6607,13138],[8767,1951],[11716,-6443],[41171,-38664],[6059,-9453],[32182,-40165],[18596,-19543],[38264,-45324],[14630,-15247],[37883,-33245],[28011,-18201],[27890,-12210],[6676,-7980],[13252,-6950],[14379,-28133],[357,-6312],[18208,8863],[12687,9480],[13603,23032],[11586,4118],[34838,1622],[25492,6349],[10687,15201],[8159,24270],[21846,44984],[8251,22441],[1006,51362],[4300,28639],[15033,36265],[-4468,17668],[-144,33291],[2077,41486],[4323,29212],[9539,25733],[21898,29736],[20589,14902],[59982,21072],[12826,12810],[10961,15614],[11615,-789],[8532,6218],[33195,5702],[67387,13682],[17393,254],[31779,-15446],[22583,-20396],[21329,-31360],[14629,-11590],[58131,-34793],[12545,-11383],[19645,-9875],[8572,-7952],[21944,-28987],[13168,-22553],[9409,-27702],[2923,-27064],[3965,-15897],[4179,-37153],[6683,-17396],[7110,-32429],[-4812,-15896],[15460,-43653],[16525,-56247],[21510,-59924],[9606,-33938],[12103,-57346],[3547,-24485],[-1264,-30495],[-3554,-23407],[3335,-10953],[-36559,-47452],[-31963,-14385],[-7938,-7502],[-23399,-12455],[-36133,-6874],[-33211,432],[-26107,3226],[-16708,-1294],[-21549,-12736],[-17447,-22778],[-28262,-52328],[-8136,-18042],[-3556,-17397],[1683,-74308],[-5632,-9668],[-1035,-57983],[6683,-28133],[16708,-31144],[12734,-10737],[3555,-21044],[27775,-39931],[9812,-10316],[-1044,-9658],[6889,-13748],[14828,-20613],[12315,-9022],[6265,-9668],[8136,-39518],[-418,-7510],[-10854,2794],[17477,-37756],[6005,-24184],[-2922,-17106],[-12560,-14667],[-24441,-53067],[12742,-25339],[45442,-24186],[2716,4942],[23787,-1501],[0,-4726],[12940,-8167],[14722,-41178],[14516,-21981],[12725,-25556],[4797,-17394],[2915,-33508],[10861,-19337],[52781,-61808],[16068,-15239],[43935,-35579],[22881,-13513],[46652,-20745],[45548,-18163],[29633,-9603],[64632,-12613],[47892,-4990],[38744,4971],[56563,16879],[39741,23267],[18969,14076],[36338,31246],[22271,23763],[30486,47836],[15566,27224],[16967,36695],[9461,32326],[3851,42724],[5116,29878],[1590,68288],[-3471,48090],[-6972,42256],[-6265,22573],[-29625,85609],[-8821,18905],[-17455,48445],[-6271,39481],[-1965,51334],[4651,24842],[15978,36601],[22264,23969],[18162,16036],[36985,24738],[25660,11395],[32470,10935],[72769,15623],[55733,9790],[54081,3854],[19243,6237],[6020,42208],[-5951,57205],[-7620,18043],[-20041,29999],[-20750,19281],[-22257,13664],[-35645,13915],[-22159,6339],[-44513,9117],[-94454,7671],[-28575,8551],[-22157,24318],[-3220,11759],[1553,21644],[8267,27730],[15230,27832],[9918,8929],[24632,15660],[53747,24232],[46515,16046],[18998,1398],[24769,-5149],[30143,-14639],[18672,-11160],[11684,-13812],[14233,-30151],[3105,-14328],[25713,-53088],[30873,-54176],[10679,-6808],[28020,-11393],[12833,2935],[10885,7464],[50183,23538],[38814,24926],[10884,5056],[25622,18230],[21221,30346],[32411,40081],[18267,29212],[7924,9115],[8336,16748],[48273,52844],[14744,10766],[12019,12650],[22149,29286],[24015,43504],[11366,31030],[21800,36395],[3850,14799],[7818,14902],[15292,21034],[10284,3704],[6455,21550],[151,20977],[-8555,109532],[-6859,34173],[-16425,63892],[935,16156],[-46599,111906],[-10397,45220],[-6760,83114],[3503,31996],[11440,29353],[26283,32775],[17849,16055],[27623,10916],[26824,7511],[14631,-1875],[516,-9827],[-10115,-31098],[-2184,-33057],[3241,-14966],[1348,-25864],[4125,-22009],[8099,-19196],[13693,-19581],[23963,-16467],[11965,2344],[9553,10738],[35174,22918],[23924,9463],[11698,1998],[22927,9640],[38524,22356],[13884,5383],[20863,19824],[33720,22123]],[[71018557,46093576],[37327,-16373],[274069,-128982],[24198,-11056],[160728,-461518],[71019,-205841],[27028,-79505],[100605,-289996],[16966,-49918],[45891,-144342],[8922,-19534],[102439,-304628],[135023,-407443],[42688,-130098],[44573,-131232],[128593,-386224]],[[72238626,43326886],[-33735,-13476],[-111954,-41542],[-165479,-62644],[-105978,-39612],[-167252,-63375],[-60430,-23565],[-53685,-19468],[-24989,-10456],[-97393,-35683],[-152479,-57149],[-99143,-36150],[-35021,-14161],[-44269,-14799],[-65097,-25882],[-147454,-53133]],[[70874268,42815791],[-266623,157535],[-365,-739]],[[70607280,42972587],[-3380,1453],[-12795,-16992],[-13564,-8938],[-29916,4558],[-3173,3122],[-959,29428],[-12133,31631],[-9820,-188],[-22560,-9855],[478,19739],[-5814,21467],[-7581,9668],[-14555,7623],[-3242,31885],[-7337,4521],[-27669,3900],[5785,18766],[-6835,15154],[-5634,3564],[-17727,-4689],[-10101,2962],[-44780,23698],[-17263,14977],[-3624,-1933],[-7558,-20817],[-17598,-20501],[-12323,-1331],[-41614,4641],[-63825,71010],[-8936,8552],[-6172,17967],[-7248,32842],[-22812,3348],[-12658,-2298],[-10618,5936],[-4909,16646],[1126,16447],[-4871,30282],[-20841,8412],[-11144,-1285],[-21519,-49919],[-23154,7193],[-6539,7418],[-3867,30271],[2108,22038],[-43531,-3441],[-14143,-2541],[-62202,-29896],[-18368,18538],[-9986,5881],[-14089,36930],[-28560,18332],[-23276,4737],[-17691,6068],[-4765,20649],[-27896,5664],[-14059,-4989],[-51797,42819],[-10938,5580],[-24023,3507],[-373,3029],[-40298,13439],[-18130,4688],[-13792,24964],[-26421,16430],[-14736,13504],[-28011,19356],[-83790,-77573],[-13031,-37362],[-24237,23258],[-121551,39030],[7451,-4079],[-26961,-40672],[-25887,14676],[5769,44459],[-23474,39660],[-8381,27702],[-2687,19956],[-80265,14403],[-6455,36311],[-38119,4051],[1462,23164],[-4348,7482],[-18883,3170],[-23155,17931],[-13404,-13017],[-15035,469],[-3744,-4998],[-24153,-967],[-15496,-4923],[-35792,-19881],[-5701,3601],[-1658,31670],[-24062,-4736],[-13715,10100],[-65385,-40371],[-18635,-18907],[-6210,-44703],[-78919,-10962],[-10473,9602],[-69427,-45604],[-43417,-13925],[-19539,-12182],[-29375,-14020],[-20162,-29850],[-58664,-28704],[-36361,22430],[-58367,40391],[-47604,-22666],[-31209,15136],[-65864,-6791],[-44841,-175034],[-53281,1875],[-1524,-1875],[-60894,-27196],[-83735,-3752],[-47955,-21568],[-94385,-57205],[-98960,-2784],[-27402,-19722],[-3807,-15943],[-12315,-20789],[-27258,-35476],[17477,-58152],[-41127,-5702],[-45252,-3667],[-31671,76],[-28072,-15062],[-22067,-9395],[-8374,17817],[-11425,30947],[-7618,31885],[-17501,10315],[-15999,3761],[-11822,7060],[-26152,33151],[-44088,6076],[-40974,22705],[-57354,384],[-33310,-2645],[-11249,7933],[-40321,33442],[-33727,18812],[-26754,25939],[-2605,12435],[-97170,85412],[-66162,56510],[3014,49093],[-68787,209124],[-3653,13250],[10641,11273],[2603,43034],[-30173,46081],[-56944,46834],[-32014,50687],[27021,223049],[-109783,68514],[-8222,-7943],[-32927,34267],[-8008,80076],[-20612,12820],[-10421,-12632],[-23841,-5430],[-49476,63169],[-13814,-7129],[-12248,-1114],[-121370,-58312],[-39275,32101],[90289,121094],[-40037,58207],[-11509,39237],[36780,130472],[-135079,50781],[-43317,42556],[-86645,97220],[-21443,18577],[-15482,10100],[-44573,-28687],[-28323,-14197],[-87963,-14649],[-100078,-115018],[-10543,-3328],[-42542,33103],[-30111,78783],[-13077,22319],[-4864,12987],[-15025,21814],[-49210,-100802],[-37968,-2927],[-91120,-16241],[-51722,-28105],[-23573,64021],[-5345,-3272],[-73011,55807]],[[27319747,70813725],[-1279,234],[1209,80920],[2497,61135],[3129,181731],[2824,115252],[11273,672470],[1171,125718],[2581,143864],[2406,54091],[3365,200701],[509,123121],[2283,92811],[344,84175],[4239,283349],[2016,153946],[1919,72086],[-2808,12051],[1940,15933],[5693,189637],[1645,108443],[1278,168791],[1014,43793],[677,102208],[2063,131205],[358,58471],[3273,85881],[3569,172513],[846,16842],[2382,121863],[723,66602],[2314,83959],[1894,119407],[648,81163],[1568,66780]],[[27389310,74904871],[356609,826],[61017,-1098],[176698,394],[117054,-572],[133113,328],[412260,122],[39755,1351],[95444,-554],[348009,479],[69091,796],[100568,-1246],[90785,459],[207312,252],[51875,-449],[462671,1209],[81179,469],[250610,216],[157105,562],[76347,639]],[[30676812,74909054],[2557,-80836],[7825,-195518],[16487,-427212],[-1158,-10934],[34405,-862144],[6699,-142383],[8221,-205016],[38157,-975679],[990,-74760],[2100,-62089],[-570,-11423],[14950,-375560],[1004,-18802],[16457,-416728],[8761,-235542]],[[30833697,70814428],[-162008,-149],[-71224,-1726],[-211934,-1436],[-268906,283],[-186229,-919],[-65150,1799],[-129201,498],[-90107,-769],[-14075,779],[-117502,-226],[-385550,94],[-394127,-459],[-40260,1068],[-167557,347],[-56798,-327],[-110493,694],[-193748,-301],[-311639,-66],[-111277,-506],[-179386,929],[-246779,-310]],[[80447259,65656666],[114557,-281],[82192,-1041],[525597,-5711],[31262,-1247],[330060,-3648]],[[81530927,65644738],[6600,-2945],[5434,-13616],[11677,-6499],[20445,-28818],[8914,-4988],[13852,-17163],[1089,-19599],[-11957,1125],[-4994,-11581],[9135,-9602],[-7750,-21879],[1743,-5973],[9271,5382],[9714,-3629],[1963,-12097],[16305,1219],[-2026,-14301],[-10222,-1004],[-3761,-14151],[7247,-3395],[15437,3639],[640,-8103],[-6881,-5448],[7,-9696],[10503,-4754],[16670,-1727],[8260,-13991],[8555,-440],[1233,-18924],[8943,-4699],[11547,843],[6014,6021],[20293,-5701],[18527,-2026],[21336,-9949],[5944,-5975],[-2329,-7671],[-16563,-12585],[9348,-7004],[14287,-2373],[20650,-14882],[-1841,-8346],[18868,-12267],[5640,8347],[10056,-7025],[9264,4802],[2176,10503],[11882,-13814],[-8023,-7979],[-4117,-14123],[3265,-8600],[12681,13757],[6235,-10306],[-6989,-10457],[15056,6950],[2072,-18765],[14004,-21485],[30348,-14807],[11973,-12520],[12226,-5777],[16037,-17676],[8517,2259],[-5587,14021],[3023,5045],[10093,-3874],[4445,-20302],[-10549,-12304],[9111,-2129],[14264,18288],[4696,-10710],[-4658,-8402],[9316,-450],[4150,8598],[7330,1295],[3372,-12772],[-2620,-12633],[15354,-6836],[4567,-15248],[16090,-8900],[7720,5823],[12186,-8196],[-1881,-11271],[12194,-18905],[-540,-17979],[20894,-3815],[17180,3676],[8898,13457],[15148,3554],[7878,-2514],[-14401,-18305],[15405,-19984],[14751,271],[6387,-11383],[-6333,-12324],[15452,-12162],[11334,6302],[9058,-2158],[6790,-14684],[14499,-919],[1288,8692],[11036,-10559],[3715,8816],[16533,-760],[22668,3920],[-1539,5973],[22874,5833],[5891,-10044],[21192,-2832],[12575,-13184],[2427,-19525],[14203,-1135],[14951,10870],[18313,-2365],[5443,9022],[5000,-8309],[11090,-5092],[9256,5459],[-1187,17104],[6180,2373],[4804,-15707],[5000,-789],[10101,10269],[9302,15718],[8220,-10203],[-5989,-15559],[7969,-1302],[1438,-9829],[-25346,-2007],[-1980,-4904],[8861,-7419],[19699,4230],[4704,6339],[35143,12360],[-1925,11911],[10192,3488],[-9158,36282],[7330,4482],[5640,-14010],[12629,244],[243,-10503],[22721,26174],[9805,-4586],[10694,1341],[14058,-11854],[15741,7559],[-7277,18662],[12035,4323],[14356,-10982],[18664,1708],[3167,-11385],[-11981,-620],[-4013,-7061],[7126,-4172],[18914,8393],[10589,1397],[5890,-11292],[9013,-4538],[-3120,-7258],[5244,-7119],[14256,3040],[-1879,11122],[7871,5007],[15047,-4492],[4705,-9012],[5990,3854],[-8509,13298],[1834,9996],[11630,-1191],[12720,-12988],[1781,-10569],[13906,2888],[8366,-6133],[5647,3190],[-1826,14534],[8563,-4641],[9803,6537],[10192,-11864],[26186,1079],[4847,-13298],[9698,-2888],[5801,6443],[9553,-2233],[2070,-14675],[-13321,-4540],[-2382,-21784],[-12682,-15811],[2026,-7427],[24600,-7165],[1531,-12575],[-9606,3611],[-5199,-5777],[2572,-8337],[-10945,-6386],[539,-12680],[6729,-8674],[4316,-13944],[8419,-2055],[-1803,14621],[4490,8262],[9872,-300],[5876,-19384],[12500,-4633],[10108,-11132],[7368,-1238],[3045,7438],[-9980,10052],[2520,7981],[13846,9574],[10039,619],[8709,-14028],[15131,824],[9371,-15070],[-685,-6227],[16297,-2297],[9286,14151],[10336,66],[8380,-8675],[17318,132],[4718,4482],[-5191,7793],[2375,7436],[11091,-384],[15566,-25986],[25522,-10624],[3843,-9340],[-4049,-5525],[-14949,4887],[-5556,-2580],[2161,-9696],[16578,-23913],[-1880,-11234],[5967,-4887],[10200,7390],[2497,11722],[-3006,11628],[11334,-10127],[24205,-582],[9279,-12876],[5930,704],[-2437,12060],[15734,-770],[22166,-21268],[34252,-17236],[17142,-1867],[12232,10560],[12438,5757],[18839,-24447],[8837,6077],[3006,-10400],[9256,3094],[13451,-9189],[7070,5279],[937,-16337],[8929,-10850],[-7362,-7463],[4698,-10982],[14331,5121],[12127,-4117],[18556,-1501],[1454,-6977],[32548,4829],[7094,-9030],[7208,-18391],[-2420,-6676],[6448,-14245],[-3151,-14807],[14203,6630],[815,-10531],[-12218,-2785],[2786,-12793],[9797,-2278],[8837,5702],[6622,-2420],[-1788,-9219],[9096,-1189],[9262,7155],[4994,-4455],[13001,5626],[8578,-9828],[14684,4379],[-533,-13663],[6385,-29558],[21268,-12781],[8792,13757],[6622,-3217],[4970,-11928],[-1651,-8919],[-16062,-13157],[1599,-7999],[13641,-13260],[12316,-7680],[15809,1341],[-3799,-15755],[2924,-12707],[8898,4108],[4993,15144],[16235,2710],[5398,-9968],[11615,-5420],[1941,-11048],[-6462,-10934],[25888,-1041],[1651,8993],[11334,13326],[15033,1689],[7513,-8451],[6166,7954],[7398,-2851],[8654,14413],[-5465,8805],[13420,5253],[31,8786],[9743,2148],[7664,12087],[14903,-12696],[28818,10503],[5253,-10925],[7148,6151],[4803,21035],[6531,10145],[-6631,19273],[4042,5570],[16518,2326],[5350,-3218],[12995,-37632]],[[83810004,64549070],[3037,-32420],[18868,-9949],[2581,11104],[15239,-141],[22743,-27693],[1029,-9734],[-6105,-28423],[9118,-12248],[10428,-3301],[7566,5195],[4696,-8309],[18200,291],[-4261,10691],[4902,8702],[18244,-22871],[6554,-1624],[13708,5525],[-334,-13646],[4201,-6330],[19935,-7867],[22896,-5834],[7703,4268],[6799,-10701],[7908,760],[5670,8619],[10147,-3470],[-6493,-19056],[5450,-11798],[3304,-20406],[12132,816],[-10915,-13963],[937,-12060],[11980,-1210],[8777,7146],[8426,-8673],[-1293,-12258],[11661,-2429],[14508,7324],[4278,-8243],[-6006,-11816],[17294,-4472],[2442,15623],[10116,-11779],[-7703,-6715],[-6979,-17976],[18832,-22975],[-16724,-1688],[2595,-6771]],[[84118095,64236285],[161,-213851],[1309,-76898],[678,-104890],[-329,-217732],[892,-532535],[-161,-305264],[-349,-233580],[-610,-67821],[245,-190200],[95214,-99928],[47589,-49346],[20201,-23436],[4491,8253],[3501,-9331],[15103,-6226],[13564,8037],[8928,-7062],[-1226,-10044],[6311,3920],[14408,-8918],[4590,5054],[11152,-10569],[-1728,-7782],[10900,-1595],[647,-14433],[-4392,-3665],[5724,-11122],[9423,4331],[-1331,5918],[22348,-9218],[9469,4482],[5030,-13926],[9524,-3750],[10161,-12529],[-3350,-13758],[7886,-15567],[24914,-28029],[4095,-7887],[20520,-4071],[3153,-15051],[-7301,-835],[540,-9367],[11000,-15765],[24418,-5673],[4880,-13158],[-4986,-11797],[5426,-15501],[7597,-3460],[-3059,-10362],[4681,-6387],[10952,657],[22387,-7408],[20324,-13046],[19280,-21596],[5717,-3367],[-541,-10606],[7247,149],[11538,-17470],[6068,5354],[5571,-7520],[-9225,-11647],[11486,-9435],[-1735,-14892],[12726,3546],[18938,-13861],[-1926,11854],[9424,-2326],[10747,-9538],[10063,5919],[7346,-6039],[-2422,-12360],[5724,824],[15225,-21296],[8830,-5065],[6660,5009],[15040,2615],[-1241,-11899],[21404,-7174],[290,-12727],[8677,-1856],[3098,-17592],[7392,-10147],[20209,-9753],[4033,-22264],[731,-22984],[-4194,-2006],[534,-17630],[-4141,-5769],[11432,-9592],[4080,-12108],[21755,-13278],[11844,-26942],[-1469,-13148],[14607,-23904],[501,-14169],[20712,-13130],[1827,-10306],[16418,-263],[16769,-9106],[14942,-19374],[19928,-13803],[-3350,-17930],[21549,-10447],[-5868,-4333],[15778,-15351],[1440,-9340],[18488,-9734],[15193,-11835],[-1134,-8609],[13016,-13241],[5184,-21851],[7201,-6799],[24943,-5401],[7056,-10823],[17249,3715],[1583,-15868],[4339,-7165],[13456,95],[11631,7538],[-1826,11957],[11036,-2259],[-2168,6386],[8479,6329],[9658,225],[2368,-15266],[13754,2129],[5718,-18812],[4490,449],[1333,-22196],[16859,-4436],[45,-9631],[12134,-14535],[-6553,-13964],[1529,-21756],[4522,-3920]],[[46469216,83560984],[-227005,1322],[-243507,946],[-143793,-196],[-30447,665],[-291545,545],[-111931,-675],[-96989,580],[-371833,639],[-60749,-132],[-18467,1303],[-136204,-281],[-142972,1070],[-187148,-479],[-416606,225],[-68575,-909],[-116010,252],[-303967,85],[-109191,272]],[[53538060,62619824],[-133609,27]],[[53404451,62619851],[-456,56792],[-205890,-694],[-259607,-413],[-111482,572],[-98426,-207],[-39840,591],[-79710,-244],[-104206,1427],[-42031,-1004],[-14295,1004],[-261052,-179],[-125404,948],[-473966,-56],[-174775,975],[-110065,1518],[-51378,161],[-179874,2840],[-98914,-347],[-187469,2795],[-103536,291],[-100154,-638],[-46105,-1322],[-87345,2861],[-157913,1753],[-211537,3573],[-402243,5252],[-46804,-4587],[-160516,2636]],[[49469458,62696149],[2564,587328],[2185,354928],[1111,116689],[1965,26576],[-2543,21315],[-91,60216],[669,295502],[686,98466],[-1530,148956],[-693,19375],[2580,59717],[2398,17959],[-3973,88712],[1286,24926],[-183,183973],[3615,170310],[1211,192121],[2307,196446],[-1355,96609],[213,29775],[296,458328],[-320,55684],[2649,459455],[548,135799],[892,118244],[1163,82401]],[[50669950,66797301],[98884,-403],[618697,-6753],[217969,-3253],[154778,-1351],[178594,-2316],[269197,-2945],[541088,-4848],[21199,946],[57109,-1181],[234883,-2869],[201879,-1904],[172307,-2561],[101716,-186]],[[79750260,46755889],[328332,33815],[0,7410],[51274,2662],[280644,49590],[282442,49486],[143618,24824],[161558,28874],[31963,4378],[234297,41104],[300534,52928],[112812,19421],[199238,38121],[104608,19449],[16100,-450],[76527,14076]],[[82324017,44948675],[21618,-265991],[8418,-117343],[4994,-60177],[22697,-296093],[22250,-279616],[13328,-173705],[3836,-26801],[3706,-53444],[17075,-263327],[837,-28828],[5890,-39555],[-639,-31932],[13588,-205043],[1781,-21991],[15688,-235400],[2641,-45990],[29883,-452850],[3906,-46617],[5563,-98139],[39,-288224],[434,-80724],[-160,-169494],[814,-269142],[-784,-57325]],[[40933625,53373681],[133633,-1603],[48776,2148],[686845,-3967],[215869,-1116],[81810,-1970],[204032,-1199],[76986,187],[106092,-1089],[147729,-721],[168874,-347],[60703,-656],[105271,871],[71352,-430],[622259,-11255],[168396,-2690],[36763,309],[87124,-816],[370921,-6498],[44566,-450],[228702,-4727],[170405,-253],[102476,-1997],[436266,-6124],[2063,-182407],[1097,-293243],[-304,-63393],[4528,-358062],[2246,-251754],[798,-31079],[2034,-165423],[860,-131232],[1757,-91433],[769,-89022],[663,-153195],[-199,-110217],[831,-102714],[2260,-177474],[891,-149604],[3030,-234659],[2375,-10991],[-1250,-128373],[336,-124077],[669,-36525],[1545,-228246],[115,-58854],[1834,-224926],[2223,-342803],[-776,-3094],[2343,-358822]],[[43261074,49189348],[-290845,-5822],[-191290,-2852],[-266016,-3722],[-22020,66],[-282075,-3086],[-174135,-2223],[-15960,-590],[-318872,-3282],[-423859,-4314],[-171417,-1482],[-37327,-1556],[-185787,-310]],[[80614878,57910992],[-196322,-115964],[-107684,-64509],[-196169,-116997],[-36202,-21964],[-466690,-278219],[-175185,-104974],[-296582,-179266],[-13048,-8243],[-98009,-57681],[-82152,-49243],[-96609,-59211],[-118232,-71139],[-4507,-2139],[-128851,-77911],[-122039,-73173],[-118424,-73063],[-32654,-19486],[-150020,-93084],[-608292,-370168],[-198163,-120289],[-118044,-72011]],[[77251000,55882258],[-27007,4754],[-262734,27534],[-231122,23303],[-201201,20978],[-219994,22563],[-36446,3142],[-121544,12341],[-592809,60711]],[[75558143,56057584],[-236892,425543],[-253,1276],[-77128,138397],[-190942,341013],[-22987,41448],[-25073,40007],[-50724,94958],[-58938,103972],[-69313,127124],[-26542,45464],[-140504,250835],[-48746,87917],[-234989,431114],[-5618,10747],[-159351,289866]],[[64038922,13366320],[255534,-2953],[135877,-2082],[49248,422],[270209,-1369],[104973,-1998],[30554,104],[292237,-3602],[188748,-2644]],[[65915800,12867622],[-14,-149313],[944,-124444],[-968,-101644],[228,-282431],[944,-388473],[24,-244703],[267,-18211],[-252,-650543],[-913,-14209],[1696,-478208],[-706,-250957],[212,-181704],[1583,-550756],[228,-191155],[-280,-390593]],[[63367520,8870571],[-232386,1613],[-243826,591],[-116117,628],[-183656,1425]],[[34124806,99996453],[-2124,-35073],[-372,-357179],[-580,-258554],[-274,-524207],[-1422,-305330],[167,-270866],[-1789,-98158],[1903,-442225],[990,-55620],[-1120,-126787],[389,-449729],[700,-163951],[-221,-431724],[-1712,-67866],[868,-454127],[395,-132423]],[[34120604,95822634],[-101723,47],[-202366,-2617],[-66321,2148],[-44057,-658],[-228442,977],[-22714,-750],[-114139,665],[-205029,1884],[-68193,-618],[-447928,2710],[-102706,-778],[-13510,-1566],[-167581,-469],[-68498,731],[-490888,610],[-52223,-1922],[-140209,-188],[-32129,-1228],[-298852,-310],[-290083,-9],[-57415,1227],[-271983,320],[-34116,366],[-372465,-423],[-393177,-927],[-10481,2513],[-31634,-1369],[-142751,-1333],[-480369,357],[-413743,-544],[-59608,1331],[-262795,-646],[-543554,-1313],[-142933,-75],[-38250,1407],[-268785,281]],[[27438954,95822465],[250,264471],[-2458,390124],[-1644,1072063],[510,100128],[-3129,633025],[-539,6874],[1346,413286],[-562,232128],[303,233019],[-121,467622],[-845,236937],[-1476,124536],[19812,723],[295617,-93],[549675,-985],[401839,-694],[56250,2212],[356709,1483],[105940,-1258],[92788,95],[63130,-826],[276688,-188],[157905,2551],[249284,-2043],[410181,318],[134135,-1162],[313747,290],[637757,393],[287253,733],[664252,347],[68256,-1464],[356715,-112],[526527,-142],[41584,3143],[185802,-3480],[442371,-66]],[[82078303,66979698],[-75106,-1856],[-21730,824],[-164810,1247],[-9957,1894],[-41947,-1030],[-240440,1716],[-37207,1285],[-38895,-1211],[-84764,-297555],[-37085,-132143],[-14203,-52721],[-18390,-59079],[-18778,-67408],[-2893,-13944],[-31185,-106701],[3158,-12659],[-12368,-8140],[8235,-7230],[-6333,-13504],[-8121,-422],[312,-21739],[-12119,-4810],[-9589,-9313],[-983,-12285],[8176,-8279],[-7179,-5262],[4240,-12519],[-4201,-20377],[-5846,-12042],[-12225,2383],[-14081,-9145],[-10224,-833],[-3066,-8301],[4071,-25638],[-24912,-12866],[-4317,-7644],[4065,-19787],[-8776,-10277],[7437,-12135],[-3326,-13644],[2405,-8704],[11753,-4294],[15748,-16242],[3852,-9688],[16532,-7914],[-2162,-12116],[17561,-22142],[25248,-21164],[4499,-9745],[23428,-10794],[959,-19504],[14493,-1642],[7977,-4763],[-4696,-16655],[8775,-4605],[9067,-12997],[18633,-508],[16099,-13071],[3707,-12024],[9637,-824],[11387,-8310],[-1432,-20958],[5366,-4389],[586,-15980],[14867,-10334],[18267,4792],[7246,5007],[8633,-10662],[10147,3714],[6164,-14432],[-60,-11198],[19060,7061],[3326,6734],[-7034,7625],[27539,2316],[5223,-11422],[-4994,-12042],[4355,-11271],[14126,12884],[-2093,-13167],[12826,1136],[6660,12585],[6378,1828],[7034,-10513],[-937,-7341],[17979,-6799],[-2961,-21495],[6813,-7783]],[[78769435,67000150],[1789,76824],[92,60336],[1827,79251],[166,205176],[723,206010],[1211,54213],[114,102715],[2040,106089],[-380,112122],[517,111978],[754,12670],[-968,239442],[2026,72294],[342,129084],[2284,174980],[868,219945],[1332,161392],[1781,73314],[-1507,100606],[-1332,29690],[1065,28704],[-60,91817],[1735,15202],[46,52778],[-1111,28433],[-389,269038],[-426,127979],[-731,529411]],[[45520412,58594453],[-418006,-197],[-129330,1265],[-99905,6884],[-44011,1059],[-38766,-1181],[-53807,-66],[-68811,1960],[-247822,2608],[-39255,-1286],[-49551,235]],[[41572630,58611342],[2002,124348],[2642,122222],[38,38580],[2276,70436],[2939,172344],[2816,142485],[2048,165404],[2702,148817],[2343,175786],[4492,219391],[1461,93676],[-404,54269],[5968,277908],[11471,543497],[1629,61303],[5184,240182],[2405,49291],[6249,377247],[9995,558567],[-464,50227],[692,45417],[2992,95137],[274,270641]],[[41644380,62708517],[68,33677]],[[41644448,62742194],[430755,3882],[624925,-1782],[270033,-628],[11281,-1313],[546919,-9068],[435915,-7183],[35562,225],[215055,-2233],[13481,300],[644759,-5786],[27502,263],[319738,421],[336019,479]],[[87485034,67297406],[12718,-19111],[4362,-50771],[-2641,-55114],[-14759,-92238],[577,-186731],[-219,-161034],[-762,-46749],[267,-239161],[-2163,-59586],[3403,-79476],[-53,-49168]],[[87485764,66258267],[296,-257982],[-1620,-93787],[532,-329655],[-510,-234134],[-1065,-177550],[-381,-180445],[236,-108080],[-1028,-426997],[-1050,-236356],[-176,-212274],[-586,-126291],[648,-6845],[-1181,-211956],[213,-87438],[-2602,-293290],[-1622,-135264]],[[87475868,63139923],[-23269,-14301],[-10305,-13411],[-10460,-25733],[-9620,-51942],[-11326,-29232],[-3197,-17151],[16600,-9396],[4285,-23230],[-29525,-41964],[-11197,-13074],[-10094,-5955],[-9315,85],[-6700,6987],[-4589,23565],[-7795,9528],[-13617,4389],[-11319,45923],[-11212,14696],[-10048,788],[-7429,-13299],[-9012,-36217],[-6965,-9200],[-21182,-19692],[-1842,-4849],[8927,-32597],[-1635,-10241],[-17561,-7811],[-26991,12426],[-18474,-3001],[-4468,8571],[8746,26632],[-1295,8150],[-43058,32878],[-17698,16375],[-30166,18446],[-15239,26444],[-16890,6312],[-7900,7483],[-2840,17312],[24092,28357],[10154,8338],[-2079,19365],[-6393,8553],[-15558,1744],[1591,4979],[15847,4670],[-9256,34950],[-12376,4728],[-8929,-12717],[-319,-8712],[-10276,-12876],[-11570,-413],[-31353,4990],[-5748,-5187],[-1392,-27092],[-13845,-7465],[-14190,-15482],[-7315,1031],[-22560,23529],[-6455,-2972],[1788,-11845],[-4765,-8880],[-15124,-7342],[-4543,-10673],[-11129,-10587],[-7695,-291],[-28020,6659],[-23245,469],[-17157,-4305],[-8061,12622],[-12978,6124],[-8260,10222],[-20992,34257],[3097,6705],[12127,7229],[-27830,6219],[-1598,18839],[9979,1192],[-395,5533],[-21915,14151],[6691,14778],[-9493,7024],[-10967,76],[-3518,16194],[-32067,5993],[-11517,-5252],[738,-5870],[13983,-2964],[-1537,-13400],[-26733,3695],[-46454,-5918],[-14051,-25188],[-18268,957],[-12925,-2935],[-8168,2699],[-9727,12961],[-16092,-853],[495,-10026],[-6051,4521],[-6569,-7286],[-8883,6010],[-5853,-14714],[-4917,14978],[-10984,20940],[6636,7258],[-13228,20518],[-3341,15240],[-22174,10784],[-12376,-7278],[-5983,5093],[-7383,-6725],[-21017,5965],[-3562,11019],[4810,11806],[5116,-853],[-1622,18221],[-21601,7934],[-11343,-8572],[-8669,-215],[5268,15285],[-18467,2354],[952,15173],[-13656,179],[-7643,12154],[18635,9340],[-8062,7699],[-11029,-4380],[-4711,-8149],[-18656,2954],[-4066,16712],[-20254,-1876],[-2664,13560],[7520,8637],[-11296,8140],[-4643,11928],[-23391,-15191],[115,-17866],[-20993,2233],[-2521,15951],[-11401,10850],[-30646,-7023],[-12339,19318],[-14348,17020],[-6736,-3057],[-10459,8458],[-14134,-3076],[-20606,23924],[-5121,9189],[-154,15727],[-8988,7351],[-7208,-13316],[-23719,-4538],[-7786,2373],[-6074,14047],[-5572,-5326],[7117,-10634],[-11053,-7652],[-7489,1818],[-46,20538],[-8601,5945],[-6090,-4079],[1401,-14892],[-23544,-2204],[-114,16412],[-11586,103],[-860,14563],[8693,3516],[-9614,17265],[-12847,-20285],[5570,-5184],[-3242,-13392],[-7224,3151],[-15953,18887],[-10344,-4848],[6005,-12454],[-4186,-4943],[-15263,1698],[-24935,13692],[-5899,10606],[-17561,-11507],[-14682,-56],[-4148,-13673],[-13588,-17564],[-14881,7642],[-33521,5496],[-9166,-15408],[-12293,3695],[-11668,-7184],[4985,-26952],[-5670,-21662],[-5709,-901],[-19456,17284],[-9956,140],[-9780,-7567],[-8466,18],[-4406,22142],[4247,9367],[-16328,2720],[-5578,-14723],[-20171,-394],[-9676,-14910],[-8615,815],[982,8882],[-11814,12041],[-19341,4519],[-7612,-5091],[-14813,7989],[7293,14667],[-4506,12341],[-12872,892],[-11151,12913],[-5862,-3705],[1058,-13017],[-15367,14630],[5487,-24963],[-17453,7004],[-9971,-5186],[-2558,11554],[9864,5130],[419,11685],[-16699,-4117],[-18368,-16205],[-15352,421],[-14288,20557],[-8769,2214],[-16745,-12830],[-22578,-3741],[-6400,14461],[8358,12987],[-7985,8477],[-23255,-684],[-13054,-16654],[-7573,1735],[-21906,26397],[-9972,-14122],[6980,-14536],[-4766,-6124],[-16006,-5777],[-10269,2635],[-2132,18128],[-16539,-13072],[-3396,11825],[-10670,10907],[4491,14066],[7695,4970],[1682,8955],[-11044,1361],[-8115,-4465],[-913,-15388],[-23482,10063],[-21168,3844],[3607,6442],[-18428,4699],[-2459,7473],[-7344,-6161],[14263,-17705],[-5753,-17526],[3783,-7615],[8760,2607],[9706,-10662],[-26909,-2982],[-7436,-10503],[-9447,2232],[-12558,12255],[1690,-13099],[-22523,2437],[-10460,-5092],[-19180,13645],[-8032,-4623],[-5457,-11450],[-8929,3319],[-3829,12585],[7369,14629],[-11045,6442],[-13997,-5682],[7900,-11620],[-7816,-4342],[-10687,12755],[-12637,-1744],[5261,-13814],[-9409,-5880],[-952,6733],[-16989,-13972],[-5830,1115],[-5215,13485],[10110,8056],[12019,2664],[-4788,8749],[-6995,-4876],[-6251,6142],[-8136,-3827],[-6889,-14159],[-7840,-460],[-2230,-9856],[-5968,2953],[-7962,-5626],[-2526,10606],[-7178,7896],[1331,9107],[8389,1538],[-3859,17047],[-8555,2271],[-221,-11930],[-8222,-514],[-4977,17629],[-21640,10091],[-11996,-12557],[-14402,5580],[10078,10278],[-921,6029],[-13687,3658],[-2290,-11253],[-10223,-892],[-10284,7541],[-19128,5552],[-6774,8917],[-1743,10560],[6501,10024],[-8967,47],[-15025,10222],[-10764,1867],[-12111,-4558],[-10915,9172],[-15261,-433],[-13793,8553],[-11272,-12013],[-20597,3714],[-8655,13401],[-11822,3403],[-13617,-7510],[-12696,14328],[-130,12069],[-16578,-2099],[-9164,11730],[1933,13355],[16441,11085],[22066,2063],[-4931,10418],[-10094,319],[-8798,22779],[-579,8599],[13213,1481],[3700,10897],[-21420,9040],[-16182,-4023],[-7620,2983],[2870,14113],[-8821,11291],[845,6920],[-8663,-75],[-10490,15070],[7666,5618],[-13609,14582],[-20430,26305],[-12925,8336],[-17454,-1632],[-4498,17743],[-10504,11413],[-8131,-6068],[-13228,3218],[-983,-10447],[-15695,8289],[-10899,1989],[-18011,-6847],[-20391,3246],[-5321,7595],[3487,6283],[-13047,8225],[-197,18803],[5845,4088],[12994,-7390],[2518,11742],[-8394,11459],[-123,13167],[-23687,12246],[-15506,16722],[-18298,12349],[-16465,4765],[-15566,10100],[-4567,-18475],[-7535,9218],[-4240,12735],[-10885,-1753],[-24586,13475],[-5465,12229],[1219,13861],[-11799,5561],[-5344,-9584],[-14622,4125],[5542,10476],[11485,-2475],[-5121,21596],[-11365,562],[-6066,18841],[-12255,8824],[7109,15493],[-11167,8918],[-5960,-12202],[-15832,169],[-9286,11056],[11943,14714],[-2565,5693],[-11929,-1679],[-9316,-10230],[-11951,11900],[-20558,-18363],[-7895,1454],[-19683,-4472],[-14333,9724],[4453,5823],[-8358,12820],[8068,10513],[-12467,10164],[-1645,5833],[7642,8892],[-3136,13410],[-11668,9912],[-9142,-816],[-6074,-8544],[-8700,14460],[-19653,-9583],[-6677,1800],[-1833,12061],[-11836,5888],[10146,16439],[-12454,6772]],[[83810004,64549070],[516,6415],[-16700,150680],[-6035,62194],[-2992,15099],[-3075,44572],[-13868,139006],[-50162,481903],[-20810,207465],[-18070,173264],[-17227,170524],[-29943,283283],[-38584,381553],[-14235,135208]],[[50582004,83548183],[-161,-67511],[298,-231922],[-730,-56341],[1300,-229811],[443,-20011],[-1150,-100398],[68,-105228],[2108,-65494],[-2176,-3948],[0,-475847],[1500,-40578],[-1500,-32456],[-129,-182275],[2146,-12641],[-2291,-34604],[1065,-84334],[21130,1163]],[[50603925,81805947],[-647,-263253],[222,-103482],[-868,-200290],[-754,-71056],[91,-161476],[-760,-74533],[319,-172551],[-411,-326561],[792,-39369],[-152,-73267],[-1675,-49796],[1325,-56314],[379,-71899],[-653,-75097],[752,-33189],[-402,-130096],[730,-39659],[-206,-195901],[1728,-90346],[-1476,-104534]],[[50602259,79473278],[-20430,938],[-181777,685],[-129962,1219],[-133160,-215],[-269447,618],[-83387,413],[-31536,-798],[-105269,1463],[-75912,-1724],[-11022,-1220],[-75167,1426],[-151784,-19],[-126325,-1106],[-57340,1565],[-103276,-310],[-314136,845],[-55338,-385],[-160842,957],[-82825,890],[-74557,-37],[-50875,1369],[-257803,469],[-113666,1473],[-21518,-1558],[-89392,-262],[-59364,2185],[-38645,-543],[-183892,6901],[-214,807],[-138549,-151]],[[47404849,79489173],[396,456979],[2087,120128],[6431,634330],[769,119153],[3091,323824],[1163,94866],[382,98071],[-365,73447],[1042,195283],[205,181300],[-966,290831],[106,248437],[685,84820],[-107,132078],[572,34341],[-937,293139],[-266,448388],[83,240538]],[[13156756,45261348],[317205,214132],[55747,38007],[385330,260195],[130800,87786],[49863,32886],[112183,76590],[217574,145608],[11067,6723],[457610,306877],[353908,237361],[76649,51877],[52263,34633],[64053,44938],[646115,434612],[15207,11262],[226114,155015],[444587,296815],[506903,338480],[44994,31002],[297907,198519],[10764,7436],[217871,144943],[51774,38374],[70637,45621],[257543,163567],[167238,102997],[81042,50312],[104745,69057],[150195,100464],[59150,39040],[234024,155436],[96113,64744],[31550,20171],[203386,135143],[24,375]],[[19358891,49402346],[173364,-140638],[234974,-190312],[268420,-217320],[98763,-79580],[282853,-230233],[157319,-127162],[511326,-403112],[54651,-44508],[490150,-393462],[196452,-157687],[98199,-78443],[112045,-94932],[399364,-321187],[281444,-226304],[8899,-6715],[261783,-210953],[122823,-101749],[184470,-152256]],[[24400714,45283039],[-123607,-106306],[-320203,-276457],[-16768,-15070],[-147439,-126759],[-151504,-132104],[-273232,-235222],[-158194,-135800],[-125800,-109475],[-95055,-81784],[-231595,-201002],[-21944,-18672],[-133229,-115993],[-17849,-17639],[-78773,-66039],[-119909,-107403],[-112318,-95757],[-28568,-21400],[-283948,-247337],[-305648,-266216]],[[65976900,75515832],[27380,-29251],[22,-2738],[35904,-29933],[21794,-13842],[14621,-3656],[30774,-15222],[27799,-9057],[44627,-3480],[21002,3920],[14355,-2072],[10245,2662],[42199,5337],[12293,-1200],[29549,-11338],[14302,-15136],[28210,-21644],[60406,-31153],[47232,-20846],[11281,-1510],[23619,-11816],[21313,-15473],[12110,-19132],[31764,-21483],[21517,-21710],[26535,-15689],[14630,-3226],[33019,-1735],[-5229,-4079],[16092,-7521],[31132,-10541],[25689,-18061],[12529,-17836],[21862,-7626],[28992,-5889],[55772,6116],[53327,17170],[37510,14206],[20849,11488],[12941,3930],[24379,16449],[10224,3272],[12749,-5308],[21169,6200],[26160,4220],[14143,6686],[12567,18670],[-304,6444],[11957,14479],[33843,20218],[21945,18690],[17133,22768],[8152,15465],[5640,32438],[-3783,36544],[7734,22555],[22158,15895],[12544,-648],[18185,-17612],[10238,-19973],[8988,-11385],[11707,-5159],[10870,3865],[13792,21484],[19654,58855],[1058,24917],[-1462,19112],[3769,10314],[-419,18044],[-4178,21475],[4604,13532],[16936,18259],[14425,9020],[16935,4287],[18193,-8168],[10031,-12895],[17340,-32006],[5648,-6444],[-632,-14384],[26558,-13551],[14644,18521],[16093,27449],[7116,34791],[7,19983],[-5007,32439],[-25705,53706],[-13374,15041],[-5016,11816],[1675,14601],[18198,31144],[23011,12876],[16730,-431],[11084,-6668],[21107,-23201],[10657,-19336],[37229,-8177],[17773,206],[12756,6649],[15482,12884],[11509,14807],[6280,15249],[-1232,41675],[-2079,18248],[-12110,37597],[-9407,15257],[-2908,30937],[9340,6490],[35676,10184],[16280,7774],[15528,3282],[13756,-1154],[15001,-7033],[54485,10606],[26999,-515],[14593,-8102],[21548,-1960],[11379,4210],[57287,44778],[13951,18081],[16883,11572],[327,-6217],[30197,30234],[16967,23454],[16852,18390],[20209,30383],[21077,37830],[19873,41458],[18193,61856],[17576,39960],[2093,14179],[4597,1285],[7741,23199],[14235,16542],[19669,33939],[23230,12023],[17995,20621],[26374,11600],[3555,-3226],[17789,3433],[28474,12247],[39354,11160],[9416,5794],[27203,-4303],[-2512,-6443],[49811,3855],[29716,-12032],[14860,-3235],[-12348,-3433],[23018,-7521],[34947,-13972],[10891,-1295],[31589,-18062],[78256,-30111],[26771,-19993],[5024,1078],[6903,-10748],[35342,-25554],[16754,-22329],[18419,-13521],[14234,-7080],[15278,-11583],[10671,-638],[38515,-13081],[16114,-17818],[1889,-5804],[16746,-14386],[1468,-12022],[25530,-18466],[632,-17827],[10885,-24054],[23657,-16747],[41005,-2777],[10457,-6442],[5862,-15679],[-19654,-35871],[-2511,-13531],[-7521,-11601],[-10040,-7305],[-10458,-29652],[8,-23623],[2930,-14602],[13184,-32221],[10253,-11160],[5648,-13964],[-2292,-28554],[-27173,-49197],[-8154,-7952],[-6271,-17612],[221,-36732],[5030,-23838],[18825,-32859],[19242,-3218],[10458,-17610],[4812,-21476],[212,-17180],[13801,-13531],[22378,-10738],[26056,-15520],[22804,-4343],[43637,441],[22418,17367],[18632,4389],[31726,-6170],[17035,-14835],[4818,-16318],[12538,-4726],[24875,1717],[26344,6235],[16305,10512],[46835,20829],[21959,17170],[17979,11385],[28863,13091],[11297,7944],[56677,48519],[8989,-430],[32410,16092],[20287,5579],[47063,21672],[37602,10954],[38979,19159],[12309,974],[33993,-4211],[29435,-10230],[7710,919],[26321,-11337],[862,-5552],[16989,-8338]],[[56705722,58536573],[172055,1642],[134286,533],[58664,-2109],[171859,-516],[50808,3732]],[[58260517,52955275],[-44011,-26548],[-37404,-7991],[-18116,3649],[-10054,-7109],[-12026,-30600],[-11776,-38796],[-11509,-12876],[-28804,-9218],[-28894,-6976],[-8373,5026],[-13396,38402],[-4994,8946],[-19760,18108],[-7421,16665],[-13290,6123],[-5237,9557],[-16509,14807],[-14455,23126],[-5031,11994],[-13946,16130],[-25248,18830],[-13426,6312],[-16305,2513],[-9477,-14123],[-53601,-36348],[-5739,-8346],[-19418,-53800],[-16814,-37727],[-8929,-7090],[-13252,-1576],[-13565,-6760],[-17156,-19582],[121,-7745],[12628,-22367],[3427,-23809],[-25545,-23867],[-18414,8749],[-11942,17864],[-10406,7541],[-28559,9556],[-22227,-35879],[-36391,-25752],[-22576,-18277],[-14775,-6658],[3082,-12510],[-10708,-5853],[-12005,14105],[7080,13044],[-9111,18560],[-6775,3769],[-12636,-2233]],[[57506849,52738235],[-30096,-25937],[-10984,-6847],[-7063,-17592],[6324,-25846],[12871,-23875],[-2915,-11948],[-11310,-7248],[-12506,-188],[-16747,10204],[-33446,41112],[-25271,7885],[-9567,13926],[8366,55985],[5823,15165],[-6700,13917],[-17201,13653],[-22881,2522],[-21010,13693],[-24600,-4942],[-6287,-7821],[570,-30769],[9918,-22985],[-5381,-7268],[-30135,-24222],[-1743,-8693],[-10321,-3377],[-13451,14368],[-5747,14404],[-23033,27927],[-19630,21221],[-21762,10841],[-39931,11272],[-15657,-85],[-39010,-14131],[-18063,308],[-21313,21213],[-44110,2345],[-20255,-3282],[-28012,-14340],[-22910,-15191],[-22440,-17378],[-2504,-10202],[-19426,-28639],[-23512,-23698],[-6645,-450],[-15993,-10972],[-11599,1482],[-14234,-12979],[-5893,11534],[3122,22759],[-1257,28388],[-15329,36975],[-5952,38497],[-8625,17555],[-40936,27776],[-12947,2345],[-14508,-12004],[-30676,-42256],[-9096,-4961]],[[54600520,70913214],[389,-224363],[572,-47001],[1012,-1125190],[433,-59886],[2542,-1112295],[738,-17959],[1462,-666241],[449,-288310],[968,-331532],[464,-272170]],[[45556392,62719771],[982,724112],[976,211768],[6652,481388],[2604,34071],[-960,119125],[2580,190124],[-1096,231031],[1187,116452],[6852,550774],[715,26333],[6014,462989],[-260,14206],[1934,117889],[3639,391258],[4384,437407]],[[45592595,66828698],[257086,-5242],[198361,234],[77845,-226],[506942,141]],[[49738220,53857376],[138982,-4303],[121233,-470],[9249,1425],[301507,-5288],[50452,-1388],[171453,-3179],[51067,-2222],[74747,-1895],[541531,-4305],[335220,-2644],[124870,-1706],[474957,-4530],[351670,-3057],[218108,665]],[[53615516,53029162],[-1171,-287081],[-2208,-286724],[-1005,-278857],[-959,-119971],[663,-42931],[-290,-197823],[6097,-1054002],[966,-47095],[245,-990234],[137,-134871],[-2809,-33020],[-10116,-322135]],[[49707910,49240964],[663,212180],[-449,136410],[2427,294527],[1744,150690],[2329,251014],[601,23999],[3897,396519],[1888,55451],[4285,1086675],[-1605,85525],[9034,1172200],[-1454,14770],[1249,67069],[60,174669],[1973,166746],[1635,59794],[2033,268174]],[[48795103,58565991],[-1697,-345102],[-517,-56349],[-1554,-351311],[-859,-47123],[-976,-667713],[-471,-151292],[-153,-412958],[-433,-356543],[151,-8870],[-365,-398181],[-516,-286348],[-618,-50772],[540,-78999],[565,-249672],[2039,-146716],[115,-43765]],[[48790354,54914277],[-111171,75],[-12512,-723],[-231519,-955],[-122579,-985],[-454262,-798],[-130624,628],[-82269,-1519],[-108763,714],[-244140,3262],[-146479,2365],[-283690,2024],[-86164,358],[-150226,-207],[-205912,1041],[-339476,2335],[-100094,900],[-155806,479],[-488369,4970],[-165509,2381],[-174818,1754],[-80631,1407],[-11418,-648],[-85100,2570],[-129468,2458],[-129818,1855],[-145887,892],[-111245,3236]],[[92101468,43979887],[27996,-146555],[21290,-114634],[10017,-75641],[-625054,-4247],[-39116,393],[-353154,-2766],[-363156,-432],[-102332,-2259]],[[90677959,43633746],[-79681,-1745],[-135495,-4445],[-8488,207],[-115889,-3995],[-305155,26530],[-48965,3526],[-134004,6554],[-60477,6068]],[[87119868,46770603],[256044,264217],[314576,326064],[83075,87646],[205022,211223],[68315,69968],[131508,135602],[90299,92596],[258897,267351],[116484,120484],[119542,122221],[144287,144633],[83607,83303],[115411,114183],[87360,117747],[85852,113451],[116437,156413],[36780,51042],[25948,32803],[119664,160408],[14486,20171],[96348,127621],[149220,200601]],[[46647049,79494595],[128958,-264],[16783,-5128],[25758,1097],[98640,-817],[487661,-310]],[[50602259,79473278],[-84,-186214],[457,-68645],[-1493,-16110],[1211,-105096],[662,-444243]],[[50215887,75010830],[-210251,1603],[-375107,-2363],[-340366,-215],[-498980,882],[-112159,-863],[-566861,384],[-384637,544],[-425845,-1013],[-475476,-1097],[-152843,-1303],[-36597,403]],[[58547251,70899249],[116499,-956],[110583,-149],[263914,-1088],[96152,-159],[14287,-891],[172138,-555],[61861,-1275],[44172,85],[234099,-4538],[11440,215],[207709,-3451],[216889,-2964],[0,-1875],[674079,-451],[277419,-140],[17270,-1632],[315035,1905],[619192,3909],[19760,-1012],[328583,2148],[107013,393],[151032,-75]],[[62561568,67245483],[-975,-73100],[-3593,-101617],[-441,-346808],[-20742,1003],[-95146,1219],[-147478,3489],[-219690,4473],[-73903,2062],[-74480,958],[-83159,-611],[-143343,3273],[-271678,3349]],[[61426940,66743173],[-65180,778],[-163096,3600],[-104906,3348],[-63444,628],[-100177,2654],[-212071,2477],[-87833,1997],[-123689,2016],[-126637,2776],[-190446,2063],[-92474,2053],[-99563,58],[-143253,964],[-372754,798],[-28064,272],[-425937,573],[-456850,-2964]],[[58570566,66767264],[-585,45698],[-1881,317398],[-183,124781],[-1545,187499],[-5312,768947],[-1234,132930],[-2435,394063],[-700,153420],[-1934,256367],[-608,125504],[-1569,148590],[91,94219],[-2442,347294],[-4187,775569],[1020,49252],[189,210454]],[[72238626,43326886],[108407,70109],[119352,78088],[73294,45642],[178350,115684],[146586,92474],[18938,10372],[85047,56004],[58381,40052],[236109,151910],[34855,21053],[68696,46691],[51478,30723],[198735,126918],[80105,50414]],[[73696959,44263020],[2306,-15979],[8077,-27073],[4406,-7118],[17455,-4071],[17119,8825],[6476,-2475],[2230,-13195],[14220,-14179],[17795,-5205],[6912,-11498],[14364,4483],[6044,-7942],[-6866,-14846],[2709,-4744],[14744,-3507],[12917,-12060],[16967,21136],[-2703,12324],[12134,-4437],[17888,1755],[1941,-16244],[16632,367],[20209,-9443],[9430,-8507],[11653,4999],[10490,-3864],[2709,10466],[9143,666],[11501,-18822],[9765,11864],[11798,-20528],[14698,-15464],[11899,3085],[13343,-6911],[4345,-7268],[-632,-11967],[6090,-10005],[9385,-2419],[336,-6649],[15458,-34763],[-965,-10054],[10297,-2728],[-2564,-15062],[11601,-9697],[1058,-18718],[-4743,-18248],[8410,-8918],[2901,4219],[13489,-2728],[6469,-17593],[-4011,-2260],[6324,-30271],[11944,-3507],[6090,15314],[10396,2053],[1058,-9593],[-4018,-17987],[-8313,151],[-6287,-6649],[922,-8656],[13579,-836],[14067,6856],[4155,-9697],[-10976,-16804],[-2269,6602],[-15907,-2157],[7390,-16046],[6325,-22740],[-8510,-22469],[-7017,-27694],[-16001,-6133],[-2168,-4632],[17734,-7643],[16915,-2269],[19120,-12200],[17972,-24918],[-4256,-12116],[13275,-33516],[5259,-23623],[11358,-3609],[-5854,-8347],[6615,-9133],[-1112,-13093],[-6530,-17741],[-9378,-2317],[-20012,-17470],[-9332,-1230],[-5944,-21811],[-1074,-18409],[-8266,-27524],[-250,-9285],[-11503,-11028],[-2617,-21343],[9666,-7427],[10771,6020],[7390,-3245],[1690,-12482],[-18693,-562],[-3198,-14226],[7635,-1856],[8503,8036],[7633,-8505],[283,-21400],[12848,-10681],[-1264,-10364],[16183,-8307],[-14157,-7109],[9469,-9237],[19371,10615],[15748,-5214],[32420,9978],[18023,8497],[2703,-14846],[9270,-3450],[13725,8140],[-4871,6394],[5068,4586],[11646,-1557],[13954,-13615],[-1987,-5412],[16037,-4858],[-7155,-10259],[11981,-9077],[20096,5805],[6698,-12642],[-8837,-8646],[-199,-9491],[7118,-5485],[-914,-7934],[-8526,-1687],[-7542,-12060],[-252,-14283],[12903,5355],[10291,-9087],[-12521,-7774],[-11936,4952],[1249,-15717],[12124,-7841],[3951,-10596],[19281,-10710],[12231,-29071],[-11827,-22695],[2084,-10315],[11122,-23087],[20147,-18607],[20378,11554],[3867,-7418],[-6326,-9284],[8601,-3291],[27669,10831],[17049,-3339],[3281,6191],[19563,-11752],[20528,-5972],[-387,-8610],[10337,3658],[11303,-15671],[13571,11348],[16419,1763],[4499,-20623],[11296,3255],[2953,-8824],[-13473,-7371],[13914,-19337],[14241,4389],[-4536,-12427],[15163,-4379],[1065,-14947],[-3958,-7380],[10481,-10823],[16130,7784],[8061,-4118],[99,10513],[13038,3930],[5458,-14489],[-7003,-366],[8891,-13869],[-2756,-7268],[11159,-1181],[-1743,13869],[8015,-4802],[4011,-17779],[12028,4126],[23512,-20782],[8890,2477],[7726,-6443],[-2322,-7841],[-11340,-1388],[6416,-6029],[13084,-3095],[13328,-8355],[4347,-7991],[-7870,-467],[-1690,-15361],[6234,-6912],[7002,2063],[3380,-15313],[30128,-24487],[10428,-3657],[12019,4484],[-723,-6857],[14773,151],[12841,-4792],[7056,-17377],[-11928,-22684],[7575,-5674],[9226,-28311],[13853,-461],[29928,-18098],[27083,-32897],[13222,-3714],[6134,7108],[20675,666],[14416,-7634],[12795,207],[18779,-15370],[-5024,-11187],[8830,-4334],[-9995,-9067],[2269,-11966],[-11685,-15670],[8205,-1961],[-966,-8046],[11387,-4951],[-2991,-14798],[11052,-4277],[7330,-11815],[8449,8814],[-1689,-12116],[15878,-18456],[19546,-2944],[-13244,-19561],[6751,-17124],[17036,-10165],[8205,4895],[6120,-22583],[7048,-4951],[4393,7419],[12543,-16449],[15004,-10428],[10953,-16299],[1150,-17630],[6309,-26915],[2306,-20883],[13937,-15062],[8921,-20780],[-6705,1294],[-7871,-10006],[7955,-14029],[9940,-9743],[6645,-17584],[-2077,-6292],[5449,-9698],[10132,-6245],[17066,-27748],[-6951,-8038],[190,-12171],[15528,-11189],[14379,6481],[21375,871],[11326,-23884],[204,-32869],[-4818,1049],[-327,-16719],[-4537,-4229],[1387,-11339],[-8412,-6310],[7673,-14095],[4834,9508],[2929,-7859],[19578,385],[-2526,-14778],[10001,7201],[14104,-11881],[-1384,-7334],[6515,-10203],[3684,8656],[5982,-10840],[-5732,-4014],[6517,-8421],[5312,6066],[7171,-5972],[-9522,-19319],[12894,1538],[-8898,-12078],[7687,-8760],[16289,-1209],[7537,-9124],[12848,5701],[3113,11571],[4286,-12115],[10923,5045],[-10177,10776],[13237,1940],[12430,8749],[-3495,7606],[7239,8233],[2300,-9837],[10291,2898],[-5155,8927],[15621,-4848],[3684,7727],[26107,-11046],[8876,2420],[3410,-10345],[12384,-13681],[8076,431],[708,-8805],[7734,-2889],[-2848,-6255],[9774,-3422],[19152,3056],[738,7081],[12834,5129],[31900,-11704],[1462,-6113],[14378,4079],[15163,-8788],[7931,-458],[10360,12547],[15117,2972],[4681,8553],[7185,684],[7209,-6920],[12757,10146],[16943,-1003],[9622,-6602],[10275,2964],[19829,-13776],[29793,-7108],[9955,-7765],[3776,-22855],[8510,-19851],[-1918,-9209],[12247,-12005],[3182,9726],[7900,-20003],[7080,-1397],[7474,6864],[9606,-4943],[10146,4962],[14767,-19900],[18909,-675],[1879,-8450],[-7825,-9800],[-6790,-1068],[10407,-15202],[6363,5683],[12741,-7933],[2900,-11123],[10253,7887],[-6561,-30965],[9264,845],[-411,-11741],[9477,-6116],[-1904,-6291],[18878,-3302],[11935,-14038],[7801,207],[17455,21297],[10678,-2946],[-1704,9837],[8760,6528],[29839,7221],[5587,-7943],[15490,-57],[-4180,7418],[8419,3114],[5162,-11883],[10960,386],[3958,9096],[4035,-5674],[-700,-12725],[21068,-5805],[6935,-7558],[7916,1978],[1484,9912],[5945,-8467],[12735,-3874]],[[73233921,39520375],[-38027,169952],[-130611,585724],[-12132,55610],[-88761,399569],[-4461,22215],[-12132,47002],[-28240,128661],[-16335,70682],[-62202,277328],[-17424,79841],[-6912,27506],[-19470,85749],[-104593,85329],[-132726,109812],[-295426,242538],[-280166,230571],[-83326,67678],[-247998,146040],[-239723,142083],[-69518,40334],[-8700,6695],[-45891,25724],[-18847,13043],[-335131,198884],[-60901,36846]],[[85142886,59064766],[84437,-1285],[104495,853],[24014,-365],[194161,-630],[209307,498],[145529,873],[104761,1359],[109533,-1716],[58268,2420],[119443,515],[201186,2889],[52976,-601],[46212,1173],[105719,909],[112981,-582],[132414,2299],[61555,-498],[64579,2991],[146701,582],[111147,1276],[31945,-413],[64586,928],[110919,498],[116269,2082],[90824,177],[85197,-477],[3845,2109],[57773,-2175],[140535,1359],[123005,-66],[254484,-927],[94896,853],[50077,5504],[118012,975],[81019,-599]],[[86564036,53975715],[-10892,2654],[-4362,17404],[14271,13186],[-1803,-10391],[11904,-5515],[17462,2842],[-3364,9818],[6150,12716],[1957,17715],[24083,27694],[22370,1350],[7498,7595],[-5009,6752],[22562,36133],[6355,20152],[-3928,3976],[-7938,-12931],[-3898,7811],[4066,23707],[-18490,29738],[-349,9546],[7931,12125],[-3242,19834],[-11762,5121],[-8235,35279],[-5929,3647],[-27357,-1003],[-10519,5318],[-14675,-2720],[-10308,-11262],[-14849,2071],[5739,11300],[-5862,4539],[-7573,-6516],[-13785,45],[-22843,5094],[-159,12978],[-6965,-2991],[-8563,9246],[-1629,9602],[-11973,6536],[-17698,35234],[28590,-6584],[11874,3301],[7003,42463],[-2222,14976],[-6905,3292],[-15314,17517],[-4857,11460],[9949,-1294],[5496,9452],[-22266,5693],[-3235,10381],[4111,25564],[11653,9489],[3373,-5204],[-8617,-12060],[15118,-9406],[7330,4315],[2123,14253],[-9887,15005],[9399,12079],[-2641,11206],[9683,-2832],[15551,2465],[-15955,25424],[8960,9433],[6895,-17601],[8572,-318],[-3836,9039],[16326,11629],[5199,14825],[-16487,34942],[-6401,-12248],[-10466,5984],[5381,10372],[-7642,11506],[-17873,-1819],[-6598,7465],[13053,1809],[-700,16121],[-6767,-3498],[913,9556],[-6667,1379],[-11319,16889],[-3874,32991],[19409,6621],[5694,6920],[-6569,25021],[579,9855],[-15057,-3376],[-6423,5945],[-267,13486],[-17134,14133],[6127,13729],[-10870,-442],[-8479,9960],[3304,17724],[-18245,4370],[-6105,-2983],[-7727,15765],[-27408,2943],[-18352,14603],[-27730,9226],[-9134,15933],[9172,-918],[6242,10174],[-7467,7549],[17979,11057],[-7978,8852],[-21822,-9115],[-18833,6987],[-32288,30036],[890,22639],[-2762,17498],[11759,11723],[-5366,32044],[-24966,-1669],[-18094,4051],[-34717,-19647],[-16273,-4932],[-15201,-1052],[11502,7568],[-382,9322],[-6333,-5823],[-7390,3385],[-17142,21024],[3875,8806],[18177,5890],[7551,10119],[-14723,41871],[-7298,1464],[4856,7313],[-10413,14781],[-29466,13335],[3602,-6209],[-13207,-3563],[-12818,-18663],[18412,648],[-2526,-12941],[8966,-9847],[-2405,-4923],[-16076,-5440],[-6439,7053],[-838,12566],[-13283,4164],[-9293,16326],[-34459,15052],[731,35017],[4254,8514],[12362,8093],[6630,-13232],[-10747,-2279],[2999,-14535],[13670,7512],[7215,14469],[-3516,7324],[21466,27074],[-13663,3732],[5975,9172],[8525,-2036],[17537,4662],[-3822,47600],[-8904,4568],[-5444,11741],[-19234,7380],[-13739,-6498],[-2475,-11113],[-9095,-413],[3426,11543],[-7316,4296],[-9308,-6696],[-21694,-8609],[-7635,1041],[-22286,-19581],[-10147,1192],[-19243,-3686],[2345,-6132],[-9111,-25470],[-21937,-1727],[-20005,9998],[-15977,-769],[-5412,-13213],[-26945,-6397],[-4178,6397],[7725,3825],[-4225,10859],[-14340,-730],[-678,9518],[9622,5298],[-8700,15530],[-18779,6367],[-2040,5224],[7247,13157],[-4065,10249],[-16982,939],[6927,12434],[11715,6348],[18732,17069],[16267,3019],[9705,-3133],[-6607,-25310],[7984,-4182],[8419,3038],[5184,10362],[25271,31519],[-5108,9425],[-9896,-6311],[-11478,10888],[3744,8402],[15948,3217],[-5352,10165],[19402,24926],[283,10644],[-6318,7332],[-15780,-4406],[-13723,28986],[-16556,-6303],[-6355,5891],[-26635,-610],[-10404,2512],[-12369,-9490],[-10368,5364],[655,12192],[-25835,4782],[1089,19713],[-10861,3254],[-9317,-9998],[-3898,-13859],[3927,-12350],[-9863,-236],[-8503,11526],[2389,9481],[-9597,-2279],[-6570,6856],[-2740,21559],[1416,9095],[-8266,170],[-2208,-15267],[-17171,14583],[-7811,178],[-5388,-11179],[-3007,8909],[-21130,13645],[3456,17490],[-18589,16054],[-26237,-11544],[-2915,-7878],[-10939,-9077],[-18876,12445],[714,8063],[16313,6641],[-8122,13344],[11067,3133],[-6804,25197],[6166,5252],[13313,-26539],[9932,-620],[-3021,23474],[-7886,9198],[10831,19318],[-738,10955],[-10671,-7493],[-5595,5775],[7626,10467],[-12010,11779],[16509,580],[-6044,5833],[9173,7775],[6036,19130],[-1888,11910],[7101,3348],[-1895,7642],[6159,9040],[-3442,10767],[-9437,2898],[1096,7305],[14164,8120],[-3318,7324],[1629,16224],[3973,4558],[-9012,17827],[4659,10127],[-3015,8882],[-12323,-1960],[9934,7633],[-3753,5870],[6127,10889],[-12399,7080],[-16412,938],[12051,14290],[-14860,8160],[-1856,23669],[8806,3320],[-9270,18587],[-13489,2926],[-14607,-14602],[-632,15004],[-6979,17940],[10336,9930],[2589,8245],[-10878,13325],[11212,2523],[312,14113],[-14233,-10324],[1179,22628],[10778,18127],[20080,13532],[-8258,479],[4482,17048],[-8349,11909],[6561,8750],[-1438,8065],[-11343,-347],[-6873,15060],[-2305,14921],[-23377,11197],[-9872,1593],[3342,11966],[-15179,7053],[-12879,-853],[-9452,13860],[5823,9011],[7260,-3084],[1904,7623],[-11548,10869],[5914,2308],[3144,11974],[-7085,6753],[8371,7773],[3350,16844],[-15232,-14311],[-6621,11637],[6409,8376],[-5801,6460],[-12132,2317],[-17310,15820],[-2579,-14019],[-4012,9648],[-17880,-10586],[-4826,11777],[-10048,3340],[-19882,35231],[-18854,6050],[-274,-13420],[-10130,7117],[-13954,3029],[405,-9293],[8570,-6293],[-8335,-4745],[-18786,10165],[-11486,3189],[-21473,22751],[-8851,2823],[-2848,-6555],[-13983,-9960],[-17582,4558],[-3175,9011],[8327,9717],[-14196,102],[-1833,-10427],[-8032,4997],[-11760,-3095],[3381,15118],[7170,6021],[9469,-216],[-2079,15427],[-11394,8598],[7681,13485],[464,12136],[7162,1678],[-7451,21251],[1552,9227],[-8844,4661],[11448,3517],[-7499,18427],[5025,12885],[11539,-5570],[-762,11674],[4895,26080],[4612,7783],[16579,14133],[10100,1538],[3701,9715],[14523,-731],[10428,13006],[-647,11020],[-13016,21653],[-8168,5964],[1660,8497],[-12583,-769],[-632,15098],[10132,4698],[3083,10616],[-11014,6291],[2845,7972],[14250,-4042],[-1591,-16167],[13016,-9837],[11007,8984],[2702,11262],[-4673,10307],[6516,5025],[8928,-3367],[639,11048],[-9019,5092],[15741,17265],[-9956,8646],[737,16092],[7209,6030],[-4125,21616],[-7628,6546],[-4156,13888],[5061,7315],[-920,18615],[10474,5814],[997,13138],[-6371,7343],[-22805,10662],[-13016,-3105],[-2831,10270],[5732,5766],[11196,-12500],[998,24570],[-15605,-1069],[-6393,11226],[4809,13756],[-3104,15887],[3821,4960],[12871,-1556],[914,8843],[12139,-4933],[9157,7004],[8930,-1762],[-793,-9649],[5869,-5608],[10436,-273],[-989,14132],[-10026,14218],[18140,10578],[-3791,12162],[-6752,2973],[-6021,16917],[4941,1567],[-10269,21699],[-372,13626],[-5124,9810],[19411,-8957],[-4218,28059],[7429,-1340],[5427,7099],[14426,3234],[-2847,25996],[18221,-2130],[-1567,20220],[13274,31650],[15155,-3649],[3090,20735],[-20969,-919],[-7027,27054],[1402,24167],[-6319,3206],[-17270,-7108],[-8593,8112],[-12104,4943],[-15223,1650],[-16899,17434],[-14514,10248],[-17416,27197],[-7642,4528],[-18535,19000],[-8981,20172],[-13566,16524],[-8539,3967],[-13238,27083],[-8851,26434],[3372,31961],[-12742,-5411],[-13298,17573],[-15612,33817],[769,12424],[17446,23773],[13511,-3441],[5290,-14357],[10101,4500],[2413,11488],[8228,-5523],[5275,8037],[9552,-2691],[1682,34265],[-30120,15089],[-16843,-5466],[2831,10577],[-13047,18315],[6972,11676],[-6645,17742],[-1293,15013],[-11099,4850],[8717,22394],[-298,5823],[10558,1181],[2153,9125],[-7854,1237],[1964,14331],[18450,23397],[-503,8842],[-14225,5384],[-2261,10362],[9065,14320],[2026,34257],[25583,18831],[-1394,29651],[-3189,6959],[15208,21512],[19981,17987],[-541,11957],[8496,3253],[13175,-11496],[5412,-301],[15749,15240],[4446,777],[3638,24383],[12125,15051],[22828,-17265],[-5794,-9283],[10018,-1134],[10360,12781],[-5946,8506],[8548,18248],[-737,10513],[7710,10156],[-5009,27317],[13953,6284],[1721,16907],[14728,9687],[-12567,17922],[2855,12510],[-18017,14797],[-24975,40400],[-1940,12304],[-11396,14685],[-12962,-2935],[-15772,16701],[-13350,-2935],[-2757,12108],[3442,21231],[6530,10624],[14981,12473],[-6531,14488],[19569,8057],[27432,-12707],[19738,-3808],[13168,5308],[-3539,20097],[5108,5878],[19942,-5007],[5602,7324],[144,14227],[-6035,15201],[7612,5055],[-884,13344],[-7018,9068],[-21077,16083],[-16646,16964],[1469,-9997],[-9180,151],[-9583,-7109],[-13998,5973],[-25545,21289],[-3973,7427],[-6675,35606],[23520,7915],[9781,9594],[2801,14208],[-6052,7943],[-26482,14376],[-11805,10813],[-4467,14290],[4307,21006],[6181,7607],[20437,10362],[7620,9509],[8129,-1594],[8632,7324],[-4035,16402],[5893,14131],[12300,8909],[-1005,8769],[23961,-2288],[18193,39058],[1430,13757],[-2518,14657],[-14973,5233],[-14607,-3620],[-3951,3854]],[[68736717,60781446],[-80683,-609],[-476207,-8045],[-147271,-3218],[-308755,-4436],[-14819,-496],[-247032,-3123],[-281795,-176911],[-120409,-74994],[-171850,-107581],[-36643,-25948],[-45032,-27066],[-84848,-55056],[-50176,-29550],[-199518,-125126],[-76856,-47743],[-57986,-36901],[-114572,-71712]],[[65286629,62591427],[2391,71966],[8075,272225],[2543,98402]],[[58547251,70899249],[747,724666],[130,237174],[-716,11693],[3905,1007452],[-62,153053],[1425,1015920],[1050,156281],[532,284287],[358,58760],[-31,208618],[-868,235165]],[[54576117,74992365],[233164,-1931],[247883,890],[44948,-235],[353031,245],[105675,507],[78088,-572],[129157,-189],[36186,1314],[343342,-1060],[143550,1537],[26672,-694],[68361,1444],[161809,591],[216837,-1116],[263715,723],[91577,-572],[30995,675],[91517,85],[204496,-713],[195964,891],[37230,-872],[110651,19],[172124,880],[231139,-1302],[68970,674],[254254,535],[36269,-1801]],[[58547251,70899249],[-353237,2045],[-69100,19],[-282723,1237],[-258935,1324],[-53321,18],[-284898,1266],[-2521,515],[-606525,1379],[-77525,562],[-255260,733],[-238956,1087],[-383159,826],[-325424,769],[-16146,-451],[-222818,731],[-516183,1905]],[[95958205,49674938],[-5984,-7353],[7910,-9545],[-9188,-22367],[9766,3188],[6911,-9621],[-7201,-9780],[145,-12960],[-18169,-12219],[7512,-9004],[-1940,-14648],[-11014,-5711],[-5008,-18998],[1415,-10111],[-7125,-8279],[-17088,-1960],[3555,-9762],[-5381,-6499],[-11837,9987],[-10466,-7615],[2884,-11647],[-17514,2662],[-2542,-12144],[-5054,5469],[-6447,-5796],[-19859,-1088],[-404,-7644],[-15246,5881],[-5427,-9228],[15824,-5879],[-7855,-9256],[-3280,9142],[-8488,-8402],[-6484,14048],[-12370,-5757],[-2452,12162],[-9209,-14236],[358,22873],[-4636,535],[-9659,-24898],[-464765,-113752],[-33796,-7924]],[[74720799,49408610],[-8502,-41862],[-3450,-9302],[41332,-41225],[65158,-52487],[12308,-17247],[37616,-59679],[6311,-12941],[-1598,-11844],[-10010,-9678],[-19844,-26192],[-24228,-20370],[-11486,-17001],[-12057,-23425],[-11175,-48025],[481,-15623],[6035,-14309],[18519,-16872],[40823,-7586],[21785,1848],[31155,9620],[13997,9023],[53518,42256],[27197,6377],[40282,-20641],[10473,-10128],[2931,-8703],[1362,-25095],[-3403,-63289],[9409,-27965],[8381,-8055],[12178,-3751],[29610,2025],[24768,6705],[8442,4689],[22211,5682],[12246,282],[13040,-4418],[12346,-11130],[5366,-13289],[2002,-15886],[-4650,-16092],[-20308,-17283],[-25554,-25976],[-33254,-17321],[-16686,-12528],[-9164,-21100],[1521,-19816],[6563,-16654],[9522,-10353],[37138,-6499],[15155,-4361],[6864,-20744],[-3523,-20463],[-13937,-21577],[-16320,-9434],[-3836,-11338],[6431,-16571],[3289,-40323],[7360,-51785],[9257,-19722],[4194,-15641],[17484,-30684],[20841,169],[27988,27683],[46889,25526],[8775,-7164],[19997,-4755],[19135,-13148],[17691,-16449],[10214,-33702],[-495,-14105],[5725,-10137],[-6167,-17480],[-19585,-27036],[-9865,-7305],[-39253,1537],[-15999,-11384],[-5794,-37006],[-8859,-41420],[-4871,-14509],[-22173,-19411],[-28080,-18737],[-36903,-19139],[-10252,-29184],[-564,-42416],[3897,-23059],[5710,-15051],[12186,-15934],[22554,-2381],[11730,2147],[14598,-9135],[19303,-21671],[10649,-42575],[20811,-38852],[8510,-30103],[-959,-30252],[-4787,-44497],[-10832,-45492],[312,-15276],[8914,-17997],[71534,-69507],[24343,-38758],[19646,-7381],[40753,5834],[26549,13316],[10140,-3732],[11882,-25883],[-8450,-24721],[-29145,-36028],[-389,-26024],[10079,-21503],[24107,-22188],[27006,-10896],[47535,-12145],[29152,759],[11023,6724],[19075,23333],[10474,18201],[11014,11122],[26230,17472],[44605,24372],[13449,4764],[32494,4633],[13831,0],[22051,-5711],[18733,-9969],[15451,-13157],[8336,-17209],[4863,-22524],[-7292,-30310],[-12909,-15950],[-8608,-4511],[-22182,1021],[-22279,10092],[-12301,9546],[-16761,900],[-4117,-3957],[1422,-16412],[10063,-38543],[11183,-14995],[13526,-12265],[27653,-16345],[14485,-3254],[18328,-20641],[5679,-12313],[15727,-15745],[3691,-23604],[-4027,-10316],[-8739,-6405],[-12642,-600],[-12879,15896],[-8837,2054],[-46173,-5618],[-7604,-5336],[-7133,-15699],[-3493,-17677],[906,-35991],[3159,-15529],[-1995,-23426],[5724,-25143],[10351,-20518],[15050,-22563],[15314,-17002],[20749,-14741],[23140,-25723],[11571,-20528],[16159,-48417],[4445,-17902],[6104,-11019],[12468,-7568],[18025,-1436],[21451,3077],[12262,-5917],[8859,-17988],[-1141,-15388],[-8989,-25330],[1895,-18426],[15795,-11357],[30591,-13729],[14584,-3413],[13023,-13795],[45747,-12772],[21161,-8037],[28042,-18597],[19173,-18080],[12865,-17265],[19089,-31312],[10414,-23135],[15177,-41261],[15018,-64698],[967,-35166],[-4772,-33835],[-15376,-18174],[-17811,-12407],[-31697,-18117],[-19294,-22302],[-13489,-33308],[3143,-16965],[8077,-22600],[10960,-15427],[15323,-10859],[15581,-2852],[18801,2270],[23650,15005],[17735,21935],[13693,487],[14859,-4585],[23810,-2768],[17256,-10877],[6082,-7334],[11250,-33816],[6774,-37867],[11433,-25143],[18801,-27944],[3684,-20547],[5321,-7935],[33506,-37905],[4248,-18341],[-1721,-29915],[-10526,-21607],[-19996,-20153],[-18635,-3835],[-49414,9040],[-21899,-26427],[-10802,-19000],[-18124,-23181],[-8159,-16758],[30012,-40419],[35586,-28610],[22781,-30703]],[[76302821,45891467],[-42435,-28386],[-9133,-4727],[-54600,-35354],[-81149,-50922],[-130259,-83171],[-177285,-111249],[-241605,-150042],[-105019,-64313],[-118385,-73634],[-39787,-23810],[-247022,-151610],[-112624,-69405],[-9386,-4876],[-124414,-77189],[-84946,-54513],[-61000,-37821],[-279244,-176169],[-14912,-10138],[-402752,-252197],[-269905,-168921]],[[19358891,49402346],[10024,183212],[5335,3714],[892,77133],[4924,65775],[28429,394887],[36469,542316],[9325,92090],[70552,1020363],[9994,151902],[14783,177446],[65536,931989],[3792,62680],[71185,1019409],[10017,152800],[20772,289830],[18366,262183],[43996,620187],[78850,1120979],[4073,53059],[34891,478885],[50215,690435]],[[19951311,57793620],[167367,29],[15619,1040],[154534,11]],[[20288831,57794700],[-5609,-27008],[-6379,-11929],[-16609,-17443],[-944,-6499],[7109,-24176],[21298,-52328],[8730,-9601],[21587,-39612],[14372,-7577],[17614,5776],[32919,-675],[27465,10530],[8965,-1649],[17211,24916],[14408,13467],[52948,24653],[13953,-5447],[17513,-49094],[1432,-23556],[-12141,-27656],[8404,-52955],[9469,-18999],[11805,-15783],[28834,-22947],[2884,-27965],[-9651,-12407],[-19616,-16251],[-22927,-23923],[-4612,-11882],[15802,-23716],[19540,-18774],[14728,-24757],[8510,-25939],[12644,-1191],[22278,22657],[20454,8140],[20208,-5027],[44750,-25310],[20484,-18203],[13617,-26867],[-146,-25245],[2871,-33320],[6713,-6967],[27813,-17030],[2992,-19346],[-20726,-30534],[-982,-38347],[-5146,-25347],[1613,-15886],[13542,-30890],[10108,-30366],[13769,-29970],[3442,-23585],[7764,-22377],[16463,-13165],[13085,-863],[19797,-11253],[23415,-23360],[9781,-6677],[26838,-8430],[16488,-7315],[24791,-6724],[20947,-2710],[13367,-6377],[20361,-2279],[21944,-9378],[7149,-7699],[6843,-16823],[-1507,-11226],[-7977,-18914],[-7575,-25067],[-2900,-31275],[3122,-27318],[-1531,-17723],[-19943,-45989],[3221,-16646],[14827,-21943],[18153,-13251],[20925,-2691],[11007,5908],[23840,25620],[4598,12969],[-62,28190],[7878,16653],[24328,3967],[10017,-3347],[22211,2335],[29892,31453],[6203,22066],[12528,17115],[15187,7408],[59767,-8543],[14812,24710],[10245,12031],[40122,34380],[29359,5439],[22476,-338],[26239,-18258],[6927,-15839],[1233,-11319],[-11137,-14554],[-358,-20858],[3730,-14206],[-2032,-21128],[-8084,-16393],[-7482,-23181],[-228,-12585],[4742,-19196],[7132,-9144],[15155,-5214],[4315,-9246],[1523,-19224],[-7695,-8760],[-2345,-17751],[10048,-9069],[26748,2803],[10176,-2803],[8640,-8966],[175,-9387],[-6897,-9611],[7383,-5655],[10771,-19413],[8654,-7418],[12096,-2802],[16258,825],[13990,-3143],[3290,-11683],[-17157,-11273],[-2048,-6498],[6203,-13393],[6797,-2615],[6197,-10579],[-2559,-21475],[-13396,-23012],[-24722,-34529],[-10984,-3732],[-12064,-10814],[-1447,-12848],[9765,-19289],[25439,-8908],[11045,-10372],[15437,-29090],[17803,-9462],[13518,-10756],[5153,-10194],[945,-24636],[8815,-22740],[-3716,-29287],[-14119,-21091],[1142,-16148],[11797,-18241],[328,-34631],[-5404,-14460],[5038,-24599],[-3668,-21793],[-10490,-19065],[4316,-13176],[-3706,-7427],[2899,-24345],[-2206,-13063],[7246,-10907],[14090,-9227],[426,-12435],[13868,-12603],[-867,-7193],[7359,-9219],[5374,-18447],[-3036,-11637],[8128,-31566],[-4049,-13354],[6022,-7398],[11159,1107],[4040,-7597],[14076,-12734],[-6958,-16908],[9058,-20144],[7124,-26024],[7239,-1527],[8502,10850],[14136,1040],[10421,35373],[4680,4427],[9485,-9229],[-2459,-19542],[8859,-3132],[10824,9864],[23779,16262],[13223,-3105],[3501,-9668],[-6104,-11403],[4635,-6180],[13793,-1135],[10275,-5787],[11927,-22516],[-17727,-10427],[-11738,-3751],[-4376,-7549],[1743,-13119],[7954,-8759],[29001,-6246],[9118,-10024],[34848,5569],[9262,-4060],[-7741,-17753],[-3014,-14047],[6698,-12922],[6022,-328],[19653,26332],[10184,4623],[5185,-15642],[-548,-11085],[-6661,-9125],[-4125,-15763],[3417,-12781],[6143,-3133],[23771,4192],[12437,-7943],[-17583,-27655],[183,-9152],[8130,-6013],[10702,4400],[26146,20959],[1689,-23895],[-13281,-16345],[4026,-21175],[18488,-14086],[10186,-19543],[26527,-6631],[14415,9153],[3768,12913],[16153,11151],[9019,-5374],[-2944,-17555],[-8038,-19694],[12033,-6029],[13725,7306],[32624,-150],[28672,-3115],[19851,-4903],[15400,290],[20613,27467],[8219,338],[12849,-19177],[9538,-4464],[13694,4248],[9522,8628],[-907,14966],[-30887,11986],[-2915,7463],[13783,11676],[14333,-3939],[18018,-20050],[11913,3508],[13403,9069],[10466,-403],[11212,4838],[10824,10935],[9248,365],[24114,-9771],[-723,12876],[26376,1903],[4316,8422],[22392,9048],[25393,-7117],[13701,1782],[32572,-2222],[8548,-12754],[9484,-32822],[10702,-5009],[12163,-299],[7931,-11703],[1691,-17556],[-10649,-14291],[2481,-5581],[27280,-10821],[6121,-28302],[-1195,-8854],[5540,-8288],[18246,-4220],[-822,-12023],[5328,-12229],[69,-11975],[5617,-22282],[6873,-13945],[15338,1717],[7056,-11825],[8297,-5487],[4126,-24701],[16320,-28395],[16982,-4502],[13266,-11768],[11791,2729],[1697,-12193],[9141,-8121],[22036,-13268],[15757,7418],[19737,-180],[9500,-6977],[15954,11563],[13115,-11890],[15628,-9087],[14888,-20],[29366,-13419],[17727,-816],[10017,2899],[10786,-13326],[8983,-85],[11721,-12509],[13351,-8046],[16769,-441],[5617,10389],[12110,8169],[15794,-13963],[2467,-23979],[8829,-13251],[4926,-23033],[-2871,-25009],[4104,-7127],[4749,-25959],[15658,-19401],[-572,-11882],[-8883,-6864],[-13677,12313],[-21084,-10747],[-20195,-789],[-10588,6049],[-18025,15586],[-20292,-4182],[-4202,-7465],[5527,-12417],[14424,-9077],[-3282,-9940],[-8874,-3629],[-761,-19515],[7642,-19104],[-2756,-10962],[7894,-8195],[-1850,-14320],[13312,-14592],[1896,-13410],[-4446,-13635],[4864,-4961],[16525,1744],[6395,-9969],[-5412,-15792],[30104,-21148],[20103,6434],[5503,-3488],[-1424,-14471],[-7436,-17526],[6736,-4239],[13343,1162],[11623,-5231],[-3127,-17566],[-13876,-29492],[4482,-4934],[14996,1652],[4468,-13496],[-8015,-9827],[-2170,-15521],[7841,-3009],[13365,13522],[8023,-2972],[396,-10935],[-6333,-18614],[4011,-16477],[8426,-591],[8854,8945],[11995,23296],[12787,-2326],[-3165,-18812]],[[23099785,54528214],[5427,-11845],[8068,-1593],[14052,6874],[10320,-28],[6517,-6124],[166,-20547],[5725,-3498],[12994,2372],[5191,6716],[-876,9527],[10863,-3808],[-914,-12679],[11173,-14657],[11898,-3217],[15444,4221],[5381,-2504],[2566,-13944],[-14104,-4398],[-4211,-5899],[3937,-9931],[23831,17807],[11836,1502],[3288,-9819],[-7671,-9115],[5373,-12969],[19859,-14583],[11944,-17264],[26686,-2560],[5761,-5787],[15301,-4614],[-3974,-16138],[10665,-1229],[22903,-13429],[15276,-1623],[4088,-5261],[13389,-2925],[22737,5663],[17705,-1209],[7650,6489],[17286,7324],[16098,-12462],[4818,15575],[12880,14040],[3295,33188],[6250,11178],[16220,-1229],[6943,-8008],[10717,-2082],[14,12622],[5573,5982],[9125,-3018],[10741,14676],[-7931,14253],[20277,2702],[27174,-11067],[6180,-8233],[8419,-1904],[15802,8722],[6441,-1763],[1499,-10381],[13677,-1885],[11959,-6067],[19592,12696],[13679,-19346],[5831,-731],[-1675,17648],[8130,2477],[5511,-15595],[11949,-14931],[1675,-11543],[-14364,-10372],[-714,-8515],[13860,-15473],[20338,2082],[-2191,-6677],[-25035,-5627],[898,-7614],[12164,2054],[13806,-3798],[19548,646],[20940,-21804],[-1910,-11046],[7566,-2138],[2427,7362],[14843,-2495],[-1774,-12361],[14494,6078],[-3578,-14320],[-6881,-6781],[663,-9059],[12902,8328],[12018,1567],[11418,-3958],[12132,3694],[-418,-11665],[4970,-8478],[10117,16975],[4369,-17041],[-3434,-9827],[-8623,-2261],[-11737,8470],[-10200,-2712],[1416,-12285],[7772,-8074],[12185,-2691],[-1430,-12012],[-10140,1030],[-5869,-8879],[13231,-8121],[-16222,-20134],[4553,-7596],[9796,7746],[7078,-2073],[236,-14273],[-19760,169],[-9719,-5046],[259,-6621],[13982,-5683],[5017,-16785],[-763,-13411],[5132,-12397],[26542,-16458],[3463,-7849],[-8693,-2533],[1971,-24596],[13580,3741],[12034,-15642],[3350,-12885],[-10582,-3254],[1798,-15492],[8859,-9163],[-20018,-6395],[-1987,-13710],[10969,-5298],[5823,-13223],[-19928,-3424],[-7802,1454],[20818,-15885],[-19296,-8872],[-16434,5288],[5237,8526],[-6912,2512],[-6378,-16477],[8267,-7745],[9894,-17358],[13199,7831],[-6979,-12904],[-19121,-1247],[8936,-12051],[-6486,-17378],[-9316,-10305],[1097,-9257],[11043,-12856],[-8061,694],[-21526,27213],[-3334,-7810],[1675,-13260],[-6508,-6940],[4180,-9049],[13038,-5206],[-14363,-12210],[6280,-10484],[2877,-18783],[-267,-17864],[4987,-20266],[6698,-7033],[4734,-18221],[11524,5495],[1538,8262],[-11159,1576],[2572,8823],[17813,-6658],[9643,1735],[-11007,-8964],[723,-18156],[14143,-2626],[-13495,-6509],[3341,-10511],[17241,-4427],[60,-11423],[10443,4634],[6958,10774],[8319,-8101],[-10252,-13129],[-12201,1491],[-1036,-9565],[9279,-3948],[14766,4631],[5261,-4247],[-861,-9950],[-7885,-4885],[-10474,2005],[4658,-10530],[13838,-4173],[-2420,-15108],[13929,19],[-1179,15971],[6043,-5214],[4072,-15042],[-6333,-10128],[-14568,-1474],[10533,-21943],[15330,-8618],[2087,-13270],[12939,8178],[6220,-1735],[-609,-16026],[-7779,-3920],[3113,-13298],[-4187,-29240],[2245,-27120],[4621,-10711],[-8959,-13709],[-4643,-16176],[-7864,-5421],[838,-17255],[7879,-9182],[920,-11075],[-19738,1380],[1272,-28246],[-13046,-5356],[-7674,1342],[2673,-13607],[16289,4145],[5251,-12370],[17059,-8402],[-99,-8327],[-13381,-2476],[-7034,-7033],[2764,-8103],[11218,-3807],[9644,2334],[8564,-6498],[-5382,-6537],[-21449,-10080],[-5770,-13644],[8952,-11291],[-382,-9023],[-14074,3396],[-6371,-8177],[-14278,-966],[-5840,-18335],[8427,-12565],[2010,-13307],[-8144,-8768],[2785,-42791],[16730,-4371],[10596,-12171],[-7780,-10082],[2034,-7886],[14811,-13486],[16450,-5458],[7330,-11974],[-7430,-13111],[4599,-13616],[-4340,-20556],[4696,-10748],[13877,6255],[4773,-3094],[3083,-16842],[-18124,-9763],[2724,-11393],[8130,-6509],[2619,-9583],[10640,-4164],[6881,4594],[12240,0],[-2139,-10812],[115,-28620],[3661,-3705],[23726,-329],[6500,-4378],[-5411,-10410],[2769,-17789],[29154,-15530],[9013,-18831],[-12096,-12116],[-15,-14919],[-5678,-11470],[-3007,-17490],[-7474,-3515],[-13838,5898],[-16176,-1811],[-2991,-6695],[19935,-10202],[-2482,-10682],[-12269,1276],[-4004,-24824],[13975,-13147],[-11090,-6274],[-11426,-18821],[6378,-35177],[7050,-7276],[12133,-1089],[-799,-21577],[6621,-6977],[-365,-8937],[16243,-4914],[-5449,-7314],[12308,-8844],[-1560,-16177],[24624,-3638],[478,-13561],[26139,-4070],[1158,-6246],[-8313,-17555],[9659,-21286],[16625,-5111],[12582,7474],[3615,-2363],[-2069,-14086],[12186,-11647],[14927,5870],[13966,-20827],[-12147,-14405],[17232,-5486],[8594,3920],[-7407,-12491],[4956,-6592],[20087,-5871],[800,-13598],[11988,-4079],[14439,5466],[-4452,-14309],[10101,-3415],[11378,4061],[4667,-9246],[12864,-6818],[-54,-9659],[12658,2682],[5892,-5063],[13267,7633],[678,-9255],[9401,6882],[16145,-16335],[10801,10034],[17606,6460],[-100,6874],[-9287,5253],[-8684,-2242],[7376,11498],[13944,-4540],[-7368,12247],[9812,6669],[-11646,6338],[8327,5253],[12826,-3151],[3120,10099],[-19409,13841],[10998,1530],[11791,-11949],[21915,-5916],[12216,-10654],[12552,384],[26062,8356],[9028,-4042],[16136,-14282],[3153,-9453],[25415,-11974],[12095,4304],[19448,-4079],[5807,-10222],[11114,1649],[1424,6613],[24760,16317],[11251,11394],[15542,-2721],[511,-7933],[16068,6630],[4026,6181],[-6484,12332],[7215,3788],[10862,-6237],[18230,6519],[4612,-7898],[13040,5261],[3547,12473],[12947,8609],[2146,-3704],[-4071,-19693],[4193,-3845],[13990,4305],[13802,-5469],[9826,3920],[10261,-11019],[10891,-5701],[-45,-13364],[17043,-14666],[3676,-8346],[-2991,-11375],[33887,-17153],[5549,-12013],[-8517,-25084],[15467,-11460],[12240,-5242],[8167,3835],[-5107,13486],[4635,6526],[16221,-10513],[24936,592],[952,-9940],[5715,-911],[11745,13908],[11639,-3151],[4034,-6302],[18831,2804],[-8669,-11141],[-16335,1904],[-4545,-5552],[4043,-8909],[14492,-1013],[-1104,-11430],[8388,-104],[4362,10541],[13739,7193],[8921,-10045],[6509,197],[2162,15051],[9780,8206],[2931,14846],[18017,-17219],[-6508,-6516],[-10656,187],[-2650,-8139],[4970,-5797],[26148,2082],[4710,8599],[-8592,12960],[20703,19207],[12110,14995],[13473,1866],[9362,5711],[8746,12003],[11320,-1847],[-960,-13729],[5641,-6030],[15694,14225],[9218,-2400],[-1766,-11093],[5489,-12323],[13350,4052],[7878,-10973],[2375,-17096],[4917,-4511],[15026,10466],[5960,-327],[1667,-22319],[10596,-5299],[1613,-11394],[8709,-3948],[22,12782],[4331,1950],[5229,-17939],[6167,-2691],[365,10165],[6158,4614],[13389,-20219],[5693,12820],[13367,-2477],[9544,9238],[5573,-3591],[4840,10062],[9690,-4417],[7969,13015],[15049,1183],[5016,7661],[14874,3198],[15391,8825],[18900,-141],[20475,-16309],[16364,5731],[4842,10587],[7437,1997],[-5984,10045],[7750,9190],[28734,9892],[28933,-14665],[14675,11674],[12148,160],[17689,7296],[18140,-3836],[4224,4849],[29412,-8553],[13890,-12575],[8472,4482],[6143,-7155],[-15436,-8956],[10070,-2034],[10771,-8188],[6965,14630],[4811,-5533],[-1218,-22647],[16912,-1980],[-6621,-9771],[9719,-93],[9204,11309],[3530,21775],[5269,-9434],[8281,-3188],[-3105,21522],[4963,15145],[-17097,-1763],[-1377,7427],[6333,9716],[8312,-7034],[3500,7681],[11571,8739],[-12156,-2634],[-2230,6647],[15139,6444],[5352,10399],[13053,1135],[10367,14067],[11913,-14124],[6448,7306],[-8938,7793],[5268,3807],[22637,-5954],[9721,7154],[8426,-1519],[4948,-11422],[-2596,-11337],[12140,2138],[21101,-28922],[12802,-12893],[1012,-5374],[-20962,-16533],[-6104,-8159],[-3266,-27721],[-3661,-8157],[1013,-13533],[12194,-7961],[4261,-8601],[396,-19336],[-3660,-12238],[12596,-5814],[-1430,-15033],[5891,-14825],[10771,-16984],[23383,-3227],[-822,-12463],[10191,-7276],[7323,-11806],[2246,-17622],[5084,-5795],[1843,-24494],[21762,-16103],[-1012,-16757],[24889,-7971],[30463,6029],[4735,-10708],[19577,-12754],[33750,2185],[6387,-17583],[19775,-8872],[42694,732],[30988,-16758],[23596,-686],[17515,-8251],[9841,-17125],[8549,-1659],[22636,-14883],[38912,-14976],[10168,-562],[10627,-9763],[21411,-11103],[-14,-10737],[13595,-9914],[27638,3377],[23146,-3929],[14204,-7981],[13816,1266],[16037,-6705],[11190,8346],[16845,-6479],[14835,7679],[11584,188],[12194,6845],[11973,-4753],[14235,8551],[23155,-1565],[7117,3845],[18893,-2419],[30256,-723],[26596,-12228],[33986,-20790],[10092,-10579],[24632,-7220],[12484,-994],[14773,-13046],[23560,-4858],[3120,6650],[5556,-6453],[24487,-4444],[7460,6340],[16145,-8469],[13312,-3310],[11463,6386],[-4871,13053],[1416,7990],[10398,4943],[8434,-8769],[20825,-11113],[25750,3827],[14585,-2363],[6151,-9640],[20726,375],[12286,4792],[2785,-10456],[16145,-150],[5458,4126],[21320,-7783],[-190,-18915],[7215,-1032],[2824,16860],[7757,9284],[31260,8057],[10040,4435],[3860,-6499],[21169,-7520],[10632,3507],[10238,-2982],[12439,2935],[14727,10831],[14288,-5767],[10688,1191],[39207,-6547],[27707,413],[3311,5720],[15026,-4173],[37457,10270],[10383,-6396],[15412,3658],[27410,16700],[4880,13974],[-14097,2429],[-1173,8345],[-14727,1399],[-7750,5879],[5899,15980],[-3220,13100],[9272,10157],[6287,-57],[-9743,10765],[4636,5825],[-442,11497],[17613,6235],[-5563,8563],[20879,2888],[10534,16805],[10048,4952],[830,7117],[19463,8450],[585,5879],[-10337,4070],[-144,7070],[15316,-7689],[28094,5974],[-4537,-12313],[12879,4483],[8297,-4334],[4095,-10052],[2588,11497],[20437,-629],[20926,-18718],[8875,6087],[19311,-22131],[15078,-553],[11243,4895],[4734,-3770],[3182,-18812],[12529,3648],[1348,5963],[16289,-3815],[21784,9142],[8701,-13962],[6554,-3171],[9179,9490],[12711,5524],[9988,-3582],[7801,-14902],[31841,-9856],[6135,-6798],[9491,-956],[17172,6264],[7080,8459],[12040,431],[-1620,-26615],[2130,-9939],[-5708,-10608],[1499,-9386]],[[67342012,20241824],[-2711,-14705],[-7542,-7278],[-1720,-11533],[9202,-7466],[2009,-17358],[-18154,-34126],[-6910,-28957],[-2962,-25134],[-3791,-5982],[-17926,338],[-6225,-5195],[-4362,-44433],[-4339,-9622],[-11479,-9256],[-11622,5450],[-5626,19205],[-5114,1192],[-19015,-10926],[-13701,-1641],[-13100,-27412],[1424,-12875],[10092,-8403],[8382,-13765],[15862,-11705],[6631,-11647],[-5458,-12369],[1401,-8252],[9788,-5242],[10786,-36273],[-2816,-22553],[1856,-26822],[-1772,-12144],[10723,-26830],[938,-23209],[-7140,-10268],[1514,-6677],[10976,2568],[10391,7991],[8364,-9200],[-5655,-11881],[-221,-17462],[-21693,7972],[-1980,-9088],[12995,-12791],[2610,-17780],[11630,-17789],[-7787,-4531],[8077,-9667],[8989,12124],[8380,-955],[10308,-15456],[16813,17208],[9096,2232],[7849,-9368],[851,-8186],[8700,4360],[-4002,9200],[3043,15952],[7650,3919],[382,7653],[-7491,18699],[5573,14292],[16105,8983],[7339,8244],[14514,-677],[23901,9153],[12872,1257],[14052,8760],[10146,13391],[15886,4708],[15513,-1398],[3081,-6095],[-11394,-12688],[959,-12144],[7186,-2148],[14028,-15484],[-914,-25029],[10171,-18192],[23351,779],[27609,-17077],[8570,-2524],[9310,5421],[1446,19599],[15725,-2503],[8633,-34323],[7566,-5402],[1576,-9771],[-8137,-15511],[-11229,-2907],[-17818,-25339],[2207,-13015],[10764,-7953],[15124,12603],[8830,-3442],[3220,-8487],[-4744,-9264],[-9955,-5252],[5382,-10062],[14249,-7071],[5777,5542],[17217,2175],[10604,18269],[9134,5299],[5420,10530],[-11159,14396],[2024,6039],[14630,1124],[18444,9528],[11745,17574],[7025,5290],[10230,-8552],[12909,-46814],[14736,5700],[40191,-18454],[18633,3150],[24236,-5552],[23505,-19204],[5960,-10654],[-13146,-25648],[-12156,5233],[-7801,-2072],[4126,-15174],[-20218,-9452],[-7795,-9454],[-2679,-11843],[6090,-26409],[10108,-2850],[15468,9303],[-10597,21756],[3654,6892],[19487,4802],[6088,-3141],[5603,-14404],[17782,13954],[16685,5401],[9621,-1800],[28010,-13954],[20827,-28359],[12666,-2250],[6339,16786],[-3554,20425],[-9507,15154],[5724,11243],[9628,1801],[22295,22656],[9507,3001],[17782,12455],[26794,-4802],[13031,-9003],[13031,-25948],[10230,-9303],[9013,-450],[-5116,18456],[5116,6902],[17537,-17855],[19243,-2702],[7916,-8552],[13639,4201],[4264,-3600],[9019,-20107],[1949,-10652],[9620,-16056],[2802,-12304],[-4871,-24006],[-27106,-31388],[1042,-8158],[14578,-4173],[20923,-1191],[-943,-9904],[-17141,-10606],[-298,-7745],[19539,5635],[18878,-12143],[6089,1349],[5115,18747],[8282,-1650],[11569,-19047],[-5357,-14103],[16318,2549],[9623,-14103],[-5359,-11703],[16318,-3601],[34102,-20106],[0,-15905],[-21314,-11553],[9012,-11254],[-120,-20106],[-3768,-8692],[-18390,-12455],[5845,-18456],[11691,-8701],[18390,-7803],[18148,-20397],[32030,-21755],[60520,-30760],[28621,-6602],[17902,-299],[41409,4500],[21434,-9153],[11935,-9753],[10231,-16804],[2923,-18456],[7207,-12912],[13496,6086],[13519,10427],[29350,26708],[18238,29033],[10017,22583],[7794,53415],[-13152,54447],[-9257,16806],[-19007,26247],[-4862,14864],[3288,9762],[9378,8703],[26457,412],[23110,-22168],[21776,-7858],[50839,7483],[19784,-3742],[16784,-20799],[2283,-20434],[784,-35636],[-9118,-78840],[10685,-40351],[14478,-16852],[36552,-11225],[29701,-22450],[16008,-29119],[19045,-41244],[14477,-16804],[18253,-8478],[33507,3208],[17286,7042],[33134,25996],[24113,9443],[16321,150],[41400,-10662],[14979,-2552],[62484,6144],[18513,4500],[17780,-5701],[32639,-7203],[31552,-4350],[12908,-5253],[12286,-14704],[5314,-14639],[5625,-30815],[6980,-14244],[11447,-15605],[14006,-9753],[38965,3142],[34961,-11394],[29593,4201],[28377,-3751],[24602,-1050],[10473,-4051],[20461,-19957],[28984,-10803],[12911,4952],[14492,21156],[17438,8365],[10079,-7203],[43250,-12584],[7185,-3602],[21784,-44233],[5847,-6152],[7064,2401],[1218,11703],[8402,11852],[0,13806],[-23627,32399],[-10839,4352],[-10716,13353],[-16563,13655],[-22044,10353],[-43845,12754],[-21555,0],[-20827,7051],[2923,-9002],[-19972,-4352],[-18268,-299],[-1097,43362],[-10109,3001],[-10716,12453],[-5602,18746],[-14980,11254],[8647,10803],[-2193,13804],[9864,5102],[-852,16655],[16808,17404],[5114,12754],[-243,11854],[-14494,600],[-4261,5251],[6575,4801],[25333,-2699],[31909,22956],[2557,8703],[12422,16054],[-6942,11103],[33979,3902],[16929,11103],[24236,4952],[2801,6752],[11447,2100],[-974,6001],[11205,3752],[-1218,4800],[24600,-5700],[13398,-19206],[6575,-23707],[12180,-20856],[23627,-16805],[11570,-27909],[-731,-23556],[-5602,-18905],[-8770,-10945],[-4749,-15004],[7551,-12304],[25576,-15905],[11204,1351],[38112,15763],[29228,18232],[5016,6123],[3273,18550],[-9058,17273],[26177,14480],[-11105,9406],[10307,-3939],[4917,-18981],[8943,-12642],[2756,-11300],[23224,-40061],[15580,6451],[6578,15456],[-3045,14104],[15953,3151],[7186,11403],[-8037,31209],[-9865,22038],[-15353,26417],[2800,13354],[11692,15905],[8039,-5703],[3775,6002],[10116,-7652],[5723,2701],[4993,-8702],[1219,-20256],[23932,-56896],[5068,-6039],[39034,-24776],[14257,6733],[3706,15821],[-5458,12088],[11555,-919],[18724,5711],[6090,-3329],[24319,-2233],[6144,4079],[24502,292],[12605,5344],[14949,-7155],[12773,3424],[20909,-10345],[18352,1107],[9005,5065],[9834,-4229],[2017,5991],[12567,-3104],[15810,5842],[24456,18410],[28825,10221],[9128,10249],[19173,-3009],[3372,9893],[35936,9144],[25673,-3507],[104365,965],[26184,-4670],[17979,5242],[14371,1200],[44827,15305],[9620,5401],[10353,-10953],[7671,3151],[16198,21757],[49811,18756],[14494,-7352],[6941,7801],[15832,4201],[15834,9603],[27279,7053],[-3698,-5102],[15633,-7803],[21435,11705],[17539,2400],[11935,-3451],[10839,-14254],[8647,-42462],[20216,-10503],[5480,-12455],[-1339,-12744],[-24357,-27758],[-11449,-3300],[1828,17704],[-12302,6902],[-11325,-14554],[-28134,6451],[-3654,-6602],[12911,0],[-3654,-42612],[-5359,-3151],[-4629,-16355],[-14126,-15603],[-7674,8552],[1096,-16505],[-8767,12154],[-12423,-2102],[-9987,4653],[-1704,-14105],[-12423,-9902],[-11569,-2552],[-976,7952],[-9864,-9001],[-2193,-11105],[-6698,-8552],[-15466,-9452],[11577,-7802],[-7316,-4502],[-6575,7503],[-23870,-22057],[-4508,-14405],[9988,901],[-1949,10652],[8159,-5550],[-4383,11253],[12788,-1050],[973,10652],[19974,2702],[3897,-5852],[-14859,-11103],[-4756,-19395],[-17919,-15932],[7940,1416],[37631,-6602],[12302,12905],[15466,25356],[155646,101280],[23992,13655],[7184,449],[11206,10054],[127146,59117],[47496,17854],[18635,4952],[42138,14104],[17903,-5552],[43973,21306],[53222,13354],[43234,5552],[37876,-1499],[12423,-4653],[25696,-1050],[27160,-12753],[21312,-12003],[33004,-6453],[16564,-6002],[24403,-26192],[25659,-41187],[3767,-19346],[5489,-4491],[1211,-37371],[-5482,-15746],[-6811,-6846],[-983,-10108],[21510,-3180],[18072,-13175],[12543,-18305],[13031,-27009],[4506,-15003],[6700,-8553],[21555,-17097],[26184,-14253],[8039,-1500],[19380,25188],[11204,-751],[9263,4802],[488,12153],[-7939,14133],[9743,15427],[-365,-15137],[10488,-16064],[-2086,-16054],[-33857,-46654],[365,-10953],[8892,-18455],[18222,-21420],[7109,-20743],[-9864,-9753],[-5847,-13354],[-478,-23558],[-17074,-1630],[-16791,-10532],[-1211,9294],[5352,6611],[-6455,6461],[-37138,12445],[-19615,16814],[-21823,-6442],[-17781,5551],[-9378,6751],[-33834,-1040],[6934,-7530],[47025,-27899],[20925,-14676],[6348,-13815],[10824,-9002],[34458,-6902],[24959,-10044],[2809,-7801],[21466,-13374],[51858,-19346],[36735,-2898],[74114,-11966],[56266,12904],[5360,9753],[8768,-9452],[28499,14704],[2435,7502],[18580,3816],[33112,22638],[18839,14705],[3942,13120],[17188,3675],[42017,33911],[34343,37510],[4751,1951],[36049,42612],[-8526,3452],[488,-8253],[-15589,-19205],[-10230,-7952],[-39339,-43213],[-1947,9753],[-28378,-9753],[-10716,-10353],[-1827,3900],[-11326,-6001],[8889,-3601],[10596,8402],[2315,-4952],[-8160,-20256],[-9499,-8101],[-9743,3601],[-22068,-26727],[-42732,-28920],[-11029,22899],[8282,13646],[9987,8251],[17292,29259],[32274,58668],[3898,12303],[23757,40062],[6926,25507],[22790,38712],[21183,43953],[4977,17995],[7210,15315],[16921,19956],[7184,3001],[15590,-1050],[9743,18755],[18512,19955],[4384,23098],[8524,1800],[7064,10504],[-2192,13053],[-9241,10213],[8152,13794],[31421,30319],[11327,23247],[-366,19675],[10200,23745],[20849,41195],[28507,51324],[36780,-10933],[10130,11402],[1987,15165],[8191,7793],[-2665,9424],[-11501,9210],[-11571,15219],[16770,33423]],[[73539761,18442459],[-20742,-27580],[-35576,-34473],[-44454,-34463],[-20887,-13532],[-24158,-20510],[-41560,-28798],[-31574,-14087],[-30363,-9068],[-36689,-8973],[-33430,-47547],[-57379,-75321],[-30476,-42857],[-35501,-53508],[-32533,-46298],[-26595,-44461],[-508540,-915972],[-62675,-112869],[-303192,-677985]],[[66248746,16868394],[6204,135059],[2526,46184],[11137,228181],[6013,82541],[4400,81784],[9423,202776],[9803,230073],[3380,65982],[11669,245087],[-290,259117],[-981,136062],[197,47189],[-670,148966],[685,76277],[-3576,352314],[242121,244589],[34009,27853],[173541,174360],[394950,398038],[188725,190998]],[[90015007,67010785],[7757,-2307],[23489,-15530],[98,-4622],[-13753,-2842],[-7544,-20518],[20499,-610],[8098,-7380],[-5610,-9951],[18664,-4678],[3571,7163],[4521,-8871],[-5160,-8758],[5008,-7840],[10527,-1754],[11517,-17067],[19608,-4482],[14150,5354],[5655,-6171],[-6455,-13729],[6600,-8749],[8243,-26248],[11211,-2927],[4972,5046],[4514,-7314],[11363,-3507],[8190,-20828],[8731,-6200],[8937,3152],[9780,-7268],[-4422,9536],[5960,3499],[4667,-12670],[6104,-2222],[4468,10410],[10771,-2729],[4712,-19281],[9225,-5721],[15040,-1500],[-5366,-13973],[10572,2925],[8236,-13250],[-10275,-5861],[-4361,9491],[-9630,-5928],[5207,-11712],[13000,-15980],[-7991,-4426],[6653,-8563],[13395,-1706],[11661,-10212],[6898,-12266],[2321,-20773],[15338,-1452],[-5564,-7474],[18565,768],[8684,-3198],[-1103,-16907],[8486,-6397],[11014,723],[-3425,-10053],[9325,-18456],[-8137,-2729],[-6995,8768],[-3380,-8251],[8928,-3724],[4713,-9078],[-5809,-5194],[-14386,-2204],[7931,-16712],[146,-21596],[9224,-2993],[15438,7316],[1233,-13617],[5502,-11084],[2924,-19534],[-3928,-10673],[3525,-13869],[14872,-14489],[7597,4529],[16914,-10567],[17454,-21972],[26237,-16515],[10817,1190],[9712,-14750],[6804,2419],[3761,-14489],[23018,-5682],[3867,6236],[6348,-5627],[7597,8712],[-2178,7015],[-7695,-3507],[-738,8608],[11409,0],[8411,12031],[9264,-4659],[3752,-20886],[11570,8216],[18656,-4698],[16107,2129],[9842,-12277],[7322,4081],[12949,-6312],[-4104,-5279],[2657,-11676],[14774,2289],[-7306,-10569],[8418,-6471],[-7193,-18391],[12643,4455],[8463,7502],[15825,-3834],[6220,5664],[9203,-7390],[14727,4614],[9113,-5571],[-4872,-7371],[6013,-12087],[10717,-3902],[9942,-37529],[12680,843],[16441,-19130]],[[90775312,66275720],[-126987,-4323],[-157464,-3648],[-9536,2035],[-48693,477],[-55595,-1855],[-60734,-630],[-661156,-8270],[-61702,-1698],[-364334,104],[-106359,1631],[-119261,-787],[-13252,1874],[-61892,-2588],[-146031,808],[-72980,-705],[-67388,1295],[-288804,-694],[-31862,-291],[-330532,113],[-294696,-826],[-139409,-1322],[-8679,1566],[-62202,281]],[[80630055,57848808],[899,-17255],[4301,-17207],[6812,-13654],[15215,-20641],[1250,-12359],[-19099,-13307],[-16982,-26305],[-22386,-20182],[1736,-29099],[-8593,-9903],[-15894,6678],[-8144,-4623],[-8099,-16599],[-9128,-29549],[-13792,-9951],[9279,-16991],[14509,-12669],[3203,-22554],[25341,-5242],[24753,4764],[2497,-7756],[-9303,-13860],[335,-9172],[11107,-14310],[21829,-9434],[13853,-367],[22798,6641],[5260,-12416],[-7947,-9134],[-3814,-17546],[5412,-7559],[18337,-10147],[9599,-12491],[-10078,-27214],[-25698,1632],[-21161,10278],[-6546,22843],[-9315,4042],[-25987,-3544],[-9431,-14169],[-610,-17996],[-8729,-4267],[-16001,7333],[-10831,-9332],[-2200,-30120],[4665,-14227],[8344,-6724],[13153,-1069],[14324,-9105],[7895,-18146],[8585,-26829],[10154,-3771],[24030,12379],[21748,24419],[8654,704],[10687,-8018],[7977,-13739],[1835,-14272],[7444,-24973],[11584,-759],[3662,11412],[21146,18173],[753,10447],[-10611,9304],[-16304,7782],[7962,10597],[39931,995],[11882,3010],[26816,17770],[3760,10748],[-5298,13091],[7909,5579],[27654,-5589],[21700,2148],[20834,-21925],[3014,-10044],[-8412,-15632],[-1872,-17856],[10939,-13860],[25332,-5851],[8851,-12032],[2048,-10166],[-4612,-13954],[-21085,-32287],[-15489,-9435],[-7354,-18182],[8570,-12399],[25592,-20480],[23467,535],[15284,-2308],[6874,-8346],[-5785,-10671],[-11684,-11104],[-5634,-13119],[26352,-14123],[26215,-31360],[2786,-7276],[-16434,-54128],[13398,-7418],[10282,12735],[7263,-300],[-4127,-25293],[1355,-6188],[14912,-27224],[404,-12754],[9248,-30627],[-3768,-17116],[-7786,-955],[-12902,13990],[-14607,7494],[-6006,-4399],[1080,-17705],[-3372,-8365],[-12627,7465],[-6211,24936],[-13078,24850],[-11608,-1190],[-5799,-11217],[282,-12707],[-4576,-19204],[-9308,-14245],[997,-17640],[-6706,-4895],[-13078,10728],[-8479,-1069],[-15977,-53482],[-13244,-17648],[-12887,-39106],[-3670,-26266],[-9361,-28537],[1005,-27975],[-7787,-18510],[-2604,-16543],[2489,-14780],[25552,-44590],[19570,-10597],[13436,-3236],[10138,3067],[38539,32690],[31680,35712],[11151,17535],[7467,497],[8159,-9283],[4081,-12979],[10245,-17499],[-8587,-16956],[2048,-23462],[11783,-6030],[17126,3189],[2353,-6838],[-4134,-21812],[7849,-10878],[20779,-553],[8753,-8169],[16967,-8748],[9157,4875],[2627,14724],[9043,3761],[11355,-6255],[5954,5569],[1833,18297],[4408,6611],[-3867,8487],[-10115,5138],[-11000,12136],[-152,14423],[5244,5832],[12567,-2560],[6220,-21559],[8555,-5157],[28612,15904],[12134,4614],[18534,13851],[17256,7126],[20293,-3282],[32783,-47],[4043,-4200],[-2262,-17274],[3434,-9294],[11310,-13559],[-1530,-14912],[-10724,-2082],[-18573,10776],[-16677,2757],[-17546,-12725],[-9392,-18644],[-10208,-40259],[-6416,-19270],[-8579,-6799],[-8875,1331],[-15977,-6020],[-13702,-9369],[-10230,-13036],[-4360,-28339],[-6311,-17865],[-9774,-39967],[-4285,-10203],[-20529,-24824],[-7444,-23453],[10056,-25385],[9126,-9707],[14516,122],[16030,6536],[7382,-2268],[10681,-11583],[9452,-18596],[21793,-10193],[23132,-14263],[4438,-9546],[662,-25405],[-1606,-24664],[1569,-23135],[6179,-27391],[4506,-8469],[20279,-9097],[4018,-14113],[-22225,-24625],[-4917,-18212],[9522,-11769],[4506,-12830],[-3524,-20050],[152,-21203],[-5960,-33468],[0,-16702],[-10428,-29446],[-7438,-27739],[-8289,-15558],[-15992,-16983],[-13175,-24842],[-951,-18539],[8882,-9397],[13997,-22873],[7849,-4472],[11745,2916],[20368,31771],[19813,8871],[25097,-5945],[15437,65],[32912,12418],[8397,-4249],[9590,-17658],[1081,-13026],[-3387,-15351],[4132,-13805],[14059,-7540],[22159,301],[10687,-5336],[8402,-14030],[-1795,-10793],[3150,-21756],[6052,-5683],[26839,-5477],[50809,179],[23079,-4211],[6575,-4736],[8306,-23219],[9034,-15390],[15246,-2184],[6919,9508],[4583,29785],[11942,2485],[2550,-18091],[9005,-16878],[10854,-11966],[15567,-24580],[11691,-7389],[22629,10925],[1903,11130],[9722,1774],[9209,-11564],[20103,-11966],[11775,-2981],[21679,7379],[22135,-6480],[12612,1886],[22881,14423],[13290,1809],[32068,-5898],[9729,-8047],[1088,-7914],[-11334,-26267],[-10992,-10531],[-7938,899],[-18383,10336],[-1256,-10936],[10078,-8289],[9217,-15352],[511,-7998],[-8365,-16806],[-2521,-12772],[2742,-14732],[11334,-10672],[11798,9593],[5366,27973],[5640,9773],[14737,11815],[18047,-224],[13076,-16018],[11791,-2270],[12651,3751],[11447,8497],[27464,-12511],[30736,-431],[21009,-8336],[15901,-18812],[3698,-30075],[892,-30083],[5342,-12744],[6677,-3995],[21564,6499],[8205,-8413],[8441,-23247],[-4864,-10438],[-11721,-535],[-32373,23005],[-19327,-4520],[-29671,-21156],[-5823,-6612],[-4634,-16420],[-1995,-26784],[8585,-22112],[8618,-8477],[13328,-159],[6492,7173],[8777,26014],[723,21607],[27349,10989],[7140,-702],[4863,-8478],[2521,-36132],[5129,-25695],[9904,-18765],[4399,-24176],[-13359,-15820],[-608,-10250],[16676,-17705],[1135,-8749],[-4134,-17527],[3144,-8094],[-4012,-8533],[-19363,13681],[-12598,2074],[-18109,-3077],[-9902,-4810],[-6981,-16966],[-1209,-18445],[3235,-33019],[-15398,-29042],[1370,-14133],[13137,-18652],[7109,-20528],[-6910,-6808],[-9698,1453],[-18199,10681],[-7742,-1566],[-3737,-19562],[2276,-8393],[9369,-9499],[18070,-6716],[6996,-13362],[5792,-22441],[21579,-17011],[54173,-9388],[12895,-12529],[9948,-28255],[8617,-1940],[18573,24915],[9772,26653],[9630,14159],[8472,18860],[18123,12509],[17371,564],[15078,-4811],[22728,-12220],[77686,-4239],[16914,-6471],[14447,-11103],[7580,-12434],[23482,-24786],[21588,-27082],[9287,-3198],[13579,4145],[10611,-2805],[10588,-21624],[9065,-11779],[6408,-17198],[17394,-26961],[27547,-46290],[11882,-12688],[13555,-8103],[19769,1174],[19478,28199],[13298,7089],[34252,-3349],[7620,13026],[-1400,18090],[4794,17667],[13360,17621],[9591,35439],[798,22526],[3570,13279],[15459,26858],[9104,2615],[3242,-9930],[-9894,-26915],[7627,-14844],[49758,-16092],[8183,-5317],[532,-8094],[-18823,-46541],[-16268,-28893],[-35227,-37306],[-8440,-16626],[-4377,-26267],[3060,-31435],[-3197,-8646],[-23141,-19084],[-2725,-6779],[5953,-22469],[12437,-35430],[7916,-10502],[7484,-40859],[-723,-22947],[-19715,-28810],[-16875,-32868],[-4255,-12969],[-12407,-57392],[2177,-18653],[6173,-11376],[14112,-7155],[27494,-4164],[11950,-6292],[3295,-8242],[-6164,-27589],[45,-9781],[12718,-35664]],[[79230691,52292465],[-27287,49777],[-39155,74610],[-5938,8992],[-18412,40512],[-6470,18428],[-12408,26473],[-60178,106607],[-57864,98935],[-58520,103970],[-23930,40429],[-133350,245078],[-290068,527506],[-51046,92428],[-253828,461994],[-16722,27037],[-35098,63216],[-318140,575259],[-96395,174735],[-228955,413530],[-120294,215707],[-125633,224570]],[[49738220,53857376],[-113315,3817],[-226731,2730],[-33653,-497],[-434507,3629],[-72692,449],[-51912,7963],[-9295,30852],[2802,15577],[-2574,254408],[-1666,102039],[-655,5055],[-3349,506379],[-319,124500]],[[49428597,58568486],[162854,-225],[39414,394],[187125,-367],[25288,-835],[94871,38],[155852,-1510],[89596,404],[109123,-338],[126500,-1613],[97567,1239],[245455,-1660],[36924,-986],[69892,114],[378676,-2485],[198171,-797],[40464,-1324],[86189,0],[135976,-1246],[194623,-1220],[80875,751],[67037,-1792],[85259,853],[59433,1661],[129514,741],[160157,1679],[116636,2456],[46660,0],[111237,1464],[2117,-545]],[[32919442,37902694],[-147949,128869],[-90010,77835],[-177641,152464],[-227401,199380],[-284786,247639],[-263000,228806],[-20491,12708],[-15902,17817],[-85822,71590],[-134940,118582],[-126432,111661],[-299865,263205]],[[37124157,45162421],[3379,14940],[16297,10540],[11243,15013],[8952,-6891],[-1980,-18681],[4491,-6115],[8282,1416],[2139,12951],[-6020,20754],[12201,5270],[12399,-7512],[21450,-1200],[16959,-17341],[2831,-10015],[-1027,-19412],[3464,-15117],[7443,-10314],[14410,-39],[10351,12070],[13625,-4567],[15140,2625],[5602,13335],[28049,-365],[13093,2317],[18032,15445],[5230,19],[24883,-14573],[13997,-2599],[18748,-9292],[13290,1687],[18847,-4069],[5289,-10110],[11122,216],[7574,10241],[17498,-6124],[8580,7351],[28346,12352],[7962,6741],[6789,13739],[5937,-2137],[2893,-13364],[12803,-2832],[4208,-27918],[14417,-18559],[5343,-55],[23537,-15895],[6963,3009],[5383,11254],[11151,8243],[10534,1115],[18147,-9067],[8464,-7813],[17963,-9968],[4910,-25995],[7955,-21915],[9757,-14358],[22730,-8702],[18647,-1529],[21488,-7334],[41995,2645],[11166,15070],[6950,2484],[28118,-13324],[-5558,-12792],[9257,-18259],[670,-9442],[19616,-11667],[3478,-16852],[-1538,-14779],[20955,-18878],[19000,-6948],[10001,-13561],[21313,-12546],[21541,-4258],[13610,-23530],[-1401,-10286],[-12269,394],[-6014,-6921],[-18245,-8309],[-8647,-8084],[-480,-11422],[20788,-459],[-1074,-6078],[-27203,-14909],[-1562,-7259],[14051,-11160],[244,-13832],[-9439,-18952],[3670,-17237],[18542,-14666],[-115,-8778],[-13106,-31181],[-1843,-37117],[-4088,-1689],[-7725,-16626],[-20521,-12115],[-1043,-20219],[-6888,-19552],[14826,-15990],[4340,-16823],[10017,-7156],[16867,159],[8426,-13513],[9615,-33590],[661,-8928],[-9918,-7305],[5207,-12970],[8076,-1510],[8784,-21673],[11456,-9789],[5396,-17190],[-404,-27289],[7392,-5721],[9652,929],[7520,-21203],[-3396,-16448],[7453,-16093],[9599,-11365],[137,-21580],[-3259,-13954],[-11402,-2343],[-2391,-5842],[2194,-23764],[5556,-15492],[7177,-7530],[-8822,-13588],[-15550,-8740],[-19311,3262],[-10216,-27683],[-9445,-11909],[-2314,-10917],[-10178,-11009],[-4544,-24822],[-11608,-6903],[-12651,-12997],[-10945,-5232],[-3456,-6743],[5497,-15446],[-6357,-14498],[-14545,-7079],[-24342,-15661],[-5846,-16983],[4086,-9565],[-8198,-6434],[-8432,179],[-26261,-29391],[-28073,3686],[-14881,-7699],[-8243,-18755],[5137,-19562],[-6476,-11469],[129,-17566],[4072,-13362],[-1803,-14949],[4451,-25891],[17431,-20407],[2939,-8036],[-745,-28322],[11827,-24794],[-7847,-18783],[-6318,-6416],[-17316,-6329],[-14220,2006],[-8433,-7088],[1584,-14170],[-24860,-14443],[-15064,151],[-14477,3835],[-7491,-11618],[-4194,-18925],[-8647,-8731],[2771,-29389],[-2154,-10251],[5305,-17546],[-822,-17085],[8503,-9734],[-2170,-14180],[-8806,-4285],[9324,-29963],[16167,-23143],[9827,-5636],[-7688,-5983],[-10778,-22208],[-1348,-13194],[4385,-20574],[-8928,-8571],[-28370,-12557],[-16266,-4221],[-13405,-13934],[-4339,-16422],[-10785,-17864],[-3418,-20405],[-15002,-2017],[-26154,947],[-10930,10831],[-20765,5599],[-19623,21438],[-7787,13410],[-2939,16298],[-10953,22637],[-5564,874],[-9659,-12182],[-12262,6695],[-19745,27224],[-4514,14067],[-23634,8121],[-11677,-7878],[-14119,-2495],[-9501,-16485],[-16714,-14593],[1376,-9292],[9104,-17021],[-3722,-15867],[2216,-13447],[-9820,-10991],[7407,-8496],[16145,5570],[12011,-15004],[8950,-4755],[8762,-12435],[43363,-13832],[2795,-3518],[-6424,-30421],[-11776,-34782],[9332,-43896],[-2101,-8478],[-30583,-25968],[-16427,-16824],[-20277,-30439],[-11716,-10279],[-15595,-30148],[-18444,-12688],[-15665,-5683],[-15672,-28050],[-31,-12003],[-9774,-18043],[1143,-9884],[24586,-20003],[15184,-41074],[22791,-21756],[7938,-13654],[6774,-4239],[11760,-17472],[20759,264],[20246,-22272],[12849,-2251],[17012,8964],[11205,-2906],[14135,-12182],[13441,-4296],[36020,6294],[35394,-15051],[8662,-10635],[16594,-2682],[10961,-10748],[7064,-18370],[22569,-17311],[7907,-12388],[6068,-25086],[-7421,-38589],[-1113,-22367],[2329,-17677],[-5273,-7361],[-20454,-2110],[122,-11798],[9287,-20143],[14866,-14366],[7686,-3752],[10072,3029],[15831,-11280],[2323,-19338],[19782,-26557],[12278,-11751],[9613,-18775],[23223,-14432],[9234,2449],[24663,-14892],[21372,2044],[12850,-19402],[23930,-5169],[3434,2383],[26556,-8140],[7468,-4464],[13915,-15707],[1514,-6977],[12391,-12136],[22996,-15003],[3235,-11039],[-9651,-21793],[6758,-16158],[4110,-28883],[137,-34266],[-9780,-22780],[2481,-7989],[-13388,-10316],[-14973,-5213],[-23817,1416],[-15011,-5364],[-14035,-11161],[-24328,1380],[-27896,4473],[-20317,14413],[-25004,-2241],[-12376,10540],[-13581,3133],[-20490,12612],[-6158,12736],[-13091,9331],[-25965,3094],[-5960,-3301],[-22249,19],[-18922,-4549],[-16647,-10447],[-13002,-3075],[-6316,-8496],[-19882,-4173],[-34262,-34763],[-22530,3693],[-15413,-13165],[-6890,-13166],[-24951,-18531],[-12521,-1444],[-12194,-21100],[-27516,-5523],[-13169,-15652],[-6333,-13035],[-11622,-11535],[-14706,-5833],[-18970,-1490],[-5981,-10363],[-1226,-18353],[-7818,-7876],[-3083,-10569],[-10572,-7344],[-2382,-15811],[6561,-4688],[-3670,-17903],[-6301,-10540],[5138,-29474],[-1644,-7644],[-14189,-28179],[-2809,-23407],[-8441,-27082],[-838,-21757],[-7025,-14752],[-14197,-21241],[-12215,-8598],[-10072,2804],[-20101,-7935],[-16694,-21736],[-25285,-37249],[-146,-15389]],[[37200426,41739234],[-2168,-239217],[1240,-28031],[-442,-87775],[473,-70192],[-3677,-1101989],[-1194,-107722],[-1067,-650423],[-731,-217825],[32,-196202],[-2673,-37220],[-2526,-79523],[3713,-176218],[-91,-264320],[-486,-209491],[-1187,-180896],[-839,-35682],[-341,-188841],[-2649,-29529],[-487,-87036],[449,-46766],[-2338,-335040],[-2223,-377473]],[[37181214,36991823],[-25689,8760],[-13557,13710],[-38210,31078],[-20743,10906],[-24508,5402],[-43555,656],[-16237,-6311],[-8044,-11619],[2824,-30469],[-1425,-8561],[-10413,-22572],[-10580,-14705],[-16981,2100],[-29450,-3394],[-37032,788],[-42762,10615],[-22416,11667],[-20940,19065],[-13556,23041],[-7924,29258],[-2627,29315],[1889,14572],[8167,11779],[17781,12548],[6234,7557],[22729,18868],[11530,22001],[618,8159],[7177,469],[2763,8289],[-11538,12961],[-14158,10541],[-20933,11683],[-21138,24270],[-28681,14668],[-11364,2671],[-16815,-2259],[-23108,-12707],[-15529,-16730],[-5845,-25647],[2261,-14602],[13762,-35832],[14263,-15717],[11761,-20220],[10345,-32464],[1924,-12641],[-4528,-13523],[-14203,-15446],[-19037,-9500],[-9043,264],[-29130,10370],[-5542,5356],[-26184,14329],[-36201,25630],[-28332,34640],[-12293,17950],[-21572,21606],[-12483,18446],[1880,7118],[-6104,15735],[-14204,14995],[-22021,4801],[-18724,-2335],[-9096,-6966],[-25911,-33291],[-9956,-5731],[-25454,-28451],[-15763,-14911],[-28887,-19871],[-41673,-19685],[-19935,8131],[-16724,10288],[-14180,-20003],[-11669,-797],[-9142,5222],[-17325,18212],[-23216,12558],[-62302,7699],[-27554,-1567],[-49316,4061],[-12795,-1632],[-17142,-6471],[-9423,-6732],[-13375,-15681],[-8182,-17113],[-37913,-50687],[2678,-4736],[-6264,-13616],[-20286,-18709],[-20581,-12173],[-12971,-1473],[-17902,15437],[-10550,2419],[-6394,16345],[-2078,16600],[13389,21953],[-1957,27280],[-8632,35542],[-13701,23706],[-20255,10813],[-11844,1537],[-30728,-1978],[-15451,10203],[-12757,-7746],[-15803,-20481],[-44438,-31997],[-12506,3038],[-26496,16177],[-11820,11582],[-10041,16935],[1020,7213],[-6333,26406],[-9827,18635],[5695,31125],[-5465,15754],[-17066,22065],[-14751,4568],[-9021,-2785],[-8564,6742],[-6948,13148],[-28880,3132],[-20627,-6095],[-10938,2654],[-5998,-5675],[-9347,-29548],[-1256,-29099],[9399,-18371],[-19623,-70756],[-8692,-12219],[-14158,-10476],[-9910,-1649],[-18459,9912],[-14903,30394],[-8808,33308],[-17347,13664],[-11028,198],[-21168,-7465],[-27502,-25396],[-16366,-10821],[-24662,-8393],[-14797,-8159],[-21784,-18081],[-12064,-1135],[-17979,9332],[-8983,22234],[-6629,7616],[-20171,10671],[-10976,788],[-21930,-9743],[-24723,6142],[-18550,13579],[-20529,722],[-22379,-9696],[-8136,-9209],[-10367,-28030],[1971,-14001],[11175,-29990],[5525,-6960],[838,-18812],[-13390,-14207],[-7862,-4201],[-11836,4718],[-25271,-2055],[-17599,-20799],[-3182,-19225],[-18305,-6742],[-6220,1537],[-11570,13570],[-9408,4371],[-21998,-5571],[-26306,66],[-46492,4501],[-11182,-4511],[-17674,5345],[-10443,-5194],[-9142,3113],[-14074,15023],[-4940,21476],[-6028,12838],[-16755,9884],[-9789,-3123],[-14302,6124],[-2351,8683],[-12141,6687],[-36583,-15775],[-16099,-1433],[-17254,-16244],[-20530,-252],[-18785,7446],[-14821,10822],[-8798,1818],[-12325,-3891],[-29745,-3536],[-11745,-9105],[-15148,5280],[-10435,10737],[-14691,-993],[-4339,-9238],[-10055,-262],[-4842,5626],[-9080,29287],[1416,12060],[-5032,14882],[9378,10016],[-1217,5055],[-18536,17236],[-29350,-5581],[-30683,-28948],[-14257,-1622],[-24640,16363],[-30415,14761],[-30616,3010],[-21289,9904],[-23140,35119],[-10214,11890],[-9576,16778],[-12842,13785],[-8875,3667],[-8737,-3545],[-18291,4097],[-17356,9867],[-14507,14920],[-11288,37492],[-33994,40915],[-5329,21935],[-9293,6169],[-11533,938],[-26648,-4782],[-36879,-770],[-15474,3931],[-4880,7716],[-8654,37831],[8372,17387],[13710,37361],[-550,26154],[-19957,47169],[-8753,13177],[-31817,23894],[-18885,3489],[-10010,-6499],[-15915,-24213],[-6897,-25799],[-784,-32137],[-3813,-10335],[-9614,-10681],[-14782,-6517],[-16731,2466],[-9660,8533],[-13145,17444],[-17537,14440],[-3242,9013],[-15543,14244],[-22143,8310],[-21640,-235],[-20735,-6490],[-19638,-18145],[-13032,-7859],[-15649,-4726],[-17903,3957],[-28056,26699],[-11989,18417],[-3859,13477],[-6729,7811],[-13701,5862],[-11303,805],[-55095,-8373],[-21214,5850],[-5518,5965],[-3213,13597],[8312,49075],[7590,26107],[-15847,44808],[-12240,10492],[-19022,-4650],[-8647,-22488],[-8022,-14105],[-2185,-15200],[4605,-21514],[-5900,-16804],[-8501,-10662],[-24511,-3320],[-18710,4050],[-20086,892],[-15109,9247],[-5162,9208],[-1507,17930],[9096,40456],[7818,11553],[1233,16458],[-8845,16965],[-16068,13578],[-11517,3376],[-17027,-2568],[-19471,-14236],[-24441,-23061],[-17667,-9442],[-17720,-788],[-15765,2625],[-15985,16073],[-11471,30601],[-5608,19684],[-7970,10775],[-8419,3770],[-55634,16288],[-25698,25124],[-10130,12649],[-11807,4437],[-21716,-253],[-33430,-4062],[-5686,-2654],[-20993,189],[-8123,14920],[-11060,10259],[-8539,1773],[-32975,-6491],[-4163,-3450]],[[27424148,83557589],[-1156,25366],[-404,67979],[2382,259304],[-2442,67371],[449,53959],[-115,223810],[868,461431],[-113,190960],[1156,212142],[-890,164806],[890,211628],[-517,44506],[425,87259],[-242,299291],[882,44723],[-777,39039],[1455,46889],[-1507,46345],[358,55348],[75,309447],[-1065,213410],[1278,171791],[-7,103689],[-4749,141473],[6599,98804],[296,282242],[281,49148],[-1559,72810],[113,41815]],[[34076274,83558114],[8,-7549],[-174796,2635],[-112084,1322],[-160173,1181],[-274130,-3459],[-134020,-1341],[-415158,-3639],[-82908,-207],[-119725,-1660],[-65034,-347],[-174043,1726],[-174111,854],[-463325,3601],[-19981,-797],[-82793,1087],[-260132,2034]],[[90910816,65230907],[15,257203],[119498,70840],[107233,62709],[-2769,7250],[-9212,3909],[9265,11113],[-9728,9885],[-7840,2175],[524,-13597],[-11966,-1613],[-14302,11159],[-6287,-15821],[-5799,76],[-5176,16683],[-7742,-12023],[-8442,15239],[8685,16786],[-11767,8224],[-23413,-8815],[3714,-12762],[-2481,-7362],[-19502,9809],[-1750,8000],[14196,13700],[-458,13082],[-59850,7558],[-20521,-4575],[-1972,9592],[-8069,8976],[6707,28049],[-12194,7549],[-3975,23988],[3792,14985],[-175,28846],[10748,5552],[-4523,15333],[6882,7942],[-2338,9360],[-12672,16683],[-17554,6527],[-8394,-8338],[2778,-10268],[-10315,5720],[-8037,-6067],[-6616,7155],[-335,24635],[-3530,32026],[-5679,8289],[4050,8468],[-6341,17528],[-11083,-11141],[-891,13307],[11076,11796],[2816,9078],[-2794,14986],[5352,18550],[10709,19384]],[[90882364,66038229],[875,-151],[394053,3235]],[[95927422,66056159],[-524,-41507],[1454,-118440],[-137,-110086],[-663,-40427],[-388,-265793],[152,-75389],[-936,-30589],[1690,-8526],[-1499,-96712],[1035,-66010],[1400,-27129],[-601,-66526],[-2002,-30835],[1826,-21916],[-1735,-53611],[1880,-7896],[-1827,-62804],[860,-175430],[130,-236731],[-639,-227213]],[[87907469,40606121],[-8486,31903],[-22182,71439],[-54934,173319],[-84520,264004],[-49750,159486],[-25516,78182],[-3813,2730],[-35554,120945],[-70035,223041],[-71544,224914],[-36451,115751],[-12850,38955],[-51014,162337]],[[90677959,43633746],[118689,-402793],[27677,-94706],[170388,-579911],[26595,-92586],[89515,-304336],[61442,-207934],[23132,-81876],[69563,-240353],[71688,-245443],[95800,-331081],[32525,-110826],[2658,-11835],[26009,-83144],[5168,-14207],[110683,-377577],[38332,-134580],[32586,-108257],[312,-4201],[35432,-118815],[269752,-1144],[307280,-1191],[154205,834],[111710,4492],[309684,5579]],[[92889145,38002145],[-374886,-310],[-66259,4080],[-626744,-9772],[-300374,-3882],[-24517,844],[-193635,-3301],[-174309,-2205],[-173380,-3113],[-175656,-2390],[-119618,-1117],[-73827,-1528],[-198795,-3049],[-149540,-1640],[-190857,-3582],[-219461,-3292],[-110075,-975],[-123691,-2505],[-12734,517],[-137848,-1567],[-140626,-2147],[-59128,-459],[-235058,-4633],[-18962,413],[-30188,-2363],[-174270,-1369]],[[96931806,49898129],[53786,-308331],[10862,-67201],[174301,-987008],[18845,-117964],[15796,-82148],[2625,-19665],[69473,-395010],[-8374,-342719],[-4057,-175495],[-37,-16711],[-3623,-140442],[288,-8795],[-6454,-244507],[-5481,-161054],[-6530,-281125],[-3775,-151939],[-565,-52450],[-6188,-174782],[-1507,-97539],[-3410,-101081],[-296,-43072],[-3380,-63517],[-20665,-570138],[-20454,-393481],[-167,-24504],[-11266,-229286],[-10238,-219420],[-11158,-225329],[-7270,-172391],[-4886,-82618],[-10930,-219589],[-1440,-53980],[-3942,-60730],[-26550,-537860],[-16357,-347605],[-2170,-52994],[-13274,-257728],[-9195,-186309],[-7513,-142429],[-17667,-315149],[-2085,-18642],[-4042,-112290],[-2620,-48689],[-14781,-184441],[616,-25554],[-608,-70671]],[[95360150,41304304],[-7679,11280],[2533,14087],[20994,7913],[13314,1352],[3112,6038],[16320,8103],[6820,7642],[8526,20407],[3119,14038],[6563,6330],[9423,17443],[42579,22198],[15810,-4100],[10595,1679],[8717,17659],[-860,10063],[-22402,23096],[-15611,8365],[-14319,20801],[-3463,14648],[-8777,374],[7916,-13954],[-2800,-6639],[-14577,3836],[-5799,-2533],[-191,-15454],[-4734,-9781],[-13739,10888],[-27852,1340],[-6493,7297],[2474,9218],[8229,3583],[14788,-4343],[2535,4568],[-10496,15895],[5336,15098],[-7125,7887],[-4178,16598],[4894,21503],[-12704,7812],[-6987,17752],[-7041,7156],[-5222,13466],[-12156,14179],[-2627,-18006],[-14256,1388],[5799,14002],[-10390,9537],[3723,10493],[10010,-5176],[5732,7718],[-19623,13279],[175,9500],[8616,11852],[-5086,21167],[4850,6461],[17963,-15315],[9096,-11346],[12567,6451],[-1202,9294],[-11699,21091],[-9858,24748],[-130,22656],[-4482,57664],[6950,7998],[16852,9763],[3942,10728],[-448,14198],[22613,10315],[25105,4118],[13502,11206],[14684,309],[1613,12698],[-11463,103],[-10710,6781],[4035,13268],[13905,11075],[16008,-18445],[4925,-639],[1622,16337],[-3425,8544],[-10657,-6453],[-9514,3507],[609,14086],[9187,-892],[4840,-7923],[12058,8150],[10838,40735],[-10610,9135],[-17340,-1950],[-8860,4960],[-11395,17321],[1341,10174],[6987,958],[17705,-15370],[8868,-1510],[20940,11562],[4117,16843],[-9469,7557],[-19470,-8955],[-4453,3244],[-898,14443],[14325,16543],[5914,16092],[18489,16991],[2817,5665],[9096,39865],[-3684,23651],[12559,7418],[21289,-18568],[13999,778],[14279,10175],[8723,12801],[24357,13832],[5191,7146],[3548,32569],[-3555,19946],[-5807,14750],[-2481,28519],[-4613,10606],[-12415,-7418],[-1187,-7719],[18055,-17601],[-1256,-5852],[-12103,-4913],[-13587,9846],[-20811,4108],[-1164,8195],[9203,8684],[-6395,25273],[-20048,9782],[-10939,22637],[6387,22770],[-3053,5250],[-10435,-16626],[-5527,9527],[-22157,9228],[-4195,10767],[343,16702],[-11997,10287],[8053,14150],[-927,10063],[-13420,-1669],[-4095,12951],[6371,8842],[21601,-4088],[-8388,11187],[-7977,-1603],[-4316,8440],[9364,16243],[-1805,8683],[-10702,7193],[-1363,6864],[12370,7605],[-14699,23192],[671,10043],[6126,10091],[-2260,25564],[-5457,14132],[-4187,863],[-9491,-11657],[-16564,18099],[-6409,-122],[-8221,8562],[5679,5804],[11226,-12143],[5367,8130],[-6288,10203],[-67,9621],[12589,114],[13991,23425],[-7018,19833],[-42047,-2390],[-20065,33300],[-16730,4407],[-13230,-7962],[-6066,9565],[4148,15803],[-2809,22890],[7818,4559],[14295,-1867],[5244,3583],[-2649,33647],[-4468,5270],[-12431,-3527],[3335,-12716],[-6083,-5129],[-20057,14938],[648,11583],[16540,6760],[-1545,11516],[-18778,-244],[-6630,4258],[-1081,11516],[9995,1351],[11310,-5928],[3990,9435],[-12126,15098],[1690,14066],[12072,-4294],[27897,5270],[-2565,8853],[-6919,2101],[-19912,-3059],[-5329,6997],[6020,10090],[17600,6058],[4962,11769],[-6112,14826],[2070,21569],[-6157,9979],[-25545,5186],[-7947,11769],[5541,12443],[30356,9276],[2565,11336],[-10801,14311],[-5374,12585],[-244,11956],[14493,-2024],[18885,8018],[13587,19729],[26527,7100],[1674,6049],[-4445,18033],[3699,34079],[-6592,27476],[1461,34830],[3502,3901],[16267,-2852],[5677,3414],[-5494,22395],[26047,27870],[2800,15032],[19661,6789],[838,17640],[-13405,10814],[-2792,13897],[14416,4886],[13382,-22122],[4727,7905],[4460,18971],[7871,14461],[-1592,10250],[-10710,-2177],[-13845,-10530],[-6188,1903],[-11616,17547],[-20209,130],[-1012,12623],[18244,15445],[18147,-4774],[10665,4295],[-8229,25903],[4582,6919],[19942,-2624],[10452,4857],[1903,9491],[-4003,22336],[14727,17181],[2429,22732],[12392,18670],[1934,14340],[24494,25564],[6523,17592],[8707,1576],[10025,-12811],[13162,-1941],[12262,7539],[6081,11300],[-16478,3105],[-7895,5299],[-1788,15473],[10587,4820],[9774,9913],[-2290,24560],[3219,22160],[-1309,29746],[-4354,6227],[-22981,8702],[-6309,12135],[11799,24344],[-2817,22497],[7626,1417],[13732,-8525],[14014,11093],[1141,24298],[5823,10438],[18260,15239],[4804,21869],[6242,10138],[14857,7810],[3874,18166],[-20276,15285],[4208,13392],[11098,4154]],[[38224092,99988970],[429811,-102],[510131,496],[29161,-1078],[648824,-1153],[17081,403],[256340,-301],[14165,2252],[638374,-441],[294636,-66],[241566,-620],[386477,-64],[327739,589],[201254,-3759],[105331,1181]],[[42320721,95844418],[-146,-21532]],[[42320575,95822886],[-79535,403],[-139341,-544],[-83295,-1125],[-197463,225],[-122138,-430],[-128158,37],[-160342,-440],[-219461,-76],[-124255,975],[-259209,469],[-178816,-66],[-280491,442],[-281893,-376],[-503563,770],[-280096,-254],[-118713,1031],[-468464,-608],[-467833,778]],[[38227509,95824097],[-274,302225],[267,352089],[-1903,1076508],[463,94332],[-303,115111],[356,136128],[9,177718],[-1081,86846],[-243,119886],[539,46720],[442,294873],[-754,194916],[-935,1167521]],[[93554069,34408498],[-110226,-53528]],[[77097602,67005365],[-109335,2936],[-28133,8],[-117617,2805],[-256455,6564],[-92863,1885],[-81454,938],[-129117,2795],[-28772,0],[-124391,2652],[-122770,5853],[-115995,1557],[-95376,-320],[-127884,2710],[-53686,1791],[-67675,779],[-157464,3339],[-650082,10644],[-24927,900],[-105903,1359]],[[74607703,67054560],[-38,90562],[2878,176667],[1765,20894],[1165,113095],[920,3170],[3639,220649],[1942,55648],[921,123608],[2489,90458],[1926,100378],[2236,168650],[-266,46767],[4697,240380],[2756,96085],[2542,145111],[-654,67538],[1072,68880],[1971,65456],[716,64182],[9873,320466],[-1971,12640],[1499,93581],[2275,72040],[4294,189122],[5420,266899],[4993,222038],[-1545,1950],[2526,112468],[5390,181909],[2877,133698],[-1050,2336],[7863,352050]],[[87946183,30248632],[33224,-44479],[-13540,-93309],[-36256,-138031],[-4086,-10194],[-84574,-151845],[-8229,-10436],[-65430,-59117],[-81036,-52911],[-104272,-105892],[-131121,-163418],[-181250,-234706],[-197303,-211477],[-158324,-152979],[-110013,-97708],[-88326,-71730],[-107174,-67969],[-178473,-125849],[-131750,-120157],[-12339,-63188],[-3480,-10568],[-39755,-82113],[-50931,-72836],[-6333,-7127],[-57659,-50593],[-77655,-48784],[-97041,-48970],[-91120,-38505],[-95489,-32616],[-45009,-8365],[-74587,-21540],[-60925,-11019],[-86506,-5608],[-53305,2887],[-561877,-377781],[-13411,-4718]],[[84870828,27454981],[-34823,194419],[0,11686],[-29931,207032],[-22294,151066],[-1674,7127],[8008,18869],[16585,8224],[-3950,27673],[5426,19328],[-997,36151],[-7344,3610],[-28148,-7276],[-55598,-18915],[-34580,-10335],[-17393,-7173],[-58335,-38862],[-23437,7831],[-12026,9725],[-6715,955],[2946,11235],[-19973,6012],[-3714,-13795],[-8555,1828],[-9394,-11122],[-4764,159],[-2139,17734],[-12278,2531],[-30180,-19232],[-20066,-16693],[-11386,1979],[-21442,12359],[-10162,-1997],[-18793,3789],[-10284,-5917],[-24129,186],[-7969,-3667],[-10649,9482],[-18330,-7192],[-27212,15117],[-4552,8111],[-13625,4989],[-13648,23379],[-11812,12754],[-944,8074],[-14319,20133],[-2800,15079],[2223,18419],[6027,10804],[7628,35382],[4681,6038],[-1499,11095],[5549,23153],[-4286,23828],[-9371,5947],[-10214,15979],[396,21690],[-14607,8882],[-14958,413],[-16455,14648],[-13588,29895],[343,7794],[-24526,23501],[-4323,10530],[-10284,-299],[-13023,17011],[-17424,8215],[-4710,7249],[-25112,16457],[-18847,14488],[-3059,14583],[-30173,14713],[-4324,11198],[-12757,4811],[-15535,13964],[-17135,2110],[-10862,12584],[-12132,5815],[-18886,33974],[-10557,11235],[-10519,21392],[-11486,14628],[-26155,7887],[-19257,19741],[-11509,6827],[-21198,759],[-12095,17339],[-7681,32232],[-10878,9190],[-22773,-4314],[-8716,4446],[-28802,56031],[3204,24054],[-13297,32926],[-10238,15294],[-22394,17031],[-3685,15604],[2543,14227],[-4338,8487],[-860,22028],[4398,11169],[1622,16598],[6273,10485],[-274,11852],[6279,13533],[5686,20988],[9111,17930],[10954,12491],[2214,8795],[-27022,34005],[-8676,16298],[-7414,20697],[-9941,12922],[-3388,12886],[-11197,9198],[-5251,14245],[-7803,714],[-7139,8495],[-16601,2102],[-8321,9181],[-9986,-639],[-4971,5440],[-11234,-1651],[-7156,7146],[-17453,5823],[-15871,10232],[-7124,17302],[-12651,20752],[-18077,18513],[-5809,14122],[-9232,5318],[-12842,-264],[-11570,8919],[-15177,-13353],[-6180,-9642],[-8138,-23715],[-7801,-1858],[-18041,20473],[-24265,12987],[-7856,8666],[-6851,-3920],[-19463,6799],[-15460,1959],[-8707,5459],[183,14178],[-11281,17631],[-31978,-3404],[-16220,-5214],[-172208,-5214],[-67804,-2693],[-212695,-3900],[-854,3553],[-24357,20013],[-15886,26351],[-2709,24898],[10191,23192],[28750,18043],[-5945,12163],[-27218,18624],[-4278,18812],[7193,11956],[-3571,20621],[5763,3771],[5228,-9801],[10718,8038],[-2237,13410],[1956,13241],[-5619,3816],[-8897,-5204],[-8707,9547],[45,6545],[-14462,12219],[-9950,-1285],[-25559,3817],[-11608,22122],[9956,22114],[13328,12547],[2717,11497],[9949,6180],[5861,9847],[2193,14076],[7619,-572],[7992,-16140],[10847,-6601],[10238,5205],[-1615,8965],[-11850,12949],[-16374,4850],[-11089,-4792],[-13184,5213],[-16989,14901],[-7087,12997],[-8335,-3609],[-3670,-18090],[-15756,3300],[-11516,-6948],[-7140,5720],[-7285,17733],[-707,31651],[9287,4895],[4285,-5046],[-3242,-20472],[33079,6134],[2627,3555],[-6333,19177],[4528,9124],[-4521,17940],[9241,12060],[14850,516],[4955,6441],[-4285,5308],[-36124,15839],[-4188,12989],[6858,5982],[10565,-3723],[10329,11085],[2582,13091],[-8472,23511],[-13663,10063],[-10855,-3865],[-12711,2991],[-709,21757],[17051,10250],[8570,15005],[10140,10203],[-327,4997],[-12377,4597],[144,21240],[-11235,8243],[-12331,-2157],[-9948,8252],[11668,16646],[236,19740],[9957,7577],[17811,-1857],[8807,3705],[4240,8251],[9096,-1546],[6621,50490],[-1225,8815],[7521,13193],[14378,5384],[24030,-9209],[11562,2682],[11579,10128],[-915,9827],[6912,16580],[-914,11189],[6273,12519],[-12795,4097],[8875,8459],[11098,2420],[-3996,10109],[-26100,12847],[-10512,33516],[-9241,1857],[-10009,-14329],[-7621,-4126],[-52528,10793],[-13472,12014],[-12241,3817],[-7809,7782],[-22956,11197],[-10954,11855],[-15908,6038],[-13999,11958],[-11334,17630],[-1141,22066],[-12195,16907],[-4765,16758],[-25194,-5617],[-5953,7164],[2901,14846],[-7620,5982],[-9910,16852],[-137,28668],[-2574,7727],[-11341,10879],[-3097,8253],[-23771,7830],[-19722,-13298],[-19959,1903],[-27578,-5158],[-15534,9435],[-17720,1800],[-27441,-4022],[-5427,-4493],[-14957,-1031],[-4812,-6959],[-22773,27777],[281,6087],[-17910,14272],[-7483,-10521],[-8525,-770],[-15771,20970],[-3958,23556],[-18680,9585],[-4817,14329],[8242,2842],[137,6694],[-13913,12060],[-336,13354],[-4581,12005],[2283,13249],[-3951,4278],[-10579,-2429],[-9104,9695],[12285,13402],[8525,16449],[-1004,13456],[21967,26052],[-12309,13129],[6532,7117],[1370,18606],[4864,6957],[2565,17996],[-3723,6087],[1432,14995],[24242,53144],[-3098,12529],[1424,21700],[-4483,19131],[236,11337],[-7436,11909],[-5489,19685],[1043,19486],[-4574,4173],[-17058,-3816],[-6768,3348],[-1004,13298],[-9347,12219],[-23497,8026],[-579,18718],[-8298,10458],[-11257,23763],[427,9020],[12103,20060],[-10923,18240],[4809,9903],[-2480,18351],[6287,4642],[7011,-4895],[5624,4127],[-2634,26389],[-6865,11440],[4286,9697],[12535,1284],[-2055,15671],[18116,6039],[10771,10935],[10724,-7315],[13543,-768],[3713,7726],[-5670,9078],[-290,13860],[6097,12735],[-16653,6752],[25393,28537],[-147927,157087],[100003,106539],[-110522,115638],[-61762,66075],[-51204,52976]],[[58570566,66767264],[-376574,-2148],[-104663,1228],[-530987,1566],[-92551,469]],[[68476679,39674460],[34679,41965],[43271,55789],[42277,44731],[57255,65466],[8244,7127],[82374,90581],[34084,28011],[45283,50246],[185110,208392],[23779,24935],[63627,72884],[15665,16692],[300449,337141],[57767,62765],[28710,33713],[32062,35531],[40525,46833],[40312,43456],[8342,10364],[50976,56379],[74762,156739],[84185,180071],[19457,42473],[47025,78988],[9659,39968],[58839,124978],[147485,308978],[82991,174744],[125822,263327],[61312,127631],[23778,51269],[103688,217582],[38287,81370],[28933,55846],[29587,61162]],[[42678897,66892053],[113051,-2373],[178160,-35054],[77800,-11356],[201520,-562],[551098,-1351],[42884,-2129],[177057,-2915],[341546,-826],[511090,-1134],[105788,-1979],[373385,1360],[240319,-5036]],[[41644448,62742194],[555,302853],[716,562169],[-2519,9912],[2337,65165],[653,1106801],[1584,244495],[1644,362648],[-7,86116],[1430,266384],[350,191859],[-228,63318],[389,409527],[-137,355576],[2245,60881]],[[29521358,54527389],[-241240,646]],[[73936075,55063543],[220009,133641],[18420,11574],[183945,111144],[21831,16027],[100361,60701],[88121,53989],[80097,47929],[131409,79833],[75129,46072],[465609,283275],[46387,32277],[190750,117579]],[[78602449,51764845],[-313938,-190398],[-88007,-53818],[-293022,-177193],[-273687,-166145],[-409717,-248688],[0,-281],[-302971,-185652],[-172976,-97454],[-259438,-157893]],[[74607703,67054560],[-116565,2561],[-36301,-132],[-87658,1332],[-101517,393],[-160470,3274],[-78614,712],[-161178,3433],[-130656,2109],[-266829,2918],[-293562,0]],[[86280164,75397475],[31207,-21551],[17248,-4689],[24024,-2063],[30485,-9480],[21563,-3818],[17600,4071],[23465,-826],[11182,2260],[49842,20032],[12940,11121],[6478,16028],[-3547,48698],[5328,34828],[-1697,28602],[-19242,53755],[-8320,13709],[-18755,17368],[-8472,24841],[-1303,15202],[6874,17104],[22386,28546],[16609,11694],[26992,14114],[21023,3236],[26185,-1501],[13739,-8975],[10382,-16036],[12118,-39470],[380,-47518],[-3920,-27823],[-9195,-24269],[7026,-3038],[6463,-14696],[3447,-21071],[11334,-14132],[12134,-5618],[19067,14208],[38386,44450],[5526,10363],[3173,20762],[14310,29155],[9379,25836],[7011,28349],[7671,80283],[-1422,28968],[-5938,36375],[-8098,37248],[-5823,65898],[-3555,14480],[61,16955],[5434,22824],[5907,13055],[17994,26549],[14547,14956],[45456,31876],[19723,1810],[19013,8768],[8983,8383],[9399,33367],[10551,27271],[-913,18755],[5479,20771],[15864,3573],[4658,8243],[15544,4690],[34785,-1585],[27912,6039],[19380,-4783],[38051,-17875],[46537,-28741],[26512,-28753],[10939,-7062],[42267,-14525],[23391,-4896],[34329,-16429],[45572,-10203],[55863,-15680],[29305,-19535],[39641,-37153],[19175,-15268],[22226,-22216],[39839,-7221],[23384,-6404],[76276,-4512],[30120,11226],[40260,6826],[37083,-19157],[26763,-31585],[-1089,-38692],[-3044,-13307],[-45700,-49955],[-29771,-41338],[-15,-19702],[4591,-13045],[17781,-30393],[22286,-26229],[12894,-7090],[17858,-5195],[13305,-7822],[25278,-919],[26794,2232],[23771,9960],[11137,8712],[20856,25112],[14249,5928],[30500,4913],[14896,6500],[16808,3404],[45494,25273],[10536,13607],[21669,20621],[6966,21747],[16761,15980],[18618,-7417],[15658,-21148],[8889,-47938],[-7976,-21747],[-14555,-25039],[-14188,-16270],[-29039,-21082],[-16455,-14948],[-20066,-2794],[-14042,-7269],[8181,-4792],[-2108,-8298],[-26633,-10419],[-20118,-5411],[-19753,-19394],[-2854,-11234],[3974,-26436],[12795,-25967],[17826,-14788],[28279,-48897],[15641,-20236],[20271,-6911],[37996,-4118],[9515,34200],[8039,20417],[4080,42161],[3106,93385],[3516,45762],[7551,15681],[16121,11355],[4552,8271],[4583,48597],[3197,15464],[10670,7502],[23506,10784],[11577,-328],[12848,-7044],[21375,-25882],[1074,-18577],[-6981,-17845],[-9111,-11283],[-11776,-6564],[-26785,1398],[-23353,-6517],[-10930,-7474],[-9622,-20463],[-594,-12454],[5809,-20415],[20269,-31641],[8503,-21457],[14073,161],[-6721,23097],[-9734,21287],[-10764,15520],[18604,11029],[14888,2598],[52094,1866],[16587,-16365],[5799,-29736],[3875,-36161],[-2900,-55198],[5747,-25450],[16189,-19731],[11769,-23389],[8798,-10288],[19548,-16335],[3738,-12303],[-5686,-25462],[4681,-61920],[12780,-38347],[18701,-14301],[20149,-8487],[27874,-8485],[23232,-4736],[43941,-2795],[13086,1304],[27417,-7812],[9522,-56],[31238,-8769],[38159,-5476],[26876,2822],[35653,18897],[29998,20602],[10673,13758],[14948,-11329],[16777,-18765],[6812,-13475],[12180,-15276],[12201,-25123],[3828,-13477],[9554,-12079],[27980,-9695],[39520,3346],[12644,8976],[35196,53049],[6105,17593],[21290,17668],[15040,3676],[19356,-11347],[4377,-39547],[8214,-27016],[10952,-48005],[-113,-27749],[5907,-58086],[4848,-23650],[51190,-18915],[40935,-516],[38188,-21578],[19791,-14939],[6035,-7775],[2718,-17329],[-9948,-23802],[-21504,-21455],[-16737,-23117],[-10185,-18511],[-17645,-24739],[3305,-11928],[17696,-26079],[7072,-15061],[14889,-23069],[12734,-9275],[30325,-14882],[28027,355],[11478,4296],[42687,9284],[24471,3667],[21648,7510],[15764,2664],[-7436,35185],[8883,27778],[-5451,34809],[-7369,27553],[-13609,39696],[3799,20575],[11409,4819],[25263,-1593],[20209,-19291],[4485,-346],[24508,-31548],[20020,-37286],[8532,-24869],[-22,-16580],[-11829,-22806],[-14393,-38215],[-17210,4248],[-6487,-18456],[2094,-10691],[-16069,-45960],[-14295,-23931],[-2686,-23341],[-5221,-22358],[6295,-28724],[29899,-35212],[5030,-16703],[22471,-34706],[8502,-16495],[10968,-10250],[27144,506],[12315,-2316],[15765,-9304],[-3251,-14254],[3052,-22778],[22204,-22497],[23467,-17153],[22036,-5785],[27790,4426],[35912,1791],[9560,-35945],[13937,-18670],[18664,-19375],[15225,-9276],[15513,-15134],[6491,-10963],[13185,-4699],[7147,10831],[-8351,87899],[-37,12529],[11280,16429],[20317,-2458],[11059,-5044],[12901,-12003],[12995,-26286],[-1280,-20969],[-4863,-14732],[-12468,-15981],[-9842,-5672],[-32715,-29831],[-16434,-7869],[-7620,-22299],[319,-8468],[18375,-28660],[10108,-1584],[26093,-26248],[13572,-9181],[13626,-4679],[43028,-26005],[31460,-11581],[21283,-5196],[33827,-5337],[51303,-1330],[40615,3112],[61435,7438],[9279,2926],[-4088,-51559],[9354,-11752],[32944,-13193],[19022,10156],[2588,9555],[-2192,25845],[-19997,90890],[-13411,26576],[-46265,74750],[-236,17874],[10474,38628],[16929,26078],[15079,15380],[14531,6134],[20383,-2016],[16236,-11816],[16648,-35083],[3424,-39161],[-6803,-52243],[12011,-26577],[18945,6855],[4834,-13241],[-488,-27900],[-9308,-29484],[-21252,-24860],[-5900,-3189],[-304,-14853],[24084,-30169],[13990,-14328],[23657,-8037],[12522,-9321],[33757,-6678],[4423,835],[20064,17959],[17933,20836],[10778,6217],[20279,5374],[23817,11207],[64768,37192],[11219,10757],[12574,37286],[4378,42771],[11212,31818],[21875,27487],[16359,12360],[20467,2945],[25082,-8535],[17703,-2701],[22661,-13812],[4545,-12764],[10168,-3685],[6989,-27599],[-4613,-32681],[-8639,-14789],[-9667,-4698],[-15285,-13335],[-26969,-5186],[-24768,1369],[-12925,4455],[-38933,327],[-13283,-5982],[-9782,-9144],[-18983,-28029],[-30918,-29251],[-20424,-23575],[-4049,-7578],[46729,-51990],[23795,-11750],[47542,-15801],[33728,-1856],[21738,1472],[39849,-863],[47253,59418],[15277,10933],[7749,-7774],[6164,-25544],[84,-11114],[14501,-31911],[7437,-11882],[-19357,-18230],[-24145,-19393],[-33149,-31125],[5634,-16664],[8319,-9070],[34550,-14375],[28780,11197],[16236,19412],[4079,16974],[-2406,33524],[5611,20229],[18290,22000],[40747,4642],[11882,-5355],[13434,-13364],[7581,-18454],[389,-12042],[-6554,-26341],[-22089,-28602],[-18596,-14809],[-20286,-10717],[-27104,-8093],[-20294,-2852],[-20909,-8018],[-21754,-5467],[-5573,-19599],[1142,-16243],[13008,-19403],[44500,-17310]],[[90569925,70255974],[-19417,-17742],[-2749,-32008],[-19043,-16072],[-633,-23641],[-7481,-9659],[-21596,-7062],[-19097,9237],[-20149,-11581],[-5602,4510],[1872,12228],[11008,7099],[2701,8375],[-6637,10522],[-12452,7736],[-10383,1295],[-7063,-7080],[-2916,-12033],[-13282,11395],[-7064,-1941],[-9348,-12445],[-7268,4726],[-10589,-1706],[-10800,-7521],[0,-11169],[-13086,-5364],[-26785,12473],[-24914,-8375],[1035,13532],[14129,5149],[14531,-6444],[11425,9229],[-3319,9883],[-11836,4511],[-33644,-647],[-11829,12678],[2283,10523],[9971,9022],[5199,15885],[15362,637],[6027,15042],[-11211,10532],[2908,6011],[21190,5570],[3114,7306],[-5816,6873],[-10793,-1293],[-14547,18492],[5200,13091],[-11213,14387],[-4566,-3217],[3523,-12248],[-3531,-11375],[-8928,2588],[-7476,19975],[-12255,1500],[-17445,-7942],[-8092,15472],[15993,4276],[-6227,22564],[3113,13531],[6082,-5110],[31277,-1547],[8753,16955],[-5655,6471],[-9203,-2748],[-9667,-9923],[-5595,845],[-4353,11168],[9971,8150],[-2490,12895],[0,22552],[-12254,1502],[-3737,-19543],[-5405,-10307],[-18284,-10532],[-4360,7522],[7688,13963],[-5193,13541],[-11836,1070],[-20772,-3433],[-12050,-4932],[-7885,6659],[15993,35643],[6439,5159],[21815,-6442],[3533,5148],[-2284,12884],[4156,10523],[-4156,11168],[-8099,1716],[-12879,-7943],[1658,-15041],[-5404,-3648],[-14332,6658],[-7894,8815],[625,8150],[20779,12031],[420,22769],[-7895,13748],[-11218,-4951],[-20781,7961],[4362,11806],[-9554,20838],[-14964,-4736],[-21808,225],[0,7297],[-14340,3009],[-6850,-3432],[1247,-13748],[-3949,-4726]],[[84870828,27454981],[-28332,-12791],[-261934,-123946],[13434,0],[-379346,-237556],[-330167,-206751],[-267582,-169992],[-683929,-434480],[-210139,-123346],[-319822,-171857],[-421523,-226491],[-573429,-286630],[-378060,-188981],[0,12773],[-374832,-203422],[-202175,-110085],[-17378,-10],[-121735,-69526],[-127040,-71497],[-106464,-60487],[-144426,-83611],[-160578,-89652],[-130700,-75031],[-130412,-91507],[-140528,-102313],[-134127,-92830],[-221,-862],[-112356,-81727],[-60460,-44920],[-12293,-67266],[-23589,-60983],[-31696,-55957],[-35760,-49656],[-49642,-47489],[-30585,-26895],[-33255,-25254],[-57080,-37550],[-71231,-30806],[-67638,-14787],[-63505,-5392],[-5070,-19469],[-21130,-36002],[-34526,-45951],[-35335,-37454],[-34732,-35250],[-29397,-17996],[3936,-15774],[-7619,-52178],[-18572,-85769],[-22120,-54570],[-38433,-67960],[-50289,-67238],[-66026,-80001],[-55450,-60599],[-44454,-34341],[-62400,-42716],[-44970,-26323]],[[50603925,81805947],[10893,1454],[23193,-11339],[9325,281],[8403,6500],[36863,-1547],[25135,6516],[14538,-814],[22584,7258],[21618,-1398],[10009,6058],[19060,5101],[10108,18907],[31017,12443],[22774,21495],[4544,9443],[23764,19956],[10329,13485],[1524,20697],[4756,15079],[7475,9096],[14600,9687],[69555,5703],[30357,-10044],[25621,-4887],[23208,-7333],[29890,1304],[23353,-7417],[30981,-14603],[10733,-40313],[45898,-40119],[26328,-18775],[17690,-17236],[26292,-16392],[23178,-18989],[22020,-10879],[12582,-13111],[22349,-2568],[17103,-12295],[38203,-35326],[32913,-37107],[26785,-40099],[17866,-14733],[14873,-8805],[1591,-14123],[7696,-10598],[7414,207],[8738,-16383],[7612,-34004],[11728,-10757],[13406,-27757],[9886,-3976],[9874,-15567],[11157,-23802],[15194,-18060],[13831,-10138],[20322,-28292],[14738,-11488],[9499,-19590],[16525,-19412],[48379,-28724],[20728,-18944],[62964,-41271],[12026,-6978],[9272,-12087],[16623,-7512],[17895,-3647],[17691,-10307],[12011,-1295],[12423,4305],[7580,-2363],[18330,-24907],[13898,-28780],[6736,-22553],[-11158,-17612],[426,-17190],[-3372,-14178],[18741,-30066],[6736,-18905],[6950,-28780],[33894,-41019],[13261,-9237],[39991,-48548],[9476,-15465],[3579,-15895],[19363,-20621],[10947,-22985],[26510,-35448],[15994,-12885],[21259,-9668],[12834,2569],[7786,-6227],[9461,-26426],[8206,-30723],[5891,-6010],[13883,-2157],[29467,2353],[11781,-1500],[13884,-13109],[9265,-14611],[35340,-21700],[18726,-13757],[5884,-9884],[-3586,-19328],[-9263,-9022],[-8632,-14602],[3151,-12678],[31338,-24711],[26716,-11186],[25859,-37174],[21031,-17414],[26078,-4736],[15275,-11591],[10109,-16102],[24412,-207],[8837,-6227],[10739,-18248],[29877,-11798],[19988,-10089],[9043,862],[21464,-12012],[25249,-6434],[7361,-5589],[13053,-19750],[27136,-12023],[9682,-8148],[7155,-12463],[18726,-18250],[11577,-26847],[2740,-23201],[-5679,-16542],[1059,-7512],[16410,-33722],[20195,-11808],[3783,-10746],[12415,-9227],[9461,-14611],[20193,9],[21450,-7306],[21031,-19965],[14936,-19111],[7779,-21917],[6942,-4509],[29867,9],[29648,4079],[17873,7943],[14302,3010],[31961,-215],[39110,-12033],[13457,-7520],[15141,-19337],[16806,-9350],[24602,-9144],[27546,3648],[14295,6134],[9902,10410],[14927,2569],[19144,12238],[22926,23191],[11571,22759],[12413,2148],[14714,-8167],[13876,-1080],[23552,-15472],[33012,-6893],[22081,-10100],[9454,-9679],[837,-8373],[32152,-16992],[20172,-7306],[21235,1942],[14091,7904],[20498,4212],[533,2953],[21450,-318],[18291,2682],[10930,8598],[21868,3451],[10726,-2363],[44360,-18642],[11160,7051],[17027,15914],[205,15043],[8823,14826],[16394,19553],[25211,22319],[10330,4753],[15977,19770],[12817,35662],[-3364,18476],[624,29642],[-3158,16749],[5876,33301],[7992,19337],[-845,12238],[-5679,12246],[-212,16955],[9880,13541],[9248,25134],[7573,28357],[8412,15249],[21670,8167],[19349,4521],[35554,1284],[34725,-3863],[8205,-5795],[14098,-648],[47330,-25122],[26085,-6452],[15566,-9454],[28400,-2362],[15359,3647],[24617,1501],[13884,-4304],[15352,430],[31765,-9677],[28399,-3226],[46706,7070],[21038,8797],[15155,10738],[9675,1923],[25454,-4305],[24189,-12473],[26496,-26427],[11784,-4734],[22295,-872],[21137,3637],[10414,-4725],[14522,-13523],[5268,-11591],[17468,-16317],[3792,-11816],[12415,-13738],[11790,-21908],[24411,-16308],[46386,-11928],[9880,1126],[35867,-8188]],[[54580191,80261956],[-1599,-196425],[212,-272575],[-334,-164419],[114,-171454],[-251,-263786],[305,-145205],[-533,-92653],[-1279,-60805],[3814,-3114],[-2170,-94845],[-358,-105406],[69,-173893],[-245,-615611],[-204,-177905],[327,-198377],[769,-173555]],[[61422068,62624596],[2085,294461],[-1150,245492],[-965,76465],[1734,421145],[0,789308],[99,346001],[1286,39968],[1538,1087041],[-760,75715],[897,196341],[-341,44855],[449,501785]],[[63258209,26027884],[65994,60674],[63969,57533],[152683,138801],[53274,48895],[88952,79899],[57941,53171],[93615,84007],[442501,401471],[84574,76850],[112075,100848],[38234,34970],[146930,132479],[24943,20799],[87840,78896],[83013,73615],[11646,8955],[88494,88161],[105141,94434]],[[65768400,26755421],[-65195,-25639],[-99166,-39893],[-195849,-77132],[-283074,-112974],[158066,-328982],[27684,-56293],[39717,-83978],[72998,-151404],[37806,-79365],[35807,-73558],[185542,-387057],[123532,-254409],[52954,-110771],[15225,-33187],[170319,-366323],[138876,-297322],[161020,-338753],[9414,-20715],[118585,-248426],[144897,-306389],[140184,-293946],[73751,-158146],[132300,-281146],[15626,-31209],[7063,-6855],[13360,-32372],[2778,-2635],[100976,-218791],[64586,-135829],[95757,-199370],[-68066,-61583]],[[67195873,21940969],[-72866,-65645],[-42588,-36939],[-24069,-22234],[-17095,-12652],[-170388,-155117],[-98489,-89107],[-12644,-10316],[-159861,-143104],[-59386,-52121],[15117,646],[12285,-6169],[18640,261],[2772,-7248],[-4689,-9743],[2360,-33133],[-2216,-14479],[-7626,-22768],[3684,-21204],[16372,-2409],[540,-15221],[-11836,-7155],[-40403,-1220],[-31458,-18979],[4627,-11835],[-2276,-14255],[-11615,-24794],[4437,-36892],[8182,-14030],[16305,8871],[14287,-17498],[10893,-24617],[11311,-2756],[8121,-9716],[11898,-30243],[16052,-23135],[-14994,-12679],[-17104,14536],[-11114,-1726],[-425,-15276],[-7056,-21795],[2992,-10061],[10328,-10757],[-6752,-9078],[123,-8487],[10632,-23773],[15362,-7689],[18808,-31003],[12673,-3311],[19570,24093],[15345,-4886],[-6028,-11291],[4324,-9491],[8022,-4107],[32099,-1707],[3433,-8553],[-6409,-9621],[1370,-8130],[8373,-3094]],[[66697823,20816127],[-193902,-2054],[-317386,2110],[-174392,871],[-24495,-469],[-247982,845],[-386730,2260],[-183686,1923],[-431563,1678],[-463411,2015],[-258440,816]],[[38227509,95824097],[-105529,-207],[-397623,619],[-114183,-281],[-185932,563],[-228732,214],[-117061,-430],[-123707,93],[-271693,-937],[-524814,807],[-263266,-161],[-169172,461],[-283438,-835],[-74137,750],[-59099,-1200],[-148079,-2026],[-43326,19],[-69746,2381],[-597300,985],[-31102,1267],[-13091,-3911],[-121628,-572],[-24670,872],[-139577,66]],[[34124806,99996453],[281733,-18],[25759,3376],[343845,-1107],[490393,141],[91493,-2531],[55459,-311],[50603,2327],[201847,-919],[226609,919],[235051,-958],[161293,-3732],[302239,0],[3715,-2372],[29655,-2036],[57544,-214],[151810,1340],[132025,-46],[103945,833],[191496,-750],[50086,1117],[340945,-826],[2611,-1904],[342353,611],[215291,-122],[11486,-301]],[[30679071,79483237],[-1079,-589081],[-1067,-13879],[-22,-339971],[311,-818284],[853,-70239],[-1050,-1072674],[-442,-288263],[-860,-286424],[-37,-276438],[274,-124911],[-70,-225404],[534,-41375],[-108,-110770],[504,-316470]],[[27389310,74904871],[1385,104168],[1051,30908],[905,105228],[3319,232990],[6296,247499],[-411,44657],[5777,350623],[3981,207081],[966,78970],[883,3431],[3281,237558],[952,35175],[-312,64378],[860,44555],[-968,27157],[1478,21448],[-671,114137],[-1629,30065],[716,255656],[1293,152894],[-601,126271],[868,138500],[-2800,56108],[-229,34115],[106,288639],[358,44647],[-646,87091],[586,83997],[1757,96018],[-1795,125484],[-17,48736],[2033,47218],[-2048,253],[-197,167335],[981,202729],[-281,122812],[53,518513]],[[13148315,57798178],[487135,-365],[158576,1941],[97362,-665],[150119,655],[48143,-1566],[140193,-713],[60955,1483],[40122,-656],[94409,272],[144851,-1652],[219925,142],[449512,618],[23718,-450],[108384,262],[141479,-225],[253737,-2156],[322059,1340],[312219,-1285],[186586,-543],[325677,19],[623043,19],[92322,638],[4004,-752],[131364,-806],[452387,-778],[579870,487],[386737,273],[216820,-215],[551288,120]],[[62707842,30733424],[79474,-103475],[100323,-131447],[88866,-114072],[50597,-66815],[86057,-111717],[53762,-70850],[108719,-141079],[49102,-65268],[175163,-229155],[25918,-36930],[226159,-294236],[116917,-173741],[18374,-24307],[15985,-17660],[267568,-353165],[19387,-25976],[164390,-216701]],[[59712533,26352806],[53,1696]],[[56907090,6888125],[152228,122033],[92976,75096],[90520,72396],[188543,153645],[69647,56174],[30965,23715],[220032,176894],[49986,36423],[46432,38429],[93023,78136],[85517,62100],[45032,36788],[40068,37276],[82229,193399],[9005,24850],[174324,421548],[29229,66385],[138183,331664]],[[61342457,3942198],[-6318,2571],[-29169,-2373],[-37731,3835],[-21464,-3376],[-29109,-14591],[-40980,-25021],[-22144,-993],[-12497,-5205],[-4202,-6556],[-5503,-29671],[-4651,-10662],[-10117,-8740],[-8661,131],[-7148,7061],[-4186,15868],[-1219,29614],[-4597,21073],[-20400,45220],[-9651,1735],[-9834,-4174],[-13382,-14864],[-9073,-17564],[-34770,-33976],[-4742,-16804],[-4461,-66424],[-5282,-6124],[-15780,-6994],[-46804,-347],[-12886,-4437],[-33744,-17583],[-26946,-24232],[-18138,-9040],[-37236,-5654],[-40267,196],[-34375,11056],[-29061,17753],[-27364,29437],[-9195,15698],[-8236,21943],[-3395,16243],[-479,17837],[3958,22910],[7824,29361],[-243,19983],[-8471,29532],[-16230,25686],[-30043,17038],[-16129,4689],[-17758,1650],[-28049,-4191],[-27455,3179],[-30113,7295],[-41241,14875],[-36436,10689],[-37397,15811],[-19463,9744],[-7620,8319],[-5845,20658],[3165,13166],[15018,16064],[16221,7494],[26672,5194],[11691,-449],[37611,-14170],[18679,-2326],[15732,8000],[9257,18587],[342,7998],[-5639,26943],[-8632,22618],[-18984,17247],[-31786,11243],[-6928,75],[-21875,-18465],[-19601,-10718],[-10413,1125],[-15588,9903],[-5581,9228],[-7275,26399],[-15849,37454],[-16334,18830],[-27630,16092],[-34139,3171],[-19577,-7090],[-13222,-7830],[-26192,-24130],[-10055,-5214],[-20454,-1285],[-28520,5645],[-12575,4409],[-11920,9358],[-7620,12904],[-7900,23595],[-15643,16064],[-8037,21784],[1332,12575],[5624,13570],[7559,8356],[11479,2898],[17925,-5439],[50755,-43588],[24861,-2175],[14843,8655],[9392,11815],[5381,13562],[2794,26192],[-3738,20734],[-13738,21043],[-11189,7559],[-27023,4098],[-12117,9677],[-22683,40934],[-10125,42547],[-685,48362],[-12619,14967],[-20164,768],[-20901,-8778],[-40738,-31199],[-26939,-13552],[-21518,-6095],[-23452,-2128],[-22478,1340],[-20961,4736],[-24487,9332],[-43623,24401],[-22677,10381],[-5465,15248],[10200,25808],[2398,12219],[-2245,20845],[-22310,32579],[-13922,15980],[-10094,19094],[-14104,33318],[-7650,27731],[-3540,25197],[-601,30919],[-3120,19889],[-12689,22780],[-30964,43400],[-25895,20612],[-7659,-3216],[-23154,-20388],[-11661,-5580],[-16304,1585],[-11814,11769],[-11440,16852],[-17712,13805],[-31308,-1586],[-17447,-11338],[-28885,-40906],[-17180,-18041],[-27997,-20079],[-37867,-21137],[-19433,-1998],[-12088,1876],[-24562,16787],[-15924,28977],[-18216,11374],[-20254,7063],[-17949,2352],[-26458,-347],[-31870,-11975],[-31878,-22019],[-19616,-6048],[-18596,-2775],[-24273,-6846],[-94394,-40625],[-36528,-26923],[-12271,1172],[-10206,13448],[-17097,40831],[-760,18576],[10976,48792],[-10466,32279],[-5718,11243],[-16912,8451],[-54492,-3404],[-16883,4997],[-15895,8666],[-15321,11693],[-22372,31473],[-14295,11750],[-9195,21485],[-4299,17911],[2397,31921],[-3455,9781],[3569,33488],[-1065,7025],[-16001,21653],[-8913,984],[-16997,-10324],[-30942,-42210],[-17415,-35757],[-1309,-21587],[8556,-27393],[2869,-22131],[-2124,-28968],[-12012,-26653],[-22841,-15041],[-22737,-2269],[-34572,2963],[-17272,11721],[-28164,29776],[-5419,8562],[-18809,15388],[-1050,23294],[16890,35626],[5237,28866],[793,42977],[-3129,18962],[-8517,13308],[-21428,18202],[-34771,19364],[-33963,6639],[-28429,1052],[-31064,18333],[-17196,-1520],[-20779,-9958],[-33994,-45267],[-27289,-27196],[-25125,-5973],[-50192,7643],[-24419,-282],[-21472,9801],[-19950,-1791],[-21070,-8309],[-16159,-1669],[-13619,8260],[-11433,20266],[-7679,19159],[-5375,21578],[-16059,28911],[-20248,29128],[-11562,20556],[-20483,15802],[-17599,6357],[-38614,23971],[-38417,7332],[-15763,-4238],[-23079,-12707],[-25157,-18568],[-16054,-27140],[-24783,-21661],[-28796,-31417],[-57064,-36356],[-8130,-2485],[-24182,1444],[-20437,3422],[-36148,-6217],[-22654,-140],[-13769,2757],[-26115,-5515],[-12347,7258],[-11403,12577],[-12071,30965],[-2171,13598],[-18390,42817],[-18822,15925],[-22053,10831],[-9346,8206],[-27121,50826],[-35196,36705],[-11608,19261],[-22836,19545],[-16220,9208],[-20491,58593],[-1994,13803],[8479,13644],[41415,20069],[24480,24280],[12643,23818],[-1453,28716],[1582,20565],[11700,20921],[6516,39040],[-3852,29446],[875,11564],[8608,26801],[8366,16326],[29640,37352],[4681,9097],[12500,38224],[3485,37294],[-3334,14621],[-26815,35316],[-8823,25667],[-39285,94772],[-12468,22271],[-10762,32700],[-31033,35514],[-25607,33131],[-5883,16599],[-22257,31565],[-12788,24082],[-11097,16047],[-15399,11036],[-30850,35092],[-13099,22086],[-11077,10398],[-55451,7110],[-12642,11074],[-41690,3077],[-22364,7557],[-26451,12868],[-47969,18848],[-16753,11019],[-38607,19505],[-30082,8140],[-18481,21129],[-15679,34069],[-3723,14207],[-882,19338],[3463,34762],[13054,43880],[10732,18661],[-15,8844],[6835,22563],[-14927,114624],[-730,1800]],[[54513557,45703461],[-404,-331484],[-966,-471148],[-1082,-31058],[108,-85057],[-906,-249926],[-2513,-116997],[1896,-106100],[289,-79635],[-1424,-139016],[496,-42387],[-808,-49637],[565,-277479],[423957,-440],[56328,-1857],[46408,-141],[75083,947],[229127,1248],[182873,1538],[47886,-694],[160393,-563],[151839,1753]],[[55882702,43725328],[-143,-15239],[1780,-229398],[6059,-684669],[-258,-6423],[4666,-395385],[2610,-540900],[2626,-127124]],[[57506849,52738235],[-349,-204040],[-1097,-100585],[-258,-95719],[-944,-128317],[-2620,-674146],[-182,-87729],[-1156,-140302],[-2596,-545634],[1019,-8215],[-685,-250376],[-403,-59756],[274,-106502],[0,-747351],[-448,-54251],[-3456,-1672802]],[[57493948,47862510],[-208014,-29],[-43333,-1227],[-140735,1519],[-199062,891],[-133950,-553],[-461409,-207],[-16251,1332],[-497618,-2935],[-160195,-732],[-153316,1951],[-130145,159],[-10247,-3151],[-570361,-1228],[-262499,488]],[[43272742,41736720],[-86955,-1687],[-67204,1735],[-148316,2794],[-36331,-6995],[-507725,3337],[-407441,2992],[-316999,-46],[-28529,-423],[-203103,1061],[-373105,-291],[-24417,2015],[-234571,-197],[-716441,-336],[-5814,-1718],[-417192,1210],[-117229,-149],[-417069,544],[-361337,-151],[-24297,-271],[-362601,-395],[-261295,-224],[-116139,4238],[-109480,-5027],[-667839,638],[-60887,-140]],[[71309645,55406816],[-23543,15810],[-37907,19890],[-10017,8252],[-18421,6978],[-13290,12229],[-38743,26586],[-17849,10747],[-13526,1866],[-51145,27438],[-27279,20810],[-12613,25714],[-13754,20237],[-31841,52487],[-23764,29624],[-19478,29438],[-9529,28686],[-12293,65213],[250,12950],[12194,20322],[36963,15913],[17409,13955],[70195,52580],[25629,30095],[19471,27419],[31253,35720],[43600,59558],[17917,14292],[21603,10793],[3143,5600],[39125,28751],[14379,19075],[15292,25283],[8600,25320],[2148,25882],[-3564,26305],[-8570,29465],[-9279,16908],[-19264,17640],[-31368,11252],[-14021,1904],[-12354,7897],[-7932,-1032],[-22317,7446],[-47011,8533],[-21899,12088],[-20156,610],[-8402,-4079],[-33980,-3582],[-99545,-48868],[-24190,-8113],[-20142,5965],[-13548,10419],[-12932,20416],[-12248,24129],[-10809,13100],[-35577,35570],[-27920,19355],[-58816,44375],[-53868,34727],[-22949,12303],[-27563,8178],[-22454,-3311],[-67395,28780],[-37777,21101],[-7969,9678],[-6958,21549],[-5175,42050],[8761,28930],[19166,24082],[25196,6283],[24501,-2887],[41629,-1623],[27540,4549],[26999,11730],[22127,20359],[2915,12014],[-7193,9725],[-59303,33693],[-27845,20960],[-26861,17949],[-94621,52028],[-40791,30674],[-39992,24158],[-28576,750],[-43074,-19169],[-12711,3865],[-23338,14909],[-16586,23548],[-11136,22498],[-43531,71318],[-6753,7717],[-73543,16861],[-38858,29821],[-15018,15146],[-1507,9386],[6880,25603],[33750,24025],[18673,17498],[37121,44020],[86393,50696],[86920,53257],[42747,36506],[71412,79525],[39231,27336],[31118,35063],[21129,42481],[-714,21053],[-10992,29156],[-19394,27871],[-21770,1584],[-147386,6668],[-16092,10222],[-15672,23312],[-18101,34435],[-20027,24852],[-23315,25779],[-21396,16430],[-24638,37052],[-6997,28732],[-1764,31275],[411,82533],[-4118,33939],[-15841,40136],[-6469,5928],[-27410,94],[-28126,-19076],[-12612,-14543],[-11151,-37944],[-22128,-31603],[-17082,-29352],[-43644,-18164],[-51798,-7896],[-65545,-8290],[-90092,-6490],[-21694,8749],[-43432,35879],[-18801,25987],[-6569,38955],[198,67153],[5237,39107],[5989,59332],[-2572,32795],[-48898,157573],[5175,25865],[4080,9284],[33142,42772],[26893,47620],[44514,69808],[49293,57739],[6842,28113],[-1271,18184],[-10048,34576],[-8974,20790],[-20026,28049],[-23079,22441],[-43683,54523],[-17729,27419],[-17681,37558],[-14492,40644],[-41561,76326],[-6151,17432],[-3463,21194],[2565,36085],[6546,19056],[18011,15914],[17567,6031],[47795,22929],[67729,23350],[12863,7604],[35197,15991],[12308,14516],[16083,47086],[5588,8617],[28284,23529],[11533,18802],[21610,26089],[5905,24599],[-5624,21877],[-8022,16299],[-11494,13879],[-20880,14657],[-28330,7053],[-24884,3245],[-50298,-948]],[[42677924,70896250],[281847,-330],[10268,1483],[54729,1660],[177649,-685],[154123,318],[260680,2524],[304324,2288],[102104,1303],[130488,-103],[501042,1088],[218449,496],[121484,6068],[23459,432],[183717,496],[622259,281],[821672,-11205]],[[4936164,52047125],[-25688,22394],[-13526,14337],[-19921,12276],[-15247,3451],[-70545,6527],[-41073,2411],[-82959,6526],[-102873,10418],[-223063,19047],[-28870,7118],[-19525,7962],[-25210,20846],[-52239,60411],[-57546,64491],[-28063,34820],[-28856,27299],[-24617,15267],[-15658,5158],[-24609,1510],[-69563,9],[-39056,5805],[-19935,6874],[-70172,41252],[-51273,31799],[-48425,28349],[-17705,13749],[-18923,18268],[-59837,84005],[-22796,28350],[-16085,16767],[-24631,19965],[-35614,17826],[-106863,33301],[-2290,3733],[-41675,12706],[-32532,20576],[-24647,23435],[-16206,20667],[-58419,80771],[-10170,16675],[-6462,17461],[-32700,166088],[-11197,24374],[-6356,8309],[-68605,79532],[-15138,24570],[-19388,70314],[-38690,155708],[-5511,19008],[-7558,15700],[-12742,17133],[-43829,38289],[-41500,28912],[-25704,15876],[-131759,85478],[-7604,11329],[-49005,196726],[-8838,32906],[-31916,67042],[-28452,86304],[-8296,7474],[-23810,49871],[2070,34116],[-16859,50780],[-274,19768],[-4302,13205],[-34336,68700],[-38621,59380],[-7126,8674],[-29769,47696],[-11464,16242],[-43881,67652],[-30265,62333],[-6484,11075],[-36201,51324],[-41493,113847],[-51774,139316],[-6904,21512],[-12827,31068],[-16616,17631],[-50998,43409],[-21122,15568],[-67866,54663],[-16982,17433],[-12682,21343],[-30469,126272],[-11601,20978],[-11502,14395],[-51416,35822],[-25355,16450],[-27090,14947],[-50656,37418],[-17172,9406],[-34147,25807],[-30006,16823],[-16767,13495],[-23103,12792],[-34656,12529],[-51555,7061],[-33917,6649],[-20094,8299],[-13351,8328],[-78249,61011],[-27997,16486],[-10474,1351],[-17148,-3771],[-84309,-39029],[-18001,-16487],[-5648,-13269],[-10077,-38422],[-11495,-15828],[-8608,-5214],[-87040,-25170],[-23627,0],[-21337,10456],[-33347,29043],[-11790,17085],[-27478,15793],[-9911,14208],[-15916,10558],[-17780,21607],[-11479,6752],[-20811,618],[-9446,26549],[-7208,42256],[-10953,19844],[-9013,8224],[-17537,-320],[-29024,21336],[-20240,22450],[-12719,23051],[-24205,26407],[2847,32709],[8092,34951],[-793,8816],[-9332,12640],[-15002,9463],[-10946,-1106],[-9978,9049],[-6288,21879],[-11372,17892],[-4369,13213],[-18056,17903],[-28034,16082],[-15961,12566],[-22706,35908],[-31185,8449],[-54857,20678],[-34307,6565],[-3494,15295],[-23307,6535],[-34039,-30261],[-47955,1875],[-31216,32776],[-6051,15033],[-44992,61930],[-43951,26164],[-26504,-1858],[-41856,2983],[-18962,25339],[5025,29005],[6766,24401],[2299,23398],[11433,34612],[-754,45060],[-28186,17191],[-25514,3901],[-43312,-2270],[-51022,56098],[-4071,7446],[-28522,27908],[-11615,34098],[-6652,12368],[-58984,47987],[228,49392],[7749,27880],[15810,22384],[20263,38309],[7185,25789],[-11379,25394],[-24633,26006],[-32219,23283],[-36126,11910],[-18222,18052],[-2672,7391],[1278,28349],[21579,37257],[19647,24674],[51827,43991],[32884,10390],[25612,12753],[51890,50294],[19829,-4614],[13679,6583],[19044,18737],[-52370,22684],[-25802,21485],[-13816,5823],[-8100,-806],[-27843,-15379],[-8282,27748],[33516,32484],[11516,19234],[13009,39781],[-1934,42566],[-9804,43577],[41332,17378],[22651,15023],[7095,24850],[-411,41037],[-25362,161],[-38904,-29232],[-17544,15370],[-3130,27628],[9409,33572],[29267,22009],[8236,12886],[4764,20425],[-6271,43343],[-17294,12576],[-10237,0],[-25401,-21035],[-27243,5467],[-28666,27478],[-32921,24719],[-10221,33001],[23132,50340],[40425,38438],[57987,11141],[31353,35046],[7330,54016],[149350,2193],[256690,-66],[7078,329],[358902,29],[149297,2110],[477271,2241],[44132,713],[265025,1190],[129126,-2429],[12362,1398],[308373,1004],[165335,824],[3890,-863],[106823,-647],[367075,1904],[270682,2795],[67128,-1059],[185095,2907],[428585,4538],[0,-826],[325227,-572],[626263,-1058],[19244,533]],[[20288831,57794700],[491078,-11],[32038,713],[273855,3321],[266000,-900],[253221,-180],[432285,-262],[16396,-2006],[708408,318],[226701,122],[180870,395],[349197,328],[421439,422],[483543,-189],[467946,-111],[372647,328]],[[25256563,54524631],[-325410,142],[-39284,-1520],[-111443,-187],[-477454,731],[-303708,563],[-58984,1041],[-378722,1246],[-461773,1567]],[[46636765,75007792],[1789,-802436],[617,-46326],[1507,-376441],[380,-749441],[509,-180691],[762,-133014],[-380,-120176],[524,-62033],[-137,-98523],[793,-548974],[2101,-28790],[988,-958583]],[[59693678,20821566],[-90953,-4305],[-47124,-3395],[-195164,-10700],[-114382,-6715],[-98366,-2804],[-307392,-13607],[-324024,-14235],[-5192,-1417],[-57697,179],[-219127,-6423],[-39916,-1913],[-580546,-47695],[-194161,-15849],[-271975,-15745],[-420602,-23436],[-303685,-16889],[-107585,-6329],[-127877,-5777],[-2717,393],[-315218,-19073],[-58275,-3743],[-452806,-27524],[-45427,-1285],[-77381,-5485],[-11844,471298],[-9401,401226],[-1233,17059],[-11257,484529],[-1927,38626],[-190,55105],[-3966,165835]],[[31360466,79484578],[191489,845],[26595,1078],[66924,159],[65978,-1368],[66693,1472],[132513,-168],[73850,-1033],[59348,1117],[466165,-1238],[652182,-28],[146534,141],[89438,-329],[87946,1473],[86560,-489],[100468,836],[173638,-1361],[133472,-740],[1888,1079],[58672,-4342],[36018,3468],[39245,-1940],[135938,19],[20264,-845],[156435,3235],[244498,-122]],[[34708854,74904871],[-34139,-300],[-228769,75],[-39422,-488],[-268519,498],[-106701,-76],[-306433,516],[-222956,-188],[-46859,2954],[-181234,-469],[-133114,217],[-578264,225],[-325021,890],[-584802,-431],[-100597,-835],[-318209,826],[-557003,769]],[[42320575,95822886],[-912,-275939],[-230,-156693],[-585,-699843],[311,-175448],[-303,-146002],[-1180,-283358],[312,-103559],[99,-352482],[577,-669093],[-1217,-68532],[457,-339905],[524,-263957],[-387,-497705]],[[38232342,91779024],[1386,83554],[-1393,195020],[-510,196595],[366,161185],[-626,53210],[594,176339],[-60,305181],[-738,10305],[-411,512522],[-305,179640],[-488,1095293],[-189,32270],[-15,433908],[-983,90813],[450,42275],[-1120,57853],[-243,224662],[-548,194448]],[[44536412,31926058],[-7763,23434],[-15010,24993],[-18580,18951],[-17934,12838],[-32252,19675],[-19987,8327],[-43113,3612],[-10154,3066],[-3396,6499],[3593,19702],[14730,22759],[7688,18493],[-116,10325],[-13251,16580],[-14705,3807],[-13543,-3910],[-36232,-20377],[-18823,-2147],[-39642,2935],[-8380,-4539],[-13130,544],[-16114,5823],[-21762,11609],[-13801,11235],[-14865,23669],[-20507,20294],[-33735,27805],[-9072,-3544],[-17477,8195],[-12720,21945],[-10039,7577],[-43860,1153],[-19113,1866],[-44330,16251],[-21770,6388],[-20597,10267],[-15809,11958],[-5762,12500],[-10330,38476],[-2588,54505],[-6812,47779],[-6226,25038],[-26580,41384],[-4012,28471],[-4035,4934],[-32197,8598],[-29374,14873],[-13053,-11685],[-19274,5693],[-42291,22732],[-12826,8403],[-7634,14028],[-7399,22497],[-8090,6386],[-27967,1999],[-26618,12969],[-4955,11796],[-2459,19554],[-5191,15004],[-9248,10981],[-14036,8243],[-17180,5514],[-23421,-1894],[-13915,3686],[-15047,14583],[-30211,21446],[-33728,13955],[-13199,7529],[-4940,7663],[-3243,32784],[-5723,26651],[-5748,16139],[-16631,23745],[-27333,25591],[-13345,4362],[-59150,-3976],[-17446,-3498],[-26916,4013],[-15588,9500],[-29214,22946],[-11661,5336],[-6059,9173],[-2869,20303],[-60894,31949],[-17729,11254],[-61395,25075],[-32693,15079],[-55878,15755],[-7649,-3564],[-45846,33423],[-20178,28274],[-12713,27918],[7796,57091],[-9135,16533],[-17150,48437],[-26868,46663],[-11098,8524],[-17523,5045],[-49080,55198],[-10512,13561],[-25126,40362],[-11099,7258],[-15193,43193],[7292,37203],[-13846,17105],[-3105,28620],[-5845,27101],[-20757,69706],[-22790,17339],[-31566,27120],[-29815,31209],[-19296,26483],[-593,48559],[1454,15453],[-9935,2204],[-5571,39097],[-6439,29014],[-3227,33423],[-55826,22065],[-37412,16374],[-36414,13411],[-40768,24400],[-35083,24589],[-14371,2888],[-52611,2991],[-58991,4773],[-87955,-19609],[-39481,31819],[-25523,17528],[-26535,31415],[-20993,12651],[-19760,-10373],[-37060,-35372],[-24716,-5149],[-27304,2373],[-18732,8824],[-38661,26427],[-6575,15042],[-70082,102358],[-47420,100305],[-26535,34988],[-16442,99563],[-21700,2157],[-22615,6058],[-99486,45398],[-103977,7839],[-160157,11525],[-59798,23482],[-115007,-38945],[-34350,-3376],[-28431,54335],[-16807,35608],[-2572,64181],[5283,20556],[39633,96956],[37222,68589],[14165,24288],[41880,44469],[15162,10082],[-80911,330275],[-4850,36761],[14569,47132],[5686,9480],[17530,77610],[-23216,53369],[-27806,25396],[-62392,34960],[-22601,4605],[-20702,-4202],[-8983,-4896],[-38385,-46082],[-26444,-38766],[-8678,-15127],[-13206,-40194],[3160,-17893],[15086,-36590],[5008,-26053],[-1903,-11046],[-2427,-83144],[3028,-31114],[-2039,-22705],[-11958,-24118],[-8936,-9275],[-3920,-12652],[-10915,-14347],[-21039,-22056],[-42824,-98288],[-11624,347],[-27958,11291],[-71329,48267],[-3319,8129],[-12149,13336],[-30986,46073],[-5535,21006],[-456,34623],[-4612,61312],[-2268,17274],[-351,26445],[2482,32774],[3273,17688],[-2124,28292],[9058,44216],[44475,92287],[33766,88253],[10657,56999],[-10786,61246],[-8160,29934],[-7931,17404],[-25775,32700],[-26092,17950],[-28643,12866],[-147294,17217],[-30424,-976],[-47650,11827],[-31360,1518],[-11327,-4951],[-7429,-9574],[-38996,-90561],[-12862,-16280],[-11975,-1510],[-19782,8974],[-14508,24148],[-17759,133859],[-11828,37379],[-12277,14160],[-30281,52976],[-2725,20012],[-411,37003],[10094,85535],[-7544,57861],[-19888,22310],[-25469,15445],[-74207,39151],[-37801,32832],[-26647,26417],[-10763,28631],[1423,32682],[14317,61610],[175,31979],[-5617,32804],[-12102,23153],[-15506,15446],[-53488,21361],[-17971,10700],[-24380,19704],[-12545,15332],[-5396,12192],[-2679,19730],[1629,14705],[8631,20743],[24708,17359],[32403,16044],[24045,15071],[28705,23406],[8921,19619],[4095,23021],[-1728,21269],[-8099,19346],[-19661,20903],[-13305,5403],[-29808,-3967],[-22455,-11169],[-50763,-39902],[-50282,-42997],[-31521,-28152],[-19584,-21297],[-40708,-38618],[-14280,-9387],[-33819,-11234],[-27501,1979],[-20392,7182],[-10785,20134],[-6980,27628],[-5703,42480],[-8448,41235],[-11098,35514],[-5268,31584],[755,19336],[16578,75126],[1072,17292],[-7413,19880],[-15368,20051],[-19106,11056],[-19767,4079],[-26619,-3536],[-38712,-13053],[-51654,-22281],[-19707,-13438],[-27790,-37419],[-14782,-30101],[-20034,-28294],[-28597,-20322],[-72639,-54700],[-21572,-12060],[-13191,-3225],[-25256,-168],[-49095,6573],[-21740,788],[-21091,-6106],[-18726,-9527],[-21594,-16458],[-35076,-18747],[-27539,-8026],[-25894,6405],[-10367,10268],[-4211,11892],[-1833,43578],[7353,33918],[1263,27450],[1278,123721],[1615,17882],[7642,33610],[12925,35214],[1582,21335],[-8799,33806],[-43653,89061],[-15071,9930],[-6759,264],[-19889,-10804],[-7551,-10090],[-19365,-36818],[-11928,-13889],[-11981,-7605],[-86674,-32924],[-17530,-11104],[-41613,-78707],[-6873,-19806],[-1622,-16317],[10824,-29091],[920,-71486],[4310,-22862],[-10703,-18897],[-16579,-18614],[-13190,-2298],[-8274,5899],[-12331,-404],[-20894,4549],[-29739,9181],[-12896,-3545],[-55336,13701],[-23041,15192],[-36468,5364],[-22584,-2682],[-19022,-7982],[-12543,-8880],[-37138,-17846],[-16989,-4521],[-18498,-1086],[-22096,8299],[-16388,2654],[-21214,-5402],[-11274,-11563],[-20582,-38881],[-4186,-12275],[899,-19506],[-8792,-17216],[-11516,-13524],[-17385,-8656],[-18489,-4866],[-20599,-22225],[-12817,-2955],[-18033,3114],[-16319,11346],[-12773,12361],[-18130,30994],[-1880,24090],[-8161,20200],[-24387,10447],[-15407,11029],[-11928,29643],[-13244,4576],[-37237,-14977],[-13960,-2054],[-15321,-9892],[-14432,-16233],[-10170,-21570],[-631,-24250],[-8723,-8506],[-28987,-4379],[-10944,5496],[-23711,33730],[-8837,32355],[-12110,16466],[-21329,13729],[-29198,-19889],[-32213,-30553],[-22243,-5495],[-38164,-20866],[-8099,-10016],[-12910,-1415],[-14088,3544],[-10140,7099],[-8943,18015],[-9195,35241],[-25417,38252],[-7116,20660],[-7741,9377],[-21923,4774],[-17856,-3282],[-10452,-16365],[-14918,-13757],[-22431,-11911],[-16107,-2202],[-34634,12669],[-10092,9414],[-2285,18062],[-13754,26417],[-15581,7512],[-10656,76],[-11403,-8872],[-19897,-5551],[-37960,-2082],[-11159,15538],[-12612,9256],[-12079,3375],[-17760,13795]],[[87475868,63139923],[11358,6291],[10740,12473],[5100,-1631],[-7095,-16364],[17933,-13589],[19219,9313],[12156,-25415],[1935,-14807],[-2072,-15493],[27525,-38663],[-5907,-42201],[3181,-28274],[7278,-18754],[22149,-10710],[13330,-9435],[32966,9510],[38400,937],[26071,6444],[9142,-6621],[-3912,-21570],[7832,-14067],[6965,-21708],[5404,-4127],[13190,2411],[3891,16364],[17971,7155],[11310,19177],[1021,8018],[-8115,8328],[10824,16993],[14432,7970],[11274,320],[38378,-7109],[7764,141],[32402,12557],[2985,-4699],[-2482,-17996],[10581,-3011],[8221,7363],[380,7343],[-7224,9162],[-982,12847],[-9431,18287],[5854,5203],[11646,-8524],[6622,0],[9065,20659],[8580,2908],[11014,-4726],[12954,-56],[23194,-10353],[7452,12753],[11942,85],[-11060,-26361],[1721,-11375],[10063,-4052],[13266,8656],[9036,18426],[18070,2346],[1012,-28209],[-8556,-19300],[-26222,-43194],[-2526,-9002],[98,-27627],[6302,-7840],[23620,-3863],[28147,-18343],[3442,-19834],[6767,-1041],[18830,13194],[4287,9612],[-3518,8244],[7049,6677],[6821,-4624],[12658,-18474],[22120,-9181],[20018,4090],[15528,-930],[18976,6360],[10162,13260],[7611,3759],[11159,-2879],[5861,-14367],[8138,-4154],[18221,-347],[22089,9059],[2824,11253],[10055,4267],[5710,10720],[9773,-170],[4453,-8074],[-7527,-11599],[-13322,-5674],[10087,-10166],[12352,-22488],[-1628,-24044],[1980,-6855],[19105,-1725],[20520,7388],[50087,22592],[18717,6396],[13571,-386],[18459,8225],[4910,12389],[-23232,13156],[-6372,9012],[7461,21344],[3684,26801],[5525,9379],[12949,5645],[24326,-6518],[5549,-9369],[6045,-21689],[5990,-4014],[24540,1471],[3068,-4191],[-15468,-29596],[-380,-16327],[13115,-43494],[-327,-8262],[-14889,-50012],[-6577,-10747],[-17232,-19599],[-12248,-10597],[-1736,-8281],[12682,-12977],[24533,-17996],[24828,-12333],[19844,-5655],[22197,3152],[17697,26830],[12065,11591],[47482,9423],[5784,10476],[29070,33309],[16280,28377],[13756,43626],[15117,25170],[8311,2813]],[[88743032,62831685],[-113,-1520],[1606,-484247],[-983,-176471],[1287,-74187],[-91,-81605],[-1759,-55178],[-77,-112366],[1089,-123092],[-304,-98588],[1606,-58788],[1027,-84870],[-282,-78848],[1067,-130781],[7528,-160]],[[76716124,45561849],[-3213,24259],[-10580,29352],[-11980,14583],[-22791,17621],[-32319,19994],[-46112,20950],[-24951,14845],[-37823,28516],[-29397,11826],[-5258,5327],[-3882,16992],[19340,35299],[1691,12996],[-6645,24693],[-14790,19937],[-18550,11938],[-34824,6348],[-25004,928],[-68642,-8749],[-14379,1510],[-16914,8543],[-6280,11910]],[[61304740,43725732],[5922,-433064],[2513,-200976],[563,-19870],[2223,-176874],[2252,-140855],[2374,-189007],[1432,-67445],[5648,-967935],[3851,-145354],[983,-20257],[1263,-122472],[61,-358156],[-221,-122623],[-144,-419739]],[[55882702,43725328],[44072,516],[118758,-2006],[5847,-1445],[99523,179],[139355,-2514],[104738,-3967],[524882,-544],[43296,414],[279663,-255],[181037,-1780],[436982,-2889],[333296,-2175],[34847,2954],[239899,853]],[[58468897,43712669],[223222,882],[123256,1791],[330288,4181],[7688,-402],[139753,1041],[120393,-1322],[63666,-57],[123065,1087],[223900,-384],[40776,-338],[232448,-3817],[4559,816],[310940,1811],[191366,385],[443162,1968],[17592,-327],[55786,2287],[118424,1783],[65559,1678]],[[27257543,66787697],[602,49994],[-761,37502],[738,45012],[-442,252065],[3722,211788],[-692,16608],[3174,133436],[-1187,28],[1659,91845],[1127,10],[-207,49616],[1250,67193],[1819,49430],[577,88310],[1408,50320],[1051,98233],[3472,172166],[-168,18606],[2725,124610],[11455,657832],[3304,222739],[5145,313142],[3586,170141],[1279,105190],[1209,30525],[2795,176207],[2626,142177],[3310,98598],[2550,184638],[-921,12735],[1721,55168],[1841,160886],[46,51193],[2391,88085]],[[68738476,59702659],[-31033,4847],[-52056,-964],[-15544,9208],[-21861,22750],[-115790,-77245],[-28109,-19411],[-59219,-34801],[-66619,-42837],[-106968,-67164],[-114815,-74796],[-23254,-14555],[-6797,-9077],[-14477,-5825],[-70448,-43540],[-40539,-26840],[-37457,-22075],[-80823,-49767],[-65461,-41272],[-3028,1051],[-43890,-27553],[1561,-2701],[-93815,-59689],[-12628,-4753],[-135329,-84935],[-11234,-9069],[-90056,-54532],[-93463,-58882],[-228125,-145092],[-147423,-93272],[-92781,-57401]],[[71225367,13507897],[-62645,-255647],[-31123,-156308],[-30547,-156852],[-16533,-104853],[-19197,-90392],[-836,-49393],[-18801,-106437],[-12300,-91931],[-6881,-88742],[-8161,-113283],[-7886,-65793],[-1788,-33038],[-6683,-75219],[-4331,-39941],[-11959,-143517],[-15451,-288038],[-9865,-264095],[3441,-141727],[-3967,-241730],[15765,-93083],[3219,-148600],[27303,-379246],[9044,-138358],[15763,-151574],[23117,-144829],[15345,-114831],[13990,-94744],[11586,-87691],[22379,-163369],[16006,-130811],[28880,-149724],[32387,-144343],[36309,-185811],[37138,-187723],[25317,-100304],[5092,-22414],[205707,-829658],[24616,-68776],[16830,-52854],[20582,-61020],[22866,-59747],[18548,-54418],[14578,-45707],[78088,-221260],[4317,-14253]],[[41644380,62708517],[-127741,-131],[-218563,-1040],[-219035,-66],[-11868,1106],[-403308,1238],[-166446,778],[-251012,610],[-127434,545],[-3281,853],[-340245,1594],[-21724,507],[-345405,1247],[-213267,1002],[-30849,-872],[-488285,423],[-423799,469],[-59646,525],[-404464,1679],[-57347,-56]],[[61524956,50578118],[-959,-36722],[-3076,-37183],[-3091,-17396],[-15633,-53200],[-12704,-30768],[-8472,-45343],[-8633,-35521],[4879,-46581],[38357,-25394],[5525,-11470],[14485,-5447],[28111,-14358],[9925,-2542],[29763,2776],[34473,11178],[24030,9810],[17674,-301],[15102,-11965],[15612,-17921],[3038,-16861],[14378,-14611],[5595,-11057],[-9332,-17629],[-12439,-11384],[-36124,-26014],[-10916,-13561],[-1735,-21326],[6150,-15473],[13754,-9695],[75752,-5384],[12172,-3508],[17614,-10380],[53593,-64041],[7552,-5345],[16061,-3863],[18404,122],[29846,6770],[38804,17536],[14912,-4774],[3403,-8298],[2389,-22414],[-3333,-8120],[-24670,-39162],[-21396,-25723],[-9743,-6087],[-27746,-5250],[-47550,5917],[-29100,8834],[-10595,-1979],[-14775,-13794],[-4323,-8994],[-654,-20078],[6842,-53510],[7285,-17460],[3867,-30854],[-3365,-20442],[-9423,-14836],[-21793,-17808],[-58054,-30873],[-21960,-9059],[-30471,-4707],[-11888,-9153],[-6266,-35860],[2673,-15896],[25195,-37547],[17072,-12455],[34140,-43221],[8099,-29915],[45175,-71656],[2094,-7005],[9894,-68758],[11882,-28039],[14227,-19553],[9956,-6912],[9453,704],[37511,32793],[9819,14105],[29061,77301],[7917,32269],[4270,6780],[28034,12116],[13694,2682],[11714,10062],[18983,45285],[9075,29747],[14622,13045],[27760,5625],[14727,-3151],[25295,-33619],[8267,-5916],[13617,-1633],[12430,10606],[13016,22114],[15764,13878],[9355,347],[10983,-10746],[27257,-56407],[28065,-39293],[8190,-6368],[14356,-4230],[11288,694],[13732,7091],[26587,27467],[11699,9161],[14776,5328],[13182,-1164],[11495,-9480],[2564,-25827],[-3576,-11216],[-10238,-9556],[-33341,-44657],[-26465,-21212],[-32069,-21259],[-10001,-13550],[191,-14986],[8539,-12483],[8404,-5589],[63771,-19346],[17797,-13157],[7010,-18156],[5039,-33141],[-898,-29352],[-11517,-17779],[-20385,-11282],[-19127,-5149],[-62873,6987],[-15239,-7314],[-11670,-32683],[-16312,-21230],[-12650,-5739],[-27631,-5853],[-6674,-4969],[-12103,-19262],[2687,-31978],[5770,-23060],[7977,-13166],[13532,-9932],[13832,-19646],[20368,-23398],[15948,-12538],[42586,-24475],[27662,-18072],[37167,-14141],[34475,-10794],[37700,-17706],[29390,-25515],[10168,-13337],[13923,-37211],[21624,-35831],[5754,-14489]],[[62415201,47679054],[-17469,1096],[-78156,-141],[-267166,2130],[-52391,1696],[-115644,-993],[-9524,1866],[-52597,740],[-6667,-1744],[-41348,-1735],[-30986,1164],[-20057,-1613],[-62577,1837],[-95877,939],[-255518,281],[-97263,-1717],[-156247,-618],[-11257,1060],[-446055,-4624],[-476045,-4951],[-25158,-4952],[-317881,2392],[-49553,130],[-381135,2955],[-164817,1593],[-39032,-3310],[-304043,2702],[-367914,3329],[-6820,-178]],[[58466004,47678388],[-100384,740],[-171454,1942],[-182696,759],[-117213,1079],[-401177,1106],[868,178496]],[[67494147,26547121],[1478,-3545],[33956,12839],[3790,-10944],[10450,4436],[7308,-14451],[753,-15529],[8214,-4952],[15574,4070],[8973,-2119],[6736,-12023],[1706,-16871],[24586,-16682],[-9074,-12380],[7164,-6554],[20034,299],[10679,-18624],[23733,-8786],[7809,-13223],[-37,-15567],[6120,-619],[4270,-13064],[4254,-27035],[-10077,-32128],[3127,-14611],[10771,-7070],[2939,-13729],[7307,-11141],[14606,-9266],[15956,-15783],[14713,3517],[17522,-11853],[7741,-15268],[10969,-13306],[7261,112],[7841,-21512],[10229,-807],[26474,-13672],[7369,289],[7360,-20658],[-8038,-5946],[6150,-9340],[-4026,-13925],[7306,-7324],[12156,2325],[663,-9396],[7268,-10054],[-2557,-25948],[853,-12537],[-4551,-13833],[768,-11966],[-4179,-13777],[5510,-19607],[13344,-17171],[1949,-11610],[14333,-26981],[8974,-5100],[23064,-26924],[6751,-39002],[-14089,-10944],[5839,-11712],[9819,-4634],[5076,-12847],[19555,-13925],[4270,-8826],[-662,-12435],[14850,-11394],[7453,-12378],[-1180,-15632],[-6120,-7999],[12003,-14396],[-661,-20940],[6744,-19505],[-8070,-5055],[290,-11403],[20164,-13879],[12475,-253],[570,-13570],[-6590,-11966],[-899,-28115],[6409,-7278],[10292,3976],[6972,8413],[4034,-3404],[-2276,-16618],[11097,-10474],[7118,-30695],[-9957,-9649],[-761,-9031],[23292,1041],[1995,-7324],[-13237,-23528],[8113,-19713],[15278,-8917],[10055,-26005],[1423,-10522],[-17073,-3207],[7924,-18774],[9012,-7916],[2747,-23452],[11388,-31989],[12277,-3348],[13900,5364],[13038,-9340],[43296,-9856],[8959,-7014],[1187,-19497],[12949,-7483],[20155,-160],[6774,-11300],[19068,723],[41255,4895],[13984,-2475],[9102,-10063],[3792,-22703],[-2466,-11038],[44521,-27253],[25415,-5683],[11144,2120],[19342,9846],[9810,-12021],[-1233,-18933],[14410,-15794],[17446,-4548],[18298,-17751],[13321,-4493],[20010,6180],[10436,10879],[-8578,10325],[3175,5824],[17544,516],[10146,-8675],[8251,4380],[5549,10267],[23711,-1818],[28126,21136],[21146,1689],[6645,9649],[25507,-2373],[-3776,13430],[10817,-815],[8114,-12427],[10670,-8251],[7064,1086],[9096,8975],[10581,-14947],[28026,-14798],[16746,-17069],[13510,2383],[3320,12332],[-1767,12996],[7491,4802],[11858,-3244],[997,-9340],[7453,-10673],[24936,-7473],[14988,1912],[21663,10532],[12323,3095],[32769,-10982],[8912,-356],[20720,5993],[4505,-1295],[16260,-17226],[12849,-2786],[34374,4088],[6638,-1191],[26222,-15416],[15787,-12847],[17780,-25181],[1903,-13559],[26215,-3048],[18916,12481],[10952,-8195],[5025,-13214],[6537,-3610],[11952,2945],[7680,-53042],[5305,-16972],[1043,-16036],[4171,-8365],[16541,-10523],[2465,-18473],[-4239,-14443],[608,-16870],[11944,-24297],[-564,-5984],[-16312,-19655],[-1134,-14292],[7147,-22339],[-425,-13615],[-8534,-18465],[8815,-7952],[12278,-20529],[4872,-46953],[-11753,-23164],[3310,-12378],[9295,-8928],[1561,-34154],[-2284,-8768],[-16488,-18521],[-5502,-13148],[-329,-11609],[4826,-19300],[2322,-22647],[-1757,-29765],[2800,-14760],[9469,-23989],[7118,-6612],[15009,7380],[10428,826],[11084,-9958],[14590,-3049],[15682,-25516],[5823,-4867],[26580,-5017],[22735,18295],[11661,-2879],[14547,-14039],[20651,873],[28057,8966],[19180,-2064],[16297,-6714],[3837,-6809],[-1948,-15069],[-18763,-12266],[-6205,-19085],[20401,-29109],[6903,-38692],[10893,-11929],[19090,-3356],[20224,6649],[24540,-3836],[17150,4895],[22225,17687],[10337,23565],[14402,6696],[17506,-2813],[8085,8468],[4940,-1500],[33020,5438],[14355,-3609],[17820,-12219],[32448,-7099],[27593,-16505],[8258,-6959],[15993,-24401],[-1233,-2626],[19143,-24344],[46,-4229],[13602,-14443],[18474,-5672],[12080,-6649],[7870,-17021],[663,-11037],[-8428,-24196],[2231,-7896],[13686,-10577],[19570,-7418],[4879,-11095],[5114,-27954],[199,-12435],[22074,-24813],[15672,-10673],[19327,-1284],[19462,4847],[14966,15174],[13511,-2663],[14287,-21795],[3600,-22122],[6393,-12022],[12651,-5364],[7574,3245],[2984,17799],[9378,34258],[14431,7313],[16350,423],[32488,11563],[26952,22487],[21404,-1443],[10795,-11197],[19698,-38338],[15155,-19196],[13305,-12790],[11410,1753],[13459,14752],[28369,8712],[25239,10774],[15292,-13983],[15201,-6095],[43905,-1715],[16898,-12435],[2747,-12491],[-17811,-19131],[-8959,-28883],[-2421,-21044],[2641,-17236],[7910,-11348],[8570,-4492],[26085,1070],[13831,11553],[10330,24448],[9811,8252],[15954,-938],[8899,-11093],[137,-7278],[-9332,-18203],[6576,-16617],[19219,-13269],[14585,-1088],[25620,10456],[17089,-1350],[12216,-5373],[8816,-13045]],[[69301622,21826757],[-38622,-62306],[-163476,-265784],[-404579,94903],[-129080,29737],[-23529,4829],[-124199,27965],[-111604,26605],[-205661,48248],[-26367,5579],[-365204,85732],[-183214,42096],[-139494,32954],[-189029,42312],[-1691,1342]],[[32919442,37902694],[-6964,-9941],[-19837,-39020],[-3038,-10269],[1043,-15351],[14394,-49890],[-5723,-16346],[-10603,-7840],[-22523,-3939],[-22402,4212],[-11387,-620],[-4743,14452],[578,23323],[-7565,11262],[-35677,6386],[-6849,4886],[-16960,-3985],[-5374,-10964],[1546,-12341],[-7444,-12452],[-32540,-17143],[-15658,-5008],[-4590,-9096],[-2033,-18034],[769,-24203],[-5039,-23933],[-14492,-23678],[-11159,-8412],[-18908,-7241],[-22851,-5739],[-13473,-10380],[-14271,-17358],[-9149,-16412],[-875,-8346],[5465,-24025],[1742,-21514],[9743,-36892],[289,-14131],[-3973,-24936],[-10093,-17911],[-1887,-12361],[-17895,-39789],[-21488,-32784],[380,-7681],[-18702,-57185],[-8456,-53708],[-8709,-13701],[-10754,-32850],[-13397,-27354],[-2345,-26529],[3495,-24889],[-839,-30901],[2064,-12472],[-23482,-23837],[-27251,-10570],[-30385,-19853],[-13831,-14084],[-473,-15877],[18824,-22834],[5710,-12267],[2123,-21437],[6287,-13888],[2893,-27159],[-3936,-14047],[-9856,-19984],[-3860,-20003],[7506,-21832],[-8991,-10382],[-11683,1305],[-8464,9396],[-12194,34266],[-12461,20594],[-10496,8130],[-21405,4493],[-9933,-1126],[-42724,-40709],[-27752,-1594],[-6038,-4501],[-12658,7895],[-10154,26212],[-10017,947],[-12520,9489],[-22022,2383],[-20894,-5017],[-19387,9452],[-7033,12688],[-14302,16309],[-21937,8720],[-8860,7616],[-17607,6611],[-14819,13120],[-18032,-11283],[-5131,-14076],[-15421,-9218],[-11341,4465],[-28857,28855],[-13222,5739],[-14697,1087],[-13976,-3459],[-37481,-22141],[-20444,-2111],[-9111,7625],[-17659,40503],[-12202,20583],[-15278,11451],[-11028,2523],[-12940,-8170],[-20408,-26886],[-6569,-27579],[-13100,-6611],[-28109,-1164],[-30455,2608],[-8372,11113],[-1690,9650],[7443,27561],[-3812,14187],[-13648,18251],[-28066,16889],[-20742,-11160],[-14811,-11403],[-33166,-16917],[-9880,-8262],[-15405,-572],[-17453,5719],[-15917,-74],[-65203,14901],[-18169,6329],[-20376,-6741],[-11951,-30123],[9645,-20715],[13184,-13982],[15725,-12322],[19820,-7400],[6015,-6405],[0,-23707],[-7902,-14712],[-10185,-6528],[785,-23631],[-3829,-10597],[-8061,-4173],[-26442,-25339],[-18863,-14564],[-16494,-8252],[-35638,-13438],[-30546,-17096],[-21762,-15614],[-11487,-12445],[-32433,-45857],[-11699,-11665],[-14273,-9116],[-15931,-3592],[-18785,-13860],[-20750,5130],[-8456,7953],[-7689,14281],[-14035,10935],[-3487,24391],[5138,16806],[-1271,15708],[-4300,9995],[-17493,18897],[-9803,18061],[-12629,36714],[-10084,22244],[-10513,17791],[-13716,7361],[-5784,20218],[-7186,4098],[-26367,-610],[-15072,-24437],[-12971,-6574],[-5038,-18982],[8753,-32662],[-4179,-8018],[13360,-38984],[-4956,-17113],[-7993,-7063],[-16859,-1922],[-22615,6809],[-14501,-6264],[-34199,-36123],[-29130,-17143],[-27874,666],[-13586,14619],[-22562,6715],[-16266,-1744],[-29267,-7830],[-23939,-16797],[-24335,-7671],[-16412,4690],[-7580,-2674],[-14203,-12622],[-15848,-30056],[-43752,-66674],[-25272,-8637],[-16608,543],[-10679,-3189],[-4096,-8120],[-25477,-3723],[-48624,-2299],[-26099,3067],[-17972,-760],[-42968,8357],[-19212,6977],[-22387,-3274],[-19668,2664],[-34983,11469],[-23598,23088],[-3698,9575],[2694,37642],[-4552,12764],[-6356,5466],[-13389,-5851],[-13800,-10512],[-8981,3459],[-10695,-5982],[-17880,-28527],[-2374,-18971],[-11084,-46973],[-10952,-25048],[-8434,-27843],[-8723,-10213],[-9835,187],[-11052,-7342],[-8259,-20734],[-9348,-14667],[-14758,-6143],[-6516,5392],[-6402,-12199],[7575,-70738],[-709,-35053],[2321,-26098],[8732,-11928],[-123,-9359],[-23901,-25302],[-15710,-11590],[-6606,-10458],[-14615,-11374],[-8450,-29438],[-3150,-861],[-5336,-40240],[-1454,-58659],[19402,-20602],[8114,-13589],[2550,-13494],[13206,-19965],[1667,-7765],[-20505,-35898],[-3730,-10981],[-14515,-2467],[-14311,8121],[-27196,-11451],[-20340,-26875],[-14393,-13945],[-3965,-19815],[-8936,-24477],[-13992,-29765],[-23063,-25178],[-23474,-22573],[-23247,-13045],[-7878,-8627],[-10580,-4735],[-14981,2203],[1615,-12810],[11128,-14405],[-3053,-25047],[-7429,-19224],[-13441,-14948],[-23605,-13842],[-14994,8327],[-16975,4979],[-19113,-6066],[1317,-15587],[-32555,-54296],[-8861,-19375],[2528,-15557],[10710,-17237],[11393,-27421],[587,-31330],[2718,-25395],[137,-35149],[-1539,-23875],[92,-41131],[-8844,-30469],[-7765,-10034],[-3639,-22882],[13170,-20106],[-3297,-16420],[-13495,-20547],[-11334,-10381],[-7034,-12349],[-12665,-8215],[-28095,22524],[-30233,10879],[-25958,15004],[-24706,7109],[-11898,375],[-26549,-8310],[-24868,-28854],[4788,-19657],[10344,-14835],[5510,-13832],[18460,-70473],[9986,-17885],[-7993,-21446],[-4185,-25780],[-7514,-16214],[-13069,-11835],[-8609,-2626],[-17126,18110],[-18094,1555],[-12269,-7230],[-236,-32493],[2526,-28977],[-10024,-13438],[-1659,-13260],[-12568,-19198],[-7725,-6516],[3249,-58433],[14478,-29644],[12225,-11412],[20712,-12566],[-6616,-11789],[-11332,-5532],[-25431,-1209],[-11974,-32475],[-14340,-10561],[-27273,-4050],[-24587,10738],[-21342,4622],[-11944,-7952],[-7542,-9885],[-4445,-17105],[653,-10399],[10291,-24504],[-1468,-23069],[-5975,-12380],[-18817,-11318],[-16297,-17246],[-9614,-25610],[-15238,-7653],[-26351,-17789],[-32640,-7868],[-5076,-22028],[7558,-30122],[10572,-16814],[-5655,-32232],[3319,-14534],[1834,-31575],[-7064,-33348],[8267,-9041],[9553,-3656],[6059,-12380],[-3098,-22430],[-18794,-44404],[5845,-6265],[5307,-18249],[6652,-10156],[21541,-19205],[9522,-15296],[-1057,-7137],[-24951,-20603],[-16283,-242],[-15246,-3612],[-17835,4792],[-14233,-1687],[-12833,-11609],[-1021,-23426],[-8691,-36536],[1164,-14630],[11045,-21362],[-2992,-9208],[-15970,-6210],[-10351,-29041],[-4698,-5609],[-23223,-14028],[-12658,-19057],[-4720,-26426],[-4293,-12191],[-10259,-11591],[1279,-26520],[13549,-29014],[19813,-1249],[11858,-10971],[-20666,-14977],[-12551,-2972],[-8814,-9969],[-26451,-12922],[-16396,-14911],[-1126,-35138],[-7155,-15351],[844,-26812],[5428,-24878],[-11814,-7868],[115,-5711],[14211,-46073],[4415,-873],[11120,-36019],[2573,-15877],[9963,-39302],[-12284,-20462],[-17638,-18278],[-5183,-13944],[-13122,-10372],[-800,-12211],[5967,-11524],[28644,-4229],[18307,-5075],[-823,-10427],[6052,-20209],[-976,-15398],[9394,552],[11303,7709],[23346,2138],[48662,-12443],[8897,-6659],[960,-10231],[-16137,-23350],[-14052,-9135],[-24989,11882],[-8395,-498],[-28689,-8148],[-8449,-4315],[-34596,-62061],[-19995,-16139],[-3160,-11179],[-1873,-35560],[-4398,-42828],[-5246,-5290],[-17635,-5607],[-27867,-2373],[-23086,-16074],[-11197,-21175],[2252,-38158],[-4604,-22638],[1416,-23012],[18070,-16204],[11913,-2665],[9894,-8148],[5352,-27467],[-30303,-10757],[-14821,-713],[-29532,-16673],[-60361,-25124],[-26406,-16016],[-21443,-1350],[-27606,3657],[-35533,2044],[-17880,5974],[-28033,20303],[-22722,-20266],[-16708,-29005],[-11105,-15004],[3693,-18344],[10443,-13007],[13388,-23584],[6653,-27571],[-5001,-15540],[-4764,-29784],[-9166,-21943],[-5723,-23792],[-10184,-24193],[-3639,-16722],[-457,-27588],[5100,-8778],[-7080,-9846],[-4550,2090],[-12066,-15145],[-5891,-41111],[7041,-22077],[-2374,-7033],[-19799,-16833],[-13556,666],[-7575,-3675],[-1050,-15737],[2657,-12106],[19280,-32804],[13526,-64255],[2071,-23192],[-11860,-43240],[-11288,-12736],[-23817,-10924],[-16486,-13073],[-9554,-30197],[-13982,-10719],[-11053,3179],[-9848,-6377],[-7431,-21428],[2002,-16513],[6943,-13477],[15003,-17452],[6811,-34612],[-22544,-40063],[-7795,-1303],[-16784,-9921],[-6881,-14705],[-16,-18493],[3069,-17011],[13494,-26240],[8693,-10652],[20886,-3479],[9554,3789],[18579,-2383],[24365,-39377],[16335,-17536],[28544,-22300],[19030,4210],[26839,1323],[9310,-1792],[4232,-8347],[15764,-4125],[24852,-11103],[20087,-16656],[5458,-10034],[-205,-24879],[3387,-9452],[-2315,-31913],[-6073,-18034],[24257,-12697],[13451,-24580],[1660,-13934],[-7079,-22272],[-16571,-15351],[-13884,-16328],[-17210,-15351],[-21512,-11787],[-8837,-9351],[-4741,-23988],[-3617,-4022],[-18982,-2074],[-22547,-9809],[-10039,-11665],[-33934,-10850],[-29457,-12145],[-24473,-1340],[-17902,8806],[-9142,23846],[-14744,19797],[-22850,16054],[-15574,21663],[-1218,7859],[-11334,7671],[-22820,-3508],[-19942,-18211],[-8654,-16252],[-1310,-13701],[3905,-28779],[15436,-21626],[7445,-20416],[-7064,-24335],[1210,-19890],[-5152,-6630],[-115,-10916],[-36088,-10436],[-274,-15606],[6448,-40877],[7909,-7239],[-5610,-12642],[-14645,-1190],[-20901,13494],[-12735,11638],[-8852,3001],[-47118,7324],[-11082,-310],[-22197,-31782],[-15801,-15847],[1660,-8394],[-10139,-3592],[-5739,3751],[-9606,17049],[-2802,12810],[-6614,1098],[-12743,-8243],[-10831,-19394],[4278,-25160],[-6410,-29512],[-8493,-6030],[-6196,-12651],[-11906,-3376],[-12810,-24016],[3615,-34885],[-3599,-7708],[-14464,3001],[-11098,15905],[-8410,21268],[-14652,10653],[-7248,-2260],[-32668,12914],[-29587,23818],[-12430,226],[-42079,28752],[-20794,5457],[-18589,423],[-21822,-7962],[-14775,-12445],[-18998,-9733],[-13891,-694],[-16107,3066],[-10870,-13231],[-6568,-13673],[-20287,-7560],[-13838,-19392],[-8699,-24477],[-373,-21314],[7292,-22197],[9195,-60684],[-983,-26952],[-7953,-19281],[-17020,-24250],[-12948,-34671],[-12255,-26594],[-42123,-14405],[-4376,-24409],[-2862,-41657],[0,-36938],[-20880,-1567],[-23787,-18052],[-6485,-19403],[7011,-24981],[8875,-3545],[11060,-14377],[3052,-16664],[-4758,-10137],[-14187,-8131],[-11753,8919],[-21184,2353],[-11935,-3629],[-12605,-9828],[-10351,-16335],[-6546,-30478],[-14273,-22188],[-20590,-17611],[-26724,-2074],[-14227,-7952],[-12680,-2043],[-10337,-12389],[6828,-19890],[29928,-35504],[-906,-25968],[-11987,-30505],[-18436,-19693],[-22973,-17142],[-14446,-7185],[-32046,-7980],[-14477,3996],[-15149,20256],[-25323,16250],[-9447,9406],[-13648,-10268],[-6599,-14188],[-20955,-26661],[-17751,-9828],[-19957,-26248],[-13504,-131],[-22379,19232],[-7770,2064],[-22958,-14152],[-24715,-8702],[-18473,-29933],[-11449,-6021],[22683,-56388],[5229,-21513],[-3829,-29193],[-16251,-23004],[-33552,-25460],[-27950,-30271],[-267,-16852],[7902,-35729],[4369,-12266],[1925,-21785],[-3532,-16411],[1744,-22329],[-6714,-6113],[-10625,1922],[-13488,-4248],[-7034,9265],[-1233,11262],[-8625,16084],[-950,41149],[3280,21569],[-4452,6010],[-12409,4577],[-12658,-3244],[-5616,-8271],[394,-11723],[-5518,-17134],[-7885,-2728],[-16799,1857],[-4035,-5298],[495,-21335],[5169,-20837],[-3525,-9013],[153,-26042],[-4323,-21690],[-15780,-18419],[-9371,-15322],[-12429,-32916],[-4857,-40090],[11243,-32512],[11905,-19235],[21419,-16419],[21336,-36330],[-12582,-45342],[-18656,-44094],[-13260,-13157],[-14570,-6873],[-17210,-13177],[-7337,-10062],[-15672,-30786],[-12104,-18682],[-7680,-18445],[-19395,-28988],[-9841,-23621],[-1111,-21184],[7612,-13843],[4186,-27167],[9104,-16673],[6987,-28311],[-3295,-18401],[-8472,-11666],[-23978,-15782],[-29830,7221],[-12126,-4172],[-10329,-15015],[-12384,-3591],[-16206,4472],[-17011,13271],[-22090,-1370],[-13070,-4042],[-25301,-26435],[-35546,-24946],[-3236,-3984],[-31604,-13729],[-11547,-676],[-10291,-7831],[-9673,-22881],[-9104,-9846],[-11084,4107],[-6689,8786],[-32358,8066],[-23833,-15201],[-3615,300],[-15193,20115],[3470,25564],[-8830,13035],[-30721,19298],[-10146,1595],[-6682,-5439],[-10840,-22189],[-17477,2571],[-12315,25835],[-10146,9472],[-19327,8815],[-16699,2016],[-48587,11009],[-6218,-2034],[-49507,16166],[-18375,10381],[-24944,4250],[-18686,-6144],[-21937,1633],[-23627,8186],[-14804,1745],[-12226,-4577],[-24015,-15642],[-6598,-21887],[-15347,12809],[-9810,20594],[-18231,29052],[-17812,17620],[-11340,-14591],[-6653,-16626],[-24730,-23586],[-20476,-13044],[-715,-8805],[-10277,-17077],[-36718,-7306],[-49027,-3986],[-11540,-2138],[-5884,12238],[-2840,24663],[-4696,12127],[-14470,18586],[-20301,13017],[-19561,15492],[-1484,9031],[-47369,37764],[-13381,3525],[-11875,-19402],[-6674,-26934],[653,-17227],[-11737,-36628],[-23298,-35458],[-19670,-15408],[-14408,-18323],[-3151,-9209],[-18535,-3385],[-39680,14356],[-7931,8524],[-2110,21607],[25188,6556],[15125,8317],[5450,14245],[5632,30065],[-2779,18211],[-20985,68814],[-11303,30779],[-14888,20171],[-18604,6949],[-28345,18934],[-12211,12369],[-23542,1781],[-12058,14901],[-8045,1370],[-22249,-16880],[-17149,-22685],[-11235,-7427],[-20697,12567],[-21099,21053],[-9058,13709],[-10375,29372],[5443,6254],[21731,6705],[11639,9519],[24281,46008],[10290,38673],[-7459,14338],[-11296,8882],[-15953,5552],[-19449,1144],[-10777,-5675],[-5124,-12904],[-20620,-21352],[-17743,-26604],[-8167,-3875],[-21473,-17282],[-11752,-4990],[-37023,170],[-29359,11075],[-19418,15191],[-8525,10720],[-13489,27749],[-10038,37632],[-1279,11132],[18854,-273],[11973,-8777],[16320,488],[9780,9406],[13564,6724],[20088,2728],[21784,29887],[-3410,12406],[3982,32533],[-99,13493],[-6676,17706],[-19409,22309],[-21572,6556],[-29108,-5026],[-15300,3019],[-11242,14113],[-11692,8993],[-10534,1885],[-9310,-11328],[-7359,-25339],[-14722,-20630],[-10214,-31940],[-10536,-74450],[-12231,-16047],[-5092,-12874],[-3533,-22526],[-4818,-11281],[-12993,-12585],[-30408,-20997],[-11068,-1200],[-43433,16045],[-54272,30908],[-14736,2879],[-6668,-6320],[-29525,7136],[-11305,5487],[-14864,-2430],[-12293,-19084],[-6608,-5250],[-11729,17536],[1286,15886],[6409,16693],[-5405,56557],[-5243,7867],[-23863,10213],[-10993,-3301],[-14986,-18980],[-33362,-12426],[-10672,-2139],[-12796,10363],[-3464,17893],[-10807,23051],[-70,22327],[-5686,6593],[-28429,478],[-16395,-7370],[-6965,-6715],[-26878,-2298],[-15086,29822],[-12201,11843],[-31909,10541],[-15544,-3675],[-14309,-8094],[-32000,8066],[-6958,5898],[10702,9781],[-3242,10052],[14447,13243],[4484,18586],[-8609,10746],[-13907,6500],[-15110,10953],[-9544,23425],[-1141,8572],[8433,13737],[-4621,4520],[-28818,5899],[-8753,-6038],[-20726,9284],[-13817,15350],[-22028,20304],[-20467,25863],[-2679,6021],[-4095,42425],[4772,23032],[-27319,-2542],[-31527,207],[-10368,2241],[-22096,-1585],[-2300,-10409],[21025,-25536],[3249,-7559],[-6371,-8393],[-20703,2824],[-24982,-6152],[-9257,-5318],[-22933,1079],[-19113,15004],[-9987,23642],[20103,44535],[11211,47891],[702,21954],[-1615,26304],[-44437,20275],[-3258,3123],[7193,23472],[-10489,13344],[-14583,-4547],[-23773,8176],[-13182,12857],[-15110,20631],[-32800,58097],[-18017,23752],[-7703,15287],[-2701,15707],[-6188,6003],[-25233,-1163],[-8152,1932],[-10459,14676],[-1651,8148],[3485,30075],[-937,12042],[-7953,10877],[-9911,-6104],[-22744,-282],[-19775,11187],[-3799,12848],[-20657,20574],[-18786,6668],[-13382,-55],[-16875,-11319],[-18208,-4071],[-12672,3001],[-17659,11732],[4246,73014],[-4201,24834],[586,13109],[7369,14696],[-3060,10606],[-12401,12622],[-18375,11385],[-11661,12304],[-21099,7688],[-26885,21813],[-21747,11010],[-12346,19955],[-20346,-2138],[-31498,-19336],[-12734,-14189],[-8434,4089],[-22569,28715],[-6424,26858],[6927,27260],[15445,20837],[-2634,16197],[-7179,10840],[-18092,12454],[-6013,-2401],[-18162,-20987],[-34505,-1894],[-23466,-9838],[-28498,9997],[-8852,-1106],[-19570,-10185],[-13108,-2719],[-18223,-22722],[-9445,-3883],[-5739,-8066],[-14737,-5645],[-21670,-1266],[-12409,5853],[-22514,3543],[-27830,760],[-8685,-3779],[-17811,11834],[-12939,5478],[-6593,18501],[-8722,5581],[-16176,25732],[-1309,6106],[-19729,2053],[-26496,25873],[-15536,35552],[-19327,6752],[-18259,-3508],[-32236,-14124],[-32754,-4997],[-33712,3095],[-13511,-2036],[-16739,-13653],[-3357,-13926],[-20041,-14499],[-5518,628],[-24419,17669],[-16518,6291],[-7496,-562],[-32716,-14114],[-10596,-7633],[-8594,-16130],[-17780,-6498],[-13518,7465],[-1104,21089],[9142,12839],[-7186,12745],[-15748,11571],[-12415,28097],[-6677,9152],[-4345,18483],[-33888,15427],[-26398,-637],[-24341,20706],[-11243,4753],[-31855,-3797],[-32334,5964],[-36636,22432],[-23057,-1211],[-8851,5225],[-11471,16804],[-15080,-815],[-25711,-11169],[-34658,2401],[-16388,9011],[-2526,17930],[-14493,20819],[-8996,17339],[-15787,5111],[-13314,-10766],[-10710,13570],[-16510,-5458],[-13884,5111],[-11264,-8908],[-8960,-25612],[-7634,-8909],[-14789,2205],[-6942,10905],[-6372,23511],[-10245,20068],[-9036,23735],[-16014,26437],[-9636,5580],[-16723,1349],[-9134,17941],[1163,19759],[-10062,14329],[-17218,8496],[-30553,25151],[-16229,21090],[-14545,33789],[-11014,12163],[-770,14750],[3509,22170],[-7116,22327],[15360,21053],[1355,17359],[-10062,21288],[-7711,4275],[-19509,-12152],[-28232,-10373],[-25446,-2456],[-26549,4228],[-7635,6856],[-2223,22788],[21868,19017],[3982,16543],[-6516,17209],[-30067,42724],[-12658,1408],[-18071,-8487],[-7779,-12052],[-32478,-34349],[-1317,-6180],[7885,-10214],[-1264,-10775],[-8639,-16738],[-5769,-23322],[-18199,-9622],[-23642,7061],[-12271,-770],[-3417,4267],[-2947,23305],[-17810,27467],[-16405,12575],[10947,83659],[-2391,21119],[-6233,17847],[2039,18416],[6851,14517],[29099,-5430],[5869,5018],[-966,14170],[7741,24711],[-3578,9312],[-22341,28996],[-2512,13400],[572,24974],[-9416,14685],[-21533,59538],[-6304,11986],[-5960,1940],[-31998,-1425],[-13595,-11272],[-3882,-7193],[-13655,-8543]],[[88743032,62831685],[38066,3488],[29572,-5064],[24708,-10709],[10961,16065],[8799,-2064],[87230,41516],[73370,30946],[37755,18971],[230452,97032],[112402,45792],[42924,20968],[74678,32972],[49606,18174],[10010,6864],[11242,1660],[25894,10232],[31597,16346],[70492,29840],[34764,18136],[116200,49637],[0,721],[80318,33695],[67929,25573],[18808,25555],[325973,450328],[11036,23154],[32502,40212],[8678,8720],[72805,100455],[26124,8805],[15727,-225],[4415,13411],[5739,3920],[15840,-17358],[12567,3666],[8387,-3123],[-4963,20248],[5900,17527],[-2770,13353],[7161,12426],[9340,-1322],[4361,-12624],[8983,-8251],[14142,-6096],[16320,-2100],[17119,-7663],[10404,-29548],[10087,9396],[7078,-15783],[8267,-6282],[1834,-9528],[20134,5475],[2130,-12735],[8464,-16598],[21223,-7614],[9743,-357],[13107,11695],[8357,-2167],[11183,-11019],[7123,5054],[3754,10823],[15832,-2045],[1332,9951],[14242,-3104],[-3016,9030],[18154,4323],[4651,-11637],[5337,10877],[17049,-9011],[-1559,-12379],[17659,3253],[18147,19581],[897,-8495],[8952,-7521],[-4696,-5675],[1233,-16495],[10184,-17180]],[[54580191,80261956],[10093,-5438],[11577,2363],[14934,10746],[14302,-1068],[15559,-6884],[17864,-21249],[11982,-23416],[1255,-23426],[3372,-13110],[-1682,-35439],[7779,-26220],[12621,-5149],[23344,2579],[10939,14188],[-4422,39313],[5677,21700],[13459,-2363],[16410,-18682],[4414,-10746],[8411,-6453],[28780,-42808],[8229,-15323],[4460,-15727],[19883,-22647],[2937,-11891],[18284,-15099],[13663,-5861],[22958,-2964],[18381,8385],[-570,27064],[13656,17170],[-6250,16459],[-852,19937],[8395,29390],[12612,21446],[13473,4942],[15590,0],[17270,-21643],[5299,-27842],[25338,-14518],[24556,-9987],[8479,-7136],[7171,-18484],[23581,-21409],[12925,-1548],[32265,8299],[20812,10739],[12223,11337],[10452,19092],[9164,43870],[-4857,20921],[572,73992],[6294,14347],[2649,36827],[8419,10943],[5473,20144],[6942,13514],[8008,24878],[29084,36912],[5694,12874],[-9302,17068],[-18764,14948],[-25232,8638],[-19546,19064],[-3144,13101],[2754,22141],[-3539,27721],[7384,12884],[20231,17622],[-1239,17189],[5936,22571],[-2725,8169],[-13260,7090],[-7558,18062],[3882,50713],[3181,15493],[12879,15464],[32488,29859],[30842,44920],[24100,41693],[11394,10962],[25727,12022],[12043,2241],[43843,-1359],[13055,-5148],[9689,-10100],[25065,-7502],[34550,-3854],[24852,-25556],[6524,-12021],[-1279,-20631],[-12239,-20004],[-5071,-24503],[2946,-25995],[48023,-47733],[39063,-27767],[40587,-36845],[28940,-13542],[17035,-10625],[3235,-11553],[18192,-13485],[19614,-23183],[17964,-44225],[9697,-12445],[6348,-17593],[13482,-7304],[18161,-41432],[13062,-9012],[15163,-853],[18313,8159],[35790,5805],[26513,12670],[8837,9443],[31565,12021],[19988,12661],[24419,6443],[35996,-6021],[15171,-6649],[17688,-15679],[9059,-12454],[11820,-33291],[-2488,-42518],[12635,-13964],[20415,-11178],[27158,-1510],[22509,6638],[23557,13515],[14715,28555],[16197,1499],[7786,-2803],[21687,-15483],[3166,-12237],[-7352,-33066],[-404,-30506],[2115,-8582],[21260,-22797],[-837,-7718],[-16814,-15886],[-25241,-13710],[-22934,10],[-31969,-3845],[-10938,1520],[-12826,-7091],[-3997,-9001],[6753,-16759],[11363,-7520],[5482,-11170],[18314,-14188],[36825,-19572],[34381,-6357],[9424,-10073],[-997,-31724],[5541,-9106],[16046,-3949],[14212,1783],[25193,25066],[18551,8468],[9894,-4164],[12005,-12341],[23992,-14619],[-1286,-14386],[-25150,-12322],[-12286,-12575],[-1353,-9885],[8455,-24880],[19449,-10117],[22668,7830],[29792,20303],[10543,-14340],[-2011,-14760],[-5237,-8205],[-90,-15268],[4718,-23687],[12774,-19956],[5388,-27917],[11334,-8666],[29488,-14572],[6052,-14274],[-5016,-8439],[-12742,-9923],[-13725,-18099],[-14713,-31911],[-1918,-16150],[12680,-14807],[16085,-10268],[25895,-95],[40144,21006],[16716,12736],[18602,1341],[19365,-5579],[44352,-16328],[14668,-8392],[-19448,-2749],[-9628,-6066],[304,-29596],[-2337,-19506],[2528,-27150],[8266,-40146],[27691,-40726],[2345,-12951],[-7277,-21016],[-33553,-24194],[-16753,-30253],[243,-25113],[16458,-47677],[6339,-23622],[4028,-28762],[-3335,-20809],[-10450,-31322],[4018,-24251],[15170,-41647],[8839,-13101],[32676,-17621],[26314,-7286],[33972,1078],[-1454,-28096],[10579,-49645],[-798,-10418],[-16898,-24654],[-23,-28641],[-10162,-32587],[-9415,-18118],[19440,1706],[11958,-2241],[17979,-8608],[10238,-18624],[-4537,-20613],[-14652,-21175],[-17172,-37408],[-4804,-29137],[-625,-17779],[14090,-48428],[14882,-27025],[4133,-12876],[12384,-23641],[8145,-34445],[-411,-13991],[-15977,-46842],[-6030,-31828],[3472,-20145],[9126,-13541],[10505,-8805],[22523,-7522],[60390,-8355],[38508,-8159],[13276,-6227],[27585,-7510],[32889,-12688],[24770,2165],[18328,-5804],[14456,-13316],[39839,4079],[10269,4069],[20947,17602],[16472,23173],[8867,23004],[10953,5345],[7049,12023],[15650,6217],[3950,12257],[10823,6452],[31597,2972],[22485,-1753],[15924,-6031],[7284,-7314],[6943,-17630],[-1857,-13757],[-5352,-8160],[-19661,-14770],[-11775,-26688],[-3251,-18578],[6226,-15886],[9737,-12021],[24729,-13092],[12720,-862],[30181,-10523],[13320,-384],[11220,5983],[6203,12023],[14165,10933],[17203,8656],[18435,244],[15263,-5373],[258,-4529],[-17088,1687],[-2055,-5176],[16227,-1697],[-341,-7306],[19104,11647],[22120,3264],[9204,4098],[14743,31733],[23566,23829],[14326,4071],[18419,-10315],[-3410,-5796],[17781,-11806],[9227,-2796],[23984,1266],[21282,9641],[24564,16439],[36078,-2195],[14059,-7942],[17621,-5158],[11541,-7295],[29152,-6041],[24541,-14807],[22020,-19289],[8966,-17143],[2634,-15661],[5420,-6434],[70721,-22149],[12589,-2157],[27959,2101],[10549,10474],[8639,14113],[14896,35683],[11754,16664],[14896,3827],[45312,-13364],[15109,-2166],[20346,-7314],[2307,-4071],[28955,6564],[25804,15287],[16974,-22675],[15862,-6585],[23855,19647],[6691,-1143],[24891,13382],[26124,26070],[3150,10681],[-11326,6657],[-8190,10503],[-2306,16899],[6302,7033],[17645,6603],[6979,10466],[305,8974],[15201,4689],[20986,13879],[31473,16646],[26878,-1097],[19105,-8375],[33598,-27851],[20393,-68684],[13861,-17986],[639,-15615],[11341,-18407],[19524,-18624],[28339,-12876],[17203,-1097],[6720,3413],[25811,29042],[2932,16036],[-1691,45999],[11540,16026],[17628,7671],[45381,-11318]],[[65766801,57961360],[38796,-63337],[55855,-103127],[225667,-402567],[84086,-153392],[77815,-136671],[77450,-139017],[16311,-28115],[42937,-78154],[29558,-49195],[26161,-46129],[75865,-138932],[13033,-22497],[227179,-404302],[6226,-9115],[203020,-361541],[66223,-118562],[29411,-51551],[175733,-312945],[182415,-325725],[25232,-44142],[140467,-250395]],[[64438219,52764399],[-258625,-162928],[-271556,-170994],[-4971,-6639],[-22401,-15117],[-135604,-88066]],[[53390491,58555695],[-1127,117333],[427,174877],[1089,113620],[883,192404],[965,116912],[443,154470],[2968,585115],[38,119023],[-2162,10044],[-1363,67529],[1035,333660],[1760,156486],[1468,39500],[130,161185],[-2216,96740],[495,17228],[472,135968],[4149,274270],[1325,137629],[805,257025],[968,16299],[-403,59416],[312,213889],[-473,137515],[1165,102892],[807,273127]],[[90882364,66038229],[-15566,27729],[-1089,15286],[3518,8355],[14036,6312],[783,21569],[6037,19740],[-4347,8365],[1963,13475],[-5678,291],[-1620,11517],[-6881,3263],[1658,11806],[-15215,-5543],[-3730,4671],[7695,11431],[-25590,10870],[-4095,12397],[-10718,-7774],[-17141,4182],[4278,11779],[-2680,7754],[-12742,-5794],[-7154,2297],[-983,12641],[-12726,-7126],[-12172,3891],[7064,4689],[-11662,2813],[-6607,13917],[24312,12688]],[[50581921,91732678],[7,-937634],[2002,-77075],[3775,-98194],[-1074,-70727],[1105,-93318],[-602,-95954],[518,-219637],[-161,-252542],[-5578,46],[53,-1640767],[2016,-80714],[-1331,-269856],[-945,-50460],[267,-205739]],[[67342012,20241824],[2564,23388],[10171,30074],[7923,16608],[-4308,17480],[-2497,26463],[-159,26250],[14850,7679],[3715,18915],[6446,9613],[9789,3225],[5549,-8805],[-7148,-15895],[1918,-6387],[9820,-2204],[1606,12961],[11030,8777],[-1256,9923],[-10825,10324],[-4095,13420],[7566,19355],[-10077,17762],[-8275,24541],[-7892,10457],[-5314,19918],[-9034,21738],[-3441,18258],[-5215,2541],[-12483,-7380],[-12339,15079],[10383,8290],[-1019,6799],[-21169,19835],[4528,16195],[-3165,5241],[-22418,13974],[-12497,14844],[-44514,1106],[-7642,-22215],[-11045,-6020],[-8503,1668],[-8746,10128],[-17635,9153],[-10505,-2495],[5634,-10755],[-5869,-5364],[-10962,-403],[-12360,6377],[-20933,-13382],[6904,-12116],[14157,2869],[5724,-5373],[-7292,-6884],[-19637,1623],[-16001,7483],[-46781,4641],[53,-10184],[-6873,225],[-22364,-13212],[-9781,975],[-3152,6780],[-13350,6124],[-15833,655],[-12278,5008],[-15254,-6208],[-11637,2842],[-5191,11057],[-9067,-207],[-13374,-9096],[-10883,4070],[-4241,11854],[-20582,-2701],[-25660,844],[-6956,4857],[-16646,20480],[-11433,6405],[-18170,-4801],[-3662,2345],[-11882,22985],[-9963,4792],[-4894,17743],[-5046,2963],[-18924,-11338],[-28027,14302],[3891,11421],[21762,10054],[365,13043],[-18595,24102],[-15301,10934],[-7421,-666],[-15961,-9247],[-16289,13683],[3326,11047],[9483,3797],[-1605,7279]],[[34122173,91811452],[-762,1036597],[-1135,112420],[2550,1091665],[-1026,80526],[1308,1030820],[-1659,141371],[-845,517783]],[[58541688,13431120],[-411338,4221],[-137256,3592],[-145803,-1689],[-605125,6922],[656,3104],[-134150,1706],[-21290,1473],[-49042,-347],[-188276,2626],[-186313,3000],[-81057,404],[-275857,3798],[-15537,1031],[-235780,3994],[-100027,131],[-260412,1436],[-37792,478],[-72822,110592],[-71161,111144],[-17379,25086],[-120357,184095],[-12658,-9002],[-34131,-28678],[-75843,-60027],[-191884,-155529],[-102613,-80414],[-215962,-173837]],[[54742479,13390430],[-13624,10692],[-21571,355],[-15917,15024],[-21313,5618],[-19151,-4381],[-26261,-18718],[-21260,-12040],[-12254,-14207],[-20726,-7644],[-21055,-11741],[-9308,-9039],[-17645,-5064],[-25141,2344],[-14456,8130],[-22651,19468],[-11579,12389],[-12293,19805],[-12451,26474],[-7285,24898],[844,15763],[13900,39444],[42162,76569],[10221,27543],[2155,14469],[-374,31519],[-2853,12566],[-21671,31819],[-7894,19449],[-14744,13579],[-9614,19516],[-18253,12585],[-35143,7896],[-15489,83],[-25607,-6227],[-31177,-13025],[-40403,-94],[-38614,-2203],[-13290,2869],[-13496,9800],[-17187,393],[-14957,7747],[-16525,20509],[-11373,18568],[-14188,8459],[-11661,17911],[-10048,38074],[2535,5757],[30988,31557],[17165,25694],[7771,2890],[36278,-2440],[30065,6791],[20757,16167],[28590,26014],[46737,44825],[21853,24869],[11951,20914],[1354,10831],[-9058,30196],[-10368,27167],[-6713,24608],[2017,28086],[-3182,12950],[7796,31950],[8106,13111],[4309,19927],[8707,25151],[3486,18710],[35402,79897],[5549,7296],[18412,12952],[4294,12734],[16958,22253],[7551,13945],[2786,35308],[-7085,16570],[-930,38843],[3837,27982],[14516,34726],[6158,20285],[8829,78229],[5686,23829],[-465,32587],[-10914,27581],[-5573,21783],[-4300,33741],[-7087,32016],[-18815,64735],[-7088,27402],[-8007,43578],[2321,42998],[7088,42931],[-3487,20706],[3563,9574],[8684,5242],[10047,25509],[24481,29952],[10108,15567],[16950,31837],[1257,15276],[9637,14517],[6499,20182],[1172,35007],[5199,29877],[23071,21757],[-951,27861],[-6417,39293],[-8136,25056],[-18420,27542],[-15970,16722],[-46470,38599],[-37412,26275],[-16562,-8927],[-15034,8646],[-11738,3002],[-59371,-12192],[-24790,2963],[-19365,-7671],[-28393,-17171],[-47854,-1631],[-17164,18389],[7399,45437],[15984,65643],[1522,49702],[-2283,26258],[4453,49703],[13632,67528],[6272,35618],[2283,46887],[8,40325],[23597,85338],[36559,34210],[12552,54251],[10032,17629],[-8243,35458],[-32526,39189],[-40539,20105],[-12659,10945],[-15566,7802],[-22181,18137],[-10337,11412],[-16494,29044],[-8015,22140],[-24860,60608],[465,9472],[-6158,31988],[-14143,47845],[-6996,19469],[-16494,25507],[-46691,35129],[-25895,17779],[-26792,26381],[-6059,1340],[-13869,-15220],[-8198,-17293],[-464,-18295],[-19274,-15117],[-59614,-15811],[-30904,-14855],[-24395,-9667],[-17477,-9210],[-10519,-375],[-17280,4576],[-19524,10962],[-989,13299],[4118,8365],[14941,4061],[18970,11036],[16555,21785],[4718,10822],[-548,50883],[-2906,17546],[-13998,15315],[-17035,3900],[-23362,12763],[-31313,30807],[-4453,9583],[-14394,10786],[-7467,10774],[-3075,56651],[-9751,36752],[-16693,12049],[-33401,13655],[-22180,6358],[-51592,-18625],[-15003,-7585],[-14996,-11694],[-13829,-2523],[-11517,6349],[-11502,16786],[-17536,33901],[-15841,3496],[-9796,-3160],[-11638,-12649],[-5809,-15680],[-502,-22188],[5892,-9818],[19760,-18737],[2572,-16964],[-14516,-22705],[-11683,-11009],[-73804,-27889],[-18085,-2167],[-21831,10476],[-62873,25384],[-32295,-7539],[-34658,12754],[-5578,13382],[-40053,24626],[-9592,8411],[-510,20970],[5733,18295],[32449,26756],[12627,19861],[10901,25854],[-1728,20210],[-8054,19909],[-16092,16768],[-2877,15791],[-18101,17086],[-35919,22497],[-19251,2571],[-56920,-11901],[-52247,19093],[-15230,11703],[-12941,26539],[846,32513],[-14082,1613],[-23826,-24888],[-20375,-33733],[-17477,-66244],[-39923,-4341],[-52598,31986],[-13221,17069],[-22264,15483],[-40694,40502],[-16098,31668],[-2040,37765],[-12536,20987],[-22007,32475],[-30507,57813],[-45754,72051],[-90328,108950],[-17423,19861],[-39094,51457],[-5793,44169],[-23657,47094],[-50383,73026],[-19036,21418],[-31673,13185],[-37100,-14611],[-42557,-15256],[-26480,3404],[-20447,10689],[-36619,34961],[-40411,58002],[-3806,29362],[-26785,129280],[-32678,99255],[-24014,44310],[-18772,14985],[-14956,6575],[-11745,-2599],[-21945,-74533],[-5245,-14978],[-25559,-20133],[-53526,-13475],[-15780,-85],[-27888,12190],[-22204,21411],[-9584,19262],[-3607,28161],[1872,20011],[-11738,48333],[-12588,34136],[-18871,46420],[-6013,47460],[-9264,14198],[-12086,5946],[-14288,760],[-13701,-4173],[-32259,-5355],[-19486,5467],[-26389,-470],[-27851,3948],[-16960,5919],[-23110,14179],[-10892,10080],[-9613,24946],[6705,36385],[17493,39376],[8069,41526],[-3327,28152],[-16974,36395],[-10976,51174],[-1187,21194],[7527,43344],[6241,14872],[1813,38900],[-9111,39498],[-31430,69124],[-5221,7886],[-10353,919],[-7801,7241],[-48753,29239],[-21656,17003],[-12437,14187],[-3586,14292],[-10077,12847],[-33545,33404],[-6448,21795],[-8921,52768],[-6698,29737],[3288,30468],[4773,18859],[15938,36216],[32115,35955],[22241,44170],[4834,58685],[-21717,56060],[-3569,17115],[-25134,48116],[-23178,12605],[-39627,10624],[-69496,31454],[-34898,38880],[-30364,50312],[12825,19037],[1675,17489],[-18458,40530],[-8130,6621],[-39907,8092],[-13345,9145],[-19204,21494],[-13822,82392],[3173,44413],[31613,69593],[16950,58423],[7094,110394],[-4429,13936],[-22874,7520],[-48867,6781],[-44765,-3029],[-23536,10278],[-12307,-638],[-83288,3179],[-55908,21963],[-54562,34003],[-10488,-2025],[-47681,13505],[-36833,20134],[-12824,15791],[-15521,30066],[-22090,35785],[-21085,60204],[-8950,28293],[-28515,42763],[-15741,26632],[-9186,20942],[-9714,31059],[-10610,46167],[-16174,56754],[-7064,32034],[-76,51249],[-14555,47452],[-8129,41412],[-8182,84193],[-5861,23575],[-7902,15503],[-22135,22881],[-32578,25938],[-19676,13805],[-23223,11929],[-40723,15848],[-28773,8328],[-21426,9058],[-18170,10635],[-16501,14319],[-36895,38778],[-14774,32361],[-14607,56512],[-502,13587],[10260,41394],[-1019,24842],[-12301,28198],[-10337,14676],[-37495,30854],[-16374,10840],[-19296,27768],[-12764,33337],[-12727,24270],[-28201,37886],[-8541,25761],[-9043,9697],[-8874,22178],[-12780,41693],[-5116,28142],[-9530,11892],[-3083,12341],[199,19130],[-3509,8778],[-26679,25771],[-25813,14347],[-40920,12192],[-76916,27382],[-25280,9876],[-10329,-123],[-30043,10944],[-39825,7953],[-35706,23659],[-18756,18062],[-11614,5035],[-6395,11554],[-30515,16476],[-9332,1633],[-15391,15239],[-35730,26126],[-8776,2100],[-79588,-8900],[-24867,-375],[-24472,2477],[-26991,14281],[-29481,13524],[-13914,8721],[-21961,43963],[-23520,30177],[-23901,20041],[-8152,355],[-33940,26203],[-19881,12791],[-28453,13212],[-53793,28397],[-10558,-2008],[-9826,3518],[-24890,1641],[-10353,-4736],[-32357,3132],[-16434,17489],[-8342,15484],[-6667,27552]],[[61304740,43725732],[115127,2964],[300543,5551],[313961,5927],[253951,2495],[143533,1818],[35692,-122],[208889,2185],[79909,-23500],[180785,-60449],[199215,-66085]],[[64852678,43034694],[-258419,-467818],[-17027,-32934],[-85512,-154507]],[[99297672,50067744],[85167,-96300],[11676,-2926],[30653,12107],[33058,5194],[15489,10776],[33028,56050],[24952,28377],[42206,25678],[23597,20387],[48151,21915],[23749,7099],[6775,8037],[12574,1538],[9347,-6274],[14203,-16101],[11197,-6912],[15209,-2672],[23498,3319],[22781,16552],[15277,1059],[13207,-19795],[9338,-32898],[-5366,-35899],[-5967,-16064],[-23947,-17404],[-48380,-7212],[-4749,-3404],[-473,-15323],[6813,-16458],[23771,-25677],[17705,-41383],[1295,-21250],[-28034,-22666],[-27456,1576],[-19798,3534],[-17721,-7126],[1408,-71365],[18368,-45717],[10406,-68344],[8082,-18382],[11876,-16411],[32295,-54259],[-1803,-23903],[-9584,-82656],[-10435,-15323],[-27707,-10964],[-11858,-11318],[-7727,-21512],[-13290,-26896],[-3265,-26295],[3753,-19019],[-3312,-9227],[-9698,-5326],[-59659,-15643],[-3381,-9912],[11122,-9115],[19287,-7183],[1615,-6199],[-29717,15904],[-8053,13646],[-13831,984],[-15124,-7455],[-4293,-23127],[3630,-8720],[18078,-12810],[13900,-4201],[9591,-10185],[8882,-30543],[15247,-5298],[17955,13663],[11913,24925],[11051,-5372],[4287,-16647],[-5328,-9705],[-15506,-17509],[-7847,-30439],[1993,-33366],[6806,-2533],[39863,-291],[45244,-6470],[17994,-6818],[39116,-24953],[37921,-395],[3631,-12387],[-6767,-20322],[-6682,-7389],[1544,-9566],[27411,-24973],[13769,-3422],[16609,1302],[7719,-4772],[9012,-24889],[229,-12182],[-16998,-43026],[-13898,-5673],[-41614,4746],[-12871,-3395],[-15879,-14799],[11303,-32700],[22737,-32183],[11067,-9801],[15886,-8646],[32281,-11085],[8085,-13428],[-7932,-17443],[-15155,-4341],[-16106,1002],[-6516,-14750],[1255,-8815],[23908,-25376],[20987,-2167],[66740,-24824],[13555,-10043],[1151,-19759],[-6234,-11516],[-51594,-35767],[-50054,-47873],[-16806,-4275],[-34696,5429],[-18282,206],[-14828,-11928],[-8998,-15454],[-21663,-48025],[-13137,-37416],[-9476,-3789],[-20226,4605],[-20353,16261],[-14204,3188],[-13328,-2157],[-15900,-8497],[-21305,-43980],[-12651,-7532],[-51280,48417],[-11418,24430],[-11167,15418],[-14591,-4539],[-16342,-17902],[-13473,-10916],[-10306,-19957],[-1713,-25872],[-11752,-22028],[-19075,-12754],[-8473,-9454],[2398,-11543],[14720,-28602],[14905,-21710],[4833,-14732],[8746,-5797],[24876,-5025],[26778,-891],[8608,-8244],[1028,-12490],[-10557,-19797],[-9950,-64275],[-10944,-21634],[-7605,-8487],[-26663,-13757],[-11678,-9528],[6052,-23463],[10489,-8749],[27768,-10635],[13610,-1097],[14325,4736],[17393,12969],[15367,3553],[12757,-4012],[20971,-20838],[19531,-11863],[21991,1172],[14515,-11357],[10885,-14375],[2901,-43354],[4612,-21849],[24395,-9961],[29291,-2062],[35365,13860],[21845,2053],[6326,-10342],[2990,-23782],[-12110,-23352],[-3273,-12997],[1432,-16176],[10892,-41703],[8540,-22113],[25690,-26229],[3242,-17256],[-9507,-17826],[-4377,-24083],[10505,-25329],[-130,-8450],[-7588,-13400],[-16481,-4661],[-8120,-7128],[-4043,-22411],[-5891,-5946],[-16479,2615],[-12629,-3206],[-16304,-8899],[-28986,-23773],[-12490,-506],[-5275,9950],[15551,43464],[-3927,5374],[-23819,6359],[-8524,-4680],[-18611,-20903],[-21328,-58639],[-21556,-22337],[-26321,-20631],[-2757,-17677],[4949,-8018],[15123,-10897],[10856,-3931],[12543,-10464],[837,-8882],[-8213,-41073],[6691,-16130],[34199,-10869],[-4406,-23022],[-24914,-6894],[-19022,-1349],[-21555,1744],[-28606,-9960],[-9955,-628],[-26215,-7297],[-14021,-13738],[-2665,-9471],[-13046,-22995],[-13967,-12659],[-11243,-18990],[-4157,-18831],[4469,-17432],[12468,-30769],[1179,-13373],[8344,-25977],[8402,-4491],[17143,404],[12619,8280],[17941,-7250],[1668,-21559],[-12462,-23022],[1120,-13814],[11365,-4989],[29448,17153],[4873,-19056],[-22013,-55920],[-5732,-24475],[1796,-9379],[17188,-25545],[13191,-12275],[4612,-20800],[-51661,-50049],[-23725,-8008],[-9767,-5918],[-685,-15117],[21223,-14788],[17575,-198],[27706,-9950],[13929,-8561],[18428,-20322],[15050,-25957],[3972,-19027],[-4871,-12435],[-27220,-31566],[8686,-19055],[16152,-13560],[-2862,-13289],[-25948,-23528],[-30981,-14592],[-17141,-17987],[-3160,-10682],[6213,-26220],[19865,-28068],[3396,-9133],[-4888,-19338],[-12413,-14704],[-21519,-13878],[-26725,-14695],[-23999,-4801],[-16792,-10100],[-28620,3526],[-15970,11741],[-12894,1088],[-11768,-12548],[-3274,-34651],[846,-13083],[6897,-22552],[13700,-24918],[-4057,-24831],[-13488,-11413],[-26390,910],[-13540,-2898],[-3365,-8197],[18459,-35456],[19075,-16234],[9780,-24081],[-4947,-14479],[-25333,-2224],[-22119,7944],[-12802,-9359],[-7483,-14715],[-6022,-26445],[5960,-24634],[8861,-22413],[-4134,-33601],[-23146,-6059],[-21915,-3131],[-18877,-6405],[-12635,-11732],[-11433,-6058],[-9568,8985],[-2322,30834],[-8814,-1238],[-2100,-17293],[4361,-21212],[-5321,-18438],[-18214,-8411],[-12576,10615],[-4071,13870],[-14310,9434],[-8382,-6396],[-2952,-14553],[-329,-24186],[5627,-8975],[12285,-9227],[5336,-16806],[25568,-39423],[494,-8993],[-5320,-15577],[-7217,-8046],[-28543,-581],[-14957,-4118],[-15924,-8401],[-10482,-11770],[754,-15558],[10214,-17443],[13009,-7782],[24053,-8826],[16555,-22768],[11503,-39763],[-7209,-16786],[-17598,-2456],[-22181,17152],[-9606,1285],[-8754,-9903],[6349,-12680],[15163,-7099],[20879,1174],[17780,3995],[5839,-28762],[-3784,-10625],[-10640,-8854],[-15636,5271],[-997,-9641],[26093,-12574],[6272,-11919],[14439,-12604],[12081,-5759],[-19897,-16991],[-6919,1228],[-4987,22638],[-9886,3498],[-10414,-13982],[-6104,-1033],[-8243,17997],[-1897,11713],[-21761,-11742],[7947,-43127],[-1918,-14939],[-24495,-32344],[-3563,-28022],[-4946,-17160],[-7887,-12744],[-20224,-15746],[625,-22881],[8411,-12032],[15641,-10475],[6477,-10437],[-524,-9266],[-36035,-39528],[-15619,-23584],[-3660,-34520],[-8145,-20265],[-19532,-34680],[-35844,-14554],[-7002,-16598],[-9446,-13972],[-10847,-5205],[-23269,8345],[-19860,808],[-10024,-19187],[-1706,-25396],[-13221,-10128],[-21990,21503],[-15384,4924],[-11249,-2625],[-7422,-13814],[-17674,-42744],[-11235,-19712],[-11463,-7961],[-17667,6348],[-16602,-2803],[-18542,-13459],[-16510,-20058],[-2314,-14039],[4772,-23013],[-3813,-13410],[-11858,-8712],[-13276,-3751],[-2252,-24486],[-4773,-9404],[-29221,-32757],[-18924,-10148],[-9582,-9499],[-5748,-12490],[1766,-13289],[15893,-24007],[2778,-17902],[-2923,-10270],[-7336,-7022],[-15651,-4267],[-6820,-16581],[6303,-20724],[-9392,-31875],[23207,-40091],[677,-21962],[-18267,-15145],[-10041,-5168],[-9157,-24953],[-13449,-15005],[-3044,-12387],[12574,-10261],[23018,-5260],[7794,-8740],[4026,-30477],[5794,-16346],[19250,-27326],[5982,-16065],[799,-42500],[-7209,-6517],[-30750,1107],[-10786,-13448],[1013,-46336],[-4058,-10457],[-8426,-2907],[-37899,-2232],[-6736,6697],[5222,16533],[30043,20434],[-822,9011],[-12346,15568],[-19151,12979],[-14660,694],[-52644,-24138],[-18306,-26916],[-20834,-6919],[-34641,8589],[-14805,-3525],[-9528,-9294],[379,-41759],[-2282,-26698],[-7886,-11873],[-13344,-10859],[-8297,-873],[-19532,24317],[-7734,1810],[-45525,-54663],[-5405,-17387],[5078,-14131],[10070,-14039],[-1742,-16515],[-9081,-8036],[-1538,-12463],[22295,-27870],[4483,-8740],[2701,-26174],[-11096,-19881],[-36088,-27065],[-9735,-12725],[2040,-23397],[18207,-36836],[-3167,-14883],[-42793,-29259],[-30349,-7088],[-11151,-13185],[4713,-13870],[12033,-7325],[35982,-4313],[8502,-9791],[-4544,-8656],[-7726,-29512],[7825,-16644],[27767,-30103],[18763,-14432],[14463,-3592],[25842,-2448],[12154,-8983],[8336,-25865],[16898,-15191],[16372,-6275],[20879,4718],[11030,17105],[11395,10738],[7232,-6536],[-70,-12810],[-15253,-12829],[-10094,-12454],[8601,-32110],[-9947,-12341],[-3853,-16702],[12171,-1838],[18673,4765],[8722,-10841],[1271,-9050],[-7656,-23491],[-18117,666],[-41247,-49168],[7770,-11920],[17128,10],[25407,3742],[-1012,-11937],[-13138,-16064],[-7482,-1117],[-23726,3836],[-6714,-4042],[-9325,-26690],[-3554,236],[10656,-18297],[14083,-18539],[13884,-27065],[13305,-12959],[5304,-10879],[-1620,-22919],[-14950,-3282],[-11044,10305],[-5054,11414],[-7522,5813],[-10221,-1407],[-9501,-11844],[7210,-23200],[15367,-17509],[12194,-4210],[13489,-20208],[5922,-27544],[-14638,-31067],[8868,-17612],[29640,-11826],[11235,-13550],[6462,-13916],[7345,-7316],[11274,-19167],[22606,-20848],[2268,-12632],[-9370,-5935],[-25575,6743],[-19942,-1032],[-6128,-14948],[1584,-11309],[11942,-19769],[17438,-15623],[7407,-16956],[-12932,-18783],[-23088,-11862],[-4605,-5233],[3768,-18184],[17599,-8215],[28902,16851],[11447,2674],[12233,-8243],[2010,-10654],[-5132,-40371],[-8692,-14105],[-20902,-10023],[-16220,-18326],[2291,-16635],[11303,-15539],[298,-10147],[-7042,-3686],[-17103,6913],[-20963,637],[-9058,6705],[-13770,20463],[-11363,242],[-4735,-9489],[75,-13335],[-5175,-9491],[-18519,-12068],[-3060,-23127],[3843,-11450],[-5275,-15388],[-16106,-3677],[-3380,7418],[2650,18325],[-3996,12528],[-16251,20977],[-7758,28669],[-6796,385],[-17203,-13298],[-5465,-9801],[-2497,-18782],[2420,-37793],[31132,-21316],[3555,-11159],[-3593,-5833],[-30149,-1547],[-8837,-15868],[1119,-23837],[-7589,-15109],[-14365,-2034],[-10504,5138],[-7611,11723],[-7071,-1810],[-8122,-25029],[701,-36826],[-5588,-13909],[-20148,-27128],[-25925,-9266],[-2725,-23070],[-6432,-7099],[-19913,-9480],[1218,-16121],[-4819,-5157],[-18274,3394],[-20126,-3338],[-9492,-13081],[159,-15699],[-8083,-11159],[-31246,-13242],[-8107,-19365],[-2572,-16636],[7116,-9172],[16009,11976],[7070,-13888],[-8152,-9773],[-15550,-2588],[-3662,-7333],[21800,-32617],[2665,-12809],[1865,-55788],[-2855,-36977],[5016,-16551],[-1219,-10316],[-12468,1519],[-8426,27308],[-7846,4736],[-4430,-8590],[3600,-21719],[11250,-20218],[17697,-7540],[28141,-27111],[2002,-6451],[-9058,-4934],[-21123,3461],[-5839,-4295],[-2686,-25564],[-11174,-2738],[-7383,12068],[-5451,33152],[-13732,-18007],[2612,-23377],[19494,-18653],[-4454,-5729],[-26489,-3958],[-2260,-5759],[7163,-7585],[27926,-15971],[1158,-5157],[-15924,-11151],[-19015,-21832],[-9460,-4810],[11592,-3995],[11129,-10840],[7862,-19151],[-9255,-4820],[-24062,22779],[-12018,141],[1462,-16928],[10443,-21334],[11745,-9565],[27479,2673],[-1142,-8356],[-24335,-24054],[-15148,-20180],[-13259,-6800],[12170,-26969],[16283,-7109],[20118,7071],[10275,17826],[6439,2138],[12865,-7960],[175,-24720],[8243,-6030],[16297,11807],[5030,-1294],[-5450,-16337],[-19311,-4491],[-9658,-5356],[1202,-7961],[16275,-15276],[9240,-13767],[12901,-5617],[-1872,-15079],[7437,-8995],[14897,-2718],[-1166,-10626],[-10458,-5701],[-2808,-11789],[18116,-1715],[7253,-5589],[-1164,-10250],[-12163,-17611],[5319,-6405],[17294,206],[10938,-9969],[6966,-15389],[15017,-12904],[2725,-9133],[-9034,-6414],[-16746,-5205],[449,-9687],[7070,-11235],[2550,-13579],[7636,-7727],[6750,4445],[11387,19552],[10368,1126],[5763,-11394],[9277,-5589],[11372,28],[-4612,-9115],[-19190,-5627],[-1332,-6200],[16915,-1416],[12658,-5832],[10063,1688],[7634,-5823],[15079,-4268],[6667,-11366],[11456,2824],[9827,10999],[12072,-6423],[39,-17622],[14088,-6610],[17067,9725],[12056,2804],[4834,-4295],[9057,-20416],[13275,-7944],[4819,9464],[-8047,10531],[2407,6874],[24753,-30928],[-2201,-12688],[-9041,-19403],[6378,-9096],[18794,-1632],[6902,14507],[1538,27177],[11982,3732],[12902,-7662],[11242,-17273],[-38,-12267],[-5062,-23069],[-10435,-13466],[-18483,-8168],[-2785,-18352],[7406,-8310],[26862,-1885],[5434,-6019],[-837,-11948],[-8448,-9977],[-8397,-40784],[-12475,-5599],[-14607,8018],[-517,-13927],[16343,-4275],[1970,-6893],[-6637,-22600],[-366,-11676],[22334,4746],[-4081,-9340],[-13593,-2486],[-5047,-14930],[9507,-421],[4468,8084],[5047,-3948],[-3692,-12868],[-9714,-3928],[7758,-23454],[13959,-5627],[13984,4540],[-1941,-16393],[-9714,-12444],[-6949,-18634],[510,-17734],[-9774,-15933],[-15056,-7163],[12194,-18615],[-12102,-5861],[-1020,-9332],[5633,-4838],[15558,-853],[5511,-8806],[-20605,-1408],[-6333,-3140],[-2855,-13317],[3334,-5945],[13078,3235],[2336,-5365]],[[95928770,61472258],[-601,-38260],[981,-171726],[-844,-61903],[791,-64377],[-14,-116594],[-655,-32073],[585,-71402],[-166,-82008],[524,-169381],[-579,-88244],[1485,-57223],[-197,-116096],[-1058,-8093],[1666,-134796],[-1401,-120618],[1408,-235305],[-166,-37897],[784,-335516],[-580,-218051],[-1369,-83725],[84,-77658],[1019,-49738],[-829,-14076],[273,-120223],[3152,-49224],[-1332,-97736],[197,-130022],[-951,-12669],[-830,-75903],[169,-150364],[-830,-125473],[815,-7896],[228,-115422],[-822,-176179],[692,-167826],[-252,-71870],[8503,-5214],[4247,-22451],[-8669,-27035],[9972,-7915],[13510,-2889],[31688,15623],[13723,13496],[18178,-5711],[6660,10690],[9500,3039],[10146,-9978],[10450,-22151],[13946,-16692],[16388,-6321],[14903,16505],[11106,2870],[-1911,-31078],[11136,-29035],[4682,-20799],[1308,-24663],[6736,-12360]],[[72146143,5401057],[82764,-354103],[231206,-1172190],[6645,-19376],[0,-18305],[5290,-17986],[13245,-98953],[11806,-77967],[7992,-72818],[22280,-185867],[20383,-215191],[9735,-81635],[5588,-78350],[14424,-118067],[4202,-44862],[3790,-104235],[4635,-38579],[5626,-195469],[22501,-24609],[38766,-39591],[21815,-38974],[12498,-28303],[11600,-19824],[9889,-30704],[13534,-51801],[8783,-39743],[2207,-22292],[2732,-64218],[-4871,-52994],[-1712,-30899],[-8236,-52245],[-14988,-51061],[-6752,-29155],[-28276,-41488],[30408,-358820],[-214,0],[21086,-248671],[-259758,-11693],[-156719,-13813],[-8952,-5665],[3145,-23679],[1972,-50423],[-2582,-30226],[4369,-25638],[-9346,-8965],[418,-16036],[-3867,-7952],[-20543,-15671],[-46593,-22994],[-17871,928],[-10223,10606],[-1256,6893],[7156,34707],[7193,27055],[2961,26201],[-2094,12773],[-7574,6226],[-36681,-16598],[-20345,-3713],[-31589,13269],[-5931,6001],[-12177,21476],[-16023,9406],[-11449,-2129],[-3660,-20397],[-7857,-16055],[-8166,-6658],[-38318,-12621],[-18047,-8629],[-3304,-8430],[2817,-22103],[-5725,-6696],[-18458,-6114],[-23383,11534],[-25583,22113],[-8640,4474],[-28010,4989],[-13314,-4212],[-20871,6030],[-3266,13720],[-555,29222],[-4537,3890],[-21344,-1763],[-18967,-20123],[-29313,-20584],[-35152,-17303],[-12468,506],[-21267,16581],[-29479,-3151],[-28727,-19196],[-36789,-10044],[-15511,-6236],[-17797,-10925],[-10367,-9603],[-9157,-14198],[-3562,-19196],[-13450,-9294],[-50056,1237],[-10868,3874],[-19661,12500],[-24869,7700],[-43911,3498],[-53375,6704],[-23261,1172],[-14301,12023],[-10809,14047],[-14325,32701],[-8609,8046],[-19106,-6152],[-28286,-29737],[-3036,-13278],[9507,-15418],[27768,-27167],[26542,-13992],[17308,-2926],[5953,-7876],[-16686,-13101],[-4924,-18652],[12673,-12500],[14364,-20811],[8358,-36010],[-2352,-6808],[-25499,-2522],[-51967,10850],[-37395,703],[-11090,-5551],[-11806,-16899],[-10002,-4530],[-15543,4127],[-3876,5222],[-1012,15051],[-8274,9284],[-16753,2674],[-11622,-5589],[-7484,-14537],[-768,-28019],[3615,-17762],[-2199,-13467],[-13808,-14573],[-14553,-7446],[-11479,-797],[-13306,10682],[-6820,19936],[-12019,13157],[-21480,5412],[-13685,-5702],[-15109,-11610],[-25743,-36113],[-7361,-17978],[-1706,-13109],[3723,-37943],[-10291,-8468],[-32319,187],[-7551,7943],[-4293,13814],[-1014,16044],[-6301,37428],[-6523,3572],[-6753,-17179],[1850,-26474],[-1643,-11759],[-7117,-4033],[-18390,6602],[-4590,10757],[15230,68776],[-12392,7952],[-20658,-8712],[-26283,4688],[-23771,16890],[-11814,-3479],[-11327,-52235],[-19675,-32859],[-18741,-21616],[-46120,-33385],[-14864,-2259],[-13436,1857],[-18436,-1350],[-11212,-9932],[-2131,-14028],[7932,-23323],[-5877,-14912],[-12269,-1556],[-13990,5626],[-11488,-5419],[-7884,-16026],[7193,-11938],[13761,-8507],[41066,-18633],[7566,-5457],[2291,-13045],[-1781,-15924],[-6424,-24597],[-3905,-28613],[2352,-18174],[7626,-11459],[19244,-7831],[18192,2335],[22735,-4462],[9895,-9660],[-4954,-15071],[-18817,-8035],[-27775,-751],[-24365,-7708],[-17652,-9519],[-23459,-18164],[-13244,-17452],[-1051,-14443],[16038,-3498],[27349,-111],[30066,-3799],[20171,4454],[2550,8478],[10923,5373],[8966,-10006],[1134,-20058],[-4376,-21391],[-92,-18400],[11661,-30421],[6723,-12088],[-3168,-11374],[-11866,-9116],[-4810,7896],[3258,10372],[-3107,14563],[-10275,3433],[-9165,-5674],[-10116,-12848],[-5549,-14770],[-13297,-16579],[-21519,-48334],[-9088,-9987],[-19288,-9021],[-26595,-5993],[-6114,-17433],[7742,-5438],[18253,168],[19524,3254],[15284,-1707],[24312,-11291],[6150,-7904],[4232,-17621],[-3264,-4333],[-23581,8393],[-14059,-1912],[-9233,-6256],[-10171,-19055],[-1240,-17396],[2079,-37614],[-10238,-18408],[-25607,4256],[-31298,-7473],[-10657,1378],[-10033,8309],[-21457,27252],[-7140,2822],[-8433,-10353],[-3060,-20565],[-10840,-15230],[-30834,-16317],[-21899,7784],[-20209,11160],[-21481,-5327],[-6150,-6021],[-14958,-2569],[-11044,6235],[-3463,12473],[16090,8759],[17287,-4041],[16045,12059],[3845,11694],[-4987,30000],[4042,14244],[11707,28255],[-14843,16796],[-7710,-704],[-14295,-11196],[-11470,-26296],[-4081,-25300],[-5853,-6613],[-8747,2054],[-10320,13195],[-8746,17996],[-3905,15135],[2663,10504],[15247,30637],[-707,15792],[-7140,19168],[10526,25179],[-1180,7802],[-9964,5655],[-12406,-5063],[-10855,-14893],[-7909,-17404],[-4156,-24166],[2079,-33845],[-6760,-40325],[7772,-36910],[10161,-10728],[-959,-9294],[-8768,-7540],[-24487,4642],[-50223,-9828],[-26419,9378],[-22637,24082],[-36857,45951],[-12939,10418],[-31505,-14628],[-15962,-2411],[-11349,5167],[-11327,17396],[-2520,8478],[13191,31668],[-7717,13823],[-9279,1932],[-19510,-6648],[-24638,-17716],[-13975,2401],[2504,22489],[16936,24597],[13898,-1406],[9113,2916],[5549,37154],[14302,14246],[7056,14395],[1674,10822],[-3380,11477],[-22362,31670],[-7825,1041],[-10863,-6049],[-7886,-19000],[-11060,-16843],[-9726,-4969],[-14881,5841],[-6989,15897],[6083,22496],[7231,47255],[4399,17518],[829,15416],[-4223,28940],[-14897,5806],[-13565,-3348],[-34023,-15334],[-14310,-11825],[-19007,-31799],[-12727,-18240],[-21419,535],[-13564,8768],[-4871,14122],[555,15418],[11578,11102],[28398,17181],[7293,9472],[5237,27523],[-3273,14441],[-8678,5750],[-11242,-4136],[-17819,-19666],[-29907,-29681],[-35623,-29418],[-23566,-11769],[-12019,-1857],[-9104,4886],[541,11582],[9865,28846],[-3624,13570],[-13115,5654],[-33050,-42930],[-17354,-10700],[-17210,4004],[-1790,20114],[853,56182],[7346,43739],[631,27317],[-7276,26624],[-11418,730],[-24258,-37341],[-30234,-37951],[-38904,-30601],[-30287,-2034],[-43213,-11376],[-12763,12773],[-6304,19177],[-988,14527],[4451,38466],[-7611,37268],[-17050,18783],[-9439,14798],[-9255,37474],[-13329,7633],[-13533,-843],[-10618,9847],[-2093,33159],[5343,13100],[18184,23792],[3974,8468],[2199,20612],[-2490,8441],[-16669,6499],[-15542,-1145],[-40443,-11571],[-18253,2269],[-6371,5607],[-98,13674],[5047,10567],[18558,19628],[16936,21157],[5039,17723],[-952,13823],[-5191,4051],[-9553,-11112],[-6356,-18839],[-15658,-30432],[-7923,-8692],[-16114,5691],[-3577,18663],[981,48660],[-2436,15942],[-6903,15623],[-23391,15680],[-20880,7663],[-20848,2352],[-12627,-10155],[-5367,-8788],[-13466,-35663],[236,7343],[-176889,52610],[4818,8654],[32875,19103],[31490,20190],[15270,6209],[18838,1763],[17736,8383],[4186,6564],[389,26053],[-12057,34115],[-12910,12351],[-31185,6423],[-7361,-205],[-1993,-9687],[8258,-20922],[4453,-17780],[525,-15325],[-7527,-24212],[-14851,-15831],[-18017,-6536],[-5473,3583],[-8319,19383],[-3791,19290],[-4727,40888],[-9469,19618],[-3867,13663],[-373,23557],[8016,27045],[1278,16280],[-10444,9190],[-28467,-10943],[-12925,-562],[-24418,4764],[-18991,-3987],[-10795,-7868],[-14340,-27476],[-11402,-8216],[-18406,1239],[-8472,7653],[-14408,31058],[-7558,9116],[-18962,14619],[-18306,21184],[-1514,8843],[14059,27965],[7261,27992],[920,29446],[-3790,8769],[-14035,7128],[-22067,1499],[-22882,8666],[-13465,12097],[-12673,26032],[-6592,21400],[2665,23024],[-6395,9630],[-16753,9594],[-10412,-1004],[-18154,-7400],[-24479,-5345],[-24541,5617],[-10314,15155],[4681,28030],[10976,22808],[14958,6723],[32752,-11038],[14554,-16954],[1995,-10092],[7018,-6863],[20598,6977],[10214,16402],[8624,35531],[2794,23080],[-11098,22506],[-8030,-2692],[-15505,-36236],[-13695,-14337],[-16707,-5590],[-12886,3245],[-4613,7492],[1187,11883],[13382,37023],[693,19759],[-4910,9575],[-6561,2118],[-16480,-6649],[-15619,-24194],[1088,-9537],[-5899,-8365],[-15223,-9940],[-7118,1274],[-13129,12145],[-25766,31463],[-37313,19870],[-8837,7203],[-12500,16111],[-8760,18727],[2238,7878],[8304,4707],[22576,-2007],[19373,-5551],[22340,3282],[12742,12519],[7155,13569],[2785,16983],[-4407,31528],[-7330,17396],[-17393,23399],[-35332,30411],[-5869,-2214],[-27761,-28385],[-6866,-11994],[-4155,-26502],[6652,-17208],[-6371,-21926],[-13108,742],[-16563,21643],[-23139,12923],[-13442,1940],[-41248,-11214],[-13922,-1099],[-9872,10128],[6743,41703],[12072,15990],[22874,18886],[8244,10250],[7908,19103],[1705,19477],[-15398,43851],[-7704,-1342],[-5084,-10099],[-617,-39977],[-6035,-16618],[-18041,-15726],[-6347,-1886],[-9850,11977],[-6310,28940],[-9073,8093],[-15681,-4568],[-11997,-11291],[-7275,-22422],[4071,-7381],[16648,-10052],[-2139,-10503],[-15514,-11394],[-40653,609],[-31825,6865],[-15474,7080],[-14723,12023],[-22918,34519],[-8167,0],[-4224,-9687],[-1653,-20285],[3045,-19139],[7634,-20828],[17660,-19224],[1917,-11845],[-4215,-18549],[-9889,-5767],[-8494,2569],[-13626,23942],[-16592,15520],[-5869,23022],[4628,29793],[-420,17433],[-11637,2419],[-18786,-2943],[-11928,6667],[-8578,29005],[-10992,20340],[-14264,8375],[-10146,-11356],[-5108,-17097],[-1628,-27617],[2093,-25442],[-2072,-25356],[-15931,-6266],[-23999,-3216],[-23040,-12660],[-25341,-6357],[-2709,6301],[6569,16242],[13084,15904],[4697,15146],[-3395,10803],[-7977,7980],[-14751,2542],[-33257,-5017],[-23261,2870],[-12985,5138],[-30957,3649],[-3951,-6359],[4035,-22431],[-1387,-5561],[18809,-9771],[18466,6555],[18816,-254],[16373,-13447],[2093,-15672],[-9087,-20856],[-32960,7053],[-24038,-7972],[-16965,-9912],[-12316,1107],[-3250,11844],[5792,18512],[8145,12238],[988,18699],[-11440,6592],[-22493,3621],[-12749,5270],[-17347,-7418],[-8579,-15876],[-12269,-9641],[-9721,310],[-4993,6368],[6447,20546],[-9203,18062],[-17926,3301],[-15093,-6078],[-34009,-40023],[-13535,-6977],[-9757,-217],[-14021,9631],[-5412,20379],[7863,57851],[-1165,7455],[4879,43728],[-3843,17171],[-8366,15276],[-13000,15548],[-16274,14856],[-13663,543],[-22858,-13026],[-24838,-8937],[-5343,-9987],[-564,-16899],[4210,-15576],[10923,-13280],[22697,-10118],[18748,-14797],[-5869,-14752],[-20795,-5701],[-20886,-19590],[-3638,-19713],[-8267,-6929],[-14189,5682],[-12879,27355],[-5328,5533],[-16434,6901],[-34062,-7493],[-15801,-150],[-15833,7588],[-9979,8168],[-27584,41280],[-4629,16158],[2444,17368],[13076,23537],[2603,11741],[8176,6340],[30089,-2353],[8092,3769],[4299,9491],[-8113,23941],[-17164,16083],[-9440,3311],[-25163,-8029],[-13153,2908],[-11038,18718],[-3402,43916],[-10770,8103],[-19174,-5450],[-36119,-20640],[-9294,-9050],[-11158,-20049],[-5016,-23500],[707,-35861],[8411,-18933],[-3006,-9201],[-14021,-7699],[-16479,4024],[-6873,9461],[1317,18982],[10213,37294],[397,16665],[-10375,19665],[-19508,9331],[-20682,253],[-28878,-3516],[-8739,-8890],[-9767,-26728],[-11850,-23894],[-23414,-22206],[-2953,-12078],[-14357,-1388],[-10031,14525],[-2322,33019],[-8488,12455],[-15093,7474],[-22355,3563],[-55345,-13833],[-24213,2307],[-31247,8449],[-27584,-3168],[-6745,11872],[-2885,34023],[-3996,24446],[4027,16655],[14120,22273],[4415,22376],[-10445,25507],[-8525,2298]],[[58468897,43712669],[914,21193],[-702,556626],[-493,96807],[-656,474036],[-1043,39171],[2749,457212],[1651,108444],[-1089,158905],[1233,108257],[-274,81062],[959,151469],[1447,106175],[-5100,1126718],[-716,47488],[-1773,432156]],[[27433398,91764300],[-853,23970],[2389,934708],[-615,237482],[2184,389580],[-5892,45406],[1545,165434],[-3569,104571],[6713,118273],[1499,348936],[-532,258498],[1126,164851],[350,409442],[1211,339418],[0,517596]],[[56907090,6888125],[-13435,89614],[-10085,73333],[-22509,152923],[-19798,142373],[-40783,77911],[-72061,142588],[-5061,10964],[-50907,99357],[-2131,5805],[-13809,69254],[-19440,91826],[-12438,63226],[-21783,102368],[-4278,24943],[1156,48175],[5999,200007],[769,40869],[-236270,196708],[-577,1069],[-12355,270614],[-6073,127106],[-150439,257007],[-38454,200879],[-10299,57431],[-90260,139166],[-19654,11618],[-92048,57655],[-104129,-4502],[-10703,216],[-49635,7953],[-53922,75687],[-15566,32578],[-20833,11403],[-2138,15267],[17704,42800],[2724,52695],[33470,154197],[-8762,52685],[-13045,32906],[-39339,31603],[-56668,32034],[-74977,21053],[-34275,1277],[-72265,35456],[-44986,1061],[-48106,20837],[-43959,30328],[-45746,55937],[-23550,35280],[-17119,63881],[-19266,56557],[-5441,34416],[6043,28817],[21046,23867],[69169,41900],[28847,28161],[5473,36554],[-14020,21730],[-48509,9705],[-19479,12473],[-36621,47761],[-87656,92502],[-16960,51034],[-8760,39357],[-10915,23680],[-20308,19478],[-11038,22056],[-21700,30862],[-21930,-1247],[-15909,-5055],[-13586,-8000],[-20248,-20931],[-13648,-8074],[-10093,-10128],[-16524,-9358],[-21800,3891],[-19038,11300],[-24159,23126],[-37382,39293],[-7032,9105],[-11928,30543],[3463,27769],[7078,34294],[5147,14882],[1673,18689],[-3302,48287],[-10428,47320],[-11281,38018],[-21466,52262],[-7443,24242],[-4576,28329],[-6006,21410],[0,16054],[9751,38411],[11463,14798],[36393,34324],[31810,21418],[26076,21719],[12605,8187],[7743,9762],[8890,20781],[31154,96113],[860,15473],[-8973,21007],[-18703,18116],[-14317,9716],[-29039,32353],[-11023,20003],[-16494,23858],[921,22862],[6188,15352],[22135,32888],[18687,23743],[18085,29418],[16876,51588],[3662,5513],[-100,58480],[-2999,17330],[-2101,39285],[-22257,24016],[-9399,17620],[-16831,18652],[-5960,10982],[-11151,33694],[983,26333],[10017,18980],[11326,11497],[33812,18652],[12072,11263],[11258,19807],[4063,27157],[9082,39799],[4826,40035],[5578,34424],[161,28829],[-13655,71608],[-16617,71534],[-4986,32164],[-13130,45576],[-2930,25423],[4346,48259],[-13077,22815],[-19403,15540],[-27074,29998],[-9735,6818],[-12135,15905],[-14857,36864],[75,20049],[17462,53867],[11623,51906],[502,31856],[2276,16346],[-320,31556],[-3509,43625],[-5852,15867],[-15590,20855],[-3379,9445],[-17537,29268],[-21146,22890],[-5533,13092],[-13518,21099],[-10681,9490]]],"transform":{"scale":[1.3137607131376071e-7,1.0663540106635398e-7],"translate":[-106.645646,25.837164]}}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment