Skip to content

Instantly share code, notes, and snippets.

@emeeks
Last active August 29, 2015 14:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save emeeks/2d4513153f4896dad944 to your computer and use it in GitHub Desktop.
Save emeeks/2d4513153f4896dad944 to your computer and use it in GitHub Desktop.
Canvas Transform 2

If you want to use d3.geo.path() with transform zoom, then you simply create a new projection that is identical in settings to your current projection except with its scale multiplied by the scale of your zoom behavior and the projection's translate modified by the translate of your zoom.

You'll notice that this example, unlike the last one, does not use dataUrl to pass the canvas drawn data to an svg:image. Even though this seems practical in drawing raster data (because you can keep it in the SVG and adjust the drawing order accordingly) it is significantly slower (and sometimes buggy) than just having a canvas element on top of your SVG element.

<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>Canvas and Transform Zoom 2</title>
<meta charset="utf-8" />
</head>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="topojson.js" type="text/javascript">
</script>
<script src="tile.js" type="text/javascript">
</script>
<body>
<footer>
<script>
topoData =[];
d3.json("new_routes.topojson", function(error, data) {
console.log(topoData)
topoData = topojson.feature(data, data.objects.base_routes).features;
drawMap();
})
function drawMap() {
var tile = d3.geo.tile().size([500,500]);
projection = d3.geo.mercator()
.scale((1 << 13) / 2 / Math.PI)
.scale(4096);
path = d3.geo.path()
.projection(projection);
var c = projection([12, 42]);
zoom = d3.behavior.zoom()
.scale(projection.scale() * 2 * Math.PI)
.translate([500 - c[0], 500 - c[1]])
.on("zoom", zoomed)
;
projection
.scale(1 / 2 / Math.PI)
.translate([0, 0]);
selectedDiv = d3.select("body").append("div").style("height", "500px").style("width", "500px");
canvasCanvas = selectedDiv.append("canvas").style("height", "500px").style("width", "500px").style("pointer-events", "none")
.attr("height", 500).attr("width", 500).style("position", "fixed").style("z-index", 99);
mapSVG = selectedDiv.append("svg").style("height", "500px").style("width", "500px")
.call(zoom);
canvasImage = mapSVG.append("g").append("image").attr("height", 500).attr("width", 500).style("height", "500px").style("width", "500px");
tileG = mapSVG.insert("g", "g");
// MAP ZOOMING
function zoomed() {
renderTiles();
renderCanvasFeatures();
}
function renderTiles() {
//Tile drawing needs to only draw the topmost baselayer, or designate base layers through the layer control dialogue
var tiles = tile
.scale(zoom.scale())
.translate(zoom.translate())
();
var image = tileG
.attr("transform", "scale(" + tiles.scale + ")translate(" + tiles.translate + ")")
.selectAll("image")
.data(tiles, function(d) { return d; });
image.exit()
.remove();
image.enter().append("image")
.attr("xlink:href", function(d) { return "http://" + ["a", "b", "c", "d"][Math.random() * 4 | 0] + ".tiles.mapbox.com/v3/examples.map-h67hf2ic/" + d[2] + "/" + d[0] + "/" + d[1] + ".png"; })
.attr("width", 1)
.attr("height", 1)
.attr("x", function(d) { return d[0]; })
.attr("y", function(d) { return d[1]; });
}
zoomed();
}
function renderCanvasFeatures() {
var context = canvasCanvas.node().getContext("2d");
context.clearRect(0,0,500,500);
context.strokeStyle = "rgba(0, 0, 0, 0.5)";
context.lineWidth = 2;
canvasProjection = d3.geo.mercator().scale(projection.scale() * zoom.scale()).translate(zoom.translate());
canvasPath = d3.geo.path().projection(canvasProjection);
for (x in topoData) {
context.beginPath(), canvasPath.context(context)(topoData[x]), context.stroke();
}
}
</script>
</footer>
</body>
</html>
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","objects":{"base_routes":{"type":"GeometryCollection","crs":{"type":"name","properties":{"name":"urn:ogc:def:crs:OGC:1.3:CRS84"}},"geometries":[{"type":"LineString","properties":{"gid":975559,"sid":50001,"tid":50056,"t":"road","e":1.91,"s":1.82},"arcs":[0]},{"type":"LineString","properties":{"gid":974665,"sid":50001,"tid":50100,"t":"road","e":1.75,"s":1.67},"arcs":[1]},{"type":"LineString","properties":{"gid":975815,"sid":50001,"tid":50293,"t":"road","e":2.3,"s":2.19},"arcs":[2,3,4]},{"type":"LineString","properties":{"gid":976124,"sid":50001,"tid":50473,"t":"road","e":7.89,"s":7.51},"arcs":[5,4]},{"type":"LineString","properties":{"gid":974809,"sid":50002,"tid":50275,"t":"road","e":3.23,"s":3.07},"arcs":[6]},{"type":"LineString","properties":{"gid":975860,"sid":50003,"tid":50052,"t":"road","e":3.82,"s":3.64},"arcs":[7]},{"type":"LineString","properties":{"gid":975994,"sid":50003,"tid":50182,"t":"road","e":2.84,"s":2.71},"arcs":[8,9,10]},{"type":"LineString","properties":{"gid":974542,"sid":50004,"tid":50034,"t":"road","e":1.6,"s":1.53},"arcs":[11]},{"type":"LineString","properties":{"gid":976119,"sid":50004,"tid":50747,"t":"road","e":0.92,"s":0.88},"arcs":[12]},{"type":"LineString","properties":{"gid":975980,"sid":50005,"tid":50108,"t":"road","e":5.02,"s":4.79},"arcs":[13]},{"type":"LineString","properties":{"gid":975983,"sid":50005,"tid":50248,"t":"road","e":6.88,"s":6.55},"arcs":[14]},{"type":"LineString","properties":{"gid":975085,"sid":50005,"tid":50332,"t":"road","e":4.48,"s":4.27},"arcs":[15]},{"type":"LineString","properties":{"gid":976002,"sid":50006,"tid":50019,"t":"road","e":4.23,"s":4.03},"arcs":[16,17,18]},{"type":"LineString","properties":{"gid":974420,"sid":50006,"tid":50300,"t":"road","e":1.74,"s":1.66},"arcs":[19]},{"type":"LineString","properties":{"gid":974551,"sid":50007,"tid":50069,"t":"road","e":0.82,"s":0.78},"arcs":[20,21]},{"type":"LineString","properties":{"gid":975683,"sid":50007,"tid":50410,"t":"road","e":2.66,"s":2.53},"arcs":[22]},{"type":"LineString","properties":{"gid":975164,"sid":50008,"tid":50302,"t":"road","e":4.15,"s":3.96},"arcs":[23]},{"type":"LineString","properties":{"gid":974689,"sid":50009,"tid":50069,"t":"road","e":1.05,"s":1},"arcs":[20,24,25]},{"type":"LineString","properties":{"gid":974709,"sid":50009,"tid":50081,"t":"road","e":2.19,"s":2.08},"arcs":[26,25]},{"type":"LineString","properties":{"gid":975440,"sid":50009,"tid":50193,"t":"road","e":1.77,"s":1.68},"arcs":[27]},{"type":"LineString","properties":{"gid":975215,"sid":50010,"tid":50081,"t":"road","e":0.86,"s":1.42},"arcs":[28]},{"type":"LineString","properties":{"gid":974890,"sid":50010,"tid":50132,"t":"road","e":2.46,"s":2.94},"arcs":[29]},{"type":"LineString","properties":{"gid":975913,"sid":50012,"tid":50063,"t":"road","e":8.31,"s":7.91},"arcs":[30]},{"type":"LineString","properties":{"gid":974967,"sid":50012,"tid":50077,"t":"road","e":0.89,"s":0.85},"arcs":[31,32,33,34]},{"type":"LineString","properties":{"gid":976003,"sid":50012,"tid":50125,"t":"road","e":3.54,"s":3.37},"arcs":[35]},{"type":"LineString","properties":{"gid":975665,"sid":50013,"tid":50211,"t":"road","e":1.9,"s":1.81},"arcs":[36]},{"type":"LineString","properties":{"gid":976006,"sid":50013,"tid":50763,"t":"road","e":3.39,"s":4.43},"arcs":[37]},{"type":"LineString","properties":{"gid":975773,"sid":50014,"tid":50094,"t":"road","e":2.06,"s":1.96},"arcs":[38]},{"type":"LineString","properties":{"gid":974794,"sid":50014,"tid":50405,"t":"road","e":1.61,"s":1.53},"arcs":[39]},{"type":"LineString","properties":{"gid":975214,"sid":50015,"tid":50132,"t":"road","e":1.36,"s":1.9},"arcs":[40]},{"type":"LineString","properties":{"gid":974619,"sid":50015,"tid":50393,"t":"road","e":2.23,"s":2.73},"arcs":[41,42]},{"type":"LineString","properties":{"gid":974380,"sid":50016,"tid":50354,"t":"road","e":1.01,"s":0.97},"arcs":[43]},{"type":"LineString","properties":{"gid":976005,"sid":50016,"tid":50368,"t":"road","e":13.02,"s":12.4},"arcs":[44]},{"type":"LineString","properties":{"gid":975709,"sid":50017,"tid":50196,"t":"road","e":2.18,"s":2.07},"arcs":[45,46,47]},{"type":"LineString","properties":{"gid":974627,"sid":50017,"tid":50291,"t":"road","e":10.01,"s":9.53},"arcs":[48,49]},{"type":"LineString","properties":{"gid":975467,"sid":50019,"tid":50204,"t":"road","e":0.81,"s":0.77},"arcs":[50]},{"type":"LineString","properties":{"gid":975568,"sid":50020,"tid":50209,"t":"road","e":1.5,"s":1.43},"arcs":[51]},{"type":"LineString","properties":{"gid":975919,"sid":50020,"tid":50746,"t":"road","e":0.84,"s":0.8},"arcs":[52]},{"type":"LineString","properties":{"gid":975487,"sid":50021,"tid":50260,"t":"road","e":3.79,"s":3.61},"arcs":[53,54]},{"type":"LineString","properties":{"gid":974570,"sid":50021,"tid":50390,"t":"road","e":1.25,"s":1.19},"arcs":[55,56]},{"type":"LineString","properties":{"gid":975063,"sid":50022,"tid":50110,"t":"road","e":3.17,"s":3.02},"arcs":[57]},{"type":"LineString","properties":{"gid":975770,"sid":50022,"tid":50171,"t":"road","e":1.76,"s":1.68},"arcs":[58]},{"type":"LineString","properties":{"gid":975601,"sid":50023,"tid":50039,"t":"road","e":7.7,"s":7.33},"arcs":[59]},{"type":"LineString","properties":{"gid":975602,"sid":50023,"tid":50184,"t":"road","e":4.24,"s":4.04},"arcs":[60]},{"type":"LineString","properties":{"gid":975489,"sid":50023,"tid":50219,"t":"road","e":4.71,"s":4.49},"arcs":[61,62]},{"type":"LineString","properties":{"gid":974774,"sid":50023,"tid":50271,"t":"road","e":10.5,"s":10},"arcs":[63,62]},{"type":"LineString","properties":{"gid":975153,"sid":50023,"tid":50376,"t":"road","e":5.61,"s":5.34},"arcs":[64]},{"type":"LineString","properties":{"gid":975989,"sid":50024,"tid":50225,"t":"road","e":3.02,"s":2.87},"arcs":[65]},{"type":"LineString","properties":{"gid":974408,"sid":50024,"tid":50454,"t":"road","e":0.82,"s":0.78},"arcs":[66]},{"type":"LineString","properties":{"gid":974589,"sid":50024,"tid":50644,"t":"road","e":1.64,"s":1.56},"arcs":[67,68]},{"type":"LineString","properties":{"gid":975516,"sid":50024,"tid":50767,"t":"road","e":0.62,"s":0.59},"arcs":[69,70,71,68]},{"type":"LineString","properties":{"gid":975486,"sid":50025,"tid":50202,"t":"road","e":5.04,"s":4.8},"arcs":[72]},{"type":"LineString","properties":{"gid":976007,"sid":50025,"tid":50437,"t":"road","e":8.7,"s":8.29},"arcs":[73,74]},{"type":"LineString","properties":{"gid":974519,"sid":50025,"tid":50739,"t":"road","e":2.64,"s":2.52},"arcs":[75,76,77]},{"type":"LineString","properties":{"gid":975491,"sid":50026,"tid":50170,"t":"road","e":1.56,"s":1.49},"arcs":[78,79,80,81,82,83]},{"type":"LineString","properties":{"gid":974599,"sid":50026,"tid":50766,"t":"road","e":1.71,"s":1.63},"arcs":[84,85]},{"type":"LineString","properties":{"gid":975706,"sid":50026,"tid":50771,"t":"road","e":1.27,"s":1.21},"arcs":[86,87,83]},{"type":"LineString","properties":{"gid":974799,"sid":50027,"tid":50431,"t":"road","e":3.67,"s":3.49},"arcs":[88]},{"type":"LineString","properties":{"gid":975321,"sid":50027,"tid":50739,"t":"road","e":1.75,"s":1.66},"arcs":[89]},{"type":"LineString","properties":{"gid":975436,"sid":50028,"tid":50192,"t":"road","e":1.42,"s":1.35},"arcs":[90,91,92,93]},{"type":"LineString","properties":{"gid":974538,"sid":50028,"tid":50254,"t":"road","e":1.92,"s":1.83},"arcs":[94]},{"type":"LineString","properties":{"gid":975021,"sid":50029,"tid":50214,"t":"road","e":2.76,"s":2.63},"arcs":[95,96]},{"type":"LineString","properties":{"gid":975603,"sid":50029,"tid":50301,"t":"road","e":2.78,"s":2.65},"arcs":[97,98,99]},{"type":"LineString","properties":{"gid":974853,"sid":50029,"tid":50725,"t":"road","e":8.82,"s":8.4},"arcs":[100]},{"type":"LineString","properties":{"gid":975583,"sid":50030,"tid":50318,"t":"road","e":2.78,"s":2.64},"arcs":[101]},{"type":"LineString","properties":{"gid":974637,"sid":50030,"tid":50757,"t":"road","e":0.33,"s":0.31},"arcs":[102]},{"type":"LineString","properties":{"gid":975743,"sid":50031,"tid":50040,"t":"road","e":2.45,"s":2.33},"arcs":[103,104]},{"type":"LineString","properties":{"gid":974685,"sid":50031,"tid":50176,"t":"road","e":3.88,"s":3.69},"arcs":[105]},{"type":"LineString","properties":{"gid":975493,"sid":50031,"tid":50250,"t":"road","e":0.96,"s":0.91},"arcs":[106,107]},{"type":"LineString","properties":{"gid":974526,"sid":50032,"tid":50156,"t":"road","e":3.07,"s":2.92},"arcs":[108,109,110,111,112,113,114]},{"type":"LineString","properties":{"gid":973947,"sid":50032,"tid":50186,"t":"hires","e":0.5,"s":1.97},"arcs":[115,116,117,118,119,120,121,122]},{"type":"LineString","properties":{"gid":975034,"sid":50032,"tid":50186,"t":"road","e":2.07,"s":1.97},"arcs":[-123,123,-121,124,125,-118,126,-116]},{"type":"LineString","properties":{"gid":975578,"sid":50032,"tid":50365,"t":"road","e":2.87,"s":2.74},"arcs":[127,128,129,130]},{"type":"LineString","properties":{"gid":974109,"sid":50032,"tid":51487,"t":"hires","e":0.5,"s":0.8},"arcs":[-115,131,132]},{"type":"LineString","properties":{"gid":974185,"sid":50032,"tid":51554,"t":"hires","e":0.5,"s":0.28},"arcs":[-131,133]},{"type":"LineString","properties":{"gid":974343,"sid":50032,"tid":51586,"t":"hires","e":0.5,"s":0.15},"arcs":[-131,-130]},{"type":"LineString","properties":{"gid":975390,"sid":50033,"tid":50068,"t":"road","e":2.39,"s":2.28},"arcs":[134,135]},{"type":"LineString","properties":{"gid":975076,"sid":50033,"tid":50088,"t":"road","e":4.62,"s":4.4},"arcs":[136]},{"type":"LineString","properties":{"gid":975350,"sid":50033,"tid":50371,"t":"road","e":3.11,"s":2.96},"arcs":[137,135]},{"type":"LineString","properties":{"gid":975439,"sid":50034,"tid":50166,"t":"road","e":3.71,"s":3.53},"arcs":[138]},{"type":"LineString","properties":{"gid":974539,"sid":50034,"tid":50209,"t":"road","e":1.5,"s":1.43},"arcs":[139]},{"type":"LineString","properties":{"gid":975282,"sid":50034,"tid":50383,"t":"road","e":1.46,"s":1.39},"arcs":[140]},{"type":"LineString","properties":{"gid":974708,"sid":50035,"tid":50085,"t":"road","e":2.67,"s":2.55},"arcs":[141,142,143,144]},{"type":"LineString","properties":{"gid":974465,"sid":50035,"tid":50748,"t":"road","e":0.53,"s":0.51},"arcs":[145]},{"type":"LineString","properties":{"gid":975149,"sid":50036,"tid":50319,"t":"road","e":10.66,"s":10.16},"arcs":[146,147,148]},{"type":"LineString","properties":{"gid":975579,"sid":50036,"tid":50531,"t":"road","e":1.47,"s":1.4},"arcs":[149,148]},{"type":"LineString","properties":{"gid":974697,"sid":50037,"tid":50040,"t":"road","e":2.02,"s":1.93},"arcs":[150,151]},{"type":"LineString","properties":{"gid":975593,"sid":50037,"tid":50406,"t":"road","e":3.31,"s":3.15},"arcs":[152,153,154,155,156,157,158,159,160]},{"type":"LineString","properties":{"gid":974856,"sid":50038,"tid":50225,"t":"road","e":4.31,"s":4.11},"arcs":[161]},{"type":"LineString","properties":{"gid":974427,"sid":50038,"tid":50719,"t":"road","e":0.83,"s":0.79},"arcs":[162]},{"type":"LineString","properties":{"gid":975548,"sid":50039,"tid":50404,"t":"road","e":4.05,"s":3.86},"arcs":[163,164]},{"type":"LineString","properties":{"gid":974443,"sid":50040,"tid":50250,"t":"road","e":3.19,"s":3.04},"arcs":[106,165,-104]},{"type":"LineString","properties":{"gid":975998,"sid":50040,"tid":50269,"t":"road","e":1.05,"s":1},"arcs":[166]},{"type":"LineString","properties":{"gid":975829,"sid":50040,"tid":50407,"t":"road","e":6.77,"s":6.44},"arcs":[167,168,169]},{"type":"LineString","properties":{"gid":975110,"sid":50041,"tid":50099,"t":"road","e":3.86,"s":3.68},"arcs":[170,171,172,173,174,175,176,177]},{"type":"LineString","properties":{"gid":975492,"sid":50041,"tid":50277,"t":"road","e":3.63,"s":3.45},"arcs":[178]},{"type":"LineString","properties":{"gid":976070,"sid":50041,"tid":50459,"t":"road","e":4.9,"s":4.66},"arcs":[179]},{"type":"LineString","properties":{"gid":974654,"sid":50042,"tid":50171,"t":"road","e":1.57,"s":1.5},"arcs":[180,181]},{"type":"LineString","properties":{"gid":975964,"sid":50042,"tid":50172,"t":"road","e":2.18,"s":2.07},"arcs":[182,183,184]},{"type":"LineString","properties":{"gid":975580,"sid":50042,"tid":50323,"t":"road","e":1.76,"s":1.67},"arcs":[185,183,184]},{"type":"LineString","properties":{"gid":974524,"sid":50043,"tid":50122,"t":"road","e":1.84,"s":1.75},"arcs":[186]},{"type":"LineString","properties":{"gid":975960,"sid":50043,"tid":50174,"t":"road","e":2.37,"s":2.26},"arcs":[187]},{"type":"LineString","properties":{"gid":974569,"sid":50045,"tid":50349,"t":"road","e":1.23,"s":1.17},"arcs":[188]},{"type":"LineString","properties":{"gid":975429,"sid":50045,"tid":50753,"t":"road","e":2.15,"s":2.05},"arcs":[189]},{"type":"LineString","properties":{"gid":975733,"sid":50046,"tid":50074,"t":"road","e":1.2,"s":1.14},"arcs":[190,191]},{"type":"LineString","properties":{"gid":975735,"sid":50046,"tid":50181,"t":"road","e":0.92,"s":0.88},"arcs":[192,191]},{"type":"LineString","properties":{"gid":974445,"sid":50046,"tid":50243,"t":"road","e":1.73,"s":1.65},"arcs":[193,191]},{"type":"LineString","properties":{"gid":975387,"sid":50047,"tid":50110,"t":"road","e":0.98,"s":0.94},"arcs":[194]},{"type":"LineString","properties":{"gid":974915,"sid":50047,"tid":50324,"t":"road","e":3.33,"s":3.77},"arcs":[195]},{"type":"LineString","properties":{"gid":974905,"sid":50048,"tid":50082,"t":"road","e":9.65,"s":9.79},"arcs":[196,197]},{"type":"LineString","properties":{"gid":974906,"sid":50048,"tid":50084,"t":"road","e":8.11,"s":8.33},"arcs":[198,199]},{"type":"LineString","properties":{"gid":975029,"sid":50048,"tid":50289,"t":"road","e":2.08,"s":2.58},"arcs":[200]},{"type":"LineString","properties":{"gid":974832,"sid":50048,"tid":50470,"t":"road","e":6.71,"s":6.99},"arcs":[201,197]},{"type":"LineString","properties":{"gid":975433,"sid":50049,"tid":50110,"t":"road","e":1.94,"s":1.84},"arcs":[202]},{"type":"LineString","properties":{"gid":974506,"sid":50049,"tid":50205,"t":"road","e":1.33,"s":1.27},"arcs":[203]},{"type":"LineString","properties":{"gid":975494,"sid":50049,"tid":50226,"t":"road","e":3.57,"s":3.4},"arcs":[204]},{"type":"LineString","properties":{"gid":976080,"sid":50050,"tid":50162,"t":"road","e":0.7,"s":0.67},"arcs":[205]},{"type":"LineString","properties":{"gid":975460,"sid":50051,"tid":50066,"t":"road","e":2.16,"s":2.06},"arcs":[206,207,208]},{"type":"LineString","properties":{"gid":975060,"sid":50051,"tid":50358,"t":"road","e":1.86,"s":1.77},"arcs":[209,210,211]},{"type":"LineString","properties":{"gid":975267,"sid":50052,"tid":50298,"t":"road","e":3.37,"s":5.01},"arcs":[212]},{"type":"LineString","properties":{"gid":975074,"sid":50052,"tid":50413,"t":"road","e":3.84,"s":5.46},"arcs":[213]},{"type":"LineString","properties":{"gid":974678,"sid":50053,"tid":50062,"t":"road","e":3.31,"s":3.15},"arcs":[214,215]},{"type":"LineString","properties":{"gid":975719,"sid":50053,"tid":50083,"t":"road","e":5.85,"s":5.57},"arcs":[216]},{"type":"LineString","properties":{"gid":975978,"sid":50053,"tid":50099,"t":"road","e":0.92,"s":0.87},"arcs":[217,215]},{"type":"LineString","properties":{"gid":975497,"sid":50054,"tid":50157,"t":"road","e":1.96,"s":1.87},"arcs":[218]},{"type":"LineString","properties":{"gid":974564,"sid":50054,"tid":50337,"t":"road","e":3.33,"s":3.17},"arcs":[219]},{"type":"LineString","properties":{"gid":975921,"sid":50055,"tid":50348,"t":"road","e":1.93,"s":1.84},"arcs":[220]},{"type":"LineString","properties":{"gid":975069,"sid":50055,"tid":50395,"t":"road","e":4.47,"s":4.25},"arcs":[221,222]},{"type":"LineString","properties":{"gid":975122,"sid":50056,"tid":50314,"t":"road","e":4.42,"s":4.21},"arcs":[223,224]},{"type":"LineString","properties":{"gid":974597,"sid":50056,"tid":50370,"t":"road","e":1.12,"s":1.07},"arcs":[225]},{"type":"LineString","properties":{"gid":975604,"sid":50057,"tid":50059,"t":"road","e":6.5,"s":6.19},"arcs":[226]},{"type":"LineString","properties":{"gid":974723,"sid":50057,"tid":50157,"t":"road","e":4.24,"s":4.04},"arcs":[227,228]},{"type":"LineString","properties":{"gid":974462,"sid":50058,"tid":50727,"t":"road","e":3.77,"s":3.59},"arcs":[229]},{"type":"LineString","properties":{"gid":975281,"sid":50058,"tid":50744,"t":"road","e":5.23,"s":4.98},"arcs":[230]},{"type":"LineString","properties":{"gid":975576,"sid":50059,"tid":50091,"t":"road","e":1.67,"s":1.59},"arcs":[231]},{"type":"LineString","properties":{"gid":974719,"sid":50059,"tid":50142,"t":"road","e":4.4,"s":4.19},"arcs":[232]},{"type":"LineString","properties":{"gid":975606,"sid":50060,"tid":50299,"t":"road","e":6.87,"s":6.54},"arcs":[233,234,235]},{"type":"LineString","properties":{"gid":974616,"sid":50060,"tid":50368,"t":"road","e":4.09,"s":4.49},"arcs":[236,237]},{"type":"LineString","properties":{"gid":975490,"sid":50061,"tid":50142,"t":"road","e":3.3,"s":3.14},"arcs":[238]},{"type":"LineString","properties":{"gid":974713,"sid":50061,"tid":50231,"t":"road","e":6.27,"s":5.98},"arcs":[239]},{"type":"LineString","properties":{"gid":976131,"sid":50061,"tid":50774,"t":"road","e":4.24,"s":4.04},"arcs":[240]},{"type":"LineString","properties":{"gid":974572,"sid":50062,"tid":50424,"t":"road","e":1.82,"s":1.73},"arcs":[241]},{"type":"LineString","properties":{"gid":974608,"sid":50063,"tid":50157,"t":"road","e":4.24,"s":4.04},"arcs":[242]},{"type":"LineString","properties":{"gid":975936,"sid":50063,"tid":50270,"t":"road","e":2.79,"s":2.66},"arcs":[243]},{"type":"LineString","properties":{"gid":974622,"sid":50064,"tid":50233,"t":"road","e":2.35,"s":2.23},"arcs":[244]},{"type":"LineString","properties":{"gid":975946,"sid":50064,"tid":50333,"t":"road","e":3.34,"s":3.18},"arcs":[245]},{"type":"LineString","properties":{"gid":974687,"sid":50065,"tid":50167,"t":"road","e":5.22,"s":4.97},"arcs":[246]},{"type":"LineString","properties":{"gid":975985,"sid":50065,"tid":50379,"t":"road","e":3.43,"s":3.26},"arcs":[247]},{"type":"LineString","properties":{"gid":975481,"sid":50066,"tid":50086,"t":"road","e":3.75,"s":3.57},"arcs":[248,249]},{"type":"LineString","properties":{"gid":974562,"sid":50066,"tid":50102,"t":"road","e":2.5,"s":2.38},"arcs":[250,-207]},{"type":"LineString","properties":{"gid":976011,"sid":50067,"tid":50092,"t":"road","e":1.61,"s":1.53},"arcs":[251,252]},{"type":"LineString","properties":{"gid":975386,"sid":50067,"tid":50106,"t":"road","e":1.95,"s":1.85},"arcs":[253,254]},{"type":"LineString","properties":{"gid":975046,"sid":50067,"tid":50161,"t":"road","e":1.39,"s":1.33},"arcs":[255,256,254]},{"type":"LineString","properties":{"gid":975449,"sid":50068,"tid":50239,"t":"road","e":3.36,"s":3.2},"arcs":[257]},{"type":"LineString","properties":{"gid":976078,"sid":50068,"tid":50372,"t":"road","e":2.3,"s":2.19},"arcs":[258]},{"type":"LineString","properties":{"gid":974390,"sid":50069,"tid":50113,"t":"road","e":0.55,"s":0.52},"arcs":[259,260,-261]},{"type":"LineString","properties":{"gid":974745,"sid":50069,"tid":50381,"t":"road","e":2.67,"s":2.54},"arcs":[261,-261]},{"type":"LineString","properties":{"gid":974897,"sid":50070,"tid":50130,"t":"road","e":13.27,"s":12.64},"arcs":[262,263]},{"type":"LineString","properties":{"gid":974567,"sid":50072,"tid":50092,"t":"road","e":3.53,"s":3.36},"arcs":[264]},{"type":"LineString","properties":{"gid":975451,"sid":50072,"tid":50139,"t":"road","e":2.57,"s":2.45},"arcs":[265,266]},{"type":"LineString","properties":{"gid":974403,"sid":50072,"tid":50771,"t":"road","e":4.06,"s":3.86},"arcs":[267]},{"type":"LineString","properties":{"gid":975949,"sid":50073,"tid":50405,"t":"road","e":2.78,"s":2.65},"arcs":[268]},{"type":"LineString","properties":{"gid":975229,"sid":50073,"tid":50643,"t":"road","e":1.18,"s":1.13},"arcs":[269]},{"type":"LineString","properties":{"gid":975730,"sid":50074,"tid":50213,"t":"road","e":1.51,"s":1.44},"arcs":[270,271]},{"type":"LineString","properties":{"gid":975430,"sid":50075,"tid":50093,"t":"road","e":2.56,"s":2.44},"arcs":[272,273]},{"type":"LineString","properties":{"gid":975027,"sid":50075,"tid":50744,"t":"road","e":10.31,"s":9.82},"arcs":[274]},{"type":"LineString","properties":{"gid":974444,"sid":50076,"tid":50219,"t":"road","e":1.79,"s":1.71},"arcs":[275]},{"type":"LineString","properties":{"gid":975783,"sid":50076,"tid":50430,"t":"road","e":2.31,"s":2.2},"arcs":[276]},{"type":"LineString","properties":{"gid":974837,"sid":50077,"tid":50468,"t":"road","e":2.09,"s":1.99},"arcs":[277,278,279,280,281,282,283,284,285,286,287]},{"type":"LineString","properties":{"gid":974440,"sid":50078,"tid":50172,"t":"road","e":1.7,"s":1.62},"arcs":[288]},{"type":"LineString","properties":{"gid":975067,"sid":50078,"tid":50174,"t":"road","e":3.07,"s":4.12},"arcs":[289]},{"type":"LineString","properties":{"gid":975456,"sid":50078,"tid":50261,"t":"road","e":1.32,"s":1.26},"arcs":[290]},{"type":"LineString","properties":{"gid":974639,"sid":50079,"tid":50263,"t":"road","e":4.32,"s":4.12},"arcs":[291,292]},{"type":"LineString","properties":{"gid":975454,"sid":50079,"tid":50282,"t":"road","e":5.65,"s":5.38},"arcs":[293]},{"type":"LineString","properties":{"gid":974776,"sid":50079,"tid":50375,"t":"road","e":3.3,"s":3.14},"arcs":[294,295]},{"type":"LineString","properties":{"gid":976001,"sid":50080,"tid":50140,"t":"road","e":4.3,"s":4.09},"arcs":[296]},{"type":"LineString","properties":{"gid":975167,"sid":50080,"tid":50304,"t":"road","e":3.03,"s":2.89},"arcs":[297,298]},{"type":"LineString","properties":{"gid":975948,"sid":50080,"tid":50760,"t":"road","e":1.32,"s":1.26},"arcs":[299]},{"type":"LineString","properties":{"gid":975094,"sid":50082,"tid":50084,"t":"road","e":7.59,"s":7.23},"arcs":[198,300]},{"type":"LineString","properties":{"gid":975992,"sid":50082,"tid":50128,"t":"road","e":6.23,"s":5.94},"arcs":[301]},{"type":"LineString","properties":{"gid":975563,"sid":50083,"tid":50100,"t":"road","e":2.06,"s":1.96},"arcs":[302]},{"type":"LineString","properties":{"gid":975571,"sid":50083,"tid":50137,"t":"road","e":2.83,"s":2.7},"arcs":[303]},{"type":"LineString","properties":{"gid":974401,"sid":50085,"tid":50768,"t":"road","e":1.36,"s":1.3},"arcs":[304,305,306,307]},{"type":"LineString","properties":{"gid":975956,"sid":50086,"tid":50377,"t":"road","e":2.26,"s":2.15},"arcs":[308,-249]},{"type":"LineString","properties":{"gid":974605,"sid":50087,"tid":50107,"t":"road","e":5.39,"s":5.13},"arcs":[309,310]},{"type":"LineString","properties":{"gid":975517,"sid":50087,"tid":50391,"t":"road","e":1.01,"s":0.96},"arcs":[311]},{"type":"LineString","properties":{"gid":975609,"sid":50088,"tid":50252,"t":"road","e":4.27,"s":4.07},"arcs":[312]},{"type":"LineString","properties":{"gid":976071,"sid":50088,"tid":50435,"t":"road","e":4.53,"s":4.31},"arcs":[313,314,315,316,317,318,319,320,321,322,323]},{"type":"LineString","properties":{"gid":974795,"sid":50089,"tid":50201,"t":"road","e":2.27,"s":2.16},"arcs":[324,325]},{"type":"LineString","properties":{"gid":975499,"sid":50089,"tid":50336,"t":"road","e":2.84,"s":2.7},"arcs":[326,327,325]},{"type":"LineString","properties":{"gid":974527,"sid":50089,"tid":50753,"t":"road","e":1.97,"s":1.87},"arcs":[328]},{"type":"LineString","properties":{"gid":974154,"sid":50090,"tid":50207,"t":"hires","e":0.5,"s":0.47},"arcs":[329]},{"type":"LineString","properties":{"gid":975500,"sid":50090,"tid":50207,"t":"road","e":0.49,"s":0.47},"arcs":[-330]},{"type":"LineString","properties":{"gid":974525,"sid":50090,"tid":50730,"t":"road","e":3.55,"s":3.38},"arcs":[330,331,-332,332]},{"type":"LineString","properties":{"gid":974096,"sid":50090,"tid":51678,"t":"hires","e":0.5,"s":1.58},"arcs":[-333,331]},{"type":"LineString","properties":{"gid":975078,"sid":50091,"tid":50416,"t":"road","e":3.82,"s":3.64},"arcs":[333,334,335,336,337,338,339,340,341,342,343,344,345]},{"type":"LineString","properties":{"gid":975292,"sid":50091,"tid":50429,"t":"road","e":4.2,"s":4},"arcs":[346,347]},{"type":"LineString","properties":{"gid":974735,"sid":50092,"tid":50364,"t":"road","e":5.62,"s":5.35},"arcs":[348,349,350]},{"type":"LineString","properties":{"gid":975705,"sid":50092,"tid":50428,"t":"road","e":1.95,"s":1.85},"arcs":[351,352,353,354,355,356,357,358]},{"type":"LineString","properties":{"gid":975464,"sid":50093,"tid":50097,"t":"road","e":4.31,"s":4.11},"arcs":[359,-273]},{"type":"LineString","properties":{"gid":975431,"sid":50093,"tid":50285,"t":"road","e":2.43,"s":2.32},"arcs":[360,361,362]},{"type":"LineString","properties":{"gid":975942,"sid":50093,"tid":50313,"t":"road","e":5.43,"s":5.17},"arcs":[363]},{"type":"LineString","properties":{"gid":975510,"sid":50093,"tid":50372,"t":"road","e":4.85,"s":4.62},"arcs":[364,361,365]},{"type":"LineString","properties":{"gid":975732,"sid":50094,"tid":50243,"t":"road","e":2.19,"s":2.09},"arcs":[366,367]},{"type":"LineString","properties":{"gid":975039,"sid":50094,"tid":50346,"t":"road","e":2.24,"s":2.14},"arcs":[368,369,367]},{"type":"LineString","properties":{"gid":975558,"sid":50095,"tid":50126,"t":"road","e":3.8,"s":3.62},"arcs":[370]},{"type":"LineString","properties":{"gid":974635,"sid":50095,"tid":50404,"t":"road","e":4.68,"s":4.45},"arcs":[163,371]},{"type":"LineString","properties":{"gid":975114,"sid":50096,"tid":50115,"t":"road","e":4.01,"s":3.81},"arcs":[372,373,374,375,376,377,378,379,380,381,382]},{"type":"LineString","properties":{"gid":976008,"sid":50096,"tid":50210,"t":"road","e":3.85,"s":3.66},"arcs":[383,384]},{"type":"LineString","properties":{"gid":975996,"sid":50097,"tid":50422,"t":"road","e":4.26,"s":4.06},"arcs":[385]},{"type":"LineString","properties":{"gid":975501,"sid":50098,"tid":50235,"t":"road","e":2.53,"s":2.41},"arcs":[386,387,388,389,390,391,392]},{"type":"LineString","properties":{"gid":974137,"sid":50098,"tid":50365,"t":"hires","e":0.5,"s":0.38},"arcs":[393,394]},{"type":"LineString","properties":{"gid":974379,"sid":50098,"tid":50365,"t":"road","e":0.4,"s":0.38},"arcs":[395,-394]},{"type":"LineString","properties":{"gid":974162,"sid":50098,"tid":50412,"t":"hires","e":0.5,"s":1.3},"arcs":[396,397,398]},{"type":"LineString","properties":{"gid":975502,"sid":50098,"tid":50412,"t":"road","e":1.36,"s":1.29},"arcs":[-399,399,-397]},{"type":"LineString","properties":{"gid":974066,"sid":50098,"tid":51399,"t":"hires","e":0.5,"s":0.83},"arcs":[400]},{"type":"LineString","properties":{"gid":973977,"sid":50098,"tid":51518,"t":"hires","e":0.5,"s":2.02},"arcs":[401,402]},{"type":"LineString","properties":{"gid":974292,"sid":50098,"tid":51565,"t":"hires","e":0.5,"s":0.31},"arcs":[403]},{"type":"LineString","properties":{"gid":974161,"sid":50098,"tid":51567,"t":"hires","e":0.5,"s":2.22},"arcs":[-393,404,-391,405,-389,406]},{"type":"LineString","properties":{"gid":975979,"sid":50099,"tid":50416,"t":"road","e":4.37,"s":4.16},"arcs":[407]},{"type":"LineString","properties":{"gid":974414,"sid":50101,"tid":50235,"t":"road","e":2.9,"s":2.76},"arcs":[408,409,410,411,412,413,414,415,416]},{"type":"LineString","properties":{"gid":975503,"sid":50101,"tid":50411,"t":"road","e":3.01,"s":2.87},"arcs":[417,418,419,420,421]},{"type":"LineString","properties":{"gid":974139,"sid":50101,"tid":51628,"t":"hires","e":0.5,"s":0.47},"arcs":[-416]},{"type":"LineString","properties":{"gid":974033,"sid":50101,"tid":51667,"t":"hires","e":0.5,"s":0.28},"arcs":[422]},{"type":"LineString","properties":{"gid":974345,"sid":50101,"tid":51715,"t":"hires","e":0.5,"s":0.04},"arcs":[416]},{"type":"LineString","properties":{"gid":974504,"sid":50102,"tid":50193,"t":"road","e":1.37,"s":1.31},"arcs":[423]},{"type":"LineString","properties":{"gid":975478,"sid":50103,"tid":50374,"t":"road","e":4.91,"s":4.68},"arcs":[424]},{"type":"LineString","properties":{"gid":974658,"sid":50103,"tid":50387,"t":"road","e":2.43,"s":2.31},"arcs":[425]},{"type":"LineString","properties":{"gid":975402,"sid":50104,"tid":50113,"t":"road","e":1.24,"s":1.19},"arcs":[426]},{"type":"LineString","properties":{"gid":974419,"sid":50104,"tid":50357,"t":"road","e":1.36,"s":1.3},"arcs":[427,428]},{"type":"LineString","properties":{"gid":974730,"sid":50105,"tid":50344,"t":"road","e":1.96,"s":1.87},"arcs":[429]},{"type":"LineString","properties":{"gid":974396,"sid":50105,"tid":50420,"t":"road","e":1.55,"s":1.48},"arcs":[430,431,432,433,434]},{"type":"LineString","properties":{"gid":975305,"sid":50105,"tid":50768,"t":"road","e":2.8,"s":2.67},"arcs":[435,436,437,438,439,440]},{"type":"LineString","properties":{"gid":975146,"sid":50107,"tid":50188,"t":"road","e":5.14,"s":4.89},"arcs":[441,442,-310]},{"type":"LineString","properties":{"gid":976012,"sid":50107,"tid":50260,"t":"road","e":4.32,"s":4.12},"arcs":[443,442,-310]},{"type":"LineString","properties":{"gid":974508,"sid":50109,"tid":50177,"t":"road","e":1.01,"s":0.96},"arcs":[444]},{"type":"LineString","properties":{"gid":975479,"sid":50109,"tid":50381,"t":"road","e":1.33,"s":1.27},"arcs":[445]},{"type":"LineString","properties":{"gid":975944,"sid":50111,"tid":50131,"t":"road","e":3.93,"s":3.74},"arcs":[446]},{"type":"LineString","properties":{"gid":975082,"sid":50111,"tid":50248,"t":"road","e":3.18,"s":3.03},"arcs":[447]},{"type":"LineString","properties":{"gid":974712,"sid":50112,"tid":50141,"t":"road","e":10.39,"s":9.89},"arcs":[448]},{"type":"LineString","properties":{"gid":975394,"sid":50112,"tid":50291,"t":"road","e":7.4,"s":7.05},"arcs":[449]},{"type":"LineString","properties":{"gid":974671,"sid":50114,"tid":50166,"t":"road","e":2.41,"s":2.3},"arcs":[450]},{"type":"LineString","properties":{"gid":975366,"sid":50114,"tid":50738,"t":"road","e":0.6,"s":0.57},"arcs":[451]},{"type":"LineString","properties":{"gid":975614,"sid":50115,"tid":50142,"t":"road","e":6.5,"s":6.19},"arcs":[452,453]},{"type":"LineString","properties":{"gid":974728,"sid":50115,"tid":50242,"t":"road","e":3.84,"s":3.66},"arcs":[454]},{"type":"LineString","properties":{"gid":974729,"sid":50116,"tid":50228,"t":"road","e":3.48,"s":3.32},"arcs":[455]},{"type":"LineString","properties":{"gid":975290,"sid":50116,"tid":50420,"t":"road","e":2.31,"s":2.2},"arcs":[456]},{"type":"LineString","properties":{"gid":975617,"sid":50117,"tid":50272,"t":"road","e":2.92,"s":2.78},"arcs":[457]},{"type":"LineString","properties":{"gid":974629,"sid":50118,"tid":50259,"t":"road","e":1.19,"s":1.14},"arcs":[458]},{"type":"LineString","properties":{"gid":975615,"sid":50118,"tid":50359,"t":"road","e":2.63,"s":2.5},"arcs":[459,460,461]},{"type":"LineString","properties":{"gid":974511,"sid":50118,"tid":50737,"t":"road","e":0.8,"s":0.77},"arcs":[462]},{"type":"LineString","properties":{"gid":975551,"sid":50119,"tid":50155,"t":"road","e":1.99,"s":1.89},"arcs":[463]},{"type":"LineString","properties":{"gid":975476,"sid":50119,"tid":50355,"t":"road","e":6.93,"s":6.6},"arcs":[464,465]},{"type":"LineString","properties":{"gid":974377,"sid":50119,"tid":50364,"t":"road","e":6.35,"s":6.05},"arcs":[466,467,468,469,470,471]},{"type":"LineString","properties":{"gid":976014,"sid":50120,"tid":50135,"t":"road","e":3.17,"s":3.02},"arcs":[472,473]},{"type":"LineString","properties":{"gid":974923,"sid":50120,"tid":50329,"t":"road","e":2.41,"s":2.9},"arcs":[474,473]},{"type":"LineString","properties":{"gid":975868,"sid":50120,"tid":50384,"t":"road","e":5.25,"s":5},"arcs":[475,476]},{"type":"LineString","properties":{"gid":975722,"sid":50120,"tid":50385,"t":"road","e":3.67,"s":3.5},"arcs":[477]},{"type":"LineString","properties":{"gid":975129,"sid":50121,"tid":50210,"t":"road","e":3.03,"s":2.88},"arcs":[478,479,480,481,482]},{"type":"LineString","properties":{"gid":975505,"sid":50121,"tid":50252,"t":"road","e":6.38,"s":6.07},"arcs":[483]},{"type":"LineString","properties":{"gid":974651,"sid":50122,"tid":50425,"t":"road","e":1.52,"s":1.45},"arcs":[484]},{"type":"LineString","properties":{"gid":974814,"sid":50123,"tid":50297,"t":"road","e":5.44,"s":5.18},"arcs":[485,486]},{"type":"LineString","properties":{"gid":976075,"sid":50124,"tid":50459,"t":"road","e":3.06,"s":2.91},"arcs":[487,488,489,490,491,492,493]},{"type":"LineString","properties":{"gid":975033,"sid":50124,"tid":50752,"t":"road","e":3.46,"s":3.29},"arcs":[494]},{"type":"LineString","properties":{"gid":976017,"sid":50125,"tid":50238,"t":"road","e":5.86,"s":5.59},"arcs":[495]},{"type":"LineString","properties":{"gid":975077,"sid":50126,"tid":50253,"t":"road","e":8.14,"s":9.55},"arcs":[496]},{"type":"LineString","properties":{"gid":975784,"sid":50127,"tid":50137,"t":"road","e":5.21,"s":4.96},"arcs":[497]},{"type":"LineString","properties":{"gid":974441,"sid":50127,"tid":50251,"t":"road","e":1.46,"s":1.39},"arcs":[498,499]},{"type":"LineString","properties":{"gid":975915,"sid":50128,"tid":50721,"t":"road","e":3.99,"s":3.8},"arcs":[500]},{"type":"LineString","properties":{"gid":974726,"sid":50129,"tid":50146,"t":"road","e":9.63,"s":9.17},"arcs":[501,502,503,504,505]},{"type":"LineString","properties":{"gid":974620,"sid":50129,"tid":50301,"t":"road","e":3.33,"s":3.17},"arcs":[506]},{"type":"LineString","properties":{"gid":975715,"sid":50130,"tid":50150,"t":"road","e":1.54,"s":1.47},"arcs":[507,508,509,510,511]},{"type":"LineString","properties":{"gid":975798,"sid":50130,"tid":50218,"t":"road","e":4.95,"s":4.71},"arcs":[512,513,514]},{"type":"LineString","properties":{"gid":975793,"sid":50130,"tid":50262,"t":"road","e":5.96,"s":5.67},"arcs":[515,-263]},{"type":"LineString","properties":{"gid":974517,"sid":50130,"tid":50321,"t":"road","e":4.65,"s":4.43},"arcs":[516,514]},{"type":"LineString","properties":{"gid":974949,"sid":50130,"tid":50677,"t":"road","e":5.83,"s":5.56},"arcs":[517,513,514]},{"type":"LineString","properties":{"gid":975943,"sid":50131,"tid":50199,"t":"road","e":4.67,"s":4.45},"arcs":[518]},{"type":"LineString","properties":{"gid":975513,"sid":50132,"tid":50205,"t":"road","e":0.63,"s":0.6},"arcs":[519]},{"type":"LineString","properties":{"gid":975506,"sid":50133,"tid":50160,"t":"road","e":4.86,"s":4.63},"arcs":[520,521,522,523,524,525]},{"type":"LineString","properties":{"gid":974394,"sid":50133,"tid":50240,"t":"road","e":2.27,"s":2.16},"arcs":[526,527,528,529,530,531,532,533,534]},{"type":"LineString","properties":{"gid":974132,"sid":50133,"tid":51887,"t":"hires","e":0.5,"s":0.21},"arcs":[535,-534]},{"type":"LineString","properties":{"gid":974327,"sid":50133,"tid":51917,"t":"hires","e":0.5,"s":1.49},"arcs":[-525,536,-523]},{"type":"LineString","properties":{"gid":975963,"sid":50134,"tid":50307,"t":"road","e":6.17,"s":5.88},"arcs":[537]},{"type":"LineString","properties":{"gid":975055,"sid":50134,"tid":50327,"t":"road","e":4.43,"s":4.21},"arcs":[538,539,540,541]},{"type":"LineString","properties":{"gid":976018,"sid":50135,"tid":50362,"t":"road","e":1.19,"s":1.13},"arcs":[542]},{"type":"LineString","properties":{"gid":975286,"sid":50136,"tid":50256,"t":"road","e":0.3,"s":0.29},"arcs":[543,544]},{"type":"LineString","properties":{"gid":975473,"sid":50136,"tid":50322,"t":"road","e":0.22,"s":0.21},"arcs":[545,546]},{"type":"LineString","properties":{"gid":974785,"sid":50136,"tid":50357,"t":"road","e":1.39,"s":1.32},"arcs":[427,547,548,549]},{"type":"LineString","properties":{"gid":975280,"sid":50138,"tid":50141,"t":"road","e":2.61,"s":2.48},"arcs":[550]},{"type":"LineString","properties":{"gid":974546,"sid":50138,"tid":50320,"t":"road","e":3.49,"s":3.32},"arcs":[551,552]},{"type":"LineString","properties":{"gid":974409,"sid":50138,"tid":50545,"t":"road","e":0.56,"s":0.54},"arcs":[553]},{"type":"LineString","properties":{"gid":975620,"sid":50139,"tid":50428,"t":"road","e":3.59,"s":3.42},"arcs":[554,-266]},{"type":"LineString","properties":{"gid":975141,"sid":50139,"tid":50767,"t":"road","e":3.29,"s":3.13},"arcs":[555,556,557]},{"type":"LineString","properties":{"gid":975613,"sid":50140,"tid":50190,"t":"road","e":2.71,"s":2.58},"arcs":[558]},{"type":"LineString","properties":{"gid":974643,"sid":50140,"tid":50215,"t":"road","e":3.93,"s":3.74},"arcs":[559]},{"type":"LineString","properties":{"gid":976015,"sid":50140,"tid":50388,"t":"road","e":1.45,"s":1.38},"arcs":[560]},{"type":"LineString","properties":{"gid":975740,"sid":50143,"tid":50386,"t":"road","e":2.88,"s":2.74},"arcs":[561]},{"type":"LineString","properties":{"gid":975178,"sid":50143,"tid":50466,"t":"road","e":2.7,"s":2.57},"arcs":[562,563,564,565]},{"type":"LineString","properties":{"gid":974849,"sid":50143,"tid":50467,"t":"road","e":3.27,"s":3.11},"arcs":[566,567,568,565]},{"type":"LineString","properties":{"gid":974521,"sid":50144,"tid":50183,"t":"road","e":2.13,"s":2.03},"arcs":[569,570]},{"type":"LineString","properties":{"gid":975345,"sid":50144,"tid":50772,"t":"road","e":0.93,"s":0.88},"arcs":[571]},{"type":"LineString","properties":{"gid":975969,"sid":50145,"tid":50332,"t":"road","e":5.31,"s":5.06},"arcs":[572,573]},{"type":"LineString","properties":{"gid":975089,"sid":50145,"tid":50379,"t":"road","e":2.81,"s":2.68},"arcs":[574]},{"type":"LineString","properties":{"gid":974628,"sid":50146,"tid":50247,"t":"road","e":4.58,"s":4.36},"arcs":[575,576]},{"type":"LineString","properties":{"gid":975375,"sid":50146,"tid":50751,"t":"road","e":6.63,"s":6.32},"arcs":[577]},{"type":"LineString","properties":{"gid":975508,"sid":50147,"tid":50249,"t":"road","e":1.98,"s":1.89},"arcs":[578,579,580,581,582]},{"type":"LineString","properties":{"gid":973948,"sid":50147,"tid":50421,"t":"hires","e":0.5,"s":2.13},"arcs":[583,584,585,586,587]},{"type":"LineString","properties":{"gid":975098,"sid":50147,"tid":50421,"t":"road","e":2.25,"s":2.14},"arcs":[-588,588,-586,589,-584]},{"type":"LineString","properties":{"gid":974165,"sid":50147,"tid":51821,"t":"hires","e":0.5,"s":1.04},"arcs":[590,-582,-581]},{"type":"LineString","properties":{"gid":974903,"sid":50148,"tid":50221,"t":"road","e":0.78,"s":0.75},"arcs":[591]},{"type":"LineString","properties":{"gid":975695,"sid":50148,"tid":50222,"t":"road","e":2.44,"s":2.32},"arcs":[592]},{"type":"LineString","properties":{"gid":974630,"sid":50149,"tid":50375,"t":"road","e":1.39,"s":1.32},"arcs":[593,594,595,596,597,598]},{"type":"LineString","properties":{"gid":975385,"sid":50149,"tid":50392,"t":"road","e":3.05,"s":2.9},"arcs":[599]},{"type":"LineString","properties":{"gid":975650,"sid":50150,"tid":50258,"t":"road","e":8.82,"s":8.4},"arcs":[600,601,602]},{"type":"LineString","properties":{"gid":975273,"sid":50150,"tid":50674,"t":"road","e":1.78,"s":1.7},"arcs":[603,604,605,606]},{"type":"LineString","properties":{"gid":975509,"sid":50151,"tid":50345,"t":"road","e":2.05,"s":1.95},"arcs":[607]},{"type":"LineString","properties":{"gid":974835,"sid":50151,"tid":50733,"t":"road","e":3.43,"s":3.26},"arcs":[608]},{"type":"LineString","properties":{"gid":975924,"sid":50152,"tid":50731,"t":"road","e":1.06,"s":1.61},"arcs":[609,610]},{"type":"LineString","properties":{"gid":975160,"sid":50153,"tid":50184,"t":"road","e":3.59,"s":3.42},"arcs":[611]},{"type":"LineString","properties":{"gid":975311,"sid":50153,"tid":50340,"t":"road","e":12.7,"s":12.09},"arcs":[612,613,614]},{"type":"LineString","properties":{"gid":974477,"sid":50153,"tid":50739,"t":"road","e":6.88,"s":6.55},"arcs":[615,616,614]},{"type":"LineString","properties":{"gid":975155,"sid":50154,"tid":50375,"t":"road","e":2.02,"s":1.92},"arcs":[593,617,618,619]},{"type":"LineString","properties":{"gid":975378,"sid":50154,"tid":50735,"t":"road","e":5.8,"s":5.52},"arcs":[620]},{"type":"LineString","properties":{"gid":974413,"sid":50156,"tid":50412,"t":"road","e":3.52,"s":3.35},"arcs":[621,622,623,402,624,625,626,627,628]},{"type":"LineString","properties":{"gid":974221,"sid":50156,"tid":51324,"t":"hires","e":0.5,"s":0.32},"arcs":[629]},{"type":"LineString","properties":{"gid":974094,"sid":50156,"tid":51373,"t":"hires","e":0.5,"s":1.04},"arcs":[-629,630]},{"type":"LineString","properties":{"gid":974332,"sid":50156,"tid":51375,"t":"hires","e":0.5,"s":1.29},"arcs":[108,631,110]},{"type":"LineString","properties":{"gid":975475,"sid":50157,"tid":50459,"t":"road","e":5.59,"s":5.32},"arcs":[632,-228]},{"type":"LineString","properties":{"gid":975137,"sid":50158,"tid":50276,"t":"road","e":5.93,"s":5.65},"arcs":[633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649]},{"type":"LineString","properties":{"gid":976056,"sid":50158,"tid":50769,"t":"road","e":4.21,"s":4.01},"arcs":[650]},{"type":"LineString","properties":{"gid":974789,"sid":50159,"tid":50469,"t":"road","e":2.37,"s":2.26},"arcs":[651,652]},{"type":"LineString","properties":{"gid":975679,"sid":50159,"tid":50750,"t":"road","e":1.21,"s":1.15},"arcs":[653,652]},{"type":"LineString","properties":{"gid":975131,"sid":50160,"tid":50232,"t":"road","e":3.63,"s":3.45},"arcs":[654,655,656,657,658,659,660]},{"type":"LineString","properties":{"gid":974727,"sid":50160,"tid":50249,"t":"road","e":3.54,"s":3.37},"arcs":[661,662,663,664,665,666,667,668]},{"type":"LineString","properties":{"gid":975301,"sid":50160,"tid":50303,"t":"road","e":2,"s":1.91},"arcs":[-658,657,658,659,660]},{"type":"LineString","properties":{"gid":974082,"sid":50160,"tid":51855,"t":"hires","e":0.5,"s":0.14},"arcs":[-661]},{"type":"LineString","properties":{"gid":974145,"sid":50160,"tid":51877,"t":"hires","e":0.5,"s":0.48},"arcs":[-669]},{"type":"LineString","properties":{"gid":973937,"sid":50160,"tid":51910,"t":"hires","e":0.5,"s":2.31},"arcs":[520]},{"type":"LineString","properties":{"gid":975691,"sid":50161,"tid":50275,"t":"road","e":7.89,"s":7.52},"arcs":[669,670]},{"type":"LineString","properties":{"gid":974642,"sid":50161,"tid":50338,"t":"road","e":1.82,"s":1.73},"arcs":[671]},{"type":"LineString","properties":{"gid":974640,"sid":50161,"tid":50428,"t":"road","e":2.97,"s":2.83},"arcs":[672,-256]},{"type":"LineString","properties":{"gid":974843,"sid":50162,"tid":50386,"t":"road","e":1.62,"s":1.54},"arcs":[673]},{"type":"LineString","properties":{"gid":975182,"sid":50162,"tid":50550,"t":"road","e":1.43,"s":1.36},"arcs":[674,675]},{"type":"LineString","properties":{"gid":975088,"sid":50163,"tid":50208,"t":"road","e":6.14,"s":5.85},"arcs":[676,677]},{"type":"LineString","properties":{"gid":976073,"sid":50163,"tid":50470,"t":"road","e":9.1,"s":8.67},"arcs":[678]},{"type":"LineString","properties":{"gid":975914,"sid":50163,"tid":50726,"t":"road","e":7.82,"s":7.45},"arcs":[679]},{"type":"LineString","properties":{"gid":975309,"sid":50163,"tid":50727,"t":"road","e":0.74,"s":0.71},"arcs":[680]},{"type":"LineString","properties":{"gid":975399,"sid":50164,"tid":50170,"t":"road","e":1.61,"s":1.53},"arcs":[681]},{"type":"LineString","properties":{"gid":975170,"sid":50164,"tid":50190,"t":"road","e":3.51,"s":3.35},"arcs":[682]},{"type":"LineString","properties":{"gid":975728,"sid":50165,"tid":50213,"t":"road","e":0.9,"s":0.85},"arcs":[270,683]},{"type":"LineString","properties":{"gid":974423,"sid":50165,"tid":50243,"t":"road","e":0.61,"s":0.59},"arcs":[684]},{"type":"LineString","properties":{"gid":975383,"sid":50166,"tid":50361,"t":"road","e":6.08,"s":5.79},"arcs":[685]},{"type":"LineString","properties":{"gid":975075,"sid":50167,"tid":50264,"t":"road","e":4.47,"s":4.26},"arcs":[686]},{"type":"LineString","properties":{"gid":975432,"sid":50168,"tid":50315,"t":"road","e":0.75,"s":0.72},"arcs":[687]},{"type":"LineString","properties":{"gid":974407,"sid":50168,"tid":50402,"t":"road","e":1.16,"s":1.1},"arcs":[688]},{"type":"LineString","properties":{"gid":975587,"sid":50169,"tid":50245,"t":"road","e":0.74,"s":0.71},"arcs":[689,690]},{"type":"LineString","properties":{"gid":974415,"sid":50169,"tid":50363,"t":"road","e":2.53,"s":2.41},"arcs":[691,690]},{"type":"LineString","properties":{"gid":975462,"sid":50170,"tid":50771,"t":"road","e":0.51,"s":0.48},"arcs":[692]},{"type":"LineString","properties":{"gid":974914,"sid":50171,"tid":50366,"t":"road","e":5.08,"s":5.44},"arcs":[693,-181]},{"type":"LineString","properties":{"gid":974925,"sid":50172,"tid":50174,"t":"road","e":2.95,"s":4.01},"arcs":[694]},{"type":"LineString","properties":{"gid":975484,"sid":50173,"tid":50177,"t":"road","e":0.98,"s":0.93},"arcs":[695]},{"type":"LineString","properties":{"gid":974575,"sid":50173,"tid":50327,"t":"road","e":2.47,"s":2.35},"arcs":[696,697]},{"type":"LineString","properties":{"gid":975404,"sid":50174,"tid":50308,"t":"road","e":1.21,"s":1.15},"arcs":[698]},{"type":"LineString","properties":{"gid":975392,"sid":50175,"tid":50255,"t":"road","e":0.6,"s":0.57},"arcs":[699]},{"type":"LineString","properties":{"gid":974584,"sid":50175,"tid":50378,"t":"road","e":1.35,"s":1.28},"arcs":[700,701]},{"type":"LineString","properties":{"gid":975087,"sid":50176,"tid":50183,"t":"road","e":8.43,"s":8.03},"arcs":[569,702,703,704,705,706,707]},{"type":"LineString","properties":{"gid":975909,"sid":50178,"tid":50304,"t":"road","e":0.85,"s":0.81},"arcs":[297,708]},{"type":"LineString","properties":{"gid":974945,"sid":50178,"tid":50346,"t":"road","e":2.12,"s":2.02},"arcs":[368,709,710]},{"type":"LineString","properties":{"gid":974494,"sid":50179,"tid":50199,"t":"road","e":5.15,"s":4.9},"arcs":[711]},{"type":"LineString","properties":{"gid":976032,"sid":50180,"tid":50240,"t":"road","e":3.1,"s":2.95},"arcs":[712,713,714,715,716,717,718,719,-720]},{"type":"LineString","properties":{"gid":974397,"sid":50180,"tid":50249,"t":"road","e":3.04,"s":2.9},"arcs":[720,721,722,723,724,725,726,-720]},{"type":"LineString","properties":{"gid":973945,"sid":50180,"tid":51859,"t":"hires","e":0.5,"s":1.5},"arcs":[719,-727,727,-725]},{"type":"LineString","properties":{"gid":974312,"sid":50180,"tid":51903,"t":"hires","e":0.5,"s":0.89},"arcs":[719,-720,-719,-718]},{"type":"LineString","properties":{"gid":975435,"sid":50181,"tid":50302,"t":"road","e":6.4,"s":6.09},"arcs":[728]},{"type":"LineString","properties":{"gid":975862,"sid":50181,"tid":50654,"t":"road","e":1.08,"s":1.02},"arcs":[729]},{"type":"LineString","properties":{"gid":975565,"sid":50182,"tid":50236,"t":"road","e":2.1,"s":2},"arcs":[730]},{"type":"LineString","properties":{"gid":974818,"sid":50182,"tid":50418,"t":"road","e":5.17,"s":4.92},"arcs":[731,732,-9]},{"type":"LineString","properties":{"gid":975072,"sid":50183,"tid":50241,"t":"road","e":3.66,"s":4.68},"arcs":[733,734,735]},{"type":"LineString","properties":{"gid":975031,"sid":50185,"tid":50270,"t":"road","e":3.5,"s":3.33},"arcs":[736]},{"type":"LineString","properties":{"gid":976022,"sid":50185,"tid":50337,"t":"road","e":3.73,"s":3.55},"arcs":[737]},{"type":"LineString","properties":{"gid":974641,"sid":50186,"tid":50207,"t":"road","e":2.67,"s":2.54},"arcs":[738,739,740,741,742,743,744]},{"type":"LineString","properties":{"gid":975520,"sid":50186,"tid":50365,"t":"road","e":3.19,"s":3.04},"arcs":[127,745,746,747,748]},{"type":"LineString","properties":{"gid":974478,"sid":50186,"tid":50730,"t":"road","e":1.74,"s":1.65},"arcs":[749,750,751,752,753,754]},{"type":"LineString","properties":{"gid":974352,"sid":50186,"tid":51171,"t":"hires","e":0.5,"s":0.93},"arcs":[748,-748,-747]},{"type":"LineString","properties":{"gid":974070,"sid":50186,"tid":51651,"t":"hires","e":0.5,"s":0.64},"arcs":[755,756,-744]},{"type":"LineString","properties":{"gid":973921,"sid":50186,"tid":51659,"t":"hires","e":0.5,"s":1.29},"arcs":[755,757,-754,758,759,-751]},{"type":"LineString","properties":{"gid":975533,"sid":50187,"tid":50301,"t":"road","e":5.22,"s":4.97},"arcs":[97,760,761]},{"type":"LineString","properties":{"gid":974474,"sid":50187,"tid":50751,"t":"road","e":2.79,"s":2.66},"arcs":[762]},{"type":"LineString","properties":{"gid":975134,"sid":50188,"tid":50369,"t":"road","e":5.62,"s":5.36},"arcs":[763]},{"type":"LineString","properties":{"gid":976067,"sid":50188,"tid":50374,"t":"road","e":10.75,"s":10.24},"arcs":[764,765,766]},{"type":"LineString","properties":{"gid":975298,"sid":50189,"tid":50254,"t":"road","e":1.14,"s":1.09},"arcs":[767,768]},{"type":"LineString","properties":{"gid":974463,"sid":50189,"tid":50297,"t":"road","e":5.88,"s":5.6},"arcs":[485,769]},{"type":"LineString","properties":{"gid":975692,"sid":50191,"tid":50296,"t":"road","e":4.62,"s":4.4},"arcs":[770]},{"type":"LineString","properties":{"gid":975690,"sid":50191,"tid":50367,"t":"road","e":3.06,"s":2.91},"arcs":[771]},{"type":"LineString","properties":{"gid":974523,"sid":50191,"tid":50750,"t":"road","e":6.19,"s":5.9},"arcs":[772]},{"type":"LineString","properties":{"gid":975417,"sid":50192,"tid":50288,"t":"road","e":1.91,"s":1.82},"arcs":[773,774,775,776,777,778,779,780]},{"type":"LineString","properties":{"gid":974378,"sid":50192,"tid":50661,"t":"road","e":1.13,"s":1.08},"arcs":[781,782,783,784]},{"type":"LineString","properties":{"gid":975303,"sid":50194,"tid":50244,"t":"road","e":2.93,"s":2.79},"arcs":[785,786,787,788,789]},{"type":"LineString","properties":{"gid":974468,"sid":50194,"tid":50288,"t":"road","e":3.87,"s":3.68},"arcs":[790,791]},{"type":"LineString","properties":{"gid":975680,"sid":50195,"tid":50217,"t":"road","e":5.76,"s":5.48},"arcs":[792]},{"type":"LineString","properties":{"gid":974813,"sid":50195,"tid":50258,"t":"road","e":3,"s":2.85},"arcs":[600,793]},{"type":"LineString","properties":{"gid":975446,"sid":50196,"tid":50267,"t":"road","e":0.82,"s":0.78},"arcs":[794,795]},{"type":"LineString","properties":{"gid":974817,"sid":50197,"tid":50373,"t":"road","e":4.31,"s":4.1},"arcs":[796]},{"type":"LineString","properties":{"gid":974744,"sid":50198,"tid":50329,"t":"road","e":3.5,"s":3.33},"arcs":[797,798]},{"type":"LineString","properties":{"gid":975823,"sid":50198,"tid":50384,"t":"road","e":2.59,"s":3.07},"arcs":[799,800]},{"type":"LineString","properties":{"gid":974455,"sid":50198,"tid":50391,"t":"road","e":2.79,"s":3.25},"arcs":[801,800]},{"type":"LineString","properties":{"gid":975327,"sid":50199,"tid":50208,"t":"road","e":0.25,"s":0.24},"arcs":[802]},{"type":"LineString","properties":{"gid":974626,"sid":50200,"tid":50770,"t":"road","e":0.84,"s":0.8},"arcs":[803]},{"type":"LineString","properties":{"gid":975036,"sid":50201,"tid":50753,"t":"road","e":1.9,"s":1.81},"arcs":[804]},{"type":"LineString","properties":{"gid":975543,"sid":50202,"tid":50404,"t":"road","e":7.35,"s":7},"arcs":[805]},{"type":"LineString","properties":{"gid":974489,"sid":50203,"tid":50285,"t":"road","e":3.68,"s":3.5},"arcs":[806]},{"type":"LineString","properties":{"gid":975389,"sid":50203,"tid":50379,"t":"road","e":3,"s":2.86},"arcs":[807]},{"type":"LineString","properties":{"gid":975696,"sid":50204,"tid":50223,"t":"road","e":2.23,"s":2.13},"arcs":[808]},{"type":"LineString","properties":{"gid":975671,"sid":50206,"tid":50334,"t":"road","e":10.71,"s":10.2},"arcs":[809,810,811,812]},{"type":"LineString","properties":{"gid":975140,"sid":50206,"tid":50368,"t":"road","e":2.57,"s":2.45},"arcs":[813,811,812]},{"type":"LineString","properties":{"gid":974886,"sid":50206,"tid":50474,"t":"road","e":9.16,"s":8.72},"arcs":[814]},{"type":"LineString","properties":{"gid":974342,"sid":50207,"tid":51175,"t":"hires","e":0.5,"s":0.47},"arcs":[738,815,-741,740,741]},{"type":"LineString","properties":{"gid":974701,"sid":50208,"tid":50745,"t":"road","e":6.24,"s":5.94},"arcs":[816,-677]},{"type":"LineString","properties":{"gid":975972,"sid":50209,"tid":50402,"t":"road","e":5.84,"s":5.56},"arcs":[817]},{"type":"LineString","properties":{"gid":975554,"sid":50210,"tid":50460,"t":"road","e":4.12,"s":3.92},"arcs":[818]},{"type":"LineString","properties":{"gid":975013,"sid":50211,"tid":50747,"t":"road","e":0.53,"s":1.11},"arcs":[819]},{"type":"LineString","properties":{"gid":975126,"sid":50212,"tid":50287,"t":"road","e":3.09,"s":2.94},"arcs":[820]},{"type":"LineString","properties":{"gid":976020,"sid":50212,"tid":50314,"t":"road","e":3,"s":2.86},"arcs":[821,822,823]},{"type":"LineString","properties":{"gid":976074,"sid":50213,"tid":50346,"t":"road","e":3.52,"s":3.35},"arcs":[368,824,825]},{"type":"LineString","properties":{"gid":974480,"sid":50215,"tid":50346,"t":"road","e":1.57,"s":1.5},"arcs":[826]},{"type":"LineString","properties":{"gid":975041,"sid":50215,"tid":50760,"t":"road","e":0.95,"s":0.9},"arcs":[827]},{"type":"LineString","properties":{"gid":975159,"sid":50216,"tid":50380,"t":"road","e":3.57,"s":3.4},"arcs":[828]},{"type":"LineString","properties":{"gid":975707,"sid":50216,"tid":50644,"t":"road","e":1.81,"s":1.73},"arcs":[829]},{"type":"LineString","properties":{"gid":975283,"sid":50217,"tid":50678,"t":"road","e":0.5,"s":0.48},"arcs":[830]},{"type":"LineString","properties":{"gid":975995,"sid":50220,"tid":50289,"t":"road","e":2.34,"s":2.23},"arcs":[831]},{"type":"LineString","properties":{"gid":975401,"sid":50220,"tid":50465,"t":"road","e":0.84,"s":0.8},"arcs":[832]},{"type":"LineString","properties":{"gid":974741,"sid":50221,"tid":50427,"t":"road","e":1.45,"s":1.38},"arcs":[833]},{"type":"LineString","properties":{"gid":975701,"sid":50222,"tid":50385,"t":"road","e":0.69,"s":0.66},"arcs":[834]},{"type":"LineString","properties":{"gid":975927,"sid":50224,"tid":50229,"t":"road","e":0.54,"s":0.51},"arcs":[835]},{"type":"LineString","properties":{"gid":974439,"sid":50224,"tid":50289,"t":"road","e":0.35,"s":0.33},"arcs":[836]},{"type":"LineString","properties":{"gid":975523,"sid":50225,"tid":50766,"t":"road","e":2.17,"s":2.07},"arcs":[837]},{"type":"LineString","properties":{"gid":975549,"sid":50226,"tid":50358,"t":"road","e":3.19,"s":3.04},"arcs":[838,839]},{"type":"LineString","properties":{"gid":974839,"sid":50227,"tid":50389,"t":"road","e":5.35,"s":5.09},"arcs":[840,841]},{"type":"LineString","properties":{"gid":976079,"sid":50227,"tid":50466,"t":"road","e":3.53,"s":3.36},"arcs":[562,842]},{"type":"LineString","properties":{"gid":974395,"sid":50228,"tid":50287,"t":"road","e":1.36,"s":1.3},"arcs":[843]},{"type":"LineString","properties":{"gid":974497,"sid":50230,"tid":50281,"t":"road","e":3.98,"s":3.79},"arcs":[844]},{"type":"LineString","properties":{"gid":975633,"sid":50230,"tid":50319,"t":"road","e":8.12,"s":7.73},"arcs":[845]},{"type":"LineString","properties":{"gid":974724,"sid":50231,"tid":50252,"t":"road","e":4.34,"s":4.13},"arcs":[846]},{"type":"LineString","properties":{"gid":975124,"sid":50232,"tid":50409,"t":"road","e":3.56,"s":3.39},"arcs":[847,848,849,850,851,852,853,854,855,856]},{"type":"LineString","properties":{"gid":973950,"sid":50232,"tid":51792,"t":"hires","e":0.5,"s":2.24},"arcs":[-857,857,858,-854,859,-852]},{"type":"LineString","properties":{"gid":974306,"sid":50232,"tid":51829,"t":"hires","e":0.5,"s":0.95},"arcs":[654]},{"type":"LineString","properties":{"gid":974733,"sid":50233,"tid":50396,"t":"road","e":2.73,"s":2.6},"arcs":[860,861,862,863]},{"type":"LineString","properties":{"gid":974573,"sid":50234,"tid":50461,"t":"road","e":1.02,"s":0.97},"arcs":[864,865]},{"type":"LineString","properties":{"gid":975275,"sid":50234,"tid":50462,"t":"road","e":0.47,"s":0.45},"arcs":[866]},{"type":"LineString","properties":{"gid":975132,"sid":50235,"tid":50330,"t":"road","e":3.74,"s":3.57},"arcs":[867,868,869,870,871,872,873,874,875,876,877]},{"type":"LineString","properties":{"gid":975876,"sid":50235,"tid":50415,"t":"road","e":1.23,"s":1.17},"arcs":[878,-387]},{"type":"LineString","properties":{"gid":974129,"sid":50235,"tid":51393,"t":"hires","e":0.5,"s":0.21},"arcs":[-878]},{"type":"LineString","properties":{"gid":974216,"sid":50235,"tid":51403,"t":"hires","e":0.5,"s":2.11},"arcs":[879]},{"type":"LineString","properties":{"gid":974296,"sid":50235,"tid":51589,"t":"hires","e":0.5,"s":0.36},"arcs":[880]},{"type":"LineString","properties":{"gid":975566,"sid":50236,"tid":50424,"t":"road","e":0.6,"s":0.57},"arcs":[881]},{"type":"LineString","properties":{"gid":975135,"sid":50237,"tid":50308,"t":"road","e":1.19,"s":1.13},"arcs":[882]},{"type":"LineString","properties":{"gid":975406,"sid":50237,"tid":50765,"t":"road","e":0.41,"s":0.39},"arcs":[883]},{"type":"LineString","properties":{"gid":975442,"sid":50239,"tid":50398,"t":"road","e":3.62,"s":3.45},"arcs":[884,885]},{"type":"LineString","properties":{"gid":974087,"sid":50240,"tid":51909,"t":"hires","e":0.5,"s":0.69},"arcs":[886,712]},{"type":"LineString","properties":{"gid":974339,"sid":50240,"tid":51925,"t":"hires","e":0.5,"s":0.19},"arcs":[886,887]},{"type":"LineString","properties":{"gid":976064,"sid":50241,"tid":50292,"t":"road","e":3.75,"s":4.77},"arcs":[888,889,-734]},{"type":"LineString","properties":{"gid":974596,"sid":50241,"tid":50765,"t":"road","e":1.45,"s":1.38},"arcs":[890]},{"type":"LineString","properties":{"gid":974895,"sid":50242,"tid":50337,"t":"road","e":4.96,"s":4.72},"arcs":[891,892]},{"type":"LineString","properties":{"gid":975718,"sid":50242,"tid":50461,"t":"road","e":4.22,"s":4.02},"arcs":[893,892]},{"type":"LineString","properties":{"gid":974392,"sid":50243,"tid":50636,"t":"road","e":0.58,"s":0.56},"arcs":[894]},{"type":"LineString","properties":{"gid":975447,"sid":50244,"tid":50321,"t":"road","e":3.42,"s":3.26},"arcs":[895,896,897,898,899,900,901]},{"type":"LineString","properties":{"gid":975544,"sid":50245,"tid":50400,"t":"road","e":1,"s":0.95},"arcs":[902]},{"type":"LineString","properties":{"gid":975759,"sid":50246,"tid":50380,"t":"road","e":0.64,"s":0.61},"arcs":[903]},{"type":"LineString","properties":{"gid":974760,"sid":50246,"tid":50404,"t":"road","e":3.43,"s":4.47},"arcs":[904]},{"type":"LineString","properties":{"gid":975042,"sid":50247,"tid":50280,"t":"road","e":1.43,"s":1.36},"arcs":[905,906]},{"type":"LineString","properties":{"gid":975581,"sid":50248,"tid":50360,"t":"road","e":5.58,"s":5.32},"arcs":[907]},{"type":"LineString","properties":{"gid":974941,"sid":50248,"tid":50744,"t":"road","e":6.22,"s":5.92},"arcs":[908]},{"type":"LineString","properties":{"gid":974150,"sid":50249,"tid":51821,"t":"hires","e":0.5,"s":0.87},"arcs":[909,579]},{"type":"LineString","properties":{"gid":974245,"sid":50249,"tid":51857,"t":"hires","e":0.5,"s":2.13},"arcs":[910,911]},{"type":"LineString","properties":{"gid":974307,"sid":50249,"tid":51859,"t":"hires","e":0.5,"s":1.4},"arcs":[910,912,721,913,723]},{"type":"LineString","properties":{"gid":974246,"sid":50249,"tid":51861,"t":"hires","e":0.5,"s":0.81},"arcs":[914]},{"type":"LineString","properties":{"gid":974166,"sid":50249,"tid":51877,"t":"hires","e":0.5,"s":2.89},"arcs":[661,915,663,916,665,917,667]},{"type":"LineString","properties":{"gid":975561,"sid":50251,"tid":50414,"t":"road","e":5.72,"s":5.44},"arcs":[918,919]},{"type":"LineString","properties":{"gid":974653,"sid":50251,"tid":50773,"t":"road","e":1.56,"s":1.48},"arcs":[920]},{"type":"LineString","properties":{"gid":975251,"sid":50253,"tid":50338,"t":"road","e":4.95,"s":5.91},"arcs":[921]},{"type":"LineString","properties":{"gid":976120,"sid":50253,"tid":50347,"t":"road","e":7.27,"s":6.92},"arcs":[922,923]},{"type":"LineString","properties":{"gid":974515,"sid":50254,"tid":50382,"t":"road","e":2.94,"s":2.8},"arcs":[924,925,-768]},{"type":"LineString","properties":{"gid":975320,"sid":50255,"tid":50357,"t":"road","e":0.41,"s":0.39},"arcs":[926]},{"type":"LineString","properties":{"gid":974586,"sid":50255,"tid":50381,"t":"road","e":0.89,"s":0.84},"arcs":[927]},{"type":"LineString","properties":{"gid":974919,"sid":50257,"tid":50277,"t":"road","e":2.76,"s":2.63},"arcs":[928,929,930,931,932,933,934]},{"type":"LineString","properties":{"gid":975428,"sid":50257,"tid":50752,"t":"road","e":0.96,"s":0.92},"arcs":[935]},{"type":"LineString","properties":{"gid":975011,"sid":50259,"tid":50310,"t":"road","e":8.62,"s":8.21},"arcs":[936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953]},{"type":"LineString","properties":{"gid":974510,"sid":50259,"tid":50736,"t":"road","e":2.3,"s":2.19},"arcs":[954]},{"type":"LineString","properties":{"gid":974638,"sid":50259,"tid":50748,"t":"road","e":7.97,"s":7.59},"arcs":[955,956]},{"type":"LineString","properties":{"gid":976043,"sid":50260,"tid":50352,"t":"road","e":1.5,"s":1.43},"arcs":[957,958]},{"type":"LineString","properties":{"gid":975961,"sid":50261,"tid":50292,"t":"road","e":1.82,"s":1.73},"arcs":[959,960]},{"type":"LineString","properties":{"gid":975739,"sid":50261,"tid":50414,"t":"road","e":3.31,"s":3.15},"arcs":[961,960]},{"type":"LineString","properties":{"gid":975158,"sid":50263,"tid":50350,"t":"road","e":5.24,"s":4.99},"arcs":[962,-292]},{"type":"LineString","properties":{"gid":975737,"sid":50263,"tid":50472,"t":"road","e":4.54,"s":4.32},"arcs":[963]},{"type":"LineString","properties":{"gid":975982,"sid":50263,"tid":50742,"t":"road","e":2.89,"s":2.76},"arcs":[964]},{"type":"LineString","properties":{"gid":974691,"sid":50264,"tid":50269,"t":"road","e":4.71,"s":4.49},"arcs":[965]},{"type":"LineString","properties":{"gid":974545,"sid":50264,"tid":50398,"t":"road","e":5.07,"s":4.83},"arcs":[884,966]},{"type":"LineString","properties":{"gid":975990,"sid":50265,"tid":50279,"t":"road","e":0.46,"s":0.44},"arcs":[967]},{"type":"LineString","properties":{"gid":975556,"sid":50265,"tid":50366,"t":"road","e":1.29,"s":1.23},"arcs":[968]},{"type":"LineString","properties":{"gid":974777,"sid":50266,"tid":50336,"t":"road","e":4.38,"s":4.17},"arcs":[326,969,970]},{"type":"LineString","properties":{"gid":975923,"sid":50266,"tid":50732,"t":"road","e":0.85,"s":0.81},"arcs":[971]},{"type":"LineString","properties":{"gid":975381,"sid":50267,"tid":50382,"t":"road","e":1.99,"s":1.89},"arcs":[972,973,974,975,976,977]},{"type":"LineString","properties":{"gid":975035,"sid":50267,"tid":50432,"t":"road","e":3.32,"s":3.16},"arcs":[978]},{"type":"LineString","properties":{"gid":975443,"sid":50268,"tid":50278,"t":"road","e":1.47,"s":1.4},"arcs":[979,980,981]},{"type":"LineString","properties":{"gid":975391,"sid":50268,"tid":50312,"t":"road","e":0.92,"s":0.88},"arcs":[980,981]},{"type":"LineString","properties":{"gid":974743,"sid":50268,"tid":50322,"t":"road","e":0.4,"s":0.38},"arcs":[982]},{"type":"LineString","properties":{"gid":974636,"sid":50271,"tid":50272,"t":"road","e":2.06,"s":1.96},"arcs":[983]},{"type":"LineString","properties":{"gid":975744,"sid":50273,"tid":50467,"t":"road","e":6.57,"s":6.25},"arcs":[566,984]},{"type":"LineString","properties":{"gid":974613,"sid":50273,"tid":50534,"t":"road","e":8.25,"s":7.86},"arcs":[985]},{"type":"LineString","properties":{"gid":975654,"sid":50274,"tid":50342,"t":"road","e":4.79,"s":4.56},"arcs":[986]},{"type":"LineString","properties":{"gid":974922,"sid":50274,"tid":50347,"t":"road","e":4.34,"s":4.73},"arcs":[922,987]},{"type":"LineString","properties":{"gid":974516,"sid":50275,"tid":50355,"t":"road","e":3.55,"s":3.38},"arcs":[988]},{"type":"LineString","properties":{"gid":974625,"sid":50276,"tid":50282,"t":"road","e":3.13,"s":2.98},"arcs":[989,990,991,992,993]},{"type":"LineString","properties":{"gid":975125,"sid":50277,"tid":50370,"t":"road","e":8.32,"s":7.93},"arcs":[994,995]},{"type":"LineString","properties":{"gid":975457,"sid":50278,"tid":50335,"t":"road","e":0.43,"s":0.41},"arcs":[996,997]},{"type":"LineString","properties":{"gid":975120,"sid":50279,"tid":50327,"t":"road","e":2.16,"s":2.05},"arcs":[538,998,999]},{"type":"LineString","properties":{"gid":975150,"sid":50280,"tid":50399,"t":"road","e":5.3,"s":5.05},"arcs":[1000,1001]},{"type":"LineString","properties":{"gid":974496,"sid":50281,"tid":50331,"t":"road","e":2.43,"s":2.31},"arcs":[1002]},{"type":"LineString","properties":{"gid":975226,"sid":50282,"tid":50306,"t":"road","e":6.66,"s":6.94},"arcs":[1003,1004,-991,1005]},{"type":"LineString","properties":{"gid":974696,"sid":50282,"tid":50757,"t":"road","e":11.06,"s":10.54},"arcs":[1006,1007]},{"type":"LineString","properties":{"gid":975092,"sid":50283,"tid":50295,"t":"road","e":5.6,"s":5.33},"arcs":[1008,1009]},{"type":"LineString","properties":{"gid":975017,"sid":50283,"tid":50721,"t":"road","e":2.6,"s":2.48},"arcs":[1010,1011,1012,1013,1014]},{"type":"LineString","properties":{"gid":975448,"sid":50284,"tid":50373,"t":"road","e":1.45,"s":1.38},"arcs":[1015]},{"type":"LineString","properties":{"gid":974375,"sid":50284,"tid":50660,"t":"road","e":1.96,"s":1.86},"arcs":[1016]},{"type":"LineString","properties":{"gid":974566,"sid":50286,"tid":50327,"t":"road","e":0.84,"s":0.8},"arcs":[1017,1018,1019,1020,1021]},{"type":"LineString","properties":{"gid":975248,"sid":50287,"tid":50423,"t":"road","e":7.14,"s":8},"arcs":[1022,1023]},{"type":"LineString","properties":{"gid":976051,"sid":50287,"tid":50743,"t":"road","e":2.45,"s":2.33},"arcs":[1024,1025,1026,1027,1028,1029,1030,1031,1032]},{"type":"LineString","properties":{"gid":975702,"sid":50290,"tid":50364,"t":"road","e":6.5,"s":6.19},"arcs":[1033,1034]},{"type":"LineString","properties":{"gid":974804,"sid":50290,"tid":50388,"t":"road","e":6.61,"s":6.3},"arcs":[1035,1036]},{"type":"LineString","properties":{"gid":974805,"sid":50290,"tid":50771,"t":"road","e":5.97,"s":5.69},"arcs":[1037,1036]},{"type":"LineString","properties":{"gid":974433,"sid":50291,"tid":50682,"t":"road","e":11.59,"s":11.04},"arcs":[1038,1039]},{"type":"LineString","properties":{"gid":975865,"sid":50292,"tid":50309,"t":"road","e":2.03,"s":1.93},"arcs":[1040,-889]},{"type":"LineString","properties":{"gid":974648,"sid":50293,"tid":50408,"t":"road","e":1.85,"s":2.96},"arcs":[1041,-3]},{"type":"LineString","properties":{"gid":974661,"sid":50294,"tid":50414,"t":"road","e":2.86,"s":2.73},"arcs":[1042]},{"type":"LineString","properties":{"gid":975019,"sid":50294,"tid":50746,"t":"road","e":0.79,"s":0.75},"arcs":[1043]},{"type":"LineString","properties":{"gid":975018,"sid":50295,"tid":50745,"t":"road","e":0.56,"s":0.54},"arcs":[1044]},{"type":"LineString","properties":{"gid":975397,"sid":50296,"tid":50389,"t":"road","e":1.46,"s":1.39},"arcs":[840,1045]},{"type":"LineString","properties":{"gid":975947,"sid":50297,"tid":50432,"t":"road","e":4.18,"s":3.98},"arcs":[1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058]},{"type":"LineString","properties":{"gid":974957,"sid":50297,"tid":50654,"t":"road","e":5.98,"s":5.69},"arcs":[1059]},{"type":"LineString","properties":{"gid":975575,"sid":50298,"tid":50424,"t":"road","e":0.39,"s":0.37},"arcs":[1060]},{"type":"LineString","properties":{"gid":976010,"sid":50299,"tid":50362,"t":"road","e":1.51,"s":1.44},"arcs":[1061,1062,-234]},{"type":"LineString","properties":{"gid":975641,"sid":50299,"tid":50427,"t":"road","e":1.04,"s":0.99},"arcs":[1063]},{"type":"LineString","properties":{"gid":975156,"sid":50300,"tid":50340,"t":"road","e":4.73,"s":4.51},"arcs":[612,1064,1065]},{"type":"LineString","properties":{"gid":975721,"sid":50300,"tid":50363,"t":"road","e":3.74,"s":3.56},"arcs":[1066,1067]},{"type":"LineString","properties":{"gid":976065,"sid":50302,"tid":50304,"t":"road","e":7.23,"s":6.88},"arcs":[1068]},{"type":"LineString","properties":{"gid":973943,"sid":50303,"tid":51862,"t":"hires","e":0.5,"s":0.08},"arcs":[-658]},{"type":"LineString","properties":{"gid":975939,"sid":50304,"tid":50760,"t":"road","e":3.21,"s":3.05},"arcs":[1069,-298]},{"type":"LineString","properties":{"gid":975953,"sid":50305,"tid":50718,"t":"road","e":2,"s":1.91},"arcs":[1070]},{"type":"LineString","properties":{"gid":975951,"sid":50305,"tid":50725,"t":"road","e":0.67,"s":0.64},"arcs":[1071]},{"type":"LineString","properties":{"gid":976050,"sid":50306,"tid":50350,"t":"road","e":4.95,"s":4.71},"arcs":[1072]},{"type":"LineString","properties":{"gid":974475,"sid":50306,"tid":50751,"t":"road","e":3.6,"s":3.43},"arcs":[1073,-1004]},{"type":"LineString","properties":{"gid":975816,"sid":50307,"tid":50765,"t":"road","e":0.35,"s":0.34},"arcs":[1074]},{"type":"LineString","properties":{"gid":976129,"sid":50309,"tid":50772,"t":"road","e":1.7,"s":1.62},"arcs":[1075,1076]},{"type":"LineString","properties":{"gid":975470,"sid":50309,"tid":50773,"t":"road","e":0.67,"s":0.63},"arcs":[1077,1078,1079,1076]},{"type":"LineString","properties":{"gid":975384,"sid":50310,"tid":50343,"t":"road","e":4.55,"s":4.33},"arcs":[1080,1081,1082,-937]},{"type":"LineString","properties":{"gid":974674,"sid":50310,"tid":50738,"t":"road","e":1.32,"s":1.26},"arcs":[1083,1084]},{"type":"LineString","properties":{"gid":974663,"sid":50311,"tid":50383,"t":"road","e":3.8,"s":3.62},"arcs":[1085,1086]},{"type":"LineString","properties":{"gid":975597,"sid":50313,"tid":50371,"t":"road","e":1.19,"s":1.14},"arcs":[1087]},{"type":"LineString","properties":{"gid":974473,"sid":50313,"tid":50422,"t":"road","e":5.43,"s":5.17},"arcs":[1088]},{"type":"LineString","properties":{"gid":974673,"sid":50314,"tid":50408,"t":"road","e":3.8,"s":3.62},"arcs":[1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,-224]},{"type":"LineString","properties":{"gid":975285,"sid":50315,"tid":50473,"t":"road","e":0.9,"s":0.85},"arcs":[1099]},{"type":"LineString","properties":{"gid":975777,"sid":50315,"tid":50763,"t":"road","e":1.6,"s":2.73},"arcs":[1100]},{"type":"LineString","properties":{"gid":975169,"sid":50316,"tid":50318,"t":"road","e":3.65,"s":3.47},"arcs":[1101]},{"type":"LineString","properties":{"gid":974559,"sid":50317,"tid":50327,"t":"road","e":0.83,"s":0.79},"arcs":[1102,1103,1104,1105,1106]},{"type":"LineString","properties":{"gid":975068,"sid":50320,"tid":50538,"t":"road","e":3.73,"s":3.55},"arcs":[1107]},{"type":"LineString","properties":{"gid":975363,"sid":50323,"tid":50502,"t":"road","e":2.73,"s":2.6},"arcs":[1108,1109,1110,1111,1112]},{"type":"LineString","properties":{"gid":975053,"sid":50324,"tid":50327,"t":"road","e":2.51,"s":2.39},"arcs":[538,1113,1114]},{"type":"LineString","properties":{"gid":974722,"sid":50325,"tid":50370,"t":"road","e":3.96,"s":3.77},"arcs":[1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125]},{"type":"LineString","properties":{"gid":975147,"sid":50325,"tid":50743,"t":"road","e":4.07,"s":3.87},"arcs":[1126]},{"type":"LineString","properties":{"gid":974647,"sid":50326,"tid":50417,"t":"road","e":2.84,"s":2.7},"arcs":[1127]},{"type":"LineString","properties":{"gid":975455,"sid":50327,"tid":50393,"t":"road","e":0.99,"s":0.95},"arcs":[1128,1129,-1114,-539]},{"type":"LineString","properties":{"gid":975955,"sid":50327,"tid":50425,"t":"road","e":3.53,"s":3.36},"arcs":[1130,-999,-539]},{"type":"LineString","properties":{"gid":975598,"sid":50327,"tid":50720,"t":"road","e":2.4,"s":2.29},"arcs":[1131,-697]},{"type":"LineString","properties":{"gid":976037,"sid":50328,"tid":50354,"t":"road","e":5.7,"s":5.43},"arcs":[1132]},{"type":"LineString","properties":{"gid":974738,"sid":50329,"tid":50334,"t":"road","e":7.07,"s":6.73},"arcs":[1133,1134,1135,1136,1137]},{"type":"LineString","properties":{"gid":974344,"sid":50330,"tid":51547,"t":"hires","e":0.5,"s":0.11},"arcs":[867]},{"type":"LineString","properties":{"gid":975148,"sid":50331,"tid":50374,"t":"road","e":9.47,"s":9.02},"arcs":[1138]},{"type":"LineString","properties":{"gid":974740,"sid":50334,"tid":50394,"t":"road","e":0.91,"s":0.86},"arcs":[1139,-1134]},{"type":"LineString","properties":{"gid":975545,"sid":50335,"tid":50417,"t":"road","e":10.66,"s":10.15},"arcs":[1140]},{"type":"LineString","properties":{"gid":975819,"sid":50336,"tid":50351,"t":"road","e":7.32,"s":7.57},"arcs":[1141,1142,-970,-327]},{"type":"LineString","properties":{"gid":975117,"sid":50339,"tid":50423,"t":"road","e":1.59,"s":2.11},"arcs":[1022,1143,1144]},{"type":"LineString","properties":{"gid":974879,"sid":50339,"tid":50747,"t":"road","e":2.68,"s":3.15},"arcs":[1145]},{"type":"LineString","properties":{"gid":976060,"sid":50340,"tid":50363,"t":"road","e":2.99,"s":2.85},"arcs":[1066,1146,-1065,-613]},{"type":"LineString","properties":{"gid":974499,"sid":50341,"tid":50392,"t":"road","e":1.71,"s":1.63},"arcs":[1147]},{"type":"LineString","properties":{"gid":974385,"sid":50341,"tid":50735,"t":"road","e":0.59,"s":0.56},"arcs":[1148]},{"type":"LineString","properties":{"gid":975647,"sid":50342,"tid":50401,"t":"road","e":4.39,"s":5.39},"arcs":[1149]},{"type":"LineString","properties":{"gid":976026,"sid":50343,"tid":50344,"t":"road","e":1.81,"s":1.73},"arcs":[1150]},{"type":"LineString","properties":{"gid":975555,"sid":50343,"tid":50748,"t":"road","e":7.14,"s":6.8},"arcs":[1151]},{"type":"LineString","properties":{"gid":975674,"sid":50343,"tid":50768,"t":"road","e":3.36,"s":3.2},"arcs":[1152]},{"type":"LineString","properties":{"gid":976027,"sid":50344,"tid":50420,"t":"road","e":2.24,"s":2.14},"arcs":[1153]},{"type":"LineString","properties":{"gid":975413,"sid":50345,"tid":50749,"t":"road","e":0.45,"s":0.43},"arcs":[1154]},{"type":"LineString","properties":{"gid":976061,"sid":50347,"tid":50443,"t":"road","e":1.58,"s":1.51},"arcs":[1155]},{"type":"LineString","properties":{"gid":974753,"sid":50348,"tid":50407,"t":"road","e":4.35,"s":5.34},"arcs":[1156]},{"type":"LineString","properties":{"gid":974400,"sid":50349,"tid":50383,"t":"road","e":4.29,"s":4.08},"arcs":[1085,1157]},{"type":"LineString","properties":{"gid":974790,"sid":50350,"tid":50367,"t":"road","e":7.09,"s":6.76},"arcs":[1158]},{"type":"LineString","properties":{"gid":976044,"sid":50351,"tid":50361,"t":"road","e":3.2,"s":3.05},"arcs":[1159,-1142]},{"type":"LineString","properties":{"gid":975678,"sid":50351,"tid":50737,"t":"road","e":3.6,"s":3.43},"arcs":[1160,1161,1162,1163,1164,1165,1166,1167]},{"type":"LineString","properties":{"gid":976042,"sid":50352,"tid":50384,"t":"road","e":2.32,"s":2.21},"arcs":[1168]},{"type":"LineString","properties":{"gid":975026,"sid":50353,"tid":50437,"t":"road","e":1.99,"s":1.9},"arcs":[1169]},{"type":"LineString","properties":{"gid":975786,"sid":50354,"tid":50474,"t":"road","e":4.98,"s":4.74},"arcs":[1170]},{"type":"LineString","properties":{"gid":974787,"sid":50356,"tid":50359,"t":"road","e":2.55,"s":2.43},"arcs":[1171,1172]},{"type":"LineString","properties":{"gid":975685,"sid":50356,"tid":50419,"t":"road","e":2.58,"s":2.46},"arcs":[1173]},{"type":"LineString","properties":{"gid":975030,"sid":50359,"tid":50731,"t":"road","e":3.2,"s":3.65},"arcs":[1174]},{"type":"LineString","properties":{"gid":975589,"sid":50360,"tid":50727,"t":"road","e":5.24,"s":4.99},"arcs":[1175]},{"type":"LineString","properties":{"gid":975408,"sid":50361,"tid":50736,"t":"road","e":4.2,"s":4},"arcs":[1176,1177,1178]},{"type":"LineString","properties":{"gid":974939,"sid":50362,"tid":50394,"t":"road","e":3.11,"s":4.16},"arcs":[1179]},{"type":"LineString","properties":{"gid":974123,"sid":50365,"tid":51573,"t":"hires","e":0.5,"s":0.43},"arcs":[127]},{"type":"LineString","properties":{"gid":974398,"sid":50369,"tid":50390,"t":"road","e":3.56,"s":3.39},"arcs":[55,1180]},{"type":"LineString","properties":{"gid":974815,"sid":50375,"tid":50419,"t":"road","e":3.55,"s":3.38},"arcs":[1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197]},{"type":"LineString","properties":{"gid":975682,"sid":50376,"tid":50443,"t":"road","e":6.6,"s":6.29},"arcs":[1198]},{"type":"LineString","properties":{"gid":974560,"sid":50377,"tid":50410,"t":"road","e":4.74,"s":4.51},"arcs":[1199,1200]},{"type":"LineString","properties":{"gid":974388,"sid":50378,"tid":50720,"t":"road","e":0.86,"s":0.82},"arcs":[1201,-701]},{"type":"LineString","properties":{"gid":975700,"sid":50385,"tid":50390,"t":"road","e":5.59,"s":5.32},"arcs":[1202]},{"type":"LineString","properties":{"gid":974732,"sid":50387,"tid":50390,"t":"road","e":2.37,"s":2.26},"arcs":[1203]},{"type":"LineString","properties":{"gid":975051,"sid":50389,"tid":50718,"t":"road","e":3.39,"s":3.23},"arcs":[1204]},{"type":"LineString","properties":{"gid":974668,"sid":50392,"tid":50419,"t":"road","e":5.42,"s":5.16},"arcs":[1181,1205,1206]},{"type":"LineString","properties":{"gid":976062,"sid":50395,"tid":50413,"t":"road","e":2.41,"s":2.29},"arcs":[1207,-222]},{"type":"LineString","properties":{"gid":975218,"sid":50395,"tid":50772,"t":"road","e":0.72,"s":0.69},"arcs":[1208]},{"type":"LineString","properties":{"gid":974424,"sid":50395,"tid":50773,"t":"road","e":1.13,"s":1.07},"arcs":[1209]},{"type":"LineString","properties":{"gid":975522,"sid":50396,"tid":50426,"t":"road","e":8,"s":7.62},"arcs":[1210,1211,861,-862,-861]},{"type":"LineString","properties":{"gid":975105,"sid":50398,"tid":50435,"t":"road","e":3.73,"s":3.55},"arcs":[1212,1213,1214]},{"type":"LineString","properties":{"gid":976035,"sid":50399,"tid":50770,"t":"road","e":0.97,"s":0.93},"arcs":[1215]},{"type":"LineString","properties":{"gid":975697,"sid":50400,"tid":50431,"t":"road","e":4.28,"s":4.08},"arcs":[1216]},{"type":"LineString","properties":{"gid":974888,"sid":50402,"tid":50414,"t":"road","e":3.06,"s":2.91},"arcs":[1217]},{"type":"LineString","properties":{"gid":974442,"sid":50403,"tid":50769,"t":"road","e":2.17,"s":2.07},"arcs":[1218,1219]},{"type":"LineString","properties":{"gid":975826,"sid":50406,"tid":50407,"t":"road","e":5.08,"s":4.84},"arcs":[167,1220]},{"type":"LineString","properties":{"gid":975970,"sid":50406,"tid":50418,"t":"road","e":2.55,"s":2.43},"arcs":[1221,1222,1223,1224,1225]},{"type":"LineString","properties":{"gid":975820,"sid":50408,"tid":50763,"t":"road","e":2.35,"s":3.44},"arcs":[1226]},{"type":"LineString","properties":{"gid":975130,"sid":50409,"tid":50415,"t":"road","e":3.75,"s":3.57},"arcs":[1227,1228,1229,1230,1231,1232,1233,1234,1235]},{"type":"LineString","properties":{"gid":975999,"sid":50409,"tid":50421,"t":"road","e":3.37,"s":3.21},"arcs":[1236,1237,1238,1239,1240,1241]},{"type":"LineString","properties":{"gid":974169,"sid":50409,"tid":51172,"t":"hires","e":0.5,"s":0.69},"arcs":[847]},{"type":"LineString","properties":{"gid":974149,"sid":50409,"tid":51617,"t":"hires","e":0.5,"s":1.53},"arcs":[-1236]},{"type":"LineString","properties":{"gid":974320,"sid":50409,"tid":51760,"t":"hires","e":0.5,"s":0.52},"arcs":[-1242]},{"type":"LineString","properties":{"gid":973936,"sid":50411,"tid":51704,"t":"hires","e":0.5,"s":1.79},"arcs":[417,418]},{"type":"LineString","properties":{"gid":974168,"sid":50412,"tid":51469,"t":"hires","e":0.5,"s":0.34},"arcs":[1242]},{"type":"LineString","properties":{"gid":974195,"sid":50412,"tid":51503,"t":"hires","e":0.5,"s":0.4},"arcs":[1243]},{"type":"LineString","properties":{"gid":974171,"sid":50415,"tid":51567,"t":"hires","e":0.5,"s":0.99},"arcs":[878]},{"type":"LineString","properties":{"gid":973976,"sid":50415,"tid":51608,"t":"hires","e":0.5,"s":0.27},"arcs":[1244]},{"type":"LineString","properties":{"gid":974178,"sid":50415,"tid":51617,"t":"hires","e":0.5,"s":2.04},"arcs":[1227,1245,1246,1230,1247,1232,1248,1234]},{"type":"LineString","properties":{"gid":974257,"sid":50415,"tid":51648,"t":"hires","e":0.5,"s":1.03},"arcs":[1249]},{"type":"LineString","properties":{"gid":975574,"sid":50418,"tid":50429,"t":"road","e":1.12,"s":1.06},"arcs":[1250,1251,1252,1253,1254]},{"type":"LineString","properties":{"gid":974438,"sid":50419,"tid":50742,"t":"road","e":3.25,"s":3.09},"arcs":[1255]},{"type":"LineString","properties":{"gid":974159,"sid":50421,"tid":50730,"t":"hires","e":0.5,"s":2.33},"arcs":[1256,1257,1258]},{"type":"LineString","properties":{"gid":975427,"sid":50421,"tid":50730,"t":"road","e":2.45,"s":2.33},"arcs":[-1259,1259,1260]},{"type":"LineString","properties":{"gid":973949,"sid":50421,"tid":51748,"t":"hires","e":0.5,"s":1.12},"arcs":[1236]},{"type":"LineString","properties":{"gid":974026,"sid":50421,"tid":51764,"t":"hires","e":0.5,"s":2.05},"arcs":[1261]},{"type":"LineString","properties":{"gid":976053,"sid":50422,"tid":50465,"t":"road","e":3.2,"s":3.04},"arcs":[1262]},{"type":"LineString","properties":{"gid":975365,"sid":50423,"tid":50738,"t":"road","e":3.35,"s":3.19},"arcs":[1263,1264,1265,1266,-1144,-1023]},{"type":"LineString","properties":{"gid":976109,"sid":50429,"tid":50444,"t":"road","e":4.95,"s":4.72},"arcs":[1267,346,-347]},{"type":"LineString","properties":{"gid":975756,"sid":50431,"tid":50436,"t":"road","e":3.13,"s":2.98},"arcs":[1268]},{"type":"LineString","properties":{"gid":974717,"sid":50434,"tid":50460,"t":"road","e":4.97,"s":4.73},"arcs":[1269]},{"type":"LineString","properties":{"gid":975711,"sid":50435,"tid":50445,"t":"road","e":7.45,"s":7.1},"arcs":[1270,1213,-1214,-1213]},{"type":"LineString","properties":{"gid":975243,"sid":50436,"tid":50441,"t":"road","e":3.9,"s":4.32},"arcs":[1271]},{"type":"LineString","properties":{"gid":975244,"sid":50436,"tid":50447,"t":"road","e":4.75,"s":5.12},"arcs":[1272]},{"type":"LineString","properties":{"gid":975477,"sid":50437,"tid":50447,"t":"road","e":0.56,"s":0.53},"arcs":[1273]},{"type":"LineString","properties":{"gid":975726,"sid":50438,"tid":50439,"t":"road","e":2.34,"s":2.23},"arcs":[1274,1275]},{"type":"LineString","properties":{"gid":974855,"sid":50438,"tid":50447,"t":"road","e":1.74,"s":1.66},"arcs":[1276]},{"type":"LineString","properties":{"gid":975723,"sid":50439,"tid":50440,"t":"road","e":2.51,"s":2.39},"arcs":[1277,1278]},{"type":"LineString","properties":{"gid":975725,"sid":50440,"tid":50441,"t":"road","e":0.67,"s":0.64},"arcs":[1279,-1278]},{"type":"LineString","properties":{"gid":976089,"sid":50442,"tid":50443,"t":"road","e":5.39,"s":5.14},"arcs":[1280]},{"type":"LineString","properties":{"gid":974828,"sid":50442,"tid":50458,"t":"road","e":4.06,"s":3.87},"arcs":[1281,1282]},{"type":"LineString","properties":{"gid":976041,"sid":50444,"tid":50774,"t":"road","e":3.27,"s":3.12},"arcs":[1283]},{"type":"LineString","properties":{"gid":975139,"sid":50445,"tid":50774,"t":"road","e":2.36,"s":2.85},"arcs":[1284]},{"type":"LineString","properties":{"gid":975453,"sid":50463,"tid":50464,"t":"road","e":1.75,"s":1.67},"arcs":[1285]},{"type":"LineString","properties":{"gid":974778,"sid":50463,"tid":50465,"t":"road","e":2.51,"s":2.39},"arcs":[1286]},{"type":"LineString","properties":{"gid":974615,"sid":50468,"tid":50752,"t":"road","e":1.98,"s":1.88},"arcs":[1287]},{"type":"LineString","properties":{"gid":974535,"sid":50469,"tid":50749,"t":"road","e":0.91,"s":0.86},"arcs":[1288]},{"type":"LineString","properties":{"gid":974220,"sid":50471,"tid":51926,"t":"hires","e":0.5,"s":0.46},"arcs":[1289]},{"type":"LineString","properties":{"gid":973928,"sid":50471,"tid":51927,"t":"hires","e":0.5,"s":0.22},"arcs":[1290]},{"type":"LineString","properties":{"gid":974003,"sid":50471,"tid":51937,"t":"hires","e":0.5,"s":0.42},"arcs":[1291,1292]},{"type":"LineString","properties":{"gid":975419,"sid":50472,"tid":50749,"t":"road","e":5.58,"s":5.32},"arcs":[1293]},{"type":"LineString","properties":{"gid":975023,"sid":50502,"tid":50746,"t":"road","e":1.48,"s":1.41},"arcs":[1294]},{"type":"LineString","properties":{"gid":974470,"sid":50528,"tid":50733,"t":"road","e":0.93,"s":0.88},"arcs":[1295]},{"type":"LineString","properties":{"gid":975585,"sid":50531,"tid":50538,"t":"road","e":9.55,"s":9.09},"arcs":[1296,1297]},{"type":"LineString","properties":{"gid":974513,"sid":50534,"tid":50535,"t":"road","e":0.91,"s":0.86},"arcs":[1298]},{"type":"LineString","properties":{"gid":974460,"sid":50535,"tid":50750,"t":"road","e":1.32,"s":1.25},"arcs":[1299]},{"type":"LineString","properties":{"gid":975937,"sid":50549,"tid":50550,"t":"road","e":0.85,"s":0.81},"arcs":[1300,1301]},{"type":"LineString","properties":{"gid":975231,"sid":50643,"tid":50719,"t":"road","e":1.45,"s":1.38},"arcs":[1302]},{"type":"LineString","properties":{"gid":974612,"sid":50660,"tid":50674,"t":"road","e":2,"s":1.9},"arcs":[1303]},{"type":"LineString","properties":{"gid":974434,"sid":50661,"tid":50690,"t":"road","e":8.32,"s":7.92},"arcs":[1304]},{"type":"LineString","properties":{"gid":975651,"sid":50678,"tid":50700,"t":"road","e":8.19,"s":7.8},"arcs":[1305]},{"type":"LineString","properties":{"gid":974389,"sid":50682,"tid":50690,"t":"road","e":13.07,"s":12.45},"arcs":[1306,-1039]},{"type":"LineString","properties":{"gid":974481,"sid":50690,"tid":50700,"t":"road","e":5.95,"s":5.67},"arcs":[1307]},{"type":"LineString","properties":{"gid":975360,"sid":50721,"tid":50726,"t":"road","e":0.13,"s":0.13},"arcs":[1308]},{"type":"LineString","properties":{"gid":974301,"sid":50730,"tid":51659,"t":"hires","e":0.5,"s":0.37},"arcs":[749]},{"type":"LineString","properties":{"gid":974151,"sid":50730,"tid":51678,"t":"hires","e":0.5,"s":1.8},"arcs":[330,331]},{"type":"LineString","properties":{"gid":975803,"sid":50731,"tid":50732,"t":"road","e":7.34,"s":7.59},"arcs":[1309,-610]},{"type":"LineString","properties":{"gid":975411,"sid":50732,"tid":50733,"t":"road","e":2.01,"s":1.92},"arcs":[1310]},{"type":"LineString","properties":{"gid":975032,"sid":50735,"tid":50757,"t":"road","e":2.56,"s":2.43},"arcs":[1311]},{"type":"LineString","properties":{"gid":975368,"sid":50736,"tid":50737,"t":"road","e":1.8,"s":1.72},"arcs":[1312]},{"type":"LineString","properties":{"gid":974759,"sid":50766,"tid":50767,"t":"road","e":1.76,"s":1.68},"arcs":[1313,1314,1315,1316,1317]},{"type":"LineString","properties":{"gid":975101,"sid":50769,"tid":50770,"t":"road","e":2.06,"s":1.96},"arcs":[1318,-1219]},{"type":"LineString","properties":{"gid":974110,"sid":51170,"tid":51512,"t":"hires","e":0.5,"s":0.68},"arcs":[1319]},{"type":"LineString","properties":{"gid":974180,"sid":51170,"tid":51531,"t":"hires","e":0.5,"s":1.31},"arcs":[869,1320,1321,872,1322]},{"type":"LineString","properties":{"gid":973984,"sid":51170,"tid":51532,"t":"hires","e":0.5,"s":0.33},"arcs":[1323]},{"type":"LineString","properties":{"gid":974147,"sid":51170,"tid":51547,"t":"hires","e":0.5,"s":0.53},"arcs":[-869]},{"type":"LineString","properties":{"gid":974153,"sid":51171,"tid":51573,"t":"hires","e":0.5,"s":1.68},"arcs":[-746]},{"type":"LineString","properties":{"gid":974124,"sid":51171,"tid":51586,"t":"hires","e":0.5,"s":1.41},"arcs":[746,1324]},{"type":"LineString","properties":{"gid":974197,"sid":51171,"tid":51587,"t":"hires","e":0.5,"s":1.99},"arcs":[1325]},{"type":"LineString","properties":{"gid":974268,"sid":51172,"tid":51742,"t":"hires","e":0.5,"s":1.66},"arcs":[1326]},{"type":"LineString","properties":{"gid":973961,"sid":51172,"tid":51760,"t":"hires","e":0.5,"s":0.89},"arcs":[1327]},{"type":"LineString","properties":{"gid":974318,"sid":51172,"tid":51792,"t":"hires","e":0.5,"s":0.46},"arcs":[848,1328,850]},{"type":"LineString","properties":{"gid":974362,"sid":51173,"tid":51679,"t":"hires","e":0.5,"s":1.12},"arcs":[1329]},{"type":"LineString","properties":{"gid":974173,"sid":51175,"tid":51651,"t":"hires","e":0.5,"s":1.43},"arcs":[742]},{"type":"LineString","properties":{"gid":974348,"sid":51176,"tid":51316,"t":"hires","e":0.5,"s":0.95},"arcs":[1330]},{"type":"LineString","properties":{"gid":974122,"sid":51176,"tid":51386,"t":"hires","e":0.5,"s":1.28},"arcs":[1331]},{"type":"LineString","properties":{"gid":974194,"sid":51177,"tid":51384,"t":"hires","e":0.5,"s":0.19},"arcs":[1332]},{"type":"LineString","properties":{"gid":974206,"sid":51177,"tid":51399,"t":"hires","e":0.5,"s":1.42},"arcs":[1333]},{"type":"LineString","properties":{"gid":974101,"sid":51373,"tid":51376,"t":"hires","e":0.5,"s":0.44},"arcs":[1334]},{"type":"LineString","properties":{"gid":974219,"sid":51373,"tid":51405,"t":"hires","e":0.5,"s":0.96},"arcs":[1335]},{"type":"LineString","properties":{"gid":973930,"sid":51373,"tid":51518,"t":"hires","e":0.5,"s":1.17},"arcs":[-627,1336,-625]},{"type":"LineString","properties":{"gid":974198,"sid":51374,"tid":51386,"t":"hires","e":0.5,"s":1.46},"arcs":[1337]},{"type":"LineString","properties":{"gid":974043,"sid":51375,"tid":51386,"t":"hires","e":0.5,"s":1.18},"arcs":[1338]},{"type":"LineString","properties":{"gid":974199,"sid":51375,"tid":51485,"t":"hires","e":0.5,"s":0.82},"arcs":[1339]},{"type":"LineString","properties":{"gid":974152,"sid":51375,"tid":51487,"t":"hires","e":0.5,"s":0.82},"arcs":[111]},{"type":"LineString","properties":{"gid":974353,"sid":51392,"tid":51444,"t":"hires","e":0.5,"s":0.37},"arcs":[1340]},{"type":"LineString","properties":{"gid":973988,"sid":51393,"tid":51444,"t":"hires","e":0.5,"s":2.22},"arcs":[1341]},{"type":"LineString","properties":{"gid":974067,"sid":51393,"tid":51531,"t":"hires","e":0.5,"s":1.41},"arcs":[-877,1342,-875,1343]},{"type":"LineString","properties":{"gid":974107,"sid":51399,"tid":51522,"t":"hires","e":0.5,"s":0.24},"arcs":[1344]},{"type":"LineString","properties":{"gid":974205,"sid":51399,"tid":51527,"t":"hires","e":0.5,"s":0.26},"arcs":[1345]},{"type":"LineString","properties":{"gid":974103,"sid":51402,"tid":51403,"t":"hires","e":0.5,"s":0.29},"arcs":[1346]},{"type":"LineString","properties":{"gid":974329,"sid":51403,"tid":51444,"t":"hires","e":0.5,"s":0.46},"arcs":[1347]},{"type":"LineString","properties":{"gid":973985,"sid":51403,"tid":51455,"t":"hires","e":0.5,"s":0.87},"arcs":[1348]},{"type":"LineString","properties":{"gid":974355,"sid":51407,"tid":51518,"t":"hires","e":0.5,"s":1.15},"arcs":[621,1349,623,402]},{"type":"LineString","properties":{"gid":974201,"sid":51468,"tid":51469,"t":"hires","e":0.5,"s":0.57},"arcs":[1350]},{"type":"LineString","properties":{"gid":974331,"sid":51469,"tid":51470,"t":"hires","e":0.5,"s":0.12},"arcs":[1351]},{"type":"LineString","properties":{"gid":974106,"sid":51480,"tid":51481,"t":"hires","e":0.5,"s":0.29},"arcs":[1352]},{"type":"LineString","properties":{"gid":974108,"sid":51481,"tid":51507,"t":"hires","e":0.5,"s":0.45},"arcs":[1353]},{"type":"LineString","properties":{"gid":974208,"sid":51481,"tid":51509,"t":"hires","e":0.5,"s":0.58},"arcs":[1354]},{"type":"LineString","properties":{"gid":973973,"sid":51487,"tid":51518,"t":"hires","e":0.5,"s":1.73},"arcs":[1355]},{"type":"LineString","properties":{"gid":974304,"sid":51487,"tid":51537,"t":"hires","e":0.5,"s":0.55},"arcs":[1356]},{"type":"LineString","properties":{"gid":973980,"sid":51507,"tid":51514,"t":"hires","e":0.5,"s":1.11},"arcs":[1357]},{"type":"LineString","properties":{"gid":973982,"sid":51507,"tid":51531,"t":"hires","e":0.5,"s":0.67},"arcs":[1358]},{"type":"LineString","properties":{"gid":974068,"sid":51567,"tid":51577,"t":"hires","e":0.5,"s":0.19},"arcs":[1359]},{"type":"LineString","properties":{"gid":973933,"sid":51573,"tid":51586,"t":"hires","e":0.5,"s":2.16},"arcs":[128]},{"type":"LineString","properties":{"gid":973962,"sid":51587,"tid":51596,"t":"hires","e":0.5,"s":1.43},"arcs":[1360]},{"type":"LineString","properties":{"gid":974272,"sid":51587,"tid":51617,"t":"hires","e":0.5,"s":0.99},"arcs":[1361]},{"type":"LineString","properties":{"gid":974273,"sid":51587,"tid":51620,"t":"hires","e":0.5,"s":1.61},"arcs":[1362]},{"type":"LineString","properties":{"gid":974218,"sid":51589,"tid":51601,"t":"hires","e":0.5,"s":1.38},"arcs":[1363,1364]},{"type":"LineString","properties":{"gid":974365,"sid":51589,"tid":51610,"t":"hires","e":0.5,"s":1.19},"arcs":[1365,409,1366,411]},{"type":"LineString","properties":{"gid":974258,"sid":51601,"tid":51619,"t":"hires","e":0.5,"s":0.96},"arcs":[1367]},{"type":"LineString","properties":{"gid":974023,"sid":51601,"tid":51624,"t":"hires","e":0.5,"s":0.38},"arcs":[-1365,1368]},{"type":"LineString","properties":{"gid":974095,"sid":51610,"tid":51624,"t":"hires","e":0.5,"s":0.26},"arcs":[1369]},{"type":"LineString","properties":{"gid":974158,"sid":51610,"tid":51628,"t":"hires","e":0.5,"s":0.74},"arcs":[412,1370,414]},{"type":"LineString","properties":{"gid":974217,"sid":51611,"tid":51624,"t":"hires","e":0.5,"s":1.25},"arcs":[1371]},{"type":"LineString","properties":{"gid":974265,"sid":51611,"tid":51669,"t":"hires","e":0.5,"s":0.83},"arcs":[1372]},{"type":"LineString","properties":{"gid":974073,"sid":51611,"tid":51690,"t":"hires","e":0.5,"s":0.26},"arcs":[1373]},{"type":"LineString","properties":{"gid":974072,"sid":51611,"tid":51693,"t":"hires","e":0.5,"s":0.82},"arcs":[1374]},{"type":"LineString","properties":{"gid":974140,"sid":51619,"tid":51648,"t":"hires","e":0.5,"s":0.79},"arcs":[1375]},{"type":"LineString","properties":{"gid":974284,"sid":51619,"tid":51685,"t":"hires","e":0.5,"s":0.33},"arcs":[1376]},{"type":"LineString","properties":{"gid":974202,"sid":51628,"tid":51629,"t":"hires","e":0.5,"s":0.21},"arcs":[1377]},{"type":"LineString","properties":{"gid":974119,"sid":51634,"tid":51715,"t":"hires","e":0.5,"s":0.15},"arcs":[1378,416]},{"type":"LineString","properties":{"gid":974259,"sid":51635,"tid":51715,"t":"hires","e":0.5,"s":0.42},"arcs":[1379]},{"type":"LineString","properties":{"gid":974029,"sid":51638,"tid":51639,"t":"hires","e":0.5,"s":0.39},"arcs":[1380]},{"type":"LineString","properties":{"gid":974092,"sid":51639,"tid":51648,"t":"hires","e":0.5,"s":0.55},"arcs":[1381]},{"type":"LineString","properties":{"gid":974255,"sid":51639,"tid":51649,"t":"hires","e":0.5,"s":1.38},"arcs":[1382]},{"type":"LineString","properties":{"gid":974267,"sid":51649,"tid":51687,"t":"hires","e":0.5,"s":0.75},"arcs":[1383]},{"type":"LineString","properties":{"gid":974075,"sid":51651,"tid":51659,"t":"hires","e":0.5,"s":0.73},"arcs":[1384]},{"type":"LineString","properties":{"gid":973955,"sid":51659,"tid":51699,"t":"hires","e":0.5,"s":0.75},"arcs":[1385]},{"type":"LineString","properties":{"gid":974120,"sid":51669,"tid":51704,"t":"hires","e":0.5,"s":0.06},"arcs":[1386]},{"type":"LineString","properties":{"gid":974048,"sid":51670,"tid":51671,"t":"hires","e":0.5,"s":1.33},"arcs":[1387]},{"type":"LineString","properties":{"gid":974049,"sid":51671,"tid":51688,"t":"hires","e":0.5,"s":1.26},"arcs":[1388]},{"type":"LineString","properties":{"gid":974061,"sid":51671,"tid":51729,"t":"hires","e":0.5,"s":1.54},"arcs":[1389]},{"type":"LineString","properties":{"gid":974186,"sid":51671,"tid":51749,"t":"hires","e":0.5,"s":1.46},"arcs":[1390]},{"type":"LineString","properties":{"gid":973995,"sid":51675,"tid":51679,"t":"hires","e":0.5,"s":1.69},"arcs":[1391,1392]},{"type":"LineString","properties":{"gid":974044,"sid":51678,"tid":51679,"t":"hires","e":0.5,"s":1.06},"arcs":[1393,1392]},{"type":"LineString","properties":{"gid":974039,"sid":51685,"tid":51686,"t":"hires","e":0.5,"s":0.54},"arcs":[1394]},{"type":"LineString","properties":{"gid":974357,"sid":51685,"tid":51687,"t":"hires","e":0.5,"s":0.44},"arcs":[1395]},{"type":"LineString","properties":{"gid":974027,"sid":51687,"tid":51708,"t":"hires","e":0.5,"s":0.54},"arcs":[1396]},{"type":"LineString","properties":{"gid":974285,"sid":51687,"tid":51721,"t":"hires","e":0.5,"s":0.77},"arcs":[1397]},{"type":"LineString","properties":{"gid":974010,"sid":51693,"tid":51733,"t":"hires","e":0.5,"s":0.15},"arcs":[1398]},{"type":"LineString","properties":{"gid":974036,"sid":51693,"tid":51735,"t":"hires","e":0.5,"s":0.43},"arcs":[1399]},{"type":"LineString","properties":{"gid":974034,"sid":51704,"tid":51705,"t":"hires","e":0.5,"s":0.54},"arcs":[1400]},{"type":"LineString","properties":{"gid":974071,"sid":51704,"tid":51715,"t":"hires","e":0.5,"s":0.99},"arcs":[419,1401,421]},{"type":"LineString","properties":{"gid":974262,"sid":51704,"tid":51719,"t":"hires","e":0.5,"s":1.51},"arcs":[-419,1402]},{"type":"LineString","properties":{"gid":974354,"sid":51729,"tid":51748,"t":"hires","e":0.5,"s":0.76},"arcs":[-1238]},{"type":"LineString","properties":{"gid":974060,"sid":51729,"tid":51760,"t":"hires","e":0.5,"s":0.81},"arcs":[1238,1403,1240]},{"type":"LineString","properties":{"gid":974064,"sid":51729,"tid":51773,"t":"hires","e":0.5,"s":1.33},"arcs":[1404]},{"type":"LineString","properties":{"gid":974264,"sid":51733,"tid":51739,"t":"hires","e":0.5,"s":0.58},"arcs":[1405]},{"type":"LineString","properties":{"gid":974056,"sid":51733,"tid":51766,"t":"hires","e":0.5,"s":1.23},"arcs":[1406]},{"type":"LineString","properties":{"gid":974059,"sid":51740,"tid":51742,"t":"hires","e":0.5,"s":0.65},"arcs":[1407]},{"type":"LineString","properties":{"gid":974042,"sid":51742,"tid":51758,"t":"hires","e":0.5,"s":0.67},"arcs":[1408]},{"type":"LineString","properties":{"gid":974184,"sid":51748,"tid":51749,"t":"hires","e":0.5,"s":0.64},"arcs":[1409]},{"type":"LineString","properties":{"gid":974047,"sid":51748,"tid":51755,"t":"hires","e":0.5,"s":0.31},"arcs":[1410]},{"type":"LineString","properties":{"gid":974277,"sid":51749,"tid":51753,"t":"hires","e":0.5,"s":0.25},"arcs":[1411]},{"type":"LineString","properties":{"gid":974363,"sid":51756,"tid":51764,"t":"hires","e":0.5,"s":0.24},"arcs":[1412]},{"type":"LineString","properties":{"gid":974025,"sid":51757,"tid":51764,"t":"hires","e":0.5,"s":0.28},"arcs":[1413]},{"type":"LineString","properties":{"gid":973965,"sid":51758,"tid":51763,"t":"hires","e":0.5,"s":2.58},"arcs":[1414]},{"type":"LineString","properties":{"gid":974280,"sid":51758,"tid":51788,"t":"hires","e":0.5,"s":0.55},"arcs":[1415]},{"type":"LineString","properties":{"gid":974368,"sid":51763,"tid":51766,"t":"hires","e":0.5,"s":0.19},"arcs":[1416]},{"type":"LineString","properties":{"gid":974076,"sid":51763,"tid":51783,"t":"hires","e":0.5,"s":0.18},"arcs":[1417]},{"type":"LineString","properties":{"gid":974055,"sid":51763,"tid":51785,"t":"hires","e":0.5,"s":1.05},"arcs":[1418]},{"type":"LineString","properties":{"gid":973929,"sid":51766,"tid":51783,"t":"hires","e":0.5,"s":0.26},"arcs":[1419]},{"type":"LineString","properties":{"gid":974369,"sid":51767,"tid":51783,"t":"hires","e":0.5,"s":0.15},"arcs":[1420]},{"type":"LineString","properties":{"gid":974187,"sid":51773,"tid":51802,"t":"hires","e":0.5,"s":0.47},"arcs":[1421]},{"type":"LineString","properties":{"gid":974251,"sid":51773,"tid":51815,"t":"hires","e":0.5,"s":2.5},"arcs":[1422]},{"type":"LineString","properties":{"gid":973956,"sid":51773,"tid":51817,"t":"hires","e":0.5,"s":1.87},"arcs":[1423]},{"type":"LineString","properties":{"gid":974190,"sid":51788,"tid":51789,"t":"hires","e":0.5,"s":0.38},"arcs":[1424]},{"type":"LineString","properties":{"gid":974213,"sid":51788,"tid":51795,"t":"hires","e":0.5,"s":0.22},"arcs":[1425]},{"type":"LineString","properties":{"gid":974281,"sid":51791,"tid":54783,"t":"hires","e":0.5,"s":1.63},"arcs":[1426]},{"type":"LineString","properties":{"gid":974196,"sid":51792,"tid":51799,"t":"hires","e":0.5,"s":1.4},"arcs":[1427]},{"type":"LineString","properties":{"gid":974193,"sid":51795,"tid":51799,"t":"hires","e":0.5,"s":0.59},"arcs":[1428]},{"type":"LineString","properties":{"gid":973964,"sid":51795,"tid":51811,"t":"hires","e":0.5,"s":0.56},"arcs":[1429]},{"type":"LineString","properties":{"gid":974289,"sid":51799,"tid":51807,"t":"hires","e":0.5,"s":0.28},"arcs":[1430]},{"type":"LineString","properties":{"gid":974279,"sid":51799,"tid":51811,"t":"hires","e":0.5,"s":0.28},"arcs":[1431]},{"type":"LineString","properties":{"gid":974324,"sid":51801,"tid":51811,"t":"hires","e":0.5,"s":0.36},"arcs":[1432]},{"type":"LineString","properties":{"gid":974051,"sid":51810,"tid":51811,"t":"hires","e":0.5,"s":0.23},"arcs":[1433]},{"type":"LineString","properties":{"gid":974226,"sid":51815,"tid":51818,"t":"hires","e":0.5,"s":0.39},"arcs":[1434]},{"type":"LineString","properties":{"gid":974305,"sid":51815,"tid":51821,"t":"hires","e":0.5,"s":0.27},"arcs":[1435]},{"type":"LineString","properties":{"gid":974244,"sid":51817,"tid":51838,"t":"hires","e":0.5,"s":1.02},"arcs":[1436]},{"type":"LineString","properties":{"gid":974317,"sid":51821,"tid":51837,"t":"hires","e":0.5,"s":0.47},"arcs":[580,1437]},{"type":"LineString","properties":{"gid":974021,"sid":51824,"tid":51825,"t":"hires","e":0.5,"s":0.48},"arcs":[1438]},{"type":"LineString","properties":{"gid":974214,"sid":51829,"tid":51853,"t":"hires","e":0.5,"s":0.55},"arcs":[1439]},{"type":"LineString","properties":{"gid":974326,"sid":51829,"tid":51862,"t":"hires","e":0.5,"s":0.68},"arcs":[655,1440]},{"type":"LineString","properties":{"gid":974114,"sid":51830,"tid":51838,"t":"hires","e":0.5,"s":0.48},"arcs":[1441]},{"type":"LineString","properties":{"gid":974020,"sid":51836,"tid":51837,"t":"hires","e":0.5,"s":0.28},"arcs":[1442]},{"type":"LineString","properties":{"gid":974290,"sid":51837,"tid":51861,"t":"hires","e":0.5,"s":0.72},"arcs":[1443]},{"type":"LineString","properties":{"gid":974016,"sid":51838,"tid":51839,"t":"hires","e":0.5,"s":0.76},"arcs":[1444]},{"type":"LineString","properties":{"gid":974098,"sid":51855,"tid":51882,"t":"hires","e":0.5,"s":0.8},"arcs":[-660]},{"type":"LineString","properties":{"gid":974005,"sid":51855,"tid":51883,"t":"hires","e":0.5,"s":0.41},"arcs":[1445]},{"type":"LineString","properties":{"gid":974006,"sid":51857,"tid":51859,"t":"hires","e":0.5,"s":1.73},"arcs":[1446]},{"type":"LineString","properties":{"gid":974361,"sid":51857,"tid":51877,"t":"hires","e":0.5,"s":1.39},"arcs":[1447]},{"type":"LineString","properties":{"gid":974081,"sid":51859,"tid":51865,"t":"hires","e":0.5,"s":0.63},"arcs":[1448]},{"type":"LineString","properties":{"gid":974316,"sid":51861,"tid":51865,"t":"hires","e":0.5,"s":0.85},"arcs":[1449]},{"type":"LineString","properties":{"gid":974179,"sid":51862,"tid":51882,"t":"hires","e":0.5,"s":0.89},"arcs":[657,658]},{"type":"LineString","properties":{"gid":974249,"sid":51865,"tid":51875,"t":"hires","e":0.5,"s":0.39},"arcs":[1450]},{"type":"LineString","properties":{"gid":974310,"sid":51882,"tid":51883,"t":"hires","e":0.5,"s":0.59},"arcs":[1451]},{"type":"LineString","properties":{"gid":974084,"sid":51883,"tid":51893,"t":"hires","e":0.5,"s":0.3},"arcs":[1452]},{"type":"LineString","properties":{"gid":974228,"sid":51883,"tid":51895,"t":"hires","e":0.5,"s":3.38},"arcs":[1453]},{"type":"LineString","properties":{"gid":973940,"sid":51887,"tid":51931,"t":"hires","e":0.5,"s":1},"arcs":[-533,1454,-531]},{"type":"LineString","properties":{"gid":974373,"sid":51887,"tid":51939,"t":"hires","e":0.5,"s":0.31},"arcs":[1455]},{"type":"LineString","properties":{"gid":974004,"sid":51893,"tid":51897,"t":"hires","e":0.5,"s":1.19},"arcs":[1456]},{"type":"LineString","properties":{"gid":974002,"sid":51903,"tid":51904,"t":"hires","e":0.5,"s":0.42},"arcs":[717,1457]},{"type":"LineString","properties":{"gid":974181,"sid":51903,"tid":51915,"t":"hires","e":0.5,"s":0.99},"arcs":[-717,-716]},{"type":"LineString","properties":{"gid":974113,"sid":51909,"tid":51915,"t":"hires","e":0.5,"s":0.38},"arcs":[713,714]},{"type":"LineString","properties":{"gid":973997,"sid":51909,"tid":51920,"t":"hires","e":0.5,"s":0.5},"arcs":[713,1458]},{"type":"LineString","properties":{"gid":974000,"sid":51910,"tid":51911,"t":"hires","e":0.5,"s":0.72},"arcs":[1459]},{"type":"LineString","properties":{"gid":974144,"sid":51910,"tid":51917,"t":"hires","e":0.5,"s":0.82},"arcs":[521]},{"type":"LineString","properties":{"gid":973998,"sid":51911,"tid":51913,"t":"hires","e":0.5,"s":1.49},"arcs":[1460]},{"type":"LineString","properties":{"gid":974360,"sid":51911,"tid":51917,"t":"hires","e":0.5,"s":0.81},"arcs":[1461]},{"type":"LineString","properties":{"gid":974086,"sid":51913,"tid":51915,"t":"hires","e":0.5,"s":0.35},"arcs":[1462,-716]},{"type":"LineString","properties":{"gid":973996,"sid":51913,"tid":51919,"t":"hires","e":0.5,"s":0.88},"arcs":[1463]},{"type":"LineString","properties":{"gid":974088,"sid":51919,"tid":51931,"t":"hires","e":0.5,"s":0.54},"arcs":[1464]},{"type":"LineString","properties":{"gid":974234,"sid":51919,"tid":51933,"t":"hires","e":0.5,"s":0.55},"arcs":[1465]},{"type":"LineString","properties":{"gid":974358,"sid":51925,"tid":51931,"t":"hires","e":0.5,"s":0.77},"arcs":[527,1466,529]},{"type":"LineString","properties":{"gid":974015,"sid":51925,"tid":52211,"t":"hires","e":0.5,"s":2.95},"arcs":[1467,1468]},{"type":"LineString","properties":{"gid":974235,"sid":51939,"tid":51942,"t":"hires","e":0.5,"s":1.42},"arcs":[1469]},{"type":"LineString","properties":{"gid":974239,"sid":51940,"tid":52211,"t":"hires","e":0.5,"s":2.01},"arcs":[1470,1471]},{"type":"LineString","properties":{"gid":974236,"sid":51941,"tid":51942,"t":"hires","e":0.5,"s":1.04},"arcs":[1472]},{"type":"LineString","properties":{"gid":974370,"sid":51942,"tid":52210,"t":"hires","e":0.5,"s":1.49},"arcs":[1473]},{"type":"LineString","properties":{"gid":974338,"sid":52209,"tid":52211,"t":"hires","e":0.5,"s":0.84},"arcs":[1474]},{"type":"LineString","properties":{"gid":974013,"sid":52209,"tid":52212,"t":"hires","e":0.5,"s":0.67},"arcs":[1475]},{"type":"LineString","properties":{"gid":974238,"sid":52209,"tid":52225,"t":"hires","e":0.5,"s":1.48},"arcs":[1476]},{"type":"LineString","properties":{"gid":974241,"sid":52209,"tid":52229,"t":"hires","e":0.5,"s":0.92},"arcs":[1477]},{"type":"LineString","properties":{"gid":976610,"sid":150011,"tid":150745,"t":"upstream","e":0.67,"s":6.56},"arcs":[1478]},{"type":"LineString","properties":{"gid":976507,"sid":150012,"tid":150077,"t":"upstream","e":0.22,"s":2.11},"arcs":[1479,1480,1481,1482]},{"type":"LineString","properties":{"gid":976565,"sid":150017,"tid":150196,"t":"upstream","e":0.42,"s":0.69},"arcs":[1483,-47,1484]},{"type":"LineString","properties":{"gid":976498,"sid":150024,"tid":150026,"t":"upstream","e":1.08,"s":10.57},"arcs":[-69,1485,-71,1486,1486,-70,555,-556,1313,1487,1488,1315,1489,1317,84,1490,1491]},{"type":"LineString","properties":{"gid":976555,"sid":150026,"tid":150170,"t":"upstream","e":0.55,"s":5.35},"arcs":[1492,1493,1494,1495,1496,1497,1498,1499,1500,-79]},{"type":"LineString","properties":{"gid":976627,"sid":150028,"tid":150192,"t":"upstream","e":0.32,"s":0.73},"arcs":[1501,-93,1502,1503,-780,-779]},{"type":"LineString","properties":{"gid":976504,"sid":150035,"tid":150085,"t":"upstream","e":0.76,"s":4.48},"arcs":[1504,-144,1505,1506]},{"type":"LineString","properties":{"gid":976547,"sid":150037,"tid":150406,"t":"upstream","e":0.72,"s":10.64},"arcs":[1507,-160,1508,-158,1509,1510,1511,-154,1512]},{"type":"LineString","properties":{"gid":976557,"sid":150041,"tid":150099,"t":"upstream","e":0.78,"s":7.63},"arcs":[1513,-177,1514,-175,1515,1516,-173,1517,-171]},{"type":"LineString","properties":{"gid":976501,"sid":150077,"tid":150468,"t":"upstream","e":0.45,"s":4.37},"arcs":[1518,1519,1520,1521,1522,-283,1523,1524,-280,1525,-278]},{"type":"LineString","properties":{"gid":976520,"sid":150079,"tid":150154,"t":"upstream","e":0.9,"s":5.3},"arcs":[1526,1527,1528,1529]},{"type":"LineString","properties":{"gid":976533,"sid":150085,"tid":150105,"t":"upstream","e":0.83,"s":8.11},"arcs":[-308,1530,1531,1532,1533,437,1534,439,1535]},{"type":"LineString","properties":{"gid":976495,"sid":150088,"tid":150435,"t":"upstream","e":1.1,"s":8.06},"arcs":[-324,1536,1537,1538,-320,1539,1540,1541,1542,1543,1544]},{"type":"LineString","properties":{"gid":976494,"sid":150091,"tid":150416,"t":"upstream","e":1.08,"s":15.94},"arcs":[1545,1546,-344,1547,1547,-343,1548,1549,1550,1551,1552,1553,1554,1555,1556,1557,1558]},{"type":"LineString","properties":{"gid":976531,"sid":150092,"tid":150428,"t":"upstream","e":0.43,"s":6.33},"arcs":[251,1559,-358,1560,-356,1561,-354,1562,-352]},{"type":"LineString","properties":{"gid":976552,"sid":150096,"tid":150115,"t":"upstream","e":0.83,"s":6.11},"arcs":[1563,1564,1565,1566,-380,1567,1568,1569,1570,1571,-374,1572]},{"type":"LineString","properties":{"gid":976493,"sid":150105,"tid":150420,"t":"upstream","e":0.3,"s":2.92},"arcs":[1573,1574,-433,1575,1576]},{"type":"LineString","properties":{"gid":976508,"sid":150119,"tid":150275,"t":"upstream","e":1.91,"s":18.73},"arcs":[1577,1578]},{"type":"LineString","properties":{"gid":976612,"sid":150119,"tid":150364,"t":"upstream","e":1.62,"s":15.88},"arcs":[1579,1580,1581,1582,1583,1584,1585]},{"type":"LineString","properties":{"gid":976553,"sid":150121,"tid":150210,"t":"upstream","e":0.62,"s":4.53},"arcs":[1586,1587,1588,-480,1589]},{"type":"LineString","properties":{"gid":976540,"sid":150124,"tid":150459,"t":"upstream","e":0.72,"s":7.06},"arcs":[1590,1591,1592,1593,1594,1595,-488,1596]},{"type":"LineString","properties":{"gid":976602,"sid":150130,"tid":150150,"t":"upstream","e":0.3,"s":0.67},"arcs":[1597,1598,-510,1599,1600]},{"type":"LineString","properties":{"gid":976512,"sid":150149,"tid":150375,"t":"upstream","e":0.25,"s":1.44},"arcs":[1601,1602,-597,1603,-595,-594]},{"type":"LineString","properties":{"gid":976723,"sid":150150,"tid":150674,"t":"upstream","e":0.4,"s":0.9},"arcs":[1604,1605,1606,1607,1608]},{"type":"LineString","properties":{"gid":976545,"sid":150158,"tid":150276,"t":"upstream","e":1.17,"s":11.51},"arcs":[1609,-649,1610,1611,1612,-645,1613,1614,1615,-641,1616,1617,1618,1619,-636,1620,-634]},{"type":"LineString","properties":{"gid":976599,"sid":150192,"tid":150288,"t":"upstream","e":0.35,"s":0.8},"arcs":[-778,1621,1622,-775,1623,1624]},{"type":"LineString","properties":{"gid":976527,"sid":150192,"tid":150661,"t":"upstream","e":0.31,"s":3.05},"arcs":[1625,1626,-783,1627]},{"type":"LineString","properties":{"gid":976724,"sid":150194,"tid":150244,"t":"upstream","e":0.66,"s":1.5},"arcs":[1628,1629,-789,1630,1631,1632]},{"type":"LineString","properties":{"gid":976751,"sid":150196,"tid":150267,"t":"upstream","e":0.15,"s":0.25},"arcs":[1633,-795]},{"type":"LineString","properties":{"gid":976534,"sid":150196,"tid":150297,"t":"upstream","e":1.46,"s":14.33},"arcs":[1634]},{"type":"LineString","properties":{"gid":976532,"sid":150200,"tid":150618,"t":"upstream","e":0.71,"s":6.99},"arcs":[1635,1636,1637,1638]},{"type":"LineString","properties":{"gid":976486,"sid":150228,"tid":150743,"t":"upstream","e":0.75,"s":7.39},"arcs":[1639,1640,1641,1642,1643,-1028,1644,1025,-1026,-1025]},{"type":"LineString","properties":{"gid":976622,"sid":150234,"tid":150461,"t":"upstream","e":0.48,"s":2.37},"arcs":[-866,1645]},{"type":"LineString","properties":{"gid":976732,"sid":150244,"tid":150321,"t":"upstream","e":0.8,"s":1.82},"arcs":[1646,1647,-900,1648,1649,1650,-896]},{"type":"LineString","properties":{"gid":976497,"sid":150257,"tid":150277,"t":"upstream","e":0.67,"s":6.61},"arcs":[1651,-934,1652,1653,-931,1654,1655,995,-996]},{"type":"LineString","properties":{"gid":976523,"sid":150259,"tid":150310,"t":"upstream","e":2.05,"s":20.1},"arcs":[-957,1656,1657,1658,1659,1660,1661,-948,1662,-946,1663,943,-944,1664,1665,-941,1666,1667,1668,1669,1670,-937]},{"type":"LineString","properties":{"gid":976756,"sid":150267,"tid":150382,"t":"upstream","e":0.42,"s":0.69},"arcs":[-978,1671,1672,-975,1673,1674]},{"type":"LineString","properties":{"gid":976492,"sid":150276,"tid":150282,"t":"upstream","e":0.54,"s":5.31},"arcs":[1675,-993,1676]},{"type":"LineString","properties":{"gid":976505,"sid":150283,"tid":150726,"t":"upstream","e":0.54,"s":5.32},"arcs":[1677,1678,-1014,1679,-1012,1680]},{"type":"LineString","properties":{"gid":976604,"sid":150284,"tid":150373,"t":"upstream","e":0.29,"s":0.65},"arcs":[1681,1682]},{"type":"LineString","properties":{"gid":976526,"sid":150286,"tid":150327,"t":"upstream","e":0.2,"s":2.88},"arcs":[1683,1684,1685,-1106,-1020,1686,1687,-1018]},{"type":"LineString","properties":{"gid":976778,"sid":150297,"tid":150432,"t":"upstream","e":0.85,"s":1.39},"arcs":[1688,-1058,1689,1690,1691,-1054,1692,1693,1694,1695,1696,1697,1698]},{"type":"LineString","properties":{"gid":976541,"sid":150309,"tid":150764,"t":"upstream","e":0.15,"s":1.51},"arcs":[1699,1700,-1079,1701]},{"type":"LineString","properties":{"gid":976528,"sid":150310,"tid":150423,"t":"upstream","e":1.06,"s":10.41},"arcs":[-1085,1702,1703,1704]},{"type":"LineString","properties":{"gid":976506,"sid":150314,"tid":150408,"t":"upstream","e":0.71,"s":6.98},"arcs":[1705,-1098,1706,1707,1708,1709,1710,1711,1712,-1090]},{"type":"LineString","properties":{"gid":976611,"sid":150317,"tid":150327,"t":"upstream","e":0.19,"s":2.74},"arcs":[1684,1685,-1106,-1020,1686,1687,-1018]},{"type":"LineString","properties":{"gid":976490,"sid":150323,"tid":150754,"t":"upstream","e":0.62,"s":6.09},"arcs":[-1113,1713,-1111,1714,1715]},{"type":"LineString","properties":{"gid":976536,"sid":150325,"tid":150370,"t":"upstream","e":0.85,"s":8.36},"arcs":[1716,1717,1718,-1123,1719,-1121,1720,1721,-1118,1722]},{"type":"LineString","properties":{"gid":976516,"sid":150356,"tid":150359,"t":"upstream","e":0.94,"s":9.17},"arcs":[1723]},{"type":"LineString","properties":{"gid":976529,"sid":150359,"tid":150361,"t":"upstream","e":2.96,"s":29.05},"arcs":[1724,1725,1726,1727,1728,1729,1730,1164,1731,1732,1733,1166,1734,1177,1735]},{"type":"LineString","properties":{"gid":976510,"sid":150375,"tid":150419,"t":"upstream","e":0.69,"s":4.07},"arcs":[-1198,1736,-1196,1737,-1194,1738,-1192,1739,1740,1741,1742,1743,1744,-1186,1745,-1184,1746,-1206,1747]},{"type":"LineString","properties":{"gid":976503,"sid":150378,"tid":150720,"t":"upstream","e":0.16,"s":1.58},"arcs":[1748]},{"type":"LineString","properties":{"gid":976548,"sid":150406,"tid":150418,"t":"upstream","e":0.56,"s":8.24},"arcs":[1749,-1750,1750,1751,-1224,1752,-1222]},{"type":"LineString","properties":{"gid":976514,"sid":150418,"tid":150429,"t":"upstream","e":0.22,"s":3.28},"arcs":[-1255,1753,-1253,1754,-1251]},{"type":"LineString","properties":{"gid":987391,"sid":250006,"tid":250019,"t":"coastal","e":0.05,"s":0.73},"arcs":[1755,1756,1757,1758]},{"type":"LineString","properties":{"gid":987402,"sid":250006,"tid":250363,"t":"coastal","e":0.05,"s":0.78},"arcs":[1755,1759,1760]},{"type":"LineString","properties":{"gid":987415,"sid":250011,"tid":250179,"t":"coastal","e":0.05,"s":0.81},"arcs":[1761,1762,1763,1764,1765]},{"type":"LineString","properties":{"gid":987425,"sid":250011,"tid":250199,"t":"coastal","e":0.05,"s":0.78},"arcs":[1761,1762,1766,1767]},{"type":"LineString","properties":{"gid":987435,"sid":250011,"tid":250283,"t":"coastal","e":0.05,"s":2.54},"arcs":[1761,1768,1769,1770]},{"type":"LineString","properties":{"gid":987444,"sid":250014,"tid":250094,"t":"coastal","e":0.05,"s":0.43},"arcs":[1771,1772,1773]},{"type":"LineString","properties":{"gid":987456,"sid":250014,"tid":250405,"t":"coastal","e":0.05,"s":0.41},"arcs":[1771,1774,1775]},{"type":"LineString","properties":{"gid":987462,"sid":250017,"tid":250291,"t":"coastal","e":0.05,"s":1.82},"arcs":[-50,1776,1777,1778]},{"type":"LineString","properties":{"gid":987474,"sid":250017,"tid":250297,"t":"coastal","e":0.05,"s":1.65},"arcs":[-50,1779,1780,1781]},{"type":"LineString","properties":{"gid":979346,"sid":250017,"tid":250440,"t":"overseas","e":0.05,"s":3.73},"arcs":[-50,1782,1783,1784,1785,1786,1787]},{"type":"LineString","properties":{"gid":991322,"sid":250017,"tid":250440,"t":"slowover","e":0.05,"s":3.88},"arcs":[-50,1782,1783,1784,1785,1786,1787]},{"type":"LineString","properties":{"gid":979357,"sid":250017,"tid":250452,"t":"overseas","e":0.05,"s":2.88},"arcs":[-50,1779,1788,1789,1790]},{"type":"LineString","properties":{"gid":991335,"sid":250017,"tid":250452,"t":"slowover","e":0.05,"s":3.51},"arcs":[-50,1782,1791,1789,1790]},{"type":"LineString","properties":{"gid":979372,"sid":250017,"tid":250516,"t":"overseas","e":0.05,"s":11.24},"arcs":[-50,1776,1792,1793,1794,1795,1796,1797,1798,1799,1800,1801,1802,1803,1804,1805,1806,1807,1808,1809,1810,1811]},{"type":"LineString","properties":{"gid":991243,"sid":250017,"tid":250516,"t":"slowover","e":0.05,"s":11.77},"arcs":[-50,1776,1792,1793,1812,1813,1797,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1808,1809,1810,1811]},{"type":"LineString","properties":{"gid":978516,"sid":250017,"tid":250613,"t":"overseas","e":0.05,"s":4.07},"arcs":[-50,1782,1783,1828,1829,1830]},{"type":"LineString","properties":{"gid":998707,"sid":250017,"tid":250613,"t":"slowover","e":0.05,"s":4.24},"arcs":[-50,1782,1783,1828,1829,1830]},{"type":"LineString","properties":{"gid":988072,"sid":250019,"tid":250569,"t":"coastal","e":0.05,"s":0.74},"arcs":[-1759,1831,1832,1833]},{"type":"MultiLineString","properties":{"gid":987571,"sid":250019,"tid":250586,"t":"coastal","e":0.05,"s":0.23},"arcs":[[1834],[1831],[-1759]]},{"type":"LineString","properties":{"gid":977559,"sid":250019,"tid":250590,"t":"coastal","e":0.05,"s":0.43},"arcs":[-1759,1831,1835,1836]},{"type":"LineString","properties":{"gid":977566,"sid":250020,"tid":250504,"t":"coastal","e":0.05,"s":0.3},"arcs":[1837,1838,1839]},{"type":"LineString","properties":{"gid":978839,"sid":250020,"tid":250509,"t":"coastal","e":0.05,"s":0.53},"arcs":[1837,1840,1841]},{"type":"LineString","properties":{"gid":978738,"sid":250022,"tid":250066,"t":"coastal","e":0.05,"s":2.52},"arcs":[1842,1843,1844,1845,1846,1847,1848,1849,1850]},{"type":"LineString","properties":{"gid":979871,"sid":250022,"tid":250110,"t":"coastal","e":0.05,"s":0.64},"arcs":[1842,1843,1851,1852]},{"type":"LineString","properties":{"gid":979480,"sid":250022,"tid":250171,"t":"coastal","e":0.05,"s":0.47},"arcs":[1842,1853,1854,1855]},{"type":"LineString","properties":{"gid":979900,"sid":250022,"tid":250201,"t":"coastal","e":0.05,"s":1.04},"arcs":[1842,1856,1857,1858,1859]},{"type":"LineString","properties":{"gid":979939,"sid":250022,"tid":250311,"t":"coastal","e":0.05,"s":1.02},"arcs":[1842,1860,1861]},{"type":"LineString","properties":{"gid":979962,"sid":250022,"tid":250323,"t":"coastal","e":0.05,"s":1},"arcs":[1842,1853,1862,1863]},{"type":"LineString","properties":{"gid":979979,"sid":250034,"tid":250336,"t":"coastal","e":0.05,"s":2.58},"arcs":[1864,1865,1866,1867,1868,1869,1870,1871,1872]},{"type":"LineString","properties":{"gid":980053,"sid":250034,"tid":250383,"t":"coastal","e":0.05,"s":0.25},"arcs":[1864,1873,1874]},{"type":"LineString","properties":{"gid":980061,"sid":250034,"tid":250509,"t":"coastal","e":0.05,"s":0.3},"arcs":[1864,1875,1841]},{"type":"LineString","properties":{"gid":980075,"sid":250034,"tid":250533,"t":"overseas","e":0.05,"s":4.8},"arcs":[1864,1865,1866,1867,1868,1869,1870,1876,1877,1878,1879,1880]},{"type":"LineString","properties":{"gid":990539,"sid":250034,"tid":250533,"t":"slowover","e":0.05,"s":4.8},"arcs":[1864,1865,1866,1867,1868,1869,1870,1876,1877,1878,1879,1880]},{"type":"LineString","properties":{"gid":979727,"sid":250036,"tid":250319,"t":"coastal","e":0.05,"s":2.01},"arcs":[1881,1882,-147]},{"type":"LineString","properties":{"gid":979602,"sid":250036,"tid":250531,"t":"coastal","e":0.05,"s":0.34},"arcs":[1881,1883,1884]},{"type":"LineString","properties":{"gid":977635,"sid":250040,"tid":250250,"t":"coastal","e":0.05,"s":0.47},"arcs":[1885,1886,1887,1888]},{"type":"LineString","properties":{"gid":980084,"sid":250040,"tid":250264,"t":"coastal","e":0.05,"s":0.94},"arcs":[1885,1889,1890]},{"type":"LineString","properties":{"gid":977642,"sid":250042,"tid":250171,"t":"coastal","e":0.05,"s":0.42},"arcs":[-185,1891,1855]},{"type":"LineString","properties":{"gid":980175,"sid":250042,"tid":250323,"t":"coastal","e":0.05,"s":0.36},"arcs":[-185,1892,1863]},{"type":"LineString","properties":{"gid":980185,"sid":250046,"tid":250181,"t":"coastal","e":0.05,"s":0.18},"arcs":[1893,1894,1895]},{"type":"LineString","properties":{"gid":980198,"sid":250046,"tid":250452,"t":"overseas","e":0.05,"s":2.85},"arcs":[1893,1896,1897,1898,1790]},{"type":"LineString","properties":{"gid":998825,"sid":250046,"tid":250452,"t":"slowover","e":0.05,"s":3.59},"arcs":[1893,1896,1897,1898,1790]},{"type":"LineString","properties":{"gid":980246,"sid":250046,"tid":250658,"t":"coastal","e":0.05,"s":0.2},"arcs":[1893,1899,1900]},{"type":"LineString","properties":{"gid":977675,"sid":250049,"tid":250110,"t":"coastal","e":0.05,"s":0.45},"arcs":[1901,1902,1852]},{"type":"LineString","properties":{"gid":980276,"sid":250049,"tid":250336,"t":"coastal","e":0.05,"s":1.42},"arcs":[1901,1903,1904,1871,1872]},{"type":"LineString","properties":{"gid":980330,"sid":250049,"tid":250358,"t":"coastal","e":0.05,"s":1.55},"arcs":[1901,1905,1906,1847,1907,1908]},{"type":"LineString","properties":{"gid":977700,"sid":250050,"tid":250162,"t":"coastal","e":0.05,"s":0.21},"arcs":[1909,1910,1911]},{"type":"LineString","properties":{"gid":988294,"sid":250050,"tid":250169,"t":"coastal","e":0.05,"s":1.84},"arcs":[1909,1912,1913,1914,1915,1916,1917,1918,1919,1920,1921,1922,1923]},{"type":"LineString","properties":{"gid":980380,"sid":250050,"tid":250557,"t":"coastal","e":0.05,"s":0.38},"arcs":[1909,1912,1913,1924]},{"type":"LineString","properties":{"gid":980398,"sid":250050,"tid":250603,"t":"coastal","e":0.05,"s":1.91},"arcs":[1909,1912,1913,1925,1926,1927,1928,1929,1930,1931,1932,1933,1934,1935,1936,1937,1938,1939]},{"type":"LineString","properties":{"gid":980487,"sid":250051,"tid":250066,"t":"coastal","e":0.05,"s":0.52},"arcs":[1940,1941,1942,1850]},{"type":"LineString","properties":{"gid":980502,"sid":250051,"tid":250520,"t":"coastal","e":0.05,"s":0.21},"arcs":[1940,1943,1944]},{"type":"LineString","properties":{"gid":980510,"sid":250065,"tid":250167,"t":"coastal","e":0.05,"s":1.12},"arcs":[1945,1946,1947]},{"type":"LineString","properties":{"gid":980523,"sid":250065,"tid":250379,"t":"coastal","e":0.05,"s":0.67},"arcs":[1945,1948,1949,1950,1951]},{"type":"LineString","properties":{"gid":980647,"sid":250066,"tid":250086,"t":"coastal","e":0.05,"s":0.82},"arcs":[-1851,1952,1953]},{"type":"LineString","properties":{"gid":980664,"sid":250073,"tid":250405,"t":"coastal","e":0.05,"s":0.52},"arcs":[1954,1955,1775]},{"type":"LineString","properties":{"gid":980679,"sid":250073,"tid":250452,"t":"overseas","e":0.05,"s":2.08},"arcs":[1954,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1898,1790]},{"type":"LineString","properties":{"gid":997952,"sid":250073,"tid":250452,"t":"slowover","e":0.05,"s":2.69},"arcs":[1954,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,1980,1898,1790]},{"type":"LineString","properties":{"gid":980721,"sid":250073,"tid":250630,"t":"coastal","e":0.05,"s":1.24},"arcs":[1954,1956,1981,1982]},{"type":"LineString","properties":{"gid":977817,"sid":250073,"tid":250643,"t":"coastal","e":0.05,"s":0.27},"arcs":[1954,1983,1984]},{"type":"LineString","properties":{"gid":980735,"sid":250084,"tid":250283,"t":"coastal","e":0.05,"s":3.76},"arcs":[1985,1986,1770]},{"type":"LineString","properties":{"gid":980741,"sid":250084,"tid":250464,"t":"coastal","e":0.05,"s":2.53},"arcs":[1985,1987,1988]},{"type":"LineString","properties":{"gid":980761,"sid":250086,"tid":250159,"t":"coastal","e":0.05,"s":1},"arcs":[-1954,1989,1990,1991,1992,1993]},{"type":"LineString","properties":{"gid":980773,"sid":250086,"tid":250530,"t":"coastal","e":0.05,"s":0.58},"arcs":[-1954,1994,1995,1996]},{"type":"LineString","properties":{"gid":980784,"sid":250086,"tid":250533,"t":"coastal","e":0.05,"s":0.86},"arcs":[-1954,1994,1997,1998,1878,1879,1880]},{"type":"LineString","properties":{"gid":980796,"sid":250088,"tid":250121,"t":"coastal","e":0.05,"s":2.27},"arcs":[1999,2000,2001,2002,2003]},{"type":"LineString","properties":{"gid":980805,"sid":250088,"tid":250464,"t":"coastal","e":0.05,"s":2.04},"arcs":[1999,2004,2005,1988]},{"type":"LineString","properties":{"gid":977430,"sid":250094,"tid":250452,"t":"overseas","e":0.05,"s":2.33},"arcs":[-1774,2006,1978,1979,1980,1898,1790]},{"type":"LineString","properties":{"gid":997966,"sid":250094,"tid":250452,"t":"slowover","e":0.05,"s":2.97},"arcs":[-1774,2006,1978,1979,1980,1898,1790]},{"type":"LineString","properties":{"gid":977896,"sid":250094,"tid":250637,"t":"coastal","e":0.05,"s":0.31},"arcs":[-1774,2007,2008]},{"type":"LineString","properties":{"gid":980834,"sid":250101,"tid":250235,"t":"coastal","e":0.05,"s":0.55},"arcs":[2009,2010,2011,2012]},{"type":"MultiLineString","properties":{"gid":987719,"sid":250101,"tid":250330,"t":"coastal","e":0.05,"s":0.5},"arcs":[[2013],[2014],[2015],[2016],[2017],[2018],[2009]]},{"type":"MultiLineString","properties":{"gid":988456,"sid":250101,"tid":250411,"t":"coastal","e":0.05,"s":0.92},"arcs":[[2019],[2020],[2021],[2022],[2023],[2024],[2025],[2026],[2027],[2028],[2029],[2030],[-2019],[-2010]]},{"type":"LineString","properties":{"gid":980843,"sid":250107,"tid":250230,"t":"coastal","e":0.05,"s":3.59},"arcs":[2031,2032,2033,2034,2035,2036,2037,2038]},{"type":"LineString","properties":{"gid":977444,"sid":250107,"tid":250286,"t":"overseas","e":0.05,"s":3.55},"arcs":[2031,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048]},{"type":"LineString","properties":{"gid":991304,"sid":250107,"tid":250286,"t":"slowover","e":0.05,"s":3.61},"arcs":[2031,2039,2040,2041,2042,2049,2050,2051,2052,2047,2048]},{"type":"LineString","properties":{"gid":977919,"sid":250107,"tid":250449,"t":"coastal","e":0.05,"s":1.4},"arcs":[2031,2039,2053,2054,2055,2056,2057]},{"type":"LineString","properties":{"gid":980874,"sid":250107,"tid":250483,"t":"coastal","e":0.05,"s":2.6},"arcs":[2031,2039,2053,2054,2055,2058,2059,2060,2061,2062,2063,2064]},{"type":"LineString","properties":{"gid":977456,"sid":250107,"tid":250486,"t":"overseas","e":0.05,"s":2.08},"arcs":[2031,2039,2053,2065,2066,2067,2068,2069]},{"type":"LineString","properties":{"gid":992143,"sid":250107,"tid":250486,"t":"slowover","e":0.05,"s":2.24},"arcs":[2031,2039,2040,2041,2070,2071,2067,2068,2069]},{"type":"LineString","properties":{"gid":980895,"sid":250107,"tid":250492,"t":"coastal","e":0.05,"s":2.57},"arcs":[2031,2032,2033,2034,2072,2073,2074,2075,2076]},{"type":"LineString","properties":{"gid":980913,"sid":250107,"tid":250493,"t":"coastal","e":0.05,"s":0.46},"arcs":[2031,2032,2033,2077]},{"type":"LineString","properties":{"gid":977468,"sid":250107,"tid":250505,"t":"overseas","e":0.05,"s":1.29},"arcs":[2031,2032,2078,2079,2080]},{"type":"LineString","properties":{"gid":997910,"sid":250107,"tid":250505,"t":"slowover","e":0.05,"s":1.36},"arcs":[2031,2032,2078,2079,2080]},{"type":"LineString","properties":{"gid":977483,"sid":250108,"tid":250206,"t":"overseas","e":0.05,"s":1.9},"arcs":[2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,2111,2112,2113,2114]},{"type":"MultiLineString","properties":{"gid":999714,"sid":250108,"tid":250206,"t":"slowover","e":0.05,"s":2.27},"arcs":[[-2115],[2113],[2112],[2111],[2110],[2109],[2108],[2107],[2106],[2105],[2104],[2103],[2102],[2101],[2100],[2099],[2098],[2097],[2096],[2095],[2094],[2093],[2092],[2091],[2090],[2089],[2088],[2087],[2086],[2085],[2084],[2083],[2082],[2081]]},{"type":"LineString","properties":{"gid":980922,"sid":250108,"tid":250450,"t":"coastal","e":0.05,"s":1.41},"arcs":[2081,2082,2083,2115,2116,2117,2118]},{"type":"LineString","properties":{"gid":977503,"sid":250108,"tid":250474,"t":"overseas","e":0.05,"s":1.22},"arcs":[2081,2119,2120,2121,2122]},{"type":"LineString","properties":{"gid":990545,"sid":250108,"tid":250474,"t":"slowover","e":0.05,"s":1.45},"arcs":[2081,2119,2120,2121,2122]},{"type":"LineString","properties":{"gid":977519,"sid":250108,"tid":250483,"t":"overseas","e":0.05,"s":3.95},"arcs":[2081,2082,2083,2084,2085,2086,2087,2088,2089,2090,2091,2092,2093,2094,2095,2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,2136,2137,2138,2139,2140,2141,2142,2143,2144,2145,2146,2147,2148,2149,2150,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2064]},{"type":"MultiLineString","properties":{"gid":999780,"sid":250108,"tid":250483,"t":"slowover","e":0.05,"s":4.73},"arcs":[[-2065],[2161],[2162],[2163],[2164],[2165],[2166],[2167],[2168],[2169],[2170],[2171],[2172],[2173],[2174],[2175],[2176],[2177],[2178],[2156],[2155],[2154],[2153],[2152],[2151],[2150],[2149],[2148],[2147],[2146],[2145],[2144],[2143],[2142],[2141],[2140],[2139],[2138],[2137],[2136],[2135],[2134],[2133],[2132],[2131],[2130],[2129],[2128],[2127],[2126],[2125],[2124],[2123],[2105],[2104],[2103],[2102],[2101],[2100],[2099],[2098],[2097],[2096],[2095],[2094],[2093],[2092],[2091],[2090],[2089],[2088],[2087],[2086],[2085],[2084],[2083],[2082],[2081]]},{"type":"LineString","properties":{"gid":980936,"sid":250108,"tid":250713,"t":"coastal","e":0.05,"s":2.52},"arcs":[2081,2179,2180,2181,2182,2183,2184]},{"type":"LineString","properties":{"gid":980974,"sid":250112,"tid":250291,"t":"coastal","e":0.05,"s":1.2},"arcs":[2185,2186,1778]},{"type":"LineString","properties":{"gid":980987,"sid":250112,"tid":250568,"t":"coastal","e":0.05,"s":0.26},"arcs":[2185,2187,2188]},{"type":"LineString","properties":{"gid":979802,"sid":250117,"tid":250129,"t":"coastal","e":0.05,"s":1},"arcs":[2189]},{"type":"LineString","properties":{"gid":988435,"sid":250117,"tid":250129,"t":"ferry","e":0.05,"s":0.12},"arcs":[2190,2191]},{"type":"LineString","properties":{"gid":978102,"sid":250121,"tid":250156,"t":"overseas","e":0.05,"s":4.16},"arcs":[-2004,-2003,-2002,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,2235,2236,2237,2238,2239,2240,2241,2242,2243,2244]},{"type":"MultiLineString","properties":{"gid":999717,"sid":250121,"tid":250156,"t":"slowover","e":0.05,"s":4.43},"arcs":[[-2245],[2243],[2242],[2241],[2240],[2239],[2238],[2237],[2236],[2235],[2234],[2233],[2232],[2231],[2230],[2229],[2228],[2227],[2226],[2225],[2224],[2223],[2222],[2221],[2220],[2219],[2218],[2217],[2216],[2215],[2214],[2213],[2212],[2211],[2210],[2209],[2208],[2207],[2206],[2205],[2204],[2203],[2202],[2201],[2200],[2199],[2198],[2197],[2196],[2195],[2194],[2193],[2192],[-2002],[-2003],[-2004]]},{"type":"LineString","properties":{"gid":981007,"sid":250121,"tid":250462,"t":"coastal","e":0.05,"s":5.3},"arcs":[-2004,-2003,-2002,2192,2193,2194,2195,2196,2197,2198,2199,2200,2201,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,2219,2220,2221,2222,2223,2224,2225,2226,2227,2228,2229,2230,2231,2232,2245,2246,2247,2248,2249]},{"type":"LineString","properties":{"gid":977543,"sid":250121,"tid":250464,"t":"overseas","e":0.05,"s":3.09},"arcs":[-2004,-2003,-2002,2250,2251,2005,1988]},{"type":"LineString","properties":{"gid":997160,"sid":250121,"tid":250464,"t":"slowover","e":0.05,"s":3.41},"arcs":[-2004,-2003,-2002,2250,2252,1988]},{"type":"LineString","properties":{"gid":977552,"sid":250129,"tid":250200,"t":"overseas","e":0.05,"s":6.8},"arcs":[-2192,2253,2254,2255,2256,2257]},{"type":"LineString","properties":{"gid":998899,"sid":250129,"tid":250200,"t":"slowover","e":0.05,"s":7.51},"arcs":[-2192,2253,2254,2255,2258,2259,2260,2257]},{"type":"LineString","properties":{"gid":978147,"sid":250129,"tid":250272,"t":"coastal","e":0.05,"s":0.33},"arcs":[-2192,2261,2262]},{"type":"LineString","properties":{"gid":981029,"sid":250129,"tid":250301,"t":"coastal","e":0.05,"s":0.65},"arcs":[-2192,2263,2264]},{"type":"LineString","properties":{"gid":981043,"sid":250129,"tid":250430,"t":"coastal","e":0.05,"s":5.59},"arcs":[-2192,2253,2254,2265,2266,2267]},{"type":"LineString","properties":{"gid":978172,"sid":250129,"tid":250612,"t":"coastal","e":0.05,"s":0.76},"arcs":[-2192,2263,2268,2269,2270]},{"type":"LineString","properties":{"gid":978187,"sid":250129,"tid":250617,"t":"coastal","e":0.05,"s":4.32},"arcs":[-2192,2253,2254,2271]},{"type":"LineString","properties":{"gid":981073,"sid":250134,"tid":250286,"t":"coastal","e":0.05,"s":0.81},"arcs":[2272,2273,2048]},{"type":"LineString","properties":{"gid":981083,"sid":250134,"tid":250307,"t":"coastal","e":0.05,"s":1.26},"arcs":[2274,2275,2276]},{"type":"LineString","properties":{"gid":981096,"sid":250134,"tid":250761,"t":"coastal","e":0.05,"s":0.74},"arcs":[2274,2277]},{"type":"LineString","properties":{"gid":981118,"sid":250136,"tid":250256,"t":"coastal","e":0.05,"s":0.12},"arcs":[2278]},{"type":"LineString","properties":{"gid":981120,"sid":250136,"tid":250357,"t":"coastal","e":0.05,"s":0.45},"arcs":[2278,2279,2280,2281,2282,2283]},{"type":"LineString","properties":{"gid":981131,"sid":250141,"tid":250545,"t":"coastal","e":0.05,"s":0.75},"arcs":[2284,2285,2286]},{"type":"LineString","properties":{"gid":981142,"sid":250141,"tid":250551,"t":"coastal","e":0.05,"s":0.43},"arcs":[2284,2287,2288]},{"type":"LineString","properties":{"gid":981154,"sid":250143,"tid":250467,"t":"coastal","e":0.05,"s":0.47},"arcs":[2289,2290,2291,2292]},{"type":"LineString","properties":{"gid":981165,"sid":250143,"tid":250549,"t":"coastal","e":0.05,"s":0.4},"arcs":[2289,2293,2294]},{"type":"LineString","properties":{"gid":981177,"sid":250145,"tid":250332,"t":"coastal","e":0.05,"s":1.11},"arcs":[2295,2296,2297,2298]},{"type":"LineString","properties":{"gid":978232,"sid":250145,"tid":250379,"t":"coastal","e":0.05,"s":0.47},"arcs":[2295,2299,2300,1951]},{"type":"LineString","properties":{"gid":977569,"sid":250147,"tid":250156,"t":"overseas","e":0.05,"s":5.36},"arcs":[2301,2302,2303,2304,2305,2306,2307,2241,2242,2243,2244]},{"type":"LineString","properties":{"gid":996372,"sid":250147,"tid":250156,"t":"slowover","e":0.05,"s":5.43},"arcs":[2301,2302,2303,2304,2305,2306,2307,2241,2242,2243,2244]},{"type":"LineString","properties":{"gid":978235,"sid":250147,"tid":250207,"t":"coastal","e":0.05,"s":3.57},"arcs":[2301,2302,2308,2309,2310]},{"type":"LineString","properties":{"gid":981207,"sid":250147,"tid":250240,"t":"coastal","e":0.05,"s":1.33},"arcs":[2301,2311]},{"type":"LineString","properties":{"gid":981213,"sid":250156,"tid":250207,"t":"coastal","e":0.05,"s":3.79},"arcs":[-2245,-2244,-2243,-2242,-2308,2312,2313,-2305,2314,2309,2310]},{"type":"LineString","properties":{"gid":981220,"sid":250156,"tid":250412,"t":"coastal","e":0.05,"s":0.69},"arcs":[-2245,2315,2316,2317]},{"type":"LineString","properties":{"gid":978262,"sid":250159,"tid":250469,"t":"coastal","e":0.05,"s":0.5},"arcs":[-1994,2318,2319]},{"type":"LineString","properties":{"gid":981249,"sid":250159,"tid":250535,"t":"coastal","e":0.05,"s":0.46},"arcs":[-1994,2320,2321]},{"type":"LineString","properties":{"gid":989658,"sid":250162,"tid":250550,"t":"coastal","e":0.05,"s":0.23},"arcs":[-1912,2322,2323,2324,2325]},{"type":"LineString","properties":{"gid":981273,"sid":250167,"tid":250264,"t":"coastal","e":0.05,"s":0.87},"arcs":[-1948,2326,2327,1890]},{"type":"LineString","properties":{"gid":981285,"sid":250169,"tid":250363,"t":"coastal","e":0.05,"s":1.39},"arcs":[-1924,2328,2329,2330,2331,1760]},{"type":"LineString","properties":{"gid":981299,"sid":250169,"tid":250573,"t":"coastal","e":0.05,"s":1.25},"arcs":[-1924,-1923,-1922,-1921,2332,2333,2334,2335]},{"type":"LineString","properties":{"gid":979772,"sid":250169,"tid":250588,"t":"coastal","e":0.05,"s":0.78},"arcs":[-1924,2328,2329,2336,2337]},{"type":"LineString","properties":{"gid":981313,"sid":250169,"tid":250590,"t":"coastal","e":0.05,"s":2.17},"arcs":[-1924,2328,2329,2330,2338,2339,2340,2341,1835,1836]},{"type":"LineString","properties":{"gid":978339,"sid":250169,"tid":250598,"t":"coastal","e":0.05,"s":0.25},"arcs":[-1924,2342,2343]},{"type":"LineString","properties":{"gid":981333,"sid":250169,"tid":250613,"t":"coastal","e":0.05,"s":1.18},"arcs":[-1924,2342,2344,2345,2346,2347,2348,2349,2350,2351,2352,1830]},{"type":"LineString","properties":{"gid":981368,"sid":250175,"tid":250255,"t":"coastal","e":0.05,"s":0.22},"arcs":[2353,2354,2355,2356]},{"type":"LineString","properties":{"gid":981378,"sid":250175,"tid":250378,"t":"coastal","e":0.05,"s":0.31},"arcs":[2353,2357]},{"type":"LineString","properties":{"gid":978334,"sid":250176,"tid":250183,"t":"coastal","e":0.05,"s":1.55},"arcs":[2358,2359,2360,2361,2362,2363,2364]},{"type":"LineString","properties":{"gid":978389,"sid":250176,"tid":250250,"t":"coastal","e":0.05,"s":1.16},"arcs":[2358,2365,2366,2367,1888]},{"type":"LineString","properties":{"gid":981421,"sid":250179,"tid":250199,"t":"coastal","e":0.05,"s":0.42},"arcs":[-1766,2368,1767]},{"type":"LineString","properties":{"gid":977591,"sid":250179,"tid":250283,"t":"overseas","e":0.05,"s":3.31},"arcs":[-1766,-1765,2369,1769,1770]},{"type":"LineString","properties":{"gid":990511,"sid":250179,"tid":250283,"t":"slowover","e":0.05,"s":3.36},"arcs":[-1766,-1765,2369,1769,1770]},{"type":"LineString","properties":{"gid":981432,"sid":250179,"tid":250396,"t":"ferry","e":0.05,"s":0.57},"arcs":[-1766,2370,2371,2372]},{"type":"LineString","properties":{"gid":977604,"sid":250179,"tid":250486,"t":"overseas","e":0.05,"s":10.23},"arcs":[-1766,2370,2373,2374,2375,2376,2377,2378,2379,2380,2381,2382,2083,2115,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2069]},{"type":"LineString","properties":{"gid":998790,"sid":250179,"tid":250486,"t":"slowover","e":0.05,"s":12.13},"arcs":[-1766,2370,2373,2402,2403,2376,2377,2378,2379,2380,2381,2382,2083,2115,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2069]},{"type":"LineString","properties":{"gid":977619,"sid":250179,"tid":250516,"t":"overseas","e":0.05,"s":13.32},"arcs":[-1766,2370,2373,2374,2375,2376,2404,-2183,-2182,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416,2417,2418,2419,2420,2421,2422,2423,2424,2425,2426,2427,2428,2429,2430,2431,2432,1811]},{"type":"LineString","properties":{"gid":998007,"sid":250179,"tid":250516,"t":"slowover","e":0.05,"s":15.57},"arcs":[-1766,2370,2373,2374,2375,2376,2404,-2183,-2182,-2181,2433,2434,2435,2436,2437,2438,2439,2440,2441,2442,-2062,-2061,-2060,-2059,-2056,2443,2444,2445,2446,2426,2427,2428,2429,2430,2431,2432,1811]},{"type":"LineString","properties":{"gid":981448,"sid":250179,"tid":250713,"t":"coastal","e":0.05,"s":2.57},"arcs":[-1766,2370,2373,2402,2403,2447,2184]},{"type":"LineString","properties":{"gid":981471,"sid":250181,"tid":250654,"t":"coastal","e":0.05,"s":0.28},"arcs":[-1896,2448,2449]},{"type":"LineString","properties":{"gid":981494,"sid":250183,"tid":250241,"t":"coastal","e":0.05,"s":0.76},"arcs":[2450,2451,2452]},{"type":"LineString","properties":{"gid":981507,"sid":250185,"tid":250235,"t":"coastal","e":0.05,"s":1.09},"arcs":[2453,2454,2455,-2015,-2016,2456,2012]},{"type":"LineString","properties":{"gid":981517,"sid":250185,"tid":250238,"t":"coastal","e":0.05,"s":1.8},"arcs":[2453,2457,2458]},{"type":"LineString","properties":{"gid":987732,"sid":250185,"tid":250303,"t":"overseas","e":0.05,"s":3.11},"arcs":[2453,2454,2459,-2026,-2025,-2024,-2023,-2022,2460,2461,2462,2463,2464]},{"type":"LineString","properties":{"gid":999868,"sid":250185,"tid":250303,"t":"slowover","e":0.05,"s":3.11},"arcs":[2453,2454,2459,-2026,-2025,-2024,-2023,-2022,2460,2461,2462,2463,2464]},{"type":"LineString","properties":{"gid":988415,"sid":250185,"tid":250330,"t":"ferry","e":0.05,"s":1},"arcs":[2465]},{"type":"LineString","properties":{"gid":981531,"sid":250185,"tid":250462,"t":"coastal","e":0.05,"s":1.12},"arcs":[2453,2466,2249]},{"type":"LineString","properties":{"gid":978546,"sid":250186,"tid":250207,"t":"coastal","e":0.05,"s":0.4},"arcs":[2467,2310]},{"type":"LineString","properties":{"gid":981547,"sid":250188,"tid":250495,"t":"coastal","e":0.05,"s":0.77},"arcs":[2468,2469,2470]},{"type":"LineString","properties":{"gid":981558,"sid":250188,"tid":250498,"t":"coastal","e":0.05,"s":0.65},"arcs":[2468,2471,2073,2472]},{"type":"LineString","properties":{"gid":981570,"sid":250198,"tid":250329,"t":"coastal","e":0.05,"s":0.76},"arcs":[2473,2474,2475,2476,2477]},{"type":"LineString","properties":{"gid":978588,"sid":250198,"tid":250449,"t":"coastal","e":0.05,"s":0.59},"arcs":[2473,2478,2057]},{"type":"LineString","properties":{"gid":981595,"sid":250198,"tid":250483,"t":"coastal","e":0.05,"s":0.9},"arcs":[2473,2474,2475,2479,2480,2064]},{"type":"LineString","properties":{"gid":981630,"sid":250200,"tid":250399,"t":"coastal","e":0.05,"s":0.3},"arcs":[-2258,-2261,2481]},{"type":"LineString","properties":{"gid":981644,"sid":250200,"tid":250618,"t":"coastal","e":0.05,"s":0.53},"arcs":[-2258,2482,2483,2484,2485]},{"type":"LineString","properties":{"gid":981654,"sid":250200,"tid":250620,"t":"coastal","e":0.05,"s":1.73},"arcs":[-2258,2482,2486,2487]},{"type":"LineString","properties":{"gid":977651,"sid":250200,"tid":250627,"t":"overseas","e":0.05,"s":2.4},"arcs":[-2258,2488,2489]},{"type":"LineString","properties":{"gid":993797,"sid":250200,"tid":250627,"t":"slowover","e":0.05,"s":3.11},"arcs":[-2258,2488,2489]},{"type":"LineString","properties":{"gid":981680,"sid":250201,"tid":250311,"t":"coastal","e":0.05,"s":1.2},"arcs":[-1860,-1859,2490,2491,2492,-1868,1861]},{"type":"LineString","properties":{"gid":981694,"sid":250201,"tid":250349,"t":"coastal","e":0.05,"s":0.93},"arcs":[-1860,-1859,2490,2493,2494]},{"type":"LineString","properties":{"gid":978673,"sid":250201,"tid":250518,"t":"coastal","e":0.05,"s":0.54},"arcs":[-1860,2495,2496]},{"type":"LineString","properties":{"gid":981723,"sid":250206,"tid":250334,"t":"coastal","e":0.05,"s":1.7},"arcs":[-2115,2497,2498,-810]},{"type":"LineString","properties":{"gid":977682,"sid":250206,"tid":250448,"t":"overseas","e":0.05,"s":1.62},"arcs":[-2115,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,2518,2519,2520,2521]},{"type":"MultiLineString","properties":{"gid":999723,"sid":250206,"tid":250448,"t":"slowover","e":0.05,"s":1.7},"arcs":[[-2522],[2520],[2519],[2518],[2517],[2516],[2515],[2514],[2513],[2512],[2511],[2510],[2509],[2508],[2507],[2506],[2505],[2504],[2503],[2502],[2501],[2500],[2499],[-2115]]},{"type":"LineString","properties":{"gid":981741,"sid":250206,"tid":250449,"t":"coastal","e":0.05,"s":3.58},"arcs":[-2115,2497,2522,2411,2175,2174,2173,2172,2171,2170,2169,2168,2167,2166,2165,2164,2163,2162,2523,2524,2525,2526,2057]},{"type":"LineString","properties":{"gid":981762,"sid":250206,"tid":250474,"t":"coastal","e":0.05,"s":1.58},"arcs":[-2115,2527,2122]},{"type":"LineString","properties":{"gid":978745,"sid":250214,"tid":250223,"t":"ferry","e":0.05,"s":1},"arcs":[2528]},{"type":"LineString","properties":{"gid":981803,"sid":250214,"tid":250301,"t":"coastal","e":0.05,"s":1.18},"arcs":[2529,2530,2531,2532,2533,2534]},{"type":"LineString","properties":{"gid":981777,"sid":250214,"tid":250594,"t":"coastal","e":0.05,"s":0.44},"arcs":[2535,2536]},{"type":"LineString","properties":{"gid":981753,"sid":250216,"tid":250642,"t":"coastal","e":0.05,"s":0.43},"arcs":[2537,2538,2539]},{"type":"LineString","properties":{"gid":981824,"sid":250216,"tid":250644,"t":"coastal","e":0.05,"s":0.31},"arcs":[2537,2540,2541]},{"type":"LineString","properties":{"gid":981833,"sid":250223,"tid":250590,"t":"coastal","e":0.05,"s":0.46},"arcs":[-2529,2535,2542,1836]},{"type":"LineString","properties":{"gid":981845,"sid":250223,"tid":250599,"t":"coastal","e":0.05,"s":0.4},"arcs":[-2529,2529,2530,2543,2544]},{"type":"LineString","properties":{"gid":981856,"sid":250225,"tid":250454,"t":"coastal","e":0.05,"s":0.54},"arcs":[2545,2546,2547]},{"type":"MultiLineString","properties":{"gid":987493,"sid":250225,"tid":250719,"t":"coastal","e":0.05,"s":0.81},"arcs":[[2548],[2549],[2550],[2551],[2552],[2553],[2554],[2555],[2556],[2557],[2558],[2545]]},{"type":"LineString","properties":{"gid":981882,"sid":250230,"tid":250281,"t":"coastal","e":0.05,"s":0.85},"arcs":[-2039,-2038,2559,2560]},{"type":"LineString","properties":{"gid":977698,"sid":250230,"tid":250456,"t":"overseas","e":0.05,"s":2.81},"arcs":[-2039,2561,2562,2563,2564]},{"type":"LineString","properties":{"gid":998748,"sid":250230,"tid":250456,"t":"slowover","e":0.05,"s":2.83},"arcs":[-2039,2561,2565,2564]},{"type":"LineString","properties":{"gid":981898,"sid":250230,"tid":250492,"t":"coastal","e":0.05,"s":2.11},"arcs":[-2039,-2038,-2037,2566,2567,2076]},{"type":"LineString","properties":{"gid":981914,"sid":250230,"tid":250515,"t":"coastal","e":0.05,"s":0.69},"arcs":[-2039,2568,2569,2570]},{"type":"LineString","properties":{"gid":981928,"sid":250230,"tid":250538,"t":"coastal","e":0.05,"s":3.07},"arcs":[-2039,2568,2571,2572]},{"type":"LineString","properties":{"gid":981935,"sid":250233,"tid":250333,"t":"coastal","e":0.05,"s":0.97},"arcs":[2573,2574,2575,2576,2577,2578,2579]},{"type":"LineString","properties":{"gid":981940,"sid":250233,"tid":250396,"t":"coastal","e":0.05,"s":0.66},"arcs":[2573,2580,2581,2582,2583,2372]},{"type":"LineString","properties":{"gid":977718,"sid":250235,"tid":250238,"t":"overseas","e":0.05,"s":1.91},"arcs":[-2013,-2012,2584,-2031,-2030,-2029,-2028,-2027,-2026,2585,2458]},{"type":"LineString","properties":{"gid":997927,"sid":250235,"tid":250238,"t":"slowover","e":0.05,"s":1.96},"arcs":[-2013,-2012,2584,-2031,-2030,-2029,-2028,-2027,-2026,2585,2458]},{"type":"LineString","properties":{"gid":978948,"sid":250235,"tid":250330,"t":"coastal","e":0.05,"s":0.58},"arcs":[-2013,-2457,2015,2014,-2014]},{"type":"LineString","properties":{"gid":981970,"sid":250241,"tid":250307,"t":"coastal","e":0.05,"s":0.34},"arcs":[-2453,2586,2276]},{"type":"LineString","properties":{"gid":982060,"sid":250250,"tid":250264,"t":"coastal","e":0.05,"s":1.26},"arcs":[-1889,-1888,2587,2588,1890]},{"type":"LineString","properties":{"gid":977750,"sid":250250,"tid":250482,"t":"overseas","e":0.05,"s":4.19},"arcs":[-1889,-2368,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600]},{"type":"LineString","properties":{"gid":990409,"sid":250250,"tid":250482,"t":"slowover","e":0.05,"s":4.9},"arcs":[-1889,2601,2602,2603,2593,2594,2595,2596,2597,2598,2599,2600]},{"type":"LineString","properties":{"gid":979038,"sid":250250,"tid":250483,"t":"overseas","e":0.05,"s":4.2},"arcs":[-1889,-2368,2589,2604,2605,2606,2607,2608,2609,2610,2611,2612,2064]},{"type":"LineString","properties":{"gid":990510,"sid":250250,"tid":250483,"t":"slowover","e":0.05,"s":4.93},"arcs":[-1889,2601,2602,2603,2613,2614,2615,2616,2609,2610,2611,2612,2064]},{"type":"LineString","properties":{"gid":977777,"sid":250250,"tid":250716,"t":"overseas","e":0.05,"s":2.89},"arcs":[-1889,-2368,-2367,2617,2618]},{"type":"LineString","properties":{"gid":998738,"sid":250250,"tid":250716,"t":"slowover","e":0.05,"s":3.45},"arcs":[-1889,-2368,-2367,2617,2618]},{"type":"LineString","properties":{"gid":979061,"sid":250255,"tid":250357,"t":"coastal","e":0.05,"s":0.12},"arcs":[-2357,2283]},{"type":"LineString","properties":{"gid":977878,"sid":250256,"tid":250322,"t":"coastal","e":0.05,"s":0.12},"arcs":[2619]},{"type":"LineString","properties":{"gid":977793,"sid":250264,"tid":250449,"t":"overseas","e":0.05,"s":4.81},"arcs":[-1891,-2328,2620,2602,2603,2613,2614,2621,2418,2622,2388,2623,2624,2526,2057]},{"type":"LineString","properties":{"gid":990452,"sid":250264,"tid":250449,"t":"slowover","e":0.05,"s":5.76},"arcs":[-1891,-2328,2620,2602,2603,2613,2614,2621,2418,2622,2388,2623,2624,2526,2057]},{"type":"LineString","properties":{"gid":979091,"sid":250264,"tid":250487,"t":"overseas","e":0.05,"s":3.41},"arcs":[-1891,-2589,2625,2626,2627,2628,2629]},{"type":"LineString","properties":{"gid":990540,"sid":250264,"tid":250487,"t":"slowover","e":0.05,"s":4.08},"arcs":[-1891,-2589,2625,2626,2627,2628,2629]},{"type":"LineString","properties":{"gid":982131,"sid":250266,"tid":250336,"t":"coastal","e":0.05,"s":0.79},"arcs":[2630,2631,2632,1872]},{"type":"LineString","properties":{"gid":982144,"sid":250266,"tid":250528,"t":"coastal","e":0.05,"s":0.68},"arcs":[2630,2633,2634,2635]},{"type":"LineString","properties":{"gid":982156,"sid":250266,"tid":250533,"t":"coastal","e":0.05,"s":2.07},"arcs":[2630,2633,2636,2637,2638,2639,1879,1880]},{"type":"LineString","properties":{"gid":979120,"sid":250268,"tid":250312,"t":"coastal","e":0.05,"s":0.17},"arcs":[2640,2641,2642]},{"type":"LineString","properties":{"gid":982182,"sid":250268,"tid":250322,"t":"coastal","e":0.05,"s":0.22},"arcs":[2640,2643,2619]},{"type":"LineString","properties":{"gid":982201,"sid":250272,"tid":250599,"t":"coastal","e":0.05,"s":1.54},"arcs":[-2263,2644,2645,2646,2647,-2534,-2533,2648,2544]},{"type":"LineString","properties":{"gid":979147,"sid":250272,"tid":250619,"t":"coastal","e":0.05,"s":0.58},"arcs":[-2263,2644,2649,2650]},{"type":"LineString","properties":{"gid":982227,"sid":250273,"tid":250467,"t":"coastal","e":0.05,"s":0.98},"arcs":[2651,2652,2653,2654,2655,2656,2292]},{"type":"LineString","properties":{"gid":982240,"sid":250273,"tid":250537,"t":"coastal","e":0.05,"s":0.72},"arcs":[2651,2657,2658]},{"type":"LineString","properties":{"gid":979152,"sid":250273,"tid":250539,"t":"coastal","e":0.05,"s":0.18},"arcs":[2651,2659,2660]},{"type":"LineString","properties":{"gid":982264,"sid":250280,"tid":250399,"t":"coastal","e":0.05,"s":1.1},"arcs":[2661,2662,2663,2259,2481]},{"type":"LineString","properties":{"gid":979184,"sid":250280,"tid":250611,"t":"coastal","e":0.05,"s":0.66},"arcs":[2661,2664,2665]},{"type":"LineString","properties":{"gid":979200,"sid":250281,"tid":250331,"t":"coastal","e":0.05,"s":0.42},"arcs":[-2561,2666,2667]},{"type":"LineString","properties":{"gid":982341,"sid":250286,"tid":250322,"t":"coastal","e":0.05,"s":1.21},"arcs":[-2049,2668,2669,2670,2619]},{"type":"LineString","properties":{"gid":982354,"sid":250286,"tid":250378,"t":"coastal","e":0.05,"s":0.77},"arcs":[-2049,2668,2671]},{"type":"LineString","properties":{"gid":977847,"sid":250286,"tid":250451,"t":"overseas","e":0.05,"s":1.71},"arcs":[-2049,2672,2673,2674,2675]},{"type":"LineString","properties":{"gid":990501,"sid":250286,"tid":250451,"t":"slowover","e":0.05,"s":1.78},"arcs":[-2049,2672,2673,2674,2675]},{"type":"LineString","properties":{"gid":977852,"sid":250286,"tid":250486,"t":"overseas","e":0.05,"s":2.63},"arcs":[-2049,2676,2677,2678,2679,2680,2068,2069]},{"type":"LineString","properties":{"gid":990407,"sid":250286,"tid":250486,"t":"slowover","e":0.05,"s":2.84},"arcs":[-2049,2672,2681,2678,2679,2680,2068,2069]},{"type":"LineString","properties":{"gid":977870,"sid":250286,"tid":250487,"t":"overseas","e":0.05,"s":1.96},"arcs":[-2049,2672,2673,2682,2683,2684,2629]},{"type":"LineString","properties":{"gid":991305,"sid":250286,"tid":250487,"t":"slowover","e":0.05,"s":2.05},"arcs":[-2049,2672,2673,2682,2683,2684,2629]},{"type":"LineString","properties":{"gid":977887,"sid":250286,"tid":250501,"t":"overseas","e":0.05,"s":2.42},"arcs":[-2049,2676,2685,2686,2687,2688,2689,2690]},{"type":"LineString","properties":{"gid":990486,"sid":250286,"tid":250501,"t":"slowover","e":0.05,"s":2.45},"arcs":[-2049,2676,2685,2686,2687,2688,2689,2690]},{"type":"LineString","properties":{"gid":982377,"sid":250286,"tid":250762,"t":"coastal","e":0.05,"s":1.73},"arcs":[-2049,2668,2669,2691,2692]},{"type":"LineString","properties":{"gid":977601,"sid":250291,"tid":250602,"t":"overseas","e":0.05,"s":2.93},"arcs":[-1779,2693,2694,2695]},{"type":"LineString","properties":{"gid":991302,"sid":250291,"tid":250602,"t":"slowover","e":0.05,"s":3},"arcs":[-1779,2693,2694,2695]},{"type":"LineString","properties":{"gid":977921,"sid":250297,"tid":250452,"t":"overseas","e":0.05,"s":2.69},"arcs":[-1782,2696,1897,1898,1790]},{"type":"LineString","properties":{"gid":990470,"sid":250297,"tid":250452,"t":"slowover","e":0.05,"s":3.44},"arcs":[-1782,2696,1897,1898,1790]},{"type":"LineString","properties":{"gid":982431,"sid":250297,"tid":250654,"t":"coastal","e":0.05,"s":0.96},"arcs":[-1782,2697,2449]},{"type":"LineString","properties":{"gid":980593,"sid":250301,"tid":250599,"t":"coastal","e":0.05,"s":0.69},"arcs":[-2535,-2534,-2533,2648,2544]},{"type":"LineString","properties":{"gid":980614,"sid":250301,"tid":250612,"t":"coastal","e":0.05,"s":0.51},"arcs":[2698,2699,2270]},{"type":"LineString","properties":{"gid":979523,"sid":250303,"tid":250471,"t":"coastal","e":0.05,"s":1.36},"arcs":[-2465,2700]},{"type":"LineString","properties":{"gid":980628,"sid":250303,"tid":250759,"t":"coastal","e":0.05,"s":1.2},"arcs":[-2465,-2464,2701,2702]},{"type":"LineString","properties":{"gid":980920,"sid":250307,"tid":250761,"t":"coastal","e":0.05,"s":0.58},"arcs":[-2277,-2276,2277]},{"type":"LineString","properties":{"gid":982351,"sid":250311,"tid":250349,"t":"coastal","e":0.05,"s":0.78},"arcs":[-1862,1867,-2493,2703,2494]},{"type":"LineString","properties":{"gid":982419,"sid":250311,"tid":250383,"t":"coastal","e":0.05,"s":0.73},"arcs":[-1862,-1867,2704,1874]},{"type":"LineString","properties":{"gid":977440,"sid":250312,"tid":250335,"t":"coastal","e":0.05,"s":0.42},"arcs":[-2643,2705,2706,2707]},{"type":"LineString","properties":{"gid":977680,"sid":250319,"tid":250515,"t":"coastal","e":0.05,"s":1.07},"arcs":[146,2708,2570]},{"type":"LineString","properties":{"gid":978121,"sid":250320,"tid":250538,"t":"coastal","e":0.05,"s":0.72},"arcs":[2709,2710,2711,2572]},{"type":"LineString","properties":{"gid":978445,"sid":250320,"tid":250545,"t":"coastal","e":0.05,"s":0.64},"arcs":[2709,2712,2713,2286]},{"type":"LineString","properties":{"gid":979817,"sid":250322,"tid":250378,"t":"coastal","e":0.05,"s":0.7},"arcs":[-2620,2279,2714,-2355,2357]},{"type":"LineString","properties":{"gid":979835,"sid":250322,"tid":250762,"t":"coastal","e":0.05,"s":0.72},"arcs":[-2620,-2644,2715,2706,2716,2692]},{"type":"LineString","properties":{"gid":979932,"sid":250323,"tid":250383,"t":"coastal","e":0.05,"s":1.12},"arcs":[-1864,2717,2718,2704,1874]},{"type":"LineString","properties":{"gid":979997,"sid":250323,"tid":250504,"t":"coastal","e":0.05,"s":0.75},"arcs":[-1864,2717,2719,1839]},{"type":"LineString","properties":{"gid":980021,"sid":250326,"tid":250417,"t":"coastal","e":0.05,"s":0.69},"arcs":[2720,-2433,2721]},{"type":"LineString","properties":{"gid":980040,"sid":250326,"tid":250516,"t":"coastal","e":0.05,"s":1},"arcs":[2722]},{"type":"LineString","properties":{"gid":986199,"sid":250326,"tid":250516,"t":"ferry","e":0.05,"s":0.12},"arcs":[2720,1811]},{"type":"LineString","properties":{"gid":980041,"sid":250326,"tid":250521,"t":"coastal","e":0.05,"s":0.45},"arcs":[2720,-1811,2723]},{"type":"LineString","properties":{"gid":980205,"sid":250326,"tid":250762,"t":"coastal","e":0.05,"s":1.68},"arcs":[2720,-2433,2724,2692]},{"type":"LineString","properties":{"gid":980342,"sid":250328,"tid":250354,"t":"coastal","e":0.05,"s":0.81},"arcs":[2725,2726,2727]},{"type":"LineString","properties":{"gid":980427,"sid":250328,"tid":250396,"t":"coastal","e":0.05,"s":3.19},"arcs":[2725,2728,-2378,-2377,-2404,2729,2730,2372]},{"type":"LineString","properties":{"gid":980428,"sid":250329,"tid":250483,"t":"coastal","e":0.05,"s":0.33},"arcs":[-2478,2731,2480,2064]},{"type":"LineString","properties":{"gid":982465,"sid":250330,"tid":250412,"t":"coastal","e":0.05,"s":2.05},"arcs":[2013,2732,2733,2316,2317]},{"type":"LineString","properties":{"gid":982445,"sid":250331,"tid":250492,"t":"coastal","e":0.05,"s":1.15},"arcs":[-2668,2734,2567,2076]},{"type":"LineString","properties":{"gid":980327,"sid":250332,"tid":250379,"t":"coastal","e":0.05,"s":1.37},"arcs":[-2299,-2298,2735,2300,1951]},{"type":"LineString","properties":{"gid":980424,"sid":250332,"tid":250450,"t":"coastal","e":0.05,"s":0.6},"arcs":[-2299,2736,2118]},{"type":"LineString","properties":{"gid":977939,"sid":250333,"tid":250396,"t":"overseas","e":0.05,"s":1.86},"arcs":[-2580,-2579,-2578,-2577,-2576,2737,2738,2739,2740,2741,2742,2743,2744,2745,2746,2747,2581,2582,2583,2372]},{"type":"MultiLineString","properties":{"gid":999687,"sid":250333,"tid":250396,"t":"slowover","e":0.05,"s":2.1},"arcs":[[-2373],[2583],[2582],[2581],[2747],[2746],[2745],[2744],[2743],[2742],[2741],[2740],[2739],[2738],[2737],[-2576],[-2577],[-2578],[-2579],[-2580]]},{"type":"LineString","properties":{"gid":982503,"sid":250334,"tid":250482,"t":"coastal","e":0.05,"s":0.49},"arcs":[809,2748,2600]},{"type":"LineString","properties":{"gid":982546,"sid":250336,"tid":250358,"t":"coastal","e":0.05,"s":1.43},"arcs":[-1873,-1872,2749,1907,1908]},{"type":"LineString","properties":{"gid":982559,"sid":250336,"tid":250518,"t":"coastal","e":0.05,"s":0.66},"arcs":[-1873,-1872,-1871,2750,2496]},{"type":"LineString","properties":{"gid":982568,"sid":250336,"tid":250533,"t":"coastal","e":0.05,"s":2.59},"arcs":[-1873,-2633,2751,2752,2753,2639,1879,1880]},{"type":"LineString","properties":{"gid":980201,"sid":250353,"tid":250447,"t":"coastal","e":0.05,"s":0.49},"arcs":[2754,2755,2756]},{"type":"LineString","properties":{"gid":982590,"sid":250353,"tid":250622,"t":"coastal","e":0.05,"s":1.21},"arcs":[2754,2757,2758,2759,2760,2761,2762]},{"type":"LineString","properties":{"gid":982603,"sid":250353,"tid":250624,"t":"coastal","e":0.05,"s":0.93},"arcs":[2754,2757,2763,2764,2765,2766]},{"type":"LineString","properties":{"gid":980399,"sid":250354,"tid":250474,"t":"coastal","e":0.05,"s":1.02},"arcs":[-2728,2767,2768,2122]},{"type":"LineString","properties":{"gid":977949,"sid":250354,"tid":250713,"t":"overseas","e":0.05,"s":2.3},"arcs":[-2728,2769,2770,2771,2182,2183,2184]},{"type":"LineString","properties":{"gid":992056,"sid":250354,"tid":250713,"t":"slowover","e":0.05,"s":2.56},"arcs":[-2728,2769,2770,2771,2182,2183,2184]},{"type":"LineString","properties":{"gid":979116,"sid":250358,"tid":250520,"t":"coastal","e":0.05,"s":0.21},"arcs":[-1909,2772,1944]},{"type":"LineString","properties":{"gid":979770,"sid":250363,"tid":250588,"t":"coastal","e":0.05,"s":0.71},"arcs":[-1761,-2332,2773,2774,2337]},{"type":"LineString","properties":{"gid":982689,"sid":250374,"tid":250491,"t":"coastal","e":0.05,"s":0.71},"arcs":[2775,2776,2777]},{"type":"LineString","properties":{"gid":978137,"sid":250374,"tid":250492,"t":"coastal","e":0.05,"s":0.62},"arcs":[2775,2778,2076]},{"type":"LineString","properties":{"gid":982696,"sid":250377,"tid":250524,"t":"coastal","e":0.05,"s":1.07},"arcs":[2779,2780,2781,2782]},{"type":"LineString","properties":{"gid":982709,"sid":250377,"tid":250527,"t":"coastal","e":0.05,"s":0.68},"arcs":[2779,2780,2783,2784]},{"type":"LineString","properties":{"gid":977966,"sid":250379,"tid":250487,"t":"overseas","e":0.05,"s":4.13},"arcs":[-1952,-1951,-1950,2785,2786,2787,2788,2789,2790,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,2812,2813,2814,2815,2816,2817,2818,2819,2820,2821,2822,2823,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,2836,2837,2838,2839,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2628,2629]},{"type":"MultiLineString","properties":{"gid":999739,"sid":250379,"tid":250487,"t":"slowover","e":0.05,"s":5.15},"arcs":[[-2630],[2628],[2859],[2858],[2857],[2856],[2855],[2854],[2853],[2852],[2851],[2850],[2849],[2848],[2847],[2846],[2845],[2844],[2843],[2842],[2841],[2840],[2839],[2838],[2837],[2836],[2835],[2834],[2833],[2832],[2831],[2830],[2829],[2828],[2827],[2826],[2825],[2824],[2823],[2822],[2821],[2820],[2819],[2818],[2817],[2816],[2815],[2814],[2813],[2812],[2811],[2810],[2809],[2808],[2807],[2806],[2805],[2804],[2803],[2802],[2801],[2800],[2799],[2798],[2797],[2796],[2795],[2794],[2793],[2792],[2791],[2790],[2789],[2788],[2787],[2786],[2785],[-1950],[-1951],[-1952]]},{"type":"LineString","properties":{"gid":977983,"sid":250379,"tid":250756,"t":"overseas","e":0.05,"s":1.4},"arcs":[-1952,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870,2871]},{"type":"MultiLineString","properties":{"gid":999758,"sid":250379,"tid":250756,"t":"slowover","e":0.05,"s":1.64},"arcs":[[2871],[2870],[2869],[2868],[2867],[2872],[2873],[2874],[2875],[2876],[2877],[2878],[2879],[2880],[2865],[2864],[2863],[2862],[2861],[2860],[-1952]]},{"type":"MultiLineString","properties":{"gid":987658,"sid":250389,"tid":250559,"t":"coastal","e":0.05,"s":1.14},"arcs":[[2881],[2882],[2883],[2884],[2885],[2886],[2887],[2888],[2889],[2890],[2891],[2892],[2893],[2894],[2895],[2896],[2897],[2898]]},{"type":"LineString","properties":{"gid":982763,"sid":250389,"tid":250717,"t":"coastal","e":0.05,"s":1.4},"arcs":[2898,2897,2896,2895,2899,2900,2901]},{"type":"LineString","properties":{"gid":982776,"sid":250389,"tid":250755,"t":"coastal","e":0.05,"s":0.86},"arcs":[2898,2897,2896,2895,2899,2902,2903]},{"type":"LineString","properties":{"gid":982808,"sid":250396,"tid":250474,"t":"coastal","e":0.05,"s":4.14},"arcs":[-2373,-2731,2904,2375,2376,2377,2378,2905,2906,2768,2122]},{"type":"LineString","properties":{"gid":982838,"sid":250401,"tid":250458,"t":"coastal","e":0.05,"s":2.03},"arcs":[2907,2908,2909,2910,2911,-1282]},{"type":"LineString","properties":{"gid":982853,"sid":250401,"tid":250649,"t":"coastal","e":0.05,"s":1.2},"arcs":[2907,2908,2912,2913]},{"type":"LineString","properties":{"gid":982866,"sid":250401,"tid":250652,"t":"coastal","e":0.05,"s":1.52},"arcs":[2907,2914,2915]},{"type":"LineString","properties":{"gid":982883,"sid":250411,"tid":250759,"t":"coastal","e":0.05,"s":1.13},"arcs":[-2020,2916,2461,2917,2702]},{"type":"LineString","properties":{"gid":978007,"sid":250412,"tid":250462,"t":"overseas","e":0.05,"s":1.38},"arcs":[-2318,-2317,-2734,2918,2247,2248,2249]},{"type":"MultiLineString","properties":{"gid":999803,"sid":250412,"tid":250462,"t":"slowover","e":0.05,"s":1.44},"arcs":[[-2250],[2248],[2247],[2246],[2919],[2920],[2921],[2922],[2923],[2924],[2925],[2926],[2927],[2928],[2929],[2930],[2931],[2932],[2933],[-2734],[-2317],[-2318]]},{"type":"LineString","properties":{"gid":982927,"sid":250430,"tid":250446,"t":"coastal","e":0.05,"s":0.85},"arcs":[-2268,2934,2935,2936]},{"type":"LineString","properties":{"gid":982937,"sid":250430,"tid":250639,"t":"coastal","e":0.05,"s":2.52},"arcs":[-2268,2934,2937,2938,2939,2940,2941,2942,2943,2944]},{"type":"LineString","properties":{"gid":982760,"sid":250438,"tid":250439,"t":"coastal","e":0.05,"s":0.6},"arcs":[-1276,2945,2946,2947]},{"type":"LineString","properties":{"gid":980563,"sid":250438,"tid":250447,"t":"coastal","e":0.05,"s":0.31},"arcs":[-1276,2948,2756]},{"type":"LineString","properties":{"gid":982695,"sid":250439,"tid":250440,"t":"coastal","e":0.05,"s":0.59},"arcs":[-2948,2949,2950,2951,2952,2953,1786,1787]},{"type":"LineString","properties":{"gid":982959,"sid":250439,"tid":250622,"t":"coastal","e":0.05,"s":1.4},"arcs":[-2948,-2947,2954,2955,2956,2762]},{"type":"LineString","properties":{"gid":982973,"sid":250439,"tid":250624,"t":"coastal","e":0.05,"s":1.41},"arcs":[-2948,-2947,2954,2957,2958,2764,2765,2766]},{"type":"LineString","properties":{"gid":978032,"sid":250440,"tid":250452,"t":"overseas","e":0.05,"s":1.82},"arcs":[-1788,-1787,-1786,2959,2960,1790]},{"type":"MultiLineString","properties":{"gid":999706,"sid":250440,"tid":250452,"t":"slowover","e":0.05,"s":2.19},"arcs":[[-1791],[2960],[2961],[2962],[2963],[2964],[2965],[2966],[2967],[2968],[2969],[2970],[2971],[2972],[2973],[2974],[2975],[2976],[2977],[2978],[2979],[2980],[2981],[2982],[2983],[2984],[2985],[-2951],[-2952],[-2953],[-2954],[-1787],[-1788]]},{"type":"LineString","properties":{"gid":982994,"sid":250440,"tid":250613,"t":"coastal","e":0.05,"s":0.68},"arcs":[-1788,2986,2987,1829,1830]},{"type":"LineString","properties":{"gid":983005,"sid":250440,"tid":250614,"t":"coastal","e":0.05,"s":0.66},"arcs":[-1788,2986,2988,2989]},{"type":"LineString","properties":{"gid":983018,"sid":250440,"tid":250622,"t":"coastal","e":0.05,"s":1.74},"arcs":[-1788,-1787,-2954,-2953,-2952,-2951,2985,2984,2983,2982,2981,2980,2979,2978,2977,2976,2975,2974,2973,2990,2956,2762]},{"type":"LineString","properties":{"gid":983045,"sid":250446,"tid":250626,"t":"coastal","e":0.05,"s":0.79},"arcs":[-2937,2991,2939,2992]},{"type":"LineString","properties":{"gid":978048,"sid":250446,"tid":250627,"t":"overseas","e":0.05,"s":2.35},"arcs":[-2937,2993,2994,2995,2996,2489]},{"type":"LineString","properties":{"gid":994684,"sid":250446,"tid":250627,"t":"slowover","e":0.05,"s":2.99},"arcs":[-2937,2993,2994,2995,2996,2489]},{"type":"LineString","properties":{"gid":983077,"sid":250448,"tid":250450,"t":"coastal","e":0.05,"s":0.86},"arcs":[-2522,2997,2998,2117,2118]},{"type":"LineString","properties":{"gid":983091,"sid":250448,"tid":250476,"t":"coastal","e":0.05,"s":1.03},"arcs":[-2522,2997,2999]},{"type":"LineString","properties":{"gid":983105,"sid":250448,"tid":250756,"t":"coastal","e":0.05,"s":0.89},"arcs":[-2522,3000,2869,2870,2871]},{"type":"LineString","properties":{"gid":983163,"sid":250449,"tid":250485,"t":"coastal","e":0.05,"s":0.48},"arcs":[-2058,3001,3002,3003,3004,3005,3006]},{"type":"LineString","properties":{"gid":978088,"sid":250449,"tid":250486,"t":"overseas","e":0.05,"s":1.62},"arcs":[-2058,3001,3002,3003,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,2398,2399,2400,2401,2069]},{"type":"MultiLineString","properties":{"gid":999705,"sid":250449,"tid":250486,"t":"slowover","e":0.05,"s":1.97},"arcs":[[-2070],[2401],[2400],[2399],[2398],[3021],[3020],[3019],[3018],[3017],[3016],[3015],[3014],[3013],[3012],[3011],[3010],[3009],[3008],[3007],[3003],[3002],[3001],[-2058]]},{"type":"LineString","properties":{"gid":983201,"sid":250451,"tid":250486,"t":"coastal","e":0.05,"s":1.65},"arcs":[-2676,3022,2679,2680,2068,2069]},{"type":"LineString","properties":{"gid":983214,"sid":250451,"tid":250487,"t":"coastal","e":0.05,"s":0.74},"arcs":[-2676,3023,2684,2629]},{"type":"LineString","properties":{"gid":983191,"sid":250452,"tid":250622,"t":"coastal","e":0.05,"s":0.36},"arcs":[-1791,-2961,3024,2762]},{"type":"LineString","properties":{"gid":983242,"sid":250452,"tid":250625,"t":"coastal","e":0.05,"s":0.6},"arcs":[-1791,-1899,-1981,-1980,-1979,-1978,-1977,3025,3026]},{"type":"MultiLineString","properties":{"gid":987692,"sid":250452,"tid":250719,"t":"overseas","e":0.05,"s":2.2},"arcs":[[2548],[3027],[3028],[3029],[3030],[3031],[3032],[3033],[3034],[3035],[-1958],[-1959],[-1960],[-1961],[-1962],[-1963],[-1964],[-1965],[-1966],[-1967],[-1968],[-1969],[-1970],[-1971],[-1972],[-1973],[-1974],[-1975],[-1976],[-1977],[-1978],[-1979],[-1980],[-1981],[-1899],[-1791]]},{"type":"LineString","properties":{"gid":994688,"sid":250452,"tid":250719,"t":"slowover","e":0.05,"s":2.2},"arcs":[-1791,-1899,-1981,-1980,-1979,-1978,-1977,-1976,-1975,-1974,-1973,-1972,-1971,-1970,-1969,-1968,-1967,-1966,-1965,-1964,-1963,-1962,-1961,-1960,-1959,-1958,3035,3034,3033,3032,3031,3030,3029,3028,3027,2548]},{"type":"LineString","properties":{"gid":983247,"sid":250453,"tid":250630,"t":"coastal","e":0.05,"s":0.35},"arcs":[3036,3037,3038,1982]},{"type":"LineString","properties":{"gid":980642,"sid":250453,"tid":250634,"t":"coastal","e":0.05,"s":0.52},"arcs":[3036,3039,3040]},{"type":"LineString","properties":{"gid":983261,"sid":250454,"tid":250634,"t":"coastal","e":0.05,"s":0.88},"arcs":[-2548,3041,3042]},{"type":"LineString","properties":{"gid":983275,"sid":250454,"tid":250642,"t":"coastal","e":0.05,"s":0.45},"arcs":[-2548,3043,3044,2539]},{"type":"LineString","properties":{"gid":978200,"sid":250454,"tid":250644,"t":"coastal","e":0.05,"s":0.5},"arcs":[-2548,3043,3045,2541]},{"type":"LineString","properties":{"gid":980000,"sid":250455,"tid":250456,"t":"coastal","e":0.05,"s":0.42},"arcs":[3046,3047]},{"type":"LineString","properties":{"gid":983287,"sid":250455,"tid":250516,"t":"coastal","e":0.05,"s":0.81},"arcs":[3046,3048,1811]},{"type":"LineString","properties":{"gid":983308,"sid":250456,"tid":250505,"t":"coastal","e":0.05,"s":2.25},"arcs":[-2565,3049,3050,3051,3052,3053,2080]},{"type":"LineString","properties":{"gid":983300,"sid":250456,"tid":250512,"t":"coastal","e":0.05,"s":0.88},"arcs":[-2565,-2564,3054,3055]},{"type":"LineString","properties":{"gid":983331,"sid":250456,"tid":250513,"t":"coastal","e":0.05,"s":0.63},"arcs":[-2565,3049,3056]},{"type":"LineString","properties":{"gid":983342,"sid":250456,"tid":250516,"t":"coastal","e":0.05,"s":1.1},"arcs":[-3048,3048,1811]},{"type":"LineString","properties":{"gid":978248,"sid":250456,"tid":250541,"t":"overseas","e":0.05,"s":3.3},"arcs":[3057,3058,3059,-1826,-1825,-1824,3060,3061]},{"type":"LineString","properties":{"gid":998714,"sid":250456,"tid":250541,"t":"slowover","e":0.05,"s":3.3},"arcs":[3057,3058,3059,-1826,-1825,-1824,3060,3061]},{"type":"LineString","properties":{"gid":978265,"sid":250456,"tid":250547,"t":"overseas","e":0.05,"s":3.72},"arcs":[3062,3063,3064,3065,3066,-1820,3067]},{"type":"LineString","properties":{"gid":998762,"sid":250456,"tid":250547,"t":"slowover","e":0.05,"s":3.72},"arcs":[3062,3063,3064,3065,3066,-1820,3067]},{"type":"LineString","properties":{"gid":978278,"sid":250456,"tid":250554,"t":"overseas","e":0.05,"s":4.61},"arcs":[3062,3063,3064,3065,3066,-1820,-1819,-1818,-1817,3068]},{"type":"LineString","properties":{"gid":998799,"sid":250456,"tid":250554,"t":"slowover","e":0.05,"s":4.61},"arcs":[3062,3063,3064,3065,3066,-1820,-1819,-1818,-1817,3068]},{"type":"LineString","properties":{"gid":988312,"sid":250457,"tid":250758,"t":"coastal","e":0.05,"s":1.72},"arcs":[3069,3070,-1800,3071,3072,-1797,3073,3074]},{"type":"LineString","properties":{"gid":983375,"sid":250458,"tid":250639,"t":"coastal","e":0.05,"s":1.09},"arcs":[1281,3075,3076,2944]},{"type":"LineString","properties":{"gid":983387,"sid":250458,"tid":250647,"t":"coastal","e":0.05,"s":0.63},"arcs":[1281,-2912,3077,3078]},{"type":"LineString","properties":{"gid":981592,"sid":250467,"tid":250544,"t":"coastal","e":0.05,"s":0.27},"arcs":[-2293,-2657,3079]},{"type":"LineString","properties":{"gid":983457,"sid":250469,"tid":250528,"t":"coastal","e":0.05,"s":1.1},"arcs":[-2320,3080,2635]},{"type":"LineString","properties":{"gid":983524,"sid":250474,"tid":250483,"t":"coastal","e":0.05,"s":3.91},"arcs":[-2123,3081,2408,2409,2410,2411,2175,2174,2173,2172,2171,2170,2169,2168,2167,2166,2165,2164,2163,2162,2161,2064]},{"type":"LineString","properties":{"gid":983435,"sid":250482,"tid":250483,"t":"coastal","e":0.05,"s":0.63},"arcs":[-2601,3082,2165,2164,2163,2162,2161,2064]},{"type":"LineString","properties":{"gid":978374,"sid":250485,"tid":250486,"t":"overseas","e":0.05,"s":1.26},"arcs":[-3007,3083,3084,3085,3086,3087,3088,3089,3090,3091,3092,3093,3094,3095,3096,2399,2400,2401,2069]},{"type":"MultiLineString","properties":{"gid":999710,"sid":250485,"tid":250486,"t":"slowover","e":0.05,"s":1.52},"arcs":[[-2070],[2401],[2400],[2399],[3096],[3095],[3094],[3093],[3092],[3091],[3090],[3089],[3088],[3087],[3086],[3085],[3084],[3083],[-3007]]},{"type":"LineString","properties":{"gid":978471,"sid":250486,"tid":250505,"t":"overseas","e":0.05,"s":2.01},"arcs":[-2070,-2069,-2068,-2072,3097,3098,3099,3100,3101,3102,2080]},{"type":"LineString","properties":{"gid":990413,"sid":250486,"tid":250505,"t":"slowover","e":0.05,"s":2.21},"arcs":[-2070,-2069,-2681,3103,3104,3105,3106,3100,3101,3102,2080]},{"type":"LineString","properties":{"gid":978485,"sid":250486,"tid":250756,"t":"overseas","e":0.05,"s":3.74},"arcs":[-2070,-2402,-2401,-2400,-2399,-2398,-2397,-2396,-2395,-2394,-2393,-2392,3107,3108,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132,3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,3145,3146,3147,3148,3149,3150,3151,3152,3153,3154,3155,3156,3157,3158,3159,3160,3161,2871]},{"type":"MultiLineString","properties":{"gid":999748,"sid":250486,"tid":250756,"t":"slowover","e":0.05,"s":4.76},"arcs":[[2871],[3161],[3160],[3159],[3158],[3157],[3156],[3155],[3154],[3153],[3152],[3151],[3150],[3149],[3148],[3147],[3146],[3145],[3144],[3143],[3142],[3141],[3140],[3139],[3138],[3137],[3136],[3135],[3134],[3133],[3132],[3131],[3130],[3129],[3128],[3127],[3126],[3125],[3124],[3123],[3122],[3121],[3120],[3119],[3118],[3117],[3116],[3115],[3114],[3113],[3112],[3111],[3110],[3109],[3108],[3107],[-2392],[-2393],[-2394],[-2395],[-2396],[-2397],[-2398],[-2399],[-2400],[-2401],[-2402],[-2070]]},{"type":"LineString","properties":{"gid":983606,"sid":250487,"tid":250716,"t":"coastal","e":0.05,"s":0.87},"arcs":[-2630,-2685,-2684,3162,2618]},{"type":"LineString","properties":{"gid":983680,"sid":250489,"tid":250716,"t":"coastal","e":0.05,"s":0.66},"arcs":[3163,3164,2618]},{"type":"LineString","properties":{"gid":983687,"sid":250489,"tid":250761,"t":"coastal","e":0.05,"s":0.4},"arcs":[3163,3165,2277]},{"type":"LineString","properties":{"gid":983711,"sid":250491,"tid":250498,"t":"coastal","e":0.05,"s":0.49},"arcs":[-2778,3166,3167,-2075,2472]},{"type":"LineString","properties":{"gid":983782,"sid":250493,"tid":250495,"t":"coastal","e":0.05,"s":0.36},"arcs":[-2078,2034,3168,2470]},{"type":"LineString","properties":{"gid":978551,"sid":250493,"tid":250501,"t":"overseas","e":0.05,"s":0.88},"arcs":[-2078,3169,3170,2690]},{"type":"LineString","properties":{"gid":997993,"sid":250493,"tid":250501,"t":"slowover","e":0.05,"s":0.93},"arcs":[-2078,3169,3170,2690]},{"type":"LineString","properties":{"gid":983795,"sid":250493,"tid":250505,"t":"coastal","e":0.05,"s":0.96},"arcs":[-2078,3169,2079,2080]},{"type":"LineString","properties":{"gid":983804,"sid":250495,"tid":250499,"t":"coastal","e":0.05,"s":0.57},"arcs":[-2471,-3169,3171,3172]},{"type":"LineString","properties":{"gid":983883,"sid":250499,"tid":250505,"t":"coastal","e":0.05,"s":0.77},"arcs":[-3173,3173,2080]},{"type":"LineString","properties":{"gid":978561,"sid":250499,"tid":250512,"t":"overseas","e":0.05,"s":1.54},"arcs":[-3173,3174,3175,3055]},{"type":"LineString","properties":{"gid":990412,"sid":250499,"tid":250512,"t":"slowover","e":0.05,"s":1.59},"arcs":[-3173,3174,3175,3055]},{"type":"LineString","properties":{"gid":983896,"sid":250501,"tid":250505,"t":"coastal","e":0.05,"s":0.32},"arcs":[-2691,3176,3102,2080]},{"type":"LineString","properties":{"gid":983199,"sid":250505,"tid":250507,"t":"coastal","e":0.05,"s":0.44},"arcs":[-2081,-3054,-3053,3177]},{"type":"LineString","properties":{"gid":978630,"sid":250505,"tid":250512,"t":"overseas","e":0.05,"s":1.6},"arcs":[-2081,-3054,3178,3175,3055]},{"type":"LineString","properties":{"gid":990544,"sid":250505,"tid":250512,"t":"slowover","e":0.05,"s":1.65},"arcs":[-2081,-3054,3178,3175,3055]},{"type":"LineString","properties":{"gid":983971,"sid":250505,"tid":250516,"t":"coastal","e":0.05,"s":2.09},"arcs":[-2081,3179,2429,2430,2431,2432,1811]},{"type":"LineString","properties":{"gid":983987,"sid":250505,"tid":250714,"t":"coastal","e":0.05,"s":0.79},"arcs":[-2081,3179,2429,3180,3181]},{"type":"LineString","properties":{"gid":984010,"sid":250507,"tid":250715,"t":"coastal","e":0.05,"s":0.45},"arcs":[-3178,-3052,3182]},{"type":"LineString","properties":{"gid":984070,"sid":250513,"tid":250715,"t":"coastal","e":0.05,"s":0.91},"arcs":[-3057,3050,3182]},{"type":"LineString","properties":{"gid":978713,"sid":250516,"tid":250541,"t":"overseas","e":0.05,"s":2.97},"arcs":[-1812,-1811,-1810,-1809,-1828,3183,3184,-1824,3060,3061]},{"type":"LineString","properties":{"gid":998807,"sid":250516,"tid":250541,"t":"slowover","e":0.05,"s":2.97},"arcs":[-1812,-1811,-1810,-1809,-1828,3183,3184,-1824,3060,3061]},{"type":"LineString","properties":{"gid":978732,"sid":250516,"tid":250545,"t":"overseas","e":0.05,"s":4.54},"arcs":[-1812,-1811,-1810,3185,3186,3187,3188,2286]},{"type":"LineString","properties":{"gid":990512,"sid":250516,"tid":250545,"t":"slowover","e":0.05,"s":4.54},"arcs":[-1812,-1811,-1810,3185,3186,3187,3188,2286]},{"type":"LineString","properties":{"gid":984158,"sid":250516,"tid":250714,"t":"coastal","e":0.05,"s":1.62},"arcs":[-1812,-2433,-2432,3189,3181]},{"type":"LineString","properties":{"gid":984200,"sid":250521,"tid":250523,"t":"coastal","e":0.05,"s":0.34},"arcs":[-2724,3190,3191]},{"type":"LineString","properties":{"gid":989081,"sid":250522,"tid":250796,"t":"coastal","e":0.05,"s":5.28},"arcs":[3192,1941,3193,3194,1995,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,-1821,-1820,3067,3205,3206,3207,3208,3209,3210,3211]},{"type":"LineString","properties":{"gid":984208,"sid":250523,"tid":250524,"t":"coastal","e":0.05,"s":0.83},"arcs":[-3192,3212,2782]},{"type":"LineString","properties":{"gid":984246,"sid":250524,"tid":250529,"t":"coastal","e":0.05,"s":0.87},"arcs":[-2783,3213,3214,3215]},{"type":"LineString","properties":{"gid":984271,"sid":250527,"tid":250529,"t":"coastal","e":0.05,"s":0.43},"arcs":[-2785,3216,3214,3215]},{"type":"LineString","properties":{"gid":980212,"sid":250529,"tid":250530,"t":"coastal","e":0.05,"s":0.41},"arcs":[-3216,3217,1996]},{"type":"LineString","properties":{"gid":984330,"sid":250529,"tid":250537,"t":"coastal","e":0.05,"s":0.98},"arcs":[-3216,3218,3219,2658]},{"type":"LineString","properties":{"gid":978749,"sid":250529,"tid":250545,"t":"overseas","e":0.05,"s":4.73},"arcs":[-3216,3220,3221,3222,3223,3224,3225,3226,2286]},{"type":"LineString","properties":{"gid":990439,"sid":250529,"tid":250545,"t":"slowover","e":0.05,"s":4.73},"arcs":[-3216,3220,3221,3222,3223,3224,3225,3226,2286]},{"type":"LineString","properties":{"gid":984365,"sid":250530,"tid":250535,"t":"coastal","e":0.05,"s":0.68},"arcs":[-1997,3227,3228,3229,3230,2321]},{"type":"LineString","properties":{"gid":984378,"sid":250531,"tid":250538,"t":"coastal","e":0.05,"s":1.45},"arcs":[-1885,3231,2572]},{"type":"LineString","properties":{"gid":980263,"sid":250533,"tid":250534,"t":"coastal","e":0.05,"s":0.12},"arcs":[-1881,3232]},{"type":"LineString","properties":{"gid":984449,"sid":250533,"tid":250535,"t":"coastal","e":0.05,"s":0.36},"arcs":[-1881,-1880,-2640,3233,2321]},{"type":"LineString","properties":{"gid":984433,"sid":250533,"tid":250537,"t":"coastal","e":0.05,"s":0.85},"arcs":[-1881,3234,2658]},{"type":"LineString","properties":{"gid":978780,"sid":250538,"tid":250540,"t":"overseas","e":0.05,"s":3.9},"arcs":[-2573,3235,3236,3237,3238,3239,3240]},{"type":"LineString","properties":{"gid":998749,"sid":250538,"tid":250540,"t":"slowover","e":0.05,"s":3.9},"arcs":[-2573,3235,3236,3237,3238,3239,3240]},{"type":"LineString","properties":{"gid":978795,"sid":250538,"tid":250541,"t":"overseas","e":0.05,"s":3.87},"arcs":[-2573,3235,3241,3242,3243,3244,3245,3061]},{"type":"LineString","properties":{"gid":998705,"sid":250538,"tid":250541,"t":"slowover","e":0.05,"s":3.87},"arcs":[-2573,3235,3241,3242,3243,3244,3245,3061]},{"type":"LineString","properties":{"gid":984580,"sid":250538,"tid":250545,"t":"coastal","e":0.05,"s":1.16},"arcs":[-2573,-2712,3246,2713,2286]},{"type":"LineString","properties":{"gid":984595,"sid":250539,"tid":250541,"t":"coastal","e":0.05,"s":0.89},"arcs":[-2661,3247,2653,3248,3200,3201,3061]},{"type":"LineString","properties":{"gid":984607,"sid":250539,"tid":250741,"t":"coastal","e":0.05,"s":0.43},"arcs":[-2661,3249,3197,3198]},{"type":"LineString","properties":{"gid":984617,"sid":250540,"tid":250541,"t":"coastal","e":0.05,"s":0.28},"arcs":[-3241,3250,3201,3061]},{"type":"LineString","properties":{"gid":984544,"sid":250540,"tid":250741,"t":"coastal","e":0.05,"s":0.39},"arcs":[-3241,3251,3198]},{"type":"LineString","properties":{"gid":984636,"sid":250541,"tid":250542,"t":"coastal","e":0.05,"s":0.24},"arcs":[-3062,3202,3252,3253]},{"type":"LineString","properties":{"gid":984662,"sid":250541,"tid":250544,"t":"coastal","e":0.05,"s":0.72},"arcs":[-3062,-3202,-3201,3254,2655,3079]},{"type":"LineString","properties":{"gid":984679,"sid":250542,"tid":250546,"t":"coastal","e":0.05,"s":0.67},"arcs":[-3254,3255,3204,-1821,3256]},{"type":"LineString","properties":{"gid":984704,"sid":250544,"tid":250549,"t":"coastal","e":0.05,"s":0.8},"arcs":[-3080,2656,-2292,3257,2294]},{"type":"LineString","properties":{"gid":978924,"sid":250545,"tid":250547,"t":"overseas","e":0.05,"s":2.46},"arcs":[-2287,-3227,3258,3259]},{"type":"LineString","properties":{"gid":998809,"sid":250545,"tid":250547,"t":"slowover","e":0.05,"s":2.46},"arcs":[-2287,-3227,3258,3259]},{"type":"LineString","properties":{"gid":978881,"sid":250545,"tid":250554,"t":"overseas","e":0.05,"s":1.81},"arcs":[-2287,3260,3261,3262,3068]},{"type":"LineString","properties":{"gid":998818,"sid":250545,"tid":250554,"t":"slowover","e":0.05,"s":1.81},"arcs":[-2287,3260,3261,3262,3068]},{"type":"LineString","properties":{"gid":978938,"sid":250545,"tid":250556,"t":"overseas","e":0.05,"s":2.07},"arcs":[-2287,3260,3263,3264,3265,3266,3267]},{"type":"LineString","properties":{"gid":998814,"sid":250545,"tid":250556,"t":"slowover","e":0.05,"s":2.07},"arcs":[-2287,3260,3263,3264,3265,3266,3267]},{"type":"LineString","properties":{"gid":984770,"sid":250546,"tid":250547,"t":"coastal","e":0.05,"s":0.47},"arcs":[-3257,-1820,3067]},{"type":"LineString","properties":{"gid":980011,"sid":250547,"tid":250548,"t":"coastal","e":0.05,"s":0.34},"arcs":[3205,3268,3269]},{"type":"LineString","properties":{"gid":984792,"sid":250547,"tid":250552,"t":"coastal","e":0.05,"s":0.44},"arcs":[3270,3271,3272]},{"type":"LineString","properties":{"gid":984805,"sid":250547,"tid":250556,"t":"coastal","e":0.05,"s":0.82},"arcs":[3270,3273,3267]},{"type":"LineString","properties":{"gid":984821,"sid":250548,"tid":250552,"t":"coastal","e":0.05,"s":0.47},"arcs":[-3270,3274,3207,3275,3272]},{"type":"LineString","properties":{"gid":984856,"sid":250550,"tid":250552,"t":"coastal","e":0.05,"s":1.08},"arcs":[3276,3277,3278,-3210,3279,3272]},{"type":"LineString","properties":{"gid":984869,"sid":250550,"tid":250573,"t":"coastal","e":0.05,"s":1.18},"arcs":[3276,-2325,3280,1913,1925,1926,1927,3281,2335]},{"type":"LineString","properties":{"gid":984884,"sid":250550,"tid":250593,"t":"coastal","e":0.05,"s":1.86},"arcs":[3276,-2325,3280,1913,1925,1926,1927,1928,1929,1930,3282,3283,3284,3285,3286,3287,3288]},{"type":"LineString","properties":{"gid":989622,"sid":250550,"tid":250796,"t":"coastal","e":0.05,"s":0.43},"arcs":[-2326,3277,3289,3211]},{"type":"LineString","properties":{"gid":979337,"sid":250551,"tid":250553,"t":"coastal","e":0.05,"s":0.42},"arcs":[-2289,3290,3291]},{"type":"LineString","properties":{"gid":978981,"sid":250551,"tid":250558,"t":"overseas","e":0.05,"s":1.79},"arcs":[-2289,3292,3293,3294,3295]},{"type":"LineString","properties":{"gid":990471,"sid":250551,"tid":250558,"t":"slowover","e":0.05,"s":1.8},"arcs":[-2289,3292,3296,3294,3295]},{"type":"LineString","properties":{"gid":984932,"sid":250552,"tid":250582,"t":"coastal","e":0.05,"s":1.56},"arcs":[-3273,3297,3298,3299]},{"type":"LineString","properties":{"gid":979380,"sid":250553,"tid":250567,"t":"coastal","e":0.05,"s":1.01},"arcs":[-3292,3300,3301]},{"type":"LineString","properties":{"gid":984948,"sid":250554,"tid":250556,"t":"coastal","e":0.05,"s":0.43},"arcs":[-3069,1816,3302,3266,3267]},{"type":"LineString","properties":{"gid":984938,"sid":250554,"tid":250558,"t":"coastal","e":0.05,"s":0.44},"arcs":[-3069,-1816,3303,3071,3295]},{"type":"LineString","properties":{"gid":984968,"sid":250555,"tid":250557,"t":"coastal","e":0.05,"s":0.74},"arcs":[3304,3305,-1915,1924]},{"type":"LineString","properties":{"gid":984979,"sid":250555,"tid":250562,"t":"coastal","e":0.05,"s":0.68},"arcs":[3304,3306,3307,3308]},{"type":"LineString","properties":{"gid":984991,"sid":250555,"tid":250598,"t":"coastal","e":0.05,"s":1.88},"arcs":[3304,3306,3307,3309,1917,1918,3310,3311,3312,3313,3314,3315,3316,3317,3318,2343]},{"type":"LineString","properties":{"gid":987767,"sid":250555,"tid":250717,"t":"coastal","e":0.05,"s":2.18},"arcs":[3304,3306,3307,3319,3320,3321,3322,2901]},{"type":"LineString","properties":{"gid":989088,"sid":250555,"tid":250783,"t":"coastal","e":0.05,"s":1.31},"arcs":[3304,3306,3307,3309,1917,1918,3310,3311,3312,3313,3323]},{"type":"LineString","properties":{"gid":985041,"sid":250556,"tid":250577,"t":"coastal","e":0.05,"s":1.06},"arcs":[-3268,3324,3325]},{"type":"LineString","properties":{"gid":979796,"sid":250557,"tid":250562,"t":"coastal","e":0.05,"s":0.46},"arcs":[-1925,1914,3326,3307,3308]},{"type":"LineString","properties":{"gid":979592,"sid":250557,"tid":250573,"t":"coastal","e":0.05,"s":0.71},"arcs":[-1925,1925,1926,1927,3281,2335]},{"type":"LineString","properties":{"gid":985079,"sid":250557,"tid":250598,"t":"coastal","e":0.05,"s":1.54},"arcs":[-1925,1925,1926,1927,1928,1929,1930,1931,1932,3327,3328,3317,3318,2343]},{"type":"LineString","properties":{"gid":988313,"sid":250557,"tid":250603,"t":"coastal","e":0.05,"s":1.66},"arcs":[-1925,1925,1926,3329,3330,3331,3332,3333,3334,3335,3336,3337,3338,1938,1939]},{"type":"LineString","properties":{"gid":989579,"sid":250557,"tid":250779,"t":"coastal","e":0.05,"s":0.09},"arcs":[-1925,1925,3339]},{"type":"LineString","properties":{"gid":988374,"sid":250559,"tid":250569,"t":"coastal","e":0.05,"s":0.76},"arcs":[2881,3340,3341,3342,3343,3344,1833]},{"type":"LineString","properties":{"gid":985105,"sid":250559,"tid":250586,"t":"coastal","e":0.05,"s":1.17},"arcs":[2881,3340,3341,3342,3343,3344,-1833,-1835]},{"type":"MultiLineString","properties":{"gid":987659,"sid":250559,"tid":250718,"t":"coastal","e":0.05,"s":0.8},"arcs":[[3345],[3346],[3347],[3348],[3349],[3350],[3351],[3352],[3341],[3340],[2881]]},{"type":"LineString","properties":{"gid":987773,"sid":250559,"tid":250784,"t":"coastal","e":0.05,"s":1.23},"arcs":[2881,3340,3341,3342,3353,3354,3355,3356]},{"type":"LineString","properties":{"gid":985132,"sid":250562,"tid":250717,"t":"coastal","e":0.05,"s":1.62},"arcs":[-3309,3319,3320,3321,3322,2901]},{"type":"MultiLineString","properties":{"gid":987613,"sid":250562,"tid":250755,"t":"coastal","e":0.05,"s":1.19},"arcs":[[2903],[3357],[3358],[3359],[3360],[3361],[3362],[3363],[3364],[3365],[3366],[3367],[3320],[3319],[-3309]]},{"type":"LineString","properties":{"gid":989582,"sid":250562,"tid":250778,"t":"coastal","e":0.05,"s":0.3},"arcs":[-3309,3319,3368,3369,3370]},{"type":"LineString","properties":{"gid":988028,"sid":250564,"tid":250569,"t":"coastal","e":0.05,"s":1.08},"arcs":[3371,3372,3373,3374,3344,1833]},{"type":"LineString","properties":{"gid":985147,"sid":250564,"tid":250594,"t":"coastal","e":0.05,"s":1.31},"arcs":[3371,3375,3376,3355,3377,-2543,2536]},{"type":"LineString","properties":{"gid":985161,"sid":250567,"tid":250568,"t":"coastal","e":0.05,"s":0.2},"arcs":[-3302,3378,2188]},{"type":"LineString","properties":{"gid":979065,"sid":250568,"tid":250577,"t":"overseas","e":0.05,"s":3.28},"arcs":[-2189,3379,3380,3381,3074,3382,3383,3384,3385,3325]},{"type":"LineString","properties":{"gid":991238,"sid":250568,"tid":250577,"t":"slowover","e":0.05,"s":3.29},"arcs":[-2189,3379,3380,3381,3074,3382,3383,3384,3385,3325]},{"type":"LineString","properties":{"gid":985175,"sid":250569,"tid":250592,"t":"coastal","e":0.05,"s":0.86},"arcs":[-1834,3386,-2341,3387,3388]},{"type":"LineString","properties":{"gid":988311,"sid":250572,"tid":250792,"t":"coastal","e":0.05,"s":0.21},"arcs":[3389,3390,3391,3392]},{"type":"LineString","properties":{"gid":985207,"sid":250573,"tid":250604,"t":"coastal","e":0.05,"s":1.19},"arcs":[-2336,3391,3393,3394,3395,3396,3397,1937,1938,3398,3399,3400]},{"type":"LineString","properties":{"gid":987774,"sid":250573,"tid":250755,"t":"coastal","e":0.05,"s":1.64},"arcs":[-2336,3401,3402,3403,3404,-3370,3405,3366,3365,3364,3363,3362,3361,3360,3359,3358,3357,2903]},{"type":"LineString","properties":{"gid":988377,"sid":250573,"tid":250776,"t":"coastal","e":0.05,"s":0.68},"arcs":[-2336,3391,3393,3283,3284,3285,3406,3407]},{"type":"LineString","properties":{"gid":988378,"sid":250573,"tid":250777,"t":"coastal","e":0.05,"s":0.78},"arcs":[-2336,3408,3409,3410,3411,3412,3413]},{"type":"LineString","properties":{"gid":989587,"sid":250573,"tid":250778,"t":"coastal","e":0.05,"s":0.39},"arcs":[-2336,3401,3402,3403,3404,3370]},{"type":"LineString","properties":{"gid":987830,"sid":250573,"tid":250779,"t":"coastal","e":0.05,"s":0.71},"arcs":[-2336,-3282,-1928,-1927,3339]},{"type":"LineString","properties":{"gid":988326,"sid":250573,"tid":250780,"t":"coastal","e":0.05,"s":0.68},"arcs":[-2336,-2335,1930,1931,1932,3327,3414]},{"type":"LineString","properties":{"gid":989535,"sid":250573,"tid":250781,"t":"coastal","e":0.05,"s":0.54},"arcs":[-2336,-3391,3415,3416,3417,3418]},{"type":"LineString","properties":{"gid":989143,"sid":250573,"tid":250782,"t":"coastal","e":0.05,"s":0.25},"arcs":[-2336,3391,3393,3394,3419,3420]},{"type":"LineString","properties":{"gid":989146,"sid":250573,"tid":250783,"t":"coastal","e":0.05,"s":0.44},"arcs":[-2336,-2335,-2334,3312,3313,3323]},{"type":"LineString","properties":{"gid":988381,"sid":250573,"tid":250785,"t":"coastal","e":0.05,"s":0.57},"arcs":[-2336,3408,3409,3410,3421,3422]},{"type":"LineString","properties":{"gid":988271,"sid":250573,"tid":250787,"t":"coastal","e":0.05,"s":0.7},"arcs":[-2336,3423,3424,3425,3426,3427,3428]},{"type":"LineString","properties":{"gid":989195,"sid":250573,"tid":250793,"t":"coastal","e":0.05,"s":0.19},"arcs":[-2336,3408,3409,3410,3429]},{"type":"LineString","properties":{"gid":988329,"sid":250573,"tid":250795,"t":"coastal","e":0.05,"s":0.66},"arcs":[-2336,3391,3393,3394,3395,3396,3430]},{"type":"LineString","properties":{"gid":988273,"sid":250573,"tid":250797,"t":"coastal","e":0.05,"s":0.64},"arcs":[-2336,3423,3424,3425,3426,3431]},{"type":"LineString","properties":{"gid":988385,"sid":250573,"tid":250798,"t":"coastal","e":0.05,"s":0.27},"arcs":[-2336,-3391,3415,3432]},{"type":"LineString","properties":{"gid":989583,"sid":250573,"tid":250800,"t":"coastal","e":0.05,"s":0.17},"arcs":[-2336,-3282,3433,3434]},{"type":"LineString","properties":{"gid":988386,"sid":250573,"tid":250801,"t":"coastal","e":0.05,"s":0.75},"arcs":[-2336,3408,3409,3410,3421,3435,3436]},{"type":"LineString","properties":{"gid":985237,"sid":250577,"tid":250582,"t":"coastal","e":0.05,"s":0.33},"arcs":[-3326,-3386,3298,3299]},{"type":"LineString","properties":{"gid":985205,"sid":250582,"tid":250593,"t":"coastal","e":0.05,"s":1.07},"arcs":[-3300,3437,3438,3288]},{"type":"LineString","properties":{"gid":985273,"sid":250582,"tid":250758,"t":"coastal","e":0.05,"s":0.35},"arcs":[-3300,3439]},{"type":"LineString","properties":{"gid":988387,"sid":250582,"tid":250801,"t":"coastal","e":0.05,"s":0.91},"arcs":[-3300,3440,3441,3436]},{"type":"LineString","properties":{"gid":985297,"sid":250586,"tid":250592,"t":"coastal","e":0.05,"s":0.76},"arcs":[1834,-2342,-2341,3387,3388]},{"type":"LineString","properties":{"gid":985309,"sid":250586,"tid":250594,"t":"coastal","e":0.05,"s":0.59},"arcs":[1834,1835,-2543,2536]},{"type":"LineString","properties":{"gid":988357,"sid":250586,"tid":250613,"t":"coastal","e":0.05,"s":2.61},"arcs":[1834,3442,-2341,-2340,-2339,-2331,-2330,3443,3444,3445,3316,3446,1936,1937,1938,3398,3447,2348,2349,2350,2351,2352,1830]},{"type":"LineString","properties":{"gid":985206,"sid":250588,"tid":250592,"t":"coastal","e":0.05,"s":0.75},"arcs":[-2338,-2775,3448,3449,3388]},{"type":"LineString","properties":{"gid":979606,"sid":250588,"tid":250597,"t":"coastal","e":0.05,"s":0.76},"arcs":[-2338,-2337,-2330,3443,3444,3445,3316,3317,3450]},{"type":"LineString","properties":{"gid":988358,"sid":250588,"tid":250613,"t":"coastal","e":0.05,"s":1.61},"arcs":[-2338,-2337,-2330,3443,3444,3445,3316,3446,1936,1937,1938,3398,3447,2348,2349,2350,2351,2352,1830]},{"type":"LineString","properties":{"gid":982918,"sid":250590,"tid":250594,"t":"coastal","e":0.05,"s":0.37},"arcs":[-1837,-2543,2536]},{"type":"LineString","properties":{"gid":985338,"sid":250590,"tid":250613,"t":"coastal","e":0.05,"s":2.58},"arcs":[-1837,-1836,-2342,-2341,-2340,-2339,-2331,-2330,3443,3444,3445,3316,3446,1936,1937,1938,3398,3447,2348,2349,2350,2351,2352,1830]},{"type":"LineString","properties":{"gid":985405,"sid":250593,"tid":250613,"t":"coastal","e":0.05,"s":1.01},"arcs":[-3289,3451,3452,3453,3454,3455,3456,2352,1830]},{"type":"LineString","properties":{"gid":989149,"sid":250593,"tid":250775,"t":"coastal","e":0.05,"s":0.45},"arcs":[-3289,3451,3457,3458]},{"type":"LineString","properties":{"gid":988399,"sid":250593,"tid":250776,"t":"coastal","e":0.05,"s":0.39},"arcs":[-3289,-3288,3459,3407]},{"type":"LineString","properties":{"gid":988290,"sid":250593,"tid":250777,"t":"coastal","e":0.05,"s":0.43},"arcs":[-3289,3460,3413]},{"type":"LineString","properties":{"gid":989590,"sid":250593,"tid":250788,"t":"coastal","e":0.05,"s":0.15},"arcs":[-3289,3461,3462]},{"type":"LineString","properties":{"gid":985447,"sid":250594,"tid":250725,"t":"coastal","e":0.05,"s":1.49},"arcs":[-2537,2542,-3378,-3356,-3377,3463,3464,3465]},{"type":"LineString","properties":{"gid":988308,"sid":250597,"tid":250598,"t":"coastal","e":0.05,"s":0.17},"arcs":[-3451,3318,2343]},{"type":"LineString","properties":{"gid":988361,"sid":250597,"tid":250604,"t":"coastal","e":0.05,"s":0.64},"arcs":[-3451,3466,2345,3467,3398,3399,3400]},{"type":"LineString","properties":{"gid":988360,"sid":250597,"tid":250613,"t":"coastal","e":0.05,"s":1.09},"arcs":[-3451,3466,2345,2346,2347,2348,2349,2350,2351,2352,1830]},{"type":"LineString","properties":{"gid":989188,"sid":250597,"tid":250776,"t":"coastal","e":0.05,"s":0.72},"arcs":[-3451,-3318,3468,3469,3470,3471,3472,3473,3406,3407]},{"type":"LineString","properties":{"gid":989187,"sid":250597,"tid":250780,"t":"coastal","e":0.05,"s":0.27},"arcs":[-3451,-3318,-3329,3414]},{"type":"LineString","properties":{"gid":988363,"sid":250597,"tid":250783,"t":"coastal","e":0.05,"s":0.63},"arcs":[-3451,-3318,-3317,-3316,-3315,3323]},{"type":"LineString","properties":{"gid":988253,"sid":250597,"tid":250786,"t":"coastal","e":0.05,"s":0.99},"arcs":[-3451,-3318,3468,3469,3470,3471,3472,3473,3406,3474,3475,3476]},{"type":"LineString","properties":{"gid":989186,"sid":250597,"tid":250795,"t":"coastal","e":0.05,"s":0.27},"arcs":[-3451,-3318,3468,3469,3430]},{"type":"LineString","properties":{"gid":985390,"sid":250598,"tid":250610,"t":"coastal","e":0.05,"s":0.48},"arcs":[-2344,2344,2345,3477,3478]},{"type":"LineString","properties":{"gid":985546,"sid":250599,"tid":250609,"t":"coastal","e":0.05,"s":0.4},"arcs":[-2545,-2649,2532,3479,3480]},{"type":"LineString","properties":{"gid":985560,"sid":250602,"tid":250613,"t":"coastal","e":0.05,"s":0.96},"arcs":[-2696,3481,1830]},{"type":"LineString","properties":{"gid":985570,"sid":250602,"tid":250758,"t":"coastal","e":0.05,"s":0.72},"arcs":[-2696,3482,3483]},{"type":"LineString","properties":{"gid":988394,"sid":250603,"tid":250604,"t":"coastal","e":0.05,"s":0.25},"arcs":[-1940,3398,3399,3400]},{"type":"LineString","properties":{"gid":985609,"sid":250603,"tid":250608,"t":"coastal","e":0.05,"s":0.24},"arcs":[-1940,3398,3447,3484]},{"type":"LineString","properties":{"gid":980462,"sid":250603,"tid":250610,"t":"coastal","e":0.05,"s":0.25},"arcs":[-1940,3485,3486,3478]},{"type":"LineString","properties":{"gid":988392,"sid":250603,"tid":250613,"t":"coastal","e":0.05,"s":0.74},"arcs":[-1940,3398,3447,2348,2349,2350,2351,2352,1830]},{"type":"LineString","properties":{"gid":988395,"sid":250603,"tid":250790,"t":"coastal","e":0.05,"s":2.22},"arcs":[-1940,-1939,-1938,-1937,-1936,-1935,-1934,-1933,-1932,-1931,-1930,-1929,-1928,-1927,-1926,-1914,-1913,3487]},{"type":"LineString","properties":{"gid":988396,"sid":250603,"tid":250791,"t":"coastal","e":0.05,"s":0.4},"arcs":[-1940,-3468,-2346,3488]},{"type":"LineString","properties":{"gid":979519,"sid":250604,"tid":250606,"t":"coastal","e":0.05,"s":0.23},"arcs":[-3401,3489]},{"type":"LineString","properties":{"gid":979564,"sid":250604,"tid":250608,"t":"coastal","e":0.05,"s":0.2},"arcs":[-3401,3490,3484]},{"type":"LineString","properties":{"gid":985635,"sid":250604,"tid":250613,"t":"coastal","e":0.05,"s":0.64},"arcs":[-3401,3491,2349,2350,2351,2352,1830]},{"type":"LineString","properties":{"gid":988390,"sid":250604,"tid":250790,"t":"coastal","e":0.05,"s":2.36},"arcs":[-3401,-3400,-3399,-1939,-1938,-1937,-1936,-1935,-1934,-1933,-1932,-1931,-1930,-1929,-1928,-1927,-1926,-1914,-1913,3487]},{"type":"LineString","properties":{"gid":985645,"sid":250606,"tid":250608,"t":"coastal","e":0.05,"s":0.34},"arcs":[-3490,3490,3484]},{"type":"LineString","properties":{"gid":988336,"sid":250606,"tid":250613,"t":"coastal","e":0.05,"s":0.59},"arcs":[3492,3493,3494,3456,2352,1830]},{"type":"LineString","properties":{"gid":985657,"sid":250606,"tid":250614,"t":"coastal","e":0.05,"s":0.81},"arcs":[3492,3493,3495,2350,3496,2989]},{"type":"LineString","properties":{"gid":989198,"sid":250606,"tid":250775,"t":"coastal","e":0.05,"s":0.08},"arcs":[3497,3458]},{"type":"LineString","properties":{"gid":985681,"sid":250609,"tid":250612,"t":"coastal","e":0.05,"s":0.64},"arcs":[-3481,3498,2270]},{"type":"LineString","properties":{"gid":985722,"sid":250611,"tid":250617,"t":"coastal","e":0.05,"s":1.11},"arcs":[-2666,3499,2271]},{"type":"LineString","properties":{"gid":985771,"sid":250612,"tid":250619,"t":"coastal","e":0.05,"s":0.8},"arcs":[-2271,3500,2650]},{"type":"LineString","properties":{"gid":985861,"sid":250613,"tid":250614,"t":"coastal","e":0.05,"s":0.43},"arcs":[-1831,3501,2989]},{"type":"LineString","properties":{"gid":985868,"sid":250613,"tid":250631,"t":"coastal","e":0.05,"s":2.94},"arcs":[-1831,-1830,-2988,-2987,-1787,-2954,-2953,-2952,-2951,2985,2984,2983,2982,2981,2980,2979,2978,2977,2976,2975,2974,2973,2990,3502,3503,2765,3504,3505]},{"type":"LineString","properties":{"gid":985887,"sid":250613,"tid":250642,"t":"coastal","e":0.05,"s":3.59},"arcs":[-1831,-1830,-2988,-2987,-1787,-2954,-2953,-2952,-2951,2985,2984,2983,2982,2981,2980,2979,2978,2977,2976,2975,2974,2973,2990,3502,3503,2765,3504,3506,3507,2539]},{"type":"LineString","properties":{"gid":985906,"sid":250613,"tid":250755,"t":"coastal","e":0.05,"s":3.4},"arcs":[-1831,-2353,-2352,-2351,-2350,-2349,-3448,-3399,-1939,-1938,-1937,-3447,-3317,-3446,3508,3509,2903]},{"type":"LineString","properties":{"gid":979104,"sid":250613,"tid":250758,"t":"overseas","e":0.05,"s":1.55},"arcs":[-1831,-2353,-3457,-3456,-3455,3510,3511,3483]},{"type":"LineString","properties":{"gid":992045,"sid":250613,"tid":250758,"t":"slowover","e":0.05,"s":1.55},"arcs":[-1831,-2353,-3457,-3456,3512,3511,3483]},{"type":"LineString","properties":{"gid":988356,"sid":250613,"tid":250775,"t":"coastal","e":0.05,"s":0.68},"arcs":[-1831,-2353,-3457,-3495,-3494,3513,3458]},{"type":"LineString","properties":{"gid":989527,"sid":250613,"tid":250796,"t":"coastal","e":0.05,"s":2.63},"arcs":[-1831,-2353,-2352,-2351,-2350,-2349,-3448,-3399,-1939,-3339,3514,3515,3516,3517,3518,3519,3520,3521,3522,3211]},{"type":"LineString","properties":{"gid":989184,"sid":250613,"tid":250799,"t":"coastal","e":0.05,"s":0.6},"arcs":[-1831,-2353,-3457,-3456,3512,3523]},{"type":"LineString","properties":{"gid":979153,"sid":250617,"tid":250646,"t":"overseas","e":0.05,"s":5.56},"arcs":[-2272,2265,3524,3525,3526,3527,3528,3529,3530]},{"type":"LineString","properties":{"gid":998741,"sid":250617,"tid":250646,"t":"slowover","e":0.05,"s":7.05},"arcs":[-2272,2265,3524,3525,3526,3527,3528,3529,3530]},{"type":"LineString","properties":{"gid":986014,"sid":250620,"tid":250621,"t":"coastal","e":0.05,"s":1},"arcs":[-2488,3531,3532]},{"type":"LineString","properties":{"gid":986025,"sid":250620,"tid":250623,"t":"coastal","e":0.05,"s":1.23},"arcs":[-2488,3533,3534,3535]},{"type":"LineString","properties":{"gid":986053,"sid":250621,"tid":250623,"t":"coastal","e":0.05,"s":1.04},"arcs":[-3533,3536,3534,3535]},{"type":"LineString","properties":{"gid":986116,"sid":250622,"tid":250624,"t":"coastal","e":0.05,"s":0.72},"arcs":[-2763,-2762,3537,2766]},{"type":"LineString","properties":{"gid":986127,"sid":250622,"tid":250628,"t":"coastal","e":0.05,"s":0.61},"arcs":[-2763,3538,3539]},{"type":"LineString","properties":{"gid":986164,"sid":250623,"tid":250627,"t":"coastal","e":0.05,"s":0.96},"arcs":[-3536,3540,2489]},{"type":"LineString","properties":{"gid":986213,"sid":250624,"tid":250628,"t":"coastal","e":0.05,"s":0.51},"arcs":[-2767,3541,3539]},{"type":"LineString","properties":{"gid":986198,"sid":250624,"tid":250631,"t":"coastal","e":0.05,"s":0.85},"arcs":[-2767,3504,3505]},{"type":"LineString","properties":{"gid":986249,"sid":250625,"tid":250630,"t":"coastal","e":0.05,"s":0.56},"arcs":[-3027,3542,1982]},{"type":"LineString","properties":{"gid":986278,"sid":250626,"tid":250627,"t":"coastal","e":0.05,"s":1.96},"arcs":[-2993,3543,3544,2996,2489]},{"type":"LineString","properties":{"gid":986293,"sid":250626,"tid":250632,"t":"coastal","e":0.05,"s":0.59},"arcs":[-2993,2940,3545]},{"type":"LineString","properties":{"gid":979167,"sid":250626,"tid":250651,"t":"overseas","e":0.05,"s":4.09},"arcs":[-2993,2940,2941,3546,3547,3548,3549]},{"type":"LineString","properties":{"gid":995523,"sid":250626,"tid":250651,"t":"slowover","e":0.05,"s":5.31},"arcs":[-2993,2940,2941,3546,3547,3548,3549]},{"type":"LineString","properties":{"gid":986330,"sid":250627,"tid":250641,"t":"coastal","e":0.05,"s":1.58},"arcs":[-2490,-2997,3550,3551,3552]},{"type":"LineString","properties":{"gid":986364,"sid":250628,"tid":250634,"t":"coastal","e":0.05,"s":0.83},"arcs":[-3540,3553]},{"type":"LineString","properties":{"gid":986410,"sid":250630,"tid":250634,"t":"coastal","e":0.05,"s":0.66},"arcs":[-1983,-3039,3554,3040]},{"type":"LineString","properties":{"gid":986453,"sid":250631,"tid":250634,"t":"coastal","e":0.05,"s":0.57},"arcs":[-3506,3555]},{"type":"LineString","properties":{"gid":986463,"sid":250631,"tid":250642,"t":"coastal","e":0.05,"s":0.77},"arcs":[-3506,3506,3507,2539]},{"type":"LineString","properties":{"gid":986489,"sid":250632,"tid":250639,"t":"coastal","e":0.05,"s":0.7},"arcs":[3556,2943,2944]},{"type":"LineString","properties":{"gid":986559,"sid":250634,"tid":250642,"t":"coastal","e":0.05,"s":0.78},"arcs":[-3043,3557,3507,2539]},{"type":"LineString","properties":{"gid":986573,"sid":250636,"tid":250637,"t":"coastal","e":0.05,"s":0.19},"arcs":[3558,3559,2008]},{"type":"LineString","properties":{"gid":985276,"sid":250636,"tid":250658,"t":"coastal","e":0.05,"s":0.34},"arcs":[3558,3560,1900]},{"type":"LineString","properties":{"gid":979214,"sid":250639,"tid":250641,"t":"overseas","e":0.05,"s":2.18},"arcs":[-2945,3561,3562,3563,3564,3551,3552]},{"type":"LineString","properties":{"gid":993828,"sid":250639,"tid":250641,"t":"slowover","e":0.05,"s":2.81},"arcs":[-2945,3561,3562,3563,3564,3551,3552]},{"type":"LineString","properties":{"gid":986639,"sid":250639,"tid":250646,"t":"coastal","e":0.05,"s":2.36},"arcs":[-2945,3561,3562,3565,3529,3530]},{"type":"LineString","properties":{"gid":986658,"sid":250639,"tid":250649,"t":"coastal","e":0.05,"s":1.95},"arcs":[-2945,-3077,3566,3567,3568,2913]},{"type":"LineString","properties":{"gid":986641,"sid":250641,"tid":250646,"t":"coastal","e":0.05,"s":0.71},"arcs":[-3553,3569,3528,3529,3530]},{"type":"MultiLineString","properties":{"gid":987622,"sid":250643,"tid":250719,"t":"coastal","e":0.05,"s":0.51},"arcs":[[2548],[3570],[3571],[3572],[3573],[-1985]]},{"type":"LineString","properties":{"gid":986810,"sid":250646,"tid":250648,"t":"coastal","e":0.05,"s":0.58},"arcs":[-3531,3574,3575]},{"type":"LineString","properties":{"gid":986821,"sid":250646,"tid":250650,"t":"coastal","e":0.05,"s":2.03},"arcs":[-3531,3576]},{"type":"LineString","properties":{"gid":986845,"sid":250647,"tid":250649,"t":"coastal","e":0.05,"s":0.6},"arcs":[-3079,3577,3568,2913]},{"type":"LineString","properties":{"gid":986871,"sid":250648,"tid":250651,"t":"coastal","e":0.05,"s":2.46},"arcs":[-3576,3578,3548,3549]},{"type":"LineString","properties":{"gid":986957,"sid":250651,"tid":250652,"t":"coastal","e":0.05,"s":0.84},"arcs":[-3550,3579,2915]},{"type":"LineString","properties":{"gid":987165,"sid":250717,"tid":250755,"t":"coastal","e":0.05,"s":0.35},"arcs":[-2902,-3323,3580,2903]},{"type":"LineString","properties":{"gid":987178,"sid":250718,"tid":250725,"t":"coastal","e":0.05,"s":0.55},"arcs":[-3346,-3347,3581,3465]},{"type":"LineString","properties":{"gid":989200,"sid":250775,"tid":250799,"t":"coastal","e":0.05,"s":0.18},"arcs":[-3459,3582,3583,3523]},{"type":"LineString","properties":{"gid":988581,"sid":250776,"tid":250777,"t":"coastal","e":0.05,"s":0.25},"arcs":[-3408,3474,3584,3412,3413]},{"type":"LineString","properties":{"gid":988582,"sid":250776,"tid":250786,"t":"coastal","e":0.05,"s":0.13},"arcs":[-3477,-3476,-3475,3407]},{"type":"LineString","properties":{"gid":989153,"sid":250776,"tid":250788,"t":"coastal","e":0.05,"s":0.13},"arcs":[-3408,-3460,3585,3462]},{"type":"LineString","properties":{"gid":988586,"sid":250777,"tid":250801,"t":"coastal","e":0.05,"s":0.32},"arcs":[-3414,3586,3436]},{"type":"LineString","properties":{"gid":989119,"sid":250778,"tid":250800,"t":"coastal","e":0.05,"s":0.19},"arcs":[-3371,-3405,3587,3588,3434]},{"type":"LineString","properties":{"gid":989572,"sid":250779,"tid":250800,"t":"coastal","e":0.05,"s":0.42},"arcs":[-3340,3589,1916,1917,3590,3434]},{"type":"LineString","properties":{"gid":989550,"sid":250780,"tid":250783,"t":"coastal","e":0.05,"s":0.24},"arcs":[-3415,3591,-3315,3323]},{"type":"LineString","properties":{"gid":989580,"sid":250781,"tid":250798,"t":"coastal","e":0.05,"s":0.35},"arcs":[-3419,-3418,-3417,3432]},{"type":"LineString","properties":{"gid":988613,"sid":250782,"tid":250786,"t":"coastal","e":0.05,"s":0.39},"arcs":[-3421,3592,3593,3594,3476]},{"type":"LineString","properties":{"gid":989170,"sid":250782,"tid":250788,"t":"coastal","e":0.05,"s":0.36},"arcs":[-3421,3595,3596,3462]},{"type":"LineString","properties":{"gid":988591,"sid":250783,"tid":250792,"t":"coastal","e":0.05,"s":0.42},"arcs":[-3324,-3314,3597,3598,3392]},{"type":"LineString","properties":{"gid":989209,"sid":250783,"tid":250800,"t":"coastal","e":0.05,"s":0.52},"arcs":[-3324,-3314,-3313,-3312,3599,3434]},{"type":"LineString","properties":{"gid":988995,"sid":250785,"tid":250787,"t":"coastal","e":0.05,"s":0.51},"arcs":[-3423,3600,3426,3427,3428]},{"type":"LineString","properties":{"gid":988596,"sid":250785,"tid":250801,"t":"coastal","e":0.05,"s":0.19},"arcs":[-3423,3435,3436]},{"type":"LineString","properties":{"gid":989603,"sid":250787,"tid":250797,"t":"coastal","e":0.05,"s":0.15},"arcs":[-3429,3601]},{"type":"LineString","properties":{"gid":989068,"sid":250788,"tid":250789,"t":"coastal","e":0.05,"s":0.15},"arcs":[-3463,3602,3603]},{"type":"LineString","properties":{"gid":989067,"sid":250788,"tid":250795,"t":"coastal","e":0.05,"s":0.41},"arcs":[-3463,3604,-3473,-3472,-3471,3430]},{"type":"LineString","properties":{"gid":989001,"sid":250789,"tid":250790,"t":"coastal","e":0.05,"s":1.76},"arcs":[-3604,3605,3606,3607,3608,-1932,-1931,-1930,-1929,-1928,-1927,-1926,-1914,-1913,3487]},{"type":"LineString","properties":{"gid":989055,"sid":250790,"tid":250795,"t":"coastal","e":0.05,"s":1.45},"arcs":[-3488,1912,1913,1925,1926,1927,1928,1929,1930,1931,1932,1933,3609,3430]}]}},"arcs":[[[395,771],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0]],[[384,751],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[1,1]],[[398,744],[1,0]],[[399,744],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0]],[[395,756],[0,1]],[[400,719],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,0],[-2,0],[-1,-1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,1],[1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,2]],[[981,427],[1,0],[2,0],[1,0],[2,1],[2,0],[2,1],[2,1],[1,1],[1,1],[1,0],[2,1],[0,1],[1,0],[0,1]],[[325,691],[-1,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,1]],[[303,705],[0,-1]],[[303,704],[0,-1],[-1,0]],[[302,703],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[1,-1],[-1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0]],[[442,692],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[438,710],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1]],[[165,443],[0,1],[1,2],[1,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,2],[0,2],[1,1],[0,2],[0,2],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1]],[[128,472],[1,1],[2,1],[1,1],[2,3],[2,2],[2,2],[1,1],[1,0],[2,0],[5,0],[2,0],[2,0],[0,-1],[1,0],[2,-1],[0,-1],[1,0],[1,0],[1,0],[1,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[0,1],[1,0],[1,1]],[[179,506],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-2],[0,-2],[-1,-2],[0,-3],[0,-1],[-1,-2],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,-2]],[[689,509],[0,-1]],[[689,508],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1]],[[688,503],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[709,490],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,1]],[[469,550],[1,1]],[[470,551],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1]],[[490,545],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1]],[[869,221],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1]],[[470,551],[1,0],[0,1],[1,0],[0,1]],[[472,553],[1,0],[1,0],[0,1],[1,0]],[[464,561],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1]],[[486,556],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0]],[[464,561],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0]],[[452,581],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[258,830],[2,1],[3,2],[1,0],[1,1],[2,0],[1,1],[1,1],[2,0],[1,1],[1,0],[1,1],[2,0],[1,1],[1,0],[1,0],[1,1],[1,0],[2,0],[1,0],[2,2],[2,1],[1,1],[1,0],[2,1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[2,0],[2,0],[0,1],[2,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[2,0]],[[321,843],[-1,1]],[[320,844],[-1,1],[0,1]],[[319,846],[0,1],[0,1]],[[319,848],[-1,1]],[[309,871],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-2],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[-1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[-1,0],[0,-1]],[[435,712],[1,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-1,1]],[[409,722],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0]],[[858,288],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,1],[1,0],[0,1],[0,1]],[[864,311],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[452,581],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[431,576],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0]],[[443,579],[0,1],[0,-1]],[[156,371],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0]],[[233,400],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[-1,-2],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-2,0],[-1,0],[-1,0],[-2,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,-2],[-1,0],[-1,-1]],[[773,242],[-1,0],[-1,1]],[[771,243],[-1,0]],[[770,243],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[0,1],[-2,-1]],[[710,252],[1,-1],[1,-2],[1,-1],[1,-1],[1,0],[0,-1],[2,0],[1,-1],[1,0],[1,0],[2,-1],[1,0],[1,0],[1,-1],[1,0],[1,1],[1,0],[1,-1],[1,1],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,-1],[2,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[1,1],[1,1],[2,1],[1,2],[2,1],[1,2],[1,1],[1,0],[0,1]],[[761,247],[1,1]],[[691,514],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1]],[[432,691],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0]],[[419,681],[1,1],[1,1],[1,0],[0,1],[1,0],[1,1]],[[361,404],[-2,-1]],[[359,403],[-1,-2],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[341,376],[1,0]],[[342,376],[0,1],[1,1],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0]],[[453,604],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1]],[[436,633],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0]],[[842,467],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-2,3],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,2],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1]],[[795,501],[0,1],[1,0],[1,0],[1,1],[2,1],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[2,0],[0,1],[1,0],[0,1],[1,0],[1,0],[2,1],[0,1],[1,0],[1,1],[1,1],[1,1],[2,1],[1,0]],[[806,540],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,-1],[1,0],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-3]],[[814,516],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1]],[[758,529],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[3,0],[2,1],[1,0],[0,1],[1,0],[0,1],[1,-1],[1,-1],[1,0],[0,-1],[1,0]],[[851,512],[-1,2],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,0],[0,-1],[-1,0],[-2,-1]],[[875,379],[1,2],[1,1],[0,2],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,2],[0,1],[0,1]],[[878,398],[5,2]],[[883,412],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-2]],[[883,401],[0,-1]],[[886,402],[-1,0]],[[885,402],[-1,0]],[[884,402],[0,-1],[-1,0]],[[812,451],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0]],[[780,423],[0,1],[-2,0],[-1,0],[0,2],[-1,1],[0,2],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,2],[1,1],[0,1],[1,1],[1,1],[0,1],[1,0],[1,1],[1,1],[1,1],[1,0],[1,1],[0,1],[1,1],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0]],[[785,465],[0,-1],[1,0]],[[775,465],[1,0],[1,0],[0,1]],[[777,466],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1]],[[785,465],[1,0],[0,-1]],[[894,368],[-1,0]],[[893,368],[0,1]],[[893,369],[-1,1]],[[892,370],[-1,1],[-1,1]],[[890,372],[0,1],[-1,1],[0,1]],[[889,375],[-1,0],[0,1],[-1,0]],[[886,389],[0,-1]],[[886,388],[1,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[894,372],[-1,1],[-1,0]],[[892,373],[0,1],[-1,0],[-1,0],[0,1],[-1,0]],[[746,450],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1]],[[775,465],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1]],[[786,183],[0,2]],[[786,185],[1,2]],[[787,187],[0,1],[0,1],[0,1]],[[787,190],[1,1],[0,1],[0,1]],[[789,207],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[-1,-2],[0,-1],[0,-1]],[[699,528],[1,2],[1,1]],[[701,531],[1,0],[1,1],[1,3],[2,2],[1,2],[0,3],[-1,1],[0,1],[1,2]],[[724,546],[-1,0]],[[723,546],[-1,0],[0,1]],[[722,547],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,1]],[[657,545],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,1],[1,-1],[1,0],[3,0],[2,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1]],[[643,716],[0,-1],[1,-1],[1,-1],[1,-2],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[1,0],[0,-1],[1,-1]],[[638,699],[0,1],[1,0],[1,0],[0,1]],[[274,628],[0,-1],[1,0],[1,0],[1,0]],[[277,627],[1,0],[2,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0]],[[314,621],[-1,0],[-1,1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1]],[[288,617],[0,1],[0,1]],[[288,619],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1]],[[137,842],[0,1],[-2,1],[-1,2],[-1,2]],[[133,848],[-1,2]],[[132,850],[0,1]],[[132,851],[1,2],[1,2],[1,1],[0,1]],[[135,857],[2,3]],[[137,860],[1,2]],[[138,862],[0,1]],[[138,863],[-1,1]],[[137,864],[0,1],[-1,1]],[[136,866],[1,1]],[[137,867],[0,1],[1,2]],[[138,870],[0,1],[0,1]],[[138,872],[0,1]],[[138,873],[1,1],[0,1]],[[139,875],[2,2]],[[139,875],[-1,-2]],[[138,872],[0,-2]],[[138,870],[-1,-3]],[[136,866],[1,-2]],[[160,863],[-1,0],[-1,1],[-1,0]],[[157,864],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-3,0],[-1,0],[-1,1]],[[139,864],[0,-1]],[[139,863],[-1,0]],[[138,862],[-1,-1],[0,-1]],[[137,860],[-1,-3],[-1,0]],[[139,863],[0,-1],[0,-1]],[[176,617],[-1,2],[-1,0],[-2,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,2]],[[164,629],[0,1]],[[173,664],[-1,-2],[0,-2],[-1,-2],[-1,-2],[0,-1],[-1,-1],[-1,-1],[-1,-5],[-1,-5],[-1,-4],[-1,-4],[0,-4],[0,-1]],[[158,607],[0,2],[1,0],[0,1],[1,1],[1,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,2],[1,1],[0,1]],[[464,700],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,-1]],[[432,691],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,-1]],[[450,688],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,1]],[[535,752],[0,-1],[1,0],[2,0]],[[538,751],[1,0],[1,0],[0,1]],[[540,752],[1,0],[1,0],[1,0],[1,0]],[[544,752],[0,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1]],[[552,742],[0,1],[0,1],[0,1],[0,1]],[[493,250],[1,0]],[[494,250],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[2,-1],[1,-1],[1,-1],[1,-1],[2,0],[2,-1],[1,-1],[1,-1],[1,-1],[2,-2],[1,-1],[1,-1],[0,-2],[1,0],[1,0],[0,-2],[1,0],[0,-1],[1,0],[0,-1],[1,0],[2,-1]],[[547,222],[0,-2]],[[553,219],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1]],[[274,628],[0,1],[0,1]],[[274,630],[1,2],[1,2],[1,1],[0,1],[1,1],[0,1],[0,1],[-1,1],[0,1],[0,1]],[[279,666],[-1,-1]],[[278,665],[0,-1]],[[278,664],[0,-1],[-1,-1]],[[277,662],[0,-1],[0,-1],[0,-1]],[[277,659],[-1,-1],[0,-1]],[[276,657],[0,-1]],[[276,656],[0,-1],[-1,-1]],[[275,654],[0,-1]],[[275,653],[1,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1]],[[875,379],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[876,346],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0]],[[853,450],[0,1],[0,1],[1,1],[0,1],[1,1],[0,1]],[[855,456],[0,1],[0,3],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,-1],[-1,0]],[[288,619],[-1,1],[-1,0],[-1,-1],[-1,0],[-2,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[-2,1]],[[268,633],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0]],[[301,654],[-1,0]],[[300,654],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1]],[[274,630],[0,-2]],[[329,749],[0,1],[0,1]],[[329,751],[0,1]],[[329,752],[0,1]],[[329,753],[0,1],[0,1],[1,1]],[[330,756],[0,1]],[[330,757],[0,1],[0,1],[0,1]],[[330,760],[0,1]],[[330,761],[-1,2],[0,1],[0,1],[1,2],[1,2],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,2],[1,1]],[[347,800],[0,-1],[-1,-2],[0,-1],[-1,0],[-1,-2],[0,-1],[-1,-2],[-1,-2],[-1,-2],[-1,0],[-1,-1],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1]],[[304,794],[0,-1],[0,-1],[1,-1],[1,-2],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[2,0],[1,0],[1,-1],[1,1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0]],[[436,633],[-1,0]],[[435,633],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0]],[[414,646],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0]],[[426,640],[1,0]],[[427,640],[0,-1]],[[420,651],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,-2],[0,-1]],[[415,608],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1]],[[402,631],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1]],[[472,668],[2,-1],[2,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1]],[[487,649],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,2],[-2,1]],[[858,261],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0]],[[852,262],[-1,0]],[[850,257],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1]],[[858,271],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1]],[[453,604],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[433,589],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,1]],[[22,563],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,-1],[1,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[1,1],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,3],[0,2],[0,1],[-1,1],[0,1]],[[68,589],[0,1],[-1,1]],[[22,619],[0,-1]],[[22,618],[0,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-2],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-2],[1,0],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[0,-1],[1,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0]],[[80,590],[-1,0],[0,1],[-1,-1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0]],[[75,545],[0,1],[-1,1],[0,1],[0,2],[0,1],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,2],[1,1],[0,1],[0,1],[0,2],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,2],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,2],[-1,0],[0,1],[-1,0]],[[453,604],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,-1],[1,-1]],[[453,584],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,1]],[[472,571],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1]],[[639,456],[1,0],[0,-1],[1,0],[1,0],[0,-1]],[[510,550],[-1,0]],[[509,550],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0]],[[497,556],[0,1]],[[491,565],[0,-1],[-1,0]],[[490,564],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0]],[[494,558],[0,-1],[1,0],[1,0],[1,0]],[[318,711],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1]],[[347,678],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[320,725],[1,1],[1,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[1,1],[2,2],[1,0],[1,1],[0,1],[1,2],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1]],[[333,745],[0,1]],[[372,744],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,1],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,0],[-1,0],[-1,1]],[[329,749],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0]],[[262,798],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1]],[[228,817],[1,0],[2,-1],[2,-1],[2,-2],[2,-1],[2,-2],[2,-1],[2,-2],[1,-1],[2,-2],[1,-1],[1,-1]],[[320,672],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0]],[[361,674],[-1,0],[0,-1],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0]],[[350,674],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1]],[[418,756],[0,-1]],[[418,755],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1]],[[393,779],[0,-1],[0,-1],[0,-2],[1,-1],[0,-2],[1,-1]],[[267,728],[0,2],[0,2],[0,1],[-1,2],[0,1],[-1,2],[0,1],[-1,1],[-1,1],[-1,2],[-2,1],[-1,1],[-1,1],[0,1],[-2,1],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[0,2],[1,1],[1,1],[1,2],[0,2],[1,1],[1,0],[1,1],[1,1],[1,3],[2,3]],[[262,798],[2,-1]],[[264,797],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-2],[1,0],[-1,-1],[0,-1],[-1,-1],[-1,-2],[-1,-1],[0,-2],[0,-1],[0,-2],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[-1,-2],[0,-1]],[[66,484],[1,1],[0,1],[0,1],[1,1],[1,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[1,1]],[[106,511],[0,1],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1]],[[278,722],[-1,1],[-1,1],[-2,1],[-1,1],[-1,0],[-1,1],[-2,0],[-1,1],[-1,0]],[[251,725],[2,-2],[1,0],[1,-1],[1,-2],[0,-2],[0,-2],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,2],[1,1],[0,1],[0,1],[0,1],[1,1],[0,2],[1,1],[0,1],[1,0]],[[288,389],[-1,0],[0,1]],[[287,390],[0,1],[-1,0]],[[286,391],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,-1],[0,1],[-1,1],[-1,0],[0,1],[-1,0]],[[233,400],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[255,398],[0,1],[0,-1]],[[251,725],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-2,1],[-1,0],[-2,0],[-1,1],[-2,0],[-2,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[0,2]],[[191,716],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,0],[1,0],[2,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[3,2],[1,1],[2,2],[1,0],[3,3],[1,1],[1,2],[2,1],[1,1],[1,1],[1,1]],[[223,701],[0,1],[0,1],[1,1],[0,2],[0,1],[1,1],[0,1],[1,1],[0,1],[0,2],[0,1],[0,1],[2,2],[1,2],[1,1],[0,1],[1,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,2],[0,1]],[[316,713],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0]],[[262,798],[0,2],[0,6],[0,2],[0,1],[0,3],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,2],[1,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[0,1],[-1,1],[0,2]],[[238,830],[3,-2],[4,-1],[1,-1],[1,0],[1,1],[2,0],[2,1],[1,1],[2,0],[2,1],[1,0]],[[66,370],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[53,333],[1,2],[1,3],[2,3],[2,2],[0,1],[1,2],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,1],[0,1]],[[244,581],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,-2],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[-2,-2],[-2,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,-1]],[[208,550],[1,0],[1,0],[1,1],[1,0],[1,1],[1,1],[0,1],[1,1],[1,0],[0,1],[1,0],[1,1],[0,1],[1,1],[1,1],[1,0],[0,1],[1,0],[1,-1],[0,-1],[1,-1],[1,-1],[1,0]],[[531,535],[-1,0]],[[530,535],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0]],[[494,553],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0]],[[920,414],[0,1]],[[920,415],[1,1],[1,1],[0,1],[1,0],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1]],[[938,421],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1]],[[927,424],[-1,0]],[[933,429],[-1,0],[-1,0]],[[931,429],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1]],[[195,608],[-1,1],[-1,1],[-1,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,1],[-1,1],[-1,0],[-1,2],[-1,1],[0,1],[-1,1],[-1,0]],[[170,603],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[1,0]],[[467,548],[1,0],[0,1],[1,0],[0,1]],[[469,550],[0,1]],[[456,554],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0]],[[818,90],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0]],[[824,86],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[920,414],[-1,-2],[-1,-1],[-1,0],[-1,-1],[-1,0],[-2,-1],[-1,-1],[-1,0],[-3,-3],[-1,0],[-1,-1],[-2,-1],[0,-1],[-1,0],[-1,-1]],[[897,418],[1,0],[0,-1]],[[898,417],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1]],[[894,372],[0,2],[0,7],[0,2],[3,8],[2,4],[2,4],[1,2]],[[864,311],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1]],[[873,337],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0]],[[865,265],[-1,0]],[[864,265],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0]],[[167,566],[-1,0]],[[166,566],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0]],[[106,511],[1,1],[1,0],[1,0],[2,1],[1,1],[2,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[1,2],[0,1],[1,2],[0,1],[1,1],[1,1],[1,1],[1,1],[0,2],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,2],[1,1],[0,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,1],[1,1]],[[806,540],[-1,0],[-3,-1],[-3,0],[-1,0],[-1,-1],[-2,1],[-1,-1]],[[791,555],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[-1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[331,831],[0,1]],[[331,832],[-1,0],[0,1]],[[330,833],[-1,0],[-1,0],[0,1],[-1,0]],[[327,834],[-1,0],[0,1]],[[326,835],[-1,1]],[[325,836],[0,1]],[[325,837],[-1,1]],[[324,838],[-1,1]],[[323,839],[0,2]],[[323,841],[-1,1]],[[322,842],[-1,1]],[[414,646],[-1,1],[-2,1],[-1,0],[0,1],[-1,1],[-1,0],[-3,2],[-2,1]],[[402,631],[-1,0],[0,1],[-1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[-1,0],[0,1]],[[395,657],[1,0],[1,0],[0,-1],[1,-1],[1,0],[2,-1],[2,-1]],[[607,617],[1,0]],[[608,617],[1,0],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,1],[1,1],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,1],[1,0]],[[657,629],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,-1],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[-2,0],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[0,2],[1,1],[0,1]],[[612,652],[0,-2],[0,-1],[0,-1],[0,-1],[2,-1],[2,0],[2,-1],[1,0],[1,-1],[1,0],[1,0]],[[622,644],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1]],[[885,318],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[878,270],[0,1]],[[878,271],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[1,1]],[[882,291],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0]],[[22,618],[-1,-1],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1],[1,-1],[0,-1],[0,-3],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[1,-1],[1,-1],[1,-2]],[[20,518],[1,2],[0,1],[1,1],[-1,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,2],[0,2],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0]],[[384,751],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,-1],[1,0],[0,-1],[-1,0]],[[368,724],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,2],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1]],[[525,750],[1,0],[2,1],[1,0]],[[529,751],[1,0]],[[530,751],[1,0],[1,0],[2,1]],[[534,752],[1,0]],[[517,530],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1]],[[383,420],[-1,0]],[[382,420],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,-1],[-1,1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0]],[[348,410],[1,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0]],[[172,691],[-1,-1],[0,-1],[-2,-2],[-1,-1],[-1,-1],[1,-1],[2,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-2],[0,-2],[1,-1],[1,-2],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[-1,0]],[[196,644],[-1,1],[-1,0]],[[194,645],[-2,1],[-2,1]],[[190,647],[-1,1],[0,1],[-1,1]],[[188,650],[-1,1],[-2,2]],[[185,653],[-1,1]],[[184,654],[-2,0],[-1,1]],[[181,655],[-1,0]],[[180,655],[-1,-1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,1]],[[174,660],[0,2]],[[174,662],[-1,1]],[[173,663],[0,1]],[[478,641],[2,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[2,0]],[[492,638],[1,0]],[[503,623],[0,1],[1,1]],[[504,625],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[0,1]],[[487,649],[1,-1],[0,-1],[1,-1],[-1,-1],[-1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-1]],[[128,874],[0,-1],[-1,-1],[0,-1],[0,-1]],[[130,884],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1]],[[118,880],[-1,0]],[[118,880],[1,0],[1,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[2,-1],[1,-1],[1,0],[0,-1]],[[300,736],[-1,0],[-1,-1]],[[298,735],[-1,0],[-1,0]],[[296,735],[-1,0],[-1,-1]],[[294,734],[-2,0]],[[292,734],[-1,-1]],[[291,733],[-1,0],[0,-1]],[[290,732],[-1,-1]],[[289,731],[-1,-1]],[[288,730],[-1,-1],[-1,-2]],[[286,727],[-1,0],[-1,0]],[[284,727],[-1,0],[-1,0]],[[282,727],[-1,0],[-1,-1]],[[280,726],[-1,-1],[-1,-1],[0,-2]],[[277,691],[0,1]],[[277,692],[0,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,2],[1,1],[0,1],[0,2],[0,1],[1,2],[0,1],[0,2],[0,1],[-1,2],[0,1]],[[934,391],[-1,0]],[[933,391],[0,-1],[0,-1]],[[933,389],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[-1,0]],[[916,426],[1,0]],[[917,426],[0,-1]],[[917,425],[0,-1]],[[917,424],[1,-1]],[[918,423],[0,-1]],[[918,422],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,0]],[[919,416],[0,-1]],[[919,415],[0,-1],[1,0]],[[146,586],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-2],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[2,-1],[1,-1],[0,-1]],[[176,581],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1]],[[170,574],[0,-2],[-1,-1],[0,-1],[-1,-2],[0,-1]],[[168,567],[-1,-1]],[[152,601],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[1,-3],[0,-2],[1,-1],[2,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-2],[1,-2],[1,-1],[0,-1]],[[170,603],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-3],[0,-1]],[[168,567],[0,-1],[-1,0]],[[858,271],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[859,285],[0,1],[0,1],[-1,0],[0,1]],[[870,288],[0,-1]],[[870,287],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0]],[[886,465],[-1,0],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1]],[[855,456],[1,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[1,1],[1,1],[1,-1],[1,0]],[[221,757],[-1,-1]],[[220,756],[-1,0]],[[219,756],[-1,-1]],[[218,755],[-1,-1]],[[217,754],[-1,-1]],[[216,753],[-2,-2],[-1,-1]],[[213,750],[-1,-1]],[[212,749],[-1,0]],[[211,749],[-2,-2],[-1,-2]],[[208,745],[-1,0],[-2,-1],[-2,-2]],[[203,742],[-2,0],[-1,0],[-2,0],[-1,0],[1,-1]],[[174,743],[0,-1]],[[174,742],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[2,1],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[2,1],[1,0],[1,1]],[[120,593],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0]],[[183,867],[-2,0]],[[181,867],[-2,-1]],[[179,866],[-1,0]],[[178,866],[-3,-2]],[[175,864],[-2,-1],[-3,-1],[-2,0]],[[168,862],[-2,0]],[[166,862],[-3,0]],[[163,862],[-1,1]],[[162,863],[-1,0],[-1,0]],[[160,863],[2,0]],[[163,862],[0,-2],[-1,-2],[-1,-1],[-1,-1]],[[160,856],[0,-1],[0,-1]],[[160,854],[-1,-1]],[[160,854],[0,2]],[[163,862],[1,-2],[1,-1],[0,-2],[1,0],[0,-1]],[[163,862],[-1,-1],[-1,0],[-1,-1],[-2,-1],[-2,-1],[-2,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1]],[[150,854],[-1,0]],[[163,862],[0,1],[0,1],[0,1]],[[166,862],[1,0],[1,0]],[[175,864],[2,2],[1,0]],[[179,866],[1,0],[1,1]],[[300,736],[1,1],[1,1],[3,1],[2,2],[2,0],[2,1],[2,0],[1,1],[1,0],[1,0],[1,0],[1,1],[2,1],[2,1],[2,1],[2,1],[1,1],[2,0]],[[183,867],[3,1]],[[186,868],[1,0],[1,0],[1,1],[1,0]],[[190,869],[2,2]],[[192,871],[1,1],[0,1]],[[193,873],[1,1],[1,0]],[[195,874],[1,1]],[[196,875],[1,1],[1,1]],[[198,877],[1,1],[1,0],[1,0]],[[201,878],[1,0]],[[209,899],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[205,886],[0,-1]],[[205,885],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1]],[[203,881],[-1,-1]],[[202,880],[0,-1],[0,-1]],[[201,878],[0,1],[0,1]],[[486,556],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1]],[[379,329],[-2,0],[-2,1],[-2,-1],[-1,2],[-1,1],[-1,2],[-1,1],[-1,1],[-1,2],[-2,0],[-1,1],[-2,0],[-2,2],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,2]],[[350,363],[1,-1],[1,-2],[1,-2],[0,-1],[1,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[467,548],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0]],[[451,551],[1,-1]],[[452,550],[1,0],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1]],[[505,750],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,1]],[[500,766],[1,0],[1,-1],[0,-1],[1,0]],[[503,764],[1,-1],[2,0]],[[506,763],[1,0],[1,0]],[[508,763],[2,0]],[[510,763],[1,0]],[[525,750],[-1,0],[-2,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,1],[0,2],[-1,2]],[[516,761],[-1,1]],[[515,762],[0,1]],[[515,763],[-1,0],[-1,0],[0,1]],[[513,764],[-1,0]],[[512,764],[-1,-1]],[[390,389],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[0,1]],[[381,419],[1,0],[0,1]],[[361,404],[0,1],[1,0],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0]],[[445,563],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0]],[[456,554],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1]],[[92,451],[1,1],[1,1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0]],[[128,472],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,-1]],[[621,296],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,-1],[2,0],[1,0],[1,0],[1,0],[0,-1],[2,0],[1,0],[1,-1],[1,0],[1,1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-2],[2,0],[1,-1],[1,-1],[2,-1],[2,0],[1,-1],[1,0],[1,-1],[1,-1],[2,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0]],[[710,252],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[0,1]],[[464,700],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1]],[[482,709],[-1,-1],[-1,-1],[-1,-1]],[[251,725],[-1,0],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,2],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[1,0],[0,2],[0,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-2,1],[-2,1],[-2,0],[-3,1],[0,1]],[[221,756],[0,1]],[[229,785],[0,-3],[-1,-2],[0,-2],[-1,-1],[0,-1],[-1,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-2],[0,-1],[-1,-2],[0,-1],[-1,-1]],[[464,766],[1,0],[0,-1],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,1],[2,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,1],[1,0]],[[500,766],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[762,539],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0]],[[545,685],[1,-2],[1,-1],[1,-2],[0,-1],[0,-2],[-1,0]],[[563,667],[-1,1]],[[562,668],[-1,0]],[[561,668],[-1,0],[-1,1],[-1,2],[-1,1],[-1,0],[-2,1],[-1,0],[-1,1],[-2,1],[-1,0],[-1,1],[-1,1]],[[542,676],[2,1],[1,0],[2,0]],[[971,356],[-3,7],[-2,2],[-1,4]],[[993,404],[-2,-9],[-13,-12],[-8,-1],[-2,-5],[-1,-4]],[[967,373],[0,-1],[-2,-3]],[[934,391],[4,0],[3,-1]],[[941,390],[8,-3]],[[949,387],[4,-1]],[[953,386],[2,-7],[3,-1]],[[958,378],[2,-5]],[[960,373],[5,-4]],[[295,404],[0,-1],[1,1],[1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,1],[1,0],[1,0]],[[311,406],[0,-1],[1,0]],[[318,421],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1]],[[338,403],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[312,405],[0,-1],[0,1]],[[309,379],[1,0],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,2],[0,1],[-1,2],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,2]],[[174,743],[-1,0],[0,-1]],[[173,742],[-1,0]],[[172,742],[-1,0],[0,-1]],[[171,741],[-1,-1]],[[170,740],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1]],[[172,691],[0,2],[0,1],[0,2],[-1,1],[0,1],[-1,1],[0,1],[0,2],[-1,1],[-1,1],[-1,2],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-2,3],[-1,1],[0,2],[-1,3],[-1,3],[-2,3],[-1,3],[-1,1],[-1,3]],[[416,596],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1]],[[813,243],[-2,-2]],[[811,241],[1,0],[0,-2],[-2,-2],[0,-4],[-1,-8],[0,-1],[-1,-1],[0,-2],[1,-1],[1,-1],[0,-1],[1,-1],[0,1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-3]],[[304,794],[0,1]],[[304,795],[-1,2],[0,2]],[[303,799],[0,2]],[[303,801],[0,1],[1,1],[2,2],[0,1],[1,1]],[[307,807],[2,2],[2,2]],[[311,811],[1,0],[0,1]],[[312,812],[1,0],[0,1]],[[336,819],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1]],[[269,887],[0,1],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,1],[2,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,-1]],[[925,468],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,-1],[-1,1],[-1,1],[0,-1],[-1,0],[-1,-1],[-2,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,-1],[-1,0]],[[368,724],[-1,0],[-1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[1,0]],[[362,682],[-1,1],[0,1],[1,0]],[[362,684],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[0,1]],[[16,492],[0,2],[1,1],[0,1],[0,1],[1,1],[1,0],[1,1],[1,2],[1,0],[0,1],[0,1],[0,1],[0,2],[1,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,0]],[[712,589],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[0,-1],[1,0]],[[719,589],[0,1],[0,-1]],[[719,589],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-2],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[0,-1]],[[746,552],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1]],[[745,549],[0,-1],[-1,0],[0,-1]],[[724,546],[1,1],[0,1],[1,0],[2,1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0]],[[815,80],[0,2]],[[815,82],[2,1]],[[817,83],[0,1]],[[817,84],[0,2],[0,2]],[[817,88],[1,2]],[[831,114],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[817,100],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1]],[[816,94],[1,0],[0,-1],[1,-3]],[[846,94],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0]],[[799,104],[0,-2],[1,-1],[1,-2],[2,-2],[1,-1],[1,-1],[0,-1],[3,-2],[1,0],[3,1],[3,2],[1,-1]],[[828,126],[-1,-2],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-2],[-1,0],[-1,-1],[-1,-1],[0,-2],[0,-1],[0,-2],[1,-2],[0,-1],[0,-1],[-1,-1]],[[68,436],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[2,0],[1,1],[1,0],[2,0],[1,0],[1,1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,1],[1,1],[0,1],[1,1],[0,1],[0,1]],[[453,584],[0,-1],[-1,0],[-1,-1],[0,-1],[1,0]],[[163,941],[-2,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[152,956],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[152,962],[-1,1],[0,1],[0,1],[1,1],[-1,0]],[[151,966],[-1,1]],[[150,967],[-1,2],[0,1],[-1,0],[-1,1],[-1,0],[-1,1]],[[145,972],[1,0]],[[128,970],[1,1]],[[129,971],[1,0],[2,0]],[[132,971],[1,1]],[[133,972],[1,0],[1,0]],[[135,972],[1,0],[1,0],[1,0],[1,1]],[[139,973],[2,0]],[[141,973],[1,0],[1,0],[1,0]],[[144,973],[0,-1]],[[144,972],[2,0]],[[145,972],[-1,0]],[[150,967],[0,-1],[1,0]],[[385,629],[0,-2],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1]],[[425,573],[0,1]],[[425,574],[-1,0],[0,-1]],[[424,573],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,2],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,1],[-1,0]],[[404,589],[-1,0],[-1,0]],[[288,400],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0]],[[456,540],[0,1]],[[456,541],[-1,1]],[[457,541],[-1,0]],[[456,541],[0,1],[-1,0]],[[452,550],[0,-1]],[[452,549],[1,0],[0,-1],[0,-1],[1,0],[0,-1]],[[454,546],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[621,295],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0]],[[589,294],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[0,1],[2,1],[1,0],[0,1],[1,0],[1,0],[1,1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1]],[[606,297],[1,0]],[[604,300],[2,-3]],[[916,426],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1]],[[886,402],[1,0]],[[887,402],[0,-1]],[[887,401],[1,0],[1,0],[1,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[1,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1]],[[883,333],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,-1]],[[877,291],[1,1],[1,2],[1,2],[0,2],[0,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1]],[[893,322],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0]],[[635,465],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,-1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0]],[[618,482],[-1,0]],[[617,482],[0,-1],[-1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[1,-1],[0,-1]],[[617,469],[1,1]],[[618,470],[1,0]],[[606,467],[1,0],[0,1]],[[607,468],[1,0],[0,1],[1,0],[0,1],[0,1],[1,-1],[0,1],[1,0],[1,0],[0,1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,1],[0,1]],[[617,469],[1,0],[0,1]],[[357,650],[-1,1]],[[356,651],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[361,669],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0]],[[179,506],[1,1],[0,1],[1,2],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,2],[1,0],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[1,1],[0,1],[1,1],[1,0],[1,1]],[[194,540],[0,1]],[[208,550],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,-2],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,1],[-1,1]],[[714,617],[0,-1],[1,0]],[[715,616],[1,-2],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,-1]],[[684,579],[-1,1],[-1,1],[-1,2],[-1,1],[0,2],[0,1],[0,1],[0,1],[-1,1],[1,0],[2,1],[2,0],[1,1],[2,0],[1,1],[1,0],[5,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0]],[[139,926],[-1,-1]],[[138,925],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1]],[[137,920],[-1,0]],[[136,920],[-1,-1],[-1,0],[-1,0],[-1,-1],[-2,0]],[[130,918],[-2,0]],[[128,918],[0,-1]],[[128,917],[1,0],[0,-1]],[[129,916],[0,-1],[0,-1],[1,0],[1,-2],[1,-1],[1,-1]],[[133,910],[0,-1],[0,-2]],[[133,907],[0,-2],[0,-2],[0,-1]],[[133,907],[0,3]],[[129,916],[-1,1]],[[128,918],[1,0],[1,0]],[[298,382],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[305,378],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1]],[[612,652],[1,0]],[[613,652],[0,1]],[[613,653],[1,1],[0,1]],[[614,655],[0,1]],[[614,656],[1,1]],[[615,657],[1,0],[1,1],[0,1]],[[613,682],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1]],[[775,49],[0,1],[0,1],[0,1],[0,1]],[[775,53],[1,1],[1,1],[1,1],[1,1],[2,0],[1,0],[1,1],[1,2],[1,1],[0,1],[5,3],[1,1],[1,1],[1,1],[3,2],[2,1],[1,1],[2,1],[1,1],[5,1],[3,1],[1,1]],[[811,77],[1,1],[3,2]],[[814,69],[-1,2]],[[813,71],[-1,2]],[[812,73],[0,2],[1,2]],[[813,77],[1,0],[1,3]],[[561,579],[0,2],[0,1],[-1,0],[0,2],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[539,601],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[0,-1],[0,-2],[1,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1]],[[554,647],[0,-1]],[[554,646],[1,0],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1]],[[795,501],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[726,469],[0,1]],[[726,470],[1,0],[1,0],[1,1],[1,0],[0,1],[0,1],[1,-1],[1,0],[1,0],[1,1],[1,-1],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[1,1],[1,1],[1,1],[1,1],[1,1],[1,0],[0,1],[1,1],[1,0],[1,1],[1,1],[1,1],[0,1],[1,0],[1,0],[1,1],[1,1],[0,1],[1,0],[1,1],[0,1],[0,1],[1,1]],[[774,509],[0,1]],[[775,465],[1,1],[1,0]],[[777,466],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,0]],[[613,652],[1,1],[1,0],[1,0],[1,0],[0,-1],[1,0]],[[618,652],[0,1],[1,0],[1,1]],[[620,654],[0,1],[1,0],[1,1],[0,1]],[[628,686],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[0,-1]],[[159,853],[-1,0]],[[158,853],[-2,0]],[[156,853],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0]],[[149,854],[0,-1],[-1,-1],[-1,0],[0,-1]],[[147,851],[-1,-1]],[[146,850],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[144,846],[-2,-1]],[[142,845],[-2,-2],[-1,0],[-1,0],[-1,-1]],[[137,842],[0,-1],[0,-1]],[[142,845],[1,0],[1,1]],[[133,848],[0,1],[-1,1]],[[304,794],[-5,0],[-6,0],[-4,1],[-1,0],[-7,-1],[-8,1],[-1,1],[-1,0],[-2,0],[-4,1],[-1,0]],[[674,626],[1,0],[1,0]],[[676,626],[1,0],[1,1]],[[678,627],[1,0]],[[679,627],[1,0],[1,1]],[[681,628],[1,0],[0,1]],[[682,629],[1,0],[0,1]],[[683,630],[1,0],[1,1],[0,1],[1,1],[1,1],[1,1]],[[688,635],[0,1]],[[688,636],[1,0],[1,1]],[[690,637],[1,0],[2,1],[1,0],[1,0],[1,1]],[[696,639],[1,0],[1,0],[1,0],[1,0],[0,1]],[[700,640],[1,0]],[[701,640],[1,0],[0,1]],[[702,641],[1,0],[1,0],[1,1]],[[705,642],[2,0]],[[707,642],[1,0]],[[708,642],[1,-1],[1,0],[1,0]],[[724,659],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0]],[[564,570],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1]],[[561,556],[-1,0]],[[564,549],[-1,2],[-1,1],[0,1],[0,1],[-1,1],[0,1]],[[174,919],[0,2],[0,2],[-1,2],[0,1],[0,1]],[[173,927],[0,2],[0,1]],[[173,930],[0,2]],[[173,932],[0,1]],[[173,933],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[-1,1]],[[170,939],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0]],[[164,941],[-1,0]],[[139,926],[2,1],[1,0]],[[142,927],[2,1]],[[144,928],[1,1],[0,1],[0,1],[1,0],[1,1],[2,1],[1,0],[1,1],[1,0],[0,1]],[[152,935],[1,1]],[[153,936],[1,0]],[[154,936],[1,1]],[[155,937],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0]],[[160,939],[1,1],[1,0],[1,0],[0,1]],[[981,427],[-1,0]],[[980,427],[-1,0],[-1,1],[-1,0],[-2,-1],[-2,1],[-2,1],[-2,1],[-1,0],[-2,0],[-1,1],[-3,0],[0,-1],[-1,1],[-2,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[0,-2],[-1,0],[0,-1],[-1,0],[-2,1],[-2,-1],[-3,0]],[[928,441],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[3,-5],[0,-1],[0,-1]],[[916,426],[0,1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,-1],[1,0],[1,0]],[[635,465],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1]],[[631,453],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0]],[[637,455],[0,1],[1,0],[1,0]],[[68,438],[0,1]],[[68,439],[-1,1],[1,1],[0,2],[0,1],[1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,2],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,2],[-1,0],[0,1],[0,1],[0,1],[1,1],[-1,2],[0,1],[0,2],[0,2],[0,2],[0,2],[0,2],[0,1],[1,1]],[[75,545],[-1,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[17,492],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0]],[[66,484],[-1,0],[-1,0],[-1,0],[-1,-1]],[[894,368],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2]],[[883,333],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,1],[1,1],[-1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[1,1],[0,1]],[[864,265],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0]],[[858,271],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1]],[[500,683],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[0,1],[-1,0]],[[242,613],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[0,-1]],[[403,713],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[399,701],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[1,0],[0,1]],[[716,451],[-1,0],[-1,0],[-1,0],[0,1],[0,1]],[[713,453],[-1,0]],[[708,468],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1]],[[894,372],[0,-4]],[[430,599],[0,1],[1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1]],[[402,631],[0,1],[1,1],[0,2],[1,1],[0,1],[1,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[0,1],[0,1],[1,0],[1,1],[1,1],[1,0]],[[445,563],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0]],[[425,573],[1,0]],[[426,573],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1]],[[395,636],[1,-2],[1,0],[2,-2],[3,-1]],[[450,554],[-1,0],[-1,0],[-1,0]],[[440,555],[0,1]],[[440,556],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0]],[[356,651],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0]],[[351,650],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[342,637],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1]],[[340,634],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1]],[[332,631],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1]],[[324,628],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0]],[[878,271],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0]],[[870,287],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1]],[[871,282],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1]],[[68,436],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-2,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-2,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[0,1],[0,1]],[[128,970],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1]],[[130,965],[0,-1]],[[130,964],[1,0],[0,-1],[1,-1]],[[132,962],[1,0]],[[133,962],[0,-1],[0,-1],[1,0],[0,-2],[0,-1],[0,-1],[0,-1]],[[134,955],[0,-1]],[[134,954],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1]],[[134,948],[1,0]],[[139,926],[-1,2]],[[138,928],[0,2],[0,1],[-1,0],[0,1]],[[137,932],[-1,2]],[[136,934],[0,1],[-1,1],[0,1]],[[135,937],[0,1]],[[135,938],[1,1]],[[136,939],[0,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[136,939],[-1,0],[0,-1]],[[869,221],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1]],[[845,251],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0]],[[312,714],[-1,1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[278,684],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[1,0]],[[302,703],[0,1],[1,0]],[[378,640],[-1,0],[0,1],[-1,0],[0,1],[0,1]],[[376,643],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,0]],[[365,647],[-1,0],[0,1],[-1,0],[0,1],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0]],[[238,830],[-1,0],[-1,1],[-1,1],[-1,1],[-2,2],[-2,2],[-1,1],[-1,2],[-1,0],[-1,0],[-1,0],[-2,0],[-2,0],[-1,0],[-1,1],[-2,1],[-2,1]],[[228,817],[1,1],[-2,1],[-2,2],[0,1],[-2,2],[-1,4],[-1,2],[-1,2],[-1,3],[-1,2],[-1,3],[-1,1],[-1,2]],[[127,870],[0,-1],[1,1],[1,0],[0,-1]],[[129,869],[1,1]],[[130,870],[0,-1]],[[130,869],[1,0]],[[131,869],[0,1],[1,0],[1,1],[1,1],[1,1],[1,0],[0,3],[0,1],[-1,2]],[[135,879],[1,-1],[1,0],[1,-1],[1,0]],[[139,877],[2,0]],[[157,864],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1]],[[146,873],[-1,0]],[[145,873],[0,1],[-1,1],[-1,1],[-1,1],[-1,0]],[[141,877],[0,1],[0,-1]],[[130,884],[1,0],[1,0],[1,0]],[[133,884],[1,0],[1,0],[0,-1],[1,-2]],[[136,881],[1,-1]],[[137,880],[1,-1]],[[138,879],[1,0]],[[139,879],[2,-2]],[[141,877],[-1,0]],[[140,877],[-1,0]],[[140,877],[-1,2]],[[138,879],[0,1],[-1,0]],[[137,880],[0,1],[-1,0]],[[723,546],[0,1],[-1,0]],[[722,547],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,1],[-2,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0]],[[684,579],[0,-1],[0,-1],[0,-1],[1,-1],[1,-2],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0]],[[360,371],[1,0],[1,1],[1,0],[1,1],[1,1],[2,1],[2,1],[0,1],[1,0],[0,2],[1,0],[0,1],[1,1],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,0]],[[379,329],[0,1],[-1,2],[0,2],[0,2],[0,1],[0,1],[-1,1],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,1],[0,1],[1,0],[0,1],[1,0]],[[391,353],[0,1],[1,1],[0,1],[1,1],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,0]],[[396,363],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[1,1],[0,1],[1,0],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[0,1]],[[789,207],[-1,1],[0,2],[-1,1]],[[787,211],[0,1],[2,3]],[[811,241],[-2,-1],[-2,-3],[-2,-1],[-1,0],[-1,0],[-3,-3],[-1,-2],[-1,-3],[-1,0],[-1,-1],[1,0],[-2,-2],[-1,-2],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-2]],[[619,539],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[0,1],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-1,0]],[[609,563],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1]],[[564,549],[1,0],[1,-1],[1,0],[1,0],[0,1],[1,0],[1,-1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,1],[2,1],[0,1],[1,-1],[1,-1],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,-1]],[[781,171],[0,1]],[[781,172],[0,1],[0,1],[0,1],[0,1],[1,1]],[[782,177],[1,1]],[[783,178],[1,3]],[[784,181],[0,1]],[[784,182],[1,0]],[[785,182],[0,1]],[[785,183],[1,0]],[[780,190],[1,-2]],[[781,188],[1,-1]],[[782,187],[0,-2]],[[782,185],[0,-2]],[[789,125],[-2,1]],[[787,126],[-2,2]],[[785,128],[-1,2],[-2,7],[-1,2]],[[781,139],[0,1]],[[781,140],[0,2],[0,1]],[[781,171],[-1,-1]],[[780,170],[1,-1],[-1,-1],[0,-2],[0,-1],[0,-2],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-2],[1,-1],[1,-1],[0,-2],[1,-1],[-1,-3],[1,-1],[0,-2]],[[746,75],[2,-1],[2,1],[1,-1],[2,-3],[6,-5],[2,0],[2,0],[1,0],[2,0],[2,2],[2,1],[2,2],[2,1]],[[775,53],[0,2],[0,1],[0,3],[0,2],[-1,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[-1,3],[1,1],[-1,0]],[[775,237],[0,1],[0,1]],[[775,239],[0,1],[-1,1],[-1,1]],[[820,31],[0,-4],[-1,-2],[1,-2],[0,-4],[0,-4],[-1,-1],[-1,-1],[0,-3],[-1,-1],[0,-3],[0,-1],[-1,-2],[0,-1],[-1,-2]],[[318,421],[1,0],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,1],[0,1],[0,1],[1,1],[0,1],[1,0]],[[326,427],[1,0],[0,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0]],[[338,403],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1]],[[334,419],[0,1],[0,1]],[[348,410],[-1,0],[0,1],[-1,0],[-2,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0]],[[68,438],[0,-1],[0,-1]],[[736,650],[0,1],[1,1],[1,0],[1,1],[0,1],[1,0]],[[487,649],[0,-1],[-1,0],[0,-1],[0,-1],[0,1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1]],[[853,450],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-2,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-2,1],[0,1],[-1,0],[-1,0],[-1,2],[-2,1],[-1,1],[-1,1]],[[176,581],[1,-1],[2,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1]],[[208,550],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0]],[[700,527],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-1]],[[282,417],[0,1]],[[282,418],[-1,0],[-1,0],[1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,-1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0]],[[230,411],[-1,0],[-1,0],[0,1],[-1,0]],[[227,412],[0,1],[0,-1]],[[233,400],[0,1],[-1,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[179,388],[1,0],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,1],[0,1],[1,1],[0,1],[0,1],[1,0],[1,1],[0,1],[1,0],[1,1],[-1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0]],[[129,869],[1,0]],[[36,453],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,1],[2,0],[1,0],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,-2],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[2,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,0]],[[399,701],[1,0],[1,0],[1,-1],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,-1]],[[152,763],[1,-1],[1,0],[0,-1],[1,-1],[2,-1],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,0],[2,-1],[1,-1],[2,-3],[2,-2]],[[438,710],[-1,0],[-1,0],[0,1],[-1,0],[0,1]],[[455,765],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0]],[[418,756],[1,0]],[[419,756],[0,1],[1,0],[0,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0]],[[436,754],[0,-1],[0,1]],[[870,287],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0]],[[871,282],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1]],[[870,288],[1,1],[0,1],[1,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,-1],[1,0]],[[882,291],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1]],[[858,422],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0]],[[883,412],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,2],[-1,1],[-1,1],[0,-1],[-1,0]],[[743,74],[1,1],[2,0]],[[80,590],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0]],[[101,589],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1]],[[294,388],[0,-1],[0,-1],[-1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1]],[[309,379],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0]],[[77,595],[0,-1],[1,0],[1,0],[0,-1],[1,0]],[[80,590],[0,1],[0,1],[0,1]],[[886,389],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1]],[[491,565],[-1,-1]],[[490,564],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[628,535],[-1,1]],[[627,536],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-2],[-1,0],[0,-1]],[[617,482],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[1,0],[0,1],[-1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,1],[0,1]],[[455,765],[1,0],[2,1],[1,1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0]],[[439,299],[0,1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1]],[[493,250],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-2,0],[-1,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,2],[-1,1],[-1,1],[-1,1],[-1,2],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,2],[0,1],[-1,-1]],[[172,691],[0,1],[1,0],[1,1],[0,3],[1,1],[0,1],[2,1],[1,1],[0,1],[1,1],[2,2],[1,1],[1,1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,2],[0,1],[0,1],[1,1],[1,1]],[[159,896],[1,1],[0,1],[1,1],[1,2]],[[162,901],[1,1]],[[163,902],[0,2]],[[163,904],[0,1]],[[163,905],[1,2],[0,1],[0,1]],[[164,909],[1,2]],[[165,911],[1,1]],[[166,912],[2,1]],[[168,913],[2,3]],[[170,916],[3,2],[1,0],[0,1]],[[170,916],[-2,-2],[0,-1]],[[168,913],[-1,0],[-1,-1]],[[165,911],[-1,-1],[0,-1]],[[72,388],[0,-1],[0,-1],[0,-1],[0,-1]],[[72,384],[-1,0]],[[71,384],[0,-1],[0,-1]],[[71,382],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1]],[[205,804],[-1,0],[0,1],[-1,0],[-1,1],[-3,0]],[[199,806],[-1,0]],[[195,806],[1,0],[2,0]],[[210,860],[-1,0]],[[209,860],[-1,0],[-1,0],[-1,-1],[-1,0]],[[205,859],[-1,0]],[[204,859],[-2,1]],[[202,860],[-5,1]],[[197,861],[-1,1]],[[196,862],[-3,1]],[[193,863],[-1,0],[-1,1],[-1,0],[-2,1],[-2,0]],[[186,865],[-2,0]],[[184,865],[-1,0]],[[183,865],[0,1],[-1,0],[1,1]],[[177,874],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[1,-1]],[[181,865],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1]],[[183,867],[2,0],[0,1]],[[316,713],[-1,0],[0,1],[-1,0],[-1,0],[-1,0]],[[395,636],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0]],[[385,632],[0,1],[1,0],[1,0]],[[212,626],[0,-1]],[[212,625],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1]],[[127,970],[1,0]],[[128,970],[0,1],[1,0]],[[384,662],[-1,0]],[[383,662],[-1,-1],[-1,-1],[-1,0],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1]],[[385,632],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,2],[-1,1],[-1,0],[-1,1],[0,1]],[[228,817],[0,-2],[0,-1],[-1,-2],[0,-2],[0,-1],[-1,-2],[-1,-3],[0,-1],[1,0],[0,-1],[2,-1],[2,-2],[2,-2],[1,0],[1,-1],[-1,-1],[0,-1],[-1,-2],[-1,-1],[-1,-2]],[[230,789],[0,-1],[0,-1],[-1,-2]],[[205,804],[1,0],[1,-1],[2,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[2,-1],[1,0],[1,-1],[1,0],[1,-1],[2,-1]],[[855,274],[1,-1],[2,-2]],[[799,104],[0,1]],[[799,105],[-1,2],[-1,1]],[[797,108],[-2,3]],[[795,111],[-1,1]],[[794,112],[-1,1]],[[793,113],[0,3],[-1,2]],[[792,118],[-2,3],[-1,4]],[[722,451],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[858,422],[0,1],[0,1],[0,1],[0,1],[0,1]],[[853,450],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1]],[[723,614],[-1,0],[-1,0],[-2,0],[-1,1],[-1,0],[-1,1],[-1,0]],[[715,616],[-1,1]],[[97,475],[2,-1],[1,0],[0,1],[1,1],[1,1],[1,1],[1,0],[1,0],[1,1],[0,1],[1,0],[2,0],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0]],[[106,511],[1,0],[1,-1],[0,-1],[0,-1],[1,-2],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-2],[1,-1],[0,-2],[1,-1],[1,-1],[1,-1],[1,-1],[0,-2],[1,-1],[1,-1],[1,-1],[0,-2],[1,-3],[0,-1],[1,-3]],[[139,926],[0,-1],[-1,0]],[[139,926],[0,1]],[[139,927],[1,1],[0,1],[1,1],[0,1],[1,0],[1,1],[1,0],[1,2],[0,1],[1,1],[0,1],[1,1],[1,0],[0,1],[0,1]],[[139,927],[-1,1]],[[137,932],[-1,1],[0,1]],[[139,926],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1]],[[142,927],[1,1],[1,0]],[[152,935],[1,0],[0,1]],[[154,936],[1,0],[0,1]],[[396,682],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,1],[0,1],[-1,1],[-1,0],[-1,1],[0,-1],[-1,-2],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0]],[[362,684],[0,-1],[0,-1]],[[369,673],[-1,1],[0,1],[-1,1],[-1,1],[1,0],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[-1,1],[-1,1]],[[928,441],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[1,0],[0,1],[1,0],[1,1],[1,1],[1,0],[0,1],[1,0],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[-1,1],[1,0],[0,1],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1]],[[899,508],[1,0]],[[900,508],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[0,-1]],[[779,224],[1,0]],[[780,224],[1,-1],[0,-2],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[2,-2],[1,-1],[0,-1],[0,-2]],[[451,551],[0,1],[0,1],[-1,1]],[[456,554],[-1,0],[-1,0],[-1,-1],[0,1],[-1,0],[-1,0],[-1,0]],[[347,800],[0,1],[0,3]],[[347,804],[0,1]],[[347,805],[0,1]],[[347,806],[-1,1],[0,2]],[[346,809],[-1,1],[0,1],[0,2],[0,1],[0,2],[0,1]],[[345,817],[0,1]],[[345,818],[-1,1],[0,2]],[[336,819],[1,0],[3,1],[1,0],[1,0],[2,1]],[[491,711],[1,0]],[[492,711],[1,-1]],[[493,710],[1,0],[1,0]],[[495,710],[1,0],[1,-1],[0,-1],[1,0],[1,0],[1,0]],[[500,708],[1,0],[1,0],[1,0]],[[503,708],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[2,-2],[1,-1],[2,-1],[1,-1],[1,-1],[2,-1],[1,0]],[[520,696],[1,-1],[2,-1],[1,-1],[2,-1],[2,0],[1,0]],[[529,692],[0,-1]],[[529,691],[1,1]],[[530,692],[1,0]],[[531,692],[1,-1],[1,0]],[[533,691],[1,0]],[[534,691],[1,0],[1,0]],[[536,691],[0,-1],[1,0],[1,-1],[1,0]],[[539,689],[1,-1],[1,0]],[[541,688],[1,-1]],[[542,687],[1,-1]],[[543,686],[1,-1],[1,0]],[[530,680],[0,1],[1,-1],[2,0],[1,0],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[2,0],[0,1],[1,0],[1,0],[2,0],[1,1]],[[552,742],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,-1],[-1,-1]],[[545,686],[0,-1]],[[352,399],[1,0],[0,1],[1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[1,0]],[[359,403],[1,1],[1,0]],[[384,662],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0]],[[395,658],[0,-1]],[[396,682],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0]],[[635,599],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,1]],[[593,595],[0,1],[0,1],[0,3],[0,1],[0,1],[0,1],[1,2],[0,2],[0,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[1,0],[1,1],[0,-1],[1,0],[1,0],[0,1],[1,-1],[2,-1],[1,0],[1,1],[0,1],[0,1],[1,1]],[[597,636],[0,-1],[1,-2],[0,-1],[0,-1],[1,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1]],[[268,633],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[0,-1]],[[212,625],[1,-1],[1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0]],[[425,589],[0,1],[0,1],[1,0],[0,1],[0,1]],[[430,599],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0]],[[504,625],[1,0],[0,1]],[[505,626],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1]],[[530,611],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0]],[[779,224],[0,2],[0,2]],[[779,228],[0,1]],[[779,229],[0,1],[0,1],[0,1]],[[779,232],[-2,2]],[[777,234],[-1,1]],[[776,235],[0,1],[-1,1]],[[793,229],[-5,4],[-1,0],[-1,-1],[-1,0],[-2,1],[-1,1],[-7,3]],[[468,538],[-1,1],[-1,0],[-1,0],[-1,0]],[[464,539],[-1,0],[-1,0],[0,1]],[[462,540],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,-1]],[[457,541],[1,0],[1,0]],[[762,539],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[607,468],[0,1],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[-1,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[563,534],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0]],[[950,516],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,1],[0,-1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[-2,1]],[[900,508],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,-1],[1,0],[1,0],[1,-1]],[[993,404],[-2,1],[-6,9],[-4,13]],[[657,629],[1,-1]],[[658,628],[1,-1]],[[659,627],[1,0],[1,0],[1,1],[1,0],[1,-1],[1,0],[0,1],[0,1]],[[665,629],[1,0]],[[666,629],[1,-1],[0,-1],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,1]],[[393,779],[-2,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[-1,1],[0,1],[0,1],[-2,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0]],[[348,800],[-1,0]],[[469,536],[0,1],[-1,0],[0,1]],[[468,538],[0,1],[0,-1]],[[425,574],[0,1]],[[425,575],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0]],[[737,643],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-1]],[[726,616],[-1,-1],[0,-1],[-1,0],[-1,0]],[[425,297],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,1],[1,1],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0]],[[662,581],[0,1]],[[662,582],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1]],[[658,628],[-1,0]],[[638,699],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[1,0],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[657,630],[0,-1]],[[33,455],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[0,1]],[[7,476],[1,1]],[[16,492],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,-1],[0,-1],[0,-2],[0,-2]],[[10,483],[0,-1]],[[10,482],[-1,0],[0,-1],[0,-1]],[[9,480],[0,-1],[0,-1]],[[9,478],[-1,0],[0,-1]],[[820,31],[1,12]],[[820,58],[-1,-3],[1,-2],[0,-2],[0,-1],[0,-3],[1,-4]],[[425,573],[0,-1]],[[425,572],[-1,-1]],[[424,571],[-1,0]],[[423,571],[0,-1],[-1,0]],[[422,570],[-1,-1]],[[463,720],[-1,0]],[[462,720],[1,1],[1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,-1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[1,1],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,2],[0,2]],[[444,777],[1,0],[1,0]],[[446,777],[0,-1]],[[446,776],[1,0]],[[447,776],[1,0]],[[448,776],[0,-1],[1,0]],[[449,775],[1,-1]],[[450,774],[1,-1]],[[451,773],[1,-1]],[[452,772],[1,-1],[1,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[934,391],[0,-1],[-1,-1]],[[933,389],[0,-2],[0,-1],[0,-2],[-1,-1],[1,-2],[0,-1],[0,-1],[0,-1],[1,-2],[1,0],[0,-2],[1,-2],[0,-1],[0,-2],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-2,-1],[0,-2],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1]],[[893,322],[1,0],[1,0],[1,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,1],[1,0],[1,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,2],[1,1],[0,1]],[[923,350],[1,0]],[[894,372],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,0]],[[677,187],[0,1],[1,1],[2,0]],[[680,189],[1,0],[1,0],[3,4],[1,1],[1,0],[3,-1],[2,0],[2,3],[2,3],[1,4],[1,2],[0,2],[0,2],[0,3],[0,1],[0,2],[0,2],[1,2],[0,1],[0,1],[0,2],[1,4],[1,4],[0,2],[0,2],[1,2],[0,1],[-1,1],[1,2],[0,1],[5,5],[1,2],[1,2],[1,1]],[[371,670],[1,-1],[1,0],[0,-1],[2,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1]],[[404,737],[-1,0],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0]],[[396,682],[1,0],[1,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0]],[[419,681],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1]],[[36,453],[-1,0],[0,1],[-1,0],[-1,1]],[[627,536],[-1,1],[-1,1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0]],[[793,229],[1,0]],[[794,229],[1,2],[1,0]],[[796,231],[1,0],[0,1]],[[797,232],[1,1]],[[798,233],[1,1]],[[799,234],[1,2]],[[800,236],[1,0],[0,1]],[[801,237],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0]],[[804,240],[1,1]],[[805,241],[1,0],[0,1]],[[806,242],[1,0],[3,1]],[[810,243],[1,0]],[[811,243],[2,0]],[[845,251],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,1]],[[316,713],[1,0],[0,-1],[1,0],[0,-1]],[[288,400],[0,-1],[-1,-2],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-2]],[[286,391],[1,-1]],[[294,388],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0]],[[726,470],[-1,0],[-1,1]],[[724,471],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,2],[-1,1],[-1,0],[-1,0],[-1,1],[-1,-1],[-2,0],[-1,0],[-1,-1],[-1,0]],[[708,468],[1,0]],[[709,468],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1]],[[878,270],[0,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[882,291],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[645,541],[0,1],[0,1],[0,1],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,-1]],[[657,545],[-1,0],[0,-1],[-1,0],[0,1],[-1,1],[0,1],[-1,0]],[[635,599],[0,-1],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0]],[[684,579],[-2,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-2,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1]],[[385,632],[0,-1],[0,-1],[0,-1]],[[361,669],[1,1],[1,0],[0,1],[1,0],[0,-1],[1,1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0]],[[370,670],[1,0]],[[369,673],[0,-1]],[[369,672],[0,-1],[1,0]],[[370,671],[0,-1]],[[505,736],[0,-1],[0,-1],[1,-1],[0,-2],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,0]],[[496,711],[-1,0],[-1,0]],[[494,711],[-1,0],[-1,0]],[[482,709],[0,1],[2,1],[1,0],[1,0],[1,1],[1,0],[1,0]],[[489,712],[1,0],[1,-1]],[[450,688],[1,0]],[[451,688],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[-1,-1],[1,-1],[1,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[158,607],[0,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,0]],[[120,593],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[2,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[1,0],[1,-1]],[[404,737],[1,1]],[[405,738],[1,0],[1,0]],[[407,738],[1,0],[1,1],[1,0],[0,1]],[[410,740],[1,0],[0,1]],[[411,741],[1,0],[1,1]],[[413,742],[1,0],[0,1]],[[414,743],[1,0],[1,0],[0,1],[1,0],[1,1],[1,1],[1,1],[0,1]],[[420,748],[-1,0],[0,1],[0,1]],[[419,750],[0,1]],[[419,751],[-1,0],[0,1],[0,2],[0,1]],[[400,719],[0,-2],[1,-1],[0,-1],[1,-1],[1,-1]],[[409,722],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0]],[[643,716],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[1,1],[-1,1],[-1,0],[0,1],[0,1],[0,1]],[[425,573],[-1,0]],[[424,573],[0,-1]],[[424,572],[-1,0],[0,-1]],[[423,571],[-1,0]],[[422,571],[-1,-1]],[[572,276],[1,1],[0,1],[1,1],[0,1],[1,1],[1,2],[1,0],[0,1],[1,0],[1,1],[1,1],[1,1],[0,1],[1,1],[1,1],[1,0],[1,1],[1,1],[1,0],[1,1],[1,1]],[[417,670],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1]],[[418,659],[0,-1]],[[418,658],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1]],[[419,653],[0,-1],[1,0]],[[420,652],[0,-1]],[[425,574],[1,0]],[[426,574],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[1,1],[1,0],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1]],[[393,779],[1,1]],[[394,780],[2,0],[1,1],[1,0],[0,1]],[[398,782],[1,0]],[[399,782],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[409,784],[1,1],[1,0]],[[411,785],[0,1],[1,0]],[[412,786],[1,0],[1,1]],[[414,787],[1,0]],[[415,787],[1,0],[1,1]],[[417,788],[0,1]],[[417,789],[1,0],[0,1]],[[444,777],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0]],[[495,475],[-1,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1]],[[431,576],[0,-1],[0,1]],[[431,576],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0]],[[416,596],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,-1]],[[436,560],[-1,1],[-1,1],[-2,3],[-3,3],[-1,2],[-1,0],[-1,2],[0,1]],[[156,371],[-1,0],[-1,-1],[-1,0],[-1,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,1],[0,-1],[-1,0],[0,1],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,1],[0,1],[0,1]],[[282,417],[0,-1]],[[282,416],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,0]],[[296,419],[-1,0],[1,0]],[[296,419],[0,-1],[0,1]],[[296,419],[1,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,1],[1,0],[0,1],[0,-1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,-1],[0,-1],[1,0]],[[379,329],[1,0],[0,-1],[2,-2],[1,-1],[1,-2],[1,-1],[2,-2],[2,-1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,-1],[0,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,0],[2,-2],[1,0],[2,-2],[1,-1],[1,0],[1,0],[1,0]],[[278,414],[0,1],[1,0],[1,1],[1,0],[1,0]],[[495,475],[0,1],[1,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[-1,0],[-1,0]],[[518,672],[-1,0]],[[517,672],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[-1,0],[0,-1],[-1,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1]],[[462,720],[0,-1]],[[462,719],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0]],[[438,710],[1,1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,1],[0,1]],[[709,468],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,1]],[[613,682],[0,1],[2,0],[2,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0]],[[628,686],[-1,-1],[-1,0],[-1,-1],[-1,0]],[[951,546],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[505,750],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-3],[0,-2],[1,-2],[0,-1],[0,-1],[0,-1]],[[552,742],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[-1,-1],[-1,-2],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-2,0],[-3,1],[-3,0],[-3,1],[-5,1]],[[525,750],[-2,-2],[-1,-2],[-1,-1],[-1,-1],[-2,-1],[-1,-2],[-4,-3],[-2,-1],[-2,-1],[-2,0],[-2,0]],[[500,766],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[1,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1]],[[563,577],[-1,1],[0,1],[-1,0]],[[891,512],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,1],[1,0],[0,-1],[1,0],[0,1],[1,0]],[[301,654],[0,1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0]],[[451,688],[1,0],[0,-1],[1,0],[1,-1],[1,-1],[2,-1],[1,0],[0,-1],[1,0],[1,-1],[0,-1],[1,-1],[0,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[0,-1],[1,-1],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1]],[[609,563],[0,1],[-1,0],[0,1],[1,2],[0,1],[0,1],[1,0],[1,-1],[1,0],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[1,1],[0,1],[1,1],[1,0],[1,1],[2,0],[2,1],[1,1],[0,1],[1,0],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[0,1],[1,1]],[[500,683],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[0,-1],[2,0],[1,0],[1,0],[1,-1],[1,0],[1,0]],[[542,676],[-2,0],[-1,-1],[-2,0],[-1,-1],[-3,0],[0,-1],[-1,0]],[[532,673],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1]],[[525,672],[-1,-1]],[[524,671],[-1,0]],[[523,671],[-1,0]],[[522,671],[-1,1]],[[521,672],[-1,0],[-1,0]],[[519,672],[-1,0]],[[338,403],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,-1],[1,0],[1,0],[1,-1],[1,0],[2,0],[0,-1],[1,0]],[[780,423],[1,0],[2,0],[1,0],[1,0],[1,0],[1,-1],[3,-2],[0,-1],[1,-1]],[[179,388],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1]],[[563,667],[2,0],[1,0],[1,0],[2,0],[1,0],[2,0],[1,-1],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0]],[[579,663],[1,0]],[[594,660],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,0],[-1,0],[0,1],[0,1]],[[554,647],[-1,1],[0,1],[0,1],[0,1],[0,1],[0,2],[1,0],[1,0],[1,1],[0,1],[1,2],[1,1],[1,2],[1,2],[1,1],[1,2],[1,1]],[[66,484],[2,0],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[1,1],[1,0],[1,0],[1,-1],[1,-1],[1,-1],[1,0],[1,0],[1,0],[1,0],[2,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0]],[[530,680],[-3,0],[-2,0],[-3,1],[-5,0],[-1,0],[-1,1],[-2,0],[-1,0],[-2,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0]],[[502,682],[-1,0]],[[501,682],[-1,1]],[[278,414],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0]],[[342,376],[2,-1],[2,0],[2,0],[1,0],[1,-1],[1,0],[1,-1],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[1,1],[1,0],[2,1],[1,0]],[[594,660],[1,0],[0,1],[1,0],[0,1]],[[596,662],[1,0]],[[597,662],[0,-1]],[[597,661],[0,-1],[1,0],[1,0],[0,1]],[[599,661],[1,0]],[[600,661],[1,-1]],[[601,660],[0,-1]],[[601,659],[0,-1],[1,0]],[[602,658],[2,0],[1,0]],[[605,658],[1,-1]],[[606,657],[1,0],[1,0]],[[608,657],[0,-1],[1,0]],[[609,656],[0,-1]],[[609,655],[0,-1],[1,0]],[[610,654],[0,-1]],[[610,653],[1,-1]],[[611,652],[1,0]],[[891,512],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,1],[-2,2],[-1,0],[-1,0],[-1,0],[-2,1],[-1,0],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0]],[[490,545],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0],[0,-1],[1,0],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[0,-1]],[[516,531],[1,0],[0,-1]],[[436,560],[2,-3],[1,-1],[1,0]],[[341,376],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-2,0],[-2,0],[-2,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,1],[-2,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1]],[[341,376],[1,-1],[0,-1],[1,-1],[0,-1],[0,-2],[0,-1],[1,-1],[1,-1],[1,-1],[1,0],[0,-1],[1,-1],[1,0],[1,-1]],[[645,541],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,1],[-1,0],[-1,0],[0,1],[-1,1],[-1,0],[0,-1],[0,-1],[0,-1]],[[596,662],[0,1]],[[596,663],[0,1],[-1,1],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,0],[0,1],[0,1],[0,1],[1,0]],[[347,678],[1,-1],[1,-1],[1,-1],[0,-1]],[[361,669],[0,1],[0,1],[-1,0],[0,1],[1,0],[0,1],[0,1]],[[369,673],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0]],[[77,336],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,-1],[-1,0],[-1,-1],[0,2],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,2],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,2],[-1,2],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[1,0],[0,1],[0,1],[0,1],[-1,1],[1,0],[0,1],[-1,0],[0,1]],[[71,382],[1,1],[0,1]],[[196,644],[1,0]],[[197,644],[0,-1]],[[197,643],[0,-1],[0,-1],[0,-1],[0,-2],[-1,-1],[0,-1],[1,0],[1,-1],[1,-1],[1,-1],[1,-1],[2,0],[1,-1],[2,-1],[2,-1],[1,-1],[1,-1],[2,-1]],[[736,650],[-1,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,-1],[0,-1]],[[746,450],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[396,682],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[1,1],[0,1],[0,1],[0,1],[0,1]],[[724,659],[1,0]],[[725,659],[1,0],[0,1],[1,0],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,2]],[[300,654],[-1,0],[-1,0],[-1,0],[-1,0],[-1,-1],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[278,684],[0,-1],[-1,0],[0,-1]],[[277,682],[0,-1],[0,-1],[0,-1],[0,-1]],[[277,678],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[277,672],[1,-1],[0,-1]],[[278,670],[1,-1],[0,-1],[0,-1],[0,-1]],[[409,722],[-1,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[1,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1]],[[177,874],[0,1],[-1,1]],[[176,876],[-2,2]],[[174,878],[-1,2]],[[173,880],[-1,0],[-1,1],[-2,1]],[[169,882],[-1,1]],[[168,883],[-1,1]],[[167,884],[-1,1]],[[166,885],[-1,0]],[[165,885],[0,1],[-1,1],[-1,2],[-1,3],[-2,3],[0,1],[-1,0]],[[133,902],[1,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,0],[1,0]],[[142,902],[1,0],[1,0],[1,0],[2,-1],[1,0],[1,0]],[[149,901],[1,0],[1,-1]],[[151,900],[2,-1]],[[153,899],[1,0],[1,0],[0,-1]],[[155,898],[1,0],[1,-1],[2,-1]],[[159,853],[-1,-1],[0,-2]],[[159,853],[1,0],[1,0],[1,1]],[[177,874],[0,-1],[-1,-1]],[[176,876],[0,1],[-2,1]],[[174,878],[-1,1],[0,1]],[[169,882],[0,1],[-1,0]],[[167,884],[-1,0],[0,1]],[[177,874],[1,0],[1,1],[0,1],[1,0],[1,0],[1,1],[1,0],[1,1]],[[277,691],[0,-1]],[[277,690],[0,-1],[0,-1]],[[277,688],[0,-1]],[[277,687],[-1,-1]],[[276,686],[1,0],[0,-1],[1,0],[0,-1]],[[597,636],[0,1],[0,1],[0,1],[-1,0],[0,2],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,1]],[[133,902],[0,-1],[-1,0]],[[132,901],[0,-1],[-1,0]],[[131,900],[0,-1],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[131,900],[1,1]],[[132,901],[1,1]],[[133,902],[-1,0],[-1,0],[0,1],[-2,0],[-2,-1],[-1,-1],[-1,-1],[-1,-1],[-2,0],[-1,-1],[-1,-1],[-1,0],[-1,0]],[[101,589],[1,0],[1,0],[1,1],[1,0],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,0]],[[482,709],[-1,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,1],[0,1],[-1,1],[-1,0]],[[474,716],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0]],[[465,717],[-1,1],[-1,1]],[[463,719],[-1,0]],[[244,692],[1,0],[1,-1],[1,0],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0],[1,1],[0,-1],[1,1],[1,0],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[0,-1],[0,1],[1,0],[1,0],[1,0],[1,1],[0,-1],[1,0],[1,0],[1,0],[1,0],[1,0]],[[754,429],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1]],[[152,763],[-2,1],[-2,0],[-3,1],[-2,0],[-4,0],[-1,0],[-1,0],[-5,0],[-1,1],[-3,0],[-1,0],[-4,1],[-1,0],[-4,1],[-1,0],[-2,1]],[[208,694],[0,-1],[-1,0],[-1,-1],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[0,-2],[-1,-2],[0,-2],[-1,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-2],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[1,-2],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0]],[[751,405],[0,1],[0,1],[0,1],[1,0],[-1,1],[1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[-1,0],[0,1]],[[777,421],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0]],[[777,421],[1,1],[1,0],[1,1]],[[763,401],[1,0],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,1],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,0]],[[774,409],[0,1]],[[777,421],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0],[0,-1]],[[750,402],[1,0],[0,1],[1,0]],[[752,403],[0,-1],[1,0],[0,-1],[0,1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,1],[1,0],[0,-1],[1,0]],[[751,405],[1,0],[0,-1],[0,-1]],[[891,512],[-1,0],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,2],[0,2],[0,1],[0,1],[1,0],[0,2],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[-2,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[1,1],[0,1],[0,1]],[[886,556],[0,-1]],[[886,555],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[1,-2],[1,0],[0,-1],[1,0],[0,-1],[0,-1]],[[223,701],[1,-1],[1,-1],[1,-1],[1,-1],[2,-2],[2,-1],[2,-1],[1,-1],[3,0],[1,-1],[2,1],[3,0],[1,0]],[[223,701],[-1,-1],[-3,-2],[-2,-1],[-2,-1],[-2,-1],[-1,0],[-1,0],[-1,0],[-1,-1],[-1,0]],[[106,620],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,-1],[-1,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1]],[[101,589],[-1,1],[1,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,1],[0,1],[0,1],[0,1],[1,1],[1,1],[0,1],[1,0],[0,1]],[[336,819],[0,1],[-1,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[0,1]],[[563,577],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[154,971],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[1,0]],[[154,971],[-1,1]],[[154,971],[1,0],[0,1]],[[155,972],[1,0],[1,0],[0,1]],[[563,577],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[0,1],[1,0],[1,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,1],[1,0],[2,1],[0,1],[1,0],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[1,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[0,1]],[[419,681],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1]],[[539,601],[-3,-7]],[[572,276],[0,-1],[0,-1],[-1,-1],[0,-2],[0,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-2],[1,-2],[0,-1],[1,-2],[0,-2],[1,-2],[1,-3],[0,-2],[0,-2],[-1,-2],[0,-2],[-1,-2],[-1,-1],[0,-2],[-1,-1],[-1,-1],[-1,-2],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,-2],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,-1],[-2,-1],[-1,0],[-1,-1],[-1,0],[-1,0]],[[554,219],[-1,0]],[[562,540],[0,-2],[0,-1],[-1,-1],[0,-1],[1,0],[1,-1]],[[564,549],[0,-2],[1,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[-1,-1],[0,-1],[0,-1]],[[631,453],[-1,0],[-1,0],[-1,0]],[[628,453],[-1,0],[0,-1],[-1,0]],[[876,346],[0,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[814,69],[0,-2],[3,-4],[2,-1],[1,-4]],[[741,161],[2,2],[2,1],[2,2],[2,1],[22,26],[3,-2],[6,-1]],[[724,121],[-5,-18],[10,-14],[14,-15]],[[741,161],[-1,1],[-3,2],[-2,1],[-2,1],[-2,0],[-2,-1],[-2,-1],[-3,2],[-3,2],[-1,3],[-2,0],[-12,1],[-3,-1],[-2,1],[-1,1],[-2,0],[-2,0],[-1,1],[-1,0],[0,1],[0,3],[-1,1],[-2,3],[-3,2],[-3,1],[-2,-1],[-2,2],[-1,3]],[[724,121],[4,11],[9,19],[4,10]],[[17,492],[-1,0]],[[530,611],[1,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,1],[-1,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0],[1,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,0],[0,-1],[1,0],[1,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[1,1],[1,1],[0,1],[0,1],[0,1],[1,0],[0,1],[1,0],[1,1],[0,1],[0,1],[1,0],[0,1],[0,1],[1,0]],[[539,601],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,1],[0,1],[0,1],[-1,0],[-1,1]],[[638,699],[-1,0],[0,-1],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[542,676],[-2,1],[-3,1],[-5,1],[-2,1]],[[886,402],[0,-1]],[[886,401],[0,-1],[0,-1],[1,-1]],[[887,398],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1]],[[887,392],[-1,-1]],[[886,391],[0,-1],[0,-1]],[[736,650],[-1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,1],[-1,1],[-1,0],[-1,1]],[[205,859],[-1,-1],[1,-2],[-1,-2]],[[204,859],[-1,0],[-1,1]],[[202,860],[-3,1],[-2,0]],[[196,862],[-2,1]],[[205,859],[-2,-2]],[[145,873],[0,-1],[-1,0],[-2,-4],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,0]],[[146,873],[1,0],[1,0],[1,0],[1,1],[2,1],[2,1],[3,1],[1,1],[1,0],[1,0],[2,0]],[[162,901],[2,-1],[1,0],[0,-1],[1,0],[1,0],[1,-1],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,-1]],[[162,901],[-1,0],[-1,-1],[-1,0],[-1,-1],[-2,0],[-1,-1]],[[163,902],[0,1],[0,1]],[[101,877],[0,1],[1,0],[1,0],[2,0],[2,1],[1,0],[1,1]],[[116,842],[-1,-1],[0,-1],[1,0],[-1,-1],[-1,-1],[0,-1],[-1,-1]],[[116,842],[2,1],[1,0],[0,1],[2,0],[2,1],[1,-1],[2,0]],[[169,846],[0,-2]],[[169,846],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1]],[[144,846],[1,-1],[0,-2],[0,-1]],[[144,846],[0,2],[-1,1],[0,1],[0,1],[-1,2]],[[146,850],[0,1],[1,0]],[[137,842],[-1,0],[-1,1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,1],[-1,0],[-2,0],[-1,1]],[[132,851],[-3,-3],[-1,-1],[-1,-1],[0,-1],[-1,-1]],[[132,851],[-1,2],[0,1],[-1,0],[-1,1],[-1,1]],[[184,846],[0,1],[1,1]],[[183,865],[1,-1],[0,-1],[0,-2],[0,-1],[1,0],[0,-1],[0,-1],[1,-2],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-2],[0,-1]],[[184,865],[1,0],[1,0]],[[193,863],[1,0]],[[166,856],[-2,-1]],[[166,856],[1,1],[1,0]],[[180,846],[1,2]],[[181,848],[1,1],[1,0],[1,-1],[1,0]],[[181,848],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0]],[[158,853],[-1,0],[-1,0]],[[154,849],[1,0],[1,0],[1,1],[1,0]],[[158,850],[0,-1]],[[194,851],[1,1],[0,1],[0,1]],[[195,854],[0,1],[0,1],[0,1]],[[195,854],[2,0],[1,0],[1,0],[1,0]],[[135,857],[2,-1],[1,0],[1,0],[2,-1],[3,0],[1,0],[1,-1],[2,0],[1,0]],[[135,857],[-3,3]],[[195,857],[1,0],[1,0],[1,-1],[1,0],[1,-1],[1,0],[0,-1],[1,0],[1,0]],[[195,857],[0,2],[-1,0],[0,2],[0,1],[0,1]],[[181,867],[1,0],[1,0]],[[162,878],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-2],[1,0],[0,-1],[0,-1],[0,-2]],[[162,878],[0,1],[1,1],[1,1],[1,2],[0,2]],[[162,878],[1,0],[1,0],[1,-1],[2,0],[3,-1],[1,-1],[1,0],[1,0],[1,-1]],[[185,868],[1,1],[1,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,1],[0,1]],[[191,877],[0,1]],[[185,868],[1,0]],[[190,869],[1,1],[1,1]],[[191,878],[-1,1],[1,1],[0,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0]],[[191,877],[1,-1],[1,-1]],[[193,873],[0,2]],[[195,874],[0,1],[1,0]],[[198,884],[0,-1],[-1,-1],[-1,-2],[-1,-1],[-1,-1],[0,-1],[-1,-1],[0,-1]],[[198,884],[1,0],[1,1],[1,0],[2,0],[1,0],[1,0]],[[198,884],[-1,0],[-1,0]],[[198,884],[0,1],[0,1],[1,0],[0,1],[0,1],[1,2]],[[188,883],[-1,-1],[0,-1],[-1,-1],[-1,-1],[-1,-1]],[[188,883],[0,1],[0,1],[1,1]],[[198,877],[2,0]],[[201,877],[0,1]],[[205,879],[-2,-1],[-1,0]],[[180,877],[0,1],[0,1],[0,1],[1,0]],[[181,880],[2,-1],[1,-1]],[[181,880],[0,1],[-1,1],[-1,1],[0,2],[0,1],[0,1],[1,2],[0,1],[1,1]],[[181,891],[1,0],[1,-1],[1,-1],[1,0],[2,-1]],[[135,879],[0,1],[0,1],[-1,1],[-1,1],[0,1]],[[133,884],[0,1],[0,1],[0,1],[-1,3]],[[205,885],[0,0]],[[150,878],[0,2],[-1,2],[0,2],[0,1],[-1,1],[0,1],[0,1],[0,1]],[[148,889],[1,-1],[2,0],[0,-1],[1,0],[1,-1],[2,-1],[0,-1],[1,0],[1,0]],[[148,889],[-1,3],[0,1],[0,1],[0,2],[1,1],[0,1],[0,1],[1,1],[0,1]],[[148,889],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1],[-1,0]],[[118,889],[0,-1],[-1,-1],[-1,-1],[-1,0],[0,-1],[-1,-1],[-1,-1],[0,-1],[-1,0],[-1,-1],[-1,-1]],[[110,880],[-1,0]],[[117,880],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-2,0],[-1,0],[0,1]],[[189,886],[2,-1],[1,0],[1,-1]],[[189,886],[-1,0],[-1,0],[0,2]],[[187,888],[-1,0],[-2,-1],[0,-1],[0,-1],[-1,0]],[[187,888],[0,1],[1,2],[1,1],[0,2]],[[200,890],[1,1]],[[200,890],[-1,0],[-2,1]],[[205,885],[2,1],[1,0],[1,0]],[[203,881],[0,-1],[-1,0]],[[205,886],[1,1],[1,0],[2,1],[1,1],[1,1],[1,0],[-1,1],[-1,1],[-1,1]],[[151,900],[1,0],[1,-1]],[[149,901],[0,1],[1,1],[1,1],[0,1],[1,0],[0,1],[1,1],[1,1],[1,1],[0,1]],[[201,891],[1,3],[2,1]],[[201,891],[0,1],[0,1],[0,1],[-1,2],[0,1],[-1,2],[-1,2]],[[180,893],[-1,0],[-3,0],[-1,1],[-1,0]],[[174,894],[1,1],[1,1],[0,1],[1,1]],[[142,902],[0,-1],[0,-1],[0,-1],[-1,-2]],[[142,902],[1,-2]],[[141,897],[-1,1]],[[116,896],[1,1],[1,0]],[[118,899],[0,-1],[0,-1]],[[177,898],[2,1],[1,0],[0,-1],[1,0],[1,0],[0,1],[1,0],[2,0],[1,0],[1,0],[2,0],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[2,1]],[[177,898],[0,1],[0,3],[0,1]],[[197,902],[1,-1]],[[197,902],[2,1]],[[197,902],[-1,3],[-1,2],[0,1],[-1,2]],[[198,901],[0,1],[1,0],[0,1]],[[199,904],[0,-1]],[[155,910],[1,0],[1,-1],[1,0],[1,-1]],[[155,910],[-2,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-4,2],[-1,2],[-2,0],[-1,1],[-1,2]],[[155,910],[1,1],[0,2],[0,2],[1,2],[0,3],[0,2],[1,2],[0,1]],[[177,903],[1,0],[0,1],[1,0],[1,0]],[[177,903],[0,1],[0,1]],[[212,905],[-1,0],[-2,0],[-1,0],[-1,0],[-1,0],[-2,0],[-1,-1],[-1,0],[-1,-1],[-1,0],[-1,0]],[[163,905],[1,0],[1,0],[1,1],[1,0],[1,1],[1,0],[1,0],[2,1],[1,1],[1,0]],[[177,905],[-1,2],[-1,0],[-1,2]],[[177,905],[0,1],[0,2],[0,1]],[[174,909],[0,2]],[[174,909],[1,0],[1,0],[1,0]],[[177,912],[0,-2],[0,-1]],[[179,909],[-1,0],[-1,0]],[[137,918],[-1,-1],[0,-1],[0,-1]],[[137,918],[0,2]],[[158,925],[-1,-1],[-1,0],[-1,0],[-1,-1],[-1,0],[-1,0],[0,-1],[-1,0]],[[136,920],[-1,1],[0,1],[-1,0],[0,1]],[[128,918],[-1,2],[-1,1]],[[173,927],[2,0],[3,0]],[[173,930],[0,1],[0,1]],[[147,920],[1,1],[1,0],[1,0],[0,1],[1,0]],[[133,921],[0,1],[1,1]],[[134,923],[0,1],[0,1],[-1,1],[0,1],[0,1],[0,1]],[[151,922],[-1,1],[0,1],[-1,0],[0,1],[-2,1]],[[164,941],[0,1],[1,0],[1,0],[1,0]],[[148,940],[-1,1],[-1,0],[-1,0],[-1,1],[0,-1],[-2,0],[-1,-1],[-1,-1],[-1,0],[-1,-1],[-1,-1],[-1,0],[-1,0]],[[148,940],[1,0],[1,-1],[2,0],[1,-1],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[2,0]],[[135,937],[-1,0],[0,-1],[-1,0],[-1,0],[-1,-1],[-1,0]],[[133,929],[-2,2],[-1,2],[0,1],[0,1]],[[130,935],[0,1],[-1,0],[0,1],[0,1]],[[170,939],[0,1],[-1,1],[-1,1],[-1,0]],[[167,942],[1,1],[1,0],[1,0]],[[167,942],[-1,1],[0,1],[-1,1],[-1,0],[-1,0],[-1,1],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[0,1],[-1,1],[1,1],[0,1],[0,1],[-1,0],[0,1]],[[141,973],[-1,0],[-1,0]],[[144,973],[2,2]],[[170,943],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[1,0],[1,0],[2,0]],[[134,954],[-1,0],[-1,-1],[-1,-1]],[[130,964],[-1,-1],[-1,-1],[-1,0]],[[152,956],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0]],[[146,958],[-1,0],[-1,-1],[-1,0],[-1,0],[-1,1],[-2,0],[0,1],[-1,0],[-1,0],[-1,2],[-1,0]],[[146,958],[2,1],[1,1],[1,1],[2,1]],[[135,961],[-1,1],[-1,0]],[[135,961],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1],[0,1]],[[136,968],[0,1],[-1,0],[0,1],[0,1],[0,1]],[[136,968],[1,0],[1,1],[1,0],[0,1],[1,1]],[[132,971],[0,1],[1,0]],[[129,971],[-2,1],[-2,1],[-1,1],[-1,0],[-1,1],[-1,1],[-1,1],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1]],[[114,987],[0,1],[-1,0]],[[146,975],[1,1],[1,1],[0,1],[1,1],[0,1],[0,1],[1,1],[0,1],[-1,1],[0,1]],[[118,977],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[-1,0],[0,1],[1,1],[1,1],[0,1],[0,1],[1,0],[-1,0],[0,1],[1,1]],[[114,987],[-1,1]],[[140,982],[1,0],[1,0],[1,0],[1,1],[1,0],[1,0],[1,1],[1,0],[0,1],[1,0]],[[149,985],[-1,1],[-1,1],[0,1],[0,1],[-1,1],[0,2],[0,2],[0,1],[-1,1]],[[117,993],[-1,0],[0,-1],[-1,-1],[-1,-2],[-1,0],[0,-1]],[[117,993],[1,0],[1,0],[1,-1],[1,0],[0,1],[1,0]],[[117,993],[-1,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0]],[[117,993],[0,1],[1,0],[0,1],[1,0],[0,1],[1,1],[1,0],[0,1],[1,0],[0,1]],[[41,431],[0,1],[0,1],[0,1],[-1,1],[1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,1],[1,0],[0,1],[-1,0],[1,1],[0,1],[0,1],[-1,0],[1,0],[-1,1],[0,1],[1,0],[-1,0],[0,1]],[[319,849],[0,-1]],[[319,848],[1,0],[0,-1],[0,-1],[-1,0]],[[319,846],[1,0],[0,-1],[0,-1]],[[320,844],[1,0],[0,-1]],[[762,248],[0,-1],[1,0],[1,0],[0,-1],[1,0],[0,-1],[1,-1],[1,0],[0,-1],[1,0],[1,0],[1,0]],[[771,243],[1,0],[1,-1]],[[883,401],[0,1],[1,0]],[[885,402],[0,1],[0,-1]],[[886,401],[1,0]],[[887,401],[0,-1],[0,-1],[0,-1]],[[887,392],[0,-1],[-1,0]],[[886,388],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[-1,0],[0,-1],[1,0],[0,-1]],[[886,376],[-1,0]],[[885,376],[0,-1],[1,1]],[[886,376],[0,-1],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[0,-1],[1,0],[1,0],[1,0]],[[890,372],[1,0],[0,1],[1,0]],[[892,373],[0,-1],[0,-1],[0,-1]],[[892,370],[1,0],[-1,0]],[[892,370],[1,0],[0,-1]],[[893,369],[0,1],[0,-1]],[[893,369],[1,0],[-1,0]],[[893,369],[1,0],[-1,-1]],[[787,193],[0,-1],[0,-1],[0,-1]],[[787,187],[0,-1],[-1,0],[0,-1]],[[786,185],[0,-1],[-1,-1]],[[552,746],[1,1],[0,1],[0,1],[0,1],[0,1],[1,2],[-1,0],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,-1],[-1,0]],[[540,752],[-1,0],[-1,0],[0,-1]],[[538,751],[-1,0],[0,1],[-1,0],[-1,0]],[[275,641],[0,1],[0,1],[0,1],[-1,0],[0,1],[1,0],[-1,0],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[1,0],[0,1],[0,1]],[[275,654],[0,1],[0,1],[1,0]],[[276,657],[1,1],[0,1]],[[277,659],[-1,0],[0,1],[0,1],[0,1],[1,0]],[[277,662],[0,1],[1,1]],[[278,665],[0,1]],[[335,778],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[-1,0],[0,-1],[0,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,-1],[0,-1]],[[330,760],[1,0],[0,-1],[0,-1],[0,-1],[-1,0]],[[330,756],[0,-1],[0,-1],[0,-1],[-1,0]],[[329,753],[1,0],[-1,0]],[[329,752],[1,0],[0,-1],[-1,0]],[[321,843],[1,0],[0,-1]],[[322,842],[1,0],[0,-1]],[[323,841],[0,-1],[1,0],[0,-1],[-1,0]],[[323,839],[0,-1],[1,0]],[[324,838],[1,0],[0,-1]],[[325,836],[1,0],[0,-1]],[[326,835],[1,-1]],[[330,833],[1,0],[0,-1]],[[627,638],[1,0],[1,1],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[-1,1],[-1,0]],[[622,644],[0,1],[1,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,1],[0,1],[-1,1],[-1,0],[0,1]],[[618,652],[1,0],[1,0],[0,1],[0,1]],[[620,654],[1,0],[1,-1],[1,0],[1,1],[0,1],[-1,1],[-1,1]],[[534,752],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1]],[[530,751],[0,1],[-1,0],[0,-1]],[[529,751],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[-1,1],[-1,0],[-1,1],[0,1],[-1,0]],[[516,761],[0,1],[-1,0]],[[515,763],[0,1],[-1,0],[-1,0]],[[512,764],[0,1],[-1,-1]],[[173,663],[1,0],[0,-1]],[[174,662],[0,-1],[0,-1]],[[174,660],[1,0],[1,0],[0,-1],[1,0],[-1,0],[1,0],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[1,0]],[[181,655],[1,0],[1,0],[1,0],[0,-1]],[[184,654],[1,0],[0,-1]],[[185,653],[0,1],[1,0],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[0,-1]],[[188,650],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[-1,0]],[[190,647],[0,-1],[1,0],[0,-1],[1,0],[1,0],[1,0]],[[194,645],[0,-1],[1,0],[1,0]],[[278,722],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1]],[[280,726],[1,0],[1,0],[0,1]],[[284,727],[0,1],[0,-1]],[[286,727],[0,1],[0,-1]],[[286,727],[1,0],[1,0],[0,1],[0,1],[0,1]],[[288,730],[1,0],[0,-1],[0,1],[1,0],[0,1],[-1,0]],[[289,731],[1,0],[0,1]],[[290,732],[1,0],[0,1]],[[291,733],[1,0],[0,1]],[[292,734],[1,0],[1,0]],[[294,734],[1,0],[-1,0]],[[294,734],[1,0],[1,0],[0,1]],[[296,735],[0,-1],[1,0],[0,-1],[0,1],[1,0],[0,1]],[[298,735],[1,0],[1,0],[0,1]],[[920,415],[-1,0]],[[919,416],[0,1],[0,1],[0,1],[0,1],[0,1],[0,1],[-1,0]],[[918,423],[0,1],[-1,0]],[[917,425],[1,0],[0,1],[-1,0]],[[198,741],[1,0],[0,1],[0,-1],[1,0],[1,0],[1,0],[1,1]],[[203,742],[0,-1],[0,1]],[[203,742],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[1,0],[0,1]],[[208,745],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1]],[[212,749],[1,0],[0,1]],[[213,750],[1,0],[1,0],[0,1],[0,1],[1,0],[0,1]],[[216,753],[1,0],[0,1]],[[217,754],[0,1],[1,0]],[[218,755],[1,0],[0,1]],[[220,756],[1,0]],[[511,764],[-1,0],[0,-1]],[[510,763],[-1,0],[-1,0]],[[506,763],[-1,0],[0,1],[-1,0],[-1,0]],[[503,764],[0,1],[-1,1],[-1,1]],[[965,369],[1,0],[0,1],[1,1],[1,0],[0,1],[-1,1]],[[967,373],[1,1],[0,1],[1,2],[1,1],[0,1],[0,1],[0,1],[1,1],[0,2],[1,2],[1,1],[1,1],[0,4],[-2,2],[-1,2],[-1,1],[0,2],[3,9],[-1,1],[0,3],[3,0],[0,1],[3,1],[1,5],[1,1],[0,2],[1,3],[-1,2]],[[965,369],[0,1],[-1,0],[-1,1],[0,1],[-1,-1],[0,1],[0,1],[-1,-1],[0,1],[-1,0]],[[960,373],[0,1],[-1,0],[0,1],[0,1],[-1,0],[0,2]],[[958,378],[-1,0],[-1,2],[-1,0],[-1,1],[1,0],[-1,1],[-1,1],[1,1],[-1,0],[0,1],[0,1]],[[953,386],[-1,1],[0,-1],[-1,1],[-2,1],[0,-1]],[[949,387],[0,1],[-1,0],[-2,0],[-1,1],[-1,0],[-1,0],[-1,1],[-1,0]],[[941,390],[0,1],[0,-1]],[[941,390],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-3,-1]],[[154,735],[1,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,-1],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[1,0],[0,1],[1,0],[1,0],[1,0],[1,0],[0,-1],[1,0]],[[170,740],[1,0],[0,1]],[[171,741],[1,0],[0,1]],[[173,742],[1,0]],[[313,814],[-1,-1],[0,-1]],[[312,812],[-1,0],[0,-1]],[[311,811],[0,1],[-1,0],[-1,-1],[0,-1],[-1,0],[1,0],[-1,-1],[0,-1],[-1,0],[1,0],[-1,0],[0,-1]],[[307,807],[0,-1],[0,-1],[0,-1],[0,-1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[-1,0],[0,-1],[-1,0]],[[303,801],[0,-1],[0,-1]],[[303,799],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[304,794],[-1,0]],[[817,89],[0,-1]],[[817,88],[0,-1],[-1,0],[0,-1],[0,-1],[1,0],[0,-1]],[[817,83],[-1,0],[0,-1],[-1,0]],[[815,82],[0,-1],[0,-1]],[[617,659],[-1,-1],[-1,0],[0,-1]],[[615,657],[-1,0],[0,-1]],[[614,655],[-1,-1],[0,-1]],[[815,80],[-1,-1],[0,-1],[-1,0],[0,-1]],[[813,77],[-1,0],[-1,0]],[[811,77],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[812,73],[1,-1],[0,-1]],[[813,71],[0,-1],[0,-1],[0,-1]],[[711,642],[-1,0],[-1,0],[-1,0]],[[707,642],[0,1],[-1,-1],[-1,0]],[[705,642],[-1,0],[-1,0],[-1,-1]],[[702,641],[-1,0],[0,-1]],[[700,640],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1]],[[696,639],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,-1]],[[690,637],[0,1],[-1,-1],[-1,0],[0,-1]],[[688,635],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,-2],[-1,0],[0,-1]],[[683,630],[-1,-1]],[[682,629],[-1,-1]],[[681,628],[-1,0],[-1,0],[0,-1]],[[678,627],[-1,0],[-1,0],[0,-1]],[[784,181],[0,-1],[-1,0],[0,-1],[0,-1]],[[783,178],[-1,0],[0,-1]],[[781,172],[-1,0],[0,-1],[0,-1]],[[780,170],[0,-1]],[[785,182],[-1,2],[-1,0],[-1,1]],[[782,185],[0,1],[0,1]],[[781,188],[-1,1],[0,1]],[[781,144],[0,-1]],[[781,143],[-1,0],[0,-1],[1,-1],[0,-1]],[[781,139],[-1,0],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,-1],[0,-1],[1,0],[0,-1],[0,-1],[1,0],[1,0]],[[785,128],[0,-1],[0,-1],[1,0],[1,0]],[[787,126],[0,-1]],[[773,242],[0,-1],[1,-1],[0,-1],[1,0]],[[773,242],[5,6],[10,-8],[25,3]],[[740,654],[0,1],[2,1]],[[742,656],[1,3],[0,1],[1,2]],[[744,662],[0,1],[0,2]],[[744,665],[1,1],[1,0],[2,0],[1,1],[0,1],[1,1],[0,1],[-1,-1],[-1,1],[1,1],[-1,0],[0,1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1]],[[464,767],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,1],[0,1],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,-1]],[[452,772],[0,1],[-1,0]],[[451,773],[0,1],[-1,0]],[[450,774],[0,1],[-1,0]],[[449,775],[-1,1]],[[447,776],[0,1],[-1,0]],[[199,806],[0,-1],[1,0],[0,-1],[0,-1],[0,-1],[1,0],[0,1],[0,1],[0,1],[1,0],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[1,0],[0,1],[0,1],[1,0]],[[787,125],[1,0],[1,-1],[0,-1],[0,-1],[0,-1],[1,-1],[0,-1],[1,0],[0,-1],[1,0]],[[792,118],[0,-1],[0,-1],[1,-1],[0,-1],[0,-1]],[[794,112],[0,-1],[1,0]],[[795,111],[0,-1],[0,-1],[1,0],[0,-1],[1,0]],[[797,108],[0,-1],[-1,-1],[1,0],[0,-1],[0,1],[1,0],[1,0],[0,-1]],[[344,821],[0,-1],[1,0],[0,-1],[0,-1]],[[345,817],[1,-1],[0,-1],[0,-1],[1,0],[0,-1],[1,0],[0,-1],[-1,0],[-1,0],[0,-1],[0,-1],[0,-1]],[[346,809],[0,-1],[1,0],[0,-1],[0,-1]],[[347,805],[1,0],[0,-1],[-1,0]],[[347,804],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[545,686],[-1,0],[-1,0]],[[543,686],[0,1],[-1,0]],[[542,687],[0,1],[-1,0]],[[541,688],[0,1],[1,0],[-1,0],[-1,0],[0,1],[-1,-1]],[[539,689],[0,1],[-1,0],[0,1],[-1,0],[-1,0]],[[536,691],[0,1],[-1,0],[-1,0],[0,-1]],[[533,691],[0,1],[-1,0],[-1,0]],[[530,692],[-1,0]],[[529,692],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1]],[[520,696],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[1,1],[-1,0],[1,0],[-1,0],[0,1],[0,-1],[0,1],[0,1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,1],[-1,0],[0,1],[-1,1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[0,-1],[-1,0],[-1,0],[0,1],[0,-1],[0,1],[0,-1],[-1,0]],[[500,708],[0,1],[-1,0],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,1]],[[496,711],[-1,-1]],[[495,710],[-1,1]],[[494,711],[-1,-1]],[[493,710],[-1,0],[0,1]],[[776,235],[1,0],[0,-1]],[[777,234],[1,0],[0,-1],[1,0],[0,-1]],[[779,229],[1,0],[-1,-1]],[[779,228],[1,0],[0,-1],[0,-1],[0,-1],[0,-1]],[[674,626],[-1,1],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,-1]],[[665,629],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[-1,0],[0,1],[-1,-1]],[[7,476],[1,0]],[[8,476],[1,1],[0,1]],[[9,480],[1,1],[0,1]],[[10,483],[1,1],[0,1],[1,0],[0,1],[1,0],[1,0],[0,1],[1,0],[0,1],[1,0],[0,1],[0,1],[1,1],[0,1]],[[820,42],[0,-1],[0,-1],[0,-1],[0,-1],[0,-1],[-1,-1],[0,-1],[0,-1],[0,-1],[0,-1],[1,0],[0,-1]],[[820,31],[-1,0]],[[421,569],[0,1]],[[421,570],[1,0]],[[422,570],[0,1]],[[424,571],[0,1]],[[424,572],[1,0]],[[813,243],[-1,0],[-1,0]],[[810,243],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1]],[[806,242],[-1,-1]],[[805,241],[-1,0],[0,-1]],[[801,237],[-1,0],[0,-1]],[[800,236],[-1,0],[0,-1],[0,-1]],[[799,234],[-1,0],[0,-1]],[[798,233],[-1,0],[0,-1]],[[797,232],[-1,0],[0,-1]],[[796,231],[-1,-1],[0,-1],[-1,0]],[[794,229],[0,-1],[-1,0]],[[371,670],[0,1],[-1,0]],[[370,671],[0,1],[0,-1]],[[369,672],[-1,0]],[[489,712],[0,1],[-1,0],[0,1],[0,1],[-1,1],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1]],[[474,716],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1]],[[465,717],[-1,0],[-1,0],[0,1],[0,1]],[[419,756],[0,-1],[-1,-2],[1,-1],[0,-1]],[[419,750],[1,0],[0,-2]],[[420,748],[-1,-1],[-1,-1],[-1,-1],[-3,-2]],[[414,743],[-1,-1]],[[413,742],[-1,0],[-1,-1]],[[411,741],[-1,-1]],[[410,740],[-2,-1],[-1,-1]],[[407,738],[-2,0]],[[420,652],[-1,1]],[[418,658],[1,-1],[0,1],[0,1],[-1,0]],[[418,659],[-1,1],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[1,0],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[-1,0]],[[418,791],[-1,0],[0,-1],[-1,0],[1,0],[0,-1]],[[417,789],[-1,0],[0,-1],[0,1],[0,-1],[1,0]],[[417,788],[-1,0],[-1,0],[0,-1]],[[414,787],[-1,0],[-1,0],[0,-1]],[[411,785],[0,-1],[-1,0],[-1,0]],[[409,784],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0]],[[398,782],[-1,0],[-1,0],[-1,0],[0,-1],[0,-1],[-1,0]],[[579,663],[0,-1],[-1,0],[-1,-1],[0,-1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[0,-1],[0,1],[-1,0],[-1,0],[-1,-1],[-1,0],[0,-1],[-1,0],[0,1],[1,0],[1,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,0],[-1,1],[-1,0],[0,1],[0,1],[0,1],[1,1],[-1,0],[0,1],[-1,0],[0,1],[-1,0]],[[563,667],[-1,0],[0,1]],[[562,668],[0,-1],[-1,0],[0,1]],[[561,668],[0,-1],[-1,0],[-1,0],[-1,-1],[1,0],[0,-1],[-1,1],[-1,0],[0,-1],[1,0],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[-1,-1],[-1,0],[0,-1],[-1,0],[-1,0],[-1,0],[-1,0],[-1,0],[-1,1],[0,1],[-1,0],[1,0],[0,1],[0,1],[-1,0],[0,1],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[0,1],[-1,0],[0,-1],[0,1],[-1,0],[0,-1],[1,0],[-1,0],[0,-1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[-1,0],[0,1],[-1,-1],[0,1],[-1,0],[0,-1],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0],[0,1]],[[532,673],[0,-1],[-1,0],[0,-1],[-1,0],[1,0],[-1,-1],[-1,-1],[0,1],[-1,0],[0,1],[-1,0],[-1,0],[0,1],[-1,0]],[[525,672],[-1,0],[0,-1]],[[524,671],[0,1],[-1,0],[0,-1]],[[523,671],[0,1],[0,-1]],[[522,671],[0,1],[0,-1]],[[522,671],[0,1],[-1,0]],[[521,672],[0,1],[0,-1]],[[519,672],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[-1,0],[-1,0],[-1,1],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[1,0],[-1,0],[-1,0],[0,1],[0,-1],[-1,0],[0,1],[0,1],[0,-1],[-1,0],[0,1],[0,1],[-1,0],[-1,0],[1,0],[-1,0],[0,1],[-1,0],[0,1],[0,-1],[0,1],[-1,0],[0,-1],[-1,0],[0,1],[-1,0],[-1,0],[1,1]],[[501,682],[0,1]],[[611,652],[0,1],[-1,0]],[[610,654],[-1,1]],[[609,656],[0,1],[-1,0]],[[606,657],[-1,0],[0,1]],[[605,658],[-1,-1],[-1,1],[-1,0]],[[602,658],[0,-1],[0,1]],[[602,658],[-1,1]],[[601,659],[1,0],[-1,1]],[[601,660],[0,1],[-1,0]],[[599,661],[-1,0],[-1,0]],[[597,662],[-1,1]],[[596,662],[-1,0],[-1,-1]],[[440,555],[-4,5]],[[278,666],[1,0]],[[278,666],[0,1],[0,1],[0,1],[0,1]],[[278,670],[-1,0],[0,1],[0,1]],[[277,678],[-1,0],[0,1],[0,1],[0,1],[0,1],[1,0]],[[276,686],[1,0],[0,1]],[[277,688],[1,0],[0,1],[0,1],[-1,0]],[[704,501],[-1,-1]],[[703,500],[-2,0],[-2,0],[-2,0],[-2,0],[-2,-3],[-2,0],[-2,0],[-1,3],[0,3]],[[688,503],[0,3]],[[688,506],[1,2]],[[703,500],[-2,-3],[-2,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[2,-3],[2,-3],[0,-3]],[[703,467],[5,1]],[[40,431],[2,-1]],[[42,430],[2,0],[2,0],[2,0],[2,-3]],[[50,427],[2,-3]],[[52,424],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3]],[[62,409],[1,1]],[[50,427],[2,0],[2,0],[2,-3],[2,-3],[2,-3]],[[60,418],[2,3],[6,15]],[[42,430],[-1,-3],[-2,-3]],[[39,424],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,4],[0,3],[0,3],[0,3],[0,3],[-2,3],[-2,3],[0,3],[2,3]],[[8,476],[0,1]],[[862,300],[-1,-1]],[[861,299],[-2,0],[-2,-3],[0,-3],[0,-3],[0,-3]],[[857,287],[1,1]],[[861,299],[0,3],[0,3],[0,3],[2,3]],[[863,311],[1,0]],[[761,247],[-2,3],[-2,4]],[[757,254],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0]],[[711,254],[-1,-2]],[[761,247],[2,3],[2,4]],[[765,254],[2,3],[2,3],[2,3],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,-3],[2,-3],[2,-3],[2,-4],[2,-3],[2,-3]],[[813,244],[0,-1]],[[761,247],[0,3],[0,4],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3]],[[761,281],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,4],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3]],[[761,366],[0,3],[0,3],[0,3],[0,3],[0,3],[0,4]],[[761,385],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3]],[[751,400],[-2,3]],[[749,403],[1,-1]],[[765,254],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3]],[[765,287],[2,3],[2,3],[2,3],[2,3],[1,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,4],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[1,3],[2,3],[2,3],[2,3],[2,3]],[[809,357],[1,-1]],[[761,281],[2,3],[2,3]],[[757,254],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-1,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-1,3],[-2,4],[-2,3],[-2,3]],[[711,327],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3]],[[693,354],[-2,3],[-2,3]],[[689,360],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0]],[[676,360],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0]],[[662,360],[-1,3]],[[661,363],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0]],[[647,363],[-2,0],[-2,0]],[[643,363],[-2,0],[-2,0],[-2,0],[-2,0]],[[635,363],[-2,0],[-1,0],[-2,0],[-2,0]],[[628,363],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,3],[-2,3],[-2,3],[-2,3]],[[610,375],[-2,3],[-2,3],[-2,4],[-1,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3]],[[585,415],[-2,3],[-2,3],[-2,3],[-2,3]],[[577,427],[-1,3],[-2,3],[-2,3]],[[572,436],[-2,3],[-2,3],[-2,3]],[[566,445],[-2,3],[-2,4]],[[562,452],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0]],[[510,452],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0]],[[494,452],[-2,0],[-1,0],[-2,0],[-2,0],[-2,3],[0,3]],[[485,458],[0,3]],[[693,354],[-2,0],[-2,0],[-1,0],[-2,0]],[[686,354],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,3],[-2,3]],[[661,363],[-2,3],[-2,0],[-2,0],[-2,0],[-2,3],[-2,0],[-2,0],[-2,0],[-2,0]],[[643,369],[-2,0],[-2,0]],[[639,369],[-2,3]],[[637,372],[-2,3]],[[635,375],[-2,3],[-1,3],[-2,4],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3]],[[610,415],[-2,0],[-2,0]],[[606,415],[-2,3],[-1,3],[-2,3]],[[601,424],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3]],[[591,439],[-2,3],[-2,3]],[[587,445],[-2,0],[-2,0]],[[583,445],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0]],[[572,445],[-2,0]],[[570,445],[-2,3],[-2,4]],[[566,452],[-2,0],[-2,0]],[[761,366],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,4],[-2,3],[-2,3],[-1,3],[-2,3],[-2,3],[-2,3],[-2,3]],[[736,406],[-2,0],[-2,0],[-2,0]],[[730,406],[-1,1]],[[688,506],[-2,3]],[[686,509],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0]],[[670,509],[2,5]],[[687,510],[-1,-1]],[[686,509],[2,3],[1,4]],[[689,516],[1,0]],[[424,685],[-1,-2]],[[423,683],[0,-3],[0,-3],[0,-3]],[[423,674],[-1,0]],[[423,683],[2,0],[2,-3],[2,3],[2,0],[2,3],[2,0],[1,0]],[[436,686],[1,2]],[[445,626],[1,-1]],[[446,625],[2,-3],[2,-3],[2,-3],[2,-3]],[[454,613],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3]],[[464,598],[1,-3],[2,-3]],[[467,592],[2,-3],[2,-3],[2,-3],[2,-4],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0]],[[494,579],[2,-3],[2,-3]],[[498,573],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3]],[[508,558],[2,-3],[0,-3]],[[510,552],[0,-2]],[[454,613],[0,-3],[0,-3],[0,-3]],[[454,604],[-1,0]],[[446,625],[-2,3],[-2,3],[-2,3]],[[440,634],[-2,0],[-2,0]],[[436,634],[0,-1]],[[446,625],[2,3],[2,3],[2,3],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0]],[[469,634],[2,0],[2,0],[2,0],[2,3]],[[477,637],[2,3]],[[479,640],[-1,1]],[[446,625],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,4],[0,3],[0,3],[0,3],[0,3],[2,3],[2,3]],[[450,665],[1,-1]],[[440,634],[-2,3],[-2,3],[-1,3],[-2,4],[-2,3],[-2,0],[-2,0],[-2,0],[-2,0]],[[423,650],[-3,1]],[[442,691],[0,-2]],[[442,689],[2,-3],[0,-3]],[[444,683],[0,-3],[2,-3],[0,-3],[0,-3],[2,-3],[2,-3]],[[450,665],[2,-3]],[[452,662],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-4],[1,-3],[2,-3],[2,-3]],[[469,634],[2,-3],[2,-3],[2,-3],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[491,625],[1,-3],[2,-3],[2,0],[2,-3]],[[498,616],[2,3],[2,3]],[[502,622],[1,1]],[[442,689],[2,0],[2,0],[2,0]],[[448,689],[2,-1]],[[442,689],[-2,0],[-2,0],[-2,-3]],[[498,616],[2,0],[2,0],[2,-3],[2,-3],[2,0],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[1,-3],[2,-3],[2,-3],[2,-4],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3]],[[543,555],[2,-3],[2,-3],[1,-3],[2,-3],[2,-3],[2,-3]],[[554,537],[2,-3]],[[556,534],[2,-3]],[[558,531],[-1,-2]],[[547,220],[0,3]],[[547,223],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0]],[[547,223],[1,0],[2,0],[2,0],[2,-3]],[[554,220],[0,-1]],[[274,628],[-2,-9]],[[272,619],[2,-3],[2,0],[2,0],[2,0],[2,0],[2,0]],[[284,616],[2,0]],[[286,616],[2,1]],[[272,619],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,-3],[-2,0],[-2,-3],[-2,0],[-2,-3]],[[245,610],[-3,3]],[[427,640],[2,0],[2,0],[2,0],[2,-3],[1,-3]],[[427,640],[0,3],[-2,4],[-2,3]],[[851,262],[-1,1]],[[850,263],[0,-3]],[[850,260],[0,-3]],[[850,263],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,4],[-2,3],[-1,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3]],[[813,351],[-2,3]],[[811,354],[-2,3]],[[850,263],[2,3]],[[852,266],[1,0]],[[459,591],[1,1]],[[460,592],[0,3],[-2,3],[-2,3],[-2,3]],[[460,592],[2,3],[2,3]],[[464,598],[1,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0]],[[460,592],[2,0],[2,0],[1,0],[2,0]],[[467,592],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,-3],[2,-3],[1,-3],[2,-4]],[[498,573],[0,-3],[-2,-3],[-2,0],[-2,-3]],[[492,564],[-1,1]],[[642,454],[-1,-2]],[[641,452],[-2,3]],[[639,455],[0,1]],[[641,452],[2,-4]],[[643,448],[2,-3],[2,-3],[2,0]],[[649,442],[2,3]],[[651,445],[2,0],[2,0]],[[655,445],[2,0],[2,0],[2,0],[1,0],[2,0]],[[664,445],[2,0]],[[666,445],[2,0]],[[668,445],[2,3],[2,4],[2,0],[2,0],[2,0],[2,0],[2,0]],[[682,452],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0]],[[695,452],[2,0]],[[697,452],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[709,452],[3,1]],[[649,442],[-1,2]],[[649,442],[2,0],[2,0]],[[653,442],[2,-3],[2,0],[2,0],[2,0],[1,0]],[[662,439],[2,0],[2,0],[2,0],[2,0]],[[670,439],[2,0]],[[672,439],[2,0]],[[674,439],[2,0]],[[676,439],[2,0],[2,0],[2,0],[2,0],[2,0]],[[686,439],[2,0],[1,0]],[[689,439],[2,0],[2,0],[2,0]],[[695,439],[2,0],[2,0]],[[699,439],[2,0],[2,0]],[[703,439],[2,-3]],[[705,436],[2,-3],[2,-3]],[[709,430],[2,-3]],[[711,427],[-1,0]],[[497,556],[-1,2]],[[496,558],[2,0],[2,0],[2,0],[2,0],[2,0]],[[506,558],[2,-3],[2,-3]],[[496,558],[-2,3]],[[494,561],[0,-3]],[[226,557],[0,-2]],[[226,555],[2,3],[2,0],[2,0],[2,3],[2,3],[2,0],[1,3],[2,0],[2,3],[2,0],[2,3],[0,3],[0,3],[-2,4]],[[245,583],[-1,-2]],[[226,555],[-2,-3],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,-3]],[[212,549],[-1,0]],[[211,549],[-2,0]],[[209,549],[-1,1]],[[510,552],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3]],[[531,537],[0,-2]],[[870,330],[-1,0]],[[869,330],[-2,-3],[-2,-3],[-2,-3],[0,-4],[0,-3],[0,-3]],[[869,330],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3]],[[857,348],[-1,0]],[[856,348],[-2,0]],[[854,348],[-2,0]],[[852,348],[-2,0]],[[850,348],[-2,0]],[[848,348],[-2,0]],[[846,348],[-2,0]],[[844,348],[-2,0]],[[842,348],[-2,0]],[[840,348],[-2,0]],[[838,348],[-2,0]],[[836,348],[-2,0]],[[834,348],[-2,0]],[[832,348],[-2,0]],[[830,348],[-1,0]],[[829,348],[-2,0]],[[827,348],[-2,0]],[[825,348],[-2,0]],[[823,348],[-2,0]],[[821,348],[-2,3]],[[819,351],[-2,0]],[[817,351],[-2,0]],[[815,351],[-2,3]],[[813,354],[-2,0]],[[857,348],[-1,3],[-2,3],[-2,3],[-2,3],[-2,0],[-2,0],[-2,0],[-2,0]],[[842,360],[0,2]],[[869,330],[0,3],[2,3]],[[871,336],[1,1]],[[22,618],[-1,1]],[[21,619],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,-3],[-2,-3],[-2,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-4],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-4],[-2,-3],[-2,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[2,-3],[2,-3],[2,3],[2,0]],[[21,619],[2,3],[2,3],[2,3],[2,3],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,-3],[2,-3],[2,-3]],[[106,622],[0,-2]],[[531,537],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3]],[[543,555],[2,0]],[[545,555],[2,0],[1,0],[2,0]],[[550,555],[2,0],[2,0],[2,0],[2,0],[2,0]],[[560,555],[0,1]],[[531,537],[2,0]],[[533,537],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3]],[[543,522],[-2,-2]],[[533,537],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0]],[[552,537],[2,0]],[[173,664],[-11,-5]],[[162,659],[-2,0],[-2,3],[-2,3],[-1,3],[-2,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[-2,3],[-2,4],[-2,3],[-2,3],[-2,3],[0,3],[0,3],[0,3],[-2,3]],[[141,735],[2,3]],[[143,738],[4,0]],[[147,738],[7,-2]],[[162,659],[-2,-3],[-2,-3],[-2,-3],[-1,-3],[-2,-4],[-2,-3],[-2,-3],[-2,-3],[-2,0],[-2,-3],[-2,0],[-2,-3],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0]],[[110,628],[-2,-3],[-2,-3]],[[857,287],[-1,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,4],[-2,3],[-2,3],[-2,3],[-1,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3]],[[857,287],[-1,-3],[0,-3],[0,-3]],[[856,278],[1,1]],[[201,878],[2,-3]],[[203,875],[0,-3],[0,-3]],[[203,869],[-2,-3]],[[201,866],[-2,0],[-2,0],[-2,0],[-2,0],[-10,1]],[[210,860],[2,0]],[[211,863],[1,-3]],[[209,866],[2,-3]],[[207,869],[2,-3]],[[205,872],[2,-3]],[[203,875],[2,-3]],[[218,899],[-9,0]],[[218,899],[2,-3]],[[220,896],[-2,-3]],[[218,893],[-2,-3]],[[216,890],[0,-3]],[[216,887],[0,-3]],[[216,884],[-2,-3]],[[214,881],[-2,0]],[[212,881],[-1,-3]],[[211,878],[-2,-3]],[[209,875],[-2,-3]],[[207,872],[-2,0]],[[383,420],[1,1]],[[384,421],[2,3],[2,3]],[[388,427],[2,0],[2,0],[2,0],[2,0]],[[396,427],[2,-3],[2,-3]],[[400,421],[2,-3],[2,-3],[2,-3],[2,-3],[1,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-4],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[1,-3],[2,-3],[2,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3]],[[440,324],[2,-3],[2,-4],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3]],[[454,302],[2,-3],[2,-3],[2,-3]],[[460,293],[0,-2]],[[384,421],[0,3],[0,3]],[[384,427],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3]],[[384,445],[0,3],[0,4]],[[384,452],[0,3],[0,3],[0,3]],[[384,461],[0,3]],[[384,464],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3]],[[384,488],[0,3],[0,3],[0,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,4],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[1,3],[2,3],[2,3],[2,3],[2,3]],[[417,549],[2,3],[2,3]],[[421,555],[0,3],[0,3],[0,3],[0,3]],[[421,567],[0,2]],[[384,461],[2,3]],[[386,464],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3]],[[400,485],[2,3],[2,3],[2,3],[2,3],[1,3],[2,3],[2,3],[2,3],[2,3]],[[417,512],[2,4],[2,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3]],[[384,427],[-2,3],[-2,3]],[[380,433],[-1,0],[-2,0],[-2,3]],[[375,436],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0]],[[361,436],[-2,-3],[-2,-3],[-2,-3],[-2,-3]],[[353,424],[0,-1]],[[361,436],[-2,0],[-2,0],[-2,0]],[[355,436],[-2,0]],[[353,436],[-2,0],[-1,0],[-2,0],[-2,0]],[[346,436],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0]],[[317,436],[-2,-3],[-2,-3]],[[313,430],[-2,-3]],[[311,427],[-2,0]],[[380,433],[-1,3]],[[379,436],[-2,3],[0,3],[0,3],[0,3],[0,4],[0,3],[0,3],[0,3],[0,3]],[[377,464],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3]],[[361,488],[-2,3]],[[359,491],[1,1]],[[384,452],[-2,3],[-2,3],[-1,3]],[[379,461],[-2,3]],[[400,421],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-4],[0,-3]],[[400,378],[0,-3],[0,-3],[0,-3]],[[400,369],[-2,-3]],[[398,366],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[-2,-3]],[[396,324],[-1,-1]],[[396,427],[1,-1]],[[388,427],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,0],[2,0],[2,0],[1,0]],[[409,448],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[423,448],[1,1]],[[165,443],[-1,-4]],[[164,439],[2,0]],[[166,439],[2,0]],[[168,439],[2,0]],[[170,439],[2,0]],[[172,439],[2,0]],[[174,439],[2,0]],[[176,439],[2,0]],[[178,439],[2,0]],[[180,439],[2,0]],[[182,439],[1,0]],[[183,439],[2,0]],[[185,439],[2,0]],[[187,439],[2,0]],[[189,439],[2,0]],[[191,439],[2,0]],[[193,439],[2,0]],[[195,439],[2,0]],[[197,439],[2,0]],[[199,439],[2,0]],[[201,439],[2,0]],[[203,439],[2,0]],[[205,439],[2,0]],[[207,439],[2,0]],[[209,439],[2,0]],[[211,439],[1,-3]],[[212,436],[2,-3]],[[214,433],[2,-3]],[[216,430],[2,-3]],[[218,427],[2,-3]],[[220,424],[2,-3]],[[222,421],[2,-3]],[[224,418],[2,-3]],[[226,415],[1,-3]],[[168,439],[2,3]],[[170,442],[2,3],[0,3],[0,4],[2,3],[2,3],[2,3],[2,3],[2,3],[1,3],[2,3],[2,3],[2,3],[-2,3]],[[187,482],[-2,0]],[[185,482],[1,-2]],[[164,439],[2,-3]],[[166,436],[2,-3],[2,-3]],[[170,430],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3]],[[180,391],[-1,-3]],[[211,439],[1,0]],[[212,439],[2,0]],[[214,439],[2,0]],[[216,439],[2,0]],[[218,439],[2,0]],[[220,439],[2,0]],[[222,439],[2,0]],[[224,439],[2,0]],[[226,439],[2,0]],[[228,439],[2,0]],[[230,439],[2,0]],[[232,439],[2,0]],[[234,439],[2,0]],[[236,439],[2,0]],[[238,439],[1,0]],[[239,439],[2,0]],[[241,439],[2,0]],[[243,439],[2,0]],[[245,439],[2,0]],[[247,439],[2,0]],[[249,439],[2,0]],[[251,439],[2,0]],[[253,439],[2,0]],[[255,439],[2,0]],[[257,439],[2,0]],[[259,439],[2,0]],[[261,439],[2,0]],[[263,439],[2,0]],[[265,439],[2,0]],[[267,439],[1,0]],[[268,439],[2,0]],[[270,439],[2,0]],[[272,439],[2,0]],[[274,439],[2,0]],[[276,439],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[288,439],[2,0],[2,0],[2,0],[1,0]],[[295,439],[2,0],[2,0],[2,0],[2,0],[2,-3]],[[305,436],[2,-3],[2,-3]],[[309,430],[2,-3]],[[307,430],[2,0]],[[305,430],[2,0]],[[303,430],[2,0]],[[301,430],[2,0]],[[299,430],[2,0]],[[297,430],[2,0]],[[295,430],[2,0]],[[294,430],[1,0]],[[292,430],[2,0]],[[290,430],[2,0]],[[288,430],[2,0]],[[286,430],[2,0]],[[284,430],[2,0]],[[282,430],[2,0]],[[280,433],[2,-3]],[[278,436],[2,-3]],[[276,439],[2,-3]],[[164,439],[-2,0],[-2,0],[-2,0],[-2,-3]],[[156,436],[-1,-3],[-2,-3]],[[153,430],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0]],[[127,415],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0]],[[102,415],[-2,0],[-2,0]],[[98,415],[1,1]],[[670,259],[0,1]],[[670,260],[2,3],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,-3],[2,-3],[2,-3]],[[670,260],[0,3],[0,3]],[[670,266],[-1,-2]],[[745,546],[-1,1]],[[745,546],[-1,0]],[[744,546],[0,1]],[[141,735],[-2,0]],[[139,735],[-2,0]],[[137,735],[-2,3]],[[135,738],[-2,3]],[[133,741],[-2,0]],[[131,741],[-2,0]],[[129,741],[-2,0]],[[127,741],[-1,0]],[[126,741],[-2,0]],[[124,741],[-2,3]],[[122,744],[-2,3]],[[120,747],[-2,3]],[[118,750],[-2,0]],[[116,750],[-2,0]],[[114,750],[-2,3]],[[112,753],[-2,0]],[[110,753],[-2,0]],[[108,753],[-2,0]],[[106,753],[-2,0]],[[104,753],[-2,0]],[[102,753],[-2,0]],[[100,753],[-2,3]],[[98,756],[-1,3]],[[97,759],[0,3]],[[97,762],[-2,3]],[[95,765],[-2,3]],[[93,768],[-2,3]],[[91,771],[0,3]],[[91,774],[2,4]],[[93,778],[2,3]],[[95,781],[2,3]],[[97,784],[1,3]],[[98,787],[2,3]],[[100,790],[2,3]],[[102,793],[2,3]],[[104,796],[2,3]],[[106,799],[2,3]],[[108,802],[2,3]],[[110,805],[2,3]],[[112,808],[2,3]],[[114,811],[2,3]],[[116,814],[2,3]],[[118,817],[2,3]],[[120,820],[2,3]],[[122,823],[2,3]],[[124,826],[2,3]],[[126,829],[1,3]],[[127,832],[2,3]],[[129,835],[2,3]],[[131,838],[2,0]],[[133,838],[2,0]],[[135,838],[2,0]],[[137,838],[0,4]],[[116,814],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0]],[[189,814],[2,0]],[[191,814],[2,-3]],[[193,811],[2,-3]],[[195,808],[0,-2]],[[141,735],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-1,-4],[-2,-3],[-2,-3],[-2,-3],[-2,-3]],[[118,698],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-4],[0,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3]],[[118,698],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-4],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3]],[[744,546],[1,3]],[[745,549],[1,3]],[[746,552],[-1,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,4],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3]],[[745,601],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[-1,4],[-2,3],[-2,3]],[[740,653],[0,1]],[[745,601],[-1,3],[-2,3],[-2,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3]],[[740,637],[0,3],[0,3]],[[740,643],[0,4],[0,3],[0,3]],[[744,546],[1,-3],[2,0],[2,-3]],[[749,540],[13,-1]],[[744,546],[-2,-3],[-2,0],[-2,0]],[[738,543],[-2,3],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0]],[[746,552],[1,3],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[765,555],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[790,555],[1,0]],[[738,543],[-2,0],[-2,0],[-2,-3]],[[732,540],[-2,-3],[-2,-3],[-2,-3]],[[726,531],[-2,-3],[-1,-1]],[[746,552],[1,1]],[[402,589],[2,0]],[[404,589],[2,-3],[2,0],[1,-3],[2,-4],[2,-3],[2,0],[2,-3],[2,-3],[2,-3]],[[402,589],[-2,3],[-2,3],[-2,3],[-2,0],[-2,3],[-2,3],[-2,0],[-2,3]],[[386,607],[0,3],[0,3],[0,3],[-2,3],[-2,3],[0,3],[0,3]],[[382,628],[3,1]],[[386,607],[1,0]],[[455,542],[1,-2]],[[456,540],[-2,3]],[[454,543],[0,3]],[[454,546],[-2,3]],[[452,549],[-2,3]],[[450,552],[1,-1]],[[621,295],[1,1]],[[622,296],[-2,3],[-2,0],[-2,3],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0]],[[604,302],[0,-2]],[[622,296],[2,0],[2,0],[2,0],[2,-3],[2,-3]],[[632,290],[-1,1]],[[619,470],[-1,-3]],[[618,467],[-2,-3]],[[616,464],[-2,0],[-2,0],[-2,3],[-2,0]],[[608,467],[-2,0]],[[618,467],[2,-3]],[[620,464],[2,-3],[2,-3],[2,-3],[0,-3]],[[194,540],[5,0]],[[199,540],[2,-3]],[[201,537],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-4],[-2,-3],[-1,-3],[-2,-3]],[[180,503],[-1,3]],[[199,540],[2,3],[2,3],[2,0],[2,0]],[[207,546],[2,3]],[[128,918],[-4,3],[-2,3]],[[122,924],[-2,3],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[0,-3],[0,-3],[0,-4],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3]],[[81,878],[-2,-3],[-2,-3],[-2,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-4],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3]],[[75,826],[2,-3]],[[77,823],[2,0],[2,-3],[2,-3]],[[83,817],[2,3],[2,3],[2,3],[2,0],[2,0],[2,0],[2,0],[1,0]],[[98,826],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,3],[2,0],[2,3],[2,3],[2,3],[2,0],[2,0],[1,0],[2,0],[2,0]],[[81,878],[2,-3],[2,-3],[2,-3],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,-3],[2,0],[2,0],[2,0],[2,0],[2,-3],[2,0],[2,0],[2,0],[2,-3]],[[120,860],[2,3],[2,0],[2,3],[1,0]],[[127,866],[0,4]],[[122,924],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[-2,3],[-2,3],[-2,3],[-2,3],[0,3],[0,3],[2,3],[2,3],[9,1]],[[98,826],[-1,-3],[-2,0],[-2,-3],[-2,0],[-2,0],[-2,-3],[-2,0],[-2,0]],[[83,817],[-2,0],[-2,3],[-2,3]],[[75,826],[2,3],[2,3],[2,3],[2,3],[2,3],[2,4],[2,3],[2,3],[2,3],[2,3],[2,3],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[137,838],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0]],[[158,838],[0,7]],[[158,845],[1,8]],[[560,555],[-2,3],[0,3],[0,3],[2,3],[2,3]],[[562,570],[2,0]],[[560,555],[-2,-3],[0,-3],[0,-3],[0,-3],[0,-3]],[[558,540],[1,-1]],[[639,455],[-2,0]],[[637,455],[-2,-3]],[[635,452],[-2,0],[-1,0]],[[632,452],[-4,1]],[[245,583],[2,0],[2,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3]],[[249,604],[-2,3],[-2,3]],[[709,452],[-2,3],[-2,0],[-2,0],[-2,3],[-2,0],[-2,0],[-2,3],[-2,0]],[[693,461],[-2,3]],[[691,464],[0,3],[0,3],[0,3]],[[691,473],[2,3],[2,0],[2,0],[2,-3],[2,-3],[2,-3]],[[682,452],[-2,-4],[-2,-3]],[[678,445],[-2,-3],[-2,-3]],[[674,439],[-2,-3]],[[672,436],[0,1]],[[691,464],[-2,3]],[[689,467],[0,-1]],[[691,473],[0,3],[-2,3]],[[689,479],[-1,3],[-2,3],[-2,3]],[[684,488],[-2,3]],[[682,491],[0,3],[0,3],[0,3],[0,3],[2,3],[2,3]],[[709,452],[-2,-4],[0,-3]],[[707,445],[-1,0]],[[707,445],[2,-3],[0,-3]],[[709,439],[0,-3],[2,-3]],[[711,433],[2,-3]],[[713,430],[2,-3],[0,-3]],[[715,424],[2,-3]],[[717,421],[1,0],[2,-3],[2,-3]],[[722,415],[2,0],[2,-3]],[[726,412],[2,-3]],[[728,409],[2,-3]],[[447,554],[-1,-2]],[[446,552],[2,0]],[[448,552],[2,0]],[[450,552],[0,2]],[[446,552],[-2,0],[-2,0],[-2,3]],[[314,621],[1,-2]],[[315,619],[2,0],[2,3],[2,0],[2,3],[1,3]],[[324,628],[2,0],[2,0],[2,0],[2,3]],[[332,631],[2,0],[2,0],[2,0],[2,3]],[[340,634],[2,3]],[[342,637],[2,3],[2,0],[2,3],[2,4],[1,3]],[[351,650],[2,0],[2,0],[2,0]],[[315,619],[-2,-3],[-2,-3],[-2,-3]],[[309,610],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,-3],[-2,3],[-1,3],[-2,0],[-2,0],[-2,0]],[[288,613],[-2,3]],[[62,409],[0,3],[-2,3],[0,3]],[[52,424],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0]],[[62,409],[2,-3],[2,-3],[0,-3],[2,-3]],[[68,397],[2,-3],[1,-3]],[[71,391],[1,-3]],[[68,397],[2,0],[1,0],[2,-3]],[[73,394],[2,0]],[[75,394],[2,0]],[[77,394],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[89,394],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[116,394],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[137,394],[2,3]],[[139,397],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[1,3],[2,3],[2,3]],[[160,430],[2,3],[2,3]],[[164,436],[2,3]],[[170,442],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[226,442],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[290,442],[2,0],[2,0],[1,0]],[[295,442],[2,0],[2,0],[2,0],[2,3],[2,0],[2,0],[2,0],[2,0]],[[311,445],[2,0],[2,3],[2,0],[2,0],[2,4],[2,0],[1,3],[2,3]],[[326,458],[2,0]],[[328,458],[2,3],[2,3]],[[332,464],[2,3],[2,3],[2,3],[2,3],[2,3]],[[342,479],[2,0]],[[344,479],[2,0]],[[346,479],[2,0]],[[348,479],[2,0]],[[350,479],[1,0]],[[351,479],[2,0]],[[353,479],[2,0]],[[355,479],[2,3]],[[357,482],[2,3]],[[359,485],[0,3]],[[359,488],[0,3]],[[73,394],[2,-3]],[[75,391],[2,3]],[[89,394],[2,3],[2,3],[2,3],[2,3],[1,3],[2,3],[2,3]],[[153,430],[2,0],[1,0],[2,0],[2,0]],[[160,430],[2,0],[2,0],[2,0],[2,0],[2,0]],[[170,430],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[205,430],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0]],[[216,430],[2,0],[2,0],[2,0],[2,0],[2,0]],[[226,430],[2,0],[2,0],[2,0],[2,0],[2,0]],[[236,430],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[282,430],[2,3],[2,3]],[[286,436],[2,3]],[[288,439],[2,3]],[[290,442],[2,3],[2,3],[1,4]],[[295,452],[2,3],[2,3],[2,3],[2,3],[2,0],[2,0]],[[307,464],[2,0],[2,0]],[[311,464],[2,0]],[[313,464],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0]],[[332,464],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0]],[[353,464],[2,0],[2,0]],[[357,464],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[377,464],[2,0],[1,0],[2,0],[2,0]],[[384,464],[2,0]],[[386,464],[2,0],[2,0],[2,0],[2,0],[2,0]],[[396,464],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0]],[[413,464],[2,0],[2,0]],[[417,464],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[431,464],[2,0],[2,0],[1,0],[2,0],[2,0]],[[440,464],[2,0],[2,0]],[[444,464],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,3],[2,0],[2,0],[2,0],[2,0],[2,0]],[[485,467],[0,-9]],[[156,436],[2,0],[2,0],[2,0],[2,0]],[[164,436],[2,0]],[[166,436],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0]],[[212,436],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[226,436],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[278,436],[2,0],[2,0],[2,0],[2,0]],[[286,436],[2,0],[2,0],[2,0],[2,0],[1,0]],[[295,436],[2,0],[2,0],[2,0],[2,0],[2,0]],[[305,436],[2,0],[2,0],[2,0]],[[311,436],[2,0],[2,0],[2,0]],[[375,436],[2,0],[2,0]],[[379,436],[1,3],[2,3],[2,3]],[[384,445],[2,3],[2,4],[2,3],[2,3],[2,3]],[[394,461],[2,3]],[[77,394],[2,3],[2,3],[2,3],[2,3],[2,0],[2,3],[2,0],[2,0],[2,0],[2,3],[1,3]],[[850,260],[-2,-3],[-2,-3]],[[846,254],[0,-4]],[[357,650],[2,-3],[2,0],[2,0],[2,0]],[[365,647],[2,-4],[2,0],[2,-3],[2,-3],[2,0],[2,0],[2,0]],[[379,637],[-1,3]],[[215,843],[-1,-2]],[[214,841],[0,4],[0,3],[0,3],[0,3],[0,3]],[[214,857],[-2,3]],[[209,866],[-2,0],[-2,0],[-2,0],[-2,0]],[[214,841],[2,4],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[1,3],[2,3],[2,3]],[[243,887],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[1,0]],[[214,857],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3]],[[220,896],[0,3],[-2,3]],[[218,902],[-2,3],[-2,4],[-2,3]],[[212,912],[-1,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0]],[[183,939],[-1,0]],[[182,939],[-8,-6],[-1,0]],[[215,843],[-5,17]],[[214,841],[-2,-3],[-1,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[0,-3],[-2,-3]],[[140,877],[-5,-5],[-2,-3],[-4,-3],[-2,0]],[[390,389],[0,2]],[[390,391],[0,3],[0,3],[0,3],[0,3],[2,3],[2,3],[0,3],[2,3],[2,3]],[[398,418],[1,2]],[[390,391],[2,0],[2,-3],[2,-3],[2,-4],[2,-3]],[[400,369],[0,1]],[[334,421],[2,0]],[[336,421],[-2,3],[-2,3],[-2,0],[-2,0],[-2,0]],[[326,427],[-2,0],[-1,0],[-2,0],[-2,0]],[[319,427],[-2,-3]],[[317,424],[1,-3]],[[336,421],[2,3],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0]],[[319,427],[-2,0],[-2,0]],[[315,427],[-2,0],[-2,0]],[[740,643],[-3,0]],[[740,653],[2,3]],[[742,656],[0,3],[2,3]],[[744,662],[0,3]],[[744,665],[1,3],[2,2]],[[742,656],[2,3],[1,0],[2,0],[2,3],[2,0],[2,0],[2,0],[2,3],[2,3],[2,3],[0,3],[0,3],[0,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[1,3]],[[774,701],[-4,4]],[[740,653],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,3],[2,3],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0]],[[830,659],[1,-3]],[[477,637],[-2,3]],[[475,640],[-2,3],[-2,4],[-2,3],[-2,3],[-2,3],[-1,0],[-2,0],[-2,3],[-2,3],[-2,0],[-2,0]],[[454,662],[-2,0]],[[475,640],[0,3],[0,4],[-2,3],[-2,3],[0,3],[0,3],[0,3],[0,3],[0,3]],[[471,668],[1,0]],[[479,640],[2,-3],[2,-3],[2,-3],[2,0],[2,-3],[2,0]],[[491,628],[-1,1]],[[226,415],[2,3],[2,3],[2,3]],[[232,424],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,-3],[2,-3]],[[226,415],[0,3]],[[226,418],[0,3]],[[226,421],[0,3]],[[226,424],[0,3]],[[226,427],[0,3]],[[226,430],[0,3]],[[226,433],[0,3]],[[226,436],[0,3]],[[226,439],[0,3]],[[226,442],[0,3]],[[226,445],[0,3]],[[226,448],[0,4]],[[226,452],[0,3]],[[226,455],[0,3]],[[226,458],[0,3]],[[226,461],[-2,3]],[[224,464],[-2,3]],[[222,467],[-2,3]],[[220,470],[-2,3]],[[218,473],[-2,3]],[[216,476],[-2,3]],[[214,479],[-2,3]],[[212,482],[0,1]],[[232,424],[2,3],[2,3]],[[309,430],[2,0]],[[311,430],[2,0]],[[313,430],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[350,430],[1,-3],[2,-3]],[[226,415],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-1,0],[-2,0]],[[699,528],[1,-1]],[[699,528],[2,3]],[[701,531],[2,0],[2,0]],[[705,531],[2,3],[2,0]],[[709,534],[2,0]],[[711,534],[2,3],[2,3]],[[715,540],[2,3],[1,0],[2,0],[2,0],[2,3]],[[699,528],[-2,-3],[-4,-6]],[[693,519],[0,3],[1,1]],[[879,422],[0,-1]],[[879,421],[-2,-3],[-2,-3],[-2,-3],[-2,-3]],[[871,409],[0,2]],[[879,421],[2,-3],[0,-3],[0,-3]],[[881,412],[2,0]],[[693,519],[-4,-3]],[[705,531],[2,0]],[[707,531],[0,-2]],[[875,379],[0,-1]],[[875,378],[-2,3],[0,4],[0,3],[0,3],[2,3],[2,3]],[[877,397],[1,1]],[[875,348],[2,-2]],[[875,351],[0,-3]],[[875,354],[0,-3]],[[875,357],[0,-3]],[[875,360],[0,-3]],[[875,363],[0,-3]],[[875,366],[0,-3]],[[875,369],[0,-3]],[[875,372],[0,-3]],[[875,375],[0,-3]],[[875,378],[0,-3]],[[454,302],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,-3]],[[436,299],[3,0]],[[460,293],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,4],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3]],[[460,339],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[2,4],[2,3]],[[464,388],[1,3],[0,3],[0,3],[2,3],[2,3],[2,3],[2,3],[2,3]],[[475,412],[2,3]],[[460,339],[2,3],[2,3],[1,3],[2,3],[2,3],[2,3],[2,3],[2,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,4],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3]],[[440,324],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0]],[[409,324],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0]],[[460,293],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0]],[[473,293],[2,-3],[2,-3],[2,-3]],[[479,284],[-1,-1]],[[473,293],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3]],[[572,278],[0,-2]],[[66,370],[0,2]],[[66,372],[-2,-3],[-2,-3],[0,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3]],[[52,348],[0,-3]],[[52,345],[0,-3]],[[52,342],[0,-3]],[[52,339],[0,-3]],[[52,336],[1,-3]],[[66,372],[0,3],[0,3],[0,3]],[[66,381],[2,4]],[[68,385],[2,3]],[[70,388],[1,3]],[[203,869],[2,3]],[[216,884],[2,3],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0]],[[379,637],[1,-3],[2,-3],[0,-3]],[[284,616],[-2,-3],[-2,-3],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0]],[[257,610],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0]],[[288,613],[2,-3],[2,-3],[2,-3],[1,-3]],[[295,601],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-4],[0,-3],[0,-3],[0,-3]],[[295,570],[0,-3],[0,-3],[0,-3],[0,-3]],[[295,558],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-4],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3]],[[295,482],[0,-3]],[[295,479],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3]],[[295,452],[0,-4],[0,-3],[0,-3]],[[295,442],[0,-3]],[[295,439],[0,-3]],[[295,436],[0,-3],[0,-3]],[[295,430],[0,-3],[0,-3],[0,-3]],[[295,421],[1,-2]],[[286,616],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[0,-3],[0,-3],[0,-4],[0,-3],[0,-3]],[[268,573],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3]],[[268,549],[0,-3],[0,-3],[0,-3],[0,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[0,-3],[2,-4],[2,-3],[0,-3],[2,-3],[0,-3],[2,-3],[2,-3],[0,-3],[2,-3],[2,-3],[1,-3]],[[295,601],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-4],[2,-3],[0,-3],[0,-3]],[[311,570],[0,-3],[0,-3],[0,-3],[0,-3]],[[311,558],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-4],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3]],[[311,479],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3]],[[311,464],[0,-3],[0,-3]],[[311,458],[0,-3],[0,-3],[0,-4],[0,-3]],[[311,445],[0,-3],[0,-3],[0,-3]],[[311,436],[0,-3],[0,-3]],[[311,430],[0,-3]],[[295,482],[2,-3]],[[297,479],[2,-3]],[[299,476],[2,-3],[2,-3],[2,-3],[2,-3]],[[307,464],[2,-3],[2,-3]],[[309,610],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,-3],[2,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-4]],[[369,579],[-1,2]],[[456,540],[1,1]],[[249,604],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-4],[2,-3],[1,-3]],[[299,476],[2,0],[2,-3],[2,-3],[2,-3],[2,0],[2,-3]],[[313,464],[2,-3],[2,0],[2,0],[2,0],[2,0],[1,-3],[2,0]],[[328,458],[2,0],[2,0],[2,-3],[2,-3],[2,-4],[2,-3],[2,-3],[2,-3],[2,-3]],[[346,436],[2,-3],[2,-3]],[[257,610],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[1,-3],[2,-3],[2,-3],[2,-3],[2,-4],[2,-3],[2,-3],[2,-3],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0]],[[295,570],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[311,570],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,-3],[2,-3],[2,-3],[2,-3]],[[357,558],[2,0]],[[359,558],[2,0]],[[525,609],[-4,-2]],[[521,607],[-1,0],[-2,3],[-2,0],[-2,3],[-2,3],[-2,3],[-2,0]],[[508,619],[-2,0],[-2,0],[-2,3]],[[521,607],[-1,-3],[1,-3]],[[521,601],[2,0],[2,0],[2,0],[2,0],[2,-3],[2,-3],[2,0]],[[535,595],[1,-1]],[[521,601],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-4],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[1,-3],[2,-3]],[[550,555],[2,-3],[2,-3],[2,-3],[0,-3],[0,-3]],[[556,540],[0,-3]],[[556,537],[0,-3]],[[459,541],[1,-1]],[[460,540],[2,0]],[[462,540],[2,-1]],[[460,540],[-2,0],[-2,0]],[[749,540],[-2,0],[-2,0]],[[745,540],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0]],[[732,540],[-2,0],[-2,0],[-2,0]],[[726,540],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0]],[[709,534],[-2,-3]],[[745,540],[-1,-3],[-2,-3],[0,-3]],[[742,531],[2,-3],[1,0],[2,1]],[[585,486],[-2,-1]],[[583,485],[2,-3]],[[585,482],[2,-3],[0,-3],[2,-3],[2,-3],[0,-3]],[[591,467],[2,-3],[2,0],[2,0],[2,0]],[[599,464],[2,0],[2,0]],[[603,464],[5,3]],[[583,485],[-2,3],[-2,3],[-2,0],[-1,3],[-2,3],[-2,3],[-2,3]],[[570,503],[-1,0]],[[583,485],[0,-3]],[[583,482],[1,-2]],[[723,614],[1,-1]],[[724,613],[2,3]],[[726,616],[2,0],[2,0],[2,0],[2,0],[2,3],[2,3],[0,3],[0,3],[0,3],[0,3],[2,3]],[[724,613],[0,-3],[0,-3],[0,-3],[0,-3],[-2,-3],[-2,-3],[0,-3],[0,-3]],[[720,589],[-1,0]],[[436,299],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0]],[[425,299],[0,-2]],[[421,567],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,0]],[[433,552],[2,-3],[1,-3],[2,0],[2,-3],[2,0],[2,-3],[2,0]],[[446,540],[2,0],[2,0],[2,0],[2,0],[2,0]],[[433,552],[2,0],[1,0],[2,0],[2,3]],[[421,567],[-2,0]],[[419,567],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0]],[[386,567],[-2,-3],[-2,-3],[-2,-3],[-1,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3]],[[371,543],[-3,1]],[[421,567],[-2,-3],[-2,-3]],[[417,561],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-1,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,0]],[[398,534],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-4],[-2,-3],[-2,-3],[-1,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3]],[[371,491],[-2,-3]],[[369,488],[-2,0],[-2,0],[-2,0],[-2,0]],[[419,567],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-1,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3]],[[386,567],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,-3],[-2,-3]],[[365,561],[-2,-3],[-2,-3]],[[361,555],[-2,3]],[[417,561],[0,-3],[0,-3],[0,-3],[0,-3]],[[417,549],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-4]],[[417,512],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3]],[[417,464],[0,-3],[0,-3]],[[417,458],[0,-3]],[[417,455],[0,-1]],[[446,540],[2,-3],[2,-3],[2,0],[2,-3],[2,0],[2,-3],[2,0],[2,-3],[2,-3],[1,0],[2,0],[2,0],[2,0]],[[471,522],[2,2]],[[711,254],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,4],[0,3],[0,3]],[[711,327],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3]],[[711,378],[-1,1]],[[813,244],[0,3],[0,3],[0,4],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,4],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3]],[[813,244],[2,3],[2,3],[2,4],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[724,546],[2,-3],[0,-3]],[[726,540],[0,-3],[0,-3],[0,-3]],[[182,939],[0,3],[0,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,0],[-2,0],[-2,0],[-3,0]],[[183,939],[2,-3],[2,-3],[2,-3],[2,-3],[0,-3],[0,-3],[0,-3],[0,-3],[-2,-3]],[[189,912],[-2,0],[-2,-3],[-1,2]],[[454,662],[2,3],[2,3],[2,0],[2,0],[2,0],[1,0],[2,-3],[2,0],[2,3]],[[444,683],[2,3],[2,3]],[[462,540],[0,-3]],[[462,537],[2,-3]],[[464,534],[1,0],[2,0],[2,0],[0,2]],[[494,250],[0,4],[0,3],[0,3],[-2,3],[-1,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3]],[[589,294],[-2,-1]],[[587,293],[-2,0],[-2,0],[-2,0]],[[581,293],[-2,-3],[-2,-3],[-1,-3],[-2,-3],[-2,-3]],[[587,293],[2,3],[2,3],[2,3]],[[593,302],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0]],[[454,543],[-2,3],[-2,3],[-2,3]],[[460,540],[2,-3]],[[464,534],[1,-3],[2,-3],[2,-3],[2,-3]],[[423,650],[2,3],[2,3]],[[427,656],[2,3],[2,3],[2,3],[2,3],[1,3],[2,3],[2,3],[2,3],[2,3]],[[427,656],[0,3],[0,3],[0,3],[0,3],[-2,3],[-2,3]],[[486,458],[-1,0]],[[485,467],[2,3],[2,3],[2,3],[1,3],[2,0],[1,-4]],[[486,458],[-1,3]],[[494,452],[0,1]],[[485,467],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,4],[-2,3],[-2,3]],[[127,372],[2,0]],[[129,372],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[155,372],[1,-1]],[[129,372],[-2,3],[-1,3],[-2,3],[-2,4],[-2,3],[-2,3],[-2,3]],[[75,391],[-2,0]],[[73,391],[-2,0]],[[317,424],[-2,3]],[[212,860],[0,-3],[-1,-3],[-2,0],[-2,-3],[-2,0],[-2,-3],[-2,0],[-2,0],[-2,-3],[-2,0],[-2,0],[-2,0],[-2,-4],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,-3],[-2,-3]],[[160,835],[-2,3]],[[425,299],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,4],[-2,3]],[[201,537],[2,3],[2,3],[2,3]],[[180,503],[2,-3],[1,-3],[2,-3],[0,-3],[0,-3],[0,-3],[0,-3]],[[52,348],[0,3]],[[52,351],[0,3]],[[52,354],[0,3]],[[52,357],[0,3]],[[52,360],[2,3]],[[54,363],[2,3]],[[56,366],[2,3]],[[58,369],[2,3]],[[60,372],[2,3]],[[62,375],[2,3]],[[64,378],[2,3]],[[282,418],[2,3],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0]],[[498,616],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-4],[0,-3],[0,-3]],[[491,625],[0,3]],[[508,619],[2,-3],[2,-3],[0,-3],[0,-3],[2,-3],[2,-3],[2,-3],[2,-3],[1,-3],[2,-3],[2,-3],[2,-3],[2,-4],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3]],[[545,555],[2,-3],[1,-3],[2,-3],[2,-3],[2,-3]],[[554,540],[2,-3]],[[791,418],[-1,0]],[[790,418],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0]],[[776,418],[1,3]],[[790,418],[2,-3]],[[792,415],[2,-3],[2,-3],[2,-3],[2,-3],[1,-3]],[[801,400],[2,-3]],[[803,397],[2,-3],[2,-3],[0,-3],[0,-3],[0,-4],[0,-3]],[[807,378],[0,-3],[0,-3],[0,-3],[0,-3]],[[807,366],[1,1]],[[792,415],[2,0],[2,-3],[2,0],[2,-3],[1,0],[2,-3],[2,-3],[2,-3]],[[807,400],[2,-3]],[[809,397],[2,0],[2,0],[2,-3],[2,0]],[[817,394],[1,1]],[[155,372],[1,3],[2,3],[2,3],[2,4],[2,3],[2,3],[2,3]],[[168,394],[2,0],[2,0],[2,0],[2,0],[2,0],[2,-3]],[[155,372],[-2,3],[-2,3],[-2,3],[-2,4],[-2,3],[-2,3],[-2,3]],[[141,394],[-2,3]],[[139,397],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3]],[[492,564],[2,-3]],[[691,473],[-2,-3]],[[689,470],[0,-3]],[[379,329],[1,1]],[[380,330],[0,3],[0,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3]],[[392,354],[-1,-1]],[[380,330],[2,0],[2,0],[2,0],[2,0],[2,-3],[2,-3],[2,-3],[2,3]],[[517,530],[-1,1]],[[516,531],[0,-3]],[[516,528],[0,-3],[0,-3],[0,-3],[0,-3],[2,-4],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3]],[[518,485],[-2,1]],[[516,528],[2,-3],[2,0],[1,0],[2,0],[2,0],[2,0],[2,-3],[2,-3]],[[531,519],[1,-1]],[[212,549],[2,0]],[[214,549],[2,0]],[[216,549],[2,0]],[[218,549],[2,0]],[[220,549],[2,0]],[[222,549],[2,0]],[[224,549],[2,0]],[[226,549],[2,0]],[[228,549],[2,0]],[[230,549],[2,0]],[[232,549],[2,0]],[[234,549],[2,0]],[[236,549],[2,0]],[[238,549],[1,0]],[[239,549],[2,0]],[[241,549],[2,0]],[[243,549],[2,0]],[[245,549],[2,0]],[[247,549],[2,0]],[[249,549],[2,0]],[[251,549],[2,0]],[[253,549],[2,0]],[[255,549],[2,0]],[[257,549],[2,0]],[[259,549],[2,0]],[[261,549],[2,0]],[[263,549],[2,0]],[[265,549],[2,0]],[[267,549],[1,0]],[[268,549],[2,0]],[[270,549],[2,0]],[[272,549],[2,0]],[[274,549],[2,0]],[[276,549],[2,0]],[[278,549],[2,0]],[[280,549],[2,0]],[[282,549],[2,3]],[[284,552],[2,3]],[[286,555],[2,3]],[[288,558],[2,0]],[[290,558],[2,0]],[[292,558],[2,0]],[[294,558],[1,0]],[[295,558],[2,0]],[[297,558],[2,0]],[[299,558],[2,0]],[[301,558],[2,0]],[[303,558],[2,0]],[[305,558],[2,0]],[[307,558],[2,0]],[[309,558],[2,0]],[[311,558],[2,0]],[[313,558],[2,0]],[[315,558],[2,0]],[[317,558],[2,0]],[[319,558],[2,0]],[[321,558],[2,0]],[[323,558],[1,0]],[[324,558],[2,0]],[[326,558],[2,0]],[[328,558],[2,0]],[[330,558],[2,0]],[[332,558],[2,0]],[[334,558],[2,0]],[[336,558],[2,0]],[[338,558],[2,0]],[[340,558],[2,0]],[[342,558],[2,0]],[[344,558],[2,0]],[[346,558],[2,0]],[[348,558],[2,0]],[[350,558],[1,0]],[[351,558],[2,0]],[[353,558],[2,0]],[[355,558],[2,0]],[[209,549],[2,-3]],[[211,546],[1,-3]],[[212,543],[2,-3]],[[214,540],[2,-3]],[[216,537],[2,-3]],[[218,534],[2,-3]],[[220,531],[2,-3],[2,-3],[2,-3],[2,-3],[0,-3],[0,-4],[0,-3],[0,-3],[0,-3]],[[228,503],[2,-3]],[[230,500],[2,-3]],[[232,497],[2,3]],[[234,500],[2,0]],[[236,500],[-1,3]],[[226,506],[2,-3]],[[224,509],[2,-3]],[[222,512],[2,-3]],[[220,516],[2,-4]],[[220,519],[0,-3]],[[220,522],[0,-3]],[[220,525],[0,-3]],[[220,528],[0,-3]],[[220,531],[0,-3]],[[652,524],[-1,-2]],[[649,519],[2,3]],[[649,516],[0,3]],[[647,512],[2,4]],[[645,512],[2,0]],[[643,512],[2,0]],[[641,512],[2,0]],[[639,512],[2,0]],[[637,512],[2,0]],[[635,516],[2,-4]],[[633,519],[2,-3]],[[632,522],[1,-3]],[[630,525],[2,-3]],[[628,525],[2,0]],[[626,528],[2,-3]],[[624,531],[2,-3]],[[626,534],[-2,-3]],[[628,535],[-2,-1]],[[628,525],[2,-3],[2,-3],[1,-3],[2,-4]],[[635,512],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[-2,-3]],[[633,488],[-1,0],[-2,3],[-2,3],[-1,1]],[[635,512],[2,-3],[2,-3],[2,-3],[0,-3],[0,-3],[0,-3],[0,-3]],[[641,491],[1,-1]],[[73,391],[2,3]],[[137,394],[2,0],[2,0]],[[141,394],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[951,546],[1,3]],[[952,549],[-2,3]],[[950,552],[-2,3],[-2,3],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0]],[[910,558],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0]],[[898,558],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,-3]],[[950,552],[-2,0],[-2,0],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,-3],[-2,0]],[[915,549],[1,-3]],[[952,549],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[1,3],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[989,579],[0,2]],[[218,899],[0,3]],[[212,912],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0]],[[160,835],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,-3],[2,-3],[1,-3],[2,-3],[2,-3],[2,-3],[2,-3]],[[187,817],[2,-3]],[[185,817],[2,0]],[[183,817],[2,0]],[[182,820],[1,-3]],[[180,820],[2,0]],[[178,823],[2,-3]],[[176,823],[2,0]],[[174,826],[2,-3]],[[172,826],[2,0]],[[170,826],[2,0]],[[168,829],[2,-3]],[[166,829],[2,0]],[[164,832],[2,-3]],[[162,832],[2,0]],[[160,835],[2,-3]],[[790,555],[2,3],[2,3],[2,3],[2,0],[2,0],[1,0],[2,0],[2,3],[2,3]],[[807,570],[2,0]],[[809,570],[1,-1]],[[807,570],[2,3]],[[809,573],[2,3],[2,3],[2,0]],[[815,579],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[829,579],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[842,579],[2,0],[2,4]],[[846,583],[2,0]],[[848,583],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,-4]],[[861,579],[0,-1]],[[774,409],[0,-3],[0,-3],[-1,-3]],[[773,400],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0]],[[763,400],[0,1]],[[774,409],[2,3],[0,3],[0,3]],[[763,400],[-2,0],[-2,-3]],[[759,397],[-2,0]],[[757,397],[-2,3]],[[755,400],[-2,0]],[[753,400],[-2,0]],[[773,400],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[786,400],[2,-3]],[[788,397],[2,-3],[2,-3],[2,-3],[2,-3],[2,-4],[2,-3],[1,-3],[2,-3],[2,-3],[2,-3]],[[786,400],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0]],[[801,400],[2,0],[2,0],[2,0]],[[761,385],[2,-4],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[1,-3],[2,-3],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0]],[[807,360],[2,-3]],[[805,363],[2,-3]],[[803,366],[2,-3]],[[801,369],[2,-3]],[[800,372],[1,-3]],[[798,375],[2,-3]],[[796,378],[2,-3]],[[794,381],[2,-3]],[[792,385],[2,-4]],[[790,388],[2,-3]],[[788,391],[2,-3]],[[786,394],[2,-3]],[[784,397],[2,-3]],[[782,397],[2,0]],[[780,397],[2,0]],[[778,397],[2,0]],[[776,397],[2,0]],[[774,397],[2,0]],[[773,397],[1,0]],[[771,397],[2,0]],[[769,397],[2,0]],[[767,397],[2,0]],[[765,397],[2,0]],[[763,397],[2,0]],[[761,397],[2,0]],[[759,397],[2,0]],[[749,403],[-2,0],[-2,3]],[[745,406],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0]],[[745,406],[-1,3],[-2,3],[-2,0],[-2,3],[-2,3]],[[736,418],[1,1]],[[784,397],[2,0],[2,0]],[[809,570],[2,3],[2,3],[2,3]],[[829,579],[0,-2]],[[809,570],[0,3]],[[809,573],[0,3],[0,3],[0,4],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3]],[[809,610],[0,3],[0,3],[0,3],[0,3],[0,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,4],[2,3],[2,3],[2,3]],[[829,656],[1,3]],[[212,482],[-1,-3],[-2,0],[-2,3]],[[207,482],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0]],[[207,482],[0,3],[0,3],[0,3],[0,3],[0,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[0,1]],[[212,482],[2,0],[2,3],[2,3],[2,3],[2,3],[2,3],[2,0],[2,0],[2,0],[2,0]],[[353,424],[0,3]],[[353,427],[0,3]],[[353,430],[0,3]],[[353,433],[2,3]],[[355,436],[2,3]],[[357,439],[0,1]],[[353,433],[0,3]],[[353,436],[0,3]],[[353,439],[0,3]],[[353,442],[0,3]],[[353,445],[0,3]],[[353,448],[0,4]],[[353,452],[0,3]],[[353,455],[0,3]],[[353,458],[0,3]],[[353,461],[0,3]],[[353,464],[0,3]],[[353,467],[0,3]],[[353,470],[0,3]],[[353,473],[0,3]],[[353,476],[2,3]],[[371,543],[2,-3],[2,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-4],[-2,-3],[0,-3],[-2,-3],[0,-3],[0,-3],[0,-3],[0,-3]],[[371,543],[0,3],[0,3],[-2,3],[-2,3],[-2,0],[-2,0],[-2,0]],[[807,360],[0,3],[0,3]],[[821,348],[2,3],[2,3]],[[825,354],[-1,1]],[[873,348],[2,0]],[[871,348],[2,0]],[[869,348],[2,0]],[[867,348],[2,0]],[[865,348],[2,0]],[[863,348],[2,0]],[[861,348],[2,0]],[[859,348],[2,0]],[[857,348],[2,0]],[[839,369],[1,0]],[[840,369],[2,-3],[2,-3]],[[844,363],[-2,-3]],[[840,369],[2,3],[2,3],[2,0]],[[846,375],[2,3],[2,3],[2,4]],[[877,397],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0]],[[859,397],[-2,-3],[-1,-3],[-2,-3],[-2,-3]],[[877,397],[0,3],[-2,3]],[[875,403],[-2,3],[-2,3]],[[875,403],[2,3],[2,3],[2,3]],[[480,427],[1,0]],[[481,427],[0,-3],[-2,-3],[-2,-3],[0,-3]],[[481,427],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,4],[2,3],[2,3]],[[475,412],[-2,3],[-2,0],[-2,0],[-2,0],[-2,0],[-1,3]],[[464,418],[-2,3],[-2,3],[-2,3],[-2,0],[-2,0],[-2,0],[-2,0],[-2,3],[-2,0],[-2,3]],[[444,433],[-2,0],[-2,3],[-2,0],[-2,3],[-1,0],[-2,0]],[[433,439],[-2,0],[-2,0]],[[429,439],[-2,3],[-2,3],[-2,3]],[[464,388],[-2,0]],[[462,388],[0,2]],[[464,418],[-1,2]],[[477,415],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[1,3],[2,3],[2,3],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[514,445],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[566,445],[2,0],[2,0]],[[587,445],[2,0],[2,0],[2,0],[2,0]],[[595,445],[1,-1]],[[477,415],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[533,415],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[572,415],[2,0],[2,0],[1,0]],[[577,415],[2,0],[2,0],[2,0],[2,0]],[[585,415],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0]],[[610,415],[2,0],[2,-3],[2,-3],[2,-3]],[[639,369],[1,3]],[[640,371],[-1,-2]],[[639,369],[2,-3],[2,-3]],[[647,363],[2,-3]],[[649,360],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0]],[[676,360],[2,3],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0]],[[691,363],[2,3],[0,3],[-2,3]],[[886,555],[0,3],[-1,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3]],[[873,579],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0]],[[898,558],[2,-3],[0,-3]],[[900,552],[-2,1]],[[603,464],[1,-1]],[[562,570],[-2,0],[-2,0],[-2,3],[-2,0],[-2,3],[-2,3],[-2,4],[-1,0],[-2,3],[-2,3],[-2,0],[-2,3],[-2,0],[-2,3]],[[180,391],[2,3],[1,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3]],[[295,421],[2,3],[2,3],[2,3]],[[357,439],[0,3]],[[357,442],[0,3]],[[357,445],[0,3]],[[357,448],[0,4]],[[357,452],[0,3]],[[357,455],[0,3]],[[357,458],[0,3]],[[357,461],[0,3]],[[357,464],[0,3]],[[357,467],[0,3]],[[357,470],[0,3]],[[357,473],[0,3]],[[357,476],[0,3]],[[357,479],[0,3]],[[379,461],[1,0],[2,0],[2,0]],[[384,461],[2,0],[2,0],[2,0],[2,0],[2,0]],[[394,461],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0]],[[415,461],[2,-3]],[[417,458],[2,-3]],[[419,455],[2,-3],[2,-4]],[[369,488],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0]],[[384,488],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,-3]],[[400,485],[2,-3],[2,-3],[2,-3],[2,-3],[1,-3],[2,-3],[2,-3]],[[413,464],[2,-3]],[[342,479],[-2,0]],[[340,479],[-2,0]],[[338,479],[-2,0]],[[336,479],[-2,0]],[[334,479],[-2,0]],[[332,479],[-2,0]],[[330,479],[-2,0]],[[328,479],[-2,0]],[[326,479],[-2,0]],[[324,479],[-1,0]],[[323,479],[-2,0]],[[321,479],[-2,0]],[[319,479],[-2,0]],[[317,479],[-2,0]],[[315,479],[-2,0]],[[313,479],[-2,0]],[[311,479],[-2,0]],[[309,479],[-2,0]],[[307,479],[-2,0]],[[305,479],[-2,0]],[[303,479],[-2,0]],[[301,479],[-2,0]],[[299,479],[-2,0]],[[297,479],[-2,0]],[[295,479],[-1,0]],[[294,479],[-2,0]],[[292,479],[-2,0]],[[290,479],[-2,0]],[[288,479],[-2,0]],[[286,479],[-2,0]],[[284,479],[-2,0]],[[282,479],[-2,0]],[[280,479],[-2,3]],[[278,482],[-2,3]],[[276,485],[-2,3]],[[274,488],[-2,3]],[[272,491],[-2,0]],[[270,491],[-2,0]],[[268,491],[-1,0]],[[267,491],[-2,0]],[[265,491],[-2,0]],[[263,491],[-2,0]],[[261,491],[-2,0]],[[259,491],[-2,0]],[[257,491],[-2,0]],[[255,491],[-2,0]],[[253,491],[-2,0]],[[251,491],[-2,0]],[[249,491],[-2,0]],[[247,491],[-2,0]],[[245,491],[-2,0]],[[243,491],[-2,3]],[[241,494],[-2,0]],[[239,494],[-1,3]],[[238,497],[-2,3]],[[365,561],[0,3],[2,3],[0,3],[0,3],[0,3],[2,3]],[[382,599],[0,-1]],[[382,598],[-2,-3],[-1,-3],[-2,0],[-2,-3],[-2,-3],[-2,-3],[-2,-4]],[[382,598],[2,0],[2,3],[0,3],[0,3]],[[392,354],[2,3],[2,3],[0,3]],[[396,363],[2,3]],[[400,421],[-2,-3]],[[396,427],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[1,3]],[[409,448],[2,4],[2,3],[2,0],[2,0]],[[400,421],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0]],[[415,421],[0,-2]],[[415,421],[0,3],[0,3],[0,3],[0,3],[0,3],[2,3],[2,3],[2,3],[2,3]],[[415,421],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0]],[[440,421],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3]],[[417,455],[2,0]],[[433,439],[-1,3]],[[429,439],[2,-3],[2,-3],[2,-3],[1,-3],[2,-3],[2,-3]],[[423,448],[0,4],[2,3],[2,3],[2,3],[2,3]],[[440,464],[2,-3]],[[442,461],[-1,-3]],[[444,433],[2,1]],[[566,452],[2,0],[2,0],[2,0]],[[572,452],[2,0],[2,0],[1,0],[2,0],[2,-4],[2,-3]],[[510,452],[2,-4],[2,-3]],[[514,445],[2,-3],[2,-3],[2,-3],[1,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3]],[[533,415],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[1,-3],[2,-3],[2,-3],[2,-4],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[1,-3],[2,-3]],[[579,342],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-4],[2,-3],[2,-3],[2,-3],[2,-3],[1,-3]],[[444,464],[-2,-3]],[[494,452],[2,3],[0,3],[2,3]],[[498,461],[0,1]],[[497,557],[-1,1]],[[506,558],[2,0]],[[508,558],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3]],[[543,522],[2,-3],[0,-3],[2,-4],[1,-3]],[[548,509],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[1,-3]],[[577,464],[2,-3]],[[579,461],[2,1]],[[581,462],[2,2],[2,-3],[2,-3],[2,-3],[2,-3]],[[591,452],[2,-4]],[[593,448],[2,-3]],[[595,445],[2,-3]],[[597,442],[2,-3],[2,-3]],[[601,436],[0,-3],[0,-3],[0,-3],[0,-3]],[[618,406],[2,3]],[[620,409],[2,0],[2,0],[2,0],[2,0]],[[628,409],[2,0]],[[630,409],[2,3]],[[632,412],[0,3]],[[632,415],[1,3],[2,3],[2,3],[2,3],[2,3],[2,3]],[[643,433],[-5,5]],[[498,461],[2,3],[2,0],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,0],[2,3]],[[518,485],[2,3],[1,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,0]],[[535,509],[2,0],[2,0]],[[539,509],[0,1]],[[531,519],[0,-3],[2,-4],[2,-3]],[[539,509],[2,3],[0,4],[2,3],[0,3]],[[539,509],[2,0],[2,0],[2,0],[2,0],[1,0]],[[548,509],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,-3],[2,-3],[2,3],[2,-3]],[[539,509],[2,-3],[2,-3],[2,-3],[2,-3],[1,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[0,-3],[0,-3]],[[572,452],[0,-4],[0,-3]],[[572,445],[0,-3],[0,-3],[0,-3]],[[572,436],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3]],[[572,415],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-4],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3],[2,-3],[2,-3],[1,-3],[2,-3],[2,-3]],[[581,345],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-4],[2,-3],[2,-3],[1,-3]],[[604,308],[0,-3],[0,-3]],[[543,522],[2,3],[2,3],[1,3],[2,3],[2,3]],[[552,537],[2,3]],[[554,540],[2,0]],[[556,540],[2,0]],[[554,220],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[2,4],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3]],[[558,531],[1,0]],[[556,537],[2,3]],[[558,531],[2,-3],[-2,-3],[2,-3],[2,-3],[2,-3],[2,-4],[2,0],[2,-3],[0,-3],[0,-3]],[[572,278],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,4],[0,3],[0,3],[0,3]],[[572,330],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[2,3],[2,3],[1,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,4],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3]],[[577,415],[0,3],[0,3],[0,3],[0,3]],[[577,427],[0,3],[2,3],[2,3],[2,3],[2,3],[2,3]],[[587,445],[2,3]],[[589,448],[-1,0]],[[572,330],[2,3],[2,3],[1,3],[2,3]],[[579,342],[2,3]],[[581,345],[2,3],[2,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,4],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3]],[[585,415],[0,3],[0,3],[0,3],[0,3],[0,3],[2,3],[2,3],[2,3]],[[591,439],[2,3],[2,3]],[[581,293],[2,3],[2,3],[2,3],[2,0],[2,0],[2,0]],[[583,482],[2,0]],[[591,467],[0,-3],[0,-3],[0,-3],[0,-3],[0,-3]],[[583,482],[-2,-3],[-2,-3],[-2,-3],[0,-3],[0,-3],[0,-3]],[[589,448],[2,0],[2,0]],[[589,448],[-2,4],[-2,3],[-2,3],[-2,0],[-2,3]],[[597,442],[2,0]],[[599,442],[-1,1]],[[591,452],[2,3],[2,3],[2,3],[2,3]],[[599,442],[2,-3],[0,-3]],[[606,415],[1,1]],[[616,464],[2,0],[2,0]],[[604,308],[0,3],[0,3],[2,3],[2,4],[2,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3]],[[610,375],[0,3],[0,3],[0,4],[0,3],[0,3],[0,3],[2,3],[2,3],[2,3],[2,3]],[[604,302],[2,3],[2,3],[2,3],[2,3],[2,3],[0,4],[0,3],[0,3],[0,3]],[[614,330],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[1,3],[2,3]],[[635,363],[2,3],[2,3]],[[614,330],[0,3],[0,3],[0,3],[0,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3]],[[628,363],[2,3],[2,3],[1,3],[2,3]],[[635,375],[2,3]],[[637,378],[2,3]],[[639,381],[1,2]],[[620,409],[0,3],[0,3]],[[620,415],[0,2]],[[618,406],[2,0],[2,0]],[[622,406],[2,0],[2,0],[2,0],[2,0],[2,0]],[[632,406],[0,1]],[[622,406],[2,-3],[2,-3],[2,-3],[2,0],[2,-3],[1,-3],[2,-3],[2,-3],[2,-4]],[[620,415],[2,0],[2,0],[2,-3],[2,-3]],[[630,409],[2,-3]],[[631,453],[1,-1]],[[632,452],[1,-4],[2,-3],[2,-3],[2,-3]],[[639,439],[-2,-3],[-2,-3],[-2,-3],[-1,-3],[0,-3],[0,-3],[0,-3],[0,-3]],[[632,412],[0,-3],[0,-3]],[[635,452],[2,-4],[2,0],[2,0],[2,0]],[[670,439],[2,-3]],[[676,439],[2,-3]],[[678,436],[2,-3]],[[680,433],[2,-3]],[[682,430],[2,-3],[2,-3],[2,-3]],[[688,421],[1,-3]],[[689,418],[2,-3],[2,-3]],[[693,412],[0,-1]],[[639,439],[2,-3],[2,-3]],[[632,290],[1,-3],[2,-3],[2,-3],[0,-3]],[[637,278],[0,-1]],[[632,290],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3]],[[632,317],[1,4],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[0,3],[0,3],[0,3],[0,3],[0,3]],[[647,357],[2,3]],[[649,360],[0,-1]],[[632,317],[0,4],[0,3],[0,3],[0,3],[0,3],[1,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3]],[[632,406],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-4],[2,-3],[2,-3]],[[680,375],[2,-3]],[[682,372],[0,2]],[[637,278],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,-3],[2,-3],[2,-3]],[[668,269],[0,1]],[[637,372],[0,3],[0,3]],[[643,369],[2,-3],[2,-3]],[[640,469],[1,-2],[2,0],[2,0],[2,0],[2,-3],[2,-3]],[[651,461],[0,-3],[0,-3],[0,-3],[0,-4],[0,-3]],[[651,461],[2,-3],[0,-3],[2,-3]],[[655,452],[2,0],[2,0]],[[659,452],[-1,2]],[[659,452],[2,0],[1,-4],[2,-3]],[[668,445],[2,0]],[[670,445],[2,0],[2,0],[2,0],[2,0]],[[678,445],[2,0]],[[680,445],[2,0],[2,0],[2,0],[2,0]],[[688,445],[1,0],[2,0],[2,0]],[[693,445],[2,0],[2,0],[2,0]],[[699,445],[2,-3]],[[701,442],[2,0],[2,3]],[[705,445],[2,0]],[[659,452],[2,3]],[[661,455],[0,3]],[[661,458],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,0],[-2,0]],[[637,488],[-2,0],[-2,0]],[[688,445],[-1,-2]],[[639,381],[2,4],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,-4],[2,-3],[2,-3]],[[674,375],[1,-2]],[[651,445],[2,3],[2,4]],[[689,439],[2,3],[2,0],[2,0]],[[695,442],[2,0],[2,0],[2,0]],[[662,439],[2,-3]],[[664,436],[2,-3]],[[666,433],[2,-3]],[[668,430],[2,0],[2,0],[2,0]],[[674,430],[2,0],[2,0],[2,0],[2,0]],[[682,430],[2,0]],[[684,430],[2,0],[2,0],[1,0],[2,0]],[[691,430],[2,0]],[[693,430],[2,0],[2,0]],[[697,430],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[653,442],[1,1]],[[651,522],[2,-3]],[[653,519],[2,0]],[[655,519],[2,0]],[[657,519],[2,-3],[2,-4],[1,-3],[2,0],[2,0],[2,0]],[[668,509],[2,0]],[[645,537],[0,4]],[[647,537],[-2,0]],[[649,534],[-2,3]],[[651,531],[-2,3]],[[653,528],[-2,3]],[[655,525],[-2,3]],[[657,522],[-2,3]],[[655,519],[2,3]],[[657,519],[2,0],[2,0],[1,0],[2,0],[2,0]],[[666,519],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[680,519],[2,0],[2,0]],[[684,519],[-1,2]],[[643,488],[-2,3]],[[645,485],[-2,3]],[[647,482],[-2,3]],[[649,479],[-2,3]],[[651,476],[-2,3]],[[653,473],[-2,3]],[[655,470],[-2,3]],[[657,467],[-2,3]],[[659,464],[-2,3]],[[661,461],[-2,3]],[[661,458],[0,3]],[[661,455],[1,3]],[[662,458],[2,-3],[2,-3]],[[666,452],[-2,-2]],[[661,540],[1,0]],[[662,540],[2,-3],[2,-3],[0,-3]],[[666,531],[0,-3],[0,-3],[0,-3],[0,-3]],[[666,519],[0,-3],[0,-4],[2,-3]],[[662,540],[2,0],[2,0],[2,-3],[2,-3],[2,-3]],[[672,531],[2,-3],[2,-3],[2,-3],[2,-3]],[[684,519],[2,0],[2,0],[1,-3]],[[668,269],[2,-3]],[[670,266],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,4],[0,3],[0,3],[0,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3]],[[686,354],[2,3],[1,3]],[[689,360],[2,3]],[[691,372],[-2,3],[-1,0],[-2,0],[-2,0]],[[684,375],[-2,0]],[[682,375],[-2,0]],[[680,375],[-2,0],[-2,0],[-2,0]],[[670,509],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3]],[[684,488],[2,0],[2,0]],[[688,488],[3,3],[1,1]],[[671,437],[-1,-1]],[[670,436],[2,0]],[[672,436],[2,0]],[[674,436],[0,2]],[[674,436],[2,0],[2,0]],[[678,436],[2,0]],[[680,436],[2,0],[2,0],[2,0],[2,0]],[[688,436],[1,0],[2,0],[2,0],[2,0],[2,0]],[[697,436],[2,0],[2,0],[2,0],[2,0]],[[711,427],[2,-3]],[[713,424],[0,-3]],[[713,421],[-2,0]],[[672,436],[0,3]],[[672,439],[0,3],[-2,3]],[[670,445],[-2,3]],[[668,448],[-2,4]],[[662,458],[-1,3]],[[688,421],[-2,-3]],[[686,418],[-2,1]],[[672,436],[2,-3]],[[674,433],[0,-3]],[[674,430],[0,-3]],[[674,427],[0,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3]],[[684,409],[0,-3]],[[684,406],[-1,-1]],[[695,442],[1,0]],[[670,436],[-2,0],[-2,0]],[[666,436],[-2,0]],[[664,436],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,-3]],[[653,433],[3,3]],[[680,436],[2,-3]],[[682,433],[0,-6]],[[674,427],[-2,-3],[0,-3],[0,-3],[0,-3]],[[672,415],[1,1]],[[672,436],[-2,-3]],[[670,433],[-2,-3]],[[668,430],[-2,-3],[-2,-3],[-2,-3]],[[662,421],[-1,0]],[[661,421],[-2,0]],[[659,421],[-2,-3],[1,0]],[[674,427],[0,1]],[[697,436],[0,-2]],[[661,421],[0,3]],[[666,436],[-1,2]],[[670,439],[-2,3]],[[668,442],[1,-1]],[[672,415],[2,-3],[0,-3],[0,-3]],[[674,406],[1,1]],[[682,372],[2,3]],[[684,375],[2,3],[2,3],[1,4],[2,3],[2,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3]],[[682,372],[2,0],[2,0],[2,0],[1,0],[2,0]],[[682,372],[0,3]],[[682,375],[0,3],[0,3],[0,4],[0,3],[0,3],[0,3],[-2,3],[-2,3],[-2,3],[-2,3]],[[686,509],[0,-3],[0,-3],[0,-3],[0,-3],[-2,-3],[-2,-3]],[[693,461],[2,-3],[2,-3],[0,-3]],[[697,452],[0,-4]],[[697,448],[2,-3]],[[701,442],[2,-3]],[[713,424],[2,0]],[[689,470],[0,3],[0,3],[0,3]],[[689,479],[0,3],[0,3],[-1,3]],[[705,445],[-1,0]],[[693,412],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[705,412],[2,0],[2,-3],[2,0]],[[711,409],[2,0],[2,0]],[[715,409],[2,0]],[[717,409],[1,0],[2,0],[2,0]],[[722,409],[2,0],[2,0],[2,0]],[[705,412],[2,3],[2,0],[2,-3]],[[711,412],[-2,0]],[[689,418],[-1,0],[-2,0]],[[693,412],[-2,-3],[-2,0],[-1,0],[-2,0],[-2,-3]],[[693,412],[0,3],[-2,3]],[[691,418],[1,6]],[[672,531],[-2,0],[-2,0],[-2,0]],[[666,531],[-2,0],[-2,0],[-1,0],[-2,3],[-2,3],[0,3],[0,3]],[[657,543],[0,2]],[[705,445],[2,-3],[2,-3]],[[711,433],[0,-3],[0,-3]],[[701,442],[-2,-3]],[[699,439],[-2,-3]],[[697,436],[-2,-3]],[[695,433],[-2,-3]],[[693,430],[-2,-3]],[[691,427],[-2,-3],[-1,-3]],[[686,418],[-2,-3]],[[684,415],[-2,0]],[[682,415],[-1,2]],[[711,433],[2,0],[2,-3]],[[715,430],[2,0]],[[711,534],[2,0],[2,0]],[[715,534],[1,0]],[[711,378],[2,3],[2,4],[2,3],[1,3],[2,0],[2,0],[2,3],[2,0],[2,3],[0,3],[2,3],[0,3]],[[711,378],[-2,-3],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0]],[[693,375],[-2,-3]],[[715,424],[-1,2]],[[711,427],[2,3]],[[713,430],[2,0]],[[641,452],[-1,-1]],[[709,439],[2,2]],[[713,421],[0,-3],[0,-3]],[[713,421],[2,3]],[[713,421],[2,0],[2,0]],[[713,415],[2,-3]],[[715,412],[2,0],[1,0]],[[718,412],[2,0],[2,-3]],[[718,412],[2,3],[2,0]],[[726,412],[2,0],[2,3],[2,3],[2,0],[2,0]],[[713,415],[-2,-3]],[[715,534],[2,3],[1,0],[2,0],[2,0],[2,-3],[2,-3]],[[720,589],[2,0],[2,-3],[2,-3],[2,-4],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3]],[[726,531],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[730,406],[0,3],[2,3],[2,3],[2,3]],[[788,397],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0]],[[803,397],[2,0],[2,0],[2,0]],[[817,394],[2,0],[2,0],[2,0],[2,3],[2,0],[2,0],[1,0],[2,0],[2,0],[2,3],[2,0],[2,0],[2,3],[2,3]],[[844,406],[0,2]],[[844,406],[2,3],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[867,409],[2,0],[2,0]],[[697,448],[-2,4]],[[695,452],[-2,3],[-2,3],[-2,0],[-1,0],[-2,0],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,3],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0]],[[715,409],[-2,-3],[-2,-3]],[[711,403],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-3],[-2,-4],[-2,-3],[-2,-3]],[[717,409],[-2,-3],[-2,-3],[-2,0]],[[715,412],[-2,0],[-2,0]],[[697,430],[-2,3]],[[695,433],[-2,0],[-2,0],[-2,0]],[[689,433],[-1,0],[-2,0],[-2,0],[-2,0]],[[682,433],[-2,0]],[[680,433],[-2,0],[-2,0],[-2,0]],[[674,433],[-2,0],[-2,0]],[[670,433],[-2,0],[-2,0]],[[666,433],[-2,0],[-2,0],[-1,0],[-2,0],[-2,0],[-2,0],[-2,0]],[[653,433],[-2,0],[-2,0],[-2,0],[-2,0],[-2,0]],[[711,403],[1,4]],[[765,555],[2,3],[2,3],[2,3],[2,3],[1,3],[2,3],[2,3],[2,3],[2,4],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[1,0],[2,0],[2,0],[2,0],[2,0]],[[809,610],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[829,610],[1,0],[2,0],[2,0],[2,0],[2,0],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[1,3],[2,3],[2,4]],[[861,647],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3]],[[875,668],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0]],[[886,668],[2,3],[0,3]],[[888,674],[-1,1]],[[774,701],[2,3],[2,3],[2,3],[2,4],[2,3],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[800,717],[1,3],[-1,0]],[[774,701],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0]],[[801,701],[2,0],[2,0],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3]],[[815,686],[1,-2]],[[800,717],[-2,-3],[0,-4],[0,-3],[2,-3],[1,-3]],[[807,378],[2,3],[2,4],[2,3],[2,3],[2,3]],[[807,366],[2,3],[2,3],[2,3],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[825,375],[0,-1]],[[815,686],[-2,-3],[-2,-3],[2,-3],[2,-3],[2,0],[2,0],[2,0],[2,-3],[2,-3],[2,-3],[2,-3],[1,-3]],[[817,394],[2,-3],[2,-3],[2,-3],[2,-4],[0,-3],[0,-3]],[[825,354],[2,0],[2,0],[1,0],[2,3],[2,3],[2,0],[2,0],[2,0],[2,0]],[[829,579],[0,4],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3]],[[829,610],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,4],[0,3],[0,3],[0,3]],[[842,579],[2,-3]],[[846,583],[2,3],[2,3],[2,3],[2,3],[2,3],[1,3],[2,3],[2,3]],[[861,607],[2,3],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[964,610],[2,0],[2,0],[2,0],[1,-3],[2,0]],[[973,607],[3,0]],[[829,656],[1,-3],[2,0],[2,-3],[2,0],[2,0],[2,-3],[2,0],[2,3],[2,3],[2,3],[2,3],[2,0],[2,0],[2,3],[1,0],[2,0],[2,0],[2,3],[2,0],[2,0]],[[867,665],[2,3],[0,3]],[[869,671],[-2,-1]],[[825,375],[2,3],[2,3],[1,4],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0]],[[844,363],[0,3],[0,3],[0,3],[2,3]],[[844,406],[2,-3],[2,-3],[2,-3],[2,-3],[0,-3],[0,-3],[0,-3]],[[844,576],[2,3],[2,4]],[[859,397],[2,3],[2,3],[2,3],[2,3]],[[855,274],[1,1]],[[856,275],[0,3]],[[856,275],[-2,-3],[-2,-3],[0,-3]],[[861,579],[0,4],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3]],[[861,607],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3],[0,3]],[[861,628],[0,3],[0,3],[0,3],[0,3],[0,3],[0,4]],[[861,647],[0,3],[0,3],[0,3],[2,3],[2,3],[2,3]],[[861,628],[2,3],[2,3],[2,3],[2,3],[2,3],[2,4],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[1,3]],[[873,579],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3]],[[910,558],[2,-3],[1,-3]],[[913,552],[2,-3]],[[869,671],[2,0],[2,0],[2,-3]],[[873,345],[2,3]],[[871,342],[2,3]],[[871,339],[0,3]],[[871,336],[0,3]],[[888,674],[2,-3],[2,-3],[2,0],[2,0],[2,0],[2,0],[2,0],[2,-3]],[[904,665],[1,0]],[[888,674],[2,3],[2,3],[0,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,4],[1,3],[2,3],[2,3],[2,3],[2,3],[2,3],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,3],[2,0],[2,0],[1,2]],[[900,552],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,0]],[[904,665],[0,-3],[2,-3],[2,-3],[2,-3],[2,-3],[1,-3],[2,-4],[2,-3],[2,-3],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[2,0],[1,-3],[2,-3],[2,-3],[2,0],[2,-3],[2,-3],[2,0],[2,-3],[2,-3],[2,0],[2,-3],[2,-3]],[[973,607],[0,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-3],[2,-4]],[[637,488],[2,3],[2,0]],[[647,537],[2,0],[2,0],[2,3],[2,3],[2,0]],[[711,412],[0,-3]],[[711,409],[0,-3],[0,-3]],[[684,415],[0,-3],[0,-3]],[[689,418],[2,0]],[[684,406],[-2,3],[-2,0],[-2,0],[-2,0],[-2,-3]],[[668,448],[0,-3]],[[668,445],[0,-3]],[[653,442],[2,3]],[[666,445],[2,-3]],[[695,442],[-2,3]],[[682,433],[0,-3]],[[682,430],[0,-3]],[[682,427],[0,-3],[0,-3],[-2,-3],[2,-3]],[[682,433],[2,-3]],[[684,430],[2,-3],[2,-3],[1,-3],[2,-3]],[[680,445],[-2,-3],[-2,-3]],[[676,439],[-2,-3]],[[670,445],[-2,-3]],[[672,415],[-2,3],[-2,3],[-2,0],[-2,0],[-2,0]],[[659,421],[2,3]],[[691,418],[2,3],[2,3]],[[695,424],[0,1]],[[691,418],[0,3],[0,3],[0,3]],[[695,424],[-2,3],[-2,3]],[[691,430],[-2,3]],[[689,433],[-1,3]],[[688,436],[-2,3]],[[695,439],[2,-3]]],"transform":{"scale":[0.05177893688000897,0.032824484484843305],"translate":[-9.536334601947495,23.069]}}
d3.geo.tile = function() {
var size = [960, 500],
scale = 256,
translate = [size[0] / 2, size[1] / 2],
zoomDelta = 0;
function tile() {
var z = Math.max(Math.log(scale) / Math.LN2 - 8, 0),
z0 = Math.round(z + zoomDelta),
k = Math.pow(2, z - z0 + 8),
origin = [(translate[0] - scale / 2) / k, (translate[1] - scale / 2) / k],
tiles = [],
cols = d3.range(Math.max(0, Math.floor(-origin[0])), Math.max(0, Math.ceil(size[0] / k - origin[0]))),
rows = d3.range(Math.max(0, Math.floor(-origin[1])), Math.max(0, Math.ceil(size[1] / k - origin[1])));
rows.forEach(function(y) {
cols.forEach(function(x) {
tiles.push([x, y, z0]);
});
});
tiles.translate = origin;
tiles.scale = k;
return tiles;
}
tile.size = function(_) {
if (!arguments.length) return size;
size = _;
return tile;
};
tile.scale = function(_) {
if (!arguments.length) return scale;
scale = _;
return tile;
};
tile.translate = function(_) {
if (!arguments.length) return translate;
translate = _;
return tile;
};
tile.zoomDelta = function(_) {
if (!arguments.length) return zoomDelta;
zoomDelta = +_;
return tile;
};
return tile;
};
!function() {
var topojson = {
version: "1.6.0",
mesh: function(topology) { return object(topology, meshArcs.apply(this, arguments)); },
meshArcs: meshArcs,
merge: function(topology) { return object(topology, mergeArcs.apply(this, arguments)); },
mergeArcs: mergeArcs,
feature: featureOrCollection,
neighbors: neighbors,
presimplify: presimplify
};
function stitchArcs(topology, arcs) {
var stitchedArcs = {},
fragmentByStart = {},
fragmentByEnd = {},
fragments = [],
emptyIndex = -1;
// Stitch empty arcs first, since they may be subsumed by other arcs.
arcs.forEach(function(i, j) {
var arc = topology.arcs[i < 0 ? ~i : i], t;
if (arc.length < 3 && !arc[1][0] && !arc[1][1]) {
t = arcs[++emptyIndex], arcs[emptyIndex] = i, arcs[j] = t;
}
});
arcs.forEach(function(i) {
var e = ends(i),
start = e[0],
end = e[1],
f, g;
if (f = fragmentByEnd[start]) {
delete fragmentByEnd[f.end];
f.push(i);
f.end = end;
if (g = fragmentByStart[end]) {
delete fragmentByStart[g.start];
var fg = g === f ? f : f.concat(g);
fragmentByStart[fg.start = f.start] = fragmentByEnd[fg.end = g.end] = fg;
} else {
fragmentByStart[f.start] = fragmentByEnd[f.end] = f;
}
} else if (f = fragmentByStart[end]) {
delete fragmentByStart[f.start];
f.unshift(i);
f.start = start;
if (g = fragmentByEnd[start]) {
delete fragmentByEnd[g.end];
var gf = g === f ? f : g.concat(f);
fragmentByStart[gf.start = g.start] = fragmentByEnd[gf.end = f.end] = gf;
} else {
fragmentByStart[f.start] = fragmentByEnd[f.end] = f;
}
} else {
f = [i];
fragmentByStart[f.start = start] = fragmentByEnd[f.end = end] = f;
}
});
function ends(i) {
var arc = topology.arcs[i < 0 ? ~i : i], p0 = arc[0], p1;
if (topology.transform) p1 = [0, 0], arc.forEach(function(dp) { p1[0] += dp[0], p1[1] += dp[1]; });
else p1 = arc[arc.length - 1];
return i < 0 ? [p1, p0] : [p0, p1];
}
function flush(fragmentByEnd, fragmentByStart) {
for (var k in fragmentByEnd) {
var f = fragmentByEnd[k];
delete fragmentByStart[f.start];
delete f.start;
delete f.end;
f.forEach(function(i) { stitchedArcs[i < 0 ? ~i : i] = 1; });
fragments.push(f);
}
}
flush(fragmentByEnd, fragmentByStart);
flush(fragmentByStart, fragmentByEnd);
arcs.forEach(function(i) { if (!stitchedArcs[i < 0 ? ~i : i]) fragments.push([i]); });
return fragments;
}
function meshArcs(topology, o, filter) {
var arcs = [];
if (arguments.length > 1) {
var geomsByArc = [],
geom;
function arc(i) {
var j = i < 0 ? ~i : i;
(geomsByArc[j] || (geomsByArc[j] = [])).push({i: i, g: geom});
}
function line(arcs) {
arcs.forEach(arc);
}
function polygon(arcs) {
arcs.forEach(line);
}
function geometry(o) {
if (o.type === "GeometryCollection") o.geometries.forEach(geometry);
else if (o.type in geometryType) geom = o, geometryType[o.type](o.arcs);
}
var geometryType = {
LineString: line,
MultiLineString: polygon,
Polygon: polygon,
MultiPolygon: function(arcs) { arcs.forEach(polygon); }
};
geometry(o);
geomsByArc.forEach(arguments.length < 3
? function(geoms) { arcs.push(geoms[0].i); }
: function(geoms) { if (filter(geoms[0].g, geoms[geoms.length - 1].g)) arcs.push(geoms[0].i); });
} else {
for (var i = 0, n = topology.arcs.length; i < n; ++i) arcs.push(i);
}
return {type: "MultiLineString", arcs: stitchArcs(topology, arcs)};
}
function mergeArcs(topology, objects) {
var polygonsByArc = {},
polygons = [],
components = [];
objects.forEach(function(o) {
if (o.type === "Polygon") register(o.arcs);
else if (o.type === "MultiPolygon") o.arcs.forEach(register);
});
function register(polygon) {
polygon.forEach(function(ring) {
ring.forEach(function(arc) {
(polygonsByArc[arc = arc < 0 ? ~arc : arc] || (polygonsByArc[arc] = [])).push(polygon);
});
});
polygons.push(polygon);
}
function exterior(ring) {
return cartesianRingArea(object(topology, {type: "Polygon", arcs: [ring]}).coordinates[0]) > 0; // TODO allow spherical?
}
polygons.forEach(function(polygon) {
if (!polygon._) {
var component = [],
neighbors = [polygon];
polygon._ = 1;
components.push(component);
while (polygon = neighbors.pop()) {
component.push(polygon);
polygon.forEach(function(ring) {
ring.forEach(function(arc) {
polygonsByArc[arc < 0 ? ~arc : arc].forEach(function(polygon) {
if (!polygon._) {
polygon._ = 1;
neighbors.push(polygon);
}
});
});
});
}
}
});
polygons.forEach(function(polygon) {
delete polygon._;
});
return {
type: "MultiPolygon",
arcs: components.map(function(polygons) {
var arcs = [];
// Extract the exterior (unique) arcs.
polygons.forEach(function(polygon) {
polygon.forEach(function(ring) {
ring.forEach(function(arc) {
if (polygonsByArc[arc < 0 ? ~arc : arc].length < 2) {
arcs.push(arc);
}
});
});
});
// Stitch the arcs into one or more rings.
arcs = stitchArcs(topology, arcs);
// If more than one ring is returned,
// at most one of these rings can be the exterior;
// this exterior ring has the same winding order
// as any exterior ring in the original polygons.
if ((n = arcs.length) > 1) {
var sgn = exterior(polygons[0][0]);
for (var i = 0, t; i < n; ++i) {
if (sgn === exterior(arcs[i])) {
t = arcs[0], arcs[0] = arcs[i], arcs[i] = t;
break;
}
}
}
return arcs;
})
};
}
function featureOrCollection(topology, o) {
return o.type === "GeometryCollection" ? {
type: "FeatureCollection",
features: o.geometries.map(function(o) { return feature(topology, o); })
} : feature(topology, o);
}
function feature(topology, o) {
var f = {
type: "Feature",
id: o.id,
properties: o.properties || {},
geometry: object(topology, o)
};
if (o.id == null) delete f.id;
return f;
}
function object(topology, o) {
var absolute = transformAbsolute(topology.transform),
arcs = topology.arcs;
function arc(i, points) {
if (points.length) points.pop();
for (var a = arcs[i < 0 ? ~i : i], k = 0, n = a.length, p; k < n; ++k) {
points.push(p = a[k].slice());
absolute(p, k);
}
if (i < 0) reverse(points, n);
}
function point(p) {
p = p.slice();
absolute(p, 0);
return p;
}
function line(arcs) {
var points = [];
for (var i = 0, n = arcs.length; i < n; ++i) arc(arcs[i], points);
if (points.length < 2) points.push(points[0].slice());
return points;
}
function ring(arcs) {
var points = line(arcs);
while (points.length < 4) points.push(points[0].slice());
return points;
}
function polygon(arcs) {
return arcs.map(ring);
}
function geometry(o) {
var t = o.type;
return t === "GeometryCollection" ? {type: t, geometries: o.geometries.map(geometry)}
: t in geometryType ? {type: t, coordinates: geometryType[t](o)}
: null;
}
var geometryType = {
Point: function(o) { return point(o.coordinates); },
MultiPoint: function(o) { return o.coordinates.map(point); },
LineString: function(o) { return line(o.arcs); },
MultiLineString: function(o) { return o.arcs.map(line); },
Polygon: function(o) { return polygon(o.arcs); },
MultiPolygon: function(o) { return o.arcs.map(polygon); }
};
return geometry(o);
}
function reverse(array, n) {
var t, j = array.length, i = j - n; while (i < --j) t = array[i], array[i++] = array[j], array[j] = t;
}
function bisect(a, x) {
var lo = 0, hi = a.length;
while (lo < hi) {
var mid = lo + hi >>> 1;
if (a[mid] < x) lo = mid + 1;
else hi = mid;
}
return lo;
}
function neighbors(objects) {
var indexesByArc = {}, // arc index -> array of object indexes
neighbors = objects.map(function() { return []; });
function line(arcs, i) {
arcs.forEach(function(a) {
if (a < 0) a = ~a;
var o = indexesByArc[a];
if (o) o.push(i);
else indexesByArc[a] = [i];
});
}
function polygon(arcs, i) {
arcs.forEach(function(arc) { line(arc, i); });
}
function geometry(o, i) {
if (o.type === "GeometryCollection") o.geometries.forEach(function(o) { geometry(o, i); });
else if (o.type in geometryType) geometryType[o.type](o.arcs, i);
}
var geometryType = {
LineString: line,
MultiLineString: polygon,
Polygon: polygon,
MultiPolygon: function(arcs, i) { arcs.forEach(function(arc) { polygon(arc, i); }); }
};
objects.forEach(geometry);
for (var i in indexesByArc) {
for (var indexes = indexesByArc[i], m = indexes.length, j = 0; j < m; ++j) {
for (var k = j + 1; k < m; ++k) {
var ij = indexes[j], ik = indexes[k], n;
if ((n = neighbors[ij])[i = bisect(n, ik)] !== ik) n.splice(i, 0, ik);
if ((n = neighbors[ik])[i = bisect(n, ij)] !== ij) n.splice(i, 0, ij);
}
}
}
return neighbors;
}
function presimplify(topology, triangleArea) {
var absolute = transformAbsolute(topology.transform),
relative = transformRelative(topology.transform),
heap = minHeap(compareArea),
maxArea = 0,
triangle;
if (!triangleArea) triangleArea = cartesianTriangleArea;
topology.arcs.forEach(function(arc) {
var triangles = [];
arc.forEach(absolute);
for (var i = 1, n = arc.length - 1; i < n; ++i) {
triangle = arc.slice(i - 1, i + 2);
triangle[1][2] = triangleArea(triangle);
triangles.push(triangle);
heap.push(triangle);
}
// Always keep the arc endpoints!
arc[0][2] = arc[n][2] = Infinity;
for (var i = 0, n = triangles.length; i < n; ++i) {
triangle = triangles[i];
triangle.previous = triangles[i - 1];
triangle.next = triangles[i + 1];
}
});
while (triangle = heap.pop()) {
var previous = triangle.previous,
next = triangle.next;
// If the area of the current point is less than that of the previous point
// to be eliminated, use the latter's area instead. This ensures that the
// current point cannot be eliminated without eliminating previously-
// eliminated points.
if (triangle[1][2] < maxArea) triangle[1][2] = maxArea;
else maxArea = triangle[1][2];
if (previous) {
previous.next = next;
previous[2] = triangle[2];
update(previous);
}
if (next) {
next.previous = previous;
next[0] = triangle[0];
update(next);
}
}
topology.arcs.forEach(function(arc) {
arc.forEach(relative);
});
function update(triangle) {
heap.remove(triangle);
triangle[1][2] = triangleArea(triangle);
heap.push(triangle);
}
return topology;
};
function cartesianRingArea(ring) {
var i = -1,
n = ring.length,
a,
b = ring[n - 1],
area = 0;
while (++i < n) {
a = b;
b = ring[i];
area += a[0] * b[1] - a[1] * b[0];
}
return area * .5;
}
function cartesianTriangleArea(triangle) {
var a = triangle[0], b = triangle[1], c = triangle[2];
return Math.abs((a[0] - c[0]) * (b[1] - a[1]) - (a[0] - b[0]) * (c[1] - a[1]));
}
function compareArea(a, b) {
return a[1][2] - b[1][2];
}
function minHeap(compare) {
var heap = {},
array = [];
heap.push = function() {
for (var i = 0, n = arguments.length; i < n; ++i) {
var object = arguments[i];
up(object.index = array.push(object) - 1);
}
return array.length;
};
heap.pop = function() {
var removed = array[0],
object = array.pop();
if (array.length) {
array[object.index = 0] = object;
down(0);
}
return removed;
};
heap.remove = function(removed) {
var i = removed.index,
object = array.pop();
if (i !== array.length) {
array[object.index = i] = object;
(compare(object, removed) < 0 ? up : down)(i);
}
return i;
};
function up(i) {
var object = array[i];
while (i > 0) {
var up = ((i + 1) >> 1) - 1,
parent = array[up];
if (compare(object, parent) >= 0) break;
array[parent.index = i] = parent;
array[object.index = i = up] = object;
}
}
function down(i) {
var object = array[i];
while (true) {
var right = (i + 1) << 1,
left = right - 1,
down = i,
child = array[down];
if (left < array.length && compare(array[left], child) < 0) child = array[down = left];
if (right < array.length && compare(array[right], child) < 0) child = array[down = right];
if (down === i) break;
array[child.index = i] = child;
array[object.index = i = down] = object;
}
}
return heap;
}
function transformAbsolute(transform) {
if (!transform) return noop;
var x0,
y0,
kx = transform.scale[0],
ky = transform.scale[1],
dx = transform.translate[0],
dy = transform.translate[1];
return function(point, i) {
if (!i) x0 = y0 = 0;
point[0] = (x0 += point[0]) * kx + dx;
point[1] = (y0 += point[1]) * ky + dy;
};
}
function transformRelative(transform) {
if (!transform) return noop;
var x0,
y0,
kx = transform.scale[0],
ky = transform.scale[1],
dx = transform.translate[0],
dy = transform.translate[1];
return function(point, i) {
if (!i) x0 = y0 = 0;
var x1 = (point[0] - dx) / kx | 0,
y1 = (point[1] - dy) / ky | 0;
point[0] = x1 - x0;
point[1] = y1 - y0;
x0 = x1;
y0 = y1;
};
}
function noop() {}
if (typeof define === "function" && define.amd) define(topojson);
else if (typeof module === "object" && module.exports) module.exports = topojson;
else this.topojson = topojson;
}();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment