Skip to content

Instantly share code, notes, and snippets.

@nitaku
Last active December 31, 2015 18:39
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 nitaku/8028264 to your computer and use it in GitHub Desktop.
Save nitaku/8028264 to your computer and use it in GitHub Desktop.
Fractal treemap (random, Gosper)

Full source, including python code, here.

A more complete example of a fractal treemap (also known as jigsaw treemap) made of Gosper regions, this time representing a hierarchy. Zoom in by using the mouse wheel.

A random tree is generated with this script, obtaining a tree with 48,207 leaves (tree_48207.csv). The file contains the prefixes of all the leaf nodes, sorted in lexicographic order.

Usage (ipython):

run gosper_regions.py
gosperify('tree_48207.csv', 'hexes.wkt.csv', 'regions') # input tree, input tiling, output directory

By running the python script, the sequence of leaves is paired with the sequence of hexagons (generated by this script) that follows the Gosper space-filling curve. Because of the lexicographic order, sibling nodes are placed near to each other, similarly to classes (colors) in this other example. Different tilings can be used in theory, but that was not tested.

In order to have a representation for internal nodes, leaf nodes are recursively merged into regions representing subtrees, until the root, yielding the entire tree, is reached. This is not what the code does, actually. The same result is obtained by using each hexagon prefix (leaf prefix) to merge it to one or more regions, each one representing an internal node at a certain depth. This creates one layer for each tree level, each one having a region representing an internal node. For an in-depth explanation of this layout, see also this example, Auber et al. 2011 and Wattenberg 2005.

The layers are saved into the requested folder, each one as a separate GeoJSON file. The example tree generates eight layers. All the layers are combined into a single TopoJSON file (as in this example):

topojson --cartesian --no-quantization -p prefix -o regions.topo.json regions/0.json regions/1.json regions/2.json regions/3.json regions/4.json regions/5.json regions/6.json regions/7.json

The obtained file is finally rendered with d3.js, using a style similar to the one found in this U.S. map (land glow has been replaced with a faux shadow due to performance reasons). The labels show each region's prefix. A zoom behavior (see this other example) is introduced to help navigating the map. To avoid cluttering the map, only the first three levels are shown. This is an issue that has to be addressed, perhaps using the zoom behavior to load fine-grained regions on demand. Also, labels are placed using the region's centroid, giving a bad label placement in many cases.

The python script uses the shapely library for merging regions, and the Fiona library for storing the results as GeoJSON, so you have to install them if you want to run this script. The Fiona package requires GDAL 1.8+, and it was a bit tricky to install that on my Ubuntu 10:

gdal-config --version # this can be used to see if you really need to update gdal

sudo apt-add-repository ppa:ubuntugis/ubuntugis-unstable
sudo apt-get update
sudo apt-get install python-gdal
sudo apt-get install libgdal1-dev
sudo apt-get install gdal-bin
pip install Fiona

This guide covers shapely & Fiona usage.

Reading a tuple serialization was also an unexpectedly difficult task, because apparently there's no way to do it by using the tuple constructor. The solution was, as always, using regular expressions!

from __future__ import print_function
from itertools import izip
import csv
from shapely.geometry.polygon import Polygon
import shapely.wkt
from fiona import collection
from shapely.geometry import mapping
import re
import os
def gosperify(tree_path, hexes_path, output_dir_path):
leaves_done = 0
layers = {}
with open(tree_path, 'rb') as tree_file:
tree_reader = csv.reader(tree_file, delimiter=';', quotechar='#')
with open(hexes_path, 'rb') as hexes_file:
hexes_reader = csv.reader(hexes_file, delimiter=';', quotechar='#')
for tree_row, hexes_row in izip(tree_reader, hexes_reader):
prefix = tuple(int(v) for v in re.findall('[0-9]+', tree_row[0]))
for i in xrange(len(prefix)+1):
subprefix = prefix[:i]
depth = len(subprefix)
hex = shapely.wkt.loads(hexes_row[0])
if depth not in layers:
layers[depth] = {}
if subprefix not in layers[depth]:
layers[depth][subprefix] = hex
else:
layers[depth][subprefix] = layers[depth][subprefix].union(hex)
# logging
leaves_done += 1
print('%d leaves done' % leaves_done, end='\r')
schema = {'geometry': 'Polygon', 'properties': {'prefix': 'str'}}
if not os.path.exists(output_dir_path):
os.makedirs(output_dir_path)
for depth, regions in layers.items():
with collection(output_dir_path+'/'+str(depth)+'.json', 'w', 'GeoJSON', schema) as output:
for prefix, region in regions.items():
output.write({
'properties': {
'prefix': '.'.join(map(lambda x: str(x), prefix))
},
'geometry': mapping(region)
})
window.main = () ->
### "globals" ###
vis = null
width = 960
height = 500
svg = d3.select('body').append('svg')
.attr('width', width)
.attr('height', height)
### ZOOM and PAN ###
### create container elements ###
container = svg.append('g')
.attr('transform','translate(640, 34)')
container.call(d3.behavior.zoom().scaleExtent([1, 49]).on('zoom', (() -> vis.attr('transform', "translate(#{d3.event.translate})scale(#{d3.event.scale})"))))
vis = container.append('g')
### create a rectangular overlay to catch events ###
### WARNING rect size is huge but not infinite. this is a dirty hack ###
vis.append('rect')
.attr('class', 'overlay')
.attr('x', -500000)
.attr('y', -500000)
.attr('width', 1000000)
.attr('height', 1000000)
### END ZOOM and PAN ###
### custom projection to make hexagons appear regular (y axis is also flipped) ###
radius = 1
dx = radius * 2 * Math.sin(Math.PI / 3)
dy = radius * 1.5
path_generator = d3.geo.path()
.projection d3.geo.transform({
point: (x,y,z) ->
### draw only nodes that are "important" enough ###
# if z >= 2
this.stream.point(x * dx / 2, -(y - (2 - (y & 1)) / 3) * dy / 2)
})
### load topoJSON data ###
d3.json 'regions_48207.topo.json', (error, data) ->
### presimplify the topology (compute the effective area (z) of each point) ###
# topojson.presimplify(data)
### data.objects contain all the map layers ###
### each layer represents a different level of the tree ###
### the number of layers is equal to the depth of the tree ###
depth = Object.keys(data.objects).length
### draw the level zero region (the land) ###
defs = svg.append('defs')
defs.selectAll('#land')
.data(topojson.feature(data, data.objects[0]).features)
.enter().append('path')
.attr('id', 'land')
.attr('d', path_generator)
### faux land glow (using filters takes too much resources) ###
vis.append('use')
.attr('class', 'land-glow-outer')
.attr('xlink:href', '#land')
vis.append('use')
.attr('class', 'land-glow-inner')
.attr('xlink:href', '#land')
vis.append('use')
.attr('class', 'land-fill')
.attr('xlink:href', '#land')
### draw the boundaries ###
for i in [1...4]
vis.append('path')
.datum(topojson.mesh(data, data.objects[i], ((a,b) ->
a.properties.prefix[0...-1] is b.properties.prefix[0...-1]
)))
.attr('d', path_generator)
.attr('class', 'boundary')
.style('stroke-width', "#{0.7/(i*i)}px")
### draw the labels ###
vis.selectAll('.label')
.data(topojson.feature(data, data.objects[1]).features.concat(
topojson.feature(data, data.objects[2]).features,
topojson.feature(data, data.objects[3]).features
))
.enter().append('text')
.attr('class', 'label')
.attr('dy','0.35em')
.attr('transform', ((d) ->
centroid = path_generator.centroid(d)
return "translate(#{centroid[0]},#{centroid[1]}) scale(#{20/(Math.pow(d.properties.prefix.length,1.7))})"
))
.text((d) -> d.properties.prefix)
.land-glow-outer {
stroke: #eeeeee;
stroke-width: 12px;
}
.land-glow-inner {
stroke: #dddddd;
stroke-width: 6px;
}
.land-fill {
stroke: none;
fill: white;
}
.region:hover {
fill: orange;
stroke: black;
}
.boundary {
stroke: #777777;
fill: none;
}
.label {
text-anchor: middle;
font-size: 2.5px;
fill: black;
opacity: 0.5;
pointer-events: none;
}
.overlay {
fill: transparent;
}
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<title>Fractal treemap</title>
<link type="text/css" href="index.css" rel="stylesheet"/>
<script src="http://d3js.org/d3.v3.min.js"></script>
<script src="http://d3js.org/topojson.v1.min.js"></script>
<script src="index.js"></script>
</head>
<body onload="main()"></body>
</html>
(function() {
window.main = function() {
/* "globals"
*/
var container, dx, dy, height, path_generator, radius, svg, vis, width;
vis = null;
width = 960;
height = 500;
svg = d3.select('body').append('svg').attr('width', width).attr('height', height);
/* ZOOM and PAN
*/
/* create container elements
*/
container = svg.append('g').attr('transform', 'translate(640, 34)');
container.call(d3.behavior.zoom().scaleExtent([1, 49]).on('zoom', (function() {
return vis.attr('transform', "translate(" + d3.event.translate + ")scale(" + d3.event.scale + ")");
})));
vis = container.append('g');
/* create a rectangular overlay to catch events
*/
/* WARNING rect size is huge but not infinite. this is a dirty hack
*/
vis.append('rect').attr('class', 'overlay').attr('x', -500000).attr('y', -500000).attr('width', 1000000).attr('height', 1000000);
/* END ZOOM and PAN
*/
/* custom projection to make hexagons appear regular (y axis is also flipped)
*/
radius = 1;
dx = radius * 2 * Math.sin(Math.PI / 3);
dy = radius * 1.5;
path_generator = d3.geo.path().projection(d3.geo.transform({
point: function(x, y, z) {
/* draw only nodes that are "important" enough
*/ return this.stream.point(x * dx / 2, -(y - (2 - (y & 1)) / 3) * dy / 2);
}
}));
/* load topoJSON data
*/
return d3.json('regions_48207.topo.json', function(error, data) {
/* presimplify the topology (compute the effective area (z) of each point)
*/
/* data.objects contain all the map layers
*/
/* each layer represents a different level of the tree
*/
/* the number of layers is equal to the depth of the tree
*/
var defs, depth, i;
depth = Object.keys(data.objects).length;
/* draw the level zero region (the land)
*/
defs = svg.append('defs');
defs.selectAll('#land').data(topojson.feature(data, data.objects[0]).features).enter().append('path').attr('id', 'land').attr('d', path_generator);
/* faux land glow (using filters takes too much resources)
*/
vis.append('use').attr('class', 'land-glow-outer').attr('xlink:href', '#land');
vis.append('use').attr('class', 'land-glow-inner').attr('xlink:href', '#land');
vis.append('use').attr('class', 'land-fill').attr('xlink:href', '#land');
/* draw the boundaries
*/
for (i = 1; i < 4; i++) {
vis.append('path').datum(topojson.mesh(data, data.objects[i], (function(a, b) {
return a.properties.prefix.slice(0, -1) === b.properties.prefix.slice(0, -1);
}))).attr('d', path_generator).attr('class', 'boundary').style('stroke-width', "" + (0.7 / (i * i)) + "px");
}
/* draw the labels
*/
return vis.selectAll('.label').data(topojson.feature(data, data.objects[1]).features.concat(topojson.feature(data, data.objects[2]).features, topojson.feature(data, data.objects[3]).features)).enter().append('text').attr('class', 'label').attr('dy', '0.35em').attr('transform', (function(d) {
var centroid;
centroid = path_generator.centroid(d);
return "translate(" + centroid[0] + "," + centroid[1] + ") scale(" + (20 / (Math.pow(d.properties.prefix.length, 1.7))) + ")";
})).text(function(d) {
return d.properties.prefix;
});
});
};
}).call(this);
.land-glow-outer
stroke: #EEE
stroke-width: 12px
.land-glow-inner
stroke: #DDD
stroke-width: 6px
.land-fill
stroke: none
fill: white
.region:hover
fill: orange
stroke: black
.boundary
stroke: #777
fill: none
.label
text-anchor: middle
font-size: 2.5px
fill: black
opacity: 0.5
pointer-events: none
// zoom and pan
.overlay
fill: transparent
Display the source blob
Display the rendered blob
Raw
{"type":"Topology","transform":{"scale":[1,1],"translate":[0,0]},"objects":{"0":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427]],"properties":{"prefix":""}}]},"1":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[428,0,1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20,21,22,23,24,25,26,27,28,29,30,31,32,33,34,35,36,37,38,39,40,41,42,43,44,45,46,47,48,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,504,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,534,535,536,537,538,539,540,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,419,420,421,422,423,424,425,426,583]],"properties":{"prefix":"1"}},{"type":"Polygon","arcs":[[-514,-513,-512,-511,-510,-509,-508,-507,-506,-505,-504,-503,-502,-501,-500,-499,-498,-497,-496,-495,-494,-493,-492,-491,-490,-489,584,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,-583,-582,-581,-580,-579,-578,-577,-576,-575,-574,-573,-572,-571,-570,-569,-568,-567,-566,-565,-564,-563,-562,-561,-560,-559,-558,-557,-556,-555,-554,-553,-552,-551,-550,-549,-548,-547,-546,-545,-544,-543,-542,-541,-540,-539,-538,-537,-536,-535,-534,-533,-532,-531,-530,-529,-528,-527,-526,-525,-524,-523,-522,-521,-520,-519,-518,-517,-516,-515]],"properties":{"prefix":"2"}},{"type":"Polygon","arcs":[[613,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,677,678,679,680,681,682,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798,799,800,801,802,803,804,805,806,807]],"properties":{"prefix":"8"}},{"type":"Polygon","arcs":[[-585,-488,-487,-486,-485,-484,-483,-482,-481,-480,-479,-478,-477,-476,-475,-474,-473,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,353,354,355,356,357,358,-613,-612,-611,-610,-609,-608,-607,-606,-605,-604,-603,-602,-601,-600,-599,-598,-597,-596,-595,-594,-593,-592,-591,-590,-589,-588,-587,-586]],"properties":{"prefix":"3"}},{"type":"Polygon","arcs":[[-653,-652,-651,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,922,923,924,925,926,927,928,929,930,931,932,933,934,935,936,937,938,939,940,941,942,943,944,945,946,947,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,-746,-745,-744,-743,-742,-741,-740,-739,-738,-737,-736,-735,-734,-733,-732,-731,-730,-729,-728,-727,-726,-725,-724,-723,-722,-721,-720,-719,-718,-717,-716,-715,-714,-713,-712,-711,-710,-709,-708,-707,-706,-705,-704,-703,-702,-701,-700,-699,-698,-697,-696,-695,-694,-693,-692,-691,-690,-689,-688,-687,-686,-685,-684,-683,-682,-681,-680,-679,-678,-677,-676,-675,-674,-673,-672,-671,-670,-669,-668,-667,-666,-665,-664,-663,-662,-661,-660,-659,-658,-657,-656,-655,-654]],"properties":{"prefix":"9"}},{"type":"Polygon","arcs":[[-856,-855,-854,-853,-852,-851,-850,-849,-848,-847,-846,-845,-844,-843,-842,-841,-840,-839,-838,-837,-836,-835,-834,-833,-832,-831,-830,-829,-828,-827,-826,-825,-824,-823,-822,-821,-820,-819,-818,-817,-816,-815,-814,-813,-812,-811,-810,-809,-472,-471,-470,-469,-468,-467,-466,-465,-464,-463,-462,-461,-460,-459,-458,-457,-456,-455,-454,-453,-452,-451,-450,-449,-448,-447,-446,-445,-444,-443,-442,-441,-440,-439,-438,-437,-436,-435,-434,-433,-432,-431,-430,49,50,51,52,53,54,55,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,991,992,993,994,995,996,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1024,1025,1026,1027,1028,1029,1030,1031,1032,1033,1034,1035,1036,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,-890,-889,-888,-887,-886,-885,-884,-883,-882,-881,-880,-879,-878,-877,-876,-875,-874,-873,-872,-871,-870,-869,-868,-867,-866,-865,-864,-863,-862,-861,352,-860,-859,-858,-857]],"properties":{"prefix":"4"}},{"type":"Polygon","arcs":[[-1012,-1011,-1010,-1009,-1008,-1007,-1006,-1005,-1004,-1003,-1002,-1001,-1000,-999,-998,-997,-996,-995,-994,-993,-992,-991,-990,-989,-988,-987,-986,-985,-984,-983,-982,-981,-980,-979,-978,-977,-976,-975,-974,-973,-972,-971,80,81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137,-1017,-1016,-1015,-1014,-1013]],"properties":{"prefix":"5"}},{"type":"Polygon","arcs":[[-1084,-1083,-1082,-1081,-1080,-1079,-1078,-1077,-1076,-1075,-1074,-1073,-1072,-1071,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,1235,1236,1237,1238,1239,1240,1241,1242,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,-1097,-1096,-1095,-1094,-1093,-1092,-1091,-1090,-1089,-1088,-1087,-1086,-1085]],"properties":{"prefix":"6"}},{"type":"Polygon","arcs":[[-1155,-1154,-1153,-1152,-1151,-1150,-1149,-1148,-1147,-1146,-1145,-1144,-1143,-1142,-1141,-1140,-1139,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,235,236,237,238,239,240,241,242,243,244,245,246,247,248,-650,-649,-648,-647,-646,-645,-644,-643,-642,-641,-640,-639,-638,-637,-636,-635,-634,-633,-632,-631,-630,-629,-628,-627,-626,-625,-624,-623,-622,-621,-620,-619,-618,-617,-616,-615,-614,-808,-807,-806,-805,-804,-803,-802,-801,-800,-799,-798,-797,-796,-795,-794,-793,-792,-791,-790,-789,-788,-787,-786,-785,-784,-783,-782,-781,-780,-779,-778,-777,-776,-775,-774,-773,-772,-771,-770,-769,-768,-767,-766,-765,-764,-763,-762,-761,-760,-759,-758,-757,-756,-755,-754,-753,-752,-751,-750,-749,-748,-747,-970,-969,-968,-967,-966,-965,-964,-963,-962,-961,-960,-959,-958,-957,-956,-955,-954,-953,-952,-951,-950,-949,-948,-947,-946,-945,-944,-943,-942,-941,-940,-939,-938,-937,-936,-935,-934,-933,-932,-931,-930,-929,-928,-927,-926,-925,-924,-923,-922,-921,-920,-919,-918,-917,-916,-915,-914,-913,-912,-911,-910,-909,-908,-907,-906,-905,-904,-903,-902,-901,-900,-899,-898,-897,-896,-895,-894,-893,-892,-891,-1070,-1069,-1068,-1067,-1066,-1065,-1064,-1063,-1062,-1061,-1060,-1059,-1058,-1057,-1056,-1055,-1054,-1053,-1052,-1051,-1050,-1049,-1048,-1047,-1046,-1045,-1044,-1043,-1042,-1041,-1040,-1039,-1038,-1037,-1036,-1035,-1034,-1033,-1032,-1031,-1030,-1029,-1028,-1027,-1026,-1025,-1024,-1023,-1022,-1021,-1020,-1019,-1018,-1138,-1137,-1136,-1135,-1134,-1133,-1132,-1131,-1130,-1129,-1128,-1127,-1126,-1125,-1124,-1123,-1122,-1121,-1120,-1119,-1118,-1117,-1116,-1115,-1114,-1113,-1112,-1111,-1110,-1109,-1108,-1107,-1106,-1105,-1104,-1103,-1102,-1101,-1100,-1099,-1098,-1257,-1256,-1255,-1254,-1253,-1252,-1251,-1250,-1249,-1248,-1247,-1246,-1245,-1244,-1243,-1242,-1241,-1240,-1239,-1238,-1237,-1236,-1235,-1234,-1233,-1232,-1231,-1230,-1229,-1228,-1227,-1226,-1225,-1224,-1223,-1222,-1221,-1220,-1219,-1218,-1217,-1216,-1215,-1214,-1213,-1212,-1211,-1210,-1209,-1208,-1207,-1206,-1205,-1204,-1203,-1202,-1201,-1200,-1199,-1198,-1197,-1196,-1195,-1194,-1193,-1192,-1191,-1190,-1189,-1188,-1187,-1186,-1185,-1184,-1183,-1182,-1181,-1180,-1179,-1178,-1177,-1176,-1175,-1174,-1173,-1172,-1171,-1170,-1169,-1168,-1167,-1166,-1165,-1164,-1163,-1162,-1161,-1160,-1159,-1158,-1157,-1156]],"properties":{"prefix":"7"}}]},"2":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[1257,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,-1134,-1133,-1132,-1131,-1130,-1129,-1128,-1127,-1126,-1125,-1124,-1123,-1122,-1121,-1120,-1119,-1118,-1117,-1116,-1115,-1114,-1113,-1112,-1111,-1110,-1109,-1108,-1107,-1106,-1105,-1104,-1103,-1102,-1101,-1100,-1099,-1098,-1257,-1256,-1255,-1254,-1253,-1252,-1251,-1250,-1249,-1248,-1247,-1246,1363,1364,1365,1366,1367,1368,1369]],"properties":{"prefix":"7.3"}},{"type":"Polygon","arcs":[[1370,1371,1372]],"properties":{"prefix":"4.7"}},{"type":"Polygon","arcs":[[1373,1374,1375,1376,1377,1378,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,14,15,16,17,18,19,20,21,22,23,24,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,1401,1402,1403,1404,1405,1406,1407,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,541,542,543,544,545,546,547,548,549,550,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,571,572,573,574,575,576,577,578,579,580,581,582,419,420,421,422,423,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,1456,1457,1458,1459,1460,1461]],"properties":{"prefix":"1.3"}},{"type":"Polygon","arcs":[[323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,1503,1504,1505,1506,1507,1508,1509,1510,1511,1512,1513,1514,1515,1516,1517,1518,-705,-704,-703,-702,-701,-700,-699,-698,-697,-696,-695,-694,-693,-692,-691,-690,-689,-688,-687,-686,-685,-684,-683,-682,-681,-680,-679,-678,-677,-676,-675,-674,-673,-672,-671,-670,-669,-668,-667,-666,-665,-664,-663,-662,-661,-660,-659,-658,-657,-656,-655,1519,1520,1521,1522]],"properties":{"prefix":"9.1"}},{"type":"Polygon","arcs":[[-1373,1523,1524,1525,1526,1527,1528,1529,1530,1531,1532,1533,1534,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1535,1536,1537,1538,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,1554]],"properties":{"prefix":"4.8"}},{"type":"Polygon","arcs":[[1555,1556,1557,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,1585,1586,1587,1588,1589,1590,342,343,344,345,346,347,348,349,350,351,860,861,862,863,864,865,866,867,868,869,870,871,872,873,874,875,876,877,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,920,921,1591,1592,1593,1594,1595,1596,1597,1598,1599,1600,1601,1602,1603,1604]],"properties":{"prefix":"9.8"}},{"type":"Polygon","arcs":[[1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,214,215,216,217,218,219,220,221,222,223,224,225,226,227,228,229,230,231,232,233,234,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,-772,-771,-770,-769,-768,-767,-766,-765,-764,-763,-762,-761,-760,-759,-758,-757,-756,-755,-754,-753,-752,-751,-750,-749,-748,-747,-970,-969,-968,-967,-966,-965,-964,-963,-962,-961,-960,1656,1657]],"properties":{"prefix":"7.7"}},{"type":"Polygon","arcs":[[1658,1659,-503,-502,-501,-500,-499,-498,-497,-496,-495,-494,-493,-492,-491,-490,-489,584,1660,1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,1703,1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,-514,-513,-512,-511,-510,-509,-508,-507,1758]],"properties":{"prefix":"2.1"}},{"type":"Polygon","arcs":[[1759,1760,1761,1762,1763,-1081,-1080,-1079,-1078,-1077,-1076,-1075,-1074,-1073,-1072,-1071,119,120,121,122,123,124,125,126,127,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1235,1236,1237,1238,1239,1240,1241,1242,1801,1802,1803]],"properties":{"prefix":"6.2"}},{"type":"Polygon","arcs":[[1804,1805,1806,1807,1808]],"properties":{"prefix":"1.6"}},{"type":"Polygon","arcs":[[1809,1810,1811,1812,-1475,-1474,-1473,-1472,-1471,-1470,-1469,-1468,-1467,-1466,-1465,-1464,-1463,338,339,340,341,-1591,-1590,-1589,-1588,-1587,-1586,-1585,-1584,-1583,-1582,-1581,-1580,-1579,-1578,-1577,-1576,-1575,-1574,-1573,-1572,-1571,-1570,-1569,-1568,-1567,-1566,-1565,-1564,-1563,-1562,-1561,-1560,-1559,-1558,-1557,-1556,-1605,-1604,1813,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,935,936,937,938,939,940,941,942,943,944,945,946,947,1832,1833,1834,1835,1836,1837,1838,1839,1840,1841]],"properties":{"prefix":"9.4"}},{"type":"Polygon","arcs":[[-1017,1842,-1012,-1011,-1010,-1009,-1008,-1007,-1006,-1005,-1004,-1003,-1002,-1001,-1000,-999,-998,-997,-996,-995,-994,-993,-992,-991,-990,-989,-988,-987,-986,-985,-984,-983,-982,-981,-980,-979,-978,-977,-976,-975,-974,-973,-972,-971,80,81,82,83,84,85,86,87,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,1135,1136,1137]],"properties":{"prefix":"5.1"}},{"type":"Polygon","arcs":[[1883,1884,1885,1886,1887,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,388,389,390,391,392,393,394,395,396,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913,1914,1915]],"properties":{"prefix":"2.5"}},{"type":"Polygon","arcs":[[1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,1926,1927,1928,1929,1930,1931,1932,1933,1934]],"properties":{"prefix":"8.5"}},{"type":"Polygon","arcs":[[-1200,1935,1936,1937,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,1949,1950,1951,1952,1953,1954,-1155,-1154,-1153,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,1973,1974,1975,1976,1977,1978,1979,-1300,-1299,-1298,-1297,-1296,-1295,-1294,-1293,-1292,-1291,-1290,-1289,-1288,-1287,-1286,-1285,-1284,-1283,-1282,-1281,-1280,-1279,-1278,-1277,-1276,-1275,-1274,-1273,-1272,-1271,-1270,-1269,-1268,-1267,-1266,-1265,-1264,-1263,-1262,-1261,-1260,-1259,-1258,-1370,-1369,-1368,-1367,-1366,-1365,-1364,-1245,-1244,-1243,-1242,-1241,-1240,-1239,-1238,-1237,-1236,-1235,-1234,-1233,-1232,-1231,-1230,-1229,-1228,-1227,-1226,-1225,-1224,-1223,-1222,-1221,-1220,-1219,-1218,-1217,-1216,-1215,-1214,-1213,-1212,-1211,-1210,-1209,-1208,-1207,-1206,-1205,-1204,-1203,-1202,-1201]],"properties":{"prefix":"7.2"}},{"type":"Polygon","arcs":[[1980,1981,13,-1391,-1390,-1389,-1388,-1387,-1386,-1385,-1384,-1383,-1382,-1381,-1380,-1379,-1378,-1377,-1376,-1375,-1374,-1462,-1461,-1460,-1459,-1458,-1457,-1456,-1455,-1454,-1453,-1452,-1451,-1450,-1449,-1448,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,2000]],"properties":{"prefix":"1.2"}},{"type":"Polygon","arcs":[[-1649,-1648,-1647,-1646,-1645,-1644,-1643,-1642,-1641,-1640,-1639,-1638,235,236,237,238,239,240,241,242,243,244,245,246,247,248,-650,-649,-648,-647,-646,-645,-644,-643,-642,-641,-640,-639,-638,-637,-636,-635,-634,-633,-632,-631,-630,-629,-628,-627,-626,-625,-624,-623,-622,-621,-620,-619,-618,-617,-616,-615,-614,-808,-807,-806,-805,-804,-803,-802,-801,-800,-799,-798,-797,-796,-795,-794,-793,-792,-791,-790,-789,-788,-787,-786,-785,-784,-783,-782,-781,-780,-779,-778,-777,-776,-775,-774,-773,-1656,-1655,-1654,-1653,-1652,-1651,-1650]],"properties":{"prefix":"7.8"}},{"type":"Polygon","arcs":[[799,800,801,802,803,804,805,806,2001,2002,2003,2004,614,615,616,617,618,619,620,621,622,623,624,625,626,627,628,629,630,631,632,633,634,635,636,637,638,639,640,641,642,643,644,645,646,647,648,649,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,720,721,722,723,724,725,726,727,728,729,730,731,732,733,734,735,736,737,738,739,740,741,742,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795,796,797,798]],"properties":{"prefix":"8.1"}},{"type":"Polygon","arcs":[[2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,-1637,-1636,-1635,-1634,-1633,-1632,-1631,-1630,-1629,-1628,-1627,-1626,-1625,-1624,-1623,-1622,-1621,-1620,-1619,-1618,-1617,-1616,-1615,-1614,-1613,-1612,-1611,-1610,-1609,-1608,-1607,-1606,-1658,-1657,-959,-958,-957,-956,-955,-954,-953,-952,-951,-950,-949,-948,-947,-946,-945,-944,-943,-942,-941,-940,-939,-938,-937,-936,-935,-934,-933,-932,2071,2072,2073,2074,2075,2076,2077,2078,2079,2080]],"properties":{"prefix":"7.6"}},{"type":"Polygon","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,56,57,58,59,60,61,62,63,64,65,66,67,68,69,70,71,72,73,74,75,76,77,78,79,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,-1371,-1555,-1554,-1553,-1552,-1551,-1550,-1549,-1548,-1547,-1546,-1545,-1544,-1543,-1542,-1541,-1540,-1539,-1538,-1537,-1536,1024,1025,1026,1027]],"properties":{"prefix":"4.4"}},{"type":"Polygon","arcs":[[-1770,-1769,-1768,-1767,-1766,-1765,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,2136,2137,2138,2139,2140,2141,2142,2143,2144,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,-1801,-1800,-1799,-1798,-1797,-1796,-1795,-1794,-1793,-1792,-1791,-1790,-1789,-1788,-1787,-1786,-1785,-1784,-1783,-1782,-1781,-1780,-1779,-1778,-1777,-1776,-1775,-1774,-1773,-1772,-1771]],"properties":{"prefix":"6.3"}},{"type":"Polygon","arcs":[[2145,2146,2147,27,28,29,30,31,32,33,34,35,36,37,38,39,40,2148,2149,2150,-1806,-1805,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,2179]],"properties":{"prefix":"1.5"}},{"type":"Polygon","arcs":[[-1718,-1717,-1716,-1715,-1714,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,2194,2195,2196,2197,-525,-524,-523,-522,-521,-520,-519,-518,-517,-516,-515,-1758,-1757,-1756,-1755,-1754,-1753,-1752,-1751,-1750,-1749,-1748,-1747,-1746,-1745,-1744,-1743,-1742,-1741,-1740,-1739,-1738,-1737,-1736,-1735,-1734,-1733,-1732,-1731,-1730,-1729,-1728,-1727,-1726,-1725,-1724,-1723,-1722,-1721,-1720,-1719]],"properties":{"prefix":"2.2"}},{"type":"Polygon","arcs":[[504,2198]],"properties":{"prefix":"1.10"}},{"type":"Polygon","arcs":[[-859,-858,2199,2200,2201,-856,-855,-854,-853,-852,-851,-850,-849,-848,-847,-846,-845,-844,-843,-842,-841,-840,-839,-838,-837,-836,-835,-834,-833,-832,-831,-830,-829,-828,-827,-826,-825,-824,-823,-822,-821,-820,-819,-818,-817,-816,-815,-814,-813,-812,-811,-810,-809,-472,-471,-470,-469,-468,-467,-466,-465,-464,-463,-462,-461,-460,-459,-458,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,1037,1038,1039,1040,1041,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,1069,-890,-889,-888,-887,-886,-885,-884,-883,-882,-881,-880,-879,-878,-877,-876,-875,-874,-873,-872,-871,-870,-869,-868,-867,-866,-865,-864,-863,-862,-861,352,-860]],"properties":{"prefix":"4.1"}},{"type":"Polygon","arcs":[[2235,428,0,1,2,3,4,5,6,7,8,9,10,11,12,-1982,-1981,-2001,-2000,-1999,-1998,-1997,-1996,-1995,-1994,-1993,-1992,-1991,-1990,-1989,-1988,-1987,-1986,-1985,-1984,-1983,-1447,-1446,-1445,-1444,-1443,-1442,-1441,-1440,-1439,-1438,-1437,-1436,-1435,-1434,-1433,-1432,-1431,424,425,2236,2237]],"properties":{"prefix":"1.1"}},{"type":"Polygon","arcs":[[2238,-1815,-1814,-1603]],"properties":{"prefix":"9.7"}},{"type":"Polygon","arcs":[[-2137,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,-2145,-2144,-2143,-2142,-2141,-2140,-2139,-2138]],"properties":{"prefix":"6.4"}},{"type":"Polygon","arcs":[[2239,2240,2241,2242,2243,2244,2245,2246,-1689,-1688,-1687,-1686,-1685,-1684,-1683,-1682,-1681,-1680,-1679,-1678,-1677,-1676,-1675,-1674,-1673,-1672,-1671,-1670,-1669,-1668,-1667,-1666,-1665,-1664,-1663,-1662,-1661,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,603,604,605,606,607,608,609,610,611,612,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,-1903,-1902,-1901,-1900,-1899,-1898,-1897,-1896,-1895,-1894]],"properties":{"prefix":"2.6"}},{"type":"Polygon","arcs":[[-2016,-2015,-2014,-2013,-2012,-2011,-2010,-2009,-2008,-2007,-2006,275,276,277,278,279,280,281,282,283,2247,2248,2249,2250,2251,2252,2253,2254,2255,2256,2257,683,684,685,686,687,688,689,690,691,692,693,694,695,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,-2050,-2049,-2048,-2047,-2046,-2045,-2044,-2043,-2042,-2041,-2040,-2039,-2038,-2037,-2036,-2035,-2034,-2033,-2032,-2031,-2030,-2029,-2028,-2027,-2026,-2025,-2024,-2023,-2022,-2021,-2020,-2019,-2018,-2017]],"properties":{"prefix":"8.2"}},{"type":"Polygon","arcs":[[2258,2259,2260,-1954,-1953,-1952,-1951,-1950,-1949,-1948,-1947,-1946,-1945,-1944,-1943,-1942,-1941,-1940,-1939,-1938,-1937,-1936,-1199,-1198,-1197,-1196,-1195,-1194,-1193,-1192,-1191,-1190,-1189,-1188,-1187,-1186,-1185,-1184,-1183,-1182,-1181,-1180,-1179,-1178,-1177,-1176,-1175,-1174,-1173,-1172,-1171,-1170,-1169,-1168,-1167,-1166,-1165,-1164,-1163,-1162,-1161,-1160,-1159,-1158,-1157,2261]],"properties":{"prefix":"7.1"}},{"type":"Polygon","arcs":[[-1813,-1812,-1811,-1810,-1842,-1841,-1840,-1839,-1838,-1837,-1836,-1835,-1834,-1833,948,949,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,-746,-745,-744,-743,-742,-741,-740,-739,-738,-737,-736,-735,-734,-733,-732,-731,-730,-729,-728,-727,-726,-725,-724,-723,-722,-721,-720,-719,-718,-717,-716,-715,-714,-713,-712,-711,-710,-709,-708,-707,-706,-1519,-1518,-1517,-1516,-1515,-1514,-1513,-1512,-1511,-1510,-1509,-1508,-1507,-1506,-1505,-1504,-1503,-1502,-1501,-1500,-1499,-1498,-1497,-1496,-1495,-1494,-1493,-1492,-1491,-1490,-1489,-1488,-1487,-1486,-1485,-1484,-1483,-1482,-1481,-1480,-1479,-1478,-1477,-1476]],"properties":{"prefix":"9.3"}},{"type":"Polygon","arcs":[[-1406,-1405,-1404,-1403,-1402,-1401,-1400,-1399,-1398,-1397,-1396,-1395,-1394,-1393,-1392,25,26,-2148,-2147,-2146,-2180,-2179,-2178,-2177,-2176,-2175,-2174,-2173,-2172,-2171,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,-1415,-1414,-1413,-1412,-1411,-1410,-1409,-1408,-1407]],"properties":{"prefix":"1.4"}},{"type":"Polygon","arcs":[[2278,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,-1310,-1309,-1308,-1307,-1306,-1305,-1304,-1303,-1302,-1301,-1980,-1979,-1978,-1977,-1976,-1975,-1974,-1973,-1972,-1971,-1970,-1969,-1968,-1967,-1966,-1965,-1964,-1963,-1962,-1961,-1960,-1959,-1958,-1957,-1956,-1152,-1151,-1150,-1149,-1148,-1147,-1146,-1145,-1144,-1143,-1142,-1141,-1140,-1139,187,188,189,190,191,192,-2071,-2070,-2069,-2068,-2067,-2066,-2065,-2064,-2063,-2062,-2061,-2060,-2059,-2058,-2057,-2056,-2055,-2054,-2053,-2052,-2051,-2081,-2080,-2079,-2078,-2077,-2076,-2075,-2074,-2073,-2072,-931,-930,-929,-928,-927,-926,-925,-924,-923,-922,-921,-920,2291,2292,2293,2294,2295]],"properties":{"prefix":"7.5"}},{"type":"Polygon","arcs":[[-2196,-2195,-2194,-2193,-2192,-2191,-2190,-2189,-2188,-2187,-2186,-2185,-2184,-2183,-2182,-2181,-1713,-1712,-1711,-1710,-1709,-1708,-1707,-1706,-1705,-1704,-1703,-1702,-1701,-1700,-1699,-1698,-1697,-1696,-1695,-1694,-1693,-1692,-1691,-1690,-2247,-2246,-2245,-2244,-2243,-2242,-2241,-2240,-1893,-1892,-1891,-1890,-1889,-1888,-1887,-1886,-1885,-1884,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,-566,-565,-564,-563,-562,-561,-560,-559,-558,-557,-556,-555,-554,-553,-552,-551,-550,-549,-548,-547,-546,-545,-544,-543,-542,-541,-540,-539,-538,-537,-536,-535,-534,-533,-532,-531,-530,-529,-528,-527,-526,-2198,-2197]],"properties":{"prefix":"2.3"}},{"type":"Polygon","arcs":[[2327,2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,-2199,505,506,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,2347,2348,2349]],"properties":{"prefix":"1.9"}},{"type":"Polygon","arcs":[[-456,-455,-454,-453,-452,-451,-450,-449,-448,-447,-446,-445,-444,-443,-442,-441,-440,-439,-438,-437,-436,-435,-434,-433,-432,-431,-430,49,50,51,52,53,54,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,-2212,-2211,-2210,-2209,-2208,-2207,-2206,-2205,-2204,-2203,-457]],"properties":{"prefix":"4.2"}},{"type":"Polygon","arcs":[[2376,2377,-1825,-1824,-1823,-1822,-1821,-1820,-1819,-1818,-1817,-1816,-2239,-1602,-1601,-1600,-1599,-1598,-1597,-1596,-1595,-1594,-1593,-1592,922,923,924,925,926,927,928,929,2378,2379,2380]],"properties":{"prefix":"9.6"}},{"type":"Polygon","arcs":[[2381,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,-1883,-1882,-1881,-1880,-1879,-1878,-1877,-1876,-1875,-1874,-1873,-1872,-1871,2382,2383,2384,2385,2386,2387,2388,2389,2390,2391,2392,2393,2394,2395,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,2416]],"properties":{"prefix":"5.3"}},{"type":"Polygon","arcs":[[-2257,-2256,-2255,-2254,-2253,-2252,-2251,-2250,-2249,-2248,284,285,286,287,288,2417,2418,2419,2420,2421,2422,2423,2424,-1931,-1930,-1929,-1928,-1927,677,678,679,680,681,682,-2258]],"properties":{"prefix":"8.3"}},{"type":"Polygon","arcs":[[-2112,991,992,993,994,995,996,-1535,-1534,-1533,-1532,-1531,-1530,-1529,-1528,-1527,-1526,-1525,-1524,-1372,-2136,-2135,-2134,-2133,-2132,-2131,-2130,-2129,-2128,-2127,-2126,-2125,-2124,-2123,-2122,-2121,-2120,-2119,-2118,-2117,-2116,-2115,-2114,-2113]],"properties":{"prefix":"4.6"}},{"type":"Polygon","arcs":[[-1852,-1851,-1850,-1849,-1848,-1847,-1846,-1845,-1844,88,89,90,91,92,93,94,95,96,97,98,-2382,-2417,-2416,-2415,-2414,-2413,-2412,-2411,-2410,-2409,-2408,-2407,-2406,-2405,-2404,-2403,-2402,-2401,-2400,-2399,-2398,-2397,-2396,-2395,-2394,-2393,-2392,-2391,-2390,-2389,-2388,-2387,-2386,-2385,-2384,-2383,-1870,-1869,-1868,-1867,-1866,-1865,-1864,-1863,-1862,-1861,-1860,-1859,-1858,-1857,-1856,-1855,-1854,-1853]],"properties":{"prefix":"5.2"}},{"type":"Polygon","arcs":[[2425,-1083,-1082,-1764,-1763,-1762,-1761,-1760,-1804,-1803,-1802,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,-1097,-1096,-1095,-1094,-1093,-1092,-1091,-1090,-1089,-1088,-1087,-1086,2426]],"properties":{"prefix":"6.1"}},{"type":"Polygon","arcs":[[2427,-487,-486,-485,-484,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,-593,-592,-591,-590,-589,-588,-587,2441,2442]],"properties":{"prefix":"3.1"}},{"type":"Polygon","arcs":[[-1333,-1332,-1331,-1330,-1329,-1328,-1327,-1326,-1325,-1324,-1323,-1322,-1321,-1320,-1319,-1318,-1317,-1316,-1315,-1314,-1313,-1312,-1311,-2291,-2290,-2289,-2288,-2287,-2286,-2285,-2284,-2283,-2282,-2281,-2280,-2279,-2296,-2295,-2294,-2293,-2292,-919,-918,-917,-916,-915,-914,-913,-912,-911,-910,-909,-908,-907,-906,-905,-904,-903,-902,-901,-900,-899,-898,-897,-896,-895,-894,-893,-892,-891,-1070,-1069,-1068,-1067,-1066,-1065,-1064,-1063,-1062,-1061,-1060,-1059,-1058,-1057,-1056,-1055,-1054,-1053,-1052,-1051,-1050,-1049,-1048,-1047,-1046,-1045,-1044,-1043,-1042,-1041,-1040,-1039,-1038,-1037,-1036,-1035,-1034,-1033,-1032,-1031,-1030,-1029,-1028,-1027,-1026,-1025,-1024,-1023,-1022,-1021,-1020,-1019,-1018,-1138,-1137,-1136,-1135,-1363,-1362,-1361,-1360,-1359,-1358,-1357,-1356,-1355,-1354,-1353,-1352,-1351,-1350,-1349,-1348,-1347,-1346,-1345,-1344,-1343,-1342,-1341,-1340,-1339,-1338,-1337,-1336,-1335,-1334]],"properties":{"prefix":"7.4"}},{"type":"Polygon","arcs":[[-2168,-2167,2443,2444,2445,2446,2447,2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,-2333,-2332,-2331,-2330,-2329,-2328,-2350,-2349,-2348,534,535,536,537,538,539,540,-1430,-1429,-1428,-1427,-1426,-1425,-1424,-1423,-1422,-1421,-1420,-1419,-1418,-1417,-1416,-2278,-2277,-2276,-2275,-2274,-2273,-2272,-2271,-2270,-2269,-2268,-2267,-2266,-2265,-2264,-2263,-2170,-2169]],"properties":{"prefix":"1.8"}},{"type":"Polygon","arcs":[[55,-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,1028,1029,1030,1031,1032,1033,1034,1035,1036,-2235,-2234,-2233,-2232,-2231,-2230,-2229,-2228,-2227,-2226,-2225,-2224,-2223,-2222,-2221,-2220,-2219,-2218,-2217,-2216,-2215,-2214,-2213,-2376,-2375,-2374,-2373,-2372,-2371,-2370,-2369,-2368,-2367,-2366,-2365,-2364,-2363,-2362,-2361,-2360,-2359,-2358,-2357,-2356,-2355,-2354,-2353,-2352,-2351]],"properties":{"prefix":"4.3"}},{"type":"Polygon","arcs":[[-2150,-2149,41,42,43,44,45,46,47,48,429,430,431,432,433,434,435,436,437,438,439,440,441,442,-2347,-2346,-2345,-2344,-2343,-2342,-2341,-2340,-2339,-2338,-2337,-2336,-2335,-2334,-2462,-2461,-2460,-2459,-2458,-2457,-2456,-2455,-2454,-2453,-2452,-2451,-2450,-2449,-2448,-2447,-2446,-2445,-2444,-2166,-2165,-2164,-2163,-2162,-2161,-2160,-2159,-2158,-2157,-2156,-2155,-2154,-2153,-2152,-1809,-1808,-1807,-2151]],"properties":{"prefix":"1.7"}},{"type":"Polygon","arcs":[[-1827,-1826,-2378,-2377,-2381,-2380,-2379,930,931,932,933,934,-1832,-1831,-1830,-1829,-1828]],"properties":{"prefix":"9.5"}},{"type":"Polygon","arcs":[[-2439,-2438,-2437,-2436,-2435,-2434,-2433,-2432,-2431,-2430,-2429,-483,-482,-481,-480,-479,-478,-477,-476,-475,-474,-473,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,826,827,828,829,830,831,832,833,834,835,836,837,838,839,840,841,842,843,844,845,846,847,848,849,850,851,852,853,854,855,856,857,858,859,353,354,355,356,357,358,-613,-612,-611,-610,-609,-608,-607,-606,-605,-604,-603,-602,-601,-600,-599,-598,-597,-596,-595,-594,-2441,-2440]],"properties":{"prefix":"3.4"}},{"type":"Polygon","arcs":[[-2310,-2309,-2308,-2307,-2306,-2305,-2304,-2303,-2302,-2301,-2300,-2299,-2298,-2297,-1916,-1915,-1914,-1913,-1912,-1911,-1910,-1909,-1908,-1907,-1906,-1905,-1904,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,-583,-582,-581,-580,-579,-578,-577,-576,-575,-574,-573,-572,-571,-570,-569,-568,-567,-2327,-2326,-2325,-2324,-2323,-2322,-2321,-2320,-2319,-2318,-2317,-2316,-2315,-2314,-2313,-2312,-2311]],"properties":{"prefix":"2.4"}},{"type":"Polygon","arcs":[[-2418,289,290,291,292,293,294,295,296,297,298,299,-1926,-1925,-1924,-1923,-1922,-1921,-1920,-1919,-1918,-1917,-1935,-1934,-1933,-1932,-2425,-2424,-2423,-2422,-2421,-2420,-2419]],"properties":{"prefix":"8.4"}}]},"3":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[2462,2463,2464,2465,2466,2467,2468,2469,2470,-438,-437,-436,-435,-434,-433,-432,-431,-430,49,50,51,52,53,54,2350,2351,2352,2353,2354,2355,2356,2357,2358,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,-2212,-2211,-2210,-2209,2471,2472]],"properties":{"prefix":"4.2.2"}},{"type":"Polygon","arcs":[[2473,2474,2475,2476,2477,2478,2479,2480,2481,2482,2483,1973,1974,1975,1976,1977,1978,1979,-1300,-1299,-1298,-1297,-1296,-1295,-1294,-1293,-1292,-1291,-1290,-1289,-1288,-1287,-1286,-1285,-1284,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517]],"properties":{"prefix":"7.2.3"}},{"type":"Polygon","arcs":[[2518,2519,2520,2521,2522,2523,1569,1570,1571,1572,1573,1574,1575,1576,1577,1578,1579,1580,1581,1582,1583,1584,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533,2534,2535,2536,2537,2538,2539,878,879,880,881,882,883,884,885,886,887,888,889,890,891,892,893,894,895,896,897,898,899,900,901,902,903,904,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,2552,2553,2554,2555]],"properties":{"prefix":"9.8.3"}},{"type":"Polygon","arcs":[[-1859,-1858,-1857,-1856,-1855,-1854,2556,2557,2558,2559,2560,-1852,-1851,-1850,-1849,-1848,-1847,-1846,-1845,-1844,88,89,90,91,92,93,94,95,96,97,98,-2382,-2417,-2416,-2415,-2414,-2413,-2412,-2411,-2410,-2409,-2408,-2407,-2406,-2405,-2404,-2403,-2402,-2401,-2400,-2399,-2398,-2397,-2396,-2395,-2394,-2393,-2392,-2391,-2390,-2389,-2388,-2387,-2386,-2385,-2384,-2383,-1870,-1869,-1868,-1867,-1866,-1865,-1864,-1863,-1862,-1861,-1860]],"properties":{"prefix":"5.2.1"}},{"type":"Polygon","arcs":[[2561,-1406,-1405,-1404,-1403,-1402,-1401,-1400,-1399,-1398,-1397,-1396,-1395,-1394,-1393,-1392,25,26,-2148,-2147,-2146,-2180,-2179,-2178,-2177,-2176,-2175,-2174,-2173,-2172,-2171,2262,2263,2264,2265,2266,2267,2268,2269,2270,2271,2272,2273,2274,2275,2276,2277,-1415,-1414,-1413,-1412,-1411,-1410]],"properties":{"prefix":"1.4.2"}},{"type":"Polygon","arcs":[[2562,2563,2564,2565,2566,2567,2568,2569,2570,2571,-2056,-2055,-2054,-2053,-2052,-2051,-2081,-2080,-2079,-2078,-2077,-2076,-2075,-2074,-2073,-2072,-931,-930,-929,-928,-927,-926,-925,-924,-923,-922,-921,-920,2291,2292,2293,2572,2573,2574,2575,2576,2577,2578,2579,2580,2581]],"properties":{"prefix":"7.5.6"}},{"type":"Polygon","arcs":[[-1159,2582,2258,2259,2260,-1954,-1953,-1952,-1951,-1950,-1949,-1948,-1947,-1946,-1945,-1944,-1943,-1942,-1941,-1940,-1939,-1938,-1937,-1936,-1199,-1198,-1197,-1196,-1195,-1194,-1193,-1192,-1191,-1190,-1189,-1188,-1187,-1186,-1185,-1184,-1183,-1182,-1181,-1180,-1179,-1178,-1177,-1176,-1175,-1174,-1173,-1172,-1171,-1170,-1169,-1168,-1167,-1166,-1165,-1164,-1163,-1162,-1161,-1160]],"properties":{"prefix":"7.1.1"}},{"type":"Polygon","arcs":[[2583,1938,1939,1940,1941,1942,1943,1944,1945,1946,1947,1948,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603,2604,2605,-1217,-1216,-1215,-1214,-1213,-1212,-1211,-1210,-1209,-1208,-1207,-1206,-1205,-1204,-1203,-1202,-1201,2606]],"properties":{"prefix":"7.2.1"}},{"type":"Polygon","arcs":[[2607,1557,2608,2609,2610,2611,2612,2613,2614,2615,1598,1599,1600,2616,2617]],"properties":{"prefix":"9.8.1"}},{"type":"Polygon","arcs":[[2618,2619,2620,-2343,-2342,-2341,-2340,-2339,-2338,-2337,-2336,2621,2622,2623,2624,2625,2626,2627,2628,2629,2630,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,2648]],"properties":{"prefix":"1.7.2"}},{"type":"Polygon","arcs":[[2649,2650,2651,2652,2653,2654,-1668,-1667,-1666,-1665,-1664,-1663,-1662,-1661,585,586,587,588,589,590,591,592,593,594,595,596,597,598,599,600,601,602,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668,2669]],"properties":{"prefix":"2.6.7"}},{"type":"Polygon","arcs":[[2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,365,366,367,368,369,370,371,372,373,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,2713,2714]],"properties":{"prefix":"2.6.5"}},{"type":"Polygon","arcs":[[-1331,-1330,-1329,-1328,-1327,2715,2716,2717,2718,2719,2720,-1347,-1346,-1345,-1344,-1343,-1342,-1341,-1340,2721]],"properties":{"prefix":"7.4.1"}},{"type":"Polygon","arcs":[[2722,2723,2724,2725,2726,2727,2728,2729]],"properties":{"prefix":"9.1.1"}},{"type":"Polygon","arcs":[[2376,2377,-1825,-1824,-1823,-1822,-1821,-1820,-1819,-1818,-1817,-1816,-2239,-1602,-1601,-1600,-1599,-1598,-1597,-1596,-1595,-1594,-1593,-1592,922,923,924,925,926,927,2730]],"properties":{"prefix":"9.6.1"}},{"type":"Polygon","arcs":[[2731,2732,2733,2734,2735,2736,2737,2738,-817,-816,-815,-814,-813,-812,-811,-810,-809,-472,-471,-470,-469,-468,-467,-466,-465,-464,-463,-462,-461,-460,-459,2739,2740,2741,2742,2743,2744,2745,2746,2747,2748,2749,2750,2751,2752,2753,2754,2755,2756,2757,2758,2759,2760,2761,2762,2763,2764,2765,2766,2767,2219,2220,2221,2222,2223,2768,2769,2770]],"properties":{"prefix":"4.1.5"}},{"type":"Polygon","arcs":[[2771,2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,2783,2784,2785,871,872,873,874,875,876,877,-2540,-2539,-2538,-2537,-2536,-2535,-2534,-2533,-2532,2786]],"properties":{"prefix":"9.8.5"}},{"type":"Polygon","arcs":[[-486,-485,-484,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,2439,2440,-593,-592,-591,-590,-589,-588,-587,2441,2787,2788,2789,2790]],"properties":{"prefix":"3.1.2"}},{"type":"Polygon","arcs":[[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]],"properties":{"prefix":"2.6.3"}},{"type":"Polygon","arcs":[[2850,2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,2868,2869,2870]],"properties":{"prefix":"7.4.3"}},{"type":"Polygon","arcs":[[2871,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,2884,2885,2886,2887,2888,2889,1515,1516,1517,1518,-705,-704,-703,-702,-701,-700,-699,-698,-697,-696,-695,-694,-693,-692,-691,-690,-689,-688,2890,2891,2892]],"properties":{"prefix":"9.1.3"}},{"type":"Polygon","arcs":[[2893,2894,2895,2896,2897,2898,2899,2900,2901,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,388,389]],"properties":{"prefix":"2.5.3"}},{"type":"Polygon","arcs":[[2902,2240,2241,2242,2903,2904,2905,2906,2907,2908,2909,-2794,-2793,-2792,-2850,-2849,-2848,-2847,-2846,-2845,2910,2911,2912,2913,2914,2915,385,386,387,-1903,-1902,-1901,-1900,-1899,2916,2917]],"properties":{"prefix":"2.6.1"}},{"type":"Polygon","arcs":[[-1040,-1039,-1038,-1037,-1036,-1035,2918,2919,2920,2921,2922,2923,2924,2925,2926,2927,2928,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,-1049,-1048,-1047,-1046,-1045,-1044,-1043,-1042,-1041]],"properties":{"prefix":"7.4.5"}},{"type":"Polygon","arcs":[[1509,2943,2944,2945,2946,2947,2948,-2877,2949,2950,2951,2952,2953,2954,2955,2956,2957,-2725,-2724,2958,2959,2960,324,325,326,327,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,1503,1504,1505,1506,1507,1508]],"properties":{"prefix":"9.1.5"}},{"type":"Polygon","arcs":[[1914,2972,2973,2974,1885,1886,1887,-2902,-2901,-2900,-2899,-2898,-2897,-2896,2975,2976,2977,2978,2979,2980,2981,2982,393,394,395,396,1903,1904,1905,1906,1907,1908,1909,1910,1911,1912,1913]],"properties":{"prefix":"2.5.1"}},{"type":"Polygon","arcs":[[2983,992,993,994,995,996,-1535,-1534,-1533,-1532,-1531,-1530,-1529,-1528,-1527,-1526,-1525,-1524,-1372,-2136,-2135,-2134,-2133,-2132,-2131,-2130,-2129,-2128,-2127,-2126,-2125,-2124,-2123,-2122,-2121,-2120,-2119,-2118,-2117,-2116,-2115,-2114,-2113,2984,2985]],"properties":{"prefix":"4.6.1"}},{"type":"Polygon","arcs":[[2986,2987,2200,2988,-864,-863,-862]],"properties":{"prefix":"4.1.1"}},{"type":"Polygon","arcs":[[2989,2990,2991,2992,2993,2994,2995,2996,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,3007,3008,3009,3010,3011,3012,3013,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,3036,3037,3038,3039,3040,3041,3042,3043,3044]],"properties":{"prefix":"5.3.2"}},{"type":"Polygon","arcs":[[3045,3046,3047,3048,3049,3050,3051,3052,3053,3054,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,-1321,-1320,-1319,-1318,-1317,-1316,3065,3066,3067,3068,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,3079,3080,3081,3082,3083,3084,3085,3086,3087,-899,-898,-897,-896,-895,-894,-893,-892,-891,-1070,-1069,3088]],"properties":{"prefix":"7.4.7"}},{"type":"Polygon","arcs":[[333,334,335,336,3089,3090,3091,3092,3093,3094,3095,3096,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,1496,1497,1498,1499,1500,1501,1502,-2972,-2971,-2970,3097,3098,3099,3100,3101,3102,3103,3104,3105,3106,3107]],"properties":{"prefix":"9.1.7"}},{"type":"Polygon","arcs":[[3108,-1564,-1563,-1562,-1561,-1560,-1559,-1558,-1557,-1556,-1605,-1604,1813,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,3120,3121,3122,3123,3124,3125,3126,3127,3128,3129,3130,3131,3132]],"properties":{"prefix":"9.4.4"}},{"type":"Polygon","arcs":[[3133,3134,3135,3136,3137,3138,3139,3140,3141,3142,3143,3144,-835,-834,-833,-832,-831,-830,-829,-828,-827,-826,-825,-824,-823,-822,-821,-820,-819,-818,-2739,-2738,-2737,3145,3146,3147,3148,3149,3150,3151,3152,3153,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051,1052,1053,1054,1055,1056,1057,1058,1059,1060,1061,1062,1063,1064,1065,1066,1067,1068,3154]],"properties":{"prefix":"4.1.3"}},{"type":"Polygon","arcs":[[3155,3156,3157,3158,3159,3160,3161,3162,3163,-2563,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,3190]],"properties":{"prefix":"7.5.4"}},{"type":"Polygon","arcs":[[3191,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,3219,3220,3221,3222,3223,3224,3225,3226,3227]],"properties":{"prefix":"7.6.2"}},{"type":"Polygon","arcs":[[3228,3229,3230,3231,3232,3233,3234,3235,3236,3237,3238,3239,3240,3241,3242,3243,3244,-1471,-1470,-1469,-1468,-1467,-1466,-1465,-1464,-1463,338,339,340,341,-1591,-1590,-1589,-1588,-1587,-1586,-1585,-1584,-1583,-1582,-1581,-1580,-1579,-1578,-1577,-1576,-1575,-1574,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,3255,3256,3257]],"properties":{"prefix":"9.4.2"}},{"type":"Polygon","arcs":[[3258,3259,3260,3261,3262,3263,1401,1402,1403,1404,1405,1406,1407,3264,3265,3266,3267]],"properties":{"prefix":"1.3.5"}},{"type":"Polygon","arcs":[[129,130,131,132,133,134,135,136,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,-1777,-1776,-1775,-1774,-1773,-1772,-1771,3283,3284]],"properties":{"prefix":"6.3.1"}},{"type":"Polygon","arcs":[[3285,3286,-627,-626,-625,-624,-623,-622,-621,-620,-619,-618,-617,-616,-615,-614,-808,-807,-806,-805,-804,-803,-802,-801,-800,3287,3288]],"properties":{"prefix":"7.8.4"}},{"type":"Polygon","arcs":[[3289,3290,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,-3002,-3001,-3000,-2999,-2998,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,-1883,-1882,-1881,-1880,-1879,-1878,-1877,-1876,-1875,-1874,-1873,-1872,-1871,2382,2383,2384,2385,2386,3307,3308,3309,3310,3311,3312,3313,3314,3315,3316,3317,3318]],"properties":{"prefix":"5.3.6"}},{"type":"Polygon","arcs":[[27,28,29,30,31,32,33,34,35,36,37,38,39,40,2148,2149,2150,-1806,-1805,2151,2152,2153,2154,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,3319,3320,3321,2146,2147]],"properties":{"prefix":"1.5.1"}},{"type":"Polygon","arcs":[[3322,3323,3324,3325,3326,846,847,848,849,850,851,852,853,854,855,856,857,3327,3328,3329,3330,3331,3332,3333,3334,3335]],"properties":{"prefix":"3.4.5"}},{"type":"Polygon","arcs":[[3336,3337,3338,1279,1280,1281,1282,1283,1284,1285,1286,1287,1288,1289,1290,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,-1128,-1127,-1126,-1125,-1124,-1123,-1122,-1121,-1120,-1119,-1118,-1117,-1116,-1115,-1114,3360,3361,3362,3363,3364,3365,3366,3367,3368]],"properties":{"prefix":"7.3.2"}},{"type":"Polygon","arcs":[[3369,3370,3371,3372,3373,3374,3375,3376,3377,3378,3379,3380,3381,3382,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,14,15,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,3394,3395,3396,3397,3398,3399,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,541,542,543,544,545,546,547,548,549,550,3400]],"properties":{"prefix":"1.3.3"}},{"type":"Polygon","arcs":[[3401,3402,3403,3404,143,144,145,146,147,3405,3406,3407,3408,3409,3410,3411,3412,3413,3414,3415,3416,3417,3418,3419,3420,3421,3422,3423,3424,3425,3426,3427,3428,3429,3430,3431,-1795,-1794,-1793,-1792,-1791,-1790,-1789,-1788,-1787,-1786,-1785,-1784,-1783,-1782,-1781,-1780,-1779,-1778,-3283,-3282,-3281,-3280,-3279,-3278,-3277,-3276,3432,3433,3434,3435,3436,3437,3438,3439,3440,3441]],"properties":{"prefix":"6.3.3"}},{"type":"Polygon","arcs":[[-2088,-2087,-2086,-2085,-2084,-2083,-2082,1028,1029,1030,1031,1032,1033,1034,1035,1036,-2235,-2234,-2233,-2232,-2231,3442,3443,3444,3445,3446,3447,3448,3449,3450]],"properties":{"prefix":"4.3.4"}},{"type":"Polygon","arcs":[[3451,3452,3453,3454,-1623,-1622,-1621,-1620,-1619,-1618,-1617,-1616,-1615,-1614,-1613,-1612,-1611,-1610,-1609,-1608,-1607,-1606,-1658,-1657,-959,-958,3455,3456,3457,3458,3459,3460,3461,3462,3463,3464]],"properties":{"prefix":"7.6.6"}},{"type":"Polygon","arcs":[[1373,1374,3465,3466,3467,3468,3469,3470,3471,3472,3473,3474,3475,3476,3477,3478,3479,3480,3481,3482,3483,3484,571,572,573,574,575,576,577,578,579,580,581,582,419,420,421,422,423,1430,1431,1432,1433,1434,1435,1436,1437,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,3485,3486]],"properties":{"prefix":"1.3.1"}},{"type":"Polygon","arcs":[[3487,3488,3489,3490,3491,3492,3493,3494,3495,3496,3497,3498,3499,3500,3501,-3420,-3419,-3418,-3417,-3416,-3415,-3414,-3413,-3412,-3411,-3410,-3409,-3408,-3407,-3406,148,149,150,151,152,153,154,155,156,157,158,159,2136,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,3515,3516,3517,1203,1204,1205,1206,1207,1208,1209,1210,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221,1222,3518,3519]],"properties":{"prefix":"6.3.5"}},{"type":"Polygon","arcs":[[3520,3521,3522,3523,3524,3525,3526,3527,3528,3529,-2103,-2102,-2101,-2100,-2099,-2098,-2097,-2096,-2095,3530,3531,3532,3533,3534,3535,3536,3537,3538,3539,3540,3541,-2223,-2222,-2221,-2220,-2219,-2218,-2217,-2216,-2215,-2214,-2213,-2376,-2375,-2374,-2373,-2372,-2371,-2370,-2369,-2368]],"properties":{"prefix":"4.3.2"}},{"type":"Polygon","arcs":[[3542,3543,3544,3545,3546,3547,3548,3549,3550,181,182,183,184,185,186,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176,1177,3551,3552,3553]],"properties":{"prefix":"6.4.4"}},{"type":"Polygon","arcs":[[3554,3555,3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,3582,3583,3584,3585,3586,3587,3588,-3460,-3459,-3458,-3457,-3456,-957,-956,-955,-954,-953,-952,-951,-950,-949,-948,-947,-946,-945,-944,-943,-942,-941,-940,-939,-938,-937,-936,-935,-934,-933,-932,2071,2072,2073,2074,2075,2076,2077,3589,3590,3591,3592,3593,-3222,-3221,-3220,-3219,-3218,3594,3595,3596]],"properties":{"prefix":"7.6.4"}},{"type":"Polygon","arcs":[[3597,3598,3599,3600,-2438,-2437,-2436,-2435,-2434,-2433,-2432,-2431,-2430,-2429,-483,-482,-481,-480,-479,-478,-477,3601,3602,3603,3604,3605,3606,3607,3608,3609,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,-600,-599,-598,-597,-596,-595,3629,3630]],"properties":{"prefix":"3.4.1"}},{"type":"Polygon","arcs":[[3631,3632,3633,3634,3635,3636,3637,3638,3639,3640,3641,3642,3643,3644,-3503,2137,2138,2139,2140,2141,2142,2143,2144,1192,1193,1194,1195,1196,1197,1198,1199,1200,1201,1202,-3518,-3517,-3516,-3515,-3514,-3513,-3512,-3511,-3510,-3509,-3508,3645,3646,3647]],"properties":{"prefix":"6.3.7"}},{"type":"Polygon","arcs":[[3648,3649,3650,3651,3652,3653,3654,3655,3656,3657,-634,-633,3658,3659,3660,3661,3662,3663,3664,-795,-794,-793,-792,3665,3666,3667,3668,3669,3670,3671]],"properties":{"prefix":"7.8.2"}},{"type":"Polygon","arcs":[[2328,2329,2330,2331,2332,2333,2334,2335,2336,2337,2338,2339,2340,2341,2342,2343,2344,2345,2346,443,444,445,446,447,448,449,3672,3673,3674,3675,3676,3677,3678,3679,3680,3681,3682,3683]],"properties":{"prefix":"1.9.1"}},{"type":"Polygon","arcs":[[3684,3685,3686,3687,3688,826,827,828,829,830,831,832,833,834,835,836,837,838,839,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,3702,3703,3704,3705]],"properties":{"prefix":"3.4.3"}},{"type":"Polygon","arcs":[[3706,3707,3708,3709,3710,3711,3712,3713,3714,3715,3716,3717,3718,-2191,-2190,-2189,-2188,-2187,-2186,-2185,-2184,-2183,-2182,-2181,-1713,-1712,-1711,-1710,-1709,-1708,-1707,-1706,-1705,3719,3720,3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,3737,3738,3739,3740,3741,3742,3743,3744,3745,-549,-548,-547,-546,-545,-544,-543,-542,-541]],"properties":{"prefix":"2.3.2"}},{"type":"Polygon","arcs":[[-3095,-3094,-3093,-3092,-3091,-3090,337,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,-3097,-3096]],"properties":{"prefix":"9.1.8"}},{"type":"Polygon","arcs":[[-2014,-2013,-2012,-2011,-2010,-2009,-2008,-2007,-2006,275,276,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,696,697,698,699,700,701,702,703,704,705,706,707,708,709,710,711,712,713,714,715,716,717,718,719,-2050,-2049,-2048,-2047,-2046,-2045,-2044,-2043,-2042,-2041,-2040,-2039,-2038,-2037,-2036,-2035,-2034,-2033,-2032,-2031,-2030,-2029,-2028,-2027,-2026,-2025,-2024,-2023,-2022,-2021,-2020,-2019,-2018,-2017,3762,3763,3764]],"properties":{"prefix":"8.2.1"}},{"type":"Polygon","arcs":[[-1011,-1010,-1009,-1008,-1007,-1006,-1005,-1004,-1003,-1002,-1001,-1000,-999,-998,-997,-996,-995,-994,-993,-992,-991,-990,-989,-988,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,1118,1119,1120,1121,1122,1123,1124,1125,1126,1127,1128,1129,1130,1131,1132,1133,1134,3783]],"properties":{"prefix":"5.1.1"}},{"type":"Polygon","arcs":[[3784,3785,3786,3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,3810]],"properties":{"prefix":"2.4.2"}},{"type":"Polygon","arcs":[[3811,475,476,477,478,479,480,481,482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,-2199,505,506,3812,3813,3814,3815,3816,3817,3818]],"properties":{"prefix":"1.9.3"}},{"type":"Polygon","arcs":[[-962,3819,1605,1606,1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,214,215,216,217,218,219,220,3820,3821,3822,3823,3824,3825,3826,3827,3828,-759,-758,-757,-756,-755,-754,-753,-752,-751,-750,-749,-748,-747,-970,-969,-968,-967,-966,-965,-964,-963]],"properties":{"prefix":"7.7.1"}},{"type":"Polygon","arcs":[[3829,295,296,297,298,299,-1926,-1925,-1924,-1923,-1922,-1921,-1920,-1919,-1918,-1917,-1935,-1934,-1933,-1932,-2425,-2424,-2423,3830,3831,3832,3833,3834,3835]],"properties":{"prefix":"8.4.2"}},{"type":"Polygon","arcs":[[3836,3837,3838,3839,167,168,169,170,171,172,173,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855,3856]],"properties":{"prefix":"6.4.2"}},{"type":"Polygon","arcs":[[3857,3858,-3768,-3767,-3766,-987,-986,-985,-984,-983,-982,-981,-980,-979,-978,-977,-976,-975,-974,-973,-972,-971,80,81,82,83,84,85,86,87,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,3859,3860,3861,3862]],"properties":{"prefix":"5.1.3"}},{"type":"Polygon","arcs":[[-3799,3863,3864,3865,3866,3867,3868,3869,3870,3871,3872,3873,3874,3875,3876,405,406,3877,3878,3879,3880,3881,-3809,-3808,-3807,-3806,-3805,-3804,-3803,-3802,-3801,-3800]],"properties":{"prefix":"2.4.4"}},{"type":"Polygon","arcs":[[3882,-1303,-1302,-1301,-1980,-1979,-1978,-1977,-1976,-1975,-1974,-1973,-1972,-1971,-1970,3883,3884,3885,3886,3887,3888,3889,-3172,-3171,-3170,-3169,-3168,-3167,3890,3891,3892,3893,3894,3895,3896]],"properties":{"prefix":"7.5.2"}},{"type":"Polygon","arcs":[[3897,3898,3899,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,3911,3912,3913,3914,3915,3916,3917,3918,3919,3920,3921,3922,-1812,-1811,-1810,3923,3924,3925,3926,3927,3928,950,951,952,953,954,955,956,957,958,959,960,961,962,963,964,965,966,967,968,969,-746,-745,-744,-743,-742,-741,-740,-739,-738,-737,-736,-735,3929]],"properties":{"prefix":"9.3.5"}},{"type":"Polygon","arcs":[[3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,1530,1531,1532,1533,1534,997,998,999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,1014,1015,1016,1017,1018,1019,1020,1021,1022,1023,1535,1536,1537,1538,3941,3942,3943,3944]],"properties":{"prefix":"4.8.3"}},{"type":"Polygon","arcs":[[3945,3946,-3797,-3796,-3795,-3794,-3793,3947,3948,3949,3950,-2304,-2303,-2302,-2301,-2300,-2299,-2298,-2297,-1916,-1915,-1914,-1913,-1912,-1911,-1910,-1909,-1908,3951]],"properties":{"prefix":"2.4.6"}},{"type":"Polygon","arcs":[[-2381,-2380,-2379,930,931,932,933,934,-1832,-1831,-1830,-1829,3952,3953,3954,-2377]],"properties":{"prefix":"9.5.1"}},{"type":"Polygon","arcs":[[3955,3956,3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,3981,3982,3983,3984,3985,3986,-1507,-1506,-1505,-1504,-1503,-1502,-1501,-1500,-1499,-1498,-1497,-1496,-1495,-1494,-1493,-1492,-1491]],"properties":{"prefix":"9.3.3"}},{"type":"Polygon","arcs":[[3987,1525,1526,1527,1528,1529,-3941,-3940,-3939,-3938,-3937,-3936,-3935,-3934,-3933,-3932,3988,3989,3990,3991,3992,3993,3994,3995]],"properties":{"prefix":"4.8.1"}},{"type":"Polygon","arcs":[[1704,1705,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,3996,3997,3998,1703]],"properties":{"prefix":"2.1.3"}},{"type":"Polygon","arcs":[[805,3999,4000,4001,4002,4003,2002,4004,4005,4006,4007,4008,4009,796,797,798,799,800,801,802,803,804]],"properties":{"prefix":"8.1.2"}},{"type":"Polygon","arcs":[[4010,4011,-3921,-3920,-3919,-3918,-3917,-3916,-3915,-3914,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,-3968,-3967,-3966,-3965,-3964,-3963,-3962,-3961,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,4041,4042,4043,4044,4045,-1489,-1488,-1487,-1486,-1485,-1484,-1483,-1482,-1481,-1480,-1479,-1478,-1477,4046]],"properties":{"prefix":"9.3.1"}},{"type":"Polygon","arcs":[[-1721,-1720,-1719,4047,-1717,-1716,-1715,-1714,2180,2181,2182,2183,2184,2185,2186,2187,2188,2189,2190,2191,2192,2193,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,4070,4071,4072,4073,4074,-1741,-1740,-1739,-1738,-1737,-1736,-1735,-1734,-1733,-1732,-1731,-1730,-1729,-1728,-1727,-1726,-1725,-1724,-1723,-1722]],"properties":{"prefix":"2.2.1"}},{"type":"Polygon","arcs":[[4075,4076,2279,2280,2281,2282,2283,2284,2285,2286,2287,2288,2289,2290,-1310,-1309,-1308,-1307,-1306,-1305,-1304,-3883,-3897,-3896,-3895,-3894,-3893,-3892,-3891,-3166,-3165,-2582,-2581,-2580,-2579,-2578,-2577,-2576,-2575]],"properties":{"prefix":"7.5.1"}},{"type":"Polygon","arcs":[[4077,-2602,4078]],"properties":{"prefix":"7.2.6"}},{"type":"Polygon","arcs":[[4079,1658,1659,-503,-502,-501,-500,-499,-498,-497,-496,-495,-494,-493,-492,-491,-490,-489,584,1660,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,1748,1749,1750,1751,1752,1753,1754,1755,1756,1757,-514,-513,-512]],"properties":{"prefix":"2.1.1"}},{"type":"Polygon","arcs":[[4090,-456,-455,-454,-453,-452,-451,-450,-449,-448,-447,-446,-445,-444,-443,-442,-441,-440,-439,-2471,-2470,-2469,-2468,-2467,-2466,-2465,-2464,-2463,-2473,-2472,-2208,-2207,-2206,-2205]],"properties":{"prefix":"4.2.1"}},{"type":"Polygon","arcs":[[4091,4092,4093,4094,4095,4096,4097,4098,4099,4100,4,5,6,7,8,9,10,11,12,-1982,-1981,-2001,-2000,-1999,-1998,-1997,-1996,-1995,-1994,-1993,-1992,-1991,-1990,-1989,-1988,-1987,-1986,-1985,-1984,-1983,-1447,-1446,-1445,-1444,-1443,-1442,-1441,-1440,-1439,-1438,-1437,-1436,-1435,-1434,-1433,-1432,-1431,424,425,2236,4101,4102,4103,4104,4105,4106,4107,4108]],"properties":{"prefix":"1.1.2"}},{"type":"Polygon","arcs":[[-3074,-3073,-3072,-3071,-3070,-3069,-3068,-3067,-3066,-1315,-1314,-1313,-1312,-1311,-2291,-2290,-2289,-2288,-2287,-2286,-2285,-2284,-2283,-2282,-2281,-2280,-2279,-2296,-2295,-2294,-2293,-2292,-919,-918,-917,-916,-915,-914,-913,-912,-911,-910,-909,-908,-907,-906,-905,-904,-903,-902,-901,-900,-3088,-3087,-3086,-3085,-3084,-3083,-3082,-3081,-3080,-3079,-3078,-3077,-3076,-3075]],"properties":{"prefix":"7.4.8"}},{"type":"Polygon","arcs":[[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,56,57,58,59,60,61,62,63,64,65,66,67,4109,4110,4111,4112,4113,4114,4115,4116,4117,4118,4119,4120,4121,-1549,-1548,-1547,-1546,-1545,-1544,-1543,-1542,-1541,-1540,-1539,-1538,-1537,-1536,1024,4122]],"properties":{"prefix":"4.4.3"}},{"type":"Polygon","arcs":[[-2495,-2494,-2493,-2492,-2491,-2490,-2489,-2488,-2487,-2486,-2485,-1283,-1282,-1281,-1280,-1279,-1278,-1277,-1276,-1275,-1274,-1273,-1272,-1271,-1270,-1269,-1268,-1267,-1266,-1265,-1264,-1263,4123,4124,4125,4126,4127,4128,4129,4130,4131,4132,4133,4134,4135,4136,4137,4138,4139,4140,4141,4142,-2599,-2598,-2597,-2596,4143,4144,4145,4146,4147,4148,4149,-2474,-2518,-2517,-2516,-2515,-2514,-2513,-2512,-2511,-2510,-2509,-2508,-2507,-2506,-2505,-2504,-2503,-2502,-2501,-2500,-2499,-2498,-2497,-2496]],"properties":{"prefix":"7.2.4"}},{"type":"Polygon","arcs":[[4150,4151,4152,4153,4154,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,2005,2006,2007,2008,2009,2010,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,2021,2022,2023,2024,2025,4155,4156,4157,4158]],"properties":{"prefix":"8.1.6"}},{"type":"Polygon","arcs":[[4159,4160,4161,2254,2255,2256,2257,683,684,685,686,687,688,689,690,691,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176,4177]],"properties":{"prefix":"8.2.3"}},{"type":"Polygon","arcs":[[4178,4179,4180,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,650,651,652,653,654,655,656,657,658,659,660,661,662,663,664,665,666,667,668,669,670,671,672,673,674,675,676,1926,1927,1928,1929,1930,1931,1932]],"properties":{"prefix":"8.5.2"}},{"type":"Polygon","arcs":[[-2586,-2585,1949,1950,1951,1952,1953,1954,-1155,-1154,-1153,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,1967,1968,1969,1970,1971,1972,-2484,-2483,-2482,-2481,-2480,-2479,-2478,-2477,-2476,-2475,-4150,-4149,-4148,-4147,-4146,-4145,-4144,-2595,-2594,-2593,-2592,-2591,-2590,-2589,-2588,-2587]],"properties":{"prefix":"7.2.2"}},{"type":"Polygon","arcs":[[908,909,910,911,912,913,914,915,916,917,918,919,920,921,1591,1592,1593,1594,1595,1596,1597,-2616,-2615,-2614,-2613,-2612,-2611,-2610,-2609,1558,1559,1560,1561,1562,1563,1564,1565,1566,1567,1568,-2524,-2523,-2522,-2521,-2520,-2519,-2556,-2555,-2554,-2553,-2552,-2551,-2550,-2549,-2548,-2547,-2546,-2545,-2544,-2543,-2542,-2541,905,906,907]],"properties":{"prefix":"9.8.2"}},{"type":"Polygon","arcs":[[-2623,-2622,-2335,-2334,-2462,-2461,-2460,-2459,-2458,-2457,-2456,-2455,-2454,-2453,-2452,-2451,-2450,-2449,-2448,-2447,-2446,-2445,-2444,-2166,-2165,-2164,-2163,-2162,4181,4182,4183,4184,4185,-2634,-2633,-2632,-2631,-2630,-2629,-2628,-2627,-2626,-2625,-2624]],"properties":{"prefix":"1.7.3"}},{"type":"Polygon","arcs":[[4186,4187,4188,4189,4190,4191,4192,4193,4194,624,625,626,627,628,629,630,631,632,633,634,635,636,4195,4196,4197,4198,4199,4200,4201,4202,4203,4204,4205,4206,729,730,731,732,733,734,735,736,737,738,739,740,741,742,4207,4208,4209]],"properties":{"prefix":"8.1.4"}},{"type":"Polygon","arcs":[[-2784,-2783,-2782,4210,4211,4212,-2525,1585,1586,1587,1588,1589,1590,342,343,344,345,346,347,348,349,350,351,860,861,862,863,864,865,866,867,868,869,870,-2786,-2785]],"properties":{"prefix":"9.8.6"}},{"type":"Polygon","arcs":[[4213,-2256,-2255,-2254,-2253,-2252,-2251,-2250,-2249,-2248,284,285,286,287,288,2417,2418,2419,2420,2421,2422,2423,2424,-1931,-1930,-1929,-1928,-1927,677,678,679]],"properties":{"prefix":"8.3.1"}},{"type":"Polygon","arcs":[[42,43,44,45,46,47,48,429,430,431,432,433,434,435,436,437,438,439,440,441,442,-2347,-2346,-2345,-2344,-2621,-2620,-2619,-2649,-2648,-2647,-2646,-2645,-2644,-2643,-2642,-2641,-2640,-2639,-2638,-2637,-2636,-2635,-4186,-4185,-4184,-4183,-4182,-2161,-2160,-2159,-2158,-2157,-2156,-2155,-2154,-2153,-2152,-1809,-1808,4214,4215]],"properties":{"prefix":"1.7.1"}},{"type":"Polygon","arcs":[[-2691,-2690,-2689,-2688,-2687,-2686,-2685,-2684,-2683,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,-1673,-1672,-1671,-1670,-1669,-2655,-2654,-2653,-2652,-2651,-2650,-2670,-2669,-2668,-2667,-2666,-2665,-2664,-2663,-2662,-2661,-2660,-2659,-2658,-2657,-2656,603,604,605,606,607,608,609,610,611,612,359,360,361,362,363,364,-2703,-2702,-2701,-2700,-2699,-2698,-2697,-2696,-2695,-2694,-2693,-2692]],"properties":{"prefix":"2.6.6"}},{"type":"Polygon","arcs":[[-3147,-3146,-2736,-2735,-2734,-2733,-2732,-2771,-2770,-2769,2224,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,1037,1038,1039,1040,1041,-3154,-3153,-3152,-3151,-3150,-3149,-3148]],"properties":{"prefix":"4.1.4"}},{"type":"Polygon","arcs":[[-2526,-4213,-4212,-4211,-2781,-2780,-2779,-2778,-2777,-2776,-2775,-2774,-2773,-2772,-2787,-2531,-2530,-2529,-2528,-2527]],"properties":{"prefix":"9.8.4"}},{"type":"Polygon","arcs":[[-1654,-1653,-1652,-1651,4231,4232,4233,-1647,-1646,-1645,-1644,-1643,-1642,-1641,-1640,-1639,-1638,235,236,237,238,239,240,241,242,243,244,245,246,247,248,-650,-649,-648,-647,-646,-645,-644,-643,-642,-641,-640,-639,-638,-637,-636,-635,-3658,-3657,-3656,-3655,-3654,-3653,-3652,-3651,-3650,-3649,-3672,-3671,-3670,-3669,-3668,-3667,-3666,-791,-790,-789,-788,-787,-786,-785,-784,-783,-782,-781,-780,-779,-778,-777,-776,-775,-774,-773,-1656,-1655]],"properties":{"prefix":"7.8.1"}},{"type":"Polygon","arcs":[[-2837,-2836,-2835,-2834,-2833,-2832,-2831,-2830,-2829,-2828,4234,4235,4236,4237,-2675,-2674,-2673,-2672,-2671,-2715,-2714,-2713,-2712,-2711,-2710,-2709,-2708,-2707,-2706,-2705,-2704,374,375,376,377,378,379,380,381,382,383,384,-2916,-2915,-2914,-2913,-2912,-2911,-2844,-2843,-2842,-2841,-2840,-2839,-2838]],"properties":{"prefix":"2.6.4"}},{"type":"Polygon","arcs":[[-1326,-1325,-1324,-1323,-1322,-3065,-3064,-3063,-3062,-3061,4238,4239,4240,4241,4242,4243,4244,-2855,-2854,-2853,-2852,-2851,-2871,-2870,-2869,-2868,4245,4246,4247,4248,4249,4250,4251,-2718,-2717,-2716]],"properties":{"prefix":"7.4.2"}},{"type":"Polygon","arcs":[[-2980,-2979,-2978,-2977,-2976,-2895,-2894,390,391,392,-2983,-2982,-2981]],"properties":{"prefix":"2.5.2"}},{"type":"Polygon","arcs":[[-2756,-2755,-2754,-2753,-2752,-2751,-2750,-2749,-2748,-2747,-2746,-2745,-2744,-2743,-2742,-2741,-2740,-458,2202,2203,2204,2205,2206,2207,2208,2209,2210,2211,2212,2213,2214,2215,2216,2217,2218,-2768,-2767,-2766,-2765,-2764,-2763,-2762,-2761,-2760,-2759,-2758,-2757]],"properties":{"prefix":"4.1.6"}},{"type":"Polygon","arcs":[[13,-1391,-1390,-1389,-1388,-1387,-1386,-1385,-1384,-1383,-1382,-1381,-1380,-1379,-1378,-1377,-1376,-1375,-1374,-1462,-1461,-1460,-1459,-1458,-1457,-1456,-1455,-1454,-1453,-1452,-1451,-1450,-1449,-1448,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,1996,1997,1998,1999,4252,4253,1981]],"properties":{"prefix":"1.2.1"}},{"type":"Polygon","arcs":[[-487,-2791,-2790,4254,2427]],"properties":{"prefix":"3.1.1"}},{"type":"Polygon","arcs":[[-2904,2243,2244,2245,2246,-1689,-1688,-1687,-1686,-1685,-1684,-1683,-1682,-1681,-1680,-1679,-1678,-1677,-1676,-1675,-1674,-4231,-4230,-4229,-4228,-4227,-4226,-4225,-4224,-4223,-4222,-4221,-4220,-4219,-4218,-4217,-2682,-2681,-2680,-2679,-2678,-2677,-2676,-4238,-4237,-4236,-4235,-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,-2910,-2909,-2908,-2907,-2906,-2905]],"properties":{"prefix":"2.6.2"}},{"type":"Polygon","arcs":[[-2924,-2923,-2922,-2921,-2920,-2919,-1034,-1033,-1032,-1031,-1030,-1029,-1028,-1027,-1026,-1025,-1024,-1023,-1022,-1021,-1020,-1019,-1018,-1138,-1137,-1136,-1135,-1363,-1362,-1361,-1360,-1359,-1358,-1357,-1356,-1355,-1354,-1353,-1352,-1351,-1350,-1349,-1348,-2721,-2720,-2719,-4252,-4251,-4250,-4249,-4248,-4247,-4246,-2867,-2866,-2865,-2864,-2863,-2862,-2861,-2860,4255,4256,4257,4258,4259,4260,-2935,-2934,-2933,-2932,-2931,-2930,-2929,-2928,-2927,-2926,-2925]],"properties":{"prefix":"7.4.4"}},{"type":"Polygon","arcs":[[-2728,-2727,-2726,-2958,-2957,-2956,-2955,-2954,-2953,-2952,-2951,-2950,-2876,-2875,-2874,-2873,-2872,-2893,-2892,-2891,-687,-686,-685,-684,-683,-682,-681,-680,-679,-678,-677,-676,-675,-674,-673,-672,-671,-670,-669,-668,-667,-666,-665,-664,-663,-662,-661,-660,-659,-658,-657,-656,-655,1519,1520,1521,4261,-2729]],"properties":{"prefix":"9.1.2"}},{"type":"Polygon","arcs":[[2448,2449,2450,2451,2452,2453,2454,2455,2456,2457,2458,2459,2460,2461,-2333,-2332,-2331,-2330,-2329,-2328,-2350,-2349,-2348,534,535,536,537,538,539,540,-1430,-1429,-1428,-1427,-1426,-1425,-1424,-1423,-1422,-1421,-1420,-1419,-1418,-1417,-1416,-2278,-2277,-2276,-2275,-2274,-2273,-2272,-2271,-2270,-2269,-2268,-2267,-2266,-2265,-2264,-2263,-2170,-2169,-2168,-2167,2443,4262,4263]],"properties":{"prefix":"1.8.3"}},{"type":"Polygon","arcs":[[-3013,-3012,-3011,-3010,-3009,-3008,-3007,-3006,-3005,-3004,-3003,-3307,-3306,-3305,-3304,-3303,-3302,-3301,-3300,-3299,4264,4265,4266,4267,4268,4269,4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,4281,4282,4283,4284,4285,4286,4287,4288,4289,4290,-3031,-3030,-3029,-3028,-3027,-3026,-3025,-3024,-3023,-3022,-3021,-3020,-3019,-3018,-3017,-3016,-3015,-3014]],"properties":{"prefix":"5.3.3"}},{"type":"Polygon","arcs":[[-2941,-2940,-2939,-2938,-2937,-2936,-4261,-4260,-4259,-4258,-4257,-4256,-2859,-2858,-2857,-2856,-4245,-4244,-4243,-4242,-4241,-4240,-4239,-3060,-3059,-3058,-3057,-3056,-3055,-3054,-3053,-3052,-3051,-3050,-3049,-3048,-3047,-3046,-3089,-1068,-1067,-1066,-1065,-1064,-1063,-1062,-1061,-1060,-1059,-1058,-1057,-1056,-1055,-1054,-1053,-1052,-1051,-1050,-2943,-2942]],"properties":{"prefix":"7.4.6"}},{"type":"Polygon","arcs":[[-2888,-2887,-2886,-2885,-2884,-2883,-2882,-2881,-2880,-2879,-2878,-2949,-2948,-2947,-2946,-2945,-2944,1510,1511,1512,1513,1514,-2890,-2889]],"properties":{"prefix":"9.1.4"}},{"type":"Polygon","arcs":[[-4263,2444,2445,4291]],"properties":{"prefix":"1.8.1"}},{"type":"Polygon","arcs":[[2201,-856,-855,-854,-853,-852,-851,-850,-849,-848,-847,-846,-845,-844,-843,-842,-841,-840,-839,-838,-837,-836,-3145,-3144,-3143,-3142,-3141,-3140,-3139,-3138,-3137,-3136,-3135,-3134,-3155,1069,-890,-889,-888,-887,-886,-885,-884,-883,-882,-881,-880,-879,-878,-877,-876,-875,-874,-873,-872,-871,-870,-869,-868,-867,-866,-865,-2989]],"properties":{"prefix":"4.1.2"}},{"type":"Polygon","arcs":[[-2996,-2995,-2994,-2993,-2992,-2991,-2990,-3045,-3044,4292,4293,4294,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,2412,2413,2414,2415,4295,4296]],"properties":{"prefix":"5.3.1"}},{"type":"Polygon","arcs":[[-2964,-2963,-2962,328,329,330,331,332,-3108,-3107,-3106,-3105,-3104,-3103,-3102,-3101,-3100,-3099,-3098,-2969,-2968,-2967,-2966,-2965]],"properties":{"prefix":"9.1.6"}},{"type":"Polygon","arcs":[[4297,4298,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,1275,1276,1277,1278,-3339,-3338,-3337,-3369,-3368,-3367,-3366,-3365,-3364,-3363,-3362,-3361,-1113,-1112,-1111,-1110,-1109,-1108,-1107,-1106,-1105,-1104,-1103,-1102,-1101,-1100,-1099,-1098,-1257,-1256,-1255,-1254,-1253,-1252,-1251,-1250,-1249,-1248,-1247,-1246,1363,1364,1365,1366,1367,4299]],"properties":{"prefix":"7.3.1"}},{"type":"Polygon","arcs":[[-3123,-3122,-3121,-3120,-3119,-3118,-3117,-3116,-3115,-3114,-3113,-3112,-3111,-3110,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,1826,1827,1828,1829,1830,1831,935,936,937,938,939,940,941,942,943,944,4300,4301,4302,4303,4304,4305,4306,4307,4308,4309,4310,4311,-3233,-3232,-3231,-3230,-3229,-3258,-3257,-3256,-3255,-3254,4312,4313,-3124]],"properties":{"prefix":"9.4.5"}},{"type":"Polygon","arcs":[[-3889,-3888,-3887,-3886,-3885,-3884,-1969,-1968,-1967,-1966,-1965,-1964,-1963,-1962,-1961,-1960,-1959,-1958,-1957,-1956,-1152,-1151,-1150,-1149,-1148,-1147,-1146,-1145,-1144,-1143,-1142,-1141,-1140,-1139,187,188,189,190,191,192,-2071,-2070,-2069,-2068,-2067,-2066,-2065,-2064,-2063,-2062,-2061,-2060,-2059,-2058,-2057,-2572,-2571,-2570,-2569,-2568,-2567,4314,4315,4316,-3157,-3156,-3191,-3190,-3189,-3188,-3187,-3186,-3185,-3184,-3183,-3182,-3181,-3180,-3179,-3178,-3177,-3176,-3175,-3174,-3173,-3890]],"properties":{"prefix":"7.5.3"}},{"type":"Polygon","arcs":[[-3196,-3195,-3194,-3193,210,211,212,213,-1637,-1636,-1635,-1634,-1633,-1632,-1631,-1630,-1629,-1628,-1627,-1626,-1625,-1624,-3455,-3454,4317,4318,4319,4320,4321,-3585,-3584,-3583,-3582,-3581,-3580,-3579,-3578,-3577,-3576,-3575,-3574,-3573,-3572,-3571,-3570,-3569,-3568,-3567,-3566,-3565,-3564,-3563,-3562,-3561,-3560,-3559,-3558,-3557,-3556,-3555,-3597,-3596,-3595,-3217,-3216,-3215,-3214,-3213,-3212,-3211,-3210,-3209,-3208,-3207,-3206,-3205,-3204,-3203,-3202,-3201,-3200,-3199,-3198,-3197]],"properties":{"prefix":"7.6.3"}},{"type":"Polygon","arcs":[[-3692,-3691,-3690,840,841,842,843,844,845,-3327,-3326,-3325,-3324,-3323,-3336,-3335,-3334,-3333,-3332,-3331,-3330,-3329,-3328,858,859,353,354,355,356,357,358,-613,-612,-611,-610,-609,-608,-607,-606,-605,-604,-603,-602,-601,-3629,-3628,-3627,-3626,-3625,-3624,-3623,-3622,-3621,-3620,-3619,-3618,-3617,-3616,-3615,-3614,-3613,-3612,4322,4323,-3704,-3703,-3702,-3701,-3700,-3699,-3698,-3697,-3696,-3695,-3694,-3693]],"properties":{"prefix":"3.4.4"}},{"type":"Polygon","arcs":[[-3351,-3350,-3349,-3348,-3347,-3346,-3345,-3344,-3343,-3342,-3341,-3340,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,1325,1326,1327,1328,1329,1330,1331,1332,1333,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,-1134,-1133,-1132,-1131,-1130,-1129,-3360,-3359,-3358,-3357,-3356,-3355,-3354,-3353,-3352]],"properties":{"prefix":"7.3.3"}},{"type":"Polygon","arcs":[[-3249,-3248,-3247,-3246,-1573,-1572,-1571,-1570,-1569,-1568,-1567,-1566,-1565,-3109,-3133,-3132,-3131,-3130,-3129,-3128,-3127,-3126,-3125,-4314,-4313,-3253,-3252,-3251,-3250]],"properties":{"prefix":"9.4.3"}},{"type":"Polygon","arcs":[[-3385,-3384,16,17,18,19,20,21,22,23,24,1391,1392,1393,1394,1395,1396,1397,1398,1399,1400,-3264,-3263,-3262,-3261,-3260,-3259,-3268,-3267,-3266,-3265,1408,1409,1410,1411,1412,1413,1414,1415,1416,1417,-3400,-3399,-3398,-3397,-3396,-3395,-3394,-3393,-3392,-3391,-3390,-3389,-3388,-3387,-3386]],"properties":{"prefix":"1.3.4"}},{"type":"Polygon","arcs":[[-3274,-3273,-3272,-3271,-3270,-3269,137,138,139,140,141,142,-3405,-3404,-3403,-3402,-3442,-3441,-3440,-3439,-3438,-3437,-3436,-3435,-3434,-3433,-3275]],"properties":{"prefix":"6.3.2"}},{"type":"Polygon","arcs":[[-4283,-4282,-4281,-4280,-4279,-4278,-4277,-4276,-4275,-4274,-4273,-4272,-4271,-4270,-4269,-4268,-4267,-4266,-4265,-3298,-3297,-3296,-3295,-3294,-3293,-3292,-3291,-3290,-3319,-3318,-3317,-3316,-3315,-3314,-3313,-3312,-3311,-3310,-3309,-3308,2387,2388,2389,2390,2391,2392,2393,2394,2395,-4295,-4294,-4293,-3043,-3042,-3041,-3040,-3039,-3038,-3037,-3036,-3035,-3034,-3033,-3032,-4291,-4290,-4289,-4288,-4287,-4286,-4285,-4284]],"properties":{"prefix":"5.3.5"}},{"type":"Polygon","arcs":[[4324,2050,2051,2052,2053,2054,2055,2056,2057,2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,193,194,-3192,-3228,-3227,-3226,-3225,-3224,-3223,-3594,-3593,-3592,4325,4326]],"properties":{"prefix":"7.6.1"}},{"type":"Polygon","arcs":[[4327,-1474,-1473,-1472,-3245,-3244,-3243,-3242,-3241,-3240,-3239,-3238,-3237,-3236,-3235,-3234,-4312,-4311,-4310,-4309,-4308,-4307,-4306,-4305,-4304,-4303,-4302,-4301,945,946,947,1832,1833,1834,1835,1836,1837,1838,1839,1840,4328]],"properties":{"prefix":"9.4.1"}},{"type":"Polygon","arcs":[[-3480,-3479,-3478,-3477,-3476,-3475,-3474,-3473,-3472,-3471,-3470,-3469,-3468,-3467,-3466,1375,1376,1377,1378,-3383,-3382,-3381,-3380,-3379,-3378,-3377,-3376,-3375,-3374,-3373,-3372,-3371,-3370,-3401,551,552,553,554,555,556,557,558,559,560,561,562,563,564,565,566,567,568,569,570,-3485,-3484,-3483,-3482,-3481]],"properties":{"prefix":"1.3.2"}},{"type":"Polygon","arcs":[[-3431,-3430,-3429,-3428,-3427,-3426,-3425,-3424,-3423,-3422,-3421,-3502,-3501,-3500,-3499,-3498,-3497,-3496,-3495,-3494,-3493,-3492,-3491,-3490,-3489,-3488,-3520,-3519,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,-1801,-1800,-1799,-1798,-1797,-1796,-3432]],"properties":{"prefix":"6.3.4"}},{"type":"Polygon","arcs":[[-4165,-4164,-4163,692,693,694,695,-3762,-3761,-3760,-3759,-3758,-3757,-3756,-3755,-3754,-3753,-3752,-3751,-3750,-3749,-3748,-3747,277,278,279,280,281,282,283,2247,2248,2249,2250,2251,2252,2253,-4162,-4161,-4160,-4178,-4177,-4176,-4175,-4174,-4173,-4172,-4171,-4170,-4169,-4168,-4167,-4166]],"properties":{"prefix":"8.2.2"}},{"type":"Polygon","arcs":[[-3505,-3504,-3645,-3644,-3643,-3642,-3641,-3640,-3639,-3638,-3637,-3636,-3635,-3634,-3633,-3632,-3648,-3647,-3646,-3507,-3506]],"properties":{"prefix":"6.3.6"}},{"type":"Polygon","arcs":[[-3537,-3536,-3535,-3534,-3533,-3532,-3531,-2094,-2093,-2092,-2091,-2090,-2089,-3451,-3450,-3449,-3448,-3447,-3446,-3445,-3444,-3443,-2230,-2229,-2228,-2227,-2226,-2225,-2224,-3542,-3541,-3540,-3539,-3538]],"properties":{"prefix":"4.3.3"}},{"type":"Polygon","arcs":[[4329,-2306,-2305,-3951,-3950,-3949,-3948,-3792,-3791,-3790,-3789,-3788,-3787,-3786,-3785,-3811,-3810,-3882,-3881,-3880,-3879,-3878,407,408,409,410,411,412,413,414,415,416,417,418,-583,-582,-581,-580,-579,-578,-577,-576,-575,-574,-573,-572,-571,-570,-569,-568,-567,-2327,-2326,-2325,-2324,-2323,-2322,-2321,-2320,-2319,-2318,-2317,-2316,-2315,-2314,-2313,-2312,-2311,4330,4331]],"properties":{"prefix":"2.4.1"}},{"type":"Polygon","arcs":[[-3586,-4322,-4321,-4320,-4319,-4318,-3453,-3452,-3465,-3464,-3463,-3462,-3461,-3589,-3588,-3587]],"properties":{"prefix":"7.6.5"}},{"type":"Polygon","arcs":[[-3603,-3602,-476,-475,-474,-473,808,809,810,811,812,813,814,815,816,817,818,819,820,821,822,823,824,825,-3689,-3688,-3687,-3686,-3685,-3706,-3705,-4324,-4323,-3611,-3610,-3609,-3608,-3607,-3606,-3605,-3604]],"properties":{"prefix":"3.4.2"}},{"type":"Polygon","arcs":[[-2193,-2192,-3719,-3718,-3717,-3716,-3715,-3714,-3713,-3712,-3711,-3710,-3709,-3708,-3707,-540,-539,-538,-537,-536,-535,-534,-533,-532,-531,-530,-529,-528,-527,-526,-2198,-2197,4332,4333,4334,4335]],"properties":{"prefix":"2.3.1"}},{"type":"Polygon","arcs":[[-3161,-3160,-3159,-3158,-4317,-4316,-4315,-2566,-2565,-2564,-3164,-3163,-3162]],"properties":{"prefix":"7.5.5"}},{"type":"Polygon","arcs":[[4336,-2108,-2107,-2106,-2105,-2104,-3530,-3529,-3528,-3527,-3526,-3525,-3524,-3523,-3522,-3521,-2367,-2366,-2365,-2364,-2363,-2362,-2361,-2360,-2359,-2358,-2357,-2356,-2355,-2354,-2353,-2352,4337,4338,4339]],"properties":{"prefix":"4.3.1"}},{"type":"Polygon","arcs":[[4340,4341,4342,161,162,163,164,165,166,-3840,-3839,-3838,-3837,-3857,4343,4344,4345,4346,4347,-2141,-2140,-2139]],"properties":{"prefix":"6.4.1"}},{"type":"Polygon","arcs":[[-3734,-3733,-3732,-3731,-3730,-3729,-3728,-3727,-3726,-3725,-3724,-3723,-3722,-3721,-3720,-1704,-1703,-1702,-1701,-1700,-1699,-1698,-1697,-1696,-1695,-1694,-1693,-1692,-1691,-1690,-2247,-2246,-2245,-2244,-2243,-2242,-2241,-2240,-1893,-1892,-1891,-1890,-1889,-1888,-1887,-1886,-1885,-1884,2296,2297,2298,2299,2300,2301,2302,2303,2304,2305,2306,2307,2308,2309,2310,2311,2312,2313,2314,2315,2316,2317,2318,2319,2320,2321,2322,2323,2324,2325,2326,-566,-565,-564,-563,-562,-561,-560,-559,-558,-557,-556,-555,-554,-553,-552,-551,-550,-3746,-3745,-3744,-3743,-3742,-3741,-3740,-3739,-3738,-3737,-3736,-3735]],"properties":{"prefix":"2.3.3"}},{"type":"Polygon","arcs":[[-3853,-3852,-3851,-3850,-3849,-3848,-3847,-3846,-3845,-3844,-3843,-3842,-3841,174,175,176,177,178,179,180,-3551,-3550,-3549,-3548,-3547,-3546,-3545,-3544,-3543,-3554,-3553,-3552,1178,1179,1180,1181,1182,1183,1184,1185,1186,1187,1188,1189,1190,1191,-2145,-2144,-2143,-2142,-4348,-4347,-4346,-4345,-4344,-3856,-3855,-3854]],"properties":{"prefix":"6.4.3"}},{"type":"Polygon","arcs":[[404,-3877,-3876,-3875,-3874,-3873,-3872,-3871,-3870,-3869,-3868,-3867,-3866,-3865,-3864,-3798,-3947,-3946,-3952,-1907,-1906,-1905,-1904,397,398,399,400,401,402,403]],"properties":{"prefix":"2.4.5"}},{"type":"Polygon","arcs":[[-3680,-3679,-3678,-3677,-3676,-3675,-3674,-3673,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,-3812,-3819,-3818,-3817,-3816,-3815,-3814,-3813,507,508,509,510,511,512,513,514,515,516,517,518,519,520,521,522,523,524,525,526,527,528,529,530,531,532,533,2347,2348,4348,4349,-3683,-3682,-3681]],"properties":{"prefix":"1.9.2"}},{"type":"Polygon","arcs":[[4350,4351,1759,1760,1761,1762,1763,-1081,-1080,-1079,-1078,-1077,-1076,-1075,-1074,-1073,-1072,-1071,119,120,121,122,123,124,125,126,127,1764,1765,1766,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,1789,1790,1791,1792,1793,1794,1795,1796,1797,1798,1799,1800,1235,1236,1237,1238,1239,1240,1241,1242,1801,1802,4352]],"properties":{"prefix":"6.2.1"}},{"type":"Polygon","arcs":[[-1763,-1762,-1761,-1760,-1804,-1803,-1802,1243,1244,1245,1246,1247,1248,1249,1250,1251,1252,1253,1254,1255,1256,-1097,-1096,-1095,-1094,-1093,-1092,-1091,-1090,-1089,-1088,-1087,-1086,2426,4353,4354]],"properties":{"prefix":"6.1.1"}},{"type":"Polygon","arcs":[[290,291,292,293,294,-3830,-3836,-3835,-3834,-3833,-3832,-3831,-2422,-2421,-2420,4355,4356]],"properties":{"prefix":"8.4.1"}},{"type":"Polygon","arcs":[[-3928,-3927,-3926,-3925,-3924,-1842,-1841,-1840,-1839,-1838,-1837,-1836,-1835,-1834,-1833,948,949,-3929]],"properties":{"prefix":"9.3.6"}},{"type":"Polygon","arcs":[[-3769,-3859,-3858,-3863,-3862,-3861,-3860,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1105,1106,1107,1108,1109,1110,1111,1112,1113,1114,1115,1116,1117,-3783,-3782,-3781,-3780,-3779,-3778,-3777,-3776,-3775,-3774,-3773,-3772,-3771,-3770]],"properties":{"prefix":"5.1.2"}},{"type":"Polygon","arcs":[[-3983,-3982,-3981,-3980,-3979,-3978,-3977,-3976,-3975,-3974,-3973,-3972,-3971,-3970,-3969,-4029,-4028,-4027,-4026,-4025,-4024,-4023,-4022,-4021,-4020,-4019,-4018,-4017,-4016,-4015,-4014,-4013,-3913,-3912,-3911,-3910,-3909,-3908,-3907,-3906,-3905,-3904,-3903,-3902,-3901,-3900,-3899,-3898,-3930,-734,-733,-732,-731,-730,-729,-728,-727,-726,-725,-724,-723,-722,-721,-720,-719,-718,-717,-716,-715,-714,-713,-712,-711,-710,-709,-708,-707,-706,-1519,-1518,-1517,-1516,-1515,-1514,-1513,-1512,-1511,-1510,-1509,-1508,-3987,-3986,-3985,-3984]],"properties":{"prefix":"9.3.4"}},{"type":"Polygon","arcs":[[-3990,-3989,-3931,-3945,-3944,-3943,-3942,1539,1540,1541,1542,1543,1544,1545,1546,1547,1548,1549,1550,1551,1552,1553,4357,4358,4359,-3996,-3995,-3994,-3993,-3992,-3991]],"properties":{"prefix":"4.8.2"}},{"type":"Polygon","arcs":[[-3660,-3659,-632,-631,-630,-629,-628,-3287,-3286,-3289,-3288,-799,-798,-797,-796,-3665,-3664,-3663,-3662,-3661]],"properties":{"prefix":"7.8.3"}},{"type":"Polygon","arcs":[[1661,1662,1663,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,1685,1686,1687,1688,1689,1690,1691,1692,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,-3999,-3998,-3997,1722,1723,1724,1725,1726,1727,1728,1729,1730,1731,1732,1733,1734,1735,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,-4090,-4089,-4088,-4087,-4086,-4085,-4084,-4083,-4082,-4081]],"properties":{"prefix":"2.1.2"}},{"type":"Polygon","arcs":[[4360,2235,428,0,1,2,3,-4101,-4100,-4099,-4098,-4097,-4096,-4095,-4094,-4093,-4092,-4109,-4108,-4107,-4106,-4105,-4104,4361]],"properties":{"prefix":"1.1.1"}},{"type":"Polygon","arcs":[[-4030,-3960,-3959,-3958,-3957,-3956,-1490,-4046,-4045,-4044,-4043,-4042,-4041,-4040,-4039,-4038,-4037,-4036,-4035,-4034,-4033,-4032,-4031]],"properties":{"prefix":"9.3.2"}},{"type":"Polygon","arcs":[[-3822,-3821,221,222,223,224,225,226,227,228,229,230,231,232,233,234,1637,1638,1639,1640,1641,1642,1643,1644,1645,1646,1647,1648,1649,1650,1651,1652,1653,1654,1655,-772,-771,-770,-769,-768,-767,-766,-765,-764,-763,-762,-761,-760,-3829,-3828,-3827,-3826,-3825,-3824,-3823]],"properties":{"prefix":"7.7.2"}},{"type":"Polygon","arcs":[[-4066,-4065,-4064,-4063,-4062,-4061,-4060,-4059,-4058,-4057,-4056,-4055,-4054,-4053,-4052,-4051,-4050,-4049,2194,2195,2196,2197,-525,-524,-523,-522,-521,-520,-519,-518,-517,-516,-515,-1758,-1757,-1756,-1755,-1754,-1753,-1752,-1751,-1750,-1749,-1748,-1747,-1746,-1745,-1744,-1743,-1742,-4075,-4074,-4073,-4072,-4071,-4070,-4069,-4068,-4067]],"properties":{"prefix":"2.2.2"}},{"type":"Polygon","arcs":[[-4010,-4009,-4008,-4007,-4006,-4005,2003,2004,614,615,616,617,618,619,620,621,622,623,-4195,-4194,-4193,-4192,-4191,-4190,-4189,-4188,-4187,-4210,-4209,-4208,743,744,745,746,747,748,749,750,751,752,753,754,755,756,757,758,759,760,761,762,763,764,765,766,767,768,769,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,793,794,795]],"properties":{"prefix":"8.1.3"}},{"type":"Polygon","arcs":[[-4121,-4120,-4119,-4118,-4117,-4116,-4115,-4114,-4113,-4112,-4111,-4110,68,69,70,71,72,73,74,75,76,77,78,79,970,971,972,973,974,975,976,977,978,979,980,981,982,983,984,985,986,987,988,989,990,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,2122,2123,2124,2125,2126,2127,2128,2129,2130,2131,2132,2133,2134,2135,-1371,-1555,-1554,-1553,-1552,-1551,-1550,-4122]],"properties":{"prefix":"4.4.4"}},{"type":"Polygon","arcs":[[-4078,4362,4363,4364,-4140,-4139,-4138,-4137,-4136,-4135,-4134,-4133,-4132,-4131,-4130,-4129,-4128,-4127,-4126,-4125,-4124,-1262,-1261,-1260,-1259,-1258,-1370,-1369,-1368,-1367,-1366,-1365,-1364,-1245,-1244,-1243,-1242,-1241,-1240,-1239,-1238,-1237,-1236,-1235,-1234,-1233,-1232,-1231,-1230,-1229,-1228,-1227,-1226,-1225,-1224,-1223,-1222,-1221,-1220,-1219,-1218,-2606,-2605,-2604,-2603]],"properties":{"prefix":"7.2.7"}},{"type":"Polygon","arcs":[[-4204,-4203,-4202,-4201,-4200,-4199,-4198,-4197,-4196,637,638,639,640,641,642,643,644,645,646,647,648,649,249,250,251,252,253,254,255,256,-4155,-4154,-4153,-4152,-4151,-4159,-4158,-4157,-4156,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,720,721,722,723,724,725,726,727,728,-4207,-4206,-4205]],"properties":{"prefix":"8.1.5"}},{"type":"Polygon","arcs":[[-4365,-4364,-4363,-4079,-2601,-2600,-4143,-4142,-4141]],"properties":{"prefix":"7.2.5"}}]},"4":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[4365,4366,4367,-3657,-3656,-3655,-3654,-3653,-3652,-3651,-3650,-3649,4368,4369,4370,4371,4372,4373,4374,4375,4376,4377,4378,4379,4380]],"properties":{"prefix":"7.8.1.7"}},{"type":"Polygon","arcs":[[4381,4382,4383,4384,4385,4386,4387,4388,4389,4390,4391,-2450,-2449,-2448,-2447,-2446,-2445,-2444,-2166,-2165,-2164,-2163,-2162,4181,4182,4183,4184,4185,-2634,-2633,-2632,-2631,4392]],"properties":{"prefix":"1.7.3.3"}},{"type":"Polygon","arcs":[[4393,4394,4395,4396,4397,2819,2820,2821,2822,2823,4398,4399,4400,4401,2840,2841,2842,2843,2844,2845,2846,2847,2848,2849,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,4402]],"properties":{"prefix":"2.6.3.1"}},{"type":"Polygon","arcs":[[4403,-4116,-4115,-4114,-4113,-4112,-4111,-4110,68,69,70,71,72,73,4404,4405,4406,4407,4408,4409,4410,4411,4412,4413,4414,4415,4416,4417,4418,2128,2129,2130,2131,2132,2133,2134,2135,-1371,-1555,-1554,-1553,-1552,4419]],"properties":{"prefix":"4.4.4.1"}},{"type":"Polygon","arcs":[[4420,-3093,-3092,-3091,-3090,337,1462,1463,1464,1465,1466,1467,1468,1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,1479,1480,1481,1482,1483,1484,1485,-3097,-3096]],"properties":{"prefix":"9.1.8.1"}},{"type":"Polygon","arcs":[[4421,4422,4423,4424,3926,3927,3928,950,951,952,953,954,955,956,957,958,959,960,961,4425,4426,4427,4428,4429,4430,4431,4432,4433,4434]],"properties":{"prefix":"9.3.5.5"}},{"type":"Polygon","arcs":[[-782,4435,4436,4437,4438,-1641,-1640,-1639,-1638,235,236,237,4439,4440,4441,4442,4443,4444,4445,4446,4447,4448,4449,-784,-783]],"properties":{"prefix":"7.8.1.2"}},{"type":"Polygon","arcs":[[4450,4451,4452,4453,4454,4455,4456]],"properties":{"prefix":"7.5.3.5"}},{"type":"Polygon","arcs":[[4457,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,1676,1677,1678,1679,1680,1681,1682,1683,1684,4458,4459,4460,4461,4462,1736,1737,1738,1739,1740,1741,1742,1743,1744,1745,1746,1747,-4090,-4089,-4088,-4087,-4086,-4085,-4084,-4083,-4082,4463]],"properties":{"prefix":"2.1.2.1"}},{"type":"Polygon","arcs":[[-2107,4464,4465]],"properties":{"prefix":"4.3.1.1"}},{"type":"Polygon","arcs":[[4466,4467,4468,4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,1275,1276,1277,1278,-3339,-3338,-3337,-3369,-3368,-3367,-3366,-3365,-3364,-3363,-3362,-3361,-1113,-1112,-1111,-1110,-1109,-1108,-1107,-1106,-1105,-1104,-1103,-1102]],"properties":{"prefix":"7.3.1.4"}},{"type":"Polygon","arcs":[[4483,4484,4485,4486,4487,4488,4489,4490,4491,4492,4493,4494,3582,3583,3584,3585,3586,3587,3588,-3460,-3459,-3458,-3457,-3456,-957,-956,-955,-954,-953,-952,-951,-950,-949,-948,-947,-946,-945,-944,-943,-942,-941,-940,4495,4496,4497,4498,4499,4500,4501,4502]],"properties":{"prefix":"7.6.4.2"}},{"type":"Polygon","arcs":[[4503,4504,4505,4506,4507,4508,4509,4510,4511,4512,4513,4514,4515,-1427,-1426,-1425,-1424,-1423,-1422,-1421,-1420,-1419,-1418,-1417,-1416,-2278]],"properties":{"prefix":"1.8.3.5"}},{"type":"Polygon","arcs":[[4516,4517,4518,4519,4520,4521,4522,4523,-790,-789,-788,-787,-786,-785,-4450,-4449,-4448,-4447,-4446,-4445,-4444,-4443,4524,4525,4526]],"properties":{"prefix":"7.8.1.4"}},{"type":"Polygon","arcs":[[-4440,238,239,240,241,242,243,4527,4528,-4519,-4518,-4517,-4527,-4526,-4525,-4442,-4441]],"properties":{"prefix":"7.8.1.3"}},{"type":"Polygon","arcs":[[4529,4530,-2585,1949,4531,4532]],"properties":{"prefix":"7.2.2.3"}},{"type":"Polygon","arcs":[[477,478,479,480,481,4533,4534,4535,4536,4537,4538,4539,3816,3817,3818,4540,4541,4542]],"properties":{"prefix":"1.9.3.2"}},{"type":"Polygon","arcs":[[4543,138,139,140,141,142,-3405,-3404,-3403,-3402,-3442,-3441,-3440,-3439,-3438,-3437,-3436,-3435,4544,4545,4546]],"properties":{"prefix":"6.3.2.2"}},{"type":"Polygon","arcs":[[4547,4548,4549,4550,4551,4552,4553,920,921,1591,1592,1593,1594,1595,1596,1597,-2616,-2615,4554,4555]],"properties":{"prefix":"9.8.2.1"}},{"type":"Polygon","arcs":[[4556,4557,4558,4559,4560,4561,4562,4563]],"properties":{"prefix":"7.1.1.5"}},{"type":"Polygon","arcs":[[4564,4565,4566,-1358,-1357,-1356,-1355,-1354,-1353,-1352,-1351,-1350,-1349,-1348,-2721,-2720,-2719,-4252,-4251,-4250,-4249,-4248,-4247,-4246,-2867,-2866,-2865,-2864,4567,4568]],"properties":{"prefix":"7.4.4.1"}},{"type":"Polygon","arcs":[[1648,4569,4570,4571,4572]],"properties":{"prefix":"7.7.2.5"}},{"type":"Polygon","arcs":[[4573,4574,4575,4576,4577,4578,4579,4580,4581]],"properties":{"prefix":"4.8.2.2"}},{"type":"Polygon","arcs":[[3708,3709,3710,3711,3712,3713,4582,4583,4584,3745,-549,-548,-547,-546,-545,-544,-543,4585,4586,4587]],"properties":{"prefix":"2.3.2.1"}},{"type":"Polygon","arcs":[[4588,4260,-2935,-2934,-2933,-2932,-2931,-2930,-2929,-2928,-2927,-2926]],"properties":{"prefix":"7.4.4.7"}},{"type":"Polygon","arcs":[[-980,-979,-978,-977,-976,-975,-974,-973,-972,-971,80,81,82,83,84,4589,4590,4591,4592,1860,1861,1862,1863,1864,1865,1866,1867,1868,1869,1870,1871,1872,3859,3860,3861,3862,4593,4594,4595,4596,4597,4598]],"properties":{"prefix":"5.1.3.2"}},{"type":"Polygon","arcs":[[4599,4600,-2336,2621,2622,2623,4601]],"properties":{"prefix":"1.7.2.7"}},{"type":"Polygon","arcs":[[2087,2088,2089,2090,2091,2092,2093,2094,2095,4602,4603,4604,4605,4606,4607,-1543,-1542,-1541,-1540,-1539,4608,4609]],"properties":{"prefix":"4.4.3.1"}},{"type":"Polygon","arcs":[[4610,4611,4612,4613,4614,4615,4616,4617,4618,4619,4620,4621,4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,4632,4633,4634,-2044,-2043,-2042,-2041,-2040,4635,4636,4637,4638]],"properties":{"prefix":"8.2.1.5"}},{"type":"Polygon","arcs":[[4639,4640,4641,4642,4643,4644,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,2644,2645,2646,2647,4645,4646,4647]],"properties":{"prefix":"1.7.2.1"}},{"type":"Polygon","arcs":[[-3983,-3982,-3981,-3980,-3979,-3978,-3977,-3976,-3975,-3974,-3973,-3972,-3971,-3970,-3969,-4029,-4028,-4027,-4026,-4025,-4024,4648,4649,4650,4651,4652,4653,4654,4655,4656,4657,4658,4659,-715,-714,-713,-712,-711,-710,-709,-708,-707,-706,-1519,-1518,-1517,-1516,-1515,-1514,-1513,4660]],"properties":{"prefix":"9.3.4.1"}},{"type":"Polygon","arcs":[[4661,4662,4663,4664,4665,4666,4667,4668,4669,4670,4671,4672,4673,4674,4675,4676,4677,4678,4331,4679,4680,4681,4682,4683,4684,4685,4686,4687]],"properties":{"prefix":"2.4.1.2"}},{"type":"Polygon","arcs":[[3522,3523,3524,4688,4689,4690]],"properties":{"prefix":"4.3.2.1"}},{"type":"Polygon","arcs":[[4691,4692,4693,4694,4695,4696,4697,4698,4699,4700,4701,4702,1496,1497,1498,1499,1500,1501,1502,-2972,-2971,-2970,3097,3098,3099,3100,3101,4703]],"properties":{"prefix":"9.1.7.2"}},{"type":"Polygon","arcs":[[2220,4704,2731,2732,2733,4705,2765,2766,2767,2219]],"properties":{"prefix":"4.1.5.1"}},{"type":"Polygon","arcs":[[-3245,-3244,-3243,-3242,-3241,-3240,-3239,-3238,-3237,-3236,-3235,-3234,-4312,-4311,-4310,-4309,-4308,-4307,-4306,-4305,-4304,-4303,-4302,-4301,945,946,947,1832,1833,1834,1835,1836,1837,1838,1839,1840,4328,4706,-1472]],"properties":{"prefix":"9.4.1.1"}},{"type":"Polygon","arcs":[[4707,4708,4709,4710,-3066,-1315,-1314,-1313,-1312,-1311,-2291,4711,4712,4713,4714,4715,4716,4717,4718,4719,4720,-915,-914,4721,4722]],"properties":{"prefix":"7.4.8.4"}},{"type":"Polygon","arcs":[[4723,4724,4725,4726,3635,3636,3637,3638,3639,3640,3641,4727,4728,4729,4730,4731,1194,1195,1196,1197,1198,1199,1200,1201,1202,-3518,-3517,-3516,-3515,-3514,-3513,-3512,4732,4733,4734]],"properties":{"prefix":"6.3.7.3"}},{"type":"Polygon","arcs":[[4735,2872,2873,2874,2875,2876,2877,2878,2879,2880,2881,2882,2883,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,4748,4749,-689,-688,2890,4750]],"properties":{"prefix":"9.1.3.1"}},{"type":"Polygon","arcs":[[4751,163,164,165,166,-3840,-3839,-3838,-3837,-3857,4343,4344,4345,4346,4752,4753,4754,4755]],"properties":{"prefix":"6.4.1.2"}},{"type":"Polygon","arcs":[[4756,4757,4758,-3111,-3110,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,1824,1825,4759,4760,4761,4762,4763,4764,4765,4766,4767,4768,4769,4770,4771,4772,4773,4774]],"properties":{"prefix":"9.4.5.2"}},{"type":"Polygon","arcs":[[1827,1828,4775,-4763,-4762,-4761,4776,4777]],"properties":{"prefix":"9.4.5.4"}},{"type":"Polygon","arcs":[[-3660,-3659,-632,-631,-630,-629,-628,-3287,-3286,-3289,-3288,-799,-798,-797,-796,-3665,4778]],"properties":{"prefix":"7.8.3.2"}},{"type":"Polygon","arcs":[[4779,4780,4781,4782,4783,4784,2519,2520,2521,2522,2523,1569,1570,1571,1572,1573,1574,1575,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,2535,2536,2537,2538,2539,878,879,880,881,882,883,884,885,886,887,4796]],"properties":{"prefix":"9.8.3.3"}},{"type":"Polygon","arcs":[[4797,4798,4799,4800,4801]],"properties":{"prefix":"2.3.3.5"}},{"type":"Polygon","arcs":[[4802,4803,-1226,-1225,-1224,-1223,-1222,4804,4805,4806,4807]],"properties":{"prefix":"7.2.7.2"}},{"type":"Polygon","arcs":[[-3619,-3618,-3617,-3616,4808,4809,4810,4811,4812,4813,4814,4815,4816,4817,4818,4819,4820,4821,4822,-3324,4823,4824,4825,4826,4827,4828,4829,4830,4831,4832,4833,4834,4835,4836,-3623,-3622,-3621,-3620]],"properties":{"prefix":"3.4.4.5"}},{"type":"Polygon","arcs":[[-2980,-2979,-2978,-2977,-2976,-2895,-2894,390,391,392,-2983,-2982,-2981]],"properties":{"prefix":"2.5.2.1"}},{"type":"Polygon","arcs":[[4837,1527,1528,1529,-3941,-3940,-3939,-3938,-3937,-3936,-3935,4838,4839,4840,4841,4842,4843,3994,4844]],"properties":{"prefix":"4.8.1.2"}},{"type":"Polygon","arcs":[[4845,-3701,4846]],"properties":{"prefix":"3.4.4.3"}},{"type":"Polygon","arcs":[[2205,4847,-2741,-2740,-458,2202,2203,2204]],"properties":{"prefix":"4.1.6.4"}},{"type":"Polygon","arcs":[[4848,43,4849,4850,4851,4852,4853,4854,-2637,-2636,-2635,-4186,-4185,-4184,-4183,-4182,-2161,-2160,-2159,-2158,-2157,-2156,-2155,-2154,-2153,-2152,-1809,-1808,4214,4855,4856]],"properties":{"prefix":"1.7.1.1"}},{"type":"Polygon","arcs":[[3957,3958,3959,3960,3961,3962,3963,3964,3965,3966,3967,3968,3969,3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,3980,4857,4858,4859,4860,4861,4862,4863,4864,4865,4866,4867,4868,4869,4870,4871,4872,4873,-1499,-1498,-1497,-1496,-1495,-1494,-1493,4874]],"properties":{"prefix":"9.3.3.1"}},{"type":"Polygon","arcs":[[4875,4092,4093,4094,4095,4096,4097,4098,4099,4100,4,4876,4877,4878,-1985,-1984,-1983,-1447,-1446,-1445,-1444,-1443,-1442,-1441,-1440,-1439,-1438,-1437,-1436,-1435,-1434,-1433,-1432,-1431,424,425,2236,4101,4102,4103]],"properties":{"prefix":"1.1.2.1"}},{"type":"Polygon","arcs":[[4879,4880,4881,4882,4883,4884,207,208,209,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201]],"properties":{"prefix":"7.6.2.5"}},{"type":"Polygon","arcs":[[4885,4886,4887,4888,4889,4890,4891,4892,-1528,-1527,-1526,-1525,-1524,-1372,-2136,-2135,-2134,-2133,-2132,-2131,-2130,-2129,-2128,-2127,-2126,-2125,-2124,-2123,-2122,-2121,-2120,4893]],"properties":{"prefix":"4.6.1.2"}},{"type":"Polygon","arcs":[[4894,258,259,260,261,262,263,4895,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,4906,4907,4908,4909,4910]],"properties":{"prefix":"8.1.6.1"}},{"type":"Polygon","arcs":[[4911,4912,4913,4914,4915,3219,3220,3221,3222,3223,3224,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926,4927,4928,4929]],"properties":{"prefix":"7.6.2.3"}},{"type":"Polygon","arcs":[[4930,-1141,-1140,-1139,187,188,189,190,191,192,-2071,-2070,-2069,-2068,-2067,-2066,-2065,4931,4932,4933,4934,4935,-4451,-4457,4936,4937,4938,4939,4940,4941,4942,4943,4944,4945,4946,4947,4948,4949,-4455,-4454,4950,4951,4952,4953]],"properties":{"prefix":"7.5.3.3"}},{"type":"Polygon","arcs":[[4954,4955,4956,4957,4958,4959,4960,4961,4962,4963,4964,4965,4966,4967,4968,4969,4970,4971]],"properties":{"prefix":"7.7.1.3"}},{"type":"Polygon","arcs":[[-1264,-1263,4123,4124,4125,4126,4972,4973,4974,4975,4976,4977,4978,4979,4980,4981,4982,4983,4984]],"properties":{"prefix":"7.2.4.3"}},{"type":"Polygon","arcs":[[4985,4986,4987,-2727,-2726,-2958,-2957,-2956,-2955,-2954,-2953,-2952,-2951,-2950,-2876,-2875,-2874,-2873,-2872,4988,4989,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,5004,5005,5006,5007,5008,5009,5010,5011,5012,5013,5014,-668,-667,-666,-665,-664,-663,5015,5016]],"properties":{"prefix":"9.1.2.3"}},{"type":"Polygon","arcs":[[5017,-2937,-2936,-4261,-4260,-4259,-4258,-4257,-4256,-2859,-2858,-2857,-2856,-4245,5018,5019,5020,5021,5022]],"properties":{"prefix":"7.4.6.2"}},{"type":"Polygon","arcs":[[-4244,-4243,-4242,-4241,-4240,-4239,-3060,-3059,-3058,-3057,-3056,-3055,-3054,-3053,-3052,-3051,-3050,-3049,-3048,-3047,-3046,-3089,-1068,-1067,-1066,-1065,-1064,-1063,-1062,-1061,-1060,-1059,-1058,-1057,-1056,-1055,-1054,-1053,5023,5024,-5023,-5022,-5021,-5020,-5019]],"properties":{"prefix":"7.4.6.4"}},{"type":"Polygon","arcs":[[-3473,-3472,5025,5026]],"properties":{"prefix":"1.3.2.1"}},{"type":"Polygon","arcs":[[5027,5028,5029,5030,-2433,-2432,-2431,-2430,-2429,-483,-482,-481,-480,-479,-478,-477,3601,3602,3603,3604,3605,3606,3607,3608,3609,5031]],"properties":{"prefix":"3.4.1.2"}},{"type":"Polygon","arcs":[[5032,5033,5034,5035,5036,5037,5038,-2834,-2833,-2832,-2831,-2830,-2829,-2828,4234,5039,5040,5041,5042,-2708,-2707,-2706,-2705,-2704,374,375,376,377,378,379,380,381,382,5043,5044]],"properties":{"prefix":"2.6.4.2"}},{"type":"Polygon","arcs":[[3285,3286,-627,-626,-625,-624,-623,-622,-621,-620,-619,-618,5045,5046,-805,-804,-803,5047,5048]],"properties":{"prefix":"7.8.4.1"}},{"type":"Polygon","arcs":[[5049,-1761,5050,5051,5052,5053,5054,5055,5056,5057,5058,5059,5060,5061,1249,1250,1251,1252,1253,1254,1255,1256,-1097,-1096,-1095,-1094,-1093,-1092,-1091,-1090,-1089,-1088,-1087,-1086,2426,4353,5062]],"properties":{"prefix":"6.1.1.1"}},{"type":"Polygon","arcs":[[4190,4191,4192,4193,4194,624,625,626,627,628,629,630,631,632,633,634,5063,5064,5065,5066,5067,5068,5069,5070,5071,5072,5073,5074,5075,738,739,740,741,742,4207,4208,4209,5076]],"properties":{"prefix":"8.1.4.1"}},{"type":"Polygon","arcs":[[5077,5078,5079,296]],"properties":{"prefix":"8.4.2.1"}},{"type":"Polygon","arcs":[[5080,5081,5082,-4060,-4059,-4058,-4057,-4056,-4055,5083,5084,5085,5086,5087,-516,-515,-1758,-1757,-1756,-1755,-1754,-1753,-1752,5088,5089]],"properties":{"prefix":"2.2.2.2"}},{"type":"Polygon","arcs":[[3444,5090,5091,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,1035,1036,-2235,-2234,-2233,-2232,-2231,3442,3443]],"properties":{"prefix":"4.3.4.5"}},{"type":"Polygon","arcs":[[5102,2558,2559,2560,-1852,5103,5104,5105,5106,5107,-1862,-1861,-1860,-1859,-1858,-1857,-1856,-1855,-1854,5108]],"properties":{"prefix":"5.2.1.1"}},{"type":"Polygon","arcs":[[5109,-3560,-3559,-3558,-3557,-3556,-3555,-3597,-3596,5110,5111]],"properties":{"prefix":"7.6.3.5"}},{"type":"Polygon","arcs":[[5112,1942,1943,5113,5114,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127]],"properties":{"prefix":"7.2.1.2"}},{"type":"Polygon","arcs":[[5128,5129,5130,5131,5132,5133]],"properties":{"prefix":"1.2.1.2"}},{"type":"Polygon","arcs":[[-473,808,809,810,811,812,813,814,815,816,817,818,5134,5135,5136,5137,5138,5139,5140,5141,5142,5143,-474]],"properties":{"prefix":"3.4.2.3"}},{"type":"Polygon","arcs":[[1222,3518,5144,5145,5146,5147,5148,3492,3493,3494,3495,3496,3497,5149,5150,5151,1211,1212,1213,1214,1215,1216,1217,1218,1219,1220,1221]],"properties":{"prefix":"6.3.5.1"}},{"type":"Polygon","arcs":[[5152,5153,5154,5155,3069,3070,3071,3072,3073,3074,3075,3076,3077,3078,5156,5157]],"properties":{"prefix":"7.4.7.4"}},{"type":"Polygon","arcs":[[5158,5159,5160,5161,5162,5163,5164,5165,-3687,-3686,-3685,5166,5167,5168,5169,5170,5171,5172,-5142,-5141,-5140,-5139,5173,5174,5175]],"properties":{"prefix":"3.4.2.5"}},{"type":"Polygon","arcs":[[-4365,-4364,-4363,-4079,-2601,-2600,-4143,-4142,-4141]],"properties":{"prefix":"7.2.5.1"}},{"type":"Polygon","arcs":[[5176,345,346,5177,5178,5179,5180]],"properties":{"prefix":"9.8.6.2"}},{"type":"Polygon","arcs":[[-1561,-1560,-1559,-1558,-1557,-1556,-1605,-1604,1813,3109,3110,3111,3112,3113,3114,3115,3116,3117,3118,3119,5181,5182,5183,5184,5185,5186,5187,5188,5189,5190,5191,5192]],"properties":{"prefix":"9.4.4.2"}},{"type":"Polygon","arcs":[[3466,3467,3468,3469,3470,3471,3472,3473,5193,5194,5195,5196,5197,5198,5199,5200]],"properties":{"prefix":"1.3.1.1"}},{"type":"Polygon","arcs":[[-484,2428,2429,2430,2431,2432,2433,2434,2435,2436,2437,2438,5201,5202,2440,-593,-592,-591,-590,-589,-588,-587,2441,2787,2788,2789,5203]],"properties":{"prefix":"3.1.2.1"}},{"type":"Polygon","arcs":[[5204,5205,5206,5207,5208,5209,976,977,978,979,980,981,982,5210,5211,5212,5213,2122,2123,2124,2125,2126,2127,-4419,-4418,-4417,-4416,-4415,-4414,-4413,-4412,-4411,5214]],"properties":{"prefix":"4.4.4.4"}},{"type":"Polygon","arcs":[[5215,5216,5217,-4387,-4386,-4385,-4384,-4383,-4382,-4393,-2630,-2629,-2628,-2627,5218]],"properties":{"prefix":"1.7.3.2"}},{"type":"Polygon","arcs":[[74,75,76,77,78,79,970,971,972,973,974,5219,5220,5221,5222,5223,5224,5225,5226,5227,5228,5229,-4409,-4408,-4407,-4406,-4405]],"properties":{"prefix":"4.4.4.2"}},{"type":"Polygon","arcs":[[5230,121,122,123,124,125,126,127,1764,1765,1766,5231,5232,5233,5234,5235,5236,5237,5238,5239,5240,5241,5242,5243]],"properties":{"prefix":"6.2.1.5"}},{"type":"Polygon","arcs":[[5244,5245,5246,5247,5248,5249,3917,3918,3919,3920,3921,3922,-1812,-1811,-1810,3923,3924,3925,-4425,-4424,-4423,-4422,-4435,-4434,-4433,-4432,-4431]],"properties":{"prefix":"9.3.5.4"}},{"type":"Polygon","arcs":[[-3528,-3527,-3526,-3525,-3524,-3523,-3522,-3521,-2367,-2366,-2365,-2364,-2363,-2362,-2361,-2360,-2359,-2358,-2357,-2356,-2355,-2354,5250,5251]],"properties":{"prefix":"4.3.1.4"}},{"type":"Polygon","arcs":[[5252,5253,4011,-3921,-3920,-3919,-3918,-3917,5254,5255,5256,5257,5258,5259,4041,4042,5260,5261,5262,5263]],"properties":{"prefix":"9.3.1.5"}},{"type":"Polygon","arcs":[[5264,5265,5266,5267,5268,5269,5270,5271,5272,5273,5274,5275,1789,1790,1791,1792,1793,1794,1795,5276]],"properties":{"prefix":"6.2.1.3"}},{"type":"Polygon","arcs":[[3945,3946,-3797,-3796,-3795,-3794,-3793,3947,3948,3949,3950,-2304,5277,5278,5279,5280,5281,5282,5283]],"properties":{"prefix":"2.4.6.1"}},{"type":"Polygon","arcs":[[-4937,-4456,-4950,-4949,-4948,-4947,-4946,-4945,-4944,-4943,-4942,-4941,-4940,-4939,-4938]],"properties":{"prefix":"7.5.3.4"}},{"type":"Polygon","arcs":[[290,291,292,293,294,-3830,-3836,-3835,-3834,-3833,-3832,-3831,-2422,-2421,-2420,4355,4356]],"properties":{"prefix":"8.4.1.1"}},{"type":"Polygon","arcs":[[5284,5285,5286,-3747,277,278,279,5287,5288,5289,-4166,-4165,-4164,-4163,692,693,694,695,-3762,-3761,-3760,-3759,-3758,-3757,-3756,-3755,-3754,-3753,-3752,5290]],"properties":{"prefix":"8.2.2.1"}},{"type":"Polygon","arcs":[[-4516,-4515,-4514,-4513,5291,5292,5293,5294,5295,5296,-2329,-2328,-2350,-2349,-2348,534,535,536,537,538,539,540,-1430,-1429,-1428]],"properties":{"prefix":"1.8.3.6"}},{"type":"Polygon","arcs":[[-1728,5297,5298,5299,5300,5301,5302,-1732,-1731,-1730,-1729]],"properties":{"prefix":"2.2.1.2"}},{"type":"Polygon","arcs":[[-5067,-5066,-5065,-5064,635,636,4195,4196,4197,4198,4199,4200,4201,4202,4203,5303,5304,5305,5306,5307,5308,5309,-5072,-5071,-5070,-5069,-5068]],"properties":{"prefix":"8.1.4.3"}},{"type":"Polygon","arcs":[[4090,-456,-455,-454,-453,-452,-451,-450,-449,-448,-447,-446,-445,-444,-443,-442,-441,-440,-439,-2471,-2470,-2469,-2468,-2467,-2466,-2465,-2464,-2463,-2473,-2472,-2208,-2207,-2206,-2205]],"properties":{"prefix":"4.2.1.1"}},{"type":"Polygon","arcs":[[5310,-3271,-3270,-3269,137,-4544,-4547,-4546,-4545,-3434,5311,5312,5313,5314,5315]],"properties":{"prefix":"6.3.2.1"}},{"type":"Polygon","arcs":[[5316,5317,5318,5319,315,316,317,318,319,320,321,650,651,652,653,654,655,656,657,658,659,660,661,662,5320,5321,5322,5323]],"properties":{"prefix":"8.5.2.3"}},{"type":"Polygon","arcs":[[3687,3688,826,827,5324,5325,3702,3703,3704,5326,5327,3686]],"properties":{"prefix":"3.4.3.1"}},{"type":"Polygon","arcs":[[5328,5329,5330,5331,5332,5333,5334,5335,-4564,5336,5337,5338,5339,5340,-1195,-1194,-1193,-1192,-1191,-1190,-1189,-1188,-1187,-1186,-1185,-1184,-1183,-1182,-1181,-1180,5341,5342]],"properties":{"prefix":"7.1.1.4"}},{"type":"Polygon","arcs":[[3651,3652,3653,3654,3655,3656,3657,-634,-633,3658,3659,3660,3661,3662,3663,3664,-795,-794,-793,-792,3665,3666,3667,3668,3669,3670,5343,5344,3649,3650]],"properties":{"prefix":"7.8.2.1"}},{"type":"Polygon","arcs":[[5345,5346,5347,5348,5349,5350,-2702,-2701,-2700,-2699,-2698,-2697,-2696,-2695,-2694,-2693,5351,5352,5353]],"properties":{"prefix":"2.6.6.1"}},{"type":"Polygon","arcs":[[5354,-4582,-4581,5355]],"properties":{"prefix":"4.8.2.3"}},{"type":"Polygon","arcs":[[5356,4112,4113,4114,4115,4116,4117,4118,4119,4120,5357,5358,5359,5360,5361,5362,5363,5364,5365]],"properties":{"prefix":"4.4.3.6"}},{"type":"Polygon","arcs":[[5366,5367,5368,5369,5370,5371,5372,5373,5374,5375,5376,-2862,-2861,-2860,4255,4256,4257,4258,4259,-4589,-2925,-2924,-2923,-2922,-2921,-2920,-2919,-1034,5377]],"properties":{"prefix":"7.4.4.6"}},{"type":"Polygon","arcs":[[-4592,-4591,-4590,85,86,87,1843,1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,1858,1859,-4593]],"properties":{"prefix":"5.1.3.5"}},{"type":"Polygon","arcs":[[5378,5379,5380,5381,5382,5383,5384,5385]],"properties":{"prefix":"2.6.2.2"}},{"type":"Polygon","arcs":[[-4319,-4318,-3453,-3452,-3465,-3464,-3463,-3462,-3461,-3589,-3588,-3587,5386,5387]],"properties":{"prefix":"7.6.5.1"}},{"type":"Polygon","arcs":[[5388,5389,5390,5391,5392,5393,5394,5395,-4613,-4612,-4611,-4639,-4638,-4637,-4636,-2039,-2038,-2037,-2036,-2035,-2034,-2033,-2032,-2031,-2030,-2029,-2028,-2027,-2026,-2025,5396,5397]],"properties":{"prefix":"8.2.1.4"}},{"type":"Polygon","arcs":[[413,5398,5399,5400,5401,5402,5403,5404,5405,5406,5407,5408,5409,5410,5411,5412,-3786,-3785,-3811,-3810,-3882,-3881,-3880,-3879,-3878,407,408,409,410,411,412]],"properties":{"prefix":"2.4.1.7"}},{"type":"Polygon","arcs":[[5413,-4224,-4223,-4222,-4221,-4220,-4219,-4218,5414,5415,5416,5417,-2806,-2805,-2804,-2803,-2802,-2801,-2800,-2799,-2798,5418,5419,5420]],"properties":{"prefix":"2.6.2.4"}},{"type":"Polygon","arcs":[[5421,5422,5423,5424,5425,39,40,2148,2149,2150,-1806,-1805,2151,2152,2153,2154,5426]],"properties":{"prefix":"1.5.1.3"}},{"type":"Polygon","arcs":[[-3948,-3792,-3791,-3790,-3789,-3788,-3787,-5413,5427,5428,-4663,-4662,-4688,-4687,-4686,-4685,-4684,-4683,-4682,5429,5430,5431]],"properties":{"prefix":"2.4.1.1"}},{"type":"Polygon","arcs":[[5432,-4628,-4627,-4626,-4625,-4624,-4623,-4622,-4621,-4620,-4619,-4618,5433,5434,5435,5436,5437,5438,-2012,-2011,-2010,-2009,-2008,-2007,-2006,275,276,3746,3747,3748,3749,3750,3751,3752,3753,3754,3755,3756,3757,3758,3759,3760,3761,696,697,698,699,700,701,702,703,704,705,706,707,708,709,5439,5440]],"properties":{"prefix":"8.2.1.8"}},{"type":"Polygon","arcs":[[5441,5442,5443,5444,-3228,-3227,-3226,-3225,-3224,-3223,-3594,-3593,-3592,4325,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460,5461,5462]],"properties":{"prefix":"7.6.1.4"}},{"type":"Polygon","arcs":[[2734,2735,2736,2737,2738,-817,-816,-815,-814,-813,-812,-811,-810,-809,-472,-471,-470,-469,-468,-467,-466,-465,-464,-463,-462,-461,-460,-459,2739,2740,2741,2742,2743,2744,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,5474,5475,5476,2759,2760,2761,2762,2763,2764,-4706]],"properties":{"prefix":"4.1.5.2"}},{"type":"Polygon","arcs":[[305,306,307,308,309,310,311,312,313,314,-5320,-5319,-5318,-5317,-5324,-5323,-5322,-5321,663,664,665,666,667,668,669,670,5477,5478,5479,5480,5481,5482,5483,5484,5485,5486,5487]],"properties":{"prefix":"8.5.2.2"}},{"type":"Polygon","arcs":[[5488,4179,4180,1916,1917,1918,1919,1920,1921,1922,1923,1924,1925,300,301,302,303,304,-5488,-5487,-5486,-5485,-5484,-5483,-5482,-5481,-5480,-5479,-5478,671,672,673,674,675,676,1926,1927]],"properties":{"prefix":"8.5.2.1"}},{"type":"Polygon","arcs":[[5489,4342,161,162,-4752,-4756,-4755,-4754,-4753,4347,-2141]],"properties":{"prefix":"6.4.1.1"}},{"type":"Polygon","arcs":[[-4771,-4770,-4769,-4768,-4767,-4766,-4765,-4764,-4776,1829,1830,1831,935,936,937,938,939,940,941,942,943,944,4300,4301,4302,4303,4304,4305,5490,-4772]],"properties":{"prefix":"9.4.5.3"}},{"type":"Polygon","arcs":[[5491,5492,5493,4281,4282,4283,5494,5495,5496,5497,5498,5499,5500,5501]],"properties":{"prefix":"5.3.3.5"}},{"type":"Polygon","arcs":[[5502,-2380,-2379,930,931,932,933,934,-1832,-1831,-1830,-1829,3952,3953]],"properties":{"prefix":"9.5.1.1"}},{"type":"Polygon","arcs":[[5503,5504,5505,5506,5507,5508,5509,5510]],"properties":{"prefix":"1.9.2.1"}},{"type":"Polygon","arcs":[[5511,5512,5513,286,287,288,2417,2418,2419,2420,2421,2422,2423,2424,-1931,-1930,-1929,-1928,5514]],"properties":{"prefix":"8.3.1.2"}},{"type":"Polygon","arcs":[[1826,-4778,-4777,-4760]],"properties":{"prefix":"9.4.5.5"}},{"type":"Polygon","arcs":[[528,5515,5516,5517,5518,5519,5520,5521,5522,5523,5524,5525,5526,5527,5528,5529,5530,5531,5532,5533,5534,5535,518,519,520,521,522,523,524,525,526,527]],"properties":{"prefix":"1.9.2.7"}},{"type":"Polygon","arcs":[[2534,-4796,-4795,-4794,-4793,-4792,-4791,-4790,-4789,-4788,-4787,-4786,1576,1577,1578,1579,1580,1581,1582,1583,1584,2524,2525,2526,2527,2528,2529,2530,2531,2532,2533]],"properties":{"prefix":"9.8.3.4"}},{"type":"Polygon","arcs":[[5536,5537,5538,370,371,372,373,2703,2704,2705,2706,2707,2708,2709,2710,2711,2712,5539]],"properties":{"prefix":"2.6.5.1"}},{"type":"Polygon","arcs":[[5540,5541,-3722,-3721,-3720,-1704,-1703,-1702,-1701,-1700,-1699,-1698,5542,5543,5544,5545,5546,5547,5548,5549,5550,5551,5552,5553,5554,5555,5556,-563,-562,5557,5558,5559,5560,5561,5562]],"properties":{"prefix":"2.3.3.2"}},{"type":"Polygon","arcs":[[-4803,5563,-4132,-4131,-4130,-4129,-4128,-4127,-4126,-4125,-4124,-1262,-1261,5564,5565,5566,5567,5568,5569,5570,5571,5572,-1230,-1229,-1228,-1227,-4804]],"properties":{"prefix":"7.2.7.3"}},{"type":"Polygon","arcs":[[-3702,-4846,5573,5574,5575,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,-4815,-4814,-4813,-4812,-4811,-4810,-4809,-3615,-3614,-3613,-3612,4322,4323,-3704,-3703]],"properties":{"prefix":"3.4.4.4"}},{"type":"Polygon","arcs":[[678,5586,5587,-2255,-2254,-2253,-2252,-2251,-2250,-2249,-2248,284,285,-5514,-5513,-5512,-5515,-1927,677]],"properties":{"prefix":"8.3.1.1"}},{"type":"Polygon","arcs":[[5588,5589,5590,5591]],"properties":{"prefix":"7.6.6.1"}},{"type":"Polygon","arcs":[[5592,5593,-3326,-3325,-4823,-4822,-4821,-4820,-4819,-4818,-4817,-4816,-5586,-5585,-5584,-5583,-5582,-5581,-5580,-5579,-5578,-5577,-5576,-5575,-5574,-4847,-3700,-3699,-3698,-3697,-3696,-3695,-3694,5594,5595,5596]],"properties":{"prefix":"3.4.4.2"}},{"type":"Polygon","arcs":[[5597,5598,5599,5600,-1400,-1399,-1398,-1397,-1396,-1395,-1394,-1393,-1392,25,26,-2148,-2147,-2146,-2180,-2179,-2178,-2177,-2176,-2175,-2174,-2173,-2172,-2171,2262,2263,2264,2265,2266]],"properties":{"prefix":"1.4.2.4"}},{"type":"Polygon","arcs":[[2213,5601,5602,-2747,-2746,-2745,-2744,-2743,-2742,-4848,2206,2207,2208,2209,2210,2211,2212]],"properties":{"prefix":"4.1.6.3"}},{"type":"Polygon","arcs":[[5603,-1330,-1329,-1328,-1327,2715,2716,2717,2718,2719,2720,-1347,-1346,-1345,-1344,-1343,-1342]],"properties":{"prefix":"7.4.1.1"}},{"type":"Polygon","arcs":[[5604,5605,5606,5607,5608,5609,2902,2240,2241,2242,2903,2904,2905,2906,2907,2908,2909,-2794,-2793,-2792,-2850,5610]],"properties":{"prefix":"2.6.1.2"}},{"type":"Polygon","arcs":[[5611,5612,5613,5614,-1611,-1610,-1609,-1608,-1607,-1606,-1658,-1657,-959,-958,3455,5615,5616]],"properties":{"prefix":"7.6.6.7"}},{"type":"Polygon","arcs":[[5,6,7,8,9,10,11,12,-1982,-1981,5617,-1998,-1997,-1996,-1995,-1994,-1993,-1992,-1991,-1990,-1989,-1988,-1987,-1986,-4879,-4878,-4877]],"properties":{"prefix":"1.1.2.2"}},{"type":"Polygon","arcs":[[-4913,-4912,-4930,5618,5619,5620,5621,5622,5623,5624,5625,202,203,204,205,206,-4885,-4884,-4883,-4882,-4881,-4880,3202,3203,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,-4916,-4915,-4914]],"properties":{"prefix":"7.6.2.4"}},{"type":"Polygon","arcs":[[5626,5627,-3767,-3766,-987,-986,-985,-984,-983,-982,-981,-4599,-4598,-4597,-4596,-4595,5628]],"properties":{"prefix":"5.1.3.1"}},{"type":"Polygon","arcs":[[-2115,-2114,-2113,2984,5629,5630,5631,2983,992,993,994,995,996,-1535,-1534,-1533,-1532,-1531,-1530,-1529,-4893,-4892,-4891,-4890,-4889,-4888,-4887,-4886,-4894,-2119,-2118,-2117,-2116]],"properties":{"prefix":"4.6.1.1"}},{"type":"Polygon","arcs":[[5632,5633,5634,-5624,-5623,-5622,-5621,-5620,-5619,-4929,-4928,-4927,-4926,-4925,-4924,5635]],"properties":{"prefix":"7.6.2.2"}},{"type":"Polygon","arcs":[[-2963,-2962,328,329,330,331,332,-3108,-3107,-3106,-3105,-3104,-3103,-3102,-3101,-3100,-3099,-3098,-2969,5636,-2964]],"properties":{"prefix":"9.1.6.1"}},{"type":"Polygon","arcs":[[1913,5637,2973,2974,1885,1886,1887,-2902,-2901,-2900,-2899,-2898,-2897,-2896,2975,2976,2977,2978,2979,5638,5639,5640,5641,1905,1906,1907,1908,1909,1910,1911,1912]],"properties":{"prefix":"2.5.1.1"}},{"type":"Polygon","arcs":[[5642,2991,2992,2993,2994,2995,2996,100,101,102,103,104,105,106,107,108,109,110,5643,5644,5645,5646,5647,5648,5649,5650,5651,5652,5653,5654,5655,5656,5657,5658,5659,5660,3036,3037,3038,3039]],"properties":{"prefix":"5.3.2.1"}},{"type":"Polygon","arcs":[[5661,5662,5663,5664,-2490,-2489,-2488,-2487,-2486,-2485,-1283,-1282,-1281,-1280,-1279,-1278,-1277,-1276,-1275,-1274,-1273,-1272,-1271,-1270,-1269,-1268,-1267,-1266,-1265,-4985,-4984,-4983,-4982,5665,5666,5667,5668,5669,5670,5671,5672,5673,5674,5675,5676,5677,5678,-2507,-2506,-2505,-2504,5679,5680]],"properties":{"prefix":"7.2.4.2"}},{"type":"Polygon","arcs":[[-4999,-4998,-4997,-4996,-4995,5681,5682,5683,5684,5685,5686,-673,-672,-671,-670,-669,-5015,-5014,-5013,-5012,-5011,-5010,-5009,-5008,-5007,-5006,-5005,-5004,-5003,-5002,-5001,-5000]],"properties":{"prefix":"9.1.2.4"}},{"type":"Polygon","arcs":[[5687,-2940,-2939,-2938,-5018,-5025,-5024,-1052]],"properties":{"prefix":"7.4.6.1"}},{"type":"Polygon","arcs":[[5688,5689,5690,5691,5692,-1872,-1871,2382,2383,2384,2385,2386,3307,3308,3309,3310,3311,5693,5694,5695]],"properties":{"prefix":"5.3.6.2"}},{"type":"Polygon","arcs":[[-3375,-3374,-3373,-3372,-3371,-3370,-3401,551,552,553,5696,5697,5698,5699,5700,5701,5702,5703,5704,5705,5706,5707]],"properties":{"prefix":"1.3.2.6"}},{"type":"Polygon","arcs":[[5708,3144,-835,-834,-833,-832,-831,-830,-829,-828,-827,-826,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718]],"properties":{"prefix":"4.1.3.2"}},{"type":"Polygon","arcs":[[-728,5719,5720,5721,5722,5723,5724,5725,5726,5727,5728,5729,5730,5731,-3930,-734,-733,-732,-731,-730,-729]],"properties":{"prefix":"9.3.4.4"}},{"type":"Polygon","arcs":[[4235,4236,4237,-2675,-2674,-2673,-2672,-2671,-2715,-2714,-2713,-2712,-2711,-2710,-2709,-5043,-5042,-5041,-5040]],"properties":{"prefix":"2.6.4.3"}},{"type":"Polygon","arcs":[[5732,3337,3338,1279,1280,1281,1282,1283,1284,1285,5733,5734,5735,5736,5737,5738,5739,5740,5741]],"properties":{"prefix":"7.3.2.1"}},{"type":"Polygon","arcs":[[-4936,-4935,-4934,-4933,-4932,-2064,-2063,-2062,-2061,-2060,-2059,-2058,-2057,-2572,-2571,-2570,-2569,-2568,-2567,4314,4315,4316,-3157,-3156,-3191,-3190,-3189,-3188,-3187,-3186,-3185,-3184,-3183,-3182,-3181,-3180,5742,5743,5744,5745,-4951,-4453,-4452]],"properties":{"prefix":"7.5.3.6"}},{"type":"Polygon","arcs":[[-5726,5746,5747,-4650,-4649,-4023,-4022,-4021,-4020,-4019,-4018,-4017,-4016,-4015,-4014,-4013,-3913,-3912,-3911,-3910,-3909,-3908,-3907,-3906,-3905,-3904,-3903,-3902,-3901,-3900,-3899,5748,-5730,-5729,-5728,-5727]],"properties":{"prefix":"9.3.4.5"}},{"type":"Polygon","arcs":[[5749,5750,-1920,-1919,-1918,-1917,-1935,-1934,-1933,-1932,-2425,-2424,-2423,3830,3831,5751,5752,5753]],"properties":{"prefix":"8.4.2.4"}},{"type":"Polygon","arcs":[[-4053,-4052,-4051,-4050,-4049,2194,2195,2196,2197,-525,-524,-523,-522,-521,-520,-519,-518,-517,-5088,-5087,-5086,-5085,-5084,-4054]],"properties":{"prefix":"2.2.2.3"}},{"type":"Polygon","arcs":[[-5106,-5105,-5104,-1851,-1850,-1849,-1848,-1847,-1846,-1845,-1844,88,89,90,91,92,93,5754,5755,5756,-2404,-2403,-2402,-2401,-2400,-2399,-2398,-2397,-2396,-2395,-2394,-2393,-2392,-2391,-2390,-2389,-2388,-2387,-2386,-2385,-2384,-2383,-1870,-1869,-1868,-1867,-1866,-1865,-1864,-1863,-5108,-5107]],"properties":{"prefix":"5.2.1.2"}},{"type":"Polygon","arcs":[[-5122,5757,5758,5759,5760,5761,5762,5763,-1202,-1201,2606,5764,5765,5766,-5125,-5124,-5123]],"properties":{"prefix":"7.2.1.3"}},{"type":"Polygon","arcs":[[5767,5768,5769,5770,5771,5772,151,5773,5774,5775,3515,3516,3517,1203,1204,1205,5776,5777,5778]],"properties":{"prefix":"6.3.5.4"}},{"type":"Polygon","arcs":[[5779,5780,5781,5782,5783,5784,5785,5786,5787,5788,5789,5790,5791,5792,5793,5794,-2052,-2051,-2081,-2080,-2079,-2078,-2077,-2076,-2075,-2074,-2073,-2072,-931,-930,-929,-928,-927,-926,-925,-924,-923,-922,-921,-920,2291,2292,2293,2572,2573,2574,5795,5796,5797,5798,5799,5800,5801]],"properties":{"prefix":"7.5.6.3"}},{"type":"Polygon","arcs":[[-4008,-4007,-4006,-4005,2003,2004,614,615,5802,5803,770,771,772,773,774,775,776,777,778,779,780,781,782,783,784,785,786,787,788,789,790,791,792,5804]],"properties":{"prefix":"8.1.3.1"}},{"type":"Polygon","arcs":[[5805,5806,5807,-3603,-3602,-476,-475,-5144,-5143,-5173,5808,5809,5810,5811,5812]],"properties":{"prefix":"3.4.2.2"}},{"type":"Polygon","arcs":[[5813,5814,5815,5816,5817,5818,5819,5820,5821,5822,2412,2413,2414,2415,4295,5823]],"properties":{"prefix":"5.3.1.1"}},{"type":"Polygon","arcs":[[-5150,3498,3499,3500,3501,-3420,-3419,-3418,-3417,-3416,-3415,-3414,-3413,-3412,-3411,-3410,-3409,-3408,-3407,-3406,148,149,5824,5825,5826,5827,5828,5829,5830,5831,5832,5833,5834,5835,5836,-5779,-5778,-5777,1206,1207,1208,1209,1210,-5152,-5151]],"properties":{"prefix":"6.3.5.2"}},{"type":"Polygon","arcs":[[-3849,-3848,-3847,-3846,-3845,-3844,-3843,-3842,-3841,174,175,176,177,178,179,180,-3551,-3550,-3549,-3548,-3547,-3546,-3545,-3544,-3543,-3554,-3553,-3552,1178,1179,1180,1181,1182,1183,1184,1185,1186,5837,5838,5839]],"properties":{"prefix":"6.4.3.3"}},{"type":"Polygon","arcs":[[5840,-1666,-1665,-1664,-1663,-1662,-1661,585,586,587,588,589,590,591,592,593,594,595,596,5841,5842]],"properties":{"prefix":"2.6.7.2"}},{"type":"Polygon","arcs":[[-5136,-5135,819,820,821,822,823,824,825,-3689,-3688,-5166,-5165,-5164,-5163,-5162,-5161,-5160,-5159,-5176,-5175,-5174,-5138,-5137]],"properties":{"prefix":"3.4.2.4"}},{"type":"Polygon","arcs":[[-4652,-4651,-5748,-5747,-5725,-5724,-5723,-5722,-5721,-5720,-727,-726,-725,-724,-723,-722,-721,-720,-719,-718,-717,-716,-4660,-4659,-4658,-4657,-4656,-4655,-4654,-4653]],"properties":{"prefix":"9.3.4.3"}},{"type":"Polygon","arcs":[[4232,4233,-1647,-1646,-1645,-1644,-1643,-1642,-4439,-4438,-4437,-4436,-781,-780,-779,-778,-777,-776,-775,-774,5843]],"properties":{"prefix":"7.8.1.1"}},{"type":"Polygon","arcs":[[-5211,983,984,985,986,987,988,989,990,2111,2112,2113,2114,2115,2116,2117,2118,2119,2120,2121,-5214,-5213,-5212]],"properties":{"prefix":"4.4.4.5"}},{"type":"Polygon","arcs":[[5844,5845,5846,5847,5848,5849,5850,5851,-4276,-4275,-4274,-4273,-4272,-4271,-4270,-4269,-4268,-4267,-4266,-4265,-3298,-3297,-3296,-3295,-3294,-3293,-3292,-3291,-3290,-3319,-3318,-3317,-3316,-3315,-3314,-3313,-3312,-3311,-3310,-3309,-3308,2387,2388,2389,2390,2391,2392,2393,2394,2395,-4295,-4294,-4293,-3043]],"properties":{"prefix":"5.3.5.2"}},{"type":"Polygon","arcs":[[-2461,-2460,-2459,-2458,-2457,-2456,-2455,-2454,-2453,-2452,-2451,-4392,-4391,-4390,-4389,-4388,-5218,-5217,-5216,-5219,-2626,-2625,-2624,5852,5853,5854]],"properties":{"prefix":"1.7.3.1"}},{"type":"Polygon","arcs":[[5855,3900,3901,3902,3903,3904,3905,3906,3907,3908,3909,3910,5856,5857,5858,-5245,-4430,-4429,-4428,-4427,-4426,962,963,964,965,966,967,968,969,-746,-745,-744,-743,-742,-741,-740,-739,-738,-737]],"properties":{"prefix":"9.3.5.1"}},{"type":"Polygon","arcs":[[-5220,975,-5210,-5209,-5208,-5207,-5206,-5205,-5215,-4410,-5230,-5229,-5228,-5227,-5226,-5225,-5224,-5223,-5222,-5221]],"properties":{"prefix":"4.4.4.3"}},{"type":"Polygon","arcs":[[-5273,-5272,5859,5860,5861,5862,5863,-1078,-1077,-1076,-1075,-1074,-1073,-1072,-1071,119,120,-5231,-5244,-5243,5864,5865,5866,5867,5868,5869,5870,5871,5872,5873,-5275,-5274]],"properties":{"prefix":"6.2.1.4"}},{"type":"Polygon","arcs":[[5874,5875,-5264,-5263,-5262,-5261,4043,4044,4045,-1489,-1488,-1487,-1486,-1485,-1484,-1483,-1482,-1481,-1480,-1479,5876,5877,5878,5879]],"properties":{"prefix":"9.3.1.4"}},{"type":"Polygon","arcs":[[1760,1761,1762,1763,-1081,-1080,-1079,-5864,-5863,-5862,-5861,-5860,-5271,-5270,-5269,-5268,-5267,-5266,-5265,-5277,1796,1797,1798,1799,1800,1235,1236,1237,1238,1239,1240,5880,5881,5882,5883,5884,5885,5886,5887,5888,5889,5890,4351,1759]],"properties":{"prefix":"6.2.1.2"}},{"type":"Polygon","arcs":[[-5281,-5280,-5279,-5278,-2303,-2302,-2301,-2300,-2299,-2298,-2297,-1916,-1915,-1914,-1913,-1912,-1911,-1910,5891,-5283,-5282]],"properties":{"prefix":"2.4.6.2"}},{"type":"Polygon","arcs":[[5892,5893,5894,5895,5896,5897,5898,5899,5900,5901,5902,-3153,-3152,-3151,-3150,-3149,5903]],"properties":{"prefix":"4.1.4.1"}},{"type":"Polygon","arcs":[[5904,5905]],"properties":{"prefix":"2.1.2.3"}},{"type":"Polygon","arcs":[[5906,2449,2450,2451,2452,2453,2454,2455,5907,5908,5909,5910,-2272,-2271,-2270,-2269,-2268,-2267,-2266,-2265,-2264]],"properties":{"prefix":"1.8.3.1"}},{"type":"Polygon","arcs":[[5911,5912,4010,-5254,-5253,-5876,-5875,-5880,-5879,-5878]],"properties":{"prefix":"9.3.1.2"}},{"type":"Polygon","arcs":[[-5288,280,281,282,5913,5914,5915,5916,-4172,-4171,-4170,-4169,-4168,-4167,-5290,-5289]],"properties":{"prefix":"8.2.2.2"}},{"type":"Polygon","arcs":[[5917,5918,5919,5920,5921,5922,5923,-1738,-1737,-1736,5924,5925,5926]],"properties":{"prefix":"2.2.1.5"}},{"type":"Polygon","arcs":[[-5179,-5178,347,348,349,350,351,860,861,862,863,864,5927,5928,5929,5930,5931,5932,5933,-5181,-5180]],"properties":{"prefix":"9.8.6.4"}},{"type":"Polygon","arcs":[[1967,5934,5935,5936,5937,5938,5939]],"properties":{"prefix":"7.2.2.5"}},{"type":"Polygon","arcs":[[5940,5941,5942,5943,5944,-1175,-1174,-1173,-1172,-1171,-1170,-1169,-1168,-1167,-1166,-1165,-1164,-1163,-1162,-1161,5945,5946]],"properties":{"prefix":"7.1.1.1"}},{"type":"Polygon","arcs":[[1560,1561,1562,1563,1564,5947,5948,-2550,-2549,-2548,-2547,5949,5950,5951,5952]],"properties":{"prefix":"9.8.2.3"}},{"type":"Polygon","arcs":[[-3389,5953,5954,5955,-3390]],"properties":{"prefix":"1.3.4.1"}},{"type":"Polygon","arcs":[[-3821,221,222,5956,5957,5958,5959,5960,5961,5962,5963,5964,5965,5966,-768,-767,-766,-765,-764,-763,-762,-761,-760,-3829,-3828,-3827,-3826,5967,5968,5969]],"properties":{"prefix":"7.7.2.1"}},{"type":"Polygon","arcs":[[5970,5971,5972,5973,5974,5975,5976,5977,5978,-1137,-1136,-1135,-1363,-1362,-1361,-1360,5979,5980,5981,5982,5983,5984,5985,5986,5987]],"properties":{"prefix":"7.4.4.3"}},{"type":"Polygon","arcs":[[3930,3931,3932,3933,3934,3935,3936,3937,3938,3939,3940,1530,1531,1532,1533,1534,997,998,5988,5989,5990,5991,5992,5993,1014,1015,1016,1017,1018,1019,1020,1021,5994,5995,5996]],"properties":{"prefix":"4.8.3.2"}},{"type":"Polygon","arcs":[[-5381,5997,5998,5999,6000,6001,6002,6003,-4226,-4225,-5414,-5421,-5420,-5419,-2797,-2796,-2795,-2910,-2909,-2908,-2907,6004,6005]],"properties":{"prefix":"2.6.2.3"}},{"type":"Polygon","arcs":[[6006,2569,2570,2571,-2056,-2055,-2054,-2053,-5795,-5794,-5793,-5792,-5791,-5790,-5789,-5788,-5787,-5786,-5785,-5784,-5783,-5782,-5781,-5780,-5802,-5801,-5800,6007]],"properties":{"prefix":"7.5.6.2"}},{"type":"Polygon","arcs":[[6008,6009,6010,6011,6012,-4665,-4664,-5429,-5428,-5412,-5411,-5410,-5409,-5408,-5407,-5406,-5405,-5404,-5403,-5402,-5401,-5400,-5399,414]],"properties":{"prefix":"2.4.1.6"}},{"type":"Polygon","arcs":[[-5415,-4217,-2682,-2681,-2680,-2679,-2678,-2677,-2676,-4238,-4237,-4236,-4235,-2827,-2826,-2825,-2824,-2823,-2822,-2821,-2820,-2819,-2818,-2817,-2816,-2815,-2814,-2813,-2812,-2811,-2810,-2809,-2808,-2807,-5418,-5417,-5416]],"properties":{"prefix":"2.6.2.5"}},{"type":"Polygon","arcs":[[6013,6014,6015,6016,6017,6018,6019,6020,6021,6022,36,37,38,-5426,-5425,-5424,-5423,-5422,-5427,2155,2156,2157,2158,2159,2160,2161,2162,2163,2164,2165,2166,2167,6023,6024]],"properties":{"prefix":"1.5.1.2"}},{"type":"Polygon","arcs":[[6025,6026,6027,6028,6029,6030,6031,6032,6033,6034,6035,-2220,-2219,-2218,-2217,-2216,-2215,-2214,-2213,-2376,-2375,-2374,-2373,-2372,-2371,-2370,6036,6037,6038,6039,6040,6041,6042,6043,6044,6045,6046,6047,6048,6049]],"properties":{"prefix":"4.3.2.3"}},{"type":"Polygon","arcs":[[6050,3882,-1303,-1302,-1301,-1980,-1979,-1978,-1977,-1976,-1975,-1974,-1973,-1972,-1971,-1970,3883,3884,3885,3886,3887,6051,6052,6053,6054,6055,6056,6057,3891,3892,3893,3894,6058]],"properties":{"prefix":"7.5.2.1"}},{"type":"Polygon","arcs":[[-4961,-4960,-4959,-4958,-4957,-4956,6059,217,218,219,220,3820,3821,3822,3823,3824,3825,3826,3827,3828,-759,-758,-757,-756,-755,6060,6061,6062]],"properties":{"prefix":"7.7.1.4"}},{"type":"Polygon","arcs":[[6063,6064,6065,6066,-3006,-3005,-3004,-3003,-3307,-3306,-3305,-3304,-3303,-3302,-3301,-3300,-3299,4264,4265,4266,4267,6067,6068,6069,-5499,-5498,-5497,-5496,-5495,4284,4285,4286,4287,4288,4289,4290,-3031,-3030,6070,6071]],"properties":{"prefix":"5.3.3.2"}},{"type":"Polygon","arcs":[[-4733,-3511,6072,3633,3634,-4727,-4726,-4725,-4724,-4735,-4734]],"properties":{"prefix":"6.3.7.1"}},{"type":"Polygon","arcs":[[4270,4271,4272,4273,4274,4275,4276,4277,4278,4279,4280,-5494,-5493,-5492,-5502,-5501,-5500,-6070,-6069,-6068,4268,4269]],"properties":{"prefix":"5.3.3.4"}},{"type":"Polygon","arcs":[[2478,2479,2480,2481,2482,2483,1973,1974,1975,1976,1977,1978,6073,6074,6075,6076,6077,2504,2505,2506,2507,2508,2509,2510,2511,2512,2513,2514,2515,2516,2517,6078,6079,2477]],"properties":{"prefix":"7.2.3.1"}},{"type":"Polygon","arcs":[[4348,6080,-5509,-5508,-5507,6081,530,531,532,533,2347,2348]],"properties":{"prefix":"1.9.2.2"}},{"type":"Polygon","arcs":[[6082,6083,6084,6085,6086,6087,6088,6089,6090,6091,6092,6093,-3278,-3277,-3276,3432,3433,3434,3435,3436,3437,3438,3439,3440,6094,6095,6096,6097,6098,6099]],"properties":{"prefix":"6.3.3.2"}},{"type":"Polygon","arcs":[[6100,6101,6102,545,546,547,548,549]],"properties":{"prefix":"1.3.3.1"}},{"type":"Polygon","arcs":[[-5534,-5533,-5532,-5531,-5530,6103,6104,6105,6106,6107,462,463,464,465,466,467,468,469,470,471,472,473,474,-3812,-3819,-3818,-3817,-3816,-3815,-3814,-3813,507,508,509,510,511,512,513,514,515,516,517,-5536,-5535]],"properties":{"prefix":"1.9.2.8"}},{"type":"Polygon","arcs":[[6108,6109,6110,3418,3419,3420,3421,3422,3423,6111,6112,6113,6114,6115,6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6126,6127]],"properties":{"prefix":"6.3.3.4"}},{"type":"Polygon","arcs":[[6128,6129,6130,6131,6132,6133,6134,6135,6136,6137,6138,-3769,-3859,-3858,-3863,-3862,-3861,-3860,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1105,1106,1107,1108,1109,1110,1111,1112,1113,6139,6140]],"properties":{"prefix":"5.1.2.4"}},{"type":"Polygon","arcs":[[-5556,-5555,-5554,-5553,-5552,-5551,-5550,-5549,-5548,-5547,6141,6142,6143,6144,6145,6146,2318,2319,2320,2321,2322,2323,2324,2325,2326,-566,-565,-564,-5557]],"properties":{"prefix":"2.3.3.3"}},{"type":"Polygon","arcs":[[-1260,-1259,-1258,6147,6148,-1366,-1365,-1364,-1245,-1244,-1243,-1242,-1241,-1240,-1239,-1238,-1237,-1236,-1235,-1234,-1233,-1232,-1231,-5573,-5572,-5571,-5570,-5569,-5568,-5567,-5566,-5565]],"properties":{"prefix":"7.2.7.4"}},{"type":"Polygon","arcs":[[6149,6150,6151,6152,6153,6154,6155,6156,6157,6158,6159,6160,6161,-4827,-4826,6162,6163,6164,354,355,356,357,358,-613,-612,-611,-610,-609,-608,-607,-606,-605,-604,-603,-602,-601,-3629,-3628,-3627,-3626,-3625]],"properties":{"prefix":"3.4.4.7"}},{"type":"Polygon","arcs":[[6165,-1405,-1404,-1403,-1402,-1401,-5601,-5600,6166,6167,6168,6169,2275,2276,2277,-1415]],"properties":{"prefix":"1.4.2.1"}},{"type":"Polygon","arcs":[[6170,-6136,-6135,-6134,-6133,6171,6172,6173,6174,6175,6176,-3776,-3775,-3774,-3773]],"properties":{"prefix":"5.1.2.2"}},{"type":"Polygon","arcs":[[3868,3869,6177,6178,6179,6180,6181,-3804,-3803,-3802,-3801,-3800,6182,6183,3866,3867]],"properties":{"prefix":"2.4.4.1"}},{"type":"Polygon","arcs":[[1607,1608,1609,1610,1611,1612,1613,1614,1615,1616,1617,6184,6185,6186,-749,-748,-747,-970,-969,-968,-967,-966,-965,6187]],"properties":{"prefix":"7.7.1.1"}},{"type":"Polygon","arcs":[[6188,45,46,47,48,429,430,431,432,433,6189,6190,6191,6192,-2642,-2641,-2640,-2639,6193,6194]],"properties":{"prefix":"1.7.1.3"}},{"type":"Polygon","arcs":[[6195,6196,6197,6198,6199,6200,6201,2011,2012,2013,2014,2015,2016,2017,2018,2019,2020,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212,6213,6214,6215]],"properties":{"prefix":"8.1.6.7"}},{"type":"Polygon","arcs":[[2772,2773,2774,2775,2776,2777,2778,2779,2780,2781,2782,6216,6217,6218,6219,6220,2785,871,872,873,874,875,876,877,-2540,-2539,-2538,-2537,-2536,-2535,-2534,6221]],"properties":{"prefix":"9.8.5.1"}},{"type":"Polygon","arcs":[[2279,2280,2281,2282,2283,6222,6223,6224,6225,-2581,-2580,6226,4076]],"properties":{"prefix":"7.5.1.1"}},{"type":"Polygon","arcs":[[6227,6228,-1470,-1469,-1468,-1467,-1466,-1465,-1464,-1463,338,339,340,341,-1591,-1590,-1589,-1588,-1587,-1586,-1585,-1584,-1583,-1582,-1581,6229,6230,6231,6232,6233,6234,6235,6236,6237,6238,6239,6240,6241,6242]],"properties":{"prefix":"9.4.2.3"}},{"type":"Polygon","arcs":[[802,6243,4001,4002,4003,2002,4004,4005,4006,4007,4008,4009,796,797,798,799,800,801]],"properties":{"prefix":"8.1.2.2"}},{"type":"Polygon","arcs":[[-1796,-3432,6244,-3428,-3427,-3426,-3425,-3424,-3423,-3422,-3421,-3502,-3501,-3500,-3499,-3498,-3497,-3496,-3495,-3494,-3493,-3492,-3491,6245,6246,6247,6248,6249,6250,6251,6252,6253,6254,6255,6256,-1797]],"properties":{"prefix":"6.3.4.1"}},{"type":"Polygon","arcs":[[6257,-2492,-2491,-5665,-5664,-5663,-5662,-5681,-5680,-2503,-2502,6258]],"properties":{"prefix":"7.2.4.1"}},{"type":"Polygon","arcs":[[-5685,-5684,-5683,-5682,-4994,-4993,-4992,-4991,-4990,-4989,-2893,-2892,-2891,-687,-686,-685,-684,-683,-682,-681,-680,-679,-678,-677,-676,-675,-674,-5687,-5686]],"properties":{"prefix":"9.1.2.5"}},{"type":"Polygon","arcs":[[6259,6260,6261,6262]],"properties":{"prefix":"5.1.1.3"}},{"type":"Polygon","arcs":[[6263,6264,6265,6266,6267,6268,3291,3292,3293,3294,3295,3296,3297,3298,3299,3300,3301,3302,3303,3304,3305,3306,-3002,-3001,-3000,-2999,-2998,1082,1083,1084,1085,1086,1087,1088,1089,1090,1091,1092,1093,1094,1095,1096,1097,1098,1099,1100,1101,1102,1103,1104,-1883,-1882,-1881,-1880,-1879,-1878,-1877,-1876,-1875,-1874,-1873,-5693,-5692,-5691]],"properties":{"prefix":"5.3.6.3"}},{"type":"Polygon","arcs":[[1177,3551,6269,3543,3544,3545,3546,3547,3548,3549,3550,181,182,183,184,185,186,1138,1139,1140,1141,1142,1143,1144,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,1162,1163,1164,1165,1166,1167,1168,1169,1170,1171,1172,1173,1174,1175,1176]],"properties":{"prefix":"6.4.4.1"}},{"type":"Polygon","arcs":[[6270,6271,6272,6273,6274,6275,6276,6277,6278,6279,1287,1288,1289,1290,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,3356,3357,3358,3359,-1128,-1127,-1126,-1125,-1124,-1123,-1122,6280,6281,6282,6283]],"properties":{"prefix":"7.3.2.4"}},{"type":"Polygon","arcs":[[-825,-824,-823,6284,6285,6286,6287,6288,6289,6290,6291,6292,6293,6294,6295,6296,6297,1053,1054,1055,1056,1057,1058,6298,6299,6300,6301,6302,-5717,-5716,-5715,-5714,-5713,-5712,-5711,-5710]],"properties":{"prefix":"4.1.3.3"}},{"type":"Polygon","arcs":[[1286,-6280,-6279,-6278,-6277,-6276,-6275,-6274,-6273,6303,6304,6305,6306,6307,-1119,-1118,-1117,-1116,-1115,-1114,3360,3361,3362,3363,3364,6308,-5742,-5741,-5740,-5739,-5738,-5737,-5736,-5735,-5734]],"properties":{"prefix":"7.3.2.2"}},{"type":"Polygon","arcs":[[3326,846,847,848,849,850,851,852,853,854,855,856,857,3327,3328,3329,3330,3331,3332,3333,3334,3335,6309,6310,3325]],"properties":{"prefix":"3.4.5.1"}},{"type":"Polygon","arcs":[[6311,326,327,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,1503,1504,1505,1506,1507,1508,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325,6326]],"properties":{"prefix":"9.1.5.3"}},{"type":"Polygon","arcs":[[6327,6328,-501,-500,-499,-498,-497,-496,-495,-494,-493,6329,6330,6331,6332,1750,1751,1752,1753,6333]],"properties":{"prefix":"2.1.1.2"}},{"type":"Polygon","arcs":[[6334,4159,4160,4161,2254,2255,2256,2257,683,684,685,686,687,688,689,690,691,4162,4163,4164,4165,4166,4167,4168,4169,4170,4171,4172,4173,4174,4175,4176]],"properties":{"prefix":"8.2.3.1"}},{"type":"Polygon","arcs":[[-5098,-5097,-5096,-5095,-5094,-5093,-5092,6335,6336,6337,6338]],"properties":{"prefix":"4.3.4.3"}},{"type":"Polygon","arcs":[[-3193,210,211,212,213,-1637,-1636,-1635,-1634,-1633,-1632,-1631,-1630,-1629,-1628,-1627,-1626,-1625,-1624,-3455,-3454,4317,4318,4319,4320,4321,-3585,-3584,-3583,-3582,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,6350,6351,6352,6353,-3207,-3206,-3205,-3204,-3203,-3202,-3201,-3200,-3199,-3198,6354,6355,6356,6357,6358]],"properties":{"prefix":"7.6.3.1"}},{"type":"Polygon","arcs":[[-5757,-5756,-5755,94,95,96,97,98,-2382,-2417,-2416,-2415,-2414,-2413,-2412,-2411,-2410,-2409,-2408,-2407,-2406,-2405]],"properties":{"prefix":"5.2.1.3"}},{"type":"Polygon","arcs":[[152,153,154,155,156,157,158,159,2136,3502,3503,3504,3505,3506,3507,3508,3509,3510,3511,3512,3513,3514,-5776,-5775,-5774]],"properties":{"prefix":"6.3.5.5"}},{"type":"Polygon","arcs":[[-5132,6359,6360,-1387,-1386,-1385,-1384,-1383,-1382,-1381,6361,6362,6363,6364,6365,-1451,-1450,-1449,-1448,1982,1983,1984,1985,1986,1987,1988,1989,1990,1991,1992,1993,1994,1995,6366,-5134,-5133]],"properties":{"prefix":"1.2.1.4"}},{"type":"Polygon","arcs":[[-5806,6367,6368]],"properties":{"prefix":"3.4.2.1"}},{"type":"Polygon","arcs":[[-5825,150,-5773,-5772,-5771,-5770,-5769,-5768,-5837,-5836,-5835,-5834,-5833,-5832,-5831,-5830,-5829,-5828,-5827,-5826]],"properties":{"prefix":"6.3.5.3"}},{"type":"Polygon","arcs":[[6369,6370,6371,-897,-896,-895,-894,6372,6373,6374,6375,6376,6377]],"properties":{"prefix":"7.4.7.2"}},{"type":"Polygon","arcs":[[6378,6379,6380,2649,2650,2651,2652,2653,2654,-1668,-1667,-5841,-5843,-5842,597,598,599,600,601,602,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665,2666,2667,2668]],"properties":{"prefix":"2.6.7.1"}},{"type":"Polygon","arcs":[[-1256,6381,6382,6383,6384,6385,6386,6387,6388,6389,6390,-4472,-4471,-4470,-4469,-4468,-4467,-1101,-1100,-1099,-1098,-1257]],"properties":{"prefix":"7.3.1.3"}},{"type":"Polygon","arcs":[[1437,6391,6392,6393,6394,6395,6396,6397,6398,6399,3476,6400,6401,6402,6403,6404,6405,6406,6407,6408,6409,6410,6411,6412,6413,6414,6415,1436]],"properties":{"prefix":"1.3.1.3"}},{"type":"Polygon","arcs":[[3556,3557,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,3575,3576,3577,3578,3579,3580,3581,-4495,-4494,-4493,-4492,-4491,-4490,-4489,-4488,-4487,-4486,-4485,-4484,-4503,-4502,-4501,-4500,-4499,-4498,-4497,-4496,-939,-938,-937,-936,-935,-934,-933,-932,2071,2072,2073,2074,2075,2076,2077,3589,3590,3591,3592,3593,-3222,-3221,-3220,-3219,6416,3555]],"properties":{"prefix":"7.6.4.1"}},{"type":"Polygon","arcs":[[2851,2852,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865,2866,2867,6417,2850]],"properties":{"prefix":"7.4.3.1"}},{"type":"Polygon","arcs":[[6418,-3717,-3716,-3715,-3714,-3713,-3712,-3711,-3710,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6431,6432,4333,4334,6433,6434]],"properties":{"prefix":"2.3.1.1"}},{"type":"Polygon","arcs":[[4364,-4140,-4139,-4138,-4137,-4136,-4135,-4134,-4133,-5564,-4808,-4807,-4806,-4805,-1221,-1220,-1219,6435]],"properties":{"prefix":"7.2.7.1"}},{"type":"Polygon","arcs":[[-2885,-2884,-2883,-2882,-2881,-2880,-2879,-2878,-2949,-2948,-2947,-2946,-2945,-2944,1510,1511,1512,1513,1514,-2890,-2889,6436]],"properties":{"prefix":"9.1.4.1"}},{"type":"Polygon","arcs":[[6437,6438,6439,6440,6441,-1147,-1146,-1145,-1144,-1143,-1142,-4931,-4954,-4953,-4952,-5746,-5745,-5744,-5743,-3179,-3178,-3177,-3176,-3175,-3174,6442,6443,6444]],"properties":{"prefix":"7.5.3.2"}},{"type":"Polygon","arcs":[[6445,-854,-853,-852,-851,6446,6447,6448,6449,6450,6451,6452,-875,-874,-873,-872,-871,-870,-869,-868,-867,6453]],"properties":{"prefix":"4.1.2.1"}},{"type":"Polygon","arcs":[[-4463,-4462,-4461,-4460,-4459,1685,1686,1687,1688,1689,1690,1691,1692,6454,6455,-5906,6456,6457,6458,6459,1730,1731,1732,1733,1734,1735]],"properties":{"prefix":"2.1.2.2"}},{"type":"Polygon","arcs":[[-2273,-5911,-5910,-5909,-5908,2456,2457,2458,6460,6461,6462,6463,6464,6465,6466,6467]],"properties":{"prefix":"1.8.3.2"}},{"type":"Polygon","arcs":[[283,2247,2248,2249,2250,2251,2252,2253,-4162,-4161,-4160,-4178,-4177,-4176,-4175,-4174,-4173,-5917,-5916,-5915,-5914]],"properties":{"prefix":"8.2.2.3"}},{"type":"Polygon","arcs":[[-2782,4210,4211,4212,-2525,1585,1586,1587,1588,1589,1590,342,343,344,-5177,-5934,-5933,-5932,-5931,-5930,-5929,-5928,865,866,6468,6469]],"properties":{"prefix":"9.8.6.1"}},{"type":"Polygon","arcs":[[-5302,6470,-5927,-5926,-5925,-1735,-1734,-1733,-5303]],"properties":{"prefix":"2.2.1.4"}},{"type":"Polygon","arcs":[[-5184,-5183,-5182,3120,3121,3122,3123,3124,3125,3126,6471,6472,-5191,-5190,-5189,-5188,-5187,-5186,-5185]],"properties":{"prefix":"9.4.4.3"}},{"type":"Polygon","arcs":[[-2551,-5949,-5948,1565,1566,1567,1568,-2524,-2523,-2522,-2521,-2520,-2519,-2556,-2555,-2554,-2553,-2552]],"properties":{"prefix":"9.8.2.4"}},{"type":"Polygon","arcs":[[6473,1392,1393,1394,1395,1396,1397,6474,6475,6476,6477,6478,6479,6480,6481,6482,6483,6484,6485]],"properties":{"prefix":"1.3.4.4"}},{"type":"Polygon","arcs":[[1950,1951,1952,1953,1954,-1155,-1154,-1153,1955,1956,1957,1958,1959,1960,1961,1962,1963,1964,1965,1966,-5940,6486,6487,6488,6489,6490,6491,6492,6493,6494,-4147,-4146,-4145,-4144,-2595,-2594,-2593,-2592,-2591,6495,6496,6497,6498,-4533,-4532]],"properties":{"prefix":"7.2.2.4"}},{"type":"Polygon","arcs":[[1326,1327,1328,1329,1330,1331,1332,1333,6499,1325]],"properties":{"prefix":"7.3.3.3"}},{"type":"Polygon","arcs":[[-4553,-4552,-4551,-4550,6500,6501,6502,-2613,-2612,-2611,-2610,-2609,1558,1559,-5953,-5952,-5951,-5950,-2546,-2545,-2544,-2543,-2542,-2541,905,906,907,908,909,910,911,912,913,914,915,916,917,918,919,-4554]],"properties":{"prefix":"9.8.2.2"}},{"type":"Polygon","arcs":[[-3385,-3384,16,17,6503,6504,6505,1410,1411,1412,1413,1414,1415,1416,1417,-3400,-3399,-3398,-3397,-3396,-3395,-3394,-3393,-3392,-3391,-5956,-5955,6506]],"properties":{"prefix":"1.3.4.2"}},{"type":"Polygon","arcs":[[6507,6508,6509,6510,-3344,-3343,-3342,-3341,-3340,1291,1292,1293,1294,1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,1322,1323,1324,-6500,1334,1335,1336,1337,1338,1339,1340,1341,1342,1343,1344,1345,1346,1347]],"properties":{"prefix":"7.3.3.2"}},{"type":"Polygon","arcs":[[-4560,-4559,6511,6512,-1940,-1939,-1938,-1937,-1936,-1199,-1198,-1197,-1196,-5341,-5340,-5339,-5338,-5337,-4563,-4562,-4561]],"properties":{"prefix":"7.1.1.6"}},{"type":"Polygon","arcs":[[-4566,6513,6514,6515,6516,-5376,-5375,6517,6518,6519,6520,6521,6522,-5988,-5987,-5986,-5985,-5984,-5983,-5982,-5981,-5980,-1359,-4567]],"properties":{"prefix":"7.4.4.2"}},{"type":"Polygon","arcs":[[-5639,2980,2981,2982,393,394,395,396,1903,1904,-5642,-5641,-5640]],"properties":{"prefix":"2.5.1.2"}},{"type":"Polygon","arcs":[[6523,6524,-4575,-4574,-5355,6525,1545,1546,1547,1548,1549,1550,1551,1552,1553,4357,4358,4359,-3996,-3995,-3994,-3993,-3992,6526]],"properties":{"prefix":"4.8.2.1"}},{"type":"Polygon","arcs":[[6527,6528,6529,6530,60,61,62,63,64,65,66,67,4109,4110,4111,-5357,-5366,-5365,-5364,-5363,-5362,-5361,-5360,-5359,-5358,4121,-1549,-1548,-1547,-1546,-1545,-1544,-4608,-4607,-4606,6531,6532,6533,6534,6535,6536,6537,6538]],"properties":{"prefix":"4.4.3.4"}},{"type":"Polygon","arcs":[[6539,2618,2619,2620,-2343,-2342,6540,6541,6542,6543,6544,-4644,-4643]],"properties":{"prefix":"1.7.2.2"}},{"type":"Polygon","arcs":[[-3898,-5732,-5731,-5749]],"properties":{"prefix":"9.3.4.6"}},{"type":"Polygon","arcs":[[2200,2988,-864,6545]],"properties":{"prefix":"4.1.1.1"}},{"type":"Polygon","arcs":[[6546,6547,6548,6549,6550,6551,6552,6553,6554,-6011,-6010,-6009,415,416,417,418,-583]],"properties":{"prefix":"2.4.1.5"}},{"type":"Polygon","arcs":[[29,30,31,32,33,34,35,-6023,-6022,-6021,-6020,-6019,-6018,-6017,-6016,-6015,-6014,-6025,-6024,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,3319,3320,6555,6556,6557,28]],"properties":{"prefix":"1.5.1.1"}},{"type":"Polygon","arcs":[[6558,6559,6560,6561,6562,6563,-4700,-4699,-4698,-4697,-4696,-4695,-4694,-4693,-4692,-4704,3102,3103,3104,3105,3106,6564]],"properties":{"prefix":"9.1.7.1"}},{"type":"Polygon","arcs":[[-4689,3525,3526,3527,3528,3529,-2103,-2102,-2101,-2100,-2099,-2098,-2097,-2096,-2095,3530,3531,3532,3533,3534,3535,3536,6565,6566,6567,-6031,-6030,-6029,-6028,-6027,-6026,-6050,-6049,-6048,-6047,-6046,-6045,-6044,-6043,-6042,-6041,-6040,-6039,-6038,6568,-4690]],"properties":{"prefix":"4.3.2.2"}},{"type":"Polygon","arcs":[[2745,2746,2747,2748,2749,2750,6569,6570,-5470,-5469,-5468,-5467,-5466,-5465,-5464]],"properties":{"prefix":"4.1.5.4"}},{"type":"Polygon","arcs":[[-4732,-4731,-4730,-4729,-4728,3642,3643,3644,-3503,2137,2138,2139,2140,2141,2142,2143,2144,1192,1193]],"properties":{"prefix":"6.3.7.4"}},{"type":"Polygon","arcs":[[6571,6572,-4201,-4200,-4199,-4198,-4197,-4196,637,638,639,640,6573,6574,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,6586,6587,6588,6589,724,725,726,727,728,-4207]],"properties":{"prefix":"8.1.5.1"}},{"type":"Polygon","arcs":[[-3074,-3073,-3072,-3071,-3070,-3069,6590,6591,6592,6593,6594,6595,6596,-907,-906,-905,-904,-903,-902,-901,-900,-3088,-3087,-3086,-3085,-3084,6597]],"properties":{"prefix":"7.4.8.1"}},{"type":"Polygon","arcs":[[6598,-3012,-3011,-3010,-3009,-3008,-3007,-6067,-6066,-6065,-6064,-6072,-6071,-3029,-3028,-3027,-3026,-3025,-3024,-3023,-3022,-3021,-3020,-3019,-3018]],"properties":{"prefix":"5.3.3.1"}},{"type":"Polygon","arcs":[[-4749,-4748,-4747,-4746,-4745,-4744,-4743,-4742,-4741,-4740,-4739,-4738,-4737,2884,2885,2886,2887,2888,2889,1515,1516,1517,1518,-705,-704,-703,-702,-701,-700,-699,-698,-697,-696,-695,-694,-693,-692,-691,-690,-4750]],"properties":{"prefix":"9.1.3.2"}},{"type":"Polygon","arcs":[[6599,6600,-3121,-3120,-3119,-3118,-3117,-3116,-3115,-3114,-3113,-3112,-4759,-4758,-4757,-4775,-4774,-4773,-5491,4306,4307,4308,4309,4310,4311,-3233,-3232,-3231,-3230,-3229,-3258,-3257,-3256,-3255]],"properties":{"prefix":"9.4.5.1"}},{"type":"Polygon","arcs":[[6601,3382,1379,1380,1381,1382,1383,1384,1385,1386,1387,1388,1389,1390,14,15,3383,3384,3385,3386,3387,3388,3389,3390,3391,3392,3393,6602]],"properties":{"prefix":"1.3.3.6"}},{"type":"Polygon","arcs":[[-6078,-6077,-6076,-6075,-6074,1979,-1300,-1299,-1298,-1297,-1296,-1295,-1294,-1293,-1292,-1291,-1290,-1289,-1288,-1287,-1286,-1285,-1284,2484,2485,2486,2487,2488,2489,2490,2491,2492,2493,2494,2495,2496,2497,2498,2499,2500,2501,2502,2503]],"properties":{"prefix":"7.2.3.2"}},{"type":"Polygon","arcs":[[-5506,-5505,-5504,6603,-3678,-3677,-3676,-3675,-3674,-3673,450,451,452,453,454,455,456,457,458,459,460,461,-6108,-6107,-6106,-6105,-6104,-5529,-5528,-5527,-5526,6604,6605,6606,6607,6608,6609,6610,6611,6612,6613,6614,-5522,-5521,-5520,-5519,-5518,-5517,-5516,529,-6082]],"properties":{"prefix":"1.9.2.3"}},{"type":"Polygon","arcs":[[-6090,-6089,-6088,6615,6616,6617,3412,3413,3414,3415,3416,3417,-6111,-6110,-6109,-6128,-6127,-6126,6618,6619,6620,6621,6622,6623,-6091]],"properties":{"prefix":"6.3.3.3"}},{"type":"Polygon","arcs":[[-4799,-4798,6624,6625,2297,2298,6626,2308,2309,2310,2311,2312,2313,2314,6627,6628,6629,6630,6631,6632,6633,6634,6635,6636,6637,6638,6639,6640,6641,6642,-4801,-4800]],"properties":{"prefix":"2.3.3.6"}},{"type":"Polygon","arcs":[[-6125,-6124,-6123,-6122,-6121,-6120,-6119,-6118,-6117,-6116,-6115,-6114,-6113,-6112,3424,3425,3426,3427,3428,3429,3430,3431,-1795,-1794,-1793,-1792,-1791,-1790,-1789,-1788,-1787,-1786,-1785,-1784,-1783,-1782,-1781,-1780,-1779,-1778,-3283,-3282,-3281,-3280,-3279,-6094,-6093,-6092,-6624,-6623,-6622,-6621,-6620,-6619]],"properties":{"prefix":"6.3.3.5"}},{"type":"Polygon","arcs":[[-6163,-4825,-4824,-3323,-3336,-3335,-3334,-3333,-3332,-3331,-3330,-3329,-3328,858,859,353,-6165,-6164]],"properties":{"prefix":"3.4.4.8"}},{"type":"Polygon","arcs":[[-3351,-3350,-3349,-3348,-3347,-3346,-3345,-6511,-6510,-6509,-6508,1348,1349,1350,1351,1352,1353,1354,1355,1356,1357,1358,1359,1360,1361,1362,-1134,-1133,-1132,-1131,-1130,-1129,-3360,-3359,-3358,-3357,-3356,-3355,-3354,6643]],"properties":{"prefix":"7.3.3.1"}},{"type":"Polygon","arcs":[[-1367,-6149,-6148,-1370,-1369,-1368]],"properties":{"prefix":"7.2.7.5"}},{"type":"Polygon","arcs":[[-6161,-6160,-6159,-6158,-6157,-6156,-6155,-6154,-6153,-6152,-6151,-6150,-3624,-4837,-4836,-4835,-4834,-4833,-4832,-4831,-4830,-4829,-4828,-6162]],"properties":{"prefix":"3.4.4.6"}},{"type":"Polygon","arcs":[[-6175,-6174,-6173,-6172,-6132,-6131,-6130,-6129,-6141,-6140,1114,1115,1116,1117,-3783,-3782,-3781,-3780,-3779,-3778,-3777,-6177,-6176]],"properties":{"prefix":"5.1.2.3"}},{"type":"Polygon","arcs":[[6644,6645,6646,6647,6648,-5614,-5613,-5612,6649,6650,3459,3460,3461,3462,3463,3464,6651,6652,6653,6654,6655]],"properties":{"prefix":"7.6.6.3"}},{"type":"Polygon","arcs":[[6656,6657,-2756,-2755,-2754,-2753,-2752,-2751,-2750,-2749,-2748,-5603,-5602,2214,2215,2216,2217,2218,-2768,-2767,-2766,-2765,-2764,-2763,-2762]],"properties":{"prefix":"4.1.6.1"}},{"type":"Polygon","arcs":[[-4851,-4850,44,-6189,-6195,-6194,-2638,-4855,-4854,-4853,-4852]],"properties":{"prefix":"1.7.1.2"}},{"type":"Polygon","arcs":[[6658,-1823,-1822,-1821,-1820,6659,6660,6661,6662,-1593,-1592,922,923,924,925,926,6663,6664]],"properties":{"prefix":"9.6.1.1"}},{"type":"Polygon","arcs":[[-2001,-2000,-1999,-5618]],"properties":{"prefix":"1.1.2.4"}},{"type":"Polygon","arcs":[[6665,6666,6667,6668,271,272,273,274,2005,2006,2007,2008,2009,2010,-6202,-6201,-6200,-6199,-6198,-6197,-6196,-6216,-6215,-6214,-6213]],"properties":{"prefix":"8.1.6.6"}},{"type":"Polygon","arcs":[[-3885,-3884,-1969,-1968,-1967,-1966,-1965,-1964,-1963,-1962,-1961,-1960,-1959,-1958,-1957,-1956,-1152,-1151,-1150,-1149,-1148,-6442,-6441,-6440,-6439,-6438,-6445,6669]],"properties":{"prefix":"7.5.3.1"}},{"type":"Polygon","arcs":[[6670,6671,2334,2335,2336,2337,2338,6672,6673,6674,6675,6676,6677,6678,3681,6679,6680,6681,6682,6683,6684]],"properties":{"prefix":"1.9.1.2"}},{"type":"Polygon","arcs":[[6685,3242,3243,3244,-1471,-6229,-6228,6686,6687,6688,6689,6690]],"properties":{"prefix":"9.4.2.2"}},{"type":"Polygon","arcs":[[4136,4137,6691,6692,6693,6694,6695,6696,6697,6698,4144,4145,4146,4147,4148,4149,-2474,-2518,6699,6700,6701,6702,6703,6704,6705]],"properties":{"prefix":"7.2.4.6"}},{"type":"Polygon","arcs":[[6706,6707,-1004,-1003,-1002,-1001,6708,6709,6710,6711,-6263,-6262,-6261,6712,6713,1122,1123,6714]],"properties":{"prefix":"5.1.1.2"}},{"type":"Polygon","arcs":[[-3471,6715,6716,6717,6718,6719,6720,6721,6722,6723,6724,6725,6726,564,565,566,567,568,569,570,-3485,-3484,-3483,-3482,-3481,6727,6728,6729,-5026]],"properties":{"prefix":"1.3.2.2"}},{"type":"Polygon","arcs":[[-6712,-6711,-6710,-6709,-1000,-999,-998,-997,-996,-995,-994,-993,-992,-991,-990,-989,-988,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,3778,3779,3780,3781,3782,1118,1119,1120,1121,-6714,-6713,-6260]],"properties":{"prefix":"5.1.1.4"}},{"type":"Polygon","arcs":[[6730,6731,6732,6733,-6720,-6719,-6718,-6717,-6716,-3470,-3469,-3468,-3467,-3466,1375,1376,1377,1378,-3383,-3382,-3381,-3380,-3379,-3378,-3377,6734,6735,6736,6737,6738,6739,-5706,-5705,-5704,-5703,-5702,-5701,-5700,-5699,-5698,-5697,554,555,556,6740,6741,6742]],"properties":{"prefix":"1.3.2.4"}},{"type":"Polygon","arcs":[[-5060,-5059,-5058,-5057,-5056,-5055,-5054,-5053,-5052,-5051,-1760,-1804,-1803,-1802,1243,1244,1245,1246,1247,1248,-5062,-5061]],"properties":{"prefix":"6.1.1.2"}},{"type":"Polygon","arcs":[[2235,428,0,1,2,3,-4101,-4100,-4099,-4098,-4097,-4096,-4095,-4094,-4093,-4092,-4109,-4108,-4107,-4106,6743,4360]],"properties":{"prefix":"1.1.1.1"}},{"type":"Polygon","arcs":[[-6308,-6307,-6306,-6305,-6304,-6272,-6271,-6284,-6283,-6282,-6281,-1121,-1120]],"properties":{"prefix":"7.3.2.3"}},{"type":"Polygon","arcs":[[6744,6745,6746,2959,2960,324,325,-6312,-6327,-6326,-6325,-6324,-6323,-6322,6747,6748,6749,6750]],"properties":{"prefix":"9.1.5.2"}},{"type":"Polygon","arcs":[[-6330,-492,-491,-490,-489,584,1660,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,1748,1749,-6333,-6332,-6331]],"properties":{"prefix":"2.1.1.3"}},{"type":"Polygon","arcs":[[-5078,297,298,299,-1926,-1925,-1924,-1923,-1922,-1921,-5751,-5750,-5754,-5753,-5752,3832,3833,3834,3835,6751,-5079]],"properties":{"prefix":"8.4.2.2"}},{"type":"Polygon","arcs":[[6752,2784,-6221,-6220,-6219,-6218]],"properties":{"prefix":"9.8.5.3"}},{"type":"Polygon","arcs":[[3229,3230,6753,3237,3238,3239,3240,3241,-6686,-6691,-6690,-6689,6754,6755,6756,6757,3228]],"properties":{"prefix":"9.4.2.1"}},{"type":"Polygon","arcs":[[6758,3158,3159,6759,6760,6761,6762,6763,6764,6765]],"properties":{"prefix":"7.5.4.1"}},{"type":"Polygon","arcs":[[2339,2340,2341,2342,2343,2344,2345,2346,443,444,445,446,447,448,449,3672,3673,3674,3675,3676,3677,3678,3679,3680,-6679,-6678,-6677,-6676,-6675,-6674,-6673]],"properties":{"prefix":"1.9.1.3"}},{"type":"Polygon","arcs":[[-4063,-4062,-4061,-5083,-5082,-5081,-5090,-5089,-1751,-1750,-1749,-1748,-1747,-1746,-1745,-1744,-1743,-1742,-4075,-4074,-4073,-4072,-4071,-4070,-4069,6766]],"properties":{"prefix":"2.2.2.1"}},{"type":"Polygon","arcs":[[6767,6768,6769,-5100,-5099,-6339,-6338,-6337,-6336,-5091,3445,3446,3447,3448,6770,6771,6772,6773]],"properties":{"prefix":"4.3.4.2"}},{"type":"Polygon","arcs":[[-3580,-3579,-3578,-3577,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,-6343,-6342,-6341,-6340,-3581]],"properties":{"prefix":"7.6.3.2"}},{"type":"Polygon","arcs":[[6788,1939,1940,1941,-5113,-5128,-5127]],"properties":{"prefix":"7.2.1.1"}},{"type":"Polygon","arcs":[[3266,6789,3260,3261,3262,3263,1401,1402,1403,1404,1405,1406,1407,3264,3265]],"properties":{"prefix":"1.3.5.1"}},{"type":"Polygon","arcs":[[-6365,-6364,-6363,-6362,-1380,-1379,-1378,-1377,-1376,-1375,6790,-1459,-1458,-1457,-1456,-1455,-1454,-1453,-1452,-6366]],"properties":{"prefix":"1.2.1.5"}},{"type":"Polygon","arcs":[[-791,-4524,-4523,-4522,-4521,-4520,-4529,-4528,244,245,246,247,248,-650,6791,6792,6793,6794,6795,6796,-4370,-4369,-3672,-3671,-3670,-3669,-3668,-3667,-3666]],"properties":{"prefix":"7.8.1.5"}},{"type":"Polygon","arcs":[[6797,3055,3056,3057,3058,3059,3060,3061,3062,3063,3064,-1321,-1320,-1319,-1318,-1317,-1316,3065,3066,3067,3068,-5156,-5155,-5154,-5153,-5158,-5157,3079,3080,3081,3082,3083,3084,3085,3086,3087,-899,-898,-6372,-6371]],"properties":{"prefix":"7.4.7.3"}},{"type":"Polygon","arcs":[[6798,-4481,-4480,-4479,-4478,-4477,-4476,-4475,-4474,-4473,-6391,-6390,-6389,-6388,-6387,-6386,-6385,-6384,-6383,-6382,-1255,-1254,-1253,-1252,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,6809,6810,6811,6812]],"properties":{"prefix":"7.3.1.2"}},{"type":"Polygon","arcs":[[-5203,-5202,2439]],"properties":{"prefix":"3.1.2.2"}},{"type":"Polygon","arcs":[[131,132,133,134,135,136,3268,3269,3270,3271,3272,3273,3274,3275,3276,3277,3278,3279,3280,3281,3282,-1777,-1776,-1775,-1774,-1773,-1772,-1771,3283,6813,130]],"properties":{"prefix":"6.3.1.1"}},{"type":"Polygon","arcs":[[-5195,-5194,3474,3475,-6400,-6399,-6398,-6397,-6396,-6395,-6394,-6393,-6392,1438,1439,1440,1441,1442,1443,1444,1445,1446,1447,1448,1449,1450,1451,1452,1453,1454,1455,3485,6814,-5198,-5197,-5196]],"properties":{"prefix":"1.3.1.2"}},{"type":"Polygon","arcs":[[2836,6815,6816,6817,6818]],"properties":{"prefix":"2.6.3.3"}},{"type":"Polygon","arcs":[[-5857,3911,3912,3913,3914,3915,3916,-5250,-5249,-5248,-5247,-5246,-5859,-5858]],"properties":{"prefix":"9.3.5.3"}},{"type":"Polygon","arcs":[[-6429,-6428,-6427,-6426,-6425,-6424,-6423,-6422,-6421,-6420,-3709,-3708,-3707,-540,-539,-538,-537,-536,-535,-534,-533,-532,-531,-530,-529,-528,-527,-526,-2198,-2197,4332,-6433,-6432,-6431,-6430]],"properties":{"prefix":"2.3.1.2"}},{"type":"Polygon","arcs":[[-5238,-5237,-5236,-5235,-5234,-5233,-5232,1767,1768,1769,1770,1771,1772,1773,1774,1775,1776,1777,1778,1779,1780,1781,1782,1783,1784,1785,1786,1787,1788,-5276,-5874,-5873,-5872,-5871,-5870,-5869,-5868,-5867,-5866,-5865,-5242,-5241,-5240,-5239]],"properties":{"prefix":"6.2.1.6"}},{"type":"Polygon","arcs":[[-6694,-6693,-6692,4138,4139,4140,4141,4142,-2599,-2598,-2597,-2596,4143,-6699,-6698,-6697,-6696,-6695]],"properties":{"prefix":"7.2.4.7"}},{"type":"Polygon","arcs":[[-2106,-2105,-2104,-3530,-3529,-5252,-5251,-2353,-2352,4337,4338,4339,6819,6820,6821,-4465]],"properties":{"prefix":"4.3.1.3"}},{"type":"Polygon","arcs":[[-5256,-5255,-3916,-3915,-3914,4012,4013,4014,4015,4016,4017,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,-3968,-3967,-3966,-3965,-3964,-3963,-3962,-3961,4029,4030,4031,4032,4033,4034,4035,4036,4037,4038,4039,4040,-5260,-5259,-5258,-5257]],"properties":{"prefix":"9.3.1.6"}},{"type":"Polygon","arcs":[[2224,6822,6823,6824,6825,-3147,-3146,-2736,6826,6827,6828,-2770,-2769]],"properties":{"prefix":"4.1.4.3"}},{"type":"Polygon","arcs":[[-6461,2459,2460,2461,-2333,-2332,-2331,-2330,-5297,-5296,-5295,6829,6830,6831]],"properties":{"prefix":"1.8.3.3"}},{"type":"Polygon","arcs":[[6832,6833,-5919,-5918,-6471,-5301,-5300,-5299,-5298,-1727,-1726,6834,6835,6836]],"properties":{"prefix":"2.2.1.1"}},{"type":"Polygon","arcs":[[-1799,6837,6838,6839,6840,6841,6842,-6246,-3490,-3489,-3488,-3520,-3519,1223,1224,1225,1226,1227,1228,1229,1230,1231,1232,1233,1234,-1801,-1800]],"properties":{"prefix":"6.3.4.3"}},{"type":"Polygon","arcs":[[-3507,6843,-3644,-3643,-3642,-3641,-3640,-3639,-3638,-3637,-3636,-3635,-3634,-3633,-3632,-3648,-3647,-3646]],"properties":{"prefix":"6.3.6.1"}},{"type":"Polygon","arcs":[[3787,3788,3789,3790,3791,3792,3793,3794,3795,3796,3797,3798,3799,3800,3801,3802,3803,3804,3805,3806,3807,3808,3809,6844,6845]],"properties":{"prefix":"2.4.2.1"}},{"type":"Polygon","arcs":[[6846,6847,2188,2189,2190,2191,2192,2193,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,4067,4068,4069,6848,6849,6850]],"properties":{"prefix":"2.2.1.7"}},{"type":"Polygon","arcs":[[-5309,-5308,-5307,-5306,-5305,-5304,4204,4205,4206,729,730,731,732,733,734,735,736,737,-5076,-5075,-5074,-5073,-5310]],"properties":{"prefix":"8.1.4.4"}},{"type":"Polygon","arcs":[[-4975,6851,6852,6853,6854,6855,6856,6857,6858,6859,-5677,-5676,-5675,-5674,-5673,-5672,-5671,-5670,-5669,-5668,-5667,-5666,-4981,-4980,-4979,-4978,-4977,-4976]],"properties":{"prefix":"7.2.4.4"}},{"type":"Polygon","arcs":[[6860,-4530,-6499,-6498]],"properties":{"prefix":"7.2.2.1"}},{"type":"Polygon","arcs":[[1398,1399,1400,-3264,-3263,-3262,6861,6862,6863,6864,6865,-6475]],"properties":{"prefix":"1.3.4.5"}},{"type":"Polygon","arcs":[[828,829,830,831,832,833,834,835,836,837,838,839,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,-5326,-5325]],"properties":{"prefix":"3.4.3.2"}},{"type":"Polygon","arcs":[[6866,6867,6868,-1947,-1946,-1945,-1944,-1943,-1942,-1941,-6513,-6512,-4558,-4557,-5336,-5335,-5334,-5333,-5332,-5331,-5330,-5329,-5343,-5342,-1179,-1178,-1177,6869,6870,6871,6872,6873,6874]],"properties":{"prefix":"7.1.1.3"}},{"type":"Polygon","arcs":[[19,20,21,22,23,24,1391,-6474,-6486,-6485,-6484,-6483,-6482,-6481,-6480,6875,-3268,-3267,-3266,-3265,1408,1409,-6506,-6505,-6504,18]],"properties":{"prefix":"1.3.4.3"}},{"type":"Polygon","arcs":[[3856,6876,3838,3839,167,168,169,170,171,172,173,3840,3841,3842,3843,3844,3845,3846,3847,3848,3849,3850,3851,3852,3853,3854,3855]],"properties":{"prefix":"6.4.2.1"}},{"type":"Polygon","arcs":[[-5351,-5350,-5349,-5348,-5347,-5346,6877,6878,6879,6880,-2690,-2689,-2688,-2687,-2686,-2685,6881,6882,6883,-2656,603,604,605,606,607,608,609,610,611,612,359,360,361,362,363,364,-2703]],"properties":{"prefix":"2.6.6.2"}},{"type":"Polygon","arcs":[[-5966,-5965,-5964,-5963,-5962,-5961,-5960,-5959,-5958,-5957,223,224,225,226,227,228,229,230,231,232,233,234,1637,1638,1639,1640,1641,1642,6884,6885,6886,6887,6888,6889,6890,6891,6892,6893,-4570,1649,1650,1651,1652,1653,1654,1655,-772,-771,-770,-769,-5967]],"properties":{"prefix":"7.7.2.3"}},{"type":"Polygon","arcs":[[1544,-6526,-5356,-4580,-4579,-4578,-4577,6894,6895,-3990,-3989,-3931,-3945,-3944,-3943,-3942,1539,1540,1541,1542,1543]],"properties":{"prefix":"4.8.2.4"}},{"type":"Polygon","arcs":[[6896,-2184,-2183,-2182,-2181,-1713,-1712,-1711,-1710,-1709,-1708,-1707,-1706,-1705,3719,3720,6897,6898,6899,6900,6901,6902,3737,6903,6904,6905]],"properties":{"prefix":"2.3.2.3"}},{"type":"Polygon","arcs":[[-5373,-5372,-5371,-5370,-5369,-5368,-5367,6906,6907]],"properties":{"prefix":"7.4.4.5"}},{"type":"Polygon","arcs":[[3721,3722,3723,3724,3725,3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,-6903,-6902,-6901,-6900,-6899,-6898]],"properties":{"prefix":"2.3.2.5"}},{"type":"Polygon","arcs":[[6908,-3875,-3874,-3873,-3872,-3871,-3870,-3869,-3868,-3867,-3866,-3865,-3864,-3798,-3947,-3946,-3952,-1907,-1906,-1905,-1904,397,398,399,400,401,402,403]],"properties":{"prefix":"2.4.5.1"}},{"type":"Polygon","arcs":[[6909,6910,6911,-4630,-4629,-5433,-5441,-5440,710,711,712,713,714,715,716,717]],"properties":{"prefix":"8.2.1.7"}},{"type":"Polygon","arcs":[[6912,2245,2246,-1689,-1688,-1687,-1686,-1685,-1684,-1683,-1682,-1681,-1680,-1679,-1678,-1677,-1676,-1675,-1674,-4231,-4230,-4229,-4228,-4227,-6004,-6003,-6002,-6001,-6000,-5999,-5998,-5380,-5379,-5386,-5385,-5384,-5383,-5382,-6006,-6005,-2906,-2905,6913]],"properties":{"prefix":"2.6.2.1"}},{"type":"Polygon","arcs":[[6914,-5435,-5434,-4617,-4616,-4615,-4614,-5396,-5395,-5394,-5393,-5392,-5391,-5390,6915,6916,6917,6918,6919,6920,6921,6922,6923,6924,6925,3763,6926]],"properties":{"prefix":"8.2.1.1"}},{"type":"Polygon","arcs":[[-578,-577,-576,-575,-574,-573,-572,-571,-570,6927,6928,6929,6930,6931,6932,-6549,-6548,-6547,-582,-581,-580,-579]],"properties":{"prefix":"2.4.1.4"}},{"type":"Polygon","arcs":[[-649,-648,-647,-646,-645,-644,-643,-642,-641,-640,-639,-638,-637,-636,-635,-3658,-4368,-4367,-4366,-4381,-4380,-4379,-4378,-4377,-4376,-4375,-4374,-4373,-4372,-4371,-6797,-6796,-6795,-6794,-6793,-6792]],"properties":{"prefix":"7.8.1.6"}},{"type":"Polygon","arcs":[[2050,2051,2052,2053,2054,2055,2056,2057,6933,6934,6935,6936,-5451,-5450,6937,4324]],"properties":{"prefix":"7.6.1.1"}},{"type":"Polygon","arcs":[[6938,1706,1707,1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,1721,3996,3997]],"properties":{"prefix":"2.1.3.1"}},{"type":"Polygon","arcs":[[6939,255,6940,6941]],"properties":{"prefix":"8.1.5.4"}},{"type":"Polygon","arcs":[[-6570,2751,2752,2753,2754,2755,2756,2757,2758,-5477,-5476,-5475,-5474,-5473,-5472,-5471,-6571]],"properties":{"prefix":"4.1.5.5"}},{"type":"Polygon","arcs":[[-6582,-6581,-6580,-6579,-6578,-6577,-6576,-6575,-6574,641,6942,6943,6944,6945,6946,6947,6948,6949,6950,6951,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,2046,2047,2048,2049,720,721,722,723,-6590,-6589,-6588,-6587,-6586,-6585,-6584,-6583]],"properties":{"prefix":"8.1.5.2"}},{"type":"Polygon","arcs":[[-6186,-6185,1618,1619,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,1632,1633,1634,1635,1636,214,215,216,-6060,-4955,-4972,-4971,-4970,-4969,-4968,-4967,-4966,-4965,-4964,-4963,-4962,-6063,-6062,-6061,-754,-753,-752,-751,-750,-6187]],"properties":{"prefix":"7.7.1.2"}},{"type":"Polygon","arcs":[[6952,6953,6954,6955,6956,3374,3375,3376,3377,3378,3379,3380,3381,-6602,-6603,3394,3395,3396,3397,3398,3399,1418,1419,1420,1421,1422,1423,1424,1425,1426,1427,1428,1429,541,542,6957]],"properties":{"prefix":"1.3.3.5"}},{"type":"Polygon","arcs":[[-4783,-4782,-4781,-4780,6958,891,892,893,894,895,896,897,898,899,900,901,902,903,904,2540,2541,2542,2543,2544,2545,2546,2547,2548,2549,2550,2551,6959,6960,-4784]],"properties":{"prefix":"9.8.3.1"}},{"type":"Polygon","arcs":[[-6627,2299,2300,2301,2302,2303,2304,2305,2306,2307]],"properties":{"prefix":"2.3.3.7"}},{"type":"Polygon","arcs":[[6961,-839,-838,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971,6972,6973,6974,6975,6976]],"properties":{"prefix":"4.1.2.3"}},{"type":"Polygon","arcs":[[6977,6978,6979,6980,6981,2927]],"properties":{"prefix":"7.4.5.1"}},{"type":"Polygon","arcs":[[-5538,6982,6983,6984,2670,2671,2672,2673,2674,2675,2676,2677,2678,2679,2680,2681,2682,2683,2684,2685,2686,2687,2688,2689,2690,2691,2692,2693,2694,2695,2696,2697,2698,2699,2700,2701,2702,365,366,367,368,369,-5539]],"properties":{"prefix":"2.6.5.2"}},{"type":"Polygon","arcs":[[-3734,-3733,-3732,-3731,-3730,-3729,-3728,-3727,-3726,-3725,-3724,-3723,-5542,-5541,-5563,-5562,-5561,-5560,-5559,-5558,-561,-560,-559,-558,-557,-556,-555,-554,-553,-552,-551,-550,-3746,-3745,-3744,-3743,-3742,-3741,-3740,6985]],"properties":{"prefix":"2.3.3.1"}},{"type":"Polygon","arcs":[[6986,6987,6988,-3134,-3155,1069,-890,-889,-888,-887,-886,-885,-884,-883,6989,6990]],"properties":{"prefix":"4.1.2.5"}},{"type":"Polygon","arcs":[[842,843,844,845,-3327,-5594,-5593,-5597,6991,6992,6993]],"properties":{"prefix":"3.4.4.1"}},{"type":"Polygon","arcs":[[6994,6995,-5598,2267,2268,2269,2270,6996]],"properties":{"prefix":"1.4.2.3"}},{"type":"Polygon","arcs":[[-5608,-5607,-5606,-5605,-5611,-2849,-2848,-2847,-2846,-2845,2910,2911,2912,2913,2914,2915,385,386,387,-1903,-1902,-1901,-1900,-1899,2916,6997,6998,6999]],"properties":{"prefix":"2.6.1.1"}},{"type":"Polygon","arcs":[[-5589,7000,3454,-1623,-1622,-1621,-1620,-1619,-1618,-1617,-1616,-1615,-1614,-1613,-1612,-5615,-6649,-6648,-6647,-6646,-6645,-6656,-6655,-6654,-6653,7001,-5591,-5590]],"properties":{"prefix":"7.6.6.2"}},{"type":"Polygon","arcs":[[-6924,-6923,-6922,-6921,-6920,-6919,-6918,-6917,-6916,-5389,-5398,-5397,-2024,-2023,-2022,-2021,-2020,-2019,-2018,-2017,3762,-6926,-6925]],"properties":{"prefix":"8.2.1.2"}},{"type":"Polygon","arcs":[[7002,266,267,7003,7004,7005,7006,-6211,-6210,-6209,-6208,-6207,7007]],"properties":{"prefix":"8.1.6.3"}},{"type":"Polygon","arcs":[[-1595,-1594,-6663,-6662,-6661,-6660,-1819,-1818,-1817,-1816,-2239,-1602,-1601,-1600,-1599,-1598,-1597,-1596]],"properties":{"prefix":"9.6.1.2"}},{"type":"Polygon","arcs":[[7008,7009,196,197,198,199,200,201,-5626,-5625,-5635,-5634,-5633,-5636,-4923,-4922,-4921,-4920,-4919,-4918,-4917,3225]],"properties":{"prefix":"7.6.2.1"}},{"type":"Polygon","arcs":[[-4211,-2781,-2780,-2779,-2778,-2777,-2776,-2775,-2774,-2773,-2772,-2787,-2531,-2530,-2529,-2528,-2527,7010,-4212]],"properties":{"prefix":"9.8.4.1"}},{"type":"Polygon","arcs":[[-7004,268,269,270,-6669,-6668,-6667,-6666,-6212,-7007,7011,7012]],"properties":{"prefix":"8.1.6.5"}},{"type":"Polygon","arcs":[[-3535,-3534,-3533,-3532,-3531,-2094,-2093,-2092,-2091,-2090,-2089,-3451,-3450,-3449,-3448,-3447,-3446,-3445,-3444,-3443,-2230,-2229,-2228,-2227,-2226,-2225,-2224,-3542,-3541,-3540,-3539,7013]],"properties":{"prefix":"4.3.3.1"}},{"type":"Polygon","arcs":[[2330,2331,2332,2333,-6672,-6671,-6685,-6684,-6683,-6682,-6681,7014]],"properties":{"prefix":"1.9.1.1"}},{"type":"Polygon","arcs":[[7015,-1579,-1578,-1577,-1576,-1575,-1574,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,7016,7017,7018]],"properties":{"prefix":"9.4.2.5"}},{"type":"Polygon","arcs":[[-5647,-5646,-5645,-5644,111,112,113,114,115,116,117,118,1070,1071,1072,1073,1074,1075,1076,1077,1078,1079,1080,1081,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,7019,7020,3014,3015,3016,3017,3018,3019,3020,3021,3022,3023,3024,3025,3026,3027,3028,3029,3030,3031,3032,3033,3034,3035,-5661,-5660,-5659,-5658,-5657,-5656,-5655,-5654,-5653,-5652,-5651,-5650,-5649,-5648]],"properties":{"prefix":"5.3.2.2"}},{"type":"Polygon","arcs":[[-6859,-6858,-6857,-6856,-6855,-6854,-6853,-6852,-4974,-4973,4127,4128,4129,4130,4131,4132,4133,4134,4135,-6706,-6705,-6704,-6703,-6702,-6701,-6700,-2517,-2516,-2515,-2514,-2513,-2512,-2511,-2510,-2509,-2508,-5679,-5678,-6860]],"properties":{"prefix":"7.2.4.5"}},{"type":"Polygon","arcs":[[7021,7022,7023,-4987,-4986,7024,7025,7026,7027,7028,7029,7030,7031]],"properties":{"prefix":"9.1.2.1"}},{"type":"Polygon","arcs":[[-1008,-1007,-1006,-1005,-6708,-6707,-6715,1124,1125,1126,1127,1128,1129,1130,1131,1132,7032]],"properties":{"prefix":"5.1.1.1"}},{"type":"Polygon","arcs":[[-6726,-6725,-6724,-6723,-6722,-6721,-6734,-6733,-6732,-6731,-6743,-6742,-6741,557,558,559,560,561,562,563,-6727]],"properties":{"prefix":"1.3.2.3"}},{"type":"Polygon","arcs":[[7033,3289,3290,-6269,-6268,-6267,-6266,-6265,-6264,-5690,-5689,-5696,-5695,-5694,3312,3313,3314,3315,3316,3317]],"properties":{"prefix":"5.3.6.1"}},{"type":"Polygon","arcs":[[-3927,-3926,-3925,7034,-1840,-1839,-1838,-1837,-1836,-1835,-1834,-1833,948,7035,7036,7037]],"properties":{"prefix":"9.3.6.1"}},{"type":"Polygon","arcs":[[-6735,-3376,-5708,-5707,-6740,-6739,-6738,-6737,-6736]],"properties":{"prefix":"1.3.2.5"}},{"type":"Polygon","arcs":[[-2717,7038,-1323,-1322,-3065,-3064,-3063,-3062,-3061,4238,4239,4240,4241,4242,4243,4244,-2855,-2854,-2853,-2852,-2851,-2871,-2870,-2869,-2868,4245,4246,4247,4248,4249,4250,4251,-2718]],"properties":{"prefix":"7.4.2.1"}},{"type":"Polygon","arcs":[[-1841,-7035,-3924,-1842]],"properties":{"prefix":"9.3.6.2"}},{"type":"Polygon","arcs":[[7039,3136,3137,3138,3139,3140,3141,3142,3143,-5709,-5719,-5718,-6303,-6302,-6301,-6300,-6299,1059,1060,1061,1062,1063,1064,1065,1066,7040,7041]],"properties":{"prefix":"4.1.3.1"}},{"type":"Polygon","arcs":[[-6315,-6314,7042,2946,2947,2948,-2877,2949,2950,2951,2952,2953,2954,2955,2956,2957,-2725,-2724,2958,-6747,-6746,-6745,-6751,-6750,-6749,-6748,-6321,-6320,-6319,-6318,-6317,-6316]],"properties":{"prefix":"9.1.5.1"}},{"type":"Polygon","arcs":[[3171,3172,3173,7043,7044,7045,7046,7047,7048,-6763,-6762,-6761,-6760,3160,3161,3162,3163,-2563,3164,3165,3166,3167,3168,3169,3170]],"properties":{"prefix":"7.5.4.4"}},{"type":"Polygon","arcs":[[-3959,-3958,-3957,-3956,-1490,-4046,-4045,-4044,-4043,-4042,-4041,-4040,-4039,-4038,-4037,-4036,-4035,-4034,-4033,7049,7050,7051]],"properties":{"prefix":"9.3.2.1"}},{"type":"Polygon","arcs":[[-5046,-617,-616,-615,-614,-808,-807,-806,-5047]],"properties":{"prefix":"7.8.4.2"}},{"type":"Polygon","arcs":[[-7049,-7048,-7047,-7046,-7045,-7044,3174,3175,3176,3177,3178,3179,3180,3181,3182,3183,3184,3185,3186,3187,3188,3189,7052,-6766,-6765,-6764]],"properties":{"prefix":"7.5.4.2"}},{"type":"Polygon","arcs":[[7053,-2086,7054,7055,7056,7057,7058,7059,-6768,-6774,-6773]],"properties":{"prefix":"4.3.4.1"}},{"type":"Polygon","arcs":[[-6784,-6783,-6782,-6781,-6780,7060,7061,7062,7063,7064,7065,7066,-3211,-3210,-3209,-3208,-6354,-6353,-6352,-6351,-6350,-6349,-6348,-6347,-6346,-6345,-6344,-6788,-6787,-6786,-6785]],"properties":{"prefix":"7.6.3.3"}},{"type":"Polygon","arcs":[[-5762,-5761,-5760,7067,7068,2604,2605,-1217,-1216,-1215,-1214,-1213,-1212,-1211,-1210,-1209,-1208,-1207,-1206,-1205,-1204,-1203,-5764,-5763]],"properties":{"prefix":"7.2.1.4"}},{"type":"Polygon","arcs":[[-3251,7069,-3248,-3247,-3246,-1573,-1572,-1571,-1570,-1569,-1568,-1567,-1566,-1565,-3109,-3133,-3132,-3131,-3130,-3129,-3128,-3127,-3126,-3125,-4314,-4313,-3253,-3252]],"properties":{"prefix":"9.4.3.1"}},{"type":"Polygon","arcs":[[-5804,-5803,616,617,618,619,620,621,622,623,-4195,-4194,-4193,-4192,-4191,-4190,-4189,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,7086,7087,764,765,766,767,768,769]],"properties":{"prefix":"8.1.3.2"}},{"type":"Polygon","arcs":[[-1374,-1462,-1461,-1460,-6791]],"properties":{"prefix":"1.2.1.6"}},{"type":"Polygon","arcs":[[-5822,-5821,-5820,-5819,-5818,-5817,-5816,-5815,-5814,7088,-2992,-2991,-2990,7089,7090,-3044,4292,4293,4294,2396,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409,2410,2411,-5823]],"properties":{"prefix":"5.3.1.2"}},{"type":"Polygon","arcs":[[7091,7092,7093,7094,51,7095,7096,7097,2355,2356,2357,2358,7098,7099,7100]],"properties":{"prefix":"4.2.2.2"}},{"type":"Polygon","arcs":[[4297,4298,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,1270,1271,1272,1273,1274,-4483,-4482,-6799,-6813,-6812,-6811,-6810,-6809,-6808,-6807,-6806,-6805,-6804,-6803,-6802,-6801,-6800,-1251,-1250,-1249,-1248,-1247,-1246,1363,1364,7101]],"properties":{"prefix":"7.3.1.1"}},{"type":"Polygon","arcs":[[7102,7103,7104,-4280,-4279,-4278,-4277,-5852,-5851,-5850,-5849,-5848,-5847,-5846,-5845,-3042,-3041,-3040,-3039,-3038,-3037,-3036,-3035,-3034,-3033,-3032,-4291,-4290,-4289,-4288,-4287,-4286,-4285,-4284,7105]],"properties":{"prefix":"5.3.5.1"}},{"type":"Polygon","arcs":[[-4402,-4401,-4400,-4399,2824,2825,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,-6819,-6818,-6817,-6816,2837,2838,2839]],"properties":{"prefix":"2.6.3.2"}},{"type":"Polygon","arcs":[[7106,7107,7108,4350,-5891,-5890,-5889,-5888,-5887,-5886,-5885,-5884,-5883,-5882,7109]],"properties":{"prefix":"6.2.1.1"}},{"type":"Polygon","arcs":[[-2735,-2734,-2733,-2732,-2771,-6829,-6828,-6827]],"properties":{"prefix":"4.1.4.4"}},{"type":"Polygon","arcs":[[7110,-5912,-5877,-1478]],"properties":{"prefix":"9.3.1.1"}},{"type":"Polygon","arcs":[[-5903,-5902,-5901,-5900,-5899,-5898,-5897,-5896,-5895,7111,-6825,-6824,-6823,2225,2226,2227,2228,2229,2230,2231,2232,2233,2234,1037,1038,1039,1040,1041,-3154]],"properties":{"prefix":"4.1.4.2"}},{"type":"Polygon","arcs":[[-6457,-5905,-6456,-6455,1693,1694,1695,1696,1697,1698,1699,1700,1701,1702,-3999,-3998,-3997,1722,1723,1724,1725,1726,1727,1728,1729,-6460,-6459,-6458]],"properties":{"prefix":"2.1.2.4"}},{"type":"Polygon","arcs":[[-6464,-6463,-6462,-6832,-6831,-6830,-5294,-5293,-5292,-4512,-4511,-4510,-4509,-4508,-4507,-4506,-4505,-4504,-2277,-2276,-2275,-2274,-6468,-6467,-6466,-6465]],"properties":{"prefix":"1.8.3.4"}},{"type":"Polygon","arcs":[[2058,2059,2060,2061,2062,2063,2064,2065,2066,2067,2068,2069,2070,193,194,-3192,-5445,-5444,-5443,-5442,-5463,-5462,-5461,-5460,-5459,-5458,-5457,-5456,-5455,-5454,-5453,-5452,-6937,-6936,-6935,-6934]],"properties":{"prefix":"7.6.1.3"}},{"type":"Polygon","arcs":[[-5923,-5922,-5921,-5920,-6834,-6833,7112,-1715,-1714,2180,2181,2182,2183,2184,2185,2186,2187,-6848,-6847,-6851,-6850,-6849,4070,4071,4072,4073,4074,-1741,-1740,-1739,-5924]],"properties":{"prefix":"2.2.1.6"}},{"type":"Polygon","arcs":[[7113,7114,7115,-1563,-1562,-5193,-5192,-6473,-6472,3127,3128,3129,3130,3131,3132]],"properties":{"prefix":"9.4.4.1"}},{"type":"Polygon","arcs":[[482,483,484,485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,500,501,502,503,-2199,505,506,3812,3813,3814,3815,-4540,-4539,-4538,-4537,-4536,-4535,-4534]],"properties":{"prefix":"1.9.3.3"}},{"type":"Polygon","arcs":[[-3259,-6876,-6479,-6478,-6477,-6476,-6866,-6865,-6864,-6863,-6862,-3261,-3260]],"properties":{"prefix":"1.3.4.6"}},{"type":"Polygon","arcs":[[-5936,-5935,1968,1969,1970,1971,1972,-2484,-2483,-2482,-2481,-2480,-2479,-2478,-2477,-2476,-2475,-4150,-4149,-4148,-6495,-6494,-6493,-6492,-6491,-6490,-6489,-6488,-6487,-5939,-5938,-5937]],"properties":{"prefix":"7.2.2.6"}},{"type":"Polygon","arcs":[[-5944,-5943,-5942,7116,2259,2260,-1954,-1953,-1952,-1951,-1950,-1949,-1948,-6869,-6868,-6867,-6875,-6874,-6873,-6872,-6871,-6870,-1176,-5945]],"properties":{"prefix":"7.1.1.2"}},{"type":"Polygon","arcs":[[-2658,-2657,-6884,-6883,-6882,-2684,-2683,4216,4217,4218,4219,4220,4221,4222,4223,4224,4225,4226,4227,4228,4229,4230,-1673,-1672,-1671,-1670,-1669,-2655,-2654,-2653,-2652,-2651,-2650,-2670,-2669,-2668,-2667,-2666,-2665,-2664,-2663,-2662,-2661,-2660,-2659]],"properties":{"prefix":"2.6.6.3"}},{"type":"Polygon","arcs":[[1643,1644,1645,1646,1647,-4573,-4572,-4571,-6894,-6893,-6892,-6891,-6890,-6889,-6888,-6887,-6886,-6885]],"properties":{"prefix":"7.7.2.4"}},{"type":"Polygon","arcs":[[-4585,-4584,-4583,3714,3715,3716,3717,3718,-2191,-2190,-2189,-2188,-2187,-2186,-2185,-6897,-6906,-6905,-6904,3738,3739,3740,3741,3742,3743,3744]],"properties":{"prefix":"2.3.2.2"}},{"type":"Polygon","arcs":[[-1019,-1018,-1138,-5979,-5978,-5977,-5976,-5975,-5974,-5973,-5972,-5971,-6523,-6522,-6521,-6520,-6519,-6518,-5374,-6908,-6907,-5378,-1033,-1032,-1031,-1030,-1029,-1028,-1027,-1026,-1025,-1024,-1023,-1022,-1021,-1020]],"properties":{"prefix":"7.4.4.4"}},{"type":"Polygon","arcs":[[2630,-4645,-6545,-6544,-6543,-6542,-6541,-2341,-2340,-2339,-2338,-2337,-4601,-4600,-4602,2624,2625,2626,2627,2628,2629]],"properties":{"prefix":"1.7.2.6"}},{"type":"Polygon","arcs":[[2096,2097,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,2109,2110,56,57,58,59,-6531,-6530,-6529,-6528,-6539,-6538,-6537,-6536,-6535,-6534,-6533,-6532,-4605,-4604,-4603]],"properties":{"prefix":"4.4.3.2"}},{"type":"Polygon","arcs":[[-4632,-4631,-6912,-6911,-6910,718,719,-2050,-2049,-2048,-2047,-2046,-2045,-4635,-4634,-4633]],"properties":{"prefix":"8.2.1.6"}},{"type":"Polygon","arcs":[[2727,2728,2729,7117,7118,2726]],"properties":{"prefix":"9.1.1.2"}},{"type":"Polygon","arcs":[[2579,7119,7120,2565,2566,2567,2568,-6007,-6008,-5799,-5798,-5797,-5796,2575,2576,2577,2578]],"properties":{"prefix":"7.5.6.1"}},{"type":"Polygon","arcs":[[-4677,-4676,-4675,-4674,-4673,-4672,-4671,-4670,-4669,-4668,-4667,-4666,-6013,-6012,-6555,-6554,-6553,-6552,-6551,-6550,-6933,-6932,-6931,-6930,-6929,-6928,-569,-568,-567,-2327,-2326,-2325,-2324,-2323,-2322,-2321,-2320,-2319,-2318,-2317,-2316,-2315,-2314,-2313,-2312,-2311,4330,-4679,-4678]],"properties":{"prefix":"2.4.1.3"}},{"type":"Polygon","arcs":[[-6564,-6563,-6562,-6561,-6560,-6559,7121,334,335,336,3089,3090,3091,3092,3093,3094,3095,3096,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,-4703,-4702,-4701]],"properties":{"prefix":"9.1.7.3"}},{"type":"Polygon","arcs":[[-6058,-6057,-6056,-6055,-6054,-6053,-6052,3888,3889,-3172,-3171,-3170,-3169,-3168,-3167,3890]],"properties":{"prefix":"7.5.2.2"}},{"type":"Polygon","arcs":[[-6035,-6034,-6033,-6032,-6568,-6567,-6566,3537,3538,3539,3540,3541,-2223,-2222,-2221,-6036]],"properties":{"prefix":"4.3.2.4"}},{"type":"Polygon","arcs":[[7122,7123,7124,-6942,-6941,256,-4155,-4154,-4153,-4152,-4151,-4159,-4158,-4157,-4156,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,-6952,-6951,-6950,-6949,7125,7126,7127,7128,7129,7130,7131,7132,7133]],"properties":{"prefix":"8.1.5.5"}},{"type":"Polygon","arcs":[[-4713,-4712,-2290,-2289,-2288,-2287,-2286,-2285,-2284,-2283,-2282,-2281,-2280,-2279,-2296,-2295,-2294,-2293,-2292,-919,-918,-917,-916,-4721,-4720,-4719,-4718,-4717,-4716,-4715,-4714]],"properties":{"prefix":"7.4.8.5"}},{"type":"Polygon","arcs":[[-6943,642,643,644,645,646,647,648,649,249,250,251,252,253,254,-6940,-7125,-7124,-7123,-7134,-7133,-7132,-7131,-7130,-7129,-7128,-7127,-7126,-6948,-6947,-6946,-6945,-6944]],"properties":{"prefix":"8.1.5.3"}},{"type":"Polygon","arcs":[[-6595,-6594,-6593,-6592,-6591,-3068,-3067,-4711,-4710,-4709,-4708,-4723,-4722,-913,-912,-911,-910,-909,-908,-6597,-6596]],"properties":{"prefix":"7.4.8.3"}},{"type":"Polygon","arcs":[[543,544,-6103,7134,3369,3370,3371,3372,3373,-6957,-6956,-6955,-6954,-6953,-6958]],"properties":{"prefix":"1.3.3.4"}},{"type":"Polygon","arcs":[[-6607,-6606,-6605,-5525,-5524,-5523,-6615,-6614,-6613,-6612,-6611,-6610,-6609,-6608]],"properties":{"prefix":"1.9.2.5"}},{"type":"Polygon","arcs":[[3404,143,144,145,146,147,3405,3406,3407,3408,3409,3410,3411,-6618,-6617,-6616,-6087,-6086,-6085,-6084,-6083,-6100,-6099,-6098,-6097,7135,7136,7137,7138]],"properties":{"prefix":"6.3.3.1"}},{"type":"Polygon","arcs":[[-6959,-4797,888,889,890]],"properties":{"prefix":"9.8.3.2"}},{"type":"Polygon","arcs":[[-6144,-6143,-6142,-5546,-5545,-5544,-5543,-1697,-1696,-1695,-1694,-1693,-1692,-1691,-1690,-2247,-2246,-2245,-2244,-2243,-2242,-2241,-2240,-1893,-1892,-1891,-1890,-1889,-1888,-1887,-1886,-1885,-1884,2296,-6626,-6625,-4802,-6643,-6642,-6641,-6640,-6639,-6638,-6637,-6636,-6635,-6634,-6633,-6632,-6631,-6630,-6629,-6628,2315,2316,2317,-6147,-6146,-6145]],"properties":{"prefix":"2.3.3.4"}},{"type":"Polygon","arcs":[[-850,-849,-848,-847,-846,-845,-844,-843,-842,-841,-840,-6962,-6977,-6976,-6975,-6974,-6973,-6972,7139,7140,7141,-6449,-6448,-6447]],"properties":{"prefix":"4.1.2.2"}},{"type":"Polygon","arcs":[[-6980,7142,7143,7144,2929,2930,2931,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,-1049,-1048,-1047,-1046,-1045,-1044,-1043,-1042,-1041,-1040,-1039,-1038,-1037,-1036,-1035,2918,2919,2920,2921,2922,2923,2924,2925,2926,-6982,-6981]],"properties":{"prefix":"7.4.5.2"}},{"type":"Polygon","arcs":[[3993,-4844,-4843,-4842,-4841,-4840,-4839,-3934,-3933,-3932,3988,3989,3990,3991,3992]],"properties":{"prefix":"4.8.1.3"}},{"type":"Polygon","arcs":[[-6963,-837,-836,-3145,-3144,-3143,-3142,-3141,-3140,-3139,-3138,-3137,-3136,-3135,-6989,-6988,-6987,-6991,-6990,-882,-881,-880,-879,-878,-877,-876,-6453,-6452,-6451,-6450,-7142,-7141,-7140,-6971,-6970,-6969,-6968,-6967,-6966,-6965,-6964]],"properties":{"prefix":"4.1.2.4"}},{"type":"Polygon","arcs":[[-6178,3870,3871,3872,3873,3874,3875,3876,405,406,3877,3878,3879,3880,3881,-3809,-3808,-3807,-3806,-3805,-6182,-6181,-6180,-6179]],"properties":{"prefix":"2.4.4.2"}},{"type":"Polygon","arcs":[[-5599,-6996,-6995,-6997,2271,2272,2273,2274,-6170,-6169,-6168,-6167]],"properties":{"prefix":"1.4.2.2"}},{"type":"Polygon","arcs":[[-4862,-4861,-4860,-4859,-4858,3981,3982,3983,3984,3985,3986,-1507,-1506,-1505,-1504,-1503,-1502,-1501,-1500,-4874,-4873,-4872,-4871,-4870,-4869,-4868,-4867,-4866,-4865,-4864,-4863]],"properties":{"prefix":"9.3.3.2"}},{"type":"Polygon","arcs":[[-6651,-6650,-5617,-5616,3456,3457,3458]],"properties":{"prefix":"7.6.6.5"}},{"type":"Polygon","arcs":[[-3159,-3158,-4317,-4316,-4315,-2566,-2565,-2564,-3164,-3163,7145,7146]],"properties":{"prefix":"7.5.5.1"}},{"type":"Polygon","arcs":[[-6190,434,435,436,437,438,439,440,441,442,-2347,-2346,-2345,-2344,-2621,-2620,-2619,-2649,-2648,-2647,-2646,-2645,-2644,-2643,-6193,-6192,-6191]],"properties":{"prefix":"1.7.1.4"}},{"type":"Polygon","arcs":[[-4903,-4902,-4901,-4900,-4899,-4898,-4897,-4896,264,265,-7003,-7008,-6206,-6205,-6204,-6203,2021,2022,2023,2024,2025,4155,4156,4157,4158,7147,-4910,-4909,-4908,-4907,-4906,-4905,-4904]],"properties":{"prefix":"8.1.6.2"}},{"type":"Polygon","arcs":[[-7086,-7085,-7084,-7083,-7082,-7081,-7080,-7079,-7078,-7077,7148,7149,7150,755,756,757,758,759,760,761,762,763,-7088,-7087]],"properties":{"prefix":"8.1.3.3"}},{"type":"Polygon","arcs":[[-7006,-7005,-7013,-7012]],"properties":{"prefix":"8.1.6.4"}},{"type":"Polygon","arcs":[[2285,2286,2287,2288,2289,2290,-1310,-1309,-1308,-1307,-1306,-1305,-1304,-3883,-3897,-3896,-3895,-3894,-3893,-3892,-3891,-3166,-3165,-2582,-6226,-6225,-6224,-6223,2284]],"properties":{"prefix":"7.5.1.2"}},{"type":"Polygon","arcs":[[-6232,-6231,-6230,-1580,-7016,-7019,-7018,-7017,3255,3256,3257,-6758,-6757,-6756,-6755,-6688,-6687,-6243,-6242,-6241,-6240,-6239,-6238,-6237,-6236,-6235,-6234,-6233]],"properties":{"prefix":"9.4.2.4"}},{"type":"Polygon","arcs":[[3007,3008,3009,3010,3011,3012,3013,-7021,-7020]],"properties":{"prefix":"5.3.2.3"}},{"type":"Polygon","arcs":[[-6842,-6841,-6840,-6839,-6838,-1798,-6257,-6256,-6255,-6254,-6253,-6252,-6251,-6250,-6249,-6248,-6247,-6843]],"properties":{"prefix":"6.3.4.2"}},{"type":"Polygon","arcs":[[-7030,-7029,-7028,-7027,-7026,-7025,-5017,-5016,-662,-661,-660,-659,-658,-657,-656,-655,1519,1520,7151,-7022,-7032,-7031]],"properties":{"prefix":"9.1.2.2"}},{"type":"Polygon","arcs":[[-595,3629,7152,7153,3597,3598,3599,3600,-2438,-2437,-2436,-2435,-2434,-5031,-5030,-5029,-5028,-5032,3610,3611,3612,3613,3614,3615,3616,3617,3618,3619,3620,3621,3622,3623,3624,3625,3626,3627,3628,-600,-599,-598,-597,-596]],"properties":{"prefix":"3.4.1.1"}},{"type":"Polygon","arcs":[[-7150,-7149,-7076,-7075,-7074,-7073,-7072,-7071,-4188,-4187,-4210,-4209,-4208,743,744,745,746,747,748,749,750,751,752,753,754,-7151]],"properties":{"prefix":"8.1.3.4"}},{"type":"Polygon","arcs":[[1052,-6298,-6297,-6296,-6295,-6294,-6293,-6292,-6291,-6290,-6289,-6288,-6287,-6286,-6285,-822,-821,-820,-819,-818,-2739,-2738,-2737,3145,3146,3147,3148,3149,3150,3151,3152,3153,1042,1043,1044,1045,1046,1047,1048,1049,1050,1051]],"properties":{"prefix":"4.1.3.4"}},{"type":"Polygon","arcs":[[7154,-5038,-5037,-5036,-5035,-5034,-5033,-5045,-5044,383,384,-2916,-2915,-2914,-2913,-2912,-2911,-2844,-2843,-2842,-2841,-2840,-2839,7155]],"properties":{"prefix":"2.6.4.1"}},{"type":"Polygon","arcs":[[2897,2898,2899,2900,2901,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,388,7156,7157,2896]],"properties":{"prefix":"2.5.3.2"}},{"type":"Polygon","arcs":[[-7090,-3045,-7091]],"properties":{"prefix":"5.3.1.5"}},{"type":"Polygon","arcs":[[-514,7158,1659,-503,-502,-6329,-6328,-6334,1754,1755,1756,1757]],"properties":{"prefix":"2.1.1.1"}},{"type":"Polygon","arcs":[[-6770,-6769,-7060,-7059,-7058,-7057,-7056,-7055,-2085,-2084,-2083,-2082,1028,1029,1030,1031,1032,1033,1034,-5102,-5101]],"properties":{"prefix":"4.3.4.6"}},{"type":"Polygon","arcs":[[2466,2467,2468,2469,2470,-438,-437,-436,-435,-434,-433,-432,-431,-430,49,50,-7095,-7094,-7093,-7092,-7101,-7100,-7099,2359,2360,2361,2362,2363,2364,2365,2366,2367,2368,2369,2370,2371,2372,2373,2374,2375,-2212,-2211,-2210,7159,2465]],"properties":{"prefix":"4.2.2.1"}},{"type":"Polygon","arcs":[[-6753,-6217,2783]],"properties":{"prefix":"9.8.5.2"}},{"type":"Polygon","arcs":[[-7062,-7061,-6779,-6778,-6777,-6776,-6775,-3576,-3575,-3574,-3573,-3572,-3571,-3570,-3569,-3568,-3567,-3566,-3565,-3564,-3563,-3562,-3561,-5110,-5112,-5111,-3595,-3217,-3216,-3215,-3214,-3213,-3212,-7067,-7066,-7065,-7064,-7063]],"properties":{"prefix":"7.6.3.4"}},{"type":"Polygon","arcs":[[-7069,-7068,-5759,-5758,-5121,-5120,-5119,-5118,-5117,-5116,-5115,-5114,1944,1945,1946,1947,1948,2584,2585,2586,2587,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,2603]],"properties":{"prefix":"7.2.1.5"}},{"type":"Polygon","arcs":[[999,1000,1001,1002,1003,1004,1005,1006,1007,1008,1009,1010,1011,1012,1013,-5994,-5993,-5992,-5991,-5990,-5989]],"properties":{"prefix":"4.8.3.3"}},{"type":"Polygon","arcs":[[52,53,54,2350,2351,2352,2353,2354,-7098,-7097,-7096]],"properties":{"prefix":"4.2.2.3"}},{"type":"Polygon","arcs":[[-5131,-5130,-5129,-6367,1996,1997,1998,1999,4252,7160,7161,7162,-6360]],"properties":{"prefix":"1.2.1.1"}},{"type":"Polygon","arcs":[[-6410,-6409,-6408,-6407,-6406,-6405,-6404,-6403,-6402,-6401,3477,3478,3479,3480,3481,3482,3483,3484,571,572,573,574,575,576,577,578,579,580,581,582,419,420,421,422,423,1430,1431,1432,1433,1434,1435,-6416,-6415,-6414,-6413,-6412,-6411]],"properties":{"prefix":"1.3.1.4"}},{"type":"Polygon","arcs":[[7163,2610,2611,2612,2613,2614,2615,1598,1599,1600,2616,2617,7164]],"properties":{"prefix":"9.8.1.1"}},{"type":"Polygon","arcs":[[-3852,-3851,-3850,-5840,-5839,-5838,1187,1188,1189,1190,1191,-2145,-2144,-2143,-2142,-4348,-4347,-4346,7165]],"properties":{"prefix":"6.4.3.1"}},{"type":"Polygon","arcs":[[-5172,-5171,-5170,-5169,-5168,-5167,-3706,-3705,-4324,-4323,-3611,-3610,-3609,-3608,-3607,7166,-6368,-5813,-5812,-5811,-5810,-5809]],"properties":{"prefix":"3.4.2.6"}},{"type":"Polygon","arcs":[[7167,7168,-5996,-5995,1022,1023,1535,1536,1537,1538,3941,3942,7169]],"properties":{"prefix":"4.8.3.1"}},{"type":"Polygon","arcs":[[3047,3048,3049,3050,3051,3052,3053,3054,-6798,-6370,-6378,-6377,-6376,-6375,-6374,-6373,-893,7170,7171]],"properties":{"prefix":"7.4.7.1"}}]},"5":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[6603,-3678,-3677,-3676,-3675,-3674,-3673,450,7172,7173,7174,7175,7176,-5518,7177,-5504]],"properties":{"prefix":"1.9.2.3.1"}},{"type":"Polygon","arcs":[[3854,7178,7179]],"properties":{"prefix":"6.4.2.1.4"}},{"type":"Polygon","arcs":[[4693,4694,4695,4696,7180,7181,7182,7183,1500,1501,1502,-2972,-2971,-2970,3097,3098,3099,7184]],"properties":{"prefix":"9.1.7.2.1"}},{"type":"Polygon","arcs":[[7185,5030,-2433,-2432,-2431,-2430,-2429,-483,-482,-481,-480,-479,-478,-477,3601,3602,3603,3604,3605,3606,3607,3608]],"properties":{"prefix":"3.4.1.2.1"}},{"type":"Polygon","arcs":[[7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196]],"properties":{"prefix":"9.3.4.5.3"}},{"type":"Polygon","arcs":[[7197,2853,2854,2855,2856,2857,2858,2859,2860,2861,2862,2863,2864,2865]],"properties":{"prefix":"7.4.3.1.1"}},{"type":"Polygon","arcs":[[-6088,6615,6616,6617,3412,3413,3414,3415,3416,3417,-6111,-6110,-6109,-6128,-6127,-6126,6618,6619,6620,6621,6622,6623,-6091,7198,7199,-6089]],"properties":{"prefix":"6.3.3.3.1"}},{"type":"Polygon","arcs":[[-5179,7200,7201,7202,7203,7204,5928,7205]],"properties":{"prefix":"9.8.6.4.1"}},{"type":"Polygon","arcs":[[7206,-1712,-1711,-1710,7207,7208,7209]],"properties":{"prefix":"2.3.2.3.2"}},{"type":"Polygon","arcs":[[843,844,845,-3327,-5594,-5593,-5597,6991,6992,7210]],"properties":{"prefix":"3.4.4.1.1"}},{"type":"Polygon","arcs":[[7211,-2683,4216,4217,4218,4219,4220,4221,7212,7213,7214,7215,7216,-2662,-2661,7217]],"properties":{"prefix":"2.6.6.3.1"}},{"type":"Polygon","arcs":[[7218,7219,7220]],"properties":{"prefix":"8.1.5.1.2"}},{"type":"Polygon","arcs":[[4113,4114,4115,4116,4117,4118,4119,4120,5357,5358,5359,5360,5361,5362,5363,5364,5365,7221,7222]],"properties":{"prefix":"4.4.3.6.1"}},{"type":"Polygon","arcs":[[7223,5115,5116,5117,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,7224]],"properties":{"prefix":"7.2.1.2.1"}},{"type":"Polygon","arcs":[[7225,7226,7227,7228,7229,6529,6530,60,61,62,7230,7231,7232,-5360,-5359,-5358,4121,-1549,-1548,7233,7234]],"properties":{"prefix":"4.4.3.4.2"}},{"type":"Polygon","arcs":[[7235,2620,-2343,-2342,6540,6541,6542,7236,6544,-4644,7237]],"properties":{"prefix":"1.7.2.2.1"}},{"type":"Polygon","arcs":[[3410,3411,-6618,-6617,-6616,-6087,-6086,-6085,-6084,-6083,-6100,-6099,-6098,7238,7239,7240,7241,3408,3409]],"properties":{"prefix":"6.3.3.1.2"}},{"type":"Polygon","arcs":[[7242,7243,7244,7245,7246,3175,3176,3177,3178,3179,3180,3181,3182,3183,7247]],"properties":{"prefix":"7.5.4.2.3"}},{"type":"Polygon","arcs":[[-6894,7248,7249,-4571]],"properties":{"prefix":"7.7.2.4.5"}},{"type":"Polygon","arcs":[[-6858,-6857,-6856,-6855,-6854,-6853,7250,7251,7252,7253,-2516,-2515,-2514,-2513,-2512,-2511,-2510,7254]],"properties":{"prefix":"7.2.4.5.1"}},{"type":"Polygon","arcs":[[-4820,-4819,-4818,-4817,7255,7256,7257,7258,7259,7260,-4821]],"properties":{"prefix":"3.4.4.2.1"}},{"type":"Polygon","arcs":[[-5845,-3042,7261,7262]],"properties":{"prefix":"5.3.5.1.3"}},{"type":"Polygon","arcs":[[7263,7264,3380,3381,-6602,-6603,3394,3395,3396,3397,3398,3399,1418,7265,7266]],"properties":{"prefix":"1.3.3.5.4"}},{"type":"Polygon","arcs":[[-2688,-2687,-2686,-2685,6881,6882,7267,7268,7269,604,605,606,607,608,609,7270,7271,7272,6880,-2690,-2689]],"properties":{"prefix":"2.6.6.2.5"}},{"type":"Polygon","arcs":[[7273,7274,7275,7276,7277,2429,2430,2431,2432,2433,2434,7278,7279,7280,7281,7282,7283,7284,-590,-589,-588,-587,2441,2787]],"properties":{"prefix":"3.1.2.1.2"}},{"type":"Polygon","arcs":[[7285,3295,3296,3297,3298,3299,3300,7286,7287,7288,1092,7289,7290]],"properties":{"prefix":"5.3.6.3.8"}},{"type":"Polygon","arcs":[[3726,3727,3728,3729,3730,3731,3732,3733,3734,3735,3736,-6903,-6902,-6901,-6900,7291,7292]],"properties":{"prefix":"2.3.2.5.2"}},{"type":"Polygon","arcs":[[-1664,7293,7294,7295,7296,7297,7298,7299,7300,-1665]],"properties":{"prefix":"2.6.7.2.2"}},{"type":"Polygon","arcs":[[7301,7302,7303,7304,7305,7306,1676,1677,7307,7308,7309,7310,1739,1740,1741,1742,1743,1744,1745,1746,1747,-4090,7311]],"properties":{"prefix":"2.1.2.1.4"}},{"type":"Polygon","arcs":[[7312,7313,-1958,-1957,-1956,-1152,-1151,7314,7315,7316,7317,7318,7319,7320,7321,7322,7323]],"properties":{"prefix":"7.5.3.1.2"}},{"type":"Polygon","arcs":[[7324,7325,103,104,105,106,107,7326,7327,7328,5650,5651,5652,5653]],"properties":{"prefix":"5.3.2.1.4"}},{"type":"Polygon","arcs":[[7329,-5106,-5105,-5104,-1851,7330,7331,7332,7333,-2388,-2387,-2386,-2385,-2384,-2383,-1870]],"properties":{"prefix":"5.2.1.2.2"}},{"type":"Polygon","arcs":[[7334,7335,-4592,-4591,-4590,85,86,87,1843,7336,7337]],"properties":{"prefix":"5.1.3.5.1"}},{"type":"Polygon","arcs":[[7338,7339,4413,4414,7340,7341]],"properties":{"prefix":"4.4.4.1.2"}},{"type":"Polygon","arcs":[[7342,7343,7344,7345,-6409,-6408,-6407,7346,7347,7348,420,421]],"properties":{"prefix":"1.3.1.4.3"}},{"type":"Polygon","arcs":[[7349,7350,7351,7352,7353,7354,4426,4427,4428,4429,4430,4431,4432,4433,7355,7356]],"properties":{"prefix":"9.3.5.5.1"}},{"type":"Polygon","arcs":[[-6868,-6867,-6875,-6874,7357,7358,7359,7360]],"properties":{"prefix":"7.1.1.2.3"}},{"type":"Polygon","arcs":[[7361,7362,7363,7364,7365,5960,5961,5962,5963,5964,5965,7366,7367]],"properties":{"prefix":"7.7.2.1.4"}},{"type":"Polygon","arcs":[[-5753,-5752,3832,7368,7369]],"properties":{"prefix":"8.4.2.2.1"}},{"type":"Polygon","arcs":[[-1074,-1073,-1072,-1071,119,7370,-5244,-5243,5864,5865,5866,5867,5868,5869,7371,7372,7373,-1075]],"properties":{"prefix":"6.2.1.4.2"}},{"type":"Polygon","arcs":[[5154,5155,3069,7374,3077,7375]],"properties":{"prefix":"7.4.7.4.1"}},{"type":"Polygon","arcs":[[-2543,7376,7377,-2612,-2611,-2610,-2609,1558,1559,-5953,-5952,-5951,-5950,-2546,-2545,-2544]],"properties":{"prefix":"9.8.2.2.5"}},{"type":"Polygon","arcs":[[7378,7379,7380,7381,6034,6035,-2220,-2219,-2218,-2217,-2216,7382]],"properties":{"prefix":"4.3.2.3.3"}},{"type":"Polygon","arcs":[[7383,-1329,-1328,-1327,2715,2716,2717,2718,2719,2720,-1347,-1346,-1345,-1344,-1343,7384,7385]],"properties":{"prefix":"7.4.1.1.1"}},{"type":"Polygon","arcs":[[7386,7387,7388,7389,7390,7391,7392,7393,7394,7395,-3398,7396]],"properties":{"prefix":"1.3.4.2.3"}},{"type":"Polygon","arcs":[[7397,7398,-4551,7399]],"properties":{"prefix":"9.8.2.2.1"}},{"type":"Polygon","arcs":[[-1251,7400,4298,1258,1259,1260,1261,1262,1263,1264,1265,1266,1267,1268,1269,7401,7402,-6808,-6807,-6806,-6805,-6804,-6803,-6802,-6801,-6800]],"properties":{"prefix":"7.3.1.1.1"}},{"type":"Polygon","arcs":[[4610,4611,4612,4613,4614,4615,4616,4617,4618,7403,7404,7405,7406,7407,7408,7409,7410,7411,4632,4633,4634,-2044,-2043,-2042,-2041,-2040,4635,7412]],"properties":{"prefix":"8.2.1.5.1"}},{"type":"Polygon","arcs":[[3725,-7293,-7292,-6899,7413,7414,3724]],"properties":{"prefix":"2.3.2.5.1"}},{"type":"Polygon","arcs":[[7415,-2280,-2279,7416]],"properties":{"prefix":"7.4.8.5.6"}},{"type":"Polygon","arcs":[[7417,-974,-973,-972,-971,80,7418,7419,7420,7421,7422,7423,7424,4597,7425]],"properties":{"prefix":"5.1.3.2.1"}},{"type":"Polygon","arcs":[[625,626,627,7426,7427,7428,7429,7430,7431,7432,7433,7434,7435]],"properties":{"prefix":"8.1.4.1.3"}},{"type":"Polygon","arcs":[[-4612,-4611,-4639,7436]],"properties":{"prefix":"8.2.1.4.3"}},{"type":"Polygon","arcs":[[7437,7438,3501,-3420,-3419,-3418,-3417,-3416,-3415,-3414,-3413,-3412,-3411,-3410,7439,5828,5829,5830,5831,5832,5833,5834,5835]],"properties":{"prefix":"6.3.5.2.3"}},{"type":"Polygon","arcs":[[7440,2737,2738,-817,-816,-815,-814,-813,-812,-811,7441,7442,7443,7444,2760,2761,2762,2763,7445,7446]],"properties":{"prefix":"4.1.5.2.1"}},{"type":"Polygon","arcs":[[-5675,-5674,7447,7448,7449,6859,-5677,-5676]],"properties":{"prefix":"7.2.4.4.5"}},{"type":"Polygon","arcs":[[7450,7451,-1604,1813,3109,3110,3111,3112,3113,3114,7452,7453,7454,7455,7456]],"properties":{"prefix":"9.4.4.2.2"}},{"type":"Polygon","arcs":[[7457,7458,7459,7460,7461,-6438,7462,7463]],"properties":{"prefix":"7.5.3.1.5"}},{"type":"Polygon","arcs":[[7464,7465,-1742,-4075,-4074,-4073,-4072,-4071,-4070,7466,7467,7468]],"properties":{"prefix":"2.2.2.1.1"}},{"type":"Polygon","arcs":[[7469,-3597,7470,7471]],"properties":{"prefix":"7.6.3.5.3"}},{"type":"Polygon","arcs":[[7472,-5205,-5215,-4410,-5230,-5229,-5228,-5227,7473,7474,7475]],"properties":{"prefix":"4.4.4.3.2"}},{"type":"Polygon","arcs":[[7476,7477,848,7478,7479,3332,3333,3334,7480]],"properties":{"prefix":"3.4.5.1.2"}},{"type":"Polygon","arcs":[[-3141,-3140,-3139,-3138,-3137,-3136,7481,7482,7483,7484,-6966,-6965,-6964,7485,7486,7487]],"properties":{"prefix":"4.1.2.4.1"}},{"type":"Polygon","arcs":[[7488,7489,7490,-902,-901,-900,-3088,-3087,7491]],"properties":{"prefix":"7.4.8.1.1"}},{"type":"Polygon","arcs":[[7492,7493,-6920,-6919,-6918,-6917,-6916,-5389,-5398,-5397,-2024]],"properties":{"prefix":"8.2.1.2.6"}},{"type":"Polygon","arcs":[[7494,1566,1567,1568,-2524,-2523,-2522,-2521,-2520,-2519,-2556,-2555,-2554]],"properties":{"prefix":"9.8.2.4.1"}},{"type":"Polygon","arcs":[[7495,7496,2478,2479,2480,7497,7498,7499,7500,2511,2512,2513,2514,2515,2516,2517,6078]],"properties":{"prefix":"7.2.3.1.1"}},{"type":"Polygon","arcs":[[7501,7502,7503,1448,1449,1450,1451,1452,7504,7505]],"properties":{"prefix":"1.3.1.2.3"}},{"type":"Polygon","arcs":[[7506,7507,7508,-6121,-6120,-6119,7509,7510,7511,-1783,-1782,-1781,-1780,-1779,-1778,-3283,-3282,7512]],"properties":{"prefix":"6.3.3.5.3"}},{"type":"Polygon","arcs":[[6159,6160,6161,-4827,7513,7514,7515,7516,7517,7518]],"properties":{"prefix":"3.4.4.7.3"}},{"type":"Polygon","arcs":[[-5270,-5269,-5268,-5267,7519,7520,7521,7522,7523,5887,7524,7525,7526,7527,7528]],"properties":{"prefix":"6.2.1.2.2"}},{"type":"Polygon","arcs":[[7529,7530,7531,-1821]],"properties":{"prefix":"9.6.1.1.1"}},{"type":"Polygon","arcs":[[7532,7533,7534,1061,1062,1063,1064,1065,1066,7040,7535]],"properties":{"prefix":"4.1.3.1.2"}},{"type":"Polygon","arcs":[[7536,7537,7538,7539,7540,7541,7542,7543,-3201,-3200,-3199,-3198,6354,6355,6356,7544,7545]],"properties":{"prefix":"7.6.3.1.2"}},{"type":"Polygon","arcs":[[7546,7547,7548,1]],"properties":{"prefix":"1.1.1.1.1"}},{"type":"Polygon","arcs":[[7549,7550,7551,7552,7553,7554,7555,7556,5703,5704,7557]],"properties":{"prefix":"1.3.2.6.2"}},{"type":"Polygon","arcs":[[3970,3971,3972,3973,3974,3975,3976,3977,3978,3979,7558,4864,4865,4866,4867,7559,7560,7561,7562,7563]],"properties":{"prefix":"9.3.3.1.4"}},{"type":"Polygon","arcs":[[6470,-5927,-5926,-5925,-1735,7564,-5302]],"properties":{"prefix":"2.2.1.4.1"}},{"type":"Polygon","arcs":[[1322,1323,1324,-6500,1334,1335,7565,7566,7567,7568,7569]],"properties":{"prefix":"7.3.3.2.5"}},{"type":"Polygon","arcs":[[7570,7571,3057,3058,3059,3060,3061,3062,3063,3064,-1321,-1320,7572,7573,-5157,3079,3080,3081,7574]],"properties":{"prefix":"7.4.7.3.2"}},{"type":"Polygon","arcs":[[7575,3575,3576,7576,7577,7578,-4500,-4499,-4498,-4497,-4496,-939,-938,7579,7580]],"properties":{"prefix":"7.6.4.1.2"}},{"type":"Polygon","arcs":[[677,7581,5587,-2255,-2254,-2253,-2252,-2251,-2250,-2249,-2248,284,285,-5514,-5513,-5512,-5515,-1927]],"properties":{"prefix":"8.3.1.1.1"}},{"type":"Polygon","arcs":[[7582,7583,7584,7585,-3191,-3190,-3189,-3188,-3187,-3186,7586,7587,7588,7589]],"properties":{"prefix":"7.5.3.6.2"}},{"type":"Polygon","arcs":[[7590,7591,7592,7593,7594]],"properties":{"prefix":"9.4.2.3.3"}},{"type":"Polygon","arcs":[[-6711,-6710,-6709,-1000,-999,-998,-997,-996,7595,7596,7597,3778,3779,3780,3781,7598]],"properties":{"prefix":"5.1.1.4.2"}},{"type":"Polygon","arcs":[[7599,-3247,-3246,-1573,-1572,-1571,-1570,-1569,-1568,-1567,-1566,-1565,-3109,-3133,-3132,-3131,-3130,-3129,-3128,-3127,7600]],"properties":{"prefix":"9.4.3.1.2"}},{"type":"Polygon","arcs":[[1534,997,998,5988,5989,5990,7601,7602,7603,7604,7605]],"properties":{"prefix":"4.8.3.2.4"}},{"type":"Polygon","arcs":[[1393,1394,1395,1396,1397,6474,6475,6476,6477,7606]],"properties":{"prefix":"1.3.4.4.2"}},{"type":"Polygon","arcs":[[7607,-7175,-7174,-7173,451,452,453,7608,7609,7610,6613,6614,-5522,-5521]],"properties":{"prefix":"1.9.2.3.3"}},{"type":"Polygon","arcs":[[2498,7611,7612,-1296,-1295,-1294,-1293,-1292,-1291,-1290,-1289,-1288,-1287,-1286,-1285,-1284,2484,2485,2486,7613,2495,2496,2497]],"properties":{"prefix":"7.2.3.2.3"}},{"type":"Polygon","arcs":[[7614,7615,7616,7617,7618,-7249,-6893,-6892,-6891,-6890,-6889,7619,7620]],"properties":{"prefix":"7.7.2.4.3"}},{"type":"Polygon","arcs":[[7621,-3964,-3963,-3962,-3961,4029,4030,7622,7623,7624,7625]],"properties":{"prefix":"9.3.1.6.4"}},{"type":"Polygon","arcs":[[7626,-3557,-3556,-3555,-7470,-7472,7627]],"properties":{"prefix":"7.6.3.5.2"}},{"type":"Polygon","arcs":[[7628,7629,7630,6854,6855,6856,6857,6858,-7450,-7449,-7448,-5673,-5672,-5671,-5670,-5669,-5668,-5667,-5666,-4981,-4980,-4979,-4978,-4977,7631]],"properties":{"prefix":"7.2.4.4.3"}},{"type":"Polygon","arcs":[[7632,7633,7634,7635,177,178,7636,7637,7638,7639,7640,7641,7642]],"properties":{"prefix":"6.4.3.3.3"}},{"type":"Polygon","arcs":[[7643,7644,7645,-7351,-7350,7646,4423,4424,3926,3927,3928,950,951,952,953,954,955,956,957,958,959,7647]],"properties":{"prefix":"9.3.5.5.3"}},{"type":"Polygon","arcs":[[6914,-5435,-5434,-4617,-4616,-4615,-4614,-5396,-5395,-5394,-5393,-5392,-5391,-5390,6915,6916,7648,7649,7650,7651,7652]],"properties":{"prefix":"8.2.1.1.1"}},{"type":"Polygon","arcs":[[1009,1010,1011,1012,7653,7654]],"properties":{"prefix":"4.8.3.3.2"}},{"type":"Polygon","arcs":[[-2916,7655,7656,7657,7658,7659,-5045,-5044,383,384]],"properties":{"prefix":"2.6.4.1.4"}},{"type":"Polygon","arcs":[[7660,-5821,-5820,-5819,7661,7662,7663,7664,2397,2398,2399,2400,2401,2402,2403,2404,2405,2406,2407,2408,2409]],"properties":{"prefix":"5.3.1.2.1"}},{"type":"Polygon","arcs":[[7665,7666,7667,6134,6135,6136,6137,6138,-3769,-3859,-3858,-3863,-3862,-3861,-3860,1873,1874,1875,1876,1877,1878,1879,1880,1881,1882,1105,1106,7668,7669]],"properties":{"prefix":"5.1.2.4.4"}},{"type":"Polygon","arcs":[[7670,7671,7672,1775,1776,1777,7673,7674]],"properties":{"prefix":"6.2.1.6.4"}},{"type":"Polygon","arcs":[[7675,5056,7676,7677,7678,-1095,-1094,-1093,-1092,-1091,-1090,-1089,-1088,-1087,7679,7680,7681,7682]],"properties":{"prefix":"6.1.1.1.3"}},{"type":"Polygon","arcs":[[-3243,-3242,-3241,7683,7684,7685,7686,7687,7688,7689,7690,7691,7692,7693,946,947,1832,1833,1834,1835,1836,1837,7694,7695]],"properties":{"prefix":"9.4.1.1.1"}},{"type":"Polygon","arcs":[[3654,3655,3656,3657,-634,-633,3658,7696,3661,7697]],"properties":{"prefix":"7.8.2.1.4"}},{"type":"Polygon","arcs":[[3675,3676,3677,3678,3679,3680,-6679,-6678,7698,7699,7700,7701,7702]],"properties":{"prefix":"1.9.1.3.2"}},{"type":"Polygon","arcs":[[7703,-4513,5291,5292,5293,5294,5295,5296,-2329,-2328,-2350,-2349,-2348,534,535,536,537,538,539,540,-1430,-1429]],"properties":{"prefix":"1.8.3.6.1"}},{"type":"Polygon","arcs":[[-3091,-3090,337,1462,1463,1464,1465,1466,7704,7705,7706,7707,7708,7709,7710,1482,1483,1484,7711,-3092]],"properties":{"prefix":"9.1.8.1.1"}},{"type":"Polygon","arcs":[[7712,7713,-2417,-2416,-2415,-2414,-2413,-2412,7714,7715,7716,7717]],"properties":{"prefix":"5.2.1.3.2"}},{"type":"Polygon","arcs":[[7718,-4999,-4998,-4997,-4996,-4995,5681,5682,5683,5684,5685,5686,-673,-672,-671,-670,-669,-5015,-5014,-5013,-5012,-5011,-5010,-5009,7719]],"properties":{"prefix":"9.1.2.4.2"}},{"type":"Polygon","arcs":[[7720,7102,7103,7721,-3034,-3033,-3032,-4291,-4290,-4289,-4288,7722]],"properties":{"prefix":"5.3.5.1.1"}},{"type":"Polygon","arcs":[[7723,7724,7725,7726,7727,7728,7729,310,7730,7731,7732,665,666,667,668,669,670,5477,5478,5479,5480,5481,7733]],"properties":{"prefix":"8.5.2.2.4"}},{"type":"Polygon","arcs":[[4273,4274,4275,4276,4277,7734,7735,7736,-5502,-5501,-5500,-6070,-6069,7737,4272]],"properties":{"prefix":"5.3.3.4.1"}},{"type":"Polygon","arcs":[[5820,5821,5822,2412,2413,7738,7739,7740,5819]],"properties":{"prefix":"5.3.1.1.2"}},{"type":"Polygon","arcs":[[-4844,7741,-4839,-3934,7742,7743,3992,3993]],"properties":{"prefix":"4.8.1.3.2"}},{"type":"Polygon","arcs":[[7744,7745,-5444,-5443,-5442,-5463,-5462,-5461,-5460,-5459,-5458,7746,7747,7748,7749,7750,7751]],"properties":{"prefix":"7.6.1.3.4"}},{"type":"Polygon","arcs":[[4035,7752,7753,7754,7755,7756,7757,7758,7759,7760,4018,4019,4020,4021,4022,4023,4024,4025,4026,4027,4028,-3968,-3967,-3966,-3965,-7622,-7626,-7625,-7624,-7623,4031,4032,4033,4034]],"properties":{"prefix":"9.3.1.6.3"}},{"type":"Polygon","arcs":[[-3500,-3499,-3498,-3497,-3496,-3495,-3494,-3493,-3492,7761,7762,6251,6252,6253,7763,7764,7765,7766]],"properties":{"prefix":"6.3.4.1.2"}},{"type":"Polygon","arcs":[[20,21,22,7767,7768,-6483,-6482,-6481,-6480,6875,-3268,-3267,-3266,-3265,1408,1409,-6506,-6505,7769,7770,19]],"properties":{"prefix":"1.3.4.3.1"}},{"type":"Polygon","arcs":[[7771,4462,1736,7772,7773,7774]],"properties":{"prefix":"2.1.2.1.6"}},{"type":"Polygon","arcs":[[-1001,6708,6709,6710,6711,-6263,-6262,7775]],"properties":{"prefix":"5.1.1.2.3"}},{"type":"Polygon","arcs":[[7776,3238,3239,3240,3241,-6686,-6691,-6690,-6689,6754,7777]],"properties":{"prefix":"9.4.2.1.4"}},{"type":"Polygon","arcs":[[485,486,487,488,489,490,491,492,493,494,495,496,497,498,499,7778,7779,7780,7781,7782,-4537,7783]],"properties":{"prefix":"1.9.3.3.2"}},{"type":"Polygon","arcs":[[-3872,7784,7785,7786,7787]],"properties":{"prefix":"2.4.5.1.1"}},{"type":"Polygon","arcs":[[7788,7789,7790,-6410,-7346,-7345,-7344,7791,7792,7793,7794,7795,423,1430,1431,1432,1433,1434,1435,-6416,-6415,7796]],"properties":{"prefix":"1.3.1.4.1"}},{"type":"Polygon","arcs":[[4383,4384,4385,4386,4387,4388,4389,4390,4391,-2450,-2449,-2448,-2447,-2446,-2445,-2444,-2166,-2165,-2164,-2163,-2162,4181,4182,4183,4184,4185,-2634,-2633,7797]],"properties":{"prefix":"1.7.3.3.2"}},{"type":"Polygon","arcs":[[7798,-2805,-2804,7799]],"properties":{"prefix":"2.6.2.4.2"}},{"type":"Polygon","arcs":[[-3589,-3588,-3587,5386,7800,7801,7802,-3463,-3462,-3461]],"properties":{"prefix":"7.6.5.1.1"}},{"type":"Polygon","arcs":[[7803,7804,7805,6294,6295,6296,6297,1053,1054,1055,1056,1057,1058,6298,6299,6300,6301,6302,-5717,-5716,-5715,-5714,7806,7807,7808,7809,7810]],"properties":{"prefix":"4.1.3.3.4"}},{"type":"Polygon","arcs":[[6025,6026,6027,7811,7812,7813,7814,-2375,-2374,-2373,-2372,-2371,-2370,6036,6037,6038,6039,6040,6041,6042,6043,7815]],"properties":{"prefix":"4.3.2.3.1"}},{"type":"Polygon","arcs":[[7816,-7388,7817,7818,7819,-3384,16,17,6503,6504,6505,1410,1411]],"properties":{"prefix":"1.3.4.2.5"}},{"type":"Polygon","arcs":[[-6811,7820,7821,1273,1274,-4483,-4482,-6799,-6813,-6812]],"properties":{"prefix":"7.3.1.1.3"}},{"type":"Polygon","arcs":[[7822,4002,4003,2002,4004,4005,4006,4007,4008,4009,796,797,798,799,800]],"properties":{"prefix":"8.1.2.2.1"}},{"type":"Polygon","arcs":[[7823,7824,7825,7826,7827,7828,1867,1868,1869,1870,1871,1872,3859,3860,3861,3862,4593,4594,4595,4596,-7425,-7424,7829,7830]],"properties":{"prefix":"5.1.3.2.3"}},{"type":"Polygon","arcs":[[7831,-7428,-7427,628,629,630,631,632,633,634,5063,5064,5065,5066,5067]],"properties":{"prefix":"8.1.4.1.5"}},{"type":"Polygon","arcs":[[-1463,338,7832,7833,7834,-7592,7835,6237,6238,7836,7837,7838,7839,7840]],"properties":{"prefix":"9.4.2.3.2"}},{"type":"Polygon","arcs":[[7841,4366,4367,-3657,-3656,-3655,-3654,-3653,-3652,-3651,7842,7843,7844,7845,4374,4375,4376,4377,4378]],"properties":{"prefix":"7.8.1.7.1"}},{"type":"Polygon","arcs":[[6600,-3121,-3120,-3119,-3118,-3117,-3116,-3115,-3114,-3113,-3112,-4759,-4758,-4757,-4775,-4774,-4773,-5491,4306,4307,4308,4309,4310,4311,-3233,-3232,-3231,7846,7847]],"properties":{"prefix":"9.4.5.1.3"}},{"type":"Polygon","arcs":[[7848,7849,330,7850,7851,7852,7853,7854,7855]],"properties":{"prefix":"9.1.6.1.3"}},{"type":"Polygon","arcs":[[7856,3116,3117,3118,3119,5181,5182,5183,5184,5185]],"properties":{"prefix":"9.4.4.2.4"}},{"type":"Polygon","arcs":[[7857,-5762,-5761,-5760,7067,7858,7859,7860,7861,7862,7863,7864,-1212,-1211,-1210,-1209,-1208,-1207,-1206,-1205]],"properties":{"prefix":"7.2.1.4.2"}},{"type":"Polygon","arcs":[[7055,7056,7057,7058,7059,-6768,-6774,7865,7866]],"properties":{"prefix":"4.3.4.1.1"}},{"type":"Polygon","arcs":[[7867,3541,-2223,7868,-6033]],"properties":{"prefix":"4.3.2.4.1"}},{"type":"Polygon","arcs":[[7869,7870,-3639,-3638,-3637,-3636,-3635,-3634,-3633,7871,7872,7873]],"properties":{"prefix":"6.3.6.1.1"}},{"type":"Polygon","arcs":[[-6921,-7494,-7493,-2023,7874,7875,-6922]],"properties":{"prefix":"8.2.1.2.3"}},{"type":"Polygon","arcs":[[7876,7877,7878,7879,855,856,857,3327,3328,3329,3330,3331,-7480,7880]],"properties":{"prefix":"3.4.5.1.4"}},{"type":"Polygon","arcs":[[2190,2191,2192,2193,4048,4049,4050,4051,4052,4053,4054,4055,4056,4057,4058,4059,4060,4061,4062,4063,4064,4065,4066,7881,7882,7883,7884,2189]],"properties":{"prefix":"2.2.1.7.3"}},{"type":"Polygon","arcs":[[-7650,-7649,6917,6918,6919,6920,7885,7886,7887,6924,7888,-7651]],"properties":{"prefix":"8.2.1.1.2"}},{"type":"Polygon","arcs":[[7889,7890,7891,7892,6020,6021,6022,36,7893,7894,7895,7896,2156,2157,2158,2159,2160,2161]],"properties":{"prefix":"1.5.1.2.2"}},{"type":"Polygon","arcs":[[5209,976,977,978,979,980,981,982,5210,5211,5212,5213,2122,7897,7898,7899]],"properties":{"prefix":"4.4.4.4.5"}},{"type":"Polygon","arcs":[[-1372,-2136,7900,7901,-1524]],"properties":{"prefix":"4.6.1.2.2"}},{"type":"Polygon","arcs":[[1440,7902,7903,7904,7905,-6398,-6397,-6396,-6395,-6394,-6393,-6392,1438,1439]],"properties":{"prefix":"1.3.1.2.5"}},{"type":"Polygon","arcs":[[7906,7907,7908,-6122,-7509,-7508,-7507,-7513,-3281,-3280,-3279,-6094,-6093,-6092,-6624,-6623,-6622,-6621,7909]],"properties":{"prefix":"6.3.3.5.1"}},{"type":"Polygon","arcs":[[7910,6153,6154,6155,6156,7911,7912,7913,7914,7915,-612,-611,-610,-609,-608,-607,-606,-605,-604,-603,-602,-601,-3629]],"properties":{"prefix":"3.4.4.7.1"}},{"type":"Polygon","arcs":[[5881,7916,7917,7918,7919,1237,1238,1239,1240,5880]],"properties":{"prefix":"6.2.1.2.4"}},{"type":"Polygon","arcs":[[6861,6862,7920,-3263,-3262]],"properties":{"prefix":"1.3.4.5.2"}},{"type":"Polygon","arcs":[[-4094,-4093,-4092,-4109,7921,7922,7923]],"properties":{"prefix":"1.1.1.1.3"}},{"type":"Polygon","arcs":[[7924,6745,6746,2959,2960,324,325,-6312,-6327,-6326,-6325,-6324,-6323,-6322,6747]],"properties":{"prefix":"9.1.5.2.1"}},{"type":"Polygon","arcs":[[-625,-624,-623,-622,-621,-620,-619,7925,7926,7927,7928,7929,7930,-626]],"properties":{"prefix":"7.8.4.1.1"}},{"type":"Polygon","arcs":[[6827,7931,7932,-3146,-2736,6826]],"properties":{"prefix":"4.1.4.3.2"}},{"type":"Polygon","arcs":[[7933,7934,7935,3018,3019,3020,7936,7937,7938,7939]],"properties":{"prefix":"5.3.2.2.4"}},{"type":"Polygon","arcs":[[7940,7941,2066,2067,2068,2069,2070,193,7942,-7750,-7749,-7748,-7747,-5457,-5456,-5455,7943,7944]],"properties":{"prefix":"7.6.1.3.2"}},{"type":"Polygon","arcs":[[7945,7946,7947,6230,6231,6232,6233,6234,7948,7949,7950,7951]],"properties":{"prefix":"9.4.2.3.6"}},{"type":"Polygon","arcs":[[2467,2468,2469,2470,-438,-437,7952,7953,7954,7955,2364,2365,2366,2367,7956,7957]],"properties":{"prefix":"4.2.2.1.4"}},{"type":"Polygon","arcs":[[7958,7959,5164,5165,-3687,-3686,-3685,5166,7960,7961,7962,7963,5158]],"properties":{"prefix":"3.4.2.5.1"}},{"type":"Polygon","arcs":[[7964,5262,7965]],"properties":{"prefix":"9.3.1.5.1"}},{"type":"Polygon","arcs":[[7966,-6692,4138,4139,4140,4141,4142,-2599,-2598,-2597,-2596,4143,-6699,-6698,-6697,-6696,7967]],"properties":{"prefix":"7.2.4.7.1"}},{"type":"Polygon","arcs":[[7968,7969,7970,3873]],"properties":{"prefix":"2.4.4.2.1"}},{"type":"Polygon","arcs":[[7971,7972,7973,-6579,-6578,7974,7975,7976,7977,7978,6949,6950,6951,2036,2037,2038,2039,2040,2041,2042,2043,2044,2045,7979]],"properties":{"prefix":"8.1.5.2.2"}},{"type":"Polygon","arcs":[[3936,3937,7980,7981,7982,7983,7984,7985,7986]],"properties":{"prefix":"4.8.3.2.2"}},{"type":"Polygon","arcs":[[7987,-3305,-3304,-3303,-3302,-3301,7988,7989,7990,-5496,-5495,4284,4285,7991,7992,7993]],"properties":{"prefix":"5.3.3.2.3"}},{"type":"Polygon","arcs":[[-617,-616,-615,-614,7994,-5046]],"properties":{"prefix":"7.8.4.2.1"}},{"type":"Polygon","arcs":[[5759,5760,5761,5762,5763,-1202,-1201,2606,5764,5765,5766,-5125,-5124,7995,7996,5758]],"properties":{"prefix":"7.2.1.3.1"}},{"type":"Polygon","arcs":[[7997,7998,7999,-7059,-7058,-7057,8000,8001,8002,8003,8004,1030,1031]],"properties":{"prefix":"4.3.4.6.2"}},{"type":"Polygon","arcs":[[-2744,-2743,-2742,-4848,2206,2207,2208,2209,2210,2211,2212,8005,8006,8007,-2746,-2745]],"properties":{"prefix":"4.1.6.3.2"}},{"type":"Polygon","arcs":[[8008,8009,273,274,2005,2006,2007,2008,2009,8010,8011,8012,8013,8014,-6215,8015,8016,8017]],"properties":{"prefix":"8.1.6.6.2"}},{"type":"Polygon","arcs":[[8018,8019,8020,7036,8021,8022,8023]],"properties":{"prefix":"9.3.6.1.1"}},{"type":"Polygon","arcs":[[8024,-7629]],"properties":{"prefix":"7.2.4.4.1"}},{"type":"Polygon","arcs":[[-675,8025,-5684,-5683,-5682,-4994,-4993,-4992,-4991,-4990,-4989,-2893,8026,8027,8028,8029,8030,-685,-684,-683,-682,-681,-680,-679,-678,-677,-676]],"properties":{"prefix":"9.1.2.5.2"}},{"type":"Polygon","arcs":[[-4242,-4241,-4240,8031,8032,8033,8034]],"properties":{"prefix":"7.4.6.4.1"}},{"type":"Polygon","arcs":[[8035,5971,5972,5973,5974,5975,5976,8036,8037,8038,8039,8040,8041,5981,5982,5983,5984,5985]],"properties":{"prefix":"7.4.4.3.1"}},{"type":"Polygon","arcs":[[-2912,8042,8043,-7657,-7656,-2915,-2914,-2913]],"properties":{"prefix":"2.6.4.1.2"}},{"type":"Polygon","arcs":[[8044,2249,2250,2251,2252,2253,-4162,-4161,-4160,-4178,-4177,-4176,-4175,-4174,-4173,-5917,-5916,-5915,8045,8046]],"properties":{"prefix":"8.2.2.3.3"}},{"type":"Polygon","arcs":[[8047,8048,-1626,-1625,-1624,-3455,-3454,4317,4318,4319,4320,4321,-3585,-3584,-3583,-3582,6339,6340,6341,6342,6343,6344,6345,6346,6347,6348,6349,8049,8050,8051]],"properties":{"prefix":"7.6.3.1.6"}},{"type":"Polygon","arcs":[[-3716,-3715,-3714,-3713,-3712,-3711,-3710,6419,6420,6421,6422,6423,6424,6425,6426,6427,6428,6429,6430,6431,6432,4333,4334,6433,6434,8052,8053]],"properties":{"prefix":"2.3.1.1.1"}},{"type":"Polygon","arcs":[[8054,8055,8056,8057,8058,8059,1504,1505,1506,1507,1508,6312,6313,6314,6315,6316,6317,6318,6319,6320,6321,6322,6323,6324,6325]],"properties":{"prefix":"9.1.5.3.1"}},{"type":"Polygon","arcs":[[6106,6107,462,463,464,465,466,467,468,469,470,471,472,473,474,-3812,-3819,-3818,-3817,-3816,-3815,-3814,-3813,507,508,8060,8061,8062]],"properties":{"prefix":"1.9.2.8.3"}},{"type":"Polygon","arcs":[[6445,-854,-853,-852,-851,6446,6447,6448,6449,6450,6451,6452,-875,-874,-873,-872,-871,-870,-869,8063]],"properties":{"prefix":"4.1.2.1.1"}},{"type":"Polygon","arcs":[[8064,8065,8066,8067,1129,8068,8069,-1007]],"properties":{"prefix":"5.1.1.1.1"}},{"type":"Polygon","arcs":[[-2771,-6829,-6828,8070,-2732]],"properties":{"prefix":"4.1.4.4.1"}},{"type":"Polygon","arcs":[[8071,8072,8073,8074,8075,4539,3816,3817,3818,4540,4541,8076,8077]],"properties":{"prefix":"1.9.3.2.2"}},{"type":"Polygon","arcs":[[-3698,8078,8079,8080,-5581,-5580,-5579,-5578,-5577,-5576,-5575,-5574,-4847,-3700,-3699]],"properties":{"prefix":"3.4.4.2.5"}},{"type":"Polygon","arcs":[[-5978,-5977,-5976,-5975,-5974,8081,8082,8083,8084,8085,8086,-1021,-1020,8087]],"properties":{"prefix":"7.4.4.4.1"}},{"type":"Polygon","arcs":[[8088,8089,8090,-2879,-2878,-2949,-2948,-2947,-2946,-2945,-2944,1510,1511,1512,1513,1514,-2890,8091,8092,8093]],"properties":{"prefix":"9.1.4.1.2"}},{"type":"Polygon","arcs":[[4278,4279,4280,-5494,-5493,-5492,-7737,-7736,-7735]],"properties":{"prefix":"5.3.3.4.3"}},{"type":"Polygon","arcs":[[8094,-4393,-2630,-2629,8095]],"properties":{"prefix":"1.7.3.2.2"}},{"type":"Polygon","arcs":[[-3933,-3932,3988,3989,3990,3991,-7744,-7743]],"properties":{"prefix":"4.8.1.3.4"}},{"type":"Polygon","arcs":[[5809,8096,-3603,-3602,-476,-475,-5144,-5143,-5173,5808]],"properties":{"prefix":"3.4.2.2.2"}},{"type":"Polygon","arcs":[[8097,1824,1825,4759,4760,4761,4762,4763,4764,4765,8098,8099,8100,8101,8102,8103,8104]],"properties":{"prefix":"9.4.5.2.2"}},{"type":"Polygon","arcs":[[8105,2098,2099,2100,2101,2102,2103,2104,2105,2106,2107,2108,8106,-6538,-6537,8107,8108,8109]],"properties":{"prefix":"4.4.3.2.2"}},{"type":"Polygon","arcs":[[8110,8111,8112,-5485,-5484,-5483,-5482,8113,8114,8115,8116]],"properties":{"prefix":"8.5.2.1.4"}},{"type":"Polygon","arcs":[[8117,139,140,141,142,-3405,-3404,8118,8119,8120,8121,8122,8123]],"properties":{"prefix":"6.3.2.2.2"}},{"type":"Polygon","arcs":[[-5246,-5859,8124,8125,8126]],"properties":{"prefix":"9.3.5.3.5"}},{"type":"Polygon","arcs":[[8127,8128,-2097,-2096,-2095,3530,3531,3532,3533,3534,3535,3536,6565,8129,8130,-6048,-6047,8131,8132]],"properties":{"prefix":"4.3.2.2.3"}},{"type":"Polygon","arcs":[[23,24,1391,-6474,-6486,-6485,-6484,-7769,-7768]],"properties":{"prefix":"1.3.4.3.3"}},{"type":"Polygon","arcs":[[8133,-1461]],"properties":{"prefix":"1.2.1.6.2"}},{"type":"Polygon","arcs":[[6833,-5919,-5918,-6471,-5301,-5300,-5299,-5298,-1727,-1726,6834,6835,8134]],"properties":{"prefix":"2.2.1.1.1"}},{"type":"Polygon","arcs":[[2453,2454,8135,8136,8137,8138,8139,8140,8141]],"properties":{"prefix":"1.8.3.1.3"}},{"type":"Polygon","arcs":[[-3977,-3976,-3975,8142,8143,-713,-712,-711,-710,8144,8145]],"properties":{"prefix":"9.3.4.1.2"}},{"type":"Polygon","arcs":[[90,91,8146,8147,8148,8149,-2402,-2401,8150,8151]],"properties":{"prefix":"5.2.1.2.6"}},{"type":"Polygon","arcs":[[8152,8153,8154,-7785,-3871,-3870,-3869,-3868,8155,8156,8157,400,401,402,8158,8159,-7787]],"properties":{"prefix":"2.4.5.1.3"}},{"type":"Polygon","arcs":[[8160,8161,8162,8163,8164,4490,4491,4492,4493,4494,3582,3583,3584,3585,3586,3587,3588,-3460,-3459,-3458,-3457,-3456,-957,-956,-955,8165]],"properties":{"prefix":"7.6.4.2.4"}},{"type":"Polygon","arcs":[[8166,5940,5941,5942,5943,8167,8168,8169,-1173,-1172,-1171,-1170,-1169,-1168,8170,8171]],"properties":{"prefix":"7.1.1.1.2"}},{"type":"Polygon","arcs":[[4517,4518,4519,4520,4521,4522,4523,-790,-789,-788,-787,-786,-785,-4450,-4449,-4448,-4447,-4446,-4445,-4444,-4443,4524,4525,8172,8173]],"properties":{"prefix":"7.8.1.4.1"}},{"type":"Polygon","arcs":[[8174,3338,1279,1280,1281,1282,1283,1284,8175,8176,8177,5740]],"properties":{"prefix":"7.3.2.1.1"}},{"type":"Polygon","arcs":[[-4026,-4025,-4024,4648,4649,4650,4651,8178,8179]],"properties":{"prefix":"9.3.4.1.6"}},{"type":"Polygon","arcs":[[8180,8181,-3851,-3850,-5840,-5839]],"properties":{"prefix":"6.4.3.1.3"}},{"type":"Polygon","arcs":[[-5120,-5119,-5118,-5117,-5116,-5115,8182,8183,2588,2589,2590,2591,2592,2593,2594,2595,2596,2597,2598,2599,2600,2601,2602,8184,8185]],"properties":{"prefix":"7.2.1.5.2"}},{"type":"Polygon","arcs":[[8186,-6594,-6593,8187,8188,8189,-4722,-913,-912,8190]],"properties":{"prefix":"7.4.8.3.2"}},{"type":"Polygon","arcs":[[5661,5662,5663,5664,-2490,-2489,-2488,-2487,-2486,8191,8192,8193,8194,5676,5677,5678,-2507,-2506,8195]],"properties":{"prefix":"7.2.4.2.1"}},{"type":"Polygon","arcs":[[-3731,-3730,-3729,-3728,-3727,-3726,-3725,-3724,-3723,-5542,8196,8197,8198,-559,-558,-557,-556,-555,-554,-553,-552,-551,-550,-3746,-3745,-3744,8199,8200,-3732]],"properties":{"prefix":"2.3.3.1.2"}},{"type":"Polygon","arcs":[[8201,8202,2385,2386,3307,8203,8204,8205]],"properties":{"prefix":"5.3.6.2.2"}},{"type":"Polygon","arcs":[[8206,8207,1143,1144,8208,8209,8210,1162,1163,1164,8211]],"properties":{"prefix":"6.4.4.1.5"}},{"type":"Polygon","arcs":[[8212,8213,8214,8215,8216,5538,370,371,372,373,2703,2704,8217,8218]],"properties":{"prefix":"2.6.5.1.3"}},{"type":"Polygon","arcs":[[8219,-7828,-7827,8220,8221,8222,8223,8224,-7419,81,82,83,84,4589,4590,8225,8226,8227,8228,8229,1864,1865]],"properties":{"prefix":"5.1.3.2.5"}},{"type":"Polygon","arcs":[[-4239,-3060,-3059,-3058,-3057,-3056,-3055,-3054,-3053,8230,8231,8232,-8033,-8032]],"properties":{"prefix":"7.4.6.4.2"}},{"type":"Polygon","arcs":[[8233,8234,-4668,-4667,-4666,-6013,-6012,-6555,-6554,-6553,-6552,-6551,-6550,-6933,-6932,-6931,8235,8236,8237,8238,8239,8240,8241,8242]],"properties":{"prefix":"2.4.1.3.2"}},{"type":"Polygon","arcs":[[8243,6911,-4630,-4629,-5433,-5441,-5440,710,711,712,713,714,715,716,8244]],"properties":{"prefix":"8.2.1.7.2"}},{"type":"Polygon","arcs":[[8245,8246,8247,-6154,-6153,-6152,-6151,-6150,-3624,-4837,-4836,-4835,-4834,-4833,8248,8249,8250,8251]],"properties":{"prefix":"3.4.4.6.3"}},{"type":"Polygon","arcs":[[8252,-2950,-2876,-2875,-2874,-2873,-2872,4988,4989,8253,8254,5004,5005,8255,8256]],"properties":{"prefix":"9.1.2.3.3"}},{"type":"Polygon","arcs":[[8257,8258,8259,4960,4961,4962,4963,4964,4965,4966,4967,8260,8261,8262]],"properties":{"prefix":"7.7.1.3.3"}},{"type":"Polygon","arcs":[[-1025,-1024,-1023,-1022,-8087,-8086,-8085,-8084,-8083,-8082,-5973,-5972,-5971,-6523,-6522,8263,8264,8265,8266,8267,8268,-1027,-1026]],"properties":{"prefix":"7.4.4.4.2"}},{"type":"Polygon","arcs":[[-7679,-7678,-7677,5057,5058,5059,8269,8270,1254,1255,1256,-1097,-1096]],"properties":{"prefix":"6.1.1.1.4"}},{"type":"Polygon","arcs":[[8271,8272,8273,8274,8275,-6991,-6990,-882,-881,-880,-879,-878,8276,8277]],"properties":{"prefix":"4.1.2.4.5"}},{"type":"Polygon","arcs":[[8278,8279,-6823,2225,2226,2227,2228,2229,2230,8280,8281,8282]],"properties":{"prefix":"4.1.4.2.2"}},{"type":"Polygon","arcs":[[-7202,-7201,-5178,347,348,349,8283,8284,862,863,864,5927,-7205,-7204,-7203]],"properties":{"prefix":"9.8.6.4.2"}},{"type":"Polygon","arcs":[[5197,5198,8285,5195,5196]],"properties":{"prefix":"1.3.1.1.2"}},{"type":"Polygon","arcs":[[8286,8287,-1432,-1431,424,425,2236,4101,8288,8289]],"properties":{"prefix":"1.1.2.1.1"}},{"type":"Polygon","arcs":[[7128,8290,8291,8292,8293,8294,8295,8296,8297,8298,8299,8300,-4153,-4152,-4151,-4159,-4158,-4157,-4156,2026,2027,2028,2029,2030,2031,2032,2033,2034,2035,-6952,-6951,-6950,-6949,7125,7126,7127]],"properties":{"prefix":"8.1.5.5.5"}},{"type":"Polygon","arcs":[[8301,8302,8303,8304,8305,8306,8307,8308,4168,4169,4170,4171,4172,4173,4174,4175,8309,8310]],"properties":{"prefix":"8.2.3.1.1"}},{"type":"Polygon","arcs":[[-4005,2003,8311,8312,8313,8314,783,784,785,786,787,788,8315,-4006]],"properties":{"prefix":"8.1.3.1.1"}},{"type":"Polygon","arcs":[[-3008,-3007,-6067,-6066,-6065,8316,8317,8318,8319,8320,-3025,-3024,-3023,8321,-3010,-3009]],"properties":{"prefix":"5.3.3.1.1"}},{"type":"Polygon","arcs":[[6572,-4201,-4200,-4199,-4198,-4197,-4196,637,638,639,640,6573,6574,8322,-7220,8323,8324,8325,8326,8327,6586,6587,6588,6589,724,725,8328,8329]],"properties":{"prefix":"8.1.5.1.1"}},{"type":"Polygon","arcs":[[63,64,8330,8331,8332,8333,-5365,-5364,-5363,-5362,-5361,-7233,-7232,-7231]],"properties":{"prefix":"4.4.3.4.3"}},{"type":"Polygon","arcs":[[-3846,-3845,-3844,-3843,-3842,-3841,174,175,176,-7636,-7635,-7634,-7633,8334,8335,8336,8337,1182,1183,1184,1185,1186,5837,5838,8338]],"properties":{"prefix":"6.4.3.3.1"}},{"type":"Polygon","arcs":[[8339,8340,8341,4896,4897,4898,4899,4900,4901,4902,4903,4904,4905,8342]],"properties":{"prefix":"8.1.6.1.6"}},{"type":"Polygon","arcs":[[8343,5331,5332,5333,5334,5335,-4564,5336,5337,5338,5339,5340,-1195,-1194,-1193,-1192,-1191,-1190,-1189,-1188,-1187,8344]],"properties":{"prefix":"7.1.1.4.4"}},{"type":"Polygon","arcs":[[8345,-6830,-5294,-5293,-5292,-4512,-4511,-4510,-4509,-4508,-4507,8346,8347,8348,8349,8350,8351,8352,8353]],"properties":{"prefix":"1.8.3.4.1"}},{"type":"Polygon","arcs":[[8354,8355,-2619,-2649,-2648,8356,8357]],"properties":{"prefix":"1.7.1.4.3"}},{"type":"Polygon","arcs":[[2948,-2877,2949,2950,2951,2952,2953,8358,8359,-6749,-6748,-6321,-6320,-6319,8360,8361,8362]],"properties":{"prefix":"9.1.5.1.2"}},{"type":"Polygon","arcs":[[8363,8364,8365,8366,8367,8368,247,248,-650,6791,6792,6793,6794,6795,6796,-4370,-4369,-3672,-3671]],"properties":{"prefix":"7.8.1.5.3"}},{"type":"Polygon","arcs":[[8369,-5987,-5986,-5985,-5984,8370,8371,8372,8373,8374,8375,8376]],"properties":{"prefix":"7.4.4.2.3"}},{"type":"Polygon","arcs":[[8377,6065,6066,-3006,-3005,-3004,-3003,-3307,8378,8379,8380,8381,8382,4288]],"properties":{"prefix":"5.3.3.2.1"}},{"type":"Polygon","arcs":[[8383,8384,6279,1287,1288,1289,1290,3339,3340,3341,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,3354,3355,8385,8386,8387]],"properties":{"prefix":"7.3.2.4.3"}},{"type":"Polygon","arcs":[[8388,-4696,-4695,-4694,-4693,-4692,-4704,3102,8389,8390,8391]],"properties":{"prefix":"9.1.7.1.2"}},{"type":"Polygon","arcs":[[8392,8393,8394,8395,8396,-3756,-3755,-3754,-3753,-3752,5290,8397,8398]],"properties":{"prefix":"8.2.2.1.1"}},{"type":"Polygon","arcs":[[8399,8400,6769,-5100,-5099,-6339,-6338,-6337,-6336,-5091,3445,3446,3447,3448,6770,6771,6772,6773,8401]],"properties":{"prefix":"4.3.4.2.1"}},{"type":"Polygon","arcs":[[8402,8403,8404]],"properties":{"prefix":"8.1.6.6.4"}},{"type":"Polygon","arcs":[[8405,5847,5848,5849,5850,5851,-4276,-4275,-4274,-4273,-4272,8406,8407,8408,2390,2391,2392,2393,2394,2395,-4295]],"properties":{"prefix":"5.3.5.2.1"}},{"type":"Polygon","arcs":[[8409,2977,2978,2979,5638,5639,5640,5641,1905,1906,1907,1908,1909,1910,1911,8410,8411,8412]],"properties":{"prefix":"2.5.1.1.2"}},{"type":"Polygon","arcs":[[-2739,-2738,-2737,3145,3146,3147,3148,8413,8414,8415,8416,8417,8418,-818]],"properties":{"prefix":"4.1.3.4.3"}},{"type":"Polygon","arcs":[[8419,8420,8421,8422,8423,8424,8425,8426,8427,-1238,-1237,-1236,-1235,-1234,-1233,-1232,-1231,-5573,-5572,-5571,-5570,-5569,-5568,8428]],"properties":{"prefix":"7.2.7.4.2"}},{"type":"Polygon","arcs":[[-6582,-6581,-6580,-7974,-7973,-7972,-7980,2046,2047,2048,2049,720,721,722,723,-6590,-6589,-6588,8429]],"properties":{"prefix":"8.1.5.2.1"}},{"type":"Polygon","arcs":[[-5281,-5280,-5279,-5278,-2303,-2302,-2301,-2300,-2299,-2298,-2297,-1916,-1915,-1914,-1913,-1912,-1911,-1910,5891,-5283,-5282]],"properties":{"prefix":"2.4.6.2.1"}},{"type":"Polygon","arcs":[[8430,-6563,-6562,-6561,-6560,-6559,7121,334,335,336,3089,8431,3094,3095,3096,1486,1487,1488,1489,1490,1491,1492,1493,1494,1495,-4703,-4702,8432]],"properties":{"prefix":"9.1.7.3.1"}},{"type":"Polygon","arcs":[[-4618,5433,5434,5435,5436,5437,5438,-2012,-2011,-2010,8433,8434,8435,3753,3754,3755,3756,3757,8436,8437,8438]],"properties":{"prefix":"8.2.1.8.2"}},{"type":"Polygon","arcs":[[3524,4688,8439,3523]],"properties":{"prefix":"4.3.2.1.1"}},{"type":"Polygon","arcs":[[8440,2650,2651,2652,2653,2654,-1668,-1667,-5841,-5843,-5842,597,8441]],"properties":{"prefix":"2.6.7.1.2"}},{"type":"Polygon","arcs":[[8442,190,191,192,-2071,-2070,-2069,-2068,-2067,-2066,-2065,4931,8443,8444,8445,8446,8447,4942,4943,4944,4945,4946,4947,4948,8448,8449,8450,8451]],"properties":{"prefix":"7.5.3.3.3"}},{"type":"Polygon","arcs":[[5769,5770,5771,5772,151,5773,5774,5775,3515,3516,3517,1203,1204,1205,5776,5777,8452,8453,8454,8455]],"properties":{"prefix":"6.3.5.4.2"}},{"type":"Polygon","arcs":[[3090,3091,3092,3093,-8432]],"properties":{"prefix":"9.1.7.3.2"}},{"type":"Polygon","arcs":[[8456,8457,75,76,8458,8459,5225,5226,5227,5228,5229,-4409,-4408,8460]],"properties":{"prefix":"4.4.4.2.2"}},{"type":"Polygon","arcs":[[3222,8461,8462,8463,8464,4913,4914,4915,3219,3220,3221]],"properties":{"prefix":"7.6.2.3.3"}},{"type":"Polygon","arcs":[[-6275,-6274,8465,8466,8467,8468,-5739,-5738,-5737,-5736,8469,8470]],"properties":{"prefix":"7.3.2.2.3"}},{"type":"Polygon","arcs":[[-2464,-2463,8471,8472,8473,8474,8475,8476,8477,8478]],"properties":{"prefix":"4.2.1.1.5"}},{"type":"Polygon","arcs":[[8479,-6941,256,-4155,-4154,-8301,-8300,-8299,-8298,8480,8481,8482,8483,8484]],"properties":{"prefix":"8.1.5.5.1"}},{"type":"Polygon","arcs":[[8485,-3796,-3795,-3794,-3793,3947,3948,3949,3950,-2304,5277,5278,5279,5280,5281]],"properties":{"prefix":"2.4.6.1.1"}},{"type":"Polygon","arcs":[[-5096,-5095,-5094,-5093,-5092,6335,6336,6337,8486,8487]],"properties":{"prefix":"4.3.4.3.1"}},{"type":"Polygon","arcs":[[8488,8489,8490,8491,8492,8493,-4600,-4602,2624,2625,2626,2627,2628,8494,8495,8496,8497]],"properties":{"prefix":"1.7.2.6.2"}},{"type":"Polygon","arcs":[[8498,3526,3527,3528,3529,-2103,-2102,-2101,-2100,-2099,-2098,-8129,-8128,8499,8500,8501,8502,-6041,-6040,8503,8504]],"properties":{"prefix":"4.3.2.2.1"}},{"type":"Polygon","arcs":[[8505,8506,2671]],"properties":{"prefix":"2.6.5.2.2"}},{"type":"Polygon","arcs":[[8507,-5623,-5622,-5621,-5620,-5619,-4929,-4928,-4927,-4926,-4925]],"properties":{"prefix":"7.6.2.2.1"}},{"type":"Polygon","arcs":[[6523,6524,-4575,8508,8509,8510,1548,1549,1550,1551,1552,1553,4357,4358,4359,-3996,-3995,-3994,8511]],"properties":{"prefix":"4.8.2.1.1"}},{"type":"Polygon","arcs":[[2993,2994,8512,8513,8514,8515,8516,8517,8518]],"properties":{"prefix":"5.3.2.1.2"}},{"type":"Polygon","arcs":[[-7333,-7332,-7331,-1850,-1849,-1848,8519,8520,8521,8522,-2394,-2393,-2392,-2391,-2390,-2389,-7334]],"properties":{"prefix":"5.2.1.2.4"}},{"type":"Polygon","arcs":[[318,8523,8524,656,8525,8526,8527,8528,8529,8530,8531]],"properties":{"prefix":"8.5.2.3.2"}},{"type":"Polygon","arcs":[[8532,8533,4672,4673,4674,4675,8534,4678,4331,4679,4680,4681,4682,4683,8535,8536,8537,8538]],"properties":{"prefix":"2.4.1.2.2"}},{"type":"Polygon","arcs":[[8539,4812,8540,-3620,-3619,-3618]],"properties":{"prefix":"3.4.4.5.1"}},{"type":"Polygon","arcs":[[8541,8542,8543,-1465,-1464,-7841,-7840,-7839,-7838,-7837,6239,6240,6241]],"properties":{"prefix":"9.4.2.3.1"}},{"type":"Polygon","arcs":[[8544,-4786,1576,8545,8546]],"properties":{"prefix":"9.8.3.4.2"}},{"type":"Polygon","arcs":[[8547,8548,8549,228,229,230,231,232,8550,8551,6889,6890,6891,6892,6893,-4570,1649,1650]],"properties":{"prefix":"7.7.2.3.3"}},{"type":"Polygon","arcs":[[-8215,-8214,8552,8553,8554,8555,2711,2712,5539,8556,8557]],"properties":{"prefix":"2.6.5.1.1"}},{"type":"Polygon","arcs":[[8558,-7149,-7076,-7075,-7074,-7073,8559,8560,8561,8562,8563,8564,8565,8566,8567]],"properties":{"prefix":"8.1.3.4.1"}},{"type":"Polygon","arcs":[[7153,3597,3598,8568,8569,8570,3626,3627,3628,-600,8571]],"properties":{"prefix":"3.4.1.1.1"}},{"type":"Polygon","arcs":[[-3052,-3051,-3050,8572,8573,8574,8575,8576,8577,8578,-8232,-8231]],"properties":{"prefix":"7.4.6.4.3"}},{"type":"Polygon","arcs":[[-8226,4591,4592,1860,1861,1862,8579,8580]],"properties":{"prefix":"5.1.3.2.7"}},{"type":"Polygon","arcs":[[131,132,133,134,135,8581,8582,8583,8584,8585,8586,8587,8588,8589]],"properties":{"prefix":"6.3.1.1.1"}},{"type":"Polygon","arcs":[[8590,8591,8592,9,10,11,12,-1982,-1981,5617,-1998,-1997,-1996,-1995,-1994,-1993,8593,8594]],"properties":{"prefix":"1.1.2.2.3"}},{"type":"Polygon","arcs":[[4342,161,162,-4752,-4756,-4755,-4754,8595]],"properties":{"prefix":"6.4.1.1.1"}},{"type":"Polygon","arcs":[[8596,8597,8598,-4898,-4897,-4896,264,265,-7003,-7008,-6206,-6205,-6204,-6203,2021,2022,2023,2024,2025,4155,4156,8599,8600]],"properties":{"prefix":"8.1.6.2.2"}},{"type":"Polygon","arcs":[[3129,8601,7114,7115,-1563,-1562,-5193,-5192,-6473,-6472,3127,3128]],"properties":{"prefix":"9.4.4.1.1"}},{"type":"Polygon","arcs":[[-4829,8602,-6161,-6160,-6159,-6158,-6157,-6156,-6155,-8248,-8247,-8246,-8252,-8251,-8250,-8249,-4832,-4831,-4830]],"properties":{"prefix":"3.4.4.6.1"}},{"type":"Polygon","arcs":[[8603,8604,8605]],"properties":{"prefix":"2.2.2.2.2"}},{"type":"Polygon","arcs":[[8606,8607,-831,-830,-829,-828,-827,-826,5709,5710,5711,5712,5713,5714,5715,5716,5717,5718,8608,8609]],"properties":{"prefix":"4.1.3.2.2"}},{"type":"Polygon","arcs":[[8610,-7377,-2542,-2541,905,906,907,8611,8612,8613,8614]],"properties":{"prefix":"9.8.2.2.4"}},{"type":"Polygon","arcs":[[8615,8616,8617,2644,2645,2646,2647,4645,4646]],"properties":{"prefix":"1.7.2.1.1"}},{"type":"Polygon","arcs":[[8618,-2476,-2475,-4150,-4149,-4148,-6495,-6494,-6493,-6492,-6491,-6490,-6489,-6488,8619,8620,8621,8622,8623]],"properties":{"prefix":"7.2.2.6.4"}},{"type":"Polygon","arcs":[[-8408,-8407,-4271,-4270,8624,-3314,-3313,-3312,-3311,-3310,-3309,-3308,2387,2388,2389,-8409]],"properties":{"prefix":"5.3.5.2.2"}},{"type":"Polygon","arcs":[[5998,5999,6000,6001,6002,6003,-4226,-4225,-5414,-5421,-5420,-5419,-2797,-2796,-2795,-2910,-2909,-2908,-2907,6004,8625]],"properties":{"prefix":"2.6.2.3.1"}},{"type":"Polygon","arcs":[[8626,8627,-5772,-5771,-5770,-5769,-5768,-5837,-5836,-5835,-5834,-5833,-5832,-5831,8628,8629,8630]],"properties":{"prefix":"6.3.5.3.2"}},{"type":"Polygon","arcs":[[6693,8631,8632,8633,8634,8635,8636,4148,4149,-2474,-2518,6699,6700,6701,6702,6703,6704,8637]],"properties":{"prefix":"7.2.4.6.1"}},{"type":"Polygon","arcs":[[8638,8639,-3534,-3533,-3532,-3531,-2094,-2093,-2092,-2091,-2090,-2089,-3451,-3450,-3449,-3448,-3447,-3446,-3445,-3444,-3443,-2230,-2229,-2228,-2227,-2226,-2225,-2224,-3542,-3541,-3540,8640]],"properties":{"prefix":"4.3.3.1.2"}},{"type":"Polygon","arcs":[[8641,8642,8643,8644,8645,8646,8647,-2719,-4252,-4251,-4250,-4249,-4248,-4247,-4246,-2867,-2866,-2865,-2864,4567,8648]],"properties":{"prefix":"7.4.4.1.1"}},{"type":"Polygon","arcs":[[8649,8650,8651,8652,-756,-755,6060,6061,8653,8654]],"properties":{"prefix":"7.7.1.4.1"}},{"type":"Polygon","arcs":[[8655,8656,-2244,-2243,-2242,-2241,-2240,-1893,8657,8658,8659,-6640,8660]],"properties":{"prefix":"2.3.3.4.5"}},{"type":"Polygon","arcs":[[-5190,8661,8662]],"properties":{"prefix":"9.4.4.3.1"}},{"type":"Polygon","arcs":[[3544,3545,3546,8663,8664]],"properties":{"prefix":"6.4.4.1.1"}},{"type":"Polygon","arcs":[[8665,8666,2841]],"properties":{"prefix":"2.6.3.1.4"}},{"type":"Polygon","arcs":[[-4170,-4169,-4168,-4167,-5290,-5289,8667,8668,8669,281,282,5913,5914,5915,5916,-4172,-4171]],"properties":{"prefix":"8.2.2.2.3"}},{"type":"Polygon","arcs":[[-1628,-1627,-8049,-8048,-8052,8670,8671]],"properties":{"prefix":"7.6.3.1.5"}},{"type":"Polygon","arcs":[[8672,-4559,6511,6512,-1940,-1939,-1938,-1937]],"properties":{"prefix":"7.1.1.6.2"}},{"type":"Polygon","arcs":[[8673,-4491,-4490,-4489,-4488,-4487,-4486,-4485,-4484,-4503,-4502]],"properties":{"prefix":"7.6.4.1.4"}},{"type":"Polygon","arcs":[[8674,8675,8676,8677,6972,6973,6974,6975,8678]],"properties":{"prefix":"4.1.2.3.1"}},{"type":"Polygon","arcs":[[-3271,-3270,-3269,137,-4544,8679,8680,8681,8682,5312,5313,5314,8683,8684,5310]],"properties":{"prefix":"6.3.2.1.1"}},{"type":"Polygon","arcs":[[-8350,8685,-8351]],"properties":{"prefix":"1.8.3.4.3"}},{"type":"Polygon","arcs":[[8686,-6190,434,435,436,437,438,439,440,8687,8688,8689,-8358,-8357,-2647,-2646,-2645,-2644]],"properties":{"prefix":"1.7.1.4.1"}},{"type":"Polygon","arcs":[[1384,1385,1386,1387,8690,8691,8692]],"properties":{"prefix":"1.3.3.6.3"}},{"type":"Polygon","arcs":[[3641,4727,4728,8693,8694]],"properties":{"prefix":"6.3.7.3.2"}},{"type":"Polygon","arcs":[[-4566,6513,6514,6515,6516,-5376,-5375,6517,8695,-8375,-8374,-8373,-8372,-8371,-5983,-5982,-5981,8696]],"properties":{"prefix":"7.4.4.2.1"}},{"type":"Polygon","arcs":[[8697,6276,6277,8698,8699,8700,8701,3357,3358,3359,-1128,-1127,-1126,-1125,-1124,-1123,-1122,6280,6281,6282,6283,8702]],"properties":{"prefix":"7.3.2.4.1"}},{"type":"Polygon","arcs":[[8703,8704,-2600,-4143,-4142,8705]],"properties":{"prefix":"7.2.5.1.1"}},{"type":"Polygon","arcs":[[8706,8707,6726,564,565,566,8708]],"properties":{"prefix":"1.3.2.2.3"}},{"type":"Polygon","arcs":[[8709,251,252,253,254,-6940,-7125,-7124,-7123,-7134,-7133,8710,8711,8712]],"properties":{"prefix":"8.1.5.3.3"}},{"type":"Polygon","arcs":[[8713,8714,8715,-3155,1069,-890,-889,-888,-887,-886,-885,8716,8717]],"properties":{"prefix":"4.1.2.5.5"}},{"type":"Polygon","arcs":[[8718,8719,8720,8721,-7245,-7244,-7243,-7248,3184,3185,3186,3187,3188,3189,7052,-6766,8722]],"properties":{"prefix":"7.5.4.2.1"}},{"type":"Polygon","arcs":[[8723,8724,8725,8726,6055,6056,6057,3891,3892,8727,8728,8729,8730]],"properties":{"prefix":"7.5.2.1.4"}},{"type":"Polygon","arcs":[[4857,4858,4859,4860,4861,4862,4863,-7559,3980]],"properties":{"prefix":"9.3.3.1.5"}},{"type":"Polygon","arcs":[[8731,269,270,-6669,-6668,-6667,-6666,-6212,-7007,7011,8732]],"properties":{"prefix":"8.1.6.5.3"}},{"type":"Polygon","arcs":[[-2286,-2285,-2284,-2283,-2282,-2281,-7416,8733,8734,8735,-4718,-4717,-4716,8736,8737,8738]],"properties":{"prefix":"7.4.8.5.1"}},{"type":"Polygon","arcs":[[4126,4972,4973,4974,4975,4976,8739]],"properties":{"prefix":"7.2.4.3.4"}},{"type":"Polygon","arcs":[[154,155,156,8740,8741,8742,8743,8744,8745,3508,3509,3510,3511,3512,8746,8747]],"properties":{"prefix":"6.3.5.5.2"}},{"type":"Polygon","arcs":[[-3648,-3647,8748,-7870,-7874,-7873,8749,8750]],"properties":{"prefix":"6.3.6.1.3"}},{"type":"Polygon","arcs":[[8751,-6292,-6291,-6290,8752,8753,1046,1047,1048,1049,8754]],"properties":{"prefix":"4.1.3.4.1"}},{"type":"Polygon","arcs":[[8755,-1044,8756]],"properties":{"prefix":"7.4.5.2.3"}},{"type":"Polygon","arcs":[[2766,8757,8758]],"properties":{"prefix":"4.1.5.1.1"}},{"type":"Polygon","arcs":[[5528,5529,8759,5534,8760]],"properties":{"prefix":"1.9.2.7.2"}},{"type":"Polygon","arcs":[[8761,-1480,-1479,5876,5877,5878,5879,8762,8763,8764,8765]],"properties":{"prefix":"9.3.1.4.2"}},{"type":"Polygon","arcs":[[8766,8767,8768,7163,2610,2611,2612,2613,2614,2615,1598,1599,1600,2616]],"properties":{"prefix":"9.8.1.1.2"}},{"type":"Polygon","arcs":[[8769,8770,8771,-5236,-5235,8772,8773,8774,8775,8776]],"properties":{"prefix":"6.2.1.6.2"}},{"type":"Polygon","arcs":[[-2978,-2977,-2976,-2895,8777,8778,8779,8780,8781,8782]],"properties":{"prefix":"2.5.2.1.2"}},{"type":"Polygon","arcs":[[8783,8784,-3520,-3519,1223]],"properties":{"prefix":"6.3.4.3.3"}},{"type":"Polygon","arcs":[[8785,5605,5606,5607,5608,5609,2902,2240,2241,2242,2903,2904,2905,2906,2907,2908,8786]],"properties":{"prefix":"2.6.1.2.2"}},{"type":"Polygon","arcs":[[8787,8788,8789,6388,6389,6390,-4472,-4471,-4470,-4469,-4468,-4467,-1101,-1100,-1099,8790]],"properties":{"prefix":"7.3.1.3.2"}},{"type":"Polygon","arcs":[[2286,2287,2288,8791,8792,8793,-3892,-3891,-3166,-3165,-2582,-6226,-6225,8794,8795,8796,2285]],"properties":{"prefix":"7.5.1.2.1"}},{"type":"Polygon","arcs":[[-5129,-6367,1996,1997,1998,1999,4252,7160,7161,8797,-5130]],"properties":{"prefix":"1.2.1.1.1"}},{"type":"Polygon","arcs":[[308,309,-7730,-7729,-7728,-7727,8798,8799,8800,8801,8802,8803,8804]],"properties":{"prefix":"8.5.2.2.2"}},{"type":"Polygon","arcs":[[8805,8806,-8292,8807,7130,7131,7132,7133,8808,8809,8810,8811]],"properties":{"prefix":"8.1.5.5.3"}},{"type":"Polygon","arcs":[[6988,-3134,-8716,-8715,-8714,-8718,8812,8813,6987]],"properties":{"prefix":"4.1.2.5.4"}},{"type":"Polygon","arcs":[[-5909,-5908,2456,2457,8814,6462,6463,6464,6465,8815]],"properties":{"prefix":"1.8.3.2.2"}},{"type":"Polygon","arcs":[[8816,-8137,-8136,2455,5907,5908,5909,5910,-2272,-2271,-2270,-2269]],"properties":{"prefix":"1.8.3.1.7"}},{"type":"Polygon","arcs":[[6648,-5614,-5613,-5612,6649,6650,3459,3460,3461,3462,3463,8817,6646,6647]],"properties":{"prefix":"7.6.6.3.2"}},{"type":"Polygon","arcs":[[8818,8819,8820,8821,8822,8823,8824,8825,8826,8827,8828,6492,6493,6494,-4147,-4146,-4145,-4144,-2595,-2594,8829,8830,8831,8832]],"properties":{"prefix":"7.2.2.4.2"}},{"type":"Polygon","arcs":[[8833,144,145,146,147,3405,3406,3407,-7242,-7241,-7240,-7239,-6097,7135,7136,7137]],"properties":{"prefix":"6.3.3.1.1"}},{"type":"Polygon","arcs":[[-8359,2954,2955,2956,2957,-2725,-2724,2958,-6747,-6746,-6745,-6751,-6750,-8360]],"properties":{"prefix":"9.1.5.1.4"}},{"type":"Polygon","arcs":[[4817,8834,8835,4831,4832,4833,4834,4835,4836,-3623,-3622,8836,8837]],"properties":{"prefix":"3.4.4.5.3"}},{"type":"Polygon","arcs":[[2586,8838,8839,8840]],"properties":{"prefix":"7.2.1.5.6"}},{"type":"Polygon","arcs":[[1577,1578,1579,1580,1581,1582,1583,1584,2524,2525,2526,2527,2528,2529,2530,2531,8841,8842,-8547,-8546]],"properties":{"prefix":"9.8.3.4.4"}},{"type":"Polygon","arcs":[[-7611,-7610,-7609,454,455,456,457,458,459,460,461,-6108,-6107,-6106,-6105,-6104,-5529,-5528,-5527,8843,8844,8845,8846,6609,6610,6611,6612]],"properties":{"prefix":"1.9.2.3.4"}},{"type":"Polygon","arcs":[[8847,3845,3846,3847,3848,3849,3850,3851,3852,3853,-7180,8848,8849,8850,8851,8852,8853,8854]],"properties":{"prefix":"6.4.2.1.3"}},{"type":"Polygon","arcs":[[-7935,-7934,8855,1073,1074,1075,1076,1077,1078,1079,1080,1081,2997,2998,2999,3000,3001,3002,3003,3004,3005,3006,7019,7020,3014,3015,3016,3017,-7936]],"properties":{"prefix":"5.3.2.2.5"}},{"type":"Polygon","arcs":[[8856,8857,8858,8859,8860,8861,-716,-4660,-4659,-4658,-4657,-4656,8862,8863,8864,8865,8866]],"properties":{"prefix":"9.3.4.3.4"}},{"type":"Polygon","arcs":[[8867,8868,8869,30,31,32,33,34,35,-6023,-6022,-6021,-6020,-6019,8870,8871,8872,8873,8874,8875,8876,8877,8878,8879,3320,6555]],"properties":{"prefix":"1.5.1.1.2"}},{"type":"Polygon","arcs":[[-941,8880,8881,8882,8883,8884,4486,8885,8886,8887,-947,-946,-945,-944,-943,-942]],"properties":{"prefix":"7.6.4.2.2"}},{"type":"Polygon","arcs":[[8888,8889,5631,2983,992,993,994,995,996,-1535,-1534,8890,8891,8892,8893,8894]],"properties":{"prefix":"4.6.1.1.2"}},{"type":"Polygon","arcs":[[-3046,-3089,-1068,-1067,-1066,8895,8896,8897]],"properties":{"prefix":"7.4.6.4.6"}},{"type":"Polygon","arcs":[[8898,8899,-4937,-4456,-4950,-4949,-4948,-4947,8900,8901]],"properties":{"prefix":"7.5.3.4.2"}},{"type":"Polygon","arcs":[[8902,-3979,-3978,-8146,-8145,-709,-708,-707,-706,-1519,-1518,-1517,-1516,-1515,8903,8904]],"properties":{"prefix":"9.3.4.1.1"}},{"type":"Polygon","arcs":[[8905,8906,4228,4229,4230,-1673,-1672,-1671,-1670,8907,8908,8909,8910,8911,8912]],"properties":{"prefix":"2.6.6.3.4"}},{"type":"Polygon","arcs":[[-4724,8913]],"properties":{"prefix":"6.3.7.1.3"}},{"type":"Polygon","arcs":[[-6478,-6477,8914,8915,8916,-6862,-3261,-3260,-3259,-6876,-6479]],"properties":{"prefix":"1.3.4.6.2"}},{"type":"Polygon","arcs":[[6130,6131,6132,6133,-7668,-7667,-7666,-7670,-7669,1107,8917]],"properties":{"prefix":"5.1.2.4.3"}},{"type":"Polygon","arcs":[[8918,-7221,-8323,6575,6576,6577,6578,6579,6580,6581,6582,6583,6584,6585,-8328,-8327,-8326,8919]],"properties":{"prefix":"8.1.5.1.5"}},{"type":"Polygon","arcs":[[8920,8921,204,205,8922,-4882,-4881,-4880,3202,3203,8923,8924]],"properties":{"prefix":"7.6.2.4.3"}},{"type":"Polygon","arcs":[[2245,2246,-1689,-1688,-1687,-1686,-1685,-1684,-1683,8925,8926,8927,8928,8929,-5383,8930,6912]],"properties":{"prefix":"2.6.2.1.1"}},{"type":"Polygon","arcs":[[8931,8932,8933,8934,8935,8936,-732,-731,-730,-729,8937]],"properties":{"prefix":"9.3.4.4.3"}},{"type":"Polygon","arcs":[[-5425,-5424,-5423,-5422,-5427,2155,-7897,-7896,-7895,8938,8939,8940]],"properties":{"prefix":"1.5.1.2.4"}},{"type":"Polygon","arcs":[[4505,4506,4507,4508,8941,8942,8943,8944,-1423,-1422,-1421,-1420,-1419,-1418,8945,8946]],"properties":{"prefix":"1.8.3.5.1"}},{"type":"Polygon","arcs":[[-8632,6694,6695,8947]],"properties":{"prefix":"7.2.4.6.3"}},{"type":"Polygon","arcs":[[1427,1428,8948,6956,3374,3375,3376,8949,8950,8951,8952,8953,1424,1425,1426]],"properties":{"prefix":"1.3.3.5.1"}},{"type":"Polygon","arcs":[[8954,-5346,6877,8955,8956,8957,8958,8959,8960]],"properties":{"prefix":"2.6.6.2.2"}},{"type":"Polygon","arcs":[[-1352,8961,-8645,-8644,-8643,-8642,8962,8963,8964,8965,8966,8967,8968]],"properties":{"prefix":"7.4.4.1.3"}},{"type":"Polygon","arcs":[[8969,8970,8971,8972,8973,8974,-1691,-1690,-2247,-2246,-2245,-8657,-8656,8975,8976,8977,8978,8979,8980,-6637,-6636,-6635,-6634,-6633,8981]],"properties":{"prefix":"2.3.3.4.3"}},{"type":"Polygon","arcs":[[-4259,-4258,-4257,-4256,-2859,8982,8983,8984,8985,8986,8987]],"properties":{"prefix":"7.4.6.2.3"}},{"type":"Polygon","arcs":[[8988,8989,-5786,-5785,-5784,-5783,-5782,-5781,-5780,-5802,8990]],"properties":{"prefix":"7.5.6.2.3"}},{"type":"Polygon","arcs":[[-7025,-5017,8991]],"properties":{"prefix":"9.1.2.2.3"}},{"type":"Polygon","arcs":[[194,-3192,-5445,-7746,-7745,-7752,-7751,-7943]],"properties":{"prefix":"7.6.1.3.3"}},{"type":"Polygon","arcs":[[8992,4457,1664,1665,1666,1667,1668,1669,1670,1671,1672,1673,1674,1675,-7307,8993,8994,8995,8996,8997,8998,8999,9000,9001,9002]],"properties":{"prefix":"2.1.2.1.1"}},{"type":"Polygon","arcs":[[-8181,-5838,1187,9003,9004]],"properties":{"prefix":"6.4.3.1.2"}},{"type":"Polygon","arcs":[[9005,1381,1382,1383,-8693,-8692,9006,9007,9008,3392,3393,6602,9009,9010]],"properties":{"prefix":"1.3.3.6.1"}},{"type":"Polygon","arcs":[[620,621,9011,9012,9013,9014,9015,7086,7087,764,765,766,767,768,9016,9017,9018,619]],"properties":{"prefix":"8.1.3.2.1"}},{"type":"Polygon","arcs":[[3915,3916,-5250,-5249,-5248,9019,9020]],"properties":{"prefix":"9.3.5.3.1"}},{"type":"Polygon","arcs":[[9021,6717,6718,6719,6720,6721,6722,6723,9022,9023,9024,-3481,6727,6728]],"properties":{"prefix":"1.3.2.2.1"}},{"type":"Polygon","arcs":[[-6943,642,643,644,645,646,647,648,649,249,9025,-8713,-8712,-8711,-7132,-7131,-7130,-7129,-7128,-7127,-7126,-6948,9026]],"properties":{"prefix":"8.1.5.3.1"}},{"type":"Polygon","arcs":[[9027,5092,5093,5094,5095,5096,5097,5098,5099,5100,5101,1035,1036,-2235,-2234,-2233,-2232,-2231,3442]],"properties":{"prefix":"4.3.4.5.1"}},{"type":"Polygon","arcs":[[9028,-2779,-2778,9029,9030,9031,9032,9033,-2787,-2531,-2530,-2529,-2528,9034]],"properties":{"prefix":"9.8.4.1.1"}},{"type":"Polygon","arcs":[[9035,-4460,-4459,1685,1686,1687,1688,1689,1690,1691,1692,6454,6455,-5906,6456,6457,6458,6459,1730,1731,1732]],"properties":{"prefix":"2.1.2.2.1"}},{"type":"Polygon","arcs":[[7009,196,197,198,199,9036,9037,9038,-5633,-5636,-4923,-4922,-4921,-4920,-4919,-4918,9039,9040]],"properties":{"prefix":"7.6.2.1.1"}},{"type":"Polygon","arcs":[[2681,2682,2683,2684,2685,2686,2687,2688,9041,2691,2692,9042,9043,9044,9045,9046,9047]],"properties":{"prefix":"2.6.5.2.5"}},{"type":"Polygon","arcs":[[-8736,-8735,9048,9049,-2295,-2294,-2293,-2292,-919,-918,-917,-916,-4721,-4720,-4719]],"properties":{"prefix":"7.4.8.5.3"}},{"type":"Polygon","arcs":[[-3238,-3237,9050,9051,9052,-3239]],"properties":{"prefix":"9.4.1.1.5"}},{"type":"Polygon","arcs":[[9053,-2057,-2572,-2571,-2570,-2569,-2568,-2567,4314,4315,4316,-3157,-3156,-7586,-7585]],"properties":{"prefix":"7.5.3.6.3"}},{"type":"Polygon","arcs":[[168,169,170,9054,-8852,-8851,-8850,9055,9056]],"properties":{"prefix":"6.4.2.1.1"}},{"type":"Polygon","arcs":[[2050,2051,2052,2053,2054,2055,2056,2057,6933,6934,6935,6936,-5451,-5450,6937,4324]],"properties":{"prefix":"7.6.1.1.1"}},{"type":"Polygon","arcs":[[9057,2089,2090,9058,9059,9060]],"properties":{"prefix":"4.4.3.1.2"}},{"type":"Polygon","arcs":[[9061,9062,-5082,-5081,-5090,-5089,-1751,-1750]],"properties":{"prefix":"2.2.2.1.4"}},{"type":"Polygon","arcs":[[-534,-533,9063,9064,9065,9066,-6422,-6421,-6420,-3709,-3708,-3707,-540,-539,-538,-537,-536,-535]],"properties":{"prefix":"2.3.1.2.2"}},{"type":"Polygon","arcs":[[9067,6839,6840,6841,6842,-6246,-3490,-3489,9068,9069,1227,1228,1229,1230,1231,1232,1233,1234,-1801]],"properties":{"prefix":"6.3.4.3.1"}},{"type":"Polygon","arcs":[[5923,-1738,-1737,-1736,5924,9070]],"properties":{"prefix":"2.2.1.5.2"}},{"type":"Polygon","arcs":[[9071,3791,3792,3793,3794,9072,9073,3800,3801]],"properties":{"prefix":"2.4.2.1.2"}},{"type":"Polygon","arcs":[[5951,9074,1562,1563,1564,5947,5948,-2550,-2549,-2548,-2547,5949,5950]],"properties":{"prefix":"9.8.2.3.2"}},{"type":"Polygon","arcs":[[-6508,1348,1349,9075]],"properties":{"prefix":"7.3.3.1.4"}},{"type":"Polygon","arcs":[[-3359,9076,-3350,-3349,-3348,-3347,-3346,9077,9078,9079,9080,9081,1354,1355,1356,1357,1358,1359,1360,1361,1362,-1134,-1133,-1132,-1131,-1130,-1129,-3360]],"properties":{"prefix":"7.3.3.1.1"}},{"type":"Polygon","arcs":[[344,-5177,-5934,9082]],"properties":{"prefix":"9.8.6.1.2"}},{"type":"Polygon","arcs":[[-2932,9083,9084,-2933]],"properties":{"prefix":"7.4.4.7.2"}},{"type":"Polygon","arcs":[[3425,3426,3427,3428,3429,9085]],"properties":{"prefix":"6.3.3.5.6"}},{"type":"Polygon","arcs":[[-2473,-2472,-2208,-2207,-2206,9086,9087,9088,-453,9089,9090,9091,-8473,-8472]],"properties":{"prefix":"4.2.1.1.1"}},{"type":"Polygon","arcs":[[4323,-3704,9092,5576,5577,5578,5579,5580,5581,5582,5583,5584,5585,-4815,-4814,-4813,-4812,-4811,-4810,-4809,-3615,-3614,-3613,-3612,4322]],"properties":{"prefix":"3.4.4.4.1"}},{"type":"Polygon","arcs":[[58,59,-6531,-6530,-6529,9093,9094,9095]],"properties":{"prefix":"4.4.3.2.4"}},{"type":"Polygon","arcs":[[9096,3244,-1471,-6229,-6228,6686,6687,6688,6689,9097]],"properties":{"prefix":"9.4.2.2.1"}},{"type":"Polygon","arcs":[[1609,1610,1611,1612,9098,9099,9100,9101,-747,-970,-969,-968,-967,9102,9103,1608]],"properties":{"prefix":"7.7.1.1.1"}},{"type":"Polygon","arcs":[[9104,-3720,-1704,-1703,-1702,-1701,-1700,-1699,-1698,5542,9105,9106,9107,9108]],"properties":{"prefix":"2.3.3.2.2"}},{"type":"Polygon","arcs":[[9109,9110,9111,9112,9113,6266,6267,6268,3291,3292,9114,9115,9116,9117,1099,1100,1101,1102,1103,1104,-1883]],"properties":{"prefix":"5.3.6.3.6"}},{"type":"Polygon","arcs":[[-3999,-3998,9118,9119,1701,1702]],"properties":{"prefix":"2.1.2.4.5"}},{"type":"Polygon","arcs":[[9120,9121,-6735,-3376,-5708,-5707,-6740,-6739,-6738,-6737,9122]],"properties":{"prefix":"1.3.2.5.2"}},{"type":"Polygon","arcs":[[9123,9124,112,113,114,115,116,117,118,1070,1071,1072,-8856,-7940,-7939,-7938,-7937,3021,3022,3023,3024,3025,3026,9125,9126]],"properties":{"prefix":"5.3.2.2.3"}},{"type":"Polygon","arcs":[[9127,9128,9129,9130,9131,9132,9133,9134,-1449,-1448,1982,1983,1984,1985,1986,1987]],"properties":{"prefix":"1.2.1.4.3"}},{"type":"Polygon","arcs":[[9135,9136,-3521,-2367,-2366,9137]],"properties":{"prefix":"4.3.1.4.4"}},{"type":"Polygon","arcs":[[9138,9139,1962,1963,1964,1965,1966,-5940,6486,6487,6488,6489,6490,9140,9141]],"properties":{"prefix":"7.2.2.4.4"}},{"type":"Polygon","arcs":[[9142,9143,9144,-8925,9145,9146]],"properties":{"prefix":"7.6.2.4.2"}},{"type":"Polygon","arcs":[[-5171,-5170,-5169,-5168,-5167,-3706,-3705,-4324,-4323,-3611,-3610,-3609,-3608,-3607,7166,-6368,-5813,-5812,9147]],"properties":{"prefix":"3.4.2.6.1"}},{"type":"Polygon","arcs":[[9148,9149,9150,9151,-1808,4214,4855,4856,9152]],"properties":{"prefix":"1.7.1.1.1"}},{"type":"Polygon","arcs":[[9153,259,9154]],"properties":{"prefix":"8.1.6.1.2"}},{"type":"Polygon","arcs":[[9155,5265,5266,5267,5268,5269,5270,5271,5272,9156,9157,9158]],"properties":{"prefix":"6.2.1.3.1"}},{"type":"Polygon","arcs":[[341,-1591,-1590,-1589,-1588,-1587,-1586,-1585,-1584,-1583,-1582,-1581,6229,-7948,-7947,-7946,-7952,-7951,-7950,-7949,6235,6236,-7836,-7591,-7595,9159,9160]],"properties":{"prefix":"9.4.2.3.5"}},{"type":"Polygon","arcs":[[9161,9162,9163,-4962,-6063,-6062,-6061,-754,-753,9164,9165,1619]],"properties":{"prefix":"7.7.1.2.1"}},{"type":"Polygon","arcs":[[9166,9167,9168,9169,-4799,-4798,6624,6625,2297,2298,6626,2308,2309,2310,9170]],"properties":{"prefix":"2.3.3.6.5"}},{"type":"Polygon","arcs":[[-1283,-1282,-1281,-1280,-1279,-1278,-1277,-1276,-1275,-1274,-1273,-1272,9171,9172,9173,9174,9175,5669,5670,5671,5672,5673,5674,5675,-8195,-8194,-8193,-8192,-2485]],"properties":{"prefix":"7.2.4.2.2"}},{"type":"Polygon","arcs":[[9176,9177,9178,9179,9180,3274,3275,3276,3277,3278,3279,3280,3281]],"properties":{"prefix":"6.3.1.1.5"}},{"type":"Polygon","arcs":[[-3467,-3466,1375,1376,1377,1378,-3383,-3382,-3381,-3380,-3379,-3378,-3377,6734,6735,6736,6737,6738,6739,-5706,-5705,-5704,-5703,-5702,9181,9182,9183]],"properties":{"prefix":"1.3.2.4.4"}},{"type":"Polygon","arcs":[[9184,-6199,-6198,-6197,-6196,-6216,-8015,9185,9186,-8405,-8404]],"properties":{"prefix":"8.1.6.6.5"}},{"type":"Polygon","arcs":[[5893,5894,5895,5896,5897,9187,9188,9189,9190,9191,5902,-3153,9192]],"properties":{"prefix":"4.1.4.1.2"}},{"type":"Polygon","arcs":[[6376,9193,9194,9195,6369,6370,6371,-897,-896,-895,-894,6372,6373,6374,6375]],"properties":{"prefix":"7.4.7.2.1"}},{"type":"Polygon","arcs":[[-5075,9196,9197,-5308,-5307,9198,9199,9200]],"properties":{"prefix":"8.1.4.4.2"}},{"type":"Polygon","arcs":[[9201,9202,9203,-5211,983,9204,2114,2115,2116,2117,2118,2119,2120,2121,-5214,-5213,9205,9206]],"properties":{"prefix":"4.4.4.5.1"}},{"type":"Polygon","arcs":[[-4892,-4891,9207,9208,9209,9210]],"properties":{"prefix":"4.6.1.1.4"}},{"type":"Polygon","arcs":[[-8576,-8575,9211,9212,9213,-1062,-1061,-1060,-1059,-1058,-1057,-1056,-1055,-1054,-1053,5023,5024,-5023,-5022,-5021,9214,9215,-8577]],"properties":{"prefix":"7.4.6.4.4"}},{"type":"Polygon","arcs":[[9216,9217,9218,9219,9220,9221,6439,6440,6441,-1147,-1146,-1145,-1144,-1143,-1142,-4931,-4954,-4953,-4952,-5746,-5745,-5744,-5743,-3179,-3178,-3177,-3176,-3175,-3174,6442,9222,9223,9224]],"properties":{"prefix":"7.5.3.2.3"}},{"type":"Polygon","arcs":[[-2183,-2182,-2181,-1713,-7207,9225,9226]],"properties":{"prefix":"2.3.2.3.1"}},{"type":"Polygon","arcs":[[-7640,-7639,9227,9228,9229]],"properties":{"prefix":"6.4.3.3.4"}},{"type":"Polygon","arcs":[[9230,9231,-7215,-7214,-7213,4222,4223,4224,9232,9233]],"properties":{"prefix":"2.6.6.3.2"}},{"type":"Polygon","arcs":[[9234,4803,-1226,-1225,-1224,-1223,-1222,4804,4805]],"properties":{"prefix":"7.2.7.2.1"}},{"type":"Polygon","arcs":[[-6521,-6520,9235,9236,-8264]],"properties":{"prefix":"7.4.4.4.3"}},{"type":"Polygon","arcs":[[-5465,9237,9238,2750,6569,6570,-5470,-5469,-5468,-5467,-5466]],"properties":{"prefix":"4.1.5.4.1"}},{"type":"Polygon","arcs":[[5177,5178,5179,9239,346]],"properties":{"prefix":"9.8.6.2.1"}},{"type":"Polygon","arcs":[[9240,185,186,1138,1139,1140,1141,1142,-8208,-8207,-8212,1165,9241,9242]],"properties":{"prefix":"6.4.4.1.4"}},{"type":"Polygon","arcs":[[9243,3048,3049,3050,3051,3052,3053,3054,-6798,-6370,-6378,-6377,-6376,-6375,-6374,-6373,-893,7170]],"properties":{"prefix":"7.4.7.1.1"}},{"type":"Polygon","arcs":[[9244,9245,-3958,-3957,9246,9247,9248,-4039,-4038,-4037,-4036,-4035,-4034,-4033,7049,7050,9249]],"properties":{"prefix":"9.3.2.1.1"}},{"type":"Polygon","arcs":[[292,9250,-3834,-3833,-3832,-3831,-2422,-2421,-2420,4355,9251,9252,291]],"properties":{"prefix":"8.4.1.1.1"}},{"type":"Polygon","arcs":[[9253,2898,2899,2900,2901,1888,1889,1890,1891,1892,1893,1894,1895,1896,1897,1898,1899,1900,1901,1902,388,7156,9254]],"properties":{"prefix":"2.5.3.2.2"}},{"type":"Polygon","arcs":[[9255,6352,6353,-3207,-3206,-3205,-3204,-3203,-3202,-7544,9256]],"properties":{"prefix":"7.6.3.1.3"}},{"type":"Polygon","arcs":[[-8945,9257,9258,4514,4515,-1427,-1426,-1425,-1424]],"properties":{"prefix":"1.8.3.5.3"}},{"type":"Polygon","arcs":[[-5586,-5585,9259,9260,9261,9262,9263,9264,-7259,-7258,-7257,-7256,-4816]],"properties":{"prefix":"3.4.4.2.2"}},{"type":"Polygon","arcs":[[1419,9265,-8950,3377,3378,3379,-7265,-7264,-7267,-7266]],"properties":{"prefix":"1.3.3.5.3"}},{"type":"Polygon","arcs":[[-8625,-4269,-4268,-4267,-4266,-4265,-3298,-3297,-3296,-3295,-3294,-3293,-3292,-3291,-3290,-3319,-3318,-3317,-3316,-3315]],"properties":{"prefix":"5.3.5.2.3"}},{"type":"Polygon","arcs":[[-8967,-8966,-8965,-8964,9266,4564,4565,4566,-1358,-1357,-1356,-1355,-1354,-1353,-8969,-8968]],"properties":{"prefix":"7.4.4.1.5"}},{"type":"Polygon","arcs":[[4237,-2675,-2674,-2673,-2672,-2671,-2715,-2714,-2713,-2712,-2711,-2710,-2709,-5043,-5042,-5041,9267]],"properties":{"prefix":"2.6.4.3.2"}},{"type":"Polygon","arcs":[[9268,9269,9270,9271,9272,1117,-3783,-3782,-3781,-3780,-3779,-3778,-3777,-6177]],"properties":{"prefix":"5.1.2.3.1"}},{"type":"Polygon","arcs":[[9273,9274]],"properties":{"prefix":"7.5.6.2.1"}},{"type":"Polygon","arcs":[[9275,2774,2775,9276,9277,9278,9279,9280,874,875,876,877,-2540,-2539,-2538]],"properties":{"prefix":"9.8.5.1.1"}},{"type":"Polygon","arcs":[[1941,-5113,-5128,9281]],"properties":{"prefix":"7.2.1.1.2"}},{"type":"Polygon","arcs":[[9282,6657,-2756,-2755,-2754,-2753,-2752,-2751,-2750,-2749,-2748,-5603,-5602,2214,2215,2216,2217,2218,-2768,-2767,-2766,-2765,-2764]],"properties":{"prefix":"4.1.6.1.1"}},{"type":"Polygon","arcs":[[675,9283,4180,1916,1917,1918,9284,9285,9286]],"properties":{"prefix":"8.5.2.1.1"}},{"type":"Polygon","arcs":[[2875,2876,2877,2878,2879,2880,2881,2882,9287,9288,9289,9290,9291,9292]],"properties":{"prefix":"9.1.3.1.3"}},{"type":"Polygon","arcs":[[-7191,9293,9294,-3901,-3900,9295,9296,9297,9298,-7193,-7192]],"properties":{"prefix":"9.3.4.5.4"}},{"type":"Polygon","arcs":[[9299,-8995,-8994,-7306,-7305,-7304,-7303,-7302,-7312,-4089,-4088,-4087,-4086,9300,-9003,-9002,-9001,-9000]],"properties":{"prefix":"2.1.2.1.3"}},{"type":"Polygon","arcs":[[6357,9301,211,212,213,-1637,-1636,-1635,9302,-7539,-7538,-7537,-7546,-7545]],"properties":{"prefix":"7.6.3.1.1"}},{"type":"Polygon","arcs":[[-3884,-1969,-1968,-1967,-1966,-1965,-1964,-1963,-1962,-1961,-1960,-1959,-7314,-7313,-7324,-7323,-7322,9303,9304,-7458,-7464,9305,9306]],"properties":{"prefix":"7.5.3.1.1"}},{"type":"Polygon","arcs":[[5299,5300,5301,5302,-1732,-1731,-1730,9307,5298]],"properties":{"prefix":"2.2.1.2.1"}},{"type":"Polygon","arcs":[[9308,2981,2982,393,9309]],"properties":{"prefix":"2.5.1.2.2"}},{"type":"Polygon","arcs":[[-7348,-7347,-6406,-6405,-6404,-6403,-6402,-6401,3477,3478,9310,9311,9312,9313,9314,573,574,575,576,577,578,579,580,581,582,419,-7349]],"properties":{"prefix":"1.3.1.4.4"}},{"type":"Polygon","arcs":[[-8309,-8308,-8307,-8306,-8305,-8304,9315,9316,9317,9318,4160,4161,2254,2255,2256,9319,9320,9321,9322,684,685,686,687,688,689,690,691,4162,4163,4164,4165,4166,4167]],"properties":{"prefix":"8.2.3.1.2"}},{"type":"Polygon","arcs":[[-2833,-2832,-2831,9323,9324,9325,9326,-2704,374,375,376,9327,9328,9329,9330]],"properties":{"prefix":"2.6.4.2.4"}},{"type":"Polygon","arcs":[[-9014,-9013,-9012,622,623,-4195,-4194,-4193,-4192,-4191,-4190,9331,9332,9333,9334,9335,9336]],"properties":{"prefix":"8.1.3.2.3"}},{"type":"Polygon","arcs":[[-776,9337,4233,-1647,-1646,-1645,-1644,-1643,9338,9339,9340,9341,-780,-779,-778,-777]],"properties":{"prefix":"7.8.1.1.1"}},{"type":"Polygon","arcs":[[3073,3074,3075,9342,9343,9344]],"properties":{"prefix":"7.4.7.4.4"}},{"type":"Polygon","arcs":[[-7246,-8722,-8721,9345,-7048,-7047,-7046,-7045,-7044,3174,-7247]],"properties":{"prefix":"7.5.4.2.5"}},{"type":"Polygon","arcs":[[-3403,-3402,9346,-8123,-8122,-8121,-8120,-8119]],"properties":{"prefix":"6.3.2.2.4"}},{"type":"Polygon","arcs":[[-8511,-8510,-8509,-4574,-5355,6525,1545,1546,1547]],"properties":{"prefix":"4.8.2.1.3"}},{"type":"Polygon","arcs":[[9347,9348,9349,9350,9351,-9132,-9131,-9130,-9129,-9128,1988,1989,1990,1991,1992,1993,1994,1995,6366,-5134,9352,9353]],"properties":{"prefix":"1.2.1.4.2"}},{"type":"Polygon","arcs":[[-9050,-9049,-8734,-7417,-2296]],"properties":{"prefix":"7.4.8.5.5"}},{"type":"Polygon","arcs":[[-4309,9354,9355,9356,9357,-7687,9358,-3235,-3234,-4312,-4311,-4310]],"properties":{"prefix":"9.4.1.1.3"}},{"type":"Polygon","arcs":[[-1945,-1944,-1943,-1942,-1941,-6513,-6512,-4558,-4557,-5336,9359,9360,9361,9362,9363,9364,9365,9366]],"properties":{"prefix":"7.1.1.3.2"}},{"type":"Polygon","arcs":[[1765,1766,5231,5232,5233,5234,5235,5236,5237,9367,9368]],"properties":{"prefix":"6.2.1.5.3"}},{"type":"Polygon","arcs":[[6756,9369,-7778,6755]],"properties":{"prefix":"9.4.2.1.3"}},{"type":"Polygon","arcs":[[3795,3796,3797,3798,3799,-9074,-9073]],"properties":{"prefix":"2.4.2.1.3"}},{"type":"Polygon","arcs":[[-8427,-8426,9370,9371,9372,9373,9374,9375,9376,-1244,-1243,-1242,-1241,-1240,-1239,-8428]],"properties":{"prefix":"7.2.7.4.4"}},{"type":"Polygon","arcs":[[9377,9378,2319,2320,2321,2322,2323,2324,9379,9380,9381]],"properties":{"prefix":"2.3.3.3.2"}},{"type":"Polygon","arcs":[[-3135,-6989,-6988,-6987,-8276,-8275,-8274,-8273,9382,9383,9384,9385,-6970,-6969,-6968,-6967,-7485,-7484,-7483,-7482]],"properties":{"prefix":"4.1.2.4.2"}},{"type":"Polygon","arcs":[[9386,9387,-7957,2368,2369,2370,2371,2372,2373,9388,9389]],"properties":{"prefix":"4.2.2.1.3"}},{"type":"Polygon","arcs":[[9390,-6455,1693,1694,1695,1696,1697,1698,1699,1700,-9120,9391,1723,1724,1725,1726,1727,9392,9393]],"properties":{"prefix":"2.1.2.4.1"}},{"type":"Polygon","arcs":[[5967,9394,9395,9396,9397,9398,-7363,-7362,-7368,-7367,5966,-768,-767,-766,-765,-764,-763,-762,-761,-760,-3829,-3828,-3827,-3826]],"properties":{"prefix":"7.7.2.1.3"}},{"type":"Polygon","arcs":[[-8862,-8861,-8860,-8859,9399,-5721,-5720,-727,-726,-725,-724,-723,-722,-721,-720,-719,-718,-717]],"properties":{"prefix":"9.3.4.3.5"}},{"type":"Polygon","arcs":[[4619,4620,4621,9400,-7405,-7404]],"properties":{"prefix":"8.2.1.5.2"}},{"type":"Polygon","arcs":[[9401,9402,1923,1924,1925,300,301,9403,9404,-8111,-8117,-8116,-8115,-8114,-5481]],"properties":{"prefix":"8.5.2.1.3"}},{"type":"Polygon","arcs":[[9405,9406,288,2417,9407,2421,2422,2423,2424,-1931,-1930,9408,9409]],"properties":{"prefix":"8.3.1.2.4"}},{"type":"Polygon","arcs":[[6994,6995,-5598,2267,2268,9410]],"properties":{"prefix":"1.4.2.3.1"}},{"type":"Polygon","arcs":[[-8524,319,320,321,650,651,652,653,654,655,-8525]],"properties":{"prefix":"8.5.2.3.3"}},{"type":"Polygon","arcs":[[9411,-9091,9412,9413]],"properties":{"prefix":"4.2.1.1.3"}},{"type":"Polygon","arcs":[[-9342,9414,9415,-9339,-1642,-4439,-4438,-4437,-4436,-781]],"properties":{"prefix":"7.8.1.1.3"}},{"type":"Polygon","arcs":[[9416,9417,-6778,-6777,-6776,-6775,-3576,-3575,-3574,-3573,-3572,-3571,-3570,-3569,-3568,-3567,-3566,9418,9419,9420,9421,9422,9423,9424,9425,-5111,-3595,-3217,9426,9427]],"properties":{"prefix":"7.6.3.4.2"}},{"type":"Polygon","arcs":[[9428,9429,5561,9430,9431,9432,9433,9434,9435,9436]],"properties":{"prefix":"2.3.3.2.4"}},{"type":"Polygon","arcs":[[9437,9438,-4316,-4315,-2566,-2565,9439]],"properties":{"prefix":"7.5.5.1.1"}},{"type":"Polygon","arcs":[[3547,3548,3549,3550,181,182,183,184,-9241,-9243,-9242,1166,1167,1168,1169,1170,1171,9440,9441,-8664]],"properties":{"prefix":"6.4.4.1.3"}},{"type":"Polygon","arcs":[[66,67,4109,4110,4111,-5357,-5366,-8334,-8333,-8332,-8331,65]],"properties":{"prefix":"4.4.3.4.4"}},{"type":"Polygon","arcs":[[-5651,-5650,-5649,9442,9443,9444,9445,9446,9447,9448,9449,3032,3033,3034,3035,-5661,-5660,-5659,-5658,-5657,-5656,-5655,-5654,-5653,-5652]],"properties":{"prefix":"5.3.2.2.1"}},{"type":"Polygon","arcs":[[-8209,1145,1146,1147,1148,1149,1150,1151,1152,1153,1154,1155,1156,1157,1158,1159,1160,1161,-8211,-8210]],"properties":{"prefix":"6.4.4.1.6"}},{"type":"Polygon","arcs":[[-3524,-3523,-3522,-9137,-9136,-9138,-2365,-2364,-2363,9450,9451]],"properties":{"prefix":"4.3.1.4.2"}},{"type":"Polygon","arcs":[[9452,9453,9454,-6910,718,719,-2050,-2049,-2048,-2047,-2046,9455]],"properties":{"prefix":"8.2.1.6.4"}},{"type":"Polygon","arcs":[[9456,6404,6405,6406,6407,6408,6409,6410,6411,9457,9458]],"properties":{"prefix":"1.3.1.3.2"}},{"type":"Polygon","arcs":[[-1398,-1397,-1396,-1395,-1394,-1393,-1392,25,9459,9460,9461,9462,9463,-2176,-2175,-2174,-2173,-2172,-2171,2262,2263,2264,2265,9464,9465,-1399]],"properties":{"prefix":"1.4.2.4.1"}},{"type":"Polygon","arcs":[[9466,-1675,-1674,-4231,-4230,-4229,-4228,-4227,-6004,-6003,-6002,-6001,-6000,-5999,-5998,-5380,-5379,9467,9468,9469,9470,9471,9472,9473,9474]],"properties":{"prefix":"2.6.2.1.3"}},{"type":"Polygon","arcs":[[9475,-1977,-1976,-1975,-1974,-1973,-1972,-1971,-1970,3883,3884,3885,3886,3887,6051,6052,6053,6054,-8727,-8726,9476,9477,9478,9479,9480,9481,9482,9483,9484,9485,-8731,9486,9487,9488,9489]],"properties":{"prefix":"7.5.2.1.2"}},{"type":"Polygon","arcs":[[-846,-845,-844,-843,-842,9490,-6973,-6972,7139,7140,7141,-6449,-6448,9491,9492,-847]],"properties":{"prefix":"4.1.2.2.1"}},{"type":"Polygon","arcs":[[9493,-2934,-9085,9494]],"properties":{"prefix":"7.4.4.7.1"}},{"type":"Polygon","arcs":[[9495,-8314,-8313,-8312,2004,614,615,5802,9496,9497,9498,9499,9500,9501,777,778,779,780,781]],"properties":{"prefix":"8.1.3.1.3"}},{"type":"Polygon","arcs":[[4561,9502]],"properties":{"prefix":"7.1.1.5.1"}},{"type":"Polygon","arcs":[[-4887,-4886,-4894,-2119,-2118,-2117,-2116,9503,9504,9505,9506,9507,9508,9509,9510,9511,9512,9513,9514,-4888]],"properties":{"prefix":"4.6.1.1.6"}},{"type":"Polygon","arcs":[[4880,9515,4883,4884,207,208,209,3192,3193,3194,3195,3196,3197,3198,3199,3200,3201,4879]],"properties":{"prefix":"7.6.2.5.1"}},{"type":"Polygon","arcs":[[-7208,-1709,-1708,-1707,-1706,-1705,3719,3720,6897,6898,6899,6900,6901,6902,3737,6903,6904,9516,-9226,-7210,-7209]],"properties":{"prefix":"2.3.2.3.3"}},{"type":"Polygon","arcs":[[9517,-3546,-3545,-3544,-3543,-3554,-3553,-3552,1178,1179,1180,1181,-8338,-8337,-8336,9518]],"properties":{"prefix":"6.4.3.3.6"}},{"type":"Polygon","arcs":[[543,544,-6103,7134,3369,3370,3371,3372,3373,-6957,-6956,-6955,-6954,-6953,-6958]],"properties":{"prefix":"1.3.3.4.1"}},{"type":"Polygon","arcs":[[9519,4096,4097,4098,4099,4100,4,4876,4877,4878,-1985,-1984,-1983,-1447,-1446,-1445,-1444,-1443,9520]],"properties":{"prefix":"1.1.2.1.5"}},{"type":"Polygon","arcs":[[-498,-497,-496,-495,9521,9522,9523,9524,9525]],"properties":{"prefix":"2.1.1.2.1"}},{"type":"Polygon","arcs":[[9526,9527,9528,9529,9530,5441,5442,5443,5444,-3228,-3227,-3226,-3225,-3224,-3223,-3594,-3593,-3592,4325,5445,5446,5447,5448,5449,5450,5451,5452,5453,5454,5455,5456,5457,5458,5459,5460]],"properties":{"prefix":"7.6.1.4.1"}},{"type":"Polygon","arcs":[[9531,9532,5789,5790,5791,5792,5793,9533,9534,9535,-2077,-2076,-2075,-2074,-2073,-2072,-931,-930,-929,-928,-927,9536,9537]],"properties":{"prefix":"7.5.6.3.3"}},{"type":"Polygon","arcs":[[9538,9539,-4578,-4577,6894,6895,-3990,-3989,-3931,-3945,-3944,-3943,-3942,1539,1540,9540]],"properties":{"prefix":"4.8.2.4.2"}},{"type":"Polygon","arcs":[[-7237,6543]],"properties":{"prefix":"1.7.2.2.2"}},{"type":"Polygon","arcs":[[9541,9542,830,831,9543,9544,9545,9546,9547,9548]],"properties":{"prefix":"3.4.3.2.2"}},{"type":"Polygon","arcs":[[9549,6196,6197,6198,6199,6200,9550,9551,9552,9553,2015,2016,2017,2018,2019,2020,6202,6203,6204,6205,6206,6207,6208,6209,6210,6211,6212]],"properties":{"prefix":"8.1.6.7.1"}},{"type":"Polygon","arcs":[[9554,5401,5402,5403,5404,5405,5406,5407,9555,9556,-3880,-3879,-3878,407,408,409,410,411,412,413,5398,5399,9557]],"properties":{"prefix":"2.4.1.7.1"}},{"type":"Polygon","arcs":[[9558,6083,6084,6085,6086,6087,9559,9560,9561,9562,9563,6093,-3278,-3277,-3276,3432,3433,3434,3435,3436,3437,3438,3439,3440,6094]],"properties":{"prefix":"6.3.3.2.2"}},{"type":"Polygon","arcs":[[4554,9564,4547,4548,4549,4550,4551,4552,4553,920,921,1591,1592,1593,1594,1595,1596,1597,-2616,-2615]],"properties":{"prefix":"9.8.2.1.1"}},{"type":"Polygon","arcs":[[-7253,-7252,-7251,-6852,-4974,-4973,4127,4128,4129,4130,4131,4132,4133,9565,9566,9567,-6703,-6702,-6701,-6700,-2517,-7254]],"properties":{"prefix":"7.2.4.5.2"}},{"type":"Polygon","arcs":[[-6923,-7876,-7875,-2022,-2021,-2020,-2019,9568]],"properties":{"prefix":"8.2.1.2.2"}},{"type":"Polygon","arcs":[[603,-7270,-7269,-7268,6883,-2656]],"properties":{"prefix":"2.6.6.2.6"}},{"type":"Polygon","arcs":[[9569,-3578,-3577,6774,6775,6776,6777,6778,6779,6780,6781,6782,6783,6784,6785,6786,6787,-6343,-6342,-6341,9570]],"properties":{"prefix":"7.6.3.2.1"}},{"type":"Polygon","arcs":[[9571,-502,-6329,9572,1755,1756]],"properties":{"prefix":"2.1.1.1.1"}},{"type":"Polygon","arcs":[[9573,9574,-7277,-7276,-7275]],"properties":{"prefix":"3.1.2.1.1"}},{"type":"Polygon","arcs":[[-6724,-6723,-6722,-6721,-6734,-6733,9575,-6743,-6742,-6741,557,558,559,560,561,9576,9577,-6725]],"properties":{"prefix":"1.3.2.3.1"}},{"type":"Polygon","arcs":[[-3426,-3425,-3424,-3423,-3422,-3421,-3502,-3501,-7767,-7766,-7765,9578]],"properties":{"prefix":"6.3.4.1.1"}},{"type":"Polygon","arcs":[[9579,-6144,-6143,-6142,-5546,9580,9581,-6630,-6629,-6628,2315]],"properties":{"prefix":"2.3.3.4.1"}},{"type":"Polygon","arcs":[[-9333,-9332,-4189,7070,7071,7072,7073,7074,7075,7076,7077,7078,7079,7080,7081,7082,7083,7084,7085,-9016,-9015,-9337,-9336,-9335,-9334]],"properties":{"prefix":"8.1.3.2.4"}},{"type":"Polygon","arcs":[[-7310,-7309,-7308,1678,1679,1680,1681,1682,1683,1684,4458,4459,4460,4461,-7772,-7775,-7774,-7773,1737,1738,-7311]],"properties":{"prefix":"2.1.2.1.5"}},{"type":"Polygon","arcs":[[-7315,-1150,-1149,-1148,-6442,-6441,9582,9583,9584,9585,-7320,-7319,-7318,-7317,-7316]],"properties":{"prefix":"7.5.3.1.3"}},{"type":"Polygon","arcs":[[-3867,-3866,-3865,-3864,-3798,-3947,9586,9587,9588,9589,398,399,-8158,-8157,-8156]],"properties":{"prefix":"2.4.5.1.4"}},{"type":"Polygon","arcs":[[-7792,-7343,422,-7796,-7795,-7794,-7793]],"properties":{"prefix":"1.3.1.4.2"}},{"type":"Polygon","arcs":[[-7646,-7645,-7644,-7648,960,961,4425,-7355,-7354,-7353,-7352]],"properties":{"prefix":"9.3.5.5.2"}},{"type":"Polygon","arcs":[[9590,9591,-1952,-1951,-1950,-1949,-1948,-6869,-7361,-7360,-7359,-7358,-6873,9592,9593,9594]],"properties":{"prefix":"7.1.1.2.2"}},{"type":"Polygon","arcs":[[5413,-4224,-4223,-4222,-4221,-4220,9595,9596,9597,-7800,-2803,-2802,-2801,-2800,9598,9599]],"properties":{"prefix":"2.6.2.4.1"}},{"type":"Polygon","arcs":[[-5754,-7370,9600,-5078,297,298,299,-1926,9601,9602,9603,9604]],"properties":{"prefix":"8.4.2.2.2"}},{"type":"Polygon","arcs":[[9605,-3452,-3465,-3464,-7803]],"properties":{"prefix":"7.6.5.1.2"}},{"type":"Polygon","arcs":[[9606,9607,-6842,-6841,-6840,-6839,9608,9609,9610,-6256,-6255,-6254,-6253,-6252,-6251,-6250,-6249,9611]],"properties":{"prefix":"6.3.4.2.1"}},{"type":"Polygon","arcs":[[7092,7093,7094,51,7095,7096,7097,2355,2356,2357,9612]],"properties":{"prefix":"4.2.2.2.1"}},{"type":"Polygon","arcs":[[9613,-5132,6359,6360,-1387,-1386,-1385,-1384,-1383,-1382,-1381,6361,6362,6363,6364,6365,-1451,-1450,-9135,-9134,-9133,-9352]],"properties":{"prefix":"1.2.1.4.4"}},{"type":"Polygon","arcs":[[1646,1647,-4573,-4572,-7250,-7619,-7618,-7617,-7616,-7615,9614,1645]],"properties":{"prefix":"7.7.2.4.2"}},{"type":"Polygon","arcs":[[-2037,-2036,-2035,9615,9616,9617,9618,5392,5393,5394,5395,-4613,-7437,-4638,-4637,-4636,-2039,-2038]],"properties":{"prefix":"8.2.1.4.2"}},{"type":"Polygon","arcs":[[-3632,-8751,-8750,-7872]],"properties":{"prefix":"6.3.6.1.2"}},{"type":"Polygon","arcs":[[-7444,-7443,-7442,-810,-809,-472,-471,-470,-469,-468,-467,9619,9620,9621,9622,9623,5474,5475,5476,2759,-7445]],"properties":{"prefix":"4.1.5.2.2"}},{"type":"Polygon","arcs":[[9624,9625,9626,9627,9628,3965,3966,3967,3968,3969,-7564,-7563,-7562,-7561,-7560,4868,4869,4870,4871,4872,4873,-1499]],"properties":{"prefix":"9.3.3.1.2"}},{"type":"Polygon","arcs":[[46,47,9629,6192,-2642,-2641,-2640,-2639,6193,9630,9631]],"properties":{"prefix":"1.7.1.3.1"}},{"type":"Polygon","arcs":[[9632,-1556,-1605,-7452,-7451,-7457,-7456,9633,9634,5187,5188,5189,5190,5191,9635]],"properties":{"prefix":"9.4.4.2.1"}},{"type":"Polygon","arcs":[[9636,122,123,124,125,126,9637,9638,9639,9640,5241,5242,9641]],"properties":{"prefix":"6.2.1.5.1"}},{"type":"Polygon","arcs":[[9642,9643,9644,9645,2912,2913,2914,2915,385,386,387,-1903,-1902,-1901,-1900,-1899,2916,6997,6998,9646]],"properties":{"prefix":"2.6.1.1.1"}},{"type":"Polygon","arcs":[[4353,5062,9647,5052,5053,5054,5055,-7676,-7683,-7682,-7681,-7680,-1086,2426]],"properties":{"prefix":"6.1.1.1.1"}},{"type":"Polygon","arcs":[[-7477,-7481,3335,6309,9648]],"properties":{"prefix":"3.4.5.1.1"}},{"type":"Polygon","arcs":[[-9389,2374,2375,-2212,-2211,9649]],"properties":{"prefix":"4.2.2.1.1"}},{"type":"Polygon","arcs":[[2282,2283,6222,6223,6224,9650,2281]],"properties":{"prefix":"7.5.1.1.2"}},{"type":"Polygon","arcs":[[293,294,-3830,-3836,-3835,-9251]],"properties":{"prefix":"8.4.1.1.2"}},{"type":"Polygon","arcs":[[9651,9652,9653,9654,9655,9656,9657,-7502,-7506,-7505,1453,1454,1455,3485,6814,-5198]],"properties":{"prefix":"1.3.1.2.2"}},{"type":"Polygon","arcs":[[2420,-9408,2418,2419]],"properties":{"prefix":"8.3.1.2.6"}},{"type":"Polygon","arcs":[[9658,9659,-2379,930,931,932,933,934,-1832,-1831,-1830,-1829,3952,9660]],"properties":{"prefix":"9.5.1.1.1"}},{"type":"Polygon","arcs":[[9661,9662,9663,-792,3665,3666,3667,3668,3669,3670,5343,9664]],"properties":{"prefix":"7.8.2.1.2"}},{"type":"Polygon","arcs":[[-1918,-1917,-1935,9665,9666,9667,9668,-2424,-2423,3830,3831,5751,9669,9670,9671,9672]],"properties":{"prefix":"8.4.2.4.2"}},{"type":"Polygon","arcs":[[-1081,-1080,-1079,-5864,-5863,-5862,-5861,-5860,-5271,-7529,-7528,-7527,-7526,-7525,5888,5889,9673,9674,1762,1763]],"properties":{"prefix":"6.2.1.2.1"}},{"type":"Polygon","arcs":[[-3343,-3342,-3341,-3340,1291,1292,1293,1294,9675,9676,1344,1345,9677,9678]],"properties":{"prefix":"7.3.3.2.1"}},{"type":"Polygon","arcs":[[9679,9680,9681,9682,-5112,-9426,-9425,-9424,-9423,-9422,-9421]],"properties":{"prefix":"7.6.3.4.4"}},{"type":"Polygon","arcs":[[9683,-1640,-1639,-1638,235,236,237,4439,4440,4441,4442,4443,4444,4445,9684,9685]],"properties":{"prefix":"7.8.1.2.4"}},{"type":"Polygon","arcs":[[9686,9687,9688,-3370,-3401,551,552,553,5696,5697,5698,5699,5700,5701,5702,-7557,-7556,-7555]],"properties":{"prefix":"1.3.2.6.3"}},{"type":"Polygon","arcs":[[-6980,7142,9689,9690]],"properties":{"prefix":"7.4.5.2.1"}},{"type":"Polygon","arcs":[[-981,-4599,-4598,-4597,-4596,-4595,5628,9691,9692,9693,9694,9695,-982]],"properties":{"prefix":"5.1.3.1.2"}},{"type":"Polygon","arcs":[[2149,2150,-1806,-1805,2151,2152,9696,9697,9698,9699,9700]],"properties":{"prefix":"1.5.1.3.3"}},{"type":"Polygon","arcs":[[9701,-7571,-7575,3082,3083,3084,3085,3086,3087,-899,9702]],"properties":{"prefix":"7.4.7.3.1"}},{"type":"Polygon","arcs":[[3577,3578,3579,3580,3581,-4495,-4494,-4493,-4492,-8674,-4501,-7579,-7578,-7577]],"properties":{"prefix":"7.6.4.1.3"}},{"type":"Polygon","arcs":[[9703,9704,9705,9706,5330,-8344,-8345,-1186,-1185,-1184,-1183,-1182,-1181,-1180,5341,9707]],"properties":{"prefix":"7.1.1.4.3"}},{"type":"Polygon","arcs":[[9708,-4584,-4583,3714,3715,3716,3717,3718,-2191,9709,9710,9711,9712,3741]],"properties":{"prefix":"2.3.2.2.1"}},{"type":"Polygon","arcs":[[9713,3497,5149,5150,5151,1211,1212,1213,9714,9715,9716,9717]],"properties":{"prefix":"6.3.5.1.2"}},{"type":"Polygon","arcs":[[6921,6922,6923,-7888,-7887,-7886]],"properties":{"prefix":"8.2.1.1.3"}},{"type":"Polygon","arcs":[[9718,9719,9720,9721,9722,9723,9724,2547,2548,2549,2550,2551,6959,9725,9726]],"properties":{"prefix":"9.8.3.1.1"}},{"type":"Polygon","arcs":[[-7991,-7990,-7989,-3300,-3299,4264,4265,4266,4267,6067,6068,6069,-5499,-5498,-5497]],"properties":{"prefix":"5.3.3.2.4"}},{"type":"Polygon","arcs":[[-1230,-1229,9727,9728,9729,-4130,-4129,-4128,-4127,-4126,-4125,-4124,-1262,-1261,5564,9730,9731,5566,5567,5568,5569,5570,5571,5572]],"properties":{"prefix":"7.2.7.3.1"}},{"type":"Polygon","arcs":[[9732,9733,9734,9735,6636,6637,6638,6639,6640,6641,6642,-4801]],"properties":{"prefix":"2.3.3.6.1"}},{"type":"Polygon","arcs":[[9736,2752,2753,2754,2755,2756,2757,2758,-5477,-5476,-5475,-5474,-5473,-5472,-5471,-6571,9737]],"properties":{"prefix":"4.1.5.5.1"}},{"type":"Polygon","arcs":[[-7176,-7608,-5520,-5519,-7177]],"properties":{"prefix":"1.9.2.3.2"}},{"type":"Polygon","arcs":[[9738,-7183]],"properties":{"prefix":"9.1.7.2.2"}},{"type":"Polygon","arcs":[[-3163,7145,9739,-9438,-9440,-2564,-3164]],"properties":{"prefix":"7.5.5.1.2"}},{"type":"Polygon","arcs":[[-8287,9740,4093,4094,4095,-9520,-9521,-1442,-1441,-1440,-1439,-1438,-1437,-1436,-1435,-1434,-1433,-8288]],"properties":{"prefix":"1.1.2.1.2"}},{"type":"Polygon","arcs":[[-7440,-3409,-3408,-3407,-3406,148,149,5824,5825,5826,5827]],"properties":{"prefix":"6.3.5.2.4"}},{"type":"Polygon","arcs":[[-9692,5626,9741,9742,-3766,-987,-986,-985,-984,-983,-9696,-9695,-9694,-9693]],"properties":{"prefix":"5.1.3.1.1"}},{"type":"Polygon","arcs":[[-5404,-5403,-5402,-5401,-5400,9743,9744,9745,9746,9747,9748,9749]],"properties":{"prefix":"2.4.1.6.3"}},{"type":"Polygon","arcs":[[-8741,157,9750]],"properties":{"prefix":"6.3.5.5.3"}},{"type":"Polygon","arcs":[[9751,9752,9753,-6783,-6782,-6781,-6780,7060,7061,7062,7063,7064,9754]],"properties":{"prefix":"7.6.3.3.3"}},{"type":"Polygon","arcs":[[-9523,-9522,-494,-493,6329,6330,6331,6332,1750,1751,1752,1753,6333,9755,-9525,-9524]],"properties":{"prefix":"2.1.1.2.3"}},{"type":"Polygon","arcs":[[351,860,861,-8285,-8284,350]],"properties":{"prefix":"9.8.6.4.3"}},{"type":"Polygon","arcs":[[9756,-4987,-4986,7024,7025,7026,7027,7028,7029,7030,7031]],"properties":{"prefix":"9.1.2.1.1"}},{"type":"Polygon","arcs":[[9757,5796,9758,5781,9759,9760,9761,9762,9763]],"properties":{"prefix":"7.5.6.3.1"}},{"type":"Polygon","arcs":[[-1595,9764,-6662,-6661,-6660,-1819,-1818,-1817,-1816,-2239,-1602,-1601,-1600,-1599,-1598,-1597,-1596]],"properties":{"prefix":"9.6.1.2.1"}},{"type":"Polygon","arcs":[[-7474,-5226,-5225,-5224,-5223,-5222,-5221,9765,9766,-5208,-5207,-5206,-7473,-7476,-7475]],"properties":{"prefix":"4.4.4.3.1"}},{"type":"Polygon","arcs":[[9767,-9548,-9547,-9546,-9545,-9544,832,833,834,835,836,837,838,839,3689,3690,3691,3692,3693,3694,3695,3696,3697,3698,3699,3700,3701,-5326]],"properties":{"prefix":"3.4.3.2.4"}},{"type":"Polygon","arcs":[[-4649,-4023,-4022,-4021,-4020,-4019,-4018,-4017,-4016,-4015,-4014,-4013,-3913,-3912,-3911,-3910,-3909,-3908,9768,9769,9770,9771,-7195,9772,9773,9774,9775,-5729,-5728,9776]],"properties":{"prefix":"9.3.4.5.1"}},{"type":"Polygon","arcs":[[-7722,7104,-4280,-4279,-4278,-4277,-5852,-5851,-5850,-5849,-5848,-5847,-5846,-7263,-7262,-3041,-3040,-3039,-3038,-3037,-3036,-3035]],"properties":{"prefix":"5.3.5.1.2"}},{"type":"Polygon","arcs":[[9777,6879,-7273]],"properties":{"prefix":"2.6.6.2.4"}},{"type":"Polygon","arcs":[[3920,3921,3922,-1812,-1811,-1810,3923,3924,3925,-4425,-4424,-4423,-4422,-4435,-4434,9778,9779,9780,9781,3918,3919]],"properties":{"prefix":"9.3.5.4.2"}},{"type":"Polygon","arcs":[[-8466,-6273,6303,6304,6305,6306,6307,-1119,-1118,-1117,-1116,-1115,-1114,3360,3361,3362,3363,3364,6308,-5742,-5741,-5740,-8469,-8468,-8467]],"properties":{"prefix":"7.3.2.2.4"}},{"type":"Polygon","arcs":[[2435,2436,2437,2438,5201,5202,2440,-593,-592,-591,-7285,-7284,-7283,-7282,-7281,-7280,-7279]],"properties":{"prefix":"3.1.2.1.3"}},{"type":"Polygon","arcs":[[-9496,782,-8315]],"properties":{"prefix":"8.1.3.1.2"}},{"type":"Polygon","arcs":[[9782,-5256,-5255,-3916,-3915,-3914,4012,4013,4014,4015,4016,4017,-7761,-7760,-7759,-7758,-7757,-7756,-7755,-7754,-7753,4036,4037,4038,4039,9783]],"properties":{"prefix":"9.3.1.6.2"}},{"type":"Polygon","arcs":[[1519,9784,-7030,-7029,-7028,-7027,-7026,-8992,-5016,-662,-661,-660,-659,-658,-657,-656,-655]],"properties":{"prefix":"9.1.2.2.2"}},{"type":"Polygon","arcs":[[-8130,6566,6567,-6031,-6030,-6029,-6028,-6027,-6026,-6050,-6049,-8131]],"properties":{"prefix":"4.3.2.2.4"}},{"type":"Polygon","arcs":[[3301,3302,3303,3304,3305,3306,-3002,-3001,9785,9786,9787,1089,1090,1091,-7289,-7288,-7287]],"properties":{"prefix":"5.3.6.3.9"}},{"type":"Polygon","arcs":[[-7299,-7298,-7297,-7296,9788,588,589,590,591,592,593,594,595,9789]],"properties":{"prefix":"2.6.7.2.3"}},{"type":"Polygon","arcs":[[-7835,-7834,-7833,339,340,-9161,-9160,-7594,-7593]],"properties":{"prefix":"9.4.2.3.4"}},{"type":"Polygon","arcs":[[9790,-1003,-1002,-7776,-6261,6712]],"properties":{"prefix":"5.1.1.2.2"}},{"type":"Polygon","arcs":[[-7327,108,109,110,5643,5644,5645,5646,5647,5648,5649,-7329,-7328]],"properties":{"prefix":"5.3.2.1.5"}},{"type":"Polygon","arcs":[[-7781,-7780,-7779,500,501,502,503,-2199,505,506,3812,3813,3814,3815,-4540,-4539,-4538,-7783,-7782]],"properties":{"prefix":"1.9.3.3.3"}},{"type":"Polygon","arcs":[[9791,9792,69,70,71,72,73,4404,4405,4406,4407,4408,4409,4410,4411,4412,-7340,-7339]],"properties":{"prefix":"4.4.4.1.3"}},{"type":"Polygon","arcs":[[-1404,-1403,-1402,-1401,-5601,9793,9794,6168,6169,2275,9795]],"properties":{"prefix":"1.4.2.1.1"}},{"type":"Polygon","arcs":[[-7799,-9598,-9597,-9596,-4219,-4218,5414,5415,5416,5417,-2806]],"properties":{"prefix":"2.6.2.4.3"}},{"type":"Polygon","arcs":[[6050,3882,-1303,-1302,-1301,-1980,-1979,-1978,-9476,-9490,-9489,-9488,9796]],"properties":{"prefix":"7.5.2.1.1"}},{"type":"Polygon","arcs":[[120,-5231,-7371]],"properties":{"prefix":"6.2.1.4.3"}},{"type":"Polygon","arcs":[[-7815,-7814,-7813,-7812,6028,6029,6030,6031,6032,6033,-7382,-7381,-7380,-7379,-7383,-2215,-2214,-2213,-2376]],"properties":{"prefix":"4.3.2.3.2"}},{"type":"Polygon","arcs":[[9797,-5059,-5058,-5057,-5056,-5055,-5054,-5053,-5052,-5051,-1760,-1804,-1803,-1802,1243,1244,1245,1246,1247]],"properties":{"prefix":"6.1.1.2.1"}},{"type":"Polygon","arcs":[[9798,9799,9800,9801,9802,4912,-8465,-8464,-8463,-8462,3223,3224,4916,4917,4918,4919,4920,4921,4922,4923,4924,4925,4926]],"properties":{"prefix":"7.6.2.3.2"}},{"type":"Polygon","arcs":[[2673,2674,2675,2676,2677,2678,9803,9804,9805,2695,2696,2697,2698,9806,9807,9808,-8506,2672]],"properties":{"prefix":"2.6.5.2.3"}},{"type":"Polygon","arcs":[[9809,9810,9811,9812,-2436,-2435,-2434,-5031,-5030,-5029,9813,9814,9815,3618,3619,3620,3621,3622,3623,3624,9816,9817]],"properties":{"prefix":"3.4.1.1.4"}},{"type":"Polygon","arcs":[[2836,6815,6816,6817,6818]],"properties":{"prefix":"2.6.3.3.1"}},{"type":"Polygon","arcs":[[-8225,-8224,-8223,-8222,-8221,-7826,-7825,-7824,-7831,-7830,-7423,-7422,-7421,-7420]],"properties":{"prefix":"5.1.3.2.2"}},{"type":"Polygon","arcs":[[9818,9819,9820,9821,4192,4193,4194,624,-7436,-7435,-7434,-7433,9822,5071,5072,5073,5074,5075,738]],"properties":{"prefix":"8.1.4.1.2"}},{"type":"Polygon","arcs":[[-8059,-8058,-8057,-8056,9823,6311,326,327,2961,2962,2963,2964,2965,2966,2967,2968,2969,2970,2971,1503,-8060]],"properties":{"prefix":"9.1.5.3.3"}},{"type":"Polygon","arcs":[[9824,9825,-6995,-6997,2271,2272,2273,2274,-6170,-6169,-6168]],"properties":{"prefix":"1.4.2.2.1"}},{"type":"Polygon","arcs":[[48,429,430,431,432,433,6189,6190,6191,-9630]],"properties":{"prefix":"1.7.1.3.3"}},{"type":"Polygon","arcs":[[-9634,-7455,-7454,-7453,3115,-7857,5186,-9635]],"properties":{"prefix":"9.4.4.2.3"}},{"type":"Polygon","arcs":[[-7862,-7861,-7860,-7859,7068,2604,2605,-1217,-1216,-1215,-1214,-1213,-7865,-7864,-7863]],"properties":{"prefix":"7.2.1.4.3"}},{"type":"Polygon","arcs":[[-7465,9826,9827,-4061,-5083,-9063,-9062,-1749,-1748,-1747,-1746,-1745,-1744,-1743,-7466]],"properties":{"prefix":"2.2.2.1.2"}},{"type":"Polygon","arcs":[[6249,6250,-7763,-7762,-3491,6245,6246,6247,6248]],"properties":{"prefix":"6.3.4.1.3"}},{"type":"Polygon","arcs":[[849,850,851,852,853,854,-7880,-7879,-7878,-7877,-7881,-7479]],"properties":{"prefix":"3.4.5.1.3"}},{"type":"Polygon","arcs":[[3009,3010,3011,3012,9828,9829,9830]],"properties":{"prefix":"5.3.2.3.1"}},{"type":"Polygon","arcs":[[-7504,-7503,-9658,-9657,9831,9832,9833,9834,9835,-7905,-7904,-7903,1441,1442,1443,1444,1445,1446,1447]],"properties":{"prefix":"1.3.1.2.4"}},{"type":"Polygon","arcs":[[-793,-9664,9836,9837,3652,3653,-7698,3662,3663,3664,-795,-794]],"properties":{"prefix":"7.8.2.1.3"}},{"type":"Polygon","arcs":[[-7708,-7707,-7706,-7705,1467,1468,9838,9839,9840,9841,9842,1479,1480,1481,-7711,-7710,-7709]],"properties":{"prefix":"9.1.8.1.2"}},{"type":"Polygon","arcs":[[9843,9844,3902,3903,3904,9845,9846,9847,-742,-741,-740,-739,-738,9848,9849]],"properties":{"prefix":"9.3.5.1.1"}},{"type":"Polygon","arcs":[[-7915,-7914,-7913,-7912,6157,6158,-7519,9850,9851,357,358,-613,-7916]],"properties":{"prefix":"3.4.4.7.2"}},{"type":"Polygon","arcs":[[-7524,-7523,-7522,-7521,9852,9853,9854,9855,9856,-7919,-7918,-7917,5882,5883,5884,5885,5886]],"properties":{"prefix":"6.2.1.2.3"}},{"type":"Polygon","arcs":[[-7534,9857,3139,3140,3141,9858,9859,9860,1060,-7535]],"properties":{"prefix":"4.1.3.1.3"}},{"type":"Polygon","arcs":[[-4430,9861,9862,5857,5858,-5245]],"properties":{"prefix":"9.3.5.1.3"}},{"type":"Polygon","arcs":[[-3372,-3371,-9689,-9688,-9687,-7554,-7553,-7552,-7551,-7550,-7558,5705,5706,9863,9864,9865]],"properties":{"prefix":"1.3.2.6.1"}},{"type":"Polygon","arcs":[[9866,-6510,-6509,-9076,1350,1351,1352,1353,-9082,-9081,-9080,-9079]],"properties":{"prefix":"7.3.3.1.3"}},{"type":"Polygon","arcs":[[5424,5425,39,40,2148,-9701,-9700,-9699,-9698,-9697,2153,9867,5423]],"properties":{"prefix":"1.5.1.3.1"}},{"type":"Polygon","arcs":[[-7573,-1319,9868]],"properties":{"prefix":"7.4.7.3.3"}},{"type":"Polygon","arcs":[[-3345,-6511,-9867,-9078]],"properties":{"prefix":"7.3.3.1.2"}},{"type":"Polygon","arcs":[[9869,3558,3559,3560,3561,3562,3563,3564,3565,3566,3567,3568,3569,3570,3571,3572,3573,3574,-7576,-7581,-7580,-937,-936,-935,-934,-933,-932,2071,2072,2073,2074,2075,2076,2077,3589,3590,3591]],"properties":{"prefix":"7.6.4.1.1"}},{"type":"Polygon","arcs":[[-9706,-9705,-9704,9870]],"properties":{"prefix":"7.1.1.4.1"}},{"type":"Polygon","arcs":[[5167,5168,5169,5170,5171,5172,-5142,-5141,-5140,-5139,5173,5174,5175,-7964,-7963,-7962,-7961]],"properties":{"prefix":"3.4.2.5.2"}},{"type":"Polygon","arcs":[[-9710,-2190,-2189,-2188,-2187,-2186,-2185,-6897,-6906,-6905,-6904,3738,3739,3740,-9713,-9712,-9711]],"properties":{"prefix":"2.3.2.2.3"}},{"type":"Polygon","arcs":[[-5191,-8663,9871,-5184,-5183,-5182,3120,3121,3122,3123,3124,3125,3126,6471,6472]],"properties":{"prefix":"9.4.4.3.3"}},{"type":"Polygon","arcs":[[4894,258,-9154,9872,9873,9874]],"properties":{"prefix":"8.1.6.1.1"}},{"type":"Polygon","arcs":[[-9723,-9722,-9721,-9720,-9719,9875,-4783,-4782,-4781,-4780,6958,891,892,893,894,895,896,897,898,899,900,901,902,903,904,2540,2541,2542,2543,2544,2545,2546,-9725,-9724]],"properties":{"prefix":"9.8.3.1.3"}},{"type":"Polygon","arcs":[[4287,-8383,-8382,-8381,-8380,-8379,-3306,-7988,-7994,-7993,-7992,4286]],"properties":{"prefix":"5.3.3.2.2"}},{"type":"Polygon","arcs":[[9876,9877,-6330,-492,-491,-490,-489,584,1660,4080,4081,4082,4083,4084,4085,4086,4087,4088,4089,1748,1749,-6333]],"properties":{"prefix":"2.1.1.3.1"}},{"type":"Polygon","arcs":[[6484,9878,9879,6473,1392,-7607,6478,6479,6480,6481,6482,6483]],"properties":{"prefix":"1.3.4.4.1"}},{"type":"Polygon","arcs":[[-1271,-1270,-1269,-1268,-1267,-1266,-1265,-4985,-4984,-4983,-4982,5665,5666,5667,5668,-9176,-9175,-9174,-9173,-9172]],"properties":{"prefix":"7.2.4.2.3"}},{"type":"Polygon","arcs":[[-9257,-7543,-7542,-7541,-7540,-9303,-1634,-1633,-1632,-1631,-1630,-1629,-8672,-8671,-8051,-8050,6350,6351,-9256]],"properties":{"prefix":"7.6.3.1.4"}},{"type":"Polygon","arcs":[[-3802,-3801,-3800,6182,9880,9881,9882,3868,3869,6177,6178,6179,6180,6181,-3804,-3803]],"properties":{"prefix":"2.4.4.1.1"}},{"type":"Polygon","arcs":[[-9563,-9562,-9561,-9560,6088,6089,6090,6091,6092,-9564]],"properties":{"prefix":"6.3.3.2.4"}},{"type":"Polygon","arcs":[[-3758,-3757,-8397,-8396,-8395,-8394,-8393,9883,9884,5285,9885,9886,9887,-4165,-4164,-4163,692,693,694,695,-3762,-3761,-3760,-3759]],"properties":{"prefix":"8.2.2.1.2"}},{"type":"Polygon","arcs":[[6100,6101,6102,545,546,547,548,549]],"properties":{"prefix":"1.3.3.1.1"}},{"type":"Polygon","arcs":[[5615,9888,5612,5613,5614,-1611,-1610,-1609,-1608,-1607,-1606,-1658,-1657,-959,-958,3455]],"properties":{"prefix":"7.6.6.7.1"}},{"type":"Polygon","arcs":[[9889,272,-8010,-8009,-8018,-8017,9890]],"properties":{"prefix":"8.1.6.6.1"}},{"type":"Polygon","arcs":[[6010,6011,6012,-4665,-4664,-5429,-5428,-5412,-5411,-5410,-5409,-5408,-5407,-5406,-5405,-9750,-9749,-9748,-9747,-9746,9891,9892]],"properties":{"prefix":"2.4.1.6.1"}},{"type":"Polygon","arcs":[[9893,9894,-4930,5618,5619,5620,5621,5622,5623,5624,5625,202,203,-8922,-8921,-9145,-9144,-9143,-9147,-9146,-8924,3204,3205,3206,3207,3208,3209,3210,3211,3212,3213,3214,3215,3216,3217,3218,-4916]],"properties":{"prefix":"7.6.2.4.1"}},{"type":"Polygon","arcs":[[9895,-5135,819,820,821,822,823,824,825,-3689,-3688,-5166,9896,9897,9898,-5162,-5161,-5160,-5159,-5176]],"properties":{"prefix":"3.4.2.4.1"}},{"type":"Polygon","arcs":[[-8039,-8038,-8037,5977,5978,-1137,-1136,-1135,-1363,-1362,-1361,-1360,5979,5980,-8042,-8041,-8040]],"properties":{"prefix":"7.4.4.3.2"}},{"type":"Polygon","arcs":[[9899,1002,1003,1004,1005,1006,1007,1008,-7655,-7654,1013,-5994,-5993,-5992,-5991,-5990,9900]],"properties":{"prefix":"4.8.3.3.1"}},{"type":"Polygon","arcs":[[9901,9902,-9753,-9752,-9755,7065,7066,-3211,-3210,-3209,-3208,-6354,-6353,-6352,-6351,-6350,-6349,-6348,-6347,-6346,-6345,-6344,-6788,-6787,-6786,-6785,9903]],"properties":{"prefix":"7.6.3.3.1"}},{"type":"Polygon","arcs":[[1527,1528,1529,-3941,-3940,-3939,-3938,-3937,-3936,-3935,4838,4839,4840,4841,9904,4837]],"properties":{"prefix":"4.8.1.2.1"}},{"type":"Polygon","arcs":[[-7665,-7664,-7663,-7662,-5818,-5817,-5816,-5815,-5814,7088,-2992,-2991,-2990,7089,7090,-3044,4292,4293,4294,2396]],"properties":{"prefix":"5.3.1.2.2"}},{"type":"Polygon","arcs":[[-7597,-7596,-995,-994,9905,9906,9907]],"properties":{"prefix":"5.1.1.4.3"}},{"type":"Polygon","arcs":[[9908,1768,1769,1770,1771,1772,1773,1774,-7673]],"properties":{"prefix":"6.2.1.6.5"}},{"type":"Polygon","arcs":[[-5247,-8127,-8126,9909,9910,-9020]],"properties":{"prefix":"9.3.5.3.3"}},{"type":"Polygon","arcs":[[917,9911,-7398,-7400,-4550,6500,9912,9913,9914,914,915,916]],"properties":{"prefix":"9.8.2.2.2"}},{"type":"Polygon","arcs":[[9915,9916,9917,-6072,-6071,-3029,-3028,-3027,-3026,-8321,-8320,-8319]],"properties":{"prefix":"5.3.3.1.3"}},{"type":"Polygon","arcs":[[2666,9918,9919,6379,6380,2649,-8441,-8442,598,599,600,601,602,2655,2656,2657,2658,2659,2660,2661,2662,2663,2664,2665]],"properties":{"prefix":"2.6.7.1.1"}},{"type":"Polygon","arcs":[[7107,7108,4350,-5891,-5890,-5889,-5888,-5887,-5886,-5885,-5884,9920,7106]],"properties":{"prefix":"6.2.1.1.1"}},{"type":"Polygon","arcs":[[2342,2343,2344,2345,2346,443,444,445,446,447,448,449,3672,3673,3674,-7703,-7702,-7701,-7700,-7699,-6677,-6676,-6675,9921]],"properties":{"prefix":"1.9.1.3.1"}},{"type":"Polygon","arcs":[[9922,9923,-8455,-8454]],"properties":{"prefix":"6.3.5.4.1"}},{"type":"Polygon","arcs":[[-8072,-8078,9924,9925,-8073]],"properties":{"prefix":"1.9.3.2.1"}},{"type":"Polygon","arcs":[[-5008,-5007,-5006,-5005,-5004,-5003,9926,-7720]],"properties":{"prefix":"9.1.2.4.1"}},{"type":"Polygon","arcs":[[9927,3634,-4727,-4726,-4725,-8914,-4735,-4734]],"properties":{"prefix":"6.3.7.1.1"}},{"type":"Polygon","arcs":[[-8461,-4407,9928]],"properties":{"prefix":"4.4.4.2.1"}},{"type":"Polygon","arcs":[[311,312,313,314,-5320,-5319,-5318,-5317,-5324,-5323,-5322,-5321,663,664,-7733,-7732,-7731]],"properties":{"prefix":"8.5.2.2.5"}},{"type":"Polygon","arcs":[[-7726,-7725,-7724,-7734,5482,5483,9929,-8802,-8801,-8800,-8799]],"properties":{"prefix":"8.5.2.2.3"}},{"type":"Polygon","arcs":[[-2680,-2679,-2678,-2677,-2676,-4238,-4237,-4236,-4235,-2827,-2826,-2825,-2824,-2823,9930,9931,9932,9933,-2813,-2812,-2811,-2810,-2809,-2808,-2807,-5418,-5417,-5416,9934]],"properties":{"prefix":"2.6.2.5.1"}},{"type":"Polygon","arcs":[[9935,9936,1311,1312,1313,1314,1315,1316,1317,1318,1319,1320,1321,-7570,-7569,-7568,-7567,-7566,1336]],"properties":{"prefix":"7.3.3.2.4"}},{"type":"Polygon","arcs":[[9937,9938,-8124,-9347,-3442,-3441,-3440,-3439,-3438,-3437,-3436,-3435,4544,4545,9939]],"properties":{"prefix":"6.3.2.2.1"}},{"type":"Polygon","arcs":[[-8502,-8501,-8500,-8133,-8132,-6046,-6045,-6044,-6043,-6042,-8503]],"properties":{"prefix":"4.3.2.2.2"}},{"type":"Polygon","arcs":[[-6054,-6053,-6052,3888,3889,-3172,-3171,-3170,-3169,9940,9941]],"properties":{"prefix":"7.5.2.2.3"}},{"type":"Polygon","arcs":[[-9288,2883,4736,4737,4738,4739,4740,4741,4742,4743,4744,4745,4746,4747,9942,9943,-9290,-9289]],"properties":{"prefix":"9.1.3.1.5"}},{"type":"Polygon","arcs":[[54,2350,2351,2352,2353,2354,-7098,-7097,9944,9945,53]],"properties":{"prefix":"4.2.2.3.1"}},{"type":"Polygon","arcs":[[9946,2452,-8142,-8141]],"properties":{"prefix":"1.8.3.1.2"}},{"type":"Polygon","arcs":[[9947,-3969,-4029,-4028,-4027,-8180,-8179,4652,4653,9948,9949]],"properties":{"prefix":"9.3.4.1.5"}},{"type":"Polygon","arcs":[[92,93,5754,5755,5756,-2404,-2403,-8150,-8149,-8148,-8147]],"properties":{"prefix":"5.2.1.2.7"}},{"type":"Polygon","arcs":[[-5961,-5960,-5959,-5958,-5957,223,224,225,226,227,-8550,9950,9951,9952,9953,9954,1652,1653,1654,9955,-5962]],"properties":{"prefix":"7.7.2.3.1"}},{"type":"Polygon","arcs":[[9956,9957,4403,-4116,-4115,-4114,-4113,-4112,-4111,-4110,68,-9793,-9792,-7342,-7341,4415,4416,4417,4418,2128,2129,2130,2131,2132,2133,2134,2135,-1371,-1555,-1554]],"properties":{"prefix":"4.4.4.1.1"}},{"type":"Polygon","arcs":[[-8170,-8169,-8168,5944,-1175,-1174]],"properties":{"prefix":"7.1.1.1.3"}},{"type":"Polygon","arcs":[[6635,-9736,9958,9959,-9169,9960,9961,9962,9963,9964,9965,6628,6629,6630,6631,6632,6633,6634]],"properties":{"prefix":"2.3.3.6.3"}},{"type":"Polygon","arcs":[[-5600,6166,6167,-9795,-9794]],"properties":{"prefix":"1.4.2.1.3"}},{"type":"Polygon","arcs":[[-6607,-6606,-6605,-5525,-5524,-5523,-6615,-6614,-6613,-6612,9966]],"properties":{"prefix":"1.9.2.5.1"}},{"type":"Polygon","arcs":[[-4851,-4850,44,-6189,-6195,-6194,-2638,-4855,-4854,-4853,9967]],"properties":{"prefix":"1.7.1.2.1"}},{"type":"Polygon","arcs":[[9968,-5272,5859,5860,5861,5862,5863,-1078,-1077,-1076,-7374,-7373,-7372,5870,5871,5872,9969]],"properties":{"prefix":"6.2.1.4.1"}},{"type":"Polygon","arcs":[[1636,214,215,216,-6060,-4955,-4972,-4971,9970]],"properties":{"prefix":"7.7.1.2.6"}},{"type":"Polygon","arcs":[[9971,9972,9973,9974,9975,5689,5690,5691,5692,-1872,-1871,2382,2383,2384,-8203]],"properties":{"prefix":"5.3.6.2.3"}},{"type":"Polygon","arcs":[[-7393,-7392,-7391,-7390,-7389,-7817,1412,1413,1414,1415,1416,1417,-3400,-3399,-7396,-7395,-7394]],"properties":{"prefix":"1.3.4.2.4"}},{"type":"Polygon","arcs":[[3659,3660,-7697]],"properties":{"prefix":"7.8.2.1.5"}},{"type":"Polygon","arcs":[[-6809,-7403,-7402,1270,1271,1272,-7822,-7821,-6810]],"properties":{"prefix":"7.3.1.1.2"}},{"type":"Polygon","arcs":[[-9815,-9814,-5028,-5032,3610,3611,3612,3613,3614,3615,3616,3617,-9816]],"properties":{"prefix":"3.4.1.1.6"}},{"type":"Polygon","arcs":[[-6075,-6074,1979,-1300,-1299,-1298,-1297,-7613,-7612,2499,9976,9977,9978]],"properties":{"prefix":"7.2.3.2.2"}},{"type":"Polygon","arcs":[[-8220,1866,-7829]],"properties":{"prefix":"5.1.3.2.4"}},{"type":"Polygon","arcs":[[-7432,-7431,-7430,-7429,-7832,5068,5069,5070,-9823]],"properties":{"prefix":"8.1.4.1.4"}},{"type":"Polygon","arcs":[[5371,5372,5373,5374,5375,5376,-2862,-2861,-2860,4255,4256,4257,4258,4259,-4589,-2925,9979,9980]],"properties":{"prefix":"7.4.4.6.4"}},{"type":"Polygon","arcs":[[-8240,-8239,-8238,-8237,-8236,-6930,-6929,-6928,-569,-568,-567,-2327,-2326,-2325,-2324,9981,9982,9983,9984,-8243,-8242,-8241]],"properties":{"prefix":"2.4.1.3.3"}},{"type":"Polygon","arcs":[[243,4527,4528,-4519,-4518,-4517,9985,9986,9987,9988,242]],"properties":{"prefix":"7.8.1.3.2"}},{"type":"Polygon","arcs":[[-2957,-2956,-2955,-2954,-2953,-2952,-2951,-8253,-8257,-8256,5006,5007,5008,5009,5010,5011,9989,9990]],"properties":{"prefix":"9.1.2.3.2"}},{"type":"Polygon","arcs":[[5708,3144,-835,-834,-833,-832,-8608,-8607,-8610,-8609]],"properties":{"prefix":"4.1.3.2.1"}},{"type":"Polygon","arcs":[[-1221,9991,-4139,-4138,-4137,-4136,-4135,-4134,-4133,-5564,-4808,-4807,-4806,-4805]],"properties":{"prefix":"7.2.7.1.1"}},{"type":"Polygon","arcs":[[-6032,-6568,-6567,-6566,3537,3538,3539,3540,-7868]],"properties":{"prefix":"4.3.2.4.2"}},{"type":"Polygon","arcs":[[-7182,-7181,4697,4698,4699,4700,4701,4702,1496,1497,1498,1499,-7184,-9739]],"properties":{"prefix":"9.1.7.2.4"}},{"type":"Polygon","arcs":[[9992,9993,9994,-9384,-9383,-8272,-8278,-8277,-877,-876,-6453,-6452,-6451,-6450,-7142]],"properties":{"prefix":"4.1.2.4.4"}},{"type":"Polygon","arcs":[[9995,6847,2188,-7885,-7884,-7883,-7882,4067,4068,4069,6848,6849,9996]],"properties":{"prefix":"2.2.1.7.2"}},{"type":"Polygon","arcs":[[37,38,-5426,-8941,-8940,-8939,-7894]],"properties":{"prefix":"1.5.1.2.3"}},{"type":"Polygon","arcs":[[-5102,9997,-7998,1032,1033,1034]],"properties":{"prefix":"4.3.4.6.1"}},{"type":"Polygon","arcs":[[-7845,-7844,-7843,-3650,-3649,4368,4369,4370,4371,4372,4373,-7846]],"properties":{"prefix":"7.8.1.7.2"}},{"type":"Polygon","arcs":[[-4475,-4474,-4473,-6391,-6390,-6389,-6388,-6387,-6386,9998,9999,10000,6809,6810,6811,6812,10001,-4476]],"properties":{"prefix":"7.3.1.2.2"}},{"type":"Polygon","arcs":[[-8113,-8112,-9405,-9404,302,303,304,-5488,-5487,-5486]],"properties":{"prefix":"8.5.2.1.5"}},{"type":"Polygon","arcs":[[10002,287,-9407,-9406,-9410]],"properties":{"prefix":"8.3.1.2.2"}},{"type":"Polygon","arcs":[[-9898,-9897,-5165,-5164,-5163,-9899]],"properties":{"prefix":"3.4.2.4.2"}},{"type":"Polygon","arcs":[[-9801,-9800,-9799,4927,10003,10004,-9802]],"properties":{"prefix":"7.6.2.3.1"}},{"type":"Polygon","arcs":[[-8254,4990,4991,4992,4993,4994,4995,4996,4997,4998,4999,5000,5001,5002,5003,-8255]],"properties":{"prefix":"9.1.2.3.4"}},{"type":"Polygon","arcs":[[-9857,-9856,-9855,-9854,-9853,-7520,-5266,-5265,-5277,1796,1797,1798,1799,1800,1235,1236,-7920]],"properties":{"prefix":"6.2.1.2.5"}},{"type":"Polygon","arcs":[[5348,5349,5350,-2702,-2701,-2700,-2699,-2698,-2697,-2696,-2695,-2694,-2693,5351,5352,10005]],"properties":{"prefix":"2.6.6.1.2"}},{"type":"Polygon","arcs":[[-7536,7041,10006]],"properties":{"prefix":"4.1.3.1.1"}},{"type":"Polygon","arcs":[[10007,2301,10008,10009]],"properties":{"prefix":"2.3.3.7.1"}},{"type":"Polygon","arcs":[[3,-4101,-4100,-4099,-4098,-4097,-4096,-4095,-7924,-7923,-7922,-4108,-4107,10010,-7548,-7547,2]],"properties":{"prefix":"1.1.1.1.2"}},{"type":"Polygon","arcs":[[7120,2565,2566,2567,2568,-6007,-6008,-5799,-5798,-5797,-5796,2575,2576,2577,10011]],"properties":{"prefix":"7.5.6.1.1"}},{"type":"Polygon","arcs":[[10012,-7932,6828,-2770]],"properties":{"prefix":"4.1.4.3.1"}},{"type":"Polygon","arcs":[[-4741,-4740,-4739,-4738,-4737,2884,2885,10013,10014,1518,-705,-704,-703,-702,-701,-700,-699,-698,-697,-696,10015,10016]],"properties":{"prefix":"9.1.3.2.2"}},{"type":"Polygon","arcs":[[10017,-640,-639,10018,10019,-4378,-4377,-4376,-4375,-4374,10020,10021,10022,10023]],"properties":{"prefix":"7.8.1.6.2"}},{"type":"Polygon","arcs":[[10024,6548,6549,6550,6551,6552,10025,10026,10027,416,417,10028]],"properties":{"prefix":"2.4.1.5.3"}},{"type":"Polygon","arcs":[[6116,6117,6118,6119,6120,6121,6122,6123,6124,6125,6126,10029,10030,10031]],"properties":{"prefix":"6.3.3.4.4"}},{"type":"Polygon","arcs":[[441,442,-2347,-2346,-2345,-2344,-2621,-2620,-8356,-8355,-8690,-8689,-8688]],"properties":{"prefix":"1.7.1.4.2"}},{"type":"Polygon","arcs":[[1388,1389,1390,14,15,3383,3384,3385,3386,3387,3388,3389,3390,3391,-9009,-9008,-9007,-8691]],"properties":{"prefix":"1.3.3.6.4"}},{"type":"Polygon","arcs":[[6518,6519,6520,6521,6522,-5988,-8370,-8377,-8376,-8696]],"properties":{"prefix":"7.4.4.2.2"}},{"type":"Polygon","arcs":[[-7983,-7982,-7981,3938,3939,3940,1530,1531,1532,1533,-7606,-7605,-7604,-7603,-7602,5991,5992,5993,1014,1015,1016,1017,10032,-7984]],"properties":{"prefix":"4.8.3.2.3"}},{"type":"Polygon","arcs":[[-6056,-6055,-9942,-9941,-3168,10033]],"properties":{"prefix":"7.5.2.2.1"}},{"type":"Polygon","arcs":[[-8704,10034,-4363,-4079,-2601,-8705]],"properties":{"prefix":"7.2.5.1.2"}},{"type":"Polygon","arcs":[[-9454,-9453,-9456,-2045,-4635,-4634,10035,10036]],"properties":{"prefix":"8.2.1.6.3"}},{"type":"Polygon","arcs":[[-2085,-2084,-2083,-2082,1028,1029,-8005,-8004,-8003,-8002,-8001,-7056,-7055]],"properties":{"prefix":"4.3.4.6.3"}},{"type":"Polygon","arcs":[[10037,3711,3712,3713,4582,4583,4584,3745,-549,-548,-547,-546,-545,-544,-543,4585,4586]],"properties":{"prefix":"2.3.2.1.1"}},{"type":"Polygon","arcs":[[2010,-6202,-6201,-6200,-9185,-8403,-9187,-9186,-8014,-8013,-8012,-8011]],"properties":{"prefix":"8.1.6.6.3"}},{"type":"Polygon","arcs":[[-9566,4134,4135,-6706,-6705,-6704,-9568,-9567]],"properties":{"prefix":"7.2.4.5.3"}},{"type":"Polygon","arcs":[[948,7035,-8021,-8020,-8019,-8024,10038,10039,-3925,7034,-1840,-1839,-1838,-1837,-1836,-1835,-1834,-1833]],"properties":{"prefix":"9.3.6.1.2"}},{"type":"Polygon","arcs":[[-8029,-8028,-8027,-2892,-2891,-687,-686,-8031,-8030]],"properties":{"prefix":"9.1.2.5.3"}},{"type":"Polygon","arcs":[[4709,4710,-3066,-1315,-1314,-1313,-1312,-1311,-2291,4711,4712,4713,10040,4716,4717,4718,10041,4708]],"properties":{"prefix":"7.4.8.4.1"}},{"type":"Polygon","arcs":[[10042,10043,-2936,-4261,-4260,-8988]],"properties":{"prefix":"7.4.6.2.2"}},{"type":"Polygon","arcs":[[-7510,-6118,10044,10045,10046,10047,10048,-1787,-1786,-1785,-1784,-7512,-7511]],"properties":{"prefix":"6.3.3.5.4"}},{"type":"Polygon","arcs":[[6762,6763,10049,6761]],"properties":{"prefix":"7.5.4.1.2"}},{"type":"Polygon","arcs":[[-4627,-4626,-4625,-4624,-4623,-4622,-4621,-4620,-4619,-8439,-8438,-8437,3758,3759,3760,3761,696,697,698,699,700,701,702,703,704,705,706,707,708,709,5439,10050]],"properties":{"prefix":"8.2.1.8.1"}},{"type":"Polygon","arcs":[[-6794,10051,-647,-646,-645,-644,-643,-642,-641,-10018,-10024,-10023,-10022,-10021,-4373,-4372,-4371,-6797,-6796,-6795]],"properties":{"prefix":"7.8.1.6.1"}},{"type":"Polygon","arcs":[[10052,10053,-6232,-6231,-6230,-1580,-7016,-7019,-7018,-7017,3255,3256,3257,-6758,-6757,-6756,-6755,-6688,-6687,-6243,-6242,-6241,-6240,-6239,-6238,-6237,-6236,-6235,-6234,10054]],"properties":{"prefix":"9.4.2.4.1"}},{"type":"Polygon","arcs":[[-5533,-5532,-5531,-5530,6103,6104,6105,-8063,-8062,-8061,509,510,511,512,513,514,515,516,10055]],"properties":{"prefix":"1.9.2.8.2"}},{"type":"Polygon","arcs":[[4932,10056,10057,10058,10059,-8447,-8446,-8445,-8444]],"properties":{"prefix":"7.5.3.3.4"}},{"type":"Polygon","arcs":[[-5755,94,95,96,97,98,-2382,-7714,-7713,-7718,-7717,-7716,-7715,-2411,-2410,-2409,-2408,-2407,10060]],"properties":{"prefix":"5.2.1.3.1"}},{"type":"Polygon","arcs":[[-8459,77,78,79,970,971,972,973,974,5219,5220,5221,5222,5223,5224,-8460]],"properties":{"prefix":"4.4.4.2.3"}},{"type":"Polygon","arcs":[[-9221,-9220,-9219,-9218,-9217,-9225,-9224,10061,10062]],"properties":{"prefix":"7.5.3.2.1"}},{"type":"Polygon","arcs":[[2110,56,57,-9096,-9095,-9094,-6528,-6539,-8107,2109]],"properties":{"prefix":"4.4.3.2.3"}},{"type":"Polygon","arcs":[[5255,5256,10063]],"properties":{"prefix":"9.3.1.5.4"}},{"type":"Polygon","arcs":[[10064,-8560,-7072,-7071,-4188,-4187,-4210,-4209,-4208,743]],"properties":{"prefix":"8.1.3.4.3"}},{"type":"Polygon","arcs":[[-8138,-8817,-2268,-2267,-2266,-2265,10065,-8139]],"properties":{"prefix":"1.8.3.1.4"}},{"type":"Polygon","arcs":[[10066,10067,-8518,-8517,10068,10069,10070,5656,5657,5658,5659,5660,3036,3037,10071]],"properties":{"prefix":"5.3.2.1.1"}},{"type":"Polygon","arcs":[[-8522,-8521,-8520,-1847,-1846,-1845,-1844,88,89,-8152,-8151,-2400,-2399,-2398,-2397,-2396,-2395,-8523]],"properties":{"prefix":"5.2.1.2.5"}},{"type":"Polygon","arcs":[[-7786,-8155,-8154,-8153]],"properties":{"prefix":"2.4.5.1.2"}},{"type":"Polygon","arcs":[[-8172,-8171,-1167,-1166,-1165,-1164,-1163,-1162,-1161,5945,10072]],"properties":{"prefix":"7.1.1.1.1"}},{"type":"Polygon","arcs":[[10073,10074,-6135,-6134,-6133,6171,6172,10075,10076,10077,10078,10079]],"properties":{"prefix":"5.1.2.2.1"}},{"type":"Polygon","arcs":[[924,925,926,6663,6664,10080,-7531,-7530,-1820,6659,6660,6661,6662,-1593,-1592,922,923]],"properties":{"prefix":"9.6.1.1.2"}},{"type":"Polygon","arcs":[[-1925,-1924,-1923,-1922,-1921,-5751,-5750,-9605,-9604,-9603,-9602]],"properties":{"prefix":"8.4.2.2.4"}},{"type":"Polygon","arcs":[[-8184,-8183,-5114,1944,1945,1946,1947,1948,2584,2585,-8841,-8840,-8839,2587]],"properties":{"prefix":"7.2.1.5.3"}},{"type":"Polygon","arcs":[[1632,1633,1634,1635,-9971,-4970,-4969,-4968,-4967,10081,10082,10083,10084]],"properties":{"prefix":"7.7.1.2.4"}},{"type":"Polygon","arcs":[[-5541,-5563,-5562,-5561,-5560,-5559,-5558,-561,-560,-8199,-8198,-8197]],"properties":{"prefix":"2.3.3.1.3"}},{"type":"Polygon","arcs":[[3309,10085,5688,-9976,-9975,-9974,-9973,-9972,-8202,-8206,-8205,-8204,3308]],"properties":{"prefix":"5.3.6.2.1"}},{"type":"Polygon","arcs":[[554,10086,6731,6732,6733,-6720,-6719,-6718,-6717,-6716,-3470,10087,10088,10089,10090,10091,10092,-5699,-5698,-5697]],"properties":{"prefix":"1.3.2.4.1"}},{"type":"Polygon","arcs":[[2710,-8556,-8555,-8554,-8553,-8213,-8219,-8218,2705,2706,2707,2708,2709]],"properties":{"prefix":"2.6.5.1.2"}},{"type":"Polygon","arcs":[[-5920,-6834,-6833,7112,-1715,-1714,2180,2181,2182,2183,2184,2185,2186,2187,-6848,-6847,-6851,-6850,-6849,4070,4071,4072,4073,4074,-1741,10093,-5921]],"properties":{"prefix":"2.2.1.6.2"}},{"type":"Polygon","arcs":[[29,-8870,-8869,-8868,6556,10094,10095,10096]],"properties":{"prefix":"1.5.1.1.1"}},{"type":"Polygon","arcs":[[-4729,-4728,3642,3643,3644,-3503,2137,2138,2139,2140,2141,2142,2143,10097,-4730]],"properties":{"prefix":"6.3.7.4.2"}},{"type":"Polygon","arcs":[[-8581,-8580,1863,-8230,-8229,-8228,-8227]],"properties":{"prefix":"5.1.3.2.6"}},{"type":"Polygon","arcs":[[5630,-8890,-8889,10098,-9507,-9506,10099]],"properties":{"prefix":"4.6.1.1.1"}},{"type":"Polygon","arcs":[[10100,10101,10102,-4560,-8673,-1936,-1199,-1198,-1197,-1196,-5341,-5340,-5339,-5338]],"properties":{"prefix":"7.1.1.6.1"}},{"type":"Polygon","arcs":[[-4677,-4676,-4675,-4674,-4673,-4672,-4671,-4670,-4669,-8235,-8234,-9985,-9984,-9983,-9982,-2323,-2322,-2321,-2320,-2319,-2318,-2317,-2316,-2315,10103]],"properties":{"prefix":"2.4.1.3.1"}},{"type":"Polygon","arcs":[[-5372,-5371,-5370,-5369,-5368,-5367,6906,10104,10105]],"properties":{"prefix":"7.4.4.5.1"}},{"type":"Polygon","arcs":[[871,10106,10107,-9277,2776,2777,2778,2779,2780,2781,2782,6216,6217,6218,6219,6220,2785]],"properties":{"prefix":"9.8.5.1.3"}},{"type":"Polygon","arcs":[[-8604,10108,10109,10110,10111,-4057,-4056,-4055,5083,5084,5085,5086,5087,-516,-515,-1758,-1757,-1756,-1755,-1754,-1753,10112]],"properties":{"prefix":"2.2.2.2.3"}},{"type":"Polygon","arcs":[[10113,10114,4956,4957,4958,4959,-8260,-8259,-8258,-8263,-8262]],"properties":{"prefix":"7.7.1.3.2"}},{"type":"Polygon","arcs":[[10115,-8915,-6476,-6866,-6865,10116]],"properties":{"prefix":"1.3.4.6.1"}},{"type":"Polygon","arcs":[[-6318,10117,10118,2947,-8363,-8362,-8361]],"properties":{"prefix":"9.1.5.1.1"}},{"type":"Polygon","arcs":[[-8271,-8270,5060,5061,1249,1250,1251,1252,1253]],"properties":{"prefix":"6.1.1.1.5"}},{"type":"Polygon","arcs":[[10119,6015,6016,6017,6018,6019,-7893,-7892,-7891,-7890,2162,2163,2164,2165,2166]],"properties":{"prefix":"1.5.1.2.1"}},{"type":"Polygon","arcs":[[10120,10121,10122,2126,2127,-4419,-4418,-4417,-4416,-4415,-4414,-4413,-4412,10123,10124,10125]],"properties":{"prefix":"4.4.4.4.2"}},{"type":"Polygon","arcs":[[3468,3469,3470,3471,3472,3473,5193,5194,-8286,5199,10126,10127,10128]],"properties":{"prefix":"1.3.1.1.1"}},{"type":"Polygon","arcs":[[4886,4887,4888,4889,4890,4891,4892,-1528,-1527,-1526,-1525,-7902,-7901,-2135,-2134,-2133,-2132,-2131,-2130,-2129,-2128,-2127,-2126,-2125,-2124,-2123,-2122,-2121,10129]],"properties":{"prefix":"4.6.1.2.1"}},{"type":"Polygon","arcs":[[10130,10131,6929,6930,6931,10132,10133,10134,-578,-577,-576,-575,-574,-573]],"properties":{"prefix":"2.4.1.4.1"}},{"type":"Polygon","arcs":[[10135,4735,2872,2873,2874,-9293,-9292,-9291,-9944,-9943,4748,10136]],"properties":{"prefix":"9.1.3.1.2"}},{"type":"Polygon","arcs":[[1328,1329,1330,1331,1332,10137,10138,1327]],"properties":{"prefix":"7.3.3.3.1"}},{"type":"Polygon","arcs":[[10139,7015,-1579,-1578,-1577,-1576,-1575,-1574,3245,3246,3247,3248,3249,3250,3251,3252,3253,3254,7016,7017,10140]],"properties":{"prefix":"9.4.2.5.2"}},{"type":"Polygon","arcs":[[7167,10141,10142,10143]],"properties":{"prefix":"4.8.3.1.1"}},{"type":"Polygon","arcs":[[-1892,-1891,-1890,-1889,-1888,-1887,-1886,-1885,-1884,2296,-6626,-6625,-4802,-6643,-6642,-6641,-8660,-8659,-8658]],"properties":{"prefix":"2.3.3.4.6"}},{"type":"Polygon","arcs":[[5316,5317,5318,5319,315,316,317,-8532,-8531,-8530,-8529,-8528,-8527,-8526,657,658,659,10144]],"properties":{"prefix":"8.5.2.3.1"}},{"type":"Polygon","arcs":[[2302,2303,2304,2305,2306,10145,-10010,-10009]],"properties":{"prefix":"2.3.3.7.3"}},{"type":"Polygon","arcs":[[4753,10146,4751,163,164,165,10147,10148,10149,10150,10151,4344,4345,4346,4752]],"properties":{"prefix":"6.4.1.2.1"}},{"type":"Polygon","arcs":[[912,913,-9915,-9914,-9913,6501,6502,-2613,-7378,-8611,-8615,-8614,-8613,-8612,908,909,910,911]],"properties":{"prefix":"9.8.2.2.3"}},{"type":"Polygon","arcs":[[-7927,-7926,-618,5045,5046,-805,-804,-803,5047,10152,-7930,-7929,-7928]],"properties":{"prefix":"7.8.4.1.2"}},{"type":"Polygon","arcs":[[10153,4401,2840,-8667]],"properties":{"prefix":"2.6.3.1.5"}},{"type":"Polygon","arcs":[[3599,10154,10155,-8570,-8569]],"properties":{"prefix":"3.4.1.1.2"}},{"type":"Polygon","arcs":[[-4745,-4744,-4743,-4742,-10017,-10016,-695,-694,10156]],"properties":{"prefix":"9.1.3.2.1"}},{"type":"Polygon","arcs":[[-9873,-9155,260,261,262,263,4895,-8342,-8341,-8340,-8343,4906,10157,-9874]],"properties":{"prefix":"8.1.6.1.5"}},{"type":"Polygon","arcs":[[2332,2333,-6672,-6671,-6685,-6684,-6683,-6682,10158]],"properties":{"prefix":"1.9.1.1.1"}},{"type":"Polygon","arcs":[[3500,-7439,-7438,5836,-5779,-5778,-5777,1206,1207,10159,3499]],"properties":{"prefix":"6.3.5.2.1"}},{"type":"Polygon","arcs":[[-6364,-6363,-6362,-1380,-1379,-1378,-1377,-1376,-1375,6790,-1459,-1458,-1457,-1456,-1455,-1454,-1453,10160]],"properties":{"prefix":"1.2.1.5.1"}},{"type":"Polygon","arcs":[[10161,4725,4726,3635,3636,3637,3638,3639,3640,-8695,10162,10163,10164,1196,1197,1198,1199,1200,1201,1202,-3518,-3517,-3516,-3515]],"properties":{"prefix":"6.3.7.3.1"}},{"type":"Polygon","arcs":[[3935,-7987,-7986,-7985,-10033,1018,1019,1020,1021,5994,10165,10166]],"properties":{"prefix":"4.8.3.2.1"}},{"type":"Polygon","arcs":[[10167,10168,10169,5034,10170,10171,10172,380,381]],"properties":{"prefix":"2.6.4.2.1"}},{"type":"Polygon","arcs":[[-8701,-8700,-8699,6278,-8385,-8384,-8388,-8387,-8386,3356,-8702]],"properties":{"prefix":"7.3.2.4.2"}},{"type":"Polygon","arcs":[[3876,405,406,3877,3878,3879,3880,3881,-3809,-3808,-3807,-3806,-3805,-6182,-6181,-6180,-6179,10173,10174,-7970,-7969,3874,3875]],"properties":{"prefix":"2.4.4.2.4"}},{"type":"Polygon","arcs":[[-9026,250,-8710]],"properties":{"prefix":"8.1.5.3.2"}},{"type":"Polygon","arcs":[[6560,6561,6562,6563,-4700,-4699,-4698,-4697,-8389,-8392,-8391,-8390,3103,3104,10175]],"properties":{"prefix":"9.1.7.1.1"}},{"type":"Polygon","arcs":[[136,3268,3269,3270,3271,3272,10176,10177,10178,10179,10180,10181,-8586,-8585,-8584,-8583,-8582]],"properties":{"prefix":"6.3.1.1.2"}},{"type":"Polygon","arcs":[[-3063,-3062,-3061,4238,4239,4240,4241,4242,4243,4244,-2855,-2854,-2853,-2852,-2851,-2871,-2870,-2869,-2868,4245,4246,4247,4248,4249,10182,10183]],"properties":{"prefix":"7.4.2.1.2"}},{"type":"Polygon","arcs":[[-3111,-3110,1814,1815,1816,1817,1818,1819,1820,1821,1822,1823,-8098,-8105,10184,10185,10186,4758]],"properties":{"prefix":"9.4.5.2.1"}},{"type":"Polygon","arcs":[[-8552,-8551,233,234,1637,1638,1639,1640,1641,1642,6884,6885,6886,6887,6888]],"properties":{"prefix":"7.7.2.3.4"}},{"type":"Polygon","arcs":[[-903,-7491,-7490,-7489,10187,10188,-3072,-3071,-3070,-3069,6590,6591,6592,6593,6594,6595,6596,-907,-906,-905,-904]],"properties":{"prefix":"7.4.8.1.2"}},{"type":"Polygon","arcs":[[2334,2335,2336,2337,2338,6672,6673,6674,6675,6676,6677,6678,3681,6679,6680,6681,6682,10189,10190,6670,6671]],"properties":{"prefix":"1.9.1.2.1"}},{"type":"Polygon","arcs":[[-5775,10191,10192,10193,153,-8748,-8747,3513,3514,-5776]],"properties":{"prefix":"6.3.5.5.1"}},{"type":"Polygon","arcs":[[10194,10195,6115,-10032,-10031,10196]],"properties":{"prefix":"6.3.3.4.2"}},{"type":"Polygon","arcs":[[-8754,-8753,-6289,-6288,-6287,-6286,-6285,-822,-821,-820,-819,-8419,-8418,-8417,-8416,-8415,-8414,3149,3150,3151,3152,3153,1042,1043,1044,1045]],"properties":{"prefix":"4.1.3.4.2"}},{"type":"Polygon","arcs":[[-5035,-5034,-5033,-7660,-7659,-7658,-8044,-8043,-2911,-2844,-2843,-2842,-2841,-2840,-2839,7155,10197,10198,-5036]],"properties":{"prefix":"2.6.4.1.1"}},{"type":"Polygon","arcs":[[-2457,-2456,-2455,-2454,-2453,-2452,-2451,-4392,-4391,-4390,-4389,-4388,-5218,-5217,-5216,-5219,-2626,-2625,-2624,5852,5853,10199,10200]],"properties":{"prefix":"1.7.3.1.1"}},{"type":"Polygon","arcs":[[10201,5523,5524,5525,5526,5527,-8761,5535,518,519,520,521,522,523,524,525,526,527,528,5515,5516,5517,5518,10202]],"properties":{"prefix":"1.9.2.7.1"}},{"type":"Polygon","arcs":[[10203,-9061,10204,-1542,-1541,-1540,-1539,4608,10205]],"properties":{"prefix":"4.4.3.1.1"}},{"type":"Polygon","arcs":[[-8771,-8770,-8777,-8776,10206,1785,1786,1787,1788,-5276,-5874,-5873,-5872,-5871,-5870,-5869,-5868,-5867,-5866,-5865,-5242,-5241,-5240,10207]],"properties":{"prefix":"6.2.1.6.1"}},{"type":"Polygon","arcs":[[-8781,-8780,-8779,-8778,-2894,390,391,392,-2983,10208]],"properties":{"prefix":"2.5.2.1.3"}},{"type":"Polygon","arcs":[[3752,-8436,-8435,-8434,-2009,-2008,-2007,-2006,275,276,3746,3747,3748,3749,3750,3751]],"properties":{"prefix":"8.2.1.8.3"}},{"type":"Polygon","arcs":[[-9373,-9372,-9371,-8425,-8424,-8423,-8422,-8421,-8420,10209,10210,10211]],"properties":{"prefix":"7.2.7.4.1"}},{"type":"Polygon","arcs":[[-8786,-8787,2909,-2794,-2793,10212,10213,5604]],"properties":{"prefix":"2.6.1.2.1"}},{"type":"Polygon","arcs":[[-8091,-8090,-8089,-8094,-8093,10214,10215,-2880]],"properties":{"prefix":"9.1.4.1.1"}},{"type":"Polygon","arcs":[[10216,4930,-1141,-1140,-1139,187,188,189,-8443,-8452,-8451,-8450,-8449,4949,-4455]],"properties":{"prefix":"7.5.3.3.2"}},{"type":"Polygon","arcs":[[-8065,-1006,-1005,-6708,-6707,-6715,1124,1125,1126,1127,1128,-8068,-8067,-8066]],"properties":{"prefix":"5.1.1.1.2"}},{"type":"Polygon","arcs":[[10217,10218,4211,4212,-2525,1585,1586,1587,1588,1589,1590,342,343,-9083,-5933,-5932,-5931,-5930,-5929,-5928,865,866,6468]],"properties":{"prefix":"9.8.6.1.1"}},{"type":"Polygon","arcs":[[4437,4438,-1641,-9684,-9686,-9685,4446,4447,10219]],"properties":{"prefix":"7.8.1.2.1"}},{"type":"Polygon","arcs":[[-1031,-1030,-1029,-1028,-8269,-8268,-8267,-8266,-8265,-9237,-9236,-6519,-6518,-5374,-6908,-6907,-5378,-1033,-1032]],"properties":{"prefix":"7.4.4.4.4"}},{"type":"Polygon","arcs":[[307,-8805,-8804,10220,10221,306]],"properties":{"prefix":"8.5.2.2.1"}},{"type":"Polygon","arcs":[[-4387,-4386,-4385,-4384,-4383,-4382,-8095,10222,10223,10224,5216,5217]],"properties":{"prefix":"1.7.3.2.1"}},{"type":"Polygon","arcs":[[-9412,10225,-447,-446,-445,-444,-443,-442,-441,-440,-439,-2471,-2470,-2469,-2468,-2467,-2466,-2465,-8479,-8478,-8477,-8476,-8475,-8474,-9092]],"properties":{"prefix":"4.2.1.1.4"}},{"type":"Polygon","arcs":[[-8482,-8481,-8297,-8296,-8295,-8294,-8293,-8807,-8806,-8812,-8811,10226,-8485,-8484,-8483]],"properties":{"prefix":"8.1.5.5.2"}},{"type":"Polygon","arcs":[[10227,10228,-8110,-8109,-8108,-6536,-6535,-6534,-6533,-6532,-4605,-4604,10229,10230]],"properties":{"prefix":"4.4.3.2.1"}},{"type":"Polygon","arcs":[[-2340,-2339,-2338,-2337,-4601,-8494,-8493,-8492,-8491,-8490,-8489,-8498,-8497,-8496,10231]],"properties":{"prefix":"1.7.2.6.1"}},{"type":"Polygon","arcs":[[10232,10233,10234,10235,-1880,-1879,-1878]],"properties":{"prefix":"5.3.6.3.3"}},{"type":"Polygon","arcs":[[-9119,-3997,1722,-9392]],"properties":{"prefix":"2.1.2.4.2"}},{"type":"Polygon","arcs":[[2458,6460,6461,-8815]],"properties":{"prefix":"1.8.3.2.3"}},{"type":"Polygon","arcs":[[6979,6980,10236]],"properties":{"prefix":"7.4.5.1.1"}},{"type":"Polygon","arcs":[[6257,-2492,-2491,-5665,-5664,-5663,-5662,-5681,-5680,-2503,10237]],"properties":{"prefix":"7.2.4.1.1"}},{"type":"Polygon","arcs":[[100,101,102,-7326,-7325,5654,5655,-10071,-10070,-10069,-8516,-8515,-8514,-8513,2995,2996]],"properties":{"prefix":"5.3.2.1.3"}},{"type":"Polygon","arcs":[[1953,1954,-1155,-1154,-1153,1955,1956,1957,1958,1959,10238,-8825,-8824,-8823,-8822,-8821,-8820,-8819,-8833,-8832,-8831,-8830,-2593,-2592,-2591,6495,6496,6497,6498,-4533,10239]],"properties":{"prefix":"7.2.2.4.1"}},{"type":"Polygon","arcs":[[-6307,-6306,-6305,-6304,-6272,-6271,-6284,-6283,-6282,-6281,-1121,10240]],"properties":{"prefix":"7.3.2.3.1"}},{"type":"Polygon","arcs":[[4676,4677,-8535]],"properties":{"prefix":"2.4.1.2.3"}},{"type":"Polygon","arcs":[[10241,-5253,-5876,-5875,-5880]],"properties":{"prefix":"9.3.1.2.1"}},{"type":"Polygon","arcs":[[-9162,1620,1621,1622,1623,1624,1625,1626,1627,1628,1629,1630,1631,-10085,-10084,-10083,-10082,-4966,-4965,-4964,-4963,-9164,-9163]],"properties":{"prefix":"7.7.1.2.2"}},{"type":"Polygon","arcs":[[-824,-823,6284,6285,6286,6287,6288,6289,10242,10243,10244,-7808,-7807,-5713,-5712,10245]],"properties":{"prefix":"4.1.3.3.1"}},{"type":"Polygon","arcs":[[-8201,10246,-3733]],"properties":{"prefix":"2.3.3.1.1"}},{"type":"Polygon","arcs":[[171,172,173,3840,3841,3842,3843,3844,-8848,-8855,-8854,-8853,-9055]],"properties":{"prefix":"6.4.2.1.2"}},{"type":"Polygon","arcs":[[-9954,-9953,-9952,-9951,-8549,-8548,1651,-9955]],"properties":{"prefix":"7.7.2.3.2"}},{"type":"Polygon","arcs":[[-10089,-10088,-3469,-3468,-9184,-9183,-9182,-5701,-5700,-10093,-10092,-10091,-10090]],"properties":{"prefix":"1.3.2.4.3"}},{"type":"Polygon","arcs":[[-9846,3905,3906,3907,3908,3909,3910,5856,-9863,-9862,-4429,-4428,-4427,-4426,962,963,964,965,966,967,968,969,-746,-745,-744,-743,-9848,-9847]],"properties":{"prefix":"9.3.5.1.2"}},{"type":"Polygon","arcs":[[-9193,-3152,-3151,10247,5892]],"properties":{"prefix":"4.1.4.1.1"}},{"type":"Polygon","arcs":[[-8875,-8874,-8873,-8872,-8871,-6018,-6017,-6016,-6015,-6014,-6025,-6024,2168,2169,2170,2171,2172,2173,2174,2175,2176,2177,2178,3319,-8880,-8879,-8878,-8877,-8876]],"properties":{"prefix":"1.5.1.1.3"}},{"type":"Polygon","arcs":[[-2740,-458,2202,10248]],"properties":{"prefix":"4.1.6.4.1"}},{"type":"Polygon","arcs":[[984,985,986,987,988,989,990,2111,2112,2113,-9205]],"properties":{"prefix":"4.4.4.5.2"}},{"type":"Polygon","arcs":[[-8892,-8891,-1533,-1532,-1531,-1530,-1529,-4893,-9211,-9210,10249,10250,10251,10252,-9509,-9508,-10099,-8895,-8894,-8893]],"properties":{"prefix":"4.6.1.1.3"}},{"type":"Polygon","arcs":[[-1987,-1986,-4879,10253,6,7,8,-8593,-8592,-8591,-8595,-8594,-1992,-1991,-1990,-1989,-1988]],"properties":{"prefix":"1.1.2.2.2"}},{"type":"Polygon","arcs":[[10254,10255,-8902,-8901,-4946,-4945,-4944,-4943,-4942,-4941,-4940]],"properties":{"prefix":"7.5.3.4.1"}},{"type":"Polygon","arcs":[[-4058,-10112,-10111,-10110,-10109,-8606,10256,10257]],"properties":{"prefix":"2.2.2.2.1"}},{"type":"Polygon","arcs":[[-7965,10258,10259,-3920,-3919,-3918,-3917,5254,-10064,5257,5258,5259,4041,4042,5260,5261]],"properties":{"prefix":"9.3.1.5.3"}},{"type":"Polygon","arcs":[[-7219,-8919,-8920,-8325,-8324]],"properties":{"prefix":"8.1.5.1.4"}},{"type":"Polygon","arcs":[[10260,-5900,-5899,-5898,-5897,-5896,-5895,7111,-6825,-6824,-8280,-8279,-8283,-8282,-8281,2231,2232,2233,2234,1037,1038,1039,1040]],"properties":{"prefix":"4.1.4.2.1"}},{"type":"Polygon","arcs":[[10261,4639,4640,4641,4642,4643,4644,2631,2632,2633,2634,2635,2636,2637,2638,2639,2640,2641,2642,2643,-8618]],"properties":{"prefix":"1.7.2.1.2"}},{"type":"Polygon","arcs":[[10262,10263,5726,5727,5728,5729,5730,5731,-3930,-734,-733,-8937,-8936]],"properties":{"prefix":"9.3.4.4.4"}},{"type":"Polygon","arcs":[[-10133,6932,-6549,-6548,-6547,-582,-581,-580,-579,-10135,-10134]],"properties":{"prefix":"2.4.1.4.3"}},{"type":"Polygon","arcs":[[-8637,-8636,-8635,-8634,-8633,-8948,6696,6697,6698,4144,4145,4146,4147]],"properties":{"prefix":"7.2.4.6.2"}},{"type":"Polygon","arcs":[[-7517,-7516,-7515,-7514,-4826,6162,6163,6164,354,355,356,-9852,-9851,-7518]],"properties":{"prefix":"3.4.4.7.4"}},{"type":"Polygon","arcs":[[10264,10265,10266,6983,6984,2670,-8507,-9809,-9808,-9807,2699,2700,2701,2702,365,366,367,368,10267]],"properties":{"prefix":"2.6.5.2.1"}},{"type":"Polygon","arcs":[[-10142,7168,-5996,-5995,1022,1023,1535,1536,10268,-10143]],"properties":{"prefix":"4.8.3.1.3"}},{"type":"Polygon","arcs":[[-8981,-8980,-8979,-8978,-8977,-8976,-8661,-6639,-6638]],"properties":{"prefix":"2.3.3.4.4"}},{"type":"Polygon","arcs":[[10269,-4790,-4789,-4788,-4787,-8545,-8843,-8842,2532,2533,2534,-4796]],"properties":{"prefix":"9.8.3.4.1"}},{"type":"Polygon","arcs":[[4250,4251,-2718,10270,10271,10272,-3064,-10184,-10183]],"properties":{"prefix":"7.4.2.1.1"}},{"type":"Polygon","arcs":[[-9280,-9279,-9278,-10108,-10107,872,873,-9281]],"properties":{"prefix":"9.8.5.1.2"}},{"type":"Polygon","arcs":[[1517,-10015,-10014,2886,2887,2888,2889,1515,1516]],"properties":{"prefix":"9.1.3.2.3"}},{"type":"Polygon","arcs":[[-9584,-9583,-6440,-6439,-7462,-7461,-7460,-7459,-9305,-9304,-7321,-9586,-9585]],"properties":{"prefix":"7.5.3.1.4"}},{"type":"Polygon","arcs":[[10273,10274,-9310,394,395,396,1903,1904,-5642,-5641,10275]],"properties":{"prefix":"2.5.1.2.1"}},{"type":"Polygon","arcs":[[5102,2558,2559,2560,-1852,5103,5104,5105,5106,5107,-1862,-1861,-1860,-1859,-1858,-1857,10276]],"properties":{"prefix":"5.2.1.1.1"}},{"type":"Polygon","arcs":[[-8694,4729,4730,4731,1194,1195,-10165,-10164,-10163]],"properties":{"prefix":"6.3.7.3.3"}},{"type":"Polygon","arcs":[[10277,4124,4125,-8740,4977,4978,4979,4980,4981,4982,4983,10278]],"properties":{"prefix":"7.2.4.3.3"}},{"type":"Polygon","arcs":[[5035,5036,5037,5038,-2834,-9331,-9330,-9329,-9328,377,378,379,-10173,-10172,-10171]],"properties":{"prefix":"2.6.4.2.3"}},{"type":"Polygon","arcs":[[-9024,-9023,6724,6725,-8708,-8707,-8709,567,568,569,570,-3485,-3484,-3483,-3482,-9025]],"properties":{"prefix":"1.3.2.2.2"}},{"type":"Polygon","arcs":[[2487,2488,2489,2490,2491,2492,2493,2494,-7614]],"properties":{"prefix":"7.2.3.2.4"}},{"type":"Polygon","arcs":[[10279,2826,2827,2828,2829,2830,2831,2832,2833,2834,2835,-6819,-6818]],"properties":{"prefix":"2.6.3.2.3"}},{"type":"Polygon","arcs":[[-8104,-8103,-8102,-8101,-8100,-8099,4766,4767,4768,4769,4770,4771,4772,4773,4774,10280,10281,-10185]],"properties":{"prefix":"9.4.5.2.3"}},{"type":"Polygon","arcs":[[10282,-9349,-9348,-9354,10283]],"properties":{"prefix":"1.2.1.4.1"}},{"type":"Polygon","arcs":[[5383,10284,5379,5380,5381,5382]],"properties":{"prefix":"2.6.2.2.1"}},{"type":"Polygon","arcs":[[-9359,-7686,-7685,-7684,-3240,-9053,-9052,-9051,-3236]],"properties":{"prefix":"9.4.1.1.4"}},{"type":"Polygon","arcs":[[2974,1885,1886,1887,-2902,-2901,-2900,-2899,-2898,-2897,-2896,2975,2976,-8410,-8413,-8412,10285,10286]],"properties":{"prefix":"2.5.1.1.1"}},{"type":"Polygon","arcs":[[10287,4781,4782,4783,4784,2519,2520,2521,10288,10289,10290,10291,880,881,882,883,884,885]],"properties":{"prefix":"9.8.3.3.2"}},{"type":"Polygon","arcs":[[-1947,-1946,-9367,-9366,-9365,-9364,10292,6867,6868]],"properties":{"prefix":"7.1.1.3.1"}},{"type":"Polygon","arcs":[[10293,10294,3262,3263,1401,1402,1403,1404,1405,1406,1407,3264]],"properties":{"prefix":"1.3.5.1.1"}},{"type":"Polygon","arcs":[[-8759,10295,2733,4705,2765]],"properties":{"prefix":"4.1.5.1.2"}},{"type":"Polygon","arcs":[[5530,5531,5532,5533,-8760]],"properties":{"prefix":"1.9.2.7.3"}},{"type":"Polygon","arcs":[[-9320,2257,683,-9323,-9322,-9321]],"properties":{"prefix":"8.2.3.1.3"}},{"type":"Polygon","arcs":[[-9060,-9059,2091,2092,2093,2094,2095,4602,4603,4604,4605,4606,4607,-1543,-10205]],"properties":{"prefix":"4.4.3.1.3"}},{"type":"Polygon","arcs":[[-8775,-8774,-8773,-5234,-5233,-5232,1767,-9909,-7672,-7671,-7675,-7674,1778,1779,1780,1781,1782,1783,1784,-10207]],"properties":{"prefix":"6.2.1.6.3"}},{"type":"Polygon","arcs":[[-9070,-9069,-3488,-8785,-8784,1224,1225,1226]],"properties":{"prefix":"6.3.4.3.2"}},{"type":"Polygon","arcs":[[4469,4470,4471,4472,4473,4474,4475,4476,4477,4478,4479,4480,4481,4482,1275,1276,1277,1278,-3339,-3338,-3337,-3369,-3368,-3367,-3366,-3365,-3364,-3363,-3362,-3361,-1113,-1112,-1111,-1110,-1109,-1108,-1107,-1106,-1105,-1104,-1103,10296]],"properties":{"prefix":"7.3.1.4.1"}},{"type":"Polygon","arcs":[[10297,-4521,-4520,-4529,-4528,244,245,246,-8369,-8368,-8367,-8366,-8365,-8364,-3670,-3669]],"properties":{"prefix":"7.8.1.5.1"}},{"type":"Polygon","arcs":[[-9037,200,201,-5626,-5625,-5635,-5634,-9039,-9038]],"properties":{"prefix":"7.6.2.1.2"}},{"type":"Polygon","arcs":[[-8792,2289,2290,-1310,-1309,-1308,-1307,-1306,-1305,-1304,-3883,-3897,-3896,-3895,-3894,-3893,-8794,-8793]],"properties":{"prefix":"7.5.1.2.2"}},{"type":"Polygon","arcs":[[-9084,-2931,-2930,-2929,-2928,-2927,10298,-9495]],"properties":{"prefix":"7.4.4.7.3"}},{"type":"Polygon","arcs":[[-8960,-8959,-8958,-8957,-8956,6878,-9778,-7272,-7271,610,611,612,359,360,361,10299]],"properties":{"prefix":"2.6.6.2.3"}},{"type":"Polygon","arcs":[[-4901,-4900,-4899,-8599,-8598,-8597,-8601,-8600,4157,4158,7147,-4910,-4909,10300,-4903,-4902]],"properties":{"prefix":"8.1.6.2.1"}},{"type":"Polygon","arcs":[[-7083,-7082,-7081,-7080,-7079,-7078,-7077,7148,7149,7150,755,756,757,758,759,760,761,762,10301,-7084]],"properties":{"prefix":"8.1.3.3.1"}},{"type":"Polygon","arcs":[[-3789,-3788,-3787,-5413,5427,5428,-4663,-4662,10302,10303,-4687,-4686,-4685,-4684,-4683,-4682,5429,5430,10304,-3790]],"properties":{"prefix":"2.4.1.1.1"}},{"type":"Polygon","arcs":[[-8291,7129,-8808]],"properties":{"prefix":"8.1.5.5.4"}},{"type":"Polygon","arcs":[[-8683,-8682,-8681,-8680,-4547,-4546,-4545,-3434,5311]],"properties":{"prefix":"6.3.2.1.2"}},{"type":"Polygon","arcs":[[10305,-7062,-7061,-6779,-9418,-9417,-9428,-9427,-3216,-3215]],"properties":{"prefix":"7.6.3.4.1"}},{"type":"Polygon","arcs":[[-757,-8653,-8652,-8651,-8650,10306,-4959,-4958,-4957,-4956,6059,217,218,219,220,3820,3821,3822,3823,3824,3825,3826,3827,3828,-759,-758]],"properties":{"prefix":"7.7.1.4.2"}},{"type":"Polygon","arcs":[[-9432,10307,-9109,-9108,-9107,-9106,5543,5544,5545,5546,5547,5548,5549,5550,10308,-9429,-9437,-9436,-9435,-9434,-9433]],"properties":{"prefix":"2.3.3.2.3"}},{"type":"Polygon","arcs":[[-9112,10309,-10235,-10234,-10233,-1877,10310,10311,10312,10313]],"properties":{"prefix":"5.3.6.3.1"}},{"type":"Polygon","arcs":[[-8984,-8983,-2858,-2857,-2856,-4245,5018,5019,5020,5021,10314,10315,-10043,-8987,-8986,-8985]],"properties":{"prefix":"7.4.6.2.4"}},{"type":"Polygon","arcs":[[-9918,-9917,-9916,-8318,-8317,-6064]],"properties":{"prefix":"5.3.3.1.2"}},{"type":"Polygon","arcs":[[-9869,-1318,-1317,-1316,3065,3066,3067,3068,-5156,-5155,-5154,-5153,-5158,-7574]],"properties":{"prefix":"7.4.7.3.4"}},{"type":"Polygon","arcs":[[-5066,10316,-5064,635,636,4195,4196,4197,4198,4199,4200,4201,4202,4203,5303,5304,5305,5306,5307,5308,10317,10318,10319,10320,10321,10322,10323,-5067]],"properties":{"prefix":"8.1.4.3.1"}},{"type":"Polygon","arcs":[[-8826,-10239,1960,1961,-9140,-9139,-9142,-9141,6491,-8829,-8828,-8827]],"properties":{"prefix":"7.2.2.4.3"}},{"type":"Polygon","arcs":[[1437,6391,10324,6394,6395,6396,6397,6398,6399,3476,6400,6401,6402,6403,-9457,-9459,-9458,6412,6413,6414,6415,1436]],"properties":{"prefix":"1.3.1.3.1"}},{"type":"Polygon","arcs":[[10325,4485,-8885,-8884,-8883,-8882,-8881,-940,4495,4496,4497]],"properties":{"prefix":"7.6.4.2.1"}},{"type":"Polygon","arcs":[[4664,4665,4666,4667,4668,4669,4670,4671,-8534,-8533,-8539,-8538,10326]],"properties":{"prefix":"2.4.1.2.1"}},{"type":"Polygon","arcs":[[-993,-992,-991,-990,-989,-988,3765,3766,3767,3768,3769,3770,3771,3772,3773,3774,3775,3776,3777,-7598,-9908,-9907,-9906]],"properties":{"prefix":"5.1.1.4.4"}},{"type":"Polygon","arcs":[[-9150,10327,4850,4851,4852,4853,4854,-2637,-2636,-2635,-4186,-4185,-4184,-4183,-4182,-2161,-2160,-2159,-2158,-2157,-2156,-2155,-2154,-2153,-2152,-1809,-9152,-9151]],"properties":{"prefix":"1.7.1.1.2"}},{"type":"Polygon","arcs":[[-9247,-3956,-1490,-4046,-4045,10328]],"properties":{"prefix":"9.3.2.1.3"}},{"type":"Polygon","arcs":[[-8541,4813,4814,4815,4816,-8838,-8837,-3621]],"properties":{"prefix":"3.4.4.5.2"}},{"type":"Polygon","arcs":[[1708,1709,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719,1720,10329,1707]],"properties":{"prefix":"2.1.3.1.1"}},{"type":"Polygon","arcs":[[-10244,-10243,6290,6291,6292,6293,-7806,-7805,-7804,-7811,-7810,-7809,-10245]],"properties":{"prefix":"4.1.3.3.3"}},{"type":"Polygon","arcs":[[-8844,-5526,6604,6605,6606,6607,6608,-8847,-8846,-8845]],"properties":{"prefix":"1.9.2.3.5"}},{"type":"Polygon","arcs":[[-3068,-3067,-4711,-4710,-4709,-4708,-4723,-8190,-8189,-8188,-6592,-6591]],"properties":{"prefix":"7.4.8.3.3"}},{"type":"Polygon","arcs":[[-9189,-9188,5898,5899,5900,5901,-9192,-9191,-9190]],"properties":{"prefix":"4.1.4.1.3"}},{"type":"Polygon","arcs":[[-9030,-2777,-2776,-2775,-2774,-2773,-2772,-9034,-9033,-9032,-9031]],"properties":{"prefix":"9.8.4.1.2"}},{"type":"Polygon","arcs":[[-3558,-7627,10330,-3559]],"properties":{"prefix":"7.6.3.5.1"}},{"type":"Polygon","arcs":[[-9208,-4890,-4889,-9515,-9514,-9513,-9512,-9511,-9510,-10253,-10252,-10251,-10250,-9209]],"properties":{"prefix":"4.6.1.1.5"}},{"type":"Polygon","arcs":[[-7856,-7855,-7854,-7853,-7852,-7851,331,332,-3108,-3107,-3106,-3105,-3104,-3103,-3102,-3101,-3100,10331,10332,10333,10334]],"properties":{"prefix":"9.1.6.1.4"}},{"type":"Polygon","arcs":[[-7638,-7637,179,180,-3551,-3550,-3549,-3548,-3547,-9518,-9519,-8335,-7643,-7642,-7641,-9230,-9229,-9228]],"properties":{"prefix":"6.4.3.3.5"}},{"type":"Polygon","arcs":[[-8588,10335,-10181,-10180,-10179,-10178,-10177,3273,-9181,-9180,-9179,-9178,-9177,3282,-1777,-1776,-1775,-1774,-1773,-1772,10336,-8589]],"properties":{"prefix":"6.3.1.1.4"}},{"type":"Polygon","arcs":[[-1669,-2655,-2654,-2653,-2652,-2651,-2650,-2670,-2669,-2668,-2667,-2666,-2665,10337,-8912,-8911,-8910,-8909,-8908]],"properties":{"prefix":"2.6.6.3.5"}},{"type":"Polygon","arcs":[[-9379,-9378,10338,-5550,-5549,-5548,-5547,6141,6142,6143,6144,6145,6146,2318]],"properties":{"prefix":"2.3.3.3.3"}},{"type":"Polygon","arcs":[[2347,10339,-5508,-5507,6081,530,531,532,533]],"properties":{"prefix":"1.9.2.2.1"}},{"type":"Polygon","arcs":[[10340,6129,-8918,1108,1109,1110,10341]],"properties":{"prefix":"5.1.2.4.2"}},{"type":"Polygon","arcs":[[-9536,-9535,-9534,5794,-2052,-2051,-2081,-2080,-2079,-2078]],"properties":{"prefix":"7.5.6.3.4"}},{"type":"Polygon","arcs":[[-9886,5286,-3747,277,278,279,5287,5288,5289,-4166,-9888,-9887]],"properties":{"prefix":"8.2.2.1.3"}},{"type":"Polygon","arcs":[[-9539,10342]],"properties":{"prefix":"4.8.2.4.1"}},{"type":"Polygon","arcs":[[5723,5724,5725,-10264,-10263,-8935,-8934,-8933,-8932,10343,5722]],"properties":{"prefix":"9.3.4.4.2"}},{"type":"Polygon","arcs":[[-8045,-8047,10344,2248]],"properties":{"prefix":"8.2.2.3.2"}},{"type":"Polygon","arcs":[[10345,2728,2729,7117]],"properties":{"prefix":"9.1.1.2.1"}},{"type":"Polygon","arcs":[[7003,7004,7005,7006,-6211,-6210,-6209,-6208,-6207,7007,10346,267]],"properties":{"prefix":"8.1.6.3.2"}},{"type":"Polygon","arcs":[[-7621,10347,1644,-9615]],"properties":{"prefix":"7.7.2.4.1"}},{"type":"Polygon","arcs":[[4776,10348,-4762,-4761]],"properties":{"prefix":"9.4.5.4.1"}},{"type":"Polygon","arcs":[[-10000,-9999,-6385,-6384,-6383,-6382,-1255,-1254,-1253,-1252,6799,6800,6801,6802,6803,6804,6805,6806,6807,6808,-10001]],"properties":{"prefix":"7.3.1.2.3"}},{"type":"Polygon","arcs":[[-7601,-3126,-3125,-4314,10349]],"properties":{"prefix":"9.4.3.1.1"}},{"type":"Polygon","arcs":[[4509,4510,4511,4512,4513,-9259,-9258,-8944,-8943,-8942]],"properties":{"prefix":"1.8.3.5.2"}},{"type":"Polygon","arcs":[[-8631,-8630,-8629,-5830,-5829,-5828,-5827,-5826,10350,-8627]],"properties":{"prefix":"6.3.5.3.1"}},{"type":"Polygon","arcs":[[10351,-5347,-8955,-8961,-10300,362,363,10352]],"properties":{"prefix":"2.6.6.2.1"}},{"type":"Polygon","arcs":[[-1348,-2721,-2720,-8648,-8647,-8646,-8962,-1351,-1350,-1349]],"properties":{"prefix":"7.4.4.1.2"}},{"type":"Polygon","arcs":[[-9573,-6328,-6334,1754]],"properties":{"prefix":"2.1.1.1.2"}},{"type":"Polygon","arcs":[[-5545,-5544,-5543,-1697,-1696,-1695,-1694,-1693,-1692,-8975,-8974,-8973,-8972,-8971,-8970,-8982,-6632,-6631,-9582,-9581]],"properties":{"prefix":"2.3.3.4.2"}},{"type":"Polygon","arcs":[[5507,5508,5509,10353,5505,5506]],"properties":{"prefix":"1.9.2.1.1"}},{"type":"Polygon","arcs":[[-6732,-6731,-9576]],"properties":{"prefix":"1.3.2.3.2"}},{"type":"Polygon","arcs":[[-9275,10354,-2054,-2053,-5795,-5794,-5793,-5792,-5791,-5790,-5789,-5788,-5787,-8990,-8989,-8991,-5801,-5800,6007,10355,10356,10357]],"properties":{"prefix":"7.5.6.2.2"}},{"type":"Polygon","arcs":[[10358,4393,4394,4395,10359,2801,2802,2803,2804,2805,2806,2807,2808,2809,2810,2811,10360]],"properties":{"prefix":"2.6.3.1.1"}},{"type":"Polygon","arcs":[[10361,827,5324,5325,3702,3703,3704,5326,10362,10363]],"properties":{"prefix":"3.4.3.1.1"}},{"type":"Polygon","arcs":[[-4770,-4769,-4768,-4767,-4766,10364,10365,10366,938,939,940,941,942,943,944,4300,4301,10367,10368]],"properties":{"prefix":"9.4.5.3.1"}},{"type":"Polygon","arcs":[[-8678,-8677,-8676,-8675,10369,6961,-839,-838,6962,6963,6964,6965,6966,6967,6968,6969,6970,6971]],"properties":{"prefix":"4.1.2.3.2"}},{"type":"Polygon","arcs":[[5248,5249,3917,-9782,-9781,-9780,-9779,-4433,10370]],"properties":{"prefix":"9.3.5.4.1"}},{"type":"Polygon","arcs":[[-8349,-8348,-8347,-4506,-4505,-4504,-2277,-2276,-2275,-2274,-6468,-6467,-6466,-6465,10371,-8354,-8353,-8352,-8686]],"properties":{"prefix":"1.8.3.4.4"}},{"type":"Polygon","arcs":[[1190,1191,-2145,-2144,-2143,-2142,-4348,-4347,10372,10373,10374,10375,10376,-9004,1188,1189]],"properties":{"prefix":"6.4.3.1.1"}},{"type":"Polygon","arcs":[[-10321,-10320,-10319,-10318,5309,-5072,-5071,-5070,-5069,-5068,-10324,-10323,-10322]],"properties":{"prefix":"8.1.4.3.2"}},{"type":"Polygon","arcs":[[-9326,-9325,-9324,-2830,-2829,-2828,4234,5039,5040,5041,5042,-2708,-2707,-2706,-2705,-9327]],"properties":{"prefix":"2.6.4.2.5"}},{"type":"Polygon","arcs":[[10377,5935,5936]],"properties":{"prefix":"7.2.2.5.1"}},{"type":"Polygon","arcs":[[10378,10379,10380,10381,4986,4987,-2727,-2726,-2958,-9991,-9990,5012,5013,5014,-668,-667,-666,-665]],"properties":{"prefix":"9.1.2.3.1"}},{"type":"Polygon","arcs":[[-10078,-10077,-10076,6173,6174,6175,6176,-3776,-3775,-3774,10382,-10080,-10079]],"properties":{"prefix":"5.1.2.2.2"}},{"type":"Polygon","arcs":[[-7194,-9299,-9298,-9297,-9296,-3899,5748,-5730,-9776,-9775,-9774,-9773]],"properties":{"prefix":"9.3.4.5.5"}},{"type":"Polygon","arcs":[[-4399,2824,2825,-10280,-6817,10383,-4400]],"properties":{"prefix":"2.6.3.2.1"}},{"type":"Polygon","arcs":[[-9609,-6838,-1798,-6257,-9611,-9610]],"properties":{"prefix":"6.3.4.2.2"}},{"type":"Polygon","arcs":[[10384,-1369,-1368]],"properties":{"prefix":"7.2.7.5.1"}},{"type":"Polygon","arcs":[[-9042,2689,2690]],"properties":{"prefix":"2.6.5.2.6"}},{"type":"Polygon","arcs":[[-9286,-9285,1919,1920,1921,1922,-9403,-9402,-5480,-5479,-5478,671,672,673,674,-9287]],"properties":{"prefix":"8.5.2.1.2"}},{"type":"Polygon","arcs":[[-7693,-7692,-7691,-7690,-7689,-7688,-9358,-9357,-9356,-9355,-4308,-4307,-4306,-4305,-4304,-4303,-4302,-4301,945,-7694]],"properties":{"prefix":"9.4.1.1.2"}},{"type":"Polygon","arcs":[[-9751,158,159,2136,3502,3503,3504,3505,3506,3507,-8746,-8745,-8744,-8743,-8742]],"properties":{"prefix":"6.3.5.5.5"}},{"type":"Polygon","arcs":[[-2938,-5018,-5025,10385,-2939]],"properties":{"prefix":"7.4.6.1.1"}},{"type":"Polygon","arcs":[[10386,3961,3962,3963,3964,-9629,-9628,-9627,-9626,-9625,-1498,-1497,-1496,-1495,-1494,10387]],"properties":{"prefix":"9.3.3.1.1"}},{"type":"Polygon","arcs":[[-2963,-2962,328,329,-7850,-7849,-10335,-10334,-10333,10388,10389]],"properties":{"prefix":"9.1.6.1.2"}},{"type":"Polygon","arcs":[[-7978,-7977,-7976,-7975,-6577,-6576,-6575,-6574,641,6942,6943,6944,6945,6946,6947,6948,-7979]],"properties":{"prefix":"8.1.5.2.4"}},{"type":"Polygon","arcs":[[-10019,-638,-637,-636,-635,-3658,-4368,-4367,-4366,-4381,-4380,-4379,-10020]],"properties":{"prefix":"7.8.1.6.3"}},{"type":"Polygon","arcs":[[10390,-6427,-6426,-6425,-6424,-6423,-9067,-9066,-9065,-9064,-532,-531,-530,-529,-528,-527,-526,-2198,-2197,4332,-6433]],"properties":{"prefix":"2.3.1.2.1"}},{"type":"Polygon","arcs":[[4601,10391,2622,2623]],"properties":{"prefix":"1.7.2.7.1"}},{"type":"Polygon","arcs":[[-9377,-9376,-9375,-9374,-10212,10392,6148,-1366,-1365,-1364,-1245]],"properties":{"prefix":"7.2.7.4.5"}},{"type":"Polygon","arcs":[[10393,-5553,-5552,-5551,-10339,-9382,-9381,-9380,2325]],"properties":{"prefix":"2.3.3.3.1"}},{"type":"Polygon","arcs":[[2011,2012,2013,2014,-9554,-9553,-9552,-9551,6201]],"properties":{"prefix":"8.1.6.7.2"}},{"type":"Polygon","arcs":[[-2104,-3530,-3529,-5252,-5251,-2353,-2352,4337,4338,4339,6819,6820,10394]],"properties":{"prefix":"4.3.1.3.1"}},{"type":"Polygon","arcs":[[222,5956,5957,5958,5959,-7366,-7365,-7364,-9399,-9398,-9397,-9396,-9395,5968,10395,10396,10397,10398]],"properties":{"prefix":"7.7.2.1.2"}},{"type":"Polygon","arcs":[[-9360,-5335,-5334,-5333,-5332,-5331,-5330,-5329,-5343,-5342,-1179,-1178,-1177,6869,6870,6871,6872,6873,10399,10400,10401,-9362,-9361]],"properties":{"prefix":"7.1.1.3.4"}},{"type":"Polygon","arcs":[[10402,10403,-4935,-4934,-4933,-4932,-2064,-2063,-2062,-2061,-2060,-2059,-2058,-9054,-7584,-7583,-7590,-7589,-7588,-7587,-3185,-3184,-3183,-3182,-3181,-3180,5742,5743,5744,5745,-4951,-4453,10404]],"properties":{"prefix":"7.5.3.6.1"}},{"type":"Polygon","arcs":[[-7228,-7227,-7226,-7235,-7234,-1547,-1546,-1545,-1544,-4608,-4607,-4606,6531,6532,6533,6534,6535,6536,10405,10406]],"properties":{"prefix":"4.4.3.4.1"}},{"type":"Polygon","arcs":[[-10303,-4688,-10304]],"properties":{"prefix":"2.4.1.1.3"}},{"type":"Polygon","arcs":[[10407,-4862,-4861,-4860,-4859,-4858,3981,3982,3983,3984,3985,3986,-1507,-1506,-1505,-1504,-1503,-1502,-1501,-1500,-4874,-4873,-4872,-4871,-4870,-4869,-4868,-4867,-4866]],"properties":{"prefix":"9.3.3.2.1"}},{"type":"Polygon","arcs":[[10408,-9672,-9671]],"properties":{"prefix":"8.4.2.4.1"}},{"type":"Polygon","arcs":[[-9341,-9340,-9416,-9415]],"properties":{"prefix":"7.8.1.1.2"}},{"type":"Polygon","arcs":[[-3565,-3564,-3563,-3562,-3561,-5110,-9683,-9682,-9681,-9680,-9420,-9419]],"properties":{"prefix":"7.6.3.4.3"}},{"type":"Polygon","arcs":[[5560,-9430,-10309,5551,5552,5553,5554,5555,5556,-563,-562,5557,5558,5559]],"properties":{"prefix":"2.3.3.2.5"}},{"type":"Polygon","arcs":[[3293,3294,-7286,-7291,-7290,1093,1094,1095,1096,1097,1098,-9118,-9117,-9116,-9115]],"properties":{"prefix":"5.3.6.3.7"}},{"type":"Polygon","arcs":[[10409,6383,6384,6385,6386,6387,-8790,-8789,-8788,-8791,-1098,-1257,10410,10411]],"properties":{"prefix":"7.3.1.3.1"}},{"type":"Polygon","arcs":[[1469,1470,1471,1472,1473,1474,1475,1476,1477,1478,-9843,-9842,-9841,-9840,-9839]],"properties":{"prefix":"9.1.8.1.3"}},{"type":"Polygon","arcs":[[-9449,-9448,-9447,10412,-5647,-5646,-5645,-5644,111,-9125,-9124,-9127,-9126,3027,3028,3029,3030,3031,-9450]],"properties":{"prefix":"5.3.2.2.2"}},{"type":"Polygon","arcs":[[10413,10414,2060,2061,2062,2063,2064,2065,-7942,-7941,-7945,-7944,-5454,-5453,-5452,-6937]],"properties":{"prefix":"7.6.1.3.1"}},{"type":"Polygon","arcs":[[-8886,4487,4488,4489,-8165,-8164,-8163,-8162,-8161,-8166,-954,-953,-952,-951,-950,-949,-948,-8888,-8887]],"properties":{"prefix":"7.6.4.2.3"}},{"type":"Polygon","arcs":[[206,-4885,-4884,-4883,-8923]],"properties":{"prefix":"7.6.2.4.4"}},{"type":"Polygon","arcs":[[-8926,-1682,-1681,-1680,-1679,-1678,-1677,-1676,-9467,-9475,-9474,-9473,10415,10416,10417,10418,-5385,-5384,-8930,-8929,-8928,-8927]],"properties":{"prefix":"2.6.2.1.2"}},{"type":"Polygon","arcs":[[-8835,4818,4819,4820,4821,4822,-3324,4823,4824,4825,4826,4827,4828,4829,4830,-8836]],"properties":{"prefix":"3.4.4.5.4"}},{"type":"Polygon","arcs":[[7046,7047,7048,-6763,-6762,-6761,-6760,3160,3161,3162,3163,-2563,3164,3165,3166,3167,3168,3169,3170,3171,3172,3173,7043,10419]],"properties":{"prefix":"7.5.4.4.1"}},{"type":"Polygon","arcs":[[-4051,-4050,-4049,2194,2195,2196,2197,-525,-524,-523,-522,-521,-520,-519,-518,-517,-5088,-5087,-5086,-5085,10420]],"properties":{"prefix":"2.2.2.3.1"}},{"type":"Polygon","arcs":[[5565,-9732,-9731]],"properties":{"prefix":"7.2.7.3.2"}},{"type":"Polygon","arcs":[[-9966,-9965,-9964,-9963,-9962,-9961,-9168,-9167,-9171,2311,2312,2313,2314,6627]],"properties":{"prefix":"2.3.3.6.4"}},{"type":"Polygon","arcs":[[-10292,-10291,-10290,-10289,2522,2523,1569,1570,1571,1572,1573,1574,1575,4785,4786,4787,4788,4789,4790,4791,4792,4793,4794,4795,2535,2536,2537,2538,2539,878,879]],"properties":{"prefix":"9.8.3.3.3"}},{"type":"Polygon","arcs":[[-2030,10421,5388,5389,5390,5391,-9619,-9618,-9617,-9616,-2034,-2033,-2032,-2031]],"properties":{"prefix":"8.2.1.4.1"}},{"type":"Polygon","arcs":[[5919,5920,5921,5922,-9071,5925,10422,10423,5918]],"properties":{"prefix":"2.2.1.5.1"}},{"type":"Polygon","arcs":[[-9769,-3907,-3906,-3905,-3904,-3903,-3902,-9295,-9294,-7190,-7189,-7188,-7187,-7197,-7196,-9772,-9771,-9770]],"properties":{"prefix":"9.3.4.5.2"}},{"type":"Polygon","arcs":[[-9199,-5306,-5305,-5304,4204,4205,4206,729,730,731,732,733,734,735,736,737,-5076,-9201,-9200]],"properties":{"prefix":"8.1.4.4.3"}},{"type":"Polygon","arcs":[[-9214,-9213,-9212,-8574,-8573,-3049,-3048,-3047,-8898,-8897,-8896,-1065,-1064,-1063]],"properties":{"prefix":"7.4.6.4.5"}},{"type":"Polygon","arcs":[[-1045,-8756,10424,10425,10426,10427,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,2942,-1049,-1048,-1047,-1046]],"properties":{"prefix":"7.4.5.2.5"}},{"type":"Polygon","arcs":[[4226,4227,-8907,-8906,-8913,-10338,-2664,-2663,-7217,-7216,-9232,-9231,-9234,-9233,4225]],"properties":{"prefix":"2.6.6.3.3"}},{"type":"Polygon","arcs":[[-8565,-8564,-8563,-8562,-8561,-10065,744,745,746,747,748,749,750,10428,-8568,-8567,-8566]],"properties":{"prefix":"8.1.3.4.2"}},{"type":"Polygon","arcs":[[-9763,-9762,-9761,-9760,5782,5783,5784,5785,5786,5787,5788,-9533,-9532,-9538,-9537,-926,-925,-924,-923,-922,-921,-920,2291,2292,2293,2572,2573,2574,5795,-9758,-9764]],"properties":{"prefix":"7.5.6.3.2"}},{"type":"Polygon","arcs":[[-7500,-7499,-7498,2481,2482,2483,1973,1974,1975,1976,1977,1978,6073,6074,6075,6076,6077,2504,2505,2506,2507,2508,2509,2510,-7501]],"properties":{"prefix":"7.2.3.1.2"}},{"type":"Polygon","arcs":[[-9248,-10329,-4044,-4043,-4042,-4041,-4040,-9249]],"properties":{"prefix":"9.3.2.1.2"}},{"type":"Polygon","arcs":[[7143,7144,2929,2930,2931,-10428,-10427,-10426,-10425,-8757,-1043,-1042,-1041,-1040,-1039,-1038,-1037,-1036,-1035,2918,2919,2920,2921,2922,10429,-9690]],"properties":{"prefix":"7.4.5.2.2"}},{"type":"Polygon","arcs":[[10430,239,240,241,-9989,-9988,-9987,-9986,-4527,-4526,-4525,-4442,-4441,10431]],"properties":{"prefix":"7.8.1.3.1"}},{"type":"Polygon","arcs":[[-9557,-9556,5408,5409,5410,5411,5412,-3786,-3785,-3811,-3810,-3882,-3881]],"properties":{"prefix":"2.4.1.7.2"}},{"type":"Polygon","arcs":[[-841,-840,-6962,-6977,-6976,-6975,-6974,-9491]],"properties":{"prefix":"4.1.2.2.2"}},{"type":"Polygon","arcs":[[-7953,-436,-435,-434,-433,-432,-431,-430,49,50,-7095,-7094,-7093,-7092,-7101,-7100,-7099,2359,2360,2361,2362,2363,-7956,-7955,-7954]],"properties":{"prefix":"4.2.2.1.5"}},{"type":"Polygon","arcs":[[-8076,10432,10433,478,479,480,481,4533,4534,4535,4536,4537,4538]],"properties":{"prefix":"1.9.3.2.4"}},{"type":"Polygon","arcs":[[-5584,-5583,-5582,-8081,-8080,-8079,-3697,-3696,-3695,-3694,5594,5595,5596,10434,-9264,-9263,-9262,-9261,-9260]],"properties":{"prefix":"3.4.4.2.3"}},{"type":"Polygon","arcs":[[1423,-8954,-8953,-8952,-8951,-9266,1420,1421,1422]],"properties":{"prefix":"1.3.3.5.2"}},{"type":"Polygon","arcs":[[-7847,-3230,10435]],"properties":{"prefix":"9.4.5.1.2"}},{"type":"Polygon","arcs":[[10436,-9931,-2822,-2821,-2820,-2819,-2818,-2817,-2816,10437]],"properties":{"prefix":"2.6.2.5.4"}},{"type":"Polygon","arcs":[[-8191,-911,10438]],"properties":{"prefix":"7.4.8.3.1"}},{"type":"Polygon","arcs":[[-9272,10439,-6175,-6174,-6173,-6172,-6132,-6131,-6130,-6129,-6141,-6140,1114,1115,1116,-9273]],"properties":{"prefix":"5.1.2.3.2"}},{"type":"Polygon","arcs":[[10440,10441,10442,-6163,-4825,-4824,-3323,-3336,-3335,-3334,-3333,-3332,-3331,-3330,-3329,-3328,858,859,353,-6165]],"properties":{"prefix":"3.4.4.8.1"}},{"type":"Polygon","arcs":[[-10366,-10365,-4765,-4764,-4776,1829,1830,1831,935,936,937,-10367]],"properties":{"prefix":"9.4.5.3.4"}},{"type":"Polygon","arcs":[[-10360,4396,4397,2819,2820,2821,2822,2823,4398,4399,4400,-10154,-8666,2842,2843,2844,2845,2846,2847,2848,2849,2791,2792,2793,2794,2795,2796,2797,2798,2799,2800]],"properties":{"prefix":"2.6.3.1.3"}},{"type":"Polygon","arcs":[[-10156,-10155,3600,-2438,-2437,-9813,-9812,-9811,-9810,-9818,-9817,3625,-8571]],"properties":{"prefix":"3.4.1.1.3"}},{"type":"Polygon","arcs":[[-9786,-3000,-2999,-2998,1082,1083,1084,1085,1086,1087,1088,-9788,-9787]],"properties":{"prefix":"5.3.6.3.10"}},{"type":"Polygon","arcs":[[4941,-8448,-10060,-10059,-10058,-10057,4933,4934,4935,-4451,-4457,4936,4937,4938,4939,4940]],"properties":{"prefix":"7.5.3.3.5"}},{"type":"Polygon","arcs":[[-1663,-1662,-1661,585,586,587,-9789,-7295,-7294]],"properties":{"prefix":"2.6.7.2.4"}},{"type":"Polygon","arcs":[[-9300,-8999,-8998,-8997,-8996]],"properties":{"prefix":"2.1.2.1.2"}},{"type":"Polygon","arcs":[[-9805,-9804,2679,2680,-9048,-9047,-9046,-9045,-9044,-9043,2693,2694,-9806]],"properties":{"prefix":"2.6.5.2.4"}},{"type":"Polygon","arcs":[[4714,4715,-10041]],"properties":{"prefix":"7.4.8.4.2"}},{"type":"Polygon","arcs":[[-10122,-10121,10443,10444,5206,5207,5208,-7900,-7899,-7898,2123,2124,2125,-10123]],"properties":{"prefix":"4.4.4.4.4"}},{"type":"Polygon","arcs":[[-9590,-9589,-9588,-9587,-3946,-3952,-1907,-1906,-1905,-1904,397]],"properties":{"prefix":"2.4.5.1.5"}},{"type":"Polygon","arcs":[[-628,-3287,-3286,-3289,-3288,-799,-798,10445,10446,10447,10448,10449,-629]],"properties":{"prefix":"7.8.3.2.3"}},{"type":"Polygon","arcs":[[-9312,-9311,3479,3480,3481,3482,3483,3484,571,572,-9315,-9314,-9313]],"properties":{"prefix":"1.3.1.4.5"}},{"type":"Polygon","arcs":[[5491,5492,5493,4281,4282,4283,5494,5495,5496,5497,5498,5499,5500,5501]],"properties":{"prefix":"5.3.3.5.1"}},{"type":"Polygon","arcs":[[-6872,10450,-5942,7116,2259,2260,-1954,-1953,-9592,-9591,-9595,-9594,-9593]],"properties":{"prefix":"7.1.1.2.1"}},{"type":"Polygon","arcs":[[3070,3071,3072,-9345,-9344,-9343,3076,-7375]],"properties":{"prefix":"7.4.7.4.3"}},{"type":"Polygon","arcs":[[-10336,-8587,-10182]],"properties":{"prefix":"6.3.1.1.3"}},{"type":"Polygon","arcs":[[-7818,-7387,-7397,-3397,-3396,-3395,-3394,-3393,-3392,-3391,-5956,10451,10452]],"properties":{"prefix":"1.3.4.2.1"}},{"type":"Polygon","arcs":[[3312,10453,3290,-6269,-6268,-6267,-6266,-6265,-6264,-5690,-5689,-5696,-5695,-5694]],"properties":{"prefix":"5.3.6.1.1"}},{"type":"Polygon","arcs":[[1844,1845,1846,1847,1848,1849,1850,1851,1852,1853,1854,1855,1856,1857,10454,-7335,-7338,-7337]],"properties":{"prefix":"5.1.3.5.2"}},{"type":"Polygon","arcs":[[-8143,-3974,-3973,-3972,-3971,-3970,-9948,-9950,-9949,4654,4655,4656,4657,4658,4659,-715,-714,-8144]],"properties":{"prefix":"9.3.4.1.3"}},{"type":"Polygon","arcs":[[10455,1970,1971,1972,-2484,-2483,-2482,-2481,-2480,-2479,-2478,-2477,-8619,-8624,-8623,-8622,-8621,-8620,-6487,-5939,-5938,-5937,10456]],"properties":{"prefix":"7.2.2.6.1"}},{"type":"Polygon","arcs":[[4207,10457,10458,10459,4191,-9822,-9821,-9820,-9819,739,740,741,742]],"properties":{"prefix":"8.1.4.1.1"}},{"type":"Polygon","arcs":[[3421,3422,3423,6111,6112,6113,6114,-10196,-10195,-10197,-10030,6127,10460,10461,10462]],"properties":{"prefix":"6.3.3.4.1"}},{"type":"Polygon","arcs":[[-9620,-466,-465,-464,-463,-462,-461,-460,-459,2739,2740,2741,2742,2743,2744,5463,5464,5465,5466,5467,5468,5469,5470,5471,5472,5473,-9624,-9623,-9622,-9621]],"properties":{"prefix":"4.1.5.2.3"}},{"type":"Polygon","arcs":[[166,-3840,-3839,-3838,-3837,-3857,4343,-10152,-10151,-10150,-10149,-10148]],"properties":{"prefix":"6.4.1.2.2"}},{"type":"Polygon","arcs":[[-9499,-9498,-9497,5803,770,771,772,773,774,775,776,-9502,-9501,-9500]],"properties":{"prefix":"8.1.3.1.4"}},{"type":"Polygon","arcs":[[-9638,127,1764,-9369,-9368,5238,5239,5240,-9641,-9640,-9639]],"properties":{"prefix":"6.2.1.5.2"}},{"type":"Polygon","arcs":[[-9645,-9644,10463,10464,-5607,-5606,-5605,-5611,-2849,-2848,-2847,-2846,-2845,2910,2911,-9646]],"properties":{"prefix":"2.6.1.1.2"}},{"type":"Polygon","arcs":[[-8177,-8176,1285,5733,5734,5735,5736,5737,5738,5739,-8178]],"properties":{"prefix":"7.3.2.1.2"}},{"type":"Polygon","arcs":[[10465,3789,3790,-9072,3802,3803,3804,3805,3806,3807,3808,3809,6844,10466]],"properties":{"prefix":"2.4.2.1.1"}},{"type":"Polygon","arcs":[[-9995,-9994,-9993,-7141,-7140,-6971,-9386,-9385]],"properties":{"prefix":"4.1.2.4.3"}},{"type":"Polygon","arcs":[[2460,2461,-2333,-2332,-2331,-2330,-5297,-5296,-5295,6829,6830,10467,10468]],"properties":{"prefix":"1.8.3.3.1"}},{"type":"Polygon","arcs":[[-9830,-9829,3013,-7021,10469]],"properties":{"prefix":"5.3.2.3.2"}},{"type":"Polygon","arcs":[[5368,5369,5370,-9981,-9980,-2924,-2923,-2922,-2921,-2920,10470]],"properties":{"prefix":"7.4.4.6.3"}},{"type":"Polygon","arcs":[[-1621,-1620,-1619,-1618,-1617,-1616,-1615,-1614,-1613,-1612,-5615,-6649,-6648,-6647,-6646,-6645,-6656,-6655,-6654,-6653,7001,-5591,-5590,10471]],"properties":{"prefix":"7.6.6.2.1"}},{"type":"Polygon","arcs":[[10472,3475,-6400,-6399,-7906,-9836,-9835,-9834,-9833,-9832,-9656,-9655,-9654,-9653,-9652,-5197,10473,10474]],"properties":{"prefix":"1.3.1.2.1"}},{"type":"Polygon","arcs":[[-10048,-10047,-10046,-10045,-6117,-6116,-6115,-6114,-6113,-6112,3424,-9086,3430,3431,-1795,-1794,-1793,-1792,-1791,-1790,-1789,-1788,-10049]],"properties":{"prefix":"6.3.3.5.5"}},{"type":"Polygon","arcs":[[-8471,10475,-6277,-6276]],"properties":{"prefix":"7.3.2.2.1"}},{"type":"Polygon","arcs":[[-9668,-9667,-9666,-1934,-1933,-1932,-2425,-9669]],"properties":{"prefix":"8.4.2.4.3"}},{"type":"Polygon","arcs":[[-9413,-9090,-452,-451,-450,-449,-448,-10226,-9414]],"properties":{"prefix":"4.2.1.1.2"}},{"type":"Polygon","arcs":[[2414,10476,5815,5816,5817,5818,-7741,-7740,-7739]],"properties":{"prefix":"5.3.1.1.1"}},{"type":"Polygon","arcs":[[-9859,3142,3143,-5709,-5719,-5718,-6303,-6302,-6301,-6300,-6299,1059,-9861,-9860]],"properties":{"prefix":"4.1.3.1.4"}},{"type":"Polygon","arcs":[[-9101,-9100,-9099,1613,1614,1615,1616,1617,6184,6185,6186,-749,-748,-9102]],"properties":{"prefix":"7.7.1.1.2"}},{"type":"Polygon","arcs":[[808,809,810,811,812,813,814,815,816,817,818,5134,5135,5136,5137,5138,5139,5140,5141,5142,10477,10478,10479,-473]],"properties":{"prefix":"3.4.2.3.1"}},{"type":"Polygon","arcs":[[-10236,-10310,-9111,-9110,-1882,-1881]],"properties":{"prefix":"5.3.6.3.5"}},{"type":"Polygon","arcs":[[4622,4623,4624,4625,4626,4627,4628,4629,4630,4631,-7412,-7411,-7410,-7409,-7408,-7407,-7406,-9401]],"properties":{"prefix":"8.2.1.5.3"}},{"type":"Polygon","arcs":[[-10437,-10438,-2815,-2814,-9934,-9933,-9932]],"properties":{"prefix":"2.6.2.5.2"}},{"type":"Polygon","arcs":[[10480,10481,4577,4578,4579,4580,10482]],"properties":{"prefix":"4.8.2.2.1"}},{"type":"Polygon","arcs":[[1295,1296,1297,1298,1299,1300,1301,1302,1303,1304,1305,1306,1307,1308,1309,1310,-9937,-9936,1337,1338,1339,1340,1341,1342,1343,-9677,-9676]],"properties":{"prefix":"7.3.3.2.3"}},{"type":"Polygon","arcs":[[-2360,-2359,-2358,-2357,-2356,-2355,-2354,5250,10483,10484,10485,-3527,-3526,-3525,-9452,-9451,-2362,-2361]],"properties":{"prefix":"4.3.1.4.1"}},{"type":"Polygon","arcs":[[-10026,6553,6554,-6011,-6010,-6009,415,-10028,-10027]],"properties":{"prefix":"2.4.1.5.4"}},{"type":"Polygon","arcs":[[26,-2148,-2147,-2146,-2180,-2179,-2178,-2177,-9464,-9463,-9462,-9461,-9460]],"properties":{"prefix":"1.4.2.4.2"}},{"type":"Polygon","arcs":[[-8762,-8766,-8765,10486,10487,5875,-5264,-5263,-5262,-5261,4043,4044,4045,-1489,-1488,-1487,-1486,-1485,-1484,-1483,-1482,-1481]],"properties":{"prefix":"9.3.1.4.3"}},{"type":"Polygon","arcs":[[-9468,-5386,-10419,-10418,-10417,-10416,-9472,-9471,-9470,-9469]],"properties":{"prefix":"2.6.2.1.4"}},{"type":"Polygon","arcs":[[5145,5146,5147,5148,3492,3493,3494,3495,3496,-9714,-9718,-9717,-9716,-9715,1214,1215,1216,1217,1218,1219,1220,1221,10488]],"properties":{"prefix":"6.3.5.1.1"}},{"type":"Polygon","arcs":[[5273,5274,5275,1789,1790,1791,10489,-9159,-9158,-9157]],"properties":{"prefix":"6.2.1.3.2"}},{"type":"Polygon","arcs":[[-630,-10450,-10449,-10448,-10447,10490,-631]],"properties":{"prefix":"7.8.3.2.1"}},{"type":"Polygon","arcs":[[10491,-5747,-5725,-5724,-5723,-5722,-9400,-8858,-8857,-8867,-8866,-8865]],"properties":{"prefix":"9.3.4.3.1"}},{"type":"Polygon","arcs":[[-9478,-9477,-8725,-8724,-9486,-9485,-9484,-9483,-9482,-9481,-9480,-9479]],"properties":{"prefix":"7.5.2.1.3"}}]},"6":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[-9213,-9212,-8574,-8573,-3049,-3048,-3047,-8898,-8897,-8896,-1065,-1064,10492]],"properties":{"prefix":"7.4.6.4.5.2"}},{"type":"Polygon","arcs":[[3262,3263,1401,1402,1403,1404,1405,1406,10493,10494,10294]],"properties":{"prefix":"1.3.5.1.1.1"}},{"type":"Polygon","arcs":[[10495,-9456,-2045,-4635,-4634,10035]],"properties":{"prefix":"8.2.1.6.3.2"}},{"type":"Polygon","arcs":[[10496,10497,10498,10499,-6803,10500]],"properties":{"prefix":"7.3.1.1.1.2"}},{"type":"Polygon","arcs":[[-5169,10501,10502,10503,10504,10505,10506]],"properties":{"prefix":"3.4.2.6.1.1"}},{"type":"Polygon","arcs":[[10507,10508,8408,2390,2391,2392,10509]],"properties":{"prefix":"5.3.5.2.1.4"}},{"type":"Polygon","arcs":[[10510,5889,9673,10511]],"properties":{"prefix":"6.2.1.2.1.1"}},{"type":"Polygon","arcs":[[10380,10381,4986,4987,-2727,-2726,-2958,-9991,-9990,5012,5013,10512]],"properties":{"prefix":"9.1.2.3.1.2"}},{"type":"Polygon","arcs":[[2979,5638,10513,10514,10515,10516,1911,8410,8411,10517,10518]],"properties":{"prefix":"2.5.1.1.2.1"}},{"type":"Polygon","arcs":[[10519,-7297,10520,10521,589,590,591]],"properties":{"prefix":"2.6.7.2.3.2"}},{"type":"Polygon","arcs":[[10522,10523,10524,10525,-7969,3874,3875,3876,405]],"properties":{"prefix":"2.4.4.2.4.4"}},{"type":"Polygon","arcs":[[8639,-3534,-3533,10526,10527,10528,10529,10530,10531,-2228,10532]],"properties":{"prefix":"4.3.3.1.2.2"}},{"type":"Polygon","arcs":[[1889,10533,1894,10534]],"properties":{"prefix":"2.5.3.2.2.3"}},{"type":"Polygon","arcs":[[3963,3964,-9629,-9628,-9627,10535,10536]],"properties":{"prefix":"9.3.3.1.1.2"}},{"type":"Polygon","arcs":[[8874,10537,10538,10539,10540,10541]],"properties":{"prefix":"1.5.1.1.2.5"}},{"type":"Polygon","arcs":[[105,10542,10543,5651,5652,10544,10545,104]],"properties":{"prefix":"5.3.2.1.4.1"}},{"type":"Polygon","arcs":[[10546,8642,8643,10547,10548,10549]],"properties":{"prefix":"7.4.4.1.1.1"}},{"type":"Polygon","arcs":[[10550,10551,10552,1559,-5953,-5952,-5951,-5950,-2546,10553]],"properties":{"prefix":"9.8.2.2.5.2"}},{"type":"Polygon","arcs":[[10554,10555,-7715,-2411,-2410,-2409,10556,10557]],"properties":{"prefix":"5.2.1.3.1.4"}},{"type":"Polygon","arcs":[[10558,-3937,-3936,-3935,4838,4839]],"properties":{"prefix":"4.8.1.2.1.2"}},{"type":"Polygon","arcs":[[2575,10559,10560,10561,-5798,-5797,-5796]],"properties":{"prefix":"7.5.6.1.1.2"}},{"type":"Polygon","arcs":[[10562,-6710,-6709,-1000,-999,-998,-997,-996,7595,10563]],"properties":{"prefix":"5.1.1.4.2.1"}},{"type":"Polygon","arcs":[[-4024,4648,4649,4650,4651,8178,10564,10565]],"properties":{"prefix":"9.3.4.1.6.2"}},{"type":"Polygon","arcs":[[10566,8788,10567,10568]],"properties":{"prefix":"7.3.1.3.2.1"}},{"type":"Polygon","arcs":[[10569,10570,4683,8535,10571,10572]],"properties":{"prefix":"2.4.1.2.2.1"}},{"type":"Polygon","arcs":[[8719,8720,8721,-7245,-7244,-7243,-7248,3184,3185,3186,10573]],"properties":{"prefix":"7.5.4.2.1.2"}},{"type":"Polygon","arcs":[[-6838,-1798,-6257,-9611,10574,-9609]],"properties":{"prefix":"6.3.4.2.2.1"}},{"type":"Polygon","arcs":[[10575,-8333,-8332,10576,10577,10578]],"properties":{"prefix":"4.4.3.4.4.2"}},{"type":"Polygon","arcs":[[9858,9859,10579,3140,3141]],"properties":{"prefix":"4.1.3.1.3.2"}},{"type":"Polygon","arcs":[[10580,-7649,6917,6918,6919,6920,7885,7886]],"properties":{"prefix":"8.2.1.1.2.1"}},{"type":"Polygon","arcs":[[2015,2016,10581,10582,10583,6197,6198,6199,6200,9550,9551,9552,9553]],"properties":{"prefix":"8.1.6.7.1.4"}},{"type":"Polygon","arcs":[[-8892,-8891,-1533,-1532,10584,10250,10585,10586]],"properties":{"prefix":"4.6.1.1.3.1"}},{"type":"Polygon","arcs":[[6631,6632,10587,10588,10589,10590,9964,9965,6628,6629,6630]],"properties":{"prefix":"2.3.3.6.3.3"}},{"type":"Polygon","arcs":[[10591,10592,10593,-2187,-2186,-2185,-6897,-6906,-6905,-6904,3738,3739]],"properties":{"prefix":"2.3.2.2.3.3"}},{"type":"Polygon","arcs":[[10594,723,-6590,10595,10596]],"properties":{"prefix":"8.1.5.2.1.2"}},{"type":"Polygon","arcs":[[-1485,-1484,10597,10598,10599,10600,10601,4045,-1489,-1488,-1487,-1486]],"properties":{"prefix":"9.3.1.4.3.2"}},{"type":"Polygon","arcs":[[7108,4350,-5891,-5890,-5889,-5888,-5887,-5886,-5885,10602,7107]],"properties":{"prefix":"6.2.1.1.1.1"}},{"type":"Polygon","arcs":[[-9278,-10108,-10107,872,10603]],"properties":{"prefix":"9.8.5.1.2.2"}},{"type":"Polygon","arcs":[[10604,10605,9736,2752,10606,2758,-5477,-5476,-5475,-5474,-5473,-5472]],"properties":{"prefix":"4.1.5.5.1.3"}},{"type":"Polygon","arcs":[[-8183,-5114,1944,1945,1946,1947,1948,2584,2585,-8841,-8840,10607]],"properties":{"prefix":"7.2.1.5.3.1"}},{"type":"Polygon","arcs":[[4982,10608,10609,10277,4124,4125,-8740,4977,4978,4979,4980,4981]],"properties":{"prefix":"7.2.4.3.3.1"}},{"type":"Polygon","arcs":[[10610,10611,9049,-2295,-2294,-2293,10612]],"properties":{"prefix":"7.4.8.5.3.4"}},{"type":"Polygon","arcs":[[10613,8682,5312]],"properties":{"prefix":"6.3.2.1.1.2"}},{"type":"Polygon","arcs":[[10614,7713,-2417,-2416,-2415,-2414,-2413,-2412,7714]],"properties":{"prefix":"5.2.1.3.2.1"}},{"type":"Polygon","arcs":[[-833,-832,-8608,-8607,-8610,10615,10616,-834]],"properties":{"prefix":"4.1.3.2.1.1"}},{"type":"Polygon","arcs":[[431,432,10617,10618]],"properties":{"prefix":"1.7.1.3.3.2"}},{"type":"Polygon","arcs":[[-1954,-1953,-9592,-9591,-9595,10619,2260]],"properties":{"prefix":"7.1.1.2.1.2"}},{"type":"Polygon","arcs":[[-1571,-1570,-1569,-1568,-1567,-1566,-1565,-3109,-3133,-3132,-3131,-3130,10620]],"properties":{"prefix":"9.4.3.1.2.2"}},{"type":"Polygon","arcs":[[10621,9800,9801,9802,4912,-8465,10622,10623,4919,4920]],"properties":{"prefix":"7.6.2.3.2.1"}},{"type":"Polygon","arcs":[[10624,9632,-1556,-1605,-7452,-7451,-7457,-7456,9633,9634,5187]],"properties":{"prefix":"9.4.4.2.1.2"}},{"type":"Polygon","arcs":[[811,10625,10626,10627,10628,5141,5142,10477,10478,10629]],"properties":{"prefix":"3.4.2.3.1.1"}},{"type":"Polygon","arcs":[[10630,10631,7689,7690,7691,7692,7693,946,947,1832,1833,1834]],"properties":{"prefix":"9.4.1.1.1.4"}},{"type":"Polygon","arcs":[[-8779,-8778,-2894,390,391,10632]],"properties":{"prefix":"2.5.2.1.3.3"}},{"type":"Polygon","arcs":[[10633,186,1138,1139,1140,1141,1142,-8208,-8207,-8212,1165,9241,9242,10634]],"properties":{"prefix":"6.4.4.1.4.2"}},{"type":"Polygon","arcs":[[-3651,7842,7843,7844,7845,4374,4375,10635,10636,10637]],"properties":{"prefix":"7.8.1.7.1.2"}},{"type":"Polygon","arcs":[[10638,688,689,10639,10640]],"properties":{"prefix":"8.2.3.1.2.2"}},{"type":"Polygon","arcs":[[2930,2931,-10428,-10427,-10426,-10425,-8757,-1043,-1042,-1041,10641,10642]],"properties":{"prefix":"7.4.5.2.2.5"}},{"type":"Polygon","arcs":[[10643,-1281,-1280,-1279,-1278,-1277,10644,10645,9174,9175,5669,5670,5671,5672,5673,5674,5675,-8195,-8194]],"properties":{"prefix":"7.2.4.2.2.2"}},{"type":"Polygon","arcs":[[10646,10647,10648,10649,10650,10651]],"properties":{"prefix":"5.3.2.1.5.3"}},{"type":"Polygon","arcs":[[7496,2478,2479,2480,7497,7498,7499,7500,2511,2512,2513,10652]],"properties":{"prefix":"7.2.3.1.1.2"}},{"type":"Polygon","arcs":[[10653,10654,-4218,5414,5415,5416]],"properties":{"prefix":"2.6.2.4.3.2"}},{"type":"Polygon","arcs":[[-8420,10209,10655,10656,10657]],"properties":{"prefix":"7.2.7.4.1.2"}},{"type":"Polygon","arcs":[[6576,6577,6578,6579,6580,6581,6582,10658,10659]],"properties":{"prefix":"8.1.5.1.5.3"}},{"type":"Polygon","arcs":[[10660,-9834,-9833,10661,10662,10663,10664,10665]],"properties":{"prefix":"1.3.1.2.1.2"}},{"type":"Polygon","arcs":[[10666,10667,10668,10669,3713,4582,4583,4584,3745,-549,-548,-547,-546,-545]],"properties":{"prefix":"2.3.2.1.1.4"}},{"type":"Polygon","arcs":[[10670,10201,5523,5524,5525,5526,10671,10672,10673,10674,526,527,528,5515]],"properties":{"prefix":"1.9.2.7.1.1"}},{"type":"Polygon","arcs":[[10675,10485,-3527,-3526,-3525,-9452,-9451,-2362,-2361]],"properties":{"prefix":"4.3.1.4.1.2"}},{"type":"Polygon","arcs":[[10676,10677,4478,4479,10678,-3367,-3366,-3365,-3364]],"properties":{"prefix":"7.3.1.4.1.5"}},{"type":"Polygon","arcs":[[263,4895,-8342,-8341,-8340,10679,10680,10681,10682]],"properties":{"prefix":"8.1.6.1.5.3"}},{"type":"Polygon","arcs":[[7851,7852,7853,7854,10683]],"properties":{"prefix":"9.1.6.1.3.1"}},{"type":"Polygon","arcs":[[-9973,-9972,-8202,-8206,10684]],"properties":{"prefix":"5.3.6.2.1.1"}},{"type":"Polygon","arcs":[[10685,10686,-5792,-5791,-5790,-5789,-5788,-5787,-8990,-8989,-8991,-5801,10687]],"properties":{"prefix":"7.5.6.2.2.2"}},{"type":"Polygon","arcs":[[-8407,-4271,10688,10689,10690,10691,10692,10693]],"properties":{"prefix":"5.3.5.2.2.1"}},{"type":"Polygon","arcs":[[10694,1692,6454,6455,-5906,6456]],"properties":{"prefix":"2.1.2.2.1.2"}},{"type":"Polygon","arcs":[[10695,-2653,-2652,-2651,-2650,-2670,-2669,-2668,-2667,10696]],"properties":{"prefix":"2.6.6.3.5.3"}},{"type":"Polygon","arcs":[[-3200,10697,10698,10699,10700,7542,7543,-3201]],"properties":{"prefix":"7.6.3.1.2.4"}},{"type":"Polygon","arcs":[[-1426,10701,4515,-1427]],"properties":{"prefix":"1.8.3.5.3.1"}},{"type":"Polygon","arcs":[[-6566,3537,3538,3539,10702,-6567]],"properties":{"prefix":"4.3.2.4.2.1"}},{"type":"Polygon","arcs":[[-5014,10703,10704,10705,-4998,-4997,10706,10707,10708,5686,-673,-672,-671,-670,-669,-5015]],"properties":{"prefix":"9.1.2.4.2.3"}},{"type":"Polygon","arcs":[[4028,-3968,-3967,-3966,-3965,-7622,-7626,10709,10710]],"properties":{"prefix":"9.3.1.6.3.5"}},{"type":"Polygon","arcs":[[-7692,-7691,10711,-4304,-4303,-4302,10712]],"properties":{"prefix":"9.4.1.1.2.1"}},{"type":"Polygon","arcs":[[10713,10714,10715,10716,701,702,703,704,705,706]],"properties":{"prefix":"8.2.1.8.1.1"}},{"type":"Polygon","arcs":[[5037,5038,-2834,-9331,10717,10718,10719]],"properties":{"prefix":"2.6.4.2.3.5"}},{"type":"Polygon","arcs":[[10720,-6795,10721]],"properties":{"prefix":"7.8.1.6.1.1"}},{"type":"Polygon","arcs":[[-7304,-7303,10722,10723,-4088,-4087,-4086,9300,-9003,-9002,-9001,10724,10725]],"properties":{"prefix":"2.1.2.1.3.1"}},{"type":"Polygon","arcs":[[10726,9535,-2077,-2076,-2075,10727,10728,10729]],"properties":{"prefix":"7.5.6.3.3.5"}},{"type":"Polygon","arcs":[[-8634,-8633,-8948,6696,6697,6698,4144,10730,-8635]],"properties":{"prefix":"7.2.4.6.2.1"}},{"type":"Polygon","arcs":[[10731,6017,6018,6019,-7893,10732]],"properties":{"prefix":"1.5.1.2.1.2"}},{"type":"Polygon","arcs":[[10733,10734,10735,965,966,967,10736,10737,10738]],"properties":{"prefix":"9.3.5.1.2.3"}},{"type":"Polygon","arcs":[[10739,7827,7828,1867,10740]],"properties":{"prefix":"5.1.3.2.3.4"}},{"type":"Polygon","arcs":[[10741,3272,10176,10177,10178,10179,10180,10181,-8586,10742,10743]],"properties":{"prefix":"6.3.1.1.2.4"}},{"type":"Polygon","arcs":[[10744,-3417,-3416,-3415,-3414,-3413,-3412,-3411,10745,10746,10747,10748,5833,10749]],"properties":{"prefix":"6.3.5.2.3.2"}},{"type":"Polygon","arcs":[[10750,10751,6722,6723,9022,9023,9024,-3481,6727,10752,10753,10754]],"properties":{"prefix":"1.3.2.2.1.3"}},{"type":"Polygon","arcs":[[10755,10756,-3165,-2582,-6226,-6225,8794,8795,10757]],"properties":{"prefix":"7.5.1.2.1.3"}},{"type":"Polygon","arcs":[[10758,-2714,-2713]],"properties":{"prefix":"2.6.4.3.2.3"}},{"type":"Polygon","arcs":[[10759,10760,-9458,6412,10761]],"properties":{"prefix":"1.3.1.3.1.1"}},{"type":"Polygon","arcs":[[8622,10762,10763,8618,-2476,10764,10765,10766,-6490,-6489,-6488,8619,8620,8621]],"properties":{"prefix":"7.2.2.6.4.1"}},{"type":"Polygon","arcs":[[1298,1299,1300,10767,10768,10769]],"properties":{"prefix":"7.3.3.2.3.2"}},{"type":"Polygon","arcs":[[10770,-9786,-3000,-2999,-2998,1082,1083,1084,1085,1086]],"properties":{"prefix":"5.3.6.3.10.1"}},{"type":"Polygon","arcs":[[7077,7078,7079,10771,10772,7085,-9016,-9015,-9337,10773,10774,10775,10776]],"properties":{"prefix":"8.1.3.2.4.3"}},{"type":"Polygon","arcs":[[693,10777,10778,10779,10780,-8393,9883,9884,5285,9885,9886,9887,-4165,-4164,-4163,692]],"properties":{"prefix":"8.2.2.1.2.2"}},{"type":"Polygon","arcs":[[10781,10782,2211,2212,8005,8006,10783]],"properties":{"prefix":"4.1.6.3.2.1"}},{"type":"Polygon","arcs":[[3949,3950,-2304,5277,10784,10785,10786,10787]],"properties":{"prefix":"2.4.6.1.1.2"}},{"type":"Polygon","arcs":[[159,2136,3502,3503,3504,10788,10789,10790,10791]],"properties":{"prefix":"6.3.5.5.5.1"}},{"type":"Polygon","arcs":[[-3906,-3905,-3904,-3903,-3902,-9295,10792,10793,-7187,-7197,10794]],"properties":{"prefix":"9.3.4.5.2.2"}},{"type":"Polygon","arcs":[[10795,10796,10797,-3788,-3787,-5413,5427,5428,-4663,-4662,10302,10303,-4687]],"properties":{"prefix":"2.4.1.1.1.4"}},{"type":"Polygon","arcs":[[10798,7269,604,605,606,10799]],"properties":{"prefix":"2.6.6.2.5.4"}},{"type":"Polygon","arcs":[[8806,-8292,8807,7130,7131,7132,7133,8808,10800,8805]],"properties":{"prefix":"8.1.5.5.3.1"}},{"type":"Polygon","arcs":[[-8966,-8965,-8964,9266,4564,4565,4566,-1358,-1357,-1356,-1355,-1354,10801]],"properties":{"prefix":"7.4.4.1.5.1"}},{"type":"Polygon","arcs":[[10802,10803,-1397,10804,10805,10806,-2174,-2173,-2172,10807]],"properties":{"prefix":"1.4.2.4.1.2"}},{"type":"Polygon","arcs":[[10808,10809,10810,6238,7836,7837,7838,10811]],"properties":{"prefix":"9.4.2.3.2.3"}},{"type":"Polygon","arcs":[[-1268,-1267,10812,10813]],"properties":{"prefix":"7.2.4.2.3.2"}},{"type":"Polygon","arcs":[[10814,2468,2469,10815]],"properties":{"prefix":"4.2.2.1.4.1"}},{"type":"Polygon","arcs":[[7947,6230,6231,6232,6233,6234,7948,7949,10816]],"properties":{"prefix":"9.4.2.3.6.2"}},{"type":"Polygon","arcs":[[10817,-5129,-6367,1996,1997,1998,1999,4252,7160,10818]],"properties":{"prefix":"1.2.1.1.1.1"}},{"type":"Polygon","arcs":[[7381,6034,10819]],"properties":{"prefix":"4.3.2.3.3.2"}},{"type":"Polygon","arcs":[[-448,-10226,-9414,10820,-449]],"properties":{"prefix":"4.2.1.1.2.1"}},{"type":"Polygon","arcs":[[10821,10822,7427,7428,7429]],"properties":{"prefix":"8.1.4.1.3.1"}},{"type":"Polygon","arcs":[[7315,7316,10823]],"properties":{"prefix":"7.5.3.1.2.2"}},{"type":"Polygon","arcs":[[4739,4740,4741,10824,10825,10826]],"properties":{"prefix":"9.1.3.1.5.3"}},{"type":"Polygon","arcs":[[10827,-1132,-1131,-1130,-1129,-3360,10828,10829,10830]],"properties":{"prefix":"7.3.3.1.1.1"}},{"type":"Polygon","arcs":[[7609,7610,6613,6614,-5522,10831,10832]],"properties":{"prefix":"1.9.2.3.3.1"}},{"type":"Polygon","arcs":[[-7550,-7558,5705,5706,9863,9864,10833,10834,-7552,-7551]],"properties":{"prefix":"1.3.2.6.1.2"}},{"type":"Polygon","arcs":[[-7291,-7290,1093,1094,1095,1096,1097,1098,-9118,-9117,10835]],"properties":{"prefix":"5.3.6.3.7.1"}},{"type":"Polygon","arcs":[[7677,7678,-1095,10836,10837]],"properties":{"prefix":"6.1.1.1.3.3"}},{"type":"Polygon","arcs":[[10838,10839]],"properties":{"prefix":"2.4.1.6.1.1"}},{"type":"Polygon","arcs":[[-2832,-2831,9323,9324,9325,9326,-2704,374,10840,10841,10842,10843]],"properties":{"prefix":"2.6.4.2.4.2"}},{"type":"Polygon","arcs":[[10844,10845,4631,-7412,-7411]],"properties":{"prefix":"8.2.1.5.3.5"}},{"type":"Polygon","arcs":[[10846,-8580,1863,-8230]],"properties":{"prefix":"5.1.3.2.6.1"}},{"type":"Polygon","arcs":[[978,979,980,981,982,5210,5211,5212,10847]],"properties":{"prefix":"4.4.4.4.5.2"}},{"type":"Polygon","arcs":[[10848,10849,-3844,-3843,10850,10851,10852,-7633,8334,8335,10853]],"properties":{"prefix":"6.4.3.3.1.3"}},{"type":"Polygon","arcs":[[10854,9395,9396,9397,9398,-7363,-7362,-7368,10855,10856,10857,-765,-764,-763,-762,-761,-760,-3829]],"properties":{"prefix":"7.7.2.1.3.1"}},{"type":"Polygon","arcs":[[-4740,-4739,-4738,-4737,2884,2885,10013,10858,10859,10860,10861,10862]],"properties":{"prefix":"9.1.3.2.2.1"}},{"type":"Polygon","arcs":[[-4858,3981,3982,3983,3984,10863]],"properties":{"prefix":"9.3.3.2.1.3"}},{"type":"Polygon","arcs":[[10864,-3975,8142,10865,10866,-711,-710,8144,10867]],"properties":{"prefix":"9.3.4.1.2.1"}},{"type":"Polygon","arcs":[[10868,10869,245,246,-8369,-8368,-8367,-8366,-8365,-8364,-3670,10870]],"properties":{"prefix":"7.8.1.5.1.5"}},{"type":"Polygon","arcs":[[10871,10872,10873,10874,-4037,-4036,-4035,-4034,-4033,7049]],"properties":{"prefix":"9.3.2.1.1.1"}},{"type":"Polygon","arcs":[[-8822,-8821,10875,10876,10877,10878,10879,10880,-8823]],"properties":{"prefix":"7.2.2.4.1.3"}},{"type":"Polygon","arcs":[[2796,2797,10881,10882,10883,4397,2819,2820,2821,2822,10884,10885,10886,10887,10888,2791,2792,2793,2794,2795]],"properties":{"prefix":"2.6.3.1.3.1"}},{"type":"Polygon","arcs":[[87,1843,7336,7337,10889,86]],"properties":{"prefix":"5.1.3.5.1.1"}},{"type":"Polygon","arcs":[[-9534,5794,-2052,10890,-2080,10891]],"properties":{"prefix":"7.5.6.3.4.3"}},{"type":"Polygon","arcs":[[9005,1381,1382,1383,-8693,-8692,9006,9007,9008,3392,3393,6602,9009,10892]],"properties":{"prefix":"1.3.3.6.1.1"}},{"type":"Polygon","arcs":[[497,498,499,7778,7779,7780,7781,10893,10894,10895]],"properties":{"prefix":"1.9.3.3.2.4"}},{"type":"Polygon","arcs":[[10896,10897,10898,-10837,-1094,-1093,-1092,-1091,-1090,-1089,-1088,-1087,7679,7680,7681,7682,10899,10900]],"properties":{"prefix":"6.1.1.1.3.2"}},{"type":"Polygon","arcs":[[-7252,-7251,-6852,-4974,-4973,4127,4128,4129,4130,10901,10902,9566,10903]],"properties":{"prefix":"7.2.4.5.2.1"}},{"type":"Polygon","arcs":[[-9774,10904,-9298,-9297,-9296,-3899,5748,-5730,-9776,-9775]],"properties":{"prefix":"9.3.4.5.5.1"}},{"type":"Polygon","arcs":[[-3072,-3071,-3070,-3069,6590,6591,6592,6593,6594,6595,10905,10906,10188]],"properties":{"prefix":"7.4.8.1.2.2"}},{"type":"Polygon","arcs":[[-8348,-8347,-4506,-4505,10907,10908,10909,-6467,-6466,10910]],"properties":{"prefix":"1.8.3.4.4.1"}},{"type":"Polygon","arcs":[[4789,4790,10911,4788]],"properties":{"prefix":"9.8.3.3.3.4"}},{"type":"Polygon","arcs":[[7501,7502,7503,1448,1449,10912]],"properties":{"prefix":"1.3.1.2.3.1"}},{"type":"Polygon","arcs":[[-3731,-3730,-3729,-3728,-3727,-3726,-3725,-3724,10913,10914,10915,10916,-556,-555,-554,-553,-552,-551,-550,-3746,-3745,10917]],"properties":{"prefix":"2.3.3.1.2.1"}},{"type":"Polygon","arcs":[[734,10918,10919,733]],"properties":{"prefix":"8.1.4.4.3.1"}},{"type":"Polygon","arcs":[[10920,10921,278,279,5287,5288,5289,-4166,-9888,-9887,10922]],"properties":{"prefix":"8.2.2.1.3.2"}},{"type":"Polygon","arcs":[[7153,3597,3598,8568,8569,8570,3626,3627,3628,-600,8571]],"properties":{"prefix":"3.4.1.1.1.1"}},{"type":"Polygon","arcs":[[115,116,10923,-7937,3021,3022,3023,3024,3025,10924,10925,10926]],"properties":{"prefix":"5.3.2.2.3.2"}},{"type":"Polygon","arcs":[[1766,5231,5232,5233,5234,5235,5236,10927,10928,10929]],"properties":{"prefix":"6.2.1.5.3.1"}},{"type":"Polygon","arcs":[[10930,-7707,10931,1481,-7711]],"properties":{"prefix":"9.1.8.1.2.2"}},{"type":"Polygon","arcs":[[4424,3926,3927,10932,10933,10934,10935,10936]],"properties":{"prefix":"9.3.5.5.3.2"}},{"type":"Polygon","arcs":[[-3384,16,10937,10938,10939,10940,10941,10942,7819]],"properties":{"prefix":"1.3.4.2.5.1"}},{"type":"Polygon","arcs":[[-10197,-10030,6127,10460,10943]],"properties":{"prefix":"6.3.3.4.1.3"}},{"type":"Polygon","arcs":[[10944,-6776,-6775,-3576,-3575,-3574,-3573,-3572,10945,10946,9422,9423,10947]],"properties":{"prefix":"7.6.3.4.2.3"}},{"type":"Polygon","arcs":[[10948,10949]],"properties":{"prefix":"7.6.2.1.1.1"}},{"type":"Polygon","arcs":[[10950,10951,10952]],"properties":{"prefix":"7.6.3.2.1.3"}},{"type":"Polygon","arcs":[[-7812,6028,6029,6030,6031,6032,6033,-7382,-7381,-7380,10953,10954,10955,-7813]],"properties":{"prefix":"4.3.2.3.2.2"}},{"type":"Polygon","arcs":[[10956,10957,10958,-3529,-5252,-5251,-2353,-2352,4337,4338]],"properties":{"prefix":"4.3.1.3.1.2"}},{"type":"Polygon","arcs":[[10959,10960,2298,6626,2308]],"properties":{"prefix":"2.3.3.6.5.2"}},{"type":"Polygon","arcs":[[-5183,10961,3122,10962,10963]],"properties":{"prefix":"9.4.4.3.3.2"}},{"type":"Polygon","arcs":[[10964,4731,1194,1195,-10165,-10164]],"properties":{"prefix":"6.3.7.3.3.1"}},{"type":"Polygon","arcs":[[-5058,-5057,-5056,-5055,-5054,-5053,-5052,10965,10966,10967,10968,10969]],"properties":{"prefix":"6.1.1.2.1.1"}},{"type":"Polygon","arcs":[[10970,-3050,8572,8573,8574,8575,8576,8577,8578,-8232,10971,10972]],"properties":{"prefix":"7.4.6.4.3.1"}},{"type":"Polygon","arcs":[[10973,10974,-7226,-7235,10975,10976,-1544,-4608,-4607,-4606,6531]],"properties":{"prefix":"4.4.3.4.1.2"}},{"type":"Polygon","arcs":[[-4227,-6004,10977,10978,10979]],"properties":{"prefix":"2.6.2.1.3.2"}},{"type":"Polygon","arcs":[[10980,-7860,-7859,7068,2604]],"properties":{"prefix":"7.2.1.4.3.2"}},{"type":"Polygon","arcs":[[10981,10982,10983,-1071,119,7370,-5244,-5243,5864,5865,5866]],"properties":{"prefix":"6.2.1.4.2.2"}},{"type":"Polygon","arcs":[[7744,7745,-5444,10984,-5459,10985]],"properties":{"prefix":"7.6.1.3.4.2"}},{"type":"Polygon","arcs":[[146,10986,-7239,-6097,7135,7136,10987,145]],"properties":{"prefix":"6.3.3.1.1.1"}},{"type":"Polygon","arcs":[[5375,5376,-2862,-2861,-2860,4255,4256,4257,10988,10989,10990,10991]],"properties":{"prefix":"7.4.4.6.4.1"}},{"type":"Polygon","arcs":[[10992,10993,10994,10995,6489,6490,9140,10996,10997]],"properties":{"prefix":"7.2.2.4.4.2"}},{"type":"Polygon","arcs":[[-5546,9580,9581,-6630,10998,-6142]],"properties":{"prefix":"2.3.3.4.1.2"}},{"type":"Polygon","arcs":[[10999,11000,11001,11002,11003,-5117,11004,2589,2590,2591,2592,2593]],"properties":{"prefix":"7.2.1.5.2.4"}},{"type":"Polygon","arcs":[[-577,11005,11006,10134,-578]],"properties":{"prefix":"2.4.1.4.1.1"}},{"type":"Polygon","arcs":[[4655,11007,11008,11009,-3972,-3971,-3970,-9948,-9950,-9949,4654]],"properties":{"prefix":"9.3.4.1.3.3"}},{"type":"Polygon","arcs":[[2959,2960,324,325,-6312,-6327,-6326,-6325,-6324,11010,6746]],"properties":{"prefix":"9.1.5.2.1.1"}},{"type":"Polygon","arcs":[[11011,11012,4534]],"properties":{"prefix":"1.9.3.2.4.2"}},{"type":"Polygon","arcs":[[11013,6988,-3134,-8716,-8715,-8714,-8718,8812,11014]],"properties":{"prefix":"4.1.2.5.4.1"}},{"type":"Polygon","arcs":[[-8651,11015,11016,11017,11018,3826,11019,11020]],"properties":{"prefix":"7.7.1.4.2.1"}},{"type":"Polygon","arcs":[[-4347,10372,11021,11022,11023,10375,11024,1190,1191,-2145,-2144,-2143,-2142,-4348]],"properties":{"prefix":"6.4.3.1.1.3"}},{"type":"Polygon","arcs":[[9201,11025,2118,2119,2120,11026]],"properties":{"prefix":"4.4.4.5.1.1"}},{"type":"Polygon","arcs":[[6291,6292,11027,-7810,11028]],"properties":{"prefix":"4.1.3.3.3.1"}},{"type":"Polygon","arcs":[[11029,8421,8422,11030,11031,11032,-5572,-5571,-5570,-5569]],"properties":{"prefix":"7.2.7.4.2.1"}},{"type":"Polygon","arcs":[[11033,6138,-3769,-3859,11034,11035,11036]],"properties":{"prefix":"5.1.2.4.4.4"}},{"type":"Polygon","arcs":[[11037,-8861,-8860,-8859,9399,-5721,11038,11039,11040,11041,-722,-721,-720]],"properties":{"prefix":"9.3.4.3.5.1"}},{"type":"Polygon","arcs":[[8881,8882,8883,8884,4486,8885,8886,8887,-947,-946,-945,-944,11042]],"properties":{"prefix":"7.6.4.2.2.1"}},{"type":"Polygon","arcs":[[11043,11044,-10810,-10809,-10812,7839,11045,11046]],"properties":{"prefix":"9.4.2.3.2.2"}},{"type":"Polygon","arcs":[[7442,7443,7444,2760,2761,11047,11048,11049]],"properties":{"prefix":"4.1.5.2.1.3"}},{"type":"Polygon","arcs":[[9346,-8123,11050,-3402]],"properties":{"prefix":"6.3.2.2.4.2"}},{"type":"Polygon","arcs":[[11051,2432,2433,2434,7278,7279]],"properties":{"prefix":"3.1.2.1.2.3"}},{"type":"Polygon","arcs":[[11052,11053,7411,4632,4633,4634,-2044,11054,11055]],"properties":{"prefix":"8.2.1.5.1.2"}},{"type":"Polygon","arcs":[[11056,-5976,-5975,-5974,8081,8082,8083,8084,8085]],"properties":{"prefix":"7.4.4.4.1.3"}},{"type":"Polygon","arcs":[[11057,9260,9261,9262,9263,9264,-7259,-7258,-7257]],"properties":{"prefix":"3.4.4.2.2.1"}},{"type":"Polygon","arcs":[[11058,620,621,9011,9012,9013,9014,9015,7086,7087,764,765,11059]],"properties":{"prefix":"8.1.3.2.1.3"}},{"type":"Polygon","arcs":[[-5532,11060,510,511,11061]],"properties":{"prefix":"1.9.2.8.2.1"}},{"type":"Polygon","arcs":[[415,-10028,11062,-6009]],"properties":{"prefix":"2.4.1.5.4.3"}},{"type":"Polygon","arcs":[[11063,-8224,-8223,11064,11065,-7830,-7423,-7422,-7421]],"properties":{"prefix":"5.1.3.2.2.1"}},{"type":"Polygon","arcs":[[7767,11066,11067,22]],"properties":{"prefix":"1.3.4.3.1.2"}},{"type":"Polygon","arcs":[[11068,-8869,-8868,6556,10094,10095]],"properties":{"prefix":"1.5.1.1.1.1"}},{"type":"Polygon","arcs":[[7630,6854,6855,6856,11069,11070,11071,11072,11073,11074,11075,11076]],"properties":{"prefix":"7.2.4.4.3.2"}},{"type":"Polygon","arcs":[[11077,-6718,-6717,-6716,-3470,10087,10088,10089,10090]],"properties":{"prefix":"1.3.2.4.1.2"}},{"type":"Polygon","arcs":[[11078,11079,11080,11081,-8273,9382,9383,9384,9385,-6970,-6969,-6968,-6967,-7485,-7484,-7483,11082]],"properties":{"prefix":"4.1.2.4.2.2"}},{"type":"Polygon","arcs":[[-5484,11083,8112,-5485]],"properties":{"prefix":"8.5.2.1.4.2"}},{"type":"Polygon","arcs":[[-10450,-10449,-10448,11084,-630]],"properties":{"prefix":"7.8.3.2.1.1"}},{"type":"Polygon","arcs":[[-6655,11085,-1615,11086]],"properties":{"prefix":"7.6.6.2.1.2"}},{"type":"Polygon","arcs":[[-2857,-2856,-4245,5018,11087]],"properties":{"prefix":"7.4.6.2.4.2"}},{"type":"Polygon","arcs":[[4889,4890,11088,11089,-2134,-2133,-2132,-2131,-2130,11090,11091]],"properties":{"prefix":"4.6.1.2.1.5"}},{"type":"Polygon","arcs":[[11092,11093,11094,11095,11096]],"properties":{"prefix":"8.2.1.7.2.1"}},{"type":"Polygon","arcs":[[-3110,1814,1815,1816,1817,1818,1819,1820,1821,11097,11098,11099,11100,11101]],"properties":{"prefix":"9.4.5.2.1.1"}},{"type":"Polygon","arcs":[[-5278,-2303,-2302,-2301,-2300,-2299,-2298,-2297,-1916,-1915,-1914,-1913,-1912,-1911,11102,-5279]],"properties":{"prefix":"2.4.6.2.1.1"}},{"type":"Polygon","arcs":[[-8126,9909,11103]],"properties":{"prefix":"9.3.5.3.3.1"}},{"type":"Polygon","arcs":[[11104,-7792,-7343,422,-7796]],"properties":{"prefix":"1.3.1.4.2.1"}},{"type":"Polygon","arcs":[[11105,11106,11107,-608,-607,-606]],"properties":{"prefix":"3.4.4.7.1.2"}},{"type":"Polygon","arcs":[[10113,11108,4957,4958,4959,-8260,-8259,-8258,-8263,-8262]],"properties":{"prefix":"7.7.1.3.2.1"}},{"type":"Polygon","arcs":[[11109,11110,-7128,-7127,11111,11112]],"properties":{"prefix":"8.1.5.3.1.2"}},{"type":"Polygon","arcs":[[11113,11114,9508,9509,9510,9511,11115]],"properties":{"prefix":"4.6.1.1.6.1"}},{"type":"Polygon","arcs":[[11116,11117,6434,8052]],"properties":{"prefix":"2.3.1.1.1.1"}},{"type":"Polygon","arcs":[[6620,11118,11119,-6110,11120,6619]],"properties":{"prefix":"6.3.3.3.1.4"}},{"type":"Polygon","arcs":[[11121,11122,11123,11124,11125,11126]],"properties":{"prefix":"4.4.3.4.3.1"}},{"type":"Polygon","arcs":[[11127,7966,-6692,4138,4139,4140,4141,4142,-2599,-2598,-2597,-2596,4143,-6699,-6698,11128]],"properties":{"prefix":"7.2.4.7.1.1"}},{"type":"Polygon","arcs":[[11129,11130,11131,-2233]],"properties":{"prefix":"4.3.4.5.1.1"}},{"type":"Polygon","arcs":[[-9158,11132,11133,1790,1791,10489,-9159]],"properties":{"prefix":"6.2.1.3.2.1"}},{"type":"Polygon","arcs":[[10451,11134,11135,11136,-3393,-3392,-3391,-5956]],"properties":{"prefix":"1.3.4.2.1.1"}},{"type":"Polygon","arcs":[[-8162,11137,11138]],"properties":{"prefix":"7.6.4.2.3.3"}},{"type":"Polygon","arcs":[[7551,7552,7553,7554,7555,7556,5703,5704,7557,11139]],"properties":{"prefix":"1.3.2.6.2.1"}},{"type":"Polygon","arcs":[[-938,7579,11140,11141,-4496,-939]],"properties":{"prefix":"7.6.4.1.2.1"}},{"type":"Polygon","arcs":[[6379,11142,11143,11144,2657,2658,11145,9919]],"properties":{"prefix":"2.6.7.1.1.1"}},{"type":"Polygon","arcs":[[11146,11147,1670,1671,11148,8998,8999,9000,11149]],"properties":{"prefix":"2.1.2.1.1.2"}},{"type":"Polygon","arcs":[[-10528,11150,-3446,-3445,11151]],"properties":{"prefix":"4.3.3.1.2.4"}},{"type":"Polygon","arcs":[[11152,4814,4815,4816,-8838]],"properties":{"prefix":"3.4.4.5.2.1"}},{"type":"Polygon","arcs":[[-2102,11153,11154,11155]],"properties":{"prefix":"4.3.2.2.1.1"}},{"type":"Polygon","arcs":[[96,11156,-10555,-10558,-10557,-2408,11157,11158,11159]],"properties":{"prefix":"5.2.1.3.1.2"}},{"type":"Polygon","arcs":[[8395,8396,-3756,-3755,-3754,-3753,-3752,5290,8397,11160,11161,8394]],"properties":{"prefix":"8.2.2.1.1.1"}},{"type":"Polygon","arcs":[[11162,11163,11164,11165,9642,9643,9644,9645,2912,2913,2914,2915,385]],"properties":{"prefix":"2.6.1.1.1.5"}},{"type":"Polygon","arcs":[[11166,6840,6841,6842,-6246,-3490,11167,11168,1232,1233]],"properties":{"prefix":"6.3.4.3.1.1"}},{"type":"Polygon","arcs":[[-4471,-4470,-4469,-4468,11169,-10569,11170,11171,11172,11173]],"properties":{"prefix":"7.3.1.3.2.3"}},{"type":"Polygon","arcs":[[11174,5334,5335,-4564,5336,5337,11175]],"properties":{"prefix":"7.1.1.4.4.3"}},{"type":"Polygon","arcs":[[-10571,-10570,11176,11177,4674,4675,8534,4678,4331,4679,4680,4681,4682]],"properties":{"prefix":"2.4.1.2.2.3"}},{"type":"Polygon","arcs":[[3749,11178,-2008,11179]],"properties":{"prefix":"8.2.1.8.3.1"}},{"type":"Polygon","arcs":[[-7493,-2023,7874,11180]],"properties":{"prefix":"8.2.1.2.3.1"}},{"type":"Polygon","arcs":[[-8093,10214,11181]],"properties":{"prefix":"9.1.4.1.1.1"}},{"type":"Polygon","arcs":[[11182,11183,2559,2560,-1852,5103,5104,5105,5106,5107,-1862,11184]],"properties":{"prefix":"5.2.1.1.1.3"}},{"type":"Polygon","arcs":[[11185,11186,11187,3803,3804,3805,3806]],"properties":{"prefix":"2.4.2.1.1.1"}},{"type":"Polygon","arcs":[[8158,11188,11189,402]],"properties":{"prefix":"2.4.5.1.3.1"}},{"type":"Polygon","arcs":[[11190,6561,6562,6563,-4700,11191,-8392,-8391]],"properties":{"prefix":"9.1.7.1.1.1"}},{"type":"Polygon","arcs":[[5412,-3786,11192,11193,5411]],"properties":{"prefix":"2.4.1.7.2.1"}},{"type":"Polygon","arcs":[[213,-1637,-1636,-1635,9302,-7539,-7538,-7537,11194,11195,11196,11197]],"properties":{"prefix":"7.6.3.1.1.2"}},{"type":"Polygon","arcs":[[-8248,-8247,-8246,-8252,11198,11199,-6155]],"properties":{"prefix":"3.4.4.6.1.4"}},{"type":"Polygon","arcs":[[3569,3570,3571,3572,11200,11201,11202,11203]],"properties":{"prefix":"7.6.4.1.1.4"}},{"type":"Polygon","arcs":[[-481,-480,-479,-478,-477,3601,3602,3603,3604,11204,11205,11206]],"properties":{"prefix":"3.4.1.2.1.2"}},{"type":"Polygon","arcs":[[-10585,-1531,-1530,-1529,-4893,-9211,-9210,10249]],"properties":{"prefix":"4.6.1.1.3.3"}},{"type":"Polygon","arcs":[[11207,11208,-10593]],"properties":{"prefix":"2.3.2.2.3.1"}},{"type":"Polygon","arcs":[[-4710,-4709,-4708,-4723,-8190,-8189,11209]],"properties":{"prefix":"7.4.8.3.3.2"}},{"type":"Polygon","arcs":[[11210,11211,11212,3583,3584,3585,3586,3587,3588,-3460,-3459]],"properties":{"prefix":"7.6.4.2.4.5"}},{"type":"Polygon","arcs":[[7586,11213,7582,7583,7584,7585,-3191,-3190,-3189,-3188,-3187,-3186]],"properties":{"prefix":"7.5.3.6.2.3"}},{"type":"Polygon","arcs":[[2346,443,444,445,446,447,11214,11215,11216,11217,11218,11219]],"properties":{"prefix":"1.9.1.3.1.2"}},{"type":"Polygon","arcs":[[-7982,-7981,3938,3939,3940,1530,1531,1532,1533,-7606,-7605,-7604,-7603,-7602,5991,5992,5993,1014,11220,-7983]],"properties":{"prefix":"4.8.3.2.3.1"}},{"type":"Polygon","arcs":[[11221,11222,5295,11223,11224,535,11225]],"properties":{"prefix":"1.8.3.6.1.3"}},{"type":"Polygon","arcs":[[11226,5118,5119,5120,5121,5122,5123,5124,5125,5126,5127,7224,11227]],"properties":{"prefix":"7.2.1.2.1.1"}},{"type":"Polygon","arcs":[[11228,133,11229,11230,11231]],"properties":{"prefix":"6.3.1.1.1.2"}},{"type":"Polygon","arcs":[[2394,11232,5849,5850,5851,-4276,-4275,-4274,11233,-10508,-10510,2393]],"properties":{"prefix":"5.3.5.2.1.2"}},{"type":"Polygon","arcs":[[11234,5860,5861,5862,5863,-1078,11235,11236,11237]],"properties":{"prefix":"6.2.1.4.1.1"}},{"type":"Polygon","arcs":[[11238,11239,-10611,-10613,-2292,-919,-918,-917,11240]],"properties":{"prefix":"7.4.8.5.3.2"}},{"type":"Polygon","arcs":[[11241,11242,-3496,-3495,-3494,11243,7762,6251,6252]],"properties":{"prefix":"6.3.4.1.2.2"}},{"type":"Polygon","arcs":[[1391,-6474,-6486,-6485,11244,24]],"properties":{"prefix":"1.3.4.3.3.1"}},{"type":"Polygon","arcs":[[-8501,-8500,-8133,-8132,-6046,-6045,-6044,11245]],"properties":{"prefix":"4.3.2.2.2.1"}},{"type":"Polygon","arcs":[[11246,1508,6312,6313,11247,11248]],"properties":{"prefix":"9.1.5.3.1.4"}},{"type":"Polygon","arcs":[[-10987,147,3405,3406,11249,-7240]],"properties":{"prefix":"6.3.3.1.1.2"}},{"type":"Polygon","arcs":[[812,813,814,815,816,817,818,5134,5135,5136,11250,-10626]],"properties":{"prefix":"3.4.2.3.1.3"}},{"type":"Polygon","arcs":[[270,-6669,-6668,11251,11252,11253,11254]],"properties":{"prefix":"8.1.6.5.3.1"}},{"type":"Polygon","arcs":[[-11230,134,135,8581,8582,8583,8584,8585,8586,8587,11255,11256,-11231]],"properties":{"prefix":"6.3.1.1.1.3"}},{"type":"Polygon","arcs":[[11257,11258,10017,-640,-639,10018,10019,-4378,-4377,-4376,11259]],"properties":{"prefix":"7.8.1.6.2.2"}},{"type":"Polygon","arcs":[[6119,6120,6121,6122,11260,11261,11262]],"properties":{"prefix":"6.3.3.4.4.1"}},{"type":"Polygon","arcs":[[11263,-3406,148,11264,5826]],"properties":{"prefix":"6.3.5.2.4.1"}},{"type":"Polygon","arcs":[[109,110,5643,11265,-10651,-10650,-10649,11266]],"properties":{"prefix":"5.3.2.1.5.1"}},{"type":"Polygon","arcs":[[11267,11268,11269,4118,11270,11271,5362,5363,5364,5365,7221,11272]],"properties":{"prefix":"4.4.3.6.1.4"}},{"type":"Polygon","arcs":[[11273,216,-6060,-4955,-4972,11274,11275]],"properties":{"prefix":"7.7.1.2.6.2"}},{"type":"Polygon","arcs":[[-1923,-1922,-1921,-5751,-5750,-9605,-9604,-9603,11276,11277,-1924]],"properties":{"prefix":"8.4.2.2.4.1"}},{"type":"Polygon","arcs":[[11278,11279,6408,6409,6410,6411,9457,9458,11280,11281]],"properties":{"prefix":"1.3.1.3.2.2"}},{"type":"Polygon","arcs":[[11282,11283,11284,-6741,557,558,559,11285]],"properties":{"prefix":"1.3.2.3.1.2"}},{"type":"Polygon","arcs":[[11286,2676,2677,2678,9803,9804,9805,2695,2696,2697,2698,9806,9807,11287,11288]],"properties":{"prefix":"2.6.5.2.3.2"}},{"type":"Polygon","arcs":[[-1583,-1582,-1581,6229,-7948,-7947,-7946,11289]],"properties":{"prefix":"9.4.2.3.5.4"}},{"type":"Polygon","arcs":[[9905,11290,-994]],"properties":{"prefix":"5.1.1.4.3.1"}},{"type":"Polygon","arcs":[[-3839,-3838,-3837,-3857,4343,-10152,-10151,-10150,-10149,11291]],"properties":{"prefix":"6.4.1.2.2.1"}},{"type":"Polygon","arcs":[[261,11292,-10681,-10680,-8343,4906,10157,-9874,11293]],"properties":{"prefix":"8.1.6.1.5.1"}},{"type":"Polygon","arcs":[[-2815,11294,11295,-10438]],"properties":{"prefix":"2.6.2.5.2.2"}},{"type":"Polygon","arcs":[[123,11296,11297]],"properties":{"prefix":"6.2.1.5.1.2"}},{"type":"Polygon","arcs":[[11298,11299,6452,-875,-874,-873,-872,-871,-870,11300,11301,11302]],"properties":{"prefix":"4.1.2.1.1.4"}},{"type":"Polygon","arcs":[[-2344,-2621,-2620,-8356,-8355,-8690,-8689,11303]],"properties":{"prefix":"1.7.1.4.2.1"}},{"type":"Polygon","arcs":[[11304,7301,7302,7303,7304,7305,7306,1676,1677,7307,7308,7309,7310,1739,1740,1741,1742,11305]],"properties":{"prefix":"2.1.2.1.4.2"}},{"type":"Polygon","arcs":[[-4061,-5083,-9063,-9062,-1749,-1748,-1747,-1746,-1745,11306,9827]],"properties":{"prefix":"2.2.2.1.2.1"}},{"type":"Polygon","arcs":[[11307,-5814,7088,-2992,-2991,11308]],"properties":{"prefix":"5.3.1.2.2.3"}},{"type":"Polygon","arcs":[[-4392,-4391,-4390,-4389,-4388,-5218,-5217,-5216,11309,11310,11311,11312,-2451]],"properties":{"prefix":"1.7.3.1.1.3"}},{"type":"Polygon","arcs":[[-4666,-6013,-6012,-6555,-6554,-6553,-6552,11313,11314,11315,11316]],"properties":{"prefix":"2.4.1.3.2.1"}},{"type":"Polygon","arcs":[[11317,11318,8254,5004]],"properties":{"prefix":"9.1.2.3.3.3"}},{"type":"Polygon","arcs":[[11319,996,-1535,-1534,8890,8891,8892,8893]],"properties":{"prefix":"4.6.1.1.2.1"}},{"type":"Polygon","arcs":[[11320,11321,9530,5441,5442,5443,5444,-3228,-3227,-3226,-3225]],"properties":{"prefix":"7.6.1.4.1.4"}},{"type":"Polygon","arcs":[[11322,11323,9163,-4962,-6063,-6062,-6061,-754,-753,9164,11324]],"properties":{"prefix":"7.7.1.2.1.3"}},{"type":"Polygon","arcs":[[11325,11326,-2571]],"properties":{"prefix":"7.5.3.6.3.1"}},{"type":"Polygon","arcs":[[-5575,-5574,-4847,-3700,11327,11328,11329]],"properties":{"prefix":"3.4.4.2.5.2"}},{"type":"Polygon","arcs":[[11330,11331,11332,5150,5151,1211,1212,1213,9714]],"properties":{"prefix":"6.3.5.1.2.2"}},{"type":"Polygon","arcs":[[8555,2711,2712,5539,8556,11333,8554]],"properties":{"prefix":"2.6.5.1.1.1"}},{"type":"Polygon","arcs":[[-9951,-8549,11334]],"properties":{"prefix":"7.7.2.3.2.1"}},{"type":"Polygon","arcs":[[11335,-6305,-6304,-6272,-6271,-6284,-6283]],"properties":{"prefix":"7.3.2.3.1.2"}},{"type":"Polygon","arcs":[[8224,-7419,81,82,11336,11337,8228,8229,1864,11338,11339,8223]],"properties":{"prefix":"5.1.3.2.5.2"}},{"type":"Polygon","arcs":[[11340,11341,11342,-4414,-4413,-4412,10123,10124]],"properties":{"prefix":"4.4.4.4.2.1"}},{"type":"Polygon","arcs":[[11343,11344,11345,-6494,-6493,-6492,-6491,-10767,-10766]],"properties":{"prefix":"7.2.2.6.4.3"}},{"type":"Polygon","arcs":[[11346,11347]],"properties":{"prefix":"7.3.3.2.3.4"}},{"type":"Polygon","arcs":[[-7438,5836,-5779,-5778,11348]],"properties":{"prefix":"6.3.5.2.1.4"}},{"type":"Polygon","arcs":[[11349,11350,11351,-3039,-3038]],"properties":{"prefix":"5.3.5.1.2.2"}},{"type":"Polygon","arcs":[[11352,11353,11354,11355,11356,6315,6316,6317,6318,6319,6320,6321,11357]],"properties":{"prefix":"9.1.5.3.1.2"}},{"type":"Polygon","arcs":[[-5771,-5770,-5769,11358,11359,11360,11361,11362]],"properties":{"prefix":"6.3.5.3.2.2"}},{"type":"Polygon","arcs":[[7071,7072,7073,11363,-10776,11364]],"properties":{"prefix":"8.1.3.2.4.1"}},{"type":"Polygon","arcs":[[11365,11366,7941,2066,11367,11368,-7747,-5457]],"properties":{"prefix":"7.6.1.3.2.1"}},{"type":"Polygon","arcs":[[-7460,-7459,-9305,-9304,-7321,-9586,11369,11370,11371,-7461]],"properties":{"prefix":"7.5.3.1.4.3"}},{"type":"Polygon","arcs":[[11372,-8591,11373,11374,11375,11376]],"properties":{"prefix":"1.1.2.2.2.4"}},{"type":"Polygon","arcs":[[-6420,-3709,-3708,11377,11378,11379]],"properties":{"prefix":"2.3.1.2.2.2"}},{"type":"Polygon","arcs":[[9460,9461,9462,9463,-2176,-2175,-10807,-10806,11380,11381]],"properties":{"prefix":"1.4.2.4.1.4"}},{"type":"Polygon","arcs":[[11382,10426,11383,2942,-1049]],"properties":{"prefix":"7.4.5.2.5.1"}},{"type":"Polygon","arcs":[[11384,11385,11386,7725,7726,7727,7728,7729,310,7730,7731,7732,665,666,667,668,11387,11388]],"properties":{"prefix":"8.5.2.2.4.4"}},{"type":"Polygon","arcs":[[11389,9220,9221,6439,6440,11390,11391,-5745]],"properties":{"prefix":"7.5.3.2.3.2"}},{"type":"Polygon","arcs":[[11392,-1289,11393,11394,11395,2496,11396]],"properties":{"prefix":"7.2.3.2.3.2"}},{"type":"Polygon","arcs":[[-2812,11397,11398,11399,-4236,-4235,-2827,-2826,-2825,-2824,-2823,9930,9931,9932,9933,-2813]],"properties":{"prefix":"2.6.2.5.1.6"}},{"type":"Polygon","arcs":[[11400,9195,6369,6370,6371,-897,-896,-895,-894,6372,6373]],"properties":{"prefix":"7.4.7.2.1.1"}},{"type":"Polygon","arcs":[[11401,11402,11403,3509,3510,3511,11404]],"properties":{"prefix":"6.3.5.5.2.1"}},{"type":"Polygon","arcs":[[6524,-4575,8508,8509,8510,1548,1549,1550,1551,1552,1553,4357,4358,11405]],"properties":{"prefix":"4.8.2.1.1.2"}},{"type":"Polygon","arcs":[[11406,-11037,11407,1874,1875,1876,1877,11408,11409]],"properties":{"prefix":"5.1.2.4.4.3"}},{"type":"Polygon","arcs":[[6521,6522,-5988,-8370,-8377,11410,6520]],"properties":{"prefix":"7.4.4.2.2.1"}},{"type":"Polygon","arcs":[[-9065,11411,-9066]],"properties":{"prefix":"2.3.1.2.1.2"}},{"type":"Polygon","arcs":[[-3347,-3346,9077,9078,9079,9080,11412]],"properties":{"prefix":"7.3.3.1.1.3"}},{"type":"Polygon","arcs":[[11413,-1662,-1661,585,586]],"properties":{"prefix":"2.6.7.2.4.2"}},{"type":"Polygon","arcs":[[-5409,-5408,-5407,-5406,-5405,-9750,-9749,11414]],"properties":{"prefix":"2.4.1.6.1.3"}},{"type":"Polygon","arcs":[[11415,-4266,-4265,-3298,11416,-3316]],"properties":{"prefix":"5.3.5.2.3.1"}},{"type":"Polygon","arcs":[[-1942,-1941,-6513,-6512,-4558,-4557,-5336,9359,9360,9361,9362,9363,9364,11417,11418,11419,-1943]],"properties":{"prefix":"7.1.1.3.2.1"}},{"type":"Polygon","arcs":[[11420,11421]],"properties":{"prefix":"1.5.1.2.4.1"}},{"type":"Polygon","arcs":[[11422,633,634,5063,5064,5065]],"properties":{"prefix":"8.1.4.1.5.2"}},{"type":"Polygon","arcs":[[-11090,-11089,4891,4892,-1528,-1527,-1526,-1525,-7902,-7901,-2135]],"properties":{"prefix":"4.6.1.2.1.6"}},{"type":"Polygon","arcs":[[9901,9902,-9753,11423,11424,11425,11426,11427,11428,-6349,-6348,-6347,-6346,11429,11430]],"properties":{"prefix":"7.6.3.3.1.2"}},{"type":"Polygon","arcs":[[-4310,11431,9356,9357,-7687,9358,-3235,-3234,-4312,-4311]],"properties":{"prefix":"9.4.1.1.3.1"}},{"type":"Polygon","arcs":[[2849,-10889,11432,11433,11434,11435,11436,2846,2847,2848]],"properties":{"prefix":"2.6.3.1.3.3"}},{"type":"Polygon","arcs":[[-8521,11437,-2399,11438]],"properties":{"prefix":"5.2.1.2.5.1"}},{"type":"Polygon","arcs":[[5725,-10264,-10263,-8935,-8934,-8933,11439,11440,5724]],"properties":{"prefix":"9.3.4.4.2.1"}},{"type":"Polygon","arcs":[[71,72,11441,4405,4406,4407,4408,4409,4410,4411,4412,-7340,11442,70]],"properties":{"prefix":"4.4.4.1.3.1"}},{"type":"Polygon","arcs":[[11443,11444,-8879,-8878,-8877,11445]],"properties":{"prefix":"1.5.1.1.3.2"}},{"type":"Polygon","arcs":[[11446,-9059,2091,2092,11447,4604,4605]],"properties":{"prefix":"4.4.3.1.3.1"}},{"type":"Polygon","arcs":[[-4572,-7250,-7619,-7618,-7617,11448,11449]],"properties":{"prefix":"7.7.2.4.2.1"}},{"type":"Polygon","arcs":[[11450,11451,1005,1006,1007,1008,-7655,-7654,1013,-5994,-5993,-5992,-5991,-5990,9900,11452,11453]],"properties":{"prefix":"4.8.3.3.1.3"}},{"type":"Polygon","arcs":[[11454,-7075,-7074,11455]],"properties":{"prefix":"8.1.3.4.1.1"}},{"type":"Polygon","arcs":[[-5873,11456,11457,11458,11459,11460,11461,-8777,-8776,10206,1785,1786,1787,1788,-5276,-5874]],"properties":{"prefix":"6.2.1.6.1.5"}},{"type":"Polygon","arcs":[[11462,8676,11463,6974]],"properties":{"prefix":"4.1.2.3.1.1"}},{"type":"Polygon","arcs":[[11464,11465,9556,-3880,-3879,-3878,407,408,409,11466]],"properties":{"prefix":"2.4.1.7.1.4"}},{"type":"Polygon","arcs":[[1061,1062,1063,11467,7534]],"properties":{"prefix":"4.1.3.1.2.1"}},{"type":"Polygon","arcs":[[11468,11469,11470,11471,-5124,7995,11472,11473]],"properties":{"prefix":"7.2.1.3.1.2"}},{"type":"Polygon","arcs":[[9894,-4930,5618,5619,11474,11475,11476,3206,3207,3208,3209,3210,3211,3212,3213,3214,11477]],"properties":{"prefix":"7.6.2.4.1.1"}},{"type":"Polygon","arcs":[[11478,-10950,11479,11480,11481,-4922,-4921,-4920,-4919,-4918,9039]],"properties":{"prefix":"7.6.2.1.1.3"}},{"type":"Polygon","arcs":[[11482,11483,-432,-431,11484,-7099,2359,2360,2361,2362,2363,-7956,-7955,11485]],"properties":{"prefix":"4.2.2.1.5.1"}},{"type":"Polygon","arcs":[[-3578,-3577,6774,6775,6776,11486,11487,11488,11489,9569]],"properties":{"prefix":"7.6.3.2.1.1"}},{"type":"Polygon","arcs":[[11490,11491,-7530,-1820,6659,6660,6661,6662,-1593,-1592,922,923,924]],"properties":{"prefix":"9.6.1.1.2.2"}},{"type":"Polygon","arcs":[[11492,-8787,2909,-2794,-2793,10212]],"properties":{"prefix":"2.6.1.2.1.2"}},{"type":"Polygon","arcs":[[11493,11494,11495,-10966,-5051,-1760,-1804,-1803,-1802,1243,1244,1245,1246,11496,-10969,-10968]],"properties":{"prefix":"6.1.1.2.1.3"}},{"type":"Polygon","arcs":[[-2007,-2006,275,276,3746,3747,3748,-11180]],"properties":{"prefix":"8.2.1.8.3.2"}},{"type":"Polygon","arcs":[[11497,-6002,-6001,-6000,-5999,-5998,-5380,-5379,9467,9468,9469]],"properties":{"prefix":"2.6.2.1.3.4"}},{"type":"Polygon","arcs":[[7820,11498,11499,1274,-4483,-4482,-6799,-6813,-6812,-6811]],"properties":{"prefix":"7.3.1.1.3.1"}},{"type":"Polygon","arcs":[[11500,7390,7391,7392,7393,11501]],"properties":{"prefix":"1.3.4.2.3.2"}},{"type":"Polygon","arcs":[[-1933,11502,-9667,-9666,-1934]],"properties":{"prefix":"8.4.2.4.3.1"}},{"type":"Polygon","arcs":[[2192,2193,4048,4049,11503,11504]],"properties":{"prefix":"2.2.1.7.3.1"}},{"type":"Polygon","arcs":[[8935,11505,8934]],"properties":{"prefix":"9.3.4.4.3.2"}},{"type":"Polygon","arcs":[[11506,-11003,11507]],"properties":{"prefix":"7.2.1.5.2.2"}},{"type":"Polygon","arcs":[[7451,-1604,1813,3109,3110,3111,3112,3113,3114,7452,7453,7454,7455,11508,11509,11510]],"properties":{"prefix":"9.4.4.2.2.1"}},{"type":"Polygon","arcs":[[11511,11512,-6990,-882,-881,-880,11513]],"properties":{"prefix":"4.1.2.4.5.4"}},{"type":"Polygon","arcs":[[11514,11515,-9616,-2034,-2033,-2032,-2031,11516,11517]],"properties":{"prefix":"8.2.1.4.1.3"}},{"type":"Polygon","arcs":[[11518,11519,11520]],"properties":{"prefix":"4.1.3.4.1.2"}},{"type":"Polygon","arcs":[[-4669,-8235,11521,11522,11523]],"properties":{"prefix":"2.4.1.3.1.3"}},{"type":"Polygon","arcs":[[1515,11524,2887,2888,2889]],"properties":{"prefix":"9.1.3.2.3.1"}},{"type":"Polygon","arcs":[[-11009,-11008,4656,4657,4658,4659,-715,11525]],"properties":{"prefix":"9.3.4.1.3.1"}},{"type":"Polygon","arcs":[[-4547,-4546,11526,-8681,-8680]],"properties":{"prefix":"6.3.2.1.2.1"}},{"type":"Polygon","arcs":[[7148,7149,7150,755,756,11527,11528,-7078,-7077]],"properties":{"prefix":"8.1.3.3.1.2"}},{"type":"Polygon","arcs":[[11529,-4154,-8301,-8300,-8299,-8298,8480,8481,8482]],"properties":{"prefix":"8.1.5.5.1.2"}},{"type":"Polygon","arcs":[[11530,11531,3195,11532]],"properties":{"prefix":"7.6.2.5.1.2"}},{"type":"Polygon","arcs":[[-7744,11533,-3932,3988,3989,3990,3991]],"properties":{"prefix":"4.8.1.3.4.1"}},{"type":"Polygon","arcs":[[-11449,-7616,11534]],"properties":{"prefix":"7.7.2.4.2.2"}},{"type":"Polygon","arcs":[[80,7418,7419,7420,11535,-971]],"properties":{"prefix":"5.1.3.2.1.2"}},{"type":"Polygon","arcs":[[1752,11536,-9523,-9522,-494,-493,6329,6330,6331,6332,1750,1751]],"properties":{"prefix":"2.1.1.2.3.1"}},{"type":"Polygon","arcs":[[11537,-6862,-3261,-3260]],"properties":{"prefix":"1.3.4.6.2.1"}},{"type":"Polygon","arcs":[[11538,33,34,11539,11540,-10540,-10539,-10538,8875,8876,11541]],"properties":{"prefix":"1.5.1.1.2.2"}},{"type":"Polygon","arcs":[[11542,8704,-2600,-4143]],"properties":{"prefix":"7.2.5.1.1.1"}},{"type":"Polygon","arcs":[[11543,11544,6026,6027,7811,11545,11546,-2373]],"properties":{"prefix":"4.3.2.3.1.5"}},{"type":"Polygon","arcs":[[11547,-9219,-9218,-9217,-9225,-9224,10061]],"properties":{"prefix":"7.5.3.2.1.1"}},{"type":"Polygon","arcs":[[8425,11548,11549,11550,-1233,-1232,-1231,-5573,-11033,-11032,11551,8424]],"properties":{"prefix":"7.2.7.4.2.3"}},{"type":"Polygon","arcs":[[-11035,-3858,-3863,-3862,-3861,-3860,1873,-11408,-11036]],"properties":{"prefix":"5.1.2.4.4.5"}},{"type":"Polygon","arcs":[[11552,-4049,2194,11553,11554,-524,-523,-522,-521,11555,11556]],"properties":{"prefix":"2.2.2.3.1.2"}},{"type":"Polygon","arcs":[[11557,3178,3179,11558]],"properties":{"prefix":"7.5.4.2.3.1"}},{"type":"Polygon","arcs":[[1890,1891,1892,1893,-10534]],"properties":{"prefix":"2.5.3.2.2.5"}},{"type":"Polygon","arcs":[[11559,-8510,-8509,-4574,-5355,6525,1545]],"properties":{"prefix":"4.8.2.1.3.1"}},{"type":"Polygon","arcs":[[-4384,-4383,-4382,-8095,10222,11560,11561]],"properties":{"prefix":"1.7.3.2.1.2"}},{"type":"Polygon","arcs":[[-9641,11562,-9638,127,1764,-9369,-9368,5238,5239,5240]],"properties":{"prefix":"6.2.1.5.2.1"}},{"type":"Polygon","arcs":[[-5782,-5781,-5780,11563,11564,11565,-5783]],"properties":{"prefix":"7.5.6.2.3.1"}},{"type":"Polygon","arcs":[[11566,11567,7446,11568,11569]],"properties":{"prefix":"4.1.5.2.1.1"}},{"type":"Polygon","arcs":[[-7393,-7392,-7391,-7390,-7389,-7817,1412,1413,1414,1415,1416,1417,-3400,-3399,-7396,11570]],"properties":{"prefix":"1.3.4.2.4.1"}},{"type":"Polygon","arcs":[[7277,2429,2430,2431,-11052,7280,7281,7282,11571,7276]],"properties":{"prefix":"3.1.2.1.2.1"}},{"type":"Polygon","arcs":[[11572,11573,11574,11575]],"properties":{"prefix":"9.1.2.3.2.2"}},{"type":"Polygon","arcs":[[11576,3062,3063,3064,-1321,-1320,7572,7573,-5157,3079,3080,11577]],"properties":{"prefix":"7.4.7.3.2.3"}},{"type":"Polygon","arcs":[[-6707,11578,11579,-8067,11580]],"properties":{"prefix":"5.1.1.1.2.1"}},{"type":"Polygon","arcs":[[-6782,-6781,-6780,7060,7061,7062,7063,11581]],"properties":{"prefix":"7.6.3.3.3.1"}},{"type":"Polygon","arcs":[[10464,-5607,-5606,-5605,-5611,-2849,11582,11583,11584]],"properties":{"prefix":"2.6.1.1.2.2"}},{"type":"Polygon","arcs":[[5785,5786,11585,11586]],"properties":{"prefix":"7.5.6.3.2.2"}},{"type":"Polygon","arcs":[[5146,5147,11587,-9716,-9715,1214,1215,1216,1217,1218,11588]],"properties":{"prefix":"6.3.5.1.1.1"}},{"type":"Polygon","arcs":[[-3809,11589,11590,11591,-10523,406,3877,3878,3879,3880,3881]],"properties":{"prefix":"2.4.4.2.4.3"}},{"type":"Polygon","arcs":[[-9023,6724,6725,-8708,-8707,-8709,567,568,569,570,-3485,-3484,-3483,11592]],"properties":{"prefix":"1.3.2.2.2.2"}},{"type":"Polygon","arcs":[[11593,5817,5818,-7741]],"properties":{"prefix":"5.3.1.1.1.3"}},{"type":"Polygon","arcs":[[11594,15,3383,3384,3385,3386,11595]],"properties":{"prefix":"1.3.3.6.4.2"}},{"type":"Polygon","arcs":[[3887,6051,11596,11597,9481,11598,11599,11600,11601,11602]],"properties":{"prefix":"7.5.2.1.2.6"}},{"type":"Polygon","arcs":[[-6402,11603,11604,574,575,576,577,578,579,11605,11606]],"properties":{"prefix":"1.3.1.4.4.2"}},{"type":"Polygon","arcs":[[11607,11608,3967,3968,3969,-7564,-7563]],"properties":{"prefix":"9.3.3.1.2.3"}},{"type":"Polygon","arcs":[[-4015,-4014,-4013,-3913,-3912,-3911,-3910,11609,11610,11611,11612,9770,11613]],"properties":{"prefix":"9.3.4.5.1.3"}},{"type":"Polygon","arcs":[[-6302,11614,-9859,3142,3143,-5709,-5719,-5718,-6303]],"properties":{"prefix":"4.1.3.1.4.2"}},{"type":"Polygon","arcs":[[8592,9,10,11615,11616,11617,11618,-1995,11619]],"properties":{"prefix":"1.1.2.2.3.1"}},{"type":"Polygon","arcs":[[11620,-5395,-5394,-5393,-5392,-5391,-5390,6915,6916,7648,7649,7650,7651,11621,11622,11623]],"properties":{"prefix":"8.2.1.1.1.3"}},{"type":"Polygon","arcs":[[11624,11625,11626,-1039,-1038,-1037]],"properties":{"prefix":"7.4.5.2.2.2"}},{"type":"Polygon","arcs":[[11627,-2483,11628,-8621,-8620,-6487,-5939,-5938,-5937,10456,11629]],"properties":{"prefix":"7.2.2.6.1.1"}},{"type":"Polygon","arcs":[[11630,9825,-6995,-6997,2271,2272,2273,2274,-6170]],"properties":{"prefix":"1.4.2.2.1.1"}},{"type":"Polygon","arcs":[[-4488,-4487,-4486,-4485,-4484,-4503,11631,-4489]],"properties":{"prefix":"7.6.4.1.4.2"}},{"type":"Polygon","arcs":[[-6955,-6954,11632,11633,11634]],"properties":{"prefix":"1.3.3.4.1.3"}},{"type":"Polygon","arcs":[[-3710,6419,6420,6421,6422,11635,6429,6430,11636]],"properties":{"prefix":"2.3.1.1.1.3"}},{"type":"Polygon","arcs":[[-6195,-6194,-2638,-4855,11637]],"properties":{"prefix":"1.7.1.2.1.3"}},{"type":"Polygon","arcs":[[11638,11639,11640,1197,1198,1199,1200,11641,11642]],"properties":{"prefix":"6.3.7.3.1.2"}},{"type":"Polygon","arcs":[[11643,3850,3851,3852,3853,-7180,8848,8849,11644,11645]],"properties":{"prefix":"6.4.2.1.3.2"}},{"type":"Polygon","arcs":[[-9110,-1882,11646]],"properties":{"prefix":"5.3.6.3.5.1"}},{"type":"Polygon","arcs":[[-7285,11647,11648,5202,2440,-593,-592,-591]],"properties":{"prefix":"3.1.2.1.3.2"}},{"type":"Polygon","arcs":[[-8888,11649,11650,11651,-8886,4487,11652,-8166,-954,-953,-952,-951,-950,-949,-948]],"properties":{"prefix":"7.6.4.2.3.1"}},{"type":"Polygon","arcs":[[-9325,-9324,-2830,-2829,-2828,4234,5039,5040,5041,5042,-2708,-2707,11653]],"properties":{"prefix":"2.6.4.2.5.1"}},{"type":"Polygon","arcs":[[2763,7445,-11568,-11567,11654,-815,-814,-813,-812,-811,7441,-11050,-11049,-11048,2762]],"properties":{"prefix":"4.1.5.2.1.2"}},{"type":"Polygon","arcs":[[11655,7976,7977,11656,11657]],"properties":{"prefix":"8.1.5.2.2.3"}},{"type":"Polygon","arcs":[[-7573,-1319,9868]],"properties":{"prefix":"7.4.7.3.3.1"}},{"type":"Polygon","arcs":[[11658,7672,1775,1776,1777,7673]],"properties":{"prefix":"6.2.1.6.4.1"}},{"type":"Polygon","arcs":[[-6667,-6666,-6212,-7007,7011,8732,11659,-11254,-11253,-11252]],"properties":{"prefix":"8.1.6.5.3.2"}},{"type":"Polygon","arcs":[[-8081,-8080,11660,11661,5595,5596,10434,-9264,-9263,11662,-5583,-5582]],"properties":{"prefix":"3.4.4.2.3.1"}},{"type":"Polygon","arcs":[[11663,-5843,11664,11665]],"properties":{"prefix":"2.6.7.1.2.4"}},{"type":"Polygon","arcs":[[11666,11667,-11113,11668]],"properties":{"prefix":"8.1.5.3.1.1"}},{"type":"Polygon","arcs":[[11669,-9178,-9177,3282,-1777,-1776,-1775,11670]],"properties":{"prefix":"6.3.1.1.4.3"}},{"type":"Polygon","arcs":[[2854,2855,2856,2857,2858,2859,2860,11671,11672,11673,11674,11675]],"properties":{"prefix":"7.4.3.1.1.1"}},{"type":"Polygon","arcs":[[7331,7332,7333,-2388,-2387,11676,11677,11678]],"properties":{"prefix":"5.2.1.2.2.2"}},{"type":"Polygon","arcs":[[-10083,11679,11680,1629,11681]],"properties":{"prefix":"7.7.1.2.2.3"}},{"type":"Polygon","arcs":[[11682,7823,7824,11683,11684,11685,3860,3861,3862,4593,4594]],"properties":{"prefix":"5.1.3.2.3.1"}},{"type":"Polygon","arcs":[[11686,-10747,-10746,-3410,7439,5828,5829,5830]],"properties":{"prefix":"6.3.5.2.3.5"}},{"type":"Polygon","arcs":[[9917,-6072,-6071,-3029,-3028,-3027,-3026,-8321,11687]],"properties":{"prefix":"5.3.3.1.3.1"}},{"type":"Polygon","arcs":[[5333,-11175,11688,11689,11690,11691,-1193,-1192,-1191,-1190,-1189,-1188,-1187,8344,11692,11693]],"properties":{"prefix":"7.1.1.4.4.1"}},{"type":"Polygon","arcs":[[11694,-8455]],"properties":{"prefix":"6.3.5.4.1.1"}},{"type":"Polygon","arcs":[[9653,9654,11695,11696,-7505,1453,1454,11697]],"properties":{"prefix":"1.3.1.2.2.2"}},{"type":"Polygon","arcs":[[-9339,-1642,-4439,-4438,-4437,11698,11699,9415]],"properties":{"prefix":"7.8.1.1.3.1"}},{"type":"Polygon","arcs":[[-6952,11700,11701,11702,2035]],"properties":{"prefix":"8.1.5.5.5.2"}},{"type":"Polygon","arcs":[[11703,11704,182,183,11705,11706,11707,11708,11709,11710,1170,1171,9440,11711]],"properties":{"prefix":"6.4.4.1.3.3"}},{"type":"Polygon","arcs":[[-11190,11712,8153,8154,-7785,-3871,-3870,-3869,-3868,8155,8156,8157,400,401]],"properties":{"prefix":"2.4.5.1.3.3"}},{"type":"Polygon","arcs":[[-4686,11713,-10796]],"properties":{"prefix":"2.4.1.1.1.3"}},{"type":"Polygon","arcs":[[7345,-6409,-6408,-6407,7346,7347,7348,420,11714,11715,7344]],"properties":{"prefix":"1.3.1.4.3.1"}},{"type":"Polygon","arcs":[[9230,11716,-7213,4222,4223,4224,9232,9233]],"properties":{"prefix":"2.6.6.3.2.1"}},{"type":"Polygon","arcs":[[5294,-11223,-11222,11717,537,538,11718,11719,5292,5293]],"properties":{"prefix":"1.8.3.6.1.1"}},{"type":"Polygon","arcs":[[-5093,-5092,6335,6336,6337,8486,11720,-5095,-5094]],"properties":{"prefix":"4.3.4.3.1.1"}},{"type":"Polygon","arcs":[[11721,-3054,-3053,8230,8231,8232,-8033,11722,11723,11724,11725]],"properties":{"prefix":"7.4.6.4.2.2"}},{"type":"Polygon","arcs":[[11726,5438,-2012,-2011,-2010,8433,8434,11727,11728]],"properties":{"prefix":"8.2.1.8.2.3"}},{"type":"Polygon","arcs":[[11729,-8926,-1682,-1681,-1680,11730,11731,11732,10417,10418,-5385,-5384,-8930,11733]],"properties":{"prefix":"2.6.2.1.2.1"}},{"type":"Polygon","arcs":[[-6274,8465,11734,8467,8468,-5739,-5738,11735]],"properties":{"prefix":"7.3.2.2.3.2"}},{"type":"Polygon","arcs":[[11736,9879,6473,1392,-7607,6478,6479]],"properties":{"prefix":"1.3.4.4.1.1"}},{"type":"Polygon","arcs":[[-6173,-6172,-6132,-6131,-6130,-6129,-6141,11737,-6174]],"properties":{"prefix":"5.1.2.3.2.2"}},{"type":"Polygon","arcs":[[11738,11739,11740,7465,-1742,-4075,-4074,-4073,-4072]],"properties":{"prefix":"2.2.2.1.1.2"}},{"type":"Polygon","arcs":[[7640,11741,7635,177,178,7636,7637,7638,7639]],"properties":{"prefix":"6.4.3.3.3.2"}},{"type":"Polygon","arcs":[[-3556,-3555,-7470,11742]],"properties":{"prefix":"7.6.3.5.2.1"}},{"type":"Polygon","arcs":[[11743,11744,-7325,5654,5655,-10071]],"properties":{"prefix":"5.3.2.1.3.2"}},{"type":"Polygon","arcs":[[11745,11746,11747,11748,1635,-9971,-4970,-4969,-4968]],"properties":{"prefix":"7.7.1.2.4.2"}},{"type":"Polygon","arcs":[[11749,8059,1504,1505,1506,1507,-11247]],"properties":{"prefix":"9.1.5.3.1.6"}},{"type":"Polygon","arcs":[[11750,5304,5305,5306,5307,5308,10317,10318,11751,11752]],"properties":{"prefix":"8.1.4.3.1.4"}},{"type":"Polygon","arcs":[[176,-7636,-7635,-7634,-10853,-10852,11753,11754,11755]],"properties":{"prefix":"6.4.3.3.1.6"}},{"type":"Polygon","arcs":[[1317,1318,1319,1320,1321,-7570,11756]],"properties":{"prefix":"7.3.3.2.4.2"}},{"type":"Polygon","arcs":[[-7928,11757,11758,-7926,-618,5045,5046,-805,-804,-803,5047,10152,-7930,-7929]],"properties":{"prefix":"7.8.4.1.2.1"}},{"type":"Polygon","arcs":[[11759,8278,8279,-6823,2225,2226,2227,2228,2229,2230,8280]],"properties":{"prefix":"4.1.4.2.2.1"}},{"type":"Polygon","arcs":[[-6210,-6209,11760,11761,11762,7005,7006,-6211]],"properties":{"prefix":"8.1.6.3.2.2"}},{"type":"Polygon","arcs":[[6296,6297,1053,1054,1055,1056,1057,11763]],"properties":{"prefix":"4.1.3.3.4.3"}},{"type":"Polygon","arcs":[[5754,5755,5756,-2404,-2403,-8150,-8149,-8148,11764,11765,93]],"properties":{"prefix":"5.2.1.2.7.2"}},{"type":"Polygon","arcs":[[11766,225,226,227,-8550,9950,9951,9952,9953,9954,1652,11767,11768]],"properties":{"prefix":"7.7.2.3.1.2"}},{"type":"Polygon","arcs":[[1160,11769,11770,11771,1149,1150,1151,1152,11772,1157,1158,1159]],"properties":{"prefix":"6.4.4.1.6.2"}},{"type":"Polygon","arcs":[[-2488,-2487,-2486,8191,11773]],"properties":{"prefix":"7.2.4.2.1.3"}},{"type":"Polygon","arcs":[[-4137,-4136,-4135,-4134,-4133,-5564,-4808,-4807,-4806,11774]],"properties":{"prefix":"7.2.7.1.1.2"}},{"type":"Polygon","arcs":[[11775,307,-8805,-8804,10220]],"properties":{"prefix":"8.5.2.2.1.2"}},{"type":"Polygon","arcs":[[11776,-1589,-1588,11777,-7951,-7950,11778]],"properties":{"prefix":"9.4.2.3.5.2"}},{"type":"Polygon","arcs":[[-6387,-6386,9998,9999,11779,11780]],"properties":{"prefix":"7.3.1.2.2.2"}},{"type":"Polygon","arcs":[[11781,11782,9597,-7800,-2803,-2802,-2801,-2800,9598,11783,11784]],"properties":{"prefix":"2.6.2.4.1.2"}},{"type":"Polygon","arcs":[[11785,-1382,-1381,6361,6362,6363,6364,11786]],"properties":{"prefix":"1.2.1.4.4.5"}},{"type":"Polygon","arcs":[[11787,11788,11789,11790,-7323,-7322,9303,9304,-7458,-7464,9305,11791]],"properties":{"prefix":"7.5.3.1.1.2"}},{"type":"Polygon","arcs":[[-5654,-5653,11792,9443,9444,11793,-5659,-5658,-5657,-5656,-5655]],"properties":{"prefix":"5.3.2.2.1.1"}},{"type":"Polygon","arcs":[[125,126,9637,9638,11794,11795,11796,11797]],"properties":{"prefix":"6.2.1.5.1.4"}},{"type":"Polygon","arcs":[[7027,7028,7029,7030,11798]],"properties":{"prefix":"9.1.2.1.1.1"}},{"type":"Polygon","arcs":[[9962,9963,-10591,-10590,-10589,11799,11800]],"properties":{"prefix":"2.3.3.6.3.2"}},{"type":"Polygon","arcs":[[455,456,457,458,459,460,461,-6108,11801,11802,6610,6611,11803,11804]],"properties":{"prefix":"1.9.2.3.4.1"}},{"type":"Polygon","arcs":[[-11073,11805,11806,-5668,-5667,-5666,-4981,-4980,11807,-11076,-11075,-11074]],"properties":{"prefix":"7.2.4.4.3.3"}},{"type":"Polygon","arcs":[[11808,-2454,-2453,-2452,-11313,11809,11810,-2625,-2624,5852,5853,10199,11811]],"properties":{"prefix":"1.7.3.1.1.1"}},{"type":"Polygon","arcs":[[11812,349,8283,8284,862,863,864,5927,-7205,-7204,-7203,11813,11814]],"properties":{"prefix":"9.8.6.4.2.2"}},{"type":"Polygon","arcs":[[-2156,-2155,-2154,-2153,-2152,-1809,-9152,11815,11816,11817,11818,11819,-2159,-2158,-2157]],"properties":{"prefix":"1.7.1.1.2.1"}},{"type":"Polygon","arcs":[[11820,9528,9529,-11322,11821,11822,5447,5448,5449]],"properties":{"prefix":"7.6.1.4.1.2"}},{"type":"Polygon","arcs":[[11823,2489,2490,2491,2492,2493,11824]],"properties":{"prefix":"7.2.3.2.4.1"}},{"type":"Polygon","arcs":[[11825,11826,11827,11828,-4621,-4620,-4619,-8439,-8438,-8437,3758]],"properties":{"prefix":"8.2.1.8.1.5"}},{"type":"Polygon","arcs":[[11829,-5090,11830]],"properties":{"prefix":"2.2.2.1.4.2"}},{"type":"Polygon","arcs":[[11831,11832,-9862,-4429,-4428]],"properties":{"prefix":"9.3.5.1.2.7"}},{"type":"Polygon","arcs":[[-9248,-10329,-4044,-4043,11833]],"properties":{"prefix":"9.3.2.1.2.3"}},{"type":"Polygon","arcs":[[11834,10168,10169,5034,10170,10171,10172,380]],"properties":{"prefix":"2.6.4.2.1.1"}},{"type":"Polygon","arcs":[[11835,8973,8974,-1691,-1690,-2247,11836,11837,8978,8979,8980,-6637,-6636]],"properties":{"prefix":"2.3.3.4.3.1"}},{"type":"Polygon","arcs":[[464,465,466,467,468,11838,11839,11840,11841]],"properties":{"prefix":"1.9.2.8.3.2"}},{"type":"Polygon","arcs":[[-8914,-4735,11842,-4726,-4725]],"properties":{"prefix":"6.3.7.1.1.2"}},{"type":"Polygon","arcs":[[11843,11844,11845,2352,2353,2354,-7098]],"properties":{"prefix":"4.2.2.3.1.2"}},{"type":"Polygon","arcs":[[6113,6114,-10196,-10195,-10944,10461,11846,11847,6112]],"properties":{"prefix":"6.3.3.4.1.2"}},{"type":"Polygon","arcs":[[11848,1305,1306,1307,1308,1309,1310,-9937,-9936,1337,11849]],"properties":{"prefix":"7.3.3.2.3.6"}},{"type":"Polygon","arcs":[[4275,4276,4277,7734,7735,7736,-5502,11850]],"properties":{"prefix":"5.3.3.4.1.2"}},{"type":"Polygon","arcs":[[11851,821,822,823,824,825,-3689,11852,9898,-5162,-5161]],"properties":{"prefix":"3.4.2.4.1.1"}},{"type":"Polygon","arcs":[[11853,2068,2069,2070,193,7942,-7750,-7749]],"properties":{"prefix":"7.6.1.3.2.3"}},{"type":"Polygon","arcs":[[11854,4694,4695,4696,7180,7181,7182,7183,1500,11855,11856]],"properties":{"prefix":"9.1.7.2.1.4"}},{"type":"Polygon","arcs":[[11857,11858,-2976,-2895,8777,8778,8779,8780,8781]],"properties":{"prefix":"2.5.2.1.2.1"}},{"type":"Polygon","arcs":[[11859,4389,11860]],"properties":{"prefix":"1.7.3.3.2.2"}},{"type":"Polygon","arcs":[[-11522,-8234,-9985,-9984,-9983,-9982,-2323,-2322,11861,-11523]],"properties":{"prefix":"2.4.1.3.1.4"}},{"type":"Polygon","arcs":[[303,304,-5488,-5487,11862]],"properties":{"prefix":"8.5.2.1.5.1"}},{"type":"Polygon","arcs":[[11863,8148,11864]],"properties":{"prefix":"5.2.1.2.6.2"}},{"type":"Polygon","arcs":[[7921,7922,11865,-4109]],"properties":{"prefix":"1.1.1.1.3.2"}},{"type":"Polygon","arcs":[[8306,8307,11866,11867]],"properties":{"prefix":"8.2.3.1.1.2"}},{"type":"Polygon","arcs":[[-495,9521,9522,9523,11868,11869,11870]],"properties":{"prefix":"2.1.1.2.1.2"}},{"type":"Polygon","arcs":[[11871,10069,10070,5656,5657,11872,10066]],"properties":{"prefix":"5.3.2.1.1.2"}},{"type":"Polygon","arcs":[[11873,-7500,-7499,-7498,2481,2482,2483,1973,1974,11874,11875,2506,2507]],"properties":{"prefix":"7.2.3.1.2.2"}},{"type":"Polygon","arcs":[[8296,8297,11876,11877]],"properties":{"prefix":"8.1.5.5.5.6"}},{"type":"Polygon","arcs":[[11878,11879,11880,11881,-2678,11882,11883,-2810,-2809]],"properties":{"prefix":"2.6.2.5.1.4"}},{"type":"Polygon","arcs":[[777,11884,-8313,-8312,2004,614,11885,9501]],"properties":{"prefix":"8.1.3.1.3.1"}},{"type":"Polygon","arcs":[[11886,3151,3152,3153,1042,1043,1044,11887]],"properties":{"prefix":"4.1.3.4.2.1"}},{"type":"Polygon","arcs":[[5975,5976,8036,11888,11889,8041,5981,5982,5983,5984,11890,11891,5974]],"properties":{"prefix":"7.4.4.3.1.1"}},{"type":"Polygon","arcs":[[11892,155,156,8740,8741,8742,8743,8744,11893]],"properties":{"prefix":"6.3.5.5.2.3"}},{"type":"Polygon","arcs":[[1878,11894,7667,6134,6135,6136,6137,-11034,-11407,-11410,-11409]],"properties":{"prefix":"5.1.2.4.4.1"}},{"type":"Polygon","arcs":[[11895,-11212,11896,11897]],"properties":{"prefix":"7.6.4.2.4.4"}},{"type":"Polygon","arcs":[[7227,7228,7229,6529,6530,60,61,11898,11899,11900,11901,11902]],"properties":{"prefix":"4.4.3.4.2.2"}},{"type":"Polygon","arcs":[[2601,2602,8184,11903,11904,11905,-5119,-5118,-11004,-11507,11906,11907,2596,2597,2598,2599,2600]],"properties":{"prefix":"7.2.1.5.2.1"}},{"type":"Polygon","arcs":[[11908,3435,11909]],"properties":{"prefix":"6.3.3.2.2.2"}},{"type":"Polygon","arcs":[[11910,4624,11911,11912]],"properties":{"prefix":"8.2.1.5.3.1"}},{"type":"Polygon","arcs":[[11913,11914,5700,5701,5702,-7557,-7556,11915]],"properties":{"prefix":"1.3.2.6.3.2"}},{"type":"Polygon","arcs":[[5492,5493,4281,4282,4283,5494,5495,5496,5497,11916]],"properties":{"prefix":"5.3.3.5.1.1"}},{"type":"Polygon","arcs":[[8430,-6563,-6562,-6561,-6560,-6559,7121,334,11917,11918,11919,11920,1487,1488,1489,1490,11921,11922]],"properties":{"prefix":"9.1.7.3.1.3"}},{"type":"Polygon","arcs":[[-9722,-9721,-9720,-9719,9875,-4783,-4782,-4781,-4780,6958,891,892,893,894,895,896,897,898,899,900,901,902,11923]],"properties":{"prefix":"9.8.3.1.3.4"}},{"type":"Polygon","arcs":[[-4824,-3323,-3336,-3335,11924]],"properties":{"prefix":"3.4.4.8.1.2"}},{"type":"Polygon","arcs":[[4399,4400,-10154,-8666,2842,2843,2844,2845,-11437,11925]],"properties":{"prefix":"2.6.3.1.3.5"}},{"type":"Polygon","arcs":[[8020,7036,8021,11926,8019]],"properties":{"prefix":"9.3.6.1.1.1"}},{"type":"Polygon","arcs":[[2156,11927,7891,7892,6020,6021,6022,36,7893,7894,7895,7896]],"properties":{"prefix":"1.5.1.2.2.2"}},{"type":"Polygon","arcs":[[11928,11929,11930,-1328,-1327,2715,2716,2717,2718,2719,2720,-1347,-1346,11931]],"properties":{"prefix":"7.4.1.1.1.2"}},{"type":"Polygon","arcs":[[2101,2102,2103,2104,11932,11933,11934,8108,11935,2099,2100]],"properties":{"prefix":"4.4.3.2.2.1"}},{"type":"Polygon","arcs":[[229,230,11936,11937,6891,11938,11939]],"properties":{"prefix":"7.7.2.3.3.1"}},{"type":"Polygon","arcs":[[-8974,-8973,-8972,11940,11941,11942]],"properties":{"prefix":"2.3.3.4.2.3"}},{"type":"Polygon","arcs":[[-9182,-5701,-5700,-10093,11943,-10089,-10088,-3469,-3468,-9184,-9183]],"properties":{"prefix":"1.3.2.4.3.1"}},{"type":"Polygon","arcs":[[-6268,-6267,-6266,-6265,-6264,-5690,-5689,-5696,-5695,11944]],"properties":{"prefix":"5.3.6.1.1.2"}},{"type":"Polygon","arcs":[[-11464,8677,6972,6973]],"properties":{"prefix":"4.1.2.3.1.3"}},{"type":"Polygon","arcs":[[-7745,-7752,11945]],"properties":{"prefix":"7.6.1.3.3.1"}},{"type":"Polygon","arcs":[[4671,-8534,11946,11947]],"properties":{"prefix":"2.4.1.2.1.2"}},{"type":"Polygon","arcs":[[-4101,-4100,-4099,-4098,-4097,-4096,-4095,-7924,-7923,-7922,-4108,-4107,10010,-7548,11948,3]],"properties":{"prefix":"1.1.1.1.2.2"}},{"type":"Polygon","arcs":[[11949,7515,7516]],"properties":{"prefix":"3.4.4.7.3.1"}},{"type":"Polygon","arcs":[[5621,5622,5623,5624,5625,202,11950,-9143,-9147,11951]],"properties":{"prefix":"7.6.2.4.1.3"}},{"type":"Polygon","arcs":[[199,9036,11952]],"properties":{"prefix":"7.6.2.1.1.5"}},{"type":"Polygon","arcs":[[11953,11954,2635,2636,2637,2638,11955,11956,11957]],"properties":{"prefix":"1.7.2.1.2.2"}},{"type":"Polygon","arcs":[[-7094,-7093,-7092,11958,11959,11960]],"properties":{"prefix":"4.2.2.1.5.3"}},{"type":"Polygon","arcs":[[11961,8542,8543,-1465,-1464,-7841,-7840,-7839,-7838,-7837,6239]],"properties":{"prefix":"9.4.2.3.1.2"}},{"type":"Polygon","arcs":[[11962,11963,11964,11965,-5419,-2797,-2796,-2795,-2910,-2909]],"properties":{"prefix":"2.6.2.3.1.2"}},{"type":"Polygon","arcs":[[11966,11967,4520,4521,4522,11968,-788,-787,-786,-785,-4450,-4449,-4448,11969]],"properties":{"prefix":"7.8.1.4.1.2"}},{"type":"Polygon","arcs":[[8463,8464,4913,4914,4915,3219,3220,11970]],"properties":{"prefix":"7.6.2.3.3.1"}},{"type":"Polygon","arcs":[[11971,11972,8502,-6041,11973,11974,11975]],"properties":{"prefix":"4.3.2.2.1.4"}},{"type":"Polygon","arcs":[[9821,4192,4193,4194,624,-7436,-7435,-7434,11976]],"properties":{"prefix":"8.1.4.1.2.3"}},{"type":"Polygon","arcs":[[11977,10403,-4935,-4934,-4933,-4932,-2064,11978,11979,11980,-3183]],"properties":{"prefix":"7.5.3.6.1.2"}},{"type":"Polygon","arcs":[[-4474,-4473,-6391,-6390,-6389,-6388,-11781,-11780,10000,6809,6810,11981]],"properties":{"prefix":"7.3.1.2.2.1"}},{"type":"Polygon","arcs":[[11982,11983,11984,11985,11986,-4125,-4124,-1262,11987,11988]],"properties":{"prefix":"7.2.7.3.1.2"}},{"type":"Polygon","arcs":[[11989,5577,5578,5579,11990,-4809,-3615,-3614,-3613]],"properties":{"prefix":"3.4.4.4.1.1"}},{"type":"Polygon","arcs":[[-1600,11991,11992,-1816,-2239,-1602,-1601]],"properties":{"prefix":"9.6.1.2.1.2"}},{"type":"Polygon","arcs":[[11993,54,2350,2351,-11846]],"properties":{"prefix":"4.2.2.3.1.3"}},{"type":"Polygon","arcs":[[5193,5194,-8286,5199,10126,10127,11994,3472,3473]],"properties":{"prefix":"1.3.1.1.1.2"}},{"type":"Polygon","arcs":[[-11314,-6551,-6550,-6933,-6932,11995,11996,8239,8240,8241,11997,-11316,-11315]],"properties":{"prefix":"2.4.1.3.2.2"}},{"type":"Polygon","arcs":[[11998,-471,-470,-469,-468,-467,9619,9620,9621]],"properties":{"prefix":"4.1.5.2.2.2"}},{"type":"Polygon","arcs":[[4059,4060,4061,11999,12000,12001]],"properties":{"prefix":"2.2.1.7.3.3"}},{"type":"Polygon","arcs":[[6552,10025,10026,10027,416,417,10028,12002]],"properties":{"prefix":"2.4.1.5.3.1"}},{"type":"Polygon","arcs":[[5712,5713,12003,12004,8607,-831,-830,12005,5710,5711]],"properties":{"prefix":"4.1.3.2.2.2"}},{"type":"Polygon","arcs":[[-10602,12006,12007,10487,5875,-5264,-5263,-5262,-5261,4043,4044]],"properties":{"prefix":"9.3.1.4.3.5"}},{"type":"Polygon","arcs":[[5391,-9619,-9618,-9617,-11516,-11515,-11518,12008,5390]],"properties":{"prefix":"8.2.1.4.1.1"}},{"type":"Polygon","arcs":[[10046,10047,10048,-1787,-1786,-1785,-1784,-7512,-7511,12009,12010]],"properties":{"prefix":"6.3.3.5.4.1"}},{"type":"Polygon","arcs":[[-5493,-5492,-7737,-7736,12011]],"properties":{"prefix":"5.3.3.4.3.1"}},{"type":"Polygon","arcs":[[-10517,-10516,-10515,12012,1906,1907,1908,1909,1910]],"properties":{"prefix":"2.5.1.1.2.2"}},{"type":"Polygon","arcs":[[12013,2828,2829,2830,2831,2832,2833,2834,12014,12015]],"properties":{"prefix":"2.6.3.2.3.1"}},{"type":"Polygon","arcs":[[12016,8830,12017]],"properties":{"prefix":"7.2.2.4.2.1"}},{"type":"Polygon","arcs":[[-7265,-7264,-7267,12018,3378,3379]],"properties":{"prefix":"1.3.3.5.3.1"}},{"type":"Polygon","arcs":[[12019,12020,12021,-901]],"properties":{"prefix":"7.4.8.1.1.2"}},{"type":"Polygon","arcs":[[10351,-5347,-8955,-8961,-10300,362,363,10352]],"properties":{"prefix":"2.6.6.2.1.1"}},{"type":"Polygon","arcs":[[12022,-9489,12023]],"properties":{"prefix":"7.5.2.1.1.1"}},{"type":"Polygon","arcs":[[1292,1293,1294,9675,9676,1344,1345,9677,12024,12025]],"properties":{"prefix":"7.3.3.2.1.2"}},{"type":"Polygon","arcs":[[7246,3175,3176,12026,12027]],"properties":{"prefix":"7.5.4.2.3.3"}},{"type":"Polygon","arcs":[[-9514,12028]],"properties":{"prefix":"4.6.1.1.5.3"}},{"type":"Polygon","arcs":[[7596,7597,3778,3779,12029,-10564]],"properties":{"prefix":"5.1.1.4.2.2"}},{"type":"Polygon","arcs":[[12030,12031,12032,12033,237,4439,4440,4441,4442,4443,4444,4445,9684]],"properties":{"prefix":"7.8.1.2.4.2"}},{"type":"Polygon","arcs":[[12034,4220,12035,7214,7215,7216,-2662,12036,12037,12038,12039]],"properties":{"prefix":"2.6.6.3.1.2"}},{"type":"Polygon","arcs":[[12040,-7913,-7912,6157,6158,-7519,9850,9851,357]],"properties":{"prefix":"3.4.4.7.2.3"}},{"type":"Polygon","arcs":[[-5268,-5267,7519,7520,7521,7522,12041,7525,7526,7527,12042,12043]],"properties":{"prefix":"6.2.1.2.2.1"}},{"type":"Polygon","arcs":[[6710,6711,-6263,12044,6709]],"properties":{"prefix":"5.1.1.2.3.1"}},{"type":"Polygon","arcs":[[12045,12046,12047,12048,6203,6204,6205,6206,6207,6208,12049,12050,-10583]],"properties":{"prefix":"8.1.6.7.1.1"}},{"type":"Polygon","arcs":[[12051,7201,7202]],"properties":{"prefix":"9.8.6.4.1.1"}},{"type":"Polygon","arcs":[[12052,-2084,-2083,12053,12054,-8002]],"properties":{"prefix":"4.3.4.6.3.2"}},{"type":"Polygon","arcs":[[12055,7934,7935,3018,3019,12056]],"properties":{"prefix":"5.3.2.2.4.3"}},{"type":"Polygon","arcs":[[-11830,12057,-5081]],"properties":{"prefix":"2.2.2.1.4.1"}},{"type":"Polygon","arcs":[[12058,252,253,12059,-7124,-7123,-7134,-7133,8710]],"properties":{"prefix":"8.1.5.3.3.1"}},{"type":"Polygon","arcs":[[12060,140,12061,8120]],"properties":{"prefix":"6.3.2.2.2.1"}},{"type":"Polygon","arcs":[[-2283,-2282,-2281,-7416,8733,8734,8735,-4718,-4717,-4716,8736,8737,12062,12063]],"properties":{"prefix":"7.4.8.5.1.1"}},{"type":"Polygon","arcs":[[9666,9667,9668,-2424,-2423,3830,3831,5751,9669,9670,12064]],"properties":{"prefix":"8.4.2.4.2.1"}},{"type":"Polygon","arcs":[[-4114,-4113,-4112,-4111,12065,12066,-7341,4415,4416,4417,4418,2128,2129,2130,12067,12068,-4115]],"properties":{"prefix":"4.4.4.1.1.2"}},{"type":"Polygon","arcs":[[12069,12070,-6181,-6180,-6179,10173]],"properties":{"prefix":"2.4.4.2.4.1"}},{"type":"Polygon","arcs":[[12071,12072,9504,9505,9506,9507,-11115]],"properties":{"prefix":"4.6.1.1.6.2"}},{"type":"Polygon","arcs":[[1332,10137,12073]],"properties":{"prefix":"7.3.3.3.1.1"}},{"type":"Polygon","arcs":[[-4991,-4990,-4989,-2893,8026,8027,12074,12075,12076]],"properties":{"prefix":"9.1.2.5.2.3"}},{"type":"Polygon","arcs":[[-1976,-1975,-1974,-1973,12077,12078,12079]],"properties":{"prefix":"7.5.2.1.2.4"}},{"type":"Polygon","arcs":[[12080,-10045,-6117,-6116,-6115,-6114,12081,12082,12083,-1793,-1792,12084]],"properties":{"prefix":"6.3.3.5.5.3"}},{"type":"Polygon","arcs":[[12085,12086,12087,-1437,-1436,12088,12089]],"properties":{"prefix":"1.1.2.1.2.1"}},{"type":"Polygon","arcs":[[4871,12090,9627,9628,3965,3966,-11609,-11608,-7562,-7561,-7560,4868,4869,4870]],"properties":{"prefix":"9.3.3.1.2.1"}},{"type":"Polygon","arcs":[[12091,-5622,-5621,-5620,-5619,-4929,-4928,-4927,-4926]],"properties":{"prefix":"7.6.2.2.1.2"}},{"type":"Polygon","arcs":[[-5434,-4617,-4616,12092,12093,12094]],"properties":{"prefix":"8.2.1.1.1.1"}},{"type":"Polygon","arcs":[[-11639,12095,3636,3637,12096]],"properties":{"prefix":"6.3.7.3.1.1"}},{"type":"Polygon","arcs":[[4162,12097,-8307,-8306,-8305,-8304,9315,12098,-10641,-10640,690,691]],"properties":{"prefix":"8.2.3.1.2.1"}},{"type":"Polygon","arcs":[[12099,5053,5054,5055,-7676,-7683,-7682,-7681]],"properties":{"prefix":"6.1.1.1.1.2"}},{"type":"Polygon","arcs":[[4527,4528,-4519,-4518,-4517,9985,9986,9987,12100,12101,243]],"properties":{"prefix":"7.8.1.3.2.1"}},{"type":"Polygon","arcs":[[12102,12103,2337,2338,6672,6673,6674,6675,6676,6677,6678,3681,6679,6680,6681,12104]],"properties":{"prefix":"1.9.1.2.1.2"}},{"type":"Polygon","arcs":[[955,12105,7645,-7351,-7350,7646,4423,-10937,-10936,12106]],"properties":{"prefix":"9.3.5.5.3.1"}},{"type":"Polygon","arcs":[[12107,-7540,-9303,-1634,-1633,-1632,12108,-8050,6350,12109,12110]],"properties":{"prefix":"7.6.3.1.4.1"}},{"type":"Polygon","arcs":[[12111,12112,9238,2750,6569,6570,-5470,-5469,-5468,-5467,-5466]],"properties":{"prefix":"4.1.5.4.1.1"}},{"type":"Polygon","arcs":[[-10686,-10688,-5800,6007,10355,10356,12113]],"properties":{"prefix":"7.5.6.2.2.1"}},{"type":"Polygon","arcs":[[12114,12115,12116,12117,-7017,3255,3256,3257,-6758,-6757,12118]],"properties":{"prefix":"9.4.2.4.1.2"}},{"type":"Polygon","arcs":[[12119]],"properties":{"prefix":"8.4.1.1.1.2"}},{"type":"Polygon","arcs":[[2388,12120,-10692,-10691,-10690,-10689,-4270,8624,-3314,-3313,-3312,-3311,-3310,-3309,-3308,2387]],"properties":{"prefix":"5.3.5.2.2.2"}},{"type":"Polygon","arcs":[[2437,2438,5201,-11649,-11648,-7284,-7283,-7282,-7281,-7280,12121]],"properties":{"prefix":"3.1.2.1.3.1"}},{"type":"Polygon","arcs":[[748,749,12122,-8563,-8562,-8561,-10065,744,745,746,747]],"properties":{"prefix":"8.1.3.4.2.1"}},{"type":"Polygon","arcs":[[-9635,12123,-7454,-7453,3115,-7857,5186]],"properties":{"prefix":"9.4.4.2.3.1"}},{"type":"Polygon","arcs":[[12124,7973,-6579,-6578,7974,7975,-11656,12125,12126,12127,2037,2038,2039,2040]],"properties":{"prefix":"8.1.5.2.2.1"}},{"type":"Polygon","arcs":[[-8087,-8086,-8085,12128,12129,12130,-8083,12131,8268,-1027,-1026,-1025,-1024,-1023,-1022]],"properties":{"prefix":"7.4.4.4.2.1"}},{"type":"Polygon","arcs":[[2188,-7885,-7884,12132,9995,6847]],"properties":{"prefix":"2.2.1.7.2.3"}},{"type":"Polygon","arcs":[[12133,-9799,4927,10003]],"properties":{"prefix":"7.6.2.3.1.1"}},{"type":"Polygon","arcs":[[-1811,-1810,3923,3924,3925,-4425,-4424,-4423,-4422,12134]],"properties":{"prefix":"9.3.5.4.2.2"}},{"type":"Polygon","arcs":[[-4305,-10712,-7690,-7689,-7688,-9358,-9357,-9356,-9355,-4308,-4307,-4306]],"properties":{"prefix":"9.4.1.1.2.2"}},{"type":"Polygon","arcs":[[2775,9276,9277,9278,12135,12136]],"properties":{"prefix":"9.8.5.1.1.1"}},{"type":"Polygon","arcs":[[12137,-10178,-10177,3273,-9181,-9180,-9179,-11670,-11671,-1774]],"properties":{"prefix":"6.3.1.1.4.1"}},{"type":"Polygon","arcs":[[12138,12139,-10719,12140,-9328,377,378,379,-10173,-10172,12141]],"properties":{"prefix":"2.6.4.2.3.2"}},{"type":"Polygon","arcs":[[-4371,-6797,-6796,-10721,12142,12143,-645,12144,-10022,-10021,-4373,-4372]],"properties":{"prefix":"7.8.1.6.1.2"}},{"type":"Polygon","arcs":[[12145,10218,4211,4212,-2525,1585,1586,1587,12146,12147,12148,12149,12150,-5931]],"properties":{"prefix":"9.8.6.1.1.1"}},{"type":"Polygon","arcs":[[-4089,-10724,-10723,-7302,-7312]],"properties":{"prefix":"2.1.2.1.3.2"}},{"type":"Polygon","arcs":[[-2611,-2610,-2609,1558,-10553,-10552,-10551,12151]],"properties":{"prefix":"9.8.2.2.5.1"}},{"type":"Polygon","arcs":[[6016,-10732,12152,2163,12153]],"properties":{"prefix":"1.5.1.2.1.1"}},{"type":"Polygon","arcs":[[-8901,-4946,-4945,12154]],"properties":{"prefix":"7.5.3.4.1.2"}},{"type":"Polygon","arcs":[[-7520,-5266,-5265,-5277,1796,1797,1798,12155,12156,12157,12158,-9853]],"properties":{"prefix":"6.2.1.2.5.4"}},{"type":"Polygon","arcs":[[12159,-10741,1868,1869,1870,1871,1872,3859,-11686,-11685,12160]],"properties":{"prefix":"5.1.3.2.3.3"}},{"type":"Polygon","arcs":[[-8380,-8379,-3306,-7988,-7994,-7993,12161]],"properties":{"prefix":"5.3.3.2.2.1"}},{"type":"Polygon","arcs":[[12162,12163,7617]],"properties":{"prefix":"7.7.2.4.3.2"}},{"type":"Polygon","arcs":[[6397,6398,6399,3476,6400,6401,6402,6403,-9457,-9459,-10761,-10760,12164]],"properties":{"prefix":"1.3.1.3.1.2"}},{"type":"Polygon","arcs":[[-8027,-2892,-2891,-687,12165]],"properties":{"prefix":"9.1.2.5.3.1"}},{"type":"Polygon","arcs":[[12166,1297,-10770,12167,12168,1340,1341,1342,12169]],"properties":{"prefix":"7.3.3.2.3.1"}},{"type":"Polygon","arcs":[[-9047,-9046,-9045,12170]],"properties":{"prefix":"2.6.5.2.4.2"}},{"type":"Polygon","arcs":[[1037,12171,-5899,-5898,-5897,-5896,-5895,7111,-6825,12172,12173,-8282,-8281,2231,2232,2233,2234]],"properties":{"prefix":"4.1.4.2.1.2"}},{"type":"Polygon","arcs":[[12174,-8490]],"properties":{"prefix":"1.7.2.6.1.3"}},{"type":"Polygon","arcs":[[8295,-11878,12175,12176]],"properties":{"prefix":"8.1.5.5.5.4"}},{"type":"Polygon","arcs":[[-11707,-11706,184,-9241,-9243,12177]],"properties":{"prefix":"6.4.4.1.3.5"}},{"type":"Polygon","arcs":[[-4169,-4168,12178,12179,8668,12180,12181,-4171,-4170]],"properties":{"prefix":"8.2.2.2.3.1"}},{"type":"Polygon","arcs":[[12182,-4682,5429,12183]],"properties":{"prefix":"2.4.1.1.1.1"}},{"type":"Polygon","arcs":[[12184,12185,-1991,-1990,-1989,-1988,12186]],"properties":{"prefix":"1.1.2.2.2.1"}},{"type":"Polygon","arcs":[[4007,4008,4009,796,797,12187,12188,12189]],"properties":{"prefix":"8.1.2.2.1.2"}},{"type":"Polygon","arcs":[[12190,-10808,-2171,2262,2263,2264,2265,9464,12191]],"properties":{"prefix":"1.4.2.4.1.1"}},{"type":"Polygon","arcs":[[12192,-2469,-2468,-2467,-2466,-2465,-8479,-8478,-8477,-8476,12193,12194]],"properties":{"prefix":"4.2.1.1.4.4"}},{"type":"Polygon","arcs":[[-11389,-11388,669,670,5477,5478,12195,12196,12197]],"properties":{"prefix":"8.5.2.2.4.3"}},{"type":"Polygon","arcs":[[10467,12198,-2331,-2330,-5297,-5296,-5295,6829,6830]],"properties":{"prefix":"1.8.3.3.1.1"}},{"type":"Polygon","arcs":[[-8765,10486,-12008,-12007,-10601,-10600,-10599,12199,12200]],"properties":{"prefix":"9.3.1.4.3.1"}},{"type":"Polygon","arcs":[[-9136,-9138,-2365,-2364,-2363,9450,12201]],"properties":{"prefix":"4.3.1.4.2.1"}},{"type":"Polygon","arcs":[[-3969,-4029,-4028,-4027,-8180,-8179,4652,12202,9947]],"properties":{"prefix":"9.3.4.1.5.1"}},{"type":"Polygon","arcs":[[7430,7431,7432,7433,7434,12203,12204,-10822]],"properties":{"prefix":"8.1.4.1.3.2"}},{"type":"Polygon","arcs":[[-6135,-6134,-6133,6171,12205,12206,12207,10074]],"properties":{"prefix":"5.1.2.2.1.2"}},{"type":"Polygon","arcs":[[12208,5436,12209,12210,12211,12212,3757,8436,8437,12213,12214]],"properties":{"prefix":"8.2.1.8.2.1"}},{"type":"Polygon","arcs":[[-8883,-8882,-8881,-940,4495,4496,12215,12216,-8884]],"properties":{"prefix":"7.6.4.2.1.2"}},{"type":"Polygon","arcs":[[6100,6101,6102,545,546,547,548,549]],"properties":{"prefix":"1.3.3.1.1.1"}},{"type":"Polygon","arcs":[[-9106,5543,5544,5545,5546,5547,12217,-9435,-9434,-9433,12218]],"properties":{"prefix":"2.3.3.2.3.1"}},{"type":"Polygon","arcs":[[9328,12219,12220,-10843,-10842,-10841,375,376,9327]],"properties":{"prefix":"2.6.4.2.4.1"}},{"type":"Polygon","arcs":[[12221,-1891,-1890,-1889,-1888,-1887,-1886,-1885,12222,12223,12224]],"properties":{"prefix":"2.3.3.4.6.1"}},{"type":"Polygon","arcs":[[7236,6544,-4644,7237,12225,12226,6542]],"properties":{"prefix":"1.7.2.2.1.2"}},{"type":"Polygon","arcs":[[-10851,-3842,-3841,174,175,-11756,-11755,-11754]],"properties":{"prefix":"6.4.3.3.1.4"}},{"type":"Polygon","arcs":[[7803,7804,12227,12228,12229,6299,6300,6301,6302,-5717,-5716,12230]],"properties":{"prefix":"4.1.3.3.4.1"}},{"type":"Polygon","arcs":[[12231,12232,12233,-704,-703,-702,-701,12234,-10862,-10861,-10860]],"properties":{"prefix":"9.1.3.2.2.2"}},{"type":"Polygon","arcs":[[8598,-4898,-4897,-4896,264,265,-7003,-7008,-6206,12235,12236]],"properties":{"prefix":"8.1.6.2.2.2"}},{"type":"Polygon","arcs":[[12237,12238,-9723,-11924,903,904,2540,2541,2542,12239]],"properties":{"prefix":"9.8.3.1.3.3"}},{"type":"Polygon","arcs":[[-10874,12240,9244,9245,-3958,-3957,9246,9247,9248,-4039,12241,12242]],"properties":{"prefix":"9.3.2.1.1.4"}},{"type":"Polygon","arcs":[[12243,-5920,-6834,-6833,7112,-1715,-1714,2180,2181,2182,2183,2184,12244,-6851,-6850,-6849,4070,4071,4072,4073]],"properties":{"prefix":"2.2.1.6.2.1"}},{"type":"Polygon","arcs":[[-10901,12245]],"properties":{"prefix":"6.1.1.1.3.1"}},{"type":"Polygon","arcs":[[12246,12247,12248,-8873,12249,-6025,-6024,2168,12250,12251]],"properties":{"prefix":"1.5.1.1.3.5"}},{"type":"Polygon","arcs":[[12252,-7489,10187,-10907,-10906,6596,-907,-906,-905]],"properties":{"prefix":"7.4.8.1.2.1"}},{"type":"Polygon","arcs":[[12253,-9654,-9653,12254,12255,-10663]],"properties":{"prefix":"1.3.1.2.1.4"}},{"type":"Polygon","arcs":[[-8318,12256,-9916]],"properties":{"prefix":"5.3.3.1.2.1"}},{"type":"Polygon","arcs":[[3167,3168,3169,12257,12258,12259,12260,3163,-2563,3164,3165,3166]],"properties":{"prefix":"7.5.4.4.1.2"}},{"type":"Polygon","arcs":[[-8790,-8789,-8788,-8791,-1098,-1257,10410,10411,12261,6386,6387]],"properties":{"prefix":"7.3.1.3.1.1"}},{"type":"Polygon","arcs":[[-2473,12262,9087,9088,-453,9089,9090,9091,-8473,-8472]],"properties":{"prefix":"4.2.1.1.1.1"}},{"type":"Polygon","arcs":[[4548,4549,4550,4551,4552,12263,12264,12265,1595,1596,12266]],"properties":{"prefix":"9.8.2.1.1.2"}},{"type":"Polygon","arcs":[[12267,2688,9041,2691,2692,9042,9043,9044,12268]],"properties":{"prefix":"2.6.5.2.5.2"}},{"type":"Polygon","arcs":[[-10914,-3723,-5542,8196,8197,8198,-559,-558,-557,-10917,-10916,-10915]],"properties":{"prefix":"2.3.3.1.2.2"}},{"type":"Polygon","arcs":[[12269,-9199,-5306,12270,4205,4206,729,12271]],"properties":{"prefix":"8.1.4.4.3.4"}},{"type":"Polygon","arcs":[[12272,9975,5689,5690,5691,12273]],"properties":{"prefix":"5.3.6.2.3.3"}},{"type":"Polygon","arcs":[[-11802,-6107,-6106,-6105,-6104,-5529,-5528,-5527,8843,8844,8845,8846,6609,-11803]],"properties":{"prefix":"1.9.2.3.4.3"}},{"type":"Polygon","arcs":[[6355,12274,12275,12276]],"properties":{"prefix":"7.6.3.1.2.2"}},{"type":"Polygon","arcs":[[9367,12277,-10928,5237]],"properties":{"prefix":"6.2.1.5.3.2"}},{"type":"Polygon","arcs":[[12278,-1116,-1115,-1114,3360,3361,12279,12280,12281,12282]],"properties":{"prefix":"7.3.2.2.4.3"}},{"type":"Polygon","arcs":[[12283,12284,12285,12286,-9150,10327,4850,4851,4852,4853,4854,-2637,-2636,-2635,-4186,-4185,12287]],"properties":{"prefix":"1.7.1.1.2.3"}},{"type":"Polygon","arcs":[[6505,1410,12288,-10941,-10940,-10939,-10938,17,6503,6504]],"properties":{"prefix":"1.3.4.2.5.2"}},{"type":"Polygon","arcs":[[-4459,1685,1686,1687,1688,1689,1690,1691,-10695,6457,6458,12289]],"properties":{"prefix":"2.1.2.2.1.1"}},{"type":"Polygon","arcs":[[-2817,12290,-2821,-2820,-2819,-2818]],"properties":{"prefix":"2.6.2.5.4.1"}},{"type":"Polygon","arcs":[[9591,-1952,-1951,-1950,-1949,-1948,-6869,-7361,-7360,-7359,-7358,-6873,12291,9590]],"properties":{"prefix":"7.1.1.2.2.1"}},{"type":"Polygon","arcs":[[-7571,-7575,3082,3083,12292,12293,9701]],"properties":{"prefix":"7.4.7.3.1.2"}},{"type":"Polygon","arcs":[[12294,-9545,-9544,832,833,834,835,836,837,838,839,3689,3690,3691,12295,3694,3695]],"properties":{"prefix":"3.4.3.2.4.2"}},{"type":"Polygon","arcs":[[-10957,4339,6819,12296]],"properties":{"prefix":"4.3.1.3.1.1"}},{"type":"Polygon","arcs":[[-8128,8499,8500,8501,-11973,-11972,12297]],"properties":{"prefix":"4.3.2.2.1.3"}},{"type":"Polygon","arcs":[[-1401,-5601,9793,12298,-1403,-1402]],"properties":{"prefix":"1.4.2.1.1.1"}},{"type":"Polygon","arcs":[[-4230,-4229,-4228,-10980,12299,12300]],"properties":{"prefix":"2.6.2.1.3.1"}},{"type":"Polygon","arcs":[[648,649,249,9025,-8713,12301]],"properties":{"prefix":"8.1.5.3.1.4"}},{"type":"Polygon","arcs":[[-11837,-2246,-2245,-8657,-8656,8975,8976,12302]],"properties":{"prefix":"2.3.3.4.3.3"}},{"type":"Polygon","arcs":[[12303,12304,2530,2531,8841,8842,-8547,12305]],"properties":{"prefix":"9.8.3.4.4.2"}},{"type":"Polygon","arcs":[[-6855,-6854,-6853,7250,7251,7252,12306,12307,-2515,-2514,-2513,-2512,-2511,12308,12309]],"properties":{"prefix":"7.2.4.5.1.1"}},{"type":"Polygon","arcs":[[12310,12311,-5139,5173,5174,5175,-7964,-7963,-7962,12312]],"properties":{"prefix":"3.4.2.5.2.1"}},{"type":"Polygon","arcs":[[12313,12314,8706,8707,6726,564,565,566,12315]],"properties":{"prefix":"1.3.2.2.3.1"}},{"type":"Polygon","arcs":[[12316,8414,8415,8416,8417,12317]],"properties":{"prefix":"4.1.3.4.3.1"}},{"type":"Polygon","arcs":[[12318,12319,-6200,-9185,-8403,-9187,-9186,-8014,-8013]],"properties":{"prefix":"8.1.6.6.3.1"}},{"type":"Polygon","arcs":[[12320,12321,652,12322]],"properties":{"prefix":"8.5.2.3.3.3"}},{"type":"Polygon","arcs":[[2412,12323,12324,5822]],"properties":{"prefix":"5.3.1.1.2.2"}},{"type":"Polygon","arcs":[[-11856,1501,12325]],"properties":{"prefix":"9.1.7.2.1.2"}},{"type":"Polygon","arcs":[[12326,-11512,-11514,-879,-878,8276,8277]],"properties":{"prefix":"4.1.2.4.5.1"}},{"type":"Polygon","arcs":[[12327,3296,3297,3298,3299,3300,7286,7287]],"properties":{"prefix":"5.3.6.3.8.3"}},{"type":"Polygon","arcs":[[12328,12329,12330,12331]],"properties":{"prefix":"7.8.1.1.1.2"}},{"type":"Polygon","arcs":[[8138,8139,8140,12332]],"properties":{"prefix":"1.8.3.1.3.4"}},{"type":"Polygon","arcs":[[12333,-4257,-4256,-2859,8982,8983,8984,8985]],"properties":{"prefix":"7.4.6.2.3.1"}},{"type":"Polygon","arcs":[[-5028,-5032,3610,3611,3612,3613,3614,3615,12334,-9814]],"properties":{"prefix":"3.4.1.1.6.1"}},{"type":"Polygon","arcs":[[12335,12336,8103,8104,12337]],"properties":{"prefix":"9.4.5.2.2.2"}},{"type":"Polygon","arcs":[[-5547,6141,6142,6143,6144,12338,12339]],"properties":{"prefix":"2.3.3.3.3.2"}},{"type":"Polygon","arcs":[[2504,2505,-11876,-11875,1975,1976,1977,1978,6073,6074,6075,6076,6077]],"properties":{"prefix":"7.2.3.1.2.4"}},{"type":"Polygon","arcs":[[4243,4244,-2855,-2854,-2853,-2852,-2851,-2871,12340,12341,12342,12343]],"properties":{"prefix":"7.4.2.1.2.3"}},{"type":"Polygon","arcs":[[12344,12345,933,934,-1832]],"properties":{"prefix":"9.5.1.1.1.1"}},{"type":"Polygon","arcs":[[12346,12347,12348,7789,12349,7794,7795,423,1430,1431,1432,1433]],"properties":{"prefix":"1.3.1.4.1.2"}},{"type":"Polygon","arcs":[[-11017,-11016,-8650,10306,-4959,12350]],"properties":{"prefix":"7.7.1.4.2.2"}},{"type":"Polygon","arcs":[[-11378,-3707,-540,-539,12351,12352,12353,-11379]],"properties":{"prefix":"2.3.1.2.2.3"}},{"type":"Polygon","arcs":[[9129,9130,9131,9132,9133,9134,-1449,-1448,1982,1983,1984,1985,12354]],"properties":{"prefix":"1.2.1.4.3.1"}},{"type":"Polygon","arcs":[[12355,12356,2242,2903,2904,2905,2906,12357,12358]],"properties":{"prefix":"2.6.1.2.2.2"}},{"type":"Polygon","arcs":[[-6671,-6685,12359]],"properties":{"prefix":"1.9.1.1.1.1"}},{"type":"Polygon","arcs":[[12360,12361,12362,-844,-843,-842,9490,-6973,-6972,7139,7140,7141,-6449]],"properties":{"prefix":"4.1.2.2.1.2"}},{"type":"Polygon","arcs":[[12363,-5021,9214,12364]],"properties":{"prefix":"7.4.6.4.4.1"}},{"type":"Polygon","arcs":[[12365,-3091,-3090,337,1462,1463,1464,1465,1466,7704,7705,7706,7707,7708,7709,7710,1482,1483]],"properties":{"prefix":"9.1.8.1.1.1"}},{"type":"Polygon","arcs":[[12366,2951,2952,2953,8358,12367,12368,12369,12370]],"properties":{"prefix":"9.1.5.1.2.1"}},{"type":"Polygon","arcs":[[6606,6607,6608,-8847,-8846,-8845,12371,12372,6605]],"properties":{"prefix":"1.9.2.3.5.1"}},{"type":"Polygon","arcs":[[12373,-6617,-6616,-6087,-6086,-6085,12374,-6100,-6099,-6098,7238,7239,7240,12375]],"properties":{"prefix":"6.3.3.1.2.1"}},{"type":"Polygon","arcs":[[5555,12376,12377,12378,12379,5554]],"properties":{"prefix":"2.3.3.2.5.2"}},{"type":"Polygon","arcs":[[12380,8761,-1480,-1479,5876,5877,5878,5879,8762,12381]],"properties":{"prefix":"9.3.1.4.2.1"}},{"type":"Polygon","arcs":[[-3830,-3836,12382,294]],"properties":{"prefix":"8.4.1.1.2.1"}},{"type":"Polygon","arcs":[[12383,-8784,1224]],"properties":{"prefix":"6.3.4.3.2.2"}},{"type":"Polygon","arcs":[[-11922,1491,1492,1493,1494,12384]],"properties":{"prefix":"9.1.7.3.1.1"}},{"type":"Polygon","arcs":[[1622,1623,1624,1625,1626,12385,12386,12387]],"properties":{"prefix":"7.7.1.2.2.1"}},{"type":"Polygon","arcs":[[-6029,-6028,-6027,-6026,-6050,-6049,-8131,12388]],"properties":{"prefix":"4.3.2.2.4.1"}},{"type":"Polygon","arcs":[[7294,7295,7296,7297,7298,7299,12389]],"properties":{"prefix":"2.6.7.2.2.1"}},{"type":"Polygon","arcs":[[12390,-3117,-3116,-3115,12391,12392,12393]],"properties":{"prefix":"9.4.5.1.3.1"}},{"type":"Polygon","arcs":[[-2051,-2081,-10891]],"properties":{"prefix":"7.5.6.3.4.5"}},{"type":"Polygon","arcs":[[12394,5249,3917,-9782,-9781,-9780]],"properties":{"prefix":"9.3.5.4.1.1"}},{"type":"Polygon","arcs":[[9848,12395,9843,9844,3902,3903,3904,9845,9846,9847,-742,-741,-740,-739,-738]],"properties":{"prefix":"9.3.5.1.1.3"}},{"type":"Polygon","arcs":[[12396,12397,12398,-1210]],"properties":{"prefix":"7.2.1.4.2.5"}},{"type":"Polygon","arcs":[[12399,-6631,-9582,12400]],"properties":{"prefix":"2.3.3.4.2.1"}},{"type":"Polygon","arcs":[[12401,8636,4148,4149,-2474,-2518,6699,12402,12403,12404]],"properties":{"prefix":"7.2.4.6.1.5"}},{"type":"Polygon","arcs":[[12405,-6606,-6605,-5525,-5524,-5523,-6615]],"properties":{"prefix":"1.9.2.5.1.2"}},{"type":"Polygon","arcs":[[-8222,-8221,-7826,-7825,-7824,-7831,-11066,-11065]],"properties":{"prefix":"5.1.3.2.2.2"}},{"type":"Polygon","arcs":[[3679,3680,-6679,-6678,7698,7699,7700,7701,12406,12407]],"properties":{"prefix":"1.9.1.3.2.2"}},{"type":"Polygon","arcs":[[12408,12409,3118,3119,5181,5182,5183,5184]],"properties":{"prefix":"9.4.4.2.4.3"}},{"type":"Polygon","arcs":[[-5241,12410,12411,-11460,-11459,-11458,12412,12413,-5868,-5867,-5866,-5865,-5242]],"properties":{"prefix":"6.2.1.6.1.1"}},{"type":"Polygon","arcs":[[-6285,-822,-821,-820,-819,-8419,-8418,-8417,12414]],"properties":{"prefix":"4.1.3.4.2.3"}},{"type":"Polygon","arcs":[[-10667,-544,-543,4585,12415,12416,-10669,-10668]],"properties":{"prefix":"2.3.2.1.1.3"}},{"type":"Polygon","arcs":[[-9376,-9375,-9374,-10212,10392,6148,-1366,-1365,12417]],"properties":{"prefix":"7.2.7.4.5.1"}},{"type":"Polygon","arcs":[[8028,12418,-12075]],"properties":{"prefix":"9.1.2.5.2.4"}},{"type":"Polygon","arcs":[[12419,12420,12421,12422]],"properties":{"prefix":"4.8.3.2.4.1"}},{"type":"Polygon","arcs":[[8113,12423,8110,8111,-11084,-5483,-5482]],"properties":{"prefix":"8.5.2.1.4.1"}},{"type":"Polygon","arcs":[[-10934,-10933,3928,950,951,952,953,954,-12107,-10935]],"properties":{"prefix":"9.3.5.5.3.3"}},{"type":"Polygon","arcs":[[9882,3868,3869,6177,6178,12424]],"properties":{"prefix":"2.4.4.1.1.2"}},{"type":"Polygon","arcs":[[-1606,-1658,12425,12426]],"properties":{"prefix":"7.6.6.7.1.3"}},{"type":"Polygon","arcs":[[-1578,-1577,-1576,-1575,-1574,3245,12427,12428,3249,3250,12429]],"properties":{"prefix":"9.4.2.5.2.2"}},{"type":"Polygon","arcs":[[313,314,-5320,-5319,-5318,-5317,-5324,-5323,12430]],"properties":{"prefix":"8.5.2.2.5.4"}},{"type":"Polygon","arcs":[[-11959,-7101,12431]],"properties":{"prefix":"4.2.2.1.5.5"}},{"type":"Polygon","arcs":[[5999,6000,6001,6002,6003,-4226,-4225,-5414,-5421,-5420,-11966,12432]],"properties":{"prefix":"2.6.2.3.1.4"}},{"type":"Polygon","arcs":[[-9564,12433,-9560,6088,6089,6090,6091,6092]],"properties":{"prefix":"6.3.3.2.4.1"}},{"type":"Polygon","arcs":[[12434,12435,8476]],"properties":{"prefix":"4.2.1.1.5.1"}},{"type":"Polygon","arcs":[[12436,9681,9682,-5112,-9426,-9425,-9424]],"properties":{"prefix":"7.6.3.4.4.1"}},{"type":"Polygon","arcs":[[12437,12438,10264,12439,366]],"properties":{"prefix":"2.6.5.2.1.2"}},{"type":"Polygon","arcs":[[3001,3002,3003,3004,3005,3006,7019,7020,3014,3015,12440,12441,12442,12443,12444]],"properties":{"prefix":"5.3.2.2.5.3"}},{"type":"Polygon","arcs":[[12445,12446,1922,-9403,-9402,-5480,-5479,-5478,671,672,673,674,-9287,12447,12448]],"properties":{"prefix":"8.5.2.1.2.2"}},{"type":"Polygon","arcs":[[1280,1281,1282,1283,1284,8175,8176,12449,12450]],"properties":{"prefix":"7.3.2.1.1.1"}},{"type":"Polygon","arcs":[[-10985,-5443,-5442,-5463,-5462,-5461,-5460]],"properties":{"prefix":"7.6.1.3.4.3"}},{"type":"Polygon","arcs":[[12451,12452,6344,6345,6346,12453,12454,12455]],"properties":{"prefix":"7.6.3.1.6.2"}},{"type":"Polygon","arcs":[[5094,5095,5096,5097,5098,5099,5100,5101,1035,1036,-2235,-2234,-11132,-11131,12456]],"properties":{"prefix":"4.3.4.5.1.2"}},{"type":"Polygon","arcs":[[12457,1267,1268,1269,7401,7402,-6808,-6807,-6806,-6805,12458,12459]],"properties":{"prefix":"7.3.1.1.1.5"}},{"type":"Polygon","arcs":[[-11137,12460,12461,-3395,-3394]],"properties":{"prefix":"1.3.4.2.1.2"}},{"type":"Polygon","arcs":[[4621,9400,-7405,12462,4620]],"properties":{"prefix":"8.2.1.5.2.1"}},{"type":"Polygon","arcs":[[-10511,12463,-5863,-5862,-5861,-5860,-5271,-7529,-7528,-7527,-7526,-7525,5888]],"properties":{"prefix":"6.2.1.2.1.2"}},{"type":"Polygon","arcs":[[8512,8513,8514,8515,8516,12464,2994]],"properties":{"prefix":"5.3.2.1.2.1"}},{"type":"Polygon","arcs":[[12465,7658,12466,-5044,383]],"properties":{"prefix":"2.6.4.1.4.1"}},{"type":"Polygon","arcs":[[1613,1614,1615,1616,1617,6184,6185,6186,-749,12467,-9099]],"properties":{"prefix":"7.7.1.1.2.1"}},{"type":"Polygon","arcs":[[588,-10522,-10521,-7296,9788]],"properties":{"prefix":"2.6.7.2.3.3"}},{"type":"Polygon","arcs":[[8819,8820,8821,8822,8823,8824,8825,8826,8827,8828,6492,12468]],"properties":{"prefix":"7.2.2.4.2.3"}},{"type":"Polygon","arcs":[[12469,12470,12471,12472,-8237,-8236,-6930,-6929,-6928,-569,-568,-567,-2327,-2326,-2325,12473]],"properties":{"prefix":"2.4.1.3.3.3"}},{"type":"Polygon","arcs":[[-7332,-7331,-1850,-1849,-1848,8519,8520,8521,8522,-2394,-2393,-2392,12474,12475]],"properties":{"prefix":"5.2.1.2.4.3"}},{"type":"Polygon","arcs":[[8638,-10533,-2227,12476]],"properties":{"prefix":"4.3.3.1.2.1"}},{"type":"Polygon","arcs":[[56,12477,12478,2110]],"properties":{"prefix":"4.4.3.2.3.1"}},{"type":"Polygon","arcs":[[3051,3052,3053,3054,-6798,-6370,-6378,-6377,-6376,12479]],"properties":{"prefix":"7.4.7.1.1.2"}},{"type":"Polygon","arcs":[[-5552,-5551,-10339,-9382,-9381,12480]],"properties":{"prefix":"2.3.3.3.1.1"}},{"type":"Polygon","arcs":[[-11215,448,449,3672,3673,3674,-7703,-7702,12481,-11219,-11218,-11217,-11216]],"properties":{"prefix":"1.9.1.3.1.6"}},{"type":"Polygon","arcs":[[12482,12483,7484,-6966,-6965,-6964,7485,7486,12484]],"properties":{"prefix":"4.1.2.4.1.1"}},{"type":"Polygon","arcs":[[12485,1848,1849,1850,1851,1852,1853,1854]],"properties":{"prefix":"5.1.3.5.2.4"}},{"type":"Polygon","arcs":[[12486,2568,-6007,-6008,-5799,-10562]],"properties":{"prefix":"7.5.6.1.1.3"}},{"type":"Polygon","arcs":[[-1243,12487,12488,9375,9376,-1244]],"properties":{"prefix":"7.2.7.4.4.3"}},{"type":"Polygon","arcs":[[12489,66,67,4109,4110,12490,-10579,-10578]],"properties":{"prefix":"4.4.3.4.4.1"}},{"type":"Polygon","arcs":[[-11022,10373,12491]],"properties":{"prefix":"6.4.3.1.1.2"}},{"type":"Polygon","arcs":[[437,438,439,12492,12493,-8357,-2647,-2646,12494,12495,12496]],"properties":{"prefix":"1.7.1.4.1.2"}},{"type":"Polygon","arcs":[[12497,-11041]],"properties":{"prefix":"9.3.4.3.5.2"}},{"type":"Polygon","arcs":[[5268,12498,12499,5267]],"properties":{"prefix":"6.2.1.3.1.1"}},{"type":"Polygon","arcs":[[212,-11198,-11197,-11196,12500]],"properties":{"prefix":"7.6.3.1.1.1"}},{"type":"Polygon","arcs":[[12501,12502,-9258,-8944,-8943]],"properties":{"prefix":"1.8.3.5.2.2"}},{"type":"Polygon","arcs":[[12503,10430,239,240,241,-9989,-9988,-9987,-9986,-4527,-4526,-4525,-4442]],"properties":{"prefix":"7.8.1.3.1.2"}},{"type":"Polygon","arcs":[[12504,3561,3562,3563,3564,3565,3566,3567,12505,12506,12507,12508,12509,2076,2077,3589]],"properties":{"prefix":"7.6.4.1.1.1"}},{"type":"Polygon","arcs":[[12510,12511,-11183,-11185,-1861,-1860]],"properties":{"prefix":"5.2.1.1.1.2"}},{"type":"Polygon","arcs":[[-6385,12512,6806,12513,-9999]],"properties":{"prefix":"7.3.1.2.3.1"}},{"type":"Polygon","arcs":[[5296,-2329,-2328,-2350,-2349,-2348,534,-11225,-11224]],"properties":{"prefix":"1.8.3.6.1.4"}},{"type":"Polygon","arcs":[[-9012,622,623,-4195,-4194,-4193,-4192,-4191,-4190,9331,12514,12515,12516,9334,12517]],"properties":{"prefix":"8.1.3.2.3.1"}},{"type":"Polygon","arcs":[[-3676,-3675,-3674,-3673,450,7172,12518,12519,12520,12521]],"properties":{"prefix":"1.9.2.3.1.1"}},{"type":"Polygon","arcs":[[2709,12522,-8555,-8554,-8553,-8213,-8219,-8218,2705,2706,2707,2708]],"properties":{"prefix":"2.6.5.1.2.2"}},{"type":"Polygon","arcs":[[12523,3976,3977,3978,3979,7558,4864,4865,4866,12524]],"properties":{"prefix":"9.3.3.1.4.2"}},{"type":"Polygon","arcs":[[-11229,12525,132]],"properties":{"prefix":"6.3.1.1.1.1"}},{"type":"Polygon","arcs":[[-3909,-3908,9768,9769,-11613,-11612,-11611,-11610]],"properties":{"prefix":"9.3.4.5.1.4"}},{"type":"Polygon","arcs":[[4580,10482,12526,12527,4579]],"properties":{"prefix":"4.8.2.2.1.2"}},{"type":"Polygon","arcs":[[7869,7870,-3639,-3638,-3637,-3636,-3635,-3634,-3633,7871,7872,7873]],"properties":{"prefix":"6.3.6.1.1.1"}},{"type":"Polygon","arcs":[[215,-11274,-11276,12528]],"properties":{"prefix":"7.7.1.2.6.1"}},{"type":"Polygon","arcs":[[-11242,6253,7763,7764,7765,12529]],"properties":{"prefix":"6.3.4.1.2.1"}},{"type":"Polygon","arcs":[[12530,3303,3304,3305,3306,-3002,-3001,9785,9786,9787,1089,12531]],"properties":{"prefix":"5.3.6.3.9.4"}},{"type":"Polygon","arcs":[[12532,8442,190,191,192,-2071,-2070,-2069,-2068,-2067,-2066,-2065,4931,8443,8444,8445,8446,8447,4942,4943,4944,4945,4946]],"properties":{"prefix":"7.5.3.3.3.2"}},{"type":"Polygon","arcs":[[-1572,-10621,-3129,12533]],"properties":{"prefix":"9.4.3.1.2.1"}},{"type":"Polygon","arcs":[[12534,10109,10110,12535,12536,5086,5087,-516,-515,-1758,-1757]],"properties":{"prefix":"2.2.2.2.3.1"}},{"type":"Polygon","arcs":[[-8463,-8462,3223,3224,4916,4917,4918,-10624,-10623,-8464]],"properties":{"prefix":"7.6.2.3.2.2"}},{"type":"Polygon","arcs":[[12537,-6645,12538,12539,12540]],"properties":{"prefix":"7.6.6.2.1.4"}},{"type":"Polygon","arcs":[[12541,-8828,-8827,12542,-9139]],"properties":{"prefix":"7.2.2.4.3.1"}},{"type":"Polygon","arcs":[[12543,12544,-2944,1510,1511,1512,12545,8088]],"properties":{"prefix":"9.1.4.1.2.1"}},{"type":"Polygon","arcs":[[-8481,-8297,-8296,-8295,-8294,-8293,-8807,-8806,-8812,-8811,10226,-8485,12546]],"properties":{"prefix":"8.1.5.5.2.2"}},{"type":"Polygon","arcs":[[9946,2452,-8142,-8141]],"properties":{"prefix":"1.8.3.1.2.1"}},{"type":"Polygon","arcs":[[-10708,-10707,-4996,-4995,5681,5682,5683,5684,5685,-10709]],"properties":{"prefix":"9.1.2.4.2.4"}},{"type":"Polygon","arcs":[[687,-10639,-12099,9316,9317,9318,4160,4161,2254,2255,2256,9319,9320,9321,9322,684,685,686]],"properties":{"prefix":"8.2.3.1.2.3"}},{"type":"Polygon","arcs":[[-7328,12547,-10647,-10652,-11266,5644,5645,5646,5647,5648,5649,-7329]],"properties":{"prefix":"5.3.2.1.5.4"}},{"type":"Polygon","arcs":[[12548,4117,-11270,-11269,-11268,12549]],"properties":{"prefix":"4.4.3.6.1.3"}},{"type":"Polygon","arcs":[[12550,986,987,988,989,990,2111,2112]],"properties":{"prefix":"4.4.4.5.2.1"}},{"type":"Polygon","arcs":[[12551,-9372,-9371,-8425,-8424,-8423,-8422,-8421,-10658,-10657]],"properties":{"prefix":"7.2.7.4.1.1"}},{"type":"Polygon","arcs":[[-11286,560,561,9576,12552]],"properties":{"prefix":"1.3.2.3.1.1"}},{"type":"Polygon","arcs":[[12553,-1148,-6442,-6441,9582,9583,12554,-7318,-7317,12555]],"properties":{"prefix":"7.5.3.1.3.1"}},{"type":"Polygon","arcs":[[12556,2674,2675,-11287,-11289]],"properties":{"prefix":"2.6.5.2.3.1"}},{"type":"Polygon","arcs":[[3413,3414,3415,3416,3417,-6111,-11120,-11119,6621,6622,6623,-6091,7198,12557,12558,12559]],"properties":{"prefix":"6.3.3.3.1.2"}},{"type":"Polygon","arcs":[[12560,12561,-9134,12562,12563]],"properties":{"prefix":"1.2.1.4.4.2"}},{"type":"Polygon","arcs":[[4480,4481,4482,1275,1276,1277,12564,12565,12566,-3368,-10679]],"properties":{"prefix":"7.3.1.4.1.6"}},{"type":"Polygon","arcs":[[-10682,-11293,262,-10683]],"properties":{"prefix":"8.1.6.1.5.2"}},{"type":"Polygon","arcs":[[12567,12568,-3865,-3864,-3798,-3947,9586,9587,12569,12570,12571,9589,398,399,-8158]],"properties":{"prefix":"2.4.5.1.4.2"}},{"type":"Polygon","arcs":[[12572,10458,10459,4191,-9822,-9821,-9820,-9819,739]],"properties":{"prefix":"8.1.4.1.1.1"}},{"type":"Polygon","arcs":[[6267,6268,3291,3292,9114,9115,9116,9117,1099,1100,1101,1102,12573,12574,12575]],"properties":{"prefix":"5.3.6.3.6.2"}},{"type":"Polygon","arcs":[[12576,12577,12578,292,9250,-3834,-3833,-3832,-3831,-2422,-2421,-2420,4355,9251,12579]],"properties":{"prefix":"8.4.1.1.1.4"}},{"type":"Polygon","arcs":[[-852,12580,12581,12582,-11299,-11303,-11302,12583]],"properties":{"prefix":"4.1.2.1.1.1"}},{"type":"Polygon","arcs":[[5884,12584,-7521,9852,9853,9854,9855,9856,-7919,-7918,-7917,5882,5883]],"properties":{"prefix":"6.2.1.2.3.1"}},{"type":"Polygon","arcs":[[-11310,-5219,-2626,-11811,12585,-11311]],"properties":{"prefix":"1.7.3.1.1.4"}},{"type":"Polygon","arcs":[[8264,12586,-6522,8263]],"properties":{"prefix":"7.4.4.4.2.3"}},{"type":"Polygon","arcs":[[12587,-7365,-7364,-9399,-9398,12588,12589,12590,12591]],"properties":{"prefix":"7.7.2.1.2.2"}},{"type":"Polygon","arcs":[[9542,830,831,9543,9544,9545,9546,9547,9548,12592,12593]],"properties":{"prefix":"3.4.3.2.2.1"}},{"type":"Polygon","arcs":[[4200,4201,4202,4203,5303,-11751,12594,12595,10321,12596,12597,12598,12599]],"properties":{"prefix":"8.1.4.3.1.3"}},{"type":"Polygon","arcs":[[12600,-6363,-6362,-1380,-1379,-1378,-1377,-1376,-1375,6790,-1459,-1458,-1457,-1456,-1455]],"properties":{"prefix":"1.2.1.5.1.1"}},{"type":"Polygon","arcs":[[4314,4315,4316,-3157,-3156,-7586,12601,12602,12603,-2567]],"properties":{"prefix":"7.5.3.6.3.4"}},{"type":"Polygon","arcs":[[12604,-4626,-4625,-4624,12605,12606,12607,12608,699,700,-10717,-10716]],"properties":{"prefix":"8.2.1.8.1.2"}},{"type":"Polygon","arcs":[[5761,5762,12609,12610,12611,12612]],"properties":{"prefix":"7.2.1.3.1.4"}},{"type":"Polygon","arcs":[[12613,12614,8399,8400,6769,-5100,12615,-6336,-5091,3445,3446,3447]],"properties":{"prefix":"4.3.4.2.1.2"}},{"type":"Polygon","arcs":[[12616,9269,9270,9271,9272,1117,-3783,-3782,-3781,-3780]],"properties":{"prefix":"5.1.2.3.1.3"}},{"type":"Polygon","arcs":[[-12148,12617,1590,342,12618,12619,12620,-12150,-12149]],"properties":{"prefix":"9.8.6.1.1.3"}},{"type":"Polygon","arcs":[[12621,12622,-11163,386,387,-1903,-1902,12623]],"properties":{"prefix":"2.6.1.1.1.2"}},{"type":"Polygon","arcs":[[-7892,-7891,-7890,2162,-12153,-10733]],"properties":{"prefix":"1.5.1.2.1.3"}},{"type":"Polygon","arcs":[[12624,4135,-6706,-6705]],"properties":{"prefix":"7.2.4.5.3.2"}},{"type":"Polygon","arcs":[[-3419,-3418,-10745,-10750,5834,12625,12626,12627]],"properties":{"prefix":"6.3.5.2.3.1"}},{"type":"Polygon","arcs":[[973,974,5219,5220,12628]],"properties":{"prefix":"4.4.4.2.3.2"}},{"type":"Polygon","arcs":[[12629,12630,12631,12632,2520,2521,10288,10289,12633,10291,880,881,882]],"properties":{"prefix":"9.8.3.3.2.3"}},{"type":"Polygon","arcs":[[12634,12635,-2673,-2672,-2671,-2715,-10759,-2712,-2711,-2710,-2709,-5043,-5042]],"properties":{"prefix":"2.6.4.3.2.2"}},{"type":"Polygon","arcs":[[-9484,12636,12637,-9477,-8725,-8724,-9486,-9485]],"properties":{"prefix":"7.5.2.1.3.2"}},{"type":"Polygon","arcs":[[1301,1302,1303,1304,-11849,12638,-11347,12639,12640,-10768]],"properties":{"prefix":"7.3.3.2.3.3"}},{"type":"Polygon","arcs":[[12641,-11351,-11350,-3037,-3036,12642,12643]],"properties":{"prefix":"5.3.5.1.2.1"}},{"type":"Polygon","arcs":[[6962,6963,12644,-838]],"properties":{"prefix":"4.1.2.3.2.2"}},{"type":"Polygon","arcs":[[7080,7081,7082,7083,7084,-10773,-10772]],"properties":{"prefix":"8.1.3.2.4.4"}},{"type":"Polygon","arcs":[[-3761,12645,-8395,-8394,-10781,-10780,-10779,-10778,694,695,-3762]],"properties":{"prefix":"8.2.2.1.2.1"}},{"type":"Polygon","arcs":[[5278,5279,5280,12646,-10787,-10786,-10785]],"properties":{"prefix":"2.4.6.1.1.3"}},{"type":"Polygon","arcs":[[3664,-795,12647,9837,3652,3653,-7698,3662,3663]],"properties":{"prefix":"7.8.2.1.3.1"}},{"type":"Polygon","arcs":[[6882,7267,7268,-10799,12648,12649,12650]],"properties":{"prefix":"2.6.6.2.5.3"}},{"type":"Polygon","arcs":[[-1396,-1395,-1394,-1393,-1392,25,9459,-11382,-11381,-10805]],"properties":{"prefix":"1.4.2.4.1.3"}},{"type":"Polygon","arcs":[[10427,2932,2933,2934,2935,2936,2937,2938,2939,2940,2941,-11384]],"properties":{"prefix":"7.4.5.2.5.2"}},{"type":"Polygon","arcs":[[2456,2457,8814,6462,12651,-5908]],"properties":{"prefix":"1.8.3.2.2.1"}},{"type":"Polygon","arcs":[[-10813,-1266,-1265,-4985,-4984,-4983,12652]],"properties":{"prefix":"7.2.4.2.3.3"}},{"type":"Polygon","arcs":[[-7503,-9658,-9657,9831,9832,9833,9834,9835,-7905,-7904,-7903,1441,1442,1443,1444,12653]],"properties":{"prefix":"1.3.1.2.4.1"}},{"type":"Polygon","arcs":[[12654,8246,8247,-6154,-6153,-6152,-6151,-6150,-3624,-4837,-4836,12655,12656]],"properties":{"prefix":"3.4.4.6.3.2"}},{"type":"Polygon","arcs":[[-9507,12657,-8889,10098]],"properties":{"prefix":"4.6.1.1.1.1"}},{"type":"Polygon","arcs":[[7380,-10820,6035,-2220,-2219,-2218,12658]],"properties":{"prefix":"4.3.2.3.3.1"}},{"type":"Polygon","arcs":[[12659,-11880]],"properties":{"prefix":"2.6.2.5.1.1"}},{"type":"Polygon","arcs":[[10312,12660,12661,-10234,-10233,-1877,10310,10311]],"properties":{"prefix":"5.3.6.3.1.1"}},{"type":"Polygon","arcs":[[12662,-7644,-7648,960,961,4425,-7355,-7354]],"properties":{"prefix":"9.3.5.5.2.1"}},{"type":"Polygon","arcs":[[4738,-10827,12663]],"properties":{"prefix":"9.1.3.1.5.2"}},{"type":"Polygon","arcs":[[12664,12665,5349,12666,12667,12668,12669,12670,-2697,-2696,-2695,-2694,-2693,5351]],"properties":{"prefix":"2.6.6.1.2.1"}},{"type":"Polygon","arcs":[[12671,12672,12673,-5343,-5342,-1179,-1178,-1177,6869]],"properties":{"prefix":"7.1.1.3.4.4"}},{"type":"Polygon","arcs":[[12674,12675,-11898,12676]],"properties":{"prefix":"7.6.4.2.4.3"}},{"type":"Polygon","arcs":[[-8052,8670,12677]],"properties":{"prefix":"7.6.3.1.5.1"}},{"type":"Polygon","arcs":[[10333,12678,-7854,-7853,12679,-3104,-3103,-3102,-3101,-3100,10331,10332]],"properties":{"prefix":"9.1.6.1.4.1"}},{"type":"Polygon","arcs":[[-9688,-9687,-7554,-7553,-10835,12680]],"properties":{"prefix":"1.3.2.6.1.1"}},{"type":"Polygon","arcs":[[-1308,-1307,12681,12682,-3894,-3893,-8794,-8793,12683]],"properties":{"prefix":"7.5.1.2.2.1"}},{"type":"Polygon","arcs":[[521,12684,-10673,-10672,5527,-8761,5535,518,519,520]],"properties":{"prefix":"1.9.2.7.1.3"}},{"type":"Polygon","arcs":[[8939,12685,-11422,12686,-5422,-5427,2155,-7897,-7896,-7895,8938]],"properties":{"prefix":"1.5.1.2.4.2"}},{"type":"Polygon","arcs":[[12687,-10845,-7410,-7409,12688,-11913,12689,12690]],"properties":{"prefix":"8.2.1.5.3.4"}},{"type":"Polygon","arcs":[[12691,12692,977,-10848,5213,2122,7897,7898]],"properties":{"prefix":"4.4.4.4.5.1"}},{"type":"Polygon","arcs":[[12693,-10849,-10854,8336,8337,1182,1183,1184,12694]],"properties":{"prefix":"6.4.3.3.1.2"}},{"type":"Polygon","arcs":[[12695,-6547,-582,-581,-580,-579,-10135,-10134,12696]],"properties":{"prefix":"2.4.1.4.3.2"}},{"type":"Polygon","arcs":[[-10857,-10856,-7367,5966,-768,-767,-766,-10858]],"properties":{"prefix":"7.7.2.1.3.2"}},{"type":"Polygon","arcs":[[-9725,12697,12698,-12238,-12240,2543,2544,2545,2546]],"properties":{"prefix":"9.8.3.1.3.1"}},{"type":"Polygon","arcs":[[-4038,-10875,-12243,-12242]],"properties":{"prefix":"9.3.2.1.1.2"}},{"type":"Polygon","arcs":[[9179,9180,3274,3275,3276,3277,3278,3279,12699]],"properties":{"prefix":"6.3.1.1.5.1"}},{"type":"Polygon","arcs":[[-2400,-11438,-8520,-1847,-1846,-1845,-1844,88,89,-8152,-8151]],"properties":{"prefix":"5.2.1.2.5.2"}},{"type":"Polygon","arcs":[[-3302,-3301,7988,7989,7990,-5496,-5495,4284,4285,7991,7992,7993,12700]],"properties":{"prefix":"5.3.3.2.3.1"}},{"type":"Polygon","arcs":[[12701,7906,7907,7908,-6122,-7509,-7508,-7507,-7513,-3281,-3280,-3279,-6094,-6093,-6092,-6624,-6623,-6622,-6621,12702,12703]],"properties":{"prefix":"6.3.3.5.1.1"}},{"type":"Polygon","arcs":[[12704,8457,75,76,8458,12705,12706]],"properties":{"prefix":"4.4.4.2.2.2"}},{"type":"Polygon","arcs":[[-10908,-4504,-2277,-2276,-2275,-2274,-6468,-10910,-10909]],"properties":{"prefix":"1.8.3.4.4.2"}},{"type":"Polygon","arcs":[[12707,-8631]],"properties":{"prefix":"6.3.5.3.1.1"}},{"type":"Polygon","arcs":[[3793,3794,9072,9073,3800,12708]],"properties":{"prefix":"2.4.2.1.2.1"}},{"type":"Polygon","arcs":[[2382,12709,9972,9973,9974,-12273,-12274,5692,-1872,-1871]],"properties":{"prefix":"5.3.6.2.3.1"}},{"type":"Polygon","arcs":[[9554,5401,5402,5403,5404,12710,12711,12712,12713,412,12714]],"properties":{"prefix":"2.4.1.7.1.1"}},{"type":"Polygon","arcs":[[12715,162,-4752,-4756]],"properties":{"prefix":"6.4.1.1.1.1"}},{"type":"Polygon","arcs":[[10135,4735,2872,2873,2874,-9293,-9292,-9291,-9944,12716]],"properties":{"prefix":"9.1.3.1.2.1"}},{"type":"Polygon","arcs":[[-9366,-9365,12717,12718,-1946,-9367]],"properties":{"prefix":"7.1.1.3.1.1"}},{"type":"Polygon","arcs":[[203,-8922,-8921,-9145,-9144,-11951]],"properties":{"prefix":"7.6.2.4.1.4"}},{"type":"Polygon","arcs":[[12719,12720,4508,8941,8942,8943,8944,-1423,-1422,-1421,-1420,-1419,-1418,8945]],"properties":{"prefix":"1.8.3.5.1.1"}},{"type":"Polygon","arcs":[[6777,6778,6779,6780,12721,-10953,-10952,12722,6785,12723,-11489,-11488,-11487]],"properties":{"prefix":"7.6.3.2.1.2"}},{"type":"Polygon","arcs":[[-10955,-10954,-7379,12724]],"properties":{"prefix":"4.3.2.3.2.3"}},{"type":"Polygon","arcs":[[-10789,3505,3506,3507,-8746,-8745,-8744,-8743,12725,-10791,-10790]],"properties":{"prefix":"6.3.5.5.5.2"}},{"type":"Polygon","arcs":[[-4798,6624,6625,2297,-10961,-10960,2309,2310,9170,12726,12727]],"properties":{"prefix":"2.3.3.6.5.1"}},{"type":"Polygon","arcs":[[-6216,-8015,9185,9186,-8405,12728]],"properties":{"prefix":"8.1.6.6.5.2"}},{"type":"Polygon","arcs":[[-12060,254,-6940,-7125]],"properties":{"prefix":"8.1.5.3.3.4"}},{"type":"Polygon","arcs":[[9065,9066,-6422,-6421,-11380,-12354,-12353,12729]],"properties":{"prefix":"2.3.1.2.2.1"}},{"type":"Polygon","arcs":[[4626,4627,4628,4629,4630,-10846,-12688,-12691,-12690,-11912,4625]],"properties":{"prefix":"8.2.1.5.3.3"}},{"type":"Polygon","arcs":[[-9052,12730,-7685,-7684,-3240,-9053]],"properties":{"prefix":"9.4.1.1.4.1"}},{"type":"Polygon","arcs":[[-10977,-10976,-7234,-1547,-1546,-1545]],"properties":{"prefix":"4.4.3.4.1.3"}},{"type":"Polygon","arcs":[[-10978,-6003,-11498,9470,9471,9472,12731,-12300,-10979]],"properties":{"prefix":"2.6.2.1.3.3"}},{"type":"Polygon","arcs":[[-1214,12732,-7862,-7861,-10981,2605,-1217,-1216,-1215]],"properties":{"prefix":"7.2.1.4.3.1"}},{"type":"Polygon","arcs":[[10039,-3925,7034,-1840,12733]],"properties":{"prefix":"9.3.6.1.2.3"}},{"type":"Polygon","arcs":[[-1073,-1072,-10984,-10983,-10982,5867,5868,5869,7371,7372,12734,-1074]],"properties":{"prefix":"6.2.1.4.2.1"}},{"type":"Polygon","arcs":[[2704,8217,12735,12736,12737,12738,12739,8214,8215,8216,5538,370,371,372,373,2703]],"properties":{"prefix":"2.6.5.1.3.3"}},{"type":"Polygon","arcs":[[-1702,-1701,-1700,-1699,-1698,5542,9105,9106,9107,12740]],"properties":{"prefix":"2.3.3.2.2.1"}},{"type":"Polygon","arcs":[[84,4589,4590,8225,8226,12741,12742]],"properties":{"prefix":"5.1.3.2.5.4"}},{"type":"Polygon","arcs":[[4973,4974,12743]],"properties":{"prefix":"7.2.4.3.4.3"}},{"type":"Polygon","arcs":[[320,321,650,12744,12745,-12321,12746]],"properties":{"prefix":"8.5.2.3.3.1"}},{"type":"Polygon","arcs":[[12747,12748,-5513]],"properties":{"prefix":"8.3.1.1.1.3"}},{"type":"Polygon","arcs":[[5943,8167,8168,12749,12750,12751,12752,12753]],"properties":{"prefix":"7.1.1.1.2.2"}},{"type":"Polygon","arcs":[[3011,3012,9828,12754]],"properties":{"prefix":"5.3.2.3.1.1"}},{"type":"Polygon","arcs":[[-7081,-7080,-7079,-11529,-11528,757,758,759,12755,-7082]],"properties":{"prefix":"8.1.3.3.1.1"}},{"type":"Polygon","arcs":[[12756,10433,478,12757,-11012,4535,4536,4537]],"properties":{"prefix":"1.9.3.2.4.1"}},{"type":"Polygon","arcs":[[12758,12759,-2869,-2868,4245,4246,4247,4248,4249,10182,12760]],"properties":{"prefix":"7.4.2.1.2.1"}},{"type":"Polygon","arcs":[[12761,-1144,-1143,-1142,-4931,-4954,-4953]],"properties":{"prefix":"7.5.3.2.3.4"}},{"type":"Polygon","arcs":[[-12350,7790,-6410,-7346,-7345,-7344,7791,7792,7793]],"properties":{"prefix":"1.3.1.4.1.4"}},{"type":"Polygon","arcs":[[-6208,12762,-11762,-11761]],"properties":{"prefix":"8.1.6.3.2.1"}},{"type":"Polygon","arcs":[[12763,12764,-7728,12765,8801,8802,8803,12766,12767]],"properties":{"prefix":"8.5.2.2.2.2"}},{"type":"Polygon","arcs":[[7812,7813,7814,-2375,-2374,-11547,-11546]],"properties":{"prefix":"4.3.2.3.1.6"}},{"type":"Polygon","arcs":[[-4728,3642,3643,3644,-3503,2137,2138,2139,2140,2141,12768]],"properties":{"prefix":"6.3.7.4.2.1"}},{"type":"Polygon","arcs":[[12769,-11557,-11556,-520,-519,-518,-517,-5088,12770]],"properties":{"prefix":"2.2.2.3.1.1"}},{"type":"Polygon","arcs":[[12771,-8575,9211,9212,9213,-1062,-1061,-1060,-1059,-1058,-1057,12772]],"properties":{"prefix":"7.4.6.4.4.3"}},{"type":"Polygon","arcs":[[-1579,-12430,3251,12773,10139,7015]],"properties":{"prefix":"9.4.2.5.2.1"}},{"type":"Polygon","arcs":[[12774,7878,7879,855,856,857,3327,3328,3329]],"properties":{"prefix":"3.4.5.1.4.2"}},{"type":"Polygon","arcs":[[12775,-1316,3065,3066,3067,3068,-5156,-5155,-5154,-5153]],"properties":{"prefix":"7.4.7.3.4.1"}},{"type":"Polygon","arcs":[[12776,1699,12777,1724,1725,1726,1727,9392,12778,12779]],"properties":{"prefix":"2.1.2.4.1.2"}},{"type":"Polygon","arcs":[[12780,-4385,-11562,-11561,10223]],"properties":{"prefix":"1.7.3.2.1.1"}},{"type":"Polygon","arcs":[[-11482,12781,197,198,-11953,9037,9038,-5633,-5636,-4923]],"properties":{"prefix":"7.6.2.1.1.4"}},{"type":"Polygon","arcs":[[-5802,8990,12782,-11564]],"properties":{"prefix":"7.5.6.2.3.2"}},{"type":"Polygon","arcs":[[12783,3580,3581,-4495,-4494,-4493,-4492,-8674,-4501,-7579,-7578,12784,12785]],"properties":{"prefix":"7.6.4.1.3.2"}},{"type":"Polygon","arcs":[[1697,1698,-12777,-12780,-12779,9393,12786,1696]],"properties":{"prefix":"2.1.2.4.1.1"}},{"type":"Polygon","arcs":[[12787,-11425,-11424,-9752,-9755,7065,7066,-3211,-3210,-3209,12788]],"properties":{"prefix":"7.6.3.3.1.4"}},{"type":"Polygon","arcs":[[-6868,-6867,-6875,-6874,7357,7358,7359,7360]],"properties":{"prefix":"7.1.1.2.3.1"}},{"type":"Polygon","arcs":[[-3114,-3113,-3112,-4759,-4758,12789,12790,4310,4311,-3233,12791,-12393,-12392]],"properties":{"prefix":"9.4.5.1.3.3"}},{"type":"Polygon","arcs":[[766,12792,12793,12794,-11060]],"properties":{"prefix":"8.1.3.2.1.2"}},{"type":"Polygon","arcs":[[12795,-5033,-7660,-7659,-7658,-8044,-8043,-2911,-2844,-2843,-2842,-2841,-2840,-2839,7155,10197,12796]],"properties":{"prefix":"2.6.4.1.1.1"}},{"type":"Polygon","arcs":[[2305,2306,10145,-10010,12797]],"properties":{"prefix":"2.3.3.7.3.1"}},{"type":"Polygon","arcs":[[12798,4017,-7761,-7760,-7759]],"properties":{"prefix":"9.3.1.6.2.3"}},{"type":"Polygon","arcs":[[2806,12799,10358,4393,4394,12800,2802,2803,2804,2805]],"properties":{"prefix":"2.6.3.1.1.1"}},{"type":"Polygon","arcs":[[12801,-9645,-9644,10463,-11585,-11584,-11583,-2848,-2847,-2846]],"properties":{"prefix":"2.6.1.1.2.1"}},{"type":"Polygon","arcs":[[12802,7057,7058,7059,-6768,-6774,7865]],"properties":{"prefix":"4.3.4.1.1.1"}},{"type":"Polygon","arcs":[[12803,180,-3551,-3550,-3549,-3548,-3547,-9518,12804,12805,12806,12807,-9229,12808]],"properties":{"prefix":"6.4.3.3.5.2"}},{"type":"Polygon","arcs":[[-6866,12809,-8915,-6476]],"properties":{"prefix":"1.3.4.6.1.1"}},{"type":"Polygon","arcs":[[10203,-9061,10204,-1542,-1541,12810]],"properties":{"prefix":"4.4.3.1.1.3"}},{"type":"Polygon","arcs":[[6903,12811,12812,6902,3737]],"properties":{"prefix":"2.3.2.3.3.1"}},{"type":"Polygon","arcs":[[-10110,-10109,-8606,10256,12813]],"properties":{"prefix":"2.2.2.2.1.2"}},{"type":"Polygon","arcs":[[12814,-2897,-2896,2975,2976,-8410,-8413,-8412,10285,12815,12816,12817]],"properties":{"prefix":"2.5.1.1.1.3"}},{"type":"Polygon","arcs":[[-6406,-6405,-6404,-6403,-11607,-11606,580,12818,-7347]],"properties":{"prefix":"1.3.1.4.4.1"}},{"type":"Polygon","arcs":[[12819,12820]],"properties":{"prefix":"6.3.5.4.2.2"}},{"type":"Polygon","arcs":[[-6656,-11087,-1614,-1613,-1612,-5615,-6649,-6648,-6647,-6646,-12538,-12541,-12540,-12539]],"properties":{"prefix":"7.6.6.2.1.3"}},{"type":"Polygon","arcs":[[5613,5614,-1611,-1610,12821,12822,-12426,-1657,-959,12823]],"properties":{"prefix":"7.6.6.7.1.1"}},{"type":"Polygon","arcs":[[-2550,-2549,-2548,-2547,5949,5950,12824,12825,5948]],"properties":{"prefix":"9.8.2.3.2.1"}},{"type":"Polygon","arcs":[[12826,-7612,2499,9976,9977,12827,12828]],"properties":{"prefix":"7.2.3.2.2.4"}},{"type":"Polygon","arcs":[[-7724,-7734,5482,5483,9929,-8802,-8801,-8800,12829]],"properties":{"prefix":"8.5.2.2.3.2"}},{"type":"Polygon","arcs":[[3071,3072,-9345,12830]],"properties":{"prefix":"7.4.7.4.3.1"}},{"type":"Polygon","arcs":[[8065,8066,8067,1129,12831]],"properties":{"prefix":"5.1.1.1.1.1"}},{"type":"Polygon","arcs":[[12832,-981,-4599,-4598,-4597,-4596,-4595,5628,9691,9692,9693,9694,12833]],"properties":{"prefix":"5.1.3.1.2.1"}},{"type":"Polygon","arcs":[[-7727,8798,8799,8800,-12766]],"properties":{"prefix":"8.5.2.2.2.3"}},{"type":"Polygon","arcs":[[-6126,6618,-11121,-6109,-6128,-6127]],"properties":{"prefix":"6.3.3.3.1.5"}},{"type":"Polygon","arcs":[[-11937,231,232,8550,12834,12835]],"properties":{"prefix":"7.7.2.3.3.3"}},{"type":"Polygon","arcs":[[5274,5275,1789,-11134,12836]],"properties":{"prefix":"6.2.1.3.2.2"}},{"type":"Polygon","arcs":[[10379,-10513,5014,-668,12837]],"properties":{"prefix":"9.1.2.3.1.1"}},{"type":"Polygon","arcs":[[-11142,12838,12839,7575,3575,3576,7576,7577,7578,-4500,-4499,-4498,-4497]],"properties":{"prefix":"7.6.4.1.2.2"}},{"type":"Polygon","arcs":[[-6574,641,6942,6943,12840]],"properties":{"prefix":"8.1.5.2.4.2"}},{"type":"Polygon","arcs":[[-8009,-8018,-8017,9890,12841,12842]],"properties":{"prefix":"8.1.6.6.1.2"}},{"type":"Polygon","arcs":[[12843,1376,1377,1378,-3383,-3382,-3381,-3380,-3379,-3378,-3377,6734,6735,6736,6737,6738,6739,-5706,-5705,-5704,-5703,-5702,9181,9182,12844]],"properties":{"prefix":"1.3.2.4.4.2"}},{"type":"Polygon","arcs":[[4098,4099,4100,4,4876,4877,4878,-1985,-1984,-1983,-1447,-1446,-1445,-1444,-1443,9520,12845]],"properties":{"prefix":"1.1.2.1.5.1"}},{"type":"Polygon","arcs":[[-7298,-10520,592,593,594,12846]],"properties":{"prefix":"2.6.7.2.3.1"}},{"type":"Polygon","arcs":[[-10019,-638,-637,-636,-635,-3658,-4368,-4367,-4366,-4381,12847]],"properties":{"prefix":"7.8.1.6.3.1"}},{"type":"Polygon","arcs":[[7115,-1563,-1562,-5193,-5192,-6473,12848]],"properties":{"prefix":"9.4.4.1.1.1"}},{"type":"Polygon","arcs":[[12849,1667,1668,1669,-11148,-11147,12850]],"properties":{"prefix":"2.1.2.1.1.1"}},{"type":"Polygon","arcs":[[-10529,-11152,-3444,-3443,-2230,-2229,-10532,-10531,-10530]],"properties":{"prefix":"4.3.3.1.2.3"}},{"type":"Polygon","arcs":[[-9913,6501,6502,-2613,-7378,-8611,-8615,-8614,-8613,12851]],"properties":{"prefix":"9.8.2.2.3.2"}},{"type":"Polygon","arcs":[[12852,-10536,-9626]],"properties":{"prefix":"9.3.3.1.1.3"}},{"type":"Polygon","arcs":[[12853,-6019,8870,8871,8872,8873,-10542]],"properties":{"prefix":"1.5.1.1.2.4"}},{"type":"Polygon","arcs":[[-10544,-10543,106,107,7326,7327,7328,5650]],"properties":{"prefix":"5.3.2.1.4.2"}},{"type":"Polygon","arcs":[[-12621,-12620,-12619,343,-9083,-5933,-5932,-12151]],"properties":{"prefix":"9.8.6.1.1.4"}},{"type":"Polygon","arcs":[[-10548,8644,8645,8646,8647,-2719,-4252,-4251,-4250,-4249,-4248,-4247,-4246,-2867,-2866,-2865,12854,-10550,-10549]],"properties":{"prefix":"7.4.4.1.1.2"}},{"type":"Polygon","arcs":[[12855,-7516,-7515,-7514,-4826,6162,6163,6164,354,355]],"properties":{"prefix":"3.4.4.7.4.2"}},{"type":"Polygon","arcs":[[12856,-3939,-3938,-10559,4840]],"properties":{"prefix":"4.8.1.2.1.1"}},{"type":"Polygon","arcs":[[-10560,2576,12857]],"properties":{"prefix":"7.5.6.1.1.1"}},{"type":"Polygon","arcs":[[12858,6719,6720,6721,-10752,12859,-10755,-10754]],"properties":{"prefix":"1.3.2.2.1.1"}},{"type":"Polygon","arcs":[[-12489,-12488,-1242,-1241,-1240,12860,12861,9374]],"properties":{"prefix":"7.2.7.4.4.1"}},{"type":"Polygon","arcs":[[-4315,-2566,-2565,9439,12862]],"properties":{"prefix":"7.5.5.1.1.1"}},{"type":"Polygon","arcs":[[-11691,-11690,-11689,-11176,5338,5339,5340,-1195,-1194,-11692]],"properties":{"prefix":"7.1.1.4.4.2"}},{"type":"Polygon","arcs":[[-10576,-12491,4111,-5357,-5366,-8334]],"properties":{"prefix":"4.4.3.4.4.3"}},{"type":"Polygon","arcs":[[-11025,10376,-9004,1188,1189]],"properties":{"prefix":"6.4.3.1.1.4"}},{"type":"Polygon","arcs":[[-9188,5898,5899,5900,5901,-9192,12863]],"properties":{"prefix":"4.1.4.1.3.1"}},{"type":"Polygon","arcs":[[12864,-11574,12865,-2953,-2952,-2951,-8253,-8257,-8256,5006]],"properties":{"prefix":"9.1.2.3.2.4"}},{"type":"Polygon","arcs":[[12866,12867,2881,2882,9287,9288,9289,9290,12868]],"properties":{"prefix":"9.1.3.1.3.4"}},{"type":"Polygon","arcs":[[12869,-990,12870,3771,3772,3773,3774,3775,3776,3777,-7598,-9908,12871]],"properties":{"prefix":"5.1.1.4.4.1"}},{"type":"Polygon","arcs":[[-10592,3740,-9713,-9712,12872,-11208]],"properties":{"prefix":"2.3.2.2.3.2"}},{"type":"Polygon","arcs":[[-443,12873,12874,-444]],"properties":{"prefix":"4.2.1.1.4.1"}},{"type":"Polygon","arcs":[[8566,12875,-11456,-7073,8559,8560,8561,8562,8563,8564,8565]],"properties":{"prefix":"8.1.3.4.1.3"}},{"type":"Polygon","arcs":[[-11226,536,-11718]],"properties":{"prefix":"1.8.3.6.1.2"}},{"type":"Polygon","arcs":[[-4291,12876,7720,7102,7103,7721,-3034,-3033,-3032]],"properties":{"prefix":"5.3.5.1.1.2"}},{"type":"Polygon","arcs":[[-11728,8435,3753,12877]],"properties":{"prefix":"8.2.1.8.2.4"}},{"type":"Polygon","arcs":[[-1679,-1678,-1677,-1676,-9467,-9475,-9474,-9473,10415,10416,-11733,-11732,-11731]],"properties":{"prefix":"2.6.2.1.2.2"}},{"type":"Polygon","arcs":[[12878,-5403,-5402,-5401,-5400,9743,9744,9745,9746,12879]],"properties":{"prefix":"2.4.1.6.3.1"}},{"type":"Polygon","arcs":[[-4273,-4272,8406,8407,-10509,-11234]],"properties":{"prefix":"5.3.5.2.1.3"}},{"type":"Polygon","arcs":[[-4949,12880,8899,-4937,-4456,-4950]],"properties":{"prefix":"7.5.3.4.2.2"}},{"type":"Polygon","arcs":[[-11244,-3493,-3492,7761]],"properties":{"prefix":"6.3.4.1.2.3"}},{"type":"Polygon","arcs":[[12881,-10618,433,6189,6190]],"properties":{"prefix":"1.7.1.3.3.3"}},{"type":"Polygon","arcs":[[12882,12883,9033,-2787,-2531,-2530,-2529]],"properties":{"prefix":"9.8.4.1.1.1"}},{"type":"Polygon","arcs":[[101,102,-7326,-11745,-11744,-10070,-10069,-8516,-8515,12884,12885]],"properties":{"prefix":"5.3.2.1.3.1"}},{"type":"Polygon","arcs":[[299,-1926,9601,9602,9603,12886,298]],"properties":{"prefix":"8.4.2.2.2.1"}},{"type":"Polygon","arcs":[[12887,12888,8057,8058,-11750,-11249,-11248,6314,-11357,12889]],"properties":{"prefix":"9.1.5.3.1.3"}},{"type":"Polygon","arcs":[[-10628,-10627,-11251,5137,5138,5139,5140,-10629]],"properties":{"prefix":"3.4.2.3.1.2"}},{"type":"Polygon","arcs":[[7688,-10632,-10631,1835,1836,1837,7694,12890,12891,12892]],"properties":{"prefix":"9.4.1.1.1.3"}},{"type":"Polygon","arcs":[[-12083,-12082,-6113,-6112,3424,-9086,3430,3431,-1795,-1794,-12084]],"properties":{"prefix":"6.3.3.5.5.4"}},{"type":"Polygon","arcs":[[8690,8691,12893,1386,1387]],"properties":{"prefix":"1.3.3.6.3.1"}},{"type":"Polygon","arcs":[[12894,-3656,-3655,-3654,-3653,-3652,-10638,-10637,12895]],"properties":{"prefix":"7.8.1.7.1.1"}},{"type":"Polygon","arcs":[[-622,-621,-620,-619,7925,7926,7927,7928,12896,-623]],"properties":{"prefix":"7.8.4.1.1.1"}},{"type":"Polygon","arcs":[[12897,7144,2929,-10643,-10642,-1040,-11627]],"properties":{"prefix":"7.4.5.2.2.4"}},{"type":"Polygon","arcs":[[-10645,-1276,-1275,-1274,-1273,-1272,9171,9172,9173,-10646]],"properties":{"prefix":"7.2.4.2.2.3"}},{"type":"Polygon","arcs":[[10280,12898,-8101,-8100,12899,4773,4774]],"properties":{"prefix":"9.4.5.2.3.1"}},{"type":"Polygon","arcs":[[4119,4120,5357,5358,5359,5360,5361,-11272,-11271]],"properties":{"prefix":"4.4.3.6.1.5"}},{"type":"Polygon","arcs":[[12900,-6723,-6722,-6721,-6734,-6733,9575,-6743,-6742,-11285]],"properties":{"prefix":"1.3.2.3.1.3"}},{"type":"Polygon","arcs":[[8918,-7221,-8323,6575,-10660,-10659,6583,6584,12901]],"properties":{"prefix":"8.1.5.1.5.2"}},{"type":"Polygon","arcs":[[-7319,-12555,9584,9585,-7320]],"properties":{"prefix":"7.5.3.1.3.3"}},{"type":"Polygon","arcs":[[-10666,12902,12903,10474,12904]],"properties":{"prefix":"1.3.1.2.1.1"}},{"type":"Polygon","arcs":[[-10155,3600,-2438,-2437,-9813,-9812,-9811,-9810,12905,12906]],"properties":{"prefix":"3.4.1.1.3.1"}},{"type":"Polygon","arcs":[[9636,122,-11298,12907,-11796,12908]],"properties":{"prefix":"6.2.1.5.1.1"}},{"type":"Polygon","arcs":[[12909,-5602,2214,2215,12910,12911,12912,12913]],"properties":{"prefix":"4.1.6.1.1.3"}},{"type":"Polygon","arcs":[[12914,-2654,-10696,12915]],"properties":{"prefix":"2.6.6.3.5.2"}},{"type":"Polygon","arcs":[[12916,205,8922,-4882,-4881]],"properties":{"prefix":"7.6.2.4.3.3"}},{"type":"Polygon","arcs":[[-11312,-12586,-11810]],"properties":{"prefix":"1.7.3.1.1.2"}},{"type":"Polygon","arcs":[[-1117,-12279,-12283,12917,6306,6307,-1119,-1118]],"properties":{"prefix":"7.3.2.2.4.4"}},{"type":"Polygon","arcs":[[-12589,-9397,-9396,-9395,5968,10395,10396,12918,-12590]],"properties":{"prefix":"7.7.2.1.2.4"}},{"type":"Polygon","arcs":[[-4241,-4240,8031,8032,8033,12919]],"properties":{"prefix":"7.4.6.4.1.1"}},{"type":"Polygon","arcs":[[-2570,-2569,-2568,-12604,-12603,12920,-11326]],"properties":{"prefix":"7.5.3.6.3.2"}},{"type":"Polygon","arcs":[[5791,5792,5793,9533,9534,-10727,-10730,12921,12922]],"properties":{"prefix":"7.5.6.3.3.4"}},{"type":"Polygon","arcs":[[12923,-9846,3905,3906,3907,3908,3909,12924,12925,12926,-10735,-10734,-10739,-10738,-10737,968]],"properties":{"prefix":"9.3.5.1.2.2"}},{"type":"Polygon","arcs":[[-11332,-11331,9715,9716,9717,12927]],"properties":{"prefix":"6.3.5.1.2.1"}},{"type":"Polygon","arcs":[[12928,12929,10227,10228,-8110,-8109,-8108,-6536,-6535,-6534,12930]],"properties":{"prefix":"4.4.3.2.1.2"}},{"type":"Polygon","arcs":[[-10748,-11687,5831,5832,-10749]],"properties":{"prefix":"6.3.5.2.3.3"}},{"type":"Polygon","arcs":[[316,317,-8532,-8531,-8530,-8529,-8528,12931]],"properties":{"prefix":"8.5.2.3.1.2"}},{"type":"Polygon","arcs":[[845,-3327,-5594,-5593,-5597,6991,12932,12933]],"properties":{"prefix":"3.4.4.1.1.1"}},{"type":"Polygon","arcs":[[-11337,83,-12743,-12742,8227,-11338]],"properties":{"prefix":"5.1.3.2.5.3"}},{"type":"Polygon","arcs":[[-11348,-12639,-11850,1338,1339,-12169,-12168,-10769,-12641,-12640]],"properties":{"prefix":"7.3.3.2.3.5"}},{"type":"Polygon","arcs":[[-7176,-7608,-5520,-5519,-7177]],"properties":{"prefix":"1.9.2.3.2.1"}},{"type":"Polygon","arcs":[[-7308,1678,1679,1680,1681,1682,12934,12935,-7775,-7774,12936]],"properties":{"prefix":"2.1.2.1.5.1"}},{"type":"Polygon","arcs":[[7074,7075,7076,-10777,-11364]],"properties":{"prefix":"8.1.3.2.4.2"}},{"type":"Polygon","arcs":[[12937,-5215,-4410,-5230]],"properties":{"prefix":"4.4.4.3.2.2"}},{"type":"Polygon","arcs":[[-7189,-7188,-10794,-10793,-9294,-7190]],"properties":{"prefix":"9.3.4.5.2.3"}},{"type":"Polygon","arcs":[[4386,4387,4388,-11860,12938,-2445,-2444,-2166,-2165,-2164,-2163,-2162,4181,4182,4183,4184,12939]],"properties":{"prefix":"1.7.3.3.2.1"}},{"type":"Polygon","arcs":[[-11375,-11374,-8595,12940]],"properties":{"prefix":"1.1.2.2.2.5"}},{"type":"Polygon","arcs":[[8210,1162,12941,8207,1143,1144,8208,8209]],"properties":{"prefix":"6.4.4.1.5.1"}},{"type":"Polygon","arcs":[[12942,12943,-1269,-10814,-12653,-4982,5665,5666,5667,5668,-9176]],"properties":{"prefix":"7.2.4.2.3.1"}},{"type":"Polygon","arcs":[[6441,-1147,-1146,-1145,-12762,-4952,-5746,-11392,-11391]],"properties":{"prefix":"7.5.3.2.3.3"}},{"type":"Polygon","arcs":[[12944,-1294,-1293,-1292,-1291,-1290,-11393,-11397,2497,12945]],"properties":{"prefix":"7.2.3.2.3.1"}},{"type":"Polygon","arcs":[[12946,3715,3716,3717,3718,-2191,9709,9710,9711]],"properties":{"prefix":"2.3.2.2.1.1"}},{"type":"Polygon","arcs":[[7313,-1958,-1957,-1956,-1152,-1151,7314,-10824,7317,7318,7319,7320,7321,12947]],"properties":{"prefix":"7.5.3.1.2.1"}},{"type":"Polygon","arcs":[[8037,8038,8039,8040,-11890,-11889]],"properties":{"prefix":"7.4.4.3.1.2"}},{"type":"Polygon","arcs":[[4742,4743,4744,4745,4746,4747,9942,9943,-9290,12948,12949,-10825]],"properties":{"prefix":"9.1.3.1.5.4"}},{"type":"Polygon","arcs":[[4022,4023,4024,4025,4026,4027,-10711,-10710,-7625,-7624,-7623,4031,4032,4033,12950,12951,12952]],"properties":{"prefix":"9.3.1.6.3.4"}},{"type":"Polygon","arcs":[[-1133,-10828,-10831,12953,-3349,-3348,-11413,9081,1354,1355,1356,1357,1358,1359,1360,1361,1362,-1134]],"properties":{"prefix":"7.3.3.1.1.2"}},{"type":"Polygon","arcs":[[9699,12954,2150,-1806,-1805,2151,2152,9696,9697,9698]],"properties":{"prefix":"1.5.1.3.3.2"}},{"type":"Polygon","arcs":[[10319,10320,-12596,-12595,-11753,-11752]],"properties":{"prefix":"8.1.4.3.1.5"}},{"type":"Polygon","arcs":[[-5164,12955,-9897,-5165]],"properties":{"prefix":"3.4.2.4.2.1"}},{"type":"Polygon","arcs":[[-11919,-11918,335,336,3089,8431,3094,3095,3096,1486,-11921,-11920]],"properties":{"prefix":"9.1.7.3.1.4"}},{"type":"Polygon","arcs":[[1631,-10085,-10084,-11682,1630]],"properties":{"prefix":"7.7.1.2.2.4"}},{"type":"Polygon","arcs":[[12956,12957,12958,-4860,-4859,-10864,3985,3986,-1507,-1506,-1505,-1504,-1503,-1502,-1501,-1500,-4874,12959,12960]],"properties":{"prefix":"9.3.3.2.1.2"}},{"type":"Polygon","arcs":[[-10866,8143,-713,-712,-10867]],"properties":{"prefix":"9.3.4.1.2.2"}},{"type":"Polygon","arcs":[[12961,12962,220,3820,3821,3822]],"properties":{"prefix":"7.7.1.4.2.4"}},{"type":"Polygon","arcs":[[10442,-6163,-4825,-11925,-3334,-3333,-3332,-3331,-3330,-3329,-3328,858,12963,10441]],"properties":{"prefix":"3.4.4.8.1.1"}},{"type":"Polygon","arcs":[[12964,-8824,-10881,12965,12966,12967,12968]],"properties":{"prefix":"7.2.2.4.1.2"}},{"type":"Polygon","arcs":[[12969,-11435,-11434,-11433,-10888,-10887,-10886]],"properties":{"prefix":"2.6.3.1.3.2"}},{"type":"Polygon","arcs":[[-11929,-11932,-1345,-1344,-1343,7384,7385,12970]],"properties":{"prefix":"7.4.1.1.1.1"}},{"type":"Polygon","arcs":[[4404,-11442,73]],"properties":{"prefix":"4.4.4.1.3.2"}},{"type":"Polygon","arcs":[[-8072,-8078,12971]],"properties":{"prefix":"1.9.3.2.1.1"}},{"type":"Polygon","arcs":[[12972,-8647,-8646,-8962,-1351,-1350]],"properties":{"prefix":"7.4.4.1.2.1"}},{"type":"Polygon","arcs":[[-5683,-5682,-4994,-4993,-4992,-12077,12973,12974,12975,-682,12976]],"properties":{"prefix":"9.1.2.5.2.1"}},{"type":"Polygon","arcs":[[12977,-11454]],"properties":{"prefix":"4.8.3.3.1.2"}},{"type":"Polygon","arcs":[[-1963,-1962,-1961,-1960,-1959,-7314,-7313,-7324,-11791,12978]],"properties":{"prefix":"7.5.3.1.1.4"}},{"type":"Polygon","arcs":[[12979,-8770,-11462]],"properties":{"prefix":"6.2.1.6.1.6"}},{"type":"Polygon","arcs":[[12980]],"properties":{"prefix":"8.2.2.1.3.1"}},{"type":"Polygon","arcs":[[4668,4669,4670,-11948,12981,12982,4667]],"properties":{"prefix":"2.4.1.2.1.1"}},{"type":"Polygon","arcs":[[-12713,-12712,-12711,5405,5406,5407,9555,-11466,-11465,-11467,410,411,-12714]],"properties":{"prefix":"2.4.1.7.1.3"}},{"type":"Polygon","arcs":[[12983,9661,9662,9663,-792,3665,3666]],"properties":{"prefix":"7.8.2.1.2.1"}},{"type":"Polygon","arcs":[[117,118,1070,1071,12984,-7939,-7938,-10924]],"properties":{"prefix":"5.3.2.2.3.3"}},{"type":"Polygon","arcs":[[-7706,-7705,1467,1468,9838,9839,9840,9841,9842,1479,1480,-10932]],"properties":{"prefix":"9.1.8.1.2.3"}},{"type":"Polygon","arcs":[[10101,10102,-4560,-8673,-1936,-1199,-1198,-1197,-1196,-5341,12985]],"properties":{"prefix":"7.1.1.6.1.1"}},{"type":"Polygon","arcs":[[9416,9417,-6778,-6777,-10945,-10948,9424,12986]],"properties":{"prefix":"7.6.3.4.2.2"}},{"type":"Polygon","arcs":[[-5321,663,664,-7733,12987,12988]],"properties":{"prefix":"8.5.2.2.5.1"}},{"type":"Polygon","arcs":[[12989,7904,7905,-6398,-6397,-6396,-6395,-6394,-6393,-6392,1438]],"properties":{"prefix":"1.3.1.2.5.1"}},{"type":"Polygon","arcs":[[12990,1574,1575,4785,4786,12991,4792]],"properties":{"prefix":"9.8.3.3.3.2"}},{"type":"Polygon","arcs":[[12992,12993,2013,2014,-9554,-9553]],"properties":{"prefix":"8.1.6.7.2.2"}},{"type":"Polygon","arcs":[[12994,-11491,925,926,6663]],"properties":{"prefix":"9.6.1.1.2.1"}},{"type":"Polygon","arcs":[[-5182,3120,3121,-10962]],"properties":{"prefix":"9.4.4.3.3.3"}},{"type":"Polygon","arcs":[[-1299,-1298,-1297,-7613,-12827,-12829,12995]],"properties":{"prefix":"7.2.3.2.2.3"}},{"type":"Polygon","arcs":[[-11496,-11495,-11494,-10967]],"properties":{"prefix":"6.1.1.2.1.2"}},{"type":"Polygon","arcs":[[7186,7187,7188,7189,7190,7191,7192,7193,7194,7195,7196]],"properties":{"prefix":"9.3.4.5.3.1"}},{"type":"Polygon","arcs":[[12996,10402,-11978,-3182]],"properties":{"prefix":"7.5.3.6.1.1"}},{"type":"Polygon","arcs":[[12997,-10974,6532,6533,6534,6535,6536,10405,12998]],"properties":{"prefix":"4.4.3.4.1.1"}},{"type":"Polygon","arcs":[[12999,13000,8701,3357,3358,3359,-1128,-1127,-1126,13001]],"properties":{"prefix":"7.3.2.4.1.3"}},{"type":"Polygon","arcs":[[13002,9938,-8124,-9347,-3442,-3441]],"properties":{"prefix":"6.3.2.2.1.2"}},{"type":"Polygon","arcs":[[13003,7389,-11501]],"properties":{"prefix":"1.3.4.2.3.1"}},{"type":"Polygon","arcs":[[4860,4861,13004,4859]],"properties":{"prefix":"9.3.3.1.5.1"}},{"type":"Polygon","arcs":[[13005,-10991,-10990,-10989,4258,4259,-4589,-2925,9979]],"properties":{"prefix":"7.4.4.6.4.2"}},{"type":"Polygon","arcs":[[6488,-10996,-10995,-10994,13006,13007,1966,-5940,6486,6487]],"properties":{"prefix":"7.2.2.4.4.3"}},{"type":"Polygon","arcs":[[8767,8768,7163,2610,2611,2612,2613,2614,2615,1598,1599,13008]],"properties":{"prefix":"9.8.1.1.2.1"}},{"type":"Polygon","arcs":[[-12806,-12805,-9519,-8335,-7643,-7642,-7641,-9230,-12808,-12807]],"properties":{"prefix":"6.4.3.3.5.3"}},{"type":"Polygon","arcs":[[6247,6248,13009]],"properties":{"prefix":"6.3.4.1.3.2"}},{"type":"Polygon","arcs":[[5206,5207,5208,-7900,-7899,-7898,2123,13010,10444]],"properties":{"prefix":"4.4.4.4.4.1"}},{"type":"Polygon","arcs":[[5715,13011,8606,-12005,-12004,5714]],"properties":{"prefix":"4.1.3.2.2.1"}},{"type":"Polygon","arcs":[[13012,-4675,-4674,-4673,-4672,-4671,-4670,-11524,-11862,-2321,-2320,-2319,-2318,13013]],"properties":{"prefix":"2.4.1.3.1.2"}},{"type":"Polygon","arcs":[[13014,13015,13016,13017,425,2236,4101,8288]],"properties":{"prefix":"1.1.2.1.1.2"}},{"type":"Polygon","arcs":[[13018,-8721,9345,-7048,-7047,-7046]],"properties":{"prefix":"7.5.4.2.5.1"}},{"type":"Polygon","arcs":[[-9030,-2777,-2776,-2775,-2774,-2773,-2772,-9034,-9033,13019,13020]],"properties":{"prefix":"9.8.4.1.2.1"}},{"type":"Polygon","arcs":[[8164,4490,4491,4492,4493,4494,3582,-11213,-11896,-12676,-12675,-12677,-11897,-11211,-3458,13021]],"properties":{"prefix":"7.6.4.2.4.2"}},{"type":"Polygon","arcs":[[-11013,-12758,479,480,481,4533]],"properties":{"prefix":"1.9.3.2.4.3"}},{"type":"Polygon","arcs":[[8755,-1044,8756]],"properties":{"prefix":"7.4.5.2.3.1"}},{"type":"Polygon","arcs":[[35,-6023,-6022,-6021,-6020,-12854,-10541,-11541,-11540]],"properties":{"prefix":"1.5.1.1.2.3"}},{"type":"Polygon","arcs":[[6040,6041,13022,13023,-11544,-2372,-2371,-2370,6036,6037,6038,6039]],"properties":{"prefix":"4.3.2.3.1.4"}},{"type":"Polygon","arcs":[[-525,-11555,-11554,2195,2196,2197]],"properties":{"prefix":"2.2.2.3.1.3"}},{"type":"Polygon","arcs":[[62,7230,7231,13024,-11899]],"properties":{"prefix":"4.4.3.4.2.4"}},{"type":"Polygon","arcs":[[13025,13026,172,173,3840,13027]],"properties":{"prefix":"6.4.2.1.2.1"}},{"type":"Polygon","arcs":[[1917,1918,9284,13028]],"properties":{"prefix":"8.5.2.1.1.2"}},{"type":"Polygon","arcs":[[-8136,2455,5907,5908,5909,5910,-2272,-2271,13029,13030]],"properties":{"prefix":"1.8.3.1.7.1"}},{"type":"Polygon","arcs":[[9055,13031,169,13032,-8851,-8850]],"properties":{"prefix":"6.4.2.1.1.1"}},{"type":"Polygon","arcs":[[8201,8202,2385,2386,3307,8203,8204,8205]],"properties":{"prefix":"5.3.6.2.2.1"}},{"type":"Polygon","arcs":[[13033,8616,8617,2644,2645,2646,2647,4645,13034]],"properties":{"prefix":"1.7.2.1.1.1"}},{"type":"Polygon","arcs":[[13035,-11044,13036,7833]],"properties":{"prefix":"9.4.2.3.2.1"}},{"type":"Polygon","arcs":[[-9120,9391,1723,-12778,1700]],"properties":{"prefix":"2.1.2.4.1.3"}},{"type":"Polygon","arcs":[[-11352,-12642,13037,-4279,-4278,-4277,-5852,-5851,-5850,-5849,-5848,-5847,-5846,-7263,-7262,-3041,-3040]],"properties":{"prefix":"5.3.5.1.2.3"}},{"type":"Polygon","arcs":[[13038,-4769,-4768,-4767,-4766,10364,10365,10366,938,939,940,941,942,943,944,4300,4301,10367]],"properties":{"prefix":"9.4.5.3.1.1"}},{"type":"Polygon","arcs":[[7410,-11054,13039,13040,13041,4614,4615,4616,4617,4618,7403,7404,7405,7406,7407,7408,7409]],"properties":{"prefix":"8.2.1.5.1.3"}},{"type":"Polygon","arcs":[[7524,-12042,7523,5887]],"properties":{"prefix":"6.2.1.2.2.2"}},{"type":"Polygon","arcs":[[13042,9428,9429,5561,9430,9431,9432,9433,9434,9435,13043]],"properties":{"prefix":"2.3.3.2.4.2"}},{"type":"Polygon","arcs":[[-4636,-2039,13044,9618,5392,5393,13045,13046,-4637]],"properties":{"prefix":"8.2.1.4.2.1"}},{"type":"Polygon","arcs":[[3060,3061,-11577,-11578,3081,7574,13047,13048,13049,3059]],"properties":{"prefix":"7.4.7.3.2.2"}},{"type":"Polygon","arcs":[[-11579,-6715,1124,1125,1126,1127,1128,-8068,-11580]],"properties":{"prefix":"5.1.1.1.2.2"}},{"type":"Polygon","arcs":[[-9963,-9962,-9961,-9168,-9167,-9171,2311,2312,13050]],"properties":{"prefix":"2.3.3.6.4.1"}},{"type":"Polygon","arcs":[[9782,-5256,-5255,-3916,-3915,13051,-7754,13052]],"properties":{"prefix":"9.3.1.6.2.1"}},{"type":"Polygon","arcs":[[-1209,-1208,13053,-12397]],"properties":{"prefix":"7.2.1.4.2.1"}},{"type":"Polygon","arcs":[[-8441,13054,13055,601,602,2655,2656,-11145,-11144,-11143,6380,2649]],"properties":{"prefix":"2.6.7.1.1.3"}},{"type":"Polygon","arcs":[[13056,13057,13058]],"properties":{"prefix":"7.2.4.6.1.1"}},{"type":"Polygon","arcs":[[5730,13059,10263,5726,5727,5728,5729]],"properties":{"prefix":"9.3.4.4.4.1"}},{"type":"Polygon","arcs":[[-12068,2131,2132,13060,13061,9957,4403,-4116,-12069]],"properties":{"prefix":"4.4.4.1.1.1"}},{"type":"Polygon","arcs":[[13062,8379,8380,8381,13063,13064,13065]],"properties":{"prefix":"5.3.3.2.1.2"}},{"type":"Polygon","arcs":[[13066,13067,20,21,-11068,-11067,7768,-6483,-6482,-6481,-6480,6875,-3268,-3267,-3266,-3265,1408,1409,-6506,-6505,7769]],"properties":{"prefix":"1.3.4.3.1.1"}},{"type":"Polygon","arcs":[[13068,-6120,-6119,7509,7510]],"properties":{"prefix":"6.3.3.5.3.2"}},{"type":"Polygon","arcs":[[13069,8524,656,8525,8526,8527,8528,8529,8530,13070]],"properties":{"prefix":"8.5.2.3.2.1"}},{"type":"Polygon","arcs":[[1887,-2902,-2901,-2900,-2899,-2898,-12815,-12818,-12817,13071]],"properties":{"prefix":"2.5.1.1.1.1"}},{"type":"Polygon","arcs":[[-12532,1090,13072]],"properties":{"prefix":"5.3.6.3.9.1"}},{"type":"Polygon","arcs":[[-6737,9122,13073,13074,9121,-6735,-3376,-5708,-5707,-6740,-6739,-6738]],"properties":{"prefix":"1.3.2.5.2.1"}},{"type":"Polygon","arcs":[[-5591,13075,13076,-1616,-11086,-6654,-6653,7001]],"properties":{"prefix":"7.6.6.2.1.1"}},{"type":"Polygon","arcs":[[-11098,1822,1823,-8098,-8105,10184,10185,13077,-11101,-11100,-11099]],"properties":{"prefix":"9.4.5.2.1.2"}},{"type":"Polygon","arcs":[[-4615,-4614,-5396,-11621,-11624,13078,-12094,-12093]],"properties":{"prefix":"8.2.1.1.1.2"}},{"type":"Polygon","arcs":[[-11108,-11107,13079,13080,13081,6156,7911,7912,7913,7914,7915,-612,-611,-610,-609]],"properties":{"prefix":"3.4.4.7.1.3"}},{"type":"Polygon","arcs":[[-2481,-2480,-2479,-2478,-2477,-8619,-8624,-8623,-8622,-11629,-2482]],"properties":{"prefix":"7.2.2.6.1.2"}},{"type":"Polygon","arcs":[[13082,9386,9387,-7957,2368,2369,2370]],"properties":{"prefix":"4.2.2.1.3.1"}},{"type":"Polygon","arcs":[[-12105,6682,10189,13083]],"properties":{"prefix":"1.9.1.2.1.1"}},{"type":"Polygon","arcs":[[9348,9349,9350,9351,-9132,-9131,-9130,-9129,-9128,1988,1989,1990,1991,1992,13084]],"properties":{"prefix":"1.2.1.4.2.3"}},{"type":"Polygon","arcs":[[13085,13086,9731,5566,5567,5568,13087,13088,-11983]],"properties":{"prefix":"7.2.7.3.1.4"}},{"type":"Polygon","arcs":[[13089,9877,-6330,-492,-491,13090,13091,4082,4083,4084,4085,4086]],"properties":{"prefix":"2.1.1.3.1.1"}},{"type":"Polygon","arcs":[[-7668,-7667,-7666,-7670,13092,13093,6133]],"properties":{"prefix":"5.1.2.4.3.1"}},{"type":"Polygon","arcs":[[-11641,-11640,-12097,3638,3639,3640,-8695,10162,10163,10164,1196]],"properties":{"prefix":"6.3.7.3.1.3"}},{"type":"Polygon","arcs":[[3531,3532,3533,3534,3535,3536,6565,8129,8130,-6048,-6047,8131,13094,13095,13096]],"properties":{"prefix":"4.3.2.2.3.2"}},{"type":"Polygon","arcs":[[13097,9606,9607,-6842,-6841,-6840,-6839,9608,9609,9610,-6256,-6255,-6254,-6253,-6252,-6251]],"properties":{"prefix":"6.3.4.2.1.1"}},{"type":"Polygon","arcs":[[7364,7365,5960,5961,5962,5963,5964,13098]],"properties":{"prefix":"7.7.2.1.4.2"}},{"type":"Polygon","arcs":[[13099,13100,4477,-10678,-10677,-3363,-3362,-3361,-1113,-1112,-1111,-1110]],"properties":{"prefix":"7.3.1.4.1.3"}},{"type":"Polygon","arcs":[[1259,1260,1261,1262,1263,1264,13101,-10498,-10497,13102]],"properties":{"prefix":"7.3.1.1.1.1"}},{"type":"Polygon","arcs":[[-6368,-5813,13103,-10505,-10504,-10503,-10502,-5168,-5167,-3706,-3705,-4324,-4323,-3611,-3610,-3609,-3608,-3607,7166]],"properties":{"prefix":"3.4.2.6.1.2"}},{"type":"Polygon","arcs":[[-7029,-7028,-7027,-7026,-8992,-5016,-662,-661,-660,-659,-658,-657,-656,13104]],"properties":{"prefix":"9.1.2.2.2.1"}},{"type":"Polygon","arcs":[[4488,4489,-8165,-8164,-8163,-11139,-11138,-8161,-11653]],"properties":{"prefix":"7.6.4.2.3.2"}},{"type":"Polygon","arcs":[[-8051,-12109,-1631,-1630,-1629,-8672,-8671]],"properties":{"prefix":"7.6.3.1.4.2"}},{"type":"Polygon","arcs":[[-4021,-4020,-4019,-4018,-4017,13105,13106,13107,13108,9774,9775,-5729,13109]],"properties":{"prefix":"9.3.4.5.1.1"}},{"type":"Polygon","arcs":[[13110,10052,13111,13112,-12116,-12115,-12119,-6756,-6755,-6688,-6687,-6243,-6242,-6241,-6240,-6239,-6238,-6237]],"properties":{"prefix":"9.4.2.4.1.1"}},{"type":"Polygon","arcs":[[-11575,-12865,5007,5008,5009,5010,13113,13114,13115,-11576]],"properties":{"prefix":"9.1.2.3.2.3"}},{"type":"Polygon","arcs":[[-12888,-12890,-11356,-11355,-11354,-11353,13116,13117]],"properties":{"prefix":"9.1.5.3.1.1"}},{"type":"Polygon","arcs":[[8997,-11149,1672,1673,13118]],"properties":{"prefix":"2.1.2.1.1.3"}},{"type":"Polygon","arcs":[[-3449,-3448,-3447,-11151,-10527,-3532,-3531,-2094,-2093,-2092,-2091,-2090,-2089,-3451,-3450]],"properties":{"prefix":"4.3.3.1.2.5"}},{"type":"Polygon","arcs":[[13119,13120,13121,-706,-1519,-1518,-1517,-1516,-1515,8903]],"properties":{"prefix":"9.3.4.1.1.1"}},{"type":"Polygon","arcs":[[13122,3962,-10537,-12853,-9625,-1498,-1497,-1496,-1495,-1494,10387,13123]],"properties":{"prefix":"9.3.3.1.1.1"}},{"type":"Polygon","arcs":[[13124,-11469]],"properties":{"prefix":"7.2.1.3.1.1"}},{"type":"Polygon","arcs":[[-11672,2861,2862,2863,2864,13125,-11675,-11674,-11673]],"properties":{"prefix":"7.4.3.1.1.2"}},{"type":"Polygon","arcs":[[5790,-12923,-12922,-10729,13126]],"properties":{"prefix":"7.5.6.3.3.3"}},{"type":"Polygon","arcs":[[3728,3729,3730,3731,3732,3733,3734,3735,13127]],"properties":{"prefix":"2.3.2.5.2.1"}},{"type":"Polygon","arcs":[[95,-11160,-11159,13128]],"properties":{"prefix":"5.2.1.3.1.1"}},{"type":"Polygon","arcs":[[8952,8953,1424,1425,13129,13130]],"properties":{"prefix":"1.3.3.5.1.3"}},{"type":"Polygon","arcs":[[7207,7208,13131,-1711,-1710]],"properties":{"prefix":"2.3.2.3.2.1"}},{"type":"Polygon","arcs":[[6286,6287,6288,6289,10242,10243,13132,13133,13134]],"properties":{"prefix":"4.1.3.3.1.3"}},{"type":"Polygon","arcs":[[13135,-9312,-9311,3479,3480,3481,3482,3483,3484,571,572,-9315]],"properties":{"prefix":"1.3.1.4.5.1"}},{"type":"Polygon","arcs":[[8789,6388,6389,6390,-4472,-11174,-11173,-11172,-11171,-10568]],"properties":{"prefix":"7.3.1.3.2.2"}},{"type":"Polygon","arcs":[[1012,7653,13136,1010,1011]],"properties":{"prefix":"4.8.3.3.2.1"}},{"type":"Polygon","arcs":[[13137,4819,4820,4821,4822,-3324,4823,4824,4825,4826,4827,4828,4829]],"properties":{"prefix":"3.4.4.5.4.1"}},{"type":"Polygon","arcs":[[8718,-10574,3187,3188,13138]],"properties":{"prefix":"7.5.4.2.1.1"}},{"type":"Polygon","arcs":[[13139,7476,7477,848,7478,7479,3332]],"properties":{"prefix":"3.4.5.1.2.1"}},{"type":"Polygon","arcs":[[2034,-11703,-11702,13140,8293,8294,-12177,13141,2032,2033]],"properties":{"prefix":"8.1.5.5.5.3"}},{"type":"Polygon","arcs":[[10362,13142,10361,827,5324,5325,3702,3703,3704,5326]],"properties":{"prefix":"3.4.3.1.1.1"}},{"type":"Polygon","arcs":[[-11192,-4699,-4698,-4697,-8389]],"properties":{"prefix":"9.1.7.1.1.2"}},{"type":"Polygon","arcs":[[-12183,13143,-10797,-11714,-4685,-4684,-4683]],"properties":{"prefix":"2.4.1.1.1.2"}},{"type":"Polygon","arcs":[[-11201,3573,3574,-7576,-7581,-7580,-937,-936,-935,13144,13145,-11203,-11202]],"properties":{"prefix":"7.6.4.1.1.5"}},{"type":"Polygon","arcs":[[2878,2879,2880,-12868,-12867,13146,13147]],"properties":{"prefix":"9.1.3.1.3.2"}},{"type":"Polygon","arcs":[[-988,3765,3766,3767,3768,3769,3770,-12871,-989]],"properties":{"prefix":"5.1.1.4.4.3"}},{"type":"Polygon","arcs":[[4002,4003,2002,4004,4005,4006,-12190,-12189,-12188,798,799,13148]],"properties":{"prefix":"8.1.2.2.1.1"}},{"type":"Polygon","arcs":[[-442,-441,-440,-439,-2471,-2470,-12193,-12195,13149,13150,13151,-12874]],"properties":{"prefix":"4.2.1.1.4.3"}},{"type":"Polygon","arcs":[[201,-5626,-5625,-5635,-5634,-9039,13152,13153]],"properties":{"prefix":"7.6.2.1.2.1"}},{"type":"Polygon","arcs":[[1612,9098,9099,9100,9101,-747,-970,-969,-968,-967,9102,13154,13155]],"properties":{"prefix":"7.7.1.1.1.1"}},{"type":"Polygon","arcs":[[-10597,13156,13157]],"properties":{"prefix":"8.1.5.2.1.1"}},{"type":"Polygon","arcs":[[4030,7622,7623,7624,7625,13158]],"properties":{"prefix":"9.3.1.6.4.2"}},{"type":"Polygon","arcs":[[-12212,-12211,-12210,5437,-11727,-11729,-12878,3754,3755,3756,-12213]],"properties":{"prefix":"8.2.1.8.2.2"}},{"type":"Polygon","arcs":[[2753,2754,2755,2756,2757,-10607]],"properties":{"prefix":"4.1.5.5.1.4"}},{"type":"Polygon","arcs":[[-12669,-12668,-12667,5350,-2702,-2701,-2700,-2699,13159]],"properties":{"prefix":"2.6.6.1.2.4"}},{"type":"Polygon","arcs":[[13160,-5332,-5331,-5330,13161,13162,10401,-9362,13163]],"properties":{"prefix":"7.1.1.3.4.1"}},{"type":"Polygon","arcs":[[5550,10308,-9429,-9437,-9436,-12218,5548,5549]],"properties":{"prefix":"2.3.3.2.3.2"}},{"type":"Polygon","arcs":[[-3269,137,-4544,8679,8680,8681,-10614,5313,5314,8683,13164]],"properties":{"prefix":"6.3.2.1.1.1"}},{"type":"Polygon","arcs":[[-7292,-6899,7413,13165]],"properties":{"prefix":"2.3.2.5.1.1"}},{"type":"Polygon","arcs":[[8726,6055,6056,6057,3891,3892,8727,8728,13166]],"properties":{"prefix":"7.5.2.1.4.2"}},{"type":"Polygon","arcs":[[13167,1312,1313,1314,1315,1316,-11757,-7569,-7568,-7567]],"properties":{"prefix":"7.3.3.2.4.1"}},{"type":"Polygon","arcs":[[-11260,-4375,-4374,10020,13168,-11258]],"properties":{"prefix":"7.8.1.6.2.1"}},{"type":"Polygon","arcs":[[-12228,7805,6294,6295,-11764,1058,6298,-12230,-12229]],"properties":{"prefix":"4.1.3.3.4.2"}},{"type":"Polygon","arcs":[[5944,-1175,13169,-8168]],"properties":{"prefix":"7.1.1.1.3.1"}},{"type":"Polygon","arcs":[[-10058,-10057,4933,4934,4935,-4451,-4457,4936,4937,4938,4939,4940,13170]],"properties":{"prefix":"7.5.3.3.5.1"}},{"type":"Polygon","arcs":[[-4910,13171,-4901,-4900,-4899,-8599,-8598,-8597,-8601,-8600,4157,4158,7147]],"properties":{"prefix":"8.1.6.2.1.2"}},{"type":"Polygon","arcs":[[-12706,8459,5225,5226,5227,13172,-12707]],"properties":{"prefix":"4.4.4.2.2.3"}},{"type":"Polygon","arcs":[[-11280,13173,6407]],"properties":{"prefix":"1.3.1.3.2.1"}},{"type":"Polygon","arcs":[[-2356,-2355,13174,13175,10484,-10676,-2360,-2359,-2358,-2357]],"properties":{"prefix":"4.3.1.4.1.1"}},{"type":"Polygon","arcs":[[-11297,124,-11798,-11797,-12908]],"properties":{"prefix":"6.2.1.5.1.3"}},{"type":"Polygon","arcs":[[13176,853,854,-7880,-7879,-7878,-7877,13177]],"properties":{"prefix":"3.4.5.1.3.3"}},{"type":"Polygon","arcs":[[6451,-11300,-12583,-12582,-12581,-851,6446,6447,6448,6449,6450]],"properties":{"prefix":"4.1.2.1.1.5"}},{"type":"Polygon","arcs":[[-5305,-5304,4204,-12271]],"properties":{"prefix":"8.1.4.4.3.7"}},{"type":"Polygon","arcs":[[2217,13178,-2754,-2753,-2752,-2751,-2750,-2749,-2748,-5603,-12910,-12914,-12913,-12912,-12911,2216]],"properties":{"prefix":"4.1.6.1.1.1"}},{"type":"Polygon","arcs":[[-9499,-9498,-9497,5803,770,771,772,773,13179]],"properties":{"prefix":"8.1.3.1.4.1"}},{"type":"Polygon","arcs":[[13180,5897,9187,9188]],"properties":{"prefix":"4.1.4.1.2.1"}},{"type":"Polygon","arcs":[[13181,-2874,-2873,-2872,4988,4989,8253,-11319,-11318,5005,8255,13182]],"properties":{"prefix":"9.1.2.3.3.2"}},{"type":"Polygon","arcs":[[-11813,-11815,13183,348]],"properties":{"prefix":"9.8.6.4.2.1"}},{"type":"Polygon","arcs":[[8656,-2244,-2243,-2242,-2241,-2240,-1893,8657,8658,13184]],"properties":{"prefix":"2.3.3.4.5.1"}},{"type":"Polygon","arcs":[[9162,-11324,-11323,13185]],"properties":{"prefix":"7.7.1.2.1.2"}},{"type":"Polygon","arcs":[[8187,8188,8189,-4722,-913,13186,-6593]],"properties":{"prefix":"7.4.8.3.2.1"}},{"type":"Polygon","arcs":[[-10078,-10077,-10076,6173,6174,6175,6176,-3776,-3775,13187]],"properties":{"prefix":"5.1.2.2.2.1"}},{"type":"Polygon","arcs":[[-12293,3084,13188]],"properties":{"prefix":"7.4.7.3.1.1"}},{"type":"Polygon","arcs":[[-644,-643,-642,-641,-10018,-10024,-10023,-12145]],"properties":{"prefix":"7.8.1.6.1.4"}},{"type":"Polygon","arcs":[[13189,8080,-5581,-5580,-5579,-5578,-5577,-5576,-11330,13190]],"properties":{"prefix":"3.4.4.2.5.1"}},{"type":"Polygon","arcs":[[6895,-3990,-3989,-3931,-3945,-3944,-3943,13191]],"properties":{"prefix":"4.8.2.4.2.2"}},{"type":"Polygon","arcs":[[6514,6515,6516,-5376,-5375,6517,8695,-8375,-8374,-8373,-8372,13192]],"properties":{"prefix":"7.4.4.2.1.3"}},{"type":"Polygon","arcs":[[-12925,3910,5856,-9863,-11833,13193,13194,963,964,-10736,-12927,-12926]],"properties":{"prefix":"9.3.5.1.2.4"}},{"type":"Polygon","arcs":[[13195,1568,-2524,-2523,-2522,-2521,-2520,-2519,-2556,-2555]],"properties":{"prefix":"9.8.2.4.1.1"}},{"type":"Polygon","arcs":[[-7779,500,501,502,503,-2199,505,506,3812,13196,13197]],"properties":{"prefix":"1.9.3.3.3.3"}},{"type":"Polygon","arcs":[[-3489,9068,9069,1227,1228,1229,1230,1231,-11169,-11168]],"properties":{"prefix":"6.3.4.3.1.2"}},{"type":"Polygon","arcs":[[-12308,-12307,7253,-2516]],"properties":{"prefix":"7.2.4.5.1.2"}},{"type":"Polygon","arcs":[[13198,3342,3343,3344,3345,3346,3347,3348,3349,3350,3351,3352,3353,13199]],"properties":{"prefix":"7.3.2.4.3.2"}},{"type":"Polygon","arcs":[[8320,-3025,13200,-3008,-3007,-6067,-6066,-6065,8316,8317,8318,8319]],"properties":{"prefix":"5.3.3.1.1.1"}},{"type":"Polygon","arcs":[[-5166,9896,9897,-11853,-3688]],"properties":{"prefix":"3.4.2.4.1.2"}},{"type":"Polygon","arcs":[[1683,1684,4458,4459,4460,4461,-7772,-12936,-12935]],"properties":{"prefix":"2.1.2.1.5.3"}},{"type":"Polygon","arcs":[[-4744,-4743,-4742,-10017,13201]],"properties":{"prefix":"9.1.3.2.1.1"}},{"type":"Polygon","arcs":[[-11360,-11359,-5768,-5837,-5836,-5835,-5834,-5833,-5832,-5831,8628,13202,-11361]],"properties":{"prefix":"6.3.5.3.2.3"}},{"type":"Polygon","arcs":[[-12324,2413,7738,13203]],"properties":{"prefix":"5.3.1.1.2.1"}},{"type":"Polygon","arcs":[[2067,-11854,-7748,-11369,-11368]],"properties":{"prefix":"7.6.1.3.2.2"}},{"type":"Polygon","arcs":[[2209,2210,-10783,13204,-2744,-2743,-2742,-4848,2206,2207,2208]],"properties":{"prefix":"4.1.6.3.2.2"}},{"type":"Polygon","arcs":[[13205,-11371]],"properties":{"prefix":"7.5.3.1.4.2"}},{"type":"Polygon","arcs":[[-2447,-2446,-12939,-11861,4390,4391,-2450,-2449,-2448]],"properties":{"prefix":"1.7.3.3.2.3"}},{"type":"Polygon","arcs":[[-1646,-1645,-1644,-1643,9338,9339,13206,13207,-12330,-12329,13208,13209]],"properties":{"prefix":"7.8.1.1.1.1"}},{"type":"Polygon","arcs":[[-11991,5580,5581,5582,5583,5584,5585,-4815,-4814,-4813,-4812,-4811,-4810]],"properties":{"prefix":"3.4.4.4.1.2"}},{"type":"Polygon","arcs":[[8147,-11864,13210,91,8146]],"properties":{"prefix":"5.2.1.2.6.3"}},{"type":"Polygon","arcs":[[-11597,6052,6053,6054,-8727,-8726,9476,9477,9478,9479,9480,-11598]],"properties":{"prefix":"7.5.2.1.2.7"}},{"type":"Polygon","arcs":[[13211,13212,8301,8302,8303,8304,8305,-11868,-11867,8308,4168,4169,4170,4171,4172,4173,4174,4175,8309]],"properties":{"prefix":"8.2.3.1.1.1"}},{"type":"Polygon","arcs":[[13213,-496,-11871]],"properties":{"prefix":"2.1.1.2.1.1"}},{"type":"Polygon","arcs":[[-12336,13214,4761,4762,4763,4764,4765,8098,8099,8100,8101,8102,-12337]],"properties":{"prefix":"9.4.5.2.2.1"}},{"type":"Polygon","arcs":[[9453,9454,-6910,718,719,-2050,13215,13216]],"properties":{"prefix":"8.2.1.6.4.3"}},{"type":"Polygon","arcs":[[9658,13217,932,-12346,13218]],"properties":{"prefix":"9.5.1.1.1.2"}},{"type":"Polygon","arcs":[[13219,9216,9217,9218,9219,-11390,-5744,-5743,-3179,-3178,-3177]],"properties":{"prefix":"7.5.3.2.3.1"}},{"type":"Polygon","arcs":[[13220,-12347,1434,1435,-6416,-6415,7796,13221]],"properties":{"prefix":"1.3.1.4.1.1"}},{"type":"Polygon","arcs":[[-1288,-1287,-1286,-1285,-1284,2484,2485,2486,7613,2495,-11396,-11395,-11394]],"properties":{"prefix":"7.2.3.2.3.3"}},{"type":"Polygon","arcs":[[-11883,-2677,-2676,-4238,-4237,-11400,-11399,-11398,-2811,-11884]],"properties":{"prefix":"2.6.2.5.1.5"}},{"type":"Polygon","arcs":[[13222,7472,-5205,-12938,-5229,-5228]],"properties":{"prefix":"4.4.4.3.2.1"}},{"type":"Polygon","arcs":[[-11404,-11403,13223,-11894,8745,3508]],"properties":{"prefix":"6.3.5.5.2.2"}},{"type":"Polygon","arcs":[[-12680,-7852,-7851,331,332,-3108,-3107,-3106,-3105]],"properties":{"prefix":"9.1.6.1.4.2"}},{"type":"Polygon","arcs":[[-12362,-12361,-6448,9491,13224]],"properties":{"prefix":"4.1.2.2.1.1"}},{"type":"Polygon","arcs":[[13225,5061,1249,1250,1251]],"properties":{"prefix":"6.1.1.1.5.1"}},{"type":"Polygon","arcs":[[13226,-9468,-5386,-10419,-10418,-10417]],"properties":{"prefix":"2.6.2.1.4.1"}},{"type":"Polygon","arcs":[[-10840,13227,6012,-4665,-4664,-5429,-5428,-5412,-5411,-5410,-11415,-9748,-9747,-9746,9891,13228,13229]],"properties":{"prefix":"2.4.1.6.1.2"}},{"type":"Polygon","arcs":[[-466,-465,-464,-463,-462,-461,13230,5467,5468,5469,5470,5471,5472,13231,-9620]],"properties":{"prefix":"4.1.5.2.3.1"}},{"type":"Polygon","arcs":[[-6084,-6083,-12375]],"properties":{"prefix":"6.3.3.1.2.2"}},{"type":"Polygon","arcs":[[7959,5164,5165,-3687,-3686,-3685,5166,7960,7961,7962,13232]],"properties":{"prefix":"3.4.2.5.1.1"}},{"type":"Polygon","arcs":[[-11430,-6345,-6344,-6788,13233]],"properties":{"prefix":"7.6.3.3.1.1"}},{"type":"Polygon","arcs":[[-10878,-10877,-10876,-8820,-8819,-8833,-8832,-8831,-8830,-2593,-2592,-2591,6495,6496,6497,13234,13235,-12966,-10880,-10879]],"properties":{"prefix":"7.2.2.4.1.4"}},{"type":"Polygon","arcs":[[-11436,-12970,-10885,2823,4398,-11926]],"properties":{"prefix":"2.6.3.1.3.4"}},{"type":"Polygon","arcs":[[-12790,-4757,-4775,-4774,-4773,-5491,4306,4307,4308,4309,-12791]],"properties":{"prefix":"9.4.5.1.3.4"}},{"type":"Polygon","arcs":[[-11928,2157,2158,2159,13236,7890]],"properties":{"prefix":"1.5.1.2.2.1"}},{"type":"Polygon","arcs":[[-490,-489,584,1660,4080,4081,-13092,-13091]],"properties":{"prefix":"2.1.1.3.1.2"}},{"type":"Polygon","arcs":[[489,490,491,492,493,494,495,496,-10896,13237]],"properties":{"prefix":"1.9.3.3.2.1"}},{"type":"Polygon","arcs":[[13238,5369,5370,-9981,-9980,-2924,-2923,-2922]],"properties":{"prefix":"7.4.4.6.3.1"}},{"type":"Polygon","arcs":[[-8880,-11445,13239,13240,2178,3319]],"properties":{"prefix":"1.5.1.1.3.3"}},{"type":"Polygon","arcs":[[13241,-11941,-8971]],"properties":{"prefix":"2.3.3.4.2.4"}},{"type":"Polygon","arcs":[[-11448,2093,2094,2095,4602,4603]],"properties":{"prefix":"4.4.3.1.3.2"}},{"type":"Polygon","arcs":[[13242,-10289,2522,2523,1569,1570,1571,1572,1573,-12991,4793,4794,4795,2535]],"properties":{"prefix":"9.8.3.3.3.1"}},{"type":"Polygon","arcs":[[3677,3678,-12408,13243]],"properties":{"prefix":"1.9.1.3.2.1"}},{"type":"Polygon","arcs":[[-13106,-4016,-11614,9771,-7195,9772,9773,-13109,-13108,-13107]],"properties":{"prefix":"9.3.4.5.1.2"}},{"type":"Polygon","arcs":[[-11426,-12788,-12789,-3208,-6354,-6353,-6352,-6351,-6350,-11429,-11428,-11427]],"properties":{"prefix":"7.6.3.3.1.3"}},{"type":"Polygon","arcs":[[13244,-1708,-1707,-1706,-1705,3719,3720,6897,6898,6899,6900]],"properties":{"prefix":"2.3.2.3.3.4"}},{"type":"Polygon","arcs":[[-11806,-11072,-11071,-11070,6857,6858,-7450,-7449,-7448,-5673,-5672,-5671,-5670,-5669,-11807]],"properties":{"prefix":"7.2.4.4.3.4"}},{"type":"Polygon","arcs":[[1744,1745,13245,-11306,1743]],"properties":{"prefix":"2.1.2.1.4.1"}},{"type":"Polygon","arcs":[[-11605,-11604,-6401,3477,3478,9310,9311,9312,9313,9314,573]],"properties":{"prefix":"1.3.1.4.4.4"}},{"type":"Polygon","arcs":[[2018,13246,-12046,-10582,2017]],"properties":{"prefix":"8.1.6.7.1.3"}},{"type":"Polygon","arcs":[[-8533,13247,13248,-12982,-11947]],"properties":{"prefix":"2.4.1.2.1.3"}},{"type":"Polygon","arcs":[[113,114,-10927,-10926,13249]],"properties":{"prefix":"5.3.2.2.3.1"}},{"type":"Polygon","arcs":[[13250,-12423,-12422,-12421,13251,998,5988,5989,5990,7601,7602,7603,7604]],"properties":{"prefix":"4.8.3.2.4.2"}},{"type":"Polygon","arcs":[[13252,2947,-8363]],"properties":{"prefix":"9.1.5.1.1.1"}},{"type":"Polygon","arcs":[[-2147,-2146,13253,13254,13255]],"properties":{"prefix":"1.4.2.4.2.1"}},{"type":"Polygon","arcs":[[13256,-4695,-4694,-4693,-4692,-4704,3102,8389,8390,13257,13258]],"properties":{"prefix":"9.1.7.1.2.1"}},{"type":"Polygon","arcs":[[13259,13260,8652,-756,-755,6060,6061,8653]],"properties":{"prefix":"7.7.1.4.1.1"}},{"type":"Polygon","arcs":[[-10946,-3571,-3570,-3569,-3568,-3567,-3566,9418,9419,9420,9421,-10947]],"properties":{"prefix":"7.6.3.4.2.4"}},{"type":"Polygon","arcs":[[13261,13262,4887,4888,-11092,-11091,-2129,-2128,-2127,-2126]],"properties":{"prefix":"4.6.1.2.1.1"}},{"type":"Polygon","arcs":[[-4528,244,-10870,-10869,13263,13264]],"properties":{"prefix":"7.8.1.5.1.4"}},{"type":"Polygon","arcs":[[-5322,-12989,13265,312,-12431]],"properties":{"prefix":"8.5.2.2.5.3"}},{"type":"Polygon","arcs":[[-11967,-11970,-4447,-4446,-4445,-4444,-4443,4524,4525,8172,13266]],"properties":{"prefix":"7.8.1.4.1.1"}},{"type":"Polygon","arcs":[[13267,-10963,3123,3124]],"properties":{"prefix":"9.4.4.3.3.1"}},{"type":"Polygon","arcs":[[-12436,13268,13269,-2463,8471,8472,8473,8474,8475]],"properties":{"prefix":"4.2.1.1.5.2"}},{"type":"Polygon","arcs":[[7999,-7059,-7058,-7057,8000,8001,8002,8003,8004,1030,13270]],"properties":{"prefix":"4.3.4.6.2.1"}},{"type":"Polygon","arcs":[[-11980,-11979,-2063,-2062,-2061,-2060,-2059,-2058,-9054,-7584,-7583,-7590,-7589,-7588,-7587,-3185,-3184,-11981]],"properties":{"prefix":"7.5.3.6.1.3"}},{"type":"Polygon","arcs":[[-11668,-11667,13271,646,647,-12302,-8712,-8711,-7132,-7131,-7130,-7129,-11111,-11110]],"properties":{"prefix":"8.1.5.3.1.3"}},{"type":"Polygon","arcs":[[-1261,5564,9730,-13087,-13086,-11989,-11988]],"properties":{"prefix":"7.2.7.3.1.3"}},{"type":"Polygon","arcs":[[1964,1965,-13008,-13007,-10993,-10998,13272,13273]],"properties":{"prefix":"7.2.2.4.4.1"}},{"type":"Polygon","arcs":[[4050,4051,4052,4053,4054,4055,4056,4057,4058,-12002,13274,13275,4065,4066,7881,7882,7883,13276,-11504]],"properties":{"prefix":"2.2.1.7.3.2"}},{"type":"Polygon","arcs":[[-11002,-11001,-11000,2594,2595,-11908,-11907,-11508]],"properties":{"prefix":"7.2.1.5.2.3"}},{"type":"Polygon","arcs":[[13277,-7429,-7832,5068,5069]],"properties":{"prefix":"8.1.4.1.4.1"}},{"type":"Polygon","arcs":[[-12006,-829,-828,-827,-826,5709]],"properties":{"prefix":"4.1.3.2.2.3"}},{"type":"Polygon","arcs":[[-5235,8772,8773,8774,8775,13278]],"properties":{"prefix":"6.2.1.6.2.1"}},{"type":"Polygon","arcs":[[13279,13280,13281,8753,1046,1047,1048,1049,8754,13282,-11520]],"properties":{"prefix":"4.1.3.4.1.3"}},{"type":"Polygon","arcs":[[7258,7259,13283,13284,-4820,-4819,-4818,-4817,7255,7256,7257]],"properties":{"prefix":"3.4.4.2.1.1"}},{"type":"Polygon","arcs":[[9659,-2379,930,931,-13218]],"properties":{"prefix":"9.5.1.1.1.3"}},{"type":"Polygon","arcs":[[13285,-12015,2835,-6819]],"properties":{"prefix":"2.6.3.2.3.2"}},{"type":"Polygon","arcs":[[7659,-5045,-12467]],"properties":{"prefix":"2.6.4.1.4.2"}},{"type":"Polygon","arcs":[[-13018,-13017,13286,13287,8287,-1432,-1431,424]],"properties":{"prefix":"1.1.2.1.1.4"}},{"type":"Polygon","arcs":[[-4157,13288,-4151,-4159,-4158]],"properties":{"prefix":"8.1.5.5.5.8"}},{"type":"Polygon","arcs":[[1675,-7307,8993,8994,8995,8996,-13119,1674]],"properties":{"prefix":"2.1.2.1.1.4"}},{"type":"Polygon","arcs":[[4884,207,208,13289,13290,13291,-11531,13292]],"properties":{"prefix":"7.6.2.5.1.3"}},{"type":"Polygon","arcs":[[7423,13293,7417,-974,-973,-972,-11536,7421,7422]],"properties":{"prefix":"5.1.3.2.1.1"}},{"type":"Polygon","arcs":[[1181,-8338,13294,13295,-3554,-3553,-3552,1178,1179,1180]],"properties":{"prefix":"6.4.3.3.6.3"}},{"type":"Polygon","arcs":[[5677,13296,5663,5664,-2490,-2489,-11774,8192,8193,8194,5676]],"properties":{"prefix":"7.2.4.2.1.2"}},{"type":"Polygon","arcs":[[32,-11539,13297,13298,31]],"properties":{"prefix":"1.5.1.1.2.1"}},{"type":"Polygon","arcs":[[-3088,13299,-12020,-900]],"properties":{"prefix":"7.4.8.1.1.1"}},{"type":"Polygon","arcs":[[-9160,-7594,13300,340,-9161]],"properties":{"prefix":"9.4.2.3.4.2"}},{"type":"Polygon","arcs":[[-11026,9202,9203,-5211,983,9204,2114,2115,2116,2117]],"properties":{"prefix":"4.4.4.5.1.2"}},{"type":"Polygon","arcs":[[-11552,-11031,8423]],"properties":{"prefix":"7.2.7.4.2.2"}},{"type":"Polygon","arcs":[[-12023,13301,-1302,-1301,-1980,-1979,-1978,-9476,-9490]],"properties":{"prefix":"7.5.2.1.1.2"}},{"type":"Polygon","arcs":[[-7400,-4550,6500,9912,9913,9914,914,915,916,13302]],"properties":{"prefix":"9.8.2.2.2.1"}},{"type":"Polygon","arcs":[[3177,-11558,13303,7242,7243,7244,7245,-12028,-12027]],"properties":{"prefix":"7.5.4.2.3.2"}},{"type":"Polygon","arcs":[[3843,3844,-8848,-8855,-8854,13304,-13026,-13028,3841,3842]],"properties":{"prefix":"6.4.2.1.2.3"}},{"type":"Polygon","arcs":[[-9510,-10253,13305,13306,-9208,-4890,-4889,-9515,-12029,-9513,-9512,-9511]],"properties":{"prefix":"4.6.1.1.5.2"}},{"type":"Polygon","arcs":[[164,165,10147,10148,10149,10150,13307]],"properties":{"prefix":"6.4.1.2.1.1"}},{"type":"Polygon","arcs":[[8896,13308,13309,-3089,-1068,-1067,-1066,8895]],"properties":{"prefix":"7.4.6.4.6.3"}},{"type":"Polygon","arcs":[[435,436,-12497,-12496,13310]],"properties":{"prefix":"1.7.1.4.1.1"}},{"type":"Polygon","arcs":[[5269,5270,5271,5272,9156,9157,13311,-12499]],"properties":{"prefix":"6.2.1.3.1.2"}},{"type":"Polygon","arcs":[[-1673,-1672,-1671,-1670,8907,8908,8909,8910,13312,4229,4230]],"properties":{"prefix":"2.6.6.3.4.1"}},{"type":"Polygon","arcs":[[-2043,13313,4611,4612,4613,-13042,-13041,-13040,-11053,-11056,-11055]],"properties":{"prefix":"8.2.1.5.1.1"}},{"type":"Polygon","arcs":[[-4187,-4210,13314]],"properties":{"prefix":"8.1.3.4.3.2"}},{"type":"Polygon","arcs":[[13315,-6160,-6159,-6158,-6157,-6156,-11200,-11199,-8251,-8250]],"properties":{"prefix":"3.4.4.6.1.2"}},{"type":"Polygon","arcs":[[2073,2074,2075,-12510,-12509,-12508,-12507,-12506,3568,-11204,-13146,-13145,-934,-933,-932,2071,2072]],"properties":{"prefix":"7.6.4.1.1.2"}},{"type":"Polygon","arcs":[[13316,13317,-7986,-7985,-10033,1018,1019,1020,1021,5994,10165]],"properties":{"prefix":"4.8.3.2.1.2"}},{"type":"Polygon","arcs":[[-12054,-2082,1028,1029,-8005,-8004,-8003,-12055]],"properties":{"prefix":"4.3.4.6.3.3"}},{"type":"Polygon","arcs":[[-7181,4697,13318,4702,1496,13319]],"properties":{"prefix":"9.1.7.2.4.1"}},{"type":"Polygon","arcs":[[13320,13321,2345,-11220,-12482,-7701,-7700,-7699,-6677]],"properties":{"prefix":"1.9.1.3.1.1"}},{"type":"Polygon","arcs":[[-11061,-5531,-5530,6103,6104,6105,-8063,-8062,-8061,509]],"properties":{"prefix":"1.9.2.8.2.2"}},{"type":"Polygon","arcs":[[5787,5788,-9533,-9532,-9538,13322,-11586]],"properties":{"prefix":"7.5.6.3.2.3"}},{"type":"Polygon","arcs":[[6701,13323,-13059,13324]],"properties":{"prefix":"7.2.4.6.1.3"}},{"type":"Polygon","arcs":[[9332,9333,-12517,-12516,-12515]],"properties":{"prefix":"8.1.3.2.3.2"}},{"type":"Polygon","arcs":[[9762,9763,13325,13326,9761]],"properties":{"prefix":"7.5.6.3.1.2"}},{"type":"Polygon","arcs":[[68,-9793,-9792,-7342,-12067,-12066,-4110]],"properties":{"prefix":"4.4.4.1.1.3"}},{"type":"Polygon","arcs":[[3973,3974,3975,-12524,-12525,4867,7559,7560,7561,7562,13327]],"properties":{"prefix":"9.3.3.1.4.1"}},{"type":"Polygon","arcs":[[-6182,-12071,13328,-10524,-11592,-11591,-11590,-3808,-3807,-3806,-3805]],"properties":{"prefix":"2.4.4.2.4.2"}},{"type":"Polygon","arcs":[[10092,-5699,13329,6733,-6720,-6719,-11078,10091]],"properties":{"prefix":"1.3.2.4.1.1"}},{"type":"Polygon","arcs":[[13330,10131,6929,6930,6931,10132,10133,-11007]],"properties":{"prefix":"2.4.1.4.1.2"}},{"type":"Polygon","arcs":[[13331,-8275,-8274,-11082,-11081,-11080,-11079]],"properties":{"prefix":"4.1.2.4.2.1"}},{"type":"Polygon","arcs":[[-12265,-12264,4553,920,921,1591,1592,1593,1594,-12266]],"properties":{"prefix":"9.8.2.1.1.3"}},{"type":"Polygon","arcs":[[3461,13332,6648,-5614,-5613,-5612,6649,6650,3459,3460]],"properties":{"prefix":"7.6.6.3.2.1"}},{"type":"Polygon","arcs":[[-12537,-12536,10111,-4057,-4056,-4055,5083,5084,5085]],"properties":{"prefix":"2.2.2.2.3.2"}},{"type":"Polygon","arcs":[[13333,-12739,-12738,-12737,-12736,8218,13334]],"properties":{"prefix":"2.6.5.1.3.2"}},{"type":"Polygon","arcs":[[13335,10414,2060,2061,2062,2063,2064,13336,-7945,-7944,-5454]],"properties":{"prefix":"7.6.1.3.1.1"}},{"type":"Polygon","arcs":[[-8986,13337,13338,-8983,-2858,-11088,5019,5020,5021,10314,10315,-10043,-8987]],"properties":{"prefix":"7.4.6.2.4.1"}},{"type":"Polygon","arcs":[[-8171,-1167,-1166,-1165,13339]],"properties":{"prefix":"7.1.1.1.1.2"}},{"type":"Polygon","arcs":[[-11093,-11097,13340,-5441,-5440,710,711,712,713,714,715,716,8244,13341,-11094]],"properties":{"prefix":"8.2.1.7.2.2"}},{"type":"Polygon","arcs":[[-11616,11,12,-1982,-1981,5617,-1998,-1997,-1996,-11619,-11618,-11617]],"properties":{"prefix":"1.1.2.2.3.2"}},{"type":"Polygon","arcs":[[-12545,-12544,8089,8090,-2879,-2878,-2949,-2948,-2947,-2946,-2945]],"properties":{"prefix":"9.1.4.1.2.2"}},{"type":"Polygon","arcs":[[-13081,-13080,-11106,-605,-604,-603,13342,13343]],"properties":{"prefix":"3.4.4.7.1.1"}},{"type":"Polygon","arcs":[[-11625,-1036,-1035,2918,2919,13344]],"properties":{"prefix":"7.4.5.2.2.1"}},{"type":"Polygon","arcs":[[3372,3373,-6957,-6956,-11635,-11634,-11633,-6953,13345,3371]],"properties":{"prefix":"1.3.3.4.1.2"}},{"type":"Polygon","arcs":[[13346,13347,-3712,-3711,-11637,6431,6432,4333,4334,6433,-11118]],"properties":{"prefix":"2.3.1.1.1.2"}},{"type":"Polygon","arcs":[[8072,8073,8074,8075,4539,3816,3817,3818,4540,13348,8071]],"properties":{"prefix":"1.9.3.2.2.1"}},{"type":"Polygon","arcs":[[13349,-12559]],"properties":{"prefix":"6.3.3.3.1.1"}},{"type":"Polygon","arcs":[[-11126,-11125,-11124,-11123,-11122,13350,64,8330,8331,8332,8333,-5365,-5364,-5363,-5362,-5361,-7233,-7232,13351]],"properties":{"prefix":"4.4.3.4.3.2"}},{"type":"Polygon","arcs":[[13352,3847,3848,3849,-11644,-11646,-11645,8850,8851,8852,8853,8854]],"properties":{"prefix":"6.4.2.1.3.1"}},{"type":"Polygon","arcs":[[13353,-9236,-6519,-6518,-5374,-6908,-6907,-5378,-1033,-1032,-1031,-1030,-1029,-1028,-8269,-8268,-8267,13354]],"properties":{"prefix":"7.4.4.4.4.1"}},{"type":"Polygon","arcs":[[-5776,13355,10192,10193,153,-8748,-8747,3513,3514]],"properties":{"prefix":"6.3.5.5.1.1"}},{"type":"Polygon","arcs":[[4475,4476,-13101,-13100,-1109,-1108,-1107,13356,13357]],"properties":{"prefix":"7.3.1.4.1.1"}},{"type":"Polygon","arcs":[[-7397,-3397,-3396,-12462,13358]],"properties":{"prefix":"1.3.4.2.1.4"}},{"type":"Polygon","arcs":[[13359,1290,3339,3340,3341,-13199,-13200,3354,3355,8385,8386,8387,13360]],"properties":{"prefix":"7.3.2.4.3.1"}},{"type":"Polygon","arcs":[[-12117,-13113,-13112,10053,-6232,-6231,-6230,-1580,-7016,-7019,-7018,-12118]],"properties":{"prefix":"9.4.2.4.1.3"}},{"type":"Polygon","arcs":[[-5498,13361,-7989,-3300,-3299,4264,4265,4266,4267,6067,6068,6069,-5499]],"properties":{"prefix":"5.3.3.2.4.1"}},{"type":"Polygon","arcs":[[-12128,-12127,-12126,-11658,-11657,7978,6949,6950,6951,2036]],"properties":{"prefix":"8.1.5.2.2.2"}},{"type":"Polygon","arcs":[[13362,3427]],"properties":{"prefix":"6.3.3.5.6.1"}},{"type":"Polygon","arcs":[[13363,13364,8902,-3979,-3978,-8146,-8145,-709,-708,-707,-13122]],"properties":{"prefix":"9.3.4.1.1.3"}},{"type":"Polygon","arcs":[[13365,3922,-1812,-12135,-4435,-4434,9778,9779,9780,13366]],"properties":{"prefix":"9.3.5.4.2.1"}},{"type":"Polygon","arcs":[[13367,7755,7756,13368]],"properties":{"prefix":"9.3.1.6.3.1"}},{"type":"Polygon","arcs":[[9279,9280,874,875,876,877,-2540,-2539,13369,-12136]],"properties":{"prefix":"9.8.5.1.1.2"}},{"type":"Polygon","arcs":[[13370,-1686,-1685,-1684,-1683,8925,8926,8927,13371]],"properties":{"prefix":"2.6.2.1.1.3"}},{"type":"Polygon","arcs":[[-11472,-11471,13372,13373,-12612,13374,13375,5765,5766,-5125]],"properties":{"prefix":"7.2.1.3.1.3"}},{"type":"Polygon","arcs":[[6770,13376,-12614,3448]],"properties":{"prefix":"4.3.4.2.1.1"}},{"type":"Polygon","arcs":[[-5105,-5104,-1851,7330,-11679,-11678,-11677,-2386,-2385,13377]],"properties":{"prefix":"5.2.1.2.2.1"}},{"type":"Polygon","arcs":[[-8958,-8957,-8956,6878,-9778,-7272,-7271,610,611,612,359,360,13378]],"properties":{"prefix":"2.6.6.2.3.1"}},{"type":"Polygon","arcs":[[-13133,10244,-7808,13379]],"properties":{"prefix":"4.1.3.3.1.5"}},{"type":"Polygon","arcs":[[-12634,10290]],"properties":{"prefix":"9.8.3.3.2.4"}},{"type":"Polygon","arcs":[[-11344,-10765,-2475,-4150,-4149,-4148,-6495,-11346,-11345]],"properties":{"prefix":"7.2.2.6.4.5"}},{"type":"Polygon","arcs":[[-9478,-12638,13380]],"properties":{"prefix":"7.5.2.1.3.1"}},{"type":"Polygon","arcs":[[8611,8612,8613,13381,13382,13383,8610,-7377,-2542,-2541,905,906,907]],"properties":{"prefix":"9.8.2.2.4.2"}},{"type":"Polygon","arcs":[[9655,9656,9657,-7502,-7506,-11697,-11696]],"properties":{"prefix":"1.3.1.2.2.3"}},{"type":"Polygon","arcs":[[-6824,-8280,-8279,-8283,-12174,-12173]],"properties":{"prefix":"4.1.4.2.1.3"}},{"type":"Polygon","arcs":[[-2338,-2337,-4601,-8494,-8493,-8492,-8491,-12175,-8489,-8498,13384]],"properties":{"prefix":"1.7.2.6.1.2"}},{"type":"Polygon","arcs":[[9342,13385,3075]],"properties":{"prefix":"7.4.7.4.4.2"}},{"type":"Polygon","arcs":[[13386,-8675,10369,6961,-839,-12645,6964,6965,6966,6967,13387]],"properties":{"prefix":"4.1.2.3.2.1"}},{"type":"Polygon","arcs":[[13388,10465,3789,3790,-9072,3802,-11188]],"properties":{"prefix":"2.4.2.1.1.2"}},{"type":"Polygon","arcs":[[-3785,-3811,-3810,-3882,13389,13390,-11193]],"properties":{"prefix":"2.4.1.7.2.2"}},{"type":"Polygon","arcs":[[-7678,-7677,5057,5058,5059,8269,8270,1254,1255,1256,-1097,13391,13392]],"properties":{"prefix":"6.1.1.1.4.1"}},{"type":"Polygon","arcs":[[2065,-7942,-7941,-13337]],"properties":{"prefix":"7.6.1.3.1.2"}},{"type":"Polygon","arcs":[[13393,7,8,-8593,-8592,-11373,-11377,-11376,-12941,-8594,-1992,-12186]],"properties":{"prefix":"1.1.2.2.2.2"}},{"type":"Polygon","arcs":[[-2431,-2430,-2429,-483,-482,-11207,-11206,-11205,3605,3606,3607,13394,13395,13396]],"properties":{"prefix":"3.4.1.2.1.1"}},{"type":"Polygon","arcs":[[-3563,-3562,-3561,-5110,-9683,-9682,-9681,-9680,-9420,13397,-3564]],"properties":{"prefix":"7.6.3.4.3.1"}},{"type":"Polygon","arcs":[[2003,8311,8312,8313,8314,783,784,785,786,13398,-4005]],"properties":{"prefix":"8.1.3.1.1.1"}},{"type":"Polygon","arcs":[[-11385,-12198,13399]],"properties":{"prefix":"8.5.2.2.4.2"}},{"type":"Polygon","arcs":[[-4834,13400,8245,-12655,-12657,-12656,-4835]],"properties":{"prefix":"3.4.4.6.3.1"}},{"type":"Polygon","arcs":[[8341,4896,4897,4898,4899,4900,4901,4902,4903,4904,13401]],"properties":{"prefix":"8.1.6.1.6.1"}},{"type":"Polygon","arcs":[[13402,10340,6129,-8918,1108,1109]],"properties":{"prefix":"5.1.2.4.2.1"}},{"type":"Polygon","arcs":[[-8176,1285,5733,5734,5735,5736,5737,13403]],"properties":{"prefix":"7.3.2.1.2.1"}},{"type":"Polygon","arcs":[[8466,-11735]],"properties":{"prefix":"7.3.2.2.3.3"}},{"type":"Polygon","arcs":[[5425,39,40,2148,-9701,-9700,-9699,13404,5424]],"properties":{"prefix":"1.5.1.3.1.1"}},{"type":"Polygon","arcs":[[-12671,-12670,-13160,-2698]],"properties":{"prefix":"2.6.6.1.2.2"}},{"type":"Polygon","arcs":[[-1077,-1076,-7374,-7373,-7372,5870,5871,5872,9969,13405,-11236]],"properties":{"prefix":"6.2.1.4.1.2"}},{"type":"Polygon","arcs":[[7467,13406,13407,-11739,-4071,-4070,7466]],"properties":{"prefix":"2.2.2.1.1.1"}},{"type":"Polygon","arcs":[[-11239,-11241,-916,-4721,13408,13409]],"properties":{"prefix":"7.4.8.5.3.1"}},{"type":"Polygon","arcs":[[-12223,-1884,2296,-6626,-6625,-4802,-6643,13410,-12225,-12224]],"properties":{"prefix":"2.3.3.4.6.2"}},{"type":"Polygon","arcs":[[-12682,-1306,-1305,-1304,-3883,-3897,-3896,-3895,-12683]],"properties":{"prefix":"7.5.1.2.2.2"}},{"type":"Polygon","arcs":[[13411,8008,8009,273,274,2005,2006,2007,2008,2009,8010,8011,8012]],"properties":{"prefix":"8.1.6.6.2.2"}},{"type":"Polygon","arcs":[[-4196,637,638,639,640,6573,6574,8322,-7220,8323,8324,8325,13412]],"properties":{"prefix":"8.1.5.1.1.2"}},{"type":"Polygon","arcs":[[-12227,13413,6541]],"properties":{"prefix":"1.7.2.2.1.1"}},{"type":"Polygon","arcs":[[8366,8367,8368,247,248,-650,6791,6792,6793,6794,6795,6796,-4370,-4369,-3672,-3671,8363,13414]],"properties":{"prefix":"7.8.1.5.3.1"}},{"type":"Polygon","arcs":[[9993,9994,-9384,-9383,-8272,-8278,-8277,-877,-876,-6453,-6452,-6451,13415]],"properties":{"prefix":"4.1.2.4.4.2"}},{"type":"Polygon","arcs":[[1769,1770,1771,13416]],"properties":{"prefix":"6.2.1.6.5.2"}},{"type":"Polygon","arcs":[[-6931,8235,8236,8237,8238,-11997,-11996]],"properties":{"prefix":"2.4.1.3.2.3"}},{"type":"Polygon","arcs":[[-705,-12234,-12233,-12232,-10859,10014,1518]],"properties":{"prefix":"9.1.3.2.2.5"}},{"type":"Polygon","arcs":[[2962,2963,2964,13417]],"properties":{"prefix":"9.1.5.3.3.3"}},{"type":"Polygon","arcs":[[-6531,-6530,-6529,9093,9094,13418,59]],"properties":{"prefix":"4.4.3.2.4.1"}},{"type":"Polygon","arcs":[[13419,-5961,-5960,-5959,-5958,-5957,223,224,-11767,-11769,-11768,1653]],"properties":{"prefix":"7.7.2.3.1.1"}},{"type":"Polygon","arcs":[[149,5824,5825,-11265]],"properties":{"prefix":"6.3.5.2.4.2"}},{"type":"Polygon","arcs":[[9380,13420,13421,9378,2319,2320,2321,2322,2323,2324,9379]],"properties":{"prefix":"2.3.3.3.2.1"}},{"type":"Polygon","arcs":[[1153,1154,1155,1156,-11773]],"properties":{"prefix":"6.4.4.1.6.3"}},{"type":"Polygon","arcs":[[13422,-12247,-12252,-12251,2169,2170,2171,2172,2173,2174,2175,2176,2177,-13241]],"properties":{"prefix":"1.5.1.1.3.4"}},{"type":"Polygon","arcs":[[-12255,-9652,-5197,10473,-12904,-12903,-10665,-10664,-12256]],"properties":{"prefix":"1.3.1.2.1.5"}},{"type":"Polygon","arcs":[[-1587,-1586,-1585,-1584,-11290,-7952,-11778]],"properties":{"prefix":"9.4.2.3.5.3"}},{"type":"Polygon","arcs":[[13423,7047,7048,-6763,13424,13425,-12260,-12259,-12258,3170]],"properties":{"prefix":"7.5.4.4.1.1"}},{"type":"Polygon","arcs":[[13426,9766,-5208,-5207,-5206,-7473,-7476,-7475,13427]],"properties":{"prefix":"4.4.4.3.1.3"}},{"type":"Polygon","arcs":[[-11295,-2814,-9934,13428]],"properties":{"prefix":"2.6.2.5.2.1"}},{"type":"Polygon","arcs":[[13429,-1965,-1964,-12979,-11790,-11789,-11788]],"properties":{"prefix":"7.5.3.1.1.3"}},{"type":"Polygon","arcs":[[9445,9446,9447,9448,9449,3032,3033,3034,3035,-5661,-5660,-11794]],"properties":{"prefix":"5.3.2.2.1.2"}},{"type":"Polygon","arcs":[[13430,10273,10274,-9310,394,395,396,1903,1904,-5642,13431]],"properties":{"prefix":"2.5.1.2.1.1"}},{"type":"Polygon","arcs":[[13432,-5293,-5292,-4512,-4511,-4510,-4509,-4508,-4507,8346,8347,8348,8349,8350,8351,8352]],"properties":{"prefix":"1.8.3.4.1.1"}},{"type":"Polygon","arcs":[[7541,-10701,-10700,13433,-12276,-12275,6356,7544,13434,13435]],"properties":{"prefix":"7.6.3.1.2.1"}},{"type":"Polygon","arcs":[[-3588,13436,13437,7801,7802,-3463,-3462,-3461,-3589]],"properties":{"prefix":"7.6.5.1.1.1"}},{"type":"Polygon","arcs":[[13438,8596,8597,-12237,-12236,-6205,-6204,-6203,2021,2022,2023,2024,2025,4155,4156,8599,13439]],"properties":{"prefix":"8.1.6.2.2.1"}},{"type":"Polygon","arcs":[[-11822,-11321,-3224,-3223,-3594,-3593,-3592,4325,5445,5446,-11823]],"properties":{"prefix":"7.6.1.4.1.3"}},{"type":"Polygon","arcs":[[-8906,-8913,-10338,-2664,-2663,-7217,13440]],"properties":{"prefix":"2.6.6.3.3.2"}},{"type":"Polygon","arcs":[[-11828,-11827,-11826,3759,3760,3761,696,13441,13442]],"properties":{"prefix":"8.2.1.8.1.4"}},{"type":"Polygon","arcs":[[-12296,3692,3693]],"properties":{"prefix":"3.4.3.2.4.3"}},{"type":"Polygon","arcs":[[962,-13195,-13194,-11832,-4427,-4426]],"properties":{"prefix":"9.3.5.1.2.6"}},{"type":"Polygon","arcs":[[5318,5319,315,-12932,-8527,-8526,657,658,13443]],"properties":{"prefix":"8.5.2.3.1.1"}},{"type":"Polygon","arcs":[[10107,-9277,2776,2777,2778,2779,2780,2781,2782,6216,6217,6218,6219,13444]],"properties":{"prefix":"9.8.5.1.3.1"}},{"type":"Polygon","arcs":[[615,5802,9496,9497,9498,9499,9500,-11886]],"properties":{"prefix":"8.1.3.1.3.2"}},{"type":"Polygon","arcs":[[-10743,-8585,-8584,-8583,13445,13446,13447]],"properties":{"prefix":"6.3.1.1.2.1"}},{"type":"Polygon","arcs":[[-11838,-12303,8977]],"properties":{"prefix":"2.3.3.4.3.2"}},{"type":"Polygon","arcs":[[-11840,-11839,469,470,471,472,473,474,-3812,-3819,-3818,-3817,-3816,-3815,-3814,-3813,507,13448,-11841]],"properties":{"prefix":"1.9.2.8.3.3"}},{"type":"Polygon","arcs":[[9531,9532,5789,-13127,-10728,-2074,-2073,-2072,-931,-930,13449]],"properties":{"prefix":"7.5.6.3.3.1"}},{"type":"Polygon","arcs":[[-12304,13450,1582,1583,1584,2524,2525,2526,2527,2528,2529,-12305]],"properties":{"prefix":"9.8.3.4.4.3"}},{"type":"Polygon","arcs":[[-3423,-3422,-3421,-3502,-3501,-7767,-7766,13451,13452]],"properties":{"prefix":"6.3.4.1.1.1"}},{"type":"Polygon","arcs":[[-4415,-11343,13453,10121,10122,2126,2127,-4419,-4418,-4417,-4416]],"properties":{"prefix":"4.4.4.4.2.2"}},{"type":"Polygon","arcs":[[-5141,-5140,-12312,13454,5170,5171,5172,-5142]],"properties":{"prefix":"3.4.2.5.2.2"}},{"type":"Polygon","arcs":[[-2779,-2778,9029,9030,9031,9032,-12884,13455,9028]],"properties":{"prefix":"9.8.4.1.1.2"}},{"type":"Polygon","arcs":[[13456,4274,-11851,-5501]],"properties":{"prefix":"5.3.3.4.1.1"}},{"type":"Polygon","arcs":[[-12746,-12745,651,-12322]],"properties":{"prefix":"8.5.2.3.3.2"}},{"type":"Polygon","arcs":[[13457,13458,1324,-6500,1334,1335,7565,7566,7567]],"properties":{"prefix":"7.3.3.2.5.1"}},{"type":"Polygon","arcs":[[-12331,-13208,-13207,9340,9341,-780,-779,-778,-777,13459]],"properties":{"prefix":"7.8.1.1.1.3"}},{"type":"Polygon","arcs":[[-1835,-1834,13460,-8020,-8019,-8024,10038,-12734,-1839,-1838,-1837,-1836]],"properties":{"prefix":"9.3.6.1.2.1"}},{"type":"Polygon","arcs":[[10057,10058,10059,-8447,-8446,-8445,13461]],"properties":{"prefix":"7.5.3.3.4.1"}},{"type":"Polygon","arcs":[[209,3192,3193,3194,-11532,-13292,-13291,-13290]],"properties":{"prefix":"7.6.2.5.1.4"}},{"type":"Polygon","arcs":[[-2049,-2048,13462,-13216]],"properties":{"prefix":"8.2.1.6.4.1"}},{"type":"Polygon","arcs":[[-9656,-9655,-12254,-10662,-9832]],"properties":{"prefix":"1.3.1.2.1.3"}},{"type":"Polygon","arcs":[[13463,5609,2902,2240,2241,-12357,-12356,-12359,13464]],"properties":{"prefix":"2.6.1.2.2.1"}},{"type":"Polygon","arcs":[[13465,301,9403,9404,-8111,-8117,-8116]],"properties":{"prefix":"8.5.2.1.3.1"}},{"type":"Polygon","arcs":[[-6426,-6425,-6424,-6423,-9067,-11412,-9064,-532,-531,-530,-529,-528,-527,-526,-2198,13466,13467]],"properties":{"prefix":"2.3.1.2.1.1"}},{"type":"Polygon","arcs":[[-13025,7232,-5360,13468,-11902,-11901,-11900]],"properties":{"prefix":"4.4.3.4.2.3"}},{"type":"Polygon","arcs":[[-13231,-460,-459,2739,2740,2741,2742,2743,2744,5463,5464,5465,5466]],"properties":{"prefix":"4.1.5.2.3.3"}},{"type":"Polygon","arcs":[[8360,13469,-12370,-12369,-12368,8359,-6749,-6748,-6321,-6320,-6319]],"properties":{"prefix":"9.1.5.1.2.2"}},{"type":"Polygon","arcs":[[1846,1847,-12486,1855,1856,13470]],"properties":{"prefix":"5.1.3.5.2.2"}},{"type":"Polygon","arcs":[[-10674,-12685,522,523,524,525,-10675]],"properties":{"prefix":"1.9.2.7.1.2"}},{"type":"Polygon","arcs":[[1353,-9082,-9081,-9080,13471,13472,-6509,-9076,1350,1351,1352]],"properties":{"prefix":"7.3.3.1.3.2"}},{"type":"Polygon","arcs":[[-11914,13473,13474,13475,9687,9688,-3370,-3401,551,552,553,5696,5697,5698,5699,-11915]],"properties":{"prefix":"1.3.2.6.3.3"}},{"type":"Polygon","arcs":[[861,-8285,13476,351,860]],"properties":{"prefix":"9.8.6.4.3.1"}},{"type":"Polygon","arcs":[[8965,8966,8967,13477,13478]],"properties":{"prefix":"7.4.4.1.3.2"}},{"type":"Polygon","arcs":[[13479,-8976,-8661,-6639,-6638,-8981,-8980]],"properties":{"prefix":"2.3.3.4.4.1"}},{"type":"Polygon","arcs":[[9733,9734,9735,6636,6637,6638,6639,6640,13480]],"properties":{"prefix":"2.3.3.6.1.1"}},{"type":"Polygon","arcs":[[6886,13481,234,1637,1638,1639,1640,1641,1642,6884,6885]],"properties":{"prefix":"7.7.2.3.4.1"}},{"type":"Polygon","arcs":[[13482,636,4195,4196,4197,4198,4199,-12600,-12599,-12598]],"properties":{"prefix":"8.1.4.3.1.1"}},{"type":"Polygon","arcs":[[10269,-4790,-4789,-4788,-4787,-8545,-8843,-8842,2532,2533,2534,-4796]],"properties":{"prefix":"9.8.3.4.1.1"}},{"type":"Polygon","arcs":[[-11933,2105,2106,2107,2108,8106,-6538,-6537,8107,-11935,-11934]],"properties":{"prefix":"4.4.3.2.2.2"}},{"type":"Polygon","arcs":[[13483,13484,-5760,7067,7858,7859,7860,7861,7862,7863,7864,-1212,-1211,-12399]],"properties":{"prefix":"7.2.1.4.2.6"}},{"type":"Polygon","arcs":[[2801,-12801,4395,10359]],"properties":{"prefix":"2.6.3.1.1.2"}},{"type":"Polygon","arcs":[[-12400,13485,-1695,-1694,-1693,-1692,-8975,-11943,-11942,-13242,-8970,-8982,-6632]],"properties":{"prefix":"2.3.3.4.2.2"}},{"type":"Polygon","arcs":[[4250,4251,-2718,10270,13486,13487,10272,-3064,-10184,-10183]],"properties":{"prefix":"7.4.2.1.1.1"}},{"type":"Polygon","arcs":[[-10912,4791,-12992,4787]],"properties":{"prefix":"9.8.3.3.3.3"}},{"type":"Polygon","arcs":[[-5869,-12414,-12413,-11457,-5872,-5871,-5870]],"properties":{"prefix":"6.2.1.6.1.2"}},{"type":"Polygon","arcs":[[13488,-7208,-1709,-13245,6901,-12813]],"properties":{"prefix":"2.3.2.3.3.2"}},{"type":"Polygon","arcs":[[6085,6086,6087,9559,9560,13489,-11910,3436,3437,3438,13490]],"properties":{"prefix":"6.3.3.2.2.1"}},{"type":"Polygon","arcs":[[13491,9704,9705,9706,5330,-8344,-8345,-1186,-1185,-1184,-1183,-1182]],"properties":{"prefix":"7.1.1.4.3.1"}},{"type":"Polygon","arcs":[[-11005,-5116,-5115,8182,8183,2588]],"properties":{"prefix":"7.2.1.5.2.5"}},{"type":"Polygon","arcs":[[2679,2680,-9048,-12171,-9044,13492,-9805,-9804]],"properties":{"prefix":"2.6.5.2.4.1"}},{"type":"Polygon","arcs":[[8494,8495,13493,8491,8492,8493,-4600,-4602,2624,2625,2626,2627,2628]],"properties":{"prefix":"1.7.2.6.2.1"}},{"type":"Polygon","arcs":[[8856,8857,8858,8859,8860,8861,-716,-4660,-4659,-4658,-4657,-4656,8862,13494]],"properties":{"prefix":"9.3.4.3.4.1"}},{"type":"Polygon","arcs":[[-12823,-12822,-1609,-1608,-1607,-12427]],"properties":{"prefix":"7.6.6.7.1.2"}},{"type":"Polygon","arcs":[[-13254,-2180,-2179,-2178,-2177,-9464,-9463,13495,-13255]],"properties":{"prefix":"1.4.2.4.2.3"}},{"type":"Polygon","arcs":[[3246,3247,3248,-12429,-12428]],"properties":{"prefix":"9.4.2.5.2.3"}},{"type":"Polygon","arcs":[[-11476,-11475,5620,-11952,-9146,-8924,3204,3205,-11477]],"properties":{"prefix":"7.6.2.4.1.2"}},{"type":"Polygon","arcs":[[-11955,13496,13497,13498,4641,4642,4643,4644,2631,2632,2633,2634]],"properties":{"prefix":"1.7.2.1.2.3"}},{"type":"Polygon","arcs":[[-430,49,50,-7095,-11961,-11960,-12432,-7100,-11485]],"properties":{"prefix":"4.2.2.1.5.2"}},{"type":"Polygon","arcs":[[-12722,6781,6782,6783,6784,-12723,-10951]],"properties":{"prefix":"7.6.3.2.1.4"}},{"type":"Polygon","arcs":[[8044,2249,2250,13499,13500,-4174,13501]],"properties":{"prefix":"8.2.2.3.3.1"}},{"type":"Polygon","arcs":[[-789,-11969,4523,-790]],"properties":{"prefix":"7.8.1.4.1.3"}},{"type":"Polygon","arcs":[[-12039,-12038,-12037,-2661,7217,13502,13503]],"properties":{"prefix":"2.6.6.3.1.1"}},{"type":"Polygon","arcs":[[13504,9820,-11977,-7433,9822,5071,5072]],"properties":{"prefix":"8.1.4.1.2.2"}},{"type":"Polygon","arcs":[[365,-12440,10265,10266,6983,6984,2670,-8507,-9809,-9808,-9807,2699,2700,2701,2702]],"properties":{"prefix":"2.6.5.2.1.3"}},{"type":"Polygon","arcs":[[-12443,13505,1080,1081,2997,2998,2999,3000,-12445,-12444]],"properties":{"prefix":"5.3.2.2.5.2"}},{"type":"Polygon","arcs":[[-2253,-2252,-2251,-2250,-2249,-2248,284,285,-5514,-12749,-12748,-5512,13506]],"properties":{"prefix":"8.3.1.1.1.1"}},{"type":"Polygon","arcs":[[13507,13508,13509]],"properties":{"prefix":"9.3.5.5.1.1"}},{"type":"Polygon","arcs":[[9728,9729,-4130,-4129,-4128,-4127,-4126,-11987,-11986,-11985,-11984,-13089,-13088,5569,13510]],"properties":{"prefix":"7.2.7.3.1.1"}},{"type":"Polygon","arcs":[[13511,-11704]],"properties":{"prefix":"6.4.4.1.3.2"}},{"type":"Polygon","arcs":[[13512,-10142,7168,-5996,-5995,1022,1023,1535]],"properties":{"prefix":"4.8.3.1.3.1"}},{"type":"Polygon","arcs":[[6280,13513,13514,8697,6276,6277,8698,8699,8700,-13001,-13000,-13002,-1125,-1124,-1123,-1122]],"properties":{"prefix":"7.3.2.4.1.2"}},{"type":"Polygon","arcs":[[13515,8048,-1626,-1625,-1624,-3455,-3454,4317,4318,4319,13516,-12456,-12455,-12454,6347]],"properties":{"prefix":"7.6.3.1.6.1"}},{"type":"Polygon","arcs":[[13517,1395,1396,1397,6474,6475,6476]],"properties":{"prefix":"1.3.4.4.2.1"}},{"type":"Polygon","arcs":[[5474,13518,-7443,-7442,-810,-809,-472,-11999,9622,9623]],"properties":{"prefix":"4.1.5.2.2.1"}},{"type":"Polygon","arcs":[[4062,4063,4064,-13276,-13275,-12001,-12000]],"properties":{"prefix":"2.2.1.7.3.4"}},{"type":"Polygon","arcs":[[-6804,-10500,-10499,-13102,1265,1266,-12458,-12460,-12459]],"properties":{"prefix":"7.3.1.1.1.4"}},{"type":"Polygon","arcs":[[1831,935,13519,-10365,-4765,-4764,-4776,1829,1830]],"properties":{"prefix":"9.4.5.3.4.2"}},{"type":"Polygon","arcs":[[1389,1390,14,-11595,-11596,3387,3388,3389,3390,3391,-9009,13520]],"properties":{"prefix":"1.3.3.6.4.1"}},{"type":"Polygon","arcs":[[13521,-7277,-7276]],"properties":{"prefix":"3.1.2.1.1.1"}},{"type":"Polygon","arcs":[[6945,13522,-7977,-7976,-7975,-6577,-6576,-6575,-12841,6944]],"properties":{"prefix":"8.1.5.2.4.1"}},{"type":"Polygon","arcs":[[-13280,-11519,13523]],"properties":{"prefix":"4.1.3.4.1.1"}},{"type":"Polygon","arcs":[[-10514,5639,5640,5641,1905,-12013]],"properties":{"prefix":"2.5.1.1.2.3"}},{"type":"Polygon","arcs":[[2186,2187,-6848,-6847,-12245,2185]],"properties":{"prefix":"2.2.1.6.2.2"}},{"type":"Polygon","arcs":[[-12017,13524,13525,8818,-12469,6493,6494,-4147,-4146,-4145,-4144,-2595,-2594,8829]],"properties":{"prefix":"7.2.2.4.2.2"}},{"type":"Polygon","arcs":[[-8238,-12473,-12472,-12471,-12470,-12474,-2324,9981,9982,9983,13526]],"properties":{"prefix":"2.4.1.3.3.2"}},{"type":"Polygon","arcs":[[7683,7684,7685,7686,7687,-12893,13527,-3241]],"properties":{"prefix":"9.4.1.1.1.2"}},{"type":"Polygon","arcs":[[13528,2652,2653,2654,-1668,-1667,-5841,-11664,-11666,13529]],"properties":{"prefix":"2.6.7.1.2.2"}},{"type":"Polygon","arcs":[[-5426,-8941,-8940,13530,38]],"properties":{"prefix":"1.5.1.2.3.1"}},{"type":"Polygon","arcs":[[57,-9096,-9095,-9094,-6528,13531,-12478]],"properties":{"prefix":"4.4.3.2.3.2"}},{"type":"Polygon","arcs":[[9810,9811,9812,-2436,-2435,-2434,-5031,-5030,-5029,9813,9814,9815,3618,3619,3620,3621,3622,3623,3624,9816,13532]],"properties":{"prefix":"3.4.1.1.4.1"}},{"type":"Polygon","arcs":[[-3545,-3544,-3543,-13296,13533]],"properties":{"prefix":"6.4.3.3.6.1"}},{"type":"Polygon","arcs":[[4709,4710,-3066,-1315,-1314,-1313,-1312,-1311,-2291,4711,4712,4713,10040,4716,13534,13535]],"properties":{"prefix":"7.4.8.4.1.1"}},{"type":"Polygon","arcs":[[7490,-902,-12022,13536]],"properties":{"prefix":"7.4.8.1.1.3"}},{"type":"Polygon","arcs":[[-11550,-11549,8426,8427,-1238,-1237,-1236,-1235,-1234,-11551]],"properties":{"prefix":"7.2.7.4.2.4"}},{"type":"Polygon","arcs":[[-11157,97,98,-2382,-7714,-7713,-7718,-7717,-7716,-10556]],"properties":{"prefix":"5.2.1.3.1.6"}},{"type":"Polygon","arcs":[[13537,-3340,1291,-12026]],"properties":{"prefix":"7.3.3.2.1.1"}},{"type":"Polygon","arcs":[[-12483,13538,-3138,-3137,-3136,7481,7482,7483,-12484]],"properties":{"prefix":"4.1.2.4.1.2"}},{"type":"Polygon","arcs":[[-560,-8199,13539,13540,-5563,-5562,-5561,-5560,-5559,-5558,-561]],"properties":{"prefix":"2.3.3.1.3.2"}},{"type":"Polygon","arcs":[[-6691,-6690,13541]],"properties":{"prefix":"9.4.2.1.4.1"}},{"type":"Polygon","arcs":[[13542,9253,2898,2899,2900,2901,1888,-10535,1895,1896,1897,1898,1899,1900,1901,13543]],"properties":{"prefix":"2.5.3.2.2.2"}},{"type":"Polygon","arcs":[[7093,7094,51,7095,7096,7097,2355,13544]],"properties":{"prefix":"4.2.2.2.1.1"}},{"type":"Polygon","arcs":[[329,-7850,-7849,-10335,-10334,-10333,10388,13545]],"properties":{"prefix":"9.1.6.1.2.1"}},{"type":"Polygon","arcs":[[-9448,-9447,10412,-5647,-5646,-5645,-5644,111,-9125,-9124,-9127,-9126,3027,3028,3029,13546]],"properties":{"prefix":"5.3.2.2.2.1"}},{"type":"Polygon","arcs":[[13547,13548,1473,1474,1475,1476,1477,1478,-9843,-9842,-9841,-9840]],"properties":{"prefix":"9.1.8.1.3.1"}},{"type":"Polygon","arcs":[[-12493,440,8687,8688,8689,-8358,-12494]],"properties":{"prefix":"1.7.1.4.1.3"}},{"type":"Polygon","arcs":[[-11042,-12498,-11040,-11039,-5720,-727,-726,-725,-724,-723]],"properties":{"prefix":"9.3.4.3.5.3"}},{"type":"Polygon","arcs":[[13549,-7061,-6779,-9418,-9417,-9428,13550]],"properties":{"prefix":"7.6.3.4.1.2"}},{"type":"Polygon","arcs":[[4511,4512,4513,-9259,-12503,13551]],"properties":{"prefix":"1.8.3.5.2.1"}},{"type":"Polygon","arcs":[[-2956,-2955,-2954,-12866,-11573,-13116,13552]],"properties":{"prefix":"9.1.2.3.2.1"}},{"type":"Polygon","arcs":[[-12049,-12048,-12047,-13247,2019,2020,6202]],"properties":{"prefix":"8.1.6.7.1.2"}},{"type":"Polygon","arcs":[[-13319,4698,4699,4700,4701]],"properties":{"prefix":"9.1.7.2.4.3"}},{"type":"Polygon","arcs":[[-6384,-6383,-6382,-1255,-1254,-1253,-1252,6799,6800,6801,6802,6803,6804,6805,-12513]],"properties":{"prefix":"7.3.1.2.3.2"}},{"type":"Polygon","arcs":[[722,-10595,-13158,13553,13554,13555,-6581,-6580,-7974,-7973,-7972,-7980,2046,2047,2048,2049,720,721]],"properties":{"prefix":"8.1.5.2.1.4"}},{"type":"Polygon","arcs":[[141,142,-3405,-3404,8118,8119,-12062]],"properties":{"prefix":"6.3.2.2.2.2"}},{"type":"Polygon","arcs":[[7173,7174,7175,13556,-12521,-12520,-12519]],"properties":{"prefix":"1.9.2.3.1.2"}},{"type":"Polygon","arcs":[[-11588,5148,3492,3493,3494,3495,3496,-9714,-9718,-9717]],"properties":{"prefix":"6.3.5.1.1.2"}},{"type":"Polygon","arcs":[[13557,13558,7759,13559,-12951,4034,4035,7752,7753,7754,-13368]],"properties":{"prefix":"9.3.1.6.3.2"}},{"type":"Polygon","arcs":[[10481,4577,4578,-12528,13560]],"properties":{"prefix":"4.8.2.2.1.1"}},{"type":"Polygon","arcs":[[-12078,-1972,-1971,-1970,3883,3884,3885,3886,-11603,-11602,-11601,-11600,-11599,9482,9483,13561,-12079]],"properties":{"prefix":"7.5.2.1.2.5"}},{"type":"Polygon","arcs":[[-8774,-8773,-5234,-5233,-5232,1767,-9909,-7672,-7671,-7675,-7674,1778,1779,1780,1781,13562]],"properties":{"prefix":"6.2.1.6.3.1"}},{"type":"Polygon","arcs":[[-12087,-12086,13563,4095,-9520,-9521,-1442,-1441,-1440,-1439,-1438,-12088]],"properties":{"prefix":"1.1.2.1.2.2"}},{"type":"Polygon","arcs":[[-9142,-9141,6491,-8829,-12542]],"properties":{"prefix":"7.2.2.4.3.2"}},{"type":"Polygon","arcs":[[1420,13564,-8951,-9266]],"properties":{"prefix":"1.3.3.5.2.2"}},{"type":"Polygon","arcs":[[-3297,-3296,-3295,-3294,-3293,-3292,-3291,-3290,-3319,-3318,-3317,-11417]],"properties":{"prefix":"5.3.5.2.3.2"}},{"type":"Polygon","arcs":[[4772,-12900,-8099,4766,4767,4768,4769,4770,4771]],"properties":{"prefix":"9.4.5.2.3.2"}},{"type":"Polygon","arcs":[[6423,6424,6425,6426,6427,6428,-11636]],"properties":{"prefix":"2.3.1.1.1.4"}},{"type":"Polygon","arcs":[[13565,-11844,-7097,9944]],"properties":{"prefix":"4.2.2.3.1.1"}},{"type":"Polygon","arcs":[[908,13566,-9914,-12852,-8612]],"properties":{"prefix":"9.8.2.2.3.1"}},{"type":"Polygon","arcs":[[-12441,3016,3017,-7936,13567,13568,1079,-13506,-12442]],"properties":{"prefix":"5.3.2.2.5.1"}},{"type":"Polygon","arcs":[[-9135,-12562,13569,-1385,-1384,-1383,-11786,-11787,6365,-1451,-1450]],"properties":{"prefix":"1.2.1.4.4.3"}},{"type":"Polygon","arcs":[[-5507,6081,530,531,532,13570]],"properties":{"prefix":"1.9.2.2.1.1"}},{"type":"Polygon","arcs":[[1278,-3339,-3338,-3337,-3369,-12567,-12566,-12565]],"properties":{"prefix":"7.3.1.4.1.7"}},{"type":"Polygon","arcs":[[-12571,-12570,9588,-12572]],"properties":{"prefix":"2.4.5.1.4.3"}},{"type":"Polygon","arcs":[[13571,9113,6266,-12576,-12575,-12574,1103,13572]],"properties":{"prefix":"5.3.6.3.6.1"}},{"type":"Polygon","arcs":[[-8909,13573,13574,-12916,-10697,-2666,-2665,10337,-8912,-8911,-8910]],"properties":{"prefix":"2.6.6.3.5.1"}},{"type":"Polygon","arcs":[[13575,-7662,-5818,-5817,-5816,-5815,-11308,13576,13577,7090,-3044,4292]],"properties":{"prefix":"5.3.1.2.2.2"}},{"type":"Polygon","arcs":[[-12132,-8082,-5973,-5972,-5971,-6523,-12587,8265,8266,8267]],"properties":{"prefix":"7.4.4.4.2.2"}},{"type":"Polygon","arcs":[[10397,13578,5958,5959,-7366,-12588,-12592,-12591,-12919]],"properties":{"prefix":"7.7.2.1.2.1"}},{"type":"Polygon","arcs":[[-5013,-5012,-5011,-5010,13579,13580,-10704]],"properties":{"prefix":"9.1.2.4.2.1"}},{"type":"Polygon","arcs":[[-11661,-8079,-3697,-3696,-3695,-3694,5594,-11662]],"properties":{"prefix":"3.4.4.2.3.2"}},{"type":"Polygon","arcs":[[13581,-7656,-2915]],"properties":{"prefix":"2.6.4.1.2.1"}},{"type":"Polygon","arcs":[[8749,13582,13583,-3647,8748,-7870,-7874,-7873]],"properties":{"prefix":"6.3.6.1.3.1"}},{"type":"Polygon","arcs":[[7760,4018,4019,4020,4021,-12953,-12952,-13560]],"properties":{"prefix":"9.3.1.6.3.3"}},{"type":"Polygon","arcs":[[-12609,-12608,-12607,-12606,-4623,-4622,-11829,-13443,-13442,697,698]],"properties":{"prefix":"8.2.1.8.1.3"}},{"type":"Polygon","arcs":[[-1687,-13371,13584,-1688]],"properties":{"prefix":"2.6.2.1.1.1"}},{"type":"Polygon","arcs":[[-12610,5763,-1202,-1201,2606,5764,-13376,-13375,-12611]],"properties":{"prefix":"7.2.1.3.1.5"}},{"type":"Polygon","arcs":[[-10718,-9330,-9329,-12141]],"properties":{"prefix":"2.6.4.2.3.3"}},{"type":"Polygon","arcs":[[-5099,-6339,-6338,-6337,-12616]],"properties":{"prefix":"4.3.4.2.1.3"}},{"type":"Polygon","arcs":[[1588,1589,-12618,-12147]],"properties":{"prefix":"9.8.6.1.1.2"}},{"type":"Polygon","arcs":[[6997,13585,13586,-11165,-11164,-12623,-12622,-12624,-1901,-1900,-1899,2916]],"properties":{"prefix":"2.6.1.1.1.1"}},{"type":"Polygon","arcs":[[13587,-7845,-7844,-7843,-3650,-3649,4368,4369,4370,4371]],"properties":{"prefix":"7.8.1.7.2.1"}},{"type":"Polygon","arcs":[[-8902,-12155,-4944,13588]],"properties":{"prefix":"7.5.3.4.1.1"}},{"type":"Polygon","arcs":[[-12159,13589,-9855,-9854]],"properties":{"prefix":"6.2.1.2.5.3"}},{"type":"Polygon","arcs":[[7826,-10740,-12160,-12161,-11684,7825]],"properties":{"prefix":"5.1.3.2.3.2"}},{"type":"Polygon","arcs":[[-7192,13590,13591,9297,9298,-7193]],"properties":{"prefix":"9.3.4.5.4.1"}},{"type":"Polygon","arcs":[[78,79,970,971,972,-12629,5221,5222,5223,13592]],"properties":{"prefix":"4.4.4.2.3.1"}},{"type":"Polygon","arcs":[[-7249,-6893,-6892,-6891,13593,-12163,7618]],"properties":{"prefix":"7.7.2.4.3.3"}},{"type":"Polygon","arcs":[[-12630,883,884,13594,13595,-12631]],"properties":{"prefix":"9.8.3.3.2.2"}},{"type":"Polygon","arcs":[[-12860,-10751]],"properties":{"prefix":"1.3.2.2.1.2"}},{"type":"Polygon","arcs":[[13596,-2491,-5665,-5664,-5663,-5662,-5681,13597]],"properties":{"prefix":"7.2.4.1.1.2"}},{"type":"Polygon","arcs":[[-9994,-9993,-7141,-7140,-6971,-9386,13598]],"properties":{"prefix":"4.1.2.4.3.1"}},{"type":"Polygon","arcs":[[-11877,8298,8299,8300,-4153,-4152,-13289,-4156,2026,2027,2028,2029,2030,2031,-13142,-12176]],"properties":{"prefix":"8.1.5.5.5.7"}},{"type":"Polygon","arcs":[[-11708,-12178,-9242,1166,1167,1168,1169,-11711,-11710,-11709]],"properties":{"prefix":"6.4.4.1.3.4"}},{"type":"Polygon","arcs":[[13599,-5308,-5307,9198,9199]],"properties":{"prefix":"8.1.4.4.2.1"}},{"type":"Polygon","arcs":[[-13163,-13162,-5329,-12674,-12673,-12672,6870,6871,6872,6873,10399,10400]],"properties":{"prefix":"7.1.1.3.4.3"}},{"type":"Polygon","arcs":[[-4172,-12182,-12181,8669,281,282,5913,5914,5915,5916]],"properties":{"prefix":"8.2.2.2.3.2"}},{"type":"Polygon","arcs":[[-2687,-2686,-2685,6881,-12651,-12650,-12649,-10800,607,608,609,7270,13600]],"properties":{"prefix":"2.6.6.2.5.2"}},{"type":"Polygon","arcs":[[5300,5301,5302,-1732,13601]],"properties":{"prefix":"2.2.1.2.1.1"}},{"type":"Polygon","arcs":[[2470,-438,-437,7952,7953,7954,7955,2364,2365,13602,13603,-10816]],"properties":{"prefix":"4.2.2.1.4.3"}},{"type":"Polygon","arcs":[[5002,13604,4993,4994,4995,4996,4997,4998,4999,5000,5001]],"properties":{"prefix":"9.1.2.3.4.2"}},{"type":"Polygon","arcs":[[10068,-11872,10067,-8518,-8517]],"properties":{"prefix":"5.3.2.1.1.3"}},{"type":"Polygon","arcs":[[-9354,10283,13605]],"properties":{"prefix":"1.2.1.4.1.1"}},{"type":"Polygon","arcs":[[9742,-3766,-987,-986,-985,-984,-983,-9696,-9695,-9694,13606]],"properties":{"prefix":"5.1.3.1.1.1"}},{"type":"Polygon","arcs":[[-3058,-3057,-3056,-3055,-11722,-11726,-11725,-11724,13607]],"properties":{"prefix":"7.4.6.4.2.1"}},{"type":"Polygon","arcs":[[-12206,6172,10075,10076,10077,10078,13608,-12207]],"properties":{"prefix":"5.1.2.2.1.3"}},{"type":"Polygon","arcs":[[13609,2955,2956,2957,-2725,-2724,2958,-6747,-6746,-6745,-6751]],"properties":{"prefix":"9.1.5.1.4.1"}},{"type":"Polygon","arcs":[[10439,-6175,-11738,-6140,1114,13610,-9272]],"properties":{"prefix":"5.1.2.3.2.1"}},{"type":"Polygon","arcs":[[6278,-8385,-8384,-8388,-8387,13611,-8699]],"properties":{"prefix":"7.3.2.4.2.1"}},{"type":"Polygon","arcs":[[2404,13612,-5820,-5819,7661,7662,7663,7664,2397,2398,2399,2400,2401,2402,2403]],"properties":{"prefix":"5.3.1.2.1.1"}},{"type":"Polygon","arcs":[[13613,13614,-5299,-5298,-1727,-1726,6834]],"properties":{"prefix":"2.2.1.1.1.3"}},{"type":"Polygon","arcs":[[-11748,-11747,-11746,-4967,10081,10082,10083,13615,13616]],"properties":{"prefix":"7.7.1.2.4.1"}},{"type":"Polygon","arcs":[[236,-12034,-12033,-12032,-12031,9685,13617,13618]],"properties":{"prefix":"7.8.1.2.4.1"}},{"type":"Polygon","arcs":[[6193,9630,13619,13620,47,9629,6192,-2642,-2641,-2640,-2639]],"properties":{"prefix":"1.7.1.3.1.1"}},{"type":"Polygon","arcs":[[13621,1710,1711,1712,1713,1714,1715,1716,1717,1718,1719]],"properties":{"prefix":"2.1.3.1.1.1"}},{"type":"Polygon","arcs":[[-12929,-12931,-6533,-6532,-4605,-4604,10229,13622,13623]],"properties":{"prefix":"4.4.3.2.1.1"}},{"type":"Polygon","arcs":[[-4871,13624,-4861,-12959,-12958,-12957,-12961,-12960,-4873,-4872]],"properties":{"prefix":"9.3.3.2.1.1"}},{"type":"Polygon","arcs":[[-8058,-8057,-8056,9823,6311,326,327,2961,-13418,2965,2966,2967,2968,2969,13625]],"properties":{"prefix":"9.1.5.3.3.1"}},{"type":"Polygon","arcs":[[-13236,13626,-1154,-1153,1955,1956,1957,1958,1959,10238,-8825,-12965,-12969,-12968,-12967]],"properties":{"prefix":"7.2.2.4.1.1"}},{"type":"Polygon","arcs":[[-11771,-11770,1161,-8211,-8210,13627]],"properties":{"prefix":"6.4.4.1.6.1"}},{"type":"Polygon","arcs":[[8713,8714,8715,-3155,1069,-890,-889,-888,13628]],"properties":{"prefix":"4.1.2.5.5.1"}},{"type":"Polygon","arcs":[[4131,4132,4133,9565,-10903,-10902]],"properties":{"prefix":"7.2.4.5.2.3"}},{"type":"Polygon","arcs":[[-8872,-8871,-6018,-6017,-6016,-6015,-6014,-12250]],"properties":{"prefix":"1.5.1.1.3.6"}},{"type":"Polygon","arcs":[[13629,-11779,-7949,6235,6236,-7836,-7591,-7595,9159,13630]],"properties":{"prefix":"9.4.2.3.5.1"}},{"type":"Polygon","arcs":[[8956,8957,8958,8959,8960,13631,13632]],"properties":{"prefix":"2.6.6.2.2.1"}},{"type":"Polygon","arcs":[[-4223,-4222,-4221,-4220,9595,9596,-11783,-11782,-11785,13633]],"properties":{"prefix":"2.6.2.4.1.1"}},{"type":"Polygon","arcs":[[-12261,-13426,-13425,-6762,-6761,-6760,3160,3161,3162]],"properties":{"prefix":"7.5.4.4.1.3"}},{"type":"Polygon","arcs":[[13634,-13428,-7474,-5226,-5225,-5224]],"properties":{"prefix":"4.4.4.3.1.1"}},{"type":"Polygon","arcs":[[2685,2686,2687,-12268,-12269,9045,13635,13636]],"properties":{"prefix":"2.6.5.2.5.1"}},{"type":"Polygon","arcs":[[-13033,170,9054,-8852]],"properties":{"prefix":"6.4.2.1.1.2"}},{"type":"Polygon","arcs":[[-3602,-476,-475,-5144,-5143,-5173,5808,13637]],"properties":{"prefix":"3.4.2.2.2.1"}},{"type":"Polygon","arcs":[[2283,6222,13638,2282]],"properties":{"prefix":"7.5.1.1.2.1"}},{"type":"Polygon","arcs":[[-10588,6633,13639,9959,-9169,9960,9961,-11801,-11800]],"properties":{"prefix":"2.3.3.6.3.1"}},{"type":"Polygon","arcs":[[5922,-9071,5925,10422,13640]],"properties":{"prefix":"2.2.1.5.1.2"}},{"type":"Polygon","arcs":[[13641,13642,-12272,730,731,732,-10920]],"properties":{"prefix":"8.1.4.4.3.3"}},{"type":"Polygon","arcs":[[4214,4855,13643,9148,9149,9150,9151,-1808]],"properties":{"prefix":"1.7.1.1.1.1"}},{"type":"Polygon","arcs":[[-13248,-8539,13644]],"properties":{"prefix":"2.4.1.2.1.4"}},{"type":"Polygon","arcs":[[13645,-6919,-6918,-6917,-6916,-5389,-5398]],"properties":{"prefix":"8.2.1.2.6.1"}},{"type":"Polygon","arcs":[[-10699,-10698,-3199,-3198,6354,-12277,-13434]],"properties":{"prefix":"7.6.3.1.2.3"}},{"type":"Polygon","arcs":[[-2990,7089,-13578,-13577,-11309]],"properties":{"prefix":"5.3.1.2.2.4"}},{"type":"Polygon","arcs":[[-7940,-12985,1072,-8856]],"properties":{"prefix":"5.3.2.2.3.4"}},{"type":"Polygon","arcs":[[13646,13647,13648,6304,6305,-12918,-12282,-12281,-12280,3362,3363,3364,6308,-5742,-5741,-5740,-8469]],"properties":{"prefix":"7.3.2.2.4.2"}},{"type":"Polygon","arcs":[[13649,-12286,-12285,-12284,-12288,-4184,-4183,-4182,-2161,-2160,-11820,-11819]],"properties":{"prefix":"1.7.1.1.2.2"}},{"type":"Polygon","arcs":[[2053,2054,2055,2056,2057,6933,6934,13650]],"properties":{"prefix":"7.6.1.1.1.3"}},{"type":"Polygon","arcs":[[13651,13652,9527,-11821,5450,5451,5452,5453,5454]],"properties":{"prefix":"7.6.1.4.1.1"}},{"type":"Polygon","arcs":[[13653,-4199,-4198,-4197,-13413,8326,8327,6586,6587,6588,6589,724,725,8328,13654]],"properties":{"prefix":"8.1.5.1.1.1"}},{"type":"Polygon","arcs":[[-12993,-9552,13655]],"properties":{"prefix":"8.1.6.7.2.1"}},{"type":"Polygon","arcs":[[13656,13657,-8039,-8038,-8037,5977,5978,-1137,-1136,-1135,-1363,-1362,-1361,-1360,5979,5980,-8042,-8041]],"properties":{"prefix":"7.4.4.3.2.1"}},{"type":"Polygon","arcs":[[-9546,-12295,3696,3697,13658]],"properties":{"prefix":"3.4.3.2.4.1"}},{"type":"Polygon","arcs":[[-11154,-2101,-2100,-2099,-2098,-8129,-12298,-11976,-11975,-11974,-6040,8503,8504,13659,-11155]],"properties":{"prefix":"4.3.2.2.1.2"}},{"type":"Polygon","arcs":[[-13447,13660,3270,3271,-10742,-10744,-13448]],"properties":{"prefix":"6.3.1.1.2.3"}},{"type":"Polygon","arcs":[[13661,463,-11842,-13449,508,8060,8061,13662]],"properties":{"prefix":"1.9.2.8.3.1"}},{"type":"Polygon","arcs":[[9937,-13003,-3440,-3439,-3438,13663]],"properties":{"prefix":"6.3.2.2.1.1"}},{"type":"Polygon","arcs":[[2287,2288,8791,8792,8793,-3892,-3891,-3166,-10757,13664]],"properties":{"prefix":"7.5.1.2.1.4"}},{"type":"Polygon","arcs":[[-7241,-11250,3407,-7242]],"properties":{"prefix":"6.3.3.1.1.3"}},{"type":"Polygon","arcs":[[-1139,187,188,189,-8443,-8452,-8451,-8450,13665]],"properties":{"prefix":"7.5.3.3.2.2"}},{"type":"Polygon","arcs":[[13666,-2738,-2737,3145,3146,3147,3148,8413,-12317]],"properties":{"prefix":"4.1.3.4.3.2"}},{"type":"Polygon","arcs":[[13667,13668,-11857,-12326,1502,-2972,-2971,-2970,3097]],"properties":{"prefix":"9.1.7.2.1.1"}},{"type":"Polygon","arcs":[[-10319,-10318,5309,-5072,-5071,-5070,-5069,-5068,-10324,13669,-10320]],"properties":{"prefix":"8.1.4.3.2.2"}},{"type":"Polygon","arcs":[[-12751,-12750,8169,-1173,-1172,-1171,-1170,-1169,13670,-12752]],"properties":{"prefix":"7.1.1.1.2.3"}},{"type":"Polygon","arcs":[[-5549,-5548,-12340,-12339,6145,13671]],"properties":{"prefix":"2.3.3.3.3.1"}},{"type":"Polygon","arcs":[[-5723,-5722,-9400,-8858,-8857,-8867,-8866,13672]],"properties":{"prefix":"9.3.4.3.1.1"}},{"type":"Polygon","arcs":[[-12759,13673,-3061,4238,4239,4240,4241,4242,-12344,-12343,-12342,-12341,-2870,-12760]],"properties":{"prefix":"7.4.2.1.2.2"}},{"type":"Polygon","arcs":[[-1940,-1939,-1938,13674,6512]],"properties":{"prefix":"7.1.1.6.2.1"}},{"type":"Polygon","arcs":[[-3920,-3919,-3918,-3917,5254,-10064,5257,5258,13675,10259]],"properties":{"prefix":"9.3.1.5.3.1"}},{"type":"Polygon","arcs":[[-4958,-4957,-4956,6059,217,218,219,-12963,-12962,3823,3824,3825,-11019,-11018,-12351]],"properties":{"prefix":"7.7.1.4.2.3"}},{"type":"Polygon","arcs":[[6123,6124,6125,6126,10029,10030,13676,-11262,-11261]],"properties":{"prefix":"6.3.3.4.4.2"}},{"type":"Polygon","arcs":[[309,-7730,-7729,-12765,-12764,13677]],"properties":{"prefix":"8.5.2.2.2.1"}},{"type":"Polygon","arcs":[[13678,8257,8258,8259,4960,4961,4962,4963,4964]],"properties":{"prefix":"7.7.1.3.3.1"}},{"type":"Polygon","arcs":[[6293,-7806,-7805,-7804,-7811,-11028]],"properties":{"prefix":"4.1.3.3.3.3"}},{"type":"Polygon","arcs":[[13679,13680,-12773,-1056,-1055,-1054,-1053,5023,5024,-5023,-5022,-12364]],"properties":{"prefix":"7.4.6.4.4.2"}},{"type":"Polygon","arcs":[[13681,-9587,-3946,-3952,-1907,-1906,-1905]],"properties":{"prefix":"2.4.5.1.5.2"}},{"type":"Polygon","arcs":[[-6052,3888,3889,-3172,-3171,-3170,-3169,9940,13682,13683,-6053]],"properties":{"prefix":"7.5.2.2.3.1"}},{"type":"Polygon","arcs":[[-3204,13684,13685,9255,6352,6353,-3207,-3206,-3205]],"properties":{"prefix":"7.6.3.1.3.1"}},{"type":"Polygon","arcs":[[-12378,-12377,5556,-563,-562,5557,5558,5559,13686,-12379]],"properties":{"prefix":"2.3.3.2.5.3"}},{"type":"Polygon","arcs":[[-11045,-13036,7834,-7592,7835,6237,-10811]],"properties":{"prefix":"9.4.2.3.2.4"}},{"type":"Polygon","arcs":[[-12786,13687,3579,-12784]],"properties":{"prefix":"7.6.4.1.3.1"}},{"type":"Polygon","arcs":[[-6228,6686,6687,6688,6689,9097,13688]],"properties":{"prefix":"9.4.2.2.1.2"}},{"type":"Polygon","arcs":[[1627,1628,-11681,-11680,-10082,-4966,-4965,-4964,13689,13690,-12387,-12386]],"properties":{"prefix":"7.7.1.2.2.2"}},{"type":"Polygon","arcs":[[5395,-4613,-7437,-4638,-13047,-13046,5394]],"properties":{"prefix":"8.2.1.4.2.2"}},{"type":"Polygon","arcs":[[-12794,-12793,767,768,9016,9017,13691]],"properties":{"prefix":"8.1.3.2.1.1"}},{"type":"Polygon","arcs":[[9720,9721,9722,9723,9724,2547,2548,2549,2550,2551,6959,9725,13692]],"properties":{"prefix":"9.8.3.1.1.1"}},{"type":"Polygon","arcs":[[-13052,-3914,4012,4013,4014,4015,4016,-12799,-7758,-7757,-7756,-7755]],"properties":{"prefix":"9.3.1.6.2.2"}},{"type":"Polygon","arcs":[[13693,13694,8835,4831,4832,4833,4834,4835,4836,-3623]],"properties":{"prefix":"3.4.4.5.3.1"}},{"type":"Polygon","arcs":[[-11938,-12836,-12835,8551,6889,6890]],"properties":{"prefix":"7.7.2.3.3.2"}},{"type":"Polygon","arcs":[[600,-13056,-13055,-8442,598,599]],"properties":{"prefix":"2.6.7.1.1.4"}},{"type":"Polygon","arcs":[[-13325,-13058,13695,8633,8634,8635,-12402,-12405,-12404,-12403,6700]],"properties":{"prefix":"7.2.4.6.1.4"}},{"type":"Polygon","arcs":[[-3005,-3004,-3003,-3307,8378,-13063,-13066,-13065,13696]],"properties":{"prefix":"5.3.3.2.1.1"}},{"type":"Polygon","arcs":[[13697,7507,7508,-6121,-13069,7511,-1783,-1782,-1781]],"properties":{"prefix":"6.3.3.5.3.1"}},{"type":"Polygon","arcs":[[3150,-11887,13698,-6288,-6287,-6286,-12415,-8416,-8415,-8414,3149]],"properties":{"prefix":"4.1.3.4.2.2"}},{"type":"Polygon","arcs":[[3813,13699,-13197]],"properties":{"prefix":"1.9.3.3.3.2"}},{"type":"Polygon","arcs":[[3434,-11909,-13490,9561,9562,9563,6093,-3278,-3277,-3276,3432,3433]],"properties":{"prefix":"6.3.3.2.2.3"}},{"type":"Polygon","arcs":[[8029,8030,-685,-684,-683,-12976,-12975,-12974,-12076,-12419]],"properties":{"prefix":"9.1.2.5.2.5"}},{"type":"Polygon","arcs":[[-12821,13700,13701,13702,5770,5771,5772,151,5773,5774,5775,3515,3516,3517,1203,1204,13703]],"properties":{"prefix":"6.3.5.4.2.3"}},{"type":"Polygon","arcs":[[13704,9881,-12425,6179]],"properties":{"prefix":"2.4.4.1.1.1"}},{"type":"Polygon","arcs":[[2572,13705,-9762,-9761,-9760,5782,5783,5784,-11587,-13323,-9537,-926,-925,-924,-923,-922,-921,-920,2291,2292,2293]],"properties":{"prefix":"7.5.6.3.2.1"}},{"type":"Polygon","arcs":[[13706,7263,7264,3380,3381,-6602,-6603,3394,3395,3396,3397,3398]],"properties":{"prefix":"1.3.3.5.4.1"}},{"type":"Polygon","arcs":[[4640,-13499,-13498,-13497,-11954,-11958,-11957,-11956,2639,13707]],"properties":{"prefix":"1.7.2.1.2.1"}},{"type":"Polygon","arcs":[[13708,13709,7449,6859,-5677,-5676,-5675,-5674,7447]],"properties":{"prefix":"7.2.4.4.5.1"}},{"type":"Polygon","arcs":[[2252,2253,-4162,-4161,-4160,-4178,-4177,-4176,-4175,-13501,-13500,2251]],"properties":{"prefix":"8.2.2.3.3.3"}},{"type":"Polygon","arcs":[[-1597,13710,-6661,-6660,-1819,-1818,-1817,-11993,-11992,-1599,-1598]],"properties":{"prefix":"9.6.1.2.1.1"}},{"type":"Polygon","arcs":[[-12036,4221,7212,7213]],"properties":{"prefix":"2.6.6.3.1.3"}},{"type":"Polygon","arcs":[[-3286,-3289,-3288,-799,-798,10445,10446,10447,10448,13711]],"properties":{"prefix":"7.8.3.2.3.1"}},{"type":"Polygon","arcs":[[-5367,6906,10104,13712]],"properties":{"prefix":"7.4.4.5.1.2"}},{"type":"Polygon","arcs":[[-12438,367,13713]],"properties":{"prefix":"2.6.5.2.1.1"}},{"type":"Polygon","arcs":[[7982,7983,7984,13714]],"properties":{"prefix":"4.8.3.2.2.1"}},{"type":"Polygon","arcs":[[13715,-4894,-2119,-2118,-2117,-2116,9503,-12073,13716]],"properties":{"prefix":"4.6.1.1.6.3"}},{"type":"Polygon","arcs":[[-13508,13717,13718,7352,7353,7354,4426,4427,4428,4429,4430,4431,4432,4433,7355,13719,-13509]],"properties":{"prefix":"9.3.5.5.1.3"}},{"type":"Polygon","arcs":[[-12447,-12446,-12449,13720,13721,1921]],"properties":{"prefix":"8.5.2.1.2.1"}},{"type":"Polygon","arcs":[[13722,8369,-5987,-5986,-5985,-5984,8370,8371]],"properties":{"prefix":"7.4.4.2.3.2"}},{"type":"Polygon","arcs":[[-1931,13723,9405,9406,288,2417,9407,2421,2422,2423,2424]],"properties":{"prefix":"8.3.1.2.4.1"}},{"type":"Polygon","arcs":[[13724,-2095,3530,-13097,-13096]],"properties":{"prefix":"4.3.2.2.3.1"}},{"type":"Polygon","arcs":[[-12453,-12452,-13517,4320,4321,-3585,-3584,-3583,-3582,6339,6340,6341,6342,6343]],"properties":{"prefix":"7.6.3.1.6.3"}}]},"7":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[6336,13725,-5093,-5092,6335]],"properties":{"prefix":"4.3.4.3.1.1.1"}},{"type":"Polygon","arcs":[[13726,11782,9597,-7800,-2803,-2802,-2801]],"properties":{"prefix":"2.6.2.4.1.2.1"}},{"type":"Polygon","arcs":[[-7345,-7344,7791,7792,13727]],"properties":{"prefix":"1.3.1.4.1.4.1"}},{"type":"Polygon","arcs":[[-11932,-1345,-1344,-1343,7384,13728]],"properties":{"prefix":"7.4.1.1.1.1.1"}},{"type":"Polygon","arcs":[[327,2961,-13418,2965,13729]],"properties":{"prefix":"9.1.5.3.3.1.2"}},{"type":"Polygon","arcs":[[8959,8960,13631,13730]],"properties":{"prefix":"2.6.6.2.2.1.1"}},{"type":"Polygon","arcs":[[1959,10238,-8825,-12965,-12969,13731,13732]],"properties":{"prefix":"7.2.2.4.1.1.3"}},{"type":"Polygon","arcs":[[13733,13000,8701,3357,3358,3359,-1128]],"properties":{"prefix":"7.3.2.4.1.3.2"}},{"type":"Polygon","arcs":[[15,3383,3384,3385,13734,11594]],"properties":{"prefix":"1.3.3.6.4.2.1"}},{"type":"Polygon","arcs":[[1530,1531,1532,1533,-7606,-7605,13735,3940]],"properties":{"prefix":"4.8.3.2.3.1.2"}},{"type":"Polygon","arcs":[[13736,-1610,12821]],"properties":{"prefix":"7.6.6.7.1.1.1"}},{"type":"Polygon","arcs":[[-9498,-9497,5803,770,13737]],"properties":{"prefix":"8.1.3.1.4.1.1"}},{"type":"Polygon","arcs":[[13738,3886,-11603,-11602]],"properties":{"prefix":"7.5.2.1.2.5.2"}},{"type":"Polygon","arcs":[[1586,1587,12146,12147,12148,13739]],"properties":{"prefix":"9.8.6.1.1.1.1"}},{"type":"Polygon","arcs":[[9736,2752,10606,2758,-5477,13740,10605]],"properties":{"prefix":"4.1.5.5.1.3.1"}},{"type":"Polygon","arcs":[[-8272,-8278,-8277,-877,13741,-9383]],"properties":{"prefix":"4.1.2.4.4.2.2"}},{"type":"Polygon","arcs":[[-5343,-5342,-1179,-1178,13742,12673]],"properties":{"prefix":"7.1.1.3.4.4.2"}},{"type":"Polygon","arcs":[[21,-11068,13743,-6482,13744]],"properties":{"prefix":"1.3.4.3.1.1.2"}},{"type":"Polygon","arcs":[[-547,13745,10668,10669,3713,4582,13746]],"properties":{"prefix":"2.3.2.1.1.4.1"}},{"type":"Polygon","arcs":[[13747,-10809,-10812,7839,11045]],"properties":{"prefix":"9.4.2.3.2.2.1"}},{"type":"Polygon","arcs":[[9113,6266,-12576,-12575,13748]],"properties":{"prefix":"5.3.6.3.6.1.1"}},{"type":"Polygon","arcs":[[9884,5285,9885,9886,13749]],"properties":{"prefix":"8.2.2.1.2.2.2"}},{"type":"Polygon","arcs":[[-1681,-1680,11730,13750]],"properties":{"prefix":"2.6.2.1.2.1.2"}},{"type":"Polygon","arcs":[[7229,6529,6530,60,13751,11900,13752]],"properties":{"prefix":"4.4.3.4.2.2.1"}},{"type":"Polygon","arcs":[[-6875,-6874,7357,7358,7359,13753]],"properties":{"prefix":"7.1.1.2.3.1.1"}},{"type":"Polygon","arcs":[[-12805,-9519,-8335,-7643,13754]],"properties":{"prefix":"6.4.3.3.5.3.1"}},{"type":"Polygon","arcs":[[12166,1297,-10770,12167,13755]],"properties":{"prefix":"7.3.3.2.3.1.1"}},{"type":"Polygon","arcs":[[-11350,-3037,-3036,12642,13756]],"properties":{"prefix":"5.3.5.1.2.1.1"}},{"type":"Polygon","arcs":[[-9296,-3899,5748,-5730,-9776,13757]],"properties":{"prefix":"9.3.4.5.5.1.1"}},{"type":"Polygon","arcs":[[13758,-6158,-6157,-6156,-11200,-11199,-8251]],"properties":{"prefix":"3.4.4.6.1.2.1"}},{"type":"Polygon","arcs":[[13759,-10691,-10690,13760,-3311,-3310]],"properties":{"prefix":"5.3.5.2.2.2.1"}},{"type":"Polygon","arcs":[[40,2148,-9701,-9700,13761]],"properties":{"prefix":"1.5.1.3.1.1.1"}},{"type":"Polygon","arcs":[[7914,13762,13763,13764]],"properties":{"prefix":"3.4.4.7.1.3.1"}},{"type":"Polygon","arcs":[[13765,-1446,-1445,13766]],"properties":{"prefix":"1.1.2.1.5.1.1"}},{"type":"Polygon","arcs":[[12138,13767,378,13768]],"properties":{"prefix":"2.6.4.2.3.2.2"}},{"type":"Polygon","arcs":[[13769,-2320,-2319,-2318,13013,13770,13771]],"properties":{"prefix":"2.4.1.3.1.2.2"}},{"type":"Polygon","arcs":[[13772,-11689,-11176,5338]],"properties":{"prefix":"7.1.1.4.4.2.1"}},{"type":"Polygon","arcs":[[13542,9253,2898,13773,1897,1898,13774]],"properties":{"prefix":"2.5.3.2.2.2.1"}},{"type":"Polygon","arcs":[[13775,6515,13776,-8374]],"properties":{"prefix":"7.4.4.2.1.3.1"}},{"type":"Polygon","arcs":[[7135,13777,146,10986,-7239,-6097]],"properties":{"prefix":"6.3.3.1.1.1.2"}},{"type":"Polygon","arcs":[[5361,-11272,13778,13779]],"properties":{"prefix":"4.4.3.6.1.5.1"}},{"type":"Polygon","arcs":[[13780,11611,13781]],"properties":{"prefix":"9.3.4.5.1.3.2"}},{"type":"Polygon","arcs":[[10381,4986,4987,-2727,-2726,-2958,-9991,13782]],"properties":{"prefix":"9.1.2.3.1.2.2"}},{"type":"Polygon","arcs":[[-4847,-3700,11327,13783,-5574]],"properties":{"prefix":"3.4.4.2.5.2.2"}},{"type":"Polygon","arcs":[[7196,13784,7188,7189,7190,7191,7192,7193,7194,7195]],"properties":{"prefix":"9.3.4.5.3.1.1"}},{"type":"Polygon","arcs":[[13785,10972,13786]],"properties":{"prefix":"7.4.6.4.3.1.1"}},{"type":"Polygon","arcs":[[13787,3674,-7703,-7702,12481,-11219,13788]],"properties":{"prefix":"1.9.1.3.1.6.3"}},{"type":"Polygon","arcs":[[11332,5150,13789,11331]],"properties":{"prefix":"6.3.5.1.2.2.1"}},{"type":"Polygon","arcs":[[-5846,-7263,13790,13791,13792]],"properties":{"prefix":"5.3.5.1.2.3.4"}},{"type":"Polygon","arcs":[[9763,13325,13793]],"properties":{"prefix":"7.5.6.3.1.2.1"}},{"type":"Polygon","arcs":[[13794,10543,5651,5652,10544,13795]],"properties":{"prefix":"5.3.2.1.4.1.2"}},{"type":"Polygon","arcs":[[13796,-809,-472,-11999,9622]],"properties":{"prefix":"4.1.5.2.2.1.2"}},{"type":"Polygon","arcs":[[4552,12263,12264,13797]],"properties":{"prefix":"9.8.2.1.1.2.1"}},{"type":"Polygon","arcs":[[10849,-3844,-3843,10850,10851,13798,10848]],"properties":{"prefix":"6.4.3.3.1.3.1"}},{"type":"Polygon","arcs":[[13799,-1394,-1393,-1392,25,9459,-11382]],"properties":{"prefix":"1.4.2.4.1.3.1"}},{"type":"Polygon","arcs":[[-2358,13800,13175,10484,-10676,-2360,-2359]],"properties":{"prefix":"4.3.1.4.1.1.1"}},{"type":"Polygon","arcs":[[11740,7465,-1742,-4075,-4074,13801]],"properties":{"prefix":"2.2.2.1.1.2.1"}},{"type":"Polygon","arcs":[[13499,13802,2250]],"properties":{"prefix":"8.2.2.3.3.1.1"}},{"type":"Polygon","arcs":[[13803,6021,6022,36,7893,7894,7895]],"properties":{"prefix":"1.5.1.2.2.2.1"}},{"type":"Polygon","arcs":[[-10869,13263,13804]],"properties":{"prefix":"7.8.1.5.1.4.1"}},{"type":"Polygon","arcs":[[2755,13805]],"properties":{"prefix":"4.1.5.5.1.4.1"}},{"type":"Polygon","arcs":[[5578,5579,11990,-4809,-3615,-3614,13806]],"properties":{"prefix":"3.4.4.4.1.1.1"}},{"type":"Polygon","arcs":[[13807,-4445,-4444,-4443,4524,13808]],"properties":{"prefix":"7.8.1.4.1.1.1"}},{"type":"Polygon","arcs":[[7305,7306,1676,13809,13810]],"properties":{"prefix":"2.1.2.1.4.2.2"}},{"type":"Polygon","arcs":[[10590,9964,13811]],"properties":{"prefix":"2.3.3.6.3.3.1"}},{"type":"Polygon","arcs":[[12233,-704,-703,13812]],"properties":{"prefix":"9.1.3.2.2.2.2"}},{"type":"Polygon","arcs":[[9091,-8473,13813,9088,-453,9089,9090]],"properties":{"prefix":"4.2.1.1.1.1.1"}},{"type":"Polygon","arcs":[[-1886,-1885,12222,12223,13814]],"properties":{"prefix":"2.3.3.4.6.1.2"}},{"type":"Polygon","arcs":[[-1142,-4931,-4954,13815]],"properties":{"prefix":"7.5.3.2.3.4.1"}},{"type":"Polygon","arcs":[[-11173,-11172,13816,6390,-4472,-11174]],"properties":{"prefix":"7.3.1.3.2.2.1"}},{"type":"Polygon","arcs":[[7431,7432,7433,7434,12203,13817]],"properties":{"prefix":"8.1.4.1.3.2.2"}},{"type":"Polygon","arcs":[[12698,-12238,-12240,2543,13818]],"properties":{"prefix":"9.8.3.1.3.1.1"}},{"type":"Polygon","arcs":[[13819,-12210,5437,-11727,-11729,-12878,3754]],"properties":{"prefix":"8.2.1.8.2.2.2"}},{"type":"Polygon","arcs":[[13820,-7362,13821]],"properties":{"prefix":"7.7.2.1.3.1.2"}},{"type":"Polygon","arcs":[[11257,11258,10017,-640,-639,10018,10019,-4378,13822]],"properties":{"prefix":"7.8.1.6.2.2.1"}},{"type":"Polygon","arcs":[[-5479,13823,13824,-9402,-5480]],"properties":{"prefix":"8.5.2.1.2.2.4"}},{"type":"Polygon","arcs":[[-6550,-6933,-6932,11995,11996,8239,13825]],"properties":{"prefix":"2.4.1.3.2.2.3"}},{"type":"Polygon","arcs":[[8994,8995,13826]],"properties":{"prefix":"2.1.2.1.1.4.2"}},{"type":"Polygon","arcs":[[13827,4052,13828,4066,7881]],"properties":{"prefix":"2.2.1.7.3.2.1"}},{"type":"Polygon","arcs":[[13829,8030,-685,-684,-683,-12976]],"properties":{"prefix":"9.1.2.5.2.5.2"}},{"type":"Polygon","arcs":[[-4484,13830]],"properties":{"prefix":"7.6.4.1.4.2.1"}},{"type":"Polygon","arcs":[[13831,13832,9721,9722,9723,9724,2547]],"properties":{"prefix":"9.8.3.1.1.1.4"}},{"type":"Polygon","arcs":[[13833,11110,-7128]],"properties":{"prefix":"8.1.5.3.1.2.1"}},{"type":"Polygon","arcs":[[13834,10552,1559,-5953,-5952,-5951]],"properties":{"prefix":"9.8.2.2.5.2.1"}},{"type":"Polygon","arcs":[[-5347,-8955,-8961,-10300,362,13835,10351]],"properties":{"prefix":"2.6.6.2.1.1.2"}},{"type":"Polygon","arcs":[[13836,10515,10516,1911,8410,8411,10517]],"properties":{"prefix":"2.5.1.1.2.1.1"}},{"type":"Polygon","arcs":[[823,824,825,-3689,11852,9898,-5162,13837]],"properties":{"prefix":"3.4.2.4.1.1.2"}},{"type":"Polygon","arcs":[[-3730,-3729,-3728,13838,10916,-556,-555,-554,-553,13839]],"properties":{"prefix":"2.3.3.1.2.1.1"}},{"type":"Polygon","arcs":[[-5317,-5324,13840,13841]],"properties":{"prefix":"8.5.2.2.5.4.2"}},{"type":"Polygon","arcs":[[-9293,13842,2873,2874]],"properties":{"prefix":"9.1.3.1.2.1.3"}},{"type":"Polygon","arcs":[[-13764,13843,-611,-610,13844]],"properties":{"prefix":"3.4.4.7.1.3.3"}},{"type":"Polygon","arcs":[[1895,13845,2901,1888,-10535]],"properties":{"prefix":"2.5.3.2.2.2.3"}},{"type":"Polygon","arcs":[[13846,12997,-10974,6532,6533,6534]],"properties":{"prefix":"4.4.3.4.1.1.1"}},{"type":"Polygon","arcs":[[12888,8057,8058,-11750,-11249,13847,12887]],"properties":{"prefix":"9.1.5.3.1.3.1"}},{"type":"Polygon","arcs":[[-10557,-2408,11157,11158,13848]],"properties":{"prefix":"5.2.1.3.1.2.1"}},{"type":"Polygon","arcs":[[13849,4713,10040,4716,13534,13850]],"properties":{"prefix":"7.4.8.4.1.1.5"}},{"type":"Polygon","arcs":[[-945,13851,8883,8884,4486,8885,8886,8887,-947,-946]],"properties":{"prefix":"7.6.4.2.2.1.1"}},{"type":"Polygon","arcs":[[12376,12377,13852,5555]],"properties":{"prefix":"2.3.3.2.5.2.1"}},{"type":"Polygon","arcs":[[13853,13854,8576,8577]],"properties":{"prefix":"7.4.6.4.3.1.3"}},{"type":"Polygon","arcs":[[13855,8201,8202,2385,2386,3307,8203]],"properties":{"prefix":"5.3.6.2.2.1.1"}},{"type":"Polygon","arcs":[[13856,-13789,-11218]],"properties":{"prefix":"1.9.1.3.1.6.1"}},{"type":"Polygon","arcs":[[10399,13857,-12672,6870,6871,6872,6873]],"properties":{"prefix":"7.1.1.3.4.3.2"}},{"type":"Polygon","arcs":[[3346,3347,3348,3349,3350,3351,13858]],"properties":{"prefix":"7.3.2.4.3.2.1"}},{"type":"Polygon","arcs":[[13859,1617,6184,13860]],"properties":{"prefix":"7.7.1.1.2.1.1"}},{"type":"Polygon","arcs":[[13653,-4199,-4198,13861,8327,6586,6587,13862]],"properties":{"prefix":"8.1.5.1.1.1.1"}},{"type":"Polygon","arcs":[[13863,12943,-1269,-10814,-12653,-4982,5665]],"properties":{"prefix":"7.2.4.2.3.1.1"}},{"type":"Polygon","arcs":[[13864,1552,1553,4357,13865]],"properties":{"prefix":"4.8.2.1.1.2.1"}},{"type":"Polygon","arcs":[[-7550,-7558,5705,5706,9863,13866]],"properties":{"prefix":"1.3.2.6.1.2.1"}},{"type":"Polygon","arcs":[[-4412,10123,13867,11341,11342,-4414,-4413]],"properties":{"prefix":"4.4.4.4.2.1.2"}},{"type":"Polygon","arcs":[[13220,-12347,1434,1435,-6416,13868]],"properties":{"prefix":"1.3.1.4.1.1.2"}},{"type":"Polygon","arcs":[[13869,13870,-4493,-4492,-8674,-4501,-7579]],"properties":{"prefix":"7.6.4.1.3.2.2"}},{"type":"Polygon","arcs":[[-12470,13871,13872]],"properties":{"prefix":"2.4.1.3.3.2.1"}},{"type":"Polygon","arcs":[[13873,8953,1424,1425,13129]],"properties":{"prefix":"1.3.3.5.1.3.1"}},{"type":"Polygon","arcs":[[13874,11323,9163,-4962,-6063,-6062,-6061,-754]],"properties":{"prefix":"7.7.1.2.1.3.1"}},{"type":"Polygon","arcs":[[5445,13875,13876,-3593,-3592,4325]],"properties":{"prefix":"7.6.1.4.1.3.1"}},{"type":"Polygon","arcs":[[13877,-3647,8748,-7870]],"properties":{"prefix":"6.3.6.1.3.1.1"}},{"type":"Polygon","arcs":[[13878,-1784,-7512,-7511,12009,13879,10047]],"properties":{"prefix":"6.3.3.5.4.1.1"}},{"type":"Polygon","arcs":[[-2773,-2772,-9034,-9033,13019,13880]],"properties":{"prefix":"9.8.4.1.2.1.1"}},{"type":"Polygon","arcs":[[3495,3496,-9714,-9718,13881,3494]],"properties":{"prefix":"6.3.5.1.1.2.2"}},{"type":"Polygon","arcs":[[13882,13364,8902,-3979,-3978,-8146,-8145,-709]],"properties":{"prefix":"9.3.4.1.1.3.1"}},{"type":"Polygon","arcs":[[13883,-3655,-3654,-3653,-3652,-10638,-10637,12895]],"properties":{"prefix":"7.8.1.7.1.1.1"}},{"type":"Polygon","arcs":[[13884,12825,5948,-2550]],"properties":{"prefix":"9.8.2.3.2.1.1"}},{"type":"Polygon","arcs":[[13885,1584,2524,2525,2526,2527,2528]],"properties":{"prefix":"9.8.3.4.4.3.2"}},{"type":"Polygon","arcs":[[-10993,-10998,13272,13886,-13007]],"properties":{"prefix":"7.2.2.4.4.1.1"}},{"type":"Polygon","arcs":[[-5861,-5860,-5271,-7529,-7528,13887]],"properties":{"prefix":"6.2.1.2.1.2.2"}},{"type":"Polygon","arcs":[[13888,-7460]],"properties":{"prefix":"7.5.3.1.4.3.3"}},{"type":"Polygon","arcs":[[9801,9802,4912,-8465,10622,13889]],"properties":{"prefix":"7.6.2.3.2.1.1"}},{"type":"Polygon","arcs":[[7872,13890,-3637,-3636,-3635,-3634,-3633,7871]],"properties":{"prefix":"6.3.6.1.1.1.1"}},{"type":"Polygon","arcs":[[-6553,-6552,11313,11314,13891,-6554]],"properties":{"prefix":"2.4.1.3.2.1.1"}},{"type":"Polygon","arcs":[[9324,9325,13892,10841,13893]],"properties":{"prefix":"2.6.4.2.4.2.1"}},{"type":"Polygon","arcs":[[13894,1314,1315,1316,-11757,-7569,-7568]],"properties":{"prefix":"7.3.3.2.4.1.1"}},{"type":"Polygon","arcs":[[3300,7286,13895,3299]],"properties":{"prefix":"5.3.6.3.8.3.2"}},{"type":"Polygon","arcs":[[13896,11986,-4125,-4124,-1262,11987,11988,11982,11983,11984]],"properties":{"prefix":"7.2.7.3.1.2.1"}},{"type":"Polygon","arcs":[[1948,2584,2585,-8841,13897]],"properties":{"prefix":"7.2.1.5.3.1.1"}},{"type":"Polygon","arcs":[[-9311,3479,3480,3481,3482,3483,13898]],"properties":{"prefix":"1.3.1.4.5.1.2"}},{"type":"Polygon","arcs":[[13899,-6559,7121,334,11917,13900]],"properties":{"prefix":"9.1.7.3.1.3.2"}},{"type":"Polygon","arcs":[[-7537,11194,11195,13901]],"properties":{"prefix":"7.6.3.1.1.2.2"}},{"type":"Polygon","arcs":[[13902,12087,-1437,-1436,12088]],"properties":{"prefix":"1.1.2.1.2.1.1"}},{"type":"Polygon","arcs":[[-10982,5867,5868,13903]],"properties":{"prefix":"6.2.1.4.2.1.4"}},{"type":"Polygon","arcs":[[8597,-12237,-12236,-6205,13904]],"properties":{"prefix":"8.1.6.2.2.1.3"}},{"type":"Polygon","arcs":[[-465,-464,-463,-462,13905,13906,13907,13908]],"properties":{"prefix":"4.1.5.2.3.1.2"}},{"type":"Polygon","arcs":[[10180,10181,-8586,10742,10743,13909,13910]],"properties":{"prefix":"6.3.1.1.2.4.3"}},{"type":"Polygon","arcs":[[13911,-8707,-8709,567,568,569,13912]],"properties":{"prefix":"1.3.2.2.2.2.3"}},{"type":"Polygon","arcs":[[6101,6102,545,546,547,13913]],"properties":{"prefix":"1.3.3.1.1.1.1"}},{"type":"Polygon","arcs":[[13914,13642,-12272,730]],"properties":{"prefix":"8.1.4.4.3.3.1"}},{"type":"Polygon","arcs":[[13382,13915,13916]],"properties":{"prefix":"9.8.2.2.4.2.1"}},{"type":"Polygon","arcs":[[-10499,-13102,1265,1266,-12458,-12460,13917]],"properties":{"prefix":"7.3.1.1.1.4.1"}},{"type":"Polygon","arcs":[[-4197,-13413,8326,-13862]],"properties":{"prefix":"8.1.5.1.1.1.3"}},{"type":"Polygon","arcs":[[9447,9448,13918,13919]],"properties":{"prefix":"5.3.2.2.1.2.1"}},{"type":"Polygon","arcs":[[2215,12910,13920,12909,-5602,2214]],"properties":{"prefix":"4.1.6.1.1.3.1"}},{"type":"Polygon","arcs":[[1549,13921,13922,8509,8510,1548]],"properties":{"prefix":"4.8.2.1.1.2.3"}},{"type":"Polygon","arcs":[[-12780,13923]],"properties":{"prefix":"2.1.2.4.1.1.1"}},{"type":"Polygon","arcs":[[7953,7954,7955,2364,2365,13602,13924]],"properties":{"prefix":"4.2.2.1.4.3.2"}},{"type":"Polygon","arcs":[[-493,6329,6330,13925]],"properties":{"prefix":"2.1.1.2.3.1.2"}},{"type":"Polygon","arcs":[[3909,12924,12925,13926,13927,13928,3908]],"properties":{"prefix":"9.3.5.1.2.2.2"}},{"type":"Polygon","arcs":[[11495,-10966,-5051,-1760,-1804,-1803,13929]],"properties":{"prefix":"6.1.1.2.1.3.2"}},{"type":"Polygon","arcs":[[13930,-1136,-1135,-1363,13931,13657,-8039]],"properties":{"prefix":"7.4.4.3.2.1.1"}},{"type":"Polygon","arcs":[[1818,1819,1820,1821,11097,13932,11099,13933]],"properties":{"prefix":"9.4.5.2.1.1.2"}},{"type":"Polygon","arcs":[[13934,13935,13936,6057,3891,3892,8727]],"properties":{"prefix":"7.5.2.1.4.2.2"}},{"type":"Polygon","arcs":[[-1952,13937,-7359,13938,9591]],"properties":{"prefix":"7.1.1.2.2.1.1"}},{"type":"Polygon","arcs":[[9101,-747,-970,-969,-968,13939]],"properties":{"prefix":"7.7.1.1.1.1.2"}},{"type":"Polygon","arcs":[[13940,13591,9297,9298,-7193]],"properties":{"prefix":"9.3.4.5.4.1.1"}},{"type":"Polygon","arcs":[[-2820,-2819,-2818,13941]],"properties":{"prefix":"2.6.2.5.4.1.1"}},{"type":"Polygon","arcs":[[11828,-4621,-4620,-4619,-8439,-8438,13942,11827]],"properties":{"prefix":"8.2.1.8.1.5.1"}},{"type":"Polygon","arcs":[[3844,-8848,-8855,13943,3843]],"properties":{"prefix":"6.4.2.1.2.3.1"}},{"type":"Polygon","arcs":[[12622,-11163,386,13944]],"properties":{"prefix":"2.6.1.1.1.2.1"}},{"type":"Polygon","arcs":[[12259,12260,3163,-2563,3164,3165,3166,3167,3168,13945]],"properties":{"prefix":"7.5.4.4.1.2.1"}},{"type":"Polygon","arcs":[[-10789,3505,3506,3507,-8746,-8745,-8744,13946]],"properties":{"prefix":"6.3.5.5.5.2.1"}},{"type":"Polygon","arcs":[[5370,-9981,-9980,-2924,-2923,13947]],"properties":{"prefix":"7.4.4.6.3.1.1"}},{"type":"Polygon","arcs":[[188,13948,-8451,13949]],"properties":{"prefix":"7.5.3.3.2.2.2"}},{"type":"Polygon","arcs":[[13950,4657,4658,13951]],"properties":{"prefix":"9.3.4.1.3.1.2"}},{"type":"Polygon","arcs":[[-9486,13952,-8724]],"properties":{"prefix":"7.5.2.1.3.2.1"}},{"type":"Polygon","arcs":[[13953,-3132,13954]],"properties":{"prefix":"9.4.3.1.2.2.1"}},{"type":"Polygon","arcs":[[1307,1308,13955,13956]],"properties":{"prefix":"7.3.3.2.3.6.2"}},{"type":"Polygon","arcs":[[13957,-6287,-6286,-12415,-8416]],"properties":{"prefix":"4.1.3.4.2.2.1"}},{"type":"Polygon","arcs":[[13958,-6666,-6212,-7007,7011,8732,11659,-11254]],"properties":{"prefix":"8.1.6.5.3.2.1"}},{"type":"Polygon","arcs":[[12139,-10719,12140,-9328,377,-13768]],"properties":{"prefix":"2.6.4.2.3.2.4"}},{"type":"Polygon","arcs":[[13614,-5299,-5298,-1727,13959]],"properties":{"prefix":"2.2.1.1.1.3.1"}},{"type":"Polygon","arcs":[[12608,699,700,-10717,13960,13961]],"properties":{"prefix":"8.2.1.8.1.2.3"}},{"type":"Polygon","arcs":[[1957,1958,-13733,13962,1956]],"properties":{"prefix":"7.2.2.4.1.1.2"}},{"type":"Polygon","arcs":[[13963,13964,5468,5469,5470,5471,13965,-13908]],"properties":{"prefix":"4.1.5.2.3.1.4"}},{"type":"Polygon","arcs":[[-7514,-4826,6162,6163,6164,354,13966]],"properties":{"prefix":"3.4.4.7.4.2.1"}},{"type":"Polygon","arcs":[[4282,4283,5494,13967]],"properties":{"prefix":"5.3.3.5.1.1.1"}},{"type":"Polygon","arcs":[[13968,4203,5303,-11751,12594]],"properties":{"prefix":"8.1.4.3.1.3.3"}},{"type":"Polygon","arcs":[[3305,3306,-3002,-3001,9785,9786,13969,3304]],"properties":{"prefix":"5.3.6.3.9.4.1"}},{"type":"Polygon","arcs":[[13970,13971,13069,8524,656,8525,8526,8527]],"properties":{"prefix":"8.5.2.3.2.1.2"}},{"type":"Polygon","arcs":[[-2944,1510,13972,12544]],"properties":{"prefix":"9.1.4.1.2.1.1"}},{"type":"Polygon","arcs":[[-3970,-9948,-9950,13973,-3971]],"properties":{"prefix":"9.3.4.1.3.3.1"}},{"type":"Polygon","arcs":[[-11035,-3858,-3863,-3862,13974]],"properties":{"prefix":"5.1.2.4.4.5.1"}},{"type":"Polygon","arcs":[[7108,4350,-5891,-5890,-5889,-5888,-5887,13975]],"properties":{"prefix":"6.2.1.1.1.1.1"}},{"type":"Polygon","arcs":[[6231,6232,6233,13976]],"properties":{"prefix":"9.4.2.3.6.2.1"}},{"type":"Polygon","arcs":[[10611,9049,-2295,-2294,13977,10610]],"properties":{"prefix":"7.4.8.5.3.4.1"}},{"type":"Polygon","arcs":[[13978,13979,-2177,-9464]],"properties":{"prefix":"1.4.2.4.2.3.1"}},{"type":"Polygon","arcs":[[11074,13980,13981]],"properties":{"prefix":"7.2.4.4.3.2.2"}},{"type":"Polygon","arcs":[[13982,-12506,3568,-11204,-13146,-13145,-934,-933,-932,2071,2072]],"properties":{"prefix":"7.6.4.1.1.2.2"}},{"type":"Polygon","arcs":[[-6535,13983,10228,-8110,-8109,-8108,-6536]],"properties":{"prefix":"4.4.3.2.1.2.1"}},{"type":"Polygon","arcs":[[13984,-10627,-11251,5137,5138,5139]],"properties":{"prefix":"3.4.2.3.1.2.1"}},{"type":"Polygon","arcs":[[9461,9462,9463,-2176,-2175,-10807,13985]],"properties":{"prefix":"1.4.2.4.1.4.2"}},{"type":"Polygon","arcs":[[13986,12656,13987,-6152]],"properties":{"prefix":"3.4.4.6.3.2.1"}},{"type":"Polygon","arcs":[[-13928,13988,-10739,13989]],"properties":{"prefix":"9.3.5.1.2.2.4"}},{"type":"Polygon","arcs":[[8562,8563,13990,8565,13991]],"properties":{"prefix":"8.1.3.4.1.3.1"}},{"type":"Polygon","arcs":[[6060,13992,13260,8652,-756,-755]],"properties":{"prefix":"7.7.1.4.1.1.1"}},{"type":"Polygon","arcs":[[6776,11486,13993,6775]],"properties":{"prefix":"7.6.3.2.1.1.1"}},{"type":"Polygon","arcs":[[12232,-13813,-702,-701,12234,-10862,-10861,13994]],"properties":{"prefix":"9.1.3.2.2.2.1"}},{"type":"Polygon","arcs":[[-4557,-5336,9359,13995,11418,13996]],"properties":{"prefix":"7.1.1.3.2.1.1"}},{"type":"Polygon","arcs":[[9333,-12517,-12516,13997]],"properties":{"prefix":"8.1.3.2.3.2.1"}},{"type":"Polygon","arcs":[[-4789,-4788,-4787,-8545,-8843,-8842,2532,2533,13998]],"properties":{"prefix":"9.8.3.4.1.1.1"}},{"type":"Polygon","arcs":[[13999,14000,8646,8647,-2719,-4252,-4251,-4250]],"properties":{"prefix":"7.4.4.1.1.2.4"}},{"type":"Polygon","arcs":[[11361,14001,11360]],"properties":{"prefix":"6.3.5.3.2.2.1"}},{"type":"Polygon","arcs":[[4822,-3324,4823,4824,4825,4826,4827,4828,14002]],"properties":{"prefix":"3.4.4.5.4.1.1"}},{"type":"Polygon","arcs":[[-2304,5277,10784,10785,14003,3950]],"properties":{"prefix":"2.4.6.1.1.2.2"}},{"type":"Polygon","arcs":[[7444,2760,2761,11047,11048,14004]],"properties":{"prefix":"4.1.5.2.1.3.1"}},{"type":"Polygon","arcs":[[-13824,-5478,671,14005,14006]],"properties":{"prefix":"8.5.2.1.2.2.2"}},{"type":"Polygon","arcs":[[-2894,390,14007,-8778]],"properties":{"prefix":"2.5.2.1.3.3.2"}},{"type":"Polygon","arcs":[[2882,9287,14008]],"properties":{"prefix":"9.1.3.1.3.4.4"}},{"type":"Polygon","arcs":[[12711,12712,14009,14010]],"properties":{"prefix":"2.4.1.7.1.1.2"}},{"type":"Polygon","arcs":[[2180,14011,14012,-1714]],"properties":{"prefix":"2.2.1.6.2.1.2"}},{"type":"Polygon","arcs":[[470,471,472,473,474,-3812,-3819,14013]],"properties":{"prefix":"1.9.2.8.3.3.3"}},{"type":"Polygon","arcs":[[14014,11281,14015]],"properties":{"prefix":"1.3.1.3.2.2.2"}},{"type":"Polygon","arcs":[[14016,11426,11427,14017]],"properties":{"prefix":"7.6.3.3.1.2.2"}},{"type":"Polygon","arcs":[[14018,-10876,-8820,-8819,-8833]],"properties":{"prefix":"7.2.2.4.1.4.3"}},{"type":"Polygon","arcs":[[14019,-12269,9045,13635]],"properties":{"prefix":"2.6.5.2.5.1.1"}},{"type":"Polygon","arcs":[[14020,1355,14021]],"properties":{"prefix":"7.3.3.1.1.2.4"}},{"type":"Polygon","arcs":[[-5427,2155,-7897,-7896,14022]],"properties":{"prefix":"1.5.1.2.4.2.1"}},{"type":"Polygon","arcs":[[-7817,1412,14023,-7391,-7390,-7389]],"properties":{"prefix":"1.3.4.2.4.1.2"}},{"type":"Polygon","arcs":[[14024,9974,-12273,-12274,5692,-1872]],"properties":{"prefix":"5.3.6.2.3.1.1"}},{"type":"Polygon","arcs":[[6399,3476,6400,6401,6402,14025,14026,14027,14028]],"properties":{"prefix":"1.3.1.3.1.2.1"}},{"type":"Polygon","arcs":[[14029,-5895,7111,-6825,12172]],"properties":{"prefix":"4.1.4.2.1.2.3"}},{"type":"Polygon","arcs":[[14030,14031,11476,3206,3207,3208]],"properties":{"prefix":"7.6.2.4.1.1.5"}},{"type":"Polygon","arcs":[[-7095,-11961,14032,50]],"properties":{"prefix":"4.2.2.1.5.2.2"}},{"type":"Polygon","arcs":[[11458,11459,11460,11461,-8777,-8776,10206,1785,14033,14034]],"properties":{"prefix":"6.2.1.6.1.5.3"}},{"type":"Polygon","arcs":[[-1312,-1311,-2291,4711,14035,14036,-1313]],"properties":{"prefix":"7.4.8.4.1.1.3"}},{"type":"Polygon","arcs":[[-13276,-13275,-12001,14037,4064]],"properties":{"prefix":"2.2.1.7.3.4.2"}},{"type":"Polygon","arcs":[[-9054,-7584,-7583,-7590,14038,-2059,-2058]],"properties":{"prefix":"7.5.3.6.1.3.2"}},{"type":"Polygon","arcs":[[14039,-1805,2151,2152,9696]],"properties":{"prefix":"1.5.1.3.3.2.1"}},{"type":"Polygon","arcs":[[-8163,-11139,14040]],"properties":{"prefix":"7.6.4.2.3.2.4"}},{"type":"Polygon","arcs":[[14041,10026,10027,416]],"properties":{"prefix":"2.4.1.5.3.1.3"}},{"type":"Polygon","arcs":[[7560,14042,-12525,4867,7559]],"properties":{"prefix":"9.3.3.1.4.1.1"}},{"type":"Polygon","arcs":[[14043,-12264,4553,920,921,1591]],"properties":{"prefix":"9.8.2.1.1.3.1"}},{"type":"Polygon","arcs":[[14044,12034,4220,12035,7214,7215,7216,-2662,12036]],"properties":{"prefix":"2.6.6.3.1.2.1"}},{"type":"Polygon","arcs":[[14045,13365,3922,-1812,-12135,-4435,-4434,9778,9779]],"properties":{"prefix":"9.3.5.4.2.1.1"}},{"type":"Polygon","arcs":[[-11222,11717,537,538,11718,14046]],"properties":{"prefix":"1.8.3.6.1.1.2"}},{"type":"Polygon","arcs":[[-524,-523,-522,14047,11554]],"properties":{"prefix":"2.2.2.3.1.2.1"}},{"type":"Polygon","arcs":[[14048,14049,-10677,-3363,-3362]],"properties":{"prefix":"7.3.1.4.1.3.3"}},{"type":"Polygon","arcs":[[11550,-1233,-1232,14050]],"properties":{"prefix":"7.2.7.4.2.3.3"}},{"type":"Polygon","arcs":[[2856,2857,2858,2859,2860,11671,11672,11673,14051]],"properties":{"prefix":"7.4.3.1.1.1.1"}},{"type":"Polygon","arcs":[[5756,-2404,-2403,-8150,-8149,-8148,11764,14052]],"properties":{"prefix":"5.2.1.2.7.2.2"}},{"type":"Polygon","arcs":[[-6022,-6021,-6020,-12854,-10541,-11541,14053]],"properties":{"prefix":"1.5.1.1.2.3.1"}},{"type":"Polygon","arcs":[[8473,14054,13269,-2463,8471,8472]],"properties":{"prefix":"4.2.1.1.5.2.1"}},{"type":"Polygon","arcs":[[-3589,14055,13437,7801,7802,-3463,-3462,-3461]],"properties":{"prefix":"7.6.5.1.1.1.1"}},{"type":"Polygon","arcs":[[-6150,-3624,-4837,14056]],"properties":{"prefix":"3.4.4.6.3.2.3"}},{"type":"Polygon","arcs":[[12369,12370,14057]],"properties":{"prefix":"9.1.5.1.2.1.3"}},{"type":"Polygon","arcs":[[6841,6842,-6246,-3490,11167,14058]],"properties":{"prefix":"6.3.4.3.1.1.1"}},{"type":"Polygon","arcs":[[3928,950,951,14059,-10933]],"properties":{"prefix":"9.3.5.5.3.3.2"}},{"type":"Polygon","arcs":[[14060,-5462,-5461]],"properties":{"prefix":"7.6.1.3.4.3.1"}},{"type":"Polygon","arcs":[[11904,14061,2597,14062]],"properties":{"prefix":"7.2.1.5.2.1.1"}},{"type":"Polygon","arcs":[[4053,4054,4055,14063,13275,4065,-13829]],"properties":{"prefix":"2.2.1.7.3.2.2"}},{"type":"Polygon","arcs":[[4025,4026,14064,-7624,14065]],"properties":{"prefix":"9.3.1.6.3.4.2"}},{"type":"Polygon","arcs":[[3566,3567,12505,12506,14066]],"properties":{"prefix":"7.6.4.1.1.1.3"}},{"type":"Polygon","arcs":[[7268,-10799,12648,14067]],"properties":{"prefix":"2.6.6.2.5.3.1"}},{"type":"Polygon","arcs":[[14068,9203,-5211,983,9204,2114,2115]],"properties":{"prefix":"4.4.4.5.1.2.1"}},{"type":"Polygon","arcs":[[-12343,14069,4240,4241,4242,-12344]],"properties":{"prefix":"7.4.2.1.2.2.1"}},{"type":"Polygon","arcs":[[-11071,14070,-5672,-5671,14071]],"properties":{"prefix":"7.2.4.4.3.4.1"}},{"type":"Polygon","arcs":[[-8507,-9809,-9808,14072,6984,2670]],"properties":{"prefix":"2.6.5.2.1.3.2"}},{"type":"Polygon","arcs":[[4493,14073,-12675,14074,4492]],"properties":{"prefix":"7.6.4.2.4.2.1"}},{"type":"Polygon","arcs":[[11515,-9616,-2034,-2033,-2032,14075]],"properties":{"prefix":"8.2.1.4.1.3.1"}},{"type":"Polygon","arcs":[[14076,226,14077,9952]],"properties":{"prefix":"7.7.2.3.1.2.3"}},{"type":"Polygon","arcs":[[14078,-11739,-4071,-4070,7466]],"properties":{"prefix":"2.2.2.1.1.1.1"}},{"type":"Polygon","arcs":[[142,-3405,-3404,8118,14079]],"properties":{"prefix":"6.3.2.2.2.2.2"}},{"type":"Polygon","arcs":[[-11702,13140,8293,8294,-12177,13141,2032,14080]],"properties":{"prefix":"8.1.5.5.5.3.1"}},{"type":"Polygon","arcs":[[-10878,14081,-2591,6495,14082]],"properties":{"prefix":"7.2.2.4.1.4.1"}},{"type":"Polygon","arcs":[[14083,14084]],"properties":{"prefix":"7.8.1.4.1.2.1"}},{"type":"Polygon","arcs":[[14085,-8972,11940,11941]],"properties":{"prefix":"2.3.3.4.2.3.1"}},{"type":"Polygon","arcs":[[14086,14087,14088,1360,14089]],"properties":{"prefix":"7.3.3.1.1.2.2"}},{"type":"Polygon","arcs":[[-1146,-1145,-12762,-4952,-5746,-11392,14090]],"properties":{"prefix":"7.5.3.2.3.3.1"}},{"type":"Polygon","arcs":[[14091,445,14092,11215]],"properties":{"prefix":"1.9.1.3.1.2.1"}},{"type":"Polygon","arcs":[[9130,9131,9132,9133,9134,-1449,-1448,1982,14093]],"properties":{"prefix":"1.2.1.4.3.1.1"}},{"type":"Polygon","arcs":[[-3608,14094,-10504,-10503,14095,-4323,-3611,-3610,-3609]],"properties":{"prefix":"3.4.2.6.1.2.1"}},{"type":"Polygon","arcs":[[14096,-2241,-2240,-1893,8657]],"properties":{"prefix":"2.3.3.4.5.1.2"}},{"type":"Polygon","arcs":[[14097,-11154,-2101,14098,-11974,-6040,8503]],"properties":{"prefix":"4.3.2.2.1.2.1"}},{"type":"Polygon","arcs":[[-8802,-8801,14099,-7734,5482,5483,9929]],"properties":{"prefix":"8.5.2.2.3.2.1"}},{"type":"Polygon","arcs":[[14100,11627,-2483,11628,-8621,-8620,-6487,-5939]],"properties":{"prefix":"7.2.2.6.1.1.3"}},{"type":"Polygon","arcs":[[14101,11744,-7325,5654]],"properties":{"prefix":"5.3.2.1.3.2.1"}},{"type":"Polygon","arcs":[[-3811,-3810,-3882,13389,14102]],"properties":{"prefix":"2.4.1.7.2.2.1"}},{"type":"Polygon","arcs":[[9115,9116,9117,1099,14103]],"properties":{"prefix":"5.3.6.3.6.2.3"}},{"type":"Polygon","arcs":[[-7648,960,961,4425,-7355,14104]],"properties":{"prefix":"9.3.5.5.2.1.1"}},{"type":"Polygon","arcs":[[14105,12483,7484,-6966,-6965,-6964,7485]],"properties":{"prefix":"4.1.2.4.1.1.1"}},{"type":"Polygon","arcs":[[14106,-10516,-10515,12012,1906,1907]],"properties":{"prefix":"2.5.1.1.2.2.1"}},{"type":"Polygon","arcs":[[-1124,14107,13514,8697,6276,6277,8698,8699,14108,-13002,-1125]],"properties":{"prefix":"7.3.2.4.1.2.1"}},{"type":"Polygon","arcs":[[4461,-7772,-12936,14109]],"properties":{"prefix":"2.1.2.1.5.3.1"}},{"type":"Polygon","arcs":[[-1113,14110,-14049,-3361]],"properties":{"prefix":"7.3.1.4.1.3.1"}},{"type":"Polygon","arcs":[[11471,-5124,7995,11472,14111]],"properties":{"prefix":"7.2.1.3.1.2.1"}},{"type":"Polygon","arcs":[[14112,9856,-7919,14113,14114]],"properties":{"prefix":"6.2.1.2.3.1.2"}},{"type":"Polygon","arcs":[[14115,3680,-6679,-6678,7698]],"properties":{"prefix":"1.9.1.3.2.2.1"}},{"type":"Polygon","arcs":[[-4673,-4672,-4671,14116,-13772,14117]],"properties":{"prefix":"2.4.1.3.1.2.1"}},{"type":"Polygon","arcs":[[14118,12695,-6547,-582,-581,-580]],"properties":{"prefix":"2.4.1.4.3.2.2"}},{"type":"Polygon","arcs":[[11298,11299,6452,-875,-874,-873,-872,-871,14119]],"properties":{"prefix":"4.1.2.1.1.4.2"}},{"type":"Polygon","arcs":[[-6126,6618,-11121,-6109,-6128,-6127]],"properties":{"prefix":"6.3.3.3.1.5.1"}},{"type":"Polygon","arcs":[[-3206,14120,13685,9255,6352,6353,-3207]],"properties":{"prefix":"7.6.3.1.3.1.2"}},{"type":"Polygon","arcs":[[14121,-3989,-3931,-3945]],"properties":{"prefix":"4.8.2.4.2.2.1"}},{"type":"Polygon","arcs":[[14122,32,-11539,13297]],"properties":{"prefix":"1.5.1.1.2.1.2"}},{"type":"Polygon","arcs":[[-5055,-5054,-5053,-5052,10965,10966,10967,14123]],"properties":{"prefix":"6.1.1.2.1.1.1"}},{"type":"Polygon","arcs":[[12878,-5403,-5402,-5401,-5400,9743,14124]],"properties":{"prefix":"2.4.1.6.3.1.1"}},{"type":"Polygon","arcs":[[3653,-7698,3662,14125]],"properties":{"prefix":"7.8.2.1.3.1.2"}},{"type":"Polygon","arcs":[[-2810,14126,11881,-2678,11882,11883]],"properties":{"prefix":"2.6.2.5.1.4.1"}},{"type":"Polygon","arcs":[[14127,14128,-785,-4450,14129,-14085]],"properties":{"prefix":"7.8.1.4.1.2.3"}},{"type":"Polygon","arcs":[[9596,-11783,-11782,14130]],"properties":{"prefix":"2.6.2.4.1.1.1"}},{"type":"Polygon","arcs":[[1309,1310,-9937,14131,-13956]],"properties":{"prefix":"7.3.3.2.3.6.4"}},{"type":"Polygon","arcs":[[3416,3417,-6111,-11120,14132,6622,14133,14134]],"properties":{"prefix":"6.3.3.3.1.2.3"}},{"type":"Polygon","arcs":[[1282,1283,1284,8175,8176,12449,14135]],"properties":{"prefix":"7.3.2.1.1.1.1"}},{"type":"Polygon","arcs":[[10059,-8447,14136]],"properties":{"prefix":"7.5.3.3.4.1.2"}},{"type":"Polygon","arcs":[[-1241,14137,14138,-12488,-1242]],"properties":{"prefix":"7.2.7.4.4.1.2"}},{"type":"Polygon","arcs":[[-9367,14139,-1946]],"properties":{"prefix":"7.1.1.3.1.1.1"}},{"type":"Polygon","arcs":[[-4723,-8190,14140]],"properties":{"prefix":"7.4.8.3.3.2.1"}},{"type":"Polygon","arcs":[[10992,10993,10994,14141]],"properties":{"prefix":"7.2.2.4.4.2.1"}},{"type":"Polygon","arcs":[[14142,14143,408,14144]],"properties":{"prefix":"2.4.1.7.1.4.1"}},{"type":"Polygon","arcs":[[3054,-6798,-6370,-6378,-6377,14145,3053]],"properties":{"prefix":"7.4.7.1.1.2.1"}},{"type":"Polygon","arcs":[[14146,12750,12751,12752]],"properties":{"prefix":"7.1.1.1.2.2.1"}},{"type":"Polygon","arcs":[[-10843,-10842,-10841,375,14147,12220]],"properties":{"prefix":"2.6.4.2.4.1.1"}},{"type":"Polygon","arcs":[[-10589,11799,14148]],"properties":{"prefix":"2.3.3.6.3.2.2"}},{"type":"Polygon","arcs":[[14149,-7372,5870,14150]],"properties":{"prefix":"6.2.1.4.1.2.1"}},{"type":"Polygon","arcs":[[-10786,14151,5280,12646,-10787]],"properties":{"prefix":"2.4.6.1.1.3.1"}},{"type":"Polygon","arcs":[[5173,14152,12310,12311,-5139]],"properties":{"prefix":"3.4.2.5.2.1.2"}},{"type":"Polygon","arcs":[[89,-8152,14153,14154]],"properties":{"prefix":"5.2.1.2.5.2.2"}},{"type":"Polygon","arcs":[[-12086,13563,4095,-9520,-9521,-1442,-1441,14155]],"properties":{"prefix":"1.1.2.1.2.2.1"}},{"type":"Polygon","arcs":[[-1978,-9476,14156]],"properties":{"prefix":"7.5.2.1.1.2.1"}},{"type":"Polygon","arcs":[[14157,-1272,9171,14158]],"properties":{"prefix":"7.2.4.2.2.3.2"}},{"type":"Polygon","arcs":[[-9064,-532,14159,14160,-6425,-6424,-6423,-9067,-11412]],"properties":{"prefix":"2.3.1.2.1.1.3"}},{"type":"Polygon","arcs":[[-1574,3245,12427,14161,-1575]],"properties":{"prefix":"9.4.2.5.2.2.1"}},{"type":"Polygon","arcs":[[14162,4616,4617,4618,7403,7404,7405]],"properties":{"prefix":"8.2.1.5.1.3.3"}},{"type":"Polygon","arcs":[[14163,12055,7934,7935,3018]],"properties":{"prefix":"5.3.2.2.4.3.1"}},{"type":"Polygon","arcs":[[14164,-10674,-12685,522]],"properties":{"prefix":"1.9.2.7.1.2.2"}},{"type":"Polygon","arcs":[[13317,-7986,-7985,-10033,1018,1019,14165]],"properties":{"prefix":"4.8.3.2.1.2.1"}},{"type":"Polygon","arcs":[[-5972,-5971,-6523,-12587,8265,8266,14166]],"properties":{"prefix":"7.4.4.4.2.2.1"}},{"type":"Polygon","arcs":[[-10548,8644,8645,-14001,14167,-4248,-4247,14168]],"properties":{"prefix":"7.4.4.1.1.2.2"}},{"type":"Polygon","arcs":[[-11779,-7949,6235,6236,-7836,-7591,14169]],"properties":{"prefix":"9.4.2.3.5.1.1"}},{"type":"Polygon","arcs":[[-3410,7439,5828,14170,-10746]],"properties":{"prefix":"6.3.5.2.3.5.1"}},{"type":"Polygon","arcs":[[14171,-11616,11,14172,-1997,-1996,-11619]],"properties":{"prefix":"1.1.2.2.3.2.1"}},{"type":"Polygon","arcs":[[153,-8748,14173,10193]],"properties":{"prefix":"6.3.5.5.1.1.1"}},{"type":"Polygon","arcs":[[12670,-2697,-2696,-2695,14174,14175]],"properties":{"prefix":"2.6.6.1.2.1.3"}},{"type":"Polygon","arcs":[[14176,14177,7990,-5496,-5495,4284]],"properties":{"prefix":"5.3.3.2.3.1.2"}},{"type":"Polygon","arcs":[[14178,7083,7084,-10773]],"properties":{"prefix":"8.1.3.2.4.4.1"}},{"type":"Polygon","arcs":[[14179,8396,-3756,-3755,-3754,-3753,14180]],"properties":{"prefix":"8.2.2.1.1.1.3"}},{"type":"Polygon","arcs":[[14181,-2748,-5603,-12910,-12914]],"properties":{"prefix":"4.1.6.1.1.1.4"}},{"type":"Polygon","arcs":[[14182,12411,-11460,14183,12413,-5868,-5867,-5866]],"properties":{"prefix":"6.2.1.6.1.1.1"}},{"type":"Polygon","arcs":[[11355,11356,6315,14184]],"properties":{"prefix":"9.1.5.3.1.2.2"}},{"type":"Polygon","arcs":[[14185,14186,-4182,-2161,-2160,-11820]],"properties":{"prefix":"1.7.1.1.2.2.2"}},{"type":"Polygon","arcs":[[14187,11337,8228,8229,1864,11338,14188]],"properties":{"prefix":"5.1.3.2.5.2.1"}},{"type":"Polygon","arcs":[[2182,2183,2184,12244,-6851,-6850,14189]],"properties":{"prefix":"2.2.1.6.2.1.4"}},{"type":"Polygon","arcs":[[2632,14190,13498,4641,4642,4643,4644,2631]],"properties":{"prefix":"1.7.2.1.2.3.3"}},{"type":"Polygon","arcs":[[14191,14192,14193,5982,5983]],"properties":{"prefix":"7.4.4.3.1.1.2"}},{"type":"Polygon","arcs":[[14194,9769,-11613,-11612,-11611]],"properties":{"prefix":"9.3.4.5.1.4.1"}},{"type":"Polygon","arcs":[[12179,8668,12180,12181,-4171,14195]],"properties":{"prefix":"8.2.2.2.3.1.1"}},{"type":"Polygon","arcs":[[14196,11127,7966,-6692,4138,4139,4140,4141,4142,-2599,-2598,-2597,-2596,4143,-6699]],"properties":{"prefix":"7.2.4.7.1.1.2"}},{"type":"Polygon","arcs":[[14197,14198,2486,7613,2495,-11396]],"properties":{"prefix":"7.2.3.2.3.3.3"}},{"type":"Polygon","arcs":[[13488,-7208,-1709,-13245,6901,-12813]],"properties":{"prefix":"2.3.2.3.3.2.1"}},{"type":"Polygon","arcs":[[-11205,3605,3606,3607,13394,14199]],"properties":{"prefix":"3.4.1.2.1.1.3"}},{"type":"Polygon","arcs":[[-11034,-11407,-11410,14200,6137]],"properties":{"prefix":"5.1.2.4.4.1.1"}},{"type":"Polygon","arcs":[[14201,-12793,767,768,9016]],"properties":{"prefix":"8.1.3.2.1.1.1"}},{"type":"Polygon","arcs":[[11475,-14032,14202,3212,14203]],"properties":{"prefix":"7.6.2.4.1.1.3"}},{"type":"Polygon","arcs":[[14204,5147,11587,-9716,-9715,1214,1215]],"properties":{"prefix":"6.3.5.1.1.1.2"}},{"type":"Polygon","arcs":[[-621,-620,-619,7925,7926,7927,14205]],"properties":{"prefix":"7.8.4.1.1.1.1"}},{"type":"Polygon","arcs":[[-5234,14206,-7674,1778,14207,-8773]],"properties":{"prefix":"6.2.1.6.3.1.1"}},{"type":"Polygon","arcs":[[-12867,13146,14208]],"properties":{"prefix":"9.1.3.1.3.2.1"}},{"type":"Polygon","arcs":[[14209,11465,9556,-3880,14210,-14143]],"properties":{"prefix":"2.4.1.7.1.4.3"}},{"type":"Polygon","arcs":[[13694,8835,4831,4832,4833,14211]],"properties":{"prefix":"3.4.4.5.3.1.1"}},{"type":"Polygon","arcs":[[14212,6916,7648,7649,14213]],"properties":{"prefix":"8.2.1.1.1.3.2"}},{"type":"Polygon","arcs":[[-7902,14214,-1526,-1525]],"properties":{"prefix":"4.6.1.2.1.6.1"}},{"type":"Polygon","arcs":[[10788,10789,14215,3504]],"properties":{"prefix":"6.3.5.5.5.1.1"}},{"type":"Polygon","arcs":[[-12521,14216,7174,7175,13556]],"properties":{"prefix":"1.9.2.3.1.2.1"}},{"type":"Polygon","arcs":[[14217,4014,4015,4016,-12799,-7758,-7757,14218]],"properties":{"prefix":"9.3.1.6.2.2.2"}},{"type":"Polygon","arcs":[[6424,6425,6426,6427,14219]],"properties":{"prefix":"2.3.1.1.1.4.1"}},{"type":"Polygon","arcs":[[5711,14220,12004,8607,-831,-830,12005,5710]],"properties":{"prefix":"4.1.3.2.2.2.1"}},{"type":"Polygon","arcs":[[-3414,-3413,-3412,14221,14222]],"properties":{"prefix":"6.3.5.2.3.2.1"}},{"type":"Polygon","arcs":[[11721,-3054,-3053,8230,8231,8232,-8033,11722,11723,14223]],"properties":{"prefix":"7.4.6.4.2.2.1"}},{"type":"Polygon","arcs":[[-1974,-1973,12077,14224]],"properties":{"prefix":"7.5.2.1.2.4.1"}},{"type":"Polygon","arcs":[[5625,202,11950,-9143,14225]],"properties":{"prefix":"7.6.2.4.1.3.2"}},{"type":"Polygon","arcs":[[-7026,-8992,-5016,-662,14226]],"properties":{"prefix":"9.1.2.2.2.1.2"}},{"type":"Polygon","arcs":[[10714,10715,10716,701,702,14227]],"properties":{"prefix":"8.2.1.8.1.1.3"}},{"type":"Polygon","arcs":[[12679,-3104,-3103,-3102,14228,-7853]],"properties":{"prefix":"9.1.6.1.4.1.1"}},{"type":"Polygon","arcs":[[-5788,-5787,-8990,14229]],"properties":{"prefix":"7.5.6.2.2.2.1"}},{"type":"Polygon","arcs":[[14230,14231,-528,-527,-526,-2198,13466]],"properties":{"prefix":"2.3.1.2.1.1.1"}},{"type":"Polygon","arcs":[[13040,13041,4614,4615,-14163,7406,14232]],"properties":{"prefix":"8.2.1.5.1.3.1"}},{"type":"Polygon","arcs":[[14233,13718,7352,7353,7354,4426,4427]],"properties":{"prefix":"9.3.5.5.1.3.4"}},{"type":"Polygon","arcs":[[14234,13474,14235,553,5696]],"properties":{"prefix":"1.3.2.6.3.3.1"}},{"type":"Polygon","arcs":[[14236,11451,1005,1006,1007,1008,-7655,-7654,1013,-5994,14237]],"properties":{"prefix":"4.8.3.3.1.3.3"}},{"type":"Polygon","arcs":[[-4662,10302,14238]],"properties":{"prefix":"2.4.1.1.1.4.3"}},{"type":"Polygon","arcs":[[-3549,14239,12806,14240]],"properties":{"prefix":"6.4.3.3.5.2.2"}},{"type":"Polygon","arcs":[[-8913,-10338,-2664,14241]],"properties":{"prefix":"2.6.6.3.3.2.1"}},{"type":"Polygon","arcs":[[-7849,-10335,-10334,14242]],"properties":{"prefix":"9.1.6.1.2.1.1"}},{"type":"Polygon","arcs":[[14243,12665,5349,12666,14244]],"properties":{"prefix":"2.6.6.1.2.1.1"}},{"type":"Polygon","arcs":[[-8573,-3049,-3048,-3047,-8898,-8897,14245]],"properties":{"prefix":"7.4.6.4.5.2.2"}},{"type":"Polygon","arcs":[[-8274,-11082,-11081,-11080,14246]],"properties":{"prefix":"4.1.2.4.2.1.1"}},{"type":"Polygon","arcs":[[-4457,4936,4937,14247]],"properties":{"prefix":"7.5.3.3.5.1.2"}},{"type":"Polygon","arcs":[[10277,4124,4125,-8740,4977,14248,10609]],"properties":{"prefix":"7.2.4.3.3.1.1"}},{"type":"Polygon","arcs":[[-14181,-3752,5290,8397,11160,14249]],"properties":{"prefix":"8.2.2.1.1.1.1"}},{"type":"Polygon","arcs":[[14250,-1747,-1746,14251]],"properties":{"prefix":"2.2.2.1.2.1.1"}},{"type":"Polygon","arcs":[[14252,14253,-1253,-1252,6799,14254]],"properties":{"prefix":"7.3.1.2.3.2.3"}},{"type":"Polygon","arcs":[[-985,-984,-983,-9696,-9695,14255]],"properties":{"prefix":"5.1.3.1.1.1.2"}},{"type":"Polygon","arcs":[[14256,12832,-981,-4599,-4598,-4597,14257]],"properties":{"prefix":"5.1.3.1.2.1.2"}},{"type":"Polygon","arcs":[[11177,4674,4675,8534,4678,4331,4679,14258]],"properties":{"prefix":"2.4.1.2.2.3.1"}},{"type":"Polygon","arcs":[[8892,14259,8891]],"properties":{"prefix":"4.6.1.1.2.1.1"}},{"type":"Polygon","arcs":[[-1284,2484,2485,-14199,14260,14261]],"properties":{"prefix":"7.2.3.2.3.3.1"}},{"type":"Polygon","arcs":[[14262,-7350,7646,4423,-10937]],"properties":{"prefix":"9.3.5.5.3.1.1"}},{"type":"Polygon","arcs":[[175,-11756,-11755,14263]],"properties":{"prefix":"6.4.3.3.1.4.2"}},{"type":"Polygon","arcs":[[-6716,-3470,10087,10088,10089,14264]],"properties":{"prefix":"1.3.2.4.1.2.2"}},{"type":"Polygon","arcs":[[3691,12295,3694,14265,14266,14267]],"properties":{"prefix":"3.4.3.2.4.2.4"}},{"type":"Polygon","arcs":[[14268,-11657,7978,6949]],"properties":{"prefix":"8.1.5.2.2.2.1"}},{"type":"Polygon","arcs":[[6918,6919,6920,7885,14269]],"properties":{"prefix":"8.2.1.1.2.1.1"}},{"type":"Polygon","arcs":[[14270,10442,-6163,-4825,-11925,-3334,-3333,-3332,14271]],"properties":{"prefix":"3.4.4.8.1.1.2"}},{"type":"Polygon","arcs":[[12115,12116,14272,3256,14273]],"properties":{"prefix":"9.4.2.4.1.2.1"}},{"type":"Polygon","arcs":[[232,8550,12834,14274]],"properties":{"prefix":"7.7.2.3.3.3.2"}},{"type":"Polygon","arcs":[[2070,193,7942,-7750,14275]],"properties":{"prefix":"7.6.1.3.2.3.1"}},{"type":"Polygon","arcs":[[10882,14276,10887,10888,2791,2792,14277]],"properties":{"prefix":"2.6.3.1.3.1.1"}},{"type":"Polygon","arcs":[[1390,14,-11595,-11596,3387,3388,14278]],"properties":{"prefix":"1.3.3.6.4.1.2"}},{"type":"Polygon","arcs":[[11434,11435,11436,2846,14279]],"properties":{"prefix":"2.6.3.1.3.3.1"}},{"type":"Polygon","arcs":[[14280,9532,5789,-13127,-10728,-2074,-2073]],"properties":{"prefix":"7.5.6.3.3.1.1"}},{"type":"Polygon","arcs":[[-5957,223,14281,14282]],"properties":{"prefix":"7.7.2.3.1.1.1"}},{"type":"Polygon","arcs":[[14283,10734,10735,965,966,967,10736]],"properties":{"prefix":"9.3.5.1.2.3.1"}},{"type":"Polygon","arcs":[[8706,8707,6726,564,14284]],"properties":{"prefix":"1.3.2.2.3.1.1"}},{"type":"Polygon","arcs":[[-3573,-3572,10945,14285,14286,-3574]],"properties":{"prefix":"7.6.3.4.2.3.2"}},{"type":"Polygon","arcs":[[14287,5850,5851,-4276,-4275,-4274,11233,-10508]],"properties":{"prefix":"5.3.5.2.1.2.1"}},{"type":"Polygon","arcs":[[-4256,-2859,8982,8983,14288]],"properties":{"prefix":"7.4.6.2.3.1.1"}},{"type":"Polygon","arcs":[[-7861,-10981,2605,-1217,-1216,14289]],"properties":{"prefix":"7.2.1.4.3.1.1"}},{"type":"Polygon","arcs":[[-3411,10745,10746,10747,14290,-14222]],"properties":{"prefix":"6.3.5.2.3.2.3"}},{"type":"Polygon","arcs":[[13076,-1616,-11086,-6654,14291]],"properties":{"prefix":"7.6.6.2.1.1.1"}},{"type":"Polygon","arcs":[[14292,11113,11114,9508,9509]],"properties":{"prefix":"4.6.1.1.6.1.1"}},{"type":"Polygon","arcs":[[8437,12213,14293,12212,3757,8436]],"properties":{"prefix":"8.2.1.8.2.1.3"}},{"type":"Polygon","arcs":[[230,11936,11937,6891,11938,14294]],"properties":{"prefix":"7.7.2.3.3.1.1"}},{"type":"Polygon","arcs":[[14295,118,1070,1071,12984,-7939]],"properties":{"prefix":"5.3.2.2.3.3.1"}},{"type":"Polygon","arcs":[[10169,5034,10170,10171,14296]],"properties":{"prefix":"2.6.4.2.1.1.1"}},{"type":"Polygon","arcs":[[9497,9498,9499,14297]],"properties":{"prefix":"8.1.3.1.3.2.2"}},{"type":"Polygon","arcs":[[3923,3924,3925,-4425,-4424,-4423,14298,-1810]],"properties":{"prefix":"9.3.5.4.2.2.1"}},{"type":"Polygon","arcs":[[14299,3889,-3172,-3171,-3170,-3169,9940,13682]],"properties":{"prefix":"7.5.2.2.3.1.2"}},{"type":"Polygon","arcs":[[13421,9378,2319,2320,2321,14300]],"properties":{"prefix":"2.3.3.3.2.1.2"}},{"type":"Polygon","arcs":[[14301,9013,9014,9015,7086]],"properties":{"prefix":"8.1.3.2.1.3.3"}},{"type":"Polygon","arcs":[[14302,11597,9481,11598,11599,14303]],"properties":{"prefix":"7.5.2.1.2.6.2"}},{"type":"Polygon","arcs":[[13284,-4820,-4819,-4818,-4817,7255,7256,7257,14304]],"properties":{"prefix":"3.4.4.2.1.1.2"}},{"type":"Polygon","arcs":[[14305,240,14306,-9987]],"properties":{"prefix":"7.8.1.3.1.2.1"}},{"type":"Polygon","arcs":[[13113,14307,-11575,-12865,5007,5008,5009,5010]],"properties":{"prefix":"9.1.2.3.2.3.1"}},{"type":"Polygon","arcs":[[-5816,-5815,-11308,13576,14308]],"properties":{"prefix":"5.3.1.2.2.2.4"}},{"type":"Polygon","arcs":[[14309,-9475,14310]],"properties":{"prefix":"2.6.2.1.2.2.2"}},{"type":"Polygon","arcs":[[-3798,-3947,9586,9587,12569,14311,14312,-3864]],"properties":{"prefix":"2.4.5.1.4.2.2"}},{"type":"Polygon","arcs":[[-6957,-6956,-11635,14313,3373]],"properties":{"prefix":"1.3.3.4.1.2.1"}},{"type":"Polygon","arcs":[[14314,1274,-4483,-4482,-6799,-6813]],"properties":{"prefix":"7.3.1.1.3.1.1"}},{"type":"Polygon","arcs":[[-7666,14315,14316]],"properties":{"prefix":"5.1.2.4.3.1.1"}},{"type":"Polygon","arcs":[[6075,14317,14318,6074]],"properties":{"prefix":"7.2.3.1.2.4.1"}},{"type":"Polygon","arcs":[[2055,2056,2057,6933,14319]],"properties":{"prefix":"7.6.1.1.1.3.1"}},{"type":"Polygon","arcs":[[14320,3067,3068,-5156,14321]],"properties":{"prefix":"7.4.7.3.4.1.1"}},{"type":"Polygon","arcs":[[-7244,-7243,-7248,3184,3185,14322]],"properties":{"prefix":"7.5.4.2.1.2.1"}},{"type":"Polygon","arcs":[[-2828,4234,5039,5040,5041,14323,-2829]],"properties":{"prefix":"2.6.4.2.5.1.1"}},{"type":"Polygon","arcs":[[14324,14325,8522,-2394,-2393,14326]],"properties":{"prefix":"5.2.1.2.4.3.4"}},{"type":"Polygon","arcs":[[208,13289,14327]],"properties":{"prefix":"7.6.2.5.1.3.2"}},{"type":"Polygon","arcs":[[9444,11793,-5659,-5658,14328]],"properties":{"prefix":"5.3.2.2.1.1.2"}},{"type":"Polygon","arcs":[[14329,14330,8943,8944,-1423]],"properties":{"prefix":"1.8.3.5.1.1.3"}},{"type":"Polygon","arcs":[[-6715,1124,1125,14331,-11579]],"properties":{"prefix":"5.1.1.1.2.2.3"}},{"type":"Polygon","arcs":[[14332,-11073,11805,14333,-5667,-5666,-4981]],"properties":{"prefix":"7.2.4.4.3.3.1"}},{"type":"Polygon","arcs":[[-12421,13251,998,5988,5989,14334]],"properties":{"prefix":"4.8.3.2.4.2.2"}},{"type":"Polygon","arcs":[[-5578,-5577,-5576,-11330,13190,14335,-5579]],"properties":{"prefix":"3.4.4.2.5.1.2"}},{"type":"Polygon","arcs":[[14336,-10318,5309,-5072,-5071,-5070]],"properties":{"prefix":"8.1.4.3.2.2.1"}},{"type":"Polygon","arcs":[[14337,10763,8618,-2476,10764,10765,10766,-6490,-6489,-6488,8619]],"properties":{"prefix":"7.2.2.6.4.1.1"}},{"type":"Polygon","arcs":[[-8714,-8718,8812,11014,14338]],"properties":{"prefix":"4.1.2.5.4.1.1"}},{"type":"Polygon","arcs":[[-14294,12214,14339,12211]],"properties":{"prefix":"8.2.1.8.2.1.1"}},{"type":"Polygon","arcs":[[-11590,-3808,-3807,14340]],"properties":{"prefix":"2.4.4.2.4.2.2"}},{"type":"Polygon","arcs":[[14341,3536,6565,8129,8130,-6048,14342]],"properties":{"prefix":"4.3.2.2.3.2.3"}},{"type":"Polygon","arcs":[[-4097,-4096,-4095,-7924,-7923,14343]],"properties":{"prefix":"1.1.1.1.2.2.4"}},{"type":"Polygon","arcs":[[-1901,14344,14345,-12624]],"properties":{"prefix":"2.6.1.1.1.1.2"}},{"type":"Polygon","arcs":[[8737,12062,14346,14347]],"properties":{"prefix":"7.4.8.5.1.1.1"}},{"type":"Polygon","arcs":[[14348,-4438,-4437,11698]],"properties":{"prefix":"7.8.1.1.3.1.1"}},{"type":"Polygon","arcs":[[10463,-11585,-11584,14349,-9644]],"properties":{"prefix":"2.6.1.1.2.1.2"}},{"type":"Polygon","arcs":[[-2952,-2951,-8253,14350]],"properties":{"prefix":"9.1.2.3.2.4.1"}},{"type":"Polygon","arcs":[[-4147,14351,13525,8818,-12469,6493,6494]],"properties":{"prefix":"7.2.2.4.2.2.1"}},{"type":"Polygon","arcs":[[14352,12110,14353]],"properties":{"prefix":"7.6.3.1.4.1.2"}},{"type":"Polygon","arcs":[[-2300,-2299,-2298,-2297,-1916,-1915,-1914,14354]],"properties":{"prefix":"2.4.6.2.1.1.4"}},{"type":"Polygon","arcs":[[-13086,-11989,14355]],"properties":{"prefix":"7.2.7.3.1.3.2"}},{"type":"Polygon","arcs":[[-8004,14356,-12054,-2082,1028,1029,-8005]],"properties":{"prefix":"4.3.4.6.3.3.1"}},{"type":"Polygon","arcs":[[11401,11402,14357]],"properties":{"prefix":"6.3.5.5.2.1.1"}},{"type":"Polygon","arcs":[[12795,-5033,-7660,-7659,-7658,-8044,14358,14359,14360,-2843,-2842,-2841,-2840,14361]],"properties":{"prefix":"2.6.4.1.1.1.1"}},{"type":"Polygon","arcs":[[5442,5443,5444,-3228,14362]],"properties":{"prefix":"7.6.1.4.1.4.1"}},{"type":"Polygon","arcs":[[13408,14363,-11241,-916,-4721]],"properties":{"prefix":"7.4.8.5.3.1.1"}},{"type":"Polygon","arcs":[[5682,5683,5684,14364]],"properties":{"prefix":"9.1.2.4.2.4.2"}},{"type":"Polygon","arcs":[[-13041,-13040,-11053,-11056,14365]],"properties":{"prefix":"8.2.1.5.1.1.2"}},{"type":"Polygon","arcs":[[-1605,-7452,-7451,14366]],"properties":{"prefix":"9.4.4.2.1.2.3"}},{"type":"Polygon","arcs":[[-2091,14367,14368,-2092]],"properties":{"prefix":"4.3.3.1.2.5.3"}},{"type":"Polygon","arcs":[[-4692,14369,13258,14370]],"properties":{"prefix":"9.1.7.1.2.1.1"}},{"type":"Polygon","arcs":[[-6580,-7974,-7973,14371]],"properties":{"prefix":"8.1.5.2.1.4.3"}},{"type":"Polygon","arcs":[[-5155,-5154,14372,-14322]],"properties":{"prefix":"7.4.7.3.4.1.3"}},{"type":"Polygon","arcs":[[-5217,-5216,11309,14373]],"properties":{"prefix":"1.7.3.1.1.3.1"}},{"type":"Polygon","arcs":[[14374,979,980,981,982,5210,5211]],"properties":{"prefix":"4.4.4.4.5.2.2"}},{"type":"Polygon","arcs":[[9729,-4130,-4129,14375,-11984,-13089,14376]],"properties":{"prefix":"7.2.7.3.1.1.1"}},{"type":"Polygon","arcs":[[14377,14378,-5277,1796,1797,1798,12155]],"properties":{"prefix":"6.2.1.2.5.4.2"}},{"type":"Polygon","arcs":[[4963,14379,8258,8259,4960,4961,4962]],"properties":{"prefix":"7.7.1.3.3.1.2"}},{"type":"Polygon","arcs":[[14380,-8553,-8213,-8219,-8218,2705,2706]],"properties":{"prefix":"2.6.5.1.2.2.1"}},{"type":"Polygon","arcs":[[12007,10487,5875,-5264,-5263,-5262,14381]],"properties":{"prefix":"9.3.1.4.3.5.1"}},{"type":"Polygon","arcs":[[7637,7638,14382,14383]],"properties":{"prefix":"6.4.3.3.3.2.2"}},{"type":"Polygon","arcs":[[14384,265,-7003,-7008,-6206,12235,14385]],"properties":{"prefix":"8.1.6.2.2.2.3"}},{"type":"Polygon","arcs":[[10503,10504,10505,14386]],"properties":{"prefix":"3.4.2.6.1.1.1"}},{"type":"Polygon","arcs":[[14387,7079,10771,10772,7085,-9016,14388]],"properties":{"prefix":"8.1.3.2.4.3.3"}},{"type":"Polygon","arcs":[[5362,14389,11269,4118,11270,11271]],"properties":{"prefix":"4.4.3.6.1.4.1"}},{"type":"Polygon","arcs":[[12348,7789,12349,7794,7795,423,1430,1431,1432,14390]],"properties":{"prefix":"1.3.1.4.1.2.1"}},{"type":"Polygon","arcs":[[14391,248,-650,6791]],"properties":{"prefix":"7.8.1.5.3.1.2"}},{"type":"Polygon","arcs":[[-2609,1558,-10553,-10552,14392]],"properties":{"prefix":"9.8.2.2.5.1.4"}},{"type":"Polygon","arcs":[[14393,8270,1254,1255,1256,-1097,13391]],"properties":{"prefix":"6.1.1.1.4.1.1"}},{"type":"Polygon","arcs":[[14394,10570,4683,8535,10571]],"properties":{"prefix":"2.4.1.2.2.1.2"}},{"type":"Polygon","arcs":[[13702,5770,5771,5772,151,5773,5774,5775,3515,14395]],"properties":{"prefix":"6.3.5.4.2.3.2"}},{"type":"Polygon","arcs":[[14396,14397,-10779]],"properties":{"prefix":"8.2.2.1.2.1.1"}},{"type":"Polygon","arcs":[[-11397,2497,12945,14398]],"properties":{"prefix":"7.2.3.2.3.1.2"}},{"type":"Polygon","arcs":[[5308,10317,10318,11751,14399,5307]],"properties":{"prefix":"8.1.4.3.1.4.1"}},{"type":"Polygon","arcs":[[14400,13338,-8983,-2858,-11088,5019,5020,5021,10314]],"properties":{"prefix":"7.4.6.2.4.1.1"}},{"type":"Polygon","arcs":[[-8857,-8867,14401]],"properties":{"prefix":"9.3.4.3.1.1.1"}},{"type":"Polygon","arcs":[[-643,-642,-641,-10018,-10024,14402]],"properties":{"prefix":"7.8.1.6.1.4.2"}},{"type":"Polygon","arcs":[[6297,1053,14403]],"properties":{"prefix":"4.1.3.3.4.3.2"}},{"type":"Polygon","arcs":[[10709,14404,-3966,-3965,-7622,-7626]],"properties":{"prefix":"9.3.1.6.3.5.1"}},{"type":"Polygon","arcs":[[-6577,-6576,-6575,-12841,6944,14405,-7975]],"properties":{"prefix":"8.1.5.2.4.1.1"}},{"type":"Polygon","arcs":[[-2851,-2871,12340,14406]],"properties":{"prefix":"7.4.2.1.2.3.2"}},{"type":"Polygon","arcs":[[8643,10547,10548,14407]],"properties":{"prefix":"7.4.4.1.1.1.2"}},{"type":"Polygon","arcs":[[10806,-2174,14408,10803,-1397,10804,10805]],"properties":{"prefix":"1.4.2.4.1.2.1"}},{"type":"Polygon","arcs":[[14409,14410,-6395,-6394]],"properties":{"prefix":"1.3.1.2.5.1.2"}},{"type":"Polygon","arcs":[[8060,14411,13661,463,-11842,-13449,508]],"properties":{"prefix":"1.9.2.8.3.1.1"}},{"type":"Polygon","arcs":[[12472,-8237,-8236,-6930,-6929,14412]],"properties":{"prefix":"2.4.1.3.3.3.3"}},{"type":"Polygon","arcs":[[-3156,-7586,12601,12602,14413]],"properties":{"prefix":"7.5.3.6.3.4.1"}},{"type":"Polygon","arcs":[[-10952,12722,6785,12723,-11489,14414]],"properties":{"prefix":"7.6.3.2.1.2.3"}},{"type":"Polygon","arcs":[[10585,14415,-1532,10584,10250]],"properties":{"prefix":"4.6.1.1.3.1.1"}},{"type":"Polygon","arcs":[[-12116,-12115,14416,14417,14418,13112]],"properties":{"prefix":"9.4.2.4.1.1.1"}},{"type":"Polygon","arcs":[[12549,14419,-11268]],"properties":{"prefix":"4.4.3.6.1.3.1"}},{"type":"Polygon","arcs":[[9024,-3481,6727,10752,10753,14420]],"properties":{"prefix":"1.3.2.2.1.3.2"}},{"type":"Polygon","arcs":[[3904,9845,9846,14421,14422]],"properties":{"prefix":"9.3.5.1.1.3.3"}},{"type":"Polygon","arcs":[[-8860,-8859,9399,-5721,11038,11039,11040,11041,-722,14423]],"properties":{"prefix":"9.3.4.3.5.1.1"}},{"type":"Polygon","arcs":[[-11424,-9752,14424,7066,-3211,14425]],"properties":{"prefix":"7.6.3.3.1.4.1"}},{"type":"Polygon","arcs":[[-10502,-5168,-5167,-3706,-3705,-4324,-14096]],"properties":{"prefix":"3.4.2.6.1.2.3"}},{"type":"Polygon","arcs":[[9668,-2424,-2423,3830,14426]],"properties":{"prefix":"8.4.2.4.2.1.3"}},{"type":"Polygon","arcs":[[14427,14428,11690,14429,-1191,-1190]],"properties":{"prefix":"7.1.1.4.4.1.2"}},{"type":"Polygon","arcs":[[-4897,-4896,264,-14385,14430]],"properties":{"prefix":"8.1.6.2.2.2.1"}},{"type":"Polygon","arcs":[[-7057,8000,8001,8002,8003,14431,-7058]],"properties":{"prefix":"4.3.4.6.2.1.1"}},{"type":"Polygon","arcs":[[1141,1142,-8208,-8207,14432,14433,1140]],"properties":{"prefix":"6.4.4.1.4.2.1"}},{"type":"Polygon","arcs":[[-10858,14434,-10856,-7367,5966,-768,-767,-766]],"properties":{"prefix":"7.7.2.1.3.2.1"}},{"type":"Polygon","arcs":[[14435,-14389,-9015,-9337,10773]],"properties":{"prefix":"8.1.3.2.4.3.1"}},{"type":"Polygon","arcs":[[1465,14436,7708,14437,1464]],"properties":{"prefix":"9.1.8.1.1.1.3"}},{"type":"Polygon","arcs":[[-742,14438,9844,3902,14439,-14422,9847]],"properties":{"prefix":"9.3.5.1.1.3.1"}},{"type":"Polygon","arcs":[[14440,10645,9174,9175,5669,5670,14441,14442,14443]],"properties":{"prefix":"7.2.4.2.2.2.3"}},{"type":"Polygon","arcs":[[4321,-3585,14444,6341,14445]],"properties":{"prefix":"7.6.3.1.6.3.1"}},{"type":"Polygon","arcs":[[11386,7725,7726,7727,7728,14446,7731,7732,665,14447]],"properties":{"prefix":"8.5.2.2.4.4.1"}},{"type":"Polygon","arcs":[[14448,14449,1837,7694,12890]],"properties":{"prefix":"9.4.1.1.1.3.1"}},{"type":"Polygon","arcs":[[-11608,-7562,-7561,14450]],"properties":{"prefix":"9.3.3.1.2.1.2"}},{"type":"Polygon","arcs":[[8090,-2879,-2878,-2949,-2948,-2947,-2946,14451]],"properties":{"prefix":"9.1.4.1.2.2.1"}},{"type":"Polygon","arcs":[[-9682,-9681,14452]],"properties":{"prefix":"7.6.3.4.3.1.1"}},{"type":"Polygon","arcs":[[10078,13608,-12207,14453,10076,10077]],"properties":{"prefix":"5.1.2.2.1.3.1"}},{"type":"Polygon","arcs":[[6885,14454,1638,14455]],"properties":{"prefix":"7.7.2.3.4.1.1"}},{"type":"Polygon","arcs":[[4629,4630,-10846,-12688,-12691,14456]],"properties":{"prefix":"8.2.1.5.3.3.1"}},{"type":"Polygon","arcs":[[-13931,-8038,-8037,5977,5978,-1137]],"properties":{"prefix":"7.4.4.3.2.1.2"}},{"type":"Polygon","arcs":[[-6104,-5529,-5528,-5527,8843,8844,14457]],"properties":{"prefix":"1.9.2.3.4.3.2"}},{"type":"Polygon","arcs":[[13622,14458,-12931,-6533,-6532,-4605,-4604,10229]],"properties":{"prefix":"4.4.3.2.1.1.1"}},{"type":"Polygon","arcs":[[12284,14459,4853,4854,-2637,14460]],"properties":{"prefix":"1.7.1.1.2.3.3"}},{"type":"Polygon","arcs":[[4902,4903,14461,14462]],"properties":{"prefix":"8.1.6.1.6.1.3"}},{"type":"Polygon","arcs":[[14463,13262,4887,4888,-11092,-11091,-2129,-2128]],"properties":{"prefix":"4.6.1.2.1.1.1"}},{"type":"Polygon","arcs":[[14464,-10672,5527,-8761,5535,518]],"properties":{"prefix":"1.9.2.7.1.3.1"}},{"type":"Polygon","arcs":[[14465,-3673,450,7172,12518]],"properties":{"prefix":"1.9.2.3.1.1.1"}},{"type":"Polygon","arcs":[[-1845,-1844,88,-14155,14466]],"properties":{"prefix":"5.2.1.2.5.2.1"}},{"type":"Polygon","arcs":[[7663,14467,2401,2402,14468]],"properties":{"prefix":"5.3.1.2.1.1.1"}},{"type":"Polygon","arcs":[[-14418,14469,-6687,-6243,-6242,14470]],"properties":{"prefix":"9.4.2.4.1.1.3"}},{"type":"Polygon","arcs":[[6421,6422,11635,6429,14471]],"properties":{"prefix":"2.3.1.1.1.3.1"}},{"type":"Polygon","arcs":[[4482,1275,1276,1277,12564,12565,14472]],"properties":{"prefix":"7.3.1.4.1.6.1"}},{"type":"Polygon","arcs":[[-11536,7421,14473,-972]],"properties":{"prefix":"5.1.3.2.1.1.1"}},{"type":"Polygon","arcs":[[14474,11480,11481,-4922,-4921]],"properties":{"prefix":"7.6.2.1.1.3.1"}},{"type":"Polygon","arcs":[[14475,14476,11604,574,14477]],"properties":{"prefix":"1.3.1.4.4.2.4"}},{"type":"Polygon","arcs":[[12843,1376,1377,1378,-3383,-3382,14478,6738,6739,-5706,-5705,-5704,-5703,14479]],"properties":{"prefix":"1.3.2.4.4.2.1"}},{"type":"Polygon","arcs":[[14480,8569,8570,3626,14481]],"properties":{"prefix":"3.4.1.1.1.1.2"}},{"type":"Polygon","arcs":[[6650,3459,3460,14482]],"properties":{"prefix":"7.6.6.3.2.1.1"}},{"type":"Polygon","arcs":[[2006,2007,2008,2009,8010,14483,14484]],"properties":{"prefix":"8.1.6.6.2.2.2"}},{"type":"Polygon","arcs":[[14485,13680,-12773,-1056]],"properties":{"prefix":"7.4.6.4.4.2.1"}},{"type":"Polygon","arcs":[[14486,7610,6613,6614,-5522,10831]],"properties":{"prefix":"1.9.2.3.3.1.1"}},{"type":"Polygon","arcs":[[5407,9555,-11466,-11465,14487]],"properties":{"prefix":"2.4.1.7.1.3.4"}},{"type":"Polygon","arcs":[[10122,2126,2127,-4419,-4418,14488]],"properties":{"prefix":"4.4.4.4.2.2.1"}},{"type":"Polygon","arcs":[[2719,14489,11930,-1328,-1327,2715,2716,2717,2718]],"properties":{"prefix":"7.4.1.1.1.2.2"}},{"type":"Polygon","arcs":[[-2275,14490,-10908,-4504,-2277,-2276]],"properties":{"prefix":"1.8.3.4.4.2.1"}},{"type":"Polygon","arcs":[[14491,-923,-922,14492,14493]],"properties":{"prefix":"7.5.6.3.2.1.3"}},{"type":"Polygon","arcs":[[12032,14494,4443,14495]],"properties":{"prefix":"7.8.1.2.4.2.1"}},{"type":"Polygon","arcs":[[7824,11683,11684,11685,3860,3861,14496]],"properties":{"prefix":"5.1.3.2.3.1.1"}},{"type":"Polygon","arcs":[[-4767,-4766,10364,10365,14497,14498,14499,941,14500]],"properties":{"prefix":"9.4.5.3.1.1.1"}},{"type":"Polygon","arcs":[[14501,-14327,-2392,12474,14502]],"properties":{"prefix":"5.2.1.2.4.3.2"}},{"type":"Polygon","arcs":[[14503,14504,-1320,7572,7573,-5157,3079,14505]],"properties":{"prefix":"7.4.7.3.2.3.2"}},{"type":"Polygon","arcs":[[11080,14506,-6969,-6968,14507]],"properties":{"prefix":"4.1.2.4.2.2.1"}},{"type":"Polygon","arcs":[[-1961,-1960,-1959,-7314,-7313,14508]],"properties":{"prefix":"7.5.3.1.1.4.1"}},{"type":"Polygon","arcs":[[4250,14509,13487,10272,-3064,-10184,-10183]],"properties":{"prefix":"7.4.2.1.1.1.1"}},{"type":"Polygon","arcs":[[6608,-8847,-8846,-8845,12371,14510]],"properties":{"prefix":"1.9.2.3.5.1.1"}},{"type":"Polygon","arcs":[[1293,1294,9675,14511]],"properties":{"prefix":"7.3.3.2.1.2.2"}},{"type":"Polygon","arcs":[[8715,-3155,1069,-890,14512]],"properties":{"prefix":"4.1.2.5.5.1.1"}},{"type":"Polygon","arcs":[[14513,5901,-9192]],"properties":{"prefix":"4.1.4.1.3.1.1"}},{"type":"Polygon","arcs":[[-9792,-7342,-12067,14514]],"properties":{"prefix":"4.4.4.1.1.3.1"}},{"type":"Polygon","arcs":[[14515,3562,14516,12508]],"properties":{"prefix":"7.6.4.1.1.1.1"}},{"type":"Polygon","arcs":[[14517,6030,6031,6032,6033,-7382,-7381,-7380,10953]],"properties":{"prefix":"4.3.2.3.2.2.1"}},{"type":"Polygon","arcs":[[1466,7704,7705,7706,7707,-14437]],"properties":{"prefix":"9.1.8.1.1.1.5"}},{"type":"Polygon","arcs":[[11817,11818,11819,-2159,14518]],"properties":{"prefix":"1.7.1.1.2.1.2"}},{"type":"Polygon","arcs":[[-14443,14519,14520]],"properties":{"prefix":"7.2.4.2.2.2.1"}},{"type":"Polygon","arcs":[[3690,-14268,14521]],"properties":{"prefix":"3.4.3.2.4.2.2"}},{"type":"Polygon","arcs":[[98,-2382,-7714,-7713,14522,14523]],"properties":{"prefix":"5.2.1.3.1.6.2"}},{"type":"Polygon","arcs":[[14524,-11039,-5720,-727,-726]],"properties":{"prefix":"9.3.4.3.5.3.2"}},{"type":"Polygon","arcs":[[14525,9835,-7905,-7904,14526]],"properties":{"prefix":"1.3.1.2.4.1.2"}},{"type":"Polygon","arcs":[[8634,8635,-12402,-12405,14527]],"properties":{"prefix":"7.2.4.6.1.4.2"}},{"type":"Polygon","arcs":[[-12038,-12037,-2661,7217,13502,14528]],"properties":{"prefix":"2.6.6.3.1.1.1"}},{"type":"Polygon","arcs":[[-6391,-6390,14529,14530,-4473]],"properties":{"prefix":"7.3.1.2.2.1.1"}},{"type":"Polygon","arcs":[[-6578,7974,7975,-11656,12125,14531,14532,14533]],"properties":{"prefix":"8.1.5.2.2.1.1"}},{"type":"Polygon","arcs":[[14534,-6805,12458,12459,14535]],"properties":{"prefix":"7.3.1.1.1.5.1"}},{"type":"Polygon","arcs":[[1639,1640,1641,1642,6884,-14456]],"properties":{"prefix":"7.7.2.3.4.1.3"}},{"type":"Polygon","arcs":[[9180,3274,3275,3276,14536]],"properties":{"prefix":"6.3.1.1.5.1.1"}},{"type":"Polygon","arcs":[[14537,11143,11144,2657]],"properties":{"prefix":"2.6.7.1.1.1.1"}},{"type":"Polygon","arcs":[[14538,14539,14540,12307,-2515,-2514,14541]],"properties":{"prefix":"7.2.4.5.1.1.2"}},{"type":"Polygon","arcs":[[5402,5403,5404,12710,-14011,14542]],"properties":{"prefix":"2.4.1.7.1.1.1"}},{"type":"Polygon","arcs":[[14543,-9961,-9168,14544]],"properties":{"prefix":"2.3.3.6.4.1.1"}},{"type":"Polygon","arcs":[[9069,1227,1228,14545]],"properties":{"prefix":"6.3.4.3.1.2.1"}},{"type":"Polygon","arcs":[[-5104,-1851,7330,-11679,14546]],"properties":{"prefix":"5.2.1.2.2.1.1"}},{"type":"Polygon","arcs":[[14547,13281,8753,1046]],"properties":{"prefix":"4.1.3.4.1.3.2"}},{"type":"Polygon","arcs":[[-12082,-6113,-6112,3424,-9086,3430,3431,-1795,14548]],"properties":{"prefix":"6.3.3.5.5.4.1"}},{"type":"Polygon","arcs":[[9029,9030,14549,-2778]],"properties":{"prefix":"9.8.4.1.1.2.1"}},{"type":"Polygon","arcs":[[-14476,14550,14551]],"properties":{"prefix":"1.3.1.4.4.2.2"}},{"type":"Polygon","arcs":[[4989,8253,-11319,14552,14553]],"properties":{"prefix":"9.1.2.3.3.2.1"}},{"type":"Polygon","arcs":[[-3379,-3378,-3377,6734,6735,6736,14554]],"properties":{"prefix":"1.3.2.4.4.2.3"}},{"type":"Polygon","arcs":[[8216,5538,370,14555]],"properties":{"prefix":"2.6.5.1.3.3.4"}},{"type":"Polygon","arcs":[[-1518,14556,13120,13121,-706,-1519]],"properties":{"prefix":"9.3.4.1.1.1.1"}},{"type":"Polygon","arcs":[[6157,6158,-7519,9850,14557,-7912]],"properties":{"prefix":"3.4.4.7.2.3.2"}},{"type":"Polygon","arcs":[[-3277,14558,9562,9563,6093,-3278]],"properties":{"prefix":"6.3.3.2.2.3.2"}},{"type":"Polygon","arcs":[[-8413,-8412,10285,12815,12816,12817,14559]],"properties":{"prefix":"2.5.1.1.1.3.1"}},{"type":"Polygon","arcs":[[-6760,3160,14560]],"properties":{"prefix":"7.5.4.4.1.3.1"}},{"type":"Polygon","arcs":[[894,14561,-9719,9875,-4783,14562,14563]],"properties":{"prefix":"9.8.3.1.3.4.2"}},{"type":"Polygon","arcs":[[-4992,-12077,12973,14564]],"properties":{"prefix":"9.1.2.5.2.1.1"}},{"type":"Polygon","arcs":[[14565,5585,-4815,-4814,-4813,-4812]],"properties":{"prefix":"3.4.4.4.1.2.2"}},{"type":"Polygon","arcs":[[14566,3015,12440,12441,12442,14567]],"properties":{"prefix":"5.3.2.2.5.3.1"}},{"type":"Polygon","arcs":[[7243,7244,7245,-12028,14568]],"properties":{"prefix":"7.5.4.2.3.2.1"}},{"type":"Polygon","arcs":[[14569,-1529,-4893,-9211]],"properties":{"prefix":"4.6.1.1.3.3.2"}},{"type":"Polygon","arcs":[[14570,-2434,-5031,-5030,14571]],"properties":{"prefix":"3.4.1.1.4.1.2"}},{"type":"Polygon","arcs":[[-11344,-10765,-2475,-4150,14572]],"properties":{"prefix":"7.2.2.6.4.5.1"}},{"type":"Polygon","arcs":[[-8293,-8807,-8806,-8812,14573,-8294]],"properties":{"prefix":"8.1.5.5.2.2.2"}},{"type":"Polygon","arcs":[[7522,12041,7525,7526,7527,12042,14574]],"properties":{"prefix":"6.2.1.2.2.1.2"}},{"type":"Polygon","arcs":[[4998,4999,14575,4997]],"properties":{"prefix":"9.1.2.3.4.2.2"}},{"type":"Polygon","arcs":[[13023,-11544,-2372,-2371,-2370,6036,6037,14576]],"properties":{"prefix":"4.3.2.3.1.4.1"}},{"type":"Polygon","arcs":[[6372,14577,9195,6369,6370,14578,-896,-895,-894]],"properties":{"prefix":"7.4.7.2.1.1.1"}},{"type":"Polygon","arcs":[[14579,-8017,9890,12841]],"properties":{"prefix":"8.1.6.6.1.2.1"}},{"type":"Polygon","arcs":[[12635,-2673,-2672,-2671,-2715,-10759,-2712,-2711,-2710,14580]],"properties":{"prefix":"2.6.4.3.2.2.1"}},{"type":"Polygon","arcs":[[102,-7326,-11745,-11744,-10070,-10069,-8516,-8515,12884,14581]],"properties":{"prefix":"5.3.2.1.3.1.1"}},{"type":"Polygon","arcs":[[6086,6087,9559,9560,13489,-11910,3436,3437,14582]],"properties":{"prefix":"6.3.3.2.2.1.1"}},{"type":"Polygon","arcs":[[135,8581,8582,8583,14583]],"properties":{"prefix":"6.3.1.1.1.3.2"}},{"type":"Polygon","arcs":[[-3288,-799,-798,10445,10446,10447,14584]],"properties":{"prefix":"7.8.3.2.3.1.1"}},{"type":"Polygon","arcs":[[14585,-10659,6583]],"properties":{"prefix":"8.1.5.1.5.2.2"}},{"type":"Polygon","arcs":[[12130,-8083,12131,8268,-1027,14586]],"properties":{"prefix":"7.4.4.4.2.1.2"}},{"type":"Polygon","arcs":[[13287,8287,-1432,14587]],"properties":{"prefix":"1.1.2.1.1.4.1"}},{"type":"Polygon","arcs":[[-2069,-2068,-2067,-2066,-2065,4931,8443,8444,14588]],"properties":{"prefix":"7.5.3.3.3.2.6"}},{"type":"Polygon","arcs":[[14589,-6114,12081,12082,14590]],"properties":{"prefix":"6.3.3.5.5.3.1"}},{"type":"Polygon","arcs":[[-11132,14591,5097,5098,5099,5100,5101,1035,1036,-2235,-2234]],"properties":{"prefix":"4.3.4.5.1.2.2"}},{"type":"Polygon","arcs":[[10976,-1544,-4608,14592,14593]],"properties":{"prefix":"4.4.3.4.1.2.3"}},{"type":"Polygon","arcs":[[10,11615,11616,14594]],"properties":{"prefix":"1.1.2.2.3.1.2"}},{"type":"Polygon","arcs":[[276,3746,3747,14595]],"properties":{"prefix":"8.2.1.8.3.2.1"}},{"type":"Polygon","arcs":[[14596,14597,34,11539,11540,-10540]],"properties":{"prefix":"1.5.1.1.2.2.3"}},{"type":"Polygon","arcs":[[14598,-8304,9315,12098,-10641]],"properties":{"prefix":"8.2.3.1.2.1.3"}},{"type":"Polygon","arcs":[[-14545,-9167,-9171,2311,14599]],"properties":{"prefix":"2.3.3.6.4.1.3"}},{"type":"Polygon","arcs":[[815,14600,14601,814]],"properties":{"prefix":"3.4.2.3.1.3.1"}},{"type":"Polygon","arcs":[[14602,5664,-2490,-2489,-11774,8192,8193]],"properties":{"prefix":"7.2.4.2.1.2.2"}},{"type":"Polygon","arcs":[[-11124,14603,8332,8333,-5365,14604]],"properties":{"prefix":"4.4.3.4.3.2.1"}},{"type":"Polygon","arcs":[[8859,8860,8861,-716,-4660,-4659,14605]],"properties":{"prefix":"9.3.4.3.4.1.1"}},{"type":"Polygon","arcs":[[-11399,14606,14607]],"properties":{"prefix":"2.6.2.5.1.5.2"}},{"type":"Polygon","arcs":[[14608,3982,3983]],"properties":{"prefix":"9.3.3.2.1.3.1"}},{"type":"Polygon","arcs":[[-491,13090,14609,4083,14610]],"properties":{"prefix":"2.1.1.3.1.1.1"}},{"type":"Polygon","arcs":[[14611,-10233,-1877,10310]],"properties":{"prefix":"5.3.6.3.1.1.2"}},{"type":"Polygon","arcs":[[-3360,10828,14612,14613,-1131,-1130,-1129]],"properties":{"prefix":"7.3.3.1.1.1.1"}},{"type":"Polygon","arcs":[[-5975,-5974,8081,8082,8083,8084,14614]],"properties":{"prefix":"7.4.4.4.1.3.1"}},{"type":"Polygon","arcs":[[14615,7804,12227,14616,6300,6301]],"properties":{"prefix":"4.1.3.3.4.1.1"}},{"type":"Polygon","arcs":[[-5834,-5833,14617,-11359,-5768,-5837,-5836,-5835]],"properties":{"prefix":"6.3.5.3.2.3.1"}},{"type":"Polygon","arcs":[[14618,-13200,3354]],"properties":{"prefix":"7.3.2.4.3.1.2"}},{"type":"Polygon","arcs":[[-6530,-6529,9093,14619]],"properties":{"prefix":"4.4.3.2.4.1.1"}},{"type":"Polygon","arcs":[[14620,2430,2431,-11052,7280,7281]],"properties":{"prefix":"3.1.2.1.2.1.1"}},{"type":"Polygon","arcs":[[-13844,-13763,7915,-612]],"properties":{"prefix":"3.4.4.7.1.3.4"}},{"type":"Polygon","arcs":[[14621,9318,4160,14622,9320]],"properties":{"prefix":"8.2.3.1.2.3.2"}},{"type":"Polygon","arcs":[[-10195,-10944,10461,11846,14623]],"properties":{"prefix":"6.3.3.4.1.2.1"}},{"type":"Polygon","arcs":[[1849,1850,1851,1852,1853,14624]],"properties":{"prefix":"5.1.3.5.2.4.1"}},{"type":"Polygon","arcs":[[13647,14625,-12280,3362,3363,14626]],"properties":{"prefix":"7.3.2.2.4.2.2"}},{"type":"Polygon","arcs":[[14627,10274,-9310,394]],"properties":{"prefix":"2.5.1.2.1.1.2"}},{"type":"Polygon","arcs":[[9548,12592,14628,14629,9547]],"properties":{"prefix":"3.4.3.2.2.1.4"}},{"type":"Polygon","arcs":[[8312,8313,8314,783,784,785,14630]],"properties":{"prefix":"8.1.3.1.1.1.1"}},{"type":"Polygon","arcs":[[-12925,3910,5856,-9863,-11833,13193,14631]],"properties":{"prefix":"9.3.5.1.2.4.1"}},{"type":"Polygon","arcs":[[2938,2939,2940,14632]],"properties":{"prefix":"7.4.5.2.5.2.2"}},{"type":"Polygon","arcs":[[12619,12620,-12150,-12149,14633]],"properties":{"prefix":"9.8.6.1.1.3.1"}},{"type":"Polygon","arcs":[[14634,-2796,14635,11963]],"properties":{"prefix":"2.6.2.3.1.2.1"}},{"type":"Polygon","arcs":[[-1277,10644,-14441,14636]],"properties":{"prefix":"7.2.4.2.2.2.5"}},{"type":"Polygon","arcs":[[14637,10708,5686,-673,-672,-671,14638]],"properties":{"prefix":"9.1.2.4.2.3.4"}},{"type":"Polygon","arcs":[[-4218,5414,5415,14639,10654]],"properties":{"prefix":"2.6.2.4.3.2.1"}},{"type":"Polygon","arcs":[[14640,11651,-8886,4487,11652,-8166,-954,-953,-952,14641]],"properties":{"prefix":"7.6.4.2.3.1.2"}},{"type":"Polygon","arcs":[[14642,14643,11089,-2134,-2133]],"properties":{"prefix":"4.6.1.2.1.5.3"}},{"type":"Polygon","arcs":[[-3776,14644,-10077,-10076,6173,6174,6175,6176]],"properties":{"prefix":"5.1.2.2.2.1.1"}},{"type":"Polygon","arcs":[[7859,7860,7861,7862,14645]],"properties":{"prefix":"7.2.1.4.2.6.2"}},{"type":"Polygon","arcs":[[-7502,-7506,-11697,14646,9657]],"properties":{"prefix":"1.3.1.2.2.3.1"}},{"type":"Polygon","arcs":[[14647,5860,5861,5862,5863,-1078,11235]],"properties":{"prefix":"6.2.1.4.1.1.1"}},{"type":"Polygon","arcs":[[14648,1304,-11849,12638,-11347,12639]],"properties":{"prefix":"7.3.3.2.3.3.1"}},{"type":"Polygon","arcs":[[-7981,3938,3939,-13736,-7604,-7603,14649]],"properties":{"prefix":"4.8.3.2.3.1.1"}},{"type":"Polygon","arcs":[[-8246,-8252,11198,14650,-8247]],"properties":{"prefix":"3.4.4.6.1.4.1"}},{"type":"Polygon","arcs":[[-8299,-8298,8480,8481,14651,-8300]],"properties":{"prefix":"8.1.5.5.1.2.1"}},{"type":"Polygon","arcs":[[-13080,-11106,-605,-604,-603,13342,14652]],"properties":{"prefix":"3.4.4.7.1.1.1"}},{"type":"Polygon","arcs":[[8303,8304,8305,-11868,14653,8302]],"properties":{"prefix":"8.2.3.1.1.1.3"}},{"type":"Polygon","arcs":[[14654,-10631,1835,1836,-14450]],"properties":{"prefix":"9.4.1.1.1.3.2"}},{"type":"Polygon","arcs":[[-14597,-10539,14655]],"properties":{"prefix":"1.5.1.1.2.2.1"}},{"type":"Polygon","arcs":[[14656,-12195,13149]],"properties":{"prefix":"4.2.1.1.4.3.3"}},{"type":"Polygon","arcs":[[14657,-4510,-4509,-4508,14658,8350,8351]],"properties":{"prefix":"1.8.3.4.1.1.1"}},{"type":"Polygon","arcs":[[14659,5793,9533,9534,-10727,-10730,12921]],"properties":{"prefix":"7.5.6.3.3.4.1"}},{"type":"Polygon","arcs":[[2742,2743,2744,5463,5464,5465,14660]],"properties":{"prefix":"4.1.5.2.3.3.2"}},{"type":"Polygon","arcs":[[-5780,11563,11564,14661]],"properties":{"prefix":"7.5.6.2.3.1.1"}},{"type":"Polygon","arcs":[[-6481,-6480,6875,-3268,-3267,14662,13067,20,-13745]],"properties":{"prefix":"1.3.4.3.1.1.1"}},{"type":"Polygon","arcs":[[14663,10780,-8393,9883,-13750,9887,-4165]],"properties":{"prefix":"8.2.2.1.2.2.1"}},{"type":"Polygon","arcs":[[14664,-6954,11632]],"properties":{"prefix":"1.3.3.4.1.3.2"}},{"type":"Polygon","arcs":[[-13832,2548,2549,2550,14665]],"properties":{"prefix":"9.8.3.1.1.1.1"}},{"type":"Polygon","arcs":[[14666,-1817,-11993]],"properties":{"prefix":"9.6.1.2.1.1.3"}},{"type":"Polygon","arcs":[[14667,-12255,-9652,-5197,10473,-12904]],"properties":{"prefix":"1.3.1.2.1.5.2"}},{"type":"Polygon","arcs":[[-6645,14668,12537]],"properties":{"prefix":"7.6.6.2.1.4.1"}},{"type":"Polygon","arcs":[[9735,6636,6637,14669,9734]],"properties":{"prefix":"2.3.3.6.1.1.1"}},{"type":"Polygon","arcs":[[10102,-4560,-8673,-1936,-1199,14670]],"properties":{"prefix":"7.1.1.6.1.1.1"}},{"type":"Polygon","arcs":[[9233,14671]],"properties":{"prefix":"2.6.6.3.2.1.1"}},{"type":"Polygon","arcs":[[-1495,14672,13122,3962,-10537,-12853,-9625,-1498,-1497,-1496]],"properties":{"prefix":"9.3.3.1.1.1.2"}},{"type":"Polygon","arcs":[[14673,-2165,-2164,-2163,-2162,4181,4182,14674]],"properties":{"prefix":"1.7.3.3.2.1.2"}},{"type":"Polygon","arcs":[[7780,14675,14676]],"properties":{"prefix":"1.9.3.3.2.4.2"}},{"type":"Polygon","arcs":[[459,460,461,-6108,11801,14677,14678]],"properties":{"prefix":"1.9.2.3.4.1.1"}},{"type":"Polygon","arcs":[[-5564,-4808,14679,-4133]],"properties":{"prefix":"7.2.7.1.1.2.2"}},{"type":"Polygon","arcs":[[-4780,6958,891,892,893,-14564,14680]],"properties":{"prefix":"9.8.3.1.3.4.6"}},{"type":"Polygon","arcs":[[-11624,13078,-12094,14681]],"properties":{"prefix":"8.2.1.1.1.2.1"}},{"type":"Polygon","arcs":[[13447,-10743,-8585,-8584,14682]],"properties":{"prefix":"6.3.1.1.2.1.1"}},{"type":"Polygon","arcs":[[2252,2253,-4162,-4161,-4160,-4178,-4177,-4176,14683]],"properties":{"prefix":"8.2.2.3.3.3.1"}},{"type":"Polygon","arcs":[[10243,13132,13133,14684,14685,14686]],"properties":{"prefix":"4.1.3.3.1.3.2"}},{"type":"Polygon","arcs":[[4746,14687]],"properties":{"prefix":"9.1.3.1.5.4.2"}},{"type":"Polygon","arcs":[[-12181,8669,281,14688,5915,14689]],"properties":{"prefix":"8.2.2.2.3.2.1"}},{"type":"Polygon","arcs":[[14690,13074,9121,-6735,-3376,-5708,-5707,-6740]],"properties":{"prefix":"1.3.2.5.2.1.1"}},{"type":"Polygon","arcs":[[14691,-8561,-10065,744]],"properties":{"prefix":"8.1.3.4.2.1.1"}},{"type":"Polygon","arcs":[[-1694,-1693,-1692,-8975,-11943,-11942,-13242,-8970,14692]],"properties":{"prefix":"2.3.3.4.2.2.1"}},{"type":"Polygon","arcs":[[12103,2337,2338,6672,14693,6675,6676,6677,14694]],"properties":{"prefix":"1.9.1.2.1.2.1"}},{"type":"Polygon","arcs":[[3644,-3503,2137,2138,14695,3643]],"properties":{"prefix":"6.3.7.4.2.1.1"}},{"type":"Polygon","arcs":[[1152,11772,1157,1158,14696,1151]],"properties":{"prefix":"6.4.4.1.6.2.1"}},{"type":"Polygon","arcs":[[3478,9310,9311,9312,14697]],"properties":{"prefix":"1.3.1.4.4.4.1"}},{"type":"Polygon","arcs":[[-10177,3273,-9181,-9180,-9179,-11670,14698]],"properties":{"prefix":"6.3.1.1.4.1.1"}},{"type":"Polygon","arcs":[[14699,4391,-2450,-2449,-2448]],"properties":{"prefix":"1.7.3.3.2.3.1"}},{"type":"Polygon","arcs":[[10705,-4998,-4997,10706,14700,14701]],"properties":{"prefix":"9.1.2.4.2.3.2"}},{"type":"Polygon","arcs":[[12701,7906,14702,-3279,-6094,-6093,14703]],"properties":{"prefix":"6.3.3.5.1.1.2"}},{"type":"Polygon","arcs":[[8543,-1465,-1464,-7841,-7840,-7839,14704]],"properties":{"prefix":"9.4.2.3.1.2.1"}},{"type":"Polygon","arcs":[[14705,14706,71,14707]],"properties":{"prefix":"4.4.4.1.3.1.2"}},{"type":"Polygon","arcs":[[-10960,2309,2310,9170,12726,14708]],"properties":{"prefix":"2.3.3.6.5.1.1"}},{"type":"Polygon","arcs":[[-4890,-4889,-9515,-12029,-9513,-9512,14709,13306,-9208]],"properties":{"prefix":"4.6.1.1.5.2.1"}},{"type":"Polygon","arcs":[[14710,-12790,-4757,-4775,-4774,-4773,-5491,4306]],"properties":{"prefix":"9.4.5.1.3.4.1"}},{"type":"Polygon","arcs":[[5194,-8286,5199,10126,14711]],"properties":{"prefix":"1.3.1.1.1.2.1"}},{"type":"Polygon","arcs":[[14712,-8056,9823,6311,326,-13730,2966]],"properties":{"prefix":"9.1.5.3.3.1.1"}},{"type":"Polygon","arcs":[[10526,10527,10528,10529,14713,-3533]],"properties":{"prefix":"4.3.3.1.2.2.1"}},{"type":"Polygon","arcs":[[14714,-11648,-7284,-7283,-7282]],"properties":{"prefix":"3.1.2.1.3.1.1"}},{"type":"Polygon","arcs":[[7251,7252,12306,-14541,14715]],"properties":{"prefix":"7.2.4.5.1.1.4"}},{"type":"Polygon","arcs":[[-6625,-4802,-6643,13410,-12225,-12224,14716]],"properties":{"prefix":"2.3.3.4.6.2.1"}},{"type":"Polygon","arcs":[[-9417,-9428,13550,14717]],"properties":{"prefix":"7.6.3.4.1.2.1"}},{"type":"Polygon","arcs":[[1468,9838,9839,14718]],"properties":{"prefix":"9.1.8.1.2.3.2"}},{"type":"Polygon","arcs":[[8346,8347,8348,8349,-14659,-4507]],"properties":{"prefix":"1.8.3.4.1.1.3"}},{"type":"Polygon","arcs":[[-14498,10366,938,939,940,-14500,14719]],"properties":{"prefix":"9.4.5.3.1.1.3"}},{"type":"Polygon","arcs":[[-11354,-11353,13116,14720]],"properties":{"prefix":"9.1.5.3.1.1.1"}},{"type":"Polygon","arcs":[[-762,14721,9396,9397,9398,-7363,-13821,14722]],"properties":{"prefix":"7.7.2.1.3.1.1"}},{"type":"Polygon","arcs":[[2227,2228,14723,8279,-6823,2225,2226]],"properties":{"prefix":"4.1.4.2.2.1.1"}},{"type":"Polygon","arcs":[[14724,10554,10555,-7715,-2411,-2410]],"properties":{"prefix":"5.2.1.3.1.4.1"}},{"type":"Polygon","arcs":[[-14064,4056,4057,4058,-12002,13274]],"properties":{"prefix":"2.2.1.7.3.2.4"}},{"type":"Polygon","arcs":[[14725,-8500,-8133,-8132,-6046]],"properties":{"prefix":"4.3.2.2.2.1.1"}},{"type":"Polygon","arcs":[[-11067,7768,-6483,-13744]],"properties":{"prefix":"1.3.4.3.1.1.3"}},{"type":"Polygon","arcs":[[6362,6363,6364,11786,14726]],"properties":{"prefix":"1.2.1.4.4.5.2"}},{"type":"Polygon","arcs":[[-14272,-3331,-3330,14727]],"properties":{"prefix":"3.4.4.8.1.1.1"}},{"type":"Polygon","arcs":[[14728,6143,6144,12338]],"properties":{"prefix":"2.3.3.3.3.2.1"}},{"type":"Polygon","arcs":[[61,11898,11899,-13752]],"properties":{"prefix":"4.4.3.4.2.2.2"}},{"type":"Polygon","arcs":[[14729,-2350,-2349,-2348,534,-11225]],"properties":{"prefix":"1.8.3.6.1.4.1"}},{"type":"Polygon","arcs":[[14730,9406,288,2417,9407,2421,2422]],"properties":{"prefix":"8.3.1.2.4.1.1"}},{"type":"Polygon","arcs":[[14731,14732,6218]],"properties":{"prefix":"9.8.5.1.3.1.1"}},{"type":"Polygon","arcs":[[218,14733,3824,3825,-11019,14734]],"properties":{"prefix":"7.7.1.4.2.3.1"}},{"type":"Polygon","arcs":[[-12671,-12670,-13160,-2698]],"properties":{"prefix":"2.6.6.1.2.2.1"}},{"type":"Polygon","arcs":[[10817,-5129,-6367,1996,1997,1998,14735]],"properties":{"prefix":"1.2.1.1.1.1.1"}},{"type":"Polygon","arcs":[[-13761,-10689,-4270,8624,-3314,-3313,-3312]],"properties":{"prefix":"5.3.5.2.2.2.2"}},{"type":"Polygon","arcs":[[11802,6610,6611,11803,14736,-14678]],"properties":{"prefix":"1.9.2.3.4.1.3"}},{"type":"Polygon","arcs":[[14737,14738,-1984,-1983,-1447,-13766]],"properties":{"prefix":"1.1.2.1.5.1.2"}},{"type":"Polygon","arcs":[[13144,14739,-11201,3573,3574,-7576,-7581,-7580,-937,-936,-935]],"properties":{"prefix":"7.6.4.1.1.5.1"}},{"type":"Polygon","arcs":[[8102,-12337,14740]],"properties":{"prefix":"9.4.5.2.2.1.1"}},{"type":"Polygon","arcs":[[-8340,10679,14741,14742]],"properties":{"prefix":"8.1.6.1.5.3.2"}},{"type":"Polygon","arcs":[[14743,8074,8075,4539,3816]],"properties":{"prefix":"1.9.3.2.2.1.1"}},{"type":"Polygon","arcs":[[5360,-13780,14744,14745,5358,5359]],"properties":{"prefix":"4.4.3.6.1.5.2"}},{"type":"Polygon","arcs":[[14746,-3912,-3911,-3910,11609,11610,-13781]],"properties":{"prefix":"9.3.4.5.1.3.3"}},{"type":"Polygon","arcs":[[8513,8514,14747]],"properties":{"prefix":"5.3.2.1.2.1.1"}},{"type":"Polygon","arcs":[[-1837,14748,-8024,10038,-12734,-1839,-1838]],"properties":{"prefix":"9.3.6.1.2.1.1"}},{"type":"Polygon","arcs":[[14749,-1957,-1956,-1152,-1151,7314,-10824,7317,7318]],"properties":{"prefix":"7.5.3.1.2.1.1"}},{"type":"Polygon","arcs":[[-3567,-3566,9418,9419,9420,14750,14751]],"properties":{"prefix":"7.6.3.4.2.4.3"}},{"type":"Polygon","arcs":[[-479,-478,-477,3601,3602,3603,14752,-480]],"properties":{"prefix":"3.4.1.2.1.2.1"}},{"type":"Polygon","arcs":[[4479,10678,-3367,14753]],"properties":{"prefix":"7.3.1.4.1.5.1"}},{"type":"Polygon","arcs":[[13652,9527,-11821,5450,5451,14754]],"properties":{"prefix":"7.6.1.4.1.1.1"}},{"type":"Polygon","arcs":[[14755,198,-11953,9037,9038,-5633]],"properties":{"prefix":"7.6.2.1.1.4.1"}},{"type":"Polygon","arcs":[[-4304,14756,-7691,10711]],"properties":{"prefix":"9.4.1.1.2.1.2"}},{"type":"Polygon","arcs":[[5122,5123,5124,5125,5126,5127,7224,11227,14757]],"properties":{"prefix":"7.2.1.2.1.1.1"}},{"type":"Polygon","arcs":[[-1378,14758,-1458,14759]],"properties":{"prefix":"1.2.1.5.1.1.2"}},{"type":"Polygon","arcs":[[105,10542,-13795,14760]],"properties":{"prefix":"5.3.2.1.4.1.1"}},{"type":"Polygon","arcs":[[12143,-645,12144,-10022,-10021,-4373,-4372,14761]],"properties":{"prefix":"7.8.1.6.1.2.1"}},{"type":"Polygon","arcs":[[-9984,-9983,14762,-11522,-8234,-9985]],"properties":{"prefix":"2.4.1.3.1.4.1"}},{"type":"Polygon","arcs":[[14763,-10994,13006,13007,1966,-5940,6486,6487]],"properties":{"prefix":"7.2.2.4.4.3.1"}},{"type":"Polygon","arcs":[[14764,14765,116,10923,-7937,3021,3022,14766]],"properties":{"prefix":"5.3.2.2.3.2.2"}},{"type":"Polygon","arcs":[[3112,3113,3114,7452,14767,11509,14768]],"properties":{"prefix":"9.4.4.2.2.1.1"}},{"type":"Polygon","arcs":[[1716,1717,1718,14769]],"properties":{"prefix":"2.1.3.1.1.1.1"}},{"type":"Polygon","arcs":[[-1098,-1257,10410,14770,-8791]],"properties":{"prefix":"7.3.1.3.1.1.1"}},{"type":"Polygon","arcs":[[-7578,12784,12785,14771,-13870]],"properties":{"prefix":"7.6.4.1.3.2.1"}},{"type":"Polygon","arcs":[[-4019,-4018,-4017,13105,13106,13107,14772]],"properties":{"prefix":"9.3.4.5.1.1.2"}},{"type":"Polygon","arcs":[[-2521,-2520,-2519,14773]],"properties":{"prefix":"9.8.2.4.1.1.2"}},{"type":"Polygon","arcs":[[-12356,-12359,13464,14774]],"properties":{"prefix":"2.6.1.2.2.1.1"}},{"type":"Polygon","arcs":[[7303,7304,-13811,14775,7309,14776]],"properties":{"prefix":"2.1.2.1.4.2.1"}},{"type":"Polygon","arcs":[[-14117,-4670,-11524,-11862,-2321,-13770]],"properties":{"prefix":"2.4.1.3.1.2.3"}},{"type":"Polygon","arcs":[[7650,7651,11621,14777,14778,-14214]],"properties":{"prefix":"8.2.1.1.1.3.3"}},{"type":"Polygon","arcs":[[6591,6592,6593,6594,14779,14780]],"properties":{"prefix":"7.4.8.1.2.2.1"}},{"type":"Polygon","arcs":[[10048,-1787,-1786,-1785,-13879]],"properties":{"prefix":"6.3.3.5.4.1.2"}},{"type":"Polygon","arcs":[[12380,8761,-1480,-1479,5876,5877,14781]],"properties":{"prefix":"9.3.1.4.2.1.1"}},{"type":"Polygon","arcs":[[-13822,-7368,10855,10856,10857,-765,-764,-763,-14723]],"properties":{"prefix":"7.7.2.1.3.1.3"}},{"type":"Polygon","arcs":[[10525,-7969,3874,3875,14782]],"properties":{"prefix":"2.4.4.2.4.4.1"}},{"type":"Polygon","arcs":[[-6734,-6733,9575,-6743,14783,-6721]],"properties":{"prefix":"1.3.2.3.1.3.1"}},{"type":"Polygon","arcs":[[-1358,14784,-8964,9266,4564,4565,4566]],"properties":{"prefix":"7.4.4.1.5.1.1"}},{"type":"Polygon","arcs":[[14785,11443,11444,-8879]],"properties":{"prefix":"1.5.1.1.3.2.2"}},{"type":"Polygon","arcs":[[-432,-431,11484,-7099,2359,2360,14786,11483]],"properties":{"prefix":"4.2.2.1.5.1.2"}},{"type":"Polygon","arcs":[[-12599,14787,4198,4199,-12600]],"properties":{"prefix":"8.1.4.3.1.1.1"}},{"type":"Polygon","arcs":[[-11666,13529,14788]],"properties":{"prefix":"2.6.7.1.2.2.2"}},{"type":"Polygon","arcs":[[10875,10876,10877,10878,14789,-8821]],"properties":{"prefix":"7.2.2.4.1.3.1"}},{"type":"Polygon","arcs":[[9350,9351,-9132,14790,-9128,1988,14791]],"properties":{"prefix":"1.2.1.4.2.3.1"}},{"type":"Polygon","arcs":[[6964,14792,-8675,10369,6961,-839,-12645]],"properties":{"prefix":"4.1.2.3.2.1.1"}},{"type":"Polygon","arcs":[[14793,13668,-11857,-12326,1502,-2972]],"properties":{"prefix":"9.1.7.2.1.1.2"}},{"type":"Polygon","arcs":[[14794,14795,-10750,5834,12625]],"properties":{"prefix":"6.3.5.2.3.1.4"}},{"type":"Polygon","arcs":[[219,-12963,-12962,3823,-14734]],"properties":{"prefix":"7.7.1.4.2.3.3"}},{"type":"Polygon","arcs":[[3765,3766,3767,3768,3769,14796,-988]],"properties":{"prefix":"5.1.1.4.4.3.1"}},{"type":"Polygon","arcs":[[14797,-13971,8528]],"properties":{"prefix":"8.5.2.3.2.1.1"}},{"type":"Polygon","arcs":[[2900,-13846,1896,-13774,2899]],"properties":{"prefix":"2.5.3.2.2.2.2"}},{"type":"Polygon","arcs":[[12452,6344,6345,14798]],"properties":{"prefix":"7.6.3.1.6.2.2"}},{"type":"Polygon","arcs":[[10975,-14594,14799,-7235]],"properties":{"prefix":"4.4.3.4.1.2.1"}},{"type":"Polygon","arcs":[[755,756,11527,14800,7150]],"properties":{"prefix":"8.1.3.3.1.2.1"}},{"type":"Polygon","arcs":[[-5847,-13793,14801,-5848]],"properties":{"prefix":"5.3.5.1.2.3.3"}},{"type":"Polygon","arcs":[[7729,310,7730,-14447]],"properties":{"prefix":"8.5.2.2.4.4.2"}},{"type":"Polygon","arcs":[[14802,11591,-10523,406,3877]],"properties":{"prefix":"2.4.4.2.4.3.1"}},{"type":"Polygon","arcs":[[8616,8617,2644,2645,14803,13033]],"properties":{"prefix":"1.7.2.1.1.1.1"}},{"type":"Polygon","arcs":[[-11970,-4447,-4446,-13808,14804]],"properties":{"prefix":"7.8.1.4.1.1.2"}},{"type":"Polygon","arcs":[[7307,7308,-14776,-13810,1677]],"properties":{"prefix":"2.1.2.1.4.2.3"}},{"type":"Polygon","arcs":[[14805,10897,14806,-1088,-1087,7679,7680,7681]],"properties":{"prefix":"6.1.1.1.3.2.1"}},{"type":"Polygon","arcs":[[-13936,14807]],"properties":{"prefix":"7.5.2.1.4.2.1"}},{"type":"Polygon","arcs":[[-7188,-10794,14808,-7189]],"properties":{"prefix":"9.3.4.5.2.3.1"}},{"type":"Polygon","arcs":[[-12567,-12566,14809,-3369]],"properties":{"prefix":"7.3.1.4.1.7.2"}},{"type":"Polygon","arcs":[[-7360,-13938,-1951,-1950,-1949,-1948,-6869,-7361]],"properties":{"prefix":"7.1.1.2.2.1.2"}},{"type":"Polygon","arcs":[[-1971,-1970,3883,3884,3885,-13739,-11601,-11600,14810]],"properties":{"prefix":"7.5.2.1.2.5.1"}},{"type":"Polygon","arcs":[[7264,3380,3381,-6602,-6603,3394,3395,14811]],"properties":{"prefix":"1.3.3.5.4.1.1"}},{"type":"Polygon","arcs":[[14812,4318,4319,13516,-12456]],"properties":{"prefix":"7.6.3.1.6.1.2"}},{"type":"Polygon","arcs":[[4013,-14218,14813]],"properties":{"prefix":"9.3.1.6.2.2.1"}},{"type":"Polygon","arcs":[[14814,12304,2530,2531,8841]],"properties":{"prefix":"9.8.3.4.4.2.3"}},{"type":"Polygon","arcs":[[4590,8225,8226,12741,14815]],"properties":{"prefix":"5.1.3.2.5.4.1"}},{"type":"Polygon","arcs":[[-5862,-13888,-7527,14816]],"properties":{"prefix":"6.2.1.2.1.2.1"}},{"type":"Polygon","arcs":[[14817,-11708,-12178,-9242,1166,1167,1168]],"properties":{"prefix":"6.4.4.1.3.4.1"}},{"type":"Polygon","arcs":[[4583,4584,3745,-549,-548,-13747]],"properties":{"prefix":"2.3.2.1.1.4.2"}},{"type":"Polygon","arcs":[[11729,-8926,-1682,-13751,11731,11732,10417,14818]],"properties":{"prefix":"2.6.2.1.2.1.1"}},{"type":"Polygon","arcs":[[-9131,-9130,-9129,-14791]],"properties":{"prefix":"1.2.1.4.2.3.3"}},{"type":"Polygon","arcs":[[-3727,-3726,14819,10915,-13839]],"properties":{"prefix":"2.3.3.1.2.1.2"}},{"type":"Polygon","arcs":[[-11404,-11403,13223,-11894,8745,3508]],"properties":{"prefix":"6.3.5.5.2.2.1"}},{"type":"Polygon","arcs":[[-9081,14820,13472,-6509,-9076,1350,1351,1352,1353,-9082]],"properties":{"prefix":"7.3.3.1.3.2.1"}},{"type":"Polygon","arcs":[[12319,-6200,-9185,-8403,-9187,14821]],"properties":{"prefix":"8.1.6.6.3.1.1"}},{"type":"Polygon","arcs":[[-7538,-13902,11196,14822]],"properties":{"prefix":"7.6.3.1.1.2.1"}},{"type":"Polygon","arcs":[[14823,13048,14824]],"properties":{"prefix":"7.4.7.3.2.2.1"}},{"type":"Polygon","arcs":[[2024,14825,13438,8596,-13905,-6204,-6203,2021,2022,2023]],"properties":{"prefix":"8.1.6.2.2.1.2"}},{"type":"Polygon","arcs":[[6516,-5376,-5375,6517,8695,-8375,-13777]],"properties":{"prefix":"7.4.4.2.1.3.2"}},{"type":"Polygon","arcs":[[-832,-8608,-8607,-8610,10615,14826,-833]],"properties":{"prefix":"4.1.3.2.1.1.1"}},{"type":"Polygon","arcs":[[14827,13309,-3089,-1068,-1067]],"properties":{"prefix":"7.4.6.4.6.3.1"}},{"type":"Polygon","arcs":[[4712,-13850,14828,-14036]],"properties":{"prefix":"7.4.8.4.1.1.4"}},{"type":"Polygon","arcs":[[-13913,570,-3485,-3484,14829]],"properties":{"prefix":"1.3.2.2.2.2.2"}},{"type":"Polygon","arcs":[[7348,420,11714,14830]],"properties":{"prefix":"1.3.1.4.3.1.1"}},{"type":"Polygon","arcs":[[14831,-13854,8578,-8232,10971,-13786]],"properties":{"prefix":"7.4.6.4.3.1.2"}},{"type":"Polygon","arcs":[[-13916,13383,8610,-7377,-2542,-2541,905,14832]],"properties":{"prefix":"9.8.2.2.4.2.2"}},{"type":"Polygon","arcs":[[-11206,-14200,13395,14833]],"properties":{"prefix":"3.4.1.2.1.1.1"}},{"type":"Polygon","arcs":[[-5851,-5850,-5849,-14802,-13792,14834]],"properties":{"prefix":"5.3.5.1.2.3.1"}},{"type":"Polygon","arcs":[[-4382,-8095,10222,11560,14835]],"properties":{"prefix":"1.7.3.2.1.2.1"}},{"type":"Polygon","arcs":[[6295,-11764,1058,6298,-12230,14836]],"properties":{"prefix":"4.1.3.3.4.2.1"}},{"type":"Polygon","arcs":[[14837,8154,-7785,-3871,-3870,14838,8156,8157,400]],"properties":{"prefix":"2.4.5.1.3.3.1"}},{"type":"Polygon","arcs":[[11567,7446,11568,14839]],"properties":{"prefix":"4.1.5.2.1.1.1"}},{"type":"Polygon","arcs":[[9449,3032,3033,3034,3035,-5661,14840,-13919]],"properties":{"prefix":"5.3.2.2.1.2.2"}},{"type":"Polygon","arcs":[[1551,-13865,14841,-13922,1550]],"properties":{"prefix":"4.8.2.1.1.2.2"}},{"type":"Polygon","arcs":[[7908,-6122,-7509,-7508,-7507,14842]],"properties":{"prefix":"6.3.3.5.1.1.4"}},{"type":"Polygon","arcs":[[11709,14843,183,11705,14844]],"properties":{"prefix":"6.4.4.1.3.3.1"}},{"type":"Polygon","arcs":[[5959,-7366,-12588,-12592,14845]],"properties":{"prefix":"7.7.2.1.2.1.1"}},{"type":"Polygon","arcs":[[14846,2479,2480,7497,7498,14847]],"properties":{"prefix":"7.2.3.1.1.2.1"}},{"type":"Polygon","arcs":[[4743,4744,4745,-14688,4747,9942,9943,-9290,12948,14848]],"properties":{"prefix":"9.1.3.1.5.4.1"}},{"type":"Polygon","arcs":[[12187,14849,4009,796,797]],"properties":{"prefix":"8.1.2.2.1.2.1"}},{"type":"Polygon","arcs":[[14850,-11822,-11321,-3224,-3223,-3594,-13877]],"properties":{"prefix":"7.6.1.4.1.3.2"}},{"type":"Polygon","arcs":[[5691,12273,14851]],"properties":{"prefix":"5.3.6.2.3.3.1"}},{"type":"Polygon","arcs":[[359,14852,-8957,-8956,6878,-9778,-7272,-7271,610,611,612]],"properties":{"prefix":"2.6.6.2.3.1.1"}},{"type":"Polygon","arcs":[[-6265,14853,14854]],"properties":{"prefix":"5.3.6.1.1.2.1"}},{"type":"Polygon","arcs":[[-14720,-14499]],"properties":{"prefix":"9.4.5.3.1.1.2"}},{"type":"Polygon","arcs":[[9100,-13940,-967,9102,13154,14855]],"properties":{"prefix":"7.7.1.1.1.1.1"}},{"type":"Polygon","arcs":[[-2466,-2465,-8479,14856]],"properties":{"prefix":"4.2.1.1.4.4.2"}},{"type":"Polygon","arcs":[[5087,-516,14857,12536,5086]],"properties":{"prefix":"2.2.2.2.3.1.1"}},{"type":"Polygon","arcs":[[76,8458,12705,14858]],"properties":{"prefix":"4.4.4.2.2.2.1"}},{"type":"Polygon","arcs":[[-8100,12899,4773,14859]],"properties":{"prefix":"9.4.5.2.3.1.1"}},{"type":"Polygon","arcs":[[-3469,-3468,-9184,-9183,14860,-10088]],"properties":{"prefix":"1.3.2.4.3.1.1"}},{"type":"Polygon","arcs":[[4656,-13951,14861,-11008]],"properties":{"prefix":"9.3.4.1.3.1.3"}},{"type":"Polygon","arcs":[[10840,-13893,9326,-2704,374]],"properties":{"prefix":"2.6.4.2.4.2.2"}},{"type":"Polygon","arcs":[[9583,12554,-7318,-7317,12555,14862]],"properties":{"prefix":"7.5.3.1.3.1.1"}},{"type":"Polygon","arcs":[[12692,977,-10848,5213,2122,7897,14863]],"properties":{"prefix":"4.4.4.4.5.1.1"}},{"type":"Polygon","arcs":[[14864,-1567,-1566,-1565,-3109,-3133,-13954]],"properties":{"prefix":"9.4.3.1.2.2.2"}},{"type":"Polygon","arcs":[[-14024,1413,1414,1415,14865,-7392]],"properties":{"prefix":"1.3.4.2.4.1.1"}},{"type":"Polygon","arcs":[[-14028,14866,-14026,6403,-9457,-9459,-10761,14867]],"properties":{"prefix":"1.3.1.3.1.2.4"}},{"type":"Polygon","arcs":[[-5320,-5319,-5318,-13842,14868,314]],"properties":{"prefix":"8.5.2.2.5.4.1"}},{"type":"Polygon","arcs":[[14869,14870,4099,4100,4,4876]],"properties":{"prefix":"1.1.2.1.5.1.4"}},{"type":"Polygon","arcs":[[14871,-2062,-2061,-2060,-14039,-7589]],"properties":{"prefix":"7.5.3.6.1.3.1"}},{"type":"Polygon","arcs":[[-13962,14872,12607]],"properties":{"prefix":"8.2.1.8.1.2.2"}},{"type":"Polygon","arcs":[[9245,-3958,-3957,9246,9247,9248,-4039,12241,14873]],"properties":{"prefix":"9.3.2.1.1.4.2"}},{"type":"Polygon","arcs":[[14874,-13964,-13907]],"properties":{"prefix":"4.1.5.2.3.1.3"}},{"type":"Polygon","arcs":[[-13911,14875,10179]],"properties":{"prefix":"6.3.1.1.2.4.2"}},{"type":"Polygon","arcs":[[14876,6502,-2613,-7378,-8611,-8615,-8614]],"properties":{"prefix":"9.8.2.2.3.2.1"}},{"type":"Polygon","arcs":[[14877,2172,2173,2174,14878]],"properties":{"prefix":"1.5.1.1.3.4.1"}},{"type":"Polygon","arcs":[[3665,14879,9662,9663,-792]],"properties":{"prefix":"7.8.2.1.2.1.1"}},{"type":"Polygon","arcs":[[14880,-3495,-3494,11243,7762,6251]],"properties":{"prefix":"6.3.4.1.2.2.1"}},{"type":"Polygon","arcs":[[14881,4202,-13969,12595,10321,12596,12597,12598]],"properties":{"prefix":"8.1.4.3.1.3.2"}},{"type":"Polygon","arcs":[[-6382,-1255,-1254,-14254,14882]],"properties":{"prefix":"7.3.1.2.3.2.4"}},{"type":"Polygon","arcs":[[-8292,8807,7130,7131,7132,14883,8806]],"properties":{"prefix":"8.1.5.5.3.1.1"}},{"type":"Polygon","arcs":[[-11000,2594,2595,-11908,14884]],"properties":{"prefix":"7.2.1.5.2.3.1"}},{"type":"Polygon","arcs":[[-2352,4337,14885,10958,-3529,-5252,-5251,-2353]],"properties":{"prefix":"4.3.1.3.1.2.1"}},{"type":"Polygon","arcs":[[285,-5514,-12749,14886]],"properties":{"prefix":"8.3.1.1.1.1.1"}},{"type":"Polygon","arcs":[[3849,-11644,-11646,14887,3848]],"properties":{"prefix":"6.4.2.1.3.1.3"}},{"type":"Polygon","arcs":[[-1090,-1089,-14807,10898,-10837,-1094,-1093,-1092,-1091]],"properties":{"prefix":"6.1.1.1.3.2.2"}},{"type":"Polygon","arcs":[[14888,6856,11069,11070,11071,11072,11073,-13982]],"properties":{"prefix":"7.2.4.4.3.2.1"}},{"type":"Polygon","arcs":[[11706,11707,11708,-14845]],"properties":{"prefix":"6.4.4.1.3.3.3"}},{"type":"Polygon","arcs":[[-12474,-2324,9981,9982,14889,-13872]],"properties":{"prefix":"2.4.1.3.3.2.2"}},{"type":"Polygon","arcs":[[12390,-3117,-3116,-3115,12391,14890]],"properties":{"prefix":"9.4.5.1.3.1.1"}},{"type":"Polygon","arcs":[[14891,-13497,-11954,-11958]],"properties":{"prefix":"1.7.2.1.2.1.3"}},{"type":"Polygon","arcs":[[315,-12932,-8527,14892,5319]],"properties":{"prefix":"8.5.2.3.1.1.1"}},{"type":"Polygon","arcs":[[9976,14893,12826,-7612,2499]],"properties":{"prefix":"7.2.3.2.2.4.2"}},{"type":"Polygon","arcs":[[11098,-13933]],"properties":{"prefix":"9.4.5.2.1.1.3"}},{"type":"Polygon","arcs":[[9360,9361,9362,9363,9364,11417,-13996]],"properties":{"prefix":"7.1.1.3.2.1.2"}},{"type":"Polygon","arcs":[[12373,-6617,14894,-6099,14895]],"properties":{"prefix":"6.3.3.1.2.1.1"}},{"type":"Polygon","arcs":[[9218,9219,-11390,-5744,14896,9217]],"properties":{"prefix":"7.5.3.2.3.1.1"}},{"type":"Polygon","arcs":[[11974,14897,11972,8502,-6041,11973]],"properties":{"prefix":"4.3.2.2.1.4.1"}},{"type":"Polygon","arcs":[[-6264,-5690,-5689,-5696,14898,-14854]],"properties":{"prefix":"5.3.6.1.1.2.3"}},{"type":"Polygon","arcs":[[12687,-10845,-7410,14899]],"properties":{"prefix":"8.2.1.5.3.4.1"}},{"type":"Polygon","arcs":[[12446,1922,-9403,-13825,-14007,14900]],"properties":{"prefix":"8.5.2.1.2.2.1"}},{"type":"Polygon","arcs":[[-4776,1829,14901,-4764]],"properties":{"prefix":"9.4.5.3.4.2.1"}},{"type":"Polygon","arcs":[[321,650,12744,14902]],"properties":{"prefix":"8.5.2.3.3.1.1"}},{"type":"Polygon","arcs":[[2062,2063,2064,13336,-7945,14903,2061]],"properties":{"prefix":"7.6.1.3.1.1.1"}},{"type":"Polygon","arcs":[[-11070,6857,6858,-7450,-7449,-7448,-5673,-14071]],"properties":{"prefix":"7.2.4.4.3.4.2"}},{"type":"Polygon","arcs":[[14904,11482,-14787,2361,2362,2363,-7956]],"properties":{"prefix":"4.2.2.1.5.1.1"}},{"type":"Polygon","arcs":[[14905,-9218,-9217,-9225]],"properties":{"prefix":"7.5.3.2.1.1.1"}},{"type":"Polygon","arcs":[[14906,-11839,469,-14014,-3818,-3817,-3816]],"properties":{"prefix":"1.9.2.8.3.3.2"}},{"type":"Polygon","arcs":[[14907,8822,8823,8824,8825,8826]],"properties":{"prefix":"7.2.2.4.2.3.1"}},{"type":"Polygon","arcs":[[11186,11187,3803,3804,14908]],"properties":{"prefix":"2.4.2.1.1.1.1"}},{"type":"Polygon","arcs":[[189,-8443,-8452,-13949]],"properties":{"prefix":"7.5.3.3.2.2.3"}},{"type":"Polygon","arcs":[[-10877,-14019,-8832,-8831,-8830,-2593,-2592,-14082]],"properties":{"prefix":"7.2.2.4.1.4.2"}},{"type":"Polygon","arcs":[[12278,-1116,-1115,-1114,3360,3361,12279,12280,14909]],"properties":{"prefix":"7.3.2.2.4.3.1"}},{"type":"Polygon","arcs":[[-14021,14910,-14088,14911,14912,-3348,-11413,9081,1354]],"properties":{"prefix":"7.3.3.1.1.2.5"}},{"type":"Polygon","arcs":[[-14795,12626,14913]],"properties":{"prefix":"6.3.5.2.3.1.2"}},{"type":"Polygon","arcs":[[-13100,-1109,-1108,-1107,13356,14914]],"properties":{"prefix":"7.3.1.4.1.1.1"}},{"type":"Polygon","arcs":[[-3056,-3055,-11722,-11726,14915]],"properties":{"prefix":"7.4.6.4.2.1.2"}},{"type":"Polygon","arcs":[[2560,-1852,5103,5104,5105,5106,14916]],"properties":{"prefix":"5.2.1.1.1.3.1"}},{"type":"Polygon","arcs":[[-6562,-6561,-6560,-13900,14917,11919,14918]],"properties":{"prefix":"9.1.7.3.1.3.1"}},{"type":"Polygon","arcs":[[-5896,-14030,12173,-8282,-8281,2231,2232,2233,14919]],"properties":{"prefix":"4.1.4.2.1.2.2"}},{"type":"Polygon","arcs":[[9479,14920]],"properties":{"prefix":"7.5.2.1.2.7.2"}},{"type":"Polygon","arcs":[[14921,-8921,-9145]],"properties":{"prefix":"7.6.2.4.1.4.1"}},{"type":"Polygon","arcs":[[-2100,-2099,-2098,-8129,-12298,-11976,-11975,-14099]],"properties":{"prefix":"4.3.2.2.1.2.2"}},{"type":"Polygon","arcs":[[-14875,-13906,-461,13230,5467,-13965]],"properties":{"prefix":"4.1.5.2.3.1.5"}},{"type":"Polygon","arcs":[[14922,-12252,14923]],"properties":{"prefix":"1.5.1.1.3.4.3"}},{"type":"Polygon","arcs":[[-5606,-5605,-5611,-2849,11582,11583,14924]],"properties":{"prefix":"2.6.1.1.2.2.1"}},{"type":"Polygon","arcs":[[14925,279,5287,5288]],"properties":{"prefix":"8.2.2.1.3.2.2"}},{"type":"Polygon","arcs":[[12402,14926,12401,8636,4148,4149,-2474,-2518,6699]],"properties":{"prefix":"7.2.4.6.1.5.1"}},{"type":"Polygon","arcs":[[14927,-12031,9685,13617]],"properties":{"prefix":"7.8.1.2.4.1.1"}},{"type":"Polygon","arcs":[[-14428,-1189,-1188,-1187,8344,11692,14928]],"properties":{"prefix":"7.1.1.4.4.1.1"}},{"type":"Polygon","arcs":[[4632,4633,14929,11052,11053,7411]],"properties":{"prefix":"8.2.1.5.1.2.1"}},{"type":"Polygon","arcs":[[14930,-3919,-3918,-3917,5254,-10064,5257]],"properties":{"prefix":"9.3.1.5.3.1.1"}},{"type":"Polygon","arcs":[[-13254,-2180,-2179,-2178,-13980,14931]],"properties":{"prefix":"1.4.2.4.2.3.2"}},{"type":"Polygon","arcs":[[14932,2998,2999,3000,-12445]],"properties":{"prefix":"5.3.2.2.5.2.1"}},{"type":"Polygon","arcs":[[-9617,-11516,-11515,14933]],"properties":{"prefix":"8.2.1.4.1.1.3"}},{"type":"Polygon","arcs":[[-9397,-9396,-9395,5968,10395,14934,-12589]],"properties":{"prefix":"7.7.2.1.2.4.2"}},{"type":"Polygon","arcs":[[14935,11494,-13930,-1802,1243,1244,1245]],"properties":{"prefix":"6.1.1.2.1.3.1"}},{"type":"Polygon","arcs":[[-8871,-6018,-6017,-6016,-6015,14936]],"properties":{"prefix":"1.5.1.1.3.6.2"}},{"type":"Polygon","arcs":[[8564,-13991]],"properties":{"prefix":"8.1.3.4.1.3.2"}},{"type":"Polygon","arcs":[[-6616,-6087,-6086,-6085,12374,-6100,-14895]],"properties":{"prefix":"6.3.3.1.2.1.3"}},{"type":"Polygon","arcs":[[11758,-7926,-618,5045,5046,-805,14937]],"properties":{"prefix":"7.8.4.1.2.1.2"}},{"type":"Polygon","arcs":[[-8593,-8592,-11373,-11377,14938,8]],"properties":{"prefix":"1.1.2.2.2.2.1"}},{"type":"Polygon","arcs":[[10866,-711,-710,8144,10867,14939]],"properties":{"prefix":"9.3.4.1.2.1.1"}},{"type":"Polygon","arcs":[[5702,-7557,14940,11914,5700,5701]],"properties":{"prefix":"1.3.2.6.3.2.1"}},{"type":"Polygon","arcs":[[10928,14941,5232,5233,5234,5235,5236,10927]],"properties":{"prefix":"6.2.1.5.3.1.1"}},{"type":"Polygon","arcs":[[-1305,-1304,-3883,-3897,14942,-12682,-1306]],"properties":{"prefix":"7.5.1.2.2.2.1"}},{"type":"Polygon","arcs":[[107,7326,7327,14943]],"properties":{"prefix":"5.3.2.1.4.2.1"}},{"type":"Polygon","arcs":[[3640,-8695,10162,10163,14944]],"properties":{"prefix":"6.3.7.3.1.3.2"}},{"type":"Polygon","arcs":[[11766,225,-14077,9953,14945]],"properties":{"prefix":"7.7.2.3.1.2.2"}},{"type":"Polygon","arcs":[[2181,-14190,-6849,4070,4071,14946,-14012]],"properties":{"prefix":"2.2.1.6.2.1.3"}},{"type":"Polygon","arcs":[[3730,3731,3732,3733,3734,14947,3729]],"properties":{"prefix":"2.3.2.5.2.1.1"}},{"type":"Polygon","arcs":[[-14015,14948,6411,9457,9458,11280]],"properties":{"prefix":"1.3.1.3.2.2.3"}},{"type":"Polygon","arcs":[[-9753,11423,11424,11425,-14017,14949,9902]],"properties":{"prefix":"7.6.3.3.1.2.3"}},{"type":"Polygon","arcs":[[-14089,-14911,-14022,1356,1357,1358,1359]],"properties":{"prefix":"7.3.3.1.1.2.3"}},{"type":"Polygon","arcs":[[-1240,12860,14950,-14138]],"properties":{"prefix":"7.2.7.4.4.1.1"}},{"type":"Polygon","arcs":[[-14093,446,447,11214]],"properties":{"prefix":"1.9.1.3.1.2.2"}},{"type":"Polygon","arcs":[[-6647,-6646,-12538,-12541,14951]],"properties":{"prefix":"7.6.6.2.1.3.4"}},{"type":"Polygon","arcs":[[-3003,-3307,8378,-13063,14952]],"properties":{"prefix":"5.3.3.2.1.1.3"}},{"type":"Polygon","arcs":[[-14203,-14031,3209,3210,3211]],"properties":{"prefix":"7.6.2.4.1.1.4"}},{"type":"Polygon","arcs":[[12926,-10735,-10734,-13989,-13927]],"properties":{"prefix":"9.3.5.1.2.2.3"}},{"type":"Polygon","arcs":[[14953,-6071,-3029]],"properties":{"prefix":"5.3.3.1.3.1.1"}},{"type":"Polygon","arcs":[[-6027,-6026,-6050,14954]],"properties":{"prefix":"4.3.2.2.4.1.2"}},{"type":"Polygon","arcs":[[173,3840,13027,14955]],"properties":{"prefix":"6.4.2.1.2.1.1"}},{"type":"Polygon","arcs":[[14956,5734,5735]],"properties":{"prefix":"7.3.2.1.2.1.1"}},{"type":"Polygon","arcs":[[-7843,-3650,-3649,4368,14957]],"properties":{"prefix":"7.8.1.7.2.1.2"}},{"type":"Polygon","arcs":[[-3392,14958,11135,11136,-3393]],"properties":{"prefix":"1.3.4.2.1.1.1"}},{"type":"Polygon","arcs":[[4194,624,-7436,-7435,14959]],"properties":{"prefix":"8.1.4.1.2.3.1"}},{"type":"Polygon","arcs":[[-14109,8700,-13001,-13000]],"properties":{"prefix":"7.3.2.4.1.2.2"}},{"type":"Polygon","arcs":[[-4518,-4517,9985,9986,9987,12100,14960]],"properties":{"prefix":"7.8.1.3.2.1.1"}},{"type":"Polygon","arcs":[[14961,-1076,-7374,-7373,-14150]],"properties":{"prefix":"6.2.1.4.1.2.2"}},{"type":"Polygon","arcs":[[14962,11549,-14051,-1231,-5573,-11033]],"properties":{"prefix":"7.2.7.4.2.3.2"}},{"type":"Polygon","arcs":[[10989,14963,14964]],"properties":{"prefix":"7.4.4.6.4.1.2"}},{"type":"Polygon","arcs":[[4020,4021,-12953,14965]],"properties":{"prefix":"9.3.1.6.3.3.1"}},{"type":"Polygon","arcs":[[14966,-14114,-7918]],"properties":{"prefix":"6.2.1.2.3.1.3"}},{"type":"Polygon","arcs":[[-7341,4415,14967,14968,-4114,-4113,-4112,-4111,12065,12066]],"properties":{"prefix":"4.4.4.1.1.2.3"}},{"type":"Polygon","arcs":[[10983,-1071,119,7370,-5244,-5243,5864,5865,14969]],"properties":{"prefix":"6.2.1.4.2.2.1"}},{"type":"Polygon","arcs":[[3446,14970,8400,6769,-5100,12615,-6336,-5091,3445]],"properties":{"prefix":"4.3.4.2.1.2.1"}},{"type":"Polygon","arcs":[[14971,-6000,-5999,-5998,-5380,-5379,9467,9468]],"properties":{"prefix":"2.6.2.1.3.4.1"}},{"type":"Polygon","arcs":[[14972,11016,11017,11018,3826,11019]],"properties":{"prefix":"7.7.1.4.2.1.1"}},{"type":"Polygon","arcs":[[14973,12632,2520,2521,10288,10289,12633,10291,880]],"properties":{"prefix":"9.8.3.3.2.3.2"}},{"type":"Polygon","arcs":[[3219,14974,4914,4915]],"properties":{"prefix":"7.6.2.3.3.1.2"}},{"type":"Polygon","arcs":[[14975,11406,-11037,11407,1874]],"properties":{"prefix":"5.1.2.4.4.3.1"}},{"type":"Polygon","arcs":[[9006,14976,1383,-8693,-8692]],"properties":{"prefix":"1.3.3.6.1.1.4"}},{"type":"Polygon","arcs":[[14977,7583,7584,7585,-3191,-3190,-3189]],"properties":{"prefix":"7.5.3.6.2.3.1"}},{"type":"Polygon","arcs":[[-6131,-6130,-6129,14978]],"properties":{"prefix":"5.1.2.3.2.2.1"}},{"type":"Polygon","arcs":[[-7081,-7080,-7079,-11529,-11528,757,14979]],"properties":{"prefix":"8.1.3.3.1.1.1"}},{"type":"Polygon","arcs":[[14980,-9833,10661,10662,10663]],"properties":{"prefix":"1.3.1.2.1.2.1"}},{"type":"Polygon","arcs":[[2596,-14062,11905,-5119,-5118,-11004,-11507,11906,11907]],"properties":{"prefix":"7.2.1.5.2.1.2"}},{"type":"Polygon","arcs":[[-14065,4027,-10711,-10710,-7625]],"properties":{"prefix":"9.3.1.6.3.4.3"}},{"type":"Polygon","arcs":[[10938,14981,14982]],"properties":{"prefix":"1.3.4.2.5.1.1"}},{"type":"Polygon","arcs":[[8422,11030,11031,11032,-5572,14983]],"properties":{"prefix":"7.2.7.4.2.1.1"}},{"type":"Polygon","arcs":[[-12736,8218,13334,14984]],"properties":{"prefix":"2.6.5.1.3.2.1"}},{"type":"Polygon","arcs":[[8276,14985,-11514,-879,-878]],"properties":{"prefix":"4.1.2.4.5.1.2"}},{"type":"Polygon","arcs":[[14986,-5406,-5405,-9750]],"properties":{"prefix":"2.4.1.6.1.3.3"}},{"type":"Polygon","arcs":[[14987,-14177,4285,7991,7992]],"properties":{"prefix":"5.3.3.2.3.1.1"}},{"type":"Polygon","arcs":[[2700,14988,10266,6983,-14073,-9807,2699]],"properties":{"prefix":"2.6.5.2.1.3.1"}},{"type":"Polygon","arcs":[[10401,-9362,13163,14989,13162]],"properties":{"prefix":"7.1.1.3.4.1.2"}},{"type":"Polygon","arcs":[[14990,12839,7575,3575,3576,7576,7577,7578,-4500]],"properties":{"prefix":"7.6.4.1.2.2.2"}},{"type":"Polygon","arcs":[[227,-8550,9950,9951,-14078]],"properties":{"prefix":"7.7.2.3.1.2.4"}},{"type":"Polygon","arcs":[[-6151,-14057,-4836,12655,-13987]],"properties":{"prefix":"3.4.4.6.3.2.2"}},{"type":"Polygon","arcs":[[11122,11123,11124,14991]],"properties":{"prefix":"4.4.3.4.3.1.1"}},{"type":"Polygon","arcs":[[-8933,11439,14992]],"properties":{"prefix":"9.3.4.4.2.1.2"}},{"type":"Polygon","arcs":[[14993,-14912,-14087]],"properties":{"prefix":"7.3.3.1.1.2.1"}},{"type":"Polygon","arcs":[[299,-1926,9601,9602,14994]],"properties":{"prefix":"8.4.2.2.2.1.2"}},{"type":"Polygon","arcs":[[4333,14995,13347,-3712,-3711,-11637,6431,6432]],"properties":{"prefix":"2.3.1.1.1.2.1"}},{"type":"Polygon","arcs":[[14996,3415,-14135]],"properties":{"prefix":"6.3.3.3.1.2.2"}},{"type":"Polygon","arcs":[[-14027,-14867]],"properties":{"prefix":"1.3.1.3.1.2.2"}},{"type":"Polygon","arcs":[[11812,349,8283,8284,862,863,864,5927,-7205,14997]],"properties":{"prefix":"9.8.6.4.2.2.1"}},{"type":"Polygon","arcs":[[1161,-8211,14998,-11770]],"properties":{"prefix":"6.4.4.1.6.1.2"}},{"type":"Polygon","arcs":[[-11532,-13292,14999,3194]],"properties":{"prefix":"7.6.2.5.1.4.2"}},{"type":"Polygon","arcs":[[9212,9213,-1062,-1061,-1060,-1059,-1058,15000]],"properties":{"prefix":"7.4.6.4.4.3.1"}},{"type":"Polygon","arcs":[[-8492,-8491,-12175,15001,-8493]],"properties":{"prefix":"1.7.2.6.1.2.1"}},{"type":"Polygon","arcs":[[15002,-11578,3081,7574,13047,-14824]],"properties":{"prefix":"7.4.7.3.2.2.4"}},{"type":"Polygon","arcs":[[8299,8300,-4153,15003,2027,15004]],"properties":{"prefix":"8.1.5.5.5.7.1"}},{"type":"Polygon","arcs":[[3292,9114,-14104,1100,1101,1102,12573,12574,15005]],"properties":{"prefix":"5.3.6.3.6.2.2"}},{"type":"Polygon","arcs":[[-14255,6800,15006]],"properties":{"prefix":"7.3.1.2.3.2.2"}},{"type":"Polygon","arcs":[[-12610,5763,-1202,-1201,2606,5764,-13376,15007]],"properties":{"prefix":"7.2.1.3.1.5.1"}},{"type":"Polygon","arcs":[[15008,-1690,-2247,11836,11837,8978,8979]],"properties":{"prefix":"2.3.3.4.3.1.1"}},{"type":"Polygon","arcs":[[9705,9706,5330,-8344,-8345,-1186,-1185,15009]],"properties":{"prefix":"7.1.1.4.3.1.1"}},{"type":"Polygon","arcs":[[2610,2611,2612,2613,2614,15010,8768,7163]],"properties":{"prefix":"9.8.1.1.2.1.1"}},{"type":"Polygon","arcs":[[15011,3794,9072]],"properties":{"prefix":"2.4.2.1.2.1.1"}},{"type":"Polygon","arcs":[[1624,1625,1626,12385,15012]],"properties":{"prefix":"7.7.1.2.2.1.1"}},{"type":"Polygon","arcs":[[9854,9855,-14113,15013]],"properties":{"prefix":"6.2.1.2.3.1.1"}},{"type":"Polygon","arcs":[[15014,4418,2128,2129,15015]],"properties":{"prefix":"4.4.4.1.1.2.1"}},{"type":"Polygon","arcs":[[15016,5393,13045]],"properties":{"prefix":"8.2.1.4.2.1.1"}},{"type":"Polygon","arcs":[[8791,8792,15017,2288]],"properties":{"prefix":"7.5.1.2.1.4.3"}},{"type":"Polygon","arcs":[[15018,10726,9535,-2077,-2076]],"properties":{"prefix":"7.5.6.3.3.5.2"}},{"type":"Polygon","arcs":[[-14159,9172,15019]],"properties":{"prefix":"7.2.4.2.2.3.1"}},{"type":"Polygon","arcs":[[15020,-14160,-531,-530,-529,-14232]],"properties":{"prefix":"2.3.1.2.1.1.2"}},{"type":"Polygon","arcs":[[9428,9429,5561,9430,9431,9432,9433,15021,13042]],"properties":{"prefix":"2.3.3.2.4.2.1"}},{"type":"Polygon","arcs":[[7836,15022,10808,10809,10810,6238]],"properties":{"prefix":"9.4.2.3.2.3.1"}},{"type":"Polygon","arcs":[[2802,2803,15023,4394,12800]],"properties":{"prefix":"2.6.3.1.1.1.1"}},{"type":"Polygon","arcs":[[15024,165,10147,10148,10149]],"properties":{"prefix":"6.4.1.2.1.1.1"}},{"type":"Polygon","arcs":[[13475,9687,9688,-3370,-3401,551,552,-14236]],"properties":{"prefix":"1.3.2.6.3.3.2"}},{"type":"Polygon","arcs":[[952,15025,-10934,-14060]],"properties":{"prefix":"9.3.5.5.3.3.1"}},{"type":"Polygon","arcs":[[-14000,-4249,-14168]],"properties":{"prefix":"7.4.4.1.1.2.3"}},{"type":"Polygon","arcs":[[-3550,-14241,12807,-9229,12808,15026]],"properties":{"prefix":"6.4.3.3.5.2.1"}},{"type":"Polygon","arcs":[[10939,10940,10941,15027,-14982]],"properties":{"prefix":"1.3.4.2.5.1.3"}},{"type":"Polygon","arcs":[[12,-1982,-1981,5617,-1998,-14173]],"properties":{"prefix":"1.1.2.2.3.2.2"}},{"type":"Polygon","arcs":[[-14176,15028,-14245,12667,12668,12669]],"properties":{"prefix":"2.6.6.1.2.1.2"}},{"type":"Polygon","arcs":[[2958,-6747,-6746,-6745,15029,-2724]],"properties":{"prefix":"9.1.5.1.4.1.2"}},{"type":"Polygon","arcs":[[7941,2066,11367,15030]],"properties":{"prefix":"7.6.1.3.2.1.1"}},{"type":"Polygon","arcs":[[-607,15031,11107,-608]],"properties":{"prefix":"3.4.4.7.1.2.1"}},{"type":"Polygon","arcs":[[4494,3582,-11213,-11896,-12676,-14074]],"properties":{"prefix":"7.6.4.2.4.2.2"}},{"type":"Polygon","arcs":[[-14251,15032,-9062,-1749,-1748]],"properties":{"prefix":"2.2.2.1.2.1.2"}},{"type":"Polygon","arcs":[[-11314,-6551,-13826,8240,15033]],"properties":{"prefix":"2.4.1.3.2.2.1"}},{"type":"Polygon","arcs":[[12588,12589,12590,12591,15034,-9398]],"properties":{"prefix":"7.7.2.1.2.2.1"}},{"type":"Polygon","arcs":[[-11378,-3707,-540,-539,12351,12352,15035]],"properties":{"prefix":"2.3.1.2.2.3.1"}},{"type":"Polygon","arcs":[[-4596,-4595,5628,9691,15036,-14258]],"properties":{"prefix":"5.1.3.1.2.1.1"}},{"type":"Polygon","arcs":[[12957,15037,3986,-1507,15038]],"properties":{"prefix":"9.3.3.2.1.2.3"}},{"type":"Polygon","arcs":[[-14261,-14198,-11395,15039]],"properties":{"prefix":"7.2.3.2.3.3.2"}},{"type":"Polygon","arcs":[[6621,-14133,-11119]],"properties":{"prefix":"6.3.3.3.1.2.4"}},{"type":"Polygon","arcs":[[15040,-8221,-7826,-7825,-7824,-7831,-11066]],"properties":{"prefix":"5.1.3.2.2.2.1"}},{"type":"Polygon","arcs":[[15041,4003,2002,4004,4005,4006,-12190]],"properties":{"prefix":"8.1.2.2.1.1.1"}},{"type":"Polygon","arcs":[[836,837,838,839,3689,-14522,-14267,15042]],"properties":{"prefix":"3.4.3.2.4.2.1"}},{"type":"Polygon","arcs":[[-3113,-3112,-4759,-4758,12789,12790,4310,15043]],"properties":{"prefix":"9.4.5.1.3.3.2"}},{"type":"Polygon","arcs":[[11788,15044,9304,-7458,15045]],"properties":{"prefix":"7.5.3.1.1.2.1"}},{"type":"Polygon","arcs":[[13715,-4894,-2119,-2118,15046]],"properties":{"prefix":"4.6.1.1.6.3.1"}},{"type":"Polygon","arcs":[[-5233,-5232,1767,-9909,-7672,-7671,-7675,-14207]],"properties":{"prefix":"6.2.1.6.3.1.2"}},{"type":"Polygon","arcs":[[10872,10873,10874,-4037,-4036,-4035,-4034,15047]],"properties":{"prefix":"9.3.2.1.1.1.1"}},{"type":"Polygon","arcs":[[15048,-11747,-11746,-4967,10081,10082,10083,13615]],"properties":{"prefix":"7.7.1.2.4.1.1"}},{"type":"Polygon","arcs":[[5084,15049,-4055,5083]],"properties":{"prefix":"2.2.2.2.3.2.1"}},{"type":"Polygon","arcs":[[15050,12720,4508,8941,8942,-14331]],"properties":{"prefix":"1.8.3.5.1.1.4"}},{"type":"Polygon","arcs":[[-5619,-4929,-4928,-4927,15051]],"properties":{"prefix":"7.6.2.2.1.2.1"}},{"type":"Polygon","arcs":[[7553,7554,7555,7556,5703,15052]],"properties":{"prefix":"1.3.2.6.2.1.1"}},{"type":"Polygon","arcs":[[1570,1571,1572,1573,-12991,4793,15053]],"properties":{"prefix":"9.8.3.3.3.1.3"}},{"type":"Polygon","arcs":[[3978,3979,7558,4864,4865,15054]],"properties":{"prefix":"9.3.3.1.4.2.1"}},{"type":"Polygon","arcs":[[246,-8369,15055,15056]],"properties":{"prefix":"7.8.1.5.1.5.1"}},{"type":"Polygon","arcs":[[3255,-14273,12117,-7017]],"properties":{"prefix":"9.4.2.4.1.2.2"}},{"type":"Polygon","arcs":[[11824,15057,2493]],"properties":{"prefix":"7.2.3.2.4.1.1"}},{"type":"Polygon","arcs":[[-10914,-3723,-5542,8196,15058]],"properties":{"prefix":"2.3.3.1.2.2.2"}},{"type":"Polygon","arcs":[[-5662,-5681,13597,15059]],"properties":{"prefix":"7.2.4.1.1.2.1"}},{"type":"Polygon","arcs":[[15060,-4086,9300,-9003,15061,15062]],"properties":{"prefix":"2.1.2.1.3.1.3"}},{"type":"Polygon","arcs":[[11543,11544,6026,6027,7811,11545,11546,-2373]],"properties":{"prefix":"4.3.2.3.1.5.1"}},{"type":"Polygon","arcs":[[2831,2832,2833,2834,12014,12015,15063]],"properties":{"prefix":"2.6.3.2.3.1.1"}},{"type":"Polygon","arcs":[[13709,7449,6859,-5677,-5676,15064]],"properties":{"prefix":"7.2.4.4.5.1.1"}},{"type":"Polygon","arcs":[[15065,13620,47,9629,6192,-2642]],"properties":{"prefix":"1.7.1.3.1.1.3"}},{"type":"Polygon","arcs":[[15066,-11667,13271,646,647,-12302,-8712,-8711,-7132]],"properties":{"prefix":"8.1.5.3.1.3.1"}},{"type":"Polygon","arcs":[[15067,-14238,-5993]],"properties":{"prefix":"4.8.3.3.1.3.2"}},{"type":"Polygon","arcs":[[-7498,2481,2482,2483,1973,1974,11874,15068]],"properties":{"prefix":"7.2.3.1.2.2.1"}},{"type":"Polygon","arcs":[[-3548,-3547,-9518,12804,12805,-14240]],"properties":{"prefix":"6.4.3.3.5.2.3"}},{"type":"Polygon","arcs":[[12935,-7775,15069,1680,1681,1682,12934]],"properties":{"prefix":"2.1.2.1.5.1.1"}},{"type":"Polygon","arcs":[[15070,11001,11002,11003,-5117,11004,2589,2590,2591]],"properties":{"prefix":"7.2.1.5.2.4.1"}},{"type":"Polygon","arcs":[[-14307,241,-9989,-9988]],"properties":{"prefix":"7.8.1.3.1.2.2"}},{"type":"Polygon","arcs":[[15071,3572,11200,11201]],"properties":{"prefix":"7.6.4.1.1.4.2"}},{"type":"Polygon","arcs":[[-1192,-14430,11691,-1193]],"properties":{"prefix":"7.1.1.4.4.1.3"}},{"type":"Polygon","arcs":[[11353,11354,-14185,6316,6317,6318,15072]],"properties":{"prefix":"9.1.5.3.1.2.1"}},{"type":"Polygon","arcs":[[-14187,15073,-12288,-4184,-4183]],"properties":{"prefix":"1.7.1.1.2.2.3"}},{"type":"Polygon","arcs":[[82,11336,-14188,15074]],"properties":{"prefix":"5.1.3.2.5.2.2"}},{"type":"Polygon","arcs":[[15075,11889,8041,5981,-14194]],"properties":{"prefix":"7.4.4.3.1.1.3"}},{"type":"Polygon","arcs":[[-787,-786,-14129,15076,4522,11968,-788]],"properties":{"prefix":"7.8.1.4.1.2.4"}},{"type":"Polygon","arcs":[[15077,12956,-15039,-1506]],"properties":{"prefix":"9.3.3.2.1.2.1"}},{"type":"Polygon","arcs":[[317,-8532,-8531,15078]],"properties":{"prefix":"8.5.2.3.1.2.1"}},{"type":"Polygon","arcs":[[10782,2211,2212,8005,15079]],"properties":{"prefix":"4.1.6.3.2.1.1"}},{"type":"Polygon","arcs":[[-5428,-5412,-5411,15080,-9746,9891,13228,15081]],"properties":{"prefix":"2.4.1.6.1.2.1"}},{"type":"Polygon","arcs":[[-6404,-6403,-11607,15082,-6405]],"properties":{"prefix":"1.3.1.4.4.1.1"}},{"type":"Polygon","arcs":[[-15045,11789,11790,-7323,-7322,9303]],"properties":{"prefix":"7.5.3.1.1.2.3"}},{"type":"Polygon","arcs":[[12962,220,3820,3821,15083]],"properties":{"prefix":"7.7.1.4.2.4.1"}},{"type":"Polygon","arcs":[[-12449,13720,15084]],"properties":{"prefix":"8.5.2.1.2.1.1"}},{"type":"Polygon","arcs":[[12047,12048,6203,6204,6205,6206,6207,6208,12049,15085]],"properties":{"prefix":"8.1.6.7.1.1.1"}},{"type":"Polygon","arcs":[[1182,15086,12693,-10849,-10854,8336,8337]],"properties":{"prefix":"6.4.3.3.1.2.3"}},{"type":"Polygon","arcs":[[-14211,-3879,-3878,407,-14144]],"properties":{"prefix":"2.4.1.7.1.4.2"}},{"type":"Polygon","arcs":[[-5646,-5645,-5644,111,-9125,15087,-9127,15088]],"properties":{"prefix":"5.3.2.2.2.1.1"}},{"type":"Polygon","arcs":[[-11147,12850,15089]],"properties":{"prefix":"2.1.2.1.1.1.1"}},{"type":"Polygon","arcs":[[-9371,-8425,-8424,-8423,-8422,-8421,-10658,15090]],"properties":{"prefix":"7.2.7.4.1.1.1"}},{"type":"Polygon","arcs":[[15091,12764,-7728,12765,8801,8802,8803,12766]],"properties":{"prefix":"8.5.2.2.2.2.1"}},{"type":"Polygon","arcs":[[-8367,-8366,15092,-15056,-8368]],"properties":{"prefix":"7.8.1.5.1.5.3"}},{"type":"Polygon","arcs":[[15093,4267,6067,6068,15094]],"properties":{"prefix":"5.3.3.2.4.1.3"}},{"type":"Polygon","arcs":[[15095,13015,13016]],"properties":{"prefix":"1.1.2.1.1.2.1"}},{"type":"Polygon","arcs":[[-1043,-1042,-1041,10641,15096,-10425,-8757]],"properties":{"prefix":"7.4.5.2.2.5.1"}},{"type":"Polygon","arcs":[[10946,9422,9423,10947,15097,-14286]],"properties":{"prefix":"7.6.3.4.2.3.3"}},{"type":"Polygon","arcs":[[15098,-5207,-5206,-7473,-7476]],"properties":{"prefix":"4.4.4.3.1.3.2"}},{"type":"Polygon","arcs":[[-8258,-8263,15099,-8259]],"properties":{"prefix":"7.7.1.3.2.1.3"}},{"type":"Polygon","arcs":[[-3685,5166,7960,7961,15100]],"properties":{"prefix":"3.4.2.5.1.1.1"}},{"type":"Polygon","arcs":[[5447,15101,9529,-11322,11821,11822]],"properties":{"prefix":"7.6.1.4.1.2.1"}},{"type":"Polygon","arcs":[[15102,-15062,-9002,-9001,10724]],"properties":{"prefix":"2.1.2.1.3.1.1"}},{"type":"Polygon","arcs":[[12582,-11299,-11303,15103]],"properties":{"prefix":"4.1.2.1.1.1.2"}},{"type":"Polygon","arcs":[[15104,-7028,-7027,-14227,-661,-660,-659]],"properties":{"prefix":"9.1.2.2.2.1.1"}},{"type":"Polygon","arcs":[[15105,7879,855,856,857,3327]],"properties":{"prefix":"3.4.5.1.4.2.1"}},{"type":"Polygon","arcs":[[10521,589,590,15106]],"properties":{"prefix":"2.6.7.2.3.2.1"}},{"type":"Polygon","arcs":[[-4100,-4099,-4098,-14344,-7922,-4108,15107]],"properties":{"prefix":"1.1.1.1.2.2.1"}},{"type":"Polygon","arcs":[[-10667,-544,-543,4585,12415,15108]],"properties":{"prefix":"2.3.2.1.1.3.1"}},{"type":"Polygon","arcs":[[-5597,6991,12932,15109,-5593]],"properties":{"prefix":"3.4.4.1.1.1.1"}},{"type":"Polygon","arcs":[[11868,15110,9522,9523]],"properties":{"prefix":"2.1.1.2.1.2.1"}},{"type":"Polygon","arcs":[[-4152,-13289,-4156,2026,-15004]],"properties":{"prefix":"8.1.5.5.5.7.2"}},{"type":"Polygon","arcs":[[12355,12356,2242,2903,2904,15111]],"properties":{"prefix":"2.6.1.2.2.2.1"}},{"type":"Polygon","arcs":[[12578,292,9250,-3834,-3833,-3832,-3831,-2422,-2421,15112]],"properties":{"prefix":"8.4.1.1.1.4.1"}},{"type":"Polygon","arcs":[[-14359,-8043,-2911,-2844,-14361,15113]],"properties":{"prefix":"2.6.4.1.1.1.4"}},{"type":"Polygon","arcs":[[10690,10691,10692,15114]],"properties":{"prefix":"5.3.5.2.2.1.1"}},{"type":"Polygon","arcs":[[15115,8680,8681,-10614,5313]],"properties":{"prefix":"6.3.2.1.1.1.1"}},{"type":"Polygon","arcs":[[-11459,-11458,12412,-14184]],"properties":{"prefix":"6.2.1.6.1.1.2"}},{"type":"Polygon","arcs":[[-12606,-4623,-4622,-11829,-13443,-13442,697,15116]],"properties":{"prefix":"8.2.1.8.1.3.1"}},{"type":"Polygon","arcs":[[-4737,2884,2885,10013,10858,10859,10860,15117]],"properties":{"prefix":"9.1.3.2.2.1.1"}},{"type":"Polygon","arcs":[[-14192,5984,11890,15118]],"properties":{"prefix":"7.4.4.3.1.1.1"}},{"type":"Polygon","arcs":[[67,4109,4110,12490,-10579,15119]],"properties":{"prefix":"4.4.3.4.4.1.1"}},{"type":"Polygon","arcs":[[-2186,-2185,-6897,15120]],"properties":{"prefix":"2.3.2.2.3.3.2"}},{"type":"Polygon","arcs":[[-14733,15121,2780,2781,2782,6216,6217]],"properties":{"prefix":"9.8.5.1.3.1.2"}},{"type":"Polygon","arcs":[[12568,-3865,-14313,15122,12571,9589,398,15123]],"properties":{"prefix":"2.4.5.1.4.2.1"}},{"type":"Polygon","arcs":[[-14368,-2090,-2089,-3451,15124]],"properties":{"prefix":"4.3.3.1.2.5.4"}},{"type":"Polygon","arcs":[[126,9637,9638,11794,11795,11796,15125]],"properties":{"prefix":"6.2.1.5.1.4.2"}},{"type":"Polygon","arcs":[[7499,7500,2511,15126,-14848]],"properties":{"prefix":"7.2.3.1.1.2.2"}},{"type":"Polygon","arcs":[[15127,13554,15128,-7980,2046,2047]],"properties":{"prefix":"8.1.5.2.1.4.1"}},{"type":"Polygon","arcs":[[3718,-2191,9709,15129]],"properties":{"prefix":"2.3.2.2.1.1.1"}},{"type":"Polygon","arcs":[[15130,-3837,-3857,4343,-10152,-10151,-10150]],"properties":{"prefix":"6.4.1.2.2.1.1"}},{"type":"Polygon","arcs":[[-8355,-8690,15131]],"properties":{"prefix":"1.7.1.4.2.1.2"}},{"type":"Polygon","arcs":[[-9124,-15088]],"properties":{"prefix":"5.3.2.2.2.1.3"}},{"type":"Polygon","arcs":[[324,15132,-6325,15133,2960]],"properties":{"prefix":"9.1.5.2.1.1.2"}},{"type":"Polygon","arcs":[[-14334,11806,-5668]],"properties":{"prefix":"7.2.4.4.3.3.2"}},{"type":"Polygon","arcs":[[-5391,-5390,6915,-14213,-14779,15134]],"properties":{"prefix":"8.2.1.1.1.3.1"}},{"type":"Polygon","arcs":[[9280,874,875,876,877,-2540,15135]],"properties":{"prefix":"9.8.5.1.1.2.2"}},{"type":"Polygon","arcs":[[15136,-10978,-6003,-11498,9470]],"properties":{"prefix":"2.6.2.1.3.3.2"}},{"type":"Polygon","arcs":[[-13108,15137,-13106,-4016,-11614,9771,-7195,9772,9773,-13109]],"properties":{"prefix":"9.3.4.5.1.2.1"}},{"type":"Polygon","arcs":[[-2454,-2453,-2452,-11313,11809,11810,-2625,-2624,5852,15138,11808]],"properties":{"prefix":"1.7.3.1.1.1.1"}},{"type":"Polygon","arcs":[[-3583,-3582,6339,6340,-14445,-3584]],"properties":{"prefix":"7.6.3.1.6.3.4"}},{"type":"Polygon","arcs":[[7734,7735,15139,4277]],"properties":{"prefix":"5.3.3.4.1.2.1"}},{"type":"Polygon","arcs":[[-2825,-2824,-2823,9930,9931,15140]],"properties":{"prefix":"2.6.2.5.1.6.3"}},{"type":"Polygon","arcs":[[7333,-2388,-2387,11676,15141]],"properties":{"prefix":"5.2.1.2.2.2.2"}},{"type":"Polygon","arcs":[[4265,4266,-15094,15142]],"properties":{"prefix":"5.3.3.2.4.1.1"}},{"type":"Polygon","arcs":[[15143,-8868,6556,10094]],"properties":{"prefix":"1.5.1.1.1.1.1"}},{"type":"Polygon","arcs":[[-14396,3516,15144,13701]],"properties":{"prefix":"6.3.5.4.2.3.1"}},{"type":"Polygon","arcs":[[6899,15145,-1705,3719,3720,6897,6898]],"properties":{"prefix":"2.3.2.3.3.4.1"}},{"type":"Polygon","arcs":[[15146,1687,1688,1689,1690,1691,-10695,6457]],"properties":{"prefix":"2.1.2.2.1.1.1"}},{"type":"Polygon","arcs":[[15147,-12275,6356,7544,13434]],"properties":{"prefix":"7.6.3.1.2.1.1"}},{"type":"Polygon","arcs":[[7693,946,947,1832,1833,15148]],"properties":{"prefix":"9.4.1.1.1.4.2"}},{"type":"Polygon","arcs":[[4651,8178,10564,15149]],"properties":{"prefix":"9.3.4.1.6.2.1"}},{"type":"Polygon","arcs":[[-6047,8131,13094,13095,15150,-14343]],"properties":{"prefix":"4.3.2.2.3.2.2"}},{"type":"Polygon","arcs":[[15151,11661,5595,5596,10434,-9264]],"properties":{"prefix":"3.4.4.2.3.1.1"}},{"type":"Polygon","arcs":[[87,1843,7336,15152]],"properties":{"prefix":"5.1.3.5.1.1.2"}},{"type":"Polygon","arcs":[[-6396,-14411,15153]],"properties":{"prefix":"1.3.1.2.5.1.1"}},{"type":"Polygon","arcs":[[15154,-10529,-11152,-3444,-3443,-2230,-2229,-10532]],"properties":{"prefix":"4.3.3.1.2.3.1"}},{"type":"Polygon","arcs":[[15155,8967,13477]],"properties":{"prefix":"7.4.4.1.3.2.1"}},{"type":"Polygon","arcs":[[-5488,15156,304]],"properties":{"prefix":"8.5.2.1.5.1.3"}},{"type":"Polygon","arcs":[[-1581,6229,-7948,-7947,15157]],"properties":{"prefix":"9.4.2.3.5.4.1"}},{"type":"Polygon","arcs":[[1263,1264,13101,-10498,15158]],"properties":{"prefix":"7.3.1.1.1.1.2"}},{"type":"Polygon","arcs":[[-15114,-14360]],"properties":{"prefix":"2.6.4.1.1.1.2"}},{"type":"Polygon","arcs":[[-819,-8419,-8418,15159,-820]],"properties":{"prefix":"4.1.3.4.2.3.1"}},{"type":"Polygon","arcs":[[-14304,11600,11601,15160]],"properties":{"prefix":"7.5.2.1.2.6.1"}},{"type":"Polygon","arcs":[[4934,4935,-4451,-14248,4938,4939,15161]],"properties":{"prefix":"7.5.3.3.5.1.1"}},{"type":"Polygon","arcs":[[15162,-4367,-4366]],"properties":{"prefix":"7.8.1.6.3.1.4"}},{"type":"Polygon","arcs":[[-1625,-1624,-3455,-3454,4317,-14813,-12455,15163]],"properties":{"prefix":"7.6.3.1.6.1.1"}},{"type":"Polygon","arcs":[[-14311,-9474,-9473,10415,10416,-11733,15164]],"properties":{"prefix":"2.6.2.1.2.2.1"}},{"type":"Polygon","arcs":[[15165,12112,9238,2750,6569,6570,-5470]],"properties":{"prefix":"4.1.5.4.1.1.1"}},{"type":"Polygon","arcs":[[-7670,13092,15166,-14316]],"properties":{"prefix":"5.1.2.4.3.1.2"}},{"type":"Polygon","arcs":[[-14376,-4128,-4127,-4126,-11987,-11986,-11985]],"properties":{"prefix":"7.2.7.3.1.1.2"}},{"type":"Polygon","arcs":[[11274,11275,15167,-4972]],"properties":{"prefix":"7.7.1.2.6.2.4"}},{"type":"Polygon","arcs":[[-9158,11132,11133,1790,1791,10489,-9159]],"properties":{"prefix":"6.2.1.3.2.1.1"}},{"type":"Polygon","arcs":[[-10940,-10939,-10938,17,6503,6504,15168]],"properties":{"prefix":"1.3.4.2.5.2.1"}},{"type":"Polygon","arcs":[[10459,4191,-9822,-9821,-9820,15169]],"properties":{"prefix":"8.1.4.1.1.1.2"}},{"type":"Polygon","arcs":[[-11097,13340,-5441,-5440,710,711,15170]],"properties":{"prefix":"8.2.1.7.2.2.1"}},{"type":"Polygon","arcs":[[15171,-12620,-12619,343,-9083,-5933]],"properties":{"prefix":"9.8.6.1.1.4.1"}},{"type":"Polygon","arcs":[[6200,9550,9551,9552,15172,6198,6199]],"properties":{"prefix":"8.1.6.7.1.4.2"}},{"type":"Polygon","arcs":[[-12422,-14335,5990,7601,7602,15173]],"properties":{"prefix":"4.8.3.2.4.2.1"}},{"type":"Polygon","arcs":[[224,-11767,-11769,15174,-14282]],"properties":{"prefix":"7.7.2.3.1.1.2"}},{"type":"Polygon","arcs":[[-12377,5556,-563,-562,5557,5558,15175]],"properties":{"prefix":"2.3.3.2.5.3.2"}},{"type":"Polygon","arcs":[[15176,6124,6125,15177]],"properties":{"prefix":"6.3.3.4.4.2.3"}},{"type":"Polygon","arcs":[[-14765,15178]],"properties":{"prefix":"5.3.2.2.3.2.1"}},{"type":"Polygon","arcs":[[15179,10723,-4088,-4087,-15061]],"properties":{"prefix":"2.1.2.1.3.1.5"}},{"type":"Polygon","arcs":[[15180,10600,10601,4045,-1489]],"properties":{"prefix":"9.3.1.4.3.2.2"}},{"type":"Polygon","arcs":[[11650,-14641,15181]],"properties":{"prefix":"7.6.4.2.3.1.1"}},{"type":"Polygon","arcs":[[7844,7845,4374,4375,10635,10636,15182]],"properties":{"prefix":"7.8.1.7.1.2.1"}},{"type":"Polygon","arcs":[[15183,13548,1473,1474,1475,1476,1477,1478,-9843]],"properties":{"prefix":"9.1.8.1.3.1.2"}},{"type":"Polygon","arcs":[[-11049,15184,-813,-812,-811,7441,-11050]],"properties":{"prefix":"4.1.5.2.1.2.1"}},{"type":"Polygon","arcs":[[-14768,7453,7454,7455,11508]],"properties":{"prefix":"9.4.4.2.2.1.2"}},{"type":"Polygon","arcs":[[-2686,-2685,6881,-12651,15185]],"properties":{"prefix":"2.6.6.2.5.2.3"}},{"type":"Polygon","arcs":[[13586,-11165,-11164,-12623,-12622,-14346,15186]],"properties":{"prefix":"2.6.1.1.1.1.3"}},{"type":"Polygon","arcs":[[-4716,8736,-14348,15187,8735,-4718,-4717]],"properties":{"prefix":"7.4.8.5.1.1.2"}},{"type":"Polygon","arcs":[[15188,-13508,13717,-14234,4428,4429,4430]],"properties":{"prefix":"9.3.5.5.1.3.1"}},{"type":"Polygon","arcs":[[15189,5910,-2272,-2271,13029]],"properties":{"prefix":"1.8.3.1.7.1.1"}},{"type":"Polygon","arcs":[[-569,15190,12471,-14413,-6928]],"properties":{"prefix":"2.4.1.3.3.3.2"}},{"type":"Polygon","arcs":[[15191,12159,-10741,1868,1869,1870,1871,1872,3859,-11686]],"properties":{"prefix":"5.1.3.2.3.3.1"}},{"type":"Polygon","arcs":[[-14353,15192,-1633,-1632,12108,-8050,6350,12109]],"properties":{"prefix":"7.6.3.1.4.1.3"}},{"type":"Polygon","arcs":[[15193,-8882,-8881,-940,4495,4496,12215]],"properties":{"prefix":"7.6.4.2.1.2.1"}},{"type":"Polygon","arcs":[[15194,-5563,-5562,-5561,-5560,-5559]],"properties":{"prefix":"2.3.3.1.3.2.1"}},{"type":"Polygon","arcs":[[11376,15195,11374,11375]],"properties":{"prefix":"1.1.2.2.2.4.2"}},{"type":"Polygon","arcs":[[253,12059,-7124,15196]],"properties":{"prefix":"8.1.5.3.3.1.2"}},{"type":"Polygon","arcs":[[15197,-12668,-12667,5350,-2702,-2701]],"properties":{"prefix":"2.6.6.1.2.4.1"}},{"type":"Polygon","arcs":[[15198,-11680,-10082,-4966,-4965,-4964,13689]],"properties":{"prefix":"7.7.1.2.2.2.1"}},{"type":"Polygon","arcs":[[8568,-14481,15199,3598]],"properties":{"prefix":"3.4.1.1.1.1.1"}},{"type":"Polygon","arcs":[[-6271,-6284,15200]],"properties":{"prefix":"7.3.2.3.1.2.1"}},{"type":"Polygon","arcs":[[11284,-6741,557,15201,11283]],"properties":{"prefix":"1.3.2.3.1.2.1"}},{"type":"Polygon","arcs":[[-8111,-8117,15202,9404]],"properties":{"prefix":"8.5.2.1.3.1.1"}},{"type":"Polygon","arcs":[[114,-10927,15203]],"properties":{"prefix":"5.3.2.2.3.1.1"}},{"type":"Polygon","arcs":[[15204,4768,4769,4770]],"properties":{"prefix":"9.4.5.2.3.2.1"}},{"type":"Polygon","arcs":[[12570,-15123,-14312]],"properties":{"prefix":"2.4.5.1.4.2.5"}},{"type":"Polygon","arcs":[[4442,-14495,12033,237,4439,4440,4441]],"properties":{"prefix":"7.8.1.2.4.2.2"}},{"type":"Polygon","arcs":[[15205,5524,5525,5526,10671,10672,10673,10674,526]],"properties":{"prefix":"1.9.2.7.1.1.1"}},{"type":"Polygon","arcs":[[15206,12964,-8824,-10881,12965,12966]],"properties":{"prefix":"7.2.2.4.1.2.1"}},{"type":"Polygon","arcs":[[-15129,13555,-6581,-14372,-7972]],"properties":{"prefix":"8.1.5.2.1.4.2"}},{"type":"Polygon","arcs":[[7103,7721,-3034,15207]],"properties":{"prefix":"5.3.5.1.1.2.2"}},{"type":"Polygon","arcs":[[-14325,-14502,15208]],"properties":{"prefix":"5.2.1.2.4.3.1"}},{"type":"Polygon","arcs":[[15209,-8384,-8388]],"properties":{"prefix":"7.3.2.4.2.1.1"}},{"type":"Polygon","arcs":[[-9812,-9811,-9810,12905,15210]],"properties":{"prefix":"3.4.1.1.3.1.1"}},{"type":"Polygon","arcs":[[13055,601,602,2655,2656,-11145,15211]],"properties":{"prefix":"2.6.7.1.1.3.1"}},{"type":"Polygon","arcs":[[178,7636,-14384,15212]],"properties":{"prefix":"6.4.3.3.3.2.1"}},{"type":"Polygon","arcs":[[9544,9545,9546,-14630,15213]],"properties":{"prefix":"3.4.3.2.2.1.3"}},{"type":"Polygon","arcs":[[-15038,12958,-4860,-4859,-10864,3985]],"properties":{"prefix":"9.3.3.2.1.2.4"}},{"type":"Polygon","arcs":[[3563,3564,3565,-14067,12507,-14517]],"properties":{"prefix":"7.6.4.1.1.1.2"}},{"type":"Polygon","arcs":[[15214,8367,8368,247,-14392,6792,6793,6794,6795]],"properties":{"prefix":"7.8.1.5.3.1.1"}},{"type":"Polygon","arcs":[[-2154,-2153,15215,11816,-14519,-2158,-2157,-2156,-2155]],"properties":{"prefix":"1.7.1.1.2.1.1"}},{"type":"Polygon","arcs":[[-10778,694,695,-3762,15216,-14397]],"properties":{"prefix":"8.2.2.1.2.1.2"}},{"type":"Polygon","arcs":[[13208,15217,-12329]],"properties":{"prefix":"7.8.1.1.1.1.2"}},{"type":"Polygon","arcs":[[15218,5963]],"properties":{"prefix":"7.7.2.1.4.2.1"}},{"type":"Polygon","arcs":[[-4193,-4192,-4191,-4190,9331,12514,12515,15219]],"properties":{"prefix":"8.1.3.2.3.1.3"}},{"type":"Polygon","arcs":[[15220,-15178,6126,10029,10030,13676,-11262]],"properties":{"prefix":"6.3.3.4.4.2.1"}},{"type":"Polygon","arcs":[[-10808,-2171,2262,2263,2264,15221,12190]],"properties":{"prefix":"1.4.2.4.1.1.1"}},{"type":"Polygon","arcs":[[15222,-14533,15223,12127,2037,2038,2039]],"properties":{"prefix":"8.1.5.2.2.1.4"}},{"type":"Polygon","arcs":[[9804,9805,2695,15224,15225]],"properties":{"prefix":"2.6.5.2.3.2.3"}},{"type":"Polygon","arcs":[[15226,5645,5646,5647,5648]],"properties":{"prefix":"5.3.2.1.5.4.1"}},{"type":"Polygon","arcs":[[15227,-2651,-2650,-2670,-2669]],"properties":{"prefix":"2.6.6.3.5.3.1"}},{"type":"Polygon","arcs":[[4129,4130,10901,15228]],"properties":{"prefix":"7.2.4.5.2.1.1"}},{"type":"Polygon","arcs":[[-2852,-14407,12341,12342,15229]],"properties":{"prefix":"7.4.2.1.2.3.1"}},{"type":"Polygon","arcs":[[-11318,5005,8255,13182,15230,-14553]],"properties":{"prefix":"9.1.2.3.3.2.2"}},{"type":"Polygon","arcs":[[11749,8059,1504,1505,1506,1507,-11247]],"properties":{"prefix":"9.1.5.3.1.6.1"}},{"type":"Polygon","arcs":[[-12259,15231,13425,-12260]],"properties":{"prefix":"7.5.4.4.1.1.1"}},{"type":"Polygon","arcs":[[467,468,11838,11839,15232]],"properties":{"prefix":"1.9.2.8.3.2.1"}},{"type":"Polygon","arcs":[[-9039,13152,15233,-5634]],"properties":{"prefix":"7.6.2.1.2.1.1"}},{"type":"Polygon","arcs":[[-1698,5542,9105,9106,15234]],"properties":{"prefix":"2.3.3.2.2.1.1"}},{"type":"Polygon","arcs":[[15235,-13207,9340,9341,-780]],"properties":{"prefix":"7.8.1.1.1.3.1"}},{"type":"Polygon","arcs":[[-1572,-10621,-3129,12533]],"properties":{"prefix":"9.4.3.1.2.1.1"}},{"type":"Polygon","arcs":[[11345,-6494,-6493,-6492,-6491,-10767,15236]],"properties":{"prefix":"7.2.2.6.4.3.1"}},{"type":"Polygon","arcs":[[-1991,15237,12184,12185]],"properties":{"prefix":"1.1.2.2.2.1.3"}},{"type":"Polygon","arcs":[[-10698,-3199,15238]],"properties":{"prefix":"7.6.3.1.2.3.2"}},{"type":"Polygon","arcs":[[8434,11727,11728,15239]],"properties":{"prefix":"8.2.1.8.2.3.1"}},{"type":"Polygon","arcs":[[-12281,-14626,13648,6304,6305,-12918,-12282]],"properties":{"prefix":"7.3.2.2.4.2.4"}},{"type":"Polygon","arcs":[[9619,9620,15240,-468,-467]],"properties":{"prefix":"4.1.5.2.2.2.2"}},{"type":"Polygon","arcs":[[8794,15241,10755,10756,-3165,-2582,-6226,-6225]],"properties":{"prefix":"7.5.1.2.1.3.1"}},{"type":"Polygon","arcs":[[13441,15242,-11826,3759,3760,3761,696]],"properties":{"prefix":"8.2.1.8.1.4.2"}},{"type":"Polygon","arcs":[[-7634,-10853,-10852,11753,11754,15243]],"properties":{"prefix":"6.4.3.3.1.6.3"}},{"type":"Polygon","arcs":[[15244,-9760,5782,5783,15245,-14494]],"properties":{"prefix":"7.5.6.3.2.1.2"}},{"type":"Polygon","arcs":[[-14425,-9755,7065]],"properties":{"prefix":"7.6.3.3.1.4.2"}},{"type":"Polygon","arcs":[[-4704,3102,8389,8390,13257,-14370]],"properties":{"prefix":"9.1.7.1.2.1.2"}},{"type":"Polygon","arcs":[[6076,15246,-14318]],"properties":{"prefix":"7.2.3.1.2.4.4"}},{"type":"Polygon","arcs":[[-439,-2471,-2470,-12193,-14657,13150,15247]],"properties":{"prefix":"4.2.1.1.4.3.2"}},{"type":"Polygon","arcs":[[-14378,12156,15248]],"properties":{"prefix":"6.2.1.2.5.4.1"}},{"type":"Polygon","arcs":[[11933,15249]],"properties":{"prefix":"4.4.3.2.2.1.4"}},{"type":"Polygon","arcs":[[156,8740,8741,8742,8743,15250]],"properties":{"prefix":"6.3.5.5.2.3.1"}},{"type":"Polygon","arcs":[[8427,-1238,-1237,15251]],"properties":{"prefix":"7.2.7.4.2.4.1"}},{"type":"Polygon","arcs":[[15252,12869,-990,12870,3771,3772,3773,3774,3775,3776]],"properties":{"prefix":"5.1.1.4.4.1.2"}},{"type":"Polygon","arcs":[[-14504,15253]],"properties":{"prefix":"7.4.7.3.2.3.1"}},{"type":"Polygon","arcs":[[13373,-12612,13374,13375,5765,15254]],"properties":{"prefix":"7.2.1.3.1.3.1"}},{"type":"Polygon","arcs":[[4246,15255,12759,-2869,-2868,4245]],"properties":{"prefix":"7.4.2.1.2.1.4"}},{"type":"Polygon","arcs":[[325,-6312,-6327,-6326,-15133]],"properties":{"prefix":"9.1.5.2.1.1.4"}},{"type":"Polygon","arcs":[[15256,4995,4996,-14576,5000]],"properties":{"prefix":"9.1.2.3.4.2.1"}},{"type":"Polygon","arcs":[[-14423,-14440,3903]],"properties":{"prefix":"9.3.5.1.1.3.2"}},{"type":"Polygon","arcs":[[-14520,-14442,5671,5672,5673,15257]],"properties":{"prefix":"7.2.4.2.2.2.2"}},{"type":"Polygon","arcs":[[15258,13568,1079,-13506,-12442]],"properties":{"prefix":"5.3.2.2.5.1.2"}},{"type":"Polygon","arcs":[[15259,9261,9262,9263,9264,-7259,-7258]],"properties":{"prefix":"3.4.4.2.2.1.1"}},{"type":"Polygon","arcs":[[15260,9628,3965,3966,-11609,-14451,-7560,4868]],"properties":{"prefix":"9.3.3.1.2.1.1"}},{"type":"Polygon","arcs":[[15261,192,-2071,-2070,-14589,8445,8446,8447,4942,4943,4944,15262]],"properties":{"prefix":"7.5.3.3.3.2.5"}},{"type":"Polygon","arcs":[[11286,2676,2677,2678,9803,-15226,15263]],"properties":{"prefix":"2.6.5.2.3.2.1"}},{"type":"Polygon","arcs":[[-11557,15264,12769]],"properties":{"prefix":"2.2.2.3.1.1.2"}},{"type":"Polygon","arcs":[[2019,15265,-12048,-12047,-13247]],"properties":{"prefix":"8.1.6.7.1.2.1"}},{"type":"Polygon","arcs":[[15266,-4899,-8599,-8598,-8597,-8601,-8600,4157]],"properties":{"prefix":"8.1.6.2.1.2.1"}},{"type":"Polygon","arcs":[[816,817,818,5134,5135,15267,-14601]],"properties":{"prefix":"3.4.2.3.1.3.2"}},{"type":"Polygon","arcs":[[8236,8237,8238,-11997,15268]],"properties":{"prefix":"2.4.1.3.2.3.2"}},{"type":"Polygon","arcs":[[4900,4901,-14463,15269]],"properties":{"prefix":"8.1.6.1.6.1.2"}},{"type":"Polygon","arcs":[[2638,11955,15270,11953,11954,2635,2636,2637]],"properties":{"prefix":"1.7.2.1.2.2.1"}},{"type":"Polygon","arcs":[[-11123,-11122,13350,64,8330,8331,-14604]],"properties":{"prefix":"4.4.3.4.3.2.2"}},{"type":"Polygon","arcs":[[-1132,-14614,15271,10827]],"properties":{"prefix":"7.3.3.1.1.1.2"}},{"type":"Polygon","arcs":[[11023,10375,11024,1190,1191,-2145,-2144,15272]],"properties":{"prefix":"6.4.3.1.1.3.2"}},{"type":"Polygon","arcs":[[11761,11762,7005,7006,-6211,15273]],"properties":{"prefix":"8.1.6.3.2.2.1"}},{"type":"Polygon","arcs":[[-3294,-3293,-3292,-3291,-3290,-3319,-3318,15274]],"properties":{"prefix":"5.3.5.2.3.2.2"}},{"type":"Polygon","arcs":[[9270,9271,9272,1117,-3783,-3782,15275]],"properties":{"prefix":"5.1.2.3.1.3.1"}},{"type":"Polygon","arcs":[[8381,13063,13064,15276]],"properties":{"prefix":"5.3.3.2.1.2.2"}},{"type":"Polygon","arcs":[[-14478,575,576,15277,-14551]],"properties":{"prefix":"1.3.1.4.4.2.3"}},{"type":"Polygon","arcs":[[-3381,-3380,-14555,6737,-14479]],"properties":{"prefix":"1.3.2.4.4.2.2"}},{"type":"Polygon","arcs":[[6002,6003,-4226,-4225,-5414,-5421,15278,6001]],"properties":{"prefix":"2.6.2.3.1.4.1"}},{"type":"Polygon","arcs":[[2005,-14485,15279,274]],"properties":{"prefix":"8.1.6.6.2.2.1"}},{"type":"Polygon","arcs":[[6660,6661,6662,-1593,-1592,922,923,15280]],"properties":{"prefix":"9.6.1.1.2.2.2"}},{"type":"Polygon","arcs":[[15281,8492,8493,-4600,-4602,2624,2625,2626]],"properties":{"prefix":"1.7.2.6.2.1.2"}},{"type":"Polygon","arcs":[[-15246,5784,-11587,-13323,-9537,-926,-925,-924,-14492]],"properties":{"prefix":"7.5.6.3.2.1.4"}},{"type":"Polygon","arcs":[[13574,-12916,-10697,-2666,15282]],"properties":{"prefix":"2.6.6.3.5.1.1"}},{"type":"Polygon","arcs":[[5582,5583,5584,-14566,-4811,15283]],"properties":{"prefix":"3.4.4.4.1.2.1"}},{"type":"Polygon","arcs":[[-12750,8169,-1173,-1172,15284,-12751]],"properties":{"prefix":"7.1.1.1.2.3.1"}},{"type":"Polygon","arcs":[[9811,9812,-2436,-2435,-14571,15285,9815,3618,15286]],"properties":{"prefix":"3.4.1.1.4.1.1"}},{"type":"Polygon","arcs":[[15287,-11672,2861,2862,2863,2864,13125,-11675,-11674]],"properties":{"prefix":"7.4.3.1.1.2.1"}},{"type":"Polygon","arcs":[[-8212,1165,9241,9242,10634,15288,-14433]],"properties":{"prefix":"6.4.4.1.4.2.2"}},{"type":"Polygon","arcs":[[-14635,11964,11965,-5419,-2797]],"properties":{"prefix":"2.6.2.3.1.2.2"}},{"type":"Polygon","arcs":[[-6748,-6321,15289,-12368,8359,-6749]],"properties":{"prefix":"9.1.5.1.2.2.3"}},{"type":"Polygon","arcs":[[-8873,12249,-6025,15290,12248]],"properties":{"prefix":"1.5.1.1.3.5.1"}},{"type":"Polygon","arcs":[[-6066,-6065,8316,8317,8318,15291]],"properties":{"prefix":"5.3.3.1.1.1.1"}},{"type":"Polygon","arcs":[[11979,15292]],"properties":{"prefix":"7.5.3.6.1.2.1"}},{"type":"Polygon","arcs":[[7139,15293,12361,12362,-844,-843,-842,9490,-6973,-6972]],"properties":{"prefix":"4.1.2.2.1.2.1"}},{"type":"Polygon","arcs":[[-7903,1441,1442,15294,-14527]],"properties":{"prefix":"1.3.1.2.4.1.3"}},{"type":"Polygon","arcs":[[-5032,3610,3611,3612,3613,15295]],"properties":{"prefix":"3.4.1.1.6.1.1"}},{"type":"Polygon","arcs":[[15296,-8347,-4506,-4505,10907,10908]],"properties":{"prefix":"1.8.3.4.4.1.2"}},{"type":"Polygon","arcs":[[15297,-12630,883,884,13594]],"properties":{"prefix":"9.8.3.3.2.2.1"}},{"type":"Polygon","arcs":[[15298,-14924,-12251,2169,2170,2171,-14878]],"properties":{"prefix":"1.5.1.1.3.4.2"}},{"type":"Polygon","arcs":[[-6389,-6388,-11781,15299,-14530]],"properties":{"prefix":"7.3.1.2.2.1.2"}},{"type":"Polygon","arcs":[[-3201,15300,10700,7542,7543]],"properties":{"prefix":"7.6.3.1.2.4.2"}},{"type":"Polygon","arcs":[[-6807,-6806,-14535,15301,7402,-6808]],"properties":{"prefix":"7.3.1.1.1.5.2"}},{"type":"Polygon","arcs":[[9357,-7687,9358,-3235,15302]],"properties":{"prefix":"9.4.1.1.3.1.1"}},{"type":"Polygon","arcs":[[-14540,15303,-6853,7250,-14716]],"properties":{"prefix":"7.2.4.5.1.1.3"}},{"type":"Polygon","arcs":[[15304,-6105,-14458,8845]],"properties":{"prefix":"1.9.2.3.4.3.1"}},{"type":"Polygon","arcs":[[15305,15306,-6353,-6352,-6351,-6350,-11429,-11428]],"properties":{"prefix":"7.6.3.3.1.3.1"}},{"type":"Polygon","arcs":[[15307,79,970,971,972,-12629,5221]],"properties":{"prefix":"4.4.4.2.3.1.1"}},{"type":"Polygon","arcs":[[904,2540,15308,12237,12238,-9723,-11924,903]],"properties":{"prefix":"9.8.3.1.3.3.1"}},{"type":"Polygon","arcs":[[15309,3143,-5709,-5719]],"properties":{"prefix":"4.1.3.1.4.2.1"}},{"type":"Polygon","arcs":[[-3208,-6354,-15307,15310,-12789]],"properties":{"prefix":"7.6.3.3.1.3.2"}},{"type":"Polygon","arcs":[[-14607,-11398,-2811,-11884,15311]],"properties":{"prefix":"2.6.2.5.1.5.3"}},{"type":"Polygon","arcs":[[7664,2397,2398,2399,2400,-14468]],"properties":{"prefix":"5.3.1.2.1.1.2"}},{"type":"Polygon","arcs":[[-14417,-12119,-6756,-6755,-6688,-14470]],"properties":{"prefix":"9.4.2.4.1.1.4"}},{"type":"Polygon","arcs":[[-14968,4416,4417,-15015,15312]],"properties":{"prefix":"4.4.4.1.1.2.2"}},{"type":"Polygon","arcs":[[15313,13321,2345,-11220,-12482,-7701]],"properties":{"prefix":"1.9.1.3.1.1.1"}},{"type":"Polygon","arcs":[[15314,-6780,7060,7061,7062]],"properties":{"prefix":"7.6.3.3.3.1.1"}},{"type":"Polygon","arcs":[[13451,15315,-3422,-3421,-3502,-3501,-7767,-7766]],"properties":{"prefix":"6.3.4.1.1.1.1"}},{"type":"Polygon","arcs":[[3355,8385,8386,8387,13360,15316,3341,-13199,-14619]],"properties":{"prefix":"7.3.2.4.3.1.1"}},{"type":"Polygon","arcs":[[15317,-9177,3282,-1777]],"properties":{"prefix":"6.3.1.1.4.3.1"}},{"type":"Polygon","arcs":[[639,640,6573,6574,8322,-7220,8323,15318]],"properties":{"prefix":"8.1.5.1.1.2.1"}},{"type":"Polygon","arcs":[[15319,-11388,669,670,5477,5478,12195]],"properties":{"prefix":"8.5.2.2.4.3.1"}},{"type":"Polygon","arcs":[[10355,15320,-10688,-5800,6007]],"properties":{"prefix":"7.5.6.2.2.1.2"}},{"type":"Polygon","arcs":[[-5410,-11415,-9748,-9747,-15081]],"properties":{"prefix":"2.4.1.6.1.2.3"}},{"type":"Polygon","arcs":[[-14686,15321]],"properties":{"prefix":"4.1.3.3.1.3.1"}},{"type":"Polygon","arcs":[[4161,2254,2255,2256,9319,-14623]],"properties":{"prefix":"8.2.3.1.2.3.3"}},{"type":"Polygon","arcs":[[-7290,1093,1094,1095,1096,1097,1098,-9118,15322]],"properties":{"prefix":"5.3.6.3.7.1.1"}},{"type":"Polygon","arcs":[[15323,9607,-6842,-6841,-6840,-6839,9608,9609,9610,-6256]],"properties":{"prefix":"6.3.4.2.1.1.3"}},{"type":"Polygon","arcs":[[12560,12561,-9134,12562,15324]],"properties":{"prefix":"1.2.1.4.4.2.1"}},{"type":"Polygon","arcs":[[-14567,15325,3004,3005,3006,7019,7020,3014]],"properties":{"prefix":"5.3.2.2.5.3.2"}},{"type":"Polygon","arcs":[[15326,-3137,-3136,7481,7482]],"properties":{"prefix":"4.1.2.4.1.2.1"}},{"type":"Polygon","arcs":[[-5029,9813,9814,-15286,-14572]],"properties":{"prefix":"3.4.1.1.4.1.3"}},{"type":"Polygon","arcs":[[6673,6674,-14694]],"properties":{"prefix":"1.9.1.2.1.2.2"}},{"type":"Polygon","arcs":[[13430,10273,-14628,395,15327]],"properties":{"prefix":"2.5.1.2.1.1.1"}},{"type":"Polygon","arcs":[[12510,15328,-11185,-1861,-1860]],"properties":{"prefix":"5.2.1.1.1.2.1"}},{"type":"Polygon","arcs":[[15329,-12712,-12711,5405,5406,-14488,-11467,410]],"properties":{"prefix":"2.4.1.7.1.3.3"}},{"type":"Polygon","arcs":[[1402,1403,1404,1405,1406,10493,15330]],"properties":{"prefix":"1.3.5.1.1.1.1"}},{"type":"Polygon","arcs":[[-6970,-14507,11081,-8273,9382,9383,9384,9385]],"properties":{"prefix":"4.1.2.4.2.2.2"}},{"type":"Polygon","arcs":[[6371,-897,-14579]],"properties":{"prefix":"7.4.7.2.1.1.2"}},{"type":"Polygon","arcs":[[-14523,-7718,15331]],"properties":{"prefix":"5.2.1.3.1.6.1"}},{"type":"Polygon","arcs":[[1179,15332,-3553,-3552,1178]],"properties":{"prefix":"6.4.3.3.6.3.1"}},{"type":"Polygon","arcs":[[-14706,15333,4408,4409,4410,4411,15334]],"properties":{"prefix":"4.4.4.1.3.1.1"}},{"type":"Polygon","arcs":[[15335,-9138,-2365,-2364]],"properties":{"prefix":"4.3.1.4.2.1.1"}},{"type":"Polygon","arcs":[[15336,-11230,134,-14584,8584,8585,8586,8587,11255]],"properties":{"prefix":"6.3.1.1.1.3.1"}},{"type":"Polygon","arcs":[[4917,15337,-8462,3223,3224,4916]],"properties":{"prefix":"7.6.2.3.2.2.1"}},{"type":"Polygon","arcs":[[13484,-5760,7067,7858,-14646,7863,15338]],"properties":{"prefix":"7.2.1.4.2.6.1"}},{"type":"Polygon","arcs":[[5544,5545,5546,5547,12217,-9435,-9434,15339]],"properties":{"prefix":"2.3.3.2.3.1.1"}},{"type":"Polygon","arcs":[[12126,-15224,-14532]],"properties":{"prefix":"8.1.5.2.2.1.2"}},{"type":"Polygon","arcs":[[-15262,15340,191]],"properties":{"prefix":"7.5.3.3.3.2.1"}},{"type":"Polygon","arcs":[[2369,15341,9387,-7957,2368]],"properties":{"prefix":"4.2.2.1.3.1.1"}},{"type":"Polygon","arcs":[[15342,-14542,-2513,-2512,-2511,12308]],"properties":{"prefix":"7.2.4.5.1.1.1"}},{"type":"Polygon","arcs":[[11093,11094,15343]],"properties":{"prefix":"8.2.1.7.2.1.1"}},{"type":"Polygon","arcs":[[13212,8301,-14654,-11867,8308,4168,15344]],"properties":{"prefix":"8.2.3.1.1.1.2"}},{"type":"Polygon","arcs":[[13061,9957,4403,-4116,-12069,15345]],"properties":{"prefix":"4.4.4.1.1.1.1"}},{"type":"Polygon","arcs":[[-8305,-14599,-10640,690,15346]],"properties":{"prefix":"8.2.3.1.2.1.2"}},{"type":"Polygon","arcs":[[15347,-1671,-1670,8907,8908,15348]],"properties":{"prefix":"2.6.6.3.4.1.2"}},{"type":"Polygon","arcs":[[15349,12661,-10234,-14612,10311]],"properties":{"prefix":"5.3.6.3.1.1.1"}},{"type":"Polygon","arcs":[[15350,-4468,11169,-10569,11170,11171]],"properties":{"prefix":"7.3.1.3.2.3.3"}},{"type":"Polygon","arcs":[[6450,15351,-12581,-851,6446,6447,6448,6449]],"properties":{"prefix":"4.1.2.1.1.5.1"}},{"type":"Polygon","arcs":[[-14034,1786,1787,15352]],"properties":{"prefix":"6.2.1.6.1.5.2"}},{"type":"Polygon","arcs":[[12228,12229,6299,-14617]],"properties":{"prefix":"4.1.3.3.4.1.2"}},{"type":"Polygon","arcs":[[12738,12739,8214,8215,-14556,371,15353]],"properties":{"prefix":"2.6.5.1.3.3.3"}},{"type":"Polygon","arcs":[[-14674,15354,4388,-11860,12938,-2445,-2444,-2166]],"properties":{"prefix":"1.7.3.3.2.1.3"}},{"type":"Polygon","arcs":[[7778,7779,-14677,15355,15356,499]],"properties":{"prefix":"1.9.3.3.2.4.1"}},{"type":"Polygon","arcs":[[3853,-7180,8848,8849,11644,11645,15357]],"properties":{"prefix":"6.4.2.1.3.2.2"}},{"type":"Polygon","arcs":[[-2480,-2479,-2478,-2477,-8619,-8624,-8623,15358]],"properties":{"prefix":"7.2.2.6.1.2.1"}},{"type":"Polygon","arcs":[[-8357,-2647,-2646,12494,12495,15359,12493]],"properties":{"prefix":"1.7.1.4.1.2.1"}},{"type":"Polygon","arcs":[[9321,15360,9317,-14622]],"properties":{"prefix":"8.2.3.1.2.3.1"}},{"type":"Polygon","arcs":[[-10888,-10887,15361,-11433]],"properties":{"prefix":"2.6.3.1.3.2.1"}},{"type":"Polygon","arcs":[[-4782,-4781,-14681,-14563]],"properties":{"prefix":"9.8.3.1.3.4.5"}},{"type":"Polygon","arcs":[[282,5913,5914,-14689]],"properties":{"prefix":"8.2.2.2.3.2.2"}},{"type":"Polygon","arcs":[[-15349,8909,15362]],"properties":{"prefix":"2.6.6.3.4.1.1"}},{"type":"Polygon","arcs":[[12408,15363,3119,5181,5182,5183,5184]],"properties":{"prefix":"9.4.4.2.4.3.1"}},{"type":"Polygon","arcs":[[11747,11748,1635,-9971,-4970,15364,11746]],"properties":{"prefix":"7.7.1.2.4.2.1"}},{"type":"Polygon","arcs":[[11164,11165,9642,9643,9644,9645,2912,15365]],"properties":{"prefix":"2.6.1.1.1.5.1"}},{"type":"Polygon","arcs":[[-14701,10707,-14638,15366]],"properties":{"prefix":"9.1.2.4.2.3.3"}},{"type":"Polygon","arcs":[[-2900,-2899,-2898,-12815,-12818,15367]],"properties":{"prefix":"2.5.1.1.1.1.1"}},{"type":"Polygon","arcs":[[-14843,-7513,-3281,-3280,-14703,7907]],"properties":{"prefix":"6.3.3.5.1.1.3"}},{"type":"Polygon","arcs":[[72,11441,4405,4406,4407,-15334,-14708]],"properties":{"prefix":"4.4.4.1.3.1.3"}},{"type":"Polygon","arcs":[[-5750,-9605,-9604,-9603,11276,15368]],"properties":{"prefix":"8.4.2.2.4.1.1"}},{"type":"Polygon","arcs":[[-14643,-2132,-2131,-2130,11090,15369]],"properties":{"prefix":"4.6.1.2.1.5.2"}},{"type":"Polygon","arcs":[[15370,12129,-14587,-1026,-1025,-1024]],"properties":{"prefix":"7.4.4.4.2.1.1"}},{"type":"Polygon","arcs":[[-2556,15371,-2523,-2522,-14774]],"properties":{"prefix":"9.8.2.4.1.1.1"}},{"type":"Polygon","arcs":[[-9355,-4308,-4307,-4306,15372]],"properties":{"prefix":"9.4.1.1.2.2.3"}},{"type":"Polygon","arcs":[[15373,-14591,12083,-1793,-1792,12084]],"properties":{"prefix":"6.3.3.5.5.3.2"}},{"type":"Polygon","arcs":[[13558,7759,13559,-12951,4034,15374]],"properties":{"prefix":"9.3.1.6.3.2.1"}},{"type":"Polygon","arcs":[[-14780,6595,10905,15375]],"properties":{"prefix":"7.4.8.1.2.2.2"}},{"type":"Polygon","arcs":[[15376,110,5643,11265,-10651,-10650]],"properties":{"prefix":"5.3.2.1.5.1.2"}},{"type":"Polygon","arcs":[[11251,15377,-6668]],"properties":{"prefix":"8.1.6.5.3.1.1"}},{"type":"Polygon","arcs":[[-2976,-2895,8777,8778,8779,15378,11858]],"properties":{"prefix":"2.5.2.1.2.1.1"}},{"type":"Polygon","arcs":[[7814,-2375,-2374,-11547,15379]],"properties":{"prefix":"4.3.2.3.1.6.1"}},{"type":"Polygon","arcs":[[1467,-14719,9840,15380,-7705]],"properties":{"prefix":"9.1.8.1.2.3.1"}},{"type":"Polygon","arcs":[[15381,-2743,-2742,-4848,2206]],"properties":{"prefix":"4.1.6.3.2.2.1"}},{"type":"Polygon","arcs":[[12285,12286,-9150,10327,4850,4851,4852,-14460]],"properties":{"prefix":"1.7.1.1.2.3.4"}},{"type":"Polygon","arcs":[[-3108,-3107,15382,332]],"properties":{"prefix":"9.1.6.1.4.2.2"}},{"type":"Polygon","arcs":[[15383,13353,-9236,-6519,-6518,-5374,-6908,-6907,-5378,-1033,-1032,-1031,-1030]],"properties":{"prefix":"7.4.4.4.4.1.1"}},{"type":"Polygon","arcs":[[13176,853,854,-7880,-7879,-7878,15384]],"properties":{"prefix":"3.4.5.1.3.3.1"}},{"type":"Polygon","arcs":[[-14610,13091,4082]],"properties":{"prefix":"2.1.1.3.1.1.2"}},{"type":"Polygon","arcs":[[-4469,-15351,11172,15385,-4470]],"properties":{"prefix":"7.3.1.3.2.3.1"}},{"type":"Polygon","arcs":[[5054,5055,-7676,-7683,-7682,15386]],"properties":{"prefix":"6.1.1.1.1.2.1"}},{"type":"Polygon","arcs":[[11918,-14918,-13901]],"properties":{"prefix":"9.1.7.3.1.3.3"}},{"type":"Polygon","arcs":[[-3725,-3724,10913,10914,-14820]],"properties":{"prefix":"2.3.3.1.2.1.5"}},{"type":"Polygon","arcs":[[-10599,12199,15387]],"properties":{"prefix":"9.3.1.4.3.1.2"}},{"type":"Polygon","arcs":[[15388,336,3089,8431,3094,3095]],"properties":{"prefix":"9.1.7.3.1.4.1"}},{"type":"Polygon","arcs":[[15389,12737,-15354,372]],"properties":{"prefix":"2.6.5.1.3.3.1"}},{"type":"Polygon","arcs":[[10648,10649,15390,10646,10647]],"properties":{"prefix":"5.3.2.1.5.3.1"}},{"type":"Polygon","arcs":[[-14676,7781,10893,15391,-15356]],"properties":{"prefix":"1.9.3.3.2.4.3"}},{"type":"Polygon","arcs":[[4877,4878,-1985,-14739,15392,-14870]],"properties":{"prefix":"1.1.2.1.5.1.3"}},{"type":"Polygon","arcs":[[-5011,15393,13580,-10704,-5013,-5012]],"properties":{"prefix":"9.1.2.4.2.1.2"}},{"type":"Polygon","arcs":[[-14182,-12913,15394,-2749]],"properties":{"prefix":"4.1.6.1.1.1.2"}},{"type":"Polygon","arcs":[[11641,15395,11640,1197,1198,1199,1200]],"properties":{"prefix":"6.3.7.3.1.2.2"}},{"type":"Polygon","arcs":[[15396,10628,5141,5142,10477]],"properties":{"prefix":"3.4.2.3.1.1.1"}},{"type":"Polygon","arcs":[[-7684,-3240,-9053,15397]],"properties":{"prefix":"9.4.1.1.4.1.1"}},{"type":"Polygon","arcs":[[-14742,10680,10681,15398]],"properties":{"prefix":"8.1.6.1.5.3.1"}},{"type":"Polygon","arcs":[[-14746,15399,4120,5357]],"properties":{"prefix":"4.4.3.6.1.5.3"}},{"type":"Polygon","arcs":[[-14277,10883,4397,2819,2820,2821,2822,10884,10885,10886]],"properties":{"prefix":"2.6.3.1.3.1.2"}},{"type":"Polygon","arcs":[[-4873,-4872,15400,-12960]],"properties":{"prefix":"9.3.3.2.1.1.1"}},{"type":"Polygon","arcs":[[-1782,15401,7508,-6121,-13069,7511,-1783]],"properties":{"prefix":"6.3.3.5.3.1.1"}},{"type":"Polygon","arcs":[[-3569,-3568,-14752,15402,-3570]],"properties":{"prefix":"7.6.3.4.2.4.2"}},{"type":"Polygon","arcs":[[13458,1324,-6500,1334,15403]],"properties":{"prefix":"7.3.3.2.5.1.1"}},{"type":"Polygon","arcs":[[-1684,-1683,8925,8926,15404]],"properties":{"prefix":"2.6.2.1.1.3.3"}},{"type":"Polygon","arcs":[[6185,15405,-13861]],"properties":{"prefix":"7.7.1.1.2.1.2"}},{"type":"Polygon","arcs":[[15406,-2860,4255,4256,4257,10988,-14965]],"properties":{"prefix":"7.4.4.6.4.1.1"}},{"type":"Polygon","arcs":[[-3869,-3868,8155,-14839]],"properties":{"prefix":"2.4.5.1.3.3.4"}},{"type":"Polygon","arcs":[[-2999,-2998,1082,1083,15407]],"properties":{"prefix":"5.3.6.3.10.1.1"}},{"type":"Polygon","arcs":[[-1377,-1376,-1375,6790,-1459,-14759]],"properties":{"prefix":"1.2.1.5.1.1.3"}}]}},"arcs":[[[7,-7],[0,-1],[1,-1]],[[8,-9],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[13,-11],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1]],[[19,-20],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[15,-27],[0,-1]],[[15,-28],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[16,-33],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[27,-43],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1]],[[39,-56],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[35,-63],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[36,-69],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[28,-77],[-1,1],[-1,-1]],[[26,-77],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[22,-81],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[20,-85],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[21,-91],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[18,-101],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[19,-107],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1]],[[24,-110],[1,-1]],[[25,-111],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[30,-117],[0,-1],[1,-1]],[[31,-119],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[36,-121],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1]],[[41,-124],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1]],[[42,-130],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[38,-137],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[39,-143],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[50,-153],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1]],[[60,-158],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[60,-169],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[58,-173],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1]],[[59,-180],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[58,-185],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[51,-187],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[45,-191],[0,-1],[-1,-1]],[[44,-193],[0,-1],[-1,-1]],[[43,-195],[0,-1]],[[43,-196],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1]],[[44,-202],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[41,-211],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[42,-217],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[34,-225],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1]],[[29,-228],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[1,1],[0,1]],[[17,-227],[-1,1],[0,1],[-1,1],[0,1]],[[15,-223],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[10,-221],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1]],[[1,-228],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-3,-227],[-1,1],[-1,-1]],[[-5,-227],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-11,-235],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1]],[[-10,-242],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-13,-251],[0,-1],[1,-1],[0,-1]],[[-12,-254],[1,-1],[0,-1],[-1,-1],[0,-1]],[[-12,-258],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-20,-265],[-1,1],[-1,-1]],[[-22,-265],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-28,-273],[0,-1]],[[-28,-274],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1]],[[-27,-280],[1,-1],[0,-1]],[[-26,-282],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-30,-289],[0,-1],[1,-1],[0,-1]],[[-29,-292],[1,-1],[0,-1],[-1,-1]],[[-29,-295],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[-23,-299],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-18,-305],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1]],[[-10,-309],[1,1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-8,-321],[0,-1],[-1,-1]],[[-9,-323],[0,-1],[-1,-1]],[[-10,-325],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-9,-331],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1]],[[2,-338],[1,-1],[0,-1],[-1,-1]],[[2,-341],[0,-1]],[[2,-342],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[8,-345],[1,1],[1,-1],[1,1],[1,-1],[0,-1]],[[12,-346],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[10,-361],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[10,-373],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[3,-375],[-1,1],[-1,-1]],[[1,-375],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-3,-379],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-5,-383],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-7,-399],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-6,-405],[0,-1],[1,-1]],[[-5,-407],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1]],[[4,-410],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[5,-415],[0,-1]],[[5,-416],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[16,-425],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[13,-435],[0,-1]],[[13,-436],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[14,-441],[0,-1],[1,-1]],[[15,-443],[1,1],[1,-1],[1,1],[1,-1],[0,-1]],[[19,-444],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1]],[[25,-448],[1,-1],[0,-1],[-1,-1]],[[25,-451],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[36,-461],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[35,-467],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[33,-471],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[34,-477],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[26,-485],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[18,-493],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[19,-499],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[18,-505],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[16,-509],[0,-1],[1,-1],[0,-1]],[[17,-512],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[15,-523],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[9,-523],[-1,1]],[[8,-522],[-1,-1]],[[7,-523],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1]],[[-7,-528],[-1,-1],[-1,1],[0,1],[1,1],[0,1]],[[-8,-525],[-1,1],[0,1],[-1,1],[0,1]],[[-10,-521],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-15,-519],[-1,1],[-1,-1]],[[-17,-519],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-21,-523],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1]],[[-24,-526],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-28,-525],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-31,-527],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-34,-529],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-36,-533],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1]],[[-34,-542],[1,-1],[0,-1],[-1,-1],[-1,1]],[[-35,-544],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-38,-549],[0,-1]],[[-38,-550],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-37,-555],[0,-1]],[[-37,-556],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[-43,-564],[-1,-1],[-1,1],[0,1]],[[-45,-563],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-53,-571],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-52,-577],[0,-1],[1,-1],[0,-1]],[[-51,-580],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-55,-587],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1]],[[-53,-596],[1,-1],[0,-1],[-1,-1],[-1,1]],[[-54,-598],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-62,-601],[-1,1],[-1,-1]],[[-64,-601],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-68,-605],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-81,-599],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-86,-597],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-99,-603],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-105,-607],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-112,-609],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1]],[[-117,-603],[-1,1],[0,1]],[[-118,-601],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-123,-599],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1]],[[-127,-588],[0,1],[1,1],[1,-1]],[[-125,-587],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[-125,-579],[-1,1],[0,1],[-1,1],[0,1]],[[-127,-575],[-1,1]],[[-128,-574],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[1,1],[0,1]],[[-136,-569],[-1,1],[0,1],[-1,1],[0,1]],[[-138,-565],[-1,1],[-1,-1],[-1,1]],[[-141,-564],[-1,-1],[-1,1],[0,1]],[[-143,-563],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-149,-567],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-156,-569],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-162,-573],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[-167,-576],[-1,-1],[-1,1],[0,1]],[[-169,-575],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[1,1],[0,1]],[[-173,-571],[-1,1],[0,1],[-1,1],[0,1]],[[-175,-567],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-180,-565],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-186,-569],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-193,-571],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-196,-573],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-206,-577],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1]],[[-211,-571],[-1,1],[0,1]],[[-212,-569],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[1,1]],[[-221,-564],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-219,-555],[1,1],[0,1]],[[-218,-553],[-1,1],[0,1]],[[-219,-551],[-1,1],[0,1],[1,1],[0,1]],[[-219,-547],[-1,1],[0,1]],[[-220,-545],[-1,1],[0,1]],[[-221,-543],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-226,-541],[-1,1],[-1,-1],[-1,1]],[[-229,-540],[-1,-1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-232,-533],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-237,-531],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-239,-519],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-237,-503],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-228,-501],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-224,-497],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1]],[[-224,-490],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-222,-481],[1,1],[0,1]],[[-221,-479],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[-222,-473],[-1,1],[0,1],[-1,1],[0,1]],[[-224,-469],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-229,-467],[-1,1]],[[-230,-466],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-235,-459],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1]],[[-244,-446],[0,1],[1,1],[1,-1]],[[-242,-445],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-244,-433],[-1,1],[-1,-1],[-1,1]],[[-247,-432],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-255,-423],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-260,-421],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-273,-427],[-1,1],[-1,-1]],[[-275,-427],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1]],[[-282,-434],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-286,-433],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[1,1],[0,1]],[[-290,-429],[-1,1],[0,1],[-1,1],[0,1]],[[-292,-425],[-1,1]],[[-293,-424],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-297,-423],[-1,1],[-1,-1]],[[-299,-423],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-303,-427],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-310,-429],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-316,-433],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[1,1],[0,1]],[[-327,-431],[-1,1],[0,1],[-1,1],[0,1]],[[-329,-427],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-336,-413],[1,1],[0,1],[-1,1],[0,1]],[[-336,-409],[-1,1],[0,1],[1,1],[0,1]],[[-336,-405],[-1,1],[0,1],[-1,1],[0,1]],[[-338,-401],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-343,-399],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[1,1],[0,1]],[[-347,-395],[-1,1],[0,1],[-1,1],[0,1]],[[-349,-391],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-354,-389],[-1,1],[-1,-1]],[[-356,-389],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-360,-393],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-367,-395],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1]],[[-376,-402],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-386,-393],[-1,1]],[[-387,-392],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-391,-391],[-1,1],[-1,-1]],[[-393,-391],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-398,-397],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-404,-397],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-410,-401],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1]],[[-422,-397],[-1,1],[0,1]],[[-423,-395],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1]],[[-433,-387],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-430,-381],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[-430,-373],[-1,1],[0,1],[-1,1],[0,1]],[[-432,-369],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-437,-367],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-443,-359],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[1,1]],[[-452,-354],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-450,-345],[1,1],[0,1]],[[-449,-343],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[-450,-337],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1]],[[-450,-330],[0,1],[1,1],[1,-1],[1,1],[0,1],[1,1]],[[-446,-326],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-439,-327],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-435,-323],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[-435,-315],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-433,-307],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[-433,-299],[-1,1],[0,1],[-1,1],[0,1]],[[-435,-295],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-440,-293],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[1,1]],[[-444,-290],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-446,-285],[-1,1]],[[-447,-284],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-451,-283],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[1,1],[0,1]],[[-455,-279],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-453,-271],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-455,-259],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-466,-249],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1]],[[-474,-246],[-1,-1],[-1,1],[0,1],[1,1]],[[-475,-244],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-473,-235],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-471,-219],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[0,-1]],[[-467,-216],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-462,-217],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-458,-213],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1]],[[-458,-206],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1]],[[-458,-198],[0,1],[1,1],[1,-1]],[[-456,-197],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1]],[[-456,-190],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-454,-181],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-445,-179],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-441,-175],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-431,-179],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[-425,-183],[1,1],[1,-1],[1,1],[1,-1]],[[-421,-183],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-417,-179],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-408,-177],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-404,-173],[1,1]],[[-403,-172],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[-404,-165],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-402,-157],[1,1],[0,1]],[[-401,-155],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-400,-141],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-391,-139],[1,1]],[[-390,-138],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-387,-135],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[-387,-127],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-385,-119],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[-385,-111],[-1,1],[0,1],[-1,1],[0,1],[1,1]],[[-386,-106],[0,1],[1,1],[0,1],[1,1],[1,-1],[1,1],[0,1],[1,1]],[[-381,-100],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-374,-101],[1,1]],[[-373,-100],[0,1],[1,1],[0,1],[1,1],[1,-1],[1,1],[0,1],[1,1]],[[-368,-94],[0,1],[1,1],[1,-1],[0,-1],[1,-1]],[[-365,-95],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1]],[[-360,-98],[1,-1],[0,-1],[-1,-1]],[[-360,-101],[0,-1],[1,-1],[1,1],[1,-1]],[[-357,-103],[1,1],[1,-1],[0,-1],[1,-1]],[[-354,-105],[1,1],[1,-1],[1,1],[1,-1]],[[-350,-105],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-346,-101],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-337,-99],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-333,-95],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1]],[[-326,-93],[1,1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-323,-99],[0,-1]],[[-323,-100],[1,-1]],[[-322,-101],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[-317,-103],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-313,-115],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-315,-119],[0,-1],[1,-1],[0,-1]],[[-314,-122],[1,-1],[0,-1],[-1,-1]],[[-314,-125],[0,-1]],[[-314,-126],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[-308,-129],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-303,-135],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[-297,-139],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-292,-145],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-294,-153],[0,-1],[-1,-1]],[[-295,-155],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-294,-161],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-295,-167],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-302,-169],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-305,-171],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-310,-177],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-309,-183],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-312,-193],[0,-1],[1,-1],[0,-1]],[[-311,-196],[1,-1],[0,-1],[-1,-1]],[[-311,-199],[0,-1],[1,-1]],[[-310,-201],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[-305,-203],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-300,-209],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1]],[[-292,-213],[1,1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,1]],[[-289,-224],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-292,-229],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-291,-235],[0,-1],[1,-1]],[[-290,-237],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-280,-245],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-270,-249],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-257,-243],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-253,-239],[1,1]],[[-252,-238],[0,1],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-244,-237],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-240,-233],[1,1],[0,1]],[[-239,-231],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-238,-217],[1,1],[0,1],[1,1]],[[-236,-214],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-229,-215],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1]],[[-224,-213],[1,1],[1,-1],[1,1],[1,-1]],[[-220,-213],[1,1]],[[-219,-212],[0,1],[1,1],[1,-1]],[[-217,-211],[1,1]],[[-216,-210],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-203,-203],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-199,-199],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[-199,-191],[-1,1],[0,1],[-1,1],[0,1],[1,1]],[[-200,-186],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-197,-183],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1]],[[-197,-176],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-199,-171],[-1,1]],[[-200,-170],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1]],[[-207,-168],[-1,-1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-210,-161],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-215,-159],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-217,-147],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-219,-135],[-1,1]],[[-220,-134],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[1,1]],[[-228,-130],[0,1]],[[-228,-129],[-1,1],[0,1],[-1,1],[0,1]],[[-230,-125],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-235,-123],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-237,-111],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[-237,-103],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-235,-95],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-226,-93],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-222,-89],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[-222,-81],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-220,-73],[1,1],[0,1],[-1,1],[0,1]],[[-220,-69],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1]],[[-221,-63],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-209,-55],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[1,1],[0,1],[1,1]],[[-203,-48],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1]],[[-195,-52],[1,-1],[0,-1],[-1,-1]],[[-195,-55],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[-189,-59],[1,1],[1,-1],[1,1],[1,-1]],[[-185,-59],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[0,-1]],[[-177,-52],[1,-1]],[[-176,-53],[1,1],[1,-1],[1,1],[1,-1]],[[-172,-53],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-168,-49],[1,1]],[[-167,-48],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[-168,-41],[-1,1],[0,1]],[[-169,-39],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-166,-33],[1,1],[0,1]],[[-165,-31],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1]],[[-166,-18],[0,1],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1]],[[-159,-15],[1,1],[1,-1],[1,1],[1,-1]],[[-155,-15],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-151,-11],[1,1],[0,1]],[[-150,-9],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-149,5],[1,1]],[[-148,6],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[0,-1]],[[-143,24],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-138,23],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1]],[[-124,26],[1,-1],[0,-1],[-1,-1]],[[-124,23],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1]],[[-119,20],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-114,19],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-110,23],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1]],[[-105,25],[1,1],[1,-1],[1,1],[1,-1]],[[-101,25],[1,1],[0,1],[1,1]],[[-99,28],[0,1],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-87,25],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[-81,21],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-79,5],[0,-1],[1,-1],[0,-1]],[[-78,2],[1,-1],[0,-1],[-1,-1]],[[-78,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[-72,-5],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-67,-11],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-57,-15],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-53,-11],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-44,-9],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-40,-5],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-30,-9],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-20,-13],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1]],[[-11,-7],[1,1],[1,-1],[1,1],[1,-1]],[[-7,-7],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-3,-3],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[5,-7],[1,1],[1,-1]],[[-11,-235],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[-16,-234],[0,1],[-1,1]],[[-17,-232],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-21,-231],[1,1],[0,1]],[[-20,-229],[-1,1],[0,1],[-1,1],[0,1]],[[-22,-225],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-27,-223],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-32,-221],[1,1],[0,1]],[[-31,-219],[-1,1],[0,1],[-1,1],[0,1]],[[-33,-215],[1,1],[0,1],[1,1],[0,1]],[[-31,-211],[1,1],[1,-1]],[[-29,-211],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[-29,-203],[-1,1],[0,1],[-1,1]],[[-31,-200],[0,1]],[[-31,-199],[-1,1],[-1,-1]],[[-33,-199],[-1,1],[-1,-1],[-1,1],[0,1]],[[-36,-197],[-1,1]],[[-37,-196],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-41,-195],[1,1],[0,1]],[[-40,-193],[-1,1],[0,1],[-1,1]],[[-42,-190],[0,1]],[[-42,-189],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-47,-187],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-51,-191],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-55,-195],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-60,-193],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-63,-195],[0,-1],[-1,-1]],[[-64,-197],[-1,1],[-1,-1],[0,-1]],[[-66,-198],[-1,-1],[0,-1],[-1,-1]],[[-68,-201],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1]],[[-74,-198],[-1,-1],[-1,1],[-1,-1]],[[-77,-199],[-1,1],[0,1]],[[-78,-197],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-79,-191],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-84,-189],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-87,-191],[0,-1]],[[-87,-192],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-92,-197],[-1,1]],[[-93,-196],[-1,-1]],[[-94,-197],[-1,1],[-1,-1],[-1,1],[0,1]],[[-97,-195],[-1,1],[-1,-1]],[[-99,-195],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-101,-199],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-105,-203],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-109,-203],[-1,1]],[[-110,-202],[0,1]],[[-110,-201],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-115,-199],[1,1],[0,1],[-1,1],[0,1]],[[-115,-195],[-1,1],[0,1]],[[-116,-193],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-121,-191],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-125,-191],[-1,1],[0,1]],[[-126,-189],[1,1],[0,1]],[[-125,-187],[-1,1],[0,1],[-1,1],[0,1]],[[-127,-183],[1,1],[0,1],[1,1],[0,1],[1,1]],[[-124,-178],[1,-1]],[[-123,-179],[1,1],[0,1],[-1,1],[0,1],[-1,1]],[[-124,-174],[0,1]],[[-124,-173],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-125,-167],[1,1]],[[-124,-166],[0,1],[1,1],[0,1]],[[-123,-163],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1],[1,1]],[[-118,-158],[1,-1]],[[-117,-159],[0,-1],[1,-1],[1,1]],[[-115,-160],[1,-1],[1,1],[1,-1]],[[-112,-161],[0,-1],[1,-1]],[[-111,-163],[0,-1],[1,-1]],[[-110,-165],[0,-1],[-1,-1]],[[-111,-167],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-106,-169],[0,-1]],[[-106,-170],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-101,-171],[1,1],[0,1],[1,1],[0,1]],[[-99,-167],[1,1],[1,-1]],[[-97,-167],[0,-1],[1,-1]],[[-96,-169],[0,-1]],[[-96,-170],[1,-1],[0,-1],[-1,-1]],[[-96,-173],[0,-1],[1,-1],[0,-1],[1,-1]],[[-94,-177],[0,-1],[-1,-1]],[[-95,-179],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-90,-181],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-86,-177],[1,1]],[[-85,-176],[0,1],[-1,1],[0,1],[-1,1]],[[-87,-172],[0,1],[1,1],[0,1]],[[-86,-169],[-1,1],[0,1],[-1,1]],[[-88,-166],[0,1]],[[-88,-165],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1],[1,1]],[[-81,-156],[1,-1]],[[-80,-157],[0,-1],[1,-1]],[[-79,-159],[1,1],[1,-1],[1,1],[1,-1]],[[-75,-159],[1,1],[0,1],[1,1]],[[-73,-156],[0,1]],[[-73,-155],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-67,-151],[0,-1]],[[-67,-152],[1,-1],[1,1],[1,-1]],[[-64,-153],[1,1]],[[-63,-152],[1,-1]],[[-62,-153],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-61,-159],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[-55,-163],[1,1]],[[-54,-162],[1,-1],[1,1],[1,-1]],[[-51,-163],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-47,-159],[1,1],[0,1],[1,1],[0,1],[1,1]],[[-44,-154],[1,-1]],[[-43,-155],[0,-1],[1,-1],[1,1],[1,-1]],[[-40,-157],[1,1],[1,-1]],[[-38,-157],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-34,-153],[1,1],[0,1]],[[-33,-151],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[-34,-145],[-1,1],[0,1],[-1,1],[0,1]],[[-36,-141],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-32,-137],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[-1,1]],[[-33,-128],[0,1],[-1,1],[0,1]],[[-34,-125],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-44,-121],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-45,-115],[-1,1],[-1,-1]],[[-47,-115],[-1,1],[-1,-1],[-1,1],[0,1]],[[-50,-113],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[-55,-112],[0,1]],[[-55,-111],[1,1],[0,1]],[[-54,-109],[-1,1],[0,1],[-1,1],[0,1]],[[-56,-105],[1,1],[0,1],[1,1]],[[-54,-102],[0,1],[1,1],[1,-1]],[[-52,-101],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-53,-95],[1,1],[0,1]],[[-52,-93],[-1,1],[0,1],[-1,1],[0,1]],[[-54,-89],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-59,-87],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-64,-85],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-65,-79],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-70,-77],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-75,-75],[1,1],[0,1]],[[-74,-73],[-1,1],[0,1],[-1,1],[0,1]],[[-76,-69],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-72,-65],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-73,-59],[1,1],[0,1]],[[-72,-57],[-1,1],[0,1]],[[-73,-55],[-1,1],[0,1]],[[-74,-53],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-70,-49],[1,1],[0,1],[1,1],[0,1]],[[-68,-45],[1,1],[1,-1]],[[-66,-45],[0,-1],[1,-1]],[[-65,-47],[1,1],[1,-1],[1,1],[1,-1]],[[-61,-47],[1,1],[0,1]],[[-60,-45],[1,1],[0,1],[1,1],[1,-1]],[[-57,-43],[1,1]],[[-56,-42],[0,1],[-1,1],[0,1]],[[-57,-39],[-1,1],[0,1]],[[-58,-37],[1,1],[0,1]],[[-57,-35],[-1,1],[0,1],[-1,1],[0,1]],[[-59,-31],[1,1],[0,1]],[[-58,-29],[1,1],[0,1],[1,1],[1,-1]],[[-55,-27],[1,1],[0,1]],[[-54,-25],[-1,1],[0,1],[-1,1],[0,1]],[[-56,-21],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-3,-3],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[-125,-167],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-129,-167],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1]],[[-132,-170],[-1,-1],[-1,1],[0,1],[-1,1]],[[-135,-168],[-1,-1]],[[-136,-169],[0,-1],[-1,-1]],[[-137,-171],[0,-1],[-1,-1]],[[-138,-173],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-143,-171],[-1,1]],[[-144,-170],[-1,-1],[-1,1],[-1,-1]],[[-147,-171],[-1,1],[0,1]],[[-148,-169],[1,1],[0,1]],[[-147,-167],[-1,1],[0,1],[-1,1],[0,1]],[[-149,-163],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-154,-161],[-1,1],[-1,-1]],[[-156,-161],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-158,-165],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-162,-169],[-1,1]],[[-163,-168],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-172,-165],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-173,-159],[-1,1]],[[-174,-158],[-1,-1]],[[-175,-159],[-1,1],[-1,-1],[-1,1]],[[-178,-158],[0,1]],[[-178,-157],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1]],[[-181,-160],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-186,-165],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-191,-163],[-1,1],[-1,-1],[0,-1]],[[-193,-164],[-1,-1],[0,-1],[-1,-1]],[[-195,-167],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-393,-347],[0,-1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-398,-349],[0,-1]],[[-398,-350],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-393,-351],[1,1],[0,1],[1,1],[0,1]],[[-391,-347],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-385,-343],[0,-1],[1,-1]],[[-384,-345],[1,1],[1,-1],[1,1],[1,-1]],[[-380,-345],[1,1],[0,1],[1,1],[0,1]],[[-378,-341],[1,1],[1,-1]],[[-376,-341],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,1]],[[-378,-330],[0,1]],[[-378,-329],[-1,1],[-1,-1],[-1,1]],[[-381,-328],[-1,-1],[-1,1]],[[-383,-328],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-388,-325],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-389,-319],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-393,-319],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-398,-317],[-1,1]],[[-399,-316],[0,1]],[[-399,-315],[1,1]],[[-398,-314],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-400,-309],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-396,-305],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[-396,-297],[-1,1],[0,1],[-1,1],[0,1]],[[-398,-293],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-402,-293],[-1,1],[0,1]],[[-403,-291],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-408,-289],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-409,-283],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-414,-281],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-418,-285],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1]],[[-421,-288],[-1,-1]],[[-422,-289],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-427,-287],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-431,-291],[-1,1],[-1,-1]],[[-433,-291],[0,-1],[-1,-1],[0,-1]],[[-434,-294],[-1,-1]],[[-302,-169],[1,1],[0,1]],[[-301,-167],[-1,1],[0,1],[-1,1],[0,1]],[[-303,-163],[-1,1],[-1,-1],[-1,1],[0,1],[1,1],[1,-1],[1,1],[0,1]],[[-303,-159],[-1,1],[0,1]],[[-304,-157],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-305,-151],[1,1],[0,1]],[[-304,-149],[-1,1],[0,1],[-1,1],[0,1]],[[-306,-145],[-1,1],[-1,-1]],[[-308,-145],[-1,1],[-1,-1],[-1,1],[0,1]],[[-311,-143],[-1,1],[-1,-1],[-1,1]],[[-314,-142],[-1,-1]],[[-315,-143],[-1,1],[0,1]],[[-316,-141],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-317,-135],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-321,-135],[-1,1],[0,1]],[[-322,-133],[-1,1],[-1,-1]],[[-324,-133],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-326,-137],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-330,-141],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-335,-139],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-340,-137],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-341,-131],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-346,-129],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-354,-137],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[-359,-136],[0,1]],[[-359,-135],[-1,1]],[[-360,-134],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-367,-143],[0,-1]],[[-367,-144],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-366,-149],[0,-1],[1,-1],[0,-1]],[[-365,-152],[1,-1]],[[-364,-153],[0,-1],[-1,-1]],[[-365,-155],[-1,1],[-1,-1]],[[-367,-155],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-369,-159],[0,-1],[1,-1],[0,-1],[1,-1]],[[-367,-163],[0,-1],[-1,-1],[0,-1],[1,-1]],[[-367,-167],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-367,-171],[-1,1],[-1,-1]],[[-369,-171],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-371,-175],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-376,-173],[-1,1],[-1,-1]],[[-378,-173],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-384,-181],[0,-1],[1,-1],[0,-1],[1,-1]],[[-382,-185],[0,-1],[-1,-1]],[[-383,-187],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-382,-193],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-386,-197],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-385,-203],[0,-1],[1,-1]],[[-384,-205],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1]],[[-377,-207],[1,1],[1,-1]],[[-375,-207],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-374,-213],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-369,-215],[0,-1],[1,-1]],[[-368,-217],[1,1],[1,-1],[1,1]],[[-365,-216],[1,-1]],[[-364,-217],[0,-1],[1,-1],[0,-1],[1,-1]],[[-362,-221],[0,-1],[-1,-1],[0,-1]],[[-363,-224],[1,-1],[0,-1],[1,-1],[0,-1]],[[-361,-228],[-1,-1]],[[-362,-229],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-366,-233],[0,-1],[1,-1],[0,-1],[1,-1]],[[-364,-237],[0,-1],[-1,-1]],[[-365,-239],[0,-1],[1,-1]],[[-364,-241],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-364,-245],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-368,-249],[-1,1],[-1,-1]],[[-370,-249],[-1,1],[-1,-1],[-1,1],[0,1]],[[-373,-247],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1]],[[-378,-250],[-1,-1],[0,-1]],[[-379,-252],[-1,-1],[0,-1],[-1,-1]],[[-381,-255],[0,-1],[1,-1],[0,-1],[1,-1]],[[-379,-259],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-379,-267],[-1,1],[-1,-1]],[[-381,-267],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-383,-271],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1]],[[-381,-276],[-1,-1]],[[-382,-277],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-377,-279],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-372,-281],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-371,-287],[0,-1],[1,-1]],[[-370,-289],[1,1],[1,-1]],[[-368,-289],[1,1],[1,-1]],[[-366,-289],[0,-1],[1,-1]],[[-365,-291],[1,1],[1,-1],[1,1],[1,-1]],[[-361,-291],[0,-1]],[[-361,-292],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1]],[[-358,-302],[-1,-1]],[[-359,-303],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-363,-307],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-362,-313],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1]],[[-354,-317],[1,1]],[[-353,-316],[1,-1]],[[-352,-317],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-351,-323],[0,-1],[1,-1]],[[-350,-325],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[-345,-327],[1,1],[1,-1],[1,1],[1,-1]],[[-341,-327],[0,-1],[1,-1],[0,-1],[1,-1]],[[-339,-331],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1]],[[-338,-337],[0,-1],[-1,-1]],[[-339,-339],[-1,1],[-1,-1]],[[-341,-339],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-343,-343],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-341,-355],[-1,1],[-1,-1],[0,-1]],[[-343,-356],[-1,-1],[0,-1],[-1,-1]],[[-345,-359],[-1,1],[-1,-1],[-1,1]],[[-348,-358],[-1,-1],[-1,1]],[[-350,-358],[0,1]],[[-350,-357],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-356,-361],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-358,-365],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-363,-363],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[-368,-362],[0,1]],[[-368,-361],[1,1],[0,1],[-1,1],[0,1]],[[-368,-357],[-1,1],[0,1]],[[-369,-355],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-378,-357],[-1,1],[-1,-1]],[[-380,-357],[0,-1],[-1,-1]],[[-381,-359],[0,-1],[-1,-1]],[[-382,-361],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-387,-359],[-1,1]],[[-388,-358],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-393,-363],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-395,-367],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-399,-367],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1]],[[-403,-364],[-1,-1],[-1,1]],[[-405,-364],[0,1]],[[-405,-363],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-406,-357],[-1,1]],[[-407,-356],[-1,-1],[-1,1],[-1,-1]],[[-410,-357],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-415,-355],[-1,1],[0,1]],[[-416,-353],[1,1]],[[-415,-352],[0,1],[-1,1],[0,1]],[[-416,-349],[-1,1],[0,1]],[[-417,-347],[1,1],[0,1],[1,1],[0,1],[1,1]],[[-414,-342],[1,-1]],[[-413,-343],[1,1],[0,1]],[[-412,-341],[-1,1],[0,1],[-1,1],[0,1]],[[-414,-337],[1,1],[0,1]],[[-413,-335],[-1,1],[0,1],[-1,1]],[[-415,-332],[0,1]],[[-415,-331],[1,1],[0,1],[1,1],[0,1],[1,1]],[[-412,-326],[1,-1]],[[-411,-327],[1,1],[0,1],[1,1],[0,1]],[[-409,-323],[1,1],[1,-1]],[[-407,-323],[0,-1],[1,-1],[1,1],[1,-1]],[[-404,-325],[1,1],[1,-1]],[[-402,-325],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-401,-331],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-396,-333],[0,-1],[1,-1]],[[-395,-335],[1,1],[1,-1]],[[-393,-335],[1,1],[1,-1]],[[-391,-335],[0,-1]],[[-391,-336],[1,-1]],[[-390,-337],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-390,-341],[-1,1]],[[-391,-340],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-394,-345],[0,-1],[1,-1]],[[-105,-203],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1]],[[-103,-208],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-103,-215],[-1,1],[-1,-1]],[[-105,-215],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-107,-219],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1]],[[-105,-224],[-1,-1],[0,-1]],[[-106,-226],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-105,-231],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-108,-233],[0,-1],[-1,-1]],[[-109,-235],[-1,1],[-1,-1]],[[-111,-235],[-1,1],[-1,-1],[-1,1],[0,1]],[[-114,-233],[-1,1],[-1,-1],[0,-1]],[[-116,-234],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-120,-237],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-122,-241],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-127,-239],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-132,-237],[1,1],[0,1],[-1,1]],[[-132,-234],[0,1],[-1,1],[0,1]],[[-133,-231],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-138,-229],[-1,1]],[[-139,-228],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-142,-233],[-1,1],[-1,-1]],[[-144,-233],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-146,-237],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-151,-235],[-1,1],[-1,-1],[0,-1]],[[-153,-236],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1]],[[-157,-240],[-1,-1],[0,-1],[-1,-1]],[[-159,-243],[-1,1],[-1,-1],[-1,1]],[[-162,-242],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-168,-241],[-1,1]],[[-169,-240],[0,1]],[[-169,-239],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-170,-233],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-174,-233],[-1,1],[0,1],[-1,1]],[[-176,-230],[-1,-1],[-1,1]],[[-178,-230],[-1,-1],[-1,1],[0,1]],[[-180,-229],[1,1],[0,1],[-1,1],[0,1]],[[-180,-225],[-1,1],[0,1]],[[-181,-223],[-1,1],[-1,-1]],[[-183,-223],[-1,1],[-1,-1],[-1,1],[0,1]],[[-186,-221],[-1,1],[-1,-1]],[[-188,-221],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-190,-225],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-194,-229],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-198,-229],[-1,1],[0,1]],[[-199,-227],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-204,-225],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-205,-219],[-1,1]],[[-206,-218],[0,1],[1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1]],[[-204,-209],[1,1],[1,-1]],[[-202,-209],[1,1],[0,1]],[[-201,-207],[-1,1],[0,1],[-1,1],[0,1]],[[-216,-210],[1,-1],[0,-1],[1,-1],[0,-1]],[[-214,-214],[-1,-1]],[[-215,-215],[0,-1],[1,-1]],[[-214,-217],[0,-1],[1,-1]],[[-213,-219],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-218,-225],[0,-1],[1,-1],[0,-1],[1,-1]],[[-216,-229],[0,-1],[-1,-1]],[[-217,-231],[0,-1],[1,-1],[1,1]],[[-215,-232],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-207,-235],[0,-1],[1,-1],[0,-1],[1,-1]],[[-205,-239],[0,-1],[-1,-1]],[[-206,-241],[0,-1]],[[-206,-242],[1,-1]],[[-205,-243],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[-200,-245],[1,1],[1,-1],[1,1],[1,-1]],[[-196,-245],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1]],[[-193,-255],[0,-1],[-1,-1]],[[-194,-257],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-198,-261],[0,-1],[1,-1]],[[-197,-263],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-197,-267],[0,-1],[1,-1]],[[-196,-269],[1,1],[1,-1],[1,1],[1,-1]],[[-192,-269],[0,-1],[1,-1],[1,1],[1,-1]],[[-189,-271],[1,1],[1,-1]],[[-187,-271],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-186,-277],[0,-1],[1,-1]],[[-185,-279],[1,1]],[[-184,-278],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[-180,-281],[1,1]],[[-179,-280],[1,-1],[1,1],[1,-1]],[[-176,-281],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-175,-287],[0,-1],[1,-1],[0,-1],[1,-1]],[[-173,-291],[0,-1],[-1,-1]],[[-174,-293],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-178,-297],[0,-1]],[[-178,-298],[1,-1],[0,-1],[1,-1]],[[-176,-301],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1]],[[-175,-307],[0,-1],[-1,-1]],[[-176,-309],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-180,-313],[-1,1],[-1,-1]],[[-182,-313],[-1,1],[-1,-1]],[[-184,-313],[-1,1]],[[-185,-312],[0,1]],[[-185,-311],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1]],[[-192,-318],[-1,-1]],[[-193,-319],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-192,-325],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-191,-331],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-195,-335],[0,-1]],[[-195,-336],[1,-1],[0,-1],[1,-1]],[[-193,-339],[0,-1],[-1,-1],[0,-1],[1,-1]],[[-193,-343],[0,-1],[1,-1]],[[-192,-345],[0,-1],[-1,-1]],[[-193,-347],[-1,1],[-1,-1]],[[-195,-347],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-197,-351],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-201,-351],[-1,1],[0,1]],[[-202,-349],[-1,1],[-1,-1]],[[-204,-349],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-210,-357],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1]],[[-218,-354],[-1,-1],[-1,1],[0,1]],[[-220,-353],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-221,-347],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-225,-347],[-1,1],[0,1]],[[-226,-345],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-233,-351],[0,-1],[-1,-1]],[[-234,-353],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-239,-351],[-1,1],[-1,-1]],[[-241,-351],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-243,-355],[-1,1],[-1,-1]],[[-245,-355],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-247,-359],[-1,1],[-1,-1],[-1,1]],[[-250,-358],[-1,-1],[-1,1],[0,1]],[[-252,-357],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-257,-355],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-258,-349],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-263,-347],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-268,-345],[1,1],[0,1]],[[-267,-343],[-1,1],[0,1],[-1,1],[0,1]],[[-269,-339],[1,1],[0,1],[1,1],[0,1]],[[-267,-335],[1,1],[1,-1]],[[-265,-335],[1,1],[0,1],[-1,1],[0,1]],[[-265,-331],[-1,1],[0,1]],[[-266,-329],[1,1],[0,1],[-1,1],[0,1],[-1,1]],[[-267,-324],[0,1]],[[-267,-323],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1]],[[-275,-320],[-1,-1],[-1,1],[0,1]],[[-277,-319],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-278,-313],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-283,-311],[-1,1],[-1,-1]],[[-285,-311],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-287,-315],[-1,1],[-1,-1]],[[-289,-315],[0,-1],[-1,-1]],[[-290,-317],[0,-1],[-1,-1]],[[-291,-319],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-296,-317],[-1,1],[-1,-1]],[[-298,-317],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-304,-325],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-313,-323],[-1,1],[0,1]],[[-314,-321],[1,1],[0,1]],[[-313,-319],[-1,1],[0,1],[-1,1]],[[-315,-316],[0,1]],[[-315,-315],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-320,-313],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-324,-317],[-1,1],[-1,-1]],[[-326,-317],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-328,-321],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-332,-321],[-1,1],[0,1]],[[-333,-319],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1]],[[-338,-322],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-5,-383],[-1,1],[-1,-1]],[[-7,-383],[-1,1],[-1,-1],[-1,1]],[[-10,-382],[0,1]],[[-10,-381],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-15,-379],[1,1],[0,1]],[[-14,-377],[-1,1],[0,1],[-1,1],[0,1]],[[-16,-373],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-21,-371],[-1,1],[-1,-1]],[[-23,-371],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-27,-375],[0,-1],[-1,-1],[0,-1]],[[-28,-378],[-1,-1]],[[-29,-379],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-33,-379],[-1,1],[0,1]],[[-34,-377],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-37,-379],[0,-1],[-1,-1]],[[-38,-381],[-1,1],[-1,-1]],[[-40,-381],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-42,-385],[-1,1],[-1,-1]],[[-44,-385],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1]],[[-49,-383],[-1,1],[-1,-1],[-1,1],[0,1]],[[-52,-381],[1,1]],[[-51,-380],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-53,-375],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[-58,-374],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-62,-373],[-1,1],[0,1]],[[-63,-371],[1,1]],[[-62,-370],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-64,-365],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-69,-363],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-72,-365],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-77,-371],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-81,-371],[-1,1],[0,1]],[[-82,-369],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-86,-369],[-1,1],[0,1]],[[-87,-367],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-88,-361],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-92,-361],[-1,1]],[[-93,-360],[0,1]],[[-93,-359],[1,1]],[[-92,-358],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1]],[[-92,-350],[0,1]],[[-92,-349],[1,1],[1,-1]],[[-90,-349],[0,-1],[1,-1],[1,1],[1,-1]],[[-87,-351],[1,1],[1,-1]],[[-85,-351],[1,1],[0,1]],[[-84,-349],[-1,1],[0,1],[-1,1]],[[-86,-346],[0,1]],[[-86,-345],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-82,-341],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-83,-335],[1,1],[0,1]],[[-82,-333],[-1,1],[0,1],[-1,1],[0,1]],[[-84,-329],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-80,-325],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-81,-319],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-82,-313],[-1,1],[-1,-1],[-1,1]],[[-85,-312],[-1,-1]],[[-86,-313],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-92,-309],[1,1]],[[-91,-308],[0,1],[-1,1]],[[-92,-306],[0,1],[-1,1],[0,1]],[[-93,-303],[-1,1],[-1,-1],[-1,1]],[[-96,-302],[-1,-1],[-1,1],[0,1],[-1,1]],[[-99,-300],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-103,-299],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-104,-293],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-100,-289],[1,1],[0,1],[-1,1]],[[-100,-286],[0,1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-102,-277],[-1,1]],[[-103,-276],[-1,-1],[-1,1],[-1,-1]],[[-106,-277],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-112,-273],[1,1]],[[-111,-272],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-113,-267],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-117,-267],[-1,1]],[[-118,-266],[0,1]],[[-118,-265],[-1,1]],[[-119,-264],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-124,-269],[0,-1]],[[-124,-270],[-1,-1],[0,-1],[-1,-1]],[[-126,-273],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-131,-271],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1]],[[-134,-274],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-139,-279],[-1,1]],[[-140,-278],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-144,-277],[-1,1],[-1,-1]],[[-146,-277],[-1,1],[-1,-1]],[[-148,-277],[-1,1],[0,1]],[[-149,-275],[1,1],[0,1]],[[-148,-273],[-1,1],[0,1],[-1,1],[0,1]],[[-150,-269],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-155,-267],[-1,1],[-1,-1]],[[-157,-267],[0,-1],[-1,-1],[0,-1]],[[-158,-270],[-1,-1]],[[-159,-271],[-1,1],[-1,-1]],[[-161,-271],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-163,-275],[-1,1],[-1,-1]],[[-165,-275],[-1,1],[-1,-1],[-1,1],[0,1]],[[-168,-273],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-172,-277],[-1,1],[-1,-1]],[[-174,-277],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-36,-533],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-46,-529],[1,1],[0,1],[-1,1],[0,1]],[[-46,-525],[-1,1],[0,1]],[[-47,-523],[-1,1],[-1,-1]],[[-49,-523],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1]],[[-54,-521],[-1,1],[-1,-1],[-1,1],[0,1]],[[-57,-519],[1,1],[0,1],[-1,1]],[[-57,-516],[0,1],[-1,1],[0,1]],[[-58,-513],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-54,-509],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[-54,-501],[-1,1],[0,1],[-1,1],[0,1]],[[-56,-497],[1,1],[0,1],[1,1],[0,1]],[[-54,-493],[-1,1],[0,1],[1,1]],[[-54,-490],[1,-1],[1,1],[0,1]],[[-52,-489],[-1,1],[0,1]],[[-53,-487],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-54,-481],[1,1],[0,1],[1,1]],[[-52,-478],[0,1],[1,1]],[[-51,-476],[1,-1]],[[-50,-477],[1,1],[0,1]],[[-49,-475],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[-50,-469],[-1,1],[0,1],[-1,1],[0,1]],[[-52,-465],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-57,-463],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-61,-463],[-1,1]],[[-62,-462],[0,1]],[[-62,-461],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-63,-455],[1,1],[0,1],[1,1],[0,1]],[[-61,-451],[1,1],[1,-1]],[[-59,-451],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[-59,-443],[-1,1],[0,1],[-1,1],[0,1]],[[-61,-439],[1,1],[0,1],[1,1],[0,1]],[[-59,-435],[1,1],[1,-1]],[[-57,-435],[1,1]],[[-56,-434],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-59,-423],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-69,-419],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-70,-413],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-75,-411],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[-80,-410],[0,1],[1,1]],[[-79,-408],[0,1]],[[-79,-407],[-1,1],[0,1],[-1,1]],[[-81,-404],[0,1]],[[-81,-403],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-77,-399],[1,1],[0,1],[-1,1],[0,1]],[[-77,-395],[-1,1],[0,1]],[[-78,-393],[1,1],[0,1]],[[-77,-391],[-1,1],[0,1],[-1,1],[0,1]],[[-79,-387],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-83,-387],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-88,-385],[-1,1],[0,1]],[[-89,-383],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-90,-377],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[-95,-376],[0,1]],[[-95,-375],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-100,-373],[1,1],[0,1]],[[-99,-371],[-1,1]],[[-100,-370],[0,1],[-1,1],[0,1]],[[-101,-367],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-97,-363],[1,1],[0,1]],[[-96,-361],[-1,1],[0,1],[-1,1]],[[-98,-358],[0,1]],[[-98,-357],[1,1],[0,1]],[[-97,-355],[-1,1],[0,1],[-1,1],[0,1]],[[-99,-351],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-95,-347],[1,1],[0,1]],[[-94,-345],[1,1],[0,1],[1,1],[1,-1]],[[-91,-343],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-224,-469],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[1,1],[0,1]],[[-219,-463],[1,1]],[[-218,-462],[0,1],[1,1],[1,-1]],[[-216,-461],[0,-1],[1,-1],[1,1],[1,-1],[1,1]],[[-212,-462],[1,-1]],[[-211,-463],[1,1],[0,1],[1,1],[0,1]],[[-209,-459],[1,1],[1,-1]],[[-207,-459],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[1,1]],[[-201,-456],[1,-1],[1,1],[1,-1]],[[-198,-457],[0,-1],[1,-1],[0,-1],[1,-1]],[[-196,-461],[0,-1],[-1,-1]],[[-197,-463],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-192,-465],[0,-1],[1,-1],[1,1],[1,-1]],[[-189,-467],[1,1],[1,-1]],[[-187,-467],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-186,-473],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-185,-479],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-188,-481],[-1,1],[0,1],[-1,1],[0,1]],[[-190,-477],[1,1],[0,1]],[[-189,-475],[-1,1],[0,1],[-1,1]],[[-191,-472],[0,1]],[[-191,-471],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-200,-473],[-1,1]],[[-201,-472],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-205,-471],[-1,1],[-1,-1]],[[-207,-471],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-209,-475],[-1,1],[-1,-1]],[[-211,-475],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-213,-479],[0,-1],[1,-1],[0,-1],[1,-1]],[[-211,-483],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-211,-491],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-214,-493],[0,-1],[-1,-1]],[[-215,-495],[0,-1],[1,-1],[0,-1],[1,-1]],[[-213,-499],[0,-1],[-1,-1]],[[-214,-501],[0,-1],[1,-1],[1,1],[1,-1],[1,1]],[[-210,-502],[1,-1]],[[-209,-503],[0,-1],[1,-1],[1,1]],[[-207,-504],[1,-1],[1,1],[1,-1]],[[-204,-505],[0,-1],[1,-1],[0,-1],[1,-1]],[[-202,-509],[0,-1],[-1,-1]],[[-203,-511],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-202,-517],[-1,1],[-1,-1]],[[-204,-517],[0,-1]],[[-204,-518],[-1,-1],[0,-1],[-1,-1]],[[-206,-521],[0,-1]],[[-206,-522],[1,-1],[0,-1],[1,-1]],[[-204,-525],[0,-1],[-1,-1]],[[-205,-527],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-195,-531],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-194,-537],[0,-1],[1,-1]],[[-193,-539],[1,1],[1,-1],[1,1]],[[-190,-538],[1,-1],[0,-1],[1,-1]],[[-188,-541],[1,1],[1,-1],[1,1]],[[-185,-540],[1,-1]],[[-184,-541],[1,1],[0,1],[1,1],[0,1]],[[-182,-537],[1,1],[1,-1],[1,1]],[[-179,-536],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-176,-533],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-171,-535],[1,1]],[[-170,-534],[0,1],[1,1],[0,1]],[[-169,-531],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-163,-527],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-158,-529],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-157,-535],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-152,-537],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-147,-539],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[1,1],[0,1]],[[-142,-533],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1]],[[-138,-533],[1,1],[1,-1],[1,1],[1,-1]],[[-134,-533],[1,1],[0,1],[1,1],[0,1],[1,1]],[[-131,-528],[1,-1]],[[-130,-529],[1,1],[0,1],[-1,1]],[[-130,-526],[0,1],[-1,1],[0,1]],[[-131,-523],[1,1],[0,1]],[[-130,-521],[-1,1],[0,1],[-1,1],[0,1]],[[-132,-517],[1,1],[0,1],[1,1],[0,1]],[[-130,-513],[1,1],[1,-1]],[[-128,-513],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-129,-507],[1,1]],[[-128,-506],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-130,-501],[1,1],[0,1],[1,1],[0,1]],[[-128,-497],[1,1],[1,-1]],[[-126,-497],[1,1],[0,1],[1,1],[0,1]],[[-124,-493],[1,1],[1,-1]],[[-122,-493],[0,-1],[1,-1]],[[-121,-495],[1,1],[1,-1],[1,1],[1,-1]],[[-117,-495],[1,1]],[[-116,-494],[0,1],[1,1]],[[-115,-492],[0,1]],[[-115,-491],[1,1],[1,-1],[1,1],[0,1],[1,1]],[[-111,-488],[0,1],[1,1],[1,-1]],[[-109,-487],[0,-1],[1,-1]],[[-108,-489],[1,1],[1,-1],[1,1],[1,-1]],[[-104,-489],[0,-1],[1,-1],[0,-1],[1,-1]],[[-102,-493],[0,-1],[-1,-1]],[[-103,-495],[0,-1],[1,-1],[1,1]],[[-101,-496],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[-97,-499],[1,1],[1,-1],[1,1],[1,-1]],[[-93,-499],[1,1],[0,1],[1,1],[0,1]],[[-91,-495],[1,1],[1,-1]],[[-89,-495],[1,1],[0,1],[1,1],[0,1]],[[-87,-491],[1,1],[1,-1]],[[-85,-491],[0,-1],[1,-1],[1,1],[1,-1],[1,1]],[[-81,-492],[1,-1]],[[-80,-493],[1,1],[0,1],[1,1],[0,1],[1,1]],[[-77,-488],[1,-1]],[[-76,-489],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-77,-483],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-78,-477],[1,1],[0,1],[1,1]],[[-76,-474],[0,1],[1,1],[1,-1]],[[-74,-473],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1]],[[-74,-466],[0,1]],[[-74,-465],[-1,1],[0,1],[-1,1]],[[-76,-462],[0,1]],[[-76,-461],[1,1],[0,1],[1,1]],[[-74,-458],[0,1]],[[-74,-457],[1,1],[1,-1],[1,1],[0,1],[1,1]],[[-70,-454],[0,1]],[[-70,-453],[1,1],[1,-1]],[[-68,-453],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-87,-471],[-1,1],[0,1],[-1,1],[0,1]],[[-89,-467],[-1,1],[-1,-1],[-1,1]],[[-92,-466],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-99,-463],[1,1],[0,1],[-1,1],[0,1],[-1,1]],[[-100,-458],[0,1]],[[-100,-457],[1,1]],[[-99,-456],[0,1]],[[-99,-455],[1,1],[0,1],[1,1],[1,-1]],[[-96,-453],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-97,-447],[1,1]],[[-96,-446],[0,1],[-1,1],[0,1],[-1,1]],[[-98,-442],[0,1]],[[-98,-441],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-94,-437],[1,1],[0,1],[-1,1],[0,1],[-1,1]],[[-95,-432],[0,1]],[[-95,-431],[1,1]],[[-94,-430],[0,1]],[[-94,-429],[-1,1],[0,1],[-1,1],[0,1]],[[-96,-425],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-105,-423],[-1,1],[0,1]],[[-106,-421],[1,1],[0,1],[-1,1],[0,1]],[[-106,-417],[-1,1],[0,1]],[[-107,-415],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-112,-413],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-117,-411],[1,1]],[[-116,-410],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-118,-405],[1,1],[0,1],[1,1],[0,1]],[[-116,-401],[1,1],[1,-1]],[[-114,-401],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[-114,-393],[-1,1],[0,1],[-1,1],[0,1]],[[-116,-389],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[-121,-388],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-126,-385],[1,1],[0,1]],[[-125,-383],[-1,1],[0,1],[-1,1],[0,1]],[[-127,-379],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-132,-377],[-1,1],[-1,-1]],[[-134,-377],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-136,-381],[-1,1],[-1,-1]],[[-138,-381],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-140,-385],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-145,-383],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-148,-385],[0,-1],[-1,-1]],[[-149,-387],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-153,-391],[-1,1],[-1,-1],[-1,1]],[[-156,-390],[-1,-1]],[[-157,-391],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-163,-387],[1,1]],[[-162,-386],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-164,-381],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-168,-381],[-1,1],[0,1],[-1,1]],[[-170,-378],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-174,-377],[1,1],[0,1]],[[-173,-375],[-1,1],[0,1],[-1,1],[0,1]],[[-175,-371],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-171,-367],[1,1],[0,1]],[[-170,-365],[-1,1],[0,1],[-1,1]],[[-172,-362],[0,1],[1,1],[0,1]],[[-171,-359],[-1,1],[0,1],[-1,1],[0,1]],[[-173,-355],[1,1],[0,1],[1,1],[0,1]],[[-171,-351],[1,1],[1,-1]],[[-169,-351],[1,1],[0,1],[1,1],[0,1]],[[-167,-347],[1,1]],[[-166,-346],[1,-1]],[[-165,-347],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-160,-349],[0,-1]],[[-160,-350],[1,-1],[0,-1],[1,-1],[0,-1]],[[-158,-354],[-1,-1]],[[-159,-355],[0,-1],[1,-1],[1,1],[1,-1]],[[-156,-357],[1,1]],[[-155,-356],[1,-1],[0,-1],[1,-1]],[[-153,-359],[1,1],[1,-1],[1,1],[1,-1]],[[-149,-359],[0,-1],[1,-1],[0,-1],[1,-1]],[[-147,-363],[0,-1],[-1,-1]],[[-148,-365],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-152,-369],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-157,-367],[-1,1],[-1,-1],[-1,1],[0,1],[1,1],[1,-1],[1,1],[0,1]],[[-157,-363],[-1,1],[0,1]],[[-158,-361],[-1,1],[-1,-1]],[[-160,-361],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-162,-365],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-161,-371],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[-155,-375],[1,1]],[[-154,-374],[1,-1],[1,1],[1,-1]],[[-151,-375],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[1,1],[0,1]],[[-146,-369],[1,1],[0,1],[1,1],[1,-1]],[[-143,-367],[0,-1],[1,-1]],[[-142,-369],[1,1],[1,-1],[1,1],[1,-1]],[[-138,-369],[1,1],[0,1],[1,1],[0,1]],[[-136,-365],[1,1],[1,-1]],[[-134,-365],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-136,-353],[1,1]],[[-135,-352],[0,1]],[[-135,-351],[1,1],[0,1],[1,1],[1,-1]],[[-132,-349],[1,1],[0,1],[1,1],[0,1],[1,1]],[[-129,-344],[1,-1]],[[-128,-345],[0,-1],[1,-1],[1,1]],[[-126,-346],[1,-1],[1,1],[1,-1]],[[-123,-347],[1,1]],[[-122,-346],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-119,-343],[1,1],[0,1],[1,1],[0,1]],[[-117,-339],[1,1],[1,-1]],[[-115,-339],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-110,-341],[0,-1],[1,-1],[0,-1]],[[-109,-344],[1,-1],[0,-1],[-1,-1]],[[-109,-347],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-104,-349],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-78,-477],[-1,1],[-1,-1]],[[-80,-477],[-1,1]],[[-81,-476],[-1,-1],[-1,1],[0,1]],[[-83,-475],[1,1],[0,1],[-1,1]],[[-83,-472],[0,1],[-1,1],[0,1]],[[-84,-469],[-1,1],[-1,-1],[0,-1]],[[-86,-470],[-1,-1]],[[-47,-328],[1,-1],[0,-1]],[[-46,-330],[-1,-1],[-1,1],[0,1]],[[-48,-329],[1,1]],[[-19,-75],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[-24,-74],[0,1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-28,-77],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-27,-83],[0,-1],[1,-1],[1,1]],[[-25,-84],[1,-1],[1,1],[1,-1]],[[-22,-85],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-17,-87],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-9,-79],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-4,-81],[1,1],[0,1],[1,1],[0,1]],[[-2,-77],[1,1],[1,-1]],[[0,-77],[1,1]],[[1,-76],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[4,-73],[0,-1]],[[4,-74],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[9,-75],[0,-1]],[[9,-76],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[10,-81],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[16,-85],[1,1],[1,-1],[1,1],[1,-1]],[[38,-137],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[33,-135],[-1,1]],[[32,-134],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[29,-139],[-1,1],[-1,-1]],[[27,-139],[0,-1],[-1,-1],[0,-1]],[[26,-142],[-1,-1]],[[25,-143],[-1,1]],[[24,-142],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[15,-140],[0,1]],[[15,-139],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[14,-133],[-1,1]],[[13,-132],[-1,-1]],[[12,-133],[-1,1],[-1,-1],[-1,1],[0,1]],[[9,-131],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[8,-125],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[12,-121],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[1,-1],[1,1],[1,-1]],[[13,-127],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[17,-123],[1,1],[0,1],[-1,1]],[[17,-120],[0,1],[-1,1],[0,1]],[[16,-117],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[11,-115],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1]],[[6,-118],[-1,-1]],[[5,-119],[0,-1]],[[5,-120],[-1,-1],[0,-1],[-1,-1]],[[3,-123],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-2,-121],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-7,-119],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-8,-113],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-13,-111],[-1,1],[-1,-1]],[[-15,-111],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-19,-115],[0,-1]],[[-19,-116],[-1,-1],[0,-1],[-1,-1]],[[-21,-119],[-1,1]],[[-22,-118],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[-26,-118],[0,1]],[[-26,-117],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1]],[[-29,-120],[-1,-1]],[[-30,-121],[-1,1]],[[-31,-120],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-20,-13],[0,-1],[1,-1]],[[-19,-15],[0,-1],[1,-1]],[[-18,-17],[0,-1],[-1,-1]],[[-19,-19],[0,-1],[1,-1],[0,-1]],[[-18,-22],[1,-1],[0,-1],[-1,-1]],[[-18,-25],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-22,-29],[0,-1],[1,-1],[0,-1],[1,-1]],[[-20,-33],[0,-1],[-1,-1]],[[-21,-35],[0,-1],[1,-1]],[[-20,-37],[1,1],[1,-1],[1,1],[1,-1]],[[-16,-37],[0,-1]],[[-16,-38],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-11,-39],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-10,-45],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-5,-47],[0,-1],[1,-1]],[[-4,-49],[1,1]],[[-3,-48],[1,-1],[1,1],[1,-1]],[[0,-49],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[1,-55],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[2,-61],[-1,1],[-1,-1]],[[0,-61],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-2,-65],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-6,-65],[-1,1],[0,1]],[[-7,-63],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1]],[[-10,-66],[-1,-1],[-1,1],[-1,-1]],[[-13,-67],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-15,-71],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-18,-81],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-22,-81],[-1,1],[0,1]],[[-23,-79],[1,1]],[[-22,-78],[1,-1],[1,1],[1,-1],[1,1],[0,1],[-1,1]],[[-19,-76],[0,1]],[[-270,-249],[0,-1],[1,-1]],[[-269,-251],[0,-1]],[[-269,-252],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-268,-261],[-1,1],[-1,-1]],[[-270,-261],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-272,-265],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-271,-271],[0,-1]],[[-271,-272],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-270,-277],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-274,-281],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[-279,-280],[0,1]],[[-279,-279],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-283,-283],[-1,1],[-1,-1]],[[-285,-283],[-1,1],[-1,-1],[-1,1],[0,1]],[[-288,-281],[1,1],[0,1],[1,1],[0,1],[1,1]],[[-285,-276],[1,-1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-285,-271],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-281,-267],[1,1],[0,1],[-1,1]],[[-281,-264],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[-281,-259],[-1,1],[0,1],[-1,1],[0,1]],[[-283,-255],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-293,-251],[1,1]],[[-292,-250],[0,1]],[[-292,-249],[-1,1],[0,1],[-1,1],[0,1]],[[-294,-245],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-299,-243],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1]],[[-305,-248],[-1,-1],[0,-1],[-1,-1]],[[-307,-251],[-1,1],[-1,-1]],[[-309,-251],[-1,1],[-1,-1],[-1,1],[0,1]],[[-312,-249],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-316,-249],[-1,1],[0,1]],[[-317,-247],[1,1],[0,1],[-1,1]],[[-317,-244],[0,1]],[[-317,-243],[-1,1],[0,1]],[[-318,-241],[-1,1],[-1,-1],[-1,1]],[[-321,-240],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-328,-237],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-329,-231],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-325,-227],[1,1],[0,1]],[[-324,-225],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[-325,-219],[-1,1],[0,1],[-1,1],[0,1]],[[-327,-215],[-1,1],[-1,-1],[-1,1]],[[-330,-214],[-1,-1],[-1,1]],[[-332,-214],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-336,-213],[-1,1],[0,1]],[[-337,-211],[1,1],[0,1]],[[-336,-209],[-1,1],[0,1],[-1,1],[0,1]],[[-338,-205],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-343,-203],[-1,1],[-1,-1]],[[-345,-203],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-347,-207],[-1,1],[-1,-1]],[[-349,-207],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-351,-211],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-356,-209],[-1,1]],[[-357,-208],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-360,-213],[-1,1]],[[-361,-212],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-304,-157],[-1,1],[-1,-1]],[[-306,-157],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-308,-161],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-307,-167],[0,-1],[1,-1],[0,-1],[1,-1]],[[-48,-329],[-1,1],[-1,-1],[0,-1]],[[-50,-330],[-1,-1],[-1,1],[-1,-1]],[[-53,-331],[0,-1]],[[-53,-332],[-1,-1],[0,-1],[-1,-1]],[[-55,-335],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-54,-341],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-58,-345],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-62,-349],[0,-1],[1,-1],[0,-1],[1,-1]],[[-60,-353],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1]],[[-59,-360],[-1,-1]],[[-60,-361],[-1,1]],[[-61,-360],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-82,-313],[1,1]],[[-81,-312],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-78,-309],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-74,-305],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-69,-307],[1,1],[0,1],[1,1],[0,1]],[[-67,-303],[1,1],[1,-1]],[[-65,-303],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-61,-299],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-56,-301],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1]],[[-54,-306],[-1,-1]],[[-55,-307],[0,-1],[1,-1],[1,1],[1,-1]],[[-52,-309],[1,1],[1,-1]],[[-50,-309],[0,-1],[1,-1]],[[-49,-311],[1,1],[1,-1],[1,1],[1,-1]],[[-45,-311],[0,-1]],[[-45,-312],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-43,-323],[-1,1],[-1,-1]],[[-45,-323],[0,-1]],[[-45,-324],[-1,-1],[0,-1],[-1,-1]],[[-47,-327],[0,-1]],[[-225,-315],[1,1],[0,1],[1,1],[1,-1]],[[-222,-313],[0,-1],[1,-1]],[[-221,-315],[1,1],[1,-1],[1,1],[1,-1]],[[-217,-315],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-213,-311],[1,1],[0,1]],[[-212,-309],[-1,1],[0,1],[-1,1],[0,1]],[[-214,-305],[1,1],[0,1]],[[-213,-303],[-1,1],[0,1],[-1,1],[0,1]],[[-215,-299],[1,1],[0,1],[1,1],[0,1]],[[-213,-295],[1,1],[1,-1]],[[-211,-295],[1,1]],[[-210,-294],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-212,-289],[1,1],[0,1]],[[-211,-287],[-1,1],[0,1],[-1,1],[0,1]],[[-213,-283],[-1,1]],[[-214,-282],[-1,-1],[-1,1],[-1,-1]],[[-217,-283],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-222,-281],[-1,1],[0,1]],[[-223,-279],[1,1],[0,1]],[[-222,-277],[-1,1],[0,1],[-1,1]],[[-224,-274],[0,1]],[[-224,-273],[-1,1],[-1,-1],[-1,1]],[[-227,-272],[-1,-1],[-1,1]],[[-229,-272],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-234,-269],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-235,-263],[1,1],[0,1],[1,1],[0,1]],[[-233,-259],[1,1],[1,-1]],[[-231,-259],[1,1],[0,1],[-1,1],[0,1],[-1,1]],[[-232,-254],[0,1],[1,1],[0,1]],[[-231,-251],[-1,1],[0,1],[-1,1],[0,1]],[[-233,-247],[-1,1]],[[-234,-246],[-1,-1],[-1,1],[-1,-1]],[[-237,-247],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1]],[[-241,-244],[-1,-1],[-1,1],[0,1]],[[-243,-243],[1,1],[0,1]],[[-242,-241],[-1,1],[0,1],[-1,1],[0,1]],[[-221,-347],[1,1]],[[-220,-346],[0,1],[1,1],[0,1]],[[-219,-343],[1,1]],[[-218,-342],[1,-1]],[[-217,-343],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-218,-337],[1,1],[0,1]],[[-217,-335],[-1,1],[0,1],[-1,1],[0,1]],[[-219,-331],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-224,-329],[1,1],[0,1]],[[-223,-327],[-1,1],[0,1],[-1,1],[0,1]],[[-225,-323],[-1,1],[-1,-1],[-1,1]],[[-228,-322],[0,1],[1,1],[0,1],[-1,1]],[[-228,-318],[0,1]],[[-228,-317],[1,1],[1,-1],[1,1],[0,1]],[[-319,-319],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1]],[[-322,-322],[-1,-1]],[[-323,-323],[0,-1]],[[-323,-324],[1,-1],[0,-1],[1,-1]],[[-321,-327],[0,-1]],[[-321,-328],[-1,-1]],[[-322,-329],[-1,1],[-1,-1]],[[-324,-329],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-330,-337],[0,-1],[1,-1],[0,-1],[1,-1]],[[-328,-341],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1]],[[-327,-347],[0,-1],[-1,-1]],[[-328,-349],[-1,1],[-1,-1]],[[-330,-349],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-332,-353],[0,-1]],[[-332,-354],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-331,-359],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-326,-361],[0,-1],[1,-1]],[[-325,-363],[1,1],[1,-1],[1,1],[1,-1]],[[-321,-363],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-320,-369],[0,-1],[1,-1],[0,-1],[1,-1]],[[-318,-373],[0,-1],[-1,-1]],[[-319,-375],[-1,1]],[[-320,-374],[-1,-1],[0,-1],[-1,-1],[0,-1]],[[-322,-378],[-1,-1]],[[-323,-379],[0,-1],[1,-1],[0,-1]],[[-322,-382],[1,-1]],[[-321,-383],[0,-1],[-1,-1]],[[-322,-385],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-321,-391],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-325,-395],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-330,-393],[-1,1]],[[-331,-392],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-432,-369],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-428,-365],[1,1]],[[-427,-364],[0,1],[1,1],[0,1]],[[-426,-361],[1,1],[1,-1]],[[-424,-361],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-419,-363],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-418,-369],[0,-1],[1,-1]],[[-417,-371],[1,1],[1,-1]],[[-415,-371],[1,1],[1,-1]],[[-413,-371],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-408,-373],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-407,-379],[0,-1],[1,-1],[0,-1],[1,-1]],[[-405,-383],[1,1],[0,1],[1,1],[1,-1]],[[-402,-381],[0,-1],[1,-1]],[[-401,-383],[1,1],[1,-1],[1,1],[1,-1]],[[-397,-383],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-393,-379],[1,1]],[[-392,-378],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[-393,-371],[-1,1],[0,1],[-1,1],[0,1]],[[-314,-321],[-1,1],[-1,-1]],[[-316,-321],[-1,1],[-1,-1],[-1,1],[0,1]],[[-90,-173],[-1,1],[0,1],[-1,1],[0,1]],[[-92,-169],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-129,-167],[-1,1],[0,1]],[[-130,-165],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-134,-165],[-1,1],[0,1]],[[-135,-163],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-136,-157],[-1,1],[-1,-1]],[[-138,-157],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-146,-153],[1,1],[0,1]],[[-145,-151],[-1,1],[0,1],[-1,1],[0,1]],[[-147,-147],[1,1],[0,1],[1,1],[0,1]],[[-145,-143],[1,1],[1,-1]],[[-143,-143],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-144,-137],[1,1],[0,1]],[[-143,-135],[-1,1],[0,1],[-1,1],[0,1]],[[-145,-131],[1,1],[0,1],[1,1]],[[-143,-128],[0,1],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-137,-123],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-132,-125],[1,1],[0,1],[1,1]],[[-130,-122],[0,1],[1,1],[1,-1]],[[-128,-121],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-129,-115],[1,1],[0,1]],[[-128,-113],[-1,1]],[[-129,-112],[0,1],[-1,1],[0,1]],[[-130,-109],[1,1]],[[-129,-108],[0,1]],[[-129,-107],[1,1],[0,1],[1,1],[1,-1]],[[-126,-105],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-127,-99],[1,1],[0,1]],[[-126,-97],[-1,1]],[[-127,-96],[0,1],[-1,1],[0,1]],[[-128,-93],[1,1],[0,1],[1,1],[0,1]],[[-126,-89],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-120,-85],[0,-1],[1,-1]],[[-119,-87],[1,1],[1,-1],[1,1],[1,-1]],[[-115,-87],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1],[1,1]],[[-108,-78],[1,-1]],[[-107,-79],[0,-1],[1,-1],[1,1],[1,-1]],[[-104,-81],[1,1],[1,-1]],[[-102,-81],[0,-1],[1,-1]],[[-101,-83],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-101,-87],[0,-1],[1,-1]],[[-100,-89],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[-95,-91],[1,1]],[[-94,-90],[1,-1]],[[-93,-91],[1,1],[1,-1]],[[-91,-91],[0,-1],[1,-1],[0,-1],[1,-1]],[[-89,-95],[0,-1],[-1,-1]],[[-90,-97],[0,-1],[1,-1],[0,-1]],[[-89,-100],[1,-1]],[[-88,-101],[0,-1],[-1,-1]],[[-89,-103],[-1,1],[-1,-1]],[[-91,-103],[0,-1]],[[-91,-104],[-1,-1],[0,-1]],[[-92,-106],[-1,-1]],[[-93,-107],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[-98,-106],[0,1]],[[-98,-105],[1,1]],[[-97,-104],[0,1]],[[-97,-103],[1,1],[0,1]],[[-96,-101],[1,1],[1,-1]],[[-94,-101],[1,1]],[[-93,-100],[0,1]],[[-93,-99],[-1,1],[0,1],[-1,1],[0,1]],[[-95,-95],[-1,1],[-1,-1],[-1,1]],[[-98,-94],[-1,-1],[-1,1],[0,1]],[[-100,-93],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-104,-97],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-108,-97],[-1,1]],[[-109,-96],[0,1]],[[-109,-95],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-113,-99],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-117,-103],[0,-1],[1,-1]],[[-116,-105],[0,-1],[1,-1]],[[-115,-107],[0,-1],[-1,-1],[0,-1]],[[-116,-110],[1,-1],[0,-1],[1,-1]],[[-114,-113],[0,-1],[-1,-1]],[[-115,-115],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-118,-117],[0,-1],[-1,-1]],[[-119,-119],[0,-1],[1,-1]],[[-118,-121],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-118,-125],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-113,-127],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-108,-129],[0,-1],[1,-1],[0,-1],[1,-1]],[[-106,-133],[0,-1],[-1,-1]],[[-107,-135],[0,-1],[1,-1],[0,-1],[1,-1]],[[-105,-139],[0,-1],[-1,-1]],[[-106,-141],[-1,1],[-1,-1]],[[-108,-141],[0,-1],[-1,-1],[0,-1]],[[-109,-144],[-1,-1]],[[-110,-145],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1]],[[-108,-150],[-1,-1]],[[-109,-151],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-104,-153],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-99,-155],[0,-1]],[[-99,-156],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-98,-161],[0,-1],[1,-1]],[[-97,-163],[1,1],[1,-1],[1,1]],[[-94,-162],[1,-1],[0,-1],[1,-1]],[[-92,-165],[1,1],[1,-1],[1,1],[1,-1]],[[-94,-177],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[-68,-493],[1,1],[1,-1]],[[-66,-493],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-61,-495],[0,-1],[1,-1],[1,1],[1,-1]],[[-58,-497],[1,1]],[[-57,-496],[1,-1]],[[-53,-571],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-58,-569],[-1,1]],[[-59,-568],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-63,-567],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-67,-571],[0,-1],[1,-1],[0,-1]],[[-66,-574],[1,-1]],[[-65,-575],[0,-1],[-1,-1]],[[-66,-577],[-1,1],[-1,-1],[-1,1]],[[-69,-576],[-1,-1]],[[-70,-577],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-76,-573],[1,1],[0,1]],[[-75,-571],[-1,1]],[[-76,-570],[0,1],[-1,1],[0,1]],[[-77,-567],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-73,-563],[1,1],[0,1]],[[-72,-561],[-1,1]],[[-73,-560],[0,1],[-1,1],[0,1]],[[-74,-557],[1,1],[0,1]],[[-73,-555],[-1,1],[0,1],[-1,1],[0,1]],[[-75,-551],[1,1],[0,1],[1,1],[0,1]],[[-73,-547],[1,1],[1,-1]],[[-71,-547],[1,1],[0,1]],[[-70,-545],[-1,1],[0,1],[-1,1],[0,1]],[[-72,-541],[1,1],[0,1]],[[-71,-539],[-1,1],[0,1],[-1,1],[0,1]],[[-73,-535],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-78,-533],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-83,-531],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-84,-525],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-88,-525],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-93,-523],[-1,1],[0,1]],[[-94,-521],[1,1],[0,1]],[[-93,-519],[-1,1],[0,1],[-1,1],[0,1]],[[-95,-515],[1,1],[0,1],[1,1],[0,1]],[[-93,-511],[1,1],[1,-1]],[[-91,-511],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[-1,1]],[[-92,-502],[0,1],[-1,1],[0,1]],[[-76,-489],[0,-1],[1,-1],[1,1]],[[-74,-490],[1,-1],[1,1],[1,-1]],[[-71,-491],[1,1],[1,-1],[0,-1],[1,-1]],[[30,-214],[1,-1],[0,-1]],[[31,-216],[-1,-1],[0,-1],[1,-1]],[[31,-219],[0,-1],[-1,-1]],[[30,-221],[-1,1],[0,1],[-1,1],[0,1]],[[28,-217],[1,1],[0,1],[1,1]],[[-285,-295],[-1,1]],[[-286,-294],[0,1]],[[-286,-293],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-287,-287],[1,1],[0,1],[1,1],[0,1]],[[-228,-318],[-1,-1],[0,-1],[-1,-1]],[[-230,-321],[0,-1],[1,-1]],[[-229,-323],[0,-1],[1,-1]],[[-228,-325],[0,-1]],[[-228,-326],[-1,-1]],[[-229,-327],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-228,-333],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-232,-337],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-236,-337],[-1,1],[0,1]],[[-237,-335],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-241,-339],[-1,1],[-1,-1]],[[-243,-339],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-245,-343],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-249,-343],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[-253,-344],[-1,-1]],[[-254,-345],[-1,1]],[[-255,-344],[-1,-1]],[[-256,-345],[0,-1]],[[-256,-346],[-1,-1],[0,-1],[-1,-1]],[[-278,-313],[1,1],[0,1],[1,1],[0,1],[1,1]],[[-275,-308],[1,-1]],[[-274,-309],[1,1]],[[-273,-308],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-275,-303],[1,1],[0,1]],[[-274,-301],[-1,1],[0,1],[-1,1],[0,1]],[[-276,-297],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-280,-297],[-1,1]],[[-281,-296],[0,1]],[[-281,-295],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-86,-346],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[13,-435],[-1,1]],[[12,-434],[-1,-1],[-1,1],[-1,-1]],[[9,-435],[-1,1],[0,1],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[5,-435],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[0,-441],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-5,-439],[-1,1]],[[-6,-438],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-10,-437],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-11,-431],[1,1]],[[-10,-430],[1,-1],[0,-1],[1,-1],[1,1],[1,-1]],[[-6,-433],[0,-1],[1,-1]],[[-5,-435],[1,1],[1,-1],[1,1],[1,-1]],[[-1,-435],[1,1],[0,1],[1,1],[0,1]],[[1,-431],[1,1],[1,-1]],[[3,-431],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[2,-425],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-2,-425],[-1,1],[0,1]],[[-3,-423],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-7,-423],[-1,1],[0,1]],[[-8,-421],[1,1],[0,1]],[[-7,-419],[-1,1],[0,1],[-1,1],[0,1]],[[-9,-415],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-14,-413],[-1,1]],[[-15,-412],[-1,-1]],[[-16,-413],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-20,-417],[0,-1],[-1,-1],[0,-1]],[[-21,-420],[-1,-1]],[[-22,-421],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-26,-421],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-32,-417],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-33,-411],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-38,-409],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1]],[[-43,-412],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-46,-417],[-1,1],[-1,-1]],[[-48,-417],[-1,1],[-1,-1],[-1,1],[0,1]],[[-51,-415],[-1,1],[-1,-1]],[[-53,-415],[0,-1]],[[-53,-416],[-1,-1],[0,-1],[-1,-1]],[[-55,-419],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1]],[[-58,-422],[-1,-1]],[[-136,-50],[-1,-1],[-1,1],[-1,-1]],[[-139,-51],[-1,1],[0,1]],[[-140,-49],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1]],[[-143,-52],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-147,-55],[0,-1],[-1,-1]],[[-148,-57],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-147,-63],[0,-1]],[[-147,-64],[1,-1],[0,-1],[1,-1]],[[-145,-67],[0,-1],[-1,-1]],[[-146,-69],[-1,1],[-1,-1]],[[-148,-69],[-1,1],[0,1],[-1,1],[0,1]],[[-150,-65],[-1,1],[0,1],[-1,1],[0,1]],[[-152,-61],[-1,1]],[[-153,-60],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-157,-59],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-161,-63],[-1,1],[-1,-1],[-1,1]],[[-164,-62],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[-171,-60],[0,1]],[[-171,-59],[1,1],[0,1]],[[-170,-57],[-1,1],[0,1],[-1,1],[0,1]],[[-155,-15],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1]],[[-153,-20],[-1,-1]],[[-154,-21],[0,-1],[1,-1]],[[-153,-23],[1,1],[1,-1],[1,1],[1,-1]],[[-149,-23],[0,-1],[1,-1],[1,1],[1,-1]],[[-146,-25],[1,1],[1,-1]],[[-144,-25],[0,-1],[1,-1],[0,-1],[1,-1]],[[-142,-29],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1]],[[-142,-34],[1,-1],[0,-1],[-1,-1]],[[-142,-37],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-137,-39],[0,-1]],[[-137,-40],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-136,-45],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1]],[[-365,-127],[1,1]],[[-364,-126],[0,1],[1,1],[0,1]],[[-363,-123],[1,1],[1,-1]],[[-361,-123],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-357,-119],[0,-1],[1,-1],[1,1],[1,-1]],[[-354,-121],[1,1],[1,-1]],[[-352,-121],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-348,-117],[1,1],[0,1],[-1,1],[0,1],[-1,1]],[[-349,-112],[0,1]],[[-349,-111],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-367,-143],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-377,-139],[1,1]],[[-376,-138],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-378,-133],[1,1],[0,1],[1,1],[0,1]],[[-376,-129],[1,1],[1,-1]],[[-374,-129],[0,-1],[1,-1],[1,1],[1,-1],[1,1]],[[-370,-130],[1,-1],[1,1]],[[-368,-130],[0,1],[1,1],[0,1]],[[-367,-127],[1,1],[1,-1]],[[-163,-527],[1,1],[0,1],[-1,1]],[[-163,-524],[0,1],[-1,1],[0,1]],[[-164,-521],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[1,1]],[[-159,-520],[0,1],[-1,1],[0,1]],[[-160,-517],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-165,-515],[1,1],[0,1]],[[-164,-513],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[-165,-507],[-1,1],[0,1],[-1,1]],[[-167,-504],[0,1]],[[-167,-503],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-171,-503],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-176,-501],[-1,1],[0,1]],[[-177,-499],[1,1],[0,1]],[[-176,-497],[-1,1],[0,1],[-1,1],[0,1]],[[-178,-493],[-1,1]],[[-179,-492],[-1,-1],[-1,1],[-1,-1]],[[-182,-493],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-188,-489],[1,1],[0,1]],[[-187,-487],[-1,1],[0,1],[-1,1],[0,1]],[[-189,-483],[1,1],[0,1]],[[-187,-467],[1,1],[0,1],[1,1]],[[-185,-464],[0,1],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1]],[[-181,-459],[1,1],[1,-1]],[[-179,-459],[0,-1],[1,-1]],[[-178,-461],[1,1],[1,-1],[1,1],[1,-1]],[[-174,-461],[1,1],[0,1],[1,1],[0,1]],[[-172,-457],[1,1],[1,-1]],[[-170,-457],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-171,-451],[1,1],[0,1],[-1,1],[0,1]],[[-171,-447],[-1,1],[0,1]],[[-172,-445],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-168,-441],[1,1],[0,1],[-1,1],[0,1]],[[-168,-437],[-1,1],[0,1],[1,1],[0,1]],[[-168,-433],[-1,1],[0,1],[-1,1],[0,1]],[[-170,-429],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-166,-425],[1,1],[0,1],[1,1],[0,1],[1,1]],[[-163,-420],[1,-1]],[[-162,-421],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-157,-423],[1,1],[0,1],[1,1],[0,1],[1,1]],[[-154,-418],[1,-1]],[[-153,-419],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-154,-413],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-155,-407],[1,1],[0,1],[1,1],[0,1]],[[-153,-403],[1,1],[1,-1]],[[-151,-403],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[21,-79],[0,-1]],[[21,-80],[1,-1]],[[0,-49],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[4,-45],[1,1],[0,1],[1,1],[0,1]],[[6,-41],[1,1],[1,-1]],[[8,-41],[0,-1],[1,-1]],[[9,-43],[1,1],[1,-1],[1,1],[1,-1]],[[13,-43],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[14,-49],[0,-1],[1,-1]],[[15,-51],[1,1],[1,-1],[1,1]],[[18,-50],[1,-1]],[[19,-51],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[24,-53],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[25,-59],[0,-1],[1,-1]],[[26,-61],[0,-1],[1,-1],[0,-1],[-1,-1]],[[26,-65],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[22,-69],[0,-1],[1,-1],[0,-1],[1,-1]],[[24,-73],[0,-1],[-1,-1]],[[23,-75],[-1,1],[-1,-1]],[[21,-75],[0,-1],[-1,-1],[0,-1]],[[20,-78],[1,-1]],[[-394,-345],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[0,1],[1,1],[0,1],[-1,1]],[[-402,-338],[-1,-1],[0,-1],[-1,-1]],[[-404,-341],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-403,-347],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-421,-183],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-420,-189],[0,-1],[1,-1]],[[-419,-191],[0,-1],[1,-1]],[[-418,-193],[0,-1],[-1,-1]],[[-419,-195],[-1,1],[-1,-1]],[[-421,-195],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-423,-199],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-422,-205],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-426,-209],[0,-1]],[[-426,-210],[-1,-1],[-1,1],[-1,-1]],[[-429,-211],[0,-1],[-1,-1]],[[-430,-213],[-1,1]],[[-431,-212],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-434,-217],[-1,1],[-1,-1]],[[-436,-217],[0,-1],[-1,-1]],[[-437,-219],[0,-1],[-1,-1]],[[-438,-221],[0,-1],[1,-1],[0,-1],[1,-1]],[[-436,-225],[0,-1]],[[-436,-226],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-436,-233],[-1,1],[-1,-1]],[[-438,-233],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-440,-237],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-439,-243],[0,-1],[1,-1]],[[-438,-245],[1,1],[1,-1],[1,1],[1,-1]],[[-434,-245],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-429,-247],[0,-1],[1,-1],[0,-1],[1,-1]],[[-427,-251],[0,-1],[-1,-1]],[[-428,-253],[0,-1],[1,-1]],[[-427,-255],[1,1],[1,-1],[1,1],[1,-1]],[[-423,-255],[0,-1]],[[-423,-256],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-418,-257],[1,1],[0,1],[1,1]],[[-416,-254],[0,1],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1]],[[-412,-249],[1,1],[1,-1]],[[-410,-249],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-405,-251],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[1,1]],[[-400,-246],[0,1],[1,1],[0,1],[1,1]],[[-398,-242],[1,-1]],[[-397,-243],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-392,-245],[0,-1],[1,-1],[0,-1],[1,-1]],[[-390,-249],[0,-1],[-1,-1]],[[-391,-251],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-386,-253],[0,-1],[1,-1]],[[-385,-255],[1,1]],[[-384,-254],[1,-1],[1,1],[1,-1]],[[-242,-394],[1,-1],[1,1],[0,1]],[[-240,-393],[1,1],[0,1],[1,1],[1,-1]],[[-237,-391],[0,-1],[1,-1]],[[-236,-393],[1,1],[1,-1],[1,1],[1,-1]],[[-232,-393],[0,-1],[1,-1]],[[-231,-395],[1,1],[1,-1],[1,1],[1,-1]],[[-227,-395],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-225,-407],[-1,1],[-1,-1]],[[-227,-407],[0,-1]],[[-227,-408],[-1,-1],[0,-1],[-1,-1]],[[-229,-411],[0,-1],[1,-1],[0,-1]],[[-228,-414],[1,-1]],[[-227,-415],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-227,-423],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-231,-427],[-1,1],[-1,-1],[-1,1]],[[-234,-426],[-1,-1],[-1,1],[0,1]],[[-236,-425],[-1,1]],[[-237,-424],[-1,-1]],[[-238,-425],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-240,-429],[-1,1],[-1,-1]],[[-242,-429],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-247,-359],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1]],[[-245,-364],[-1,-1],[0,-1]],[[-246,-366],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-245,-371],[-1,1],[-1,-1],[0,-1]],[[-247,-372],[-1,-1],[0,-1],[-1,-1]],[[-249,-375],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1]],[[-247,-380],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-247,-387],[0,-1],[1,-1],[1,1]],[[-245,-388],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1]],[[-241,-392],[-1,-1],[0,-1]],[[-91,-308],[1,-1],[1,1],[1,-1],[1,1],[0,1]],[[-87,-307],[1,1],[1,-1],[1,1],[1,-1]],[[-83,-307],[1,1],[0,1],[1,1],[0,1]],[[-81,-303],[1,1],[1,-1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-80,-297],[1,1],[0,1],[1,1],[0,1]],[[-78,-293],[1,1],[1,-1]],[[-76,-293],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-72,-289],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-67,-291],[1,1],[0,1],[1,1],[0,1]],[[-65,-287],[1,1],[1,-1]],[[-63,-287],[1,1],[0,1],[-1,1],[0,1],[-1,1]],[[-64,-282],[0,1],[1,1]],[[-63,-280],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-65,-275],[1,1],[0,1],[1,1],[0,1]],[[-63,-271],[1,1],[1,-1]],[[-61,-271],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-57,-267],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-52,-269],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[1,1],[0,1],[1,1]],[[-46,-262],[0,1]],[[-46,-261],[1,1],[1,-1]],[[-44,-261],[0,-1],[1,-1],[1,1]],[[-42,-262],[1,-1],[1,1],[1,-1]],[[-39,-263],[0,-1],[1,-1],[0,-1],[1,-1]],[[-37,-267],[0,-1],[-1,-1]],[[-38,-269],[0,-1],[1,-1],[1,1]],[[-36,-270],[1,-1],[1,1]],[[-34,-270],[1,-1]],[[-33,-271],[0,-1]],[[-33,-272],[1,-1]],[[-32,-273],[1,1],[1,-1],[1,1],[1,-1]],[[-51,-380],[1,-1],[1,1],[1,-1],[1,1],[0,1]],[[-47,-379],[1,1],[1,-1],[1,1],[1,-1],[1,1]],[[-42,-378],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-39,-375],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-40,-369],[1,1],[0,1],[1,1]],[[-38,-366],[0,1]],[[-38,-365],[1,1],[1,-1],[1,1]],[[-35,-364],[0,1],[1,1],[0,1]],[[-34,-361],[1,1],[1,-1]],[[-32,-361],[0,-1],[1,-1]],[[-31,-363],[1,1],[1,-1],[1,1],[1,-1]],[[-27,-363],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-23,-359],[1,1],[0,1]],[[-22,-357],[-1,1]],[[-23,-356],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[-23,-351],[-1,1]],[[-24,-350],[0,1],[-1,1],[0,1]],[[-25,-347],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-35,-343],[1,1],[0,1]],[[-34,-341],[-1,1],[0,1],[-1,1],[0,1]],[[-36,-337],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-40,-337],[-1,1],[0,1]],[[-41,-335],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-45,-335],[-1,1],[0,1]],[[-46,-333],[1,1],[0,1],[-1,1]],[[-175,-567],[1,1],[0,1],[1,1],[0,1],[1,1]],[[-172,-562],[0,1],[-1,1],[0,1],[-1,1],[-1,-1]],[[-175,-559],[-1,1],[0,1],[-1,1],[0,1]],[[-177,-555],[-1,1],[-1,-1]],[[-179,-555],[-1,1],[-1,-1],[-1,1],[0,1]],[[-182,-553],[1,1],[0,1]],[[-181,-551],[-1,1],[0,1],[-1,1],[0,1]],[[-183,-547],[1,1],[0,1]],[[-182,-545],[-1,1],[0,1],[-1,1],[0,1]],[[46,-157],[1,1],[0,1],[1,1]],[[48,-154],[0,1]],[[48,-153],[1,1],[1,-1]],[[34,-225],[1,1]],[[35,-224],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[33,-219],[-1,1],[-1,-1]],[[30,-214],[0,1]],[[30,-213],[1,1],[1,-1]],[[32,-213],[1,1],[0,1]],[[33,-211],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1]],[[31,-203],[-1,1],[0,1]],[[30,-201],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[25,-199],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[21,-199],[-1,1],[0,1]],[[20,-197],[1,1],[0,1],[-1,1],[0,1]],[[20,-193],[-1,1],[0,1]],[[19,-191],[1,1]],[[20,-190],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[23,-187],[1,1],[0,1]],[[24,-185],[-1,1],[0,1],[-1,1],[0,1]],[[22,-181],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[21,-175],[1,1]],[[22,-174],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[25,-171],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[25,-163],[-1,1],[0,1],[-1,1],[0,1]],[[23,-159],[1,1],[0,1],[1,1],[0,1]],[[25,-155],[1,1],[1,-1]],[[27,-155],[1,1],[0,1],[1,1],[0,1],[1,1]],[[30,-150],[1,-1]],[[31,-151],[0,-1],[1,-1]],[[32,-153],[1,1],[1,-1],[1,1],[1,-1]],[[36,-153],[0,-1],[1,-1],[0,-1],[1,-1]],[[38,-157],[0,-1],[-1,-1]],[[37,-159],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[1,1]],[[44,-162],[0,1],[1,1],[1,-1],[1,1],[0,1],[-1,1],[0,1]],[[-93,-107],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-92,-113],[0,-1]],[[-92,-114],[1,-1],[1,1]],[[-90,-114],[1,-1],[1,1],[1,-1]],[[-87,-115],[0,-1],[1,-1],[1,1],[1,-1]],[[-84,-117],[1,1]],[[-83,-116],[1,-1]],[[-82,-117],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-81,-123],[0,-1],[1,-1],[1,1],[1,-1]],[[-78,-125],[1,1],[1,-1]],[[-76,-125],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-71,-127],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-70,-133],[0,-1],[1,-1]],[[-69,-135],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-69,-139],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-64,-141],[1,1],[0,1],[1,1],[1,-1],[1,1]],[[-60,-138],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-58,-149],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-96,-173],[-1,1],[0,1],[1,1]],[[-204,-209],[-1,1],[0,1],[1,1],[0,1],[-1,1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-210,-217],[0,-1],[1,-1]],[[-209,-219],[1,1],[1,-1],[1,1]],[[-66,-198],[1,-1],[0,-1],[-1,-1],[0,-1]],[[-66,-202],[1,-1],[1,1]],[[-64,-202],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1]],[[-61,-207],[0,-1],[-1,-1]],[[-62,-209],[0,-1],[1,-1]],[[-61,-211],[1,1],[1,-1],[1,1],[1,-1]],[[-57,-211],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1]],[[-54,-221],[0,-1],[-1,-1]],[[-55,-223],[-1,1]],[[-56,-222],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-59,-227],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-64,-225],[-1,1],[-1,-1]],[[-66,-225],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-72,-233],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-77,-231],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-81,-235],[-1,1]],[[-82,-234],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-85,-239],[0,-1],[1,-1],[0,-1],[1,-1]],[[-83,-243],[0,-1],[-1,-1]],[[-84,-245],[0,-1],[1,-1],[0,-1],[1,-1]],[[-82,-249],[0,-1],[-1,-1]],[[-83,-251],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-87,-255],[0,-1]],[[-87,-256],[1,-1],[0,-1],[1,-1]],[[-85,-259],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1]],[[-84,-265],[0,-1],[-1,-1]],[[-85,-267],[-1,1]],[[-86,-266],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-89,-271],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-94,-269],[-1,1],[-1,-1],[0,-1]],[[-96,-270],[-1,-1],[0,-1],[-1,-1]],[[-98,-273],[-1,1],[-1,-1]],[[-100,-273],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[3,-11],[1,1],[0,1],[1,1],[0,1]],[[-7,-7],[0,-1],[1,-1],[0,-1],[1,-1]],[[-5,-11],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[0,1],[1,1],[1,-1],[1,1],[1,-1]],[[-228,-322],[-1,-1]],[[-148,-69],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-150,-73],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1]],[[-148,-78],[-1,-1]],[[-149,-79],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[-143,-83],[1,1],[1,-1],[1,1],[1,-1]],[[-139,-83],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-138,-89],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-133,-91],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-391,-139],[0,-1],[1,-1],[0,-1]],[[-390,-142],[1,-1],[0,-1],[-1,-1]],[[-390,-145],[0,-1],[1,-1]],[[-389,-147],[1,1],[1,-1],[1,1],[1,-1],[0,-1]],[[-385,-148],[1,-1]],[[-384,-149],[1,1]],[[-383,-148],[1,-1],[1,1],[1,-1]],[[-380,-149],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-371,-147],[0,-1],[1,-1],[0,-1],[1,-1]],[[-369,-151],[0,-1],[-1,-1],[0,-1],[1,-1]],[[-369,-155],[1,1],[1,-1]],[[-194,-477],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-194,-481],[0,-1]],[[-194,-482],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-190,-477],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[23,-159],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1]],[[16,-157],[-1,1],[-1,-1],[-1,1],[0,1]],[[13,-155],[1,1],[0,1]],[[14,-153],[-1,1],[0,1],[-1,1],[0,1]],[[12,-149],[-1,1]],[[11,-148],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[7,-148],[0,1],[-1,1]],[[6,-146],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[2,-145],[1,1],[0,1]],[[3,-143],[-1,1],[0,1],[-1,1]],[[1,-140],[0,1]],[[1,-139],[1,1],[0,1],[1,1],[0,1]],[[3,-135],[1,1],[1,-1]],[[5,-135],[1,1],[0,1],[-1,1],[0,1]],[[5,-131],[-1,1],[0,1]],[[4,-129],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-200,-369],[0,-1],[-1,-1],[0,-1],[1,-1]],[[-200,-373],[1,1],[1,-1]],[[-198,-373],[0,-1]],[[-198,-374],[1,-1]],[[-197,-375],[1,1],[1,-1],[1,1]],[[-194,-374],[1,-1],[0,-1]],[[-193,-376],[1,-1]],[[-192,-377],[1,1]],[[-191,-376],[1,-1],[1,1],[1,-1]],[[-188,-377],[1,1],[0,1],[1,1]],[[-186,-374],[0,1],[1,1],[1,-1]],[[-184,-373],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-180,-369],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-210,-357],[0,-1],[1,-1],[0,-1],[1,-1]],[[-208,-361],[0,-1],[-1,-1],[0,-1],[1,-1]],[[-208,-365],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-208,-369],[0,-1],[1,-1],[1,1],[1,-1],[1,1]],[[-204,-370],[1,-1],[1,1],[0,1],[1,1],[1,-1]],[[-136,-50],[1,-1]],[[-135,-51],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-131,-47],[1,1],[0,1]],[[-130,-45],[-1,1],[0,1],[-1,1],[0,1]],[[-132,-41],[1,1],[0,1]],[[-131,-39],[-1,1],[0,1]],[[-132,-37],[-1,1],[0,1]],[[-133,-35],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-129,-31],[0,-1],[1,-1]],[[-128,-33],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1]],[[-122,-37],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-126,-41],[0,-1],[-1,-1],[0,-1],[1,-1]],[[-126,-45],[1,1],[1,-1]],[[-124,-45],[1,1],[1,-1]],[[-122,-45],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-121,-51],[0,-1],[1,-1]],[[-120,-53],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[-115,-55],[1,1]],[[-114,-54],[1,-1],[1,1],[1,-1]],[[-111,-55],[1,1]],[[-110,-54],[0,1],[1,1],[0,1],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-103,-47],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-98,-49],[1,1],[0,1],[1,1]],[[-96,-46],[0,1]],[[-96,-45],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-90,-41],[0,-1],[1,-1]],[[-89,-43],[1,1],[1,-1],[1,1],[1,-1]],[[-85,-43],[0,-1],[1,-1],[0,-1],[1,-1]],[[-83,-47],[0,-1],[-1,-1]],[[-84,-49],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1]],[[-79,-52],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-33,-160],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-28,-161],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-24,-157],[0,-1],[1,-1]],[[-23,-159],[1,1],[1,-1],[1,1],[1,-1]],[[-19,-159],[0,-1],[1,-1]],[[-18,-161],[1,1],[1,-1],[1,1],[1,-1]],[[-14,-161],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-13,-167],[0,-1],[1,-1],[0,-1],[1,-1]],[[-11,-171],[0,-1],[-1,-1]],[[-12,-173],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-16,-177],[0,-1],[1,-1],[0,-1],[1,-1]],[[-14,-181],[0,-1],[-1,-1]],[[-15,-183],[0,-1],[1,-1]],[[-14,-185],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-14,-189],[-1,1],[-1,-1]],[[-16,-189],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-18,-193],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-22,-193],[-1,1],[0,1]],[[-23,-191],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-29,-195],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-38,-157],[0,-1]],[[-38,-158],[1,-1],[0,-1],[1,-1]],[[-36,-161],[1,1],[1,-1],[1,1]],[[-22,-265],[-1,1],[-1,-1],[-1,1],[0,1]],[[-25,-263],[1,1],[0,1]],[[-24,-261],[-1,1],[0,1],[-1,1],[0,1]],[[-26,-257],[1,1],[0,1],[1,1],[0,1]],[[-24,-253],[1,1],[1,-1]],[[-22,-253],[1,1],[0,1]],[[-21,-251],[-1,1],[0,1],[-1,1],[0,1]],[[-23,-247],[1,1],[0,1]],[[-22,-245],[-1,1],[0,1],[-1,1],[0,1]],[[-24,-241],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-28,-241],[-1,1],[0,1]],[[-29,-239],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-34,-237],[1,1],[0,1],[-1,1]],[[-34,-234],[0,1],[-1,1],[0,1]],[[-35,-231],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-39,-231],[-1,1],[0,1]],[[-40,-229],[-1,1],[-1,-1],[0,-1]],[[-42,-230],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-46,-233],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-48,-237],[-1,1]],[[-49,-236],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1]],[[-54,-234],[-1,-1],[-1,1],[-1,-1]],[[-57,-235],[-1,1],[0,1]],[[-58,-233],[1,1],[0,1]],[[-57,-231],[-1,1]],[[-58,-230],[0,1],[-1,1],[0,1]],[[-244,-349],[1,1],[0,1],[-1,1],[0,1],[-1,1]],[[-245,-344],[0,1]],[[-245,-355],[-1,1],[0,1],[1,1],[0,1],[-1,1]],[[-246,-350],[0,1]],[[-246,-349],[1,1],[1,-1]],[[25,-479],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-22,-421],[0,-1]],[[-22,-422],[1,-1],[0,-1],[1,-1]],[[-20,-425],[0,-1],[-1,-1]],[[-21,-427],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-20,-433],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-24,-437],[0,-1],[1,-1],[0,-1],[1,-1]],[[-22,-441],[0,-1],[-1,-1]],[[-23,-443],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[-17,-447],[1,1],[1,-1],[1,1],[1,-1]],[[-13,-447],[0,-1],[1,-1],[0,-1],[1,-1]],[[-11,-451],[0,-1],[-1,-1]],[[-12,-453],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-7,-455],[0,-1]],[[-7,-456],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-2,-457],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[1,1],[0,1],[1,1]],[[4,-450],[0,1]],[[4,-449],[1,1]],[[5,-448],[1,-1]],[[6,-449],[0,-1],[1,-1]],[[7,-451],[1,1],[1,-1],[1,1],[1,-1]],[[11,-451],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[12,-457],[0,-1],[1,-1],[1,1],[1,-1],[1,1]],[[16,-458],[1,-1],[0,-1]],[[17,-460],[1,-1],[1,1]],[[19,-460],[1,-1],[1,1],[1,-1]],[[22,-461],[0,-1],[1,-1],[0,-1],[1,-1]],[[24,-465],[0,-1]],[[24,-466],[-1,-1],[0,-1],[1,-1],[0,-1]],[[24,-470],[1,-1],[0,-1],[-1,-1]],[[24,-473],[-1,1],[-1,-1]],[[22,-473],[0,-1],[-1,-1]],[[21,-475],[0,-1],[-1,-1]],[[20,-477],[0,-1]],[[20,-478],[1,-1],[0,-1],[1,-1]],[[22,-481],[1,1],[0,1],[1,1],[1,-1]],[[-385,-111],[1,1],[1,-1]],[[-383,-111],[1,1]],[[-382,-110],[1,-1],[0,-1],[1,-1]],[[-380,-113],[0,-1],[-1,-1]],[[-381,-115],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-376,-117],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-375,-123],[0,-1],[1,-1]],[[-374,-125],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-55,-488],[1,-1],[0,-1]],[[-53,-487],[-1,1],[-1,-1],[0,-1]],[[-126,-173],[1,1],[1,-1]],[[-127,-183],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-132,-181],[-1,1],[-1,-1]],[[-134,-181],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-136,-185],[-1,1],[-1,-1]],[[-138,-185],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-140,-189],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-144,-189],[-1,1],[0,1]],[[-145,-187],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-150,-185],[1,1],[0,1],[-1,1],[0,1]],[[-150,-181],[-1,1],[0,1]],[[-151,-179],[1,1],[0,1],[1,1],[0,1],[1,1]],[[-148,-174],[0,1],[1,1]],[[-147,-172],[0,1]],[[-132,-170],[1,-1],[1,1],[1,-1]],[[-129,-171],[1,1],[1,-1],[0,-1],[1,-1]],[[21,-175],[-1,1],[-1,-1],[-1,1]],[[18,-174],[-1,-1],[-1,1],[0,1]],[[16,-173],[1,1]],[[17,-172],[0,1],[-1,1],[0,1],[-1,1]],[[15,-168],[0,1],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[1,1]],[[20,-166],[0,1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[14,-161],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[10,-165],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[6,-165],[-1,1],[0,1]],[[5,-163],[-1,1]],[[4,-162],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[0,-161],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-1,-155],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-6,-153],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-10,-157],[-1,1]],[[-11,-156],[-1,-1]],[[-12,-157],[0,-1],[-1,-1]],[[-13,-159],[0,-1]],[[-13,-160],[-1,-1]],[[-55,-208],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[1,1],[1,-1]],[[-52,-213],[0,-1],[1,-1],[0,-1],[1,-1]],[[-50,-217],[0,-1],[-1,-1],[0,-1]],[[-51,-220],[1,-1],[1,1]],[[-49,-220],[1,-1],[1,1],[1,-1]],[[-46,-221],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-42,-217],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-38,-213],[0,-1]],[[-38,-214],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-57,-211],[1,1],[0,1]],[[-56,-209],[1,1]],[[-142,-457],[-1,1],[-1,-1]],[[-144,-457],[-1,1],[0,1],[-1,1]],[[-146,-454],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-148,-449],[1,1],[0,1],[1,1]],[[-146,-446],[0,1],[1,1],[1,-1]],[[-144,-445],[1,1],[0,1]],[[-143,-443],[-1,1],[0,1],[-1,1],[0,1]],[[-145,-439],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-146,-433],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-155,-431],[-1,1],[0,1]],[[-156,-429],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-118,-405],[-1,1],[-1,-1]],[[-120,-405],[-1,1],[-1,-1],[-1,1],[0,1]],[[-123,-403],[-1,1],[-1,-1]],[[-125,-403],[0,-1],[-1,-1],[0,-1]],[[-126,-406],[-1,-1],[-1,1],[-1,-1]],[[-129,-407],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-131,-411],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-135,-411],[-1,1],[0,1]],[[-136,-409],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-133,-399],[1,1],[1,-1],[0,-1],[1,-1]],[[-130,-401],[1,1],[1,-1],[1,1],[0,1]],[[-127,-399],[-1,1],[0,1],[-1,1],[0,1]],[[-129,-395],[-1,1],[-1,-1],[-1,1]],[[-132,-394],[-1,-1],[-1,1],[0,1]],[[-134,-393],[-1,1],[-1,-1]],[[-136,-393],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-142,-401],[0,-1],[1,-1],[0,-1],[1,-1]],[[-140,-405],[0,-1],[-1,-1],[0,-1],[1,-1]],[[-140,-409],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-140,-413],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-144,-417],[0,-1],[1,-1],[0,-1],[1,-1]],[[-142,-421],[0,-1],[-1,-1]],[[-143,-423],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-133,-427],[0,-1],[1,-1],[0,-1]],[[-132,-430],[1,-1]],[[-131,-431],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-131,-439],[-1,1],[-1,-1]],[[-133,-439],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-135,-443],[0,-1],[1,-1],[0,-1],[1,-1]],[[-133,-447],[0,-1],[-1,-1]],[[-134,-449],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-133,-455],[-1,1],[-1,-1],[0,-1]],[[-135,-456],[-1,-1],[0,-1],[-1,-1]],[[-137,-459],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-207,-284],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-199,-283],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-200,-277],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-204,-277],[-1,1],[0,1]],[[-205,-275],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-209,-279],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-233,-247],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-229,-243],[0,-1],[1,-1],[1,1]],[[-227,-244],[1,-1]],[[-226,-245],[0,-1]],[[-226,-246],[-1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-227,-255],[0,-1],[1,-1]],[[-226,-257],[1,1],[1,-1],[1,1],[1,-1]],[[-222,-257],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-221,-263],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-216,-265],[0,-1],[1,-1]],[[-215,-267],[1,1],[1,-1],[1,1],[1,-1]],[[-211,-267],[1,1]],[[-210,-266],[0,1],[1,1],[0,1]],[[-209,-263],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-203,-259],[0,-1],[1,-1],[1,1]],[[-201,-260],[1,-1],[1,1],[1,-1]],[[-193,-319],[-1,1]],[[-194,-318],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[-198,-318],[0,1]],[[-198,-317],[-1,1],[-1,-1],[-1,1]],[[-201,-316],[-1,-1],[-1,1],[0,1]],[[-203,-315],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-204,-309],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-200,-305],[1,1]],[[-199,-304],[0,1],[-1,1]],[[-200,-302],[0,1],[-1,1],[0,1]],[[-201,-299],[1,1],[0,1]],[[-200,-297],[-1,1],[0,1],[-1,1],[0,1]],[[-202,-293],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-206,-293],[-1,1],[0,1]],[[-207,-291],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-208,-285],[1,1]],[[-6,-433],[-1,1],[-1,-1],[-1,1],[0,1]],[[-9,-431],[1,1],[0,1],[1,1]],[[-7,-428],[0,1]],[[-7,-427],[-1,1],[-1,-1]],[[-9,-427],[0,-1],[-1,-1],[0,-1]],[[17,-120],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-200,-389],[-1,1]],[[-201,-388],[0,1],[-1,1],[0,1],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-205,-387],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-210,-385],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-214,-389],[-1,1],[-1,-1]],[[-216,-389],[-1,1],[-1,-1],[-1,1],[0,1]],[[-219,-387],[-1,1],[-1,-1]],[[-221,-387],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-223,-391],[-1,1],[-1,-1],[0,-1]],[[-225,-392],[-1,-1],[0,-1],[-1,-1]],[[-208,-369],[-1,1]],[[-209,-368],[-1,-1],[0,-1],[-1,-1],[0,-1]],[[-211,-372],[-1,-1]],[[-212,-373],[0,-1]],[[-212,-374],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-211,-379],[0,-1],[1,-1]],[[-210,-381],[1,1],[1,-1],[1,1],[1,-1]],[[-206,-381],[0,-1]],[[-206,-382],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-201,-383],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-191,-472],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[1,-1]],[[-156,-525],[-1,1],[0,1],[-1,1],[0,1],[-1,1]],[[-178,-493],[1,1],[0,1],[1,1],[0,1]],[[-176,-489],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[-168,-493],[1,1],[1,-1]],[[-166,-493],[1,1],[1,-1]],[[-164,-493],[1,1]],[[-163,-492],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-165,-487],[1,1],[0,1],[1,1],[0,1]],[[-163,-483],[1,1],[1,-1]],[[-161,-483],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-157,-479],[0,-1],[1,-1]],[[-156,-481],[1,1],[1,-1],[1,1],[1,-1]],[[-152,-481],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-151,-487],[0,-1]],[[-151,-488],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[-145,-491],[1,1],[1,-1],[1,1],[1,-1]],[[-141,-491],[0,-1],[1,-1]],[[-140,-493],[0,-1],[1,-1]],[[-139,-495],[0,-1]],[[-139,-496],[-1,-1]],[[-140,-497],[0,-1],[1,-1],[1,1],[1,-1]],[[-137,-499],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1]],[[-132,-501],[1,1],[1,-1]],[[-158,-529],[1,1],[0,1],[1,1],[0,1]],[[-222,-318],[0,1],[1,1],[0,1]],[[-217,-315],[0,-1],[1,-1],[0,-1],[1,-1]],[[-215,-319],[0,-1],[-1,-1]],[[-216,-321],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1]],[[-207,-324],[1,-1]],[[-206,-325],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1]],[[-205,-332],[-1,-1],[-1,1],[-1,-1]],[[-208,-333],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1]],[[-217,-327],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-225,-323],[1,1],[0,1],[1,1]],[[-223,-320],[0,1],[1,1]],[[-16,-201],[-1,1],[0,1]],[[-17,-199],[1,1],[0,1]],[[-16,-197],[-1,1],[0,1],[-1,1],[0,1]],[[-11,-171],[1,1],[1,-1]],[[-9,-171],[1,1]],[[-8,-170],[1,-1]],[[-7,-171],[1,1],[1,-1],[1,1],[1,-1]],[[-3,-171],[0,-1],[1,-1],[0,-1],[1,-1]],[[-1,-175],[0,-1],[-1,-1],[0,-1]],[[-2,-178],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-1,-183],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-5,-187],[0,-1],[1,-1],[0,-1],[1,-1]],[[-3,-191],[0,-1],[-1,-1]],[[-4,-193],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[1,-195],[0,-1]],[[1,-196],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[6,-197],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1]],[[7,-204],[1,-1]],[[8,-205],[0,-1],[1,-1],[0,-1],[-1,-1]],[[8,-209],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[4,-213],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-1,-211],[-1,1],[-1,-1]],[[-3,-211],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1]],[[-7,-216],[-1,-1],[0,-1],[-1,-1]],[[-9,-219],[-1,1],[-1,-1]],[[-11,-219],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1]],[[-17,-216],[-1,-1],[-1,1],[0,1]],[[-19,-215],[1,1],[0,1]],[[-18,-213],[-1,1],[0,1],[-1,1],[0,1]],[[-20,-209],[1,1],[0,1],[1,1],[0,1]],[[-18,-205],[-1,1],[0,1],[1,1],[1,-1],[1,1],[0,1]],[[-163,-152],[1,-1],[1,1],[1,-1]],[[-160,-153],[1,1],[0,1],[1,1],[0,1]],[[-158,-149],[1,1],[1,-1]],[[-156,-149],[1,1],[0,1],[1,1],[0,1]],[[-154,-145],[1,1],[1,-1]],[[-152,-145],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-173,-159],[1,1],[0,1],[1,1],[0,1],[1,1]],[[-170,-154],[1,-1]],[[-169,-155],[1,1]],[[-168,-154],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[-169,-147],[-1,1],[0,1],[-1,1],[0,1]],[[-171,-143],[1,1],[0,1],[1,1],[0,1]],[[-169,-139],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-163,-135],[0,-1],[1,-1],[1,1]],[[-161,-136],[1,-1],[1,1],[1,-1]],[[-158,-137],[0,-1],[1,-1]],[[-157,-139],[0,-1],[1,-1]],[[-156,-141],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-159,-143],[0,-1]],[[-159,-144],[-1,-1],[0,-1],[-1,-1],[0,-1]],[[-161,-148],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1]],[[-215,-115],[1,1],[1,-1],[1,1]],[[-212,-114],[0,1],[1,1]],[[-211,-112],[0,1],[1,1],[1,-1]],[[-209,-111],[0,-1],[1,-1]],[[-208,-113],[1,1],[1,-1],[1,1],[1,-1]],[[-204,-113],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-203,-119],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-198,-121],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-193,-123],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-192,-129],[0,-1],[1,-1],[1,1]],[[-190,-130],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[-186,-133],[1,1],[1,-1],[1,1],[1,-1]],[[-182,-133],[0,-1],[1,-1],[0,-1],[1,-1]],[[-180,-137],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-180,-145],[-1,1],[-1,-1]],[[-182,-145],[0,-1],[-1,-1],[0,-1]],[[-183,-148],[-1,-1]],[[-184,-149],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-189,-147],[-1,1]],[[-190,-146],[-1,-1]],[[-191,-147],[-1,1],[0,1],[1,1]],[[-191,-144],[0,1],[-1,1],[-1,-1]],[[-193,-143],[-1,1],[0,1],[-1,1],[0,1]],[[-195,-139],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-205,-135],[1,1],[0,1]],[[-204,-133],[-1,1],[0,1],[-1,1],[0,1]],[[-206,-129],[-1,1],[-1,-1]],[[-208,-129],[-1,1],[-1,-1]],[[-210,-129],[-1,1],[0,1]],[[-211,-127],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1]],[[-214,-130],[-1,-1],[-1,1]],[[-216,-130],[-1,-1],[0,-1]],[[-217,-132],[-1,-1],[0,-1],[-1,-1]],[[-226,-93],[0,-1],[1,-1],[0,-1],[1,-1]],[[-224,-97],[0,-1],[-1,-1]],[[-225,-99],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-220,-101],[0,-1],[1,-1]],[[-219,-103],[1,1],[1,-1],[1,1],[1,-1]],[[-215,-103],[0,-1],[1,-1],[0,-1],[1,-1]],[[-213,-107],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-216,-109],[0,-1],[-1,-1]],[[-217,-111],[0,-1]],[[-217,-112],[-1,-1]],[[-218,-113],[0,-1],[1,-1],[1,1]],[[-216,-114],[1,-1]],[[-155,-356],[0,1]],[[-155,-355],[1,1],[0,1]],[[-154,-353],[1,1],[1,-1],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-146,-349],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-141,-351],[0,-1]],[[-141,-352],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-154,-374],[0,1],[1,1],[1,-1],[1,1],[0,1],[-1,1],[0,1]],[[-318,-169],[0,-1],[-1,-1]],[[-319,-171],[-1,1],[0,1],[-1,1]],[[-321,-168],[0,1]],[[-321,-167],[1,1],[0,1],[1,1]],[[-319,-164],[0,1],[1,1],[1,-1]],[[-317,-163],[0,-1],[1,-1]],[[-316,-165],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1]],[[-309,-167],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1]],[[-241,-351],[-1,1],[-1,-1],[-1,1],[0,1]],[[-89,-243],[-1,1],[-1,-1]],[[-91,-243],[-1,1],[-1,-1],[-1,1],[0,1]],[[-94,-241],[-1,1]],[[-95,-240],[-1,-1],[0,-1],[-1,-1],[0,-1]],[[-97,-244],[-1,-1]],[[-98,-245],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-103,-243],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-108,-241],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-68,-201],[0,-1],[1,-1]],[[-67,-203],[0,-1],[1,-1]],[[-66,-205],[0,-1],[-1,-1]],[[-67,-207],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1]],[[-65,-212],[-1,-1]],[[-66,-213],[-1,1],[-1,-1]],[[-68,-213],[0,-1]],[[-68,-214],[-1,-1],[0,-1],[-1,-1]],[[-70,-217],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-74,-217],[-1,1]],[[-75,-216],[0,1]],[[-75,-215],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-81,-219],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-83,-223],[0,-1],[1,-1],[0,-1]],[[-82,-226],[1,-1],[0,-1],[-1,-1]],[[-82,-229],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-85,-231],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[-89,-232],[0,1],[1,1],[1,-1],[1,1]],[[-86,-230],[0,1],[-1,1],[0,1]],[[-87,-227],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-92,-225],[-1,1],[-1,-1]],[[-94,-225],[0,-1]],[[-94,-226],[-1,-1],[0,-1],[-1,-1]],[[-96,-229],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1]],[[-94,-234],[-1,-1]],[[-95,-235],[0,-1],[1,-1]],[[-94,-237],[1,1],[1,-1],[1,1],[1,-1],[0,-1]],[[-90,-238],[1,-1]],[[-89,-239],[1,1],[1,-1],[1,1],[1,-1]],[[-87,-255],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-92,-253],[1,1],[0,1],[-1,1],[0,1]],[[-92,-249],[1,1],[1,-1],[1,1],[1,-1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-220,-254],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-212,-261],[1,1],[0,1],[1,1],[0,1]],[[-210,-257],[1,1],[1,-1]],[[-208,-257],[1,1],[0,1],[-1,1],[0,1]],[[-208,-253],[-1,1],[0,1]],[[-209,-251],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-213,-251],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-218,-249],[-1,1],[0,1]],[[-219,-247],[1,1],[0,1]],[[-218,-245],[-1,1],[0,1],[-1,1],[0,1]],[[-220,-241],[1,1],[0,1]],[[-219,-239],[1,1]],[[-218,-238],[0,1],[1,1],[1,-1],[0,-1],[1,-1]],[[-215,-239],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1]],[[-208,-241],[1,1],[1,-1]],[[-222,-257],[1,1],[0,1],[1,1]],[[-129,-171],[0,-1],[1,-1],[0,-1],[1,-1]],[[-127,-175],[1,1]],[[-126,-174],[1,-1]],[[-125,-175],[1,1]],[[-175,-91],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-170,-93],[0,-1],[1,-1]],[[-169,-95],[1,1],[1,-1],[1,1],[1,-1]],[[-165,-95],[0,-1],[1,-1],[0,-1],[1,-1]],[[-163,-99],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1]],[[-162,-106],[-1,-1]],[[-163,-107],[-1,1]],[[-164,-106],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-167,-111],[-1,1],[-1,-1]],[[-169,-111],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1]],[[-173,-108],[-1,-1]],[[-174,-109],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-176,-113],[-1,1],[-1,-1]],[[-178,-113],[0,-1]],[[-178,-114],[-1,-1],[0,-1],[-1,-1]],[[-180,-117],[-1,1]],[[-181,-116],[-1,-1],[-1,1],[-1,-1]],[[-184,-117],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[-190,-114],[0,1]],[[-190,-113],[1,1],[0,1],[-1,1]],[[-190,-110],[0,1]],[[-190,-109],[-1,1],[0,1]],[[-191,-107],[1,1],[0,1]],[[-190,-105],[1,1],[0,1]],[[-189,-103],[1,1]],[[-188,-102],[1,-1]],[[-187,-103],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-182,-105],[1,1],[0,1],[1,1],[0,1]],[[-180,-101],[-1,1],[-1,-1]],[[-182,-101],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-187,-99],[-1,1],[0,1]],[[-188,-97],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-189,-91],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-194,-89],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-198,-93],[-1,1],[-1,-1]],[[-200,-93],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-202,-97],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-207,-95],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[-212,-94],[0,1]],[[-212,-93],[1,1],[0,1],[-1,1],[0,1]],[[-212,-89],[-1,1],[0,1]],[[-213,-87],[1,1],[0,1]],[[-212,-85],[1,1],[0,1],[1,1],[1,-1]],[[-209,-83],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-204,-85],[1,1],[0,1],[1,1],[1,-1],[0,-1]],[[-201,-84],[1,-1],[1,1]],[[-199,-84],[0,1],[-1,1],[0,1]],[[-200,-81],[1,1],[0,1],[1,1],[0,1]],[[-198,-77],[1,1],[1,-1]],[[-196,-77],[1,1]],[[-195,-76],[0,1],[1,1]],[[-194,-74],[0,1],[1,1],[1,-1]],[[-192,-73],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-187,-75],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1]],[[-185,-80],[-1,-1]],[[-186,-81],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[-180,-85],[1,1],[1,-1],[1,1],[1,-1]],[[-176,-85],[0,-1],[1,-1]],[[-175,-87],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-148,-325],[1,1],[1,-1],[1,1],[0,1],[-1,1]],[[-146,-322],[0,1],[1,1],[0,1]],[[-145,-319],[1,1],[0,1],[1,1],[1,-1]],[[-142,-317],[1,1],[0,1]],[[-141,-315],[-1,1],[0,1],[-1,1],[0,1]],[[-143,-311],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-139,-307],[1,1],[0,1]],[[-138,-305],[1,1],[0,1],[1,1],[1,-1]],[[-135,-303],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-130,-305],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1]],[[-128,-310],[-1,-1]],[[-129,-311],[0,-1],[1,-1],[1,1],[1,-1]],[[-126,-313],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-128,-317],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-132,-321],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-137,-319],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-143,-323],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-145,-327],[-1,1],[-1,-1],[-1,1]],[[-148,-326],[-1,-1]],[[-149,-327],[-1,1],[0,1],[1,1]],[[-149,-324],[1,-1]],[[-358,-169],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-357,-175],[0,-1],[1,-1]],[[-356,-177],[1,1],[1,-1],[1,1],[1,-1]],[[-352,-177],[0,-1]],[[-352,-178],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-347,-179],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-345,-191],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-348,-193],[0,-1],[-1,-1]],[[-349,-195],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-353,-195],[-1,1],[0,1]],[[-354,-193],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-357,-195],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-360,-197],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-362,-201],[0,-1],[1,-1]],[[-361,-203],[0,-1],[1,-1]],[[-360,-205],[1,1]],[[-359,-204],[0,1]],[[-359,-203],[1,1],[1,-1]],[[-357,-203],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-367,-171],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[1,1],[0,1],[1,1]],[[-360,-170],[0,1]],[[-360,-169],[1,1],[1,-1]],[[-167,-48],[1,-1],[1,1],[1,-1],[1,1],[0,1]],[[-163,-47],[1,1],[1,-1],[1,1],[1,-1]],[[-159,-47],[0,-1]],[[-159,-48],[1,-1],[0,-1],[1,-1]],[[-157,-51],[0,-1],[-1,-1]],[[-158,-53],[0,-1],[1,-1]],[[-157,-55],[1,1],[1,-1],[1,1]],[[-154,-54],[1,-1],[0,-1],[1,-1]],[[-152,-57],[1,1],[1,-1],[1,1],[1,-1]],[[-155,-71],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-143,-83],[0,-1],[-1,-1],[0,-1]],[[-144,-86],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1]],[[-150,-85],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-152,-89],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-157,-87],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-161,-91],[-1,1],[-1,-1]],[[-163,-91],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-187,-75],[1,1],[0,1],[1,1],[0,1],[1,1]],[[-184,-70],[1,-1]],[[-183,-71],[1,1],[0,1],[-1,1],[0,1]],[[-183,-67],[-1,1],[0,1]],[[-184,-65],[1,1],[0,1],[-1,1],[0,1],[-1,1]],[[-185,-60],[0,1]],[[-161,-63],[0,-1],[1,-1],[0,-1],[1,-1]],[[-159,-67],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-104,-293],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-108,-293],[-1,1],[0,1]],[[-109,-291],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1]],[[-112,-294],[-1,-1]],[[-113,-295],[-1,1],[-1,-1]],[[-115,-295],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-117,-299],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[1,1],[0,1],[-1,1]],[[-122,-294],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1]],[[-121,-287],[1,1],[1,-1]],[[-119,-287],[1,1],[0,1],[1,1]],[[-117,-284],[0,1]],[[-117,-283],[-1,1]],[[-118,-282],[-1,-1]],[[-119,-283],[-1,1],[0,1]],[[-120,-281],[-1,1],[-1,-1],[0,-1]],[[-122,-282],[-1,-1],[0,-1],[-1,-1]],[[-124,-285],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-128,-289],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-132,-289],[-1,1],[0,1]],[[-133,-287],[1,1],[0,1]],[[-132,-285],[-1,1]],[[-133,-284],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1]],[[-132,-277],[1,1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1]],[[-130,-282],[1,-1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[1,1],[0,1]],[[-124,-277],[-1,1],[0,1],[-1,1],[0,1]],[[-343,-203],[1,1],[0,1],[-1,1]],[[-343,-200],[0,1],[-1,1],[0,1]],[[-344,-197],[1,1],[0,1],[1,1],[1,-1],[1,1]],[[-340,-194],[0,1]],[[-340,-193],[-1,1],[-1,-1],[-1,1]],[[-343,-192],[-1,-1],[-1,1],[0,1]],[[-347,-179],[1,1],[0,1],[1,1],[0,1]],[[-345,-175],[1,1],[1,-1]],[[-343,-175],[1,1],[0,1],[1,1],[0,1]],[[-341,-171],[1,1],[1,-1]],[[-339,-171],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-334,-173],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-330,-169],[1,1],[0,1],[1,1],[0,1]],[[-328,-165],[1,1],[1,-1]],[[-326,-165],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-319,-171],[0,-1],[-1,-1]],[[-320,-173],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[-314,-177],[1,1],[1,-1],[1,1],[1,-1]],[[-311,-199],[-1,1],[-1,-1]],[[-313,-199],[0,-1],[-1,-1],[0,-1]],[[-314,-202],[-1,-1],[-1,1]],[[-316,-202],[0,1],[1,1],[0,1]],[[-315,-199],[-1,1],[0,1]],[[-316,-197],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-319,-199],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1]],[[-318,-205],[0,-1],[-1,-1]],[[-319,-207],[-1,1],[-1,-1]],[[-321,-207],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-323,-211],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-136,-45],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1]],[[-140,-42],[-1,-1]],[[-141,-43],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-159,-47],[1,1],[0,1],[1,1],[0,1]],[[-157,-43],[1,1],[1,-1]],[[-155,-43],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-156,-37],[1,1],[0,1]],[[-155,-35],[-1,1],[0,1],[-1,1],[0,1]],[[-157,-31],[-1,1],[-1,-1]],[[-159,-31],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-161,-35],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-52,-374],[-1,-1]],[[-47,-379],[-1,1],[0,1]],[[-48,-377],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1]],[[-214,-214],[1,-1],[0,-1]],[[-213,-216],[1,-1],[1,1],[1,-1]],[[-209,-219],[0,-1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1]],[[1,-475],[0,-1],[1,-1]],[[2,-477],[0,-1],[1,-1],[0,-1],[-1,-1]],[[2,-481],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[7,-483],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[8,-489],[0,-1]],[[8,-490],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[14,-493],[1,1],[1,-1],[1,1]],[[17,-492],[1,-1]],[[-54,-493],[1,1],[1,-1]],[[-52,-493],[1,1],[0,1],[1,1],[0,1]],[[-50,-489],[1,1],[1,-1]],[[-48,-489],[0,-1],[1,-1]],[[-47,-491],[1,1],[1,-1],[1,1],[1,-1]],[[-43,-491],[0,-1],[1,-1],[0,-1],[1,-1]],[[-41,-495],[0,-1],[-1,-1]],[[-42,-497],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[1,1]],[[-35,-500],[1,-1],[1,1],[1,-1]],[[-32,-501],[0,-1],[1,-1],[0,-1]],[[-31,-504],[1,-1],[0,-1]],[[-30,-506],[-1,-1],[-1,1],[-1,-1]],[[-33,-507],[0,-1]],[[-33,-508],[-1,-1],[0,-1],[-1,-1],[-1,1]],[[-36,-510],[-1,-1],[-1,1],[-1,-1]],[[-39,-511],[-1,1],[0,1],[1,1]],[[-39,-508],[0,1],[-1,1],[0,1]],[[-40,-505],[-1,1],[0,1],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-44,-505],[0,-1],[-1,-1]],[[-45,-507],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1]],[[-43,-512],[-1,-1]],[[-44,-513],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1]],[[-39,-516],[1,-1]],[[-38,-517],[1,1],[1,-1],[1,1],[1,-1]],[[-34,-517],[1,1],[0,1],[1,1],[0,1]],[[-32,-513],[1,1],[1,-1]],[[-30,-513],[1,1],[0,1],[1,1],[0,1]],[[-28,-509],[1,1],[1,-1]],[[-26,-509],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-21,-511],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-17,-507],[1,1],[0,1],[-1,1]],[[-17,-504],[0,1],[-1,1],[0,1]],[[-18,-501],[1,1],[0,1]],[[-17,-499],[-1,1],[0,1],[-1,1],[0,1]],[[-19,-495],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-15,-491],[1,1],[0,1],[1,1],[0,1]],[[-13,-487],[1,1]],[[-12,-486],[1,-1]],[[-11,-487],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-6,-489],[1,1],[0,1]],[[-5,-487],[1,1],[0,1],[1,1],[1,-1]],[[-2,-485],[1,1],[0,1],[-1,1],[0,1],[-1,1]],[[-3,-480],[0,1],[1,1]],[[-2,-478],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-4,-473],[1,1],[0,1]],[[-3,-471],[1,1],[0,1],[1,1],[1,-1]],[[0,-469],[0,-1],[1,-1]],[[1,-471],[0,-1],[-1,-1],[0,-1],[1,-1]],[[-169,-279],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1]],[[-169,-287],[0,-1],[-1,-1]],[[-170,-289],[0,-1],[1,-1]],[[-169,-291],[1,1],[1,-1],[1,1],[1,-1]],[[-165,-291],[0,-1],[1,-1],[0,-1],[1,-1]],[[-163,-295],[0,-1],[-1,-1]],[[-164,-297],[0,-1],[1,-1]],[[-163,-299],[0,-1]],[[-163,-300],[1,-1],[0,-1],[-1,-1]],[[-163,-303],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-167,-307],[0,-1],[1,-1]],[[-166,-309],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-166,-313],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-161,-315],[0,-1],[1,-1],[1,1],[1,-1]],[[-158,-317],[1,1],[1,-1]],[[-156,-317],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-154,-329],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-158,-333],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1]],[[-155,-343],[0,-1],[-1,-1]],[[-156,-345],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-173,-355],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-183,-351],[1,1],[0,1]],[[-182,-349],[-1,1],[0,1],[-1,1],[0,1]],[[-184,-345],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-180,-341],[1,1],[0,1]],[[-179,-339],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1]],[[-181,-331],[-1,1],[0,1]],[[-182,-329],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[0,-1]],[[-178,-326],[1,-1],[1,1]],[[-176,-326],[1,-1]],[[-175,-327],[1,1],[1,-1],[0,-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],[-1,-1]],[[-175,-335],[0,-1],[-1,-1]],[[-176,-337],[0,-1],[1,-1]],[[-175,-339],[1,1],[1,-1],[1,1],[1,-1]],[[-171,-339],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-167,-335],[1,1],[0,1]],[[-166,-333],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-169,-323],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-173,-323],[-1,1],[0,1]],[[-174,-321],[-1,1],[-1,-1],[-1,1]],[[-177,-320],[-1,-1],[-1,1],[0,1]],[[-179,-319],[1,1],[0,1],[-1,1],[0,1],[-1,1]],[[-180,-314],[0,1]],[[-172,-277],[0,-1],[1,-1],[1,1],[1,-1]],[[-280,-245],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-283,-247],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-288,-249],[-1,1]],[[-289,-248],[0,1],[1,1]],[[-288,-246],[1,-1],[1,1],[1,-1],[1,1]],[[-284,-246],[0,1],[-1,1]],[[-285,-244],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1]],[[-291,-240],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-319,-207],[0,-1],[1,-1],[1,1],[1,-1]],[[-316,-209],[1,1],[1,-1]],[[-314,-209],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-313,-215],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-308,-217],[0,-1],[1,-1]],[[-307,-219],[1,1],[1,-1],[1,1],[1,-1]],[[-303,-219],[1,1],[0,1]],[[-302,-217],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1]],[[-298,-217],[1,1],[1,-1],[1,1],[1,-1]],[[-294,-217],[0,-1],[1,-1],[0,-1],[1,-1]],[[-292,-221],[1,1],[1,-1],[0,-1],[1,-1],[0,-1]],[[-215,-292],[1,-1],[0,-1],[1,-1]],[[-230,-321],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-234,-321],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-240,-317],[1,1],[0,1]],[[-239,-315],[-1,1],[0,1],[-1,1],[0,1]],[[-241,-311],[1,1],[0,1]],[[-240,-309],[1,1],[0,1],[1,1],[1,-1]],[[-237,-307],[1,1]],[[-236,-306],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-238,-301],[1,1]],[[-237,-300],[0,1]],[[-237,-299],[-1,1],[0,1],[-1,1],[0,1]],[[-239,-295],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[1,1],[0,1]],[[-243,-291],[1,1],[1,-1],[0,-1],[1,-1],[1,1]],[[-239,-292],[0,1]],[[-239,-291],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-236,-285],[0,-1],[1,-1]],[[-235,-287],[1,1]],[[-234,-286],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-226,-289],[1,1],[0,1],[1,1],[0,1]],[[-224,-285],[1,1],[1,-1]],[[-222,-285],[0,-1]],[[-222,-286],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-217,-287],[0,-1],[1,-1]],[[-216,-289],[0,-1],[1,-1],[0,-1]],[[-173,-271],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-174,-265],[1,1],[0,1],[1,1],[0,1],[1,1]],[[-171,-260],[1,-1]],[[-170,-261],[1,1],[0,1],[1,1],[0,1]],[[-168,-257],[1,1],[1,-1]],[[-166,-257],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-161,-259],[1,1],[0,1],[1,1]],[[-159,-256],[0,1]],[[-159,-255],[1,1],[1,-1]],[[-157,-255],[1,1],[0,1]],[[-156,-253],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[-157,-247],[-1,1],[0,1],[-1,1],[0,1]],[[-98,-245],[0,-1],[1,-1],[0,-1],[1,-1]],[[-96,-249],[0,-1],[-1,-1]],[[-97,-251],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-101,-251],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-111,-251],[0,-1],[1,-1],[0,-1],[1,-1]],[[-109,-255],[0,-1],[-1,-1]],[[-110,-257],[0,-1],[1,-1],[0,-1],[1,-1]],[[-108,-261],[0,-1],[-1,-1]],[[-109,-263],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-174,-277],[-1,1],[0,1],[1,1],[1,-1],[1,1],[0,1],[-1,1],[0,1]],[[-217,-404],[0,1],[1,1],[0,1],[-1,1],[0,1]],[[-217,-399],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-213,-395],[0,-1],[1,-1]],[[-212,-397],[1,1],[1,-1],[1,1]],[[-209,-396],[1,-1]],[[-208,-397],[1,1],[0,1],[1,1],[1,-1],[0,-1]],[[-205,-396],[1,-1],[1,1],[0,1],[-1,1],[0,1]],[[-204,-393],[1,1],[0,1],[1,1]],[[-202,-390],[0,1],[1,1]],[[-200,-389],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-195,-391],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-190,-393],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1]],[[-188,-401],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-188,-405],[-1,1],[-1,-1]],[[-190,-405],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-192,-409],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-191,-415],[0,-1],[1,-1],[0,-1],[1,-1]],[[-189,-419],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-194,-425],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-199,-423],[-1,1],[-1,-1]],[[-201,-423],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-203,-427],[-1,1],[-1,-1]],[[-205,-427],[0,-1],[-1,-1]],[[-206,-429],[0,-1],[-1,-1]],[[-207,-431],[-1,1],[-1,-1],[-1,1]],[[-210,-430],[-1,-1],[-1,1]],[[-212,-430],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-216,-429],[-1,1],[0,1]],[[-217,-427],[1,1],[0,1]],[[-216,-425],[-1,1],[0,1],[-1,1],[0,1]],[[-218,-421],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-214,-417],[1,1],[0,1]],[[-213,-415],[-1,1]],[[-214,-414],[0,1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1]],[[-215,-407],[-1,1],[0,1]],[[-216,-405],[-1,1]],[[-253,-419],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-329,-427],[1,1],[0,1]],[[-328,-425],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[1,1]],[[-319,-424],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[1,1]],[[-315,-424],[0,1]],[[-315,-423],[-1,1],[0,1]],[[-316,-421],[1,1],[0,1],[1,1],[0,1]],[[-314,-417],[1,1],[1,-1],[1,1],[0,1]],[[-311,-415],[1,1],[0,1]],[[-310,-413],[1,1],[1,-1]],[[-308,-413],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-303,-415],[1,1],[0,1],[1,1],[0,1]],[[-301,-411],[1,1],[1,-1]],[[-299,-411],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-300,-405],[1,1],[0,1]],[[-299,-403],[-1,1],[0,1],[-1,1],[0,1]],[[-301,-399],[1,1],[0,1],[1,1],[0,1]],[[-299,-395],[1,1],[1,-1],[1,1]],[[-296,-394],[0,1],[1,1],[0,1]],[[-295,-391],[1,1],[1,-1]],[[-293,-391],[0,-1],[1,-1],[1,1],[1,-1]],[[-290,-393],[1,1],[1,-1]],[[-288,-393],[1,1],[0,1]],[[-287,-391],[1,1],[0,1],[1,1],[1,-1]],[[-284,-389],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-280,-385],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-275,-387],[0,-1],[1,-1],[0,-1],[1,-1]],[[-273,-391],[0,-1],[-1,-1]],[[-274,-393],[0,-1]],[[-274,-394],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[-268,-397],[1,1],[1,-1],[1,1],[1,-1]],[[-264,-397],[0,-1]],[[-264,-398],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1]],[[-261,-408],[-1,-1]],[[-262,-409],[0,-1],[1,-1],[1,1],[1,-1]],[[-259,-411],[1,1],[1,-1]],[[-257,-411],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[1,1],[1,-1]],[[-250,-285],[0,-1],[1,-1]],[[-249,-287],[0,-1],[1,-1]],[[-248,-289],[0,-1],[-1,-1]],[[-249,-291],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-248,-297],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-252,-301],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-256,-301],[-1,1],[0,1]],[[-257,-299],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-258,-293],[1,1],[0,1],[1,1],[0,1]],[[-256,-289],[-1,1],[-1,-1],[-1,1],[0,1]],[[-259,-287],[-1,1],[-1,-1],[0,-1]],[[-261,-288],[-1,-1],[0,-1],[-1,-1]],[[-263,-291],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-267,-291],[-1,1],[0,1]],[[-268,-289],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-273,-287],[1,1],[0,1]],[[-272,-285],[-1,1],[0,1],[-1,1],[0,1]],[[-223,-279],[-1,1],[-1,-1]],[[-225,-279],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-231,-283],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[0,1],[1,1]],[[-234,-278],[1,-1],[1,1],[0,1]],[[-232,-277],[-1,1]],[[-233,-276],[0,1]],[[-233,-275],[-1,1],[-1,-1]],[[-235,-275],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-237,-279],[-1,1],[-1,-1]],[[-239,-279],[-1,1],[-1,-1],[-1,1],[0,1]],[[-242,-277],[-1,1],[-1,-1]],[[-244,-277],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-248,-281],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[23,-127],[0,-1],[-1,-1]],[[22,-129],[-1,1],[0,1]],[[21,-127],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[18,-129],[-1,1],[-1,-1]],[[16,-129],[0,-1]],[[16,-130],[-1,-1],[0,-1],[-1,-1]],[[17,-123],[0,-1],[1,-1]],[[18,-125],[1,1],[1,-1],[1,1],[1,-1]],[[22,-125],[0,-1]],[[22,-126],[1,-1]],[[-81,-599],[1,1],[0,1],[1,1],[0,1]],[[-79,-595],[1,1],[1,-1]],[[-77,-595],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-78,-589],[1,1],[0,1]],[[-77,-587],[-1,1],[0,1],[-1,1],[0,1]],[[-79,-583],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[-84,-582],[-1,-1],[-1,1],[-1,-1]],[[-87,-583],[-1,1],[0,1],[-1,1],[0,1]],[[-89,-579],[1,1],[0,1]],[[-88,-577],[-1,1],[0,1],[-1,1],[0,1]],[[-90,-573],[1,1],[0,1],[1,1],[0,1]],[[-88,-569],[1,1],[1,-1]],[[-86,-569],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-82,-565],[0,-1],[1,-1],[1,1],[1,-1]],[[-79,-567],[1,1],[1,-1]],[[-65,-575],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-57,-575],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1]],[[-392,-329],[1,1],[0,1],[1,1],[0,1],[1,1]],[[-389,-324],[1,-1]],[[-396,-333],[1,1],[0,1],[1,1],[0,1]],[[-394,-329],[1,1],[1,-1]],[[-42,-450],[1,-1],[1,1],[0,1],[-1,1],[0,1]],[[-41,-447],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-46,-445],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-49,-447],[0,-1],[-1,-1]],[[-50,-449],[0,-1],[1,-1],[0,-1],[1,-1]],[[-48,-453],[0,-1],[-1,-1]],[[-49,-455],[0,-1],[1,-1]],[[-48,-457],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[1,1]],[[-42,-458],[1,-1],[1,1],[1,-1]],[[-39,-459],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1]],[[-38,-466],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-37,-471],[-1,1],[-1,-1]],[[-39,-471],[0,-1],[-1,-1],[0,-1]],[[-40,-474],[-1,-1]],[[-41,-475],[0,-1],[1,-1],[0,-1]],[[-40,-478],[1,-1]],[[-39,-479],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-39,-487],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-24,-437],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-29,-435],[-1,1],[-1,-1],[0,-1]],[[-31,-436],[-1,-1]],[[-32,-437],[0,-1],[-1,-1]],[[-33,-439],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-37,-443],[0,-1]],[[-37,-444],[1,-1],[0,-1],[1,-1],[0,-1]],[[-35,-448],[-1,-1],[-1,1],[-1,-1],[0,-1]],[[-38,-450],[-1,-1],[0,-1],[-1,-1]],[[-40,-453],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-45,-451],[1,1]],[[-44,-450],[0,1],[1,1],[1,-1],[0,-1]],[[44,-162],[1,-1],[1,1],[1,-1]],[[47,-163],[1,1],[0,1],[1,1],[0,1]],[[49,-159],[-1,1],[0,1],[1,1],[0,1],[-1,1]],[[-184,-210],[0,1],[1,1],[0,1]],[[-183,-207],[1,1],[1,-1],[1,1],[1,-1]],[[-179,-207],[0,-1]],[[-179,-208],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-177,-219],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-202,-209],[0,-1],[1,-1]],[[-201,-211],[1,1],[1,-1],[1,1],[1,-1]],[[-197,-211],[0,-1],[1,-1]],[[-196,-213],[1,1]],[[-195,-212],[1,-1],[1,1],[1,-1]],[[-192,-213],[1,1]],[[-191,-212],[0,1],[1,1],[0,1]],[[-190,-209],[1,1],[1,-1],[0,-1],[1,-1]],[[-187,-211],[1,1],[1,-1],[1,1]],[[-100,-413],[-1,1],[-1,-1],[-1,1],[0,1]],[[-103,-411],[-1,1],[-1,-1]],[[-105,-411],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-127,-379],[1,1],[0,1],[1,1],[0,1]],[[-125,-375],[1,1],[1,-1]],[[-123,-375],[1,1],[0,1]],[[-122,-373],[-1,1],[0,1],[-1,1],[0,1]],[[-124,-369],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-125,-363],[1,1],[0,1],[1,1],[0,1]],[[-123,-359],[1,1],[1,-1]],[[-121,-359],[1,1],[0,1]],[[-120,-357],[1,1],[0,1],[1,1],[1,-1]],[[-117,-355],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-112,-357],[0,-1],[1,-1],[0,-1],[1,-1]],[[-110,-361],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-115,-367],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-120,-365],[0,-1],[1,-1],[0,-1],[1,-1]],[[-118,-369],[0,-1],[-1,-1]],[[-119,-371],[0,-1],[1,-1]],[[-118,-373],[1,1],[1,-1],[1,1],[1,-1]],[[-114,-373],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-110,-369],[1,1],[0,1],[1,1],[0,1],[1,1]],[[-107,-364],[1,-1]],[[-106,-365],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-81,-403],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-85,-403],[-1,1],[0,1]],[[-86,-401],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-90,-405],[-1,1],[-1,-1]],[[-92,-405],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-94,-409],[0,-1],[1,-1],[0,-1],[1,-1]],[[-92,-413],[0,-1],[-1,-1]],[[-93,-415],[-1,1],[-1,-1]],[[-95,-415],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1]],[[-43,-104],[1,-1]],[[-42,-105],[0,-1],[1,-1]],[[-41,-107],[1,1],[1,-1],[1,1],[1,-1]],[[-37,-107],[0,-1],[1,-1]],[[-36,-109],[1,1],[1,-1],[1,1],[1,-1]],[[-32,-109],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1]],[[-26,-101],[1,1],[1,-1]],[[-24,-101],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-19,-103],[1,1],[0,1],[1,1]],[[-17,-100],[0,1]],[[-17,-99],[1,1],[1,-1]],[[-15,-99],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-16,-93],[1,1],[0,1]],[[-15,-91],[-1,1],[0,1],[-1,1],[0,1]],[[18,-101],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[13,-99],[1,1]],[[14,-98],[1,-1],[1,1],[1,-1],[1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1]],[[17,-91],[-1,1],[0,1]],[[16,-89],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[11,-88],[0,1]],[[11,-87],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[7,-91],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[2,-90],[0,1]],[[2,-89],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1]],[[-5,-96],[-1,-1]],[[-6,-97],[0,-1],[1,-1],[0,-1],[1,-1]],[[-4,-101],[0,-1],[-1,-1]],[[-5,-103],[0,-1],[1,-1],[0,-1],[1,-1]],[[-3,-107],[0,-1],[-1,-1]],[[-4,-109],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-7,-111],[0,-1],[-1,-1]],[[-52,-101],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1]],[[-104,-598],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[0,-1]],[[-108,-598],[-1,-1]],[[-109,-599],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1]],[[-116,-597],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-127,-575],[1,1],[0,1],[1,1],[0,1]],[[-125,-571],[1,1],[1,-1]],[[-123,-571],[1,1],[0,1],[1,1]],[[-121,-568],[0,1]],[[-121,-567],[1,1],[1,-1]],[[-119,-567],[0,-1],[1,-1],[1,1]],[[-117,-568],[1,-1],[1,1],[1,-1]],[[-114,-569],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-110,-565],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-111,-559],[1,1]],[[-110,-558],[0,1]],[[-110,-557],[-1,1],[0,1],[-1,1],[0,1]],[[-112,-553],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-108,-549],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-109,-543],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-110,-537],[1,1]],[[-109,-536],[0,1],[1,1],[0,1]],[[-108,-533],[1,1],[1,-1],[1,1],[0,1]],[[-105,-531],[1,1],[0,1],[1,1],[1,-1]],[[-102,-529],[1,1],[0,1]],[[-101,-527],[-1,1],[0,1],[-1,1],[0,1]],[[-103,-523],[1,1],[0,1],[1,1]],[[-101,-520],[0,1],[1,1],[1,-1]],[[-99,-519],[0,-1],[-1,-1]],[[-100,-521],[0,-1],[-1,-1],[0,-1],[1,-1],[1,1],[1,-1]],[[-98,-525],[1,1],[0,1],[1,1],[0,1]],[[-96,-521],[1,1],[1,-1]],[[-87,-583],[0,-1],[-1,-1]],[[-88,-585],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-92,-589],[-1,1]],[[-93,-588],[-1,-1],[-1,1]],[[-95,-588],[-1,-1]],[[-96,-589],[-1,1],[0,1]],[[-97,-587],[-1,1],[-1,-1]],[[-99,-587],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1]],[[-103,-592],[-1,-1],[0,-1],[-1,-1]],[[-105,-595],[0,-1],[1,-1],[0,-1]],[[-89,-271],[0,-1],[1,-1],[0,-1]],[[-88,-274],[1,-1]],[[-87,-275],[0,-1],[-1,-1]],[[-88,-277],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-83,-279],[0,-1]],[[-83,-280],[1,-1],[1,1],[1,-1]],[[-80,-281],[1,1],[1,-1]],[[-78,-281],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1]],[[-73,-279],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-317,-344],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[1,1],[1,-1]],[[-314,-349],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-313,-355],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-319,-359],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-304,-325],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-303,-331],[0,-1],[1,-1],[0,-1],[1,-1]],[[-301,-335],[0,-1],[-1,-1]],[[-302,-337],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-305,-339],[0,-1],[-1,-1]],[[-306,-341],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-311,-339],[-1,1],[-1,-1]],[[-313,-339],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-315,-343],[-1,1],[-1,-1]],[[-317,-343],[0,-1]],[[-28,-77],[-1,1]],[[-29,-76],[-1,-1],[-1,1],[-1,-1]],[[-32,-77],[-1,1],[0,1]],[[-33,-75],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-38,-73],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-39,-67],[1,1],[0,1]],[[-38,-65],[1,1]],[[-37,-64],[0,1],[1,1]],[[-36,-62],[1,-1]],[[-35,-63],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[-35,-55],[-1,1],[0,1],[-1,1],[0,1]],[[-37,-51],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-47,-47],[-1,1],[-1,-1]],[[-49,-47],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-51,-51],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1]],[[-51,-56],[-1,-1],[-1,1],[-1,-1]],[[-54,-57],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-59,-55],[-1,1],[0,1]],[[-60,-53],[1,1],[0,1]],[[-59,-51],[-1,1],[0,1],[-1,1],[0,1]],[[-15,-71],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-19,-71],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-115,-496],[1,-1],[1,1],[1,-1]],[[-112,-497],[0,-1],[1,-1],[0,-1],[1,-1]],[[-110,-501],[0,-1],[-1,-1]],[[-111,-503],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-115,-507],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-119,-511],[0,-1],[1,-1]],[[-118,-513],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1]],[[-117,-520],[1,-1]],[[-116,-521],[0,-1],[-1,-1]],[[-117,-523],[-1,1],[-1,-1]],[[-119,-523],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-121,-527],[0,-1]],[[-121,-528],[1,-1],[0,-1],[1,-1]],[[-119,-531],[0,-1],[-1,-1]],[[-120,-533],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-172,-562],[1,-1]],[[-171,-563],[0,-1],[1,-1],[1,1],[1,-1]],[[-168,-565],[1,1]],[[-167,-564],[0,1]],[[-167,-563],[1,1],[0,1]],[[-166,-561],[1,1],[1,-1],[1,1],[1,-1]],[[-162,-561],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-158,-557],[1,1],[0,1],[1,1],[0,1]],[[-156,-553],[1,1],[1,-1]],[[-154,-553],[0,-1],[1,-1]],[[-153,-555],[1,1],[1,-1],[1,1],[1,-1]],[[-149,-555],[1,1],[0,1]],[[-148,-553],[1,1],[0,1],[1,1],[1,-1]],[[-145,-551],[1,1],[0,1]],[[-144,-549],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[-145,-543],[-1,1],[0,1],[-1,1],[0,1]],[[-117,-495],[0,-1],[1,-1]],[[-116,-497],[1,1]],[[-42,-230],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1]],[[-41,-235],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-43,-239],[0,-1],[1,-1],[0,-1]],[[-42,-242],[1,-1]],[[-41,-243],[0,-1],[-1,-1]],[[-42,-245],[0,-1],[1,-1]],[[-41,-247],[1,1],[1,-1],[1,1],[1,-1]],[[-37,-247],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1]],[[-35,-255],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-35,-259],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-65,-275],[-1,1],[-1,-1],[-1,1]],[[-68,-274],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-75,-271],[1,1],[0,1],[-1,1]],[[-75,-268],[0,1],[-1,1],[0,1]],[[-76,-265],[1,1],[0,1],[1,1],[0,1],[1,1]],[[-73,-260],[1,-1]],[[-72,-261],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-73,-255],[-1,1],[-1,-1],[0,-1]],[[-75,-256],[-1,-1]],[[-76,-257],[-1,1],[0,1],[-1,1],[0,1]],[[-78,-253],[-1,1],[-1,-1],[-1,1]],[[-81,-252],[-1,-1],[-1,1],[0,1]],[[-206,-513],[-1,1],[0,1],[-1,1],[0,1]],[[-208,-509],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-216,-509],[0,-1]],[[-216,-510],[-1,-1]],[[-217,-511],[-1,1]],[[-218,-510],[-1,-1],[-1,1],[-1,-1]],[[-221,-511],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[-227,-508],[0,1]],[[-227,-507],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-203,-511],[-1,1]],[[-204,-510],[-1,-1],[0,-1]],[[-205,-512],[-1,-1]],[[-270,-389],[0,-1]],[[-270,-390],[1,-1],[1,1],[1,-1],[1,1]],[[-266,-390],[1,-1],[1,1],[0,1],[1,1],[0,1]],[[-263,-387],[1,1],[1,-1]],[[-261,-387],[1,1],[0,1],[-1,1],[0,1],[-1,1]],[[-262,-382],[0,1]],[[-262,-381],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-258,-377],[1,1]],[[-257,-376],[0,1]],[[-257,-375],[-1,1]],[[-258,-374],[0,1],[-1,1],[0,1]],[[-259,-371],[1,1],[0,1]],[[-258,-369],[-1,1],[0,1],[-1,1]],[[-260,-366],[0,1]],[[-260,-365],[-1,1]],[[-261,-364],[-1,-1],[-1,1],[-1,-1]],[[-264,-365],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-270,-361],[1,1],[0,1]],[[-269,-359],[-1,1],[0,1],[-1,1],[0,1]],[[-271,-355],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[-276,-354],[0,1]],[[-276,-353],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-284,-361],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-289,-359],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-294,-357],[1,1]],[[-293,-356],[0,1]],[[-293,-355],[-1,1]],[[-294,-354],[0,1],[-1,1],[0,1]],[[-295,-351],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-300,-349],[-1,1],[-1,-1],[0,-1]],[[-302,-350],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-306,-353],[-1,1],[0,1],[-1,1]],[[-308,-350],[0,1],[1,1],[0,1]],[[-307,-347],[1,1],[1,-1],[1,1],[0,1],[-1,1],[0,1],[-1,1]],[[-306,-342],[0,1]],[[-247,-387],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-250,-389],[0,-1],[-1,-1]],[[-251,-391],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-259,-391],[0,-1],[-1,-1]],[[-260,-393],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-275,-387],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-271,-383],[0,-1],[1,-1]],[[-270,-385],[0,-1],[-1,-1],[0,-1],[1,-1]],[[-156,-170],[-1,-1],[0,-1],[1,-1],[0,-1]],[[-156,-174],[1,-1],[0,-1],[-1,-1]],[[-156,-177],[0,-1],[1,-1]],[[-155,-179],[1,1],[1,-1],[1,1],[1,-1]],[[-115,-199],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-119,-203],[-1,1],[-1,-1],[-1,1]],[[-122,-202],[0,1],[1,1],[1,-1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-125,-195],[-1,1],[-1,-1]],[[-127,-195],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-129,-199],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[-134,-198],[0,1]],[[-134,-197],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-137,-199],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-140,-201],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-142,-205],[-1,1],[-1,-1]],[[-144,-205],[-1,1],[-1,-1]],[[-146,-205],[-1,1],[0,1]],[[-147,-203],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-152,-201],[1,1],[0,1]],[[-151,-199],[-1,1]],[[-152,-198],[0,1],[-1,1],[0,1]],[[-153,-195],[-1,1],[-1,-1],[-1,1]],[[-156,-194],[-1,-1],[-1,1]],[[-158,-194],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-163,-191],[1,1],[0,1],[-1,1]],[[-163,-188],[0,1],[-1,1],[0,1]],[[-164,-185],[1,1],[0,1]],[[-163,-183],[1,1],[0,1],[1,1],[1,-1]],[[-160,-181],[1,1],[0,1]],[[-159,-179],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[-160,-173],[-1,1]],[[-161,-172],[0,1],[-1,1],[0,1]],[[-148,-169],[-1,1],[-1,-1]],[[-150,-169],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1]],[[-164,-554],[1,-1],[1,1],[0,1],[1,1],[0,1]],[[-161,-551],[1,1],[1,-1],[1,1]],[[-158,-550],[0,1]],[[-158,-549],[-1,1],[0,1],[-1,1],[0,1]],[[-160,-545],[-1,1],[-1,-1],[-1,1]],[[-163,-544],[-1,-1]],[[-164,-545],[-1,1],[0,1]],[[-165,-543],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-169,-547],[-1,1]],[[-170,-546],[-1,-1],[0,-1],[-1,-1]],[[-172,-549],[0,-1],[-1,-1]],[[-173,-551],[0,-1],[1,-1],[0,-1]],[[-172,-554],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1]],[[-170,-561],[0,-1],[-1,-1]],[[-166,-561],[-1,1],[0,1],[1,1],[0,1]],[[-166,-557],[1,1],[0,1]],[[-165,-555],[1,1]],[[-421,-316],[1,-1],[1,1],[1,-1],[1,1]],[[-417,-316],[0,1]],[[-417,-315],[1,1],[1,-1],[1,1]],[[-414,-314],[1,-1]],[[-413,-315],[1,1]],[[-412,-314],[0,1],[1,1],[0,1],[1,1],[1,-1],[1,1]],[[-408,-310],[0,1],[1,1],[0,1]],[[-407,-307],[1,1]],[[-406,-306],[1,-1]],[[-405,-307],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-399,-315],[-1,1]],[[-400,-314],[-1,-1]],[[-401,-315],[-1,1],[-1,-1],[-1,1],[0,1]],[[-404,-313],[-1,1],[-1,-1]],[[-406,-313],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-408,-317],[0,-1],[1,-1]],[[-407,-319],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-415,-331],[-1,1]],[[-416,-330],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1]],[[-421,-328],[-1,-1]],[[-422,-329],[-1,1],[-1,-1],[-1,1],[0,1]],[[-425,-327],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-426,-321],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-422,-317],[1,1]],[[-42,-189],[1,1],[0,1],[1,1],[0,1]],[[-40,-185],[1,1],[1,-1]],[[-38,-185],[1,1],[0,1],[-1,1],[0,1]],[[-38,-181],[-1,1],[0,1]],[[-39,-179],[1,1],[0,1],[-1,1],[0,1]],[[-39,-175],[-1,1],[0,1]],[[-40,-173],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1]],[[-35,-171],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[-30,-173],[1,1],[1,-1],[1,1],[1,-1]],[[-26,-173],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-27,-167],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-32,-165],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[0,1],[-1,1],[0,1]],[[-130,-221],[0,-1],[1,-1]],[[-129,-223],[0,-1]],[[-129,-224],[1,-1],[0,-1],[-1,-1]],[[-129,-227],[-1,1],[-1,-1],[0,-1]],[[-131,-228],[-1,-1],[0,-1],[-1,-1]],[[-170,-233],[1,1]],[[-169,-232],[0,1],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-161,-231],[1,1],[0,1]],[[-160,-229],[-1,1],[0,1]],[[-161,-227],[1,1],[1,-1]],[[-159,-227],[1,1],[1,-1]],[[-157,-227],[1,1],[0,1],[1,1]],[[-155,-224],[0,1],[1,1]],[[-154,-222],[1,-1]],[[-153,-223],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-149,-219],[0,-1],[1,-1],[1,1]],[[-147,-220],[1,-1],[1,1]],[[-145,-220],[1,-1]],[[-144,-221],[1,1],[0,1],[1,1],[0,1]],[[-142,-217],[1,1],[1,-1]],[[-140,-217],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-135,-219],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1]],[[-33,-128],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-38,-129],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-46,-129],[0,-1],[-1,-1]],[[-47,-131],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-51,-131],[-1,1],[0,1]],[[-52,-129],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-57,-127],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-58,-121],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-63,-119],[-1,1],[-1,-1]],[[-65,-119],[0,-1],[-1,-1],[0,-1]],[[-66,-122],[-1,-1]],[[-67,-123],[-1,1],[-1,-1]],[[-69,-123],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-91,-91],[1,1],[0,1],[1,1],[0,1]],[[-89,-87],[1,1],[1,-1]],[[-87,-87],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-83,-83],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-78,-85],[0,-1],[1,-1],[0,-1]],[[-77,-88],[1,-1]],[[-76,-89],[0,-1],[-1,-1]],[[-77,-91],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-72,-93],[0,-1],[1,-1]],[[-71,-95],[1,1],[1,-1]],[[-69,-95],[1,1],[1,-1]],[[-67,-95],[0,-1],[1,-1],[0,-1],[1,-1]],[[-65,-99],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1]],[[-68,-102],[-1,-1],[0,-1]],[[-69,-104],[-1,-1],[-1,1]],[[-71,-104],[0,1],[1,1],[0,1],[-1,1],[0,1]],[[-71,-99],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-76,-97],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-80,-101],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-79,-107],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-74,-109],[0,-1],[1,-1],[1,1],[1,-1]],[[-71,-111],[1,1],[1,-1]],[[-69,-111],[1,1]],[[-68,-110],[0,1],[1,1],[0,1]],[[-67,-107],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-61,-103],[0,-1],[1,-1]],[[-60,-105],[1,1],[1,-1],[1,1],[1,-1]],[[-408,-177],[0,-1],[1,-1],[0,-1]],[[-407,-180],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-416,-185],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-415,-191],[0,-1]],[[-415,-192],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-410,-193],[0,-1],[1,-1]],[[-409,-195],[0,-1]],[[-409,-196],[1,-1],[0,-1],[-1,-1]],[[-409,-199],[0,-1],[1,-1]],[[-408,-201],[1,1],[1,-1],[1,1],[1,-1]],[[-404,-201],[0,-1],[1,-1]],[[-403,-203],[1,1],[1,-1],[1,1],[1,-1]],[[-399,-203],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-395,-199],[1,1],[0,1],[1,1],[0,1]],[[-393,-195],[1,1],[1,-1]],[[-391,-195],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-430,-213],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-425,-215],[1,1],[0,1],[1,1],[0,1]],[[-423,-211],[-1,1],[-1,-1],[-1,1]],[[-42,-385],[0,-1],[1,-1],[0,-1],[1,-1]],[[-40,-389],[0,-1]],[[-40,-390],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-40,-397],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-43,-399],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-46,-389],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-51,-387],[-1,1],[-1,-1],[0,-1]],[[-53,-388],[-1,-1],[0,-1],[-1,-1]],[[-55,-391],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-59,-391],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[-65,-388],[0,1]],[[-65,-387],[1,1]],[[-64,-386],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-66,-381],[-1,1],[-1,-1]],[[-68,-381],[-1,1],[-1,-1],[-1,1],[0,1]],[[-71,-379],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-75,-383],[-1,1],[-1,-1]],[[-77,-383],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-95,-347],[0,-1],[1,-1],[1,1],[1,-1]],[[-111,0],[1,-1],[0,-1],[1,-1]],[[-109,-3],[0,-1],[-1,-1]],[[-110,-5],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-113,-7],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-118,-13],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-123,-11],[-1,1],[-1,-1],[0,-1]],[[-125,-12],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-129,-15],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-131,-19],[-1,1],[-1,-1],[-1,1]],[[-134,-18],[-1,-1],[-1,1],[0,1]],[[-136,-17],[-1,1],[-1,-1],[-1,1]],[[-139,-16],[-1,-1]],[[-140,-17],[-1,1],[0,1]],[[-141,-15],[1,1],[0,1]],[[-140,-13],[1,1],[1,-1],[1,1]],[[-137,-12],[1,-1]],[[-136,-13],[1,1],[1,-1],[1,1],[1,-1]],[[-132,-13],[1,1],[0,1],[1,1]],[[-130,-10],[0,1],[1,1],[1,-1],[1,1],[0,1],[-1,1],[0,1]],[[-128,-5],[-1,1],[0,1]],[[-129,-3],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-125,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-121,5],[0,-1],[1,-1],[1,1],[1,-1]],[[-118,3],[1,1]],[[-117,4],[1,-1]],[[-116,3],[0,-1],[1,-1],[0,-1],[1,-1]],[[-114,-1],[1,1],[1,-1],[1,1]],[[-108,-197],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-95,-179],[-1,1],[-1,-1]],[[-97,-179],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-101,-183],[0,-1],[-1,-1],[0,-1]],[[-102,-186],[-1,-1]],[[-103,-187],[0,-1],[1,-1],[0,-1]],[[-102,-190],[1,-1],[0,-1],[-1,-1]],[[-102,-193],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-315,-316],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-367,-395],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-368,-389],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[1,1]],[[-362,-390],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-359,-387],[1,1],[0,1]],[[-358,-385],[-1,1],[0,1],[-1,1],[0,1]],[[-360,-381],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-356,-377],[1,1],[0,1]],[[-355,-375],[-1,1],[0,1],[-1,1],[0,1]],[[-357,-371],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-366,-98],[0,1],[1,1],[0,1]],[[-376,-117],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-372,-113],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-368,-109],[1,1],[0,1]],[[-367,-107],[-1,1],[0,1],[-1,1],[0,1]],[[-369,-103],[1,1],[0,1],[1,1],[0,1]],[[-367,-99],[1,1]],[[-204,-565],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-207,-567],[-1,1],[0,1]],[[-208,-565],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1]],[[-211,-568],[-1,-1]],[[-221,-543],[1,1],[0,1],[1,1]],[[-219,-540],[0,1]],[[-219,-539],[1,1],[1,-1],[1,1],[0,1],[1,1]],[[-215,-536],[0,1],[1,1],[1,-1]],[[-213,-535],[0,-1],[1,-1]],[[-212,-537],[1,1],[1,-1],[1,1],[1,-1]],[[-208,-537],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-207,-543],[0,-1]],[[-207,-544],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-202,-545],[0,-1],[1,-1]],[[-201,-547],[1,1],[1,-1],[1,1],[1,-1]],[[-197,-547],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-196,-553],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1]],[[-201,-556],[-1,-1]],[[-202,-557],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-204,-561],[0,-1],[1,-1]],[[-203,-563],[0,-1],[-1,-1]],[[-31,-396],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-35,-399],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-33,-411],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-29,-407],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-30,-401],[1,1],[0,1]],[[-29,-399],[-1,1],[0,1],[-1,1]],[[-140,-13],[-1,1]],[[-141,-12],[0,1],[-1,1],[0,1]],[[-142,-9],[1,1],[0,1],[1,1]],[[-140,-6],[0,1]],[[-140,-5],[1,1],[1,-1]],[[-138,-5],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-139,1],[1,1]],[[-138,2],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-140,7],[1,1],[0,1],[1,1],[0,1]],[[-138,11],[1,1],[1,-1],[1,1],[0,1],[1,1]],[[-134,14],[0,1],[1,1],[1,-1]],[[-132,15],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[1,1]],[[-128,26],[1,-1],[0,-1],[1,-1]],[[-126,23],[1,1],[1,-1]],[[-114,19],[0,-1],[1,-1],[0,-1]],[[-113,16],[1,-1]],[[-112,15],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1]],[[-111,8],[-1,-1]],[[-112,7],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-165,-387],[1,1],[1,-1]],[[-170,-429],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-174,-429],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-180,-425],[1,1]],[[-179,-424],[0,1]],[[-179,-423],[-1,1],[0,1],[-1,1],[0,1]],[[-181,-419],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-185,-419],[0,-1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1]],[[-190,-393],[1,1],[0,1],[1,1]],[[-188,-390],[0,1],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-182,-385],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-177,-387],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-173,-383],[0,-1],[1,-1]],[[-172,-385],[1,1],[1,-1],[1,1],[1,-1]],[[-168,-385],[0,-1],[1,-1],[1,1],[1,-1]],[[-359,-288],[1,-1],[0,-1]],[[-358,-290],[-1,-1],[0,-1],[1,-1],[1,1],[1,-1]],[[-356,-293],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1]],[[-354,-301],[1,1],[1,-1],[1,1],[1,-1]],[[-350,-301],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-349,-307],[0,-1],[1,-1]],[[-348,-309],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[-343,-311],[1,1],[1,-1],[1,1],[1,-1]],[[-339,-311],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1]],[[-333,-303],[1,1],[1,-1]],[[-331,-303],[0,-1],[1,-1]],[[-330,-305],[1,1],[1,-1],[1,1]],[[-327,-304],[1,-1]],[[-326,-305],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-322,-301],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-323,-295],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-324,-289],[1,1],[0,1],[1,1],[0,1]],[[-322,-285],[1,1],[1,-1]],[[-320,-285],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-316,-281],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-311,-283],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[1,1],[0,1],[1,1]],[[-305,-276],[0,1]],[[-305,-275],[1,1],[1,-1]],[[-303,-275],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-298,-277],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-297,-283],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-285,-295],[0,-1],[1,-1]],[[-284,-297],[0,-1],[-1,-1]],[[-285,-299],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-289,-303],[0,-1],[1,-1]],[[-288,-305],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-288,-309],[0,-1],[1,-1],[1,1],[1,-1]],[[-361,-291],[1,1],[0,1],[1,1]],[[-72,-322],[1,-1]],[[-71,-323],[0,-1],[1,-1],[0,-1],[1,-1]],[[-69,-327],[0,-1],[-1,-1],[0,-1],[1,-1]],[[-69,-331],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-69,-335],[-1,1],[-1,-1]],[[-71,-335],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-73,-339],[0,-1],[1,-1],[0,-1],[1,-1]],[[-71,-343],[0,-1],[-1,-1]],[[-72,-345],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-67,-347],[0,-1],[1,-1],[1,1],[1,-1]],[[-64,-349],[1,1],[1,-1]],[[-69,-307],[0,-1],[1,-1],[0,-1],[1,-1]],[[-67,-311],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-70,-313],[0,-1]],[[-70,-314],[-1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1]],[[-144,-21],[-1,1],[0,1]],[[-145,-19],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-131,-19],[0,-1],[1,-1]],[[-130,-21],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-130,-25],[0,-1]],[[-130,-26],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-149,-23],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[0,1]],[[-254,-345],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-249,-347],[1,1]],[[-248,-346],[0,1],[1,1],[1,-1],[1,1]],[[-309,-251],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-311,-255],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1]],[[-317,-252],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-320,-257],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-329,-255],[-1,1],[0,1]],[[-330,-253],[1,1],[0,1]],[[-329,-251],[-1,1],[0,1],[-1,1],[0,1]],[[-331,-247],[-1,1],[-1,-1],[-1,1]],[[-334,-246],[-1,-1]],[[-335,-247],[-1,1],[0,1]],[[-336,-245],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-340,-249],[-1,1],[-1,-1]],[[-342,-249],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-344,-253],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-348,-253],[-1,1],[0,1]],[[-349,-251],[-1,1],[-1,-1]],[[-351,-251],[-1,1],[-1,-1],[-1,1],[0,1]],[[-354,-249],[1,1],[0,1],[-1,1],[0,1]],[[-354,-245],[-1,1],[0,1]],[[-355,-243],[1,1],[0,1],[1,1],[0,1]],[[-353,-239],[1,1],[1,-1]],[[-351,-239],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-352,-233],[1,1],[0,1]],[[-351,-231],[-1,1],[0,1],[-1,1],[0,1]],[[-353,-227],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[1,1],[0,1],[1,1]],[[-347,-220],[0,1],[1,1],[1,-1]],[[-345,-219],[1,1],[0,1]],[[-344,-217],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1]],[[-344,-209],[1,1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[1,-1]],[[-343,-215],[1,1],[1,-1]],[[-341,-215],[1,1],[0,1],[1,1]],[[-339,-212],[0,1],[1,1],[1,-1]],[[-54,-326],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1]],[[-71,-323],[1,1],[0,1],[1,1],[0,1]],[[-69,-319],[1,1],[1,-1]],[[-67,-319],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[1,-1],[1,1],[1,-1]],[[-66,-325],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-65,-331],[0,-1],[1,-1],[1,1]],[[-63,-332],[1,-1],[1,1],[1,-1]],[[-60,-333],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-56,-329],[1,1],[0,1],[1,1]],[[-95,-95],[1,1],[0,1]],[[-94,-93],[1,1]],[[-93,-92],[0,1]],[[-391,-340],[0,1],[-1,1],[0,1]],[[-392,-337],[-1,1]],[[-393,-336],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[-398,-338],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1]],[[-402,-337],[0,-1]],[[-404,-341],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[-409,-340],[0,1],[1,1],[0,1],[-1,1]],[[-409,-336],[0,1]],[[-409,-335],[-1,1],[0,1]],[[-410,-333],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[1,1],[0,1],[1,1]],[[-404,-326],[0,1]],[[-293,-275],[-1,1],[0,1]],[[-294,-273],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-324,-289],[-1,1]],[[-325,-288],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-329,-287],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[-334,-286],[0,1]],[[-334,-285],[1,1]],[[-333,-284],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-335,-279],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-339,-279],[-1,1],[0,1]],[[-340,-277],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-345,-275],[1,1],[0,1],[-1,1],[0,1]],[[-345,-271],[-1,1],[0,1]],[[-346,-269],[1,1],[0,1],[1,1],[0,1],[1,1]],[[-343,-264],[1,-1]],[[-342,-265],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-343,-259],[1,1],[0,1]],[[-342,-257],[-1,1],[0,1]],[[-343,-255],[-1,1],[0,1]],[[-330,-253],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-334,-257],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1]],[[-336,-262],[1,-1],[1,1],[1,-1]],[[-333,-263],[0,-1],[1,-1],[0,-1],[1,-1]],[[-331,-267],[0,-1],[-1,-1]],[[-332,-269],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[-326,-273],[1,1],[1,-1],[1,1],[1,-1]],[[-322,-273],[1,1],[0,1]],[[-321,-271],[1,1],[0,1]],[[-320,-269],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-314,-265],[0,-1],[1,-1]],[[-313,-267],[1,1],[1,-1],[1,1],[1,-1]],[[-309,-267],[1,1],[0,1],[1,1],[0,1]],[[-307,-263],[1,1],[1,-1]],[[-305,-263],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-306,-257],[1,1]],[[-305,-256],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-288,-281],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[-96,-101],[-1,1],[0,1],[1,1],[0,1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1]],[[-69,-139],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-73,-143],[-1,1]],[[-74,-142],[-1,-1],[-1,1],[-1,-1]],[[-77,-143],[-1,1],[0,1]],[[-78,-141],[-1,1]],[[-79,-140],[-1,-1],[0,-1]],[[-80,-142],[-1,-1],[0,-1],[-1,-1]],[[-82,-145],[-1,1],[-1,-1]],[[-84,-145],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-86,-149],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-90,-149],[-1,1],[0,1],[-1,1]],[[-92,-146],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-96,-145],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-97,-139],[1,1]],[[-96,-138],[0,1],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[1,1]],[[-91,-136],[1,-1]],[[-90,-137],[1,1],[1,-1],[1,1],[0,1],[1,1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1]],[[-85,-139],[1,1],[1,-1],[1,1],[0,1]],[[-82,-137],[-1,1],[0,1],[-1,1],[0,1]],[[-84,-133],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-88,-133],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-94,-129],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-95,-123],[-1,1],[-1,-1]],[[-97,-123],[-1,1],[-1,-1],[-1,1],[0,1]],[[-100,-121],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-104,-125],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-107,-127],[0,-1],[-1,-1]],[[-211,-372],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1]],[[-204,-377],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1]],[[-137,-496],[-1,-1],[-1,1]],[[-139,-495],[1,1],[1,-1],[0,-1]],[[-87,-172],[-1,-1],[-1,1],[-1,-1]],[[-130,-165],[1,1],[0,1],[-1,1],[0,1]],[[-130,-161],[1,1],[1,-1],[1,1],[1,-1]],[[-126,-161],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-122,-157],[1,1],[0,1]],[[-121,-155],[-1,1],[0,1],[-1,1],[0,1]],[[-123,-151],[1,1],[0,1],[1,1],[0,1]],[[-121,-147],[1,1],[1,-1],[1,1],[0,1],[1,1]],[[-117,-144],[0,1],[1,1]],[[-116,-142],[1,-1]],[[-115,-143],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-64,-202],[0,1],[1,1],[0,1],[-1,1],[0,1]],[[-2,-21],[-1,1],[-1,-1],[-1,1],[0,1]],[[-5,-19],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-9,-23],[0,-1],[1,-1],[0,-1],[1,-1]],[[-7,-27],[0,-1],[-1,-1]],[[-8,-29],[0,-1],[1,-1]],[[-7,-31],[1,1],[1,-1],[1,1],[1,-1]],[[-3,-31],[0,-1],[1,-1]],[[-2,-33],[1,1],[1,-1],[1,1],[1,-1]],[[2,-33],[1,1],[0,1],[1,1],[0,1]],[[4,-29],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-5,-11],[0,-1],[-1,-1]],[[-6,-13],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-1,-15],[0,-1],[1,-1]],[[0,-17],[1,1]],[[1,-16],[1,-1],[1,1],[1,-1]],[[4,-17],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[5,-23],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[-2,-26],[0,1],[1,1],[1,-1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,-1]],[[-10,-325],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-14,-325],[-1,1],[0,1]],[[-15,-323],[-1,1],[-1,-1]],[[-17,-323],[0,-1],[-1,-1]],[[-18,-325],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-23,-331],[-1,1],[-1,-1]],[[-25,-331],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-33,-327],[1,1],[0,1]],[[-32,-325],[-1,1],[0,1],[-1,1],[0,1]],[[-34,-321],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[1,1],[0,1]],[[-38,-317],[-1,1],[0,1],[-1,1],[0,1]],[[-40,-313],[-1,1],[-1,-1],[-1,1],[0,1],[1,1],[0,1],[-1,1]],[[-43,-308],[-1,-1],[0,-1],[-1,-1]],[[-85,-312],[0,1],[1,1],[1,-1],[1,1],[0,1],[-1,1],[0,1]],[[-100,-457],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-105,-455],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-109,-459],[-1,1]],[[-110,-458],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-113,-463],[0,-1],[1,-1]],[[-112,-465],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-112,-469],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-111,-475],[-1,1],[-1,-1]],[[-113,-475],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-115,-479],[-1,1],[-1,-1]],[[-117,-479],[-1,1],[-1,-1],[-1,1],[0,1]],[[-120,-477],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-126,-481],[0,-1],[-1,-1]],[[-127,-483],[0,-1]],[[-127,-484],[-1,-1]],[[-128,-485],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1]],[[-126,-490],[-1,-1],[-1,1]],[[-128,-490],[0,1],[-1,1],[0,1],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-132,-489],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1]],[[-140,-490],[-1,-1]],[[-152,-481],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-148,-477],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[-148,-469],[-1,1],[0,1],[-1,1]],[[-150,-466],[0,1]],[[-150,-465],[1,1],[0,1],[1,1]],[[-148,-462],[0,1]],[[-148,-461],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1]],[[-451,-240],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[1,1],[1,-1]],[[-448,-245],[0,-1],[1,-1],[0,-1],[1,-1]],[[-446,-249],[0,-1],[-1,-1]],[[-447,-251],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-451,-255],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-440,-237],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[-445,-236],[0,1]],[[-445,-235],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-448,-237],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1]],[[-380,-154],[1,-1]],[[-379,-155],[1,1],[0,1]],[[-378,-153],[-1,1],[0,1],[-1,1],[0,1]],[[-384,-181],[-1,1]],[[-385,-180],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-393,-179],[-1,1],[0,1]],[[-394,-177],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-395,-171],[1,1],[0,1],[1,1],[0,1]],[[-393,-167],[1,1],[1,-1]],[[-391,-167],[1,1],[0,1]],[[-390,-165],[-1,1],[0,1],[-1,1],[0,1]],[[-392,-161],[1,1],[0,1],[-1,1],[0,1],[-1,1]],[[-393,-156],[0,1]],[[-393,-155],[1,1],[0,1],[1,1],[0,1]],[[-391,-151],[1,1],[1,-1]],[[-389,-151],[0,-1],[1,-1],[1,1]],[[-387,-152],[1,-1],[1,1],[1,-1]],[[-384,-153],[1,1]],[[-383,-152],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1]],[[-368,-130],[1,-1],[0,-1],[1,-1]],[[-366,-133],[1,1],[1,-1],[1,1],[0,1]],[[-363,-131],[-1,1],[0,1],[-1,1],[0,1]],[[19,-191],[-1,1],[-1,-1]],[[17,-191],[-1,1]],[[16,-190],[-1,-1]],[[15,-191],[-1,1],[0,1]],[[14,-189],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-357,-327],[0,-1]],[[-357,-328],[-1,-1],[0,-1],[-1,-1]],[[-359,-331],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-364,-329],[1,1],[0,1],[-1,1],[0,1]],[[-364,-325],[-1,1],[0,1]],[[-365,-323],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-370,-321],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-374,-325],[-1,1],[-1,-1]],[[-376,-325],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-398,-293],[1,1],[0,1],[1,1],[0,1]],[[-396,-289],[1,1]],[[-395,-288],[1,-1]],[[-394,-289],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-390,-285],[0,-1],[1,-1]],[[-389,-287],[1,1],[1,-1],[1,1],[1,-1]],[[-385,-287],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-384,-293],[0,-1],[1,-1]],[[-383,-295],[1,1],[1,-1],[1,1]],[[-380,-294],[0,1],[1,1],[0,1],[1,1],[1,-1],[1,1],[1,-1]],[[-375,-291],[1,1],[0,1]],[[-374,-289],[1,1],[0,1],[1,1],[1,-1]],[[-351,-323],[-1,1],[-1,-1]],[[-353,-323],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-355,-327],[-1,1],[-1,-1]],[[-220,-241],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-225,-239],[-1,1],[-1,-1],[0,-1]],[[-227,-240],[-1,-1],[0,-1],[-1,-1]],[[-365,-152],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1]],[[30,-221],[0,-1],[-1,-1]],[[29,-223],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1]],[[-182,-133],[1,1],[0,1],[1,1],[0,1]],[[-180,-129],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1]],[[-176,-125],[1,1],[1,-1]],[[-174,-125],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-169,-127],[1,1]],[[-168,-126],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-165,-123],[1,1],[0,1],[1,1],[0,1]],[[-163,-119],[1,1],[1,-1]],[[-161,-119],[0,-1],[1,-1]],[[-160,-121],[1,1],[1,-1],[1,1],[1,-1]],[[-156,-121],[0,-1],[1,-1]],[[-155,-123],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-155,-127],[0,-1],[1,-1],[1,1],[1,-1]],[[-152,-129],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1]],[[-146,-130],[1,-1]],[[-402,-381],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[1,1],[0,1],[-1,1]],[[-400,-370],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1]],[[-406,-369],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-202,-97],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-201,-103],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-200,-109],[-1,1],[-1,-1]],[[-202,-109],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-156,-317],[1,1],[0,1],[1,1],[0,1],[1,1]],[[-153,-312],[1,-1]],[[-152,-313],[1,1],[0,1],[1,1],[0,1],[1,1]],[[-149,-308],[1,-1]],[[-148,-309],[0,-1],[1,-1]],[[-147,-311],[1,1]],[[-146,-310],[1,-1],[1,1],[1,-1]],[[-145,-327],[0,-1],[1,-1],[0,-1],[1,-1]],[[-143,-331],[0,-1],[-1,-1]],[[-144,-333],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-143,-339],[-1,1],[-1,-1],[0,-1]],[[-145,-340],[-1,-1],[0,-1],[-1,-1]],[[-147,-343],[0,-1]],[[-147,-344],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[20,-78],[-1,-1]],[[19,-79],[0,-1],[1,-1],[1,1]],[[-126,-174],[0,1]],[[-130,-305],[1,1],[0,1]],[[-129,-303],[1,1],[0,1]],[[-128,-301],[1,1],[1,-1]],[[-126,-301],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-127,-295],[1,1],[0,1]],[[-126,-293],[-1,1],[0,1],[-1,1],[0,1]],[[-307,-167],[-1,1],[-1,-1]],[[18,-174],[0,1]],[[18,-173],[1,1],[1,-1],[1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[-1,1]],[[-39,-459],[1,1]],[[-38,-458],[0,1],[1,1],[0,1]],[[-37,-455],[1,1],[1,-1]],[[-35,-455],[1,1],[0,1],[1,1]],[[-33,-452],[0,1]],[[-33,-451],[1,1],[1,-1]],[[-31,-451],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-26,-453],[0,-1],[1,-1],[0,-1]],[[-25,-456],[1,-1]],[[-24,-457],[0,-1],[-1,-1]],[[-25,-459],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[-19,-463],[1,1],[1,-1],[1,1],[1,-1]],[[-15,-463],[0,-1]],[[-15,-464],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1]],[[-13,-472],[1,-1],[0,-1],[-1,-1]],[[-13,-475],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-17,-479],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-21,-479],[0,-1],[-1,-1]],[[-22,-481],[0,-1]],[[-22,-482],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-26,-481],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-29,-483],[0,-1],[-1,-1]],[[-30,-485],[0,-1],[1,-1],[0,-1],[1,-1]],[[-28,-489],[0,-1],[-1,-1]],[[-29,-491],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[-23,-495],[1,1],[1,-1],[1,1]],[[-20,-494],[1,-1]],[[17,-172],[1,-1]],[[0,-469],[1,1]],[[1,-468],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-1,-463],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[22,-481],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[17,-487],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1]],[[-79,-471],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-80,-465],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-84,-469],[1,1],[0,1],[1,1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[1,1],[1,-1]],[[-267,-323],[1,1],[0,1],[1,1],[0,1]],[[-265,-319],[1,1],[1,-1]],[[-263,-319],[1,1],[0,1]],[[-262,-317],[1,1],[0,1]],[[-261,-315],[1,1],[1,-1]],[[-259,-315],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-254,-317],[1,1]],[[-253,-316],[0,1]],[[-253,-315],[1,1],[0,1]],[[-252,-313],[1,1],[1,-1]],[[-250,-313],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[-250,-305],[-1,1],[0,1],[-1,1],[0,1]],[[-237,-279],[0,-1],[1,-1],[0,-1],[1,-1]],[[-235,-283],[0,-1],[-1,-1]],[[-214,-389],[0,-1],[1,-1]],[[-213,-391],[0,-1],[1,-1]],[[-212,-393],[0,-1],[-1,-1]],[[-313,-355],[0,-1],[1,-1]],[[-312,-357],[1,1],[1,-1],[1,1]],[[-309,-356],[1,-1]],[[-308,-357],[1,1]],[[-307,-356],[0,1],[1,1],[0,1]],[[-142,-205],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1]],[[-139,-215],[0,-1],[-1,-1]],[[-245,-395],[1,1],[1,-1],[1,1]],[[-251,-391],[0,-1],[1,-1]],[[-250,-393],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[-281,-287],[-1,1],[0,1],[-1,1],[0,1]],[[-281,-295],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[-119,-36],[-1,-1],[-1,1],[-1,-1]],[[-122,-45],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-118,-41],[1,1],[0,1],[-1,1],[0,1],[-1,1]],[[-60,-138],[0,1]],[[-60,-137],[-1,1]],[[-61,-136],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-65,-135],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-31,-267],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-25,-263],[-1,1],[-1,-1]],[[-27,-263],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1]],[[-30,-266],[-1,-1]],[[-175,-559],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[1,1],[0,1],[-1,1]],[[-179,-556],[-1,-1],[0,-1],[-1,-1]],[[-181,-559],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-203,-563],[1,1],[1,-1],[1,1],[1,-1]],[[-199,-563],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1]],[[-193,-555],[1,1],[1,-1]],[[-191,-555],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-186,-557],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-36,-161],[0,-1],[-1,-1]],[[-37,-163],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-69,-495],[1,1]],[[-68,-494],[0,1]],[[-71,-491],[0,-1],[1,-1],[0,-1],[1,-1]],[[-55,-488],[-1,-1],[0,-1],[-1,-1]],[[-57,-491],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1]],[[-382,-110],[0,1]],[[-382,-109],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1]],[[-47,-327],[-1,1],[-1,-1],[-1,1]],[[-50,-326],[-1,-1],[-1,1],[0,1]],[[-52,-325],[-1,1],[-1,-1],[0,-1]],[[2,-14],[1,-1],[1,1],[0,1],[-1,1],[0,1]],[[-1,-15],[1,1],[0,1],[1,1],[1,-1],[0,-1]],[[-137,-496],[1,-1],[1,1],[0,1]],[[-135,-495],[1,1],[1,-1],[1,1],[1,-1],[1,1]],[[-130,-494],[0,1],[1,1],[0,1],[1,1]],[[-403,-303],[-1,1],[0,1],[-1,1]],[[-405,-300],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1]],[[-404,-305],[0,-1],[-1,-1]],[[-421,-316],[0,1],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1]],[[-422,-309],[-1,1],[0,1],[-1,1],[0,1]],[[-424,-305],[1,1],[0,1],[1,1],[0,1]],[[-422,-301],[1,1],[1,-1],[1,1]],[[-419,-300],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-416,-297],[0,-1],[1,-1]],[[-415,-299],[1,1]],[[-414,-298],[1,-1],[1,1],[1,-1]],[[-411,-299],[1,1],[0,1],[1,1],[0,1]],[[-409,-295],[1,1],[1,-1]],[[-407,-295],[0,-1],[1,-1],[1,1],[1,-1]],[[-404,-297],[1,1]],[[-403,-296],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[0,-189],[0,-1],[1,-1],[1,1],[1,-1],[1,1]],[[4,-190],[1,-1]],[[5,-191],[1,1],[0,1]],[[6,-189],[1,1],[0,1]],[[7,-187],[1,1],[1,-1],[1,1],[0,1]],[[10,-185],[-1,1],[0,1],[-1,1],[0,1]],[[8,-181],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[12,-177],[1,1],[0,1]],[[13,-175],[-1,1],[0,1],[-1,1],[0,1],[1,1]],[[12,-170],[0,1]],[[12,-169],[-1,1],[0,1],[-1,1],[0,1]],[[-3,-191],[1,1],[0,1],[1,1],[1,-1]],[[-179,-107],[1,1],[1,-1]],[[-177,-107],[1,1]],[[-176,-106],[0,1]],[[-176,-105],[-1,1],[0,1],[-1,1],[0,1]],[[-178,-101],[-1,1],[-1,-1]],[[-194,-89],[1,1],[0,1]],[[-193,-87],[-1,1]],[[-194,-86],[0,1],[-1,1],[0,1]],[[-195,-83],[-1,1],[-1,-1],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1]],[[-182,-105],[0,-1],[1,-1],[1,1],[1,-1]],[[-35,-327],[1,1],[1,-1]],[[12,-346],[-1,-1],[-1,1],[-1,-1]],[[9,-347],[0,-1],[-1,-1]],[[8,-349],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[4,-349],[-1,1],[0,1],[-1,1],[-1,-1]],[[1,-347],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-1,-351],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-5,-351],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-11,-347],[1,1],[0,1]],[[-10,-345],[-1,1],[0,1],[-1,1],[0,1]],[[-12,-341],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[-17,-340],[0,1]],[[-17,-339],[-1,1],[-1,-1]],[[-19,-339],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-21,-343],[-1,1],[-1,-1]],[[-23,-343],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-43,-323],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[-285,-244],[-1,-1],[-1,1],[-1,-1],[0,-1]],[[-291,-291],[0,-1]],[[-291,-292],[-1,-1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-294,-301],[0,-1],[1,-1]],[[-293,-303],[1,1],[1,-1],[1,1],[1,-1]],[[-315,-315],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-311,-311],[1,1],[0,1],[-1,1]],[[-311,-308],[0,1],[-1,1],[0,1],[1,1]],[[-311,-304],[0,1],[-1,1],[0,1],[-1,1]],[[-313,-300],[0,1]],[[-313,-299],[1,1],[0,1],[1,1]],[[-311,-296],[0,1]],[[-311,-295],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-305,-291],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-300,-293],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-416,-353],[-1,1]],[[-417,-352],[0,1],[-1,1],[0,1],[-1,1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-423,-351],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1]],[[-423,-359],[0,-1],[-1,-1]],[[-452,-354],[1,-1],[1,1],[1,-1],[1,1],[0,1]],[[-448,-353],[1,1],[1,-1],[1,1]],[[-445,-352],[1,-1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-440,-349],[0,-1]],[[-440,-350],[1,-1]],[[-439,-351],[1,1],[1,-1],[1,1],[1,-1]],[[-435,-351],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-430,-353],[1,1],[0,1],[1,1],[0,1]],[[-428,-349],[1,1],[1,-1]],[[-426,-349],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-422,-345],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-220,-442],[1,-1],[1,1],[0,1],[-1,1],[0,1]],[[-219,-439],[1,1],[1,-1],[1,1],[1,-1]],[[-215,-439],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-214,-445],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-218,-449],[-1,1],[-1,-1]],[[-220,-449],[-1,1],[0,1],[1,1],[0,1],[-1,1]],[[-221,-444],[0,1],[1,1]],[[-132,-153],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-126,-105],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-121,-107],[0,-1],[1,-1],[0,-1],[1,-1]],[[-119,-111],[0,-1],[-1,-1]],[[-120,-113],[0,-1],[1,-1],[0,-1]],[[-119,-116],[1,-1]],[[-130,-161],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1]],[[-36,-270],[0,1],[1,1],[1,-1]],[[-34,-269],[0,-1]],[[-61,-439],[-1,1]],[[-62,-438],[0,1]],[[-62,-437],[1,1],[0,1]],[[-61,-435],[-1,1]],[[-62,-434],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[-68,-426],[0,1],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-72,-429],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-76,-429],[-1,1],[0,1],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-82,-425],[1,1],[0,1]],[[-81,-423],[-1,1]],[[-82,-422],[0,1],[-1,1],[0,1]],[[-83,-419],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-88,-417],[-1,1]],[[-89,-416],[-1,-1],[0,-1],[-1,-1]],[[-91,-419],[0,-1],[-1,-1]],[[-92,-421],[-1,1],[-1,-1]],[[-94,-421],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-284,-333],[0,-1],[-1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1]],[[-281,-335],[1,1],[1,-1]],[[-279,-335],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-280,-329],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-285,-327],[-1,1],[-1,-1]],[[-287,-327],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1]],[[-291,-332],[-1,-1],[0,-1],[-1,-1]],[[-293,-335],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1]],[[-291,-340],[-1,-1],[0,-1]],[[-292,-342],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-291,-347],[-1,1],[-1,-1]],[[-293,-347],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-269,-339],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-273,-339],[-1,1],[0,1]],[[-274,-337],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1]],[[-279,-340],[-1,-1],[0,-1],[-1,-1],[0,-1]],[[-281,-344],[-1,-1]],[[-282,-345],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-287,-343],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-288,-337],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[4,-129],[-1,1],[0,1],[-1,1],[0,1],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-1,-127],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-9,-127],[0,-1],[-1,-1]],[[-10,-129],[-1,1],[-1,-1]],[[-12,-129],[-1,1],[-1,-1],[-1,1],[0,1]],[[-15,-127],[-1,1],[-1,-1]],[[-17,-127],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-19,-131],[-1,1],[-1,-1]],[[-21,-131],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-23,-135],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-29,-127],[1,1],[0,1],[1,1],[0,1]],[[-27,-123],[-1,1],[0,1]],[[-28,-121],[-1,1]],[[-442,-342],[0,1],[1,1],[0,1]],[[-441,-339],[-1,1],[0,1]],[[-442,-337],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-438,-333],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-428,-337],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-424,-333],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-419,-335],[1,1],[0,1],[1,1],[1,-1]],[[-416,-333],[1,1]],[[-440,-349],[1,1],[0,1]],[[-439,-347],[-1,1],[0,1],[-1,1],[0,1]],[[-441,-343],[-1,1]],[[-439,-327],[0,-1],[1,-1],[0,-1],[1,-1]],[[-437,-331],[0,-1],[-1,-1]],[[-177,-484],[1,-1],[0,-1]],[[-176,-486],[-1,-1],[0,-1],[1,-1]],[[-179,-492],[0,1],[1,1],[0,1],[-1,1],[0,1]],[[-179,-487],[1,1],[0,1],[1,1]],[[-125,-187],[1,1],[0,1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1]],[[-119,-187],[1,1],[1,-1]],[[-117,-187],[1,1],[0,1],[1,1],[0,1]],[[-115,-183],[1,1],[1,-1]],[[-113,-183],[0,-1],[1,-1]],[[-112,-185],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1]],[[-107,-187],[1,1],[1,-1],[1,1],[1,-1]],[[-108,-197],[-1,1]],[[-109,-196],[-1,-1],[-1,1],[0,1]],[[-111,-195],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-87,-592],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-92,-589],[0,-1],[1,-1]],[[-91,-591],[0,-1],[1,-1]],[[-90,-593],[1,1],[1,-1],[1,1]],[[-212,-338],[-1,-1]],[[-213,-339],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-208,-341],[0,-1],[1,-1],[0,-1],[1,-1]],[[-206,-345],[0,-1]],[[-206,-346],[-1,-1],[-1,1],[-1,-1]],[[-209,-347],[0,-1],[-1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-215,-351],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1]],[[-208,-333],[0,-1],[-1,-1]],[[-209,-335],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[-174,-518],[1,-1],[1,1]],[[-172,-518],[1,-1],[1,1],[1,-1]],[[-169,-519],[0,-1],[1,-1],[0,-1],[1,-1]],[[-167,-523],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-170,-525],[-1,1]],[[-171,-524],[-1,-1],[-1,1],[0,1]],[[-173,-523],[-1,1],[-1,-1]],[[-175,-523],[-1,1],[0,1],[1,1],[0,1],[1,1]],[[-120,-329],[1,1],[0,1],[1,1],[1,-1]],[[-117,-327],[0,-1],[1,-1]],[[-116,-329],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-128,-317],[0,-1],[1,-1]],[[-127,-319],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1]],[[-405,-383],[0,-1],[-1,-1],[-1,1],[-1,-1]],[[-408,-385],[-1,1],[0,1],[1,1],[0,1],[-1,1]],[[-409,-380],[0,1]],[[-409,-379],[1,1],[1,-1]],[[-57,-308],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1]],[[-56,-313],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-58,-317],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-63,-315],[1,1],[0,1]],[[-62,-313],[-1,1],[0,1],[-1,1],[0,1]],[[-64,-309],[1,1],[0,1],[1,1]],[[-62,-306],[0,1],[1,1],[1,-1]],[[-60,-305],[0,-1],[1,-1],[0,-1],[1,-1]],[[-58,-309],[1,1]],[[-63,-119],[1,1],[0,1]],[[-62,-117],[-1,1],[0,1],[-1,1],[0,1]],[[-64,-113],[1,1],[0,1],[1,1],[0,1],[-1,1],[0,1],[1,1],[1,-1],[1,1],[0,1]],[[-44,-121],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-48,-125],[0,-1],[1,-1],[0,-1]],[[-47,-128],[1,-1]],[[-122,-294],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1]],[[5,-415],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[2,-417],[0,-1],[-1,-1]],[[1,-419],[0,-1],[1,-1],[0,-1]],[[2,-422],[-1,-1],[-1,1],[0,1],[-1,1],[-1,-1],[0,-1],[-1,-1]],[[-31,-396],[0,1]],[[-31,-395],[1,1],[0,1],[1,1]],[[-29,-392],[0,1]],[[-29,-391],[1,1],[1,-1],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-23,-387],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-24,-381],[-1,1],[-1,-1],[-1,1],[0,1],[-1,1]],[[-7,-172],[1,-1],[0,-1],[-1,-1]],[[-7,-175],[-1,1],[-1,-1],[-1,1],[-1,-1],[-1,1],[0,1]],[[-7,-171],[0,-1]],[[-61,-271],[0,-1],[1,-1],[0,-1],[-1,-1],[-1,1],[-1,-1],[0,-1],[1,-1],[1,1],[1,-1]],[[-60,-277],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-59,-283],[0,-1],[1,-1],[1,1],[1,-1],[1,1],[1,-1]],[[-54,-285],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-53,-291],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-52,-297],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-74,-305],[1,1],[0,1],[-1,1],[0,1]],[[-74,-301],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[-1,1],[0,1]],[[-405,-243],[1,1],[0,1],[1,1],[1,-1],[1,1],[0,1]],[[-401,-239],[-1,1],[0,1],[-1,1]],[[-403,-236],[0,1]],[[-403,-235],[1,1],[0,1],[1,1],[0,1],[1,1],[1,-1]],[[-399,-231],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-400,-225],[1,1],[0,1]],[[-399,-223],[-1,1],[0,1],[-1,1],[0,1]],[[-401,-219],[1,1],[0,1],[1,1],[0,1]],[[-399,-215],[1,1],[1,-1],[1,1]],[[-396,-214],[0,1],[1,1]],[[-395,-212],[0,1],[1,1],[1,-1]],[[-393,-211],[0,-1],[1,-1]],[[-392,-213],[1,1],[1,-1],[1,1],[1,-1]],[[-388,-213],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1]],[[-386,-221],[1,1],[1,-1],[1,1],[1,-1],[0,-1],[1,-1],[1,1],[1,-1]],[[-379,-223],[1,1],[1,-1]],[[-377,-223],[0,-1],[1,-1]],[[-376,-225],[0,-1],[1,-1],[0,-1],[-1,-1],[0,-1],[1,-1],[0,-1],[1,-1],[0,-1],[-1,-1]],[[-375,-235],[-1,1],[-1,-1]],[[-377,-235],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-379,-239],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-383,-239],[0,-1],[-1,-1],[-1,1],[-1,-1],[-1,1]],[[-387,-240],[-1,-1]],[[-388,-241],[-1,1],[-1,-1]],[[-390,-241],[0,-1],[-1,-1],[0,-1],[-1,-1]],[[-410,-249],[1,1],[0,1]],[[-409,-247],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1]],[[-409,-239],[1,1],[1,-1]],[[-407,-239],[0,-1],[1,-1],[0,-1],[1,-1]],[[-8,-209],[1,1],[1,-1]],[[-6,-209],[1,1],[0,1],[-1,1],[0,1],[-1,1],[0,1]],[[-7,-203],[-1,1],[-1,-1],[-1,1]],[[-10,-202],[0,1],[1,1],[1,-1],[1,1],[0,1],[-1,1],[0,1]],[[-8,-197],[1,1],[0,1],[1,1],[0,1]],[[-6,-193],[1,1],[1,-1]],[[-18,-205],[1,1],[1,-1],[0,-1],[1,-1]],[[-15,-207],[1,1],[1,-1],[1,1],[1,-1]],[[-11,-207],[1,1],[1,-1],[0,-1],[1,-1]],[[-346,-269],[-1,1],[-1,-1],[-1,1],[-1,-1]],[[-350,-269],[-1,1],[0,1]],[[-351,-267],[1,1],[0,1]],[[-350,-265],[-1,1],[0,1],[-1,1],[0,1],[1,1],[0,1],[1,1],[0,1]],[[-350,-257],[-1,1]],[[-351,-256],[-1,-1],[-1,1],[0,1]],[[-353,-255],[-1,1],[-1,-1],[0,-1],[-1,-1],[0,-1],[-1,-
View raw

(Sorry about that, but we can’t show files that are this big right now.)

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment